@charset "UTF-8";
.header {
  background-color: #eceeef;
  padding-top: 15px;
  padding-bottom: 15px;
  margin-bottom: 70px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  max-height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 15;
}
.header__right {
  width: 60%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1359px) {
  .header__right {
    width: 80%;
  }
}
.header__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header__navigation {
  width: 65%;
  padding-top: 55px;
}
@media screen and (max-width: 1024px) {
  .header__navigation {
    display: none;
  }
}
.header__list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header__item {
  list-style-type: none;
  height: 80px;
  margin-top: 0px;
}
.header__item .header__submenu-second {
  display: none;
}
.header__item a {
  font-size: 16px;
  line-height: 20px;
  color: #595959;
  text-decoration: none;
  padding: 10px 5px;
  cursor: pointer;
}
.header__item a:hover {
  color: #fff;
  background-color: #fe6a00;
  border-radius: 2px;
}
.header__item a:active {
  color: #fff;
  background-color: #fe6a00;
  border-radius: 2px;
}
.header__item > .header__submenu {
  display: none;
}
.header__item:hover > .header__submenu {
  display: block;
  width: 100%;
  background: #d4d4d4;
  -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2) !important;
          box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2) !important;
  position: absolute;
  top: 90px;
  left: 0;
  padding: 20px;
  padding-bottom: 0;
}
.header__item:hover > .header__submenu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 1200px;
  margin: 0 auto;
}
@media screen and (min-width: 1025px) and (max-width: 1240px) {
  .header__item:hover > .header__submenu ul {
    width: 1000px;
  }
}
.header__item:hover > .header__submenu li {
  width: 15%;
  height: 85px;
  list-style-type: none;
  padding-top: 15px;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 10px;
  font-size: 14px;
  border: 1px solid #fff;
  border-bottom: none;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  margin-right: 5px;
  text-align: center;
  position: relative;
}
.header__item:hover > .header__submenu li a {
  display: inline-block;
  width: 80%;
  max-width: 80%;
  color: #404040;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-right: 0;
  margin: 0 auto;
  position: relative;
}
.header__item:hover > .header__submenu li a:hover, .header__item:hover > .header__submenu li a:active {
  background-color: #fe6a00;
  color: #fff;
  border-radius: 10px;
}
.header__item:hover > .header__submenu li:hover, .header__item:hover > .header__submenu li:active {
  background-color: #fff;
}
.header__item:hover > .header__submenu li:hover a, .header__item:hover > .header__submenu li:active a {
  background-color: #fe6a00;
  color: #fff;
  border-radius: 10px;
}
.header__item:hover > .header__submenu li:hover .header__submenu-second, .header__item:hover > .header__submenu li:active .header__submenu-second {
  width: 1200px;
  left: -140%;
  position: absolute;
  background-color: #6b6b6b;
  display: block;
  border-radius: 5px;
  padding: 15px;
  z-index: 1000;
  top: 110px;
}
@media screen and (min-width: 1025px) and (max-width: 1240px) {
  .header__item:hover > .header__submenu li:hover .header__submenu-second, .header__item:hover > .header__submenu li:active .header__submenu-second {
    width: 1000px;
  }
}
.header__item:hover > .header__submenu li:hover .header__submenu-second--first, .header__item:hover > .header__submenu li:active .header__submenu-second--first {
  left: -40%;
}
.header__item:hover > .header__submenu li:hover .header__submenu-second--third, .header__item:hover > .header__submenu li:active .header__submenu-second--third {
  left: -245%;
}
.header__item:hover > .header__submenu li:hover .header__submenu-second--third > .header__submenu-second__list, .header__item:hover > .header__submenu li:active .header__submenu-second--third > .header__submenu-second__list {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.header__item:hover > .header__submenu li:hover .header__submenu-second--fourth, .header__item:hover > .header__submenu li:active .header__submenu-second--fourth {
  left: -350%;
}
.header__item:hover > .header__submenu li:hover .header__submenu-second--fourth > .header__submenu-second__list, .header__item:hover > .header__submenu li:active .header__submenu-second--fourth > .header__submenu-second__list {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.header__item:hover > .header__submenu li:hover .header__submenu-second__list, .header__item:hover > .header__submenu li:active .header__submenu-second__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-left: 0;
}
.header__item:hover > .header__submenu li:hover .header__submenu-second__list li, .header__item:hover > .header__submenu li:active .header__submenu-second__list li {
  width: 19%;
  border: none;
  text-align:  center;
  height: auto;
  padding-left: 0;
  padding-right: 0;
}
.header__item:hover > .header__submenu li:hover .header__submenu-second__list li a, .header__item:hover > .header__submenu li:active .header__submenu-second__list li a {
  background-color: transparent;
  font-size: 11px;
  line-height: 20px;
  color: #fff;
  text-align: left;
}

.header__item:hover > .header__submenu li:hover .header__submenu-second__list li a p, .header__item:hover > .header__submenu li:active .header__submenu-second__list li a p {
  color: #fff;
  font-size: 11px;
  line-height: 16px;
  font-weight: 300;
  text-transform: initial;
  margin-top: 5px;
}
.header__item:hover > .header__submenu li:hover .header__submenu-second__list li a img, .header__item:hover > .header__submenu li:active .header__submenu-second__list li a img {
  width: 100%;
  height: 100px;
}
.header__item:hover > .header__submenu li:hover .header__submenu-second__list li:hover, .header__item:hover > .header__submenu li:hover .header__submenu-second__list li:active, .header__item:hover > .header__submenu li:active .header__submenu-second__list li:hover, .header__item:hover > .header__submenu li:active .header__submenu-second__list li:active {
  cursor: pointer;
  background-color: #fe6a00;
  border-radius: 8px;
  padding-left: 0;
}
.header__networks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__networks a {
  text-decoration: none;
}
.header__networks--linkedin {
  margin-right: 10px;
}
.header__networks--linkedin img {
  border-radius: 50%;
  width: 30px;
  height: 30px;
}
.header__networks--linkedin img:hover, .header__networks--linkedin img:active {
  -webkit-box-shadow: 0 0 3px #0077b5;
          box-shadow: 0 0 3px #0077b5;
}
.header__networks--youtube {
  margin-right: 10px;
}
.header__networks--youtube img {
  border-radius: 50%;
  width: 30px;
  height: 30px;
}
.header__networks--youtube img:hover {
  -webkit-box-shadow: 0 0 3px #c4302b;
          box-shadow: 0 0 3px #c4302b;
}
.header__networks--fb {
  margin-right: 10px;
}
.header__networks--fb img {
  border-radius: 50%;
  width: 30px;
  height: 30px;
}
.header__networks--fb img:hover {
  -webkit-box-shadow: 0 0 3px #1778f2;
          box-shadow: 0 0 3px #1778f2;
}
.header__networks--registration {
  width: 100%;
  padding: 7px 15px;
  background-color: #fe6a00;
  color: #fff;
  border: 1px solid transparent;
  border-radius: 15px;
}
.header__networks--registration:hover, .header__networks--registration:active {
  background-color: #fff;
  border: 1px solid #fe6a00;
  color: #fe6a00;
}
.header__modal {
  z-index: 10000;
  width: 100%;
  max-width: 800px !important;
  background: url("https://www.geomage.com/wp-content/uploads/2023/05/MicrosoftTeams-image-5-e1613060336988.jpg") no-repeat;
}
.header__modal-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header__modal-container-left {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.header__modal-container-left button {
  width: 260px;
  height: 46px;
  border: none;
  background-color: #0077b5;
  border-radius: 8px;
}
.header__modal-container-left button a {
  text-transform: uppercase;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}
.header__modal-container-right {
  width: 50%;
}

.auth-tabs {
  width: 320px;
  margin: 50px auto;
  font-family: sans-serif;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 10px;
}

.tab-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 20px;
}

.tab-btn {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 10px;
  background: #f1f1f1;
  border: none;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 16px;
}

.tab-btn i {
  margin-right: 5px;
}

.tab-btn.active {
  background: #fe6a00;
  color: white;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.auth-form h2 {
  margin-bottom: 15px;
  font-size: 22px;
  text-align: center;
}

.auth-form label {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  text-align: left;
}

.auth-form label i {
  margin-right: 5px;
  color: #555;
}

.auth-form input {
  width: 100%;
  padding: 8px;
  margin-top: 4px;
  margin-bottom: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.auth-form button {
  width: 100%;
  padding: 10px;
  background: #fe6a00;
  color: white;
  border: none;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}

.auth-form button i {
  margin-right: 5px;
}

.auth-form button:hover {
  background: #218838;
}

.user__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.user__name label {
  width: 45%;
  text-align: left;
}

.footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
}
.footer__container--bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 15px;
}
@media screen and (max-width: 767px) {
  .footer__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: 0;
  }
}
.footer__item {
  list-style-type: none;
  padding-right: 15px;
}
.footer__item a {
  font-size: 16px;
  line-height: 20px;
  color: #5d5e61;
  text-decoration: none;
}
.footer__item a:hover, .footer__item a:active {
  color: #fe6a00;
}
@media screen and (max-width: 767px) {
  .footer__item {
    padding-right: 0;
    padding-bottom: 10px;
  }
}

.footer__img {
  width: 150px;
  height: 50px;
}
.footer__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.footer__bottom {
  background-color: #0063a4;
  padding-top: 25px;
  padding-bottom: 25px;
}
.footer__bottom p {
  color: #fff;
  font-size: 14px;
  line-height: 26px;
  font-weight: 400;
}
.footer__network a {
  font-size: 22px;
  color: #fff;
  padding-right: 10px;
}
@media screen and (max-width: 767px) {
  .footer {
    width: 100%;
  }
}

.software {
  padding-bottom: 90px;
  padding-top: 60px;
  position: relative;
}
.software__title {
  width: 100%;
  max-width: 165px;
  position: relative;
  font-size: 36px;
  line-height: 40px;
  font-weight: 600;
  color: #0165a7;
  margin: 0 auto;
  z-index: -1;
}

.software__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 60px;
}
.software__container-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
@media (max-width: 992px) {
  .software__container-tabs {
    display: none;
  }
}
.software__container-tabs > .tab {
  cursor: pointer;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 -1px 0 0;
  padding: 25px 0px;
}
.software__container-tabs > .tab h3 {
  font-size: 20px;
  color: #222;
  margin: 5px 0;
  font-weight: 700;
  line-height: 30px;
  padding: 0px 10px;
  text-align: center;
}
.software__container-tabs > .tab p {
  width: 90%;
  font-size: 14px;
  line-height: 26px;
  color: #555;
  font-weight: 200;
  text-align: center;
}
.software__container-tabs > .tab img {
  width: 42px;
  height: 42px;
  text-align: center;
  margin-bottom: 20px;
}
.software__container-tabs > .tab--active {
  position: relative;
  background-color: #fff;
  color: black;
  background-color: #fe6a00;
}
.software__container-tabs > .tab--active h3 {
  color: #fff;
}
.software__container-tabs > .tab--active p {
  color: #fff;
}
.software__container-tabs > .tab--active::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0 !important;
  margin: auto;
  border: 20px solid transparent;
  border-top: 20px solid #fe6a00;
  width: 0;
}

.content {
  display: none;
  padding: 3em;
  padding-left: 0;
  padding-right: 0;
  background-color: #fff;
}
@media (max-width: 992px) {
  .content {
    display: block;
    padding: 0;
  }
}
.content__body {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 992px) {
  .content__body {
    display: none;
    padding: 1.5em 0;
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.4s ease;
    transition: max-height 0.4s ease;
  }
}
.content.open .content__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

.content__body--download {
  margin-bottom: 30px;
  position: relative; 
  padding-top: 50px;
  padding-bottom: 50px;
}

.content__body--download-reverse {
  flex-direction: row-reverse;
}

@media (max-width: 992px) {
  .content__body--download {
    display: flex;
    flex-direction: column-reverse;
    padding: 1.5em 0;
    height: auto;
    max-height: 100%;
    overflow: hidden;
    -webkit-transition: max-height 0.4s ease;
    transition: max-height 0.4s ease;
  }

  .content__body--download ul {
    padding-left: 0;
  }
}

.content__body--download::after {
  position: absolute;
  content: "";
  width: 60%;
  height: 2px;
  background-color: #333;
  bottom: -5%;
  left: 20%;
  right: 0;
}

.content__body--download:nth-child(3)::after {
  display: none;
}


.content__right {
  width: 45%;
  margin-top: 35px;
}
.content__right img {
  width: 100%;
}
@media (max-width: 992px) {
  .content__right {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    margin-top: 20px;
  }
  .content__right img {
    width: 100%;
  }
}
.content__left {
  width: 45%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 992px) {
  .content__left {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
}
.content__left h3 {
  color: #0165a7;
  margin-bottom: 15px;
  font-weight: bold;
  font-size: 30px;
}
@media (max-width: 992px) {
  .content__left h3 {
    font-size: 26px;
  }
}
.content__left p {
  font-size: 15px;
  line-height: 20px;
  color: #333;
}
.content__left ul li {
  position: relative;
  font-size: 15px;
  line-height: 20px;
  color: #333;
  font-weight: 300;
  list-style-type: none;
  margin: 8px 0;
}
.content__left ul li i {
  font-size: 12px;
  color: #fe6a00;
  padding-right: 10px;
}
.content__left ul li::before {
  position: absolute;
  content: "";
  left: -20px;
  color: #fe6a00;
}
.content__left .button {
  margin-top: 30px;
}
.content__left .button button {
  cursor: pointer;
}
@media (max-width: 992px) {
  .content__left .button button {
    margin-bottom: 10px;
  }
}
.content__left .button__blue {
  font-size: 16px;
  background-color: #225476;
  padding: 7px 20px;
  color: #fff;
  border-radius: 4px;
  display: inline-block;
  border: 1px solid transparent;
  margin-right: 15px;
}
@media (max-width: 1359px) {
  .content__left .button__blue {
    margin-right: 5px;
  }
}
.content__left .button__blue:hover, .content__left .button__blue:active {
  background-color: transparent;
  border: 1px solid #225476;
  color: #225476;
}
.content__left . {
  font-size: 16px;
  background-color: #fe6a00;
  color: #fff;
  padding: 7px 20px;
  border-radius: 4px;
  border: 1px solid transparent;
  margin-right: 15px;
}
@media (max-width: 1359px) {
  .content__left . {
    padding: 7px 15px;
    margin-right: 5px;
  }
}
.content__left .:hover, .content__left .:active {
  background-color: transparent;
  border: 1px solid #fe6a00;
  color: #fe6a00;
}
.content__left .button__transparent {
  font-size: 16px;
  background-color: transparent;
  color: #333;
  padding: 7px 20px;
  border-radius: 4px;
  border: 1px solid #333;
}

/* Email button styling - identical to button__transparent but not intercepted by JavaScript */
.button__transparent-email {
  font-size: 16px;
  background-color: transparent;
  color: #333;
  padding: 7px 20px;
  border-radius: 4px;
  border: 1px solid #333;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.button__transparent-email:hover {
  background-color: #333;
  color: white;
}

.tab__mobile {
  display: none;
}
@media (max-width: 992px) {
  .tab__mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: #fe6a00;
    cursor: pointer;
    margin-bottom: 20px;
  }
  .tab__mobile h3 {
    font-size: 20px;
    color: #fff;
    margin: 5px 0;
    font-weight: 700;
    line-height: 30px;
    padding: 0px 10px;
    text-align: center;
  }
  .tab__mobile p {
    font-size: 14px;
    line-height: 26px;
    color: #fff;
    font-weight: 200;
    text-align: center;
  }
  .tab__mobile img {
    width: 42px;
    height: 42px;
    text-align: center;
    margin-bottom: 20px;
  }
}

@media screen and (min-width: 993px) and (max-width: 1359px) {
  .container--content {
    width: 100%;
  }
}

.content--active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 992px) {
  .content--active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.services {
  background-color: #0063a4;
}
.services--multifocusing {
  height: 100%;
  margin-top: -70px;
  padding-top: 70px;
}
.services__title {
  font-size: 36px;
  line-height: 42px;
  font-weight: 400;
  color: #fff;
  text-align: center;
  padding: 15px 0px 15px 0px;
}

.services__title--main {
  padding: 60px 0px 25px 0px;
}

.services__description {
  font-size: 16px;
  line-height: 20px;
  color: #fff;
  font-weight: 300;
  text-align: center;
  margin-bottom: 30px;
}

.services__list {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.services__list li {
  list-style-type: none;
  font-size: 16px;
  line-height: 20px;
  color: #fff;
  font-weight: 300;
  padding-bottom: 10px;
}

.services__category h2,
.services__category h3,
.services__category h4,
.services__category p,
.services__category li {
  color: #fff;
}
.services__category strong {
  color: #fff;
}
@media (max-width: 992px) {
  .services__title {
    font-size: 36px;
    line-height: 42px;
    padding: 50px 0px 20px 0px;
  }
}
.services__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 992px) {
  .services__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .services__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.services__content--gray {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  background-color: #eceeef;
  padding-top: 50px;
  padding-bottom: 50px;
}

.services__content--gray > .container {
  display: flex;
  justify-content: space-between;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.services__content > .container {
  display: flex;
  justify-content: space-between;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  padding-bottom: 40px;
}

.services__content > .container .services__content-text--imaging p {
  color: #fff;
}

.services__content > .container .services__content-text--imaging ul li {
  color: #fff;
}


.services__content--gray > .container img {
  width: 47%;
}

.services__content--white {
  background-color: #fff;
  padding-top: 50px;
  padding-bottom: 50px;
}

.services__content--white > .container {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.services__content-text {
  width: 47%;
}

.services__content-text h3 {
  font-size: 22px;
  font-weight: 600;
  color: #0063A4;
  padding-top: 0;
  margin-top: 0;
}
.services__content-text h3 img.icon {
  width: 35px;
  padding-right: 15px;
} 

.services__content-text p {
  font-size: 16px;
  line-height: 26px;
  color: #000;
  margin-top: 0;
}

.services__content-text p span {
  font-weight: 600;
}

.services__content-text ul {
  list-style-type: none;
  padding-left: 0;
  margin-top: 20px;
}

.services__content-text li {
  font-size: 16px;
  line-height: 26px;
  color: #000;
  padding-bottom: 10px;
}

.services__card {
  width: 23%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 80px;
  cursor: pointer;
}
@media (max-width: 992px) {
  .services__card {
    width: 40%;
    max-width: 400px;
    margin: 0 auto;
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .services__card {
    width: 90%;
    max-width: 400px;
    margin: 0 auto;
    margin-bottom: 50px;
  }
}
.services__card h3 {
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  color: #fff;
  text-align: center;
}
.services__card p {
  font-size: 14px;
  line-height: 20px;
  font-weight: 300;
  color: #fff;
  text-align: center;
}
@media (max-width: 992px) {
  .services__card p {
    margin-top: 0;
  }
}
.services__card img {
  width: 100%;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 992px) {
  .services__card img {
    width: 90%;
    margin: 0 auto;
  }
}
.services__img {
  cursor: pointer;
  display: inline-block;
  width: 100%;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
}
.services__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.services__img > .hide {
  display: none;
}
.services__img:last-child {
  display: none;
}
.services__img:hover img:first-child {
  display: none;
}
.services__img:hover img:last-child {
  display: inline-block;
}
@media (max-width: 992px) {
  .services__img {
    width: 80%;
    height: 150px;
    margin: 0 auto;
  }
}

.twentytwenty-container img {
  display: block;
  width: 100%;
  height: auto;
}

.g-platform.twentytwenty-container {
  width: 550px;
  height: 400px !important;
  position: relative;
}

.case.twentytwenty-container {
  width: 100%;
  height: 450px !important;
  position: relative;
}

@media (max-width: 992px) {
  .g-platform.twentytwenty-container {
    width: 300px;
    height: 170px !important;
  }
}

.g-platform.twentytwenty-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Ensure twentytwenty elements are visible */
.g-platform .twentytwenty-overlay {
  pointer-events: auto !important;
}

.g-platform .twentytwenty-handle {
  display: block !important;
  visibility: visible !important;
}

.g-platform .twentytwenty-before-label,
.g-platform .twentytwenty-after-label {
  pointer-events: none;
}

/* Модальное окно */
.overlay {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 20;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

.modal {
  opacity: 0;
  visibility: hidden;
  width: 100%;
  max-width: 500px;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 30;
  -webkit-box-shadow: 0 3px 10px -0.5px rgba(0, 0, 0, 0.2);
          box-shadow: 0 3px 10px -0.5px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding: 30px;
  border-radius: 3px;
  background-color: #fff;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
@media screen and (max-width: 767px) {
  .modal {
    max-width: 280px;
    left: 50%;
    top: 50%;
  }
}

.modal.active,
.overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal__cross {
  width: 15px;
  height: 15px;
  position: absolute;
  top: 20px;
  right: 20px;
  fill: #444;
  cursor: pointer;
}

.technology__title {
  width: 100%;
  max-width: 185px;
  position: relative;
  font-size: 36px;
  line-height: 40px;
  font-weight: 600;
  color: #0165a7;
  margin: 0 auto;
  padding-top: 60px;
  z-index: -1;
}
.technology__title::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #000;
  top: 115px;
  left: 0;
}
.technology__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 70px;
  padding-bottom: 40px;
}
@media (max-width: 992px) {
  .technology__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.technology__card {
  width: 30%;
  text-align: center;
}
@media (max-width: 992px) {
  .technology__card {
    width: 90%;
    margin: 0 auto;
    margin-bottom: 30px;
  }
}
.technology__card h3 {
  font-size: 22px;
  line-height: 20px;
  font-weight: 500;
  color: #0063a4;
  text-align: center;
}
.technology__card p {
  font-size: 15px;
  line-height: 26px;
  color: #333;
  text-align: center;
  font-weight: 300;
}
.technology__img {
  cursor: pointer;
  display: inline-block;
  width: 400px;
  height: 200px;
}
@media (max-width: 1359px) {
  .technology__img {
    width: 300px;
  }
}
.technology__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.technology__img > .hide {
  display: none;
}
.technology__img:last-child {
  display: none;
}
.technology__img:hover img:first-child {
  display: none;
}
.technology__img:hover img:last-child {
  display: inline-block;
}
@media (max-width: 992px) {
  .technology__img {
    width: 80%;
    height: auto;
    margin: 0 auto;
  }
}

.case-studies {
  background-color: #0063a4;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (max-width: 992px) {
  .case-studies {
    padding-top: 40px;
    margin-top: -50px;
  }
}

.case-studies__title {
  font-size: 36px;
  line-height: 42px;
  font-weight: 400;
  color: #fff;
  text-align: center;
  padding: 0px 0px 30px 0px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .case-studies__title {
    font-size: 34px;
    line-height: 34px;
    padding: 30px 0px 30px 0px;
  }
}
.case-studies__description {
  font-size: 20px;
  line-height: 30px;
  font-weight: 300;
  text-align: center;
  color: #fff;
  padding-bottom: 50px;
  margin-top: 0;
}
@media (max-width: 992px) {
  .case-studies__description {
    font-size: 16px;
    line-height: 24px;
    width: 90%;
    max-width: 500px;
    margin: 0 auto;
    margin-bottom: 30px;
    text-align: center;
    padding-bottom: 0;
  }
}
.case-studies__images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .case-studies__images {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media (max-width: 767px) {
  .case-studies__images {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.case-studies__img {
  cursor: pointer;
  display: inline-block;
  width: 18%;
  height: 180px;
  background-color: #fff;
  border-radius: 10px;
}
.case-studies__img span {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.case-studies__img > .before {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.case-studies__img > .before::before {
  position: absolute;
  content: "Before";
  color: #fff;
  font-size: 12px;
  padding-left: 15px;
  padding-top: 5px;
  width: 40px;
  height: 20px;
  background-color: black;
  opacity: 0.7;
  right: 2.5%;
  bottom: 15%;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
.case-studies__img > .before img {
  width: 95%;
  height: 95%;
  -o-object-fit: cover;
     object-fit: cover;
}
.case-studies__img > .hide {
  display: none;
}
.case-studies__img > .after {
  display: none;
}
.case-studies__img:hover > .after {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.case-studies__img:hover > .after::before {
  position: absolute;
  content: "After";
  color: #fff;
  font-size: 12px;
  padding-left: 20px;
  padding-top: 5px;
  width: 40px;
  height: 20px;
  background-color: black;
  opacity: 0.7;
  right: 2.5%;
  bottom: 15%;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
.case-studies__img:hover > .after img {
  width: 95%;
  height: 95%;
}
.case-studies__img:hover > span:first-child {
  display: none;
}
.case-studies__img:hover > span:last-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 992px) {
  .case-studies__img {
    width: 45%;
    height: 200px;
    margin: 0 auto;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .case-studies__img {
    width: 80%;
    height: auto;
    margin: 0 auto;
    margin-bottom: 20px;
  }
}
.case-studies__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  background-color: #fe6a00;
  border: 1px solid transparent;
  font-size: 16px;
  line-height: 22px;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
  padding: 10px;
}
.case-studies__button:hover, .case-studies__button:active {
  background-color: #fff;
  border: 1px solid #fe6a00;
  color: #fe6a00;
}

.slider {
  width: 100%;
  margin: 0 auto;
  position: relative;
  padding-top: 40px;
  padding-bottom: 50px;
}
.slider__title {
  font-size: 36px;
  line-height: 40px;
  font-weight: 400;
  color: #0165a7;
  margin: 0 auto;
  padding: 30px 0px 60px 0px;
  text-align: center;
}
.slider__main {
  margin-top: 35px;
  padding-bottom: 100px;
  background-color: #0165a7;
}
.slider__slide {
  display: none;
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .slider__slide-map {
    width: 320px;
  }
}

.slider__slide img {
  width: 45%;
  object-fit: contain;
}

@media (max-width: 992px) {
  .slider__slide img {
    width: 80%;
    margin: 0 auto;
  }
}

.slider__slide > .slider__description {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media (max-width: 992px) {
  .slider__slide > .slider__description {
    width: 80%;
    margin: 0 auto;
    padding-top: 30px;
  }
}

.slider__slide > .slider__description h3 {
  font-size: 30px;
  line-height: 36px;
  color: #fff;
  font-weight: 500;
  margin: 0;
  padding-bottom: 20px;
}
.slider__slide > .slider__description p {
  font-size: 16px;
  line-height: 20px;
  color: #fff;
  font-weight: 300;
  margin: 0;
  padding-bottom: 20px;
}
.slider__slide > .slider__description p span{
  font-weight: 500;
}
.slider__slide > .slider__description ul {
  padding: 0;
  margin: 0 0 20px 0;
  list-style-type: none;
}
.slider__slide > .slider__description ul li {
  font-size: 16px;
  line-height: 20px;
  color: #fff;
  font-weight: 300;
  padding-bottom: 10px;
}
.slider__slide > .slider__description ul li span{
  font-weight: 500;
} 
.slider__slide > .slider__description .buttons button {
  cursor: pointer;
  background-color: #fe6a00;
  border: 1px solid transparent;
  font-size: 16px;
  line-height: 20px;
  color: #fff;
  border-radius: 4px;
  padding: 5px 10px;
}
.slider__slide > .slider__description .buttons button:hover, .slider__slide > .slider__description .buttons button:active {
  border: 1px solid #fff;
  background-color: transparent;
  color: #fff;
}
.slider__slide > .slider__description .buttons button:nth-child(1) {
  margin-right: 5px;
}
.slider__slide.active {
  padding: 40px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
          align-items: flex-start;
}

@media (max-width: 1200px) {
  
}

@media (max-width: 992px) {
  .slider__slide.active {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

.slider__slide-map.active {
  border: 4px solid #fe6a00;
  padding: 0;
}
.slider__thumbs-wrapper {
  width: 1150px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .slider__thumbs-wrapper {
    width: 850px;
    margin: 0 auto;
  }
}
@media (max-width: 992px) {
  .slider__thumbs-wrapper {
    width: 280px;
    margin: 0 auto;
  }
}
.slider__thumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  will-change: transform;
}
.slider__thumb {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 280px;
          flex: 0 0 280px;
  height: 210px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 10px;
  cursor: pointer;
  opacity: 1;
  -webkit-transition: opacity 0.3s, background-color 0.3s;
  transition: opacity 0.3s, background-color 0.3s;
  -o-object-fit: contain;
     object-fit: contain;
  background-color: #3e89ca;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-bottom: 15px;
  border: 2px solid #3e89ca;
}

.slider__thumb-map {
  height: 250px;
  background-color: #f5f5f5;
  border: 2px solid #fe6a00;
}

.slider__thumb img {
  display: block;
  width: 100%;
  height: 168px;
  min-height: 168px;
  padding: 0px 0 0 0px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 10px;
}
.slider__thumb h3 {
  font-size: 16px;
  line-height: 20px;
  color: #fff;
  text-transform: uppercase;
  margin: 0;
}
.slider__thumb-map h3 {
  color: #2c3e50;
}
.slider__thumb p {
  font-size: 11px;
  line-height: 16px;
  color: #fff;
  text-transform: uppercase;
  margin: 0;
  width: 85%;
  text-align: center;
}
.slider__thumb-map p {
  color: #2c3e50;
}
.slider__thumb.active {
  opacity: 1;
  background-color: #fe6a00;
  border: 2px solid #fe6a00;
}
.slider__thumb-map.active h3 {
 color: #fff;
}
.slider__thumb-map.active p {
  color: #fff;
 }
.slider__btn {
  background: #00bfa5;
  color: #fff;
  border: none;
  font-size: 22px;
  padding: 5px 10px;
  cursor: pointer;
  z-index: 2;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

#nextThumbs {
  right: 0;
}

#prevThumbs {
  left: 0;
}

@media (max-width: 1200px) {
  .map {
    display: none;
  }
}

@media (max-width: 992px) {
  .map {
    display: none;
  }
}

.map__wrapper {
  display: flex;
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.map__wrapper svg{
  display: flex;
  width: auto;
  height: 60vh;
  margin: 0 auto;
  position: relative;
}

.map__wrapper img {
  width: 100%;
  height: 600px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  position: relative;
}
.point {
  cursor: pointer;
}
.map__point {
  position: absolute;
  width: 18px;
  height: 18px;
  background-image: url("../images/map/pin.svg");
  border-radius: 50%;
  cursor: pointer;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  cursor: pointer;
}
.map__point-inactive {
  position: absolute;
  width: 18px;
  height: 18px;
  background-image: url("../images/map/pin-inactive.svg");
  border-radius: 50%;
  cursor: pointer;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  cursor:not-allowed;
}

.map__point.active {
  background-image: url("../images/map/pin-active.svg");
}
.map__modal {
  display: none;
  position: fixed;
  left: 0%;
  top: 0%;
  width: 100%;
  max-width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 0px;
  z-index: 10000;
}
.map__modal.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.map__modal-content {
  width: 900px;
  max-width: 80%;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  max-width: auto;
}

.map__modal-info {
  display: flex;
  -webkit-box-pack: space-between;
      -ms-flex-pack: space-between;
          justify-content: space-between;
}

.close {
  border: none;
  background-color: transparent;
  font-size: 25px;
  font-weight: 700;
  cursor: pointer;
}

.map-information {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
  margin-bottom: 50px;
}

@media (max-width: 1200px) {
  .map-information {
    display: none;
  }
}

@media (max-width: 992px) {
  .map-information {
    display: none;
  }
}

.map-information__pins img {
  padding-right: 5px;
}

.map-information__pins p {
  display: flex;
  align-items: center;
  font-size: 18px;
  line-height: 24px;
  font-weight: 300;
  color: #fff;
}

.map-information__pins p span:nth-child(2) {
  margin-right: 20px;
}

.map-information__button button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  color: #fff;
  padding: 10px 20px;
  background-color: #fff;
  border: 1px solid #fff;
  color: #2c3e50;
  cursor: pointer;
  border-radius: 4px;
}

.map-information__button button:hover{
  background-color: transparent;
  border: 1px solid #fff;
  font-weight: 400;
  color: #fff;
  cursor: pointer;
}

.map-slider.twentytwenty-container {
  width: 1150px;
  height: 530px !important;
  position: relative;
}

@media (max-width: 1200px) {
  .map-slider.twentytwenty-container {
    width: 975px;
  }
}

@media (max-width: 992px) {
  .map-slider.twentytwenty-container {
    width: 320px;
    height: 230px !important;
  }
}

.map-slider.difraction-slider.twentytwenty-container {
  width: 650px;
  height: 400px !important;
  position: relative;
  border: 3px solid #fe6a00;
}

.map-slider.twentytwenty-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Ensure twentytwenty elements are visible */
.map-slider .twentytwenty-overlay {
  pointer-events: auto !important;
}

.map-slider .twentytwenty-handle {
  display: block !important;
  visibility: visible !important;
}

.map-slider .twentytwenty-before-label,
.map-slider .twentytwenty-after-label {
  pointer-events: none;
}

.price {
  margin-top: -70px;
  padding-top: 70px;
  padding-bottom: 70px;
}

.price__main-button {
  width: 40%;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 30px;
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #fe6a00;
  border: 2px solid transparent;
  box-shadow: -3px 3px 5px 0px rgba(0,0,0,0.5);
  font-size: 16px;
  color: #fff;
  border-radius: 3px;
  cursor: pointer;
}

.price__content {
  width: 60%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 0 auto;
}

.price__content-top--platform {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.price__content--space { 
  width: 100%;
  border-bottom: 2px solid #000;
  padding-bottom: 35px;
  margin-bottom: 35px;
}

.price__link {
  width: 48%;
  text-decoration: none;
}

.price__link:hover {
  -webkit-box-shadow: 4px 4px 8px 0px rgba(50, 53, 54, 0.2);
-moz-box-shadow: 4px 4px 8px 0px rgba(50, 53, 54, 0.2);
box-shadow: 4px 4px 8px 0px rgba(50, 53, 54, 0.2);
}

.price__link--space {
  width: 24%;
  text-decoration: none;
}

.price__block--space-main {
  margin-bottom: 40px;
}

.price__block--platform {
  width: 24%;
}

.price__title {
  font-size: 42px;
  line-height: 48px;
  font-weight: 600;
  color: #000;
  text-align: center;
  padding: 50px 0px 35px 0px;
  text-align: center;
}

.price__name {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  background-color: #0063a4;
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: center;
  border-bottom: 6px solid #fff;
  margin: 0;
  position: relative;
  cursor: pointer;
  display: block;
}

.price__cost {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
  color: #fff;
  background-color: #fe6a00;
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
  vertical-align: middle;
  border-bottom: 6px solid #fff;
}

.price__cost p span{
  display: block;
  text-decoration: line-through;
}

.price__description {
  height: 700px;
  background-color: #f5f5f5;
  padding: 20px;
  border-bottom: 6px solid #fff;
}

.price__description--space {
  height: 200px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-right: 30px;
  padding-left: 30px;
}

.price__description--platform {
  height: 850px;
}

.price__description--platform h4 {
  color: #fe6a00; 
  margin: 20px 0 15px;
}

.price__description p {
  font-size: 14px;
  color: #000;
  margin: 0;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 500;
}

.price__description ul {
  padding: 0;
  margin-bottom: 20px;
  list-style-type: none;
}

.price__description ul li {
  font-size: 14px;
  line-height: 24px;
  padding-bottom: 15px;
  width: max-content;
  max-width: 280px;
  text-decoration: none;
  color: #000;
  position: relative;
  cursor: pointer;
  display: block;
}

.price__description ul span {
  font-size: 14px;
  text-decoration: none;
  color: #000;
  font-weight: 500;
}

.price__list-title {
  position: relative;
  top: -10px;
}

.tooltip .tooltip-text {
  width: 250px;
  max-width: 300px;
  visibility: hidden;
  opacity: 0;
  background: #333;
  color: #fff;
  border-radius: 6px;
  padding: 6px;
  position: absolute;
  bottom: 125%;;
  left: 96%;
  transform: translateX(-50%);
  z-index: 10;
  transition: opacity 0.3s;
  white-space: nowrap;
}

.tooltip .tooltip-text--title {
 left: 60%;
 color: #000;
 background: #eceeef;
 -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2) !important;
 box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2) !important;
 font-weight: 400;
}

.tooltip .tooltip-text--markers {
  bottom: 70%;
  left: 55%;
}

.tooltip .tooltip-text img {
  width: 100%;
  height: 100%;
  border-radius: 4px;
}

.tooltip .tooltip-text::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #333 transparent transparent transparent;
}

.tooltip .tooltip-text--title::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -7px;
  border-width: 7px;
  border-style: solid;
  border-color: #eceeef transparent transparent transparent;
}

.tooltip:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

.price__button {
  width: 100%;
  height: 70px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  background-color: #0063a4;
  border: none;
  cursor: pointer;
}

/* Checkbox */ 

.price__checkbox {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
  font-family: sans-serif;
  font-size: 16px;
}

.price__checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.price__checkmark {
  width: 15px;
  height: 15px;
  border: 2px solid #fff;
  border-radius: 2px;
  display: inline-block;
  margin-right: 8px;
  transition: all 0.2s ease;
  position: relative;
}

.price__checkbox input:checked ~ .price__checkmark {
  background-color: #fff;
  border-color: #fff;
}

.price__checkbox input:checked ~ .price__checkmark::after {
  content: "";
  position: absolute;
  left: 4px;
  top: -2px;
  width: 6px;
  height: 12px;
  border: solid #3e89ca;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.price__checkbox:hover .price__checkmark {
  border-color: #fe6a00;
}

.price__total {
  font-size: 40px;
  font-weight: 500;
  text-align: center;
}

.price__total span {
  color: #fe6a00;;
}

.price__contact {
  margin-top: 70px;
}

.price__contact h3 {
  text-align: center; 
  margin-bottom: 30px; 
  color: #fe6a00;
}

.price__contact p{
  text-align: center; 
  margin-bottom: 30px; 
  font-size: 1.1em;
}

.price__contact div {
  text-align: center;
}

.price__question {
  color: #0056b3 !important;
}

/* Requirements page */

.requirements
{
  margin-top: -40px; 
  padding-top: 60px;
  padding-bottom: 80px;
}

.requirements__title {
  font-size: 42px;
  line-height: 48px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  padding: 30px 0px 35px 0px;
  margin-bottom: 0;
}
.requirements__description {
  font-size: 20px;
  line-height: 28px;
  color: #fff;
  font-weight: 300;
  text-align: center;
  width: 70%;
  margin: 0 auto;
  padding-bottom: 40px;
  margin-bottom: 40px;
}

.requirements__category h2 {
  color: #fff;
}

.requirements__category p {
  color: #fff;
}

.requirements-section {
  margin-bottom: 50px;
}

.requirements-section h3 {
  color: #fff;
}

.requirements-section ul {
  margin-left: 0;
  margin-bottom: 20px;
  padding-left: 0;
  list-style-type: none;
}

.requirements-section ul li {
color: #fff;
font-weight: 300;
padding-bottom: 10px;
}

/* Q&A */

.container-qa {
  padding: 30px;
  padding-left: 0;
  width: 80%;
}

.container-qa .box {
  position: relative;
  margin-bottom: 20px; 
}

.container-qa .box:last-child {
  margin-bottom: 0; 
}

.container-qa .box .label {
  position: relative;
  padding: 20px; 
  background-color: transparent;
  border: 2px solid #fff; 
  color: #fff; 
  cursor: pointer; 
}

.container-qa .box .label::after {
  content: "+"; 
  position: absolute;
  top: 50%; 
  transform: translateY(-50%);
  right: 20px;
  font-size: 25px;
  font-weight: bold;
}

.container-qa .box.active .label::after {
  content: "\2014";
}

.container-qa .box .content {
  position: relative;
  background-color: transparent; 
  overflow: hidden;
  max-height: 0; 
  transition: 0.3s;
  padding: 0;
  padding-bottom: 20px;
}

.container-qa .box.active .content {
  display: block;
}


.container-qa .box .content p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 300;
  color: #fff;
  padding: 20px;
  padding-left: 0;
  padding-right: 0;
}

.container-qa .box .content p span a {
  color: #ffc107;
  font-weight: 400;
  text-decoration: none;
}


.container-qa .box .content p span a:hover {
  border-bottom: 2px solid #ffc107;
  padding-bottom: 3px;
}

.container-qa .box .content p a {
  color: #ffc107;
  font-weight: 400;
  text-decoration: none;
}


.container-qa .box .content p a:hover {
  border-bottom: 2px solid #ffc107;
  padding-bottom: 3px;
}

.container-qa .box .content p span.about {
  display: block;
}

.container-qa .box .content p span.info {
  display: block;
  font-weight: 500;
  padding-top: 10px;
  padding-bottom: 10px;
}

.container-qa .box .content button {
  background-color: #ff6b35;
  color: white;
  display: flex;
  border: none;
  padding: 10px;
  margin-top: -20px;
}

.container-qa .box .content button a {
  color: #fff;
  text-decoration: none;
}

/* Privacy Policy */

.privacy {
  padding-top: 60px;
  padding-bottom: 60px;
}

.privacy__info {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #fff;
}

.privacy__info:nth-child(7) {
  border-bottom: none;
  padding-bottom: 0px;
}

.privacy__title {
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
  color: #fff;
  text-align: left;
}
.privacy__description {
  font-size: 16px;
  line-height: 20px;
  font-weight: 300;
  color: #fff;
  text-align: left;
}

.privacy__description a {
  color: #ffc107;
  text-decoration: none;
}

.privacy__description a:hover {
  border-bottom: 2px solid #ffc107;
  padding-bottom: 3px;
}

.articles
{
  margin-top: -40px; 
  padding-top: 60px;
  padding-bottom: 80px;
}

.articles__title {
  font-size: 42px;
  line-height: 48px;
  font-weight: 600;
  color: #fff;
  text-align: left;
  padding: 30px 0px 5px 0px;
  margin-bottom: 0;
}
.articles__description {
  font-size: 20px;
  line-height: 28px;
  color: #fff;
  font-weight: 300;
  text-align: left;
  width: 70%;
  padding-bottom: 20px;
  margin-bottom: 0px;
}

.tech__btn {
    background-color: #ff6b35;
    color: white;
    display: flex;
    border: 1px solid transparent;
    cursor: pointer;
    padding: 10px;
    font-size: 14px;
    border-radius: 3px;
}

.tech__btn a {
  font-size: 14px;
  line-height: 20px;
  color: #fff;
  text-decoration: none;
}

.tech__btn:hover{
  background-color: transparent;
  border: 1px solid #ff6b35;
  cursor: pointer;
}

.tech__btn:hover a{
  color: #ff6b35;
}

.tech__btn:active a{
  color: #ff6b35;
}


.buttons-qa {
  display: flex;
  align-items: center;
}

.buttons-qa > .button__transparent--qa {
  height: 37px;
  margin-left: 15px;
  border-color: #fff;
  color: #fff;
}

.icon-bar {
  position: fixed;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1000;
}
.icon-bar--whatsapp {
  bottom: 65%;
  right: 3%;
}
.icon-bar--chat {
  bottom: 0%;
  right: 5%;
}

.icon-bar a {
  width: 150px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 8px;
  font-size: 18px;
  text-align: center;
  text-decoration: none;
}

.icon-bar a i {
  padding-right: 5px;
}

.whatsapp {
  background: #53d365;
  -webkit-box-shadow: 0 4px 10px rgba(83, 211, 101, 0.5);
          box-shadow: 0 4px 10px rgba(83, 211, 101, 0.5);
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
}

.chat {
  background: #3e89ca;
  -webkit-box-shadow: 0 4px 12px rgba(62, 137, 202, 0.5);
          box-shadow: 0 4px 12px rgba(62, 137, 202, 0.5);
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
}

html {
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

body {
  font-family: "Roboto", sans-serif;
  height: 100%;
  margin: 0;
  padding: 0;
  padding-top: 90px;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1; 
}

.container {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
}
@media (max-width: 1359px) {
  .container {
    max-width: 95%;
    margin: 0 auto;
  }
}