/* CSS Document */

@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900&subset=latin-ext');

@font-face {
    font-family: 'candlescript';
    src: url('../fonts/candlescript/candlescript_demo_version-webfont.woff2') format('woff2'),
         url('../fonts/candlescript/candlescript_demo_version-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

body {
    padding: 0px;
    margin: 0px;
    font-family: 'Roboto', Arial;
    color: #333;
    font-size: 16px;
    /*font-size: calc(14px + (26 - 14) * ((100vw - 300px) / (1600 - 300))); */
    font-weight: 300;
    line-height: 18px; 
    background-image: url(../images/background.jpg);
    background-repeat: repeat;
    background-color: #131313;
}

/** header ********************************************************************/

.header-top{
    background-color: #131313;
    padding: 10px;
    color: #fff;
}

.top-header-language{
    text-transform: uppercase;
    font-weight: 700;
    font-size: 12px; 
}

.language{
    padding-left: 10px;
}

.top-header-contact{
    font-weight: 700;
    font-size: 12px;
    text-align: right;
}

.top-header-email, .top-header-addres{
    display: inline-block;
}

.top-header-addres{
    display: inline-block;
    padding-left: 30px;
    /*float: right;*/
}

.top-header-divider{
    display: inline-block;
    width: 20px;
}

.header-top-inner{
    max-width: 1200px;
    margin: auto; 
    padding: 0 15px;    
}

.header { 
    background-color: #1B1B1C;
    color: #fff;
    padding: 0px 0;   
}

.main-logo{ 
    margin-top: 10px;
}

.header-inner {
    max-width: 1200px;
    margin: auto;     
    padding: 0 15px;
}

.center{
    margin: auto;
    width: 80%
}

.center-logo{
    margin: auto; 
    text-align: center;
}

.logo-divider{  
    background-color: #3C3C3B;
    height: 1px;
    margin: 10px 0;
}

.header-navigation ul{
    margin: 0;
}

.header-navigation li{
    display: inline-block; 
    padding: 0 20px;
    color: #fff;
    padding-bottom: 10px;
    text-transform: uppercase;
}

.header-navigation .menu-active{ 
   color: #D1AA67;
   text-decoration: none;  
}

   

/* mobile menu */
.header-menu-mobile {
    display: none;
}

.menu-tab {
    width: 90px;
    height: 70px;
    position: absolute; /*fixed;*/
    z-index: 100;
    top: 15px;
    left: 0px;
    cursor: pointer;
    -webkit-transition: all .6s ease-in-out;
    transition: all .6s ease-in-out;
    /*end of div*/
}
.menu-tab div {
    width: 30px;
    height: 3px;
    background-color: #fff;
    display: block;
    margin: 6px 28px;
    -webkit-transition: all .6s ease-in-out;
    transition: all .6s ease-in-out;
}
.menu-tab div:nth-child(1) {
    margin-top: 20px;
}

.menu-tab.active {
    left: 250px;
    -webkit-transition: all 600ms ease-in-out;
    transition: all 600ms ease-in-out;
    /*background-color: #333 /*rgba(255, 255, 255, 0.2);*/
}
.menu-tab.active #one {
    -webkit-transform: translateY(9px) rotate(-135deg);
          transform: translateY(9px) rotate(-135deg);
    -webkit-transition: all .6s ease-in-out;
    transition: all .6s ease-in-out;
    background-color: #fff;
}
.menu-tab.active #two {
    opacity: 0;
    -webkit-transition: .4s ease;
    transition: .4s ease;
}
.menu-tab.active #three {
    -webkit-transform: translateY(-9px) rotate(-45deg);
    transform: translateY(-9px) rotate(-45deg);
    -webkit-transition: all .6s ease-in-out;
    transition: all .6s ease-in-out;
    background-color: #fff;
}

.menu-hide {
    width: 260px;
    left: -260px;
    height: 100vh;
    position: fixed;
    z-index: 10;
    top: 0px;
    -webkit-transition: all .6s ease-in-out;
    transition: all .6s ease-in-out;
    padding-top: 30px;
    /*end of nav*/
}
.menu-hide nav {
    /*end of ul*/
}
.menu-hide nav ul {
    /*end of li*/
    margin-left: -40px;
}
.menu-hide nav ul li {
    /*height: 40px;*/
    list-style-type: none;
    text-align: left;
    line-height: 40px;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
    /*padding-bottom: 10px;*/
}
.menu-hide nav ul li:hover {
    background-color: transparent;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.menu-hide nav ul li a {
    padding: 0 20px;
    text-decoration: none;
    color: #f1f1f1;
    font-size: 20px;
    font-family: "pfdintextcomppro-regular", Arial; 
    text-transform: uppercase;
    display: block;
    border-bottom: 1px solid #444444;
}

.menu-hide nav ul li a:link {
    color: #eee !important;
    border-bottom: 1px solid #444444;
}

.menu-hide.show {
    left: 0px;
    background-color: #131313;
    /*background-color: rgba(255, 255, 255, 0.2);*/
    -webkit-transition: all .6s ease-in-out;
    transition: all .6s ease-in-out;
}
/* end mobile menu */

.header-collapse-mobile{
    display: none;
    background-color: #F2F2F4;
    padding: 10px;
    text-align: center;
    font-size: 16px;
    font-weight: 300;    
}

.header-collapse-mobile .name{
    font-size: 16px !important;
    line-height: 26px;
    font-weight: 500;
    padding-top: 10px;    
}

.header-collapse-mobile .arrow-collapse-top {
    max-height: 30px;
    cursor: pointer;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

.header-collapse-mobile .arrow-collapse-top img {
    max-height: 30px;
}

.header-collapse-mobile .arrow-collapse-top-active {
    max-height: 30px;
    cursor: pointer;
}

.header-collapse-mobile .arrow-collapse-top-active img {
    max-height: 30px;
}

.header-collapse-mobile .icon-phone {
    max-width: 15px;
}

.header-collapse-mobile .call-center-text-description {
    font-size: 18px !important;
    line-height: 20px;
    font-weight: 500;
    color: #FDBC11;
}

.header-collapse-mobile .call-center-text-description-phone {
    font-weight: 900;
}

.header-collapse-mobile .choose-language{
    text-transform: uppercase; 
    font-weight: 400; 
    font-size: 16px;  
    padding-bottom: 10px;
}

.header-collapse-mobile .language{
    font-size: 24px !important;
    line-height: 26px;
    font-weight: 600;
    color: #FDBC11; 
       
}

.header-collapse-mobile .language a{
    font-size: 24px !important;
    line-height: 26px;
    font-weight: 600;
    color: #FDBC11;    
}

.header-collapse-mobile .language-active{
    border-bottom: 1px solid #fdbc11;
}

/** end header ****************************************************************/


/** slider ********************************************************************/

.slider-main {
    /*height: 100% !important; */
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
    position: relative;
}

.slider-main .item {
    /*height: 60%;/*710px;*/
    height: 710px;  
    background-color: #333;
    color: #fff;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}

.slider-main .dark-background{
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    /*opacity: 0.4;*/
}

.slider-main .item-slider-box {
    width: 100%;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.slider-main .item-slider-title{
    width: 100%;
    font-size: 100px;
    line-height: 100px;
    margin: auto;
    font-family: 'candlescript', Roboto;
    text-shadow: 2px 2px 4px #000000;
    color: #D1AA67;
}

.slider-main .item-slider-more {
    font-size: 16px;
    line-height: 20px;
    text-transform: uppercase;    
    padding: 10px 20px;
    border: 2px solid #fff;
    margin: 20px auto; 
    text-align: center;
    max-width: 160px; 
    /*position: absolute;
    left: 45%*/
    cursor: pointer;
    transition: 0.2s;
    color: #fff;
    font-family: Roboto;
    text-shadow: none;
}

.slider-main .item-slider-more:hover{    
    background: #D1AA67;
}



.slider-main-arrow-left{
    position: absolute;
    top: 520px;
    left: 30px;
    z-index: 100;
    /*visibility: hidden*/
    /*opacity: 0;*/
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;  
}
 
.slider-main-arrow-right{
    position: absolute;
    top: 520px;
    right: 30px;
    z-index: 100;
    /*visibility: hidden;*/
    /*opacity: 0;*/
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s; 
}

.slider-arrow{
    max-height: 80px;
    cursor: pointer;
}


/** end slider ****************************************************************/


/** content *******************************************************************/
      
  h1,h2,h3,h4,h5{
      color: #D1AA67;
      text-transform: uppercase;
  }
  
  .active{
      color: #D1AA67;
  }


.content-inner{
    max-width: 1200px;
    margin: auto;     
    padding: 20px 15px;
    color: #fff
} 

.title-top, .title{
    color: #D1AA67;
    font-size: 30px;
    font-weight: 500;
    line-height: 40px; 
    text-transform: uppercase;    
} 

.title{
    font-size: 70px;
    line-height: 70px;
    text-transform: uppercase; 
}

.title-decoration{
    font-size: 100px;
    line-height: 100px;
    font-family: 'candlescript', Roboto; 
    color: #D1AA67;
}

.image-main .title{
    position: absolute;
    bottom: 10%;
    font-family: 'candlescript', Roboto;
    text-transform: unset; 
    color: #D1AA67; 
    text-shadow: 2px 2px 4px #000000; 
}

.yellow-divider{
    width: 80px;
    height: 2px;
    background-color: #D1AA67;
    margin: 30px auto;
}

.text-page{
    /*margin: 20px 0;*/
    /*text-align: justify;*/
    line-height: 28px;
}

.more-info a{
    color: #D1AA67;
    font-size: 18px !important;
    font-weight: 500 !important;
    transition: 0.2s !important; 
    text-decoration: none;
}
.more-info a:hover{
    color: #fff;    
}

.content-home .best-room{ 
    /*height: 600px;*/
   /* background-image: url("../images/soba 10.jpg");*/
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.content-home .best-room-dark{
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
}

.content-home .best-room-img-box{
    height: 550px;
    background-image: url('../images/best-room.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.content-home .room-text{
    padding-top: 10%;
}

.content-home .room-title-top{
    color: #D1AA67;
    text-transform: uppercase;
    font-size: 20px;
    line-height: 24px;  
}

.content-home .room-title{
    color: #fff;
    text-transform: uppercase;
    font-size: 30px;
    line-height: 32px;
    font-weight: 500;  
}

.content-home .best-room-text{
    margin-top: 10%;
}


.content-home .best-room-title-top{
    color: #D1AA67;
    font-size: 28px;
    font-weight: 400;
    line-height: 36px;
}

.content-home .best-room-title{
    color: #fff;
    font-size: 34px;
    line-height: 36px;
    font-weight: 500;
    text-transform: uppercase;
} 

.content-home .recommendation-image{
    height: 300px;
}

.content-home .city-galery{
    width: 100%;
}
.size-50{
     height: 50%;
     width: 50%;
}

.content-home .city-galery .image-box{
    background-position: center;
    background-size: cover;
    padding-bottom: 50%;
}
 
.news-item-box{
    padding: 70px 0 0 0;
}

.news-box .image-box{
    background-position: center;
    background-size: cover;
    padding-bottom: 70%;
}

.news-item{
    margin-bottom: 30px;
}

.news-box{
     border: 2px solid #666;
     background-color: #1B1B1C; 
}

.news-image{
     width: 100%;
     padding-bottom: 250px;
     background-size: cover;
     background-repeat: no-repeat;
     background-position: center;
}

.news-title{
     margin: 10px 30px;
     color: #D1AA67;
     font-size: 22px;
     line-height: 24px;
     font-weight: 500;
     padding-top: 15px;
}

.news-text{
     margin: 10px 30px;
     color: #fff; 
}

.more-news{
     display: inline-block;
     background-color: #D1AA67;
     color: #000000;
     padding: 10px;
     margin: 10px 30px;
     width: 40%;
     cursor: pointer;
     transition: 0.2s;
     border: 1px solid #D1AA67;
}

.more-news:hover{
    background-color: transparent;
    color: #fff;
    border: 1px solid #D1AA67;   
}

.view-item-box{
   background-color: #1B1B1C;
   padding: 30px;
   margin-top: 60px; 
}


.view-image-left{ 
    width: 50%;
    height: 400px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    float: left;
    display: inline-block;
    margin-right: 30px;
    
}

.view-item-box .title{
    font-size: 40px;
    line-height: 42px;
    padding: 30px 0;
    color: #D1AA67;
}

.view-item-box .text-page{
    overflow: auto;
}



/** about us ******************************************************************/

.about-us-content .about-us{
    padding: 20px 0;
}

.about-us-content .about-us-room{
    width: 100%;
}
/*
.big-logo{
      width: 50%;
      margin: 10px auto;
}
*/
.about-us-content .about-us-large-img{ 
    /*height: 600px;*/
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /*padding-bottom: 360px;
    opacity: 0.2;*/
    filter: alpha(opacity=50);
}

.about-us-content .about-us-large-img-dark{
    width: 100%;
    /*height: 400px; */
    background: rgba(0,0,0, 0.8);
    /*padding: 60px 0;*/
}

.about-us-content .about-us-large-img-dark .main-text{
    padding-top: 30px;
    padding-bottom: 0;
}
/*
.rules-modal-box{
    background-color: #1B1B1C;
    width: 100%;
    color: #fff;
    font-size: 28px;
    font-weight: 500;
    text-transform: uppercase;
    padding: 20px;
}

.rules-modal-box:hover{
    background-color: #D1AA67;
}

.modal-body{
    color: #000;
}

.modal-content{
    width: 80%;
}
*/
.about-us-content .house_rules_main{
    margin-top: 50px;
}

.about-us-content .house-rules-box{
    padding: 20px 20px;
    background-color: #1B1B1C;
}

.about-us-content .house-rules-text{
    text-transform: uppercase;
    font-size: 40px;
    font-weight: 500; 
    cursor: pointer; 
    
}

.about-us-content .house-rules-box:hover{ 
    background-color: #D1AA67;
    transition: 0.4s; 
}



.hall-purpose{
    background: rgba(0,0,0, 0.7);
    padding: 40px 40px;
}

.hall-price{
    background: rgba(0,0,0, 0.9);
    padding: 40px 40px;
}

.hall-purpose-large-img{ 
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    filter: alpha(opacity=50);
    padding: 40px 30px;
}

.timework-icon{
    font-size: 60px;
}

.reserve{
   height: 60px; 
}

.hall-reservation-box .content-inner{
   padding: 40px 15px 0 15px; 
}

.hall-reservation-title{
    font-size: 40px;
    font-weight: 700;
    line-height: 52px;
    text-transform: uppercase;
}

.hall-reservation-box .divider{
    width: 60px;
    height: 2px;
    background-color: #D1AA67;
    margin: 20px auto;
}

.hall-reservation-text{
    margin-bottom: 20px;
}

.yellow-divider-left{
    width: 80px;  
    height: 2px;  
    background-color: #D1AA67; 
    margin: 20px 0;
}

.home-rule-box{
    background-color: #1B1B1C;
    padding: 20px 20px;
    margin-top: 60px;
}

.home-rule-box .text-page{
    line-height: 26px;
}

/** end about us ******************************************************************/

.apartmens-box{
     border-bottom: 2px solid #D1AA67;
     padding: 40px 0;
}

.apartmens-img{
     width: 100%;
}

.apartmens-box .image-box{
    background-position: center;
    background-size: cover;
    padding-bottom: 50%;
}

.apartmens-title{
     font-size: 60px;
     line-height: 60px;
     font-weight: 500;
     color: #D1AA67;
     font-family: 'candlescript', Roboto;
     padding-bottom: 15px;
}

.apartman-reserve{
     margin: 20px 0;
}

.apartman-price{
    padding: 10px 30px;
    border: 1px solid  #D1AA67;
    background-color: #D1AA67; 
    display: inline-block;
    /*cursor: pointer; */
    transition: 0.2s;
    color: #fff;
    font-size: 28px;
    line-height: 30px;
    font-weight: 500; 
}

.resereve-button{
     border: 1px solid  #D1AA67;
     background: #D1AA67;
     display: inline-block;
     padding: 10px 20px;
     transition: 0.4s;
     color: #fff;
}

.resereve-button:hover{
     border: 1px solid  #D1AA67;
     background: none;
}

.persone{
    cursor: pointer;
    
}

.fa-user{
    font-size: 17px;
}

.apartmens-img{
    margin: 10px 0;
} 

.apartments-galery-image-box{
    margin: 10px auto;
}


.apartment-galery-img-box{
    /*padding: 30px 15px 30px 15px;*/
}

.apartment-galery-img-first{
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 360px;
}  

.apartment-galery-img{
    display: inline-block;
    width: 32%;
    padding: 60px 6px 60px 6px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
} 

.apartment-equipment{
    position: relative;
    margin-bottom: 15px;
} 

.apartment-equipment .icon{
    position: absolute;
    left:0;
    width: 30px
}

.apartment-equipment .title{
    padding-left: 35px;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    padding-top: 5px;
}

.apartment-reservation-total {
    color: #fff;
    line-height: 30px;
} 

.apartment-reservation-total-price {
    font-size: 24px;
    color: #D1AA67;
    font-weight: 500;
    line-height: 30px;
    background-color: transparent;
    border: none;
}

.reservation-form-message{
    background-color: #c00;
    padding: 10px 15px; 
    color: #fff;
    margin-bottom: 30px; 
}

.reservation-form-message p{
    margin-bottom: 0;
}

.product{
    margin-bottom: 40px;
}  

.product-box{
    background-color: #D1AA67;
    padding: 5px;
}

.product-box label{
    font-size: 14px;
    line-height: 30px;
    font-weight: 500;
    text-transform: uppercase;
}

.product-box i{
    font-size: 18px !important;
}

.product-img{
    padding: 10px;
    padding-bottom: 180px;
    text-align: left;
}

.product-title{
    margin: 20px 0;
    color: #000000;
    font-size: 20px;
    line-height: 22px;
    font-weight: 500;
}

.product-text{
    margin-bottom: 20px;
}

.product-price{
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 24px;
    /*display: inline; */
}

.add-product{
    margin: 20px auto;
    padding: 5px;
    border: 1px solid #fff;
    border-radius: 5px;
    width: 80px;
    font-size: 22px;
}

  
/** check-box *****************************************************************/ 

.checkbox label:after, 
.radio label:after {
    content: '';
    display: table;
    clear: both;
}

.checkbox .cr,
.radio .cr {
    position: relative;
    display: inline-block;
    border: 1px solid #a9a9a9;
    border-radius: .25em;
    border-color: red;
    background-color: red;
    width: 30px;
    height: 30px;
    float: left;
    margin-right: .5em; 
}

.radio .cr {
    border-radius: 50%;
}

.checkbox .cr .cr-icon,
.radio .cr .cr-icon {
    position: absolute;
    font-size: .8em;
    line-height: 0;
    top: 50%;
    left: 20%;
    
}

.radio .cr .cr-icon {
    margin-left: 0.04em;
}

.checkbox label input[type="checkbox"],
.radio label input[type="radio"] {
    display: none;
}

.checkbox label input[type="checkbox"] + .cr > .cr-icon,
.radio label input[type="radio"] + .cr > .cr-icon {
    transform: scale(3) rotateZ(-20deg);
    opacity: 0;
    transition: all .3s ease-in;
}

.checkbox label input[type="checkbox"]:checked + .cr > .cr-icon,
.radio label input[type="radio"]:checked + .cr > .cr-icon {
    transform: scale(1) rotateZ(0deg);
    opacity: 1;
}

.checkbox label input[type="checkbox"]:disabled + .cr,
.radio label input[type="radio"]:disabled + .cr {
    opacity: .5;
}

/** end check-box *************************************************************/ 

.content-apartments-view .confirm-reservation-box{
    background-color: #000;
    padding: 36px 0;
}

.content-apartments-view .confirm-reservation-box .circle{
    width: 100px;
    height: 100px;
    background-color: #1B1B1C;
    border-radius: 50%;
    margin: 15px auto;
}


.content-apartments-view .contact-us{
    margin-bottom: 10px;
}

.content-apartments-view .phone-number{
    font-size: 24px;
    color: #D1AA67;
    font-weight: 500;
}

.content-apartments-view .fa-phone-volume{
    color: #D1AA67;
    font-size: 80px;
    line-height: 100px;
}

button{
    /*width: 40%;*/
    /*margin: auto;*/
    background-color: #D1AA67; 
}

.fa-calendar-alt{
    font-size: 20px;
}

.date-box{
    /*width: 80%;*/
    float: right;
}

.calendar{
    display: inline-block;
}

.btn-send{
    text-transform: uppercase;
    font-weight: 500;
    /*width: 320px;*/
    /*margin: 15px;*/
}

.btn-send:hover{
    background-color: #fff;
    /*width: 320px;*/
    /*margin: 15px;*/
}

.main-news-box{
    background-color: #1B1B1C;
    padding: 60px;
    margin-bottom: 30px;
}

.main-news-box-title{
    color: #D1AA67;
    font-size: 30px;
    font-weight: 500;
    line-height: 32px;
    text-transform: uppercase;
}

.news-date{
    margin: 20px 0;
}

.main-news-image{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-bottom: 300px;
    margin-bottom: 20px;
}

/*  news ---------------------------------------------------------------------*/

.most-popular-title{
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 20px;
}

.most-popular-news-box{
    border-bottom: 1px solid #D1AA67;
    padding: 10px 0;
    color: #f3f3f3;
    cursor: pointer;
    transition: 0.2s;
}

.most-popular-news-box:hover{
    color: #D1AA67;
    border-bottom: 1px solid #fff;
    text-decoration: none;
}

/* end-news-------------------------------------------------------------------*/

/* contact -------------------------------------------------------------------*/

 .image-main{
    width: 100%;
    height: 450px;
    background-size: cover;
    background-position: center;
    position: relative;    
 }
 
.icon .fa-clock .contact-icon{
    margin-right: 20px !important;
    font-size: 40px;
}

.contact-title{
    font-size: 30px !important;
    font-weight: 500;
    line-height: 32px;
    text-transform: uppercase;
    color: #D1AA67; 
    padding-bottom: 20px;
}

.form-title{
     font-size: 30px;
     font-weight: 500;
     line-height: 32px;
     color: #D1AA67;
     margin-bottom: 30px;
}

.marino-manager-title{
    color: #D1AA67;
    font-size: 28px;
    font-weight: 500;
    line-height: 30px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
/*
.marino-manager-image{
    width: 100px;
    height: 100px;
    border: 3px solid #333;
    border-radius: 50px;
    background-size: cover;
    background-position: center;
    display: inline-block;
    margin-right: 40px;
}

.manager-info{
    line-height: 30px;                       
}
*/
/* end contact ---------------------------------------------------------------*/

.hall-reservation-hour{
    /*margin-bottom: 20px; */
    line-height: 24px;
}

.content-congres-hall .luxory-image{
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding-bottom: 400px;
}

/** end content ***************************************************************/

.contact-help-block{
    color: #111;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    background-color: #D1AA67;
    padding: 1px 4px;
}

.contact-form-message{
    background-color: #c00;
    padding: 10px 15px; 
    color: #fff;
    margin-bottom: 30px; 
}

/* modal */ 
.modal-content {
    border-width: 0 !important;
    border-radius: 0 !important;
    max-width: auto;
}

.modal-content-default {
    border-width: 0 !important;
    border-radius: 0 !important;
}

.modal-header-default {
    background-color: #D2AC67;
    color: #1B1B1C !important;
    border-radius: 0;
    text-transform: uppercase;
    font-weight: 300 !important;
    border-bottom: none;
} 

.modal-header-default .modal-title{
    font-weight: 400 !important;
    color: #1B1B1C !important;
} 

.modal-text-default {
    line-height: 24px;
}

.modal-footer-default{}

.modal-btn-close-default {
    background-color: #1B1B1C;
    color: #fff;
    font-size: 14px;
    border: 0px solid #333;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    padding: 8px 25px;
}
.modal-btn-close-default:hover { 
    background-color: #D2AC67;
}

.modal-btn-close-default:focus {
    background-color: #D2AC67;
}
/* end modal */

.contact-info{
    position: relative;
}

.contact-info .icon{
    position: absolute;
    font-size: 20px;
    width: 30px;
    text-align: center;
}

.contact-info .text{
    padding-left: 40px;
    line-height: 22px;
}

/** footer ********************************************************************/

.footer {
    padding: 20px 15px;
    background-color: #1B1B1C;
    border-top: 30px solid #fff;
    margin-top: 60px;
}

.footer-inner {
    max-width: 1200px;
    margin: auto;
    /*padding: 10px 0px;*/
    color: #fff;
    padding-top: 20px;
}

.footer-contact-box{
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    margin-bottom: 20px;
    /*width: 50%;  */
} 

.footer-contact-box-middle{
    font-size: 16px;
    line-height: 16px;
    font-weight: 500;
    margin-bottom: 20px;
    /*
    width: 50%;
    margin-right: auto;
    margin-left: auto;
    */
}

.footer-contact-box-text{
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
}

.footer-contact-box-phone{
    margin-top: 10px;
}

.footer-contact-box-social{
    font-size: 16px;
    margin-top: 10px;
    margin-right: auto;
}

.footer-logo{
    width: 100%;  
}

.icon{
    padding-right: 8px;
}

.footer-bottom{
    background-color: #131313;   
}  

.footer-bottom-navigation ul{
    padding-left: 0;
}

.footer-bottom-navigation li{
    display: inline-block;
    text-transform: uppercase;
}

.footer-bottom-navigation li:first-child{
    padding-left: 0;
    padding-right: 10px;
}

.footer-bottom-navigation li{
    padding: 0 10px; 
}

form{
    /*margin-top: 10px;*/
}

.form-control{
    /*width: 200px;
    height: 30px;*/
    background-color: #000000;
    color: #fff;
    border: 0;
    display: inline-block;
    margin: 0;
}

.date-control{
    color: #646666;
}

.button{
    height: 30px;
    width: 150px;
    display: inline-block;
    border: 0;                    /*1px solid #D1AA67  */
    background-color: #222;
    padding: 0;
}

.button:hover{
    background-color: #fff;
    color: #000000;
}

.total-price{
    color: #fff;
    font-weight: 500;
    padding-right: 20px;
    text-transform: capitalize;
}

/** end footer ****************************************************************/


/** links *********************************************************************/
.item-slider-title a:link{color: #fff;  text-decoration: none; font-size: 14px; font-weight: 500;}


.header-top a:link, .header-navigation a:link { color: #fff;  text-decoration: none; font-size: 14px; font-weight: 500; transition: 0.2s; /*border-bottom: 2px solid #1B1B1C;*/}
.header-top a:visited, .header-navigation a:visited { color: #fff;  text-decoration: none;font-size: 14px; font-weight: 500; border-bottom: 2px solid #D1AA67; }
.header-top a:hover, .header-navigation a:hover   { color: #D1AA67;  text-decoration: none; font-size: 14px; font-weight: 500; /*border-bottom: 2px solid #D1AA67;*/}
.header-top a:active, .header-navigation .menu-active  { color: #D1AA67;  text-decoration: none; font-size: 14px; font-weight: 500; border-bottom: 2px solid #D1AA67;}

/*
.content a:link { color: #D1AA67;  text-decoration: none; font-size: 14px; font-weight: 300;}
.content a:visited { color: #D1AA67;  text-decoration: none; font-size: 14px; font-weight: 300;}
.content a:hover { color: #fff;  text-decoration: none; font-size: 14px; font-weight: 300;}
.content a:active { color: #fff;  text-decoration: none; font-size: 14px; font-weight: 300;}
*/

.footer-bottom a:link    { color: #666;  text-decoration: none; font-size: 14px; font-weight: 500;}
.footer-bottom a:visited { color: #666;  text-decoration: none;font-size: 14px; font-weight: 500;}
.footer-bottom a:hover   { color: #D1AA67;  text-decoration: none; font-size: 14px; font-weight: 500;}
.footer-bottom a:active  { color: #D1AA67;  text-decoration: none; font-size: 14px; font-weight: 500;}

.house-rules-box a:link    { color: #666;  text-decoration: none; font-size: 14px; font-weight: 500;}
.house-rules-box a:visited { color: #666;  text-decoration: none;font-size: 14px; font-weight: 500;}
.house-rules-box a:hover   { color: #fff;  text-decoration: none; font-size: 14px; font-weight: 500;}
.house-rules-box a:active  { color: #D1AA67;  text-decoration: none; font-size: 14px; font-weight: 500;}

.footer a:link    { color: #fff;  text-decoration: none; font-size: 18px; font-weight: 500;}
.footer a:visited { color: #fff;  text-decoration: none;font-size: 18px; font-weight: 500;}
.footer a:hover   { color: #D1AA67;  text-decoration: none; font-size: 18px; font-weight: 500;}
.footer a:active  { color: #D1AA67;  text-decoration: none; font-size: 18px; font-weight: 500;}
  

/** end links *****************************************************************/

/** max 1920  *****************************************************************/
@media screen and (max-width: 1920px){

}

/** max 1600  *****************************************************************/
@media screen and (max-width: 1600px){
    
}

/** max 1200  *****************************************************************/
@media screen and (max-width: 1200px){  
     .best-room-img-box{
         display: none;
     }
     
     .best-room-text{
         text-align: center;
         margin: 10% auto;
     }
     
     .arrow-left{
       
        visibility: hidden;
        opacity: 0;
         
    }

    .arrow-right{ 
        visibility: hidden;
        opacity: 0;
        
    }

}

/** max 1040  *****************************************************************/
@media screen and (max-width: 1040px){

}

/** max 992 *******************************************************************/
@media screen and (max-width: 992px){
    
    .slider-main .item-slider-title{
        font-size: 40px;
    }
    
     .header-menu-mobile {
        display: block;
    } 
    
    .header-navigation{
        display: none;
    }
    
    .title-decoration {
        font-size: 70px;
        line-height: 70px;
    }
}

/** max 768 *******************************************************************/
@media screen and (max-width: 767px){ 
                                        
    .apartmens-title{
        margin-top: 40px;
    }
    
    .apartment-galery-img-box{
        padding: 0 15px 0 15px;
    }
    
    .content-title-box{ 
        min-height: 150px;
    } 
    
    .content-title{  
        bottom: -130px;   
    }
    
    .item-slider-title{ 
        font-size: 60px;
        line-height: 58px;   
    }
    
    .view-image-left{ 
        width: 100%;
        margin-bottom: 30px;
    }
    
}

/** max 660 *******************************************************************/
@media screen and (max-width: 660px){
    .main-news-box{ 
        padding: 20px;     
    }
       
}

/** max 576 *******************************************************************/
@media screen and (max-width: 576px){
    
    .image-main{
        height: 200px;
    }
    
    .footer-logo{
        width: 40%;  
   }
   
   .footer-inner{
       text-align: center;
   } 
}

/** max 500 *******************************************************************/
@media screen and (max-width: 500px){   
    
}

/** max 420 *******************************************************************/
@media screen and (max-width: 420px){
     .button{
         width: 200px;
     } 
     
     .item-slider-title{ 
        font-size: 46px;
        line-height: 48px;   
    }
    
    .main-news-box{
        padding: 20px;
    }
    
    .title{
        font-size: 30px;
        line-height: 42px;
        text-transform: uppercase; 
    }
    
    
}