@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
  -webkit-text-size-adjust: none;
     -moz-text-size-adjust: none;
          text-size-adjust: none;
}

body,
html {
  width: 100%;
  margin: 0 auto;
  min-width: 333px;
  background: #0d0e12;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  font-family: "Raleway", sans-serif;
}

button {
  cursor: pointer;
}

.main-container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  position: relative;
}

.section-title {
  color: #FFF;
  text-align: center;
  font-variant-numeric: lining-nums proportional-nums;
  font-family: "Raleway", sans-serif;
  font-size: 44px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  /* 61.6px */
}
@media (max-width: 480px) {
  .section-title {
    font-size: 28px;
  }
}
.section-title span {
  color: #5A8AD9;
  font-variant-numeric: lining-nums proportional-nums;
  font-family: "Raleway", sans-serif;
  font-size: 44px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
}
@media (max-width: 480px) {
  .section-title span {
    font-size: 32px;
  }
}

.nav {
  position: absolute;
  height: 81px;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  border-bottom: 1px solid #1C2134;
  background: rgba(17, 22, 32, 0.75);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  font-family: "Raleway", sans-serif;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.nav > .nav-header {
  display: none;
}

.nav > .nav-header > .nav-title {
  display: inline-block;
  font-size: 22px;
  color: #fff;
  padding: 10px 10px 10px 10px;
}

.nav > .nav-btn {
  display: none;
}

.nav > .nav-links {
  display: inline;
  float: right;
  font-size: 18px;
  margin: 0;
}

.nav > .nav-links > a {
  display: inline-block;
  padding: 0 10px;
  color: #B5AEAE;
  font-family: "Raleway", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* 21.6px */
  letter-spacing: 0.258px;
  transition: 0.3s ease-in-out;
}

.nav > .nav-links > a:hover {
  color: #3472D9;
  font-weight: 700;
}

.nav > #nav-check {
  display: none;
}

.nav-logo-container {
  display: flex;
  gap: 10px;
  align-items: center;
}
.nav-logo-container img {
  width: 47px;
  height: 49px;
}

.nav-logo {
  margin: 0;
}

.nav-logo-container h3 {
  color: #DDE1E9;
  text-align: center;
  font-variant-numeric: lining-nums proportional-nums;
  font-family: "Raleway", sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  /* 42px */
}
.nav-logo-container h3 span {
  color: #3472D9;
  font-variant-numeric: lining-nums proportional-nums;
  font-family: "Raleway", sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
}

.nav-links .btn-container {
  display: none;
}

.btn-container {
  margin: 0;
}

.btn-container button {
  background-color: #3472D9;
  border: none;
  border-radius: 8px;
  color: white;
  padding: 12px 49px;
  font-family: "Raleway", sans-serif;
  font-size: 18px;
  font-weight: 600;
  transition: 0.4s;
  max-width: 187px;
}

.btn-container button:hover {
  background: linear-gradient(90deg, rgb(33, 41, 99) 0%, rgb(59, 67, 129) 100%);
  font-weight: 700;
}

@media (max-width: 1042px) {
  .nav > .nav-btn {
    display: inline-block;
    position: absolute;
    right: 17px;
    top: 17px;
  }
  .nav > .nav-btn > label {
    display: inline-block;
    width: 50px;
    height: 50px;
    padding: 13px;
  }
  .nav > .nav-btn > label > span {
    display: block;
    width: 25px;
    height: 10px;
    border-top: 2px solid #3472D9;
  }
  .nav > .nav-links {
    position: absolute;
    display: block;
    width: 100%;
    background-color: #121620;
    height: 0px;
    transition: all 0.3s ease-in;
    overflow-y: hidden;
    top: 86px;
    left: 0px;
    z-index: 100;
  }
  .nav > .nav-links > a {
    display: block;
    width: 100%;
    padding: 20px 50px;
  }
  .nav > #nav-check:not(:checked) ~ .nav-links {
    height: 0px;
  }
  .nav > #nav-check:checked ~ .nav-links {
    height: calc(100vh - 50px);
    overflow-y: auto;
  }
  .btn-container {
    margin-right: 80px;
  }
  .btn-container button {
    background-color: #3472D9;
    border: none;
    border-radius: 8px;
    color: white;
    padding: 8px 35px;
    font-family: "Raleway", sans-serif;
    font-size: 16px;
    transition: 0.4s;
  }
}
@media (max-width: 481px) {
  .nav {
    height: 65px;
  }
  .nav a {
    margin: 0;
  }
  .btn-container {
    display: none;
  }
  .nav > .nav-btn {
    right: 0;
    top: 8px;
  }
  .nav > .nav-btn > label > span {
    width: 21px;
    height: 7px;
  }
  .nav > .nav-links {
    top: 65px;
  }
  .nav > .nav-links > a {
    font-size: 14px;
    padding: 17px 50px;
  }
  .nav-links .btn-container {
    display: block;
    padding: 20px 50px;
  }
  .nav-logo-container h3 {
    font-size: 22px;
  }
  .nav-logo-container h3 span {
    font-size: 22px;
  }
  .nav-logo-container img {
    width: 33px;
    height: auto;
  }
}
.hero {
  position: relative;
  background: #151921;
  height: 100vh;
  padding-top: 81px;
  overflow: hidden;
}
@media (max-width: 1100px) {
  .hero {
    height: auto;
  }
}
@media (max-width: 480px) {
  .hero {
    padding-top: 65px;
  }
}
@media (min-height: 1000px) {
  .hero .hero-right img {
    max-width: none !important;
    width: 100% !important;
    top: 102px !important;
    left: 600px !important;
    bottom: 0;
    right: 0;
  }
}

.hero-inner {
  width: 100%;
  background-image: url("../images/banner.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 100%;
}
.hero-inner .hero-content {
  height: 100%;
  display: flex;
  justify-content: left;
  align-items: center;
  position: relative;
}
@media (max-width: 1100px) {
  .hero-inner .hero-content {
    padding-top: 100px;
  }
}
@media (max-width: 860px) {
  .hero-inner .hero-content {
    flex-direction: column;
    width: 100%;
    padding-top: 50px;
  }
}
.hero-inner .hero-content .hero-left {
  width: 50%;
  max-width: 549px;
  display: flex;
  flex-direction: column;
  gap: 130px;
  margin: 0;
}
@media (max-width: 1100px) {
  .hero-inner .hero-content .hero-left {
    width: 40%;
  }
}
@media (max-width: 860px) {
  .hero-inner .hero-content .hero-left {
    width: 100%;
    max-width: none;
    gap: 50px;
  }
}
.hero-inner .hero-content .hero-left .left-top {
  width: 100%;
}
.hero-inner .hero-content .hero-left .left-top .heading {
  color: #F0F2F5;
  font-variant-numeric: lining-nums proportional-nums;
  font-family: "Raleway", sans-serif;
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: 115%;
  /* 69px */
  margin-bottom: 24px;
}
@media (max-width: 980px) {
  .hero-inner .hero-content .hero-left .left-top .heading {
    font-size: 50px;
  }
}
@media (max-width: 550px) {
  .hero-inner .hero-content .hero-left .left-top .heading {
    font-size: 40px;
  }
}
.hero-inner .hero-content .hero-left .left-top .sub-text {
  color: #5A8AD9;
  font-family: "Raleway", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  /* 24px */
}
@media (max-width: 550px) {
  .hero-inner .hero-content .hero-left .left-top .sub-text {
    font-size: 14px;
  }
}
.hero-inner .hero-content .hero-left .left-bottom {
  width: 100%;
  margin-bottom: 20px;
}
.hero-inner .hero-content .hero-left .left-bottom .download-text {
  color: #C0C5CE;
  font-family: "Raleway", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  /* 24px */
  margin-bottom: 14px;
}
@media (max-width: 550px) {
  .hero-inner .hero-content .hero-left .left-bottom .download-text {
    font-size: 14px;
  }
}
.hero-inner .hero-content .hero-left .left-bottom .badges {
  display: flex;
  gap: 15px;
}
.hero-inner .hero-content .hero-left .left-bottom .badges .android {
  width: 172px;
  margin: 0;
}
@media (max-width: 550px) {
  .hero-inner .hero-content .hero-left .left-bottom .badges .android {
    width: 100px;
    height: auto;
  }
}
.hero-inner .hero-content .hero-left .left-bottom .badges .ios {
  width: 152px;
  margin: 0;
}
@media (max-width: 550px) {
  .hero-inner .hero-content .hero-left .left-bottom .badges .ios {
    width: 100px;
    height: auto;
  }
}
.hero-inner .hero-content .hero-right {
  width: 50%;
}
.hero-inner .hero-content .hero-right img {
  width: 50%;
  max-width: 670px;
  height: auto;
  position: absolute;
  bottom: -90px;
  right: -30px;
}
@media (max-width: 1100px) {
  .hero-inner .hero-content .hero-right img {
    width: auto;
    bottom: -133px;
    right: -110px;
  }
}
@media (max-width: 980px) {
  .hero-inner .hero-content .hero-right img {
    bottom: -133px;
    right: -170px;
  }
}
@media (max-width: 860px) {
  .hero-inner .hero-content .hero-right img {
    display: none;
  }
}
.hero-inner .hero-content .hero-right-mob {
  display: none;
}
.hero-inner .hero-content .hero-right-mob img {
  width: 100%;
}
@media (max-width: 860px) {
  .hero-inner .hero-content .hero-right-mob {
    display: block;
  }
}

.what-can-do {
  background: #12151F;
  padding: 100px 0;
}
@media (max-width: 480px) {
  .what-can-do {
    padding: 50px 0;
  }
}
.what-can-do .secondary-container {
  padding-top: 65px;
  max-width: 1028px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 100px;
}
.what-can-do .secondary-container .item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 138px;
}
@media (max-width: 1048px) {
  .what-can-do .secondary-container .item {
    gap: 70px;
  }
}
@media (max-width: 860px) {
  .what-can-do .secondary-container .item {
    flex-direction: column;
    gap: 30px;
  }
}
@media (max-width: 860px) {
  .what-can-do .secondary-container .item .left {
    text-align: center;
  }
}
.what-can-do .secondary-container .item .left h4 {
  color: #E5E5E5;
  font-variant-numeric: lining-nums proportional-nums;
  font-family: "Raleway", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  margin-bottom: 24px;
  /* 44.8px */
}
@media (max-width: 480px) {
  .what-can-do .secondary-container .item .left h4 {
    font-size: 20px;
    margin-bottom: 5px;
  }
}
.what-can-do .secondary-container .item .left p {
  color: #8C8C8C;
  font-family: "Raleway", sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  /* 30.8px */
  letter-spacing: 0.258px;
}
@media (max-width: 480px) {
  .what-can-do .secondary-container .item .left p {
    font-size: 14px;
  }
}
.what-can-do .secondary-container .item .right img {
  width: 392px;
}
@media (max-width: 600px) {
  .what-can-do .secondary-container .item .right img {
    max-width: 392px;
    width: 100%;
  }
}
.what-can-do .secondary-container .reverse {
  flex-direction: row-reverse;
}
@media (max-width: 860px) {
  .what-can-do .secondary-container .reverse {
    flex-direction: column;
    gap: 30px;
  }
}

.faq {
  position: relative;
  min-height: 761px;
}
@media (max-width: 1170px) {
  .faq {
    min-height: none;
  }
}
.faq .main-container {
  position: unset;
  height: 100%;
}
.faq .faq-wrap {
  padding: 100px 0;
  background: #131825;
  width: 100%;
  height: 100%;
  min-height: 761px;
}
@media (max-width: 1170px) {
  .faq .faq-wrap {
    min-height: none;
  }
}
@media (max-width: 560px) {
  .faq .faq-wrap {
    padding: 50px 0;
  }
}
.faq .faq-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 1170px) {
  .faq .faq-content {
    flex-direction: column;
    gap: 50px;
  }
}
.faq .faq-content .left {
  width: 100%;
  margin: 0;
  z-index: 5;
  max-width: 682px;
}
@media (max-width: 1282px) {
  .faq .faq-content .left {
    max-width: 565px;
  }
}
@media (max-width: 1170px) {
  .faq .faq-content .left {
    max-width: none;
  }
}
.faq .faq-content .left .title {
  color: #FFF;
  font-variant-numeric: lining-nums proportional-nums;
  font-family: "Raleway", sans-serif;
  font-size: 44px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  /* 61.6px */
  max-width: 456px;
  margin-bottom: 64px;
}
@media (max-width: 560px) {
  .faq .faq-content .left .title {
    max-width: none;
    font-size: 32px;
    margin-bottom: 30px;
  }
}
.faq .faq-content .left .title span {
  color: #5A8AD9;
  font-variant-numeric: lining-nums proportional-nums;
  font-family: "Raleway", sans-serif;
  font-size: 44px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
}
@media (max-width: 560px) {
  .faq .faq-content .left .title span {
    max-width: none;
    font-size: 32px;
    margin-bottom: 30px;
  }
}
.faq .faq-content .left .accordians-list .accordion {
  margin-left: auto;
  margin-right: auto;
  margin-top: 2rem;
}
.faq .faq-content .left .accordians-list .rulesAccordion .accordion-item {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 1px solid;
  border-color: rgb(20 20 22/var(--tw-border-opacity));
  --tw-border-opacity: 10%;
  padding-bottom: 1rem;
}
.faq .faq-content .left .accordians-list .rulesAccordion .accordion-itemHolder {
  width: 100%;
}
.faq .faq-content .left .accordians-list .rulesAccordion .accordingHeading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq .faq-content .left .accordians-list .accordingHeading button {
  display: flex;
  flex: 1 1 0%;
  justify-content: space-between;
  cursor: pointer;
  background-color: transparent;
  background-image: none;
  border: none;
  align-items: center;
}
.faq .faq-content .left .accordians-list .accordingHeading img {
  width: 28px;
  margin: 0;
}
.faq .faq-content .left .accordians-list .accordionTitle {
  position: relative;
  display: flex;
  width: 80%;
  align-items: center;
  text-align: left;
  margin: 0;
}
.faq .faq-content .left .accordians-list .accordion-item h5 {
  color: #E1E1E1;
  font-family: "Raleway", sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  /* 30.8px */
  transition-duration: 0.3s;
}
@media (max-width: 560px) {
  .faq .faq-content .left .accordians-list .accordion-item h5 {
    font-size: 14px;
  }
}
.faq .faq-content .left .accordians-list .accordion-item h5:hover {
  color: #3472d9;
}
.faq .faq-content .left .accordians-list .accordion-item .accordion-content {
  width: 100%;
  display: none;
}
.faq .faq-content .left .accordians-list .accordion-item.active .accordion-content {
  display: block;
}
.faq .faq-content .left .accordians-list .content-left p {
  color: #8C8C8C;
  font-family: "Raleway", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  /* 28px */
  letter-spacing: 0.258px;
}
@media (max-width: 560px) {
  .faq .faq-content .left .accordians-list .content-left p {
    font-size: 14px;
  }
}
.faq .faq-content .left .accordians-list .rulesAccordion .pc-hide {
  display: none;
}
.faq .faq-content .left .accordians-list .active {
  display: block;
}
.faq .faq-content .left .accordians-list .accordion-item.active .accordion-number {
  background: #D2D8FF;
}
.faq .faq-content .right {
  width: 100%;
  top: 0;
  right: 0;
  height: 100%;
  position: absolute;
  background: url("../images/faqbg.png") no-repeat;
  background-position: right;
  background-size: contain;
}
@media (max-width: 1170px) {
  .faq .faq-content .right {
    display: none;
  }
}
.faq .faq-content .right-col {
  display: none;
  width: 100%;
}
@media (max-width: 1170px) {
  .faq .faq-content .right-col {
    display: flex;
    justify-content: center;
  }
}
.faq .faq-content .right-col img {
  width: 100%;
}

.app-screens {
  background: #0C0E12;
  width: 100%;
  padding: 75px 0;
  position: relative;
}
.app-screens .gradient {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(to right, rgb(12, 14, 18), rgba(12, 14, 18, 0), rgba(12, 14, 18, 0), rgb(12, 14, 18));
  z-index: 5;
}
@media (max-width: 560px) {
  .app-screens .gradient {
    display: none;
  }
}
.app-screens .screens-slider {
  margin: 40px 0 0 0;
}
.app-screens .screens-slider .image {
  position: relative;
  width: 252px;
  height: auto;
  margin: 0 15px;
  overflow: hidden;
  border-radius: 15px;
  border: 2.5px solid #1A2D4C;
}
.app-screens .screens-slider .image img {
  width: 100%;
}
.app-screens .screens-slider .down {
  margin-top: 50px;
}
@media (max-width: 560px) {
  .app-screens .screens-slider .down {
    margin: 0 15px;
  }
}

.explore {
  width: 100%;
  background: url("../images/explorebg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
  padding: 116px 0;
}
@media (max-width: 860px) {
  .explore {
    background-position: center;
  }
}
.explore .title {
  color: #FFF;
  font-variant-numeric: lining-nums proportional-nums;
  font-family: "Raleway", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  /* 67.2px */
  max-width: 760px;
  margin-bottom: 14px;
}
@media (max-width: 860px) {
  .explore .title {
    font-size: 32px;
  }
}
.explore .link a {
  text-decoration: none;
  color: #5A8AD9;
  font-family: "Raleway", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  /* 28.8px */
}
@media (max-width: 860px) {
  .explore .link a {
    font-size: 16px;
  }
}

footer {
  background-image: linear-gradient(to bottom, rgb(12, 14, 18), rgba(12, 14, 18, 0.92)), url("../images/footerbg.png");
  background-position: bottom;
}
footer .footer-form {
  width: 100%;
  padding: 100px 0;
}
footer .footer-form .contact-section {
  width: 100%;
  display: flex;
  padding: 0 93px 39px 93px;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 480px) {
  footer .footer-form .contact-section {
    padding: 0 !important;
  }
}
footer .footer-form .contact-intro > * + * {
  margin-top: 25px;
}
footer .footer-form .details p {
  color: rgb(107, 114, 128);
}
footer .footer-form .details h4 {
  font-weight: 600;
}
footer .footer-form .contact-title {
  color: #FFF;
  font-family: "Raleway", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 127%;
  /* 40.64px */
}
@media (max-width: 480px) {
  footer .footer-form .contact-title {
    font-size: 22px;
  }
}
footer .footer-form .contact-title span {
  color: #5A8AD9;
  font-family: "Raleway", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 127%;
}
@media (max-width: 480px) {
  footer .footer-form .contact-title span {
    font-size: 22px;
  }
}
footer .footer-form .contact-intro {
  max-width: 410px;
}
footer .footer-form .contact-form {
  width: 50%;
  padding-left: 50px;
}
footer .footer-form .contact-description {
  color: #8C8C8C;
  font-family: "Raleway", sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  /* 30.8px */
  letter-spacing: 0.258px;
}
@media (max-width: 1068px) {
  footer .footer-form .contact-description {
    margin-bottom: 20px;
  }
}
@media (max-width: 480px) {
  footer .footer-form .contact-description {
    font-size: 14px;
  }
}
footer .footer-form .form-group-container {
  display: grid;
  gap: 1rem;
}
footer .footer-form .form-group {
  display: flex;
  flex-direction: column;
  width: 100%;
}
footer .footer-form .form-label {
  color: #9A9A9A;
  font-family: "Raleway", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  /* 25.2px */
  margin: 0 0 5px 0;
}
@media (max-width: 480px) {
  footer .footer-form .form-label {
    font-size: 12px;
  }
}
footer .footer-form .form-input,
footer .footer-form .form-textarea {
  padding: 0.5rem;
  border: none;
  display: flex;
  height: 50px;
  background: rgba(20, 26, 32, 0.94);
  color: #fff;
  width: 100%;
  border-radius: 8px;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
@media (max-width: 480px) {
  footer .footer-form .form-input,
  footer .footer-form .form-textarea {
    height: 40px;
  }
}
footer .footer-form .form-input::-moz-placeholder {
  color: #6b7280;
}
footer .footer-form .form-input::placeholder,
footer .footer-form .form-textarea:focus-visible {
  color: #6b7280;
}
footer .footer-form .form-input:focus-visible,
footer .footer-form .form-textarea:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}
footer .footer-form .form-textarea {
  min-height: 120px;
}
footer .footer-form .form-submit {
  width: 100%;
  margin-top: 2.2rem;
  font-size: 22px;
  background: #3472D9;
  color: #fff;
  padding: 13px 5px;
  border-radius: 8px;
  border: none;
  transition-duration: 0.3s;
}
footer .footer-form .form-submit:hover {
  background: #355d9f;
}
@media (max-width: 480px) {
  footer .footer-form .form-submit {
    font-size: 14px;
    padding: 10px 5px;
    border-radius: 5px;
  }
}
@media (max-width: 1068px) {
  footer .footer-form .contact-section {
    flex-direction: column;
    padding: 0px 20px 20px 20px;
  }
  footer .footer-form .contact-intro {
    width: 100%;
    padding: 0;
    max-width: none;
  }
  footer .footer-form .contact-form {
    width: 100%;
    padding: 0;
  }
}
footer .footer-bottom .footer-nav {
  width: 100%;
  position: relative;
  font-family: "Raleway", sans-serif;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
footer .footer-bottom .footer-nav .left {
  width: 50%;
}
@media (max-width: 1068px) {
  footer .footer-bottom .footer-nav .left {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
footer .footer-bottom .footer-nav .left .footer-logo {
  display: flex;
  justify-content: left;
  align-items: flex-end;
  gap: 14.82px;
  margin-bottom: 12px;
}
footer .footer-bottom .footer-nav .left .footer-logo img {
  width: 40px;
  margin: 0;
}
footer .footer-bottom .footer-nav .left .footer-logo h3 {
  color: #DDE1E9;
  text-align: center;
  font-variant-numeric: lining-nums proportional-nums;
  font-family: "Raleway", sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  /* 42px */
}
footer .footer-bottom .footer-nav .left .footer-logo h3 span {
  color: #3472D9;
  font-variant-numeric: lining-nums proportional-nums;
  font-family: "Raleway", sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
}
footer .footer-bottom .footer-nav .left p {
  color: #D9D9D9;
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  max-width: 300px;
  line-height: 140%;
  /* 22.4px */
}
@media (max-width: 1068px) {
  footer .footer-bottom .footer-nav .left p {
    max-width: 500px;
    text-align: center;
    margin: 0 auto;
  }
}
footer .footer-bottom .footer-nav .left .social-icons {
  display: flex;
  justify-content: left;
  gap: 24px;
  align-items: center;
  max-width: 300px;
  margin: 27px 0 0 0;
}
footer .footer-bottom .footer-nav .left .social-icons a {
  margin: 0;
}
footer .footer-bottom .footer-nav .left .social-icons img {
  width: 24px;
  margin: 0;
}
footer .footer-bottom .footer-nav .right {
  width: 50%;
}
@media (max-width: 1068px) {
  footer .footer-bottom .footer-nav .right {
    width: 100%;
  }
}
footer .footer-bottom .footer-nav .right .right-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1068px) {
  footer .footer-bottom .footer-nav .right .right-content {
    flex-direction: column;
    gap: 30px;
  }
}
footer .footer-bottom .footer-nav .right .right-content .links {
  width: 100px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin: 0;
}
@media (max-width: 1068px) {
  footer .footer-bottom .footer-nav .right .right-content .links {
    align-items: center;
  }
}
footer .footer-bottom .footer-nav .right .right-content .links h6 {
  color: #FFF;
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  /* 19.2px */
  letter-spacing: 0.258px;
  text-align: left;
  margin: 0;
}
footer .footer-bottom .footer-nav .right .right-content .links a {
  text-decoration: none;
  color: #B9B9B9;
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* 19.2px */
  letter-spacing: 0.258px;
  text-align: left;
  margin: 0;
}
footer .footer-bottom .footer-nav .right .right-content .subscribe-box {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 0;
}
footer .footer-bottom .footer-nav .right .right-content .subscribe-box .top {
  display: flex;
  gap: 10px;
  align-items: center;
}
@media (max-width: 480px) {
  footer .footer-bottom .footer-nav .right .right-content .subscribe-box .top {
    flex-direction: column;
    gap: 10px;
  }
}
footer .footer-bottom .footer-nav .right .right-content .subscribe-box .top p {
  color: #5A8AD9;
  font-family: Raleway;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  /* 19.2px */
  letter-spacing: 0.258px;
  width: auto;
}
footer .footer-bottom .footer-nav .right .right-content .subscribe-box .top img {
  width: 130px;
  margin: 0;
}
@media (max-width: 1068px) {
  footer .footer-bottom .footer-nav .right .right-content .subscribe-box .top img {
    width: 100%;
    max-width: 130px;
    height: 40px;
  }
}
footer .footer-bottom .footer-nav .right .right-content .subscribe-box .bottom {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
}
footer .footer-bottom .footer-nav .right .right-content .subscribe-box .bottom p {
  color: #5A8AD9;
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  /* 19.2px */
  letter-spacing: 0.258px;
  width: auto;
  margin: 0;
}
footer .footer-bottom .footer-nav .right .right-content .subscribe-box .bottom .input-box {
  display: flex;
  gap: 16px;
  align-items: center;
  margin: 0;
}
footer .footer-bottom .footer-nav .right .right-content .subscribe-box .bottom .input-box .form-input {
  padding: 12px 16px;
  border: none;
  display: flex;
  height: 50px;
  background: rgba(25, 32, 45, 0.9);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  width: 100%;
  max-width: 287px;
  border-radius: 8px;
  font-size: 0.875rem;
  line-height: 1.25rem;
  margin: 0;
}
footer .footer-bottom .footer-nav .right .right-content .subscribe-box .bottom .input-box .form-input::-moz-placeholder {
  color: #3C4A63;
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* 19.2px */
  letter-spacing: 0.258px;
}
footer .footer-bottom .footer-nav .right .right-content .subscribe-box .bottom .input-box .form-input::placeholder {
  color: #3C4A63;
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* 19.2px */
  letter-spacing: 0.258px;
}
footer .footer-bottom .footer-nav .right .right-content .subscribe-box .bottom .input-box .form-submit {
  width: 100%;
  max-width: 110px;
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  background: #3472D9;
  color: #fff;
  padding: 13px 5px;
  font-weight: 700;
  border-radius: 8px;
  border: none;
  letter-spacing: 0.15px;
  transition-duration: 0.3s;
}
footer .footer-bottom .footer-nav .right .right-content .subscribe-box .bottom .input-box .form-submit:hover {
  background: #355d9f;
}
footer .footer-bottom .footer-nav .right .right-content .subscribe-box .bottom a {
  color: #FFF;
  font-family: "Raleway", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 18px */
  text-decoration: underline;
  margin: 0;
}
footer .footer-bottom .terms-container {
  display: flex;
  justify-content: center;
  padding: 40px 0;
}
footer .footer-bottom .terms-container a {
  font-family: "Raleway", sans-serif;
  color: #3472d9;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  /* 16.8px */
  letter-spacing: 0.258px;
  text-decoration-line: underline;
  margin: 0;
}
@media (max-width: 480px) {
  footer .footer-bottom .terms-container a {
    font-size: 12px;
  }
}
footer .footer-bottom .terms-container .left {
  display: flex;
  gap: 15px;
  margin: 0;
}
footer .footer-bottom .terms-container .right {
  margin: 0;
}
footer .footer-bottom .terms-container .right a {
  text-decoration: none !important;
}
footer .footer-bottom .terms-container .right a .spantxt {
  color: #BDBDBD;
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* 19.2px */
  letter-spacing: 0.258px;
}
@media (max-width: 480px) {
  footer .footer-bottom .terms-container .right a .spantxt {
    font-size: 12px;
  }
}
@media (max-width: 1068px) {
  footer .footer-bottom .footer-nav {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 538px) {
  footer .footer-bottom .nav-links {
    display: flex !important;
    flex-direction: column !important;
    font-size: 16px !important;
    align-items: center;
  }
  footer .footer-bottom .terms-container .left {
    gap: 4px;
    flex-direction: column;
  }
  footer .footer-bottom .terms-container .right {
    text-align: right;
  }
}/*# sourceMappingURL=main.css.map */