@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&family=Raleway:wght@400;700&display=swap");
body {
  background-color: #1b2330;
}

/*=============================================
=            NAV STARTS            =
=============================================*/
.nav {
  padding: 0 calc((100% - 1440px) / 2);
}
.nav__container {
  padding: 3rem clamp(1.375rem, 0.0986rem + 5.446vw, 5rem);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.nav img {
  width: clamp(6.25rem, 4.0493rem + 9.3897vw, 12.5rem);
}
.nav__links {
  display: flex;
  gap: 2rem;
}

/*=============================================
=            NAV ENDS            =
=============================================*/
/*=============================================
=            HEADER STARTS            =
=============================================*/
.header__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: stretch;
  gap: 4rem;
  position: relative;
  background-image: url("../images/bg-curvy-mobile.svg");
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: contain;
}
.header__intro {
  width: min(85%, 72rem);
}
.header__intro img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.header__contents {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: stretch;
  width: min(85%, 46rem);
  text-align: center;
  gap: 3rem;
}

/*=============================================
=            HEADER ENDS            =
=============================================*/
/*=============================================
=            MAIN STARTS            =
=============================================*/
.main {
  padding-top: 10rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: hsl(218deg, 28%, 13%);
}

/*=============================================
=            MAIN ENDS            =
=============================================*/
/*=============================================
=            SECTION1 STARTS            =
=============================================*/
.section1__container {
  margin: auto;
  width: min(85%, 100rem);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 5rem;
}
.section1__content {
  background-color: hsl(217deg, 28%, 15%);
  flex: 1 1 35rem;
  max-width: 40rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  padding: 2rem;
}

/*=============================================
=            SECTION1 ENDS            =
=============================================*/
/*=============================================
=            SECTION2 STARTS            =
=============================================*/
.section2 {
  margin: 10rem 0;
}
.section2__container {
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  padding: 3rem;
}
.section2__img {
  flex: 1 1 auto;
  max-width: 50rem;
}
.section2__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section2__content {
  flex: 1 1 auto;
  max-width: 40rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1.5rem;
}
.section2__cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
}
.section2__cta::before {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 100%;
  height: 0.1rem;
  background-color: hsl(176deg, 68%, 64%);
  transition: background-color 0.3s;
}
.section2__cta:hover.section2__cta::before {
  background-color: #fff;
}
.section2__cta:hover .section2__link {
  color: #fff;
}
.section2__cta:hover use {
  fill: #fff;
}
.section2__cta use {
  transition: fill 0.3s;
}

/*=============================================
=            SECTION2 ENDS            =
=============================================*/
/*=============================================
=            SECTION3 STARTS            =
=============================================*/
.section3__container {
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5rem;
  padding: 2rem;
}
.section3__testimonials {
  flex: 1 1 auto;
  max-width: 35rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem;
  background-color: hsl(219deg, 30%, 18%);
  box-shadow: 0 0 1rem rgba(255, 255, 255, 0.05);
}
.section3 .person {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
}
.section3 .person__photo {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  overflow: hidden;
}
.section3 .person__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*=============================================
=            SECTION3 ENDS            =
=============================================*/
/*=============================================
=            SECTION4 STARTS            =
=============================================*/
.section4 {
  background-color: hsl(217deg, 28%, 15%);
  width: min(90%, 86.3rem);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.3);
  position: relative;
  margin-top: 18rem;
  margin-bottom: -10rem;
  border-radius: 10px;
  overflow: hidden;
  z-index: 1;
}
.section4__container {
  padding: 4rem clamp(1.2rem, -0.0352rem + 2.8169vw, 4rem);
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.section4 .form {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
}
.section4 .form__input {
  flex: 1 1 auto;
  min-width: 25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.section4 .form__input input {
  width: 100%;
  padding: 1.5rem 2rem;
  border-radius: 5rem;
}
.section4 .form__error {
  margin-left: 2rem;
  color: hsl(0deg, 100%, 63%);
}
.section4 .form__btn {
  flex: 1 1 100%;
  padding: 1.5rem 3rem;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: capitalize;
  background-color: hsl(198deg, 60%, 50%);
  border-radius: 5rem;
  transition: background-color 0.3s;
  cursor: pointer;
}
.section4 .form__btn:hover {
  background-color: #8adae3;
}
@media (min-width: 1440px) {
  .section4 .form__btn {
    max-width: 25rem;
  }
}

/*=============================================
=            SECTION4 ENDS            =
=============================================*/
/*=============================================
=            FOOTER STARTS            =
=============================================*/
.footer {
  background-color: hsl(216deg, 53%, 9%);
  padding: 0 calc((100% - 1440px) / 2);
}
.footer__container {
  padding: 20rem clamp(0.625rem, -1.3556rem + 8.4507vw, 6.25rem) 5rem clamp(0.625rem, -1.3556rem + 8.4507vw, 6.25rem);
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.footer__logo {
  flex: 1 1 auto;
  margin-right: auto;
}
.footer__logo img {
  width: 10rem;
}
.footer__infos {
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 5rem;
}
.footer__section1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3rem;
}
.footer__section1 .location {
  max-width: 38rem;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding-right: 1rem;
}
.footer__section1 .location img {
  width: 2.5rem;
  margin-top: 0.7rem;
}
.footer__contactWrapper {
  max-width: fit-content;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-self: flex-start;
}
.footer__contactWrapper .phone {
  flex: 1 1 100%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.footer__contactWrapper .email {
  flex: 1 1 100%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.footer__navigations {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
.footer__section2 {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.footer__section3 {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.footer__links {
  display: flex;
  gap: 2rem;
}
@media (min-width: 1440px) {
  .footer__navigations {
    flex-direction: row;
    justify-content: flex-start;
  }
  .footer__links {
    margin-left: 10rem;
  }
}

/*=============================================
=            FOOTER ENDS            =
=============================================*/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  box-sizing: border-box;
  list-style-type: none;
  text-decoration: none;
}

html {
  font-size: 62.5%;
}

body {
  overflow-x: hidden;
}

/*=============================================
=            NAV STARTS            =
=============================================*/
.nav__link {
  font-size: clamp(1.4rem, 0.956rem + 0.1878vw, 2rem);
  color: #fff;
  text-transform: capitalize;
  letter-spacing: 0.2rem;
  font-weight: 300;
  font-family: "Raleway", sans-serif;
  line-height: none;
  position: relative;
}
.nav__link::before {
  content: "";
  position: absolute;
  bottom: -0.4rem;
  left: 50%;
  width: 0;
  height: 0.1rem;
  transform: translateX(-50%);
  background-color: hsl(0deg, 100%, 63%);
  transition: width 0.3s;
}
.nav__link:hover.nav__link::before {
  width: 80%;
  scale: 1.1;
}

/*=============================================
=            NAV ENDS            =
=============================================*/
/*=============================================
=            HEADER STARTS            =
=============================================*/
.header__heading {
  font-size: clamp(2.4rem, 1.1479rem + 1.5023vw, 5.6rem);
  color: #fff;
  text-transform: none;
  letter-spacing: 0.15rem;
  font-weight: 700;
  font-family: "Raleway", sans-serif;
  line-height: 1.6;
}
.header__text {
  font-size: clamp(1.4rem, 0.743rem + 0.5634vw, 2.2rem);
  color: #fff;
  text-transform: none;
  letter-spacing: 0.1rem;
  font-weight: 400;
  font-family: "Raleway", sans-serif;
  line-height: 2;
}
.header__link {
  font-size: clamp(1.4rem, 0.956rem + 0.1878vw, 2rem);
  color: #fff;
  text-transform: capitalize;
  letter-spacing: 0.2rem;
  font-weight: bold;
  font-family: "Raleway", sans-serif;
  line-height: none;
  padding: 2rem 9rem;
  background-color: hsl(198deg, 60%, 50%);
  border-radius: 5rem;
}

/*=============================================
=            HEADER ENDS            =
=============================================*/
/*=============================================
=            SECTION1 STARTS          =
=============================================*/
.section1__heading {
  font-size: clamp(1.6rem, 1.081rem + 0.1878vw, 1.25rem);
  color: #fff;
  text-transform: capitalize;
  letter-spacing: 0.2rem;
  font-weight: bold;
  font-family: "Raleway", sans-serif;
  line-height: none;
}
.section1__text {
  font-size: clamp(1.4rem, 0.956rem + 0.1878vw, 2rem);
  color: #fff;
  text-transform: none;
  letter-spacing: 0.1rem;
  font-weight: none;
  font-family: "Raleway", sans-serif;
  line-height: 1.6;
}

/*=============================================
=            SECTION1 ENDS            =
=============================================*/
/*=============================================
=            SECTION2 STARTS            =
=============================================*/
.section2__heading {
  font-size: clamp(1.4rem, 0.6408rem + 2.0657vw, 3rem);
  color: #fff;
  text-transform: capitalize;
  letter-spacing: 0.2rem;
  font-weight: bold;
  font-family: "Raleway", sans-serif;
  line-height: none;
}
.section2__text {
  font-size: clamp(1.4rem, 0.956rem + 0.1878vw, 2rem);
  color: #fff;
  text-transform: none;
  letter-spacing: 0.1rem;
  font-weight: none;
  font-family: "Raleway", sans-serif;
  line-height: 1.8;
}
.section2__link {
  font-size: clamp(1.4rem, 0.956rem + 0.1878vw, 2rem);
  color: hsl(176deg, 68%, 64%);
  text-transform: none;
  letter-spacing: 0.1rem;
  font-weight: none;
  font-family: "Raleway", sans-serif;
  line-height: 1.8;
  transition: color 0.3s;
}

/*=============================================
=            SECTION2 ENDS           =
=============================================*/
/*=============================================
=            SECTION3 STARTS           =
=============================================*/
.section3__text {
  font-size: clamp(1.4rem, 0.956rem + 0.1878vw, 2rem);
  color: #fff;
  text-transform: none;
  letter-spacing: 0.1rem;
  font-weight: none;
  font-family: "Raleway", sans-serif;
  line-height: 1.6;
}
.section3 .person__name {
  font-size: clamp(1.4rem, 0.956rem + 0.1878vw, 2rem);
  color: #fff;
  text-transform: none;
  letter-spacing: 0.1rem;
  font-weight: none;
  font-family: "Raleway", sans-serif;
  line-height: 1.6;
}
.section3 .person__title {
  font-size: 0.8rem;
  color: #fff;
  text-transform: none;
  letter-spacing: 0.1rem;
  font-weight: none;
  font-family: "Raleway", sans-serif;
  line-height: 1.6;
}

/*=============================================
=            SECTION3 ENDS           =
=============================================*/
/*=============================================
=            SECTION4 STARTS           =
=============================================*/
.section4__heading {
  font-size: clamp(1.125rem, 0.8169rem + 1.3146vw, 5rem);
  color: #fff;
  text-transform: none;
  letter-spacing: 0.1rem;
  font-weight: bold;
  font-family: "Raleway", sans-serif;
  line-height: none;
  text-align: center;
}
.section4__text {
  font-size: 1.4rem;
  color: #fff;
  text-transform: none;
  letter-spacing: 0.05rem;
  font-weight: none;
  font-family: "Raleway", sans-serif;
  line-height: 1.6;
  text-align: center;
}

/*=============================================
=            SECTION4 ENDS           =
=============================================*/
/*=============================================
=            FOOTER STARTS           =
=============================================*/
.footer__text {
  font-size: 1.6rem;
  color: #fff;
  text-transform: none;
  letter-spacing: 0.1rem;
  font-weight: none;
  font-family: "Raleway", sans-serif;
  line-height: 1.8;
}
.footer__link {
  font-size: 1.6rem;
  color: #fff;
  text-transform: capitalize;
  letter-spacing: 0.1rem;
  font-weight: none;
  font-family: "Raleway", sans-serif;
  line-height: none;
  transition: font-weight 0.3s;
}
.footer__link:hover {
  font-weight: bold;
}
.footer__contact {
  font-size: 1.4rem;
  color: #fff;
  letter-spacing: 0.1rem;
}
.footer__icon {
  font-size: 1.4rem;
  color: #fff;
  width: 2.8rem;
  height: 2.8rem;
  outline: 1px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s, outline 0.3s;
}
.footer__icon:hover {
  outline: 1px solid hsl(176deg, 68%, 64%);
  color: hsl(176deg, 68%, 64%);
  animation: footerIconAnimation 0.75s ease-in-out infinite;
}
@keyframes footerIconAnimation {
  0% {
    transform: scale(1);
  }
  50%, 100% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/*=============================================
=            FOOTER ENDS           =
=============================================*/
.text {
  transition: transform 0.5s ease-in-out;
}

.text__animation {
  transform: translate(4rem, 4rem);
}

.img {
  transition: filter 0.5s ease-in-out;
}

.img__blur {
  filter: blur(15px);
}

.btn {
  transition: transform 0.5s ease-in;
}

.btn__animation {
  transform: translate(4rem, 4rem) rotateX(360deg);
}

/*# sourceMappingURL=main.css.map */
