@charset "UTF-8";
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", sans-serif;
  background: #ffffff;
  color: #4a4a4a;
  line-height: 1.7;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
  color: #222222;
}

img {
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #222222;
}

.h1 {
  font-size: 57px;
  line-height: 1.2;
  font-weight: 900;
}

.h2 {
  font-size: 48px;
  line-height: 1.4;
  letter-spacing: -2%;
}

.h3 {
  font-size: 32px;
  line-height: 1.4;
}

.h4 {
  font-size: 24px;
  line-height: 1.4;
}

.lead {
  font-size: 20px;
}

.container {
  width: 100%;
  max-width: 1200px;
  padding: 0%;
  margin: auto;
}

.section {
  padding: 90px 0;
}

.btn {
  text-transform: uppercase;
  bottom: none;
  background: #5375d9;
  color: #ffffff;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.4px;
  font-weight: 600;
  min-width: 140px;
  transition: all 0.3s ease-in-out;
  font-size: 14px;
}
.btn:hover {
  background: #4d6bc5;
}
.btn--lg {
  height: 56px;
  padding: 0 2rem;
}
.btn--sm {
  height: 48px;
  padding: 0 1.5rem;
}

.input,
.textarea {
  border: none;
  outline: none;
  border-bottom: 2px solid #bcbcbc;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 500;
  color: #222222;
}
.input::-moz-placeholder, .textarea::-moz-placeholder {
  color: #909090;
}
.input::placeholder,
.textarea::placeholder {
  color: #909090;
}
.input:focus,
.textarea:focus {
  border-bottom: 2px solid #5375d9;
}

.input {
  height: 48px;
}

.textarea {
  min-height: 200px;
  resize: none;
}

.banner {
  min-height: 95vh;
  padding: 10rem 0 6rem 0;
  display: flex;
  flex-direction: column;
  gap: 70px;
  background-image: url("./assets/banner/bg.svg");
  background-size: cover;
  background-repeat: no-repeat;
}
.banner__container {
  height: 76vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 768px) {
  .banner__container {
    flex-direction: row;
  }
}
.banner__text, .banner__image {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
@media (min-width: 1200px) {
  .banner__text, .banner__image {
    text-align: left;
  }
}
.banner__text {
  align-items: start;
  gap: 30px;
}
.banner__image {
  display: none;
}
@media (min-width: 1200px) {
  .banner__image {
    display: flex;
  }
}
.banner__image img {
  width: 100%;
  max-width: 600px;
}
.banner__pretitle {
  background: #febb94;
  color: #ffffff;
  padding: 0.5rem 1rem;
  text-transform: uppercase;
  margin: 0 auto;
}
@media (min-width: 1200px) {
  .banner__pretitle {
    margin: 0;
  }
}
.banner__title {
  max-width: 680px;
  margin: 0 auto;
}
.banner__title span {
  color: #5375d9;
}
.banner__subtitle {
  max-width: 540px;
  margin: 0 auto;
}
@media (min-width: 1200px) {
  .banner__subtitle {
    margin: 0;
  }
}
.banner__btn {
  margin: 0 auto;
}
@media (min-width: 1200px) {
  .banner__btn {
    margin: 0;
  }
}

.brands__title {
  text-align: center;
  margin-bottom: 30px;
}
.brands__img-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.brands__img-wrapper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto; /* Adjust the width of each slide */
}
.brands__img {
  width: auto; /* Let the SVGs take their natural width */
  height: auto; /* Let the height be auto to keep aspect ratio */
  max-width: 100%; /* Ensures SVG doesn’t overflow container */
  -o-object-fit: contain;
     object-fit: contain; /* Maintain aspect ratio */
  transition: transform 0.3s ease-in-out;
}
.brands__img:hover {
  transform: scale(1.1); /* Hover effect for a polished look */
}
@media screen and (max-width: 480px) {
  .brands__img-wrapper {
    justify-content: space-between;
  }
  .brands .swiper-slide {
    width: auto;
  }
  .brands__img {
    width: auto;
    height: auto;
  }
}
@media screen and (min-width: 481px) and (max-width: 768px) {
  .brands__img-wrapper {
    justify-content: space-between;
  }
  .brands .swiper-slide {
    width: auto;
  }
  .brands__img {
    width: auto;
    height: auto; /* Keep SVGs' natural dimensions intact */
  }
}
@media screen and (min-width: 769px) {
  .brands__img-wrapper {
    justify-content: space-between;
  }
  .brands .swiper-slide {
    width: auto;
  }
  .brands__img {
    width: auto;
    height: auto; /* Keep natural size for desktop */
  }
}

.header {
  position: fixed;
  width: 100%;
  z-index: 4;
  height: 90px;
  transition: all 0.3s ease-in-out;
}
.header__container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
}
.header .btn {
  display: none;
}
@media (min-width: 1200px) {
  .header .btn {
    display: block;
  }
}
.header.is-active {
  background: #ffffff;
  box-shadow: 0 1px 8px 4px rgba(83, 117, 217, 0.1);
  transition: all 0.3s ease-in-out;
  height: 80px;
}

.nav {
  background: #222222;
  position: fixed;
  top: 0;
  right: -100%;
  bottom: 0;
  width: 70vw;
  z-index: 5;
  transition: all 0.5s ease-in-out;
}
@media (min-width: 768px) {
  .nav {
    width: 40vw;
  }
}
@media (min-width: 1200px) {
  .nav {
    position: relative;
    right: 0;
    background: none;
  }
}
.nav__close-btn {
  width: 40px;
  height: 40px;
  color: #5375d9;
  font-size: 1.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: absolute;
  top: 16px;
  left: 20px;
}
@media (min-width: 1200px) {
  .nav__close-btn {
    display: none;
  }
}
.nav.is-open {
  right: 0;
}
.nav__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 2rem;
}
@media (min-width: 1200px) {
  .nav__list {
    flex-direction: row;
  }
}
.nav__link {
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  font-size: 1.2rem;
}
.nav__link:hover {
  color: #5375d9;
}
@media (min-width: 1200px) {
  .nav__link {
    color: #222222;
    font-size: 1rem;
  }
}

.nav-trigger {
  display: flex;
  cursor: pointer;
  font-size: 2.4rem;
  font-size: #222222;
  padding-left: 100px;
}
@media (min-width: 1200px) {
  .nav-trigger {
    display: none;
  }
}

.benefits {
  overflow: hidden;
}
.benefits__title {
  text-align: center;
  margin-bottom: 40px;
}
.benefits .benefit {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 0;
}
@media (min-width: 1200px) {
  .benefits .benefit {
    flex-direction: row;
  }
}
.benefits .benefit__text, .benefits .benefit__img {
  flex: 1;
}
.benefits .benefit__text {
  text-align: center;
}
@media (min-width: 1200px) {
  .benefits .benefit__text {
    text-align: left;
  }
}
.benefits .benefit__title {
  margin-bottom: 20px;
}
.benefits .benefit__subtitle {
  max-width: 480px;
}
.benefits .benefit--1 .benefit__text {
  order: 2;
}
@media (min-width: 1200px) {
  .benefits .benefit--1 .benefit__text {
    order: 0;
  }
}
.benefits .benefit--1 .benefit__img {
  margin-bottom: 20px;
}
@media (min-width: 1200px) {
  .benefits .benefit--1 .benefit__img {
    margin-bottom: 0;
  }
}
.benefits .benefit--2 .benefit__img {
  margin-bottom: 20px;
}
@media (min-width: 1200px) {
  .benefits .benefit--2 .benefit__img {
    margin-bottom: 0;
  }
}
@media (min-width: 1200px) {
  .benefits .benefit--2 .benefit__text {
    display: flex;
    flex-direction: column;
    align-items: end;
    text-align: right;
  }
}
.benefits .benefit--1 .benefit__text {
  order: 2;
}
@media (min-width: 1200px) {
  .benefits .benefit--1 .benefit__text {
    order: 0;
  }
}
.benefits .benefit--1 .benefit__img {
  margin-bottom: 20px;
}
@media (min-width: 1200px) {
  .benefits .benefit--1 .benefit__img {
    margin-bottom: 0;
  }
}

.testimonials {
  position: relative;
  z-index: 1;
  background: #febb94;
  padding: 80px 0 50px 0;
}
@media (min-width: 1200px) {
  .testimonials {
    padding: 120px 0 90px 0;
  }
}
.testimonials .swiper {
  width: 100%;
  height: 300px;
  padding: 0 10px;
}
.testimonials .testimonial {
  background: #ffffff;
  height: 260px;
  width: auto;
  border-radius: 20px;
  box-shadow: 7px 8px 0px rgba(0, 0, 0, 0.1);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.testimonials .testimonial__message {
  letter-spacing: 0.1px;
  font-size: 14px;
}
.testimonials .testimonial__info-wrapper {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.testimonials .testimonial__name {
  font-size: 20px;
}
.testimonials .testimonial__avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.swiper-pagination-bullet {
  background: #222222;
}

.services__title {
  text-align: center;
  margin-bottom: 40px;
}
.services__container {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 25px;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 800px) {
  .services__container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 940px) {
  .services__container {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 1200px) {
  .services__container {
    grid-template-columns: repeat(5, minmax(250px, 1fr));
  }
}
.services__item {
  border-radius: 20px;
  background: #eaf0ff;
  flex: 1;
  height: auto;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s ease-in-out;
}
.services__item:hover {
  background: #febb94;
}
@media (min-width: 940px) {
  .services__item {
    min-height: 390px;
  }
}
.services__item-icon {
  font-size: 3.4rem;
  line-height: normal;
  color: #222222;
}
.services__item-title {
  font-size: 20px;
}

@media (min-width: 1200px) {
  .faq {
    padding: 70px 0;
  }
}
.faq__title {
  text-align: center;
}
@media (min-width: 1200px) {
  .faq__title {
    text-align: left;
    margin-bottom: 20px;
  }
}
.faq__container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 1200px) {
  .faq__container {
    flex-direction: row;
    align-items: start;
  }
}
.faq__item, .faq__img {
  width: 100%;
}
.faq__items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.faq__img {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1200px) {
  .faq__img {
    margin-bottom: 0;
    margin-top: 65px;
  }
}
.faq__item-question {
  background: #eaf0ff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 30px;
  border-radius: 10px;
  cursor: pointer;
}
.faq__item-title {
  font-weight: 600;
  font-size: 1.3rem;
}
.faq__item i {
  line-height: normal;
  font-size: 1.8rem;
}
.faq__item-answer {
  height: 0;
  overflow: hidden;
}
.faq__item.is-open .faq__item-answer {
  background-color: #ffffff;
  height: auto;
  padding: 20px 30px 0 30px;
}

.contact__container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}
@media (min-width: 1200px) {
  .contact__container {
    flex-direction: row;
  }
}
.contact__img, .contact__form-wrapper {
  flex: 1;
}
.contact__img {
  display: flex;
  justify-content: center;
}
@media (min-width: 1200px) {
  .contact__img {
    order: 1;
  }
}
.contact__form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-align: center;
  padding: 0 30px;
  width: 100%;
}
@media (min-width: 1200px) {
  .contact__form-wrapper {
    text-align: left;
    padding: 0;
  }
}
.contact__form-subtitle {
  max-width: 640px;
  margin: 0 auto;
}
.contact .form__buttons {
  display: flex;
  justify-content: space-between; /* Align buttons to the left and right */
  align-items: center; /* Ensures vertical alignment */
  gap: 20px; /* Adds space between the buttons */
  margin-top: 20px; /* Adds some space above the buttons */
}
.contact__status-message {
  margin-top: 15px;
  padding: 10px;
  font-size: 16px;
  border-radius: 5px;
  display: block;
  width: 100%;
}
.contact__status-message--success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.contact__status-message--error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 768px) {
  .form__btn {
    max-width: 200px;
  }
}

.footer {
  background: #eaf0ff;
  padding-top: 70px;
}
.footer__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 70px;
}
@media (min-width: 1200px) {
  .footer__container {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.footer__title {
  font-weight: 900;
  font-size: 64px;
}
@media (min-width: 1200px) {
  .footer__title {
    font-size: 96px;
  }
}
.footer__info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer .info__email {
  font-weight: 800;
}
.footer .info__text {
  font-weight: 500;
}
.footer__copyright {
  text-align: center;
  font-weight: 500;
  padding: 20px 0;
  border-top: 1px solid #c8c8c8;
}

.social {
  display: flex;
  gap: 20px;
  margin: 0 auto;
}
@media (min-width: 1200px) {
  .social {
    margin: 0;
  }
}
.social__icon {
  font-size: 26px;
  transition: all 0.3s ease-in-out;
}
.social__icon:hover {
  color: #5375d9;
}/*# sourceMappingURL=style.css.map */