@font-face {
    font-family: 'Kiona';
    src: url(../Kiona-Regular.woff);
  }

@font-face {
  font-family: 'Gilroy';
  src: url(../Gilroy-Bold.woff);
}

@font-face {
  font-family: 'Gilroy-Light';
  src: url(../Gilroy-Light.woff);
}

:root {
  --color-1: black;
  --color-2: black;
  --color-3: #8d989e;
  --color-4: #C17e40;
  --color-5: #D6ae92;
  --color-6: #E6d7c4;
}
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  a, a:visited, a:link {
    color: black;
    text-decoration: none;
  }
  
  body {
      font-family: 'Gilroy', sans-serif;
      display: inline-block;
      margin: 5%;
      margin-top: 0;
  }

  p {
    font-family: 'Gilroy-Light', sans-serif;
  }
  .skip-to-main-content-link {
    position: absolute;
    left: -9999px;
    z-index: 999;
    padding: 1em;
    background-color: black;
    color: black;
    opacity: 0;
  }
  .skip-to-main-content-link:focus {
    left: 50%;
    transform: translateX(-50%);
    opacity: 1;
    color:white;
  }

  h1 {
    font-family: 'Kiona', sans-serif;
  }

  h2 {
    color: white;
    font-size: 1.75rem;
    text-align: center;
    padding: 4%;
    font-family: 'Kiona', sans-serif;
}

  .header {
    clear: both;
    height: 100px;
  }
    
  #logo {
      float:left;
      margin:0;
      width: 300px;
    }
    
    #navlist {
      float: right;
      transform: translate(0px, 75px);
    }
      
      
  li {
    display: inline;
    list-style-type: none;
    padding-right: 20px;
    margin-bottom: 20px;
    /* a:link{
        line-height: 75px;
        height: 75px;
      } */
    }

    #navlist li:hover {
      text-decoration: underline overline #C17e40 2px;
    }
  
    #navlist a {
      text-decoration: none;
      font-size: 1.25rem;
      color: #262626;
      font-family: 'Kiona',sans-serif;
    }
  
    #hamburger-input{
      display: none;
      }
      
      #hamburger-menu {
        float: right;
        width: 40px;
        height: 35px;
        display: none;
        border: none;
        padding: 0px;
        margin: 0px;
        margin-top: 30px;
        margin-right: 5%;
        background: linear-gradient(
          to bottom, 
          #C17e40, #C17e40 20%, 
          white 20%, white 40%, 
          #C17e40 40%, #C17e40 60%, 
          white 60%, white 80%, 
          #C17e40 80%, #C17e40 100%
        );
      }
      
      #hamburger-menu #sidebar-menu {
        visibility: hidden;
        position: fixed;
        top: 0;
        width: 75%;
        height: auto;
        background-color: #e6d7c4cc;
        padding: 0px 10px;
        box-sizing: border-box;
        z-index: 999; 
      }
      
      #hamburger-menu h3 {
      color: black;
      float: right;
      font-size: 2.2rem;
      }
      
      #hamburger-menu ul {
      padding-left: 0px;
      display: grid;
      text-align: center;
      margin-top: 100px;
      }
      
      #hamburger-menu li {
      list-style-type: none;
      }
      
      #hamburger-menu a {
      color: black;
      font-size: 1.25rem;
      text-decoration: none;
      font-weight: 100;
      font-family: 'Gilroy', sans-serif;
      }
      
      #hamburger-menu a:hover {
      text-decoration: underline;
      }
      
      #hamburger-input:checked + #hamburger-menu #sidebar-menu {
        visibility: visible;
        right: 0;
      }
  
#landing-container {
  position: relative;
  text-align: center;
  color: white;
}

#landing-container img {
  width: 100%;
}

.centered {
  color: black;
  font-size: 1.5rem;
  padding: 3%;
  width: 100%;
  font-weight: 600;
}

.centered h2 {
  font-size: 3rem;
}

.centered h2, .centered p {
  color: black;
  font-weight: 400;
}

.centered p {
  font-size: 1rem;
  margin-top: 3%;
}
    
.explore {
  align-items: center;
  background-clip: padding-box;
  background-image: linear-gradient(180deg, black, black);
  box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
  box-sizing: border-box;
  color: white;
  margin: 3%;
  cursor: pointer;
  display: inline-flex;
  font-family: system-ui,-apple-system,system-ui,"Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size: 16px;
  font-weight: 600;
  justify-content: center;
  line-height: 1.25;
  margin: 0;
  min-height: 3rem;
  padding: calc(.875rem - 1px) calc(1.5rem - 1px);
  position: relative;
  text-decoration: none;
  transition: all 250ms;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: baseline;
  width: auto;
}

.explore:hover,
.explore:focus {
  box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
  border: 3px solid #C17e40;
}

.explore:hover {
  transform: translateY(-1px);
}

.explore:active {
  background-color: white;
  box-shadow: rgba(0, 0, 0, .06) 0 2px 4px;
  transform: translateY(0);
  color: #C17e40;
}
   
#compete {
  background-color: var(--color-5);
  padding: 3%;
}

#compete h2 {
  color: var(--color-2);
}

.compete p {
  text-align: center;
}

#highlight {  
  padding-top: 3%;
}

.about-intro {
  text-align: center;
}

.highlights {
  border-top: 3px solid #C17e40;
  border-bottom: 3px solid #C17e40;
}

.highlights h2 {
  color: #3D4B54;
  text-align: center;
  font-size: 37px;
}
.cards {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
}


.cards_item {
  display: flex;
  padding: 1rem;
}

.card-item {
  text-align: center;
  width:75%;
  margin: auto;
}

.card-item img {
  width: 64px;
  border-radius: 8px;
  margin: auto;
}

@media (min-width: 40rem) {
  .cards_item {
    width: 33%;
  }
}

@media (min-width: 56rem) {
  .cards_item {
    width: 33.3333%;
  }
}

.card-prod {
  background-color: white;
  border-radius: 0.25rem;
  box-shadow: 0 20px 40px -14px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 7%;
}


  #services .card_content {
    padding: 1rem;
    height: 100%;
  }
  .card_title {
    color: black;
    font-size: 1.45rem;
    letter-spacing: 1px;
    margin: 0px;
    padding: 2%;
    text-align: center;
    margin-top: 1%;
    font-family: 'Kiona', sans-serif;
  }

  .card_text {
    color: black;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;    
    font-weight: 400;
    text-align: left;
  }

  #highlight-cards {
    margin-bottom: 5%;
  }

  .card-list {
    display: grid;
    max-width: 1250px;
    padding: 20px;
    gap: 20px;
    margin: auto;
    margin-top: 0;
  }

.let-us {
  font-size: 2rem;
  margin: auto;
  text-align: center;
}
.let-us h2 {
  color: black;
}

#getintouch {
  border: 1px solid #C17e40;
  margin-bottom: 3%;
}

#getintouch h2 {
  color: var(--color-2);
}

#getintouch p {
  text-align: center;
}

footer {
  background-color: var(--color-5);
  text-align: center;
}

#madres {
  text-align: center;
  padding: 3%;
}

#madres p {
  margin: 2%;
}
/* Float four columns side by side */
.footer-column {
  float: left;
  width: 25%;
  padding: 0 10px;
}

/* Remove extra left and right margins, due to padding in columns */
.footer-row {margin: 0 -5px;}

/* Clear floats after the columns */
.footer-row:after {
  content: "";
  display: table;
  clear: both;
}

/* Style the counter cards */
.footer-card {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2); /* this adds the "card" effect */
  padding: 16px;
  text-align: center;
  background-color: white;
  height: 125px;
}

/* Responsive columns - one column layout (vertical) on small screens */
@media screen and (max-width: 850px) {
  .footer-column {
    width: 50%;
    display: block;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 500px) {
  .footer-column {
    width: 100%;
  }
}

@media screen and (max-width: 825px) {
  #main-menu {
    display: none;
  }
  #hamburger-menu {
    display: inline;
  }
  #navlist {
    display: none;
  }
  #logo {
    width: 250px;
  }

}





