* {
  padding: 0;
  margin: 0;
  box-sizing:border-box;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: sans-serif;
  line-height: 1;
  font-weight: 400;
  color: #555;
  overflow-x: hidden;
}

/* .sticky {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 7rem;
  padding-top: 0;
  padding-bottom: 0;
  z-index: 99999;
  background-color: rgb(255, 255, 255);
} */

/*******************/
/* GENERAL SECTION */
/*******************/

.container {
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 3.2rem;
}

.grid {
  display: grid;
  row-gap: 9.6rem;
  column-gap: 6.4rem;
  margin-bottom: 9.6rem;
}

/* .grid:last-child {
  margin-bottom: 0;
} */

.grid:not(:last-child) {
  margin-bottom: 9.6rem;
}

.grid--2-cols {
  grid-template-columns: repeat(2, 1fr);
}

.grid--3-cols {
  grid-template-columns: repeat(3, 1fr);
}

.grid--4-cols {
  grid-template-columns: repeat(4, 1fr);
}

.grid--5-cols {
  grid-template-columns: repeat(5, 1fr);
}

.grid--center-v {
  align-items: center;
}

.heading-primary,
.heading-secondary,
.heading-tertiary {
  /* font-weight: 600; */
  /* color: rgb(8, 0, 0); */
  color: #ffffff;
  letter-spacing: -0.5px;
  text-align: center;
}

.heading-primary {
  font-weight: 200;
  font-size: 3.5rem;
  line-height: 1.05;
  margin-bottom: 1rem;
  margin-top: 8rem;
}

.heading-secondary {
  font-size: 4.4rem;
  line-height: 1.2;
  margin-bottom: 9.6rem;
}
.heading-tertiary {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-family:Arial, Helvetica, sans-serif;
  font-weight: 800;
  letter-spacing: 8;
  padding-bottom: 2.5rem;
}

.sub-heading {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  color: #cf711f;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
  letter-spacing: 0.75px;
}
.btn:link,
.btn:visited {
  display: inline-block;

  font-weight: 600;
  text-decoration: none;
  font-size: 2rem;
  padding: 1.6rem 3.2rem;
  border-radius: 9px;
  transition: background-color 0.3s;
  /* ONLY NESSECERRY  */
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.btn--full:link,
.btn--full:visited {
  background-color: #e67e22;
  color: white;
}

.btn--full:hover,
.btn--full:active {
  background-color: #cf711f;
}

.btn--outline:link,
.btn--outline:visited {
  background-color: white;
  color: #555;
}

.btn--outline:hover,
.btn--outline:active {
  background-color: #fdf2e9;
  /* border: 3px solid white; */
  box-shadow: inset 0 0 0 3px white;
}

.center-text {
  text-align: center;
}

.margin-right-sm {
  margin-right: 1.6rem !important;
}

.link:link,
.link:visited {
  display: inline-block;
  color: #e67e22;
  text-decoration: none;
  border-bottom: 1px solid #e67e22;
  padding-bottom: 0.2rem;
  transition: all 0.3s;
}

.link:hover,
.link:active {
  color: #cf711f;
  border-bottom: 1px solid transparent;
}

.list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

strong {
  font-weight: 700;
}

.margin-bottom-md {
  margin-bottom: 4.8rem !important;
}

.list-item {
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  line-height: 1.1;
}

.list-icon {
  width: 3rem;
  height: 3rem;
  color: #e67e22;
}

.btn-mobile-nav {
  border: none;
  background-color: none;
  cursor: pointer;
  display: none;
}

.icon-mobile-nav {
  height: 4.8rem;
  width: 4.8rem;
  color: #333;
}

.icon-mobile-nav[name="close-outline"] {
  display: none;
}

/* ******************** */
/* BELOW 1344 PX - smaller desktop */
/* ******************** */

@media (max-width: 84em) {
  .hero {
    max-width: 120em;
  }
  .heading-primary {
    font-size: 4.4rem;
  }
  .shape{
    width: 7rem;
    height: auto;
  }
  #Section-DSA{
    display: flex;
    flex-direction: row;
    gap: 3rem;
    margin-left: 20rem;
    margin-right: 20rem;
    /* border: 2px solid #cf711f; */
  }
  .DSA {
    /* padding: 9rem 0; */
    padding-bottom: 11rem;
    padding-top: 2rem;
    box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.077);
    border-radius: 1.2rem;
    overflow: hidden;
    transition: all 0.4s;
    margin-top: 2rem;
  }
  .content {
    padding: 1rem 2rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-items: center;
    text-align: center;
    /* width: 30rem; */
    height: 25rem;
  }
  
  .titles {
    font-size: 3rem;
    color: #333;
    font-weight: 800;
    margin-bottom: 3.2rem;
    margin-top: 3rem;
    text-align: center;
  }
  .title{
    font-size: 2rem;
    color: #333;
    font-weight: 600;
    margin-bottom: 3.2rem;
  }
  
  .attributes {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  
  .attribute {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    text-align: center;
    
  }
  
  .img {
    width: 100%;
    margin-bottom: 1rem;
  }
  .more{
    margin-top: 0.5rem;
    margin-left: 50%;
    transform: translate(-50%);
  }
}

/* ******************** */
/* BELOW 944 PX - Portrait tablets */
/* ******************** */

@media (max-width: 67em) {
  .attribute {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    text-align: center;
    
  }
  .heading-primary,.heading-tertiary{
    font-size: 2.5rem;
  }
#Section-DSA{
  display: flex;
  flex-direction: row;
  gap: 3rem;
  margin-left: 20rem;
  margin-right: 20rem;
  /* border: 2px solid #cf711f; */
}
.DSA {
  /* padding: 9rem 0; */
  padding-bottom: 10rem;
  padding-top: 1rem;
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.077);
  border-radius: 1.2rem;
  overflow: hidden;
  transition: all 0.4s;
  margin-top: 2rem;
}
.content {
  padding: 1rem 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-items: center;
  text-align: center;
  /* width: 30rem; */
  height: 20rem;
}
  .title{
    font-size: 1.5rem;
    color: #333;
    font-weight: 600;
    margin-bottom: 2rem;
  }
  
  .more{
    margin-top: 0.5rem;
    margin-left: 50%;
    transform: translate(-50%);
    font-size: 1.2rem;
  }
  .shape{
    width: 5rem;
    height: auto;
  }
  html {
    font-size: 50%;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 0 8rem;
    gap: 6.4rem;
  }

  .hero-img {
    width: 60%;
  }

  .hero-img-box,
  .hero-text-box {
    text-align: center;
  }
  .logos {
    height: 2.4rem;
  }
  .step-number {
    font-size: 7.4rem;
  }
  .content {
    padding: 2.4rem 3.2rem 3.2rem 3.2rem;
  }
  .section-DSA {
    grid-template-columns: 1fr;
  }
  .gall {
    grid-template-columns: repeat(6, 1fr);
  }
  .cta {
    grid-template-columns: 3fr 2fr;
  }
  .cta-form {
    grid-template-columns: 1fr;
  }
  .btn--form {
    margin-top: 1.2rem;
  }
  .btn-mobile-nav {
    display: block;
  }
  .main-nav {
    background-color: rgb(255, 245, 245, 0.97);
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    transform: translateX(100%);

    display: flex;
    align-items: center;
    justify-content: center;
    /* display: none; */
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: all 0.5s ease-out;
  }

  .nav-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translateX(0);
  }
  .main-nav-list {
    flex-direction: column;
    gap: 4.8rem;
  }
  .main-nav-link:link,
  .main-nav-link:visited {
    font-size: 3rem;
  }
  .nav-open .icon-mobile-nav[name="close-outline"] {
    display: block;
  }
  .nav-open .icon-mobile-nav[name="menu-outline"] {
    display: none;
  }
  .header {
    position: relative;
  }
}

/* ******************** */
/* BELOW 768 PX - smaller tablets */
/* ******************** */

@media (max-width: 48em) {
  .grid--3-cols,
  .grid--4-cols {
    grid-template-columns: repeat(2, 1fr);
  }

  .diets {
    grid-column: 1/-1;
    justify-self: center;
  }

  .heading-secondary {
    margin-bottom: 4.8rem;
  }

  .pricing-plan {
    width: 100%;
  }

  .grid--footer {
    grid-template-columns: repeat(6, 1fr);
  }

  .nav-col {
    grid-row: 1;
    grid-column: span 2;
    margin-bottom: 3.2rem;
  }

  .logo-col,
  .address-col {
    grid-column: span 3;
  }

  .logos img {
    height: 2.4rem;
  }
      .footer{
        font-size: 1.5rem;
       }
       .heading-primary,.heading-tertiary{
         font-size: 2.5rem;
       }
       .header-hero-image img{
         margin-top: 3rem;
         width: 40rem;
       }
}

/* ******************** */
/* BELOW 550 PX - Mobile */
/* ******************** */

@media (max-width: 36em) {
  .grid {
    row-gap: 4.8rem;
  }

  .grid--2-cols,
  .grid--3-cols,
  .grid--4-cols {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 0 3.2rem;
  }

  .section-hero {
    padding: 2.4rem 0 6.4rem 0;
  }

  .btn,
  .btn:link,
  .btn:visited {
    padding: 2.4rem 1.6rem;
  }

  .hero-img {
    width: 80%;
  }

  .logos img {
    height: 1.2rem;
  }
  .attribute {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: center;
    
  }
#Section-DSA{
  display: flex;
  flex-direction: row;
  gap: 3rem;
  margin-left: 10rem;
  margin-right: 10rem;
  /* border: 2px solid #cf711f; */
}
.DSA {
  /* padding: 9rem 0; */
  grid-template-columns: 1fr;
  padding-bottom: 10rem;
  padding-top: 2rem;
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.077);
  border-radius: 1.2rem;
  overflow: hidden;
  transition: all 0.4s;
  margin-top: 2rem;
}
.content {
  padding: 1rem 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-items: center;
  text-align: center;
  /* width: 30rem; */
  height: 20rem;
}
  .title{
    font-size: 2rem;
    color: #333;
    font-weight: 600;
    margin-bottom: 2rem;
  }
  
  .more{
    margin-top: 0.5rem;
    margin-left: 50%;
    transform: translate(-50%);
    font-size: 1.2rem;
  }
  .shape{
    width: 5rem;
    height: auto;
  }
  .footer{
   font-size: 1.5rem;
  }
  .heading-primary,.heading-tertiary{
    font-size: 2.5rem;
  }
  .header-hero-image img{
    margin-top: 3rem;
    width: 40rem;
  }
}

@media screen and (max-width: 768px) {
  .main-nav {
      display: none;
  }
}
