body {
  font-family: "Orbitron", sans-serif;
  font-family: "Inter", sans-serif;
}
.container {
  margin: 0 auto;
  max-width: 1110px;
}
@media (max-width: 960px) {
  .container {
    max-width: 100%;
    width: 100%;
    padding-left: 8px;
    padding-right: 8px;
  }
}
.container::before {
  content: none;
}
.container::after {
  content: none;
}
.hero {
  background-image: url(../img/hero-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 960px) {
  .hero {
    background-image: url(../img/hero-bg-mob.png);
    background-position: top;
    background-repeat: no-repeat;
    background-size: contain;
    background-color: #101923;
  }
}
.hero .container {
  padding-top: 40px;
  padding-bottom: 80px;
}
@media (max-width: 960px) {
  .hero .container {
    padding-top: 18px;
    padding-bottom: 50px;
  }
}
.hero .logo-wrapper {
  max-width: 325px;
}
@media (max-width: 960px) {
  .hero .logo-wrapper {
    max-width: 175px;
    margin: 0 auto;
  }
}
.hero .logo-wrapper img {
  width: 100%;
}
.hero .hero-title {
  font-family: "Inter";
  font-style: normal;
  font-weight: 900;
  font-size: 42px;
  line-height: 51px;
  color: white;
  margin-top: 24px;
  margin-bottom: 21px;
  text-transform: uppercase;
}
@media (max-width: 960px) {
  .hero .hero-title {
    font-size: 16px;
    line-height: 19px;
    margin-top: 20px;
    margin-bottom: 6px;
    text-align: center;
    padding: 0 25px;
  }
}
.hero .hero-subtitle {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 23px;
  line-height: 28px;
  color: white;
  margin-top: 0px;
  margin-bottom: 8px;
}
@media (max-width: 960px) {
  .hero .hero-subtitle {
    font-size: 14px;
    line-height: 17px;
    margin-bottom: 5px;
    text-align: center;
    padding: 0 20px;
  }
}
.hero .before-video-text {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 31px;
  line-height: 38px;
  color: white;
  margin-top: 0;
  margin-bottom: 8px;
}
@media (max-width: 960px) {
  .hero .before-video-text {
    font-size: 19px;
    line-height: 23px;
    margin-bottom: 17px;
    text-align: center;
  }
}
.hero .video-form-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 960px) {
  .hero .video-form-wrapper {
    flex-direction: column;
  }
}
.hero .video-form-wrapper .video {
  width: calc(100% - 420px);
}
.hero .video-form-wrapper .form-widget {
  width: 360px;
}
@media (max-width: 960px) {
  .hero .video-form-wrapper .video {
    width: 100%;
    margin-bottom: 30px;
  }
  .hero .video-form-wrapper .form-widget {
    width: 100%;
  }
}
/* challanges */

.challenges {
  background-image: url(../img/challenges-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media (max-width: 960px) {
  .challenges {
    background-position: bottom;
  }
}
.challenges .container {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media (max-width: 960px) {
  .challenges .container {
    padding-top: 0;
    padding-bottom: 80px;
  }
}
.challenges .container .challenges-title {
  font-family: "Orbitron";
  font-style: normal;
  font-weight: 900;
  font-size: 36px;
  line-height: 45px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 50px;
  text-align: center;
  color: #1a92f8;
}
@media (max-width: 960px) {
  .challenges .container .challenges-title {
    font-size: 23px;
    line-height: 29px;
    margin-bottom: 25px;
  }
}
.challenges .challenges-cards-wrapper {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
@media (max-width: 960px) {
  .challenges .challenges-cards-wrapper {
    flex-direction: column;
  }
}
.challenges .challenges-cards-wrapper .card {
  width: calc((100% - 90px) / 4);
  background: linear-gradient(
    219.29deg,
    #1d3d67 0.62%,
    #1b293c 37.56%,
    #1b293b 81.09%
  );
  border: 1px solid #33a9ff;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.5s ease;
}
@media (max-width: 960px) {
  .challenges .challenges-cards-wrapper .card {
    width: 100%;
    margin-bottom: 15px;
    min-height: 240px;
    padding: 0 10px;
  }
}
.challenges .challenges-cards-wrapper .card:hover {
  background: #007ae2;
  transition: transform 0.5s ease;
  transform: translateY(-15px);
}
.challenges .challenges-cards-wrapper .card img {
  margin-top: 15px;
  margin-bottom: 10px;
}
.challenges .challenges-cards-wrapper .card .card-text {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #ffffff;
  margin: 0 8px 10px;
}

/* solution */

.solution {
  background-image: url(../img/solution-bg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.solution .container {
  padding-top: 40px;
  padding-bottom: 160px;
  text-align: center;
  position: relative;
}
@media (max-width: 960px) {
  .solution .container {
    padding-top: 30px;
    padding-bottom: 155px;
  }
}
.solution .solution-title {
  font-family: "Orbitron";
  font-style: normal;
  font-weight: 800;
  font-size: 36px;
  line-height: 45px;
  text-align: center;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 30px;
  color: #ffffff;
}
@media (max-width: 960px) {
  .solution .solution-title {
    font-size: 23px;
    line-height: 29px;
  }
}
.solution .solution-subtitle {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 23px;
  line-height: 28px;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  color: #ffffff;
  max-width: 985px;
  margin: 0 auto;
}
@media (max-width: 960px) {
  .solution .solution-subtitle {
    font-size: 16px;
    line-height: 19px;
  }
}
.solution .solution-banner {
  display: flex;
  align-items: stretch;
  justify-content: center;
  position: absolute;
  bottom: -50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
@media (max-width: 960px) {
  .solution .solution-banner {
    flex-direction: column;
    bottom: -784px;
    width: calc(100% - 16px);
  }
}
.solution .solution-banner .solution-banner-block {
  width: 25%;
}
@media (max-width: 960px) {
  .solution .solution-banner .solution-banner-block {
    width: 100%;
  }
}
.solution .solution-banner .solution-banner-block.first {
  background: #ffffff;
  border-radius: 30px 0px 0px 30px;
}
@media (max-width: 960px) {
  .solution .solution-banner .solution-banner-block.first {
    border-radius: 30px 30px 0px 0;
  }
}
.solution .solution-banner .solution-banner-block.first .block-title {
  font-family: "Inter";
  font-style: normal;
  font-weight: 800;
  font-size: 28px;
  line-height: 34px;
  text-transform: uppercase;
  text-align: left;
  padding: 31px 37px 23px 30px;
  color: #156dd3;
}
@media (max-width: 960px) {
  .solution .solution-banner .solution-banner-block.first .block-title {
    font-size: 20px;
    line-height: 24px;
    padding: 40px 23px 30px;
    text-align: center;
  }
}
.solution .solution-banner .solution-banner-block.second,
.solution .solution-banner .solution-banner-block.third,
.solution .solution-banner .solution-banner-block.fourth {
  background: #3e92f3;
  padding: 45px 0px 0;
  position: relative;
}
@media (max-width: 960px) {
  .solution .solution-banner .solution-banner-block.second,
  .solution .solution-banner .solution-banner-block.third,
  .solution .solution-banner .solution-banner-block.fourth {
    padding: 20px 13px 0;
    min-height: 160px;
  }
}
.solution .solution-banner .solution-banner-block.third {
  background: #2480eb;
}
.solution .solution-banner .solution-banner-block.fourth {
  background: #ffffff;
  background: #156dd3;
  border-radius: 0px 30px 30px 0px;
}
@media (max-width: 960px) {
  .solution .solution-banner .solution-banner-block.fourth {
    border-radius: 0px 0px 30px 30px;
  }
}
.solution .solution-banner .solution-banner-block.second .number,
.solution .solution-banner .solution-banner-block.third .number,
.solution .solution-banner .solution-banner-block.fourth .number {
  position: absolute;
  top: 10px;
  left: 15px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 31px;
  line-height: 38px;
  text-align: center;
  color: #ffffff;
}
.solution .solution-banner .solution-banner-block.second .block-title,
.solution .solution-banner .solution-banner-block.third .block-title,
.solution .solution-banner .solution-banner-block.fourth .block-title {
  font-family: "Inter";
  font-style: normal;
  font-weight: 900;
  font-size: 30.11px;
  line-height: 36px;
  text-align: center;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 8px;
  color: #ffffff;
}
.solution .solution-banner .solution-banner-block.second .block-text,
.solution .solution-banner .solution-banner-block.third .block-text,
.solution .solution-banner .solution-banner-block.fourth .block-text {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 17px;
  line-height: 21px;
  text-align: center;
  color: #ffffff;
  text-align: center;
}

/* reviews */

.reviews {
  background-image: url(../img/reviews-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 960px) {
  .reviews {
    background-image: url(../img/reviews-bg-mob.png);
    background-position: bottom left;
    background-size: contain;
    background-repeat: no-repeat;
    background-color: #101923;
  }
}
.reviews .container {
  padding-top: 190px;
  padding-bottom: 105px;
}
@media (max-width: 960px) {
  .reviews .container {
    padding-top: 520px;
    padding-bottom: 35px;
  }
}
.reviews .container .top-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 90px;
}
@media (max-width: 960px) {
  .reviews .container .top-wrapper {
    padding-bottom: 50px;
    flex-direction: column;
  }
}
.reviews .container .top-wrapper .left-col {
  width: 440px;
}
@media (max-width: 960px) {
  .reviews .container .top-wrapper .left-col {
    width: 100%;
  }
}
.reviews .container .top-wrapper .left-col .top-wrapper-title {
  font-family: "Orbitron";
  font-style: normal;
  font-weight: 900;
  font-size: 34px;
  line-height: 43px;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 40px;
  color: #1a92f8;
}
@media (max-width: 960px) {
  .reviews .container .top-wrapper .left-col .top-wrapper-title {
    font-size: 23px;
    line-height: 29px;
    text-align: center;
  }
}
.reviews .container .top-wrapper .left-col .link-btn {
  display: block;
  background: linear-gradient(90deg, #3e3aff 0%, #9039ff 46.67%, #ee37ff 100%);
  border-radius: 12px;
  text-align: center;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 800;
  font-size: 29px;
  line-height: 120%;
  /* identical to box height, or 35px */
  padding: 10px;
  text-align: center;
  text-transform: uppercase;
  width: 330px;
  color: #ffffff;
}
.reviews .container .top-wrapper .left-col .link-btn:hover {
  text-decoration: none;
  background: linear-gradient(90deg, #EE37FF 0%, #9039FF 46.67%, #3E3AFF 100%);
}
@media (max-width: 960px) {
  .reviews .container .top-wrapper .left-col .link-btn {
    display: none;
  }
}
.reviews .container .top-wrapper .right-col {
  width: calc(100% - 440px - 30px);
}
@media (max-width: 960px) {
  .reviews .container .top-wrapper .right-col {
    width: 100%;
  }
}
.reviews .container .top-wrapper .right-col .right-col-text {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 21px;
  margin-top: 0;
  margin-bottom: 0;
  color: #ffffff;
}
.reviews .container .top-wrapper .right-col .link-btn.mobile {
  display: none;
}
@media (max-width: 960px) {
  .reviews .container .top-wrapper .right-col .link-btn.mobile {
    display: block;
    background: linear-gradient(
      90deg,
      #3e3aff 0%,
      #9039ff 46.67%,
      #ee37ff 100%
    );
    border-radius: 12px;
    text-align: center;
    font-family: "Roboto";
    font-style: normal;
    font-weight: 800;
    font-size: 29px;
    line-height: 120%;
    /* identical to box height, or 35px */
    padding: 10px;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
    color: #ffffff;
    margin-top: 35px;
  }
}
.reviews-title {
  font-family: "Orbitron";
  font-style: normal;
  font-weight: 900;
  font-size: 34px;
  line-height: 43px;
  /* identical to box height */
  margin-bottom: 50px;
  text-align: center;
  text-transform: uppercase;
  margin-top: 0;
  color: #1a92f8;
}
@media (max-width: 960px) {
  .reviews-title {
    font-size: 23px;
    line-height: 29px;
    margin-bottom: 25px;
  }
}
.swiper-slide {
  background: #1b293b;
  border: 1px solid #33a9ff;
  border-radius: 15px;
  padding: 13px;
  padding-bottom: 50px;
  height: auto;
  position: relative;
}
@media (max-width: 960px) {
  .swiper {
    padding-bottom: 50px;
  }
  .swiper-slide {
    padding: 20px;
    padding-bottom: 50px;
  }
}
.embedly-custom {
  border-radius: 15px;
}
.swiper-slide:hover {
  background: #263b57;
  border: 2px solid #33a9ff;
  border-radius: 15px;
  padding: 12px;
  padding-bottom: 49px;
}

@media (max-width: 960px) {
  .swiper-slide:hover {
    background: #263b57;
    border: 1px solid #33a9ff;
    border-radius: 15px;
    padding: 20px;
  }
}
.swiper-slide > img {
  margin-bottom: 13px;
}
@media (max-width: 960px) {
  .swiper-slide > img {
    margin-bottom: 20px;
  }
}
.swiper-slide .slide-text {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 18px;
  margin-top: 0;
  margin-bottom: 15px;
  color: #ffffff;
}
@media (max-width: 960px) {
  .swiper-pagination-bullet {
    border: 1px solid white;
  }
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: white;
  }
  .swiper-slide .slide-text {
    margin-bottom: 25px;
  }
}
.swiper-slide .author-block {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  bottom: 7px;
}
.swiper-slide .author-block img {
  margin-right: 15px;
}
.swiper-slide .author-block .author-name {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  margin: 0;
  color: #ffffff;
}
.swiper-autoheight .swiper-wrapper {
  align-items: stretch;
}

/* advisors */
.advisors {
  background-image: url(../img/advisors-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.advisors .container {
  padding-top: 45px;
  padding-bottom: 75px;
  text-align: center;
  
}
@media (max-width: 960px) {
  .advisors .container {
    padding-top: 30px;
    padding-bottom: 40px;
  }
}
.advisors .container .advisors-title {
  font-family: "Orbitron";
  font-style: normal;
  font-weight: 900;
  font-size: 40px;
  line-height: 50px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 50px;
  color: #1a92f8;
}
@media (max-width: 960px) {
  .advisors .container .advisors-title {
    font-size: 23px;
    line-height: 29px;
    margin-bottom: 25px;
  }
}
.advisors .container .advisors-wrapper {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
@media (max-width: 960px) {
  .advisors .container .advisors-wrapper {
    flex-direction: column;
  }
}
.advisors .container .advisors-card {
  width: calc((100% - 30px) / 2);
  background: linear-gradient(
    114.77deg,
    rgba(255, 255, 255, 0.37) -5.92%,
    rgba(255, 255, 255, 0.2886) 73.64%,
    rgba(255, 255, 255, 0.074) 106.73%
  );
  backdrop-filter: blur(10px);
  /* Note: backdrop-filter has minimal browser support */
  border-radius: 10px;
  padding: 25px 30px;
}
@media (max-width: 960px) {
  .advisors .container .advisors-card {
    width: 100%;
    margin-bottom: 20px;
  }
}
.advisors .container .advisors-card .author-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 20px;
}
.advisors .container .advisors-card .author-wrapper img {
  margin-right: 24px;
}
@media (max-width: 960px) {
  .advisors .container .advisors-card .author-wrapper img {
    margin-right: 10px;
  }
}
.advisors .container .advisors-card .author-wrapper .author-info {
  text-align: left;
}
.advisors .container .advisors-card .author-wrapper .author-info .author-name {
  font-family: "Inter";
  font-style: normal;
  font-weight: 800;
  font-size: 30px;
  line-height: 36px;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 13px;
  color: #ffffff;
}
@media (max-width: 960px) {
  .advisors .container .advisors-card .author-wrapper .author-info .author-name {
    font-size: 22px;
    line-height: 27px;
    margin-bottom: 5px;
  }
}
.advisors
  .container
  .advisors-card
  .author-wrapper
  .author-info
  .author-position {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 15px;
  line-height: 18px;
  display: flex;
  align-items: center;
  margin: 0;
  color: #ffffff;
}
@media (max-width: 960px) {
  .advisors
  .container
  .advisors-card
  .author-wrapper
  .author-info
  .author-position {
    font-size: 14px;
    line-height: 17px;
  }
}
.advisors .container .advisors-card .advisors-text {
  font-family: "Inter";
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  text-align: left;
  color: #ffffff;
}
@media (max-width: 960px) {
  .advisors .container .advisors-card .advisors-text {
    font-size: 15px;
    line-height: 18px;
  }
}
/* partners */

.partners {
  background-color: #101923;
  padding: 90px 0;
 
}
@media (max-width: 960px) {
  .partners {
    padding: 50px 0;
  }
}
.partners .container {
  width: 1110px;
  background-image: url(../img/partners-bg.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  padding: 24px 0 18px;
}
@media (max-width: 960px) {
  .partners .container {
    background-image: url(../img/partners-bg-mobile.png);
    padding: 20px 12px;
    background-size: cover;
    width: 100%;
    padding-right: 8px;
    padding-left: 8px;
  }
  #footer .row {
    margin: 0;
  }
}

.partners .container .partners-title {
  margin-bottom: 23px;
  margin-top: 0;
  font-family: "Orbitron";
  font-style: normal;
  font-weight: 900;
  font-size: 34px;
  line-height: 43px;
  /* identical to box height */
  text-align: center;
  text-transform: uppercase;
  color: #1a92f8;
}
@media (max-width: 960px) {
  .partners .container .partners-title {
    font-size: 23px;
    line-height: 29px;
  }
}
.partners .container .partners-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(188px * 3 + 124px);
  margin: 0 auto;
}
@media (max-width: 960px) {
  .partners .container .partners-wrapper {
    width: 100%;
  }
}
.partners .container .partners-wrapper img {
  width: calc((100% - 124px) / 3);
}
@media (max-width: 960px) {
  .partners .container .partners-wrapper img {
    width: calc((100% - 8px) / 3);
  }
}
