/* Specification */
@import "../css/gilroy.css";
@import "../css/opensans.css";
@import "../slick/slick.css";
@import "../slick/slick-theme.css";
@import "../libs/fancybox/jquery.fancybox.min.css";

/* Header-top */
.header_top {
  width: 100%;
  display: flex;
  position: fixed;
  z-index: 50;
  top: 0px;
  left: 0px;
  padding-top: 22px;
  padding-bottom: 22px;
  background: #FFFFFF;
  border-bottom: 0.8px solid #E7E7E7;
  border-right: 0.8px solid #E7E7E7;
  opacity: 1;
  transition: transform 1.4s ease-in-out;
}
.header_top.hidden {
  pointer-events: none;
  transform: translateX(-100%);
  transition: transform 1.4s ease-in-out;
}

.header-content {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.intro {
  display: inline-flex;
  margin-top: auto;
  margin-bottom: auto;
  align-items: center;
}

.logo {
  display: inline-block;
  margin-top: auto;
  margin-bottom: auto;
  width: 114px;
  padding-top: 1px;
}
.logo img {
  display: inline-block;
  position: relative;
  bottom: -3px;
  max-width: 100%;
  max-height: 50px;
}

.menu {
  display: inline-block;
}
.menu ul {
  display: inline-flex;
  padding-left: 8px;
}
.menu li {
  display: inline-block;
  margin-left: 51px;
  position: relative;
  padding-left: 2px;
  padding-right: 2px;
}
.menu li.active .ref {
  color: #272727 !important;
}
.menu li.active .ref::before {
  background: #272727;
  width: calc(100% + 1px);
  transition: 0.3s ease;
}
.menu .ref {
  display: inline-block;
  font-size: 16px;
}
.menu .ref::before {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: -3px;
  width: 0px;
  height: 0.8px;
  background: #fff;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.3s ease;
}
.menu .ref:hover::before {
  width: calc(100% + 1px);
  background: #002299;
  transition: 0.3s ease;
}

.header-content__contacts {
  display: inline-block;
  margin-top: auto;
  margin-bottom: auto;
}
.header-content__contacts .ref {
  font-size: 22px;
}

.burger {
  display: none;
}

@media (max-width: 1680px) {
  .header_top {
    padding-top: 24px;
    padding-bottom: 21px;
  }
}
@media (max-width: 1380px) {
  .header_top {
    padding-top: 21px;
    padding-bottom: 18px;
  }
  .logo img {
    bottom: -5px;
  }
  .menu {
    padding-top: 2px;
  }
  .menu li {
    margin-left: 35px;
  }
  .header-content__contacts .ref {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .header_top {
    position: relative !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    animation-name: fadeInUp !important;
    transform: none !important;
  }
  .header_top .menu {
    display: none;
  }
  .logo {
    padding-top: 2px;
  }
  .burger {
    display: inline-block;
    position: relative;
    margin-top: auto;
    margin-bottom: auto;
    width: 35px;
    height: 35px;
    margin-left: 30px;
  }
  .burger img {
    display: inline-block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(1);
    width: 100%;
    height: auto;
    max-height: 100%;
    transition: all 0.4s ease;
  }
  .burger img.close {
    transform: translate(-50%, -50%) scale(0);
    transition: all 0.4s ease;
  }
  .burger.active img {
    transform: translate(-50%, -50%) scale(0);
  }
  .burger.active img.close {
    transform: translate(-50%, -50%) scale(1);
  }
  .header-content__contacts {
    padding-top: 1.5px;
  }
}
@media (max-width: 768px) {
  .header_top {
    padding-top: 15px;
    padding-bottom: 13px;
  }
  .header-content__contacts .ref {
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .header_top {
    padding-top: 12px;
    padding-bottom: 10px;
  }
  .header_top .logo {
    width: 90px;
    padding-top: 3px;
  }
  .header-content__contacts {
    padding-top: 1px;
  }
  .header-content__contacts .ref {
    font-size: 15px;
  }
  .burger {
    width: 25px;
    height: 25px;
    margin-left: 5px;
  }
}
/* Sidebar */
.sidebar {
  position: fixed;
  transform: translate(0%, -100%);
  left: 0px;
  top: -25px;
  z-index: 48;
  pointer-events: auto;
  left: 0px;
  opacity: 1;
  transition: transform 1.1s ease-in-out, top 1.1s ease-in-out;
  transition-delay: 0s !important;
}
.sidebar.active {
  pointer-events: auto;
  top: 74px;
  left: 0px;
  opacity: 1;
  transform: translate(0%, 0%);
  transition: transform 1.1s ease-in-out, top 1.1s ease-in-out;
  transition-delay: 0.1s !important;
}
.sidebar.active nav li {
  /*
  transform: scale(1);
  	transition: $transition-all;
  	transition-delay: 0.7s !Important;
  	*/
  pointer-events: auto;
}
.sidebar.hidden {
  pointer-events: none;
  top: calc(100% + 20px) !important;
  transition: transform 1.1s ease-in-out, top 1.1s ease-in-out;
  transition-delay: 0s !important;
}
.sidebar nav {
  display: inline-block;
}
.sidebar nav ul {
  display: inline-flex;
  flex-direction: column;
}
.sidebar nav li {
  display: inline-block;
  position: relative;
  /*transform: scale(0);*/
  pointer-events: none;
  transition: 0.3s ease;
  /*transition-delay: 0.6s !Important;*/
}
.sidebar nav li .ref {
  display: inline-flex;
  flex-direction: column;
  position: relative;
  background: #FFFFFF;
  border: 0.8px solid #EFEFEF;
  box-shadow: 3px 2px 5px rgba(0, 0, 0, 0.25);
  width: 50px;
  height: 200px;
  max-height: calc((100vh - 74px) / 7);
  transition: 0.3s ease;
}
.sidebar nav li .ref span {
  display: inline-block;
  margin: auto;
  max-height: 100%;
  max-width: 100%;
  transform: rotate(-90deg);
  font-size: 16px;
  color: #4F4F4F;
  z-index: 2;
  white-space: nowrap;
  position: relative;
  transition: color 0.3s ease;
}
.sidebar nav li .ref::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.sidebar nav li .ref:hover::before {
  opacity: 1;
  transition: opacity 0.3s ease;
}
.sidebar nav li .ref:hover span {
  color: #fff;
  transition: color 0.3s ease;
}
.sidebar nav li:first-child {
  transform: scale(1);
  pointer-events: auto;
}
.sidebar nav li:first-child .ref {
  border-radius: 0px 10px 0px 0px;
}
.sidebar nav li:first-child .ref::before {
  background: #00489D;
  border-radius: 0px 10px 0px 0px;
}
.sidebar nav li:nth-child(2) .ref::before {
  background: #002299;
}
.sidebar nav li:nth-child(3) .ref::before {
  background: linear-gradient(218.03deg, #4EDAEB 7.66%, #0075FF 78.05%), #E1E1E1;
}
.sidebar nav li:nth-child(4) .ref::before {
  background: #0B376E;
}
.sidebar nav li:nth-child(5) .ref::before {
  background: #002299;
}
.sidebar nav li:nth-child(6) .ref::before {
  background: #0069CA;
}
.sidebar nav li:nth-child(7) .ref::before {
  background: #A9CBF3;
}
.sidebar nav li:last-child .ref {
  border-radius: 0px 0px 10px 0px;
}
.sidebar nav li:last-child .ref::before {
  border-radius: 0px 0px 10px 0px;
}
.sidebar nav li.active {
  pointer-events: none;
}
.sidebar nav li.active .ref {
  box-shadow: none;
  pointer-events: none;
}
.sidebar nav li.active .ref span {
  /*text-decoration: underline;*/
}

@media (max-width: 1680px) {
  .sidebar {
    top: -20px;
  }
  .sidebar nav li .ref {
    width: 40px;
    height: 180px;
    padding-bottom: 1px;
  }
  .sidebar nav li .ref span {
    font-size: 15px;
  }
  .sidebar.active {
    top: 71px;
  }
}
@media (max-width: 1380px) {
  .sidebar.active {
    top: 67px;
  }
  .sidebar nav li .ref {
    width: 34px;
    height: 150px;
  }
  .sidebar nav li .ref span {
    font-size: 14px;
  }
}
@media (max-width: 1199px) {
  .sidebar.active {
    top: 60px;
  }
}
@media (max-width: 991px) {
  .sidebar {
    display: none !important;
  }
}
/* Section-lineup */
.section-lineup {
    position: relative;
    width: 100%;
    padding-top: 152px;
    padding-bottom: 170px;
    border-bottom: 1px solid #343536;
  }
  /* .section-lineup .container {
    width: 1440px !important;
    max-width: 1440px !important;;
  } */

  section.section-lineup .container {
    max-width: 1440px;
  }
  
  .section-lineup__anchor {
    display: inline-block;
    position: absolute;
    left: 0px;
    top: 550px;
    width: 100%;
    height: 100px;
    pointer-events: none;
    opacity: 0;
  }
  
  .lineup-info {
    width: 100%;
    display: block;
  }
  .lineup-info h2 {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 50px;
  }
  .lineup-info p {
    display: block;
    width: 100%;
    text-align: center;
    line-height: 1.18em;
    margin-top: 14px;
  }
  
  .lineup {
    display: flex;
    width: 100%;
    justify-content: space-between;
    margin-top: 88px;
    pointer-events: none;
    position: relative;
    transform: translateX(-100vw);
    transition: transform 1.2s ease-in-out;
    gap: 20px;
  }
  .lineup.active {
    pointer-events: auto;
    transform: translateX(0vw);
    transition: transform 1.2s ease-in-out;
  }
  
  .lineup__item {
    display: inline-flex;
    flex-direction: column;
    justify-content: space-between;
    width: calc((100% - 5px) / 6);
    box-shadow: 0px 3px 4px 2px rgba(0, 0, 0, 0.25);
    border-radius: 17px;
    padding-left: 22px;
    padding-right: 22px;
    padding-top: 27px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: 0.3s ease;
  }
  .lineup__item.ref{
    display: inherit;
  }
  .lineup__item p {
    display: block;
    width: 100%;
    text-align: center;
    line-height: 1.22em;
    z-index: 2;
    transition: 0.3s ease;
  }
  .lineup__item img {
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
    max-width: 100%;
    max-height: 118px;
    margin-top: 32px;
    bottom: -1px;
    opacity: 1;
    pointer-events: auto;
  }
  .lineup__item img.active {
    opacity: 0;
    position: absolute;
    pointer-events: none;
  }
  .lineup__item.lineup__item_base img {
    margin-top: 3px;
    max-height: 147px;
  }
  .lineup__item::before {
    content: "";
    display: inline-block;
    position: absolute;
    z-index: 1;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    transition: 0.3s ease;
    border-radius: 17px;
    opacity: 0;
    background: #fff;
  }
  .lineup__item:first-child {
    justify-content: flex-start;
  }
  .lineup__item:first-child::before {
    background: #00489D;
  }
  .lineup__item:nth-child(2)::before {
    background: linear-gradient(137.88deg, #001E8C 16.37%, #00135A 86.66%);
  }
  .lineup__item:nth-child(3)::before {
    background: linear-gradient(218.03deg, #4EDAEB 7.66%, #0075FF 78.05%), #E1E1E1;
  }
  .lineup__item:nth-child(4)::before {
    background: linear-gradient(52.4deg, #1C43D8 18.61%, #0E1A56 91.56%), #E1E1E1;
  }
  .lineup__item:nth-child(5)::before {
    background: #0c3a71;
  }
  .lineup__item:nth-child(6)::before {
    background: linear-gradient(139deg, #0069CA 30.47%, #00398C 78.92%);
  }
  .lineup__item:nth-child(7)::before {
    background: linear-gradient(135deg, #00063A 40.55%, #00135A 90.73%);
  }
  .lineup__item:nth-child(7) img {
    bottom: -1px;
  }
  .lineup__item.active {
    pointer-events: none;
    box-shadow: none;
  }
  .lineup__item.active p {
    color: #fff;
    font-family: "Gilroy-SemiBold", sans-serif;
    font-weight: normal !important;
  }
  .lineup__item.active::before {
    opacity: 1;
  }
  .lineup__item.active img {
    opacity: 0;
    position: absolute;
    pointer-events: none;
  }
  .lineup__item.active img.active {
    opacity: 1;
    position: relative;
    pointer-events: auto;
  }
  .lineup__item:hover p {
    color: #fff;
  }
  .lineup__item:hover::before {
    opacity: 1;
  }
  .lineup__item:hover img {
    opacity: 0;
    position: absolute;
    pointer-events: none;
  }
  .lineup__item:hover img.active {
    opacity: 1;
    position: relative;
    pointer-events: auto;
  }
  .lineup__item:hover:first-child img.active {
    transition: opacity 0.3s ease;
  }
  
  @media (max-width: 1680px) {
    .section-lineup {
      padding-top: 80px;
      padding-bottom: 100px;
    }
    .section-lineup .container {
      width: 1300px;
    }
    .section-lineup__anchor {
      top: 440px;
    }
    .lineup-info p {
      margin-top: 15px;
    }
    .lineup {
      margin-top: 66px;
    }
    .lineup__item img {
      margin-top: 28px;
    }
  }
  @media (max-width: 1380px) {
    section.section-lineup .container {
      max-width: 100%;
    }
    .section-lineup {
      padding-top: 62px;
      padding-bottom: 84px;
    }
    .section-lineup .container {
      width: 1300px;
    }
    .section-lineup__anchor {
      top: 410px;
    }
    .lineup {
      margin-top: 56px;
    }
    .lineup-info p {
      font-size: 16px;
      margin-top: 15px;
    }
    .lineup__item {
      width: calc((100% - 70px) / 6);
      padding-left: 20px;
      padding-right: 20px;
      padding-top: 23px;
    }
    .lineup__item img {
      margin-top: 22px;
      max-height: 108px;
    }
    .lineup__item p {
      font-size: 15px;
    }
  }
  @media (max-width: 1199px) {
    .section-lineup {
      padding-top: 54px;
      padding-bottom: 82px;
    }
    .section-lineup__anchor {
      top: 390px;
    }
    .lineup {
      margin-top: 46px;
      flex-wrap: wrap;
      margin-top: 0px;
      padding-top: 16px;
    }
    .lineup__item {
      width: calc((100% - 100px) / 3);
      padding-left: 25px;
      padding-right: 25px;
      margin-top: 30px;
    }
    .lineup__item img {
      margin-top: 16px;
    }
  }
  @media (max-width: 991px) {
    .lineup-info h2 {
      font-size: 38px;
    }
    .lineup {
      position: relative;
      padding-top: 0px;
      margin-top: 30px;
      justify-content: center;
      width: calc(100% + 20px);
      max-width: 520px;
      margin-left: auto;
      margin-right: auto;
      flex-wrap: wrap;
      transform: none !important;
      pointer-events: auto !important;
      left: 10px !important;
    }
    .lineup__item {
      margin-top: 20px;
      width: calc(50% - 20px);
      margin-right: 20px;
    }
    .lineup__item img {
      margin-top: 22px;
      max-height: 122px;
    }
  }
  @media (max-width: 768px) {
    .section-lineup {
      padding-top: 46px;
      padding-bottom: 72px;
    }
    .lineup-info h2 {
      font-size: 32px;
    }
    .lineup {
      margin-top: 24px;
    }
  }
  @media (max-width: 575px) {
    .section-lineup {
      padding-top: 56px;
      padding-bottom: 68px;
    }
    .lineup-info h2 {
      font-size: 20px;
    }
    .lineup-info p {
      font-size: 14px;
      margin-top: 10px;
    }
    .lineup {
      margin-top: 15px;
      max-width: 240px;
      margin-left: auto;
      margin-right: auto;
      left: 0px !important;
    }
    .lineup__item {
      padding-left: 20px;
      padding-right: 20px;
      margin-left: 0px;
      margin-right: 0px;
      padding-top: 16px;
      margin-top: 16px;
      width: 100%;
    }
    .lineup__item p {
      font-size: 14px;
    }
    .lineup__item img {
      /*
      margin-left: 0px;
      margin-right: 0px;
      position: relative;
      left: 50%;
      transform: translateX(-50%);
      */
      max-height: 108px;
    }
    .lineup__item:nth-child(1) {
      padding-bottom: 24px;
    }
    .lineup__item:nth-child(1) img {
      max-height: 80px;
    }
    .lineup__item:nth-child(4) img {
      max-width: calc(100% + 30px);
    }
  }
/*software__video*/
  .software__video{
    position: relative;
    width: 379px;
    margin: 65px 15px;
  }
  
  .software__video img{
    width: 100%;
  }
  
  .software__video .background{
    position: absolute;
    height: 96%;
    width: 100%;
    border-radius: 10px;
    background-color: black;
    opacity: 0.1;
    top: 0;
  }
  
  .software__video a:hover .background{
    opacity: 0;
  }
  
  .software__video .software__play{
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  .software__play svg{
    max-height: 100%;
  }
  
  .software__video .time{
    position: absolute;
    top: 20px;
    right: 20px;
  }
  
  .software__video .time span{
    color: white;
    vertical-align: top;
  }
  
  @media (max-width: 1380px) {
      .software__video{
          width: 320px;
        }
  }
  
  @media (max-width: 991px) {
      .software__video{
          margin: 65px auto auto;
      }
  }
  
  @media (max-width: 575px) {
      .software__video .time{
          top: 15px;
          right: 15px;
      }
      .software__video .time svg{
          height: 20px;
      }
      .software__video .time span{
          font-size: 14px;
      }
  }
  
  @media (max-width: 350px) {
      .software__video{
        width: 100%;
      }
  }

  /* Cookies */
.new-btn {
  position: relative;
  align-items: center;
  justify-content: center;
  border: 0px !important;
  text-align: center;
  text-decoration: none;
  color: #004271;
  font-family: "Gilroy-ExtraBold", sans-serif;
  font-weight: 800;
  font-size: 18px;
  background: #FECB1B;
  border-radius: 10px !important;
  cursor: pointer;
  outline: none !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transition: all 0.3s ease;
}
.popup-cookies {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  width: 582px;
  right: 0px;
  bottom: 0px;
  padding-left: 34px;
  padding-right: 34px;
  padding-top: 19px;
  padding-bottom: 19px;
  background: #FFFFFF;
  border: 1px solid #ECECEC;
  border-radius: 20px 0px 0px 0px;


  z-index: -1;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.popup-cookies.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 104;
}

.popup-cookies__text {
  display:  inline-block;
  width: calc(100% - 97px);
  padding-top: 1px;
  padding-right: 16px;
  font-size: 15px;
  line-height: 20px;
  font-family: "OpenSans", sans-serif;
  font-weight: 400;
  color: #4D4D4D;
}

.popup-cookies__text .ref {
  display: inline-block;
  position: relative;
  font: inherit;
  color: #4D4D4D;
  transition: all 0.3s ease;
}

.popup-cookies__text .ref::before {
  content: '';
  display: inline-block;
  position: absolute;
  left: 0px;
  bottom: 2px;
  width: 100%;
  height: .5px;
  background: #4D4D4D;
  transition: all 0.3s ease;
}

.popup-cookies__text .ref:hover {
  color: #004271;
}

.popup-cookies__text .ref:hover::before {
  opacity: 0;
}

.popup-cookies .new-btn {
  display: inline-flex;
  width: 97px;
  padding-left: 10px;
  padding-right: 10px;
  min-width: auto;
  height: 41px;
  margin-top: 0px;
  box-shadow: none;
}

.popup-cookies .new-btn span {
  font-size: 18px;
  line-height: 25px;
  color: #00489D;
  transition: all 0.3s ease;
}

.popup-cookies .new-btn:hover span {
  color: #fff;
}
.popup-cookies .new-btn:hover {
  background-color: #00489D;
}

@media (max-width: 1200px) {

}

@media (max-width: 1000px) {

.popup-cookies {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  border-radius: 0px;
  justify-content: center;
}

.popup-cookies__text {
  width: auto;
  max-width: calc(100% - 97px);
  padding-right: 20px
}

}

@media (max-width: 768px) {

.popup-cookies {
  flex-wrap: wrap;
  padding-top: 14px;
  padding-bottom: 14px;
}

.popup-cookies__text {
  max-width: calc(100% - 65px);
  font-size: 13px;
  line-height: 16px;
}

.popup-cookies .new-btn {
  width: 65px;
}

}

/* Footer */
footer {
  width: 100%;
  position: relative;
  padding-top: 38px;
  padding-bottom: 20px;
}

.footer-content {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: space-between;
}
.footer-content .logo {
  display: inline-block;
  margin-top: auto;
  margin-bottom: auto;
}
.footer-content .logo img {
  bottom: -6px;
}
.ref.link{
  cursor: pointer;
}
.ref.link {
  margin: auto -5px;
  display: inline-block;
  margin-top: auto;
  margin-bottom: auto;
  width: 215px;
  padding-top: 1px;
}
.footer-content .footer-content__ref {
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 50%;
  padding-left: 50px;
  transform: translate(-50%, -50%);
  padding-bottom: 2px;
}
.social {
  display: inline-flex;
  opacity: 0;
  padding-top: 1px;
  margin-top: auto;
  margin-bottom: auto;
  /*cursor: pointer;*/
  /*margin-right: 50px;*/
}
.social .ref {
  display: inline-block;
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  margin-left: 16px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  transition: 0s;
}
.social .ref:hover {
  transform: scale(0.95);
  box-shadow: 0px 1px 10px 3px rgba(0, 0, 0, 0.15);
  transition: 0.3s ease;
}
.denis-web {
  display: inline-block;
  width: 184px;
  margin-top: auto;
  margin-bottom: auto;
}
.denis-web img {
  display: inline-block;
  width: 100%;
}

@media (max-width: 1680px) {
  footer {
    padding-top: 30px;
    padding-bottom: 20px;
  }
}
@media (max-width: 1380px) {
  footer {
    padding-top: 24px;
    padding-bottom: 17px;
  }
  .footer-content .footer-content__ref {
    padding-left: 30px;
  }
}
@media (max-width: 1199px) {
  footer {
    padding-top: 21px;
    padding-bottom: 14px;
  }
  .footer-content .footer-content__ref {
    font-size: 16px;
    padding-left: 10px;
  }
  .denis-web {
    width: 160px;
  }
}
@media (max-width: 991px) {
  footer {
    padding-top: 30px;
    padding-bottom: 92px;
  }
  .footer-content {
    flex-direction: column;
    flex-wrap: wrap;
  }
  .footer-content .logo {
    margin-left: auto;
    margin-right: auto;
  }
  .footer-content .footer-content__ref {
    padding-left: 0px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    left: auto;
    top: auto;
    padding-left: 0px;
    transform: none;
    margin-top: 22px;
  }
  .ref.link, .social {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
  }
  .denis-web {
    width: 184px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 22px;
  }
}
@media (max-width: 575px) {
  footer {
    padding-top: 22px;
    padding-bottom: 88px;
  }
  .footer-content .footer-content__ref {
    margin-top: 15px;
  }
  .denis-web {
    width: 160px;
    margin-top: 15px;
  }
}

/* horizontal lines */

 /*.section-software,*/
 .section-questions {
    border-bottom: 1px solid #9A9A9A;
    border-top: 1px solid #9A9A9A;
 }

.section-questions {
  padding-bottom: 260px !important;
  padding-top: 260px !important;
}
 
 



  /* Section-history */

  .section-history {
    width: 100%;
    padding-top: 125px;
    padding-bottom: 40px;
    overflow: hidden;
  }
  
  .history-info {
    display: flex;
    width: 100%;
  }
  
  .history-info h2 {
    /*font-family: 'Gilroy-ExtraBold', sans-serif;*/
    /*font-family: 'Open Sans', sans-serif;*/
    /*font-weight: normal;*/
    position: relative;
    font-size: 48px;
    line-height: 1.2em;
    max-width: 858px;
    width: 100%;
    color: #1A2E48;
    font-weight: 500;
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  
  .history {
    display: block;
    position: relative;
    width: 100%;
    margin-top: 76px;
  }
  
  .history__btn {
    display: inline-block;
    position: absolute;
    right: 0px;
    bottom: 0px;
    width: 57px;
    height: 12vw;
    max-height: 250px;
    background: rgba(0, 46, 112, 0.7);
    cursor: pointer;
    z-index: 4;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  
  .history__btn img {
    display: inline-block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 27px;
    max-height: 60px;
    transition: all 0.3s ease;
  }
  
  .history__btn:hover {
    background: rgba(0, 46, 112, 0.9);
  }
  
  .history.active .history__btn img {
    transform: translate(-50%, -50%) rotate(-180deg);
  }
  
  
  .history-slider {
    display: flex;
    width: 100%;
  }
  
  .history-slider__item {
    display: none;
    width: 100%;
    border: 0px !important;
  }

  .history-slider__item.active {
    display: block;
  }
  
  .history-items {
    display: flex;
    align-items: flex-start;
    overflow: hidden;
    width: 100%;
    flex-wrap: wrap;
    justify-content: left;
    width: 100vw;
    min-width: 100vw;
    /*height: calc(calc(12vw * 2));
    max-height: calc(calc(250px * 2));*/
  }
  
  .history-items a {
    display: inline-block;
    width: 20%;
    height: 12vw;
    max-height: 250px;
  }
  
  .history-items a img {
    display: block;
    width: 100%;
    min-width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  
  .section-history .controls {
    display: flex;
    width: 100%;
    position: absolute;
    left: 0px;
    padding-left: 58px;
    padding-right: 17px;
    top: calc(50% - 1px);
    transform: translateY(-50%);
    justify-content: space-between;
    pointer-events: none;
  }
  
  .section-history .control {
    display: inline-block;
    width: 57px;
    height: 57px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    position: relative;
    pointer-events: auto;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .section-history .control:hover {
    background: #0042A0;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0);
  }
  
  .section-history .control svg {
    display: inline-block;
    width: 30px;
    height: 30px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  
  .section-history .control_prev svg {
    left: calc(50% - 2px);
  }
  
  .section-history .control_next svg {
    left: calc(50% + 2px);
  }
  
  .section-history .control svg * {
    transition: all 0.3s ease;
  }
  
  .section-history .control:hover svg * {
    fill: #fff;
  }
  
  
  @media (max-width: 1680px) {
  
  .section-history {
      padding-top: 110px;
      padding-bottom: 30px;
  }

  .history-info h2{
    font-size: 44px;
  }
  
  .history {
      margin-top: 56px;
  }

  .section-history .controls {
    padding-left: 46px;
  }
  
  }
  
  @media (max-width: 1380px) {
  
  .section-history {
      padding-top: 100px;
      padding-bottom: 25px;
  }
  
  .history-info h2 {
    font-size: 42px;
    max-width: 902px;
  }
  
  .history {
      margin-top: 48px;
  }
  
  }
  
  @media (max-width: 1200px) {
  
  .history__btn {
    height: 21vw;
    max-height: 230px;
  }
  
  .history-items {
    height: auto;
    max-height: none;
  }
  
  .history-items a {
    width: calc(100% / 2);
    height: 28vw;
    max-height: 265px;
  }

  .history-info h2{
    font-size: 38px;
  }
  
  }
  
  @media (max-width: 1000px) {
  
  .section-history {
      padding-top: 90px;
      padding-bottom: 20px;
  }
  
  .history-info h2 {
    font-size: 30px;
    width: calc(100vw - 40px);
    max-width: 780px;
  }
  
  }

  @media (max-width: 991px){
    .section-history .controls {
        padding-left: 17px;
    }
  }
  
  @media (max-width: 768px) {
  
  .section-history {
      padding-top: 80px;
      padding-bottom: 20px;
  }
  
  .history {
      margin-top: 38px;
  }
  
  .history-info h2 {
    font-size: 25px;
    line-height: 1.26em;
  }
  
  }
  
  @media (max-width: 575px) {
  
  .section-history {
      padding-top: 35px !important;
      padding-bottom: 15px;
  }
  
  .history {
      margin-top: 32px;
  }
  /*
  .history-items {
    height: calc(31vw * 5);
    max-height: calc(252px * 5);
  }
  */
  
  .history-items a {
    width: calc(100% / 2);
    height: 31vw;
    max-height: 252px;
  }
  
  .history__btn {
    width: 40px;
    height: 31vw;
    max-height: 252px;
  }
  
  .history__btn img {
    width: 18px;
    max-height: 50px;
  }
  
  .section-history .controls {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .section-history .control {
    width: 46px;
    height: 46px;
  }
  
  .section-history .control svg {
    width: 22px;
    height: 22px;
  }
  
  .section-history .control_prev svg {
    left: calc(50% - 1px);
  }
  
  .section-history .control_next svg {
    left: calc(50% + 1px);
  }
  
  
  }

  /* Section-questions */
.section-questions {
  padding-top: 172px;
  padding-bottom: 225px;
  margin-bottom: -30px;
  padding-bottom: 30px;
  overflow: hidden;
}

.questions-title {
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 848px;
  text-align: center;
  color: #00063A;
}

.questions {
  display: flex;
  width: 100%;
  max-width: 904px;
  position: relative;
  flex-wrap: wrap;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0px 4px 11px rgba(0, 0, 0, 0.25);
  margin-top: 74px;
}

.questions-item {
  display: inline-flex;
  flex-direction: column;
  position: relative;
  width: 33.3333333333%;
  min-height: 100%;
  padding-top: 70px;
  padding-left: 52px;
  padding-right: 52px;
  padding-bottom: 51px;
}
.questions-item:nth-child(3n-1) {
  border-left: 1px solid #D9D9D9;
  border-right: 1px solid #D9D9D9;
}
.questions-item .btn {
  margin-top: auto;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  min-height: 65px;
}
.questions-item .btn span {
  font-family: "Gilroy-Bold", sans-serif;
  font-weight: normal;
  font-size: 16px;
  line-height: 19px;
}
.questions-item h6 {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 19px;
  font-size: 18px;
  line-height: 22px;
  color: #00063A;
  font-family: "Gilroy-Bold", sans-serif;
  font-weight: normal;
}
.questions-item p {
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 44px;
  font-size: 16px;
  line-height: 1.2em;
  color: #00063A;
}

.questions-item__image {
  display: inline-flex;
  width: 63px;
  height: 63px;
  margin-left: auto;
  margin-right: auto;
}
.questions-item__image img {
  display: inline-block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  margin: auto;
  margin-bottom: 0px;
}

.questions-item__logo {
  display: inline-block;
  position: absolute;
  top: 28px;
  right: 32px;
  width: 78px;
  height: auto;
}

@media (max-width: 1680px) {
  .section-questions {
    padding-top: 114px;
    padding-bottom: 145px;
    padding-bottom: 30px;
  }
  .questions {
    margin-top: 48px;
  }
  .questions-item {
    padding-top: 58px;
    padding-bottom: 42px;
  }
  .questions-item p {
    margin-bottom: 30px;
  }
}
@media (max-width: 1380px) {
  .section-questions {
    padding-top: 90px;
    padding-bottom: 115px;
    padding-bottom: 30px;
  }
  .questions {
    margin-top: 36px;
  }
  .questions-item {
    padding-top: 38px;
    padding-bottom: 35px;
  }
  .questions-item h6 {
    margin-top: 12px;
    margin-bottom: 10px;
  }
  .questions-item p {
    margin-bottom: 26px;
  }
  .questions-item__logo {
    top: 20px;
  }
}
@media (max-width: 1199px) {
  .section-questions {
    overflow: visible;
    margin-bottom: 0px;
    padding-bottom: 0px;
  }
  .questions::before {
    display: none;
  }
}
@media (max-width: 991px) {
  .section-questions {
    padding-top: 82px;
    padding-bottom: 104px;
    padding-bottom: 0px;
  }
  .questions {
    width: 100%;
    max-width: 520px;
    flex-wrap: wrap;
    overflow: visible;
    border-radius: 0px;
    background: transparent;
    box-shadow: none;
    margin-top: 8px;
  }
  .questions-item {
    width: 100%;
    min-height: auto;
    margin-top: 30px;
    background: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0px 4px 11px rgba(0, 0, 0, 0.25);
  }
}
@media (max-width: 767px) {
  .section-questions {
    padding-top: 56px;
    padding-bottom: 78px;
    padding-bottom: 0px;
  }
  .questions {
    margin-top: 12px;
  }
  .questions-item {
    padding-top: 28px;
    padding-bottom: 28px;
    padding-left: 30px;
    padding-right: 30px;
    margin-top: 20px;
  }
  .questions-item h6 br {
    display: none;
  }
  .questions-item p {
    margin-bottom: 20px;
  }
  .questions-item p br {
    display: none;
  }
  .questions-item .btn span br {
    display: none;
  }
  .questions-item__logo {
    top: 15px;
    right: 15px;
    width: 66px;
  }
}
@media (max-width: 575px) {
  .questions-item h6 {
    font-size: 13px;
    line-height: 16px;
  }
  .questions-item p {
    font-size: 13px;
    line-height: 16px;
  }
  .questions-item .btn {
    min-height: 50px;
  }
  .questions-item .btn span {
    font-size: 13px;
    line-height: 15px;
  }
}

/* Modal */
.overlay {
  position: absolute;
  width: 0vw;
  height: 0%;
  left: 0px;
  top: 0px;
  background: rgba(24, 24, 24, 0.8);
  opacity: 0;
  z-index: -2;
  transition: opacity 0.4s ease;
}

.overlay.active {
  cursor: pointer;
  left: 0px;
  top: 0px;
  position: fixed;
  width: 100vw;
  height: 100vh;
  opacity: 1;
  z-index: 100;
  transition: opacity 0.4s ease;
}

.modal {
  position: absolute;
  width: 0vw;
  height: 0%;
  left: -9999px;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  z-index: -2;
}

.icon_close {
  position: fixed;
  height: 30px;
  width: auto;
  right: 20px;
  top: 20px;
  cursor: pointer;
}

.icon_close img {
  height: 100%;
}

.modal-main h4{
  font-size: 24px;
}

.modal.active {
  position: fixed;
  width: 1050px;
  border-radius: 20px;
  max-width: calc(100vw - 30px);
  max-height: calc(100vh - 100px);
  overflow: auto;
  background: #fff;
  box-shadow: 2px 2px 9px rgba(0, 0, 0, 0.25);
  height: auto;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
  z-index: 101;
  transition: opacity 0.4s ease;
}

.modal_main.modal.active{
  width: 1050px;
  left: calc(calc(100vw - 1050px)/2);
  transform: translateY(-50%);
}

.modal.active.modal_question {
  width: 406px;
}

.modal_active .service__sidebar-content {
  width: 100% !important;
  position: relative !important;
}

.modal-close {
  display: inline-flex;
  position: absolute;
  right: -64px;
  top: -2px;
  width: 42px;
  height: 42px;
  cursor: pointer;
}

.modal-close svg {
  display: block;
  width: 100%;
  max-height: 100%;
}

.modal-inner {
  display: block;
  width: 100%;
}

.modal-main {
  padding-left: 50px;
  padding-right: 50px;
  padding-top: 65px;
  padding-bottom: 65px;
}

.modal-main__intro {
  width: 100%;
  max-width: 520px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.modal-main__intro h4 {
  display: block;
  width: 100%;
  line-height: 41px;
  text-align: center;
  color: #000;
  font-family: "OpenSans-ExtraBold", sans-serif;
}

.modal-main__intro p {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 2px;
  font-size: 20px;
  line-height: 39px;
  font-family: "OpenSans-Regular", sans-serif;
}

.contacts-cities {
  display: flex;
  position: relative;
  width: calc(100% - 50px);
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
  padding-top: 0;
  border-top: 1px solid #EAEAEA;
}

.contacts-cities img {
  display: block;
  width: 100%;
  height: auto;
}

.contacts-items {
  /*align-items: flex-end;
  display: flex;
  flex-wrap: wrap;*/
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 37px);
  min-width: calc(100% + 37px);
  padding-top: 25px;
}

.contact-item {
  position: relative;
  float: left;
  /*height: 525px;*/
  width: calc(33.3333333333% - 37px);
  margin-right: 37px;
  padding-top: 8px;
  padding-bottom: 68px;
  margin-top: 45px;
  border-bottom: 1px solid #EAEAEA;
}
.contacts-cities{
  display: block;
}
.contacts-cities ul, .contacts-cities li{
  margin: 0;
  padding: 0;
}
.contacts-cities .card-header{
  width: 100%;
  font-size: 21px;
  font-weight: 800;
  color: #000;
  padding: 25px 0;
  margin: 0;
  text-align: center;
  line-height: 1.33em;
  font-family: "OpenSans-ExtraBold", sans-serif;
}

.contacts-cities .card-body{
  padding: 0 60px 30px;

}

ul.contacts-menu{
  list-style: none;
  text-align: center;
}

ul.contacts-menu li {
  display: inline-block;
  vertical-align: top;
  margin: 0 7px 7px;
  font-size: 16px;
}
ul.contacts-menu li a {
  padding: 5px 10px;
  display: block;
  color: #000;
  background-color: #FFF;
  border-radius: 20px;
  border: 1px solid #FFF;
  text-decoration: none;
  transition: all ease .4s;
  font-family: "OpenSans-Regular", sans-serif;
}
ul.contacts-menu li a.active {
  color: #FFF;
  background-color: #0066FF;
  border-color: #0066FF;
}
ul.contacts-menu li a:hover{
  border-color: #0066FF;
}
.modal.modal_main.active::-webkit-scrollbar{ 
  width: 0 !important; 
}
.modal.modal_main.active{
  -ms-overflow-style: none;
  overflow: -moz-scrollbars-none;
}



@media (max-width: 767px){
  ul.contacts-menu {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      margin: 0 -3px;
  }
  .icon_close {
    right: 15px;
    top: 15px;
  }
}
.contacts-cities .card-footer{
  border-radius: 10px;
  overflow: hidden;
}
.contacts-cities .card-map{
  width: 100%;
  height: 490px;
}
.contacts-cities .card-map img{
  width: 64px;
  height: 64px;
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: 44px 0 0 -17px;
}

.modal-main .contact-map{
  position: absolute;
  height: 220px;
  bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 4px 4px 0px rgb(0 0 0 / 40%);
}
.modal-main .contact-map img{
  width: 64px;
  height: 64px;
  margin: auto;
}
.modal-main .card-preloader{
  cursor: wait;
}
.contacts-items h2{
  width: 100%;
  font-size: 30px;
  font-weight: 800;
  padding: 35px 0;
  margin: 0;
  text-align: center;
  line-height: 1.33em;
  font-family: "OpenSans-Bold", sans-serif;
  /*border-bottom: 1px solid #EAEAEA;*/
}


.contact-item h6 {
  display: block;
  font-family: "OpenSans-ExtraBold", sans-serif;
  font-weight: normal;
  font-size: 20px;
  line-height: 24px;
  color: #000;
  margin-top: 15px;
  margin-bottom: -5px;
  /*height: 45px;*/
  height: auto;
}

.contact-item>.ref {
  font-size: 15px;
  font-family: "OpenSans-Regular", sans-serif;
  color: #000;
  border-bottom: 1px dashed rgb(8, 85, 176);
  margin-top: 15px;
}

.contact-item>.ref:hover {
  color: #388AEC;
  border-bottom: 1px solid dashed;
  border-bottom: 1px dashed rgba(8, 85, 176, 0);
}

.contact-map {
  display: flex;
  width: 100%;
  margin-top: 43px;
}

.contact-map img {
  display: block;
  width: 100%;
  height: auto;
}

.contacts-status {
  display: inline-flex;
  align-items: center;
  position: relative;
  padding-left: 40px;
  padding-right: 15px;
  min-height: 38px;
  border: 1px solid #C4C4C4;
  border-radius: 40px;
  top: 0px;
}

.contacts-status img {
  display: inline-block;
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
  object-fit: cover;
}

.contacts-status span {
  display: inline-block;
  font-size: 15px;
  line-height: 20px;
  color: #000;
  font-family: "OpenSans-Regular", sans-serif;
}

.contact-item__list {
  display: block;
  width: 100%;
  padding-bottom: 220px;
}

.contact-item__list-item {
  display: block;
  width: 100%;
  position: relative;
  padding-left: 35px;
  margin-top: 22px;
}

.contact-item__list-item:nth-child(1) {
  height: auto;/*72px*/
}

.contact-item__list-item img {
  display: inline-block;
  position: absolute;
  left: 0px;
  top: 1px;
}

.contact-item__list-item span {
  font-family: "OpenSans-Regular", sans-serif;
  font-size: 15px;
  line-height: 20px;
}

.contact-item__list-item span .ref {
  display: inline;
  font: inherit;
  margin-top: 0;
  color: #000;
}

.contact-item__list-item span .ref_link {
  /*border-bottom: 1px dotted black;*/
  text-decoration: underline;
  text-decoration-style: dashed;
  text-underline-offset: 0.35em;
  text-decoration-thickness: 0.5px;
}

.contact-item__list-item span .ref:hover {
  color: #388AEC;
  text-decoration: none;
}

.modal-question {
  display: flex;
  flex-direction: column;
  padding-left: 78px;
  padding-right: 78px;
  padding-top: 48px;
  padding-bottom: 42px;
}

.modal-question h6 {
  display: block;
  width: 100%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  color: #000;
  font-size: 20px;
  line-height: 27px;
  font-family: "OpenSans-ExtraBold", sans-serif;
  padding-bottom: 8px;
}

.modal-question p {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 15px;
  line-height: 20px;
  color: #4D4D4D;
  margin-top: 20px;
  font-family: "OpenSans-Regular", sans-serif;
}

.modal-question ul {
  display: flex;
  width: 100%;
  flex-direction: column;
  padding-top: 18px;
}

.modal-question a{
  color: #000;
}

.modal-question ul li {
  display: flex;
  flex-direction: row;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-bottom: 18px;
  font-family: "OpenSans-Regular", sans-serif;
  font-weight: normal;
  font-size: 15px;
  line-height: 20px;
  color: #333333;
}

.modal-question ul li .ref {
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
  font: inherit;
  color: #000;
  padding-bottom: 1px;
  border-bottom: 1px dashed #000;
}

.modal-question ul li .ref:hover {
  border-bottom-color: transparent;
}

.modal_service .modal-question ul {
  padding-top: 23px;
}

.modal_service .modal-question ul li {
  display: flex;
  flex-direction: column;
}

.modal_service .modal-question ul li .ref {
  margin-top: 4px;
}

@media (max-width: 1680px) {
  .modal-main {
    padding-top: 55px;
    padding-bottom: 52px;
  }

  .contacts-cities {
    margin-top: 25px;
  }

  .contacts-cities .card-header{
    padding: 25px 0;
  }

  .contacts-items {
    padding-top: 22px;
  }

  .contact-item {
    padding-bottom: 48px;
    margin-top: 25px;
  }

  .contact-map {
    margin-top: 32px;
  }

  .modal-question {
    padding-top: 40px;
    padding-bottom: 34px;
  }

  .modal-question p {
    margin-top: 15px;
  }

  .modal-question ul {
    padding-top: 14px;
  }

  .modal-question ul li {
    margin-bottom: 14px;
  }
}

@media (max-width: 1380px) {
  
  .modal.active.modal_main {
    width: 960px;
    max-width: 100vw;
    left: calc(calc(100vw - 960px)/2);
  }

  .modal-main {
    padding-top: 45px;
    padding-bottom: 48px;
  }

  .modal-main__intro p {
    font-size: 18px;
    line-height: 36px;
  }

  .contacts-cities {
    margin-top: 15px;
  }

  .contacts-items {
    padding-top: 8px;
  }

  .contact-item {
    padding-bottom: 40px;
    margin-top: 12px;
  }

  .contacts-status {
    margin-top: 15px;
  }

  .contact-map {
    margin-top: 22px;
  }
}

@media (max-width: 1199px) {
  .modal.active.modal_main {
    width: 940px;
    max-width: calc(100% - 35px);
    left: calc(calc(100vw - 940px)/2);
  }

  .modal.active {
    width: 960px;
  }

  .contact-item h6{
    /*height: 70px;*/
    height: auto;
  }

  .contact-item__list-item:nth-child(1){
    /*height: 85px;*/
  }

  .contact-item{
    height: 540px;
  }

  .modal-main {
    padding-left: 70px;
    padding-right: 70px;
  }

  .contacts-cities {
    width: 100%;
  }
}

@media (max-width: 991px) {
  .modal.active.modal_main {
    width: 600px;
    left: calc(calc(100vw - 600px)/2);
  }

  .contacts-items {
    align-items: flex-end;
    display: flex;
    flex-wrap: wrap;
  }

  .contact-item h6{
    height: auto;
  }

  .contact-item {
    height: auto;
  }

  .contact-item__list-item:nth-child(1) {
    height: auto;
  }

  .modal-main .contact-map{
    /*position: relative;*/
    bottom: -5px;
  }

  .modal-main {
    padding-left: 50px;
    padding-right: 50px;
  }

  .modal-main__intro h4 {
    line-height: 34px;
  }

  .contacts-items {
    width: 100%;
    min-width: 100%;
  }

  .contact-item {
    width: 100%;
    margin-right: 0px;
  }

  .contact-map {
    /*max-width: 405px;*/
    max-width: 100%;
  }
  ul.contacts-menu li a{
    font-size: 14px;
  }
  .contact-item__list-item span {
    font-size: 14px;
    line-height: 18px;
  }
  .contacts-cities .card-body {
    padding: 0 10px 20px;
  }
}

@media (max-width: 767px) {
  .modal.active.modal_question {
    width: 380px;
  }

  .modal.active.modal_main {
    width: 570px;
    left: calc(calc(100vw - 570px)/2);
  }

  .modal-main {
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 28px;
    padding-bottom: 34px;
  }

  .modal-main__intro h4 {
    line-height: 28px;
  }

  .modal-main__intro p {
    font-size: 14px;
    line-height: 18px;
    margin-top: 5px;
  }

  .contacts-cities {
    margin-top: 15px;
  }

  .contacts-items {
    padding-top: 4px;
  }

  .contact-item {
    padding-bottom: 30px;
    margin-top: 8px;
  }

  .contact-item h6 {
    font-size: 15px;
    line-height: 19px;
  }

  .contacts-status {
    margin-top: 15px;
    min-height: 32px;
    padding-left: 34px;
  }

  .contacts-status img {
    width: 20px;
    height: 20px;
  }

  .contacts-status span {
    font-size: 13px;
  }

  .contact-item__list {
    padding-top: 2px;
  }

  .contact-item__list-item {
    padding-left: 28px;
    margin-top: 15px;
  }

  .contact-item__list-item img {
    width: 18px;
  }

  .contact-item__list-item span {
    font-size: 13px;
    line-height: 17px;
  }

  .contact-map {
    margin-top: 18px;
    max-width: 100%;
  }

  .modal-question {
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 32px;
    padding-bottom: 22px;
  }

  .modal-question h6 {
    font-size: 15px;
    line-height: 19px;
    padding-bottom: 4px;
  }

  .modal-question p {
    font-size: 13px;
    line-height: 16px;
  }

  .modal-question ul {
    margin-bottom: -4px;
  }

  .modal-question ul li {
    font-size: 13px;
    line-height: 18px;
  }
}

@media (max-width: 575px) {
  .modal.active {
    width: 330px;
    max-width: calc(100vw - 30px);
    
  }

  .modal.active.modal_question {
    width: 330px;
    max-width: calc(100vw - 30px);
  }

  .modal.active.modal_main {
    width: 450px;
    max-width: calc(100% - 30px);
    left: calc(calc(100vw - 450px)/2);
  }

  .modal-main {
    padding-left: 40px;
    padding-right: 40px;
  }

  .modal-main__intro h4 br {
    display: none;
  }

  .contacts-cities .card-map{
    height: 350px;
  }

  .modal-question {
    padding-left: 20px;
    padding-right: 20px;
  }
  .contacts-items h2{
    line-height: 0.5em;
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .modal.active.modal_main {
    left: 15px;
  }
}

@media (max-width: 376px) {
  .contacts-cities .card-map{
    height: 265px;
  }
}

/* Map */
.icon-cluster {
	font-family: 'Open Sans', sans-serif;
	font-weight: 900;
	font-size: 16px;
	color: #388AEC;
	position: absolute;
	width: 30px;
	height: 30px;
	line-height: 30px;
	bottom: 18px;
	right: 14px;
	border-radius: 50%;
}

/* Section-connection */
.section-connection {
  overflow: hidden;
  background: #00063A;
}

.connection {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 68px;
}
.connection .contact-form {
  width: calc(100% - 606px - 30px);
  max-width: 495px;
  margin-bottom: 50px;
  margin-top: 60px;
}

.connection__bg {
  display: inline-flex;
  width: 606px;
  margin-right: 30px;
  height: auto;
  position: relative;
  margin-top: auto;
}
.connection__bg img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 768px;
  position: relative;
  left: -8px;
  z-index: 2;
  object-fit: cover;
  object-position: center top;
}

.contact-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.25);
  padding-left: 62px;
  padding-right: 62px;
  padding-bottom: 84px;
  padding-top: 66px;
  border-radius: 20px;
  border: 1px solid #FFF;
}
.contact-form h3, .contact-form h4 {
  display: block;
  width: 100%;
  text-align: center;
  word-wrap: break-word;
  line-height: 1.23em;
  color: #fff;
  font-family: "Gilroy-Bold", sans-serif;
  font-weight: normal;
}
.contact-form h3 span, .contact-form h4 span {
  display: inline-block;
  font: inherit;
  color: inherit;
}
.contact-form h4 {
  padding-bottom: 4px;
}
.contact-form p {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 13px;
  line-height: 1.2em;
}
.contact-form form {
  width: 100%;
  max-width: 270px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding-top: 26px;
}
.contact-form form .input {
  width: 100%;
  margin-top: 15px;
}
.contact-form form .select {
  width: 100%;
  margin-top: 15px;
}
.contact-form form .select .input {
  width: 100%;
  height: 100%;
  margin-top: 0px;
}
.contact-form .btn {
  width: 100%;
  max-width: 270px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 44px;
  min-height: 67px;
  background: #3562FF;
  border-color: #3562FF;
  box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.25) !important;
}
.contact-form .btn span {
  color: #fff;
  font-size: 22px;
  font-family: "Gilroy-Bold", sans-serif;
}
.contact-form .btn:hover {
  background: #fff;
  border-color: #fff;
}
.contact-form .btn:hover span {
  color: #00063A;
}

@media (max-width: 1680px) {
  .connection {
    margin-top: 52px;
    padding-right: 50px;
  }
  .connection .contact-form {
    width: calc(100% - 544px - 30px);
    margin-bottom: 40px;
    margin-top: 50px;
  }
  .connection__bg {
    width: 544px;
  }
  .connection__bg img {
    max-height: 680px;
    left: 0px;
  }
  .contact-form {
    padding-bottom: 64px;
    padding-top: 50px;
  }
  .contact-form .btn {
    margin-top: 35px;
  }
}
@media (max-width: 1380px) {
  .connection {
    justify-content: center;
    margin-top: 35px;
    padding-right: 0px;
  }
  .connection .contact-form {
    width: calc(100% - 480px - 50px);
    max-width: 405px;
    margin-bottom: 25px;
    margin-top: 45px;
  }
  .connection__bg {
    width: 480px;
    margin-right: 50px;
  }
  .connection__bg img {
    max-height: 588px;
    left: 0px;
  }
  .contact-form {
    padding-left: 35px;
    padding-right: 35px;
    padding-bottom: 50px;
    padding-top: 35px;
  }
  .contact-form .btn {
    margin-top: 28px;
  }
}
@media (max-width: 1199px) {
  .connection .contact-form {
    width: calc(100% - 480px - 40px);
    max-width: 380px;
  }
  .connection__bg {
    width: 480px;
    margin-right: 40px;
  }
  .contact-form {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (max-width: 991px) {
  .section-connection {
    padding-top: 80px;
    padding-bottom: 75px;
  }
  .section-connection .connection {
    margin-top: 0px;
  }
  .connection__bg {
    display: none;
  }
  .connection .contact-form {
    width: 100%;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 45px;
    margin-bottom: 0px;
    padding-right: 45px;
    margin-top: 0px;
  }
  .contact-form {
    padding-bottom: 54px;
    padding-top: 40px;
  }
  .contact-form .btn {
    margin-top: 32px;
  }
}
@media (max-width: 768px) {
  .section-connection {
    padding-top: 65px;
    padding-bottom: 60px;
  }
}
@media (max-width: 575px) {
  .section-connection {
    padding-top: 60px;
    padding-bottom: 55px;
  }
  .connection .contact-form {
    max-width: 100%;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .contact-form {
    padding-bottom: 36px;
    padding-top: 28px;
  }
  .contact-form .btn {
    margin-top: 22px;
    min-height: 55px;
  }
  .contact-form .btn span {
    font-size: 18px;
  }
  .contact-form h3 {
    font-size: 20px;
  }
  .contact-form h4 {
    font-size: 17px;
  }
  .contact-form form {
    padding-top: 12px;
  }
  .contact-form form .input {
    margin-top: 10px;
  }
  .contact-form form .select {
    margin-top: 10px;
  }
  .contact-form form .btn {
    min-height: 47px;
    margin-top: 10px;
  }
  .contact-form form .btn span {
    font-size: 15px;
  }
}

#section-safety {
  display: none;
}