/**************************/
/* HEADER */
/**************************/
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;

  padding: 1rem 4.8rem 0.4rem 4.8rem;
}

.logo {
  height: 6rem;
}

/**************************/
/* NAVIGATION */
/**************************/

.main-nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4.8rem;
}

.main-nav-link:link,
.main-nav-link:visited {
  display: inline-block;
  text-decoration: none;
  color: #555;
  font-weight: 400;
  font-size: 1.8rem;
  transition: all 0.3s;
}

.main-nav-link:hover,
.main-nav-link:active {
  color: #e19e05;
}

.main-nav-link.nav-cta:link,
.main-nav-link.nav-cta:visited {
  padding: 1.2rem 2.4rem;
  border-radius: 9px;
  color: #fff;
  background-color: #e4827f;
}

.main-nav-link.nav-cta:hover,
.main-nav-link.nav-cta:active {
  background-color: #e19e05;
}

/* MOBILE */
.btn-mobile-nav {
  border: none;
  background: none;
  cursor: pointer;

  display: none;
}

.icon-mobile-nav {
  height: 4.8rem;
  width: 4.8rem;
  color: #333;
}

.icon-mobile-nav[name="close-outline"] {
  display: none;
}

/* STICKY NAVIGATION */
.sticky .header {
  position: fixed;
  background-color: rgba(255, 255, 255, 0.93);
  top: 0;
  width: 100%;
  height: 7rem;
  padding-top: 0;
  padding-bottom: 0;
  z-index: 999;
  box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.07);
}

.sticky .section-hero {
  margin-top: 7.35rem;
}

/**************************/
/* HERO SECTION */
/**************************/
.section-hero {
  padding: 4.8rem 0 9.6rem 0;
}

.hero {
  max-width: 100%;
  /* max-width: 130rem; */
  margin: 0 auto;
  position: relative;

  display: grid;
  grid-template-columns: 1.5fr 1fr;
  align-items: center;
  justify-items: center;
}

.hero-description {
  padding: 0 4.8rem;
  color: #fff;
}

/* Set the background-color on the hero section */
.hero::before {
  position: absolute;
  content: "";
  /* top: -30%; */
  left: -40%;
  top: -5.7%;
  background-color: #d22f2a;
  width: 100%;
  height: 100%;
  z-index: -1;
  border-radius: 30px;
}

.hero-p {
  font-size: 2.4rem;
  line-height: 1.3;
  letter-spacing: 1px;
  margin-bottom: 2rem;
}

.hero-img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.hero-cta {
  padding: 0 6.4rem;
}

.hero-cta-text {
  color: #d7443f;
  font-size: 3.6rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 6.4rem;
  text-align: center;
  width: 95%;
}

.hero-cta-form {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}

.hero-cta-form label {
  display: block;
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 500;
  /* margin-bottom: 0.8rem; */
}

.hero-cta-input {
  width: 100%;
  padding: 1.2rem;
  font-size: 1.8rem;
  border: solid 1px;
  border-radius: 15px;
  /* background-color: #fdf2e9; */
  font-family: inherit;
}

.hero-cta-input::placeholder {
  color: #aaa;
}

.hero-submittion {
  margin-top: 3.2rem;
  text-align: center;
  font-size: 2.4rem;
}

.hero-btn--form {
  align-self: center;
  padding: 2.4rem;
}

/**************************/
/* Identity SECTION */
/**************************/

.section-identity {
  padding-bottom: 9.6rem;
}

.identity-content {
  max-width: 100%;
  padding: 1.6rem;
  align-items: center;
  justify-items: center;
}

.grid-identity {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 2.8rem;
}

.identity-1 {
  justify-self: end;
}

.identity-3 {
  justify-self: start;
}

.identity-description {
  margin: 0 auto 6.4rem;
  text-align: center;
}

.identity-description h2 {
  font-size: 4.4rem;
}

.identity-item {
  display: grid;
  grid-template-rows: 1fr 1.5fr;
  align-items: center;
  justify-items: center;
  row-gap: 2.4rem;

  background-color: #d7443f;
  color: #fff;
  border-radius: 30px;
  padding: 3.2rem;
  text-align: center;

  width: 36rem;
  height: 36rem;
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.4s;
}

.identity-item:hover {
  transform: translateY(-1.4rem);
  box-shadow: 0 3.2rem 6.4rem rgba(0, 0, 0, 0.15);
}

.identity-item-text {
  font-weight: 400;
  font-style: italic;
  line-height: 1.2;
  font-size: 2.4rem;
}

/**************************/
/* HOW IT WORKS SECTION */
/**************************/

.section-how {
  padding: 8rem 0;
  /* background-color: #f6d5d4; */
}

.step-number {
  font-size: 8.6rem;
  font-weight: 600;
  color: #e6e6e6;
  margin-bottom: 1.2rem;
}

.step-description {
  font-size: 2rem;
  line-height: 1.6;
}

.style-italic {
  font-style: italic;
  font-weight: 700;
}

.step-icon-box {
  position: relative;

  display: flex;
  justify-content: center;
  align-items: center;
}

.step-icon-box::before,
.step-icon-box::after {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.step-icon-box::before {
  width: 55%;
  padding-bottom: 55%;
  background-color: #fbeaea;
  z-index: -2;
}

.step-icon-box::after {
  width: 45%;
  padding-bottom: 45%;
  background-color: #f6d5d4;
  z-index: -1;
}

.step-img {
  width: 50%;
}

.step-icon {
  width: 100%;
  height: 20rem;
}

/**************************/
/* CTA SECTION */
/**************************/

.section-cta {
  padding: 9.6rem 0;
}

.cta {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  background-color: #f6d5d4;
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.15);
  border-radius: 11px;

  background-image: linear-gradient(to right bottom, #e4827f, #db5955);
  overflow: hidden;
}

.cta-text {
  font-size: 2rem;
  line-height: 1.8;
  margin-bottom: 4.8rem;
}

.cta-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 3.2rem;
  row-gap: 2.4rem;
}

.cta-form label {
  display: block;
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 500;
  /* margin-bottom: 0.8rem; */
}

.cta-text-box {
  padding: 4.8rem 6.4rem 6.4rem;
  color: #541311;
}

.cta .heading-secondary {
  color: #541311;
}

.cta-img-box {
  background-image: linear-gradient(to right bottom, hsla(2, 65%, 70%, 0.171), rgba(219, 89, 85, 0.101)), url(../image/img02.jpg);
  background-size: cover;
  background-position: bottom;
}

.cta-input {
  width: 100%;
  padding: 1.2rem;
  font-size: 1.8rem;
  border-radius: 15px;
  font-family: inherit;
  border: none;
  background-color: #fdf2e9;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.cta-input::placeholder {
  color: #aaa;
}

.cta *:focus {
  outline: none;
  box-shadow: 0 0 0 0.8rem rgba(170, 170, 170, 0.5);
}

/**************************/
/* FOOTER SECTION */
/**************************/

.footer {
  padding: 9.6rem 2.4rem;
  border-top: 1px solid #eee;
}

.grid--footer {
  /* grid-template-columns: 2fr 2fr 1fr; */
  grid-template-columns: repeat(2, 1fr);
}

.logo-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3.2rem;
}

.footer-logo {
  display: block;
  /* margin-bottom: 2.4rem; */
}

/* For Social icon */
/* .social-links {
  list-style: none;
  display: flex;
  gap: 2.4rem;
}

.social-icon {
  height: 2.4rem;
  width: 2.4rem;
} */

.copyright {
  font-size: 1.4rem;
  line-height: 1.2;
  color: #767676;
  /* margin-top: auto; */
}

.footer-heading {
  font-size: 1.8rem;
  font-weight: 500;
  justify-self: center;
  padding: 2.4rem 0;
}

.contacts {
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.2;
}

.address-col {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.address {
  margin-bottom: 2.4rem;
}

.nav-col {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.footer-nav {
  list-style: none;
  display: grid;
  flex-direction: column;
  gap: 2.4rem;
}

.footer-link:link,
.footer-link:visited {
  text-decoration: none;
  font-size: 1.6rem;
  color: #767676;
  word-break: break-all;
  transition: all 0.3s;
}

.footer-link:hover,
.footer-link:active {
  color: #333;
}

/* Header Logo 20250527*/
img.lazy {
  min-height: 1px;
}
