@import url('./reset.css');
@import url('./typography.css');
@import url('./helpers.css');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700&display=swap');

/* Variables */
:root {
  /* Colors */
  --white-color: #fff;
  --second-color: #6c87ae;
  --info-color: #5d5a88;
  --primary-color: #f8f8ff;
  --light-red: #eb5757;
  --blue1: #3a8ef6;
  --gray-color: #f9f9ff;
  --footer-red: #a60320;
  --open-black: #333333;

  /* Typography */

  --regular-12-size: 12px;
  --regular-12-weight: 400;

  --14-bold-size: 14px;
  --14-bold-weight: 600;

  --regular-16-size: 16px;
  --regular-16-weight: 400;

  --18-bold-size: 18px;
  --18-bold-weight: 700;

  --20-bold-size: 20px;
  --20-bold-weight: 700;

  --24-bold-size: 24px;
  --24-bold-weight: 700;

  --36-bold-size: 36px;
  --36-bold-weight: 700;

  --32-bold-size: 32px;
  --32-bold-weight: 700;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--white-color);
}

/* Header */

header {
  padding: 24px 0;
  height: 88px;
  color: var(--second-color);
  font-size: var(--regular-16-size);
  font-weight: var(--regular-16-weight);
  background: var(--white-color);
  z-index: 100;
  transition: 0.5s height;
}

header img[alt='logo'] {
  width: 81.5px;
  height: 40px;
}

header select {
  color: var(--second-color);
}

/* Mobile Menu */

header #hamburger {
  flex-direction: column;
  justify-content: end;
  align-items: end;
  width: 16px;
  position: relative;
}

header #hamburger .bar {
  background-color: var(--open-black);
  height: 2px;
  width: 100%;
  position: absolute;
  transition: 0.5s;
}

.hamburger__bar1 {
  top: -8px;
}
.hamburger__bar3 {
  top: 4px;
}

.mobile__menu .hamburger__bar1 {
  transform: rotate(-45deg);
  top: 0;
}
.mobile__menu .hamburger__bar2 {
  opacity: 0;
}
.mobile__menu .hamburger__bar3 {
  transform: rotate(45deg);
  top: 0;
}

header #hamburger .hamburger__bar2 {
  background-color: var(--open-black);
  height: 2px;
  width: 67%;
}

.mobile__menu header {
  top: 0;
  height: calc(224px + 88px);
}

.mobile__menu header nav {
  display: flex !important;
  flex-direction: column;
  align-items: end !important;
  position: absolute;
  top: 88px;
  text-align: right;
  right: 8px;
}

.mobile__menu header #language {
  display: block !important;
  position: absolute !important;
  bottom: 10px !important;
  right: 8px;
}

/* Hero */

.hero {
  padding: 122px 0;
  height: calc(100vh - 88px);
  display: flex;
  justify-content: center;
  align-items: center;
  max-height: 100vh;
}

.hero .left .content {
  color: var(--info-color);
}

.hero .left .content h1 {
  font-size: var(--36-bold-size);
  font-weight: var(--36-bold-weight);
  line-height: 48px;
}

.hero .left .content p {
  font-size: var(--regular-16-size);
  font-weight: var(--regular-16-weight);
}

.hero .left .line__area {
  margin-top: -2.5rem;
}

/* Tablet Screen */
@media only screen and (max-width: 992px) and (min-width: 767px) {
  .hero .left .content h1 {
    font-size: var(--24-bold-size);
    font-weight: var(--24-bold-weight);
    line-height: 32px;
  }
  .hero .left .content p {
    font-size: var(--regular-12-size);
    font-weight: var(--regular-12-weight);
    line-height: 20px;
  }
}

/* Mobile Screen */
@media only screen and (max-width: 767px) {
  .hero .left .content h1 {
    font-size: var(--20-bold-size);
    font-weight: var(--20-bold-weight);
    line-height: 32px;
  }
  .hero .left button {
    padding: 12px 24px;
    font-size: var(--14-bold-size);
    font-weight: var(--14-bold-weight);
  }
  .hero .mobile_helper-margin {
    margin-top: 32px !important;
  }
}

@media only screen and (min-width: 991px) {
  .hero .right img[alt='Heart'] {
    margin-right: 37px;
  }
}

/* Partners */
.partners {
  border-top: 24px;
  border-bottom: 24px;
  border-style: solid;
  border-color: var(--primary-color);
}

/* Area */
.area {
  padding: 80px 0;
}

.area .right .content {
  padding: 32px 16px;
  color: var(--info-color);
}

.area .right .content h1 {
  font-size: var(--36-bold-size);
  font-weight: var(--36-bold-weight);
  line-height: 48px;
}

.area .right .content p {
  font-size: var(--regular-16-size);
  font-weight: var(--regular-16-weight);
  line-height: 24px;
}

.area .right .content .button-liner {
  font-weight: 700;
}

@media only screen and (max-width: 992px) {
  .area .right .content h1 {
    font-size: var(--24-bold-size);
    font-weight: var(--24-bold-weight);
    line-height: 32px;
  }
  .area button {
    font-size: 14px;
    font-weight: 600;
  }
}

/* Request Info */

.request-info {
  padding: 80px 0;
}

.request-info .request-info__card {
  border-radius: 32px;
  width: 100%;
  background: url('/assets/background-images/request-info.png') no-repeat center;
  background-size: cover;
  color: var(--white-color);
  box-shadow: 0px 20px 24px 0px rgba(65, 132, 247, 0.24);
  padding: 95px 0;
}

.request-info .request-info__card h1 {
  font-size: var(--32-bold-size);
  font-weight: var(--32-bold-weight);
  line-height: 48px;
}

.request-info .request-info__card p {
  font-size: var(--regular-16-size);
  font-weight: var(--regular-16-weight);
  line-height: 24px;
  opacity: 0.8;
}

.request-info .request-info__card .button__area button {
  color: var(--info-color);
  font-size: 18px;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  outline: 0;
  background: transparent;
  border-radius: 100px;
  color: var(--blue1);
  border: 1px solid var(--white-color);
  padding: 16px 28px;
}

@media only screen and (max-width: 767px) {
  .request-info .request-info__card h1 {
    font-size: var(--24-bold-size);
    font-weight: var(--24-bold-weight);
    line-height: 32px;
  }
  .request-info .request-info__card p {
    line-height: 24px;
    margin-top: 8px;
  }
}

/* Services */

.services {
  color: var(--info-color);
  padding: 80px 0;
}

.services .services__card {
  border-radius: 8px;
  background: var(--white-color);
  padding: 16px 14px;
  box-shadow: 0px 30px 32px 0px rgba(63, 128, 240, 0.12);
  bottom: 80px;
  left: -16px;
}

.services .services__card h4 {
  color: var(--open-black);
  font-size: var(--18-bold-size);
  font-weight: var(--18-bold-weight);
  margin-bottom: 2px;
}

.services .services__card .icon {
  width: 32px;
  height: 32px;
  border-radius: 100%;
  display: grid;
  place-items: center;
  background: var(
    --blue-linear,
    linear-gradient(145deg, #1678f2 0%, #65a8fb 100%)
  );
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.12) inset,
    0px 4px 19px 0px rgba(22, 120, 242, 0.2);
}

.services .content h1 {
  font-size: var(--32-bold-size);
  font-weight: var(--32-bold-weight);
  line-height: 48px;
}

.services .content p {
  font-size: var(--regular-16-size);
  font-weight: var(--regular-16-weight);
  line-height: 24px;
}

.services button {
  font-weight: 700;
}

.services .right .right-image {
  border-radius: 32px;
}

@media only screen and (max-width: 992px) and (min-width: 767px) {
  .services .services__card {
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    bottom: auto;
  }
  .services .left {
    margin-top: 24px;
  }
}

@media only screen and (max-width: 767px) {
  .services .services__card {
    width: 90%;
    top: -20px;
    left: 20px;
    bottom: auto;
  }
  .services .left {
    margin-top: 24px;
  }
  .services .content h1 {
    font-size: var(--24-bold-size);
    font-weight: var(--24-bold-weight);
    line-height: 32px;
  }
}

/* Comments */
.comments {
  padding: 64px 0;
  color: var(--info-color);
  position: relative;
}

.custom__background {
  background-color: var(--gray-color);
  width: 70%;
  margin: 0 auto;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  border-radius: 28px;
  position: absolute;
}

@media only screen and (max-width: 992px) {
  .custom__background {
    background-color: var(--gray-color);
    width: 100%;
  }
}

.comments .content h1 {
  font-size: var(--32-bold-size);
  font-weight: var(--32-bold-weight);
  line-height: 48px;
}

.comments .content p {
  font-size: var(--regular-16-size);
  font-weight: var(--regular-16-weight);
  line-height: 24px;
}

.comments .comments__card {
  padding: 18px 24px;
  border-radius: 6px;
  background: #fff;
  box-shadow: 8px 16px 24px 0px rgba(0, 0, 0, 0.04);
  transition: 0.5s all;
}

.comments .comments__card .card__header span {
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  color: #333333;
}

.comments .comments__card .card__body {
  max-height: 96px !important;
  overflow: hidden !important;
}

.comments .comments__card .icons .heart__icon {
  top: -17px;
  left: 50%;
  transform: translateX(-50%);
}
.comments .comments__card .icons .heart__icon div {
  background-color: white;
}

.comments .comments__card .icons .quote__icon {
  bottom: -20px;
  transform: translateX(-50%);
}

.comments .comments__card .card__body p {
  color: var(--second-color);
  text-overflow: ellipsis;

  /* 12 Regular */
  font-size: 12px;
  font-family: Montserrat;
  font-weight: 400;
  line-height: 20px;
}

.comments .comments__card .card__footer p {
  font-size: 16px;
  font-family: Nunito;
  font-weight: 700;
  line-height: 24px;
  color: #333333;
}

@media only screen and (max-width: 767px) {
  .comments .content h1 {
    font-size: var(--24-bold-size);
    font-weight: var(--24-bold-weight);
    line-height: 32px;
  }
}

.splide {
  padding: 70px 0;
}

.splide__slide {
  margin: auto 0;
}

.splide__list {
  min-height: 300px;
}

.splide__slide .comments__card .icons {
  display: none;
}

.splide__slide.is-active .comments__card {
  padding-top: 48px;
  padding-bottom: 48px;
}

.splide__slide.is-active .comments__card .icons {
  display: block !important;
}

.splide .splide__arrows .splide__arrow {
  background: var(
    --blue-linear,
    linear-gradient(145deg, #1678f2 0%, #65a8fb 100%)
  );
  width: 48px;
  height: 48px;
}

.splide__arrow:disabled {
  background: white !important;
}
.splide__arrow:disabled svg path {
  fill: #8a8a8a;
}
/* Contact */

.contact {
  padding-top: 48px;
  padding-bottom: 96px;
  color: var(--info-color);
}

.contact .content h1 {
  font-size: var(--32-bold-size);
  font-weight: var(--32-bold-weight);
  line-height: 48px;
}

.contact .content p {
  font-size: var(--regular-16-size);
  font-weight: var(--regular-16-weight);
  line-height: 24px;
}

.contact button {
  font-weight: 700;
}

@media only screen and (max-width: 767px) {
  .contact .content h1 {
    font-size: var(--24-bold-size);
    font-weight: var(--24-bold-weight);
    line-height: 32px;
  }
  .contact .social {
    margin-top: 36px;
  }
  .contact button {
    width: 100%;
    justify-content: center;
  }
}

/* Footer */

footer {
  background: var(--footer-red);
  padding-top: 64px;
  padding-bottom: 34px;
  color: var(--white-color);
}

footer .left h3.title {
  font-size: var(--18-bold-size);
  font-weight: var(--18-bold-weight);
  line-height: 24px;
}

footer .left .sub-title {
  font-size: var(--regular-16-size);
  font-weight: var(--regular-16-weight);
  line-height: 24px;
}

footer .left .sub-title p {
  opacity: 0.8;
}

footer .right h2 {
  font-size: var(--32-bold-size);
  font-weight: var(--32-bold-weight);
  line-height: 48px;
}
footer .right p {
  font-size: var(--regular-16-size);
  font-weight: var(--regular-16-weight);
  line-height: 24px;
}

footer .right img {
  border-radius: 100%;
}

footer .line {
  padding: 32px;
}
footer .line div {
  opacity: 0.6000000238418579;
  background: var(--white-color);
  height: 1px;
}

@media only screen and (max-width: 992px) and (min-width: 767px) {
  footer .left {
    margin-top: 48px;
  }
  footer .social {
    margin-top: 32px;
  }
}
