@charset "UTF-8";
footer {
  position: relative;
  background-image: url("../../../img/footer.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right center;
}
footer .container {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
footer .col-md-4 a {
  color: #344256;
}
footer .col-md-4 p {
  margin-bottom: 1rem;
}
footer .row:first-child {
  justify-content: flex-start;
  margin-bottom: 2rem;
}
footer .row:last-child {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media (max-width: 932px) {
  footer {
    display: none;
  }
}
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background-image: url("../../../img/header.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: white;
  z-index: 1000;
  transition: transform 0.3s ease-in-out;
}
.site-header.hidden {
  transform: translateY(-100%);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0.5rem 1rem;
  gap: 1rem;
}
.site-header img {
  height: 4rem;
  width: auto;
  margin-left: 0.5rem;
  display: block;
}
.site-header .nav-link {
  font-size: 1rem;
  font-weight: 500;
  color: #344256;
  transition: color 0.2s ease-in-out;
}
.site-header .nav-link:hover {
  text-decoration: underline;
}
.site-header .btn {
  font-size: 1rem;
  padding: 0.5rem 1.25rem;
  border-radius: 0.625rem;
  background-color: #0d6dfc;
}
.site-header .btn:hover {
  background-color: rgb(2.6204081633, 86.4734693878, 211.3795918367);
}

@media (max-width: 430px) {
  .site-header .container {
    justify-content: flex-start;
    padding: 0.5rem 1rem;
  }
  .site-header img {
    height: 3rem;
    margin-left: -8rem;
    width: auto;
    display: block;
  }
  .site-header .nav {
    flex-direction: column;
    background-color: #e2eaff;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 0.5rem 0;
  }
  .nav-link {
    padding: 0.5rem 1rem;
    text-align: center;
  }
  .burger-btn {
    border: none;
    background: transparent;
    padding: 0rem 0.75rem;
    display: flex;
    align-items: center;
  }
  .burger-btn i {
    font-size: 2.5rem;
    color: #0d6dfc;
  }
  #mobileMenuOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 998;
    display: none;
    transition: opacity 0.3s ease;
  }
  #mobileMenuOverlay.active {
    display: block;
  }
  .mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 70%;
    height: 100%;
    background-color: #eff6fe;
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    padding: 1rem;
  }
  .mobile-nav.show {
    transform: translateX(0);
  }
  .mobile-nav .nav-link,
  .mobile-nav .btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.5rem 1rem;
    margin: 0.5rem 0;
    border-radius: 0.625rem;
    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.2s ease, transform 0.2s ease;
  }
}
@media (max-width: 932px) and (orientation: landscape) {
  .site-header img {
    height: 2.6rem;
  }
  .site-header .nav-link {
    font-size: 0.9rem;
    padding: 0.25rem 0.75rem;
  }
  .site-header .btn {
    font-size: 0.9rem;
    padding: 0.4rem 1rem;
  }
  .site-header .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .nav {
    display: none;
  }
}
.main-text {
  text-align: center;
  padding: 1rem 1rem;
}
.main-text h1 {
  font-size: 3rem;
  font-weight: 600;
  color: #344256;
  max-width: 60rem;
  margin: 0 auto 2rem;
}
.main-text p.lead {
  font-size: 1.25rem;
  font-weight: 500;
  color: #7d7d7d;
  line-height: 1.5;
  max-width: 60rem;
  margin: 0 auto;
}

.solution {
  background-color: #eff6fe;
  color: #8ac2fc;
  font-size: 1rem;
  border-radius: 0.625rem;
  display: inline-block;
  padding: 0 1rem;
}

.dot {
  margin-right: 0.75rem;
  font-size: 1rem;
  color: #8ac2fc;
}

@media (max-width: 768px) {
  .main-text {
    margin-bottom: 2rem;
  }
  .main-text h1 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }
  .main-text .lead {
    font-size: 1.1rem;
  }
}
.card-section .col-md-6 {
  padding: 2rem;
  margin: 3rem 0;
  color: #0d6dfc;
  display: flex;
  flex-direction: column;
}
.card-section .col-md-6 .row {
  align-items: center;
}
.card-section .col-md-6 .card-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
  object-fit: contain;
  filter: invert(37%) sepia(100%) saturate(4782%) hue-rotate(210deg) brightness(102%) contrast(97%);
}
.card-section .col-md-6 h3 {
  color: #0d6dfc;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
}
.card-section .col-md-6 .img-fluid {
  border-radius: 8px;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
}
.card-section .col-md-6 .list-unstyled {
  padding-left: 0;
  list-style: none;
}
.card-section .col-md-6 .list-unstyled li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}
.card-section .col-md-6 .list-unstyled li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #0d6dfc;
  font-weight: 500;
}
.card-section .col-md-6 .btn {
  margin-top: 1rem;
  padding: 0.5rem 1.5rem;
  background-color: #0d6dfc;
  color: white;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  max-width: 200px;
}
.card-section .col-md-6 .btn:hover {
  background-color: rgb(2.6204081633, 86.4734693878, 211.3795918367);
}

.main-text {
  text-align: center;
  margin-bottom: 3rem;
}
.main-text h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.main-text .lead {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.card-section:nth-child(even) .order-md-1 {
  order: 2 !important;
}
.card-section:nth-child(even) .order-md-2 {
  order: 1 !important;
}

@media (max-width: 767px) {
  .card-section:nth-child(even) .order-md-1,
  .card-section:nth-child(even) .order-md-2 {
    order: 0 !important;
  }
  .card-section .col-md-6 {
    padding: 1rem;
    margin: 1.5rem 0;
  }
  .card-section .col-md-6 .card-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 0.75rem;
  }
  .card-section .col-md-6 h3 {
    margin-bottom: 0.75rem;
    font-size: 1.35rem;
  }
  .card-section .col-md-6 .list-unstyled li {
    margin-bottom: 0.4rem;
    padding-left: 1.25rem;
  }
  .card-section .col-md-6 .btn {
    margin-top: 0.75rem;
    padding: 0.4rem 1.25rem;
    max-width: 180px;
  }
}
body {
  font-family: "Inter";
  background-image: url("../../../img/3/AdvantagesBG.svg");
  background-position: center top;
  background-repeat: no-repeat;
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22../../scss/_footer.scss%22,%22../../scss/_variables.scss%22,%22../../scss/_header.scss%22,%22../../scss/advantages/_main-text.scss%22,%22../../scss/advantages/_card.scss%22,%22../../scss/advantages/style.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22;AAEA;EACE;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;;AAIA;EACE,OCfE;;ADkBJ;EACE;;AAIJ;EACE;EACA;;AAGF;EACE;EACA;EACA;;;AAIJ;EACE;IACE;;;AEpCJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;;AAGF;EACE;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA,ODnCI;ECoCJ;;AAEA;EACE;;AAIJ;EACE;EACA;EACA;EACA,kBDhDK;;ACkDL;EACE;;;AAMN;EACE;IACE;IACA;;EAGF;IACE;IACA;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;IACA;IACA;IACA;;EAGF;IACE;IACA;;EAGF;IACE;IACA;IACA;IACA;IACA;;EAEA;IACE;IACA,OD9FG;;ECkGP;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAGF;IACE;;EAGF;IACE;IACA;IACA;IACA;IACA;IACA,kBDlHS;ICmHT;IACA;IACA;IACA;IACA;IACA;;EAGF;IACE;;EAGF;AAAA;IAEE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;;AAIJ;EAEI;IACE;;EAGF;IACE;IACA;;EAGF;IACE;IACA;;EAGF;IACE;IACA;;EAIJ;IACE;;;ACxKJ;EACE;EACA;;AAEA;EACE;EACA;EACA,OFRI;EESJ;EACA;;AAGF;EACE;EACA;EACA,OFfG;EEgBH;EACA;EACA;;;AAIJ;EACI,kBFnBS;EEoBT,OFnBQ;EEoBR;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA,OF7BQ;;;AEgCZ;EACE;IACE;;EAEA;IACE;IACA;;EAGF;IACE;;;AC/CN;EACE;EACA;EACA,OHLO;EGMP;EACA;;AAEA;EACE;;AAGF;EACE;EACA;EACA;EACA;EACA;;AAGF;EACE,OHtBK;EGuBL;EACA;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAEA;EACE;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA,OH9CC;EG+CD;;AAKN;EACE;EACA;EACA,kBHvDK;EGwDL;EACA;EACA;EACA;EACA;;AAEA;EACE;;;AAMN;EACE;EACA;;AAEA;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;;;AAMF;EACE;;AAGF;EACE;;;AAKJ;EAEI;AAAA;IAEE;;EAIF;IACA;IACA;;EAEA;IACE;IACA;IACA;;EAGF;IACE;IACA;;EAGF;IACE;IACA;;EAGF;IACE;IACA;IACA;;;AC3HN;EACE;EACA;EACA;EACA%22,%22file%22:%22style.css%22%7D */
