@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,500&display=swap');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

p,
h2,
h3,
h4{
    font-family: 'Montserrat', sans-serif !important;
    margin: 0 !important;
}

a{
    text-decoration: none !important;
    transition: 0.3s all ease;
}

a:hover{
    color: #8d7249 !important;
}

.navtop{
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 1px 1px 4px 0 #b0b0b0;
  height: 35px;
  margin: 5px 2px 0 3px;
  position: fixed;
  width: 35px;
  display: none;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s all ease;



  bottom: 2em;
  right: 1.2em;
}

.navtop button{
  background: transparent;
  border: none;
  font-size: 22px;
}

.navtop:hover i{
  color: #8d7249;
}

.menuCustom_wrapper {
    max-width: 1250px;
    margin: 0 auto;
}

.menuCustom_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
    margin-top:25px;
    flex-direction: column;
}

.menuCustom_header a{
    color: #414141 !important;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif !important;
    text-decoration: none;
    font-weight: 600;

    position: absolute;
    right: 20px;
}

.menuCustom_header a:hover{
    color: #8d7249 !important;
}

.menuCustom_logo img{
    max-width: 149px;
    padding-top: 8px;
}

span.subtitle_menu {
  margin-bottom: 10px;
  font-size: 19px  !important;
  margin-top: 12px;
  font-weight: 600 !important;
}

nav.menuCustom_nav {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 25px;
}

.menuCustom_nav button{
    background: transparent;
    border: none;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.2 !important;
    padding: 5px;
    border-bottom: 2px solid transparent;
}

.menuCustom_nav button.active{
    color: #8d7249;
    border-bottom: 2px solid #8d7249;
}

.scrollable-area{
    overflow-y: auto !important;
    overflow-x: hidden;
    scrollbar-width: thin;
    padding: 0 15px;
}

.menuCustom_nav button:hover{
    color: #8d7249 !important;
}

.menuCustom_main{
    border-top: 1px solid #ccc;
    padding: 25px 0 0;
}

.menuCustom_content{
    display: none;
}

.menuCustom_content.active{
    display: block;
}

.menuCustom_content_logo{
   text-align: center;
}

.menuCustom_content_header{
    text-align: center;
    padding: 40px 0;
}

.menuCustom_content_header h2{
    font-weight: 800;
    margin-bottom: 8px !important;
    font-size: 24px;
}

.menuCustom_content_header h3{
    margin-bottom: 8px !important;
    font-size: 16px;
}

.menuCustom_content_header p{
    font-size: 14px;
}

.menuCustom_content_header,
.menuCustom_content_body,
.menuCustom_content_footer{
    width: 100%;
    max-width: 750px;
    margin: 0 auto;
}

.menuCustom_desc{
    margin-bottom: 35px;
}

.menuCustom_desc h4{
    text-transform: uppercase;
    font-weight: 800;
    font-size: 20px;
    color: #8d7249;
    margin-bottom: 10px !important;
}

.menuCustom_details{
    display: flex;
    justify-content: space-between;
    font-size: 16px;
}

.menuCustom_text {
    width: 75%;
}

.menuCustom_text span{
  display: block;
  font-weight: 700;
  font-size: 17px;
}
.menuCustom_text p{
    margin-bottom: 10px !important;
    font-size: 15px !important;
}

.menuCustom_content_footer{
    padding-top: 0;
    padding-bottom: 20px;
    text-align: center;
    font-size: 14px;
}

/* dropdown */

  .drop-down{
    position: relative;
    text-align: center;
    cursor: pointer;
    width: 90%;
    margin: 0 auto 25px;
    font-family: 'Montserrat', sans-serif !important;
  }

  #menu_mobile .drop-down{
    z-index: 10;
  }

  .drop-down i{
    margin-left: 4px;
  }

  .drop-down .options ul li{
    display: flex;
    justify-content: center;
  }

  .drop-down .options ul li button.active{
    color: #8d7249;
    text-decoration: none !important;
    position: relative;
  }

  .drop-down .options ul li button.active:after {
    content: '';

    width: 100%;
    position: absolute;
    left: 0;
    bottom: 1px;

    border-width: 0 0 1px;
    border-style: solid;
}
  
  .drop-down .selected button{
    background:#fff no-repeat scroll right center;
    display:flex; 
    justify-content: center;
    align-items: center;
    padding-right:0; 
    width:100%;
    border-radius:2px;
    text-decoration:none;
    color:#414141;
    text-transform: uppercase;
    font-size: 15px;
    border: none;
    font-weight: 500;
  }
  
  .drop-down .selected button span{
    cursor:pointer; 
    display:block; 
    padding:5px;
  }
  
  .drop-down .option{
    position:relative; 
  }
  
  .drop-down .options ul{
    background:#fff none repeat scroll 0 0;               
    display:none;
    list-style:none; 
    padding:0px 0px; 
    position:absolute; 
    left:0px; 
    top:32px; 
    width:auto; 
    min-width:100%;
    padding: 10px;
    border:1px solid #d7d7d7;
    padding: 10px 0 14px;
  }
  
  .drop-down .selected span.value, .drop-down .options span.value{
    display: none;
  }
  
  .drop-down .options ul li button{
    padding:5px; 
    display:block;
    text-decoration:none;
    color:#414141;
    text-transform: uppercase;
    font-size: 15px;
    border: none;
    background: transparent;
    font-weight: 500;
  }
  
  .drop-down .options ul li button:hover{
    color:#8d7249;
    transition:0.2s ease;
  }

  #menu_dekstop{
    display: none;
  }

  #menu_mobile{
    display: block;
  }

  .show_mobile{
    display: block !important;
  }

  .show_dekstop{
    display: none !important;
  }

  .menuCustom_logo{
    padding-bottom: 8px;
  }

  .small_hide{
    display: none !important;
  }

  .titleTop{
    font-family: 'Montserrat', sans-serif !important;
    font-size: 18px;
    font-weight: 600;
  }

@media (min-width: 993px){

  .show_mobile{
    display: none !important;
  }

  .show_dekstop{
    display: block !important;
  }

  #menu_dekstop{
    display: flex;
  }

  .menuCustom_logo{
    padding-bottom: 0;
  }

  #menu_mobile{
    display: none;
  }

}
  @media (min-width: 1200px){
    .small_hide{
      display: block !important;
    }
    .navtop{
      bottom: 3.5em;
      right: 2em;
    }
    .menuCustom_text {
        width: 80%;
    }
    .drop-down .selected button{
        font-size: 17px;
    }
    .drop-down .options ul li button{
        font-size: 17px;
    }
    .drop-down{
        width: 45%;
    }
    .menuCustom_header {
        flex-direction: row;
        margin-bottom: 30px;
        margin-top:0;
    }
    .menuCustom_header a{
        position: relative;
        right: unset;
    }

    .menuCustom_content_header h2{
        font-size: 24px;
    }

    .menuCustom_content_header h3{
        font-size: 18px;
    }
    .menuCustom_content_header p{
        font-size: 15px;
    }

    .menuCustom_content_footer{
        padding-bottom: 15px;
    }
  }

  @media (min-width: 1600px){
    .menuCustom_content_header h2{
      font-size: 30px;
    }

    .menuCustom_content_header h3{
        font-size: 24px;
    }
    .menuCustom_content_header p{
        font-size: 16px;
    }
  }

  


