header .top-head{
    background: #000000a8;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    position: absolute;
    z-index: 9999;
    width: -webkit-fill-available;
}

header .top-head.fixed{
    position: fixed;
    background: #000;
    
}

header .top-head .text a{
    color: #fff;
    font-family: 'AM-Bold';
    font-size: 27px;
}

header .top-head .icons{
    display: flex;
    align-items: center;
    gap: 1rem;
}

header .images-container{
    position: relative;
}

header .images-container .images{
    overflow: hidden;
}

header .images-container .images .owl-nav{
    display: none;
}

header .images-container .images .image{
    height: 60vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

header .images-mask{
    position: absolute;
    top: 0;
    background: #00000082;
    display: flex;
    align-items: center;
    justify-content: center;
    width: -webkit-fill-available;
    height: 60vh;
}

header .images-mask span{
    font-family: "AM-Bold";
    font-size: 1.5rem;
    text-align: center;
    color: #fff;
}

/*search*/
.mb-menu-wrapper , .mb-search-wrapper{
    position: fixed;
    left: 0;
    top: 0;
    background: #000;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 9999999999999999;
    overflow-y: scroll;
}
.mb-menu-wrapper.show , .mb-search-wrapper.show{
    display: block;
}
.mb-menu-wrapper .mb-menu-container , .mb-search-wrapper .mb-search-container{
    padding: 25px;
}

.mb-menu-wrapper .mb-menu-container .mbm-header , .mb-search-wrapper .mb-search-container .mbs-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mbm-header .title h1 , .mbs-header .title h1{
    font-family: "Verdana";
    font-size: 35px;
    line-height: 25px;
    font-weight: bold;
}

.mbm-content , .mbs-content{
    padding-top: 40px;
}

.form-search {
    border-bottom: 1px solid #6f6f71;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.form-search .search-entry {
    font-size: 44px;
    font-weight: 700;
    line-height: 44px;
}

.form-search .search-entry {
    outline: none;
    border: none;
    background: none;
    color: #fff;
    width: 100%;
    font-family: "AM-Bold";
    font-size: 70px;
    font-weight: 700;
    line-height: 80px;
    opacity: 1;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.submit-search-form {
    background: 0 0;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit;
    height: 30px;
    width: 30px;
    cursor: pointer;
}

.submit-search-form img {
    height: 30px;
    width: 30px;
}


/* The side navigation menu */
.sidenav {
  width: 0;
  padding: 0;
  height: -webkit-fill-available;
  width: 0; /* 0 width - change this with JavaScript */
  position: fixed; /* Stay in place */
  z-index: 9999999999999999999; /* Stay on top */
  top: 0; /* Stay at the top */
  left: 0;
  background-color: #000; /* Black*/
  overflow-x: hidden; /* Disable horizontal scroll */
  padding-top: 60px; /* Place content 60px from the top */
  transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
}

.sidenav.open {
  display: flex;
  width: 350px;
  padding: 15px;
}

/* The navigation menu links */
.sidenav a {
  color: #fff;
}

/* When you mouse over the navigation links, change their color */
.sidenav a:hover {
  color: #fff;
}

/* Position and style the close button (top right corner) */


/* Style page content - use this if you want to push the page content to the right when you open the side navigation */
#page {
  transition: margin-left .5s;
}

/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
}

.sidenav .sidenav-head{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    justify-content: flex-end;
    height: 4rem;
    width: 350px;
    padding-right: 2rem;
    background: #000;
    z-index: 99999999999999999999;
}
.sidenav .sidenav-head .closebtn {
  font-size: 36px;
}



.sidenav .sidenav-content{
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.sidenav .sidenav-content .block{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sidenav .sidenav-content .block .title {
    color: #fff;
    font-family: 'AM-Bold';
    font-size: 20px;
}

.sidenav .news .post-cards{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sidenav .news .post-cards .post-card{
    display: flex;
    align-items: center;
    gap: 1rem;
}

.sidenav .news .post-cards .post-card .image{
    width: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sidenav .news .post-cards .post-card .image img{
    width: 100%;
    border-radius: 50%;
}
.sidenav .news .post-cards .post-card .title{
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.sidenav .news .post-cards .post-card .title span{
    color: #fff;
    font-family: 'AM-regular';
    font-size: 14px;
}


@media (max-width: 767px){
    header .top-head .text a {
        font-size: 4vw;
    }
    .sidenav.open {
        width: 100%;
    }
    .sidenav .sidenav-head{
        width: 95vw;
    }
    .form-search .search-entry {
        font-family: "AM-Bold";
        font-size: 33px;
    }
}