@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    border: 0;
    outline: none;
    list-style: none;
    box-sizing: border-box;
}

body {
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
    color: #000;
    background-color: #fff;
    height: 100%;
    width: 100%;
}

.start-nav {
    display: none;
}

strong,
b {
    font-weight: 500;
}

ul {
    margin: 1.2em;
}

ul li {
    margin: .3em;
    list-style: circle;
    margin-bottom: 5px;
}


.container ul,
.user_container ul {
    margin: 15px 0 15px 20px;
    padding: 0;
    position: relative;
    padding-left: 25px
}

.container li,
.user_container li {
    margin: 0;
    list-style: none;
    margin-bottom: 5px;
}

.container li::before,
.user_container li::before {
    display: inline-block;
    height: 15px;
    width: 15px;
    content: "\f35a";
    font-family: FontAwesome;
    position: absolute;
    left: 0;
    margin-top: 2px;
    color: #000;
    background-repeat: no-repeat
}

input,
textarea,
select {
    font-family: 'Inter', sans-serif;
    outline: none;
    font-weight: 400 !important;
    border: 1px solid #f2f2f2;
    padding: 1em;
    font-size: .8em;
    color: #00002eff;
}

.check_container {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    font-size: 14px;
    line-height: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding-top: 4px;
    margin: 0 0 20px 0;
    align-items: flex-start;
}

.check_container p {
    margin-top: -3px;
    padding: 0 !important;
    font-weight: 400;
    line-height: 19px
}


.check_container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #000
}

.check_container:hover input~.checkmark {
    background-color: #000
}

.check_container input:checked~.checkmark {
    background-color: #58382D;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none
}

.check_container input:checked~.checkmark:after {
    display: block;
}

.check_container .checkmark:after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg)
}

a {
    color: #58382D;
    text-decoration: underline;
    transition: 0.3s;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    cursor: pointer;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

a:hover {
    color: #58382D;
    text-decoration: none;
}


.imgCover {
    float: left;
    width: 100%;
    height: 350px;
    background-size: 100%;
    margin: 1em 0 1em 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.imgRight {
    float: right;
    width: 35%;
    max-width: 400px;
    height: auto;
    clear: right;
    box-sizing: border-box;
    margin: 1em 0 1em 1em;
}

.imgRight img {
    width: 100%;
}

.imgLeft {
    float: left;
    width: 35%;
    max-width: 400px;
    height: auto;
    clear: left;
    box-sizing: border-box;
    margin: 1em 1em 1em 0;
}

.imgLeft img {
    width: 100%;
}

.imgCenter {
    float: left;
    width: 100%;
    height: auto;
    clear: left;
    box-sizing: border-box;
    margin: 1em 0;
    text-align: center;
}

.imgCenter img {
    width: 100%;
    max-width: 900px;
}

.userGgallery {
    margin: 20px 0;
    line-height: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
}

.userGgallery img {
    width: 100%;
}

.files {
    width: 100%;
    margin-top: 15px;
}

.fileDownload {
    padding: 5px 0 5px 25px;
    box-sizing: border-box;
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 20px;
}

.btn {

    padding: 1em;
    color: #fff;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    font-weight: 500;
    min-width: 250px;
    border: 1px solid #fff;
    border-radius: 10px;
    text-align: center;
    background-color: #58382D;

}

.btn:hover {
    background-color: #000;
    color: #fff !important;
}

.btnMin {
    color: #fff !important;
    min-width: auto;
    padding: 10px 1em !important;
}

.inputF {
    width: 100%;
    height: 55px;
    background-color: #fff;

    font-size: .9em;
    padding: 0 0 0 10px;
    -webkit-appearance: none;
}

.area-field {
    width: 100%;
    background-color: #fff;

    font-size: .9em;
    padding: 10px 0 0 10px;
    height: 90px;
}

.default-form-btn {
    background-color: #000;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;

    text-align: center;
    font-size: 1em;

    font-weight: 500 !important;
    -webkit-appearance: button;
    width: 100%;


}

.default-form-btn:hover {
    background-color: #000010;
}

main {
    display: flex;
    align-items: flex-start;
    width: 100%;
    font-size: 16px;
    line-height: 1.5em;
    margin-top: 0;
    font-weight: 300;

}

.marg {
    margin: 0 auto;
    width: 100%;
    max-width: 1100px;
    padding: 0 15px;
}

.content {
    width: 100%;
    margin: 0 auto;
    max-width: 2500px;
}

.user_container {
    margin: 0 auto;
    width: 100%;
    max-width: 1200px;
    margin-bottom: 35px;
    margin-top: 35px;
    padding: 0 20px;
    color: #00002eff;
}

.mt80 {
    margin-top: 160px;
}



h1 {
    margin: 0 0 .5em 0;
    font-size: 2.2em;
    line-height: 1em;
    font-weight: 700;
}

h3 {
    margin: 1em 0 1.3em 0;
    font-size: 1.3em;
    line-height: 1.2em;
}

.user_container h1 {
    font-size: clamp(25px, 5vw, 40px);
    line-height: 1.2em;
    font-weight: 700;
    color: #000;
}

.user_container h2 {
    font-size: clamp(20px, 5vw, 30px);
    line-height: 1.4em;
    font-weight: 500;
    margin: 20px 0 30px 0;
    color: #000;
}

.user_container h3 {
    font-size: clamp(18px, 5vw, 25px);
    line-height: 1.2em;
    font-weight: 500;
    margin: 20px 0 30px 0;
    color: #000;
}

.user_container h4 {
    font-size: clamp(18px, 5vw, 25px);
    line-height: 1.2em;
    font-weight: 500;
    margin: 20px 0 30px 0;
    color: #000;
}

blockquote {
    display: table;
    width: auto;
    height: auto;

    padding: 35px;
    margin: 20px 0 20px 0;
    font-size: clamp(16px, 5vw, 18px);
    font-weight: 300;
    line-height: 1.2em;
}

blockquote p {
    margin: 0;
    padding: 0;
}

/*HEAD*/
header {
    width: 100vw;
    /*background-color: #2f1f19;*/
    position: absolute;
    z-index: 1000;
    left: 0;
    padding: 15px 0;
    height: auto;

    display: flex;
    justify-content: center;
    align-items: center;
    transition: .5s all;
}

.head-low {
    padding: 0 0 !important;
    top: 0;
    position: fixed;
    font-size: 13px !important;

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    -moz-backdrop-filter: blur(15px);
    background-color: rgba(51, 32, 26, .65);
}

.head-low .logo img {
    height: 45px;
}

.head-low .lan {
    font-size: 13px;
}

header .marg {
    width: 100%;
    max-width: 980px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-items: center;
    position: relative;

}

.mrA {
    margin-left: auto;
}

header a {
    text-decoration: none;
}

header a:hover {}

.logo {
    width: auto;
    line-height: 0;
    text-align: center;
    cursor: pointer;
}

.logo img {
    height: 160px;
    transition: .5s all;
}

.panel {
    display: none;
}

.lan2 {
    display: none;
}

.lan {
    text-transform: uppercase;

    font-size: 15px;
    margin: 0 0 0 0;


    line-height: 1em;
    font-weight: 500;
}

.lan a,
.lan2 a {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

.lan a:hover,
.lan2 a:hover {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid #fff;
}

.white {
    color: #fff;
    border-bottom: 1px solid #fff;
}


.main-navi {
    margin-left: 50px;
    position: relative;
    margin-right: 0;

}

.navigation {
    list-style: none;

    display: flex;
    align-items: center;
    margin: 0 0 0 0;

}

.navigation li {
    display: inline-block;
    margin: 0 10px 0 10px;
    padding: 0 0;
    background-image: none;
    transition: .5s all;


}

.navigation i {
    margin-right: 5px;
    font-size: 13px;
    color: #fff;
}

.navigation .act a {
    color: #fff !important;

}

.navigation li a {
    color: #fff;
    text-decoration: none;
    height: auto;
    padding: 0 0 0 0;
    height: auto;
    display: flex;
    align-items: center;
    transition: .5s all;
    font-weight: 400;
    letter-spacing: 1px;
    border-bottom: 1px solid transparent;
}

.navigation li:hover a {
    border-bottom: 1px solid #fff;
    color: #fff !important;
}

.navigation li :hover a {
    color: #fff;
}

.navigation .act li:hover {
    color: #fff;

}

.navitation li:hover a {
    color: #fff;
}


.main-navi li:hover>ul {
    display: block;
    opacity: 1;
    animation: fadein 0.5s;

}

.main-navi ul ul {
    position: absolute;
    display: none;
    margin: 0 0;
    padding: 0 0 0 0;
    opacity: 0;
    margin-left: 0;
    z-index: 5000;
    box-sizing: border-box;
}

.main-navi ul ul li {
    display: block;
    opacity: 1;
    animation: fadein 0.5s;
}

.submenuHover {
    width: 250px;
    margin: 0 0 0 0;
    height: auto;
    background-color: #fff;
    box-sizing: border-box;
    margin-top: 0 !important;

}

.submenuHover li:last-child a {
    border-bottom: none !important;
}

.submenuHover li {
    margin: 0 0 0 0 !important;
    padding: 0 10px 0 10px !important;
    font-size: 1em;
    color: #000 !important;
    height: auto !important;
    width: 100%;
}

.submenuHover i {
    width: 18px;
}

.submenuHover li:hover {
    transition: all 0.5s;
    color: #fff !important;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}

.submenuHover li a:hover {
    background-color: #fff !important;

}

.submenuHover a {
    font-size: 14px;
    background-color: transparent !important;
    border-radius: unset !important;
    color: #000 !important;
    text-decoration: none;
    float: left;
    width: 100%;
    height: auto !important;
    padding: 15px 0 !important;
    border: none !important;
    margin: 0 !important;
    border-bottom: 1px solid #000 !important;
    box-sizing: border-box;
    -webkit-border-radius: unset !important;
    -moz-border-radius: unset !important;
    -ms-border-radius: unset !important;
    -o-border-radius: unset !important;
    text-transform: initial !important;

}


@keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-moz-keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-webkit-keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-ms-keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/*SLIDE*/

#slider {
    width: 100%;
    height: calc(100vh);
    overflow: hidden;
    position: relative;

}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    height: calc(100vh);
    width: 100%;
    display: flex;
    align-items: flex-end;
    z-index: 8;
    flex-wrap: wrap;
    background-position: center;
    background-size: cover;
}


.slide.active {
    opacity: 1;
    z-index: 9;
}

.slide img {
    width: 100% !important;
    height: 100%;
    object-fit: cover;

}

.slide_caption {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    color: #fff;
    background: rgba(0, 0, 0, .5);
}

.slide_caption h2 {
    text-align: center;
    line-height: 1.1em;
    padding: 0 20px;
    font-size: clamp(25px, 5vw, 40px);
    font-weight: 300;
    letter-spacing: 1px;
}

.caption .marg {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 50px;
    position: relative;
}

#slideNav {
    position: absolute;
    z-index: 9;
    bottom: 50px;
    right: 2%;
    display: flex;
}

#prevBtn,
#nextBtn {
    width: 45px;
    height: 45px;
    font-size: 18px;
    cursor: pointer;
    border: 2px solid #fff;
    color: #fff;
    background-color: transparent;
    transition: .5s all;
    margin-right: 10px;
    border-radius: 50%;
    line-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;

}

#prevBtn:hover,
#nextBtn:hover {
    background-color: #1d3461;
    border-color: #fff;

}

/*prednosti*/
.p_items{
    background-color: #f8f5f2;
    display: flex;
    justify-content: center;
    align-items: center;
  color:#58382D;
   padding: 50px 10% 0 10%;
}
.p_item{
    flex:1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

}
.p_item span{
    width: 60px;
    height: 60px;
    background-color: #58382D;
    color:#fff;
    font-size: 35px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.p_item p{
    font-weight: 300;
    margin-top: 8px;
}



.animate {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s, transform 0.6s;
    margin: 0 0;
}

.animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/*book*/
.book {
    background-color: #33201a;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 10px 30px 10px 30px;
    width: 620px;
    color: #fff;
    position: fixed;
    left: 50%;
    /* prestavi levi rob na sredino */
    transform: translateX(-50%);
    bottom: 0;
    z-index: 15000;
}

.book_info {
    display: none;
    background-color: #33201a;
    color: #fff;
    padding: 20px;
    width: 90%;
   
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    /* centriraj po X in Y */
    text-align: center;
    z-index: 15000;
    max-width: 620px;
    /* da na mobilcu ne gre čez rob */
}
.close_info{
    border: 1px solid #fff;
    display: inline-block;
    padding: 5px 10px;
    margin-top: 15px;
    cursor: pointer;
    font-size: 14px;
    transition: .5s all;
}
.close_info:hover{
    background-color: #000;
}
.rwd {
    display: none !important;
}

.desk {
    display: block;
}

.book-place {
    display: flex;
    width: 100%;
}

.book-input {
    display: flex;
    flex-direction: column;

    width: 100%;
}

.split {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 10px;
}

.half {
    grid-template-columns: repeat(2, 1fr);
}

.book input {
    height: 45px;
    border: 1px solid #fff;
    font-size: 16px;
    font-weight: 500;
    padding: 0 10px;
    width: 100%;
}

.book-input label {

    margin-bottom: 5px;
    font-size: 14px;
}

.book-hid {
    max-height: 84px;
    opacity: 1;
    overflow: hidden;
    margin-top: 0;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    transition: max-height 0.8s ease, opacity 0.8s ease;
}

.book-vis {
    max-height: 550px;
    opacity: 1;
}

.blur_off {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 0;
    height: 0;
    opacity: 0;
    transition: max-height 0.8s ease, opacity 0.8s ease;
}

.blur {
    opacity: 1;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100vw;
    height: 100vh;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    -moz-backdrop-filter: blur(5px);
    background-color: rgba(0, 0, 0, .45);
    transition: max-height 0.8s ease, opacity 0.8s ease;
}

.book-btn {
    background-color: transparent;
    color: #f8f5f2;
    border: none;
    border: 1px solid #f8f5f2 !important;
    cursor: pointer;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;

    text-align: center;
    font-size: 1em;
    padding: 0 15px;
    font-weight: 400 !important;
    -webkit-appearance: button;
    width: 100%;
}

.step-1 {
    position: absolute;
    display: inline-block;
    background-color: transparent;
    color: #f8f5f2;
    border: none;
    border: 1px solid #f8f5f2 !important;
    cursor: pointer;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1em;
    padding: 0 15px;
    font-weight: 400 !important;
    margin-top: 28px;
    width: 190px;
    right: 15px;
    bottom: 20px;
}

/*izpostave*/
.izpostava_intro {
    padding: 80px 0;
    text-align: center;
    background-color: #f8f5f2;
}
.izpostava_intro h3{
    margin: 0;
    padding: 0 20px;
    font-size: clamp(18px, 5vw, 25px);
}

/*extra*/
.extra_item {
    width: 100%;
    padding: 80px 10%;
    background-color: #f8f5f2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.extra_item blockquote {
    display: table;
    width: auto;
    height: auto;
    font-size: clamp(18px, 5vw, 25px);

    line-height: 1.2em;
    font-style: italic;
    padding: 0;
    margin: 0 0 20px 0;
    letter-spacing: 1px;
    font-weight: 300;


}

.rev {
    background-color: #fff;
}

.rev .extra_img {
    order: 2;
}

.rev .extra_txt {
    order: 1;

}

.extra_img {
    flex-basis: 50%;
    height: 580px;
    line-height: 0;
    position: relative;
    overflow: hidden;
}

.extra_img img {
    width: 100%;
    max-height: 580px;
    position: absolute;
    object-fit: cover !important;
}

.extra_txt {
    flex-basis: 50%;
    padding: 50px;
}

.extra_txt h2 {

    font-size: clamp(25px, 5vw, 40px);
    margin: 0 0 25px 0;
    line-height: 1.2em;
    font-weight: 300;
    color: #58382D;
}

.quaters {
    width: 100%;
    padding: 0 10%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
    padding-bottom: 80px;
}

.quater h3 {
    font-size: 30px;
    font-weight: 300;
}

.quaters_img {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    line-height: 0;
}

.quaters_img img {
    width: 100%;
}

.quaters a {
    display: inline-block;
    border: 1px solid #58382D;
    background-color: #58382D;
    color: #fff;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 300;
    padding: 10px 20px;
    margin-top: 25px;
    text-decoration: none;
}

.quaters a:hover {
    background-color: transparent;
    color: #58382D;
}

.map_contact {
    width: 100%;
    height: 750px;
    position: relative;
}

.contact_card {
    position: absolute;
    left: 50%;
    width: 355px;
    /* prestavi levi rob na sredino */
    transform: translateX(-50%);
    background-color: rgba(88, 56, 54, .9);
    bottom: 0;
    color: #fff;
    padding: 30px;
    border: 1px solid #fff;
    border-bottom: none;
}

.contact_card>div {
    display: flex;
    font-size: 14px;
}

.contact_card>div p:first-child {
    display: inline-block;
    width: 100px;
}

.contact_card>div p:nth-child(2) {
    font-weight: 500;
}

.contact_card a {
    color: #fff;
}

.contact_card i {
    width: 25px;
}

.map_contact iframe {
    width: 100%;
    height: 750px;
}

.contact_card_logo {
    align-items: center;
    justify-content: center;
    display: flex;
}

/*FOOTER*/
footer {
    width: 100%;
    background-color: #f8f5f2;
    color: #58382D;
    padding: 30px 0 130px 0;
    font-size: 14px;
}

footer .marg {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 980px;
    width: 100%;
    background-color: #f8f5f2;
    padding: 0 0;
}

.foot_icons {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.icon {
    display: flex;
    margin-bottom: 8px;
}

.icon i {
    width: 25px;
    color: #58382D;
}

.icon p {

    display: flex;
    flex-direction: column;
}

.social_icons {
    display: flex;
    align-items: center;
    justify-content: center;
}

.social_icons a {
    width: 30px;
    height: 30px;
    border: 1px solid #58382D;
    color: #fff;
    background-color: #58382D;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.social_icons a:hover {
    background-color: transparent;
    color: #58382D;
}

.pageEnd {
    width: 100%;
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
}