/**************/
/* HEADER SECTION*/
/**************/
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #e6f4f3;

  /* Get the header sticky - */
  height: 9.6rem;
  padding: 0 4.8rem;
}

.logo {
  height: 4.8rem;
}

/**************/
/* NAVIGATION*/
/**************/

/*.main-nav{
  display:flex;
  align-items: right;
  justify-content: right;
  position: absolute;
}*/

.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: #333;
  font-weight: 500;
  font-size: 1.8rem;
  transition: all 0.3s;
}

.main-nav-link:hover,
.main-nav-link:active {
  color: #00807c;
}

.main-nav-link.nav-cta:link,
.main-nav-link.nav-cta:visited {
  padding: 1.2rem 2.4rem;
  border-radius: 9px;
  color: #fff;
  background-color: #00807c;
}

.main-nav-link.nav-cta:hover,
.main-nav-link.nav-cta:active {
  background-color: #33a5a1;
}

/* 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 {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.97);
  z-index: 999;
}

/**************************/
/* HERO SECTION */
/**************************/

.hero {
  height: 100vh;
  position: relative;

  background-image: linear-gradient(
      rgba(34, 34, 34, 0.6),
      rgba(34, 34, 34, 0.6)
    ),
    url(../hero.jpg);
  background-size: cover;
  color: #fff;
}

.hero-title {
  font-weight: 700;
  color: #ffffff;
  /* color: #45260a; */
  /* color: #343a40; */
  letter-spacing: -0.5px;
  font-size: 5.2rem;
  line-height: 1.05;
  margin-bottom: 3.2rem;
}

.hero-description {
  font-size: 2rem;
  line-height: 1.6;
  margin-bottom: 4.8rem;
}

.hero-container {
  max-width: 120.0rem;
  position: relative;

  /* In relation to PARENT size */
  left: 50%;
  top: 50%;

  /* In relation to ELEMENT size */
  transform: translate(-50%, -50%);

  /* background-color: violet; */

  /* text-align: center; */
}

.hero-container-inner {
  width: 50%;
  /* background-color: blue; */
}

h1 {
  font-size: 5.2rem;
  margin-bottom: 3.2rem;
  line-height: 1.05;
}

/*.hero {
  max-width: 130rem;
  margin: 0 auto;
  padding: 0 3.2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9.6rem;
  align-items: center;
}

.hero-description {
  font-size: 2rem;
  line-height: 1.6;
  margin-bottom: 4.8rem;
}

.hero-img {
  width: 100%;
}/*

/**************************/
/* FEATURE */
/**************************/

.section-features {
  padding: 9.6rem 0;
}

.section-aboutusline {
  padding: 3.2rem 0;
}

.feature-icon {
  color: #00807c;
  height: 3.2rem;
  width: 3.2rem;
  background-color: #e6f4f3;
  margin-bottom: 3.2rem;
  padding: 1.6rem;
  border-radius: 50%;
}

.feature-title {
  font-size: 2.4rem;
  color: #333;
  font-weight: 700;
  margin-bottom: 1.6rem;
}

.feature-text {
  font-size: 1.8rem;
  line-height: 1.8;
}

/**************************/
/* CTA SECTION */
/**************************/

.section-cta {
  /* top / right / bottom / left */
  /* padding: 9.6rem 0 12.8rem 0; */

  /* top / horizontal / left */
  padding: 4.8rem 0 12.8rem;
}

.cta {
  display: grid;
  /* 2/3 = 66.6% + 1/3 = 33.3% */
  grid-template-columns: 2fr 1fr;
  /* background-color: #e67e22; */
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.15);
  border-radius: 11px;

  background-image: linear-gradient(to right bottom, #00726e, #33a5a1);
  overflow: hidden;
}

.cta-text-box {
  padding: 4.8rem 6.4rem 6.4rem 6.4rem;
  color: #45260a;
}

.cta .heading-secondary {
  /* color: #45260a; */
  color: inherit;
  margin-bottom: 3.2rem;
}

.cta-text {
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 4.8rem;
  color: #fff;
}

.cta-img-box {
  background-image: linear-gradient(
      to right bottom,
      rgba(235, 151, 78, 0.35),
      rgba(230, 125, 34, 0.35)
    ),;
  background-size: cover;
  background-position: center;
}

.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-weight: 500;
  margin-bottom: 1.2rem;
  color: #fff;
}

.cta-form input,
.cta-form select {
  width: 100%;
  padding: 1.2rem;
  font-size: 1.8rem;
  font-family: inherit;
  color: inherit;
  border: none;
  background-color: #fdf2e9;
  border-radius: 9px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.cta-form input::placeholder {
  color: #aaa;
}

.cta *:focus {
  outline: none;
  box-shadow: 0 0 0 0.8rem rgba(253, 242, 233, 0.5);
}

/**************************/
/* FOOTER */
/**************************/

.footer {
  padding: 12.8rem 0;
  border-top: 1px solid #eee;
}

.grid--footer {
  grid-template-columns: 1.5fr 1.5fr 1.5fr 1.5fr;
}

.logo-col {
  display: flex;
  flex-direction: column;
}

.logo-footer {
  height: 3rem;
}

.footer-logo {
  display: block;
  margin-bottom: 3.2rem;
}

.social-links {
  list-style: none;
  display: flex;
  gap: 2.4rem;
}

.social-icon {
  height: 2.4rem;
  width: 2.4rem;
}

.copyright {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #767676;
  margin-top: auto;
}

.footer-heading {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 4rem;
}

.contacts {
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.6;
}

.address {
  margin-bottom: 0.6rem;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.footer-link:link,
.footer-link:visited {
  text-decoration: none;
  font-size: 1.6rem;
  color: #767676;
  transition: all 0.3s;
}

.footer-link:hover,
.footer-link:active {
  color: #555;
}

/**************************/
/* ABOUT SECTION */
/**************************/

.about {
  height: 35vh;
  position: relative;

  background-image: linear-gradient(
      rgba(135, 135, 135, 0.6),
      rgba(128, 128, 128, 0.179)
    ),
    url(../about/about.jpg);
  background-size: cover;
  color: #fff;
}

.section-aboutus {
  margin-top: 2.4rem;
}

.about-title {
  text-align: center;
  font-size: 4.4rem;
  text-transform: uppercase;
  color: #333;
  font-weight: 400;
  margin-bottom: 2.4rem;
  margin-top: 2.4rem;
}

.about-text {
  text-align: left;
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #333;
}

.about-undertitle {
  text-align:center;
  font-size: 3rem;
  text-transform: uppercase;
  color: #333;
  font-weight: 500;
  margin-top: 2.4rem;
  margin-bottom: 2.4rem;
}

/**************************/
/* QUALITY SECTION */
/**************************/


.erai-text {
  align-content: center;
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #333;
}

.quality {
  height: 35vh;
  position: relative;

  background-image: linear-gradient(
      rgba(135, 135, 135, 0.6),
      rgba(128, 128, 128, 0.179)
    ),
    url(../about/about.jpg);
  background-size: cover;
  color: #fff;
}

.quality-title {
  font-size: 2.4rem;
  color: #333;
  font-weight: 700;
  margin-top: 1.6rem;
}

.quality-text {
  font-size: 1.8rem;
  line-height: 1.8;
}

/**************************/
/* CONTACT SECTION */
/**************************/

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 3.2rem;
  row-gap: 2.4rem;
  padding: 2.4rem;
}

.contact-form label {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 1.2rem;
  color: rgb(0, 0, 0);
}

.contact-form input,
.contact-form select {
  width: 100%;
  padding: 1.2rem;
  font-size: 1.8rem;
  font-family: inherit;
  border:solid;
  border-color: rgba(106, 106, 106, 0.356);
  border-radius: 0.2rem;
  background-color: #ffffff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.contact-form input::placeholder {
  color: rgb(0, 0, 0);
}

.contact *:focus {
  outline: none;
  box-shadow: 0 0 0 0.8rem rgba(253, 242, 233, 0.5);
}

.ed {
  width: 200%;
  margin-bottom: 1.2rem;
}

textarea {
  resize: none;
  font-size: 1.8rem;
  font-family: inherit;
}

.disclaimer-text
{
text-align: left;
font-size: 1.2rem;
padding: 0.8rem;
}

.disclaimer-text {
  text-align: left;
  font-size: 1.8rem;
  color: #333;
}
.disclaimer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.disclaimer2-text {
  text-align: left;
  font-size: 1.8rem;
  color: #333;
  margin-top: 3.2rem;
}