html,
body {
    margin: 0;
    padding: 0;
    font-family: "Montserrat";
    font-size: 90%;
}

ul {
    padding: 0px;
}

h2 {
    font-family: "Playfair Display";
    font-size: 32px;
    font-weight: bold;
}

.g-recaptcha div {
    margin: 0 auto;
}

.h-200 {
    height: 200px;
}

.thanks-text {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: 200px;
    text-align: center;
}

.mobile-lang {
    display: none;
}


/*** Landing page ***/

.landing-page {
    height: 100vh;
    width: 100%;
    position: relative;
}

h1{
    text-align: center;
    margin-top: 100px;
    display: none;
    font-size: 52px;
    text-transform: uppercase; 
    font-family: "Playfair Display";
    font-weight: 600;
}


/*** Menu icon (Mobile) ***/

#nav-icon {
    display: none;
    width: 30px;
    height: 22px;
    position: relative;
    margin: 20px auto;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}

#nav-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #fff;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

#nav-icon span:nth-child(1) {
    top: 0px;
}

#nav-icon span:nth-child(2),
#nav-icon span:nth-child(3) {
    top: 10px;
}

#nav-icon span:nth-child(4) {
    top: 20px;
}

#nav-icon.open span:nth-child(1) {
    top: 20px;
    width: 0%;
    left: 50%;
}

#nav-icon.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

#nav-icon.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

#nav-icon.open span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
}


/*** Navigation bar ***/

.nav-bar {
    height: 140px;
    background-image: url(../images/nav-back.png), url(../images/nav-bottom.png);
    background-position: top, bottom;
    background-size: cover;
    background-repeat: no-repeat;
    position: fixed;
    z-index: 99999;
    width: 100%;
}

.nav-bar .social i {
    border: 1px solid #fff;
    border-radius: 100%;
    color: #fff;
    text-align: center;
    height: 25px;
    width: 25px;
    padding-top: 4.5px;
    transition: all 0.3s ease;
}

.nav-bar .social:hover i {
    background-color: #fff;
    color: #c9a86e;
    transition: all 0.3s ease;
}

.nav-bar .text-right {
    color: #fff;
}

.margtop10 {
    margin-top: 8px;
}

.logo {}

.logo img {
    width: 160px;
    margin-top: -10px;
}

.nav-border {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 5px;
    left: 0;
}

.navigation {
    text-align: center;
}

.navigation ul a:hover{
    text-decoration: none;
}

.navigation ul li {
    list-style: none;
    display: inline-block;
    color: #c9a86e;
    font-weight: 500;
    margin-top: 20px;
    border-right: 1px solid #fff;
    padding-right: 15px;
    padding-left: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.navigation ul li:hover {
    color: #fff;
    transition: all 0.3s ease;
}

.navigation ul li:last-child {
    border-right: 0px;
}

.scrolled-nav {
    height: 80px;
    z-index: 9999999;
    background-color: rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease-in;
}

.scrolled-nav .top-bar {
    display: none;
}

.scrolled-nav .logo {
    float: left;
    margin-top: 20px;
    margin-left: 20px;
}

.scrolled-nav .navigation {
    margin-top: 8px;
}

.scrolled-nav .navigation ul {
    text-align: right;
}

.scrolled-nav .navigation ul li {
    color: #fff;
    transition: all 0.3s ease-in;
}

.scrolled-nav .navigation ul li:hover {
    color: #c9a86e;
    transition: all 0.3s ease;
}


/*** Slider (Slick) ***/

.slide-1 {
    background-image: url(../images/slides/slide-1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100vh;
    width: 100%;
}

.slide-2 {
    background-image: url(../images/slides/slide-2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100vh;
    width: 100%;
}

.slide-3 {
    background-image: url(../images/slides/slide-3.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100vh;
    width: 100%;
}

.slide-4 {
    background-image: url(../images/slides/slide-4.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100vh;
    width: 100%;
}

.prev-icon,
.next-icon {
    position: absolute;
    z-index: 9;
    top: calc(50% - 30px);
}

.prev-icon {
    left: 30px;
}

.next-icon {
    right: 30px;
}

.prev-icon i,
.next-icon i {
    font-size: 60px;
    color: #fff;
}

.slick-dots {
    width: 100%;
    top: calc(85% - 20px);
    z-index: 999;
    bottom: auto;
}

.slick-dots li {
    display: inline-block;
}

.slick-dots li button:before {
    font-size: 12px;
    color: #fff;
}

.slick-dots li.slick-active button:before {
    opacity: 1;
    color: #fff;
}

.slide-details {
    background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.85) 100%);
    width: 100%;
    height: 40vh;
    margin-top: 30vh;
    text-align: right;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.slide-details:hover {
    background-color: rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease;
}

.slide-details h3 {
    color: #fff;
    font-size: 72px;
    font-weight: 400;
    font-family: "Raleway";
}

.slide-details h5 {
    color: #fff;
    font-size: 30px;
    font-weight: 300;
}

.slide-btn {
    background-color: #c9a86e;
    color: white;
    font-size: 26px;
    margin-top: 10px;
    padding: 6px 14px;
    border: 0;
    cursor: pointer;
    border: 2px solid #c9a86e;
    transition: all 0.3s ease;
}

.slide-btn:hover {
    background-color: #fff;
    color: #c9a86e;
    transition: all 0.3s ease;
    border: 2px solid #c9a86e;
}

.booking-full {
    width: 100%;
}

.booking {
    position: absolute;
    height: 100px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    bottom: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking label {
    color: #fff;
}

.book-btn {
    background-color: #c9a86e;
    border: 0;
    color: #fff;
    width: 100%;
    height: 38px;
    margin-top: 8px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.book-btn:hover {
    background-color: #fff;
    color: #c9a86e;
    transition: all 0.3s ease;
}

.fw-btn {
    width: 302px;
}

.required-fields {
    color: #aaa;
}

.input-style {
    border: 2px solid #c9a86e;
    width: 100%;
    height: 38px;
    overflow: hidden;
    color: #333;
    text-indent: 5px;
    margin-bottom: 10px;
}

.textarea-style {
    border: 2px solid #c9a86e;
    width: 100%;
    min-height: 150px;
    overflow: hidden;
    color: #333;
    text-indent: 5px;
    margin-bottom: 10px;
}

.select-style {
    border: 2px solid #c9a86e;
    width: 120px;
    height: 38px;
    overflow: hidden;
    background: url("../images/dropdown.png");
    background-position: right;
    background-size: 30px;
    background-repeat: no-repeat;
    -webkit-appearance: none;
    color: #fff;
    text-indent: 5px;
}

.dropdown-gold {
    background: url("../images/dropdown-gold.png");
    background-position: right;
    background-size: 30px;
    background-repeat: no-repeat;
    width: 100%;
    margin-bottom: 10px;
    color: #333;
}

.select-style select {
    padding: 5px 8px;
    width: 130%;
    border: none;
    box-shadow: none;
    background: transparent;
    background-image: none;
    -webkit-appearance: none;
    text-indent: 5px;
}

.select-style select:focus {
    outline: none;
}

.select-style option {
    color: #000;
}


/*** Available rooms ***/

.available-rooms {
    background: -webkit-linear-gradient(-90deg, #fff 40%, rgba(0, 0, 0, 0) 40%), -webkit-linear-gradient(-90deg, #2e2e32 60%, #18181b 60%);
    min-height: 400px;
    padding-top: 120px;
    padding-bottom: 120px;
}

.available-rooms .soba {
    margin: 15px;
    margin-bottom: 40px;
}

.available-rooms .soba img {
    object-fit: cover;
    height: 220px;
    width: 100%;
}

.available-rooms .soba .overlay {
    position: relative;
    z-index: 999;
    height: 50px;
    margin-top: -50px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    padding-top: 35px;
}

.available-rooms h5 {
    color: #c9a86e;
    font-weight: 300;
    font-size: 22px;
    padding-bottom: 15px;
}

.available-rooms .rooms-carousel {
    width: 100%;
}

.available-rooms .room-details {
    min-height: 100px;
    background-color: #c9a86e;
    padding-top: 10px;
    padding-bottom: 10px;
}

.available-rooms .soba .overlay .book {
    background-color: #fff;
    border: 2px solid #fff;
    padding: 8px 12px;
    font-weight: 500;
    margin-top: 0px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.available-rooms .soba .overlay .book:hover {
    border: 2px solid #c9a86e;
    transition: all 0.3s ease;
}

.available-rooms .room-details h4 {
    color: #fff;
    font-family: "Playfair Display";
    font-size: 28px;
    font-weight: 400;
    margin: 0;
    padding: 0;
    padding-top: 10px;
}

.available-rooms .room-details h6 {
    color: #fff;
    font-size: 22px;
    font-weight: 300;
    margin: 0;
    padding: 0;
}

.available-rooms .room-details h7 {
    color: #2e2e32;
    font-size: 20px;
    font-weight: 400;
    margin: 0;
    padding: 0;
    display: none;
    text-align: right;
    line-height: 22px;
}


/*** Featured services ***/

.featured-services {
    background: linear-gradient(to bottom, white 90%, #2e2e32 10%);
    min-height: 400px;
    padding-top: 120px;
    padding-bottom: 120px;
}

.featured-services .gallery-box {
    border: 1px solid #c9a86e;
    padding: 50px;
}

.featured-services .gallery-btn {
    color: #fff;
    font-size: 20px;
    padding: 16px 12px;
    width: 100%;
    display: block;
    text-align: center;
    background-color: #c9a86e;
    text-decoration: none;
    border: 2px solid #fff;
    transition: all 0.3s ease;
}

.featured-services .gallery-btn:hover {
    background-color: #fff;
    color: #c9a86e;
    border: 2px solid #c9a86e;
    transition: all 0.3s ease;
}

.featured-services .gallery-box h4 {
    text-align: center;
    font-size: 28px;
    font-family: "Playfair Display";
    font-weight: bold;
}

.featured-services .gallery-box h6 {
    text-align: center;
    font-size: 22px;
    line-height: 24px;
    color: #c9a86e;
    font-weight: 300;
    margin-top: 15px;
    margin-bottom: 15px;
}

.featured-services .gallery-box p {
    text-align: center;
    font-size: 18px;
    line-height: 26px;
    padding-top: 20px;
    padding-bottom: 20px;
}

.featured-services .margbot30 {
    margin-bottom: 30px;
}

.featured-services .gallery-image img {
    object-fit: cover;
    height: 220px;
    width: 100%;
}

.featured-services .gallery-image .overlay {
    position: absolute;
    z-index: 9999;
    height: 60px;
    margin-top: -60px;
    width: calc(100% - 30px);
    background-color: rgba(0, 0, 0, 0.7);
    color: rgba(255, 255, 255, 0.8);
    font-size: 20px;
    text-align: center;
    line-height: 60px;
}


/*** Offer ***/

.offer {
    background: -webkit-linear-gradient(-90deg, #fff 40%, rgba(0, 0, 0, 0) 40%), -webkit-linear-gradient(-90deg, #2e2e32 60%, #18181b 60%);
    min-height: 400px;
    padding-top: 120px;
    padding-bottom: 120px;
}

.offer h5 {
    color: #c9a86e;
    font-weight: 300;
    font-size: 22px;
    padding-bottom: 15px;
}

.offer .offers img {
    object-fit: cover;
    height: 240px;
    width: 100%;
}

.offer .details {
    color: white;
    background-color: #c9a86e;
    padding: 25px;
}

.offer .details h3 {
    font-weight: 400;
    font-family: "Playfair Display";
    font-size: 26px;
    margin-bottom: 0px;
}

.offer .details h4 {
    font-weight: 300;
}


/*** Tourist offer ***/

.tourist-dest {
    background-color: #fff;
    min-height: 400px;
    padding-top: 120px;
    padding-bottom: 120px;
}

.tourist-dest h5 {
    color: #c9a86e;
    font-weight: 300;
    font-size: 22px;
    padding-bottom: 15px;
}

.tourist-dest img {
    object-fit: cover;
    height: 250px;
    width: 100%;
}

.tourist-dest .overlay {
    position: absolute;
    z-index: 999999;
    height: 60px;
    margin-top: -60px;
    width: calc(100% - 30px);
    background-color: rgba(0, 0, 0, 0.7);
    text-align: center;
}

.tourist-dest .overlay .title {
    background-color: #c9a86e;
    padding: 6px 12px;
    color: #fff;
    display: inline-block;
    margin-top: -40px;
    font-size: 18px;
}

.tourist-dest .margbot30 {
    margin-bottom: 30px;
}


/*** Footer overlay ***/

.footer {
    background-image: url(../images/footer-overlay.png);
    background-size: cover;
    min-height: 400px;
    padding-top: 120px;
    padding-bottom: 60px;
}

.footer h2 {
    text-align: center;
    color: white;
}

.footer h5 {
    text-align: center;
    color: white;
    font-weight: 300;
    font-size: 28px;
}

.footer .footer-btn {
    text-align: center;
    background-color: #c9a86e;
    font-size: 28px;
    padding: 6px 12px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    border: 2px solid #c9a86e;
}

.footer .footer-btn:hover {
    background-color: #fff;
    color: #c9a86e;
    border: 2px solid #fff;
}

.footer .footer-logo {
    width: 100px;
    margin: 0 auto;
    margin-top: 60px;
}

.footer .signature {
    color: #fff;
    text-align: center;
    margin-top: 60px;
}

.footer .signature a {
    color: #fff !important;
    text-decoration: none;
}

.footer .social-holder {
    padding-top: 30px;
}

.footer .social i {
    border: 1px solid #fff;
    border-radius: 100%;
    color: #fff;
    text-align: center;
    height: 35px;
    width: 35px;
    font-size: 18px;
    padding-top: 8px;
    margin: 4px;
    transition: all 0.3s ease;
}

.footer .social:hover i {
    background-color: #fff;
    color: #c9a86e;
    transition: all 0.3s ease;
}


/*** Back to top ***/

#return-to-top {
    position: fixed;
    z-index: 99999999;
    bottom: 20px;
    right: 20px;
    background: rgb(0, 0, 0);
    background: rgba(0, 0, 0, 0.7);
    width: 50px;
    height: 50px;
    display: block;
    text-decoration: none;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
    display: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

#return-to-top i {
    color: #fff;
    margin: 0;
    position: relative;
    left: 17px;
    top: 11px;
    font-size: 26px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

#return-to-top:hover {
    background: rgba(0, 0, 0, 0.9);
}

#return-to-top:hover i {
    color: #fff;
    top: 5px;
}


/*** Page header ***/

.page-header {
    padding-top: 140px;
    min-height: 360px;
    background-image: url(../images/background.png);
    background-size: cover;
}

.trips-img{
    background-image: url(../images/slides/slide-1.jpg);
    background-position: center;
}

.onama-img{
    background-image: url(../images/slides/slide-3.jpg);
    background-position: center;
}

.booking-img{
    background-image: url(../images/slides/slide-2.jpg);
    background-position: top;
}

.offer-img{
    background-image: url(../images/slides/slide-4.jpg);
    background-position: center;
}

.page-header .overlay {
    background-color: rgba(0, 0, 0, 0.6);
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    align-content: flex-end;
}

.page-header h6 {
    color: #fff;
    font-size: 18px;
}

.page-header h2 {
    color: #fff;
    font-size: 72px;
}


/*** About styles ***/

.about-text {
    font-size: 18px;
    padding: 0 14% 30px 14%;
    text-align: center;
    margin: 0 auto
}

.about-img {
    object-fit: cover;
    height: 450px !important;
    width: 100%;
    margin-top: 60px;
    margin-bottom: 70px;
}

/*** Tender styles ***/
.downloadlink{
    font-size: 18px;
    padding: 0 10% 0 0;
    text-align: center;
    margin: 0 auto;
    text-decoration: none;
    color: #c9a86e;
}

.downloadlink:hover{
    text-decoration: none;
    color: #000;
}

.downloadlink:active{
    text-decoration: none;
    color: #2e2e32;
}

.tenderdiv{
    padding: 0 0% 0 9%;
}
/*** Kontakt styles ***/

.contacts {
    display: flex;
    height: 450px;
    align-items: left;
    justify-content: center;
    flex-direction: column;
}

.contact-info {
    display: flex;
    align-items: center;
    justify-content: left;
}

.contact-info i {
    color: #fff;
    background-color: #c9a86e;
    font-size: 18px;
    min-width: 45px;
    min-height: 45px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.contact-info p {
    margin-top: 14px;
    font-size: 16px;
}


/*** Gallery ***/

.gallery-zenit img,
.gallery-plaza img,
.gallery-restoran img,
.gallery-sadrzaj img,
.gallery-sobe img {
    object-fit: cover;
    height: 250px;
    width: 100%;
    margin-bottom: 30px;
}

.mfp-wrap {
    z-index: 99999999;
}

.mfp-bg {
    z-index: 99999999;
}


/*** Other pages ***/

.izleti-text {
    font-size: 18px;
    margin: 0 auto;
    margin-bottom: 30px;
    line-height: 30px;
}

.izleti-list {
    font-size: 15px;
    margin-left: 30px;
    list-style: none;
    margin-bottom: 40px;
}

ul.izleti-list li {
    margin-bottom: 2px;
}

ul.izleti-list li::before {
    content: "• ";
    color: #c9a86e;
    font-size: 24px;
}


/*** Tables ***/

.prices-list table {
    width: 100%;
    margin: 0 0 30px 0;
    font-size: 16px;
    color: #1c1c1c;
}

.prices-list table {
    border-collapse: collapse;
    border-spacing: 0;
}

.prices-list table strong {
    color: #a09d9d;
    font-weight: normal;
}

.prices-list table th {
    color: #fff;
    border-bottom: #e9e9e9 1px solid;
    text-align: left;
    vertical-align: top;
}

.prices-list table th {
    border-bottom: #424242 1px solid;
    padding: 10px;
}

.prices-list table td {
    border-right: #e9e9e9 1px solid;
    border-bottom: #e9e9e9 1px solid;
    text-align: left;
    vertical-align: top;
}

.prices-list caption {
    margin: 0 0 20px 0;
}

.prices-list table tr td:last-child {
    border-right: none;
}

.prices-list table th {
    padding: 14px 20px 14px 20px;
    font-size: 14px;
    font-weight: 400;
}

.prices-list table td {
    padding: 9px 20px;
    line-height: 160%;
}

.prices-list table td {
    padding: 9px 2px;
    line-height: 160%;
    padding: 15px;
}

.prices-list table a {
    color: #1c1c1c;
}

.prices-list table tr {
    background: #fff;
}

.prices-list table tr {
    background: transparent;
}

.prices-list table tr:nth-child(2n) {
    background: #f8f8f8;
}

.prices-list table tr:nth-child(2n) {
    background: #262626;
}


/*** Languages ***/

.dropdown {
    width: 60px;
    display: inline-block;
    background-color: transparent;
    border-radius: 2px;
    box-shadow: 0 0 1px rgb(204, 204, 204);
    transition: all .5s ease;
    position: relative;
    font-size: 14px;
    line-height: 11px;
    color: #ddd;
    height: 30px;
    margin-top: -10px;
    text-align: left
}

.dropdown .select {
    cursor: pointer;
    display: block;
    padding: 10px;
    width: 60px;
}

.dropdown .select > i {
    font-size: 13px;
    color: #888;
    cursor: pointer;
    transition: all .3s ease-in-out;
    float: right;
    line-height: 12px
}

.dropdown:hover {
    box-shadow: 0 0 4px rgb(204, 204, 204)
}

.dropdown:active {
    background-color: #f8f8f8
}

.dropdown.active:hover,
.dropdown.active {
    box-shadow: 0 0 4px rgb(204, 204, 204);
    border-radius: 5px 5px 0 0;
    background-color: #f8f8f8
}

.dropdown.active .select > i {
    transform: rotate(-90deg)
}

.dropdown .dropdown-menu {
    position: absolute;
    background-color: #fff;
    width: 60px;
    left: 0;
    margin-top: 1px;
    box-shadow: 0 1px 2px rgb(204, 204, 204);
    border-radius: 0 1px 5px 5px;
    overflow: hidden;
    display: none;
    max-height: 144px;
    overflow-y: auto;
    z-index: 9
}

.dropdown .dropdown-menu li {
    padding: 10px;
    margin: 0px;
    transition: all .2s ease-in-out;
    cursor: pointer;
    color: #c9a86e !important;
}

.dropdown .dropdown-menu {
    padding: 0;
    list-style: none;
}

.dropdown .dropdown-menu li:hover {
    background-color: #f2f2f2
}

.dropdown .dropdown-menu li:active {
    background-color: #e2e2e2
}

ul.dropdown-menu {
    max-width: 60px;
    min-width: 60px;
}