* {
    box-sizing: border-box;
    margin: 0;
  }
  
  @font-face {
    font-family: laila;
    src: url(./font/Laila-Light.ttf);
  }
  
  @font-face {
    font-family: poppins;
    src: url(./font/Poppins-Regular.ttf);
  }
  
  body {
    height: 100%;
    font-family: "poppins", serif;
  }
  
  h1 {
    font-size: 36px;
    font-family: "laila", sans-serif;
  }
  
  h4 {
    font-size: 40px;
    font-family: "laila", sans-serif;
    text-transform: uppercase;
    font-weight: 400;
  }
  
  p {
    font-size: 16px;
    color: #181f25;
    font-family: "poppins", serif;
  }
  
  button {
    padding: 1rem;
    font-size: 14px;
    border: thin solid #000;
    border-radius: 0;
    background-color: transparent;
    cursor: pointer;
    outline: none;
    transition: all 0.5s;
  }
  
  button:hover {
    background-color: #AE9D84;
    border-color: white;
    color: white;
  }
  
  .navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 95px;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 20;
  }
  
  .navbarContent {
    height: 100%;
    width: 100%;
    margin: 0 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
  }
  
  .navbar__logo {
    flex: 0.4;
    padding: 10px 0;
  }
  
  .navbar__logo img {
    max-width: 100%;
    height: 70px;
    object-fit: contain;
  }
  
  .navbar__menuIcon {
    /* position: absolute;
    left: 50%;
    transform: translateX(0); */
    flex: 0.2;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .floatingNav {
    box-shadow: 0px 1px 10px #999;
    background-color: rgba(255, 255, 255, 1);
  }
  
  .menu_icon {
    /* flex: 0.33; */
  
    display: flex;
    flex-flow: column;
    cursor: pointer;
  }
  .line {
    width: 2.5rem;
    height: 0.2rem;
    background-color: black;
    margin-bottom: 0.5rem;
    transition: width 0.3s;
  }
  
  .line-1,
  .line-3 {
    width: 1.8rem;
  }
  
  .checked-line-1 {
    transform: rotate(-405deg) translate(-8px, 6px);
    width: 2.5rem;
  }
  
  .checked-line-2 {
    opacity: 0;
  }
  
  .checked-line-3 {
    transform: rotate(405deg) translate(-8px, -6px);
    width: 2.5rem;
  }
  
  .menu_icon:hover .line {
    width: 2.5rem;
  }
  
  .navbar__contactUs{
    flex: 0.4;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  
  
  .menu {
    width: 100%;
    position: fixed;
    top: 0;
    height: 101vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.95);
    z-index: 10;
    clip-path: circle(100px at 50% -15%);
    -webkit-clip-path: circle(100px at 50% -15%);
    transition: all 0.5s ease-out;
  }
  
  .menu_content {
    /* width: 100%; */
    max-width: 900px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .menu_content > ul {
    width: 100%;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .menu_content li {
    width: 200px;
    height: 150px;
    margin-bottom: 30px;
    margin-right: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .menu_content li span {
    font-size: 2rem;
  }
  
  .menu ul li a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #0E1F2F;
    text-decoration: none;
    transition: color 0.2s;
    text-align: left;
    font-size: 20px;
  }
  
  .menu ul li a:hover {
    color: #AE9D84;
  }
  
  .menu.showMenu {
    clip-path: circle(2000px at 50% -10%);
    -webkit-clip-path: circle(2000px at 50% -10%);
    overflow-y: visible;
  }
  

  .termsContainer{
      margin: 7rem auto ;
      max-width: 1200px;
      padding: 2rem;
  }

  .termsContainer > h1{
    text-align: center;
  }
  
  .footer {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    background-color: rgba(14, 31, 47, 1);
  }
  
  .footer__content {
    padding: 4rem;
    display: flex;
    justify-content: space-around;
  }
  
  .footer__socialLinks {
    border-bottom: 1px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .socialLink {
    display: flex;
    color: white;
    margin-right: 20px;
    margin-bottom: 20px;
  }
  .socialLink span {
    font-size: 1.5em;
    margin-right: 10px;
  }
  
  .socialLink a {
    color: white;
  }
  .footerIntro {
    flex: 0.34;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  
  .footerIntro > img {
    max-width: 100%;
    object-fit: contain;
  }
  
  .footer__qualidadText {
    margin-top: 20px;
    max-width: 430px;
  }
  
  .footer__qualidadText > p {
    color: white;
    /* margin-left: 20px; */
    text-align: center;
  }
  
  .footer__qualidadLogo {
    max-width: 100%;
    height: 75px;
  }
  
  .footer__quickLinks {
    flex: 0.33;
    min-height: 100%;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    color: white;
  }
  
  .quickLinks__content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }
  
  .footer__quickLinks h4 {
    font-size: 32px;
  }
  
  .footer__quickLinks ul {
    height: 100%;
    list-style: none;
    margin-top: 20px;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
  }
  
  .footer__quickLinks li {
    margin-bottom: 10px;
  }
  
  .footer__quickLinks ul > li > a {
    color: white;
    text-decoration: none;
  }
  
  .footer__contactUs {
    flex: 0.33;
  }
  
  .contact_logo {
    height: 30px;
    object-fit: contain;
  }
  
  .contactContainer {
    display: flex;
    color: white;
    margin-bottom: 10px;
  }
  .contactContainer > span {
    font-size: 1.5em;
    margin-right: 10px;
  }
  
  .footer__end {
    background-color: rgba(14, 31, 47, 1);
    padding: 1rem;
    display: flex;
    display: flex;
    justify-content: center;
  }
  
  .footer__end > p {
    color: #fff;
  }
  

  
  @media (max-width: 990px) {

    .footer h4{
      font-size: 28px;
    }
  
    .footer__content {
      padding: 2rem;
    }
  
    .footerIntro {
      flex: 0.4;
    }
  
    .footer__quickLinks {
      flex: 0.4;
    }
  
    .footer__contactUs {
      flex: 0.2;
    }
  
  }
  
  @media(max-width: 800px){
  
  h1 {
    font-size: 32px;
  }
  
  h4 {
    font-size: 36px;
  }
  
  p {
    font-size: 16px;
  }
  
  button {
    padding: 0.9rem;
    font-size: 12px;
  }
  
  .navbar__logo{
    padding-right: 4rem ;
  }
  

    .footer h4{
      font-size: 24px;
    }
  
    .footer__content {
      padding: 2rem 1rem;
    }
  
  
  }
  
  @media (max-width: 700px){
    
    h1 {
      font-size: 30px;
    }
    
    h4 {
      font-size: 32px;
    }
    
    p {
      font-size: 14px;
    }

    .banner__content > h1 {
      line-height: 3rem;
      font-size: 3rem;
      color: white;
    }
    
    button {
      padding: 0.9rem;
      font-size: 12px;
    }

    
    .footer h4{
      font-size: 20px;
    }
  
  
  }
  
  @media(max-width: 600px){
  
    h4{
      text-align: center !important;
    }
    
    .line{
      width: 2.0rem;
      height: 2px;
      background-color: black;
      margin-bottom: 0.5rem;
    }
    .line-1, .line-3{
      width: 1.5rem;
    }
    
  .menu_content > ul {
    width: 100%;
    padding: 0;
  }
  
  .menu_content li {
    width: 150px;
    height: auto;
    margin-bottom: 60px;
    margin-right: 0px;
  }
  
  .menu_content li span {
    font-size: 2rem;
  }
  
    .navbar{
      height: 80px;
      padding-right: 0 !important;
    }
    .navbarContent{
      margin: 0 30px;
    }
    .navbar__menuIcon{
      flex: 0.5;
      justify-content: flex-end;
    }
  
    .navbar__logo{
      flex: 0.5;
      padding-right: 10rem;
    }
  
    .navbar__contactUs{
      display: none;
    }

    .footer__content{ flex-direction: column; }
    .footerIntro{
      flex: 1;
    }
    .footer__quickLinks{
      flex: 1;
      margin-top: 30px;
    }
    .footer__end{
      text-align: center;
    }
  }