body{
    margin:0;
    padding:0;
    /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
    font-family: "Host Grotesk", sans-serif;
    font-optical-sizing: auto;
    /* font-weight: <weight>; */
    font-style: normal;
    color: black;
}

header{
    height:100px;
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding:0;
}

@media only screen and (max-width: 600px) {
  .menu{
    display: none;
  }
  .menu-container h2{
    
  }
}

.logo{
    padding:1rem 3rem;
}


.menu-container{
    padding: 0 3rem;
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: flex-end;

}

.menu-container .accent{
    line-height: 23px;
    color:#3d603e;
    margin: 0;
    padding:8px 0;
    font-size: clamp(14px, 2vw, 16px);
}


.menu ul {
    list-style-type: none;
    display:flex;
    margin:0;
    padding:0
}

.menu ul li{
    list-style-type: none;
    display:inline-block;
    font-size: 12px;
    padding-left:18px;
}

footer{
 display: flex;
 justify-content: space-between;
 padding:1rem 3rem;
}

.contact{
  display: flex;
  justify-content: space-around;
  flex-direction: row;
  gap:1rem;
}

.contact img.address-img{
  /* max-width: 100%; */
  height: clamp(50px, 2vw, 61px);
  aspect-ratio: 371/64;
  object-fit: contain;
}
.contact img.email-img{
  /* max-width: 100%; */
  height: clamp(50px, 2vw, 61px);
  aspect-ratio: 294/64;
  object-fit: contain;
}

@media only screen and (max-width: 600px) {
  .menu-container{
    justify-content: center;
  }
  .contact{
    flex-direction: column;
    gap:1rem;
    align-items: flex-start;
  }
  
  footer{
    flex-direction: column;
    gap:2rem;
  }
  .company{
    text-align: center;
  }
}

#slider{
  position:relative;
}

#slider .item {
    position: relative;
    max-width: 100%;
}


#slider .item img{
    max-width: 100%;
    width: 100vw;
}

.callout-txt{
    width: clamp(250px, 40%, 350px);
    position: absolute;
    top:50%;
    transform: translateY(-50%);
    left:3rem;
    z-index: 1;
    display: flex;
    flex-direction: column;
    background-color: rgba(255,255,255, 0.6);
    backdrop-filter: blur(5px);
}

@media only screen and (max-width: 600px) {
  .callout-txt{
    left:4rem;
    top:50%;
    transform: translateY(-50%);
  }
}

.callout-txt .header{
    font-size:clamp(12px, 2vw, 20px);
    font-weight: bold;
    padding: clamp(.5rem, 1vw, 1rem);;
    color: #3d603e;
    border-bottom:2px solid #558657;
}

.callout-txt .desc{
    font-size:clamp(12px, 1.5vw, 14px);
    padding: clamp(.5rem, 1vw, 1rem);
    color: black;
}

#slider.owl-theme .owl-next, #slider.owl-theme .owl-prev {
    width: 22px;
    height: 40px;
    margin-top: -20px;
    position: absolute;
    top: 50%;
  }
  #slider.owl-theme .owl-prev {
    left: 10px;
  }
  #slider.owl-theme .owl-next {
    right: 10px;
  }

  .owl-theme .owl-nav{

  }

  #slider.owl-theme .owl-next, 
  #slider.owl-theme .owl-prev{
    height:0;
    font-size: 4rem;
    top:40%;
  }

.main-container{
  position:relative;
}
  .prev{
    position: absolute;
    top:calc(50% - 30px);
    left:0;
    display: block;
    padding:20px 8px;
    cursor: pointer;
    background-color: rgba(0,0,0, 0.2);
    transition: all .2s;
  }

  .prev:hover{
    background-color: white;
  }

  .next:hover{
    background-color: white;
  }

  .next{
    position: absolute;
    top:calc(50% - 30px);
    right:0;
    padding:20px 8px;
    display: block;
    cursor: pointer;
    background-color: rgba(0,0,0, 0.2);
    transition: all .2s;
  }

  .leftarrow{
    /* background: url('images/arrow_left.svg') no-repeat ; */
    /* background-position: center; */
    height: 30px;
    width: 20px;
    scale: .6;
    display: block;
  }

  .rightarrow{
    /* background: url('images/arrow_right.svg') no-repeat; */
    /* background-position: center; */
    height: 30px;
    width: 20px;
    scale: .6;
    display: block;
  }


  
  .prev:hover  .arr{
    stroke:black
  }

  .next:hover .arr{
    stroke: black;
  }
