@import url('https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400..700;1,400..700&display=swap');

* {
    margin: 0;
    padding: 0;
    border: 0;
    outline: none;
    list-style: none;
    box-sizing: border-box;
}

body {
    margin: 0 auto;
    font-family: 'Arimo', sans-serif;
    color: #000;
    background-color: #fff;
    height: 100%;
    width: 100%;
    max-width: 2200px;
}

body::after {
    content: '';
    display: block;
    position: fixed;
    bottom: -30px;
    right: 30px;
    width: 300px;
    height: 350px;

    background-image: url("../../images/_body/jez.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right;
    z-index: -1;

}

.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: 'Arimo', sans-serif;
    outline: none;
    font-weight: 400 !important;


    font-size: 16px;
    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: #43321F;
}

.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: #43321F;
    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: #43321F;
    text-decoration: none;
}


.imgCover {
    float: left;
    width: 100%;
    height: 750px;
    background-size: 100%;
    margin: 0 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: 25px 0;
    margin-right: 0px;
    margin-left: 0px;
    line-height: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.userGgallery img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.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;

    min-width: 250px;

    overflow: hidden;
    text-align: center;
    background-color: #43321F;
    margin-top: 20px;
    font-size: 16px;
    position: relative;
    z-index: 0;
    transition: .5s all;
}

.btn i {
    transition: .5s all;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -95%;
    width: 100%;
    height: 100%;
    background-color: #DFBC98;
    transition: left 0.4s;
    z-index: -1;
}

.btn:hover::before {
    left: 0;
}

.btn:hover i {
    padding-left: 15px;
}

.btnMin {
    color: #fff !important;
    min-width: auto;
    padding: 10px 1em !important;
}

.inputF {
    width: 100%;
    height: 55px;
    background-color: #fff;
    font-size: 16px;
    padding: 0 0 0 0;
    -webkit-appearance: none;
    border-bottom: 1px solid #000;

}

.area-field {
    width: 100%;
    background-color: #fff;
    border: 1px solid #000;
    font-size: 16px;
    padding: 10px;
    height: 100px;
}

main {
    position: relative;
    width: 100%;
    font-size: 16px;
    line-height: 1.5em;
    margin-top: 0;


}

.main_cont {
    position: relative;
}

.bF {
    position: absolute;
    margin: 0;
    top: -10px;
    right: 0;
    min-width: 150px;
    padding: 10px 20px;
}

.marg {
    margin: 50px auto;
    width: 100%;
    max-width: 1100px;
    padding: 0 15px;
}

.content {
    width: 100%;
    margin: 0 auto;
    max-width: 2500px;
}


.mt80 {}



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_style h1 {
    font-size: clamp(25px, 5vw, 40px);
    line-height: 1.2em;
    font-weight: 700;
    color: #000;
}

.user_style h2 {
    font-size: clamp(20px, 5vw, 30px);
    line-height: 1.4em;
    font-weight: 500;
    margin: 20px 0 30px 0;
    color: #000;
}

.user_style h3 {
    font-size: clamp(18px, 5vw, 25px);
    line-height: 1.2em;
    font-weight: 500;
    margin: 20px 0 30px 0;
    color: #000;
}

.user_style 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);

    line-height: 1.2em;
}

blockquote p {
    margin: 0;
    padding: 0;
}


.user_style table {
    width: auto;
    border-spacing: 0;
    max-width: 100%;
    margin: 20px 0;
}

table ul {
    margin-left: 0 !important;
}

.user_style tr:nth-child(even) {
    background: #f2f2f2;
}

.user_style td {
    padding: 5px 10px;
    font-size: .9em;

}

.user_style th {
    background-color: #DFBC98;
    color: #fff;
    padding: 10px;
    font-size: 16px;

    text-align: left;
    font-weight: 400;
}

.conPlace table {
    width: 100%;
    max-width: 500px;
    margin: 30px auto;
    border: 1px solid #000;
    padding: 35px;
    margin-bottom: 0;


}

.conPlace td:first-child {
    text-align: right;
    color: #DFBC98;
}

.conPlace tr:nth-child(even) {
    background: unset;
}

.split {
    font-size: 25px;
    color: #000;
    font-weight: 500;
    line-height: 1.3em;
    letter-spacing: .5px;
    text-align: center;
    width: 100%;
    position: relative;
    margin: 60px 0 80px 0;
    position: relative;

}

.split::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 1px;
    background-color: #43321F;
    bottom: -15px;
    left: calc(50% - 40px);
    transition: .5s all;
}

/*kategorie*/

.grid-list {
    float: left;
    width: 100% !important;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin: 0 0 0 0;
    float: left;
}

.grid_item {
    padding: 0;

    transition: .5s all;
}

.grid-list a {
    text-decoration: none;
}

.grid_item_img {
    width: 100%;
    line-height: 0;
    overflow: hidden;
}

.grid_item:hover img {
    transform: scale(1.2)
}

.grid_item_img img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: .5s all;
}

.grid_item_info {
    padding: 25px;
    margin-top: -35px;
    background-color: #fff !important;
    position: relative;
    width: calc(100% - 40px);
    margin-left: 20px;

}

.grid_item_info h3 {

    font-size: clamp(18px, 5vw, 25px);
    line-height: 1.2em;
    margin: 0 0 15px 0 !important;
    text-align: left;

    height: auto;
    display: flex;
    align-items: center;
    margin: 0;
    color: #000 !important;
}

.fixed_btn {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #43321F;
    color: #fff;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding: 5px 15px;
    text-decoration: none;
    border: 1px solid #fff;
    border-bottom: none;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 1px;
}

.fixed_btn i {
    font-size: 12px;
    margin-right: 8px;
}

.fixed_btn:hover {
    background-color: #000;
    color: #fff;
}


.m-navi {
    display: none;
}


.panel {

    z-index: -1;
    position: fixed;
    overflow-y: scroll;
    overflow-x: hidden;
    width: 100%;
    max-width: 500px;
    height: auto;
    min-height: auto;
    display: flex;
    overflow: hidden;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    align-items: flex-start;
    justify-content: center;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    -moz-backdrop-filter: blur(15px);
    background-color: rgba(255, 255, 255, .85);
    border: 1px solid #000;
    opacity: 0;
    transition: .2s ease;
    border-top: 0;
    border-bottom: 0;

}

.panelVis {
    opacity: 1;
    height: 100vh !important;
    z-index: 95;
    top: 0;
    transition: .52s ease;
    -webkit-transition: .52s ease;
    -moz-transition: .52s ease;
    -ms-transition: .52s ease;
    -o-transition: .52s ease;
    overflow-y: scroll;
    overflow-x: hidden;

}

.flex-nav {
    width: 100%;
    margin: 0 auto;
    max-width: 1900px;
    margin-top: 90px;

}

.flex_bot {
    background-color: #43321F;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 15px;
    justify-content: space-between;
}

.clock {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.clock i {
    width: 20px;
    transition: .5s all;
    margin-right: 10px;
    color: #DFBC98;
    font-size: 16px;
}

.panelContact {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.panelContact a {
    color: #000;
    font-size: 16px;
    margin: 0 10px;
    text-decoration: none;
    font-weight: 400;
}

.panelContact i {
    margin-right: 10px;
    color: #43321F;
}

.social {
    display: flex;
    align-items: center;
    justify-content: center;

}

.social span {
    width: 40px;
    height: 40px;
    display: flex;

    align-items: center;
    justify-content: center;
    line-height: 0;
    text-align: center;
    background-color: transparent;

    border: 1px solid #DFBC98;
    color: #DFBC98;
    transition: .5s all;
}

.social a:hover span {
    background-color: transparent;
}

.social a:hover i {
    color: #DFBC98;
}

.social a {
    text-decoration: none;
    margin: 0 10px;
}

.social i {
    color: #DFBC98;
    transition: .5s all;
    font-size: 16px;
}

.navigation {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;

}

.defImg {
    width: 100%;
    margin-bottom: 15px;
    text-align: center;
}




.navigation a {
    width: 100%;
    color: #000;
    text-decoration: none;
    padding: 20px 15px;
    line-height: 1.2em;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #000;
    transition: .5s all;

}

.navigation a:hover {
    background-color: #DFBC98;
}

.navigation a:hover i {
    color: #fff;
}

.submenuHover {
    min-width: 100%;
    height: auto;
    box-sizing: border-box;
    padding: 0 0 0 25px !important;
    margin: 15px 0 0 0 !important;

}

.submenuHover li {
    margin: 0;
}

.navigation i {
    width: 20px;
    transition: .5s all;
    margin-right: 10px;
    color: #DFBC98;
}

.submenuHover a {
    box-sizing: border-box;
    color: #fff !important;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 15px 0;

    margin: 0 0 0 0 !important;
    border-bottom: 1px solid #000;

    box-sizing: border-box;
    font-weight: 400;
}

.nav_sec a:hover {
    color: #0F295C !important;
}



.animate {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s, transform 0.6s;
    margin: 0 0;
}

.animate.visible {
    opacity: 1;
    transform: translateY(0);
}



.animateNav {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s, transform 0.6s;
    margin: 0 0;
}

.animateNav.visible {
    opacity: 1;
    transform: translateY(0);
}


header {
    width: 100%;

    padding: 0 0;
    display: flex;

    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;

}

.narocilo {
    position: fixed;
    top: 0;
    left: 0px;
    z-index: 101;
    background-color: #DFBC98;
    width: auto;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #000;
    line-height: 0;
    padding-left: 10px;

}

.narocilo i {
    font-size: 25px;
    margin-left: 10px;
}

.narocilo p {
    padding: 0 15px 0 10px;
    letter-spacing: 1px;
}

.bskt{
     position: fixed;
    top: 0;
    right: 70px;
    z-index: 101;
    background-color: #DFBC98;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #000;
    line-height: 0;
   
    text-decoration: none;
}
.bskt i {
    font-size: 25px;
}

header .marg {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
}

.lan {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.lan img {
    width: 30px;
    height: 30px;
    object-fit: cover;

    box-sizing: border-box;
    transition: .5s all;
    opacity: .3;
}

.white img {
    opacity: 1;
}

.lan a:hover img {
    opacity: 1;
}

.lan a {
    margin: 0 10px;
}

.logo {
    width: 180px;

    line-height: 0;
    padding: 15px;
    display: flex;
    flex-direction: column;
    transition: .5s all;
    text-align: center;

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    -moz-backdrop-filter: blur(15px);
    background-color: rgba(255, 255, 255, 1);
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    backface-visibility: visible !important;
}

.minify {
    width: 115px;
    padding: 10px;
}

.logo_nav {
    width: 115px;
    padding: 10px;
    background-color: unset;
}

.logo img {
    width: 100%;
    transition: 1 all;
    transition: opacity 1s ease;
}

.start-nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 101;
    background-color: #fff;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    color: #000;


}


.main-navi {
    margin: 0 40px;
    position: relative;


}

.navigation {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;

}

.izpoSub {
    width: 100%;
    height: 450px;
    overflow: hidden;
    position: relative;
    background-size: 100%;
    background-position: center;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    color: #fff;
    padding-bottom: 0;
    font-size: clamp(14px, 4vw, 16px);
    margin-bottom: -100px;

}

.izpoSub .marg {
    width: 100%;
    max-width: 980px;
    display: flex;
    padding: 35px;
    flex-direction: column;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0, rgba(0, 0, 0, .7) 100%);
}

.izpoSub h2 {
    line-height: 1.1em;
    margin-bottom: 8px;
    font-size: clamp(25px, 5vw, 40px);

    letter-spacing: 1px;
}

/*BLOG*/

.blog_items {

    width: 100% !important;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin: 0 0 50px 0;
}


.blog-item {

    display: flex;
    flex-direction: column;
    text-align: center;


}

.blog-item a:hover {

    color: #000;
}

.blog_img {
    margin-bottom: 30px;
    position: relative;
    text-align: center;
    line-height: 0;
    height: 400px;

}

.blog_content {


    padding: 0 40px;

}

.blog_item:hover h2 a {
    color: #43321F;
}

.blog_img img {
    position: absolute;
    width: 100%;
    height: 400px;
    object-fit: cover;
    top: 0;
    left: 0;

}

.blog_item h2 {
    font-size: 25px;
    color: #000;
    font-weight: 500;
    line-height: 1.3em;
    letter-spacing: .5px;
    text-align: center;
    width: 100%;
    position: relative;
    margin: 0 0 35px 0;

}

.blog_item a {
    text-decoration: none;
}

/*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%;
    background: #fff;
    background: -moz-linear-gradient(180deg, rgba(255, 255, 255, 0) 0, rgba(0, 0, 0, .7) 100%);
    background: -webkit-linear-gradient(180deg, rgba(255, 255, 255, 0) 0, rgba(0, 0, 0, .7) 100%);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0, rgba(0, 0, 0, .7) 100%);
    display: flex;
    flex-direction: column;
    color: #fff;
    padding-bottom: 150px;
    align-items: center;
    text-align: center
}

.slide_caption h2 {
    text-align: center;
    line-height: 1.1em;
    padding: 0 20px;
    margin-bottom: 8px;
    font-size: clamp(25px, 5vw, 40px);

    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;
    left: calc(50% - 55px);
    width: auto;
    display: flex;
}

#prevBtn,
#nextBtn {
    width: 45px;
    height: 45px;
    font-size: 18px;
    cursor: pointer;
    border: 1px solid #fff;
    color: #fff;
    background-color: transparent;
    transition: .5s all;
    margin: 0 5px;
    border-radius: 50%;
    line-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;

}

#prevBtn:hover,
#nextBtn:hover {
    background-color: #43321F;
    border-color: #fff;

}

.introGal-wrapper {
    overflow: hidden;
    width: 100%;
    overflow-x: hidden;
    margin-bottom: 30px;
}

.introGal {
    padding: 30px 0;
    width: 100%;
    display: flex;
    width: max-content;

}

.introGal img {
    height: 450px;
    margin-right: 30px;
}

/*prednosti*/
.p_items {

    width: 100%;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;

    padding: 0 0 60px 0;
}

.p_item {

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

}

.p_item span {
    width: 60px;
    height: 60px;

    color: #DFBC98;
    font-size: 28px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.p_item p {

    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);
}

/*izpostave*/
.izpostava_intro {
    padding: 80px 0;
    text-align: center;
    background-color: #f8f5f2;
}

/*kontakt*/
.prijava_place {
    display: grid;
    grid-template-columns: 1fr;
    background-color: #fff;
    width: 100%;
}

.form-place {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 70px 0;
}

.prijava_info h4 {

    font-size: clamp(20px, 5vw, 30px);
    line-height: 35px;
    margin-bottom: 20px;


}

.form-place form {
    width: 90%;
    max-width: 500px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.p_img {
    padding: 0;
}

.p_img iframe {
    height: 650px;
}


#fKontakt>div {
    width: 48%;
}

.prijava_info {
    flex-basis: 100% !important;
    text-align: center;
}

.full_r {
    flex-basis: 100% !important;
}

.prijava_place label {
    margin: 20px 0 0 0;
    display: block;
    font-size: .8em;
    font-weight: 400;
}

.default-form-btn {
    background-color: #000;
    color: #fff;
    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;
    border: 1px solid #000;
    width: 100%;
    height: 50px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 18px !important;
    font-weight: 400 !important;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.default-form-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #43321F;
    transition: left 0.4s;
    z-index: -1;
}

.default-form-btn:hover::before {
    left: 0;
}

.default-form-btn i {
    padding-left: 8px;
    transition: .5s all;
}

/*paralax*/


.paralax {
    display: flex;
    width: 100%;
    height: 600px;
    padding-top: 100px;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: 1px;
    position: relative;
    overflow: hidden;
    flex-wrap: wrap;
    order: 1;
    background-repeat: no-repeat;
    background-attachment: fixed;
    text-align: center;

    background-size: cover;
    margin: 0 0;

}

.paralax_cont {
    width: 100%;
    background: #fff;
    background: -moz-linear-gradient(180deg, rgba(255, 255, 255, 0) 0, rgba(0, 0, 0, .7) 100%);
    background: -webkit-linear-gradient(180deg, rgba(255, 255, 255, 0) 0, rgba(0, 0, 0, .7) 100%);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0, rgba(0, 0, 0, .7) 100%);
    padding: 0 0 50px 0;
    color: #fff;
}

.paralax_cont h2 {

    line-height: 1.2em;
    font-size: clamp(25px, 5vw, 40px);
    margin: 0 0 15px 0;
}

.paralax_cont p {
    font-size: clamp(14px, 5vw, 16px);
    line-height: 1.2em;

    letter-spacing: 1px;

}


.acc-h {
    cursor: pointer;
    user-select: none;
    margin: 0 0 15px 0;
    color: #000;
    font-size: clamp(18px, 5vw, 20px);
    padding-bottom: 10px;
    font-weight: 400;
    border-bottom: 1px solid #000;
    position: relative;
}

.acc-h::after {
    position: absolute;
    content: "\2b";
    display: inline-block;
    height: 15px;
    width: 15px;
    font-family: FontAwesome;
    right: 0;
    font-size: 15px;
}

.acc-h+.acc-panel {
    border-top: 0;
    display: none;
    padding: 25px 0;
}

.acc-h.is-open::after {
    position: absolute;
    content: "\f068";
    display: inline-block;
    height: 15px;
    width: 15px;
    font-family: FontAwesome;
    color: #DFBC98;
    right: 0;
}

/*extra*/
.extra_item {
    width: 100%;
    padding: 0;
    background-color: #f8f5f2;
    display: flex;
    justify-content: center;
    align-items: center;
}

video {
    height: 80vh;
    width: calc(100vw - 650px);
    object-fit: cover;
}

.extra_item blockquote {
    display: table;
    width: 100%;
    height: auto;
    font-size: clamp(18px, 5vw, 25px);
    text-align: center;
    line-height: 1.2em;

    padding: 0;
    margin: 0 0 20px 0;
    letter-spacing: 1px;
    color: #DFBC98;
}

.rev {
    background-color: #fff;
}

.rev .extra_img {
    order: 2;
}

.rev .extra_txt {
    order: 1;

}

.extra_img {
    width: calc(100% - 650px);

    line-height: 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.extra_img img {
    width: 100%;
    height: 750px;
    object-fit: cover;

}

.extra_txt {
    width: 100%;
    max-width: 650px;
    padding: 50px;
    text-align: center;
}

.dt .extra_txt {
    text-align: left;
}

.extra_txt h2 {

    font-size: clamp(25px, 5vw, 40px);
    margin: 0 0 25px 0;
    line-height: 1.2em;

    color: #43321F;
}

.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;

}

.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 #43321F;
    background-color: #43321F;
    color: #fff;
    border-radius: 25px;
    font-size: 16px;

    padding: 10px 20px;
    margin-top: 25px;
    text-decoration: none;
}

.quaters a:hover {
    background-color: transparent;
    color: #43321F;
}

.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 {
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1500px;
    padding: 80px 0 40px 0;
}

.logo_foot {
    width: 100%;
    text-align: center;
}

.foot_navi {
    width: 100%;
    margin: 35px 0;
    text-align: center;
    font-size: 13px;
    color: #DFBC98;
}

.foot_navi a {
    margin: 0 5px;
    font-size: 16px;
    text-decoration: none;
}

footer img {
    height: 120px;
}

.f_elem {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;

}

.f_elem a {
    text-decoration: none;
}

.moto {
    width: 100%;
    text-align: center;
    letter-spacing: 2px;
    color: #DFBC98;
    font-size: 12px;
    margin-bottom: 35px;
}

.f_elem span {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #43321F;
    border-radius: 50%;
    line-height: 0;
    width: 60px;
    height: 60px;
    color: #DFBC98;
    margin-right: 15px;
    font-size: 20px;
}

.pageEnd {

    width: 100%;
    text-align: center;
    float: left;
    font-size: 13px;

    padding: 15px 0 0 0;
}


.select_section {
    width: 100%;
    padding: 0 0 0 0;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s
}

.select_m {
    background-color: white;
    border: 1px solid #ddd;
    height: auto;
    padding: 5px 10px;
    font-size: 14px;
    width: 90px;
    font-weight: 600 !important;
    -webkit-appearance: none;
    background-image: url("../images/_body/select.svg");
    background-size: 15px;
    background-position: right 10px center;
    background-repeat: no-repeat;
}


.options {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 25px 0;
    border-top: 1px solid #ddd;
    margin-top: 25px;
}

.sOption {
    width: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    padding: 5px 15px;
    border: 1px solid #000;
    margin-bottom: 10px;
    cursor: pointer;
    margin-right: 10px;
    font-size: 13px;
    font-weight: 500;
    position: relative;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s
}

.actSize {
    background-color: #DFBC98;
}

.wide_option {
    width: 100% !important;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.w_left {
    width: 80%;
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
}

.w_left p {
    padding-right: 2px;
}

.catalog_item_price {
    font-size: 20px;
    color: #000;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;


    line-height: 1em;

}

.dp {
    font-size: 20px;
    padding-top: 15px;
    margin-top: 15px;
    border-top: 1px solid #ddd;
}

.catalog_item_price small {
    font-size: 15px;
    margin-right: 5px;
    font-weight: 500;
}

.ci_add {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.details_add .ci_add {}

.catalog_item_price span {

    margin-right: 8px;
}

.ci_add img {
    height: 10px;
}

.ci-qty {
    width: 48px !important;
    height: 48px;
    border: 1px solid #000;
    text-align: center;
    font-size: 1.5em;
    display: inline-block;
    padding: 0 !important;
    margin: 0;
    font-size: 15px;
    font-weight: 700 !important;
    border-radius: 0 !important;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    -ms-border-radius: 0 !important;
    -o-border-radius: 0 !important;
}

.details_add .ci-qty {
    width: 45px !important;
    height: 48px;
    font-size: 1em;
}

.ci_bot {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ci_add_btn {
    background-color: #DFBC98;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    min-width: 48px;
    padding: 0 15px !important;
    height: 48px;
    text-align: center;
    font-size: 1em;

    font-weight: 700 !important;
    width: auto !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.ci_add_btn i {
    margin-left: 5px;
}

.catalog_item .ci_add_btn i {
    margin-left: 0;
}

.ci_add_btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -95%;
    width: 100%;
    height: 100%;
    background-color: #000;
    transition: left 0.4s;
    z-index: -1;
}

.ci_add_btn:hover::before {
    left: 0;
}


.message {
    position: fixed;
    z-index: 20000;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .3);
    width: 100%;
    display: none
}

.message_cont {
    display: flex;
    width: 100%;
    height: 100vh;
    align-items: center;
    justify-content: center
}

.message_show {
    font-size: 15px;
    position: fixed;
    width: 96%;
    max-width: 400px;
    background-color: #fff;
    padding: 25px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    text-align: left;
    line-height: 20px;
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    color: #fff !important
}

.message_cont a {
    background-color: white;
    text-decoration: none;
    margin-top: 5px;
    display: inline-block;
    font-weight: 700;
    padding: 5px 10px;
}

.message_icon {
    width: 20px;
    height: 20px;
    margin-right: 15px;
    background-position: center;
    background-size: 20px;
    background-repeat: no-repeat
}

.success {
    background-color: #DFBC98 !important;
}

.error {
    background-color: #c92b2b
}

.warning {
    background-color: #ffd557
}

.success .message_icon {
    background-image: url(../images/_body/success.svg)
}

.warning .message_icon {
    background-image: url(../images/_body/warning.svg)
}

.error .message_icon {
    background-image: url(../images/_body/error.svg)
}

.closebtn {
    position: absolute;
    top: 10px;
    right: 15px;
    color: #fff;
    font-weight: 700;
    float: right;
    font-size: 22px;
    line-height: 20px;
    cursor: pointer;
    transition: .3s
}


.thank-you-page {
    margin: 120px auto;
    max-width: 870px;
    width: 100%;
    line-height: 1.8em;
    padding: 2em;
    margin-bottom: 2em;
    text-align: center;
    background-color: #fff
}

.thank-you-page h3 {
    margin: 10px 0;
    padding: 10px 0;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    color: #96CC49
}

.lost-links a {
    display: inline-block;
    margin: .5em
}

.thank-you-page img {
    max-width: 30%;
    margin-bottom: 1em
}

/*CATALOG*/

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 320px));
    justify-content: center;
    gap: 30px;
    
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.catalog-card {
    width: 100%;
    position: relative;
}

.catalog-card-inner {
    position: relative;
    display: block;
    width: 100%;
    padding-top: 100%; /* 1:1 ratio */
    background-size: cover;
    background-position: center;
    overflow: hidden;
    text-decoration: none;
}

.catalog-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0.2));
    transition: 0.4s ease;
}

.catalog-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px;
    color: #fff;
    z-index: 2;
    transition: 0.4s ease;
}

.catalog-content h2 {
    font-size: 28px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.catalog-price {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 25px;
}

.catalog-btn {
    padding: 12px 28px;
    border: 1px solid #fff;
    font-size: 14px;
    letter-spacing: 2px;
    transition: 0.3s ease;
}

/* HOVER EFFECT */

.catalog-card-inner:hover .catalog-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.4));
}

.catalog-card-inner:hover .catalog-content {
    transform: translateY(-5px);
}

.catalog-card-inner:hover .catalog-btn {
    background: #fff;
    color: #000;
}
