/*   F O N T S   I M P O R T   */
@import url('https://fonts.googleapis.com/css2?family=Lexend+Zetta:wght@100..900&family=Montserrat+Alternates:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  /*   M A I N   C O L O R S   V A R   */
--primary-color: #328e6e;
--medium-green: #67ae6e;
--light-green: #90c67c;
--secondary-color: #e1eebc;
--dark-color: #383838;
--light-color: #fafaf6;
--black: #000;
--white: #fff;

/* REM TRICK: 1REM = 10PX */
font-size: 62.5%;
}
body{ font-size: 1.6rem; }

/*   C S S   R E S E T   */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body, h1, h2, h3, h4, h5, h6, p, ol, ul {
  margin: 0;
  padding: 0;
  font-weight: normal;
}
img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/*   G E N E R A L   S T Y L E S   */
body {
  font-family: 'Montserrat Alternates', sans-serif;
  background-color: var(--light-color);
  color: var(--dark-color);
}

.limit-container{
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 50px;
}

/*   G E N E R A L   T E X T   S T Y L I N G   */
h1, h2, h3{
  font-weight: bold;
}

/*   H E A D E R   */
header {
  display: flex;
  justify-content: center;
  background-color: var(--primary-color);
  height: 100px;
  position: sticky;
  top: 0;
  z-index: 1;
}

/*   N A V I G A T I O N   */
header nav {
  max-width: 1440px;
  display: flex;
  flex: 1;
  justify-content: space-between;
  align-items: center;
  padding: 0 50px;
}
  .header-logo{
    height: 50%;
  }
  header nav img {
    height: 100%;
  }
  header nav > ul { column-gap: 15px;}
  header nav > ul li a {
    /* margin: 0 50px; */
    padding: 10px;
  }
    header nav ul > li {
      position: relative;
    }
      header nav ul > li a:hover {
        opacity: 70%;
      }
  header nav ul > li > a {
    outline: none;
  }
    header nav ul > li > a:focus {
      outline: 2px dashed #666;
      outline-offset: 4px;
    }
  header nav ul {
    display: flex;
    align-items: center;
  }
    header nav li {
      list-style: none;
    }
      header nav a {
        color: var(--light-color);
        text-decoration: none;
        transition: 0.3s ease-in-out;
      }

  /*   D R O P D O W N   */
  .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 5px;
    z-index: 10;
  }
    .dropdown > li a {
      margin: 0;
    }
    .dropdown li a {
      display: block;
      padding: 8px 10px;
      color: #333;
      text-decoration: none;
      border-radius: 5px;
      transition: 0.3s ease-in-out;
    }
      .dropdown li a:hover {
        background: var(--light-green);
        color: var(--light-color);
      }
      nav ul > li:hover > .dropdown,
      nav ul > li:focus-within > .dropdown {
        display: block;
      }

    /*   C A L L   T O   A C T I O N   B U T T O N   */
    .cta-button {
      padding: 20px;
      background-color: var(--light-green);
      border-radius: 10px;
      font-weight: bold;
      transition: 0.3s ease-in-out;
    }
      .cta-button:hover {
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
      }

/*   F O O T E R   */
footer{
  background-color: var(--dark-color);
  color: var(--light-color);
}
  footer section{
    max-width: 1440px;
    margin: 0 auto;
    padding: 50px;
    
    display: grid;
    grid-template-columns: 1fr 3fr;
    column-gap: 200px;
  }
  .footer-content{
    display: flex;
    justify-content: space-between;
  }
  footer article{
    display: flex;
    flex-direction: column;
    row-gap: 30px;
  }
    footer article p{
      font-size: small;
      margin-top: 10px;
    }
    footer section > article{
      max-width: 300px;
    }
    footer section > article p{
      width: 100%;
    }
    footer nav ul{
      display: flex;
      justify-content: space-around;
      gap: 30px;
    }
      footer nav ul li{
        list-style: none;
      }
        footer nav ul img,
        footer nav ul li a{
          width: 50px;
          height: 50px;
          transition: 0.3s ease-in-out;
        }
        footer nav ul img:hover,
        footer nav ul li a:hover{
            transform: scale(1.1);
        }
    footer article > ul{
      display: flex;
      flex-direction: column;
      row-gap: 5px;
    }
    footer article > ul li{
      list-style: none;
    }
      footer article > ul li a{
        text-decoration: none;
        color: var(--light-color);
        transition: 0.3s ease-in-out;
      }
        footer article > ul li a:hover{
          opacity: 70%;
        }

.copyright{
  display: flex;
  justify-content: center;
  text-align: center;
  background-color: var(--primary-color);
  padding: 20px;
  font-weight: bold;
  color: var(--light-color);
}
  .copyright p{
    font-weight: 500;
    width: 100%;
  }