/* roboto-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Syne';
  font-style: normal;
  font-weight: 400;
  src: url('assets/fonts/Syne-Medium.ttf') format('truetype'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* roboto-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Syne';
  font-style: normal;
  font-weight: 500;
  src: url('assets/fonts/Syne-Medium.ttf') format('truetype'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* roboto-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Syne';
  font-style: normal;
  font-weight: 600;
  src: url('assets/fonts/Syne-SemiBold.ttf') format('truetype'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* roboto-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Syne';
  font-style: normal;
  font-weight: 700;
  src: url('assets/fonts/Syne-Bold.ttf') format('truetype'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* roboto-800 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Syne';
  font-style: normal;
  font-weight: 800;
  src: url('assets/fonts/Syne-ExtraBold.ttf') format('truetype'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}


/***************************************************************
                         ROOT
***************************************************************/
:root {
    --font-primary: 'Syne', sans-serif;
    --primary-color: #107634;
    --highlight-color: #eecd15;
    --text-color: #fff;
    --text-color-dark: #051815;
    --text-color-medium: #585c59;;
    --body-bg: #faf9f7;
    --border-radius: 18px;
}

/*************************
        BODY
**************************/
body {
    margin: 0;
    padding: 0;
    font-family: var(--font-primary);
    color: var(--text-color);
    background-color: var(--body-bg);
}
.hero-bottom svg path {
    fill: var(--body-bg);
}
/*************************
    PRE-DEFINED CLASSES
**************************/
.primary-bg-color {
    background-color: var(--primary-color);
}
.text-primary-color {
    color: var(--primary-color);
}

.border-radius {
    border-radius: var(--border-radius) !important;
}

.z-4 {
    z-index: 4 !important;
}

.play-button {
    background-color: var(--primary-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    z-index: 3;
    &::after, &::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(1);
        border: 1px solid #fff;
        width: 59px;
        height: 59px;
        border-radius: 50%;
        z-index: 1;
        opacity: 0;
        transition: all 0.2s ease-in-out;
    }
}

.video-modal {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    &::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.4);
        z-index: 2;
    }
}
.video-modal:hover {
    cursor: pointer;
    .play-button {
        &::after {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1.2);
        }
        &::before {
             opacity: .5;
            transform: translate(-50%, -50%) scale(1.4);
        }
    }
}
.btn {
    font-size: 14px;
    line-height: 1;
    border-radius: 32px;
    padding: 20px 34px;
    border: 0;
    font-weight: 700;
    transition: all 0.3s ease-in-out;
}
.btn:focus-visible, 
.btn:focus,
.btn:active,
:not(.btn-check) + .btn:active {
    outline: 0;
    box-shadow: none;
}
.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-color);
}
.btn-primary:hover,
.btn-primary:focus-visible, 
.btn-primary:focus,
.btn-primary:active,
:not(.btn-check) + .btn-primary:active {
    background-color: var(--highlight-color) !important;
    color: #000 !important;
}

.btn-arrow {
    position: relative;
    padding-right: 58px;
}
.btn-arrow::after {
    height: 16px;
    width: 16px;
    content: "";
    position: absolute;
    top: 50%;
    right: 22px;
    transform: translateY(-50%);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: all .2s;
}
.btn-arrow::before {
    height: 16px;
    width: 16px;
    content: "";
    position: absolute;
    top: 50%;
    right: 50px;
    transform: translateY(-50%);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: all .15s;
    opacity: 0;
}
.btn-primary.btn-arrow::after {
  background-image: url('assets/images/arrow-right-white.svg');
}
.btn-arrow::before {
  background-image: url('assets/images/arrow-right-dark.svg');
}
.btn-arrow:hover::before {
  right: 22px;
  opacity: 1;
}
.btn-arrow:hover::after {
  transform: translateX(110%) translateY(-50%);
  opacity: 0;
  visibility: hidden;
}

.section-padding {
    padding-top: 60px;
    padding-bottom: 60px;
}

.editor {
    color: var(--text-color-dark);
    h3 {
        display: inline-block;
        color: var(--primary-color);
        font-weight: 700;
        text-transform: uppercase;
        position: relative;
        padding-left: 25px;
        margin-bottom: 15px;
        &::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            transform: translateY(-50%);
            width: auto;
            height: 100%;
            background-image: url('assets/images/kucica-ikonica.svg');
            background-size: contain;
            background-position: center;
            background-repeat: no-repeat;
            min-width: 17px;
        }
    }
    h1 {
        font-size: 35px;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    h2 {
        font-size: 25px;
    }
    h3 {
        font-size: 13px;
    }
    p {
        color: var(--text-color-medium);
        font-size: 16px;
        line-height: 1.4;
        margin-bottom: 30px;
    }
}

/* .editor.text-end {
    h3 {
        padding-left: 0;
        padding-right: 25px;
        &::before {
            left: unset;
            right: 0;
        }
    }
} */
.image-source-link {
	color: #98C3D1;
}

/* .mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
	opacity: 0;
	-webkit-backface-visibility: hidden;
	/* ideally, transition speed should match zoom duration */
	/* -webkit-transition: all 0.3s ease-out; 
	-moz-transition: all 0.3s ease-out; 
	-o-transition: all 0.3s ease-out; 
	transition: all 0.3s ease-out; */
/* }

.mfp-with-zoom.mfp-ready .mfp-container {
		opacity: 1;
}
.mfp-with-zoom.mfp-ready.mfp-bg {
		opacity: 0.8;
}

.mfp-with-zoom.mfp-removing .mfp-container, 
.mfp-with-zoom.mfp-removing.mfp-bg {
	opacity: 0;
} */
.dots-pseudo {
    position: relative;
    z-index: 2;
    > * {
        position: relative;
        z-index: 2;
    }
    &::before {
        content: '';
        position: absolute;
        z-index: 1;
        top: -20px;
        right: -40px;
        width: 93px;
        height: 184px;
        background-image: url('assets/images/tackice-bg.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
}
.dots-pseudo.dots-pseudo-left {
    &::before {
        right: unset;
        left: -40px;
    }
}
@media (min-width: 992px){
    .section-padding {
        padding-top: 100px;
        padding-bottom: 100px;
    }
    .margin-top-lg-minus {
        margin-top: -100px;
    }
    .editor {
        h1 {
            font-size: 51px;
            margin-bottom: 30px;
        }
        h2 {
            font-size: 30px;
            margin-bottom: 30px;
        }
		p {
			font-size: 18px;
		}
    }
}

.gt_languages .glink {
	color: var(--text-color-dark) !important;
}
.glink {
	color: var(--text-color-dark);
}
.glink:hover {
	color: var(--highlight-color);
}

.navbar {
    transition: all 0.3s ease-in-out;
}
.navbar.scrolled {
    background-color: var(--body-bg);
    .nav-link,
    .logo-text,
    .call-text-upper,
    .call-text-lower
	{
        color: var(--text-color-dark);
    }
    .navbar-toggler-icon {
        filter: invert(0);
    }
    
}





.logo-img-box {
    width: 40px;
    height: 40px;
    svg {
        width: auto;
        height: auto;
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        path {
            transition: all 0.3s ease-in-out;
            fill: var(--primary-color);
        }
    }
}
.logo-text {
    color: var(--text-color);
    line-height: 1;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease-in-out;
}


.call-us {
    text-decoration: none;
}
.phone-icon {
    width: 24px;
    height: 24px;
    display: flex;
    & svg {
        width: auto;
        height: auto;
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        path {
            transition: all 0.3s ease-in-out;
            fill: var(--highlight-color);
        }
    }
}
.call-us:hover {
    .phone-icon {
        & svg {
            path {
                fill: var(--primary-color);
            }
        }
    }
}
.call-text-upper {
    font-size: 15px;
    color: var(--text-color-dark);
    font-weight: 500;
}
.call-text-lower {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-color-dark);
}
.nav-link {
    color: var(--text-color-dark);
    font-weight: 700;
    letter-spacing: 0.3;
}
.nav-link:first-child {
    margin-left: 0;
}
.nav-link:last-child {
    margin-right: 0;
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
    color: var(--primary-color);
}
.nav-link:focus, .nav-link:hover,
a:hover {
    color: var(--primary-color);
}
.navbar-toggler {
    color: #fff;
    border: 0;
}
.navbar .nav-item {
    padding: 10px 0;
    border-bottom: 1px solid #00000040;
}
.navbar-toggler:focus,
.btn-close:focus,
.btn-close:focus-visible, 
.navbar-toggler:focus-visible {
    box-shadow: none;
    outline: 0;
    border: 0;
}
.navbar-toggler-icon {
    filter: brightness(0) saturate(100%) invert(86%) sepia(89%) saturate(7305%) hue-rotate(182deg) brightness(124%) contrast(91%);
    border: 0;
}
.btn-close {
    margin-right: -2px !important;
}
.offcanvas-header {
    padding-right: 28px;
    padding-left: 28px;
}
.navbar {
    border-color: #FFFFFF4C !important;
}
.offcanvas-body {
    padding-left: 28px;
    padding-right: 28px;
    padding-top: 40px;
}


.cover-block {
  position: relative;
  color: #fff;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100svh;
  min-height: 100%;
  z-index: 20;
}
.cover-video-bg::before {
  content: '';
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, .4) !important;
  opacity: 1;
}
.cover-video-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  overflow: hidden;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center center;
}
.cover-video-bg iframe {
  width: 100vw;
  height: 56.25vw;
  min-height: 100vh;
  min-width: 177.77vh;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hero-bottom {
    bottom: -1px;
    width: 200%;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}
.hero-title {
    font-size: 43px;
    font-weight: 700;
    line-height: 1.1;
}
.hero-text {
    font-size: 20px;
}
.house-animate {
    top: 70px;
    left: -100px;
    height: 100px;
    width: 100px;
    animation: bounce-top 3.2s linear 0s infinite normal none;
}


.osobina {
    .icon-box {
        width: 50px;
        height: 50px;
        padding: 16px;
        display: flex;
        justify-content: center;
        align-items: center;

        & img {
            width: auto;
            height: auto;
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }
    }
    .text-box {
        .title {
            color: var(--text-color-dark);
            font-size: 16px;
            font-weight: 600;
        }
        .text {
            color: var(--text-color-medium);
            font-size: 14px;
            font-weight: 400;
            line-height: 1.4;
        }
    }
}

.modal-dialog {
    max-width: 1000px;
    .btn-close {
        filter: invert(1);
    }
}
.iframe-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 56.25%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.responsive-iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}
/*** FAQ ***/
.accordion-body {
    background-color: var(--primary-color);
    color: #fff;
    border-top: 1px solid rgba(255, 525, 255, 0.2);
}
.accordion-button:not(.collapsed) {
    transition: all 0.1s ease-in-out;
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color) !important;
    box-shadow: none;
    .accordion-body {
        background-color: var(--primary-color);
    }
}

.accordion-collapse {
    .accordion-body {
        transition: all 0.1s ease-in-out;
        background-color: var(--primary-color);
    }
}
.accordion-button::after {
    background-image: unset;
    background-color: var(--text-color-dark);
    width: 17px;
    height: 3px;
    border-radius: 12px;
}
.accordion-button::before {
    width: 3px;
    height: 17px;
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 27px;
    background-color: var(--text-color-dark);
    border-radius: 12px;
    transition: all 0.2s ease-in-out;
    opacity: 1;
    filter: invert(0);
}
.accordion-button {
    box-shadow: none !important;
    font-size: 18px;
}
.accordion-button.collapsed::after {
    filter: invert(0);
    background-color: var(--text-color-dark);

}
.accordion-button::after {

    background-color: #fff;
}
.accordion-button:not(.collapsed)::before {
  transform: rotate(180deg) translate(0px, 8px);
  opacity: 0;
    filter: invert(1);
}

/***** ADDITIONAL INFO *****/
.additional-contact {
    margin-bottom: 30px;
    .additional-info {
        &:not(:last-child) {
            padding-bottom: 15px;
        }
        &:not(:first-child) {
            padding-top: 15px;
            border-top: 1px solid rgba(0, 0, 0, 0.2);
        }
        color: var(--text-color-dark);
        gap: 15px;

        .additional-icon {
            height: 35px;
            width: 35px;
            & img {
                width: auto;
                height: auto;
                max-width: 100%;
                max-height: 100%;
                object-fit: contain;
            }
        }
        .additional-text {
            display: flex;
            flex-direction: column;
            font-size: 16px;
            color: var(--primary-color);
            a {
                color: var(--text-color-dark);
                font-size: 20px;
                text-decoration: none;
                transition: all 0.2s ease-in-out;
                &:hover {
                    color: var(--primary-color);
                }
            }
        }
    }
}


/***** TESTIMONIALS *****/
.testimonials-section {
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: bottom center;
    background-color: #f4f5ec;
}
.testimonial-box {
    color: var(--text-color-dark);
    background-color: #fff;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 30px;
    padding-bottom: 95px;
}
.stars {
    gap: 5px;
    .star {
        width: 20px;
        height: 20px;
        background-image: url('assets/images/star-solid.svg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
}
.quote-icon {
    width: 35px;
    height: 35px;
    img {
        width: auto;
        height: auto;
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }
}
.quote-text {
    color: var(--text-color-medium);
    font-size: 16px;
    line-height: 1.4;
}
.person {
    gap: 15px;
    bottom: 30px;
    left: 30px;
}
.person-photo {
    width: 50px;
    height: 50px;
    & img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}
.pagination-wrap{
    height: 35px;
    align-items: center;
}
.testi-pagination {
    position: static;
    flex-wrap: nowrap;
    flex-shrink: 0;
    width: auto !important;
    .swiper-pagination-bullet {
        transition: all 0.2s ease-in-out;
    }
    .swiper-pagination-bullet-active {
        background-color: var(--primary-color);
    }
    .swiper-pagination-bullet:hover {
        background-color: var(--text-color-dark);
        opacity: 1;
    }
}
.test-navigation-button {
    position: static;
}
.testi-navigation-button {
    margin: 0;
    border-radius: 50%;
    background-color: var(--primary-color);
    flex-shrink: 0;
    width: 35px;
    height: 35px;
    background-position: center;
    background-size: contain;
    display: flex;
    position: static !important;
    transform: none !important;
    transition: all 0.2s ease-in-out;
    &::after {
        color: #fff;
        font-size: 16px;
    }
    &:hover {
        background-color: var(--highlight-color);
        &::after {
            color: var(--text-color-dark);
        }
    }
}
.testimonials-section {
    padding-bottom: 25px;
}
@keyframes bounce-top {
			
		0% {
			transform:translateY(0);
		}
		25% {
			transform:translateY(-24px);
		}
		
		50% {
			transform:translateY(0);
		}
		75% {
			transform:translateY(-24px);
		}
		100% {
			transform:translateY(0);
		}
	}
.testimonials-section .swiper-slide {
    padding: 0 12px;
}

.gallery-count {
    bottom: 10px;
    right: 10px;
    border-radius: 16px; 
    width: 70px; 
    height: 70px; 
    font-size: 30px; 
    font-weight: 600;
    pointer-events: none;
}

.form-control {
    text-align: center;
    background-color: #f4f5f3;
    border: 1px solid #f4f5f3;
    border-radius: 100px;
    padding: 16px 21px;
    font-size: 17px;
    line-height: 1;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.form-control.wpcf7-textarea {
	border-radius: 32px;
}
.form-control[type=number] {
    -moz-appearance: textfield;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.form-select:focus,
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}
.form-quantity button {
    background-color: transparent;
    border: none;
    color: #000000;
}
.quantity-left-minus  {
    left: 5px;
}
.quantity-right-plus {
    right: 5px;
}
.reservations-section {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.reservations-section::after {
    content: '';
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .4) !important;
    opacity: 1;
}
.reservations-section .form-label {
    text-align: center;
    width: 100%;
}
footer::after {
    content: '';
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #02170BBF;
}
.footer-contact .additional-icon img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(359deg) brightness(103%) contrast(99%);
}
.footer-contact .additional-info a {
    color: #FFFFFF !important;
}
.footer-contact .additional-info a:hover {
    color: var(--highlight-color) !important;
}

.socials a {
    width: 22px;
    height: 22px;
}
.socials a img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(237%) hue-rotate(10deg) brightness(116%) contrast(100%);
}
.socials a:hover img {
    filter: brightness(0) saturate(100%) invert(83%) sepia(100%) saturate(3435%) hue-rotate(335deg) brightness(91%) contrast(105%);
}
.footer-bottom a {
    color: var(--highlight-color);
    text-decoration: none;
}
.footer-bottom {
    padding-top: 50px;
}
.footer-logo .logo-img-box {
    width: 50px;
    height: 50px;
}
.footer-logo .logo-text {
    font-size: 20px;
}
.footer-menu ul {
    list-style-type: none;
}
.footer-menu-title  {
    font-size: 20px;
}
.footer-menu ul a {
    color: #FFFFFF;
    text-decoration: none;
}
.boxes-section {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #02170BA3;
}
.boxes-section::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url('assets/images/h2-deco-3.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #02170BA3;
}
.boxes-item-text-box {
   --border-radius: 21px;
    --size-corner: 40px;
    --_border-right-left: /calc(2*var(--border-radius)) calc(2*var(--border-radius)) radial-gradient(#000 70%,#0000 74%) no-repeat;
    mask: right 0 bottom calc(var(--size-corner) + var(--border-radius)) var(--_border-right-left), right calc(var(--size-corner) + var(--border-radius)) bottom 0 var(--_border-right-left), radial-gradient(var(--size-corner) at 100% 100%, #0000 99%, #000 101%) calc(-1 * var(--border-radius)) calc(-1 * var(--border-radius)) no-repeat, conic-gradient(from 90deg at calc(100% - var(--size-corner) - 2 * var(--border-radius)) calc(100% - var(--size-corner) - 2 * var(--border-radius)), #0000 25%, #000 0);
}
.boxes-item-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-image: url('assets/images/arrow-right-white.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 30%;
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: var(--primary-color);
    transition: all .3s;
}
.boxes-item:hover .boxes-item-circle {
    background-color: var(--highlight-color);
    background-image: url('assets/images/arrow-right-dark.svg');
}
.boxes-item-text-box {
    padding: 30px 90px 30px 30px;
    min-height: 300px;
}
.boxes-item {
    border-radius: 15px; 
}
.boxes-item-text-box::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    background: linear-gradient(360deg, #0a170b 0%, rgba(23, 21, 10, 0) 100%);
  
    
}
.boxes-item-text-box p {
    font-weight: 300;
}

.page-header {
    padding: 140px 0 60px 0;
}
.page-header::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    background: #0a170b;
    opacity: .6;
}
.map-container {
    width: 100%;
    height: 400px;
}
.map-container iframe {
    width: 100%;
    height: 100%;
}
.contact-form-container {
    padding: 20px;
    border-radius: 20px;
}
.contact-form-container .form-label{
    color: var(--text-color-dark);
}
.contact-form-container .form-control{
    text-align: start;
}

.video-play-button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
    animation: play-button-before 1.5s ease-in-out infinite alternate;
}

.video-play-button::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
    animation: play-button-after 1.5s ease-in-out infinite alternate;
    animation-delay: 0.3s;
}

@keyframes play-button-before {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.4);
    }
}

@keyframes play-button-after {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.2);
    }
}
.video-section-block {
    min-height: 50svh;
    z-index: 5;
}

.video-section::after {
    content: '';
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .4) !important;
    opacity: 1;
}


.gallery-img {
    width: 100%;
    height: 300px;
    display: block;
}
.gallery-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: all .3s;
}
.gallery-img:hover img {
    scale: 1.1;
}
.admin-bar .navbar.fixed-top {
    top: 46px;
}
.text-primary {
    color: var(--primary-color) !important;
}
.footer-logo img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(31%) saturate(717%) hue-rotate(32deg) brightness(121%) contrast(109%);
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
    color: #000;
}
.wpcf7-spinner {
    position: absolute;
}
.dozivljaji-section img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(190deg) brightness(103%) contrast(106%);
}

.grecaptcha-badge { 
    visibility: hidden;
}
@media (min-width: 576px){
    .testimonials-section .swiper-slide {
        padding: 0;
    }
}
@media (min-width: 768px){
    /****** NAVBAR *******/
    .navbar-brand:hover {
        /* .logo-text {
            color: var(--highlight-color);
        } */
        .logo-img-box {
            svg {
                path {
                    fill: var(--highlight-color);
                }
            }
        }
    }
    .accordion-button {
        font-size: 20px;
    }
    .admin-bar .navbar.fixed-top {
        top: 32px;
    }
}
@media (min-width: 992px){
    /****** NAVBAR *******/
    .nav-link {
        color: var(--text-color);
    }
    .call-text-lower,
    .call-text-upper {
        color: var(--text-color);
    }
    .nav-item {
        margin-left: 10px;
        margin-right: 10px;
    }
    .call-text-lower {
        font-size: 16px;
    }
	
	.glink {
		color: #fff;
	}
	.navbar.scrolled .glink {
		color: var(--text-color-dark);
	}

    /******* HERO *******/
    .hero-title {
        font-size: 72px;
    }
    .hero-text {
        font-size: 24px;
        max-width: 650px;
    }
    .osobina {
        .icon-box {
            width: 60px;
            height: 60px;
            padding: 16px;

        }
        .text-box {
            .title {
                font-size: 18px;
                font-weight: 600;
            }
        }   
    }
    .house-animate {
        width: 140px;
        height: 140px;
        position: absolute;
    }

    .testimonials-section {
        padding-bottom: 50px;
    }
    .testimonial-box {
        padding: 40px;
        padding-bottom: 105px;
    }
    .testi-pagination {
        bottom: 40px !important;
    }
    .navbar .nav-item {
        border-bottom: none;
    }
    .navbar-expand-lg .offcanvas .offcanvas-body {
        align-items: center;
    }
    .childrens-box {
        position: absolute;
        width: calc(100% - 8px);
        left: 4px;
        background-color: #FFFFFF;
        border-radius: 10px;
        padding: 0 8px;
        box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);;
    }
    .childrens-box select:last-child {
        margin-bottom: 8px !important;
    }
    .footer-bottom {
        padding-top: 70px;
    }
    .footer-contact {
        border-right: 1px solid #FFFFFF4C;
        border-left: 1px solid #FFFFFF4C;
        padding-left: 24px;
    }
    .boxes-item {
        width: 33%;
        transition: all .3s;
    }
    .boxes-item p {
        max-width: 205px;    
        visibility: hidden;
        position: absolute;
        height: 0;
        left: 0;
        opacity: 0;
        transition: all .5s;

    }
    .boxes-item:hover {
        width: 43%;
    }
    .boxes-item:hover p {
        height: auto;
        visibility: visible;
        opacity: 1;
        position: relative;
       
    }
    .boxes-item-text-box {
        min-height: 320px;
        padding-right: 65px;
    }
    .contact-form-container {
       
        z-index: 5;
        position: relative;
    }
    .map-container {
        height: 600px;
    }
    .contact-form-container {
        padding: 25px;
        padding-top: 40px;
    }
    
    .navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
        color: var(--highlight-color);
    }
    .nav-link:focus, .nav-link:hover {
        color: var(--highlight-color);
    }
    .navbar.scrolled  .navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
        color: var(--primary-color);
    }
    .navbar.scrolled .nav-link:focus, .nav-link:hover {
        color: var(--primary-color);
    }
}
@media (min-width: 1200px){
    .boxes-item p {
        max-width: 265px;
    }
    .page-header {
        padding: 160px 0 60px 0;
    }
    .osobina {
        .icon-box {
            width: 60px;
            height: 60px;
        }
        .text-box {
            .title {
                font-size: 18px;
            }
            .text {
                font-size: 16px;
            }
        }
    }
    .video-section-block .video-play-button {
        width: 100px;
        height: 100px;
        padding: 30px;
    }
    .video-play-button::after,
    .video-play-button::before {
       width: 100px;
       height: 100px;
    }
    .dozivljaji-section .icon-box {
        width: 100px;
        height: 100px;
    }
    .dozivljaji-section .icon-box img{
        max-width: 60%;
    }
}
@media (min-width: 1400px){
    .container-lg {
        max-width: 1780px;
    }
    .hero-title {
        font-size: 80px;
    }
    .boxes-item p {
        max-width: 325px;
    }
}