* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: "Exo 2", sans-serif;
  min-height: 100vh;
  position: relative;
  background: #030D17;
}

a {
  text-decoration: none;
  outline: none;
  color: inherit;
}
a:hover {
  text-decoration: none;
}

input, textarea, select {
  font-family: "Raleway", sans-serif;
  -webkit-box-shadow: none;
          box-shadow: none;
}

button {
  border: none;
  background: none;
  font-family: "Raleway", sans-serif;
  outline: none;
  cursor: pointer;
}

.container {
  width: 100%;
  max-width: 1590px;
  margin: 0 auto;
  padding: 0 25px;
}
@media (max-width: 1700px) {
  .container {
    max-width: 1340px;
  }
}
@media (max-width: 1500px) {
  .container {
    max-width: 1250px;
  }
}
@media (max-width: 500px) {
  .container {
    padding: 0 20px;
  }
}

.main {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.home-bg {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
}
@media (max-width: 1600px) {
  .home-bg {
    width: 1180px;
  }
}
@media (max-width: 1200px) {
  .home-bg {
    width: 1000px;
  }
}
@media (max-width: 950px) {
  .home-bg {
    width: 1000px;
  }
}
@media (max-width: 760px) {
  .home-bg {
    display: none;
  }
}

.home-mob-bg {
    position: absolute;
    top: 0;
    right: 0;
    display: none;
  }
  @media (max-width: 760px) {
    .home-mob-bg {
      display: block;
    }
  }
  @media (max-width: 400px) {
    .home-mob-bg {
      width: 180px;
    }
  }
  @media (max-width: 340px) {
    .home-mob-bg {
      width: 150px;
    }
  }

.burger {
  width: 35px;
  height: 35px;
  display: none;
  position: relative;
  z-index: 100;
}
.burger::before, .burger::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  border-radius: 2px;
}
.burger::before {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
.burger::after {
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
}
@media (max-width: 940px) {
  .burger {
    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;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}

.overlay {
  background: rgba(255, 255, 255, 0.02);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 50;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.mobile-menu {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  display: none;
  z-index: 100;
  overflow: auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  visibility: hidden;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}
@media (max-width: 940px) {
  .mobile-menu {
    display: block;
    width: 365px;
    background: #000;
    -webkit-box-shadow: 0px 4px 53px rgba(34, 26, 24, 0.44);
            box-shadow: 0px 4px 53px rgba(34, 26, 24, 0.44);
    padding: 94px 0 60px;
  }
}
@media (max-width: 570px) {
  .mobile-menu {
    width: 100%;
    padding: 73px 0px 10px;
  }
}

.mobile-menu__wrap {
  width: 100%;
  height: 100%;
  position: relative;
  padding-bottom: 140px;
}

.mobile-menu__list {
  list-style-type: none;
  font-weight: 700;
  font-size: 16px;
  line-height: 17px;
  color: #fff;
  padding-bottom: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.105);
}
@media (max-width: 550px) {
  .mobile-menu__list {
    padding-bottom: 30px;
  }
}

.mobile-menu__item {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.105);
}
.mobile-menu__item a {
  display: block;
  width: 100%;
  padding: 20px;
}

.menu_open {
  overflow: hidden;
}
.menu_open .header::before {
  opacity: 1;
}
.menu_open .burger::before {
  -webkit-transform: rotate(45deg) !important;
          transform: rotate(45deg) !important;
}
.menu_open .burger::after {
  -webkit-transform: rotate(-45deg) !important;
          transform: rotate(-45deg) !important;
}
.menu_open .mobile-menu {
  visibility: visible;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.menu_open .overlay {
  opacity: 1;
  visibility: visible;
}

.header {
  width: 100%;
  background: linear-gradient(90.01deg, #000000 26.75%, rgba(0, 0, 0, 0) 67.42%);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
.header::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: -1px;
  width: 100%;
  height: 100%;
  background: #000;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  opacity: 0;
}
.header.header_scroll::before {
  opacity: 1;
}

.header-wrap {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  padding: 30px 0;
  position: relative;
  z-index: 2;
}
@media (max-width: 570px) {
  .header-wrap {
    padding: 18px 0;
  }
}

.header-logo {
  display: block;
  margin-right: 20px;
}
@media (max-width: 1600px) {
  .header-logo img {
    max-width: 135px;
  }
}

.header-list {
  list-style-type: none;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  color: #F2F2F2;
}
@media (max-width: 1600px) {
  .header-list {
    font-size: 14px;
  }
}
@media (max-width: 940px) {
  .header-list {
    display: none;
  }
}
.header-list__item {
  margin-left: 70px;
}
@media (max-width: 1600px) {
  .header-list__item {
    margin-left: 54px;
  }
}
@media (max-width: 1100px) {
  .header-list__item {
    margin-left: 40px;
  }
}
.header-list__item:first-child {
  margin-left: 0;
}
.header-list__link {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header-list__link:hover {
  color: #0066FF;
}

@-webkit-keyframes dots {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes dots {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.home-section {
  width: 100%;
  position: relative;
  z-index: 2;
}

.home-section-wrap {
  width: 100%;
  padding: 160px 0;
}
@media (max-width: 1600px) {
  .home-section-wrap {
    padding-top: 140px;
    padding-bottom: 140px;
  }
}
@media (max-width: 600px) {
  .home-section-wrap {
    padding: 110px 0 100px;
  }
}
.home-section-wrap h1 {
  max-width: 760px;
  font-weight: 300;
  font-size: 72px;
  line-height: 86px;
  color: #FFFFFF;
  margin-bottom: 40px;
}
@media (max-width: 1600px) {
  .home-section-wrap h1 {
    font-size: 55px;
    line-height: 65px;
  }
}
@media (max-width: 1020px) {
  .home-section-wrap h1 {
    font-size: 50px;
    line-height: 60px;
    margin-bottom: 30px;
  }
}
@media (max-width: 840px) {
  .home-section-wrap h1 {
    max-width: 480px;
    font-size: 40px;
    line-height: 50px;
  }
}
@media (max-width: 760px) {
  .home-section-wrap h1 {
    max-width: none;
  }
}
.home-section-wrap .sub-title {
  font-weight: 300;
  font-size: 36px;
  line-height: 130%;
  color: #FFFFFF;
  margin-bottom: 50px;
  max-width: 760px;
}
@media (max-width: 1600px) {
  .home-section-wrap .sub-title {
    font-size: 28px;
    max-width: 650px;
  }
}
@media (max-width: 1020px) {
  .home-section-wrap .sub-title {
    font-size: 25px;
    margin-bottom: 30px;
    max-width: 480px;
  }
}
@media (max-width: 760px) {
  .home-section-wrap .sub-title {
    max-width: none;
  }
}
@media (max-width: 410px) {
  .home-section-wrap .sub-title {
    font-size: 20px;
  }
}
.home-section-wrap p {
  font-size: 22px;
  line-height: 140%;
  color: #BDBDBD;
  margin-bottom: 80px;
  max-width: 760px;
}
@media (max-width: 1600px) {
  .home-section-wrap p {
    font-size: 19px;
    margin-bottom: 50px;
    max-width: 700px;
  }
}
@media (max-width: 1020px) {
  .home-section-wrap p {
    font-size: 18px;
    margin-bottom: 50px;
    max-width: 550px;
  }
}
@media (max-width: 840px) {
  .home-section-wrap p {
    max-width: 530px;
  }
}
@media (max-width: 760px) {
  .home-section-wrap p {
    max-width: none;
  }
}
@media (max-width: 410px) {
  .home-section-wrap p {
    font-size: 16px;
  }
}
.home-section-wrap .home-links {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
@media (max-width: 760px) {
  .home-section-wrap .home-links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.home-section-wrap .home-links a {
  width: 210px;
  height: 50px;
  background: linear-gradient(233.33deg, #0066FF 19.52%, rgba(0, 102, 255, 0.3) 88.68%);
  border-radius: 100px;
  position: relative;
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  color: #FFFFFF;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin-right: 20px;
}
@media (max-width: 1600px) {
  .home-section-wrap .home-links a {
    width: 170px;
    font-size: 14px;
    height: 40px;
  }
}
@media (max-width: 760px) {
  .home-section-wrap .home-links a {
    width: 100%;
    margin-bottom: 10px;
    margin-right: 0;
  }
}
.home-section-wrap .home-links a::before, .home-section-wrap .home-links a::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 100px;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.home-section-wrap .home-links a::before {
  background: linear-gradient(214.36deg, #00FF94 12.1%, rgba(0, 102, 255, 0.3) 90.75%);
}
.home-section-wrap .home-links a::after {
  background: linear-gradient(233.33deg, #00D1FF 19.52%, rgba(0, 102, 255, 0.3) 88.68%);
}
.home-section-wrap .home-links a:hover::before {
  opacity: 1;
}
.home-section-wrap .home-links a:active::after {
  opacity: 1;
}
.home-section-wrap .home-links a span {
  position: relative;
  z-index: 3;
}

.home-section-timer {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin-bottom: 80px;
}
@media (max-width: 1600px) {
  .home-section-timer {
    margin-bottom: 70px;
  }
}
@media (max-width: 450px) {
  .home-section-timer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 40px;
  }
}
.home-section-timer__label {
  font-size: 22px;
  line-height: 140%;
  color: #BDBDBD;
  display: block;
  margin-right: 20px;
}
@media (max-width: 1600px) {
  .home-section-timer__label {
    font-size: 19px;
  }
}
@media (max-width: 450px) {
  .home-section-timer__label {
    margin-bottom: 15px;
  }
}

.home-section-timer-items {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.home-section-timer-items__item {
  width: 46px;
  height: 39px;
  left: 535px;
  top: 161px;
  background: #FFFFFF;
  border-radius: 5px;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  font-weight: bold;
  font-size: 28px;
  line-height: 130%;
  text-align: center;
  text-transform: uppercase;
  color: #030D17;
}
@media (max-width: 1600px) {
  .home-section-timer-items__item {
    width: 36px;
    height: 30px;
    font-size: 25px;
  }
}
.home-section-timer-items .dot {
  font-weight: bold;
  font-size: 28px;
  line-height: 28px;
  text-transform: uppercase;
  color: #FFFFFF;
  display: block;
  margin: 0 2px;
  margin-top: -6px;
  -webkit-animation: dots 2s ease infinite;
          animation: dots 2s ease infinite;
}

.video-info-section {
  width: 100%;
  position: relative;
  z-index: 2;
}

.video-info-section-wrap {
  width: 100%;
  padding: 80px 0 110px;
}
@media (max-width: 1023px) {
  .video-info-section-wrap {
    padding: 80px 0 50px;
  }
}
@media (max-width: 800px) {
  .video-info-section-wrap {
    padding: 20px 0 50px;
  }
}
.video-info-section-wrap .video-info {
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  color: #BDBDBD;
}
@media (max-width: 1600px) {
  .video-info-section-wrap .video-info {
    font-size: 14px;
  }
}
.video-info-section-wrap h2 {
  font-weight: 300;
  font-size: 36px;
  line-height: 150%;
  color: #FFFFFF;
  margin-bottom: 60px;
  max-width: 815px;
}
@media (max-width: 1600px) {
  .video-info-section-wrap h2 {
    font-size: 30px;
    max-width: 700px;
  }
}
@media (max-width: 800px) {
  .video-info-section-wrap h2 {
    font-size: 30px;
    margin-bottom: 30px;
  }
}
@media (max-width: 600px) {
  .video-info-section-wrap h2 {
    font-size: 23px;
  }
}
.video-info-section-wrap p {
  font-size: 22px;
  line-height: 140%;
  color: #BDBDBD;
  max-width: 757px;
  margin-bottom: 60px;
  margin-left: 21%;
}
@media (max-width: 1600px) {
  .video-info-section-wrap p {
    font-size: 18px;
    max-width: 640px;
  }
}
@media (max-width: 600px) {
  .video-info-section-wrap p {
    font-size: 15px;
    margin-bottom: 30px;
    margin-left: 0;
  }
}

.video-info-section-vid {
  width: 100%;
  position: relative;
  margin-bottom: 16px;
}

.video-info-section-vid::before {
  content: "";
  display: block;
  padding-bottom: 50%;
}
.video-info-section-vid iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.leads-section {
  width: 100%;
  position: relative;
  z-index: 2;
}

.leads-section-wrap {
  width: 100%;
}

.leads-section-item {
  width: 100%;
  padding: 100px 0;
  display: grid;
  grid-template-columns: 550px 1fr;
  gap: 100px;
  border-bottom: 1px solid #0066FF;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1600px) {
  .leads-section-item {
    padding: 60px 0;
    grid-template-columns: 450px 1fr;
  }
}
@media (max-width: 1350px) {
  .leads-section-item {
    grid-template-columns: 350px 1fr;
    gap: 50px;
  }
}
@media (max-width: 1023px) {
  .leads-section-item {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 50px 0;
  }
}
.leads-section-item:last-child {
  border-bottom: none;
}

.leads-section-item-left {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
@media (max-width: 1023px) {
  .leads-section-item-left {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.leads-section-item-left p {
  font-size: 14px;
  line-height: 140%;
  color: #BDBDBD;
  margin-top: 45px;
}
@media (max-width: 1023px) {
  .leads-section-item-left p {
    text-align: center;
  }
}
@media (max-width: 620px) {
  .leads-section-item-left p {
    margin-top: 10px;
  }
}

.leads-section-item-left-info {
  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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.leads-section-item-left-info h3 {
  font-weight: 300;
  font-size: 36px;
  line-height: 150%;
  color: #FFFFFF;
}
@media (max-width: 1600px) {
  .leads-section-item-left-info h3 {
    font-size: 28px;
  }
}
@media (max-width: 620px) {
  .leads-section-item-left-info h3 {
    font-size: 22px;
  }
}
.leads-section-item-left-info img {
  margin-bottom: 10px;
}
@media (max-width: 1600px) {
  .leads-section-item-left-info img {
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
    margin-bottom: 0;
  }
}

.leads-section-item-right p {
  font-size: 22px;
  line-height: 140%;
  color: #BDBDBD;
}
@media (max-width: 1600px) {
  .leads-section-item-right p {
    font-size: 18px;
  }
}
@media (max-width: 1023px) {
  .leads-section-item-right p {
    text-align: center;
  }
}
@media (max-width: 620px) {
  .leads-section-item-right p {
    font-size: 16px;
  }
}
.leads-section-item-right p span {
  color: #FFD53F;
}

.leads-section-item-right-last {
  max-width: 744px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
  margin-left: auto;
}
@media (max-width: 1600px) {
  .leads-section-item-right-last {
    max-width: 630px;
  }
}
@media (max-width: 1023px) {
  .leads-section-item-right-last {
    margin: 30px auto 0;
  }
}
@media (max-width: 620px) {
  .leads-section-item-right-last {
    grid-template-columns: 1fr;
  }
}

.leads-section-item-right-last-item {
  border: 1px solid #0066FF;
  border-radius: 20px;
  padding: 23px 40px 22px;
  margin-bottom: 17px;
}
.leads-section-item-right-last-item .title {
  font-size: 22px;
  line-height: 140%;
  color: #BDBDBD;
  display: block;
  margin-bottom: 20px;
  padding-bottom: 5px;
  max-width: 194px;
  border-bottom: 3px solid #0066FF;
}
@media (max-width: 1600px) {
  .leads-section-item-right-last-item .title {
    font-size: 18px;
  }
}
@media (max-width: 620px) {
  .leads-section-item-right-last-item .title {
    text-align: center;
    margin: 0 auto 20px;
  }
}
.leads-section-item-right-last-item p {
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  color: #BDBDBD;
}
@media (max-width: 1600px) {
  .leads-section-item-right-last-item p {
    font-size: 14px;
  }
}

.leads-section-item-right-last-item2 {
  border: 1px solid #0066FF;
  border-radius: 20px;
  padding: 23px 40px 22px;
}
.leads-section-item-right-last-item2 .title {
  font-size: 22px;
  line-height: 140%;
  color: #BDBDBD;
  display: block;
  margin-bottom: 20px;
  padding-bottom: 5px;
  max-width: 194px;
  border-bottom: 3px solid #0066FF;
}
@media (max-width: 1600px) {
  .leads-section-item-right-last-item2 .title {
    font-size: 18px;
  }
}
@media (max-width: 620px) {
  .leads-section-item-right-last-item2 .title {
    text-align: center;
    margin: 0 auto 20px;
  }
}
.leads-section-item-right-last-item2 p {
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  color: #BDBDBD;
  margin-bottom: 15px;
}
@media (max-width: 1600px) {
  .leads-section-item-right-last-item2 p {
    margin-bottom: 10px;
    font-size: 14px;
  }
}
.leads-section-item-right-last-item2 p:last-child {
  margin-bottom: 0;
}
.leads-section-item-right-last-item2 .win {
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  color: #E33FFF;
  margin-bottom: 15px;
  display: block;
  margin-bottom: 15px;
}
@media (max-width: 620px) {
  .leads-section-item-right-last-item2 .win {
    text-align: center;
  }
}

.leads-section-item-right-last-item3 {
  border: 1px solid #0066FF;
  border-radius: 20px;
  padding: 23px 40px 22px;
  height: 100%;
  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;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.leads-section-item-right-last-item3 .title {
  font-size: 22px;
  line-height: 140%;
  color: #BDBDBD;
  display: block;
  margin-bottom: 20px;
  padding-bottom: 5px;
  max-width: 194px;
  border-bottom: 3px solid #0066FF;
}
@media (max-width: 1600px) {
  .leads-section-item-right-last-item3 .title {
    font-size: 18px;
  }
}
@media (max-width: 620px) {
  .leads-section-item-right-last-item3 .title {
    text-align: center;
    margin: 0 auto 20px;
  }
}
.leads-section-item-right-last-item3 p {
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  color: #BDBDBD;
  margin-bottom: 15px;
}
@media (max-width: 1600px) {
  .leads-section-item-right-last-item3 p {
    margin-bottom: 10px;
    font-size: 14px;
  }
}
.leads-section-item-right-last-item3 p:last-child {
  margin-bottom: 0;
}
.leads-section-item-right-last-item3 .win {
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  color: #E33FFF;
  margin-bottom: 15px;
  display: block;
  margin-bottom: 15px;
}
@media (max-width: 620px) {
  .leads-section-item-right-last-item3 .win {
    text-align: center;
  }
}

.leads-section-item-right-last-item-wrap {
  max-width: 200px;
  margin: 0 auto;
}

.roadmap {
  width: 100%;
}

.roadmap-wrap {
  width: 100%;
  padding: 100px 0 0;
}
.roadmap-wrap h2 {
  font-weight: 300;
  font-size: 36px;
  line-height: 150%;
  color: #FFFFFF;
  margin-bottom: 30px;
  text-align: center;
}
@media (max-width: 800px) {
  .roadmap-wrap h2 {
    font-size: 30px;
    margin-bottom: 30px;
  }
}

.roadmap-items {
  width: 100%;
  display: grid;
  grid-template-columns: 372px 348px 320px auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media (max-width: 1300px) {
  .roadmap-items {
    grid-template-columns: 1fr 1fr;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 50px;
    margin-bottom: 80px;
  }
}
@media (max-width: 700px) {
  .roadmap-items {
    grid-template-columns: 1fr;
    padding-left: 50px;
    border-left: 3px solid #0066FF;
  }
}
@media (max-width: 420px) {
  .roadmap-items {
    padding-left: 25px;
  }
}

.roadmap-item:nth-child(1) {
  margin-bottom: -50px;
}
@media (max-width: 1300px) {
  .roadmap-item:nth-child(1) {
    margin: 0;
  }
}
.roadmap-item:nth-child(2) {
  margin-bottom: 70px;
}
@media (max-width: 1300px) {
  .roadmap-item:nth-child(2) {
    margin: 0;
  }
}
.roadmap-item:nth-child(3) {
  margin-bottom: -50px;
}
@media (max-width: 1300px) {
  .roadmap-item:nth-child(3) {
    margin: 0;
  }
}
.roadmap-item:nth-child(4) {
  margin-bottom: 70px;
}
@media (max-width: 1300px) {
  .roadmap-item:nth-child(4) {
    margin: 0;
  }
}
.roadmap-item h3 {
  font-size: 22px;
  line-height: 140%;
  color: #BDBDBD;
  margin-bottom: 30px;
}
@media (max-width: 1600px) {
  .roadmap-item h3 {
    font-size: 20px;
  }
}
@media (max-width: 700px) {
  .roadmap-item h3 {
    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-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    position: relative;
  }
  .roadmap-item h3::before {
    content: "";
    display: block;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    border: 5px solid #0066FF;
    margin-right: 15px;
  }
  .roadmap-item h3::after {
    content: "";
    display: block;
    position: absolute;
    height: 3px;
    background: #0066FF;
    width: 50px;
    right: 100%;
  }
}
@media (max-width: 700px) and (max-width: 420px) {
  .roadmap-item h3::after {
    width: 25px;
  }
}

.roadmap-item-list {
  list-style-type: none;
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  color: #BDBDBD;
  padding-left: 15px;
  border-left: 3px solid #0066FF;
}
@media (max-width: 1600px) {
  .roadmap-item-list {
    font-size: 14px;
  }
}
@media (max-width: 700px) {
  .roadmap-item-list {
    border-left: none;
    padding-left: 0;
  }
}
@media (max-width: 420px) {
  .roadmap-item-list {
    font-size: 14px;
  }
}
.roadmap-item-list li {
  margin-bottom: 16px;
}
@media (max-width: 420px) {
  .roadmap-item-list li {
    margin-bottom: 10px;
  }
}
.roadmap-item-list li:last-child {
  margin-bottom: 0;
}

.road-mab-bg {
  width: 100%;
}
@media (max-width: 1300px) {
  .road-mab-bg {
    display: none;
  }
}

.tokenomics {
  width: 100%;
}

.tokenomics-wrap {
  width: 100%;
  padding: 0 0 100px;
}
@media (max-width: 1600px) {
  .tokenomics-wrap {
    padding-bottom: 30px;
  }
}
@media (max-width: 740px) {
  .tokenomics-wrap {
    padding: 0;
  }
}

.tokenomics-top {
  width: 100%;
  display: grid;
  grid-template-columns: auto auto 534px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 108px;
}
@media (max-width: 1600px) {
  .tokenomics-top {
    grid-template-columns: auto auto 480px;
  }
}
@media (max-width: 1100px) {
  .tokenomics-top {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 50px;
  }
}
.tokenomics-top h2 {
  font-weight: 300;
  font-size: 36px;
  line-height: 150%;
  color: #FFFFFF;
}
@media (max-width: 1600px) {
  .tokenomics-top h2 {
    font-size: 30px;
  }
}
@media (max-width: 800px) {
  .tokenomics-top h2 {
    font-size: 30px;
  }
}
.tokenomics-top .sub {
  font-size: 22px;
  line-height: 140%;
  color: #BDBDBD;
  display: block;
  margin-top: 10px;
}
@media (max-width: 1600px) {
  .tokenomics-top .sub {
    font-size: 20px;
  }
}
.tokenomics-top .sub span {
  color: #FFD53F;
}

.tokenomics-top-list {
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  color: #BDBDBD;
  padding-top: 10px;
}
@media (max-width: 1600px) {
  .tokenomics-top-list {
    font-size: 14px;
  }
}
.tokenomics-top-list p {
  margin-bottom: 10px;
}

.tokenomics-graphic {
  width: 100%;
  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;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.tokenomics-graphic h2 {
  font-weight: 300;
  font-size: 30px;
  line-height: 150%;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 20px;
}
@media (max-width: 1600px) {
  .tokenomics-graphic h2 {
    font-size: 26px;
  }
}
@media (max-width: 800px) {
  .tokenomics-graphic h2 {
    font-size: 25px;
  }
}
.tokenomics-graphic .tokenomics-graphic-mob {
  display: none;
}
@media (max-width: 740px) {
  .tokenomics-graphic .tokenomics-graphic-mob {
    display: block;
  }
}
.tokenomics-graphic .tokenomics-graphic-desk {
  display: block;
}
@media (max-width: 1600px) {
  .tokenomics-graphic .tokenomics-graphic-desk {
    max-width: 83%;
    margin: 0 auto;
    margin-top: -3%;
  }
}
@media (max-width: 740px) {
  .tokenomics-graphic .tokenomics-graphic-desk {
    display: none;
  }
}
.tokenomics-graphic svg {
  max-width: 100%;
}
.tokenomics-graphic .hover-path1 {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.tokenomics-graphic .hover-path1:hover {
  -webkit-transform: translate(23px, -4px);
          transform: translate(23px, -4px);
}
.tokenomics-graphic .hover-path2 {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.tokenomics-graphic .hover-path2:hover {
  -webkit-transform: translate(0, -20px);
          transform: translate(0, -20px);
}
.tokenomics-graphic .hover-path3 {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.tokenomics-graphic .hover-path3:hover {
  -webkit-transform: translate(-1px, 20px);
          transform: translate(-1px, 20px);
}
.tokenomics-graphic .hover-path4 {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.tokenomics-graphic .hover-path4:hover {
  -webkit-transform: translate(-20px, -2px);
          transform: translate(-20px, -2px);
}
.tokenomics-graphic .hover-path5 {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.tokenomics-graphic .hover-path5:hover {
  -webkit-transform: translate(-14px, -18px);
          transform: translate(-14px, -18px);
}
.tokenomics-graphic .hover-path6 {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.tokenomics-graphic .hover-path6:hover {
  -webkit-transform: translate(-9px, -20px);
          transform: translate(-9px, -20px);
}

.team {
  width: 100%;
}

.team-wrap {
  width: 100%;
  padding: 100px 0;
}
@media (max-width: 1600px) {
  .team-wrap {
    padding: 60px 0;
  }
}
.team-wrap h2 {
  font-weight: 300;
  font-size: 36px;
  line-height: 150%;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 1600px) {
  .team-wrap h2 {
    font-size: 30px;
  }
}
@media (max-width: 800px) {
  .team-wrap h2 {
    font-size: 30px;
    margin-bottom: 30px;
  }
}

.team-items {
  width: 100%;
  display: grid;
  grid-template-columns: auto auto auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 100px;
}
@media (max-width: 1600px) {
  .team-items {
    gap: 80px;
  }
}
@media (max-width: 1023px) {
  .team-items {
    gap: 50px;
    grid-template-columns: 1fr;
  }
}

.team-item {
  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;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.team-item .name {
  font-weight: 600;
  font-size: 22px;
  line-height: 140%;
  text-align: center;
  color: #FFFFFF;
  display: block;
  margin-bottom: 5px;
}
@media (max-width: 1600px) {
  .team-item .name {
    font-size: 20px;
  }
}
.team-item .label {
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  color: #BDBDBD;
  display: block;
  margin-bottom: 20px;
}
@media (max-width: 1600px) {
  .team-item .label {
    font-size: 15px;
  }
}
.team-item img {
  margin-bottom: 10px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
}
@media (max-width: 1600px) {
  .team-item img {
    width: 200px;
    height: 200px;
  }
}
.team-item a {
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  color: #BDBDBD;
  text-align: center;
}
@media (max-width: 1600px) {
  .team-item a {
    font-size: 14px;
  }
}

.why-moonfling {
  width: 100%;
}

.why-moonfling-wrap {
  width: 100%;
  padding: 100px 0;
}
@media (max-width: 1600px) {
  .why-moonfling-wrap {
    padding-bottom: 50px;
  }
}
@media (max-width: 800px) {
  .why-moonfling-wrap {
    padding: 50px 0;
  }
}
.why-moonfling-wrap h2 {
  font-weight: 300;
  font-size: 36px;
  line-height: 150%;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 70px;
}
@media (max-width: 1600px) {
  .why-moonfling-wrap h2 {
    font-size: 30px;
  }
}
@media (max-width: 800px) {
  .why-moonfling-wrap h2 {
    font-size: 30px;
    margin-bottom: 30px;
  }
}

.why-moonfling-text {
  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-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin-bottom: 70px;
}
@media (max-width: 1600px) {
  .why-moonfling-text {
    margin-bottom: 50px;
  }
}
@media (max-width: 1400px) {
  .why-moonfling-text {
    margin-bottom: 40px;
  }
}
.why-moonfling-text img {
  width: 60px;
  margin-right: 10px;
}
@media (max-width: 1600px) {
  .why-moonfling-text img {
    width: 46px;
  }
}
@media (max-width: 480px) {
  .why-moonfling-text img {
    display: none;
  }
}
.why-moonfling-text p {
  font-size: 22px;
  line-height: 140%;
  color: #BDBDBD;
}
@media (max-width: 1600px) {
  .why-moonfling-text p {
    font-size: 18px;
  }
}
@media (max-width: 800px) {
  .why-moonfling-text p {
    font-size: 16px;
  }
}

.why-moonfling-items {
  width: 100%;
  max-width: 1356px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
}
@media (max-width: 1600px) {
  .why-moonfling-items {
    max-width: 1200px;
    gap: 60px;
  }
}
@media (max-width: 1400px) {
  .why-moonfling-items {
    gap: 50px;
  }
}
@media (max-width: 900px) {
  .why-moonfling-items {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.why-moonfling-items-left {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.why-moonfling-item {
  border: 1px solid #0066FF;
  border-radius: 20px;
  padding: 22px;
  width: 100%;
  margin-bottom: 26px;
  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-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
@media (max-width: 480px) {
  .why-moonfling-item {
    margin-bottom: 20px;
    padding: 15px;
  }
}
@media (max-width: 400px) {
  .why-moonfling-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.why-moonfling-item img {
  margin-right: 15px;
}
@media (max-width: 1600px) {
  .why-moonfling-item img {
    width: 27px;
  }
}
@media (max-width: 400px) {
  .why-moonfling-item img {
    margin-bottom: 10px;
  }
}
.why-moonfling-item p {
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  color: #BDBDBD;
}
@media (max-width: 1600px) {
  .why-moonfling-item p {
    font-size: 13px;
  }
}
.why-moonfling-item:last-child {
  margin-bottom: 0;
}
@media (max-width: 900px) {
  .why-moonfling-item:last-child {
    margin-bottom: 26px;
  }
}
@media (max-width: 480px) {
  .why-moonfling-item:last-child {
    margin-bottom: 20px;
  }
}

.why-moonfling-items-right {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.join-us {
  width: 100%;
}

.join-us-wrap {
  width: 100%;
  padding: 100px 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-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
@media (max-width: 1600px) {
  .join-us-wrap {
    padding: 50px 0 110px;
  }
}
@media (max-width: 1200px) {
  .join-us-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media (max-width: 800px) {
  .join-us-wrap {
    padding: 50px 0;
  }
}

@media (max-width: 1200px) {
  .join-us-left {
    margin-bottom: 40px;
  }
}
.join-us-left h2 {
  font-weight: 300;
  font-size: 36px;
  line-height: 150%;
  color: #FFFFFF;
  margin-bottom: 40px;
}
@media (max-width: 1600px) {
  .join-us-left h2 {
    font-size: 30px;
  }
}
@media (max-width: 800px) {
  .join-us-left h2 {
    font-size: 30px;
    margin-bottom: 30px;
  }
}
@media (max-width: 700px) {
  .join-us-left h2 {
    margin-bottom: 20px;
  }
}
.join-us-left p {
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  color: #BDBDBD;
  max-width: 620px;
}
@media (max-width: 1600px) {
  .join-us-left p {
    font-size: 14px;
  }
}

.join-us-link {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
@media (max-width: 760px) {
  .join-us-link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
}
.join-us-link a {
  width: 210px;
  height: 50px;
  background: linear-gradient(233.33deg, #0066FF 19.52%, rgba(0, 102, 255, 0.3) 88.68%);
  border-radius: 100px;
  position: relative;
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  color: #FFFFFF;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin-left: 20px;
}
@media (max-width: 1600px) {
  .join-us-link a {
    width: 180px;
    height: 40px;
    font-size: 14px;
  }
}
@media (max-width: 1200px) {
  .join-us-link a {
    margin-right: 20px;
    margin-left: 0;
  }
}
@media (max-width: 760px) {
  .join-us-link a {
    margin-right: 0;
    width: 100%;
    margin-bottom: 10px;
  }
}
.join-us-link a::before, .join-us-link a::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 100px;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.join-us-link a::before {
  background: linear-gradient(214.36deg, #00FF94 12.1%, rgba(0, 102, 255, 0.3) 90.75%);
}
.join-us-link a::after {
  background: linear-gradient(233.33deg, #00D1FF 19.52%, rgba(0, 102, 255, 0.3) 88.68%);
}
.join-us-link a:hover::before {
  opacity: 1;
}
.join-us-link a:active::after {
  opacity: 1;
}
.join-us-link a span {
  position: relative;
  z-index: 3;
}

.footer {
  width: 100%;
  background: linear-gradient(89.87deg, #0066FF -0.49%, rgba(0, 0, 0, 0) 99.89%);
}

.footer-wrap {
  width: 100%;
  padding: 64px 0 30px;
  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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.footer-logo {
  display: block;
  margin-bottom: 40px;
}
@media (max-width: 1600px) {
  .footer-logo {
    max-width: 230px;
    margin-bottom: 27px;
  }
}
.footer-logo img {
  max-width: 100%;
}

.footer-list {
  list-style-type: none;
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  color: #F2F2F2;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin-bottom: 20px;
}
@media (max-width: 1600px) {
  .footer-list {
    font-size: 14px;
  }
}
@media (max-width: 760px) {
  .footer-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer-list li {
  margin: 0 20px;
}
@media (max-width: 760px) {
  .footer-list li {
    margin: 0 0 10px;
  }
}

.footer-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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  position: relative;
  width: 100%;
}
@media (max-width: 760px) {
  .footer-bottom {
    padding-bottom: 40px;
  }
}
@media (max-width: 760px) {
  .footer-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer-bottom a {
  font-size: 11px;
  line-height: 140%;
  color: #FFFFFF;
  display: block;
  margin: 0 20px;
}
@media (max-width: 760px) {
  .footer-bottom a {
    margin-bottom: 10px;
  }
}
.footer-bottom .info {
  font-size: 11px;
  line-height: 140%;
  color: #FFFFFF;
  position: absolute;
  left: 0;
}
@media (max-width: 760px) {
  .footer-bottom .info {
    display: block;
    left: 50%;
    bottom: 0;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}/*# sourceMappingURL=style.css.map */