h1,h2,h3,p {margin:0;}
input, textarea, button {
    -webkit-border-radius:0;
    border-radius:0;
    padding: 0;
    outline: none;
}
button, button:focus {
    outline: none;
}
a:hover{
    text-decoration:none !important;

}
.hidden{
    display:none;
}

.w50{
    width:50%;
}

/* This used to work for parent element of button divs */

/* But it is not enough now, below dont hide play button parent div */

*::-webkit-media-controls-panel {
    display: none!important;
    -webkit-appearance: none;
}

/* Old shadow dom for play button */

*::--webkit-media-controls-play-button {
    display: none!important;
    -webkit-appearance: none;
}

/* New shadow dom for play button */

/* This one works */

*::-webkit-media-controls-start-playback-button {
    display: none!important;
    -webkit-appearance: none;
}


/* #Helper classes
================================================== */
a {
    text-decoration: none;
}
a:hover {
    text-decoration: none;
}
img {
    text-decoration: none;
}
.center_them {
    display:inline-block;
    zoom: 1;
    *display:inline;
}
.vertical_centering_css3 {
    position: relative;
    float: left;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.horizontal_centering_css3 {
    position: relative;
    float: left;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.d-flex {
    display: -ms-flexbox !important;
    display: flex !important;
}
.clear { clear: both; }
.left { float: left; }
.right { float: right; }
.pointer {cursor: pointer;}
.relative {position: relative;}
.absolute {position:absolute;}
.invisible {display: none;}
.block {display:block !important;}
.w100 {width:100%;}
.w100_important {width:100% !important;}
.center {text-align:center;}
.text-left {text-align:left !important;}
.upper {text-transform: uppercase;}
.bold {font-weight:bold;}
.decor_none {text-decoration: none;}
.border_none {border: 0 !important;}
.box_sizing {box-sizing:border-box;}
.overflow_hidden {overflow: hidden;}
.clearfix {
zoom:1;}
.clearfix:after {
    content: "";
    display: block;
    clear: both;
    height: 0;
}
.mt30 {
    margin-top: 30px;
}
.w50{
    width:50%;
}
.right{
    float:right;
}
.rotate180 {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}
.black {color:#111111;}
.white {color:#fff;}
.btn:hover {
    color: #fff;
    background:#1C3B56;
}


.mobile {
    display: none;
}



/* #Site styles
================================================== */
body {
    font-family: 'Cormorant', serif;
    font-weight: normal;
    background:#fff;
    float:left;
    width:100%;
    margin:0px;
    
}
main{
   float:left;
   width:100%;
   background: #000;
   margin-top:0px;
}
section{
    float:left;
    width:100%;
}
header{
    float:left;
    width:100%;
}
.top-header{
    float:left;
    width:100%;
    background:#000 ;
}
.big-site-wrap{
    width:1440px;
    margin:0 auto;
}
.small-site-wrap{
    width:900px;
    margin:0 auto;
}
.site-wrap{
    width:1000px;
    margin:0 auto;
}
.inner-content{
    display: flex;
    justify-content: space-between; 
    height: 40px;
    align-items:center;
}
.inner-content .top-info{
    float:left;
    color:rgba(234, 219, 179, 1);
    font-size:15px;
    padding:0 20px;
    box-sizing:border-box;
    border-right:1px solid rgba(234, 219, 179, 1);
}
.inner-content .top-info img{
    width:32px;
}
.inner-content .top-info:first-child{
    padding-left:0px;
}
.inner-content .top-info:last-child{
    border-right:none;
}
.inner-content .right-icons{
    display:flex;
    gap:10px;
    margin-top:10px;
    align-items: center;
}
.navigation{
    float:left;
    width:100%;
    padding-top:15px;
    padding-bottom:15px;
    box-sizing:border-box;
    background: rgba(0,0,0,0.5);
    position: absolute;
    z-index:99;
    top:40px;
}
.header-elements{
    float:left;
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items: center;
}
.logo-wrap{
    float:left;
}
.nav-wrap{
    float:left;
}
.nav-wrap .nav-item{
    float:left;
    list-style: none;
}
.dropdown-menu{
    display:none;
}
.dropdown-menu.active{
    display:block;
   position:absolute;
  top:55px;
  background:rgba(0,0,0,0.5); 
   min-width: 300px;
   padding:5px;
   box-sizing:border-box;
}
.dropdown-menu.active ul{
    flex-direction: column;
    gap:10px;
    padding-left:0px;
}
.dropdown-menu.active ul li{
    list-style: none;
}
.nav-wrap ul{
    display:flex;
    gap:30px;
}
.nav-wrap .nav-item .nav-link{
   font-size:16px;
   color:#fff;
   font-weight: 700; 
   text-transform:uppercase;
}
.nav-wrap .nav-item .nav-link:hover{
    color:rgba(234, 219, 179, 1);
}
.nav-wrap .nav-item.active .nav-link{
    color:rgba(234, 219, 179, 1);
}
.nav-link.dropdown-link{
    position:relative;
    padding-right:30px;
    box-sizing:border-box;
}
.nav-link.dropdown-link:after{
    position: absolute;
    content: "";
    right: 5px;
    top: 3px;
    background: url(../img/down.svg) no-repeat center;
    width: 15px;
    height: 15px;
    background-size: 13px;
}
.nav-link.dropdown-link:hover:after{
    position: absolute;
    content: "";
    right: 5px;
    top: 3px;
    background: url(../img/down-h.svg) no-repeat center;
    width: 15px;
    height: 15px;
    background-size: 13px;
}
.nav-link.dropdown-link.active:after{
    position: absolute;
    content: "";
    right: 5px;
    top: 3px;
    background: url(../img/down-h.svg) no-repeat center;
    width: 15px;
    height: 15px;
    background-size: 13px;
    transform: rotate(180deg);
}
.nav-link:hover{
    color:rgba(234, 219, 179, 1);
}

.contact-us{
    padding:5px 20px;
    box-sizing:border-box;
    border:1px solid rgba(234, 219, 179, 1);
    color:rgba(234, 219, 179, 1);
    border-radius:2px;
    font-size:14px;
    display:flex;
    align-items:center;
    height: 40px;
    font-family: 'Cormorant', serif;
    background: transparent;
    cursor: pointer;
}
.contact-us:hover{
    background:#000;
    color:#fff;
}
.for-desktop{
    display:flex;
    gap:70px;
}
.menu-btn{
    display:none;
}
.top-img-wrap{
    float:left;
    width:100%;
}
.slider .swiper-button-next, .slider1 .swiper-button-next, .slider2 .swiper-button-next, .slider3 .swiper-button-next, .slider4 .swiper-button-next{
    width:50px;
    height: 50px;
    border:1px solid rgba(234, 219, 179, 1);
    background: url("../img/see-more.svg") no-repeat center;
    background-size:80%;
}
.slider .swiper-button-next:hover, .slider1 .swiper-button-next:hover, .slider2 .swiper-button-next:hover, .slider3 .swiper-button-next:hover, .slider4 .swiper-button-next:hover{
    width:50px;
    height: 50px;
    border:1px solid rgba(234, 219, 179, 1);
    background: rgba(234, 219, 179, 1) url("../img/see-more-h.svg") no-repeat center;
    background-size:80%;

}
.slider .swiper-button-prev, .slider1 .swiper-button-prev, .slider2 .swiper-button-prev, .slider3 .swiper-button-prev, .slider4 .swiper-button-prev{
    width:50px;
    height: 50px;
    border:1px solid rgba(234, 219, 179, 1);
    background: url("../img/see-more.svg") no-repeat center;
    background-size:80%;
    transform: rotate(180deg);
}
.slider .swiper-button-prev:hover, .slider1 .swiper-button-prev:hover, .slider2 .swiper-button-prev:hover, .slider3 .swiper-button-prev:hover, .slider4 .swiper-button-prev:hover{
    width:50px;
    height: 50px;
    border:1px solid rgba(234, 219, 179, 1);
    background: rgba(234, 219, 179, 1) url("../img/see-more-h.svg") no-repeat center;
    background-size:80%;
    transform: rotate(180deg);

}
.thumbs-wrap{
    float:left;
    width:100%;
    border-top:1px solid #fff;
    border-bottom:1px solid #fff;
    padding-top:20px;
    padding-bottom:20px;
    box-sizing:border-box;
}
.thumbs-slider{
    width: 1000px;
    margin:0 auto;
}

.pag-box{
    display:flex;
    flex-direction:column;
    align-items: center;
    gap:10px;
    width:100%;
}
.pag-box img{
    width:50px;
    height: 50px;
}
.pag-box .sub-txt{
    color:rgba(255, 255, 255, 1);
    font-size:20px;
    text-transform:uppercase;
    font-weight: 500;
    float:left;
    width:100%;
    text-align:center;
    font-family: 'Roboto', sans-serif;
}
.top-img-wrap img{
    float:left;
    width:100%;
}
.image-txt-wrap{
    float:left;
    width:100%;
    position:relative;
}
.image-txt-wrap img{
    float:left;
    width:100%;
    min-height: 750px;
    max-height: 750px;
    height: 750px;
    object-fit: cover;
}
.image-txt-wrap .pag-box img{
    height: auto;
    min-height: auto;
}
.txt-box{
    position:absolute;
    top:300px;
    width:500px;
}
.txt-box.right{
    
    right:0;
}
.txt-box .title{
    font-size:36px;
    font-weight: bold;
    color:#fff;
    position:relative;
}
.txt-box .title:before{
    position:absolute;
    content: "";
    top:-150px;
    left:0;
    width:3px;
    height: 140px;
    background:url("../img/line.svg") no-repeat center;
    background-size:100%;
}
.events.txt-box .title:before{
    content:none;
}
.txt-box .title:after{
    position:absolute;
    content:"";
    bottom:-20px;
    left:0;
    width:140px;
    height: 10px;
    background:url("../img/bottom-line.svg") no-repeat center;
    background-size:100%;
}
.txt-wrap{
    float:left;
    width:100%;
    margin-top:30px;
    margin-bottom:30px;
    font-size:16px;
    line-height: 24px;
    color:#fff;
    min-height: 75px;
    max-height: 75px;
    overflow: hidden;
}
.see-more{
    float:left;
   width:150px;
   height: 50px;
   line-height: 50px;
   color: rgba(234, 219, 179, 1);
   border:1px solid rgba(234, 219, 179, 1);
   position:relative;
   padding-left:15px;
   font-size:16px;
   text-transform:uppercase;
   text-align:left;
   
}
.see-more:hover{
    background:rgba(234, 219, 179, 1);
    color:#000;

}
.see-more:after{
    position:absolute;
    content:"";
    right:15px;
    top:23px;
    width:30px;
    height: 5px;
    background:url("../img/see-more.svg") no-repeat center;
    background-size:100%;
}
.see-more:hover:after{
    position:absolute;
    content:"";
    right:15px;
    top:23px;
    width:40px;
    height: 5px;
    background:url("../img/see-more-h.svg") no-repeat center;
    background-size:100%;
}
.three-boxes{
    float:left;
    width:100%;
    display:flex;
    gap:25px;
    margin-bottom:30px;
}
.three-boxes .box{
    display:flex;
    flex-direction:column;
    width:33.33%;
}
.three-boxes .box img{
    float:left;
    width:100%;
}
.three-boxes .box .title{
   font-size:36px;
   font-weight: 700;
   color:#fff;
   margin-top:20px;
   margin-bottom:20px; 
}
.three-boxes .box .price{
   font-size:16px;
   color:#fff;
   font-weight: normal;
   margin-bottom:40px; 
}
.images{
    float:left;
    width:100%;
}
.two-images{
    float:left;
    width:100%;
    display: flex;
    gap:20px;
}
.two-images .left{
    width:50%;
    float:left;
}
.two-images .left img{
    width:100%;
    max-height: 440px;
    min-height: 440px;
    object-fit:contain;
}
.two-images .right{
    width:50%;
    float:right;
}
.two-images .right img{
    width:100%;
    max-height: 440px;
    min-height: 440px;
    object-fit:contain;
}
.video-box{
    float:left;
    width:100%;
    position:relative;
}
.video-box:before{
    position:absolute;
    content:"";
    width:90%;
    top:5%;
    left:5%;
    bottom:5%;
    right:5%;
    background:rgba(0,0,0,0.7);
}
.video-box:after{
    position:absolute;
    content:"";
    width:60px;
    height: 60px;
    left: 50%;
    transform: translate(-50%, -50%);
    top: 50%;
    background:url("../img/play-btn.svg") no-repeat center;
    background-size:100%;
}
.more-images{
    width:100%;
    float:left;
    display:flex;
    flex-wrap: wrap;
}

.more-images .small-img-box{
    width:25%;
    float:left;
    webkit-transition:0.7s;
    transition:0.7s;
}
.more-images .small-img-box img{
    float:left;
    width:100%;
     webkit-transition:0.7s;
    transition:0.7s;
    min-height: 295px;
    max-height: 295px;
    object-fit: cover;

    
}
.more-images .small-img-box:hover img{
    transform:scale(1.1);
}
.footer{
    float:left;
    width:100%;
}
.top-footer-wrap{
    float:left;
    width:100%;
    background:rgba(89, 25, 32, 1);
    padding:10px 0px;
    box-sizing:border-box;
    display: flex;
    justify-content: center;
}
.middle-footer{
    float:left;
    width:100%;
    height: 550px;
    background:url("../img/footer-bg.png") no-repeat center;
    background-size:cover;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footer-box{
    float:left;
    text-align:center;
    margin-top:18px;
}
/*.footer-box:after{
    position:absolute;
    content:"";
    left:0;
    bottom:-20px;
    width:150px;
    height: 10px;
    background:url("../img/footer-line.svg") no-repeat center;
    background-size:100%;
}*/
.footer-box .footer-title{
    color:rgba(7, 7, 7, 1);
    font-size:16px;
    font-weight: 700;
    margin-bottom:15px;
    width:100%;
    float:left;
    text-align:center;
    text-transform:uppercase;
    font-family: 'Roboto', sans-serif;

}
.footer-box .footer-link{
    color:rgba(7, 7, 7, 1);
    font-size:16px;
    font-weight: normal;
    font-family: 'Roboto', sans-serif;
    margin:0 10px;

    
}
.footer-box .footer-link:hover{
    color:rgba(89, 25, 32, 1);
}
.footer-box.bold .footer-link{
    font-weight: bold;
}
.footer-box img{
    margin-top:15px;
}
.bottom-footer-wrap{
    float:left;
    width:100%;
    background:rgba(89, 25, 32, 1);
    padding:10px 0px;
    box-sizin:border-box;
    
}
.bottom-footer{
    display:flex;
    justify-content: space-between;
}
.bottom-footer .left-part span{
    color:rgba(225, 219, 203, 1);
    font-size:16px;
}
.social-icons{
    display:flex;
    gap:10px;
}
.bottom-footer .soc-icon{
    width:18px;
    height: 18px;
}
.bottom-footer .social-icons img.hover{
    display:none;
}
.bottom-footer .soc-icon:hover img.no-hover{
    display:none;
}
.bottom-footer .soc-icon:hover img.hover{
    display:block;
    width:18px;
    height: 18px;
}
.top-img-wrap-about{
    float:left;
    width:100%;
    position:relative;
}
.top-img-wrap-about.map img{
    max-height: 1000px;
    width:100%;
    object-fit:cover;
}
.top-img-wrap-about.map:before{
    content:none;
}
.top-img-wrap-about:before{
    position:absolute;
    content:"";
    top:0;
    left:0;
    width:100%;
    height: 100%;
    background: linear-gradient(90deg, #070707 0%, rgba(7, 7, 7, 0.00) 48.96%, #070707 100%);
}
.top-img-wrap-about img{
    float:left;
    width:100%;
}
.top-img-wrap-about img:first-child{
    min-height: 470px;
    max-height: 470px;
    object-fit:cover;
}
.top-img-wrap-about .about-txt img{
    min-height: auto;
    max-height: auto;
}
.about-txt{
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    top:50%;
    text-align:center;
    max-width: 700px;
}
.about-txt h1{
    color:#fff;
    font-size: 36px;
    font-weight: 700;
    margin-bottom:10px;
    float:left;
    width:100%;
    text-align:center;
}
.w-auto img{
    width:auto;
}
.title-img{
   display: flex;
    justify-content: center; 
}
.sub-about{
  font-size:16px;
  color:#fff;
  font-family: 'Roboto', sans-serif;
  margin-top:30px;
  float:left;
  width:100%;
  text-align:center;
}
.sub-about .soc-icon:hover {
    filter: brightness(0) saturate(100%) invert(93%) sepia(14%) saturate(597%) hue-rotate(347deg) brightness(95%) contrast(92%);
}
.only-txt{
    display:inline-block;
    width: 450px;
    text-align: center;
    position: relative;
    margin-top:150px;
    margin-bottom:50px;
}
.only-txt:before{
    position: absolute;
    content: "";
    top: -150px;
    left: 50%;
    width: 3px;
    height: 140px;
    background: url(../img/line.svg) no-repeat center;
    background-size: 100%;

}
.only-txt p{
    color:#fff;
    font-family: 'Roboto', sans-serif;

}
.image-txt-cont{
    float:left;
    width:100%;
    display:flex;
    align-items:center;
}
.image-txt-cont .img-wrap{
    float:left;
    width:50%;
    position:relative;
}
.image-txt-cont .img-wrap .swiper-slide{
    position: relative;
}
.image-txt-cont .img-wrap.left .swiper-slide:before{
    position:absolute;
    content:"";
    left:0;
    top:0;
    bottom:0;
    width:70%;
    height: 100%;
background: linear-gradient(90deg, #070707 0%, rgba(7, 7, 7, 0.00) 100%);
    z-index:999;
}
.image-txt-cont .img-wrap.right .swiper-slide:before{
    position:absolute;
    content:"";
    right:0;
    top:0;
    bottom:0;
    width:70%;
    height: 100%;
background: linear-gradient(270deg, #070707 0%, rgba(7, 7, 7, 0.00) 100%);
    z-index:999;
}
.image-txt-cont.about .img-wrap{
    position: relative;
}
.image-txt-cont.about .img-wrap.left:before{
    position:absolute;
    content:"";
    left:0;
    top:0;
    bottom:0;
    width:70%;
    height: 100%;
background: linear-gradient(90deg, #070707 0%, rgba(7, 7, 7, 0.00) 100%);
    z-index:999;
}
.image-txt-cont.about .img-wrap.right:before{
    position:absolute;
    content:"";
    right:0;
    top:0;
    bottom:0;
    width:70%;
    height: 100%;
background: linear-gradient(270deg, #070707 0%, rgba(7, 7, 7, 0.00) 100%);
    z-index:999;
}
.image-txt-cont .img-wrap img{
    float:left;
    width:100%;
}
.image-txt-cont .text-wrap{
    float:left;
    width:50%;
    color:#fff;
        display: flex;
    justify-content: center;
}
.image-txt-cont .text-wrap .see-more{
    margin-top:20px;
}
.center-info{
    max-width: 450px;
    text-align:center;
}
.small-box{
   display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; 
}
.small-box .title{
    font-size:36px;
    float:left;
    width:100%;
    text-align:center;
    color:#fff;
    margin-bottom:20px;
}
.small-box .title span{
    position:relative;
}
/*.small-box .title span:after{
    position:absolute;
    content:"";
    left:0;
    bottom:-25px;
    width:200px;
    height: 5px;
    background:url("../img/bottom-line.svg") no-repeat center;
    background-size:100%;
}*/
.small-box p{
    float:left;
    width:100%;
    text-align:center;
    margin-top:40px;
    font-size:16px;
    font-family: 'Roboto', sans-serif;
    line-height: 24px;
    max-height: 150px;
    overflow: hidden;

    
}
.small-box.with-elem{
    float:left;
    width:100%;
    position:relative;
    margin-top:160px;
}
.small-box.with-elem p{
    margin-top:0px;
}
.small-box.with-elem .title:before{
    position: absolute;
    content: "";
    top: -150px;
    left: 50%;
    width: 3px;
    height: 130px;
    background: url(../img/line.svg) no-repeat center;
    background-size: 100%;
    
    
}
.small-box.with-elem:before{
    position: absolute;
    content: "";
    top: -150px;
    left: 50%;
    width: 3px;
    height: 130px;
    background: url(../img/line.svg) no-repeat center;
    background-size: 100%;
    
    
}
.left-content{
    width:785px;
    float:left;
    margin-top:20px;
}
.right-content{
    width:calc(100% - 785px);
    float:right;
    margin-top:40px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 20px;
}
.right-content .soc-icons-wrap{
    width: 40px;
    display: flex;
    gap: 20px;
    flex-direction: column;
}
.right-content .soc-icons-wrap .soc-icon img.hover{
    display:none;
}
.right-content .soc-icons-wrap .soc-icon:hover img.no-hover{
    display:none;
}
.right-content .soc-icons-wrap .soc-icon:hover img.hover{
    display:block;
}
.path{
    float:left;
    width:100%;
    display:flex;
    gap:5px;
    margin-top:20px;
    margin-bottom:20px;
    box-sizing:border-box;
}
.line{
    float:left;
    width:100%;
    height: 1px;
    background: rgba(234, 219, 179, 1);
    margin-bottom:1px;
}
.path .path-link{
    float:left;
    color:rgba(7, 7, 7, 1);
    font-size:16px;
    font-family: 'Roboto';
    text-transform:uppercase;
}
.path.other-style .path-link{
    float:left;
    color:#fff;
    font-size:16px;
    font-family: 'Roboto';
    text-transform:uppercase;
}
.text-content{
    float:left;
    width:100%;
}
.text-content img{
    width:100%;
    float:left;
}
.text-content p{
    float:left;
    width:100%;
    color:rgba(7, 7, 7, 1);
    font-size:16px;
    line-height: 24px;
    font-family: 'Roboto';
    margin-top:20px;
    margin-bottom:20px;
}
.image-content{
    width:100%;
    float:left;
}
.image-content img{
    width:100%;
    float:left;
}
.act-slider{
    padding-bottom:60px !important;
    box-sizing:border-box;
    display:flex;
    justify-content: space-around;
    padding-top:20px !important;
    
}
.act-slider .swiper-slide, .act-slider .swiper-slide img{
    web-kit-transition:0.7s;
    transition:0.7s;
    width:100%;
    min-height: 150px;
    max-height: 150px;
    object-fit:contain;
}
.act-slider .swiper-slide:hover img{
    transform:scale(1.2);
    margin-top:-5px;
    z-index:999;
}
.bottom-pagination{
        position: absolute;
    width: 140px;
    display: flex;
    height: 50px;
    z-index: 9999;
    bottom:10px;
}
.bottom-pagination .swiper-button-prev,  .activities-slider .swiper-button-prev{
    width: 50px;
    height: 50px;
    border: 1px solid rgba(234, 219, 179, 1);
    background: url(../img/see-more.svg) no-repeat center;
    background-size: 80%;
    transform: rotate(180deg);
}
.bottom-pagination .swiper-button-prev:hover, .activities-slider .swiper-button-prev:hover{
   width: 50px;
    height: 50px;
    border: 1px solid #000;
    background: url(../img/see-more-h.svg) no-repeat center;
    background-size: 80%;
    transform: rotate(180deg); 
}
.bottom-pagination .swiper-button-next, .activities-slider .swiper-button-next{
    width: 50px;
    height: 50px;
    border: 1px solid rgba(234, 219, 179, 1);
    background: url(../img/see-more.svg) no-repeat center;
    background-size: 80%;
}
.bottom-pagination .swiper-button-next:hover, .activities-slider .swiper-button-next:hover{
    width: 50px;
    height: 50px;
    border: 1px solid #000;
    background: url(../img/see-more-h.svg) no-repeat center;
    background-size: 80%;
}
.news-listing{
    float:left;
    width:100%;
    display:flex;
    flex-wrap:wrap;
    
}
.news-box{
    float:left;
    width:33.33%;
    position:relative;
    cursor:pointer;
    -webkit-transition:0.7s;
    transition:0.7s;
    min-height: 380px;
}
.news-img{
    float:left;
    width:100%;
    height: 380px;
}
.hover-info{
    float:left;
    width:100%;
    position:absolute;
    bottom:20px;
    left:35%;
    transform:translate(0, 0);
    display:none;
}
.hover-info.active{
    display:block;
}
.news-box img{
    float:left;
    width:100%;
    height: 380px;
    object-fit:cover;
}
.news-box:before{
    position: absolute;
    content: "";
    width: 90%;
    top: 5%;
    left: 5%;
    bottom: 5%;
    right: 5%;
    background: rgba(0,0,0,0.7);
}
.news-box:hover:before{
     position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0%;
    left: 0%;
    bottom: 0%;
    right: 0%;
    background: rgba(0,0,0,0.7);
}
.news-txt{
    position:absolute;
    top:50%;
    left:50%;
    transform: translate(-50%, -50%);
}
.news-txt p{
    font-size:20px;
    color:#fff;
    text-transform:uppercase;
    line-height: 30px;
    font-family: 'Roboto';
    float:left;
    width:100%;
    text-align:center;
    max-height: 120px;
    overflow: hidden;
}
.tabs-wrap{
    float:left;
    width:100%;
    margin-bottom:30px;
}
.all-cat{
    float:left;
    width:100%;
    margin-top:40px;
    margin-bottom:40px;
    border-top:1px solid #fff;
    border-bottom:1px solid #fff;
}
.bttns{
    float:left;
    width:100%;
}
.tabs-menu{
    float:left;
    width:100%;
    padding-left:0px;
    display:flex;
    margin:0px !important;
}
.tabs-menu li{
    float:left;
    width:25%;
    padding:20px 0px;
    box-sizing:border-box;
    border-left:1px solid #fff;
}
.tabs-menu li.active{
    position:relative;
}
.tabs-menu li.active:before{
    position:absolute;
    content:"";
    top:-5px;
    left:0;
    width:100%;
    height: 4px;
    background:rgba(234, 219, 179, 1);
}
.tabs-menu li:last-child{
    border-right:1px solid #fff;
}
.change-info{
    display:flex;
    flex-direction:column;
    align-items: center;
    gap:20px;
}
.change-info img{
    min-height: 35px;
    max-height: 35px;
}
.change-info span{
   font-family: 'Roboto';
   font-size:18px;
   font-weight: 500;
   color:#fff;
   text-transform:uppercase; 
   float:left;
   width:100%;
   text-align:center;
}
.tab{
    float:left;
    width:100%;
}
.cont-info{
    float:left;
    width:100%;
}
.cont-info p{
    float:left;
    width:100%;
    color:#fff;
    font-size:16px;
    line-height: 24px;
    margin-bottom:5px;
}
.contact-form{
    float:left;
    width:100%;
    margin-bottom:50px;
}
.contact-page .contact-us-txt{
    float:left;
    width:100%;
    color:#fff;
    margin-bottom:20px;
    font-family: 'Roboto';
    font-size:16px;
}
.contact-page .address{
    float:left;
    width:100%;
    color:#fff;
    padding-left:30px;
    box-sizing:border-box;
    position:relative;
    margin-bottom:15px;
}
.contact-page .address:before{
    position:absolute;
    content:"";
    left:0;
    top:-5px;
    width:30px;
    height: 30px;
    background:url("../img/address.svg") no-repeat center;
    background-size:60%;
}
.contact-page .email{
    float:left;
    width:100%;
    color:#fff;
    padding-left:30px;
    box-sizing:border-box;
    position:relative;
    margin-bottom:15px;
}
.contact-page .email:before{
    position:absolute;
    content:"";
    left:0;
    top:-5px;
    width:30px;
    height: 30px;
    background:url("../img/email.svg") no-repeat center;
    background-size:60%;
}
.contact-page .phone{
    float:left;
    width:100%;
    color:#fff;
    padding-left:30px;
    box-sizing:border-box;
    position:relative;
    margin-bottom:15px;
}
.contact-page .phone:before{
    position:absolute;
    content:"";
    left:0;
    top:-5px;
    width:30px;
    height: 30px;
    background:url("../img/phone-c.svg") no-repeat center;
    background-size:60%;
}
.contact-page form{
    float:left;
    width:100%;
    margin-top:30px;
}
.contact-page .inputs-holder{
    float:left;
    width:100%;
}
.contact-page .inputs{
    float:left;
    width:100%;
    margin-bottom:20px;
}
.contact-page .inputs .inp-hld{
    width:49%;
    float:left;
}
.contact-page .inputs .inp-hld label, .contact-form .inputs label{
    float:left;
    width:100%;
    color:#fff;
    font-size:16px;
    font-weight: 400;
    margin-bottom:5px;
}
.contact-page .inputs .inp-hld:first-child{
    margin-right:2%;
}
.contact-page .inputs .inp-hld input{
    float:left;
    width:100%;
    border:none;
    background: #fff;
    height: 50px;
    line-height: 50px;
    padding-left:10px;
    box-sizing:border-box;
}
.contact-page .inputs textarea{
    float:left;
    width:100%;
    min-height: 300px;
}
.contact-page .bottom-info{
    float:left;
    width:100%;
    margin-top:20px;
    display: flex;
    justify-content: space-between;
}
.contact-page .bottom-info .left-info{
    color:#fff;
    font-size:16px;
}
.contact-page .subtitle{
 color: #FFF;
 font-family: Roboto Condensed;
 font-size: 16px;
 line-height: 24px; /* 150% */
 letter-spacing: 0.16px;
 margin-top: 1rem;
}
.black-backhround-page{
    float:left;
    width:100%;
    background:#000;
    text-align:center;
}
.login-page{
   display:inline-block;
   min-width:440px;
   margin-top:135px;
   max-width: 440px;
   margin-bottom:100px;
}
.logo-top{
    float:left;
    width:100%;
}
.logo-top img{
    width:200px;
}
.hello-title{
    float:left;
    width:100%;
    color:#fff;
    font-size:16px;
    margin-top:20px;
}
.hello-title span{
    float:left;
    width:100%;
    margin-bottom:20px;
}
.sub-txt{
    float:left;
    width:100%;
    margin-top:20px;
    margin-bottom:20px;
    color:#fff;
    font-size:16px;
}
.login-inp{
    float:left;
    width:100%;
}
.login-inp input{
    float:left;
    width:100%;
    height: 50px;
    line-height: 50px;
    padding-left:10px;
    box-sizing:border-box;
    background:#fff;
    border:1px solid rgba(234, 219, 179, 1);
}
.enter-btn{
    float:left;
    width:100%;
    height: 50px;
    line-height: 50px;
    text-align:center;
    font-size:16px;
    background:none;
    border:1px solid rgba(234, 219, 179, 1);
    color:rgba(234, 219, 179, 1);
    margin-top:20px;
}
.social-login{
    float:left;
    width:100%;
    display: flex;
    flex-direction: column;

}
.social-login .btn-login{
    float:left;
    width:100%;
    text-align:center;
    margin-bottom:20px;
    height: 50px;
    line-height: 50px;
    
}
.social-login .fb-btn{
    position:relative;
    background:rgba(25, 114, 248, 1);
    color:#fff;

}
.social-login .fb-btn:before{
    position:absolute;
    content:"";
    background:url("../img/soc-fb.svg");
    width:40px;
    height: 40px;
    left:6px;
    top:4px;
    background-size:100%;
    
    
}
.social-login .google-btn{
    position:relative;
    background:rgba(248, 52, 25, 1);
    color:#fff;

}
.social-login .google-btn:before{
    position:absolute;
    content:"";
    background:url("../img/soc-google.svg");
    width:40px;
    height: 40px;
    left:6px;
    top:4px;
    background-size:100%;
    
    
}
.login-page p{
    float:left;
    width:100%;
    text-align:center;
    color:#fff;
    margin-top:20px;
    margin-bottom:20px;
    font-size:16px;
}
.questions-page .path .path-link{
   color:rgba(255, 255, 255, 1); 
}
.questions-page .tabs-menu li{
    width:50%;
}
.questions-page .text-content h2{
    color:#fff;
   font-size:16px;
   text-transform: uppercase;
   margin-bottom:20px; 
}


.search-form-wrap{
    position: absolute;
    bottom: 0;
    right: 0;
    transform: translateY(100%);
    min-width: 250px;
    max-width: 90vw;
    width: 350px;
    z-index: 9999999;
}    
.search-form {
    float: left;
    position: relative;
    width: 100%;
}

.search-form button {
    position: absolute;
    content: "";
    width: 50px;
    height: 50px;
    background: #000 url("../img/search.svg") no-repeat center;
    background-size: 70%;
    right: 5px;
    top: 5px;
    border: 1px solid #000;
    cursor: pointer;
    z-index: 99;
}

.search-form button:hover {
    position: absolute;
    content: "";
    width: 50px;
    height: 50px;
    background: #707070 url("../img/search.svg")no-repeat center;
    background-size: 70%;
    right: 5px;
    top: 5px;
    border: 1px solid rgba(234, 219, 179, 1);
}

.search-form input {
    float: left;
    width: 100%;
    height: 60px;
    background: #fff;
    border: none;
    padding: 5px;
    padding-left: 10px;
    box-sizing: border-box;
    border: 1px solid rgba(234, 219, 179, 1);
}
.navigation {
    z-index: 9999;
}

.map .leaflet-top {
    top: 6rem;
}

.map .leaflet-popup-content-wrapper {
    background-color: #D1AB42;
}

.map .leaflet-popup-tip {
    background: #D1AB42;
}

.map .leaflet-popup-content {
    color: #070707;
    text-align: center;
    font-variant-numeric: lining-nums tabular-nums;
    font-family: Cormorant Garamond;
    font-size: 1rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.5rem;
    /* 150% */
    letter-spacing: 0.01rem;
    text-transform: uppercase;
}

.map .leaflet-popup-content .popup-button {
    padding: 10px 20px;
    border-radius: 0.125rem;
    background: #070707;
    color: #fff;
    text-decoration: none;
    text-align: center;
    font-family: Cormorant;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.hover-black:hover {
    filter: brightness(0) saturate(0);
}
.all-results{
    float:left;
    width:100%;
}
.one-row{
    float:left;
    width:100%;
    display:flex;
    gap:20px;
    align-items: center;
    padding:15px;
    box-sizing:border-box;
    background:rgba(53, 46, 42, 0.8);
    justify-content: space-between;
}
.one-row:nth-child(even){
    background: rgba(53, 46, 42, 1);
}
.one-row .left-info{
    display:flex;
    gap:20px;
    align-items:center;
}
.one-row .txt{
    display: flex;
    flex-direction: column;
}
.one-row .txt .upper{
   color:rgba(234, 219, 179, 1);
   font-size:14px;
   text-transform:uppercase; 
}
.one-row .txt .smaller{
   color:rgba(234, 219, 179, 1);
   font-size:14px;
}
.one-row .img.circle img{
    width:45px;
    height: 45px;
    border-radius:100%;
    border:2px solid rgba(234, 219, 179, 1);
}
.one-row .punkts.plus{
    color:rgba(137, 186, 38, 1);
}
.one-row .punkts.minus{
    color:rgba(234, 219, 179, 1);
}
.one-row .contact-us{
    background: #000;
}
.settings-wrap{
    float:left;
    width:100%;
    padding:0 50px;
    box-sizing:border-box;
}
.settings-wrap form{
    float:left;
    width:100%;
}
.settings-wrap form .inp-hld{
    float:left;
    width:100%;
    margin-bottom:20px;
}
.settings-wrap form .inp-hld label{
    float:left;
    width:100%;
    font-size:16px;
    color:rgba(255, 255, 255, 1);
    margin-bottom:10px;
}
.settings-wrap form .inp-hld input{
    background:rgba(245, 245, 245, 1);
    float:left;
    width:100%;
    height: 70px;
    line-height: 70px;
    padding-left:10px;
    box-sizing:border-box;
    border-radius:5px;
    border:none;
}
.settings-wrap form .black-btn{
    float:left;
    width:100%;
    margin-top:20px;
    border:1px solid rgba(234, 219, 179, 1);
    border-radius:5px;
    height: 70px;
    line-height: 70px;
    text-align:center;
    font-size:24px;
    color:rgba(234, 219, 179, 1);
}
.logos-footer-part{
    float: left;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 800px;
    text-align: center;
}
.logos{
    float:left;
    width:100%;
    margin-top:20px;
    margin-bottom:20px;
}
.text{
    float:left;
    width:100%;
    text-align:center;
    margin-bottom:20px;
}