@charset "UTF-8";
/*
@font-face {
  font-family: "Liberation Sans";
  src: url('/fonts/LiberationSans-Regular.ttf');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Liberation Sans";
  src: url('/fonts/LiberationSans-Bold.ttf');
  font-weight: 700;
  font-display: swap;
}
*/
@import url("https://fonts.googleapis.com/css2?family=Merriweather+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Lato", sans-serif;
  list-style: none;
  text-decoration: none;
}

body {
  position: relative;
}

.take-survey {
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
}
@media only screen and (max-width: 991px) {
  .take-survey {
    padding: 10px;
  }
}
.take-survey .btn-close {
  position: absolute;
  right: 16px;
  top: 22px;
  cursor: pointer;
}
.take-survey .btn-close img {
  width: 28px;
  height: 28px;
}
@media only screen and (max-width: 991px) {
  .take-survey .btn-close img {
    width: 24px;
    height: 24px;
  }
}
.take-survey h2 {
  color: #FFF;
  font-family: "Lato", sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  text-align: center;
  margin-bottom: 24px;
}
.take-survey p {
  color: #FFF;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 27px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
@media only screen and (max-width: 991px) {
  .take-survey p {
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 27px;
    padding-bottom: 26px;
  }
}
.take-survey .button-survey a {
  margin: 40px auto 0;
  border-radius: 40px;
  padding: 10px 24px;
  width: 320px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 2px 0 0 rgba(15, 21, 27, 0.2);
  background: rgb(255, 161, 0);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 20px;
  line-height: 70%;
}
@media only screen and (max-width: 991px) {
  .take-survey .button-survey a {
    margin: 26px auto 0;
  }
}
.take-survey .button-survey a:hover {
  box-shadow: 4px 4px 0 0 rgba(15, 21, 27, 0.5);
  background: #f7b433;
}
.take-survey .button-survey a:active {
  background: #cc901b;
  box-shadow: none;
}
.take-survey .content-wrap {
  max-width: 908px;
  width: 100%;
  padding: 66px 40px;
  z-index: 1000;
  background: #1F3143;
  overflow: hidden;
  position: relative;
  height: auto;
}
@media only screen and (max-width: 991px) {
  .take-survey .content-wrap {
    padding: 66px 20px 40px;
  }
}

/*

//mobile menu
.button-mobile-menu {
  display: none;
  position: absolute;
  right: 12px;
  padding: 7px;
  cursor: pointer;
  z-index: 101;


  @media only screen and (max-width: 991px) {
    display: block;
  }

  &.open .icon span {
    background: #0B0F11;
  }

  &.open .icon span:first-child {
    top: 5px;
    transform: rotate(225deg);
  }

  &.open .icon span:nth-child(2) {
    top: calc(50% - 2px);
    display: none;
  }

  &.open .icon span:last-child {
    top: 5px;
    transform: rotate(135deg);

  }

  .icon {
    position: relative;
    width: 18px;
    height: 12px;
    display: inline-block;
    top: 0;

    span {
      height: 2px;
      width: 100%;
      border-radius: 3px;
      background: #FFFFFF;
      display: inline-block;
      float: left;
      position: absolute;
      left: 0;

      &:first-child {
        top: 0;
        transition: all 0.25s;
      }

      &:nth-child(2) {
        top: calc(50% - 1px);
        transition: all 0.25s;
      }

      &:last-child {
        bottom: 0;
        transition: all 0.25s;
      }

    }
  }


}

.mobile-content {
  background: #ffffff;
  z-index: 99;
  padding: 15px;
  //max-height: 0;
  overflow: hidden;
  transition: max-height 0.8s ease;

  flex-direction: column;
  height: 100vh;
  position: fixed;
  width: 100%;
  top: 0;
  display: none;

  &.open {
    display: flex;
    //max-height: none;
    //padding: 15px;
  }

  .logo {
    display: flex;
    justify-content: center;
  }

  .menu {
    margin-top: 30px;

    nav {
      ul {
        li {
          height: 60px;
          display: flex;
          align-items: center;
          justify-content: center;
          border-bottom: 1px solid #e6e6e6;

          a {
            font-weight: 300;
            font-size: 16px;
            line-height: 100%;
            color: #0b0f11;
          }
        }
      }
    }
  }

  .button-survey {
    display: flex;
    justify-content: center;
    margin-top: auto;

    a {
      border-radius: 4px;
      padding: 10px 24px;
      width: 100%;
      max-width: 345px;
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 20px;
      line-height: 100%;
      color: #1f3143;
      box-shadow: 2px 2px 0 0 rgba(15, 21, 27, 0.2);
      background: #e2a328;

      &:hover {
        box-shadow: 4px 4px 0 0 rgba(15, 21, 27, 0.5);
        background: #f7b433;
      }

      &:active {
        background: #cc901b;
        box-shadow: none;
      }
    }
  }
}

//mobile menu

*/
/*header {
  backdrop-filter: blur(24px);
  background: #131b22;
  position: relative;
  z-index: 99;

  .content {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 12px;

    @media only screen and (max-width: 991px) {
      padding: 15px 12px;
      justify-content: center;
    }

    .logo {
      height: 30px;

      a {
        display: block;
        height: 30px;

        img {
          height: 30px;
        }
      }
    }

  !*  .menu {
      max-width: 924px;
      width: 100%;

      @media only screen and (max-width: 991px) {
        display: none;
      }

      nav {
        ul {
          display: flex;
          align-items: center;
          justify-content: space-between;

          li {
            //max-width: 147px;
            width: 100%;
            text-align: center;
            position: relative;
            //padding: 22px 24px;
            position: relative;
            display: flex;
            gap: 4px;

            &.has-submenu {

              a {
                padding: 22px 40px 22px 24px;
              }

              //margin-right: 16px;
              & > img {
                position: absolute;
                right: 16px;
                top: 50%;
                transform: translate(0, -50%);
              }
            }

            &:hover {
              background: linear-gradient(0deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.04) 100%), #131B22;

              &:before {
                position: absolute;
                bottom: 0;
                left: 0;
                content: '';
                background: #e2a328;
                width: 100%;
                height: 2px;
                transition: all 0.3s ease;
              }
            }

            &:active {
              background: linear-gradient(0deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.08) 100%), #131B22;
            }

            a {
              font-weight: 300;
              font-size: 14px;
              line-height: 100%;
              color: #fff;
              white-space: nowrap;
              padding: 22px 24px;
              width: 100%;


              &.active {
                &:before {
                  position: absolute;
                  bottom: 0;
                  left: 0;
                  content: '';
                  background: #e2a328;
                  width: 100%;
                  height: 2px;
                }
              }

              //&:hover {
              //  &:before {
              //    position: absolute;
              //    bottom: 0;
              //    left: 0;
              //    content: '';
              //    background: #e2a328;
              //    width: 100%;
              //    height: 2px;
              //    transition: all 0.3s ease;
              //  }
              //}
            }

            .sub-menu {
              display: none;
              flex-direction: column;
              position: absolute;
              top: 100%;
              left: 0;
              z-index: 100;
              min-width: 100%;
              border-top: 8px solid transparent;
              border-bottom: 8px solid #fff;
              border-radius: 2px;
              box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.16);

              li {
                border-bottom: 1px solid #AABCC8;
                background: #FFF;
                text-align: left;
                padding: 12px 16px;

                &:hover {
                  background: linear-gradient(0deg, rgba(31, 49, 67, 0.08) 0%, rgba(31, 49, 67, 0.08) 100%), #FFF;

                  &:before {
                    position: absolute;
                    bottom: 0;
                    left: 0;
                    content: "";
                    background: #e2a328;
                    width: 2px;
                    height: 100%;
                    transition: all 0.3s ease;
                  }

                  &:active {
                    background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%), #FFF;
                  }
                }

                &:first-of-type {
                  border-top: 8px solid #ffffff;
                }

                &:last-of-type {
                  border: none !important;
                }


                a {
                  color: #1F3143;
                  font-size: 14px;
                  font-style: normal;
                  font-weight: 300;
                  line-height: 16px;
                  display: flex;
                  align-items: center;
                  gap: 16px;
                  padding: 0;
                }
              }
            }
          }
        }
      }
    }*!

    .sign-in {
      a {
        color: #FFF;
        font-size: 14px;
        font-style: normal;
        font-weight: 300;
        line-height: 16px;
        display: flex;
        align-items: center;

        img {
          margin-right: 8px;
        }
      }
    }

    .button-survey {

      @media only screen and (max-width: 991px) {
        display: none;
      }

      a {
        border-radius: 4px;
        padding: 10px 24px;
        width: 145px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 16px;
        line-height: 100%;
        color: #1f3143;
        box-shadow: 2px 2px 0 0 rgba(15, 21, 27, 0.2);
        background: #e2a328;

        &:hover {
          box-shadow: 4px 4px 0 0 rgba(15, 21, 27, 0.5);
          background: #f7b433;
        }

        &:active {
          background: #cc901b;
          box-shadow: none;
        }
      }
    }
  }


}*/
.banner {
  width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  padding-bottom: 40px;
  max-width: 1920px;
  /* for testing purposes to ensure the animation lined up correctly */
}
@media only screen and (max-width: 991px) {
  .banner {
    padding-bottom: 24px;
  }
}
.banner .background {
  width: 100%;
  height: 100%;
  display: flex;
}
.banner .background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner .background video {
  min-height: 722px;
  object-fit: cover;
  max-height: 840px;
}
@media only screen and (max-width: 768px) {
  .banner .background video {
    min-height: 600px;
  }
}
.banner-content {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 7% 5% 0 !important;
  display: flex;
  flex-direction: column;
  align-items: end;
}
@media only screen and (max-width: 991px) {
  .banner-content {
    padding: 10% 15px 0;
  }
}
.banner-content h1 {
  font-weight: 700;
  font-size: 64px;
  line-height: 131%;
  color: #fff;
  max-width: 769px;
  width: 100%;
  margin-bottom: 24px;
  font-family: "Lato", sans-serif;
  text-align: right;
}
@media only screen and (max-width: 768px) {
  .banner-content h1 {
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 44px;
  }
}
.banner-content h1 span:nth-of-type(1) {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 27px;
  line-height: 100%;
  color: rgba(255, 255, 255, 0.7);
  display: block;
  margin-bottom: 14px;
}
@media only screen and (max-width: 991px) {
  .banner-content h1 span:nth-of-type(1) {
    font-size: 20px;
    line-height: 20px;
  }
}
.banner-content h1 span:nth-of-type(2) {
  font-weight: 700;
}
.banner-content h2 {
  font-style: italic;
  font-weight: 200;
  font-size: 24px;
  line-height: 128%;
  color: rgb(255, 255, 255);
  margin-bottom: 10px;
  font-family: "Lato", sans-serif;
}
@media only screen and (max-width: 768px) {
  .banner-content h2 {
    font-size: 16px;
    font-style: italic;
    font-weight: 700;
    line-height: 16px;
    text-align: right;
  }
}
.banner-content p {
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  color: #fff;
}
@media only screen and (max-width: 768px) {
  .banner-content p {
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
  }
}
.banner-content .button-survey {
  margin-top: 48px;
}
.banner-content .button-survey a {
  border-radius: 40px;
  padding: 10px 24px;
  width: 320px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(255, 161, 0);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 20px;
  line-height: 70%;
}
.banner-content .button-survey a:hover {
  background: rgba(255, 161, 0, 0.83);
}
.banner-content .button-survey a:active {
  background: rgba(255, 161, 0, 0.83);
  box-shadow: none;
}
.banner .logo-slider-wrap {
  position: relative;
  margin-top: -240px;
  z-index: 9;
  display: none;
  transition: 0.3s ease-in-out;
}
.banner .logo-slider-wrap h3 {
  max-width: 1440px;
  margin: 0 auto 24px;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: rgba(255, 255, 255, 0.5);
  padding: 0 40px;
}
@media only screen and (max-width: 991px) {
  .banner .logo-slider-wrap h3 {
    padding: 0 15px;
    margin: 0 auto 10px;
  }
}
.banner .logo-slider {
  height: 83px;
  display: flex;
  align-items: center;
}
.banner .scroller {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
}
.banner .scroller[data-animated=true] {
  overflow: hidden;
  mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
}
.banner .scroller[data-animated=true] .scroller__inner {
  width: max-content;
  flex-wrap: nowrap;
  gap: 64px;
  animation: scroll var(--_animation-duration, 40s) var(--_animation-direction, forwards) linear infinite;
}
.banner .scroller[data-direction=right] {
  --_animation-direction: reverse;
}
.banner .scroller[data-direction=left] {
  --_animation-direction: forwards;
}
.banner .scroller[data-speed=fast] {
  --_animation-duration: 20s;
}
.banner .scroller[data-speed=slow] {
  --_animation-duration: 60000s;
}
.banner .scroller__inner {
  padding-block: 1rem;
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (max-width: 480px) {
  .banner .scroller__inner {
    gap: 30px;
    display: flex;
    align-items: center;
  }
}
@keyframes scroll {
  to {
    transform: translate(calc(-50% - 32px));
  }
}
.banner .tag-list {
  margin: 0;
  padding-inline: 0;
  list-style: none;
}
.banner .tag-list li {
  display: flex;
  align-items: center;
}
.banner .tag-list li:hover svg g {
  opacity: 1;
}
.banner .tag-list li:hover img {
  opacity: 1;
}
.banner .tag-list li img {
  height: auto;
  opacity: 0.7;
  transition: opacity 0.3s, easy;
}
@media only screen and (max-width: 768px) {
  .banner .tag-list li img {
    max-height: 40px;
  }
}
.banner .test {
  background: red !important;
}

main {
  margin: 0 auto;
}

.main-content {
  max-width: 1440px;
  margin: 0 auto;
}

.main {
  background: #E4E4E4;
  max-width: 1140px;
  width: 100%;
  margin: 20px auto;
}
@media only screen and (max-width: 991px) {
  .main {
    margin: 0 auto;
  }
}

.numbers {
  padding: 100px 40px 144px;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 991px) {
  .numbers {
    padding: 100px 15px 144px;
  }
}
.numbers h2 {
  font-weight: 900;
  font-size: 48px;
  line-height: 128%;
  text-align: center;
  color: rgb(13, 32, 91);
  margin-bottom: 16px;
}
@media only screen and (max-width: 991px) {
  .numbers h2 {
    font-size: 38px;
  }
}
.numbers-tab {
  margin-bottom: 48px;
}
.numbers-tab .number-list {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}
@media only screen and (max-width: 991px) {
  .numbers-tab .number-list {
    justify-content: center;
  }
}
.numbers-tab .number-list-item {
  font-weight: 300;
  font-size: 16px;
  line-height: 225%;
  text-align: center;
  color: rgb(0, 0, 0);
  position: relative;
  cursor: pointer;
  transition: color 0.1s, transform 0.1s;
}
.numbers-tab .number-list-item:hover {
  color: rgb(14, 84, 169);
  font-weight: 700;
  transform: scale(1.05);
}
.numbers-tab .number-list-item.active {
  font-weight: 700;
  font-size: 16px;
  line-height: 225%;
  text-align: center;
  color: rgb(14, 84, 169);
}
.numbers-tab .number-list-item.active:before {
  content: "";
  width: 100%;
  height: 2px;
  background: rgb(14, 84, 169);
  position: absolute;
  bottom: 0;
}
.numbers-blocks {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 50px;
}
.numbers-block {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media only screen and (max-width: 1350px) {
  .numbers-block {
    width: calc(50% - 20px);
  }
}
@media only screen and (max-width: 768px) {
  .numbers-block {
    width: 100%;
  }
}
.numbers-block-content {
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-image: url(../images/hHKkJIemWEmm.png);
  background-repeat: no-repeat;
}
.numbers-block h3 {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: rgb(14, 84, 169);
  margin-bottom: 4px;
}
.numbers-block h4 {
  font-weight: 900;
  font-size: 68px;
  text-align: center;
  color: rgb(14, 84, 169);
  margin-bottom: 10px;
  display: flex;
  align-items: baseline;
}
.numbers-block h4 span {
  font-size: 48px;
  display: inline-block;
}
.numbers-block h4 .usd {
  font-size: 68px;
  font-weight: 900;
}
.numbers-block h4 .value {
  font-weight: 900;
  font-size: 68px;
}
.numbers-block .recovered {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: rgb(14, 84, 169);
}
.numbers-block .rate {
  font-weight: 400;
  font-size: 12px;
  line-height: 150%;
  color: rgb(14, 84, 169);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 3px;
}
.numbers-block .rate-num {
  font-weight: 700;
  font-size: 12px;
  line-height: 150%;
  color: rgb(0, 182, 3);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 3px;
}
.numbers-block .rate-num img {
  height: 12px;
  width: 12px;
}

.who-we-are {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  padding: 0 40px 80px;
}
@media only screen and (max-width: 991px) {
  .who-we-are {
    flex-direction: column-reverse;
    padding: 0 15px 80px;
  }
}
.who-we-are-img {
  width: 100%;
  max-width: 473px;
  height: auto;
  overflow: hidden;
  display: flex;
}
@media only screen and (max-width: 991px) {
  .who-we-are-img {
    height: auto;
    overflow: hidden;
    display: flex;
    max-width: 100%;
    width: 100%;
  }
}
.who-we-are-img img {
  object-fit: cover;
  height: 100%;
}
@media only screen and (max-width: 991px) {
  .who-we-are-img img {
    object-fit: cover;
    height: calc(100% + 100px);
    width: 100%;
    max-height: 600px;
    object-position: top;
    margin-top: -100px;
  }
}
.who-we-are-txt {
  display: flex;
  flex-direction: column;
}
.who-we-are-txt .sub-title {
  font-weight: 900;
  font-size: 24px;
  line-height: 150%;
  color: rgb(255, 161, 0);
  margin-bottom: 16px;
}
.who-we-are-txt h2 {
  font-weight: 900;
  font-size: 48px;
  color: rgb(13, 32, 91);
  max-width: 582px;
  width: 100%;
  margin-bottom: 48px;
}
@media only screen and (max-width: 991px) {
  .who-we-are-txt h2 {
    font-size: 38px;
  }
}
.who-we-are-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.who-we-are-list-item {
  display: flex;
  gap: 24px;
  align-items: center;
}
.who-we-are-list-item img {
  width: 52px;
  height: 76px;
}
.who-we-are-list-item p {
  font-weight: 400;
  font-size: 20px;
  line-height: 153%;
  color: rgb(85, 85, 85);
}

.aspects {
  padding: 80px 40px;
}
@media only screen and (max-width: 991px) {
  .aspects {
    padding: 40px 15px;
  }
}
.aspects-list {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  max-width: 1440px;
  margin: 0 auto;
}
@media only screen and (max-width: 991px) {
  .aspects-list {
    flex-wrap: wrap;
    row-gap: 62px;
  }
}
.aspects-list-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 300px;
  border-radius: 4px;
  width: 100%;
  background: rgba(255, 247, 193, 0.2);
  padding: 48px 15px;
  position: relative;
}
.aspects-list-item::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 3px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #007BFF 100%);
  padding: 2px; /* контролює ширину градієнтного бордера */
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none; /* забезпечує, що псевдоелемент не впливає на взаємодію */
}
@media only screen and (max-width: 991px) {
  .aspects-list-item {
    width: calc(50% - 10px);
    max-width: none;
  }
}
@media only screen and (max-width: 480px) {
  .aspects-list-item {
    width: 100%;
  }
}
.aspects-list-item img {
  margin-bottom: 43px;
}
.aspects-list-item h3 {
  margin-bottom: 24px;
  font-weight: 700;
  font-size: 16px;
  line-height: 112%;
  text-transform: capitalize;
  text-align: center;
  color: #000020;
}
@media only screen and (max-width: 991px) {
  .aspects-list-item h3 {
    font-size: 18px;
    line-height: 18px;
  }
}
.aspects-list-item p {
  font-weight: 300;
  font-size: 16px;
  line-height: 125%;
  text-align: center;
  color: #141434;
}
.aspects h2 {
  font-weight: 900;
  font-size: 48px;
  line-height: 128%;
  text-align: center;
  color: rgb(13, 32, 91);
  margin-bottom: 48px;
}
@media only screen and (max-width: 991px) {
  .aspects h2 {
    font-size: 38px;
    font-style: normal;
    font-weight: 900;
  }
}
.aspects h2 span {
  font-size: 38px;
  font-style: normal;
  line-height: 40px;
  margin-bottom: 80px;
  font-family: "Lato", sans-serif;
  font-weight: 700;
}
@media only screen and (max-width: 991px) {
  .aspects h2 span {
    font-size: 32px;
    font-style: normal;
    line-height: 40px;
  }
}

.why-use {
  padding: 120px 40px 100px;
}
@media only screen and (max-width: 991px) {
  .why-use {
    padding: 120px 15px 100px;
  }
}
.why-use h2 {
  font-weight: 700;
  font-size: 48px;
  line-height: 128%;
  color: rgb(13, 32, 91);
  max-width: 510px;
  width: 100%;
  margin-bottom: 48px;
}
@media only screen and (max-width: 991px) {
  .why-use h2 {
    font-size: 38px;
  }
}
.why-use-list {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.why-use-list-item {
  display: flex;
  align-items: center;
  gap: 16px;
  width: calc(50% - 20px);
  max-width: 622px;
}
@media only screen and (max-width: 991px) {
  .why-use-list-item {
    max-width: 100%;
    width: 100%;
  }
}
.why-use-list-item p {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: rgb(85, 85, 85);
}

.contribute {
  background-image: url("../images/JSDX8nDjugQl.png");
  background-repeat: no-repeat;
  margin: 0 auto;
  background-size: contain;
  background-position: center;
}
@media only screen and (max-width: 1600px) {
  .contribute {
    background-size: cover;
  }
}
@media only screen and (min-width: 1921px) {
  .contribute {
    background-size: cover;
  }
}
.contribute-content {
  max-width: 1440px;
  margin: 0 auto;
  padding: 150px 40px;
}
@media only screen and (max-width: 991px) {
  .contribute-content {
    padding: 150px 15px;
  }
}
.contribute h2 {
  font-weight: 700;
  font-size: 64px;
  line-height: 96%;
  color: #fff;
  margin-bottom: 32px;
}
@media only screen and (max-width: 991px) {
  .contribute h2 {
    font-size: 38px;
  }
}
.contribute h2 span {
  font-size: 38px;
  font-style: normal;
  line-height: 48px;
  text-transform: capitalize;
  margin-bottom: 20px;
  font-weight: 700;
  display: block;
}
@media only screen and (max-width: 991px) {
  .contribute h2 span {
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
  }
}
.contribute p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 994px;
  font-weight: 400;
  font-size: 24px;
  line-height: 128%;
  color: #fff;
  margin-bottom: 80px;
}
@media only screen and (max-width: 991px) {
  .contribute p {
    margin-bottom: 28px;
    font-size: 16px;
    line-height: 24px;
  }
}
.contribute .button-survey a {
  border-radius: 40px;
  padding: 10px 24px;
  width: 320px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(255, 161, 0);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 20px;
  line-height: 70%;
}
.contribute .button-survey a:hover {
  background: rgba(255, 161, 0, 0.83);
}
.contribute .button-survey a:active {
  background: rgba(255, 161, 0, 0.83);
  box-shadow: none;
}

.tools {
  padding: 160px 40px 0;
}
@media only screen and (max-width: 991px) {
  .tools {
    padding: 160px 15px 0;
  }
}
.tools .sub-title {
  font-weight: 900;
  font-size: 24px;
  line-height: 150%;
  color: rgb(255, 161, 0);
  margin-bottom: 8px;
}
.tools h2 {
  font-weight: 700;
  font-size: 48px;
  line-height: 128%;
  color: rgb(13, 32, 91);
  margin-bottom: 48px;
}
@media only screen and (max-width: 991px) {
  .tools h2 {
    font-size: 38px;
  }
}
.tools-list {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media only screen and (max-width: 991px) {
  .tools-list {
    flex-direction: column;
  }
}
.tools-list p {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #666;
  max-width: 600px;
}
@media only screen and (max-width: 991px) {
  .tools-list p {
    max-width: 100%;
  }
}

.slider-wrapper {
  max-width: 1920px;
  margin: 0 auto;
  overflow: hidden;
}
@media only screen and (min-width: 1921px) {
  .slider-wrapper {
    overflow: visible;
  }
}

.testimonials {
  padding: 80px 0 112px !important;
  width: 2280px !important;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  left: 50%;
  transform: translate(-50%, 0);
}
@media only screen and (max-width: 1100px) {
  .testimonials {
    padding: 40px 15px 44px;
    margin-bottom: 64px;
  }
}
@media only screen and (max-width: 991px) {
  .testimonials {
    width: auto !important;
    transform: none;
    left: 0;
    padding: 25px 15px 44px;
    margin-bottom: 64px;
  }
}
.testimonials-slide {
  max-width: 392px;
  width: 100%;
  box-shadow: 0 10px 60px 0 rgba(10, 45, 97, 0.1);
  background: #fff;
  min-height: 474px;
  border-radius: 20px;
}
.testimonials-slide img {
  max-width: 392px;
}
.testimonials-slide h3 {
  font-weight: 700;
  font-size: 16px;
  line-height: 117%;
  text-transform: uppercase;
  color: rgb(255, 161, 0);
  padding: 16px 40px 8px;
}
.testimonials-slide > p {
  font-weight: 400;
  font-size: 16px;
  color: rgb(85, 85, 85);
  padding: 0 40px 46px;
}
.testimonials-slide .user {
  display: flex;
  gap: 16px;
}
.testimonials-slide .user img {
  width: 48px;
}
.testimonials-slide .user-name p:nth-of-type(1) {
  color: #0B0F11;
  font-family: "Lato", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 8px;
  text-align: left;
}
.testimonials-slide .user-name p:nth-of-type(2) {
  color: rgba(31, 49, 67, 0.7);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  text-align: left;
}
.testimonials .swiper-wrapper {
  width: 100%;
  height: 100%;
}
.testimonials .swiper-slide {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.testimonials .swiper-slide-prev,
.testimonials .swiper-slide-next {
  opacity: 0.8;
}
.testimonials .swiper-slide-active .testimonials-slide {
  opacity: 1 !important;
}
.testimonials .swiper-button-prev {
  transform: translate(-524px, -50%);
  color: #1F3143;
  display: none;
}
.testimonials .swiper-button-next {
  top: auto;
  right: 50%;
  transform: translate(50%, 0);
  bottom: 0;
  border: 2px solid rgb(255, 161, 0);
  border-radius: 40px;
  width: 154px;
  height: 64px;
  color: rgb(255, 161, 0) !important;
}
.testimonials .swiper-button-next:after {
  display: none;
}
.testimonials .swiper-button-next:hover {
  opacity: 0.7;
}
.testimonials .swiper-button-next img {
  margin-left: 11px;
}
.testimonials .swiper-pagination {
  bottom: 0;
  display: none;
}
.testimonials .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin: 0 6px;
}
.testimonials .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #1F3143;
}

.locations {
  display: flex;
  flex-direction: column;
  padding: 80px 40px;
}
@media only screen and (max-width: 991px) {
  .locations {
    padding: 80px 15px;
  }
}
.locations h2 {
  font-weight: 700;
  font-size: 32px;
  line-height: 192%;
  text-align: center;
  color: rgb(0, 0, 0);
  margin-bottom: 48px;
}
.locations-list {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media only screen and (max-width: 991px) {
  .locations-list {
    flex-direction: column;
    align-items: center;
  }
}
.locations-list-item {
  padding: 32px;
  box-shadow: 0 10px 60px 0 rgba(10, 45, 97, 0.1);
  background: #fff;
  max-width: 408px;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 33.3333333333%;
}
@media only screen and (max-width: 991px) {
  .locations-list-item {
    width: 100%;
  }
}
.locations-list-item:nth-of-type(1) img {
  margin-top: 67px;
}
.locations-list-item:nth-of-type(2) img {
  margin-top: 87px;
}
.locations-list-item:nth-of-type(3) img {
  margin-top: 38px;
}
.locations-list-item h3 {
  font-weight: 900;
  font-size: 24px;
  text-transform: capitalize;
  text-align: right;
  color: rgb(255, 161, 0);
  margin-bottom: 8px;
}
.locations-list-item .office {
  font-weight: 400;
  font-size: 16px;
  text-transform: capitalize;
  text-align: right;
  color: #000020;
  margin-bottom: 8px;
}
.locations-list-item .address {
  font-weight: 400;
  font-size: 12px;
  text-transform: capitalize;
  text-align: right;
  color: #666;
}
.locations-list-item img {
  align-self: center;
}

.lets-talk {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  padding: 80px 40px 160px;
}
@media only screen and (max-width: 991px) {
  .lets-talk {
    flex-direction: column;
    padding: 80px 15px 80px;
  }
}
.lets-talk-img {
  width: 100%;
  max-width: 473px;
  height: auto;
  overflow: hidden;
  display: flex;
}
@media only screen and (max-width: 991px) {
  .lets-talk-img {
    height: auto;
    overflow: hidden;
    display: flex;
    max-width: 100%;
    width: 100%;
  }
}
.lets-talk-img img {
  object-fit: cover;
  height: 100%;
}
@media only screen and (max-width: 991px) {
  .lets-talk-img img {
    object-fit: cover;
    height: calc(100% + 100px);
    width: 100%;
    max-height: 600px;
    object-position: top;
    margin-top: -100px;
  }
}
.lets-talk-txt {
  display: flex;
  flex-direction: column;
  text-align: right;
}
.lets-talk-txt .sub-title {
  font-weight: 900;
  font-size: 24px;
  line-height: 150%;
  color: rgb(255, 161, 0);
  margin-bottom: 16px;
  text-align: right;
}
.lets-talk-txt h2 {
  font-weight: 900;
  font-size: 48px;
  color: rgb(0, 0, 0);
  width: 100%;
  margin-bottom: 9px;
  text-align: right;
}
@media only screen and (max-width: 991px) {
  .lets-talk-txt h2 {
    font-size: 38px;
  }
}
.lets-talk-txt p {
  font-weight: 400;
  font-size: 24px;
  line-height: 128%;
  text-align: right;
  color: rgb(85, 85, 85);
  margin-bottom: 60px;
}
.lets-talk-txt .small-blue {
  font-style: italic;
  font-weight: 400;
  font-size: 20px;
  line-height: 153%;
  text-align: right;
  color: rgb(0, 0, 0);
  margin-bottom: 16px;
}
.lets-talk-txt a {
  border: 2px solid rgb(255, 161, 0);
  border-radius: 40px;
  max-width: 404px;
  width: 100%;
  height: 64px;
  font-weight: 700;
  font-size: 20px;
  line-height: 70%;
  text-align: center;
  color: rgb(255, 161, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  align-self: flex-end;
}
@media only screen and (max-width: 450px) {
  .lets-talk-txt a {
    font-size: 16px;
  }
}
.lets-talk-txt a:hover {
  border-color: rgba(255, 161, 0, 0.73);
  color: rgba(255, 161, 0, 0.73);
}
.lets-talk-txt a:active {
  box-shadow: none;
  border-color: rgba(255, 161, 0, 0.73);
  color: rgba(255, 161, 0, 0.73);
}
.survey {
  padding: 40px 40px 0;
}
@media only screen and (max-width: 991px) {
  .survey {
    padding: 0;
  }
}
.survey-help {
  padding: 40px;
  background: #F6F8FA;
}
@media only screen and (max-width: 991px) {
  .survey-help {
    padding: 24px 15px;
  }
}
.survey-help h2 {
  color: #0B0F11;
  font-weight: 400;
  font-size: 38px;
  line-height: 38px;
  margin-bottom: 24px;
  font-family: "Lato", sans-serif;
}
@media only screen and (max-width: 991px) {
  .survey-help h2 {
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px;
    margin-bottom: 16px;
  }
}
.survey-help p {
  max-width: 719px;
  color: #0B0F11;
  font-weight: 300;
  font-size: 20px;
  line-height: 29px;
}
@media only screen and (max-width: 991px) {
  .survey-help p {
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
  }
}
.survey .slider .error-message {
  margin: 7px 0 0 0 !important;
  color: #eb162b;
  font-size: 12px;
}
.survey .slider .list-wrap {
  background: rgb(7, 26, 51);
  padding: 40px;
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}
.survey .slider .list-wrap .book {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
}
@media only screen and (max-width: 600px) {
  .survey .slider .list-wrap .book {
    right: -50px;
    height: 248px;
  }
}
@media only screen and (max-width: 991px) {
  .survey .slider .list-wrap {
    padding: 32px 15px;
    min-height: 729px;
  }
}
.survey .slider .list-wrap h3 {
  font-weight: 700;
  font-size: 20px;
  line-height: 135%;
  color: #fff;
  padding: 40px 0 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 40px;
}
@media only screen and (max-width: 991px) {
  .survey .slider .list-wrap h3 {
    margin-top: 32px;
    padding: 32px 0 16px;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
  }
}
.survey .slider .list-wrap .button {
  border: 2px solid #fff;
  border-radius: 40px;
  width: 154px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.survey .slider .list-wrap .button:hover {
  background: #FFFFFF;
  border-radius: 40px;
}
.survey .slider .list-wrap .button:hover a {
  color: rgb(0, 0, 0);
}
.survey .slider .list-wrap .button:hover a path {
  fill: rgb(0, 0, 0);
}
.survey .slider .list-wrap .button:active {
  border-color: rgb(0, 0, 0);
}
.survey .slider .list-wrap .button .next-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 154px;
  height: 64px;
  font-weight: 700;
  font-size: 20px;
  line-height: 70%;
  text-align: center;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}
.survey .slider .list-wrap .current-step {
  font-weight: 300;
  font-size: 20px;
  line-height: 100%;
  color: #fff;
}
@media only screen and (max-width: 991px) {
  .survey .slider .list-wrap .current-step {
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 16px;
  }
}
.survey .slider .list-title span {
  display: block;
  font-weight: 400;
  font-size: 20px;
  line-height: 153%;
  color: #fff;
  margin-bottom: 16px;
}

.stepper {
  display: flex;
  flex-direction: column;
  background: #FFF;
  overflow: hidden;
}
.stepper .step-1 .title {
  background: #000;
}
.stepper .step-1 .title h1 {
  color: #FFF;
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  max-width: 746px;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
}
@media only screen and (max-width: 991px) {
  .stepper .step-1 .title h1 {
    font-size: 24px;
    padding: 15px 20px;
  }
}
.stepper .step-1 .text p:nth-child(1) {
  color: #333;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 30px 0;
}
@media only screen and (max-width: 991px) {
  .stepper .step-1 .text p:nth-child(1) {
    color: rgb(0, 0, 0);
  }
}
.stepper .step-1 .text p:nth-child(2) {
  color: #333;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 70px;
}
@media only screen and (max-width: 991px) {
  .stepper .step-1 .text p:nth-child(2) {
    color: #8F0000;
    font-weight: 700;
    margin-bottom: 50px;
  }
}
.stepper .step-1 .imag-text {
  display: flex;
  max-width: 917px;
  justify-content: center;
  align-items: center;
  margin: 0 auto 100px;
  gap: 50px;
}
@media only screen and (max-width: 991px) {
  .stepper .step-1 .imag-text {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
  }
}
.stepper .step-1 .imag-text p {
  color: #333;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: left;
}
@media only screen and (max-width: 991px) {
  .stepper .step-1 .imag-text p {
    text-align: center;
  }
}
.stepper .step-1 .imag-text .img img {
  max-height: 131px;
}
.stepper .step h2 {
  font-weight: 900;
  font-size: 48px;
  color: #fff;
  line-height: 100%;
  text-align: left;
  margin-bottom: 24px;
  font-family: "Lato", sans-serif;
}
@media only screen and (max-width: 991px) {
  .stepper .step h2 {
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 16px;
  }
}
.stepper .step p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 27px;
  text-align: left;
  margin: 0;
}
.stepper .step p span {
  display: inline-block;
}
@media only screen and (max-width: 991px) {
  .stepper .step p {
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
  }
}
.stepper .step p:nth-of-type(1) {
  margin-bottom: 12px;
}
.stepper .step p:nth-of-type(2) {
  color: rgba(255, 255, 255, 0.5);
}
.stepper .step li {
  display: flex;
  align-items: center;
  padding-left: 36px;
  font-weight: 300;
  font-size: 18px;
  line-height: 24px;
  color: #fff;
}
@media only screen and (max-width: 991px) {
  .stepper .step li {
    padding-left: 38px;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 16px;
    height: auto;
  }
}
@media only screen and (max-width: 350px) {
  .stepper .step li {
    font-size: 14px;
    padding-left: 36px;
  }
}
@media only screen and (max-width: 991px) {
  .stepper .slide {
    padding: 0;
  }
}
.stepper .slide .content {
  display: flex;
  justify-content: space-between;
  min-height: 682px;
}
@media only screen and (max-width: 991px) {
  .stepper .slide .content {
    flex-direction: column;
  }
}
.stepper .slide .list {
  width: 100%;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  z-index: 10;
}
@media only screen and (max-width: 991px) {
  .stepper .slide .list {
    gap: 28px;
  }
}
.stepper .slide .list-item {
  position: relative;
  cursor: pointer;
}
.stepper .slide .list-item:before {
  content: "";
  position: absolute;
  left: 0;
  height: 24px;
  width: 24px;
  background-color: #fff;
  border: 1px solid #a0afbd;
  border-radius: 50%;
  transform: translateY(-50%);
  top: 50%;
  box-sizing: border-box;
}
@media only screen and (max-width: 991px) {
  .stepper .slide .list-item:before {
    height: 24px;
    width: 24px;
    left: 0;
  }
}
.stepper .slide .list-item.active:before {
  border: 5px solid #fff;
  background-color: rgb(255, 161, 0) !important;
}
.stepper .slide .list-item:hover:before {
  border: 5px solid #fff;
  background-color: rgb(255, 161, 0);
}
.stepper .slide .contact-us {
  max-width: 452px;
  width: 100%;
  background: #F2F5F7;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  display: none;
}
@media only screen and (max-width: 991px) {
  .stepper .slide .contact-us {
    max-width: 100%;
    padding: 32px 15px;
  }
}
.stepper .slide .contact-us h3 {
  font-weight: 400;
  font-size: 30px;
  line-height: 100%;
  color: #0b0f11;
  text-align: left;
  font-family: "Lato", sans-serif;
}
.stepper .slide .contact-us p {
  font-weight: 300;
  font-size: 18px;
  line-height: 150%;
  color: #0b0f11;
  margin: 0;
}
.stepper .slide .contact-us .link {
  text-align: left;
}
.stepper .slide .contact-us .contact-phones {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.stepper .slide .contact-us .phone-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.stepper .slide .contact-us .phone-group p {
  color: #0B0F11;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}
.stepper .slide .contact-us .phone-group p img {
  margin-right: 8px;
}
.stepper .slide .contact-us .phone-group span {
  color: #315576;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.stepper .slide .contact-us .contact-info-block p:nth-of-type(1) {
  color: #0B0F11;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 28px;
  margin-bottom: 16px;
}
.stepper .slide .contact-us .contact-info-block p:nth-of-type(2) {
  color: rgba(11, 15, 17, 0.8);
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 28px;
}
.stepper .slide .contact-us a {
  height: 24px;
  font-weight: 400;
  font-size: 18px;
  line-height: 133%;
  color: #315576;
  position: relative;
  display: block;
}
.stepper .slide .contact-us a span {
  position: relative;
}
.stepper .slide .contact-us a span:before {
  content: "";
  width: 100%;
  background: #315576;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
}
.stepper .slide .contact-us a:hover span {
  background: rgba(49, 85, 118, 0.08);
}
.stepper .slide .contact-us a:active {
  background: rgba(49, 85, 118, 0.16);
}
.stepper .step-7.form .content {
  display: flex;
  position: relative;
  z-index: 100;
}
@media only screen and (max-width: 991px) {
  .stepper .step-7.form .content {
    flex-direction: column;
  }
}
.stepper .step-7.form h2 {
  font-weight: 700;
  font-size: 30px;
  line-height: 100%;
  color: #fff;
  text-align: left;
  margin-bottom: 24px;
  font-family: "Lato", sans-serif;
}
@media only screen and (max-width: 991px) {
  .stepper .step-7.form h2 {
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
  }
}
.stepper .step-7.form .image {
  max-width: 684px;
  width: 100%;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .stepper .step-7.form .image {
    max-width: none;
  }
}
.stepper .step-7.form .image img {
  width: 100%;
  min-height: 533px;
  height: 100%;
}
@media only screen and (max-width: 480px) {
  .stepper .step-7.form .image img {
    max-height: 254px;
    min-height: auto;
  }
}
.stepper .step-7.form .form {
  width: 100%;
}
@media only screen and (max-width: 991px) {
  .stepper .step-7.form .form {
    margin: 0 auto;
  }
}
.stepper .step-7.form .form form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 506px;
  position: relative;
  z-index: 100;
}
.stepper .step-7.form .form form .form-group {
  display: flex;
  gap: 24px;
}
@media only screen and (max-width: 991px) {
  .stepper .step-7.form .form form .form-group.name {
    flex-direction: column;
  }
}
.stepper .step-7.form .form form .form-group.email {
  flex-direction: column;
  gap: 0;
}
.stepper .step-7.form .form form .form-group.phone-input {
  flex-direction: column;
  gap: 0;
}
.stepper .step-7.form .form form .form-group-item {
  width: 100%;
  border-radius: 0;
}
.stepper .step-7.form .form h3 {
  text-align: left;
  font-style: normal;
  margin-bottom: 29px;
  font-weight: 700;
  font-size: 20px;
  line-height: 135%;
  color: #fff;
  padding: 40px 0 0;
}
@media only screen and (max-width: 991px) {
  .stepper .step-7.form .form h3 {
    margin-bottom: 0;
    padding: 32px 0 15px;
  }
}
.stepper .step-7.form .form input {
  width: 100%;
  background: transparent;
  border: none;
  border-radius: 0 !important;
  color: rgba(255, 255, 255, 0.5);
  font-style: normal;
  outline: none;
  font-weight: 300;
  font-size: 18px;
  line-height: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding: 16px 0px;
  max-width: 241px;
  height: 50px;
  border-radius: 0;
}
@media only screen and (max-width: 991px) {
  .stepper .step-7.form .form input {
    max-width: 100%;
  }
}
.stepper .step-7.form .form input.email {
  max-width: 100%;
}
.stepper .step-7.form .form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px;
}
.stepper .step-7.form .form .main-form-btn {
  box-shadow: 4px 4px 0 0 rgba(15, 21, 27, 0.2);
  background: rgb(255, 161, 0) !important;
  width: 320px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  color: rgb(255, 255, 255) !important;
  margin-top: 61px;
  border: none;
  border-radius: 40px;
  background: transparent;
}
.stepper .step-7.form .form .main-form-btn:hover {
  background: rgb(255, 255, 255) !important;
  color: rgb(255, 161, 0) !important;
}
.stepper .step-7.form .form .main-form-btn:active {
  background: rgb(255, 255, 255) !important;
  color: rgb(255, 161, 0) !important;
}
.stepper .step-7.form .form .error {
  width: 100%;
  font-weight: 400;
  margin-top: 0.25rem;
  padding: 5px;
  color: #fff;
  background-color: #eb162b;
  font-size: 12px;
  display: none;
  text-align: left;
}
.stepper .step-7.form .form .phone-cell1 {
  width: 100%;
}
.stepper .step-7.form .form .phone-cell1 .form-group {
  margin: 0;
  width: 100%;
  gap: 0;
}
.stepper .step-7.form .form .phone-cell1 input {
  border-left: none;
  outline: none;
  max-width: 100%;
  border-radius: 0 !important;
}
.stepper .step-7.form .form .phone-row.flag {
  margin: 0;
}
.stepper .step-7.form .form .phone-row.flag {
  display: flex;
  justify-content: space-between;
  color: rgb(0, 0, 0);
  border-radius: 5px;
  width: 100%;
  gap: 12px;
}
.stepper .step-7.form .form .prefix-cell1.flag {
  border: 1px solid #e1e1e1;
  height: 58px;
  display: flex;
  gap: 6px;
  padding: 0 10px;
  border-radius: 10px 0 0 10px;
  width: 102px;
  align-items: center;
  border-right: none;
  background: #C5C5C5;
}
.stepper .step-7.form .form .form-group.flag {
  height: 55px;
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
}
.stepper .step-7.form .form .flag span {
  font-size: 16px;
  font-weight: 400;
  color: rgb(0, 0, 0);
  white-space: nowrap;
}
.stepper .step-7.form .form .select-box {
  position: relative;
  display: block;
  width: 108px;
  margin: 0 auto;
  font-size: 18px;
  color: #60666d;
  z-index: 9;
}
.stepper .step-7.form .form .select-box__current {
  position: relative;
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  outline: none;
}
.stepper .step-7.form .form .select-box__current:focus + .select-box__list {
  opacity: 1;
  animation-name: none;
}
.stepper .step-7.form .form .select-box__current:focus + .select-box__list .select-box__option {
  cursor: pointer;
}
.stepper .step-7.form .form .select-box__current:focus .select-box__icon {
  transform: translateY(-50%) rotate(180deg);
}
.stepper .step-7.form .form .select-box__icon {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: 20px;
  opacity: 0.3;
  transition: 0.2s ease;
}
.stepper .step-7.form .form .select-box__value {
  display: flex;
  width: 93px;
}
.stepper .step-7.form .form .select-box__input {
  display: none;
}
.stepper .step-7.form .form .select-box__input:checked + .select-box__input-text {
  display: flex;
}
.stepper .step-7.form .form .select-box__input-text {
  display: none;
  margin: 0;
  border: none;
  position: relative;
  align-items: center;
  width: 100%;
  font-style: normal;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  height: 50px;
  font-weight: 300;
  font-size: 18px;
  line-height: 100%;
  color: #fff;
}
.stepper .step-7.form .form .select-box__input-text img:nth-child(1) {
  margin-right: 10px;
}
.stepper .step-7.form .form .select-box__input-text img:nth-child(2) {
  margin-left: 10px;
}
.stepper .step-7.form .form .select-box__list {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 0;
  list-style: none;
  opacity: 0;
  background: #1f3143;
  animation-name: HideList;
  animation-duration: 0.5s;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
  animation-timing-function: step-start;
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
}
.stepper .step-7.form .form .select-box__list li {
  position: relative;
  height: 50px;
  display: flex;
  align-items: center;
  padding: 0;
}
.stepper .step-7.form .form .select-box__list li:hover {
  background-color: #204060;
}
.stepper .step-7.form .form .select-box__list li:hover label {
  background-color: rgba(0, 0, 0, 0.01);
}
.stepper .step-7.form .form .select-box__option {
  background-color: #1f3143;
  font-style: normal;
  display: flex;
  justify-content: flex-start;
  font-weight: 300;
  font-size: 18px;
  line-height: 100%;
  color: #fff;
}
.stepper .step-7.form .form .select-box__option img:nth-child(1) {
  margin-right: 10px;
  width: 21px;
  height: 15px;
}
@keyframes HideList {
  from {
    transform: scaleY(1);
  }
  to {
    transform: scaleY(0);
  }
}
.stepper .step-8 h2 {
  margin-bottom: 40px;
}
.stepper .step-8 img {
  height: 10px;
}
.stepper .step-8 .success-list-title {
  text-align: left;
  color: #FFF;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 100% */
  margin-bottom: 40px;
}
.stepper .step-8 .success-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-left: 20px;
}
.stepper .step-8 .success-list li {
  display: list-item;
  list-style: disc;
  text-align: left;
  padding-left: 0;
}
.stepper .step-8 .success-list li::marker {
  color: #ffffff;
}

.step {
  display: none;
  text-align: center;
}
.step.active {
  display: block;
}

.dots-container {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 10px;
  z-index: 10;
}
.dots-container > div {
  color: rgb(0, 0, 0);
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px;
}
.dots-container .dots {
  gap: 10px;
  display: none !important;
}
.dots-container .dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #FFFFFF;
  border: 1px solid #8F0000;
  cursor: pointer;
}
.dots-container .dots .dot.active {
  background-color: #8F0000;
}

.dialog {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  justify-content: center;
  align-items: center;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  overflow: scroll;
}

.dialog__wrap {
  padding: 64px 0;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0%);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  width: 100%;
}

.dialog h2 {
  color: #ffffff;
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  max-width: 273px;
  margin: 10px auto 47px;
}

.dialog__close {
  position: absolute;
  top: -50px;
  right: -34px;
  height: 34px;
  cursor: pointer;
}

@media only screen and (max-width: 991px) {
  .dialog__close {
    right: 0;
  }
}
.dialog__content {
  background: #0f1821;
  width: 494px;
  position: relative;
  border: 5px solid #ffffff;
  padding: 15px;
}

@media only screen and (max-width: 991px) {
  .dialog__content {
    max-width: 360px;
    width: 100%;
  }
}
.dialog .form {
  width: 100%;
}
@media only screen and (max-width: 991px) {
  .dialog .form {
    margin: 0 auto;
  }
}
.dialog .form form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 506px;
}
.dialog .form form .form-group {
  display: flex;
  gap: 24px;
}
@media only screen and (max-width: 991px) {
  .dialog .form form .form-group.name {
    flex-direction: column;
  }
}
.dialog .form form .form-group.email {
  flex-direction: column;
  gap: 0;
}
.dialog .form form .form-group.phone-input {
  flex-direction: column;
  gap: 0;
}
.dialog .form form .form-group-item {
  width: 100%;
}
.dialog .form h3 {
  text-align: left;
  font-style: normal;
  margin-bottom: 29px;
  font-weight: 700;
  font-size: 20px;
  line-height: 135%;
  color: #fff;
  padding: 40px 0 0;
}
@media only screen and (max-width: 991px) {
  .dialog .form h3 {
    margin-bottom: 0;
    padding: 32px 0 15px;
  }
}
.dialog .form input {
  width: 100%;
  background: transparent;
  border: none;
  border-radius: 0 !important;
  color: rgba(255, 255, 255, 0.5);
  font-style: normal;
  outline: none;
  font-weight: 300;
  font-size: 18px;
  line-height: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding: 16px 0px;
  max-width: 241px;
  height: 50px;
}
@media only screen and (max-width: 991px) {
  .dialog .form input {
    max-width: 100%;
  }
}
.dialog .form input.email {
  max-width: 100%;
}
.dialog .form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px;
}
.dialog .form .main-form-btn {
  box-shadow: 4px 4px 0 0 rgba(15, 21, 27, 0.2);
  background: rgb(255, 0, 0);
  border-radius: 4px;
  width: 199px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  color: #1f3143;
  margin-top: 61px;
  border: none;
}
.dialog .form .main-form-btn:hover {
  box-shadow: 4px 4px 0 0 rgba(15, 21, 27, 0.5);
  background: #f7b433;
}
.dialog .form .main-form-btn:active {
  box-shadow: 0 0 0 0 rgba(15, 21, 27, 0.2);
  background: #cc901b;
}
.dialog .form .error {
  width: 100%;
  font-weight: 400;
  margin-top: 0.25rem;
  padding: 5px;
  color: #fff;
  background-color: #eb162b;
  font-size: 12px;
  display: none;
  text-align: left;
}
.dialog .form .phone-cell1 {
  width: 100%;
}
.dialog .form .phone-cell1 .form-group {
  margin: 0;
  width: 100%;
  gap: 0;
}
.dialog .form .phone-cell1 input {
  border-left: none;
  border-radius: 0 10px 10px 0 !important;
  outline: none;
  max-width: 100%;
  border-radius: 0 !important;
}
.dialog .form .phone-row.flag {
  margin: 0;
}
.dialog .form .phone-row.flag {
  display: flex;
  justify-content: space-between;
  color: rgb(0, 0, 0);
  border-radius: 5px;
  width: 100%;
  gap: 12px;
}
.dialog .form .prefix-cell1.flag {
  border: 1px solid #e1e1e1;
  height: 58px;
  display: flex;
  gap: 6px;
  padding: 0 10px;
  border-radius: 10px 0 0 10px;
  width: 102px;
  align-items: center;
  border-right: none;
  background: #C5C5C5;
}
.dialog .form .form-group.flag {
  height: 55px;
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
}
.dialog .form .flag span {
  font-size: 16px;
  font-weight: 400;
  color: rgb(0, 0, 0);
  white-space: nowrap;
}
.dialog .form .select-box {
  position: relative;
  display: block;
  width: 108px;
  margin: 0 auto;
  font-size: 18px;
  color: #60666d;
  z-index: 9;
}
.dialog .form .select-box__current {
  position: relative;
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  outline: none;
}
.dialog .form .select-box__current:focus + .select-box__list {
  opacity: 1;
  animation-name: none;
}
.dialog .form .select-box__current:focus + .select-box__list .select-box__option {
  cursor: pointer;
}
.dialog .form .select-box__current:focus .select-box__icon {
  transform: translateY(-50%) rotate(180deg);
}
.dialog .form .select-box__icon {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: 20px;
  opacity: 0.3;
  transition: 0.2s ease;
}
.dialog .form .select-box__value {
  display: flex;
  width: 93px;
}
.dialog .form .select-box__input {
  display: none;
}
.dialog .form .select-box__input:checked + .select-box__input-text {
  display: flex;
}
.dialog .form .select-box__input-text {
  display: none;
  margin: 0;
  border: none;
  position: relative;
  align-items: center;
  width: 100%;
  font-style: normal;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  height: 50px;
  font-weight: 300;
  font-size: 18px;
  line-height: 100%;
  color: #fff;
}
.dialog .form .select-box__input-text img:nth-child(1) {
  margin-right: 10px;
}
.dialog .form .select-box__input-text img:nth-child(2) {
  margin-left: 10px;
}
.dialog .form .select-box__list {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 0;
  list-style: none;
  opacity: 0;
  background: #1f3143;
  animation-name: HideList;
  animation-duration: 0.5s;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
  animation-timing-function: step-start;
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
}
.dialog .form .select-box__list li {
  position: relative;
  height: 50px;
  display: flex;
  align-items: center;
  padding: 0;
}
.dialog .form .select-box__list li:hover {
  background-color: #204060;
}
.dialog .form .select-box__list li:hover label {
  background-color: rgba(0, 0, 0, 0.01);
}
.dialog .form .select-box__option {
  background-color: #1f3143;
  font-style: normal;
  display: flex;
  justify-content: flex-start;
  font-weight: 300;
  font-size: 18px;
  line-height: 100%;
  color: #fff;
}
.dialog .form .select-box__option img:nth-child(1) {
  margin-right: 10px;
  width: 21px;
  height: 15px;
}
@keyframes HideList {
  from {
    transform: scaleY(1);
  }
  to {
    transform: scaleY(0);
  }
}

/*# sourceMappingURL=style.css.map */
