:root {
    --color-white: #fff;
    --color-black: #000;
    --color-primary: #ffd700;
    --color-secondary: #002c4f;
    --text-color: #64757e;
    --text-color-secondary: #738792;
    --background-color: var(--color-white);
    --thin: 100;
    --extra-light: 200;
    --light: 300;
    --regular: 400;
    --medium: 500;
    --bold: 700;
    --extra-bold: 800;
    --black: 900;
    --font-main: "Raleway";
    --font-default: -apple-system, BlinkMacSystemFont, Arial, sans-serif;
    --font-size: 16px;
    --font-weight: var(--regular);
    --line-height: 1.48;
    --container-max-width: 1240px;
    --container-horizontal-padding: 20px;
    --transition: 0.25s ease-out;
    --swiper-theme-color: #007aff;
    --swiper-navigation-size: 44px;
}

@font-face {
    font-family: Raleway;
    src: url(../fonts/Raleway-VariableFont_wght.woff2) format("woff2"), url(../themes/kvp/assets/fonts/Raleway-VariableFont_wght.woff) format("woff");
    font-display: swap;
    font-style: normal;
}

body {
    font-family: Raleway;
    color: #313131;
    font-weight: 400;
}

*,
::after,
::before {
    box-sizing: border-box;
}

blockquote,
body,
dd,
dl,
figure,
h1,
h2,
h3,
h4,
p {
    margin: 0;
}

ul {
    margin: 0;
    padding: 0;
}

ol[role="list"],
ul[role="list"] {
    list-style: none;
}

html:focus-within {
    scroll-behavior: smooth;
}

a:not([class]) {
    -webkit-text-decoration-skip: ink;
    text-decoration-skip-ink: auto;
}

a:link, a:visited, a:hover, a:active {
    border: 0;
    outline: none !important;
}

img,
picture,
svg {
    max-width: 100%;
    display: block;
}

button,
input,
textarea {
    outline: 0;
    border: 0;
}

button {
    background-color: transparent;
    cursor: pointer;
}

a {
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

@media (prefers-reduced-motion: reduce) {
    html:focus-within {
        scroll-behavior: auto;
    }

    *,
    ::after,
    ::before {
        animation-duration: 0s !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0s !important;
        scroll-behavior: auto !important;
    }
}


/* zero custom styles for photoswipe */
.pswp__scroll-wrap {
	background: #ffffff;
}

/*==================================
SWIPER - minimal styling
===================================*/
/* semantic HTML - remove bullet and space from the list */
ul.swiper-wrapper {
    list-style-type: none;
    margin: 0;
    padding: 0;
    position: relative;
}

/* Swiper container */
.swiper {
    max-width: 100%;
    height: auto;
}

.swiper .swiper-slide {
    background-color: #ffffff;
    display: flex;
    justify-content: center;
}

/*
/* swiper responive image */
.swiper img {
    /*width: fit-content;*/
    height: auto;
    max-width: 500px;
    width: 100%;
	margin: 0 auto;
	max-height: 1240px;
}


/* Swiper custom pagination */
.swiper-pagination-bullet {
    width: 34px;
    height: 34px;
    text-align: center;
    line-height: 34px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    opacity: 1;
    background: rgba(0, 0, 0, 0.3);
    transition: all 0.5s ease, color 0.5s ease;
}

/* Swiper custom pagination */
.swiper-pagination-bullet:hover {
    transition: background-color 0.5s ease;
    background: rgba(0, 0, 0, 1);
    color: white;
}

/* Swiper custom pagination active state */
.swiper-pagination-bullet-active {
    color: #fff;
    background: black;
}


/* Swiper thubnails */
.mySwiperThumbs {
    max-width: 1106px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding-top: 10px;
}

.mySwiperThumbs .swiper-wrapper {
    display: flex;
    flex-wrap: nowrap;
}

.mySwiperThumbs .swiper-slide {
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s;
    height: auto;
    background-color: transparent;
}

.mySwiperThumbs .swiper-slide-thumb-active {
    opacity: 1;
    border: 2px solid #000;
}

.mySwiperThumbs img {
    width: 100%;
    height: 100%;
    display: block;
}

@media (max-width: 768px) {
    .mySwiperThumbs {
        display: none;
    }

		/* swiper responive image */
		.swiper img {
			max-width: 100%;
		}
}


/* override zoom cursor */
.pswp__img {
    cursor: pointer !important;
	object-fit: contain;
}


.container {
    max-width: var(--container-max-width);
    padding: 0 var(--container-horizontal-padding);
    margin: 0 auto;
}

.header {
    position: absolute;
    top: 15px;
    left: 0;
    width: 100%;
    z-index: 6;
}

.hero__content {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    flex-direction: column;;
}

.hero h1.hero__title {
    width: 100%;
    color: #fff;
    text-align: center;
    font-weight: 300;
    font-family: Raleway;
    font-size: 78px;
    font-weight: 300;
    line-height: 91.57px;
    text-transform: uppercase;
}

.hero__title span {
    font-family: Raleway;
    font-weight: 600;
    display: block;
}

.hero__subtitle {
    width: 100%;
    color: #fff;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    line-height: 21.13px;
}

.hero .adr_link {
    display: flex;
    gap: 10px;
    font-weight: 600;
    align-items: center;
}

/* About section */
.about .about__top-row,
.about .about__bottom-row {
    display: flex;
    margin-top: 10px;
    flex-wrap: wrap;
}

.about .about__top-row .left-col {
    width: 40%;
}

.about .about__top-row .right-col {
    width: 60%;
    padding-left: 20px;
}

.about .section_title,
.about .section_subtitle {
    text-align: start;
}

.about .about__top-row p {
    margin: 6px 0 14px;
    letter-spacing: -.03em;
    line-height: 1.5;
}

.about .about__top-row .content-wrapper.expanded p {
    display: block;
}

.about .about__top-row .toggle-button {
    display: none;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    text-align: center;
    border-radius: 5px;
}

.about .about__top-row .toggle-button:hover {
    background-color: #0056b3;
}

.about .about__bottom-row {
    margin-top: 66px;
    justify-content: space-between;
    gap: 10px;
}

.about .about__bottom-row .left-col {
    width: 44%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about .about__bottom-row .left-col ul {
    list-style: none;
}

.about .about__bottom-row .left-col li {
    display: flex;
    align-items: center;
    background-color: #F1F1F1;
    padding: 18px 28px;
    border-radius: 32px;
    min-height: 100px;
}

.about .about__bottom-row .left-col span {
    width: 14%;
    min-width: 40px;
}

.about .about__bottom-row .left-col p {
    width: 80%;
    line-height: 1.6;
}

.about .about__bottom-row .right-col {
    width: 51%;
    margin-top: 14px;
}

.about .about__bottom-row .right-col li {
    list-style: none;
    position: relative;
    padding-left: 52px;
    margin-bottom: 40px;
}

.about .about__bottom-row .right-col li:before {
    content: '';
    position: absolute;
    top: 7px;
    left: 6px;
    width: 15px;
    height: 15px;
    background-color: #3B68E9;
    border-radius: 50%;
}

.about .about__bottom-row .right-col p {
    font-size: 22px;
}

@media (max-width: 768px) {
    .about {
        padding: 60px 0 0;
    }

    .about .about__top-row .left-col,
    .about .about__top-row .right-col,
    .about .about__bottom-row .left-col,
    .about .about__bottom-row .right-col {
        width: 100%;
    }

    .about .about__bottom-row {
        gap: 40px;
    }

    .about .about__top-row .right-col {
        padding-left: 0
    }

    .about .about__top-row .toggle-button {
        display: block;
        margin: 20px auto 0;
    }

    .about .about__top-row .content-wrapper p:not(:first-of-type) {
        overflow: hidden;
        margin: 0;
        max-height: 0;
        opacity: 0;
        transition: max-height .3s ease, opacity .3s ease, margin .3s ease;
    }

    .about .about__top-row .content-wrapper.expanded p:not(:first-of-type) {
        max-height: 100%;
        opacity: 1;
        margin: 6px 0 14px;

    }
}


.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.phone a:before {
    content: '';
    width: 18px;
    height: 18px;
    display: inline-block;
    margin-right: 5px;
    background-image: url('data:image/svg+xml,<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M3.62 7.79C5.06 10.62 7.38 12.93 10.21 14.38L12.41 12.18C12.68 11.91 13.08 11.82 13.43 11.94C14.55 12.31 15.76 12.51 17 12.51C17.55 12.51 18 12.96 18 13.51V17C18 17.55 17.55 18 17 18C7.61 18 0 10.39 0 1C0 0.45 0.45 0 1 0H4.5C5.05 0 5.5 0.45 5.5 1C5.5 2.25 5.7 3.45 6.07 4.57C6.18 4.92 6.1 5.31 5.82 5.59L3.62 7.79Z" fill="white"/></svg>');
    position: relative;
    top: 4px;
}

.navigation__list {
    display: flex;
    align-items: center;
    gap: 0 15px;
}

.navigation__list .menu-item {
    flex-shrink: 0;
    text-align: center;
    position: relative;
    color: var(--color-white);
    font-size: 0.9375rem;
    text-transform: uppercase;
    overflow: hidden;
    z-index: 2;
}

@media (max-width: 1070px) {
    .navigation__list {
        gap: 0 10px;
    }

    .navigation__list .menu-item {
        display: none;
    }
}

.navigation__list .menu-item:after,
.navigation__list .menu-item:before {
    content: "";
    display: block;
    position: absolute;
    border: 0 solid transparent;
    transition: 0.5s;
}

.navigation__list .menu-item:after {
    width: 0%;
    height: 0%;
    top: 0;
    left: 0;
    border-top: 1.5px solid transparent;
    border-left: 1.5px solid transparent;
}

.navigation__list .menu-item:before {
    width: 0%;
    height: 0%;
    right: 0;
    bottom: 0;
    border-bottom: 1.5px solid transparent;
    border-right: 1.5px solid transparent;
}

.navigation__list .menu-item:active:after,
.navigation__list .menu-item:active:before,
.navigation__list .menu-item:focus:after,
.navigation__list .menu-item:focus:before,
.navigation__list .menu-item:hover:after,
.navigation__list .menu-item:hover:before {
    width: 100%;
    height: 100%;
    border-color: var(--color-white);
}

.navigation__list .menu-item a {
    padding: 8px 10px;
    font-family: "Raleway", sans-serif;
    color: inherit;
    display: block;
    position: relative;
    z-index: 2;
    font-size: 16px;
    line-height: 18px;
    font-weight: var(--light);
    transition: text-shadow var(--transition);
    text-transform: none;
}

.navigation__list .menu-item a:active,
.navigation__list .menu-item a:focus,
.navigation__list .menu-item a:hover {
    text-shadow: 0 0 1px var(--color-white);
}

@media (max-width: 1170px) {
    .navigation__list .menu-item {
        font-size: 0.875rem;
    }

    .navigation__list .menu-item a {
        padding: 6px 8px;
    }
}

.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
    min-height: 600px;
}

.hero:before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background: #242424;
    background: linear-gradient(358.92deg, rgba(0, 0, 0, 0) 13.7%, #000000 128.43%), linear-gradient(180deg, rgba(0, 0, 0, 0) 55.23%, #000000 104.37%);
    z-index: 1;
}

.hero .container {
    height: 100vh;
    z-index: 2;
    position: relative;
    display: flex;
    align-items: center;
    min-height: 600px;
}

.hero__read-more {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    height: 50px;
    cursor: pointer;
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: opacity var(--transition);
}

.paneli {
    position: relative;
    height: 800px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 800px;
    padding: 0;
}

.paneli:before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background: #242424;
    background: linear-gradient(358.92deg, rgba(0, 0, 0, 0) 13.7%, #000000 128.43%), linear-gradient(180deg, rgba(0, 0, 0, 0) 55.23%, #000000 104.37%);
    z-index: 1;
}

.paneli .container {
    height: 800px;
    z-index: 2;
    position: relative;
    display: flex;
    align-items: center;
    min-height: 800px;
}

.paneli__title {
    width: 100%;
    color: #fff;
    text-align: center;
    font-weight: 300;
    font-family: Raleway;
    font-size: 48px;
    font-weight: 300;
    line-height: 55.57px;
    text-transform: uppercase;
}


@media (max-width: 576px) {
    .form__input {
        font-size: 1.125rem;
    }

    .hero__read-more {
        height: 55px;
    }
}

.hero__read-more:hover {
    opacity: 0.8;
}

.hero__read-more-text {
    display: block;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 300;
    line-height: 21.13px;
    text-align: center;

}

.hero__read-more-icon {
    display: block;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 30px;
    animation: 2s infinite hero-read-more-icon;
}

@media (max-width: 576px) {
    .hero__read-more-text {
        font-size: 0.9375rem;
    }

    .hero__read-more-icon {
        height: 40px;
    }
}

@keyframes hero-read-more-icon {
    0% {
        bottom: 0;
        opacity: 0;
    }
    50% {
        bottom: -15px;
        opacity: 1;
    }
    100% {
        bottom: -25px;
        opacity: 0;
    }
}

.logo {
    width: 88px;
}

header .navigation__list .phone a {
    font-family: Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.hero__read-more a, .hero__read-more a:hover, .hero__read-more a:focus, .hero__read-more a:visited {
    color: #fff;
}

.site-title a, .site-title a:hover, .site-titlee a:focus, .site-title a:visited {
    color: #fff;
}

.logo__wrapper a img {
    display: block;
    margin: 0 auto;
}

.site-title:before {
    content: '';
    width: calc(50% - 115px);
    position: absolute;
    left: 0;
    height: 1px;
    background: #fff;
    margin-top: 10px;
}

.site-title:after {
    content: '';
    width: calc(50% - 110px);
    position: absolute;
    right: 0;
    height: 1px;
    background: #fff;
    margin-top: 10px;
}

.menu-primary-left-menu-container {
    width: calc(50% - 90px);
}

.menu-primary-right-menu-container {
    width: calc(50% - 90px);
}

.logo__wrapper {
    width: 180px;
}

#primary-menu-left {
    justify-content: start;
    gap: 0 45px;
    margin: 0 0 30px 0;
}

#primary-menu-right {
    justify-content: end;
    gap: 0 30px;
    margin: 0 0 30px 0;
}

.hero__content {
    height: 50vh;
}

.btn_link {
    display: block;
    margin: 0 auto;
    width: max-content;
    background: rgba(255, 163, 0, 1);
    font-family: Raleway;
    font-size: 18px;
    font-weight: 700;
    line-height: 21.13px;
    text-align: center;
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.25);
    border-radius: 50px;
    padding: 14px 35px;
    transition: all 0.3s;
}

.btn_link:hover {
    background-color: #3B68E9;
    color: #fff;
}

section {
    padding: 7.125rem 0 5rem 0;
}

section.hero {
    padding: 0;
}

.section_title {
    font-size: 64px;
    font-weight: 500;
    line-height: 65.15px;
    letter-spacing: 0.06em;
    text-align: center;
    text-transform: uppercase;
}

.section_subtitle {
    font-size: 22px;
    font-weight: 400;
    line-height: 22.4px;
    letter-spacing: 0.06em;
    text-align: center;
    max-width: 720px;
    margin: 20px auto;
    display: block;
}

.hr {
    width: 370px;
    display: block;
    margin: 40px auto;
    border: 1px solid #31313180
}

.terms_content {
    display: flex;
    margin-top: 50px;
    flex-wrap: wrap;
    border-radius: 32px;
    overflow: hidden;
    margin-bottom: 50px;
}

.terms_left_bl {
    width: 40%;
    background: #F1F1F1;
    padding: 40px;
}

.terms_right_bl {
    width: 60%;
    background: #3B68E9;
    padding: 40px;
}

.terms_icon_txt {
    width: 94px;
    height: 94px;
    background: #3B68E9;
    color: #fff;
    display: flex;
    border-radius: 100px;
    align-items: center;
    justify-content: center;
    font-family: Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 34px;
    font-weight: 900;
    line-height: 34.61px;
    letter-spacing: 0.06em;
    text-align: center;
}

.terms_txt {
    font-size: 34px;
    font-weight: 400;
    line-height: 34.61px;
    letter-spacing: 0.06em;
    text-align: left;
    text-transform: uppercase;
    margin: 30px 0;
}

.terms_left_bl .hr {
    width: 280px;
    margin: 40px 0 15px 0;
    max-width: 100%;
    border: 1px solid #31313180;
}

.terms_right_bl .hr {
    width: 280px;
    margin: 40px 0 15px 0;
    max-width: 100%;
    border: 1px solid #D2D2D280;
}

.terms_right_bl .terms_txt {
    color: #fff;
}

@media (max-width: 750px) {
	.terms_block {
	padding-top:0;
}

}

#planning {
    background: #F1F1F1;
}

.planning-general,
.planning-images {
    max-width: 1106px;
    margin: 0 auto;
}

.planning-images {
    display: flex;
    justify-content: space-between;
    gap: 4px;
}

.planning-images img {
    width: 100%;
    max-width: 359px;
}

.planning-general img,
.planning-images img {
    height: auto;
}

.planning-general {
    background-color: #ffffff;
    padding: 99px 40px;
    margin-bottom: 42px;
}

.planning-general a {
	position: relative;
}

.planning-general a .zoom-slide{
	display: none;
	position: absolute;
	right: -10px;
	bottom:-20px;
}

@media (max-width: 750px) {
	.planning-general {
		padding: 20px 10px;
	}
	.planning-general a .zoom-slide{
	display: block;
	}
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
    background: #00000033;
    padding: 90px 20px;
    margin-left: 0px;
    margin-top: -90px;
    z-index: 5;
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
    background: #00000033;
    padding: 90px 20px;
    margin-right: 0px;
    margin-top: -90px;
    z-index: 5;
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
    color: #313131;
    font-size: 24px;
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
    color: #313131;
    font-size: 24px;
}

/* foto video acf */
.foto-video {
    overflow: hidden;
}

.foto-video .container {
    max-width: 1440px;
    padding-right: 0;
}

.foto-video .foto-video__top-el {
    margin: 40px 0 40px min(102px, 9vw);
    max-width: 1240px;
    display: flex;
    align-items: flex-end;
    position: relative;;
}

.foto-video .section_title {
    text-align: start;
    width: 50%;
}

.foto-video .tabs {
    display: flex;
    justify-content: center;
    width: 25%;
}

.foto-video .foto-video__swiper-nav {
    width: 25%;
    display: flex;
    flex-direction: row-reverse;
    gap: 50px;
    align-items: flex-end;
}

.foto-video .tab-link {
    background-color: #f1f1f1;
    border: none;
    border-radius: 20px;
    padding: 10px 20px;
    cursor: pointer;
    margin: 0 10px;
    width: 80px;
    height: fit-content;
}

.foto-video .tab-link.active {
    background-color: #3B68E9;
    color: #fff;
}

.foto-video .tab-content {
    display: none;
    position: relative;;
}

.foto-video .tab-content.active {
    display: block;
}

.foto-video .swiper-container {
    overflow: hidden;
}

.foto-video .swiper-slide {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.foto-video  .swiper-slide img,
.foto-video  .swiper-slide video {
    max-height: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.foto-video .swiper-button-next,
.foto-video .swiper-button-prev {
    position: unset;
    width: 60px;
    height: 60px;
    padding: 0;
    border-radius: 50%;
    background: transparent;
    border: 1px solid #313131;
}

.foto-video .swiper-button-next:after,
.foto-video .swiper-button-prev:after {
    font-size: 16px;
}

.foto-video .swiper-button-next {
    right: 50px
}

.foto-video .swiper-button-prev {
    border: 1px solid rgba(49, 49, 49, .5);
    right: 150px;
    left: unset;
}

.foto-video  .video-wrapper {
    position: relative;
    width: 100%;
}

.foto-video  .video-wrapper button {
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    width: 100%;
    display: block;
}

.foto-video  .video-wrapper video {
    width: 100%;
    border-radius: 5px;
    display: block;
}

.foto-video  .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    color: white;
    border-radius: 50%;
    padding: 10px 15px;
}

.foto-video  .video-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    z-index: 9999;
}

.foto-video  .video-popup.active {
    opacity: 1;
    visibility: visible;
}

.foto-video  .video-popup video {
    max-width: 800px;
    aspect-ratio: 1;
}

.foto-video .mobile-view {
    display: none;
}

@media (max-width: 1200px) {
    .foto-video .container {
        padding-right: 15px;
    }
    .foto-video .foto-video__top-el {
        flex-wrap: wrap;
        margin: 20px 0 40px;
    }
    .foto-video .tabs {
        width: 50%;
        justify-content: flex-end;
    }
    .foto-video .foto-video__swiper-nav{
        min-height: 100px;
        width: 100%;
        justify-content: center;
    }

    .foto-video .video-popup video {
        max-width: 80vw;
    }
}

@media (max-width: 500px) {
    .foto-video {
        padding-top: 80px;
    }

    .foto-video .mobile-view {
        display: flex;
    }
    .foto-video .desktop-view {
        display: none;
    }

    .foto-video .tabs,
    .foto-video .section_title {
        width: 100%;
        text-align: center;
    }

    .foto-video .tabs {
        justify-content: center;
    }

    .foto-video .foto-video__top-el {
        flex-direction: column;
        align-items: center;
        gap: 22px;
    }

    .foto-video .video-popup video {
        max-width: 100vw;
    }
	
	
}



.photo_block_new {
    background: #F1F1F1;
}

.flex_col_2 {
    display: flex;
    gap: 0 20px;
}

.col_left_50 {
    width: 50%;
}

.col_left_50 {
    width: 50%;
    padding-top: 100px;
}

.col_left_txt {
    font-size: 34px;
    font-weight: 700;
    line-height: 34.61px;
    letter-spacing: 0.06em;
    text-align: left;
    max-width: 650px;
}

.btn_link_tel {
    width: max-content;
    background: rgba(255, 163, 0, 1);
    font-size: 18px;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.25);
    border-radius: 50px;
    padding: 0px 35px 0 0;
    background-color: #3B68E9;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    padding: 5px 40px 5px 5px;
    margin-top: 30px;
}

.btn_link_tel span {
    margin-right: 30px;
}

.btn_link_tel:hover {
    background: #FFA300;
    color: #000;
}

.contact-title {
    font-size: 34px;
    font-weight: 500;
    line-height: 34.61px;
    letter-spacing: 0.06em;
    text-align: left;
    text-transform: uppercase;
    margin: 90px 0 20px 0;
}

.contact-txt {
    font-size: 16px;
    font-weight: 500;
    line-height: 16px;
    text-align: left;
}

.form-line {
    display: flex;
    flex-wrap: wrap;
    margin: 40px 0 0 0;
}

.form-line .col-1, .form-line .col-2 {
    width: 30%;
    padding-right: 15px;
}

.form-line .col-3 {
    width: 40%;
}

.form-line input {
    padding: 14px 30px;
    border-radius: 50px;
    border: 0.5px solid #3B68E9;
    width: 100%;
    font-family: Raleway;
    font-size: 18px;
    font-weight: 300;
    line-height: 18px;
    text-align: left;
}

.form-line .col-2 input {
    font-family: Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.form-line input.wpcf7-submit {
    padding: 14px 30px;
    border-radius: 50px;
    border: 0.5px solid #FFA300;
    width: 100%;
    font-family: Raleway;
    font-size: 18px;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
    background: #FFA300;
    cursor: pointer;
    transition: all 0.3s;
}

.form-line input.wpcf7-submit:hover {
    background: #3B68E9;
    color: #fff;
    border: 0.5px solid #3B68E9;
}

.photo_content_row {
    display: flex;
    gap: 0 15px;
    margin-bottom: 15px;
    align-items: flex-start;
}

.photo_item {
    position: relative;
}

.phpto_txt {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    min-height: 76px;
    color: #fff;
    font-family: Raleway;
    font-size: 22px;
    font-weight: 500;
    line-height: 22.4px;
    letter-spacing: 0.06em;
    text-align: left;
    padding: 15px 25px;
    display: flex;
    align-items: center;
}

.photo_block .section_subtitle {
    margin-bottom: 50px;
}

footer {
    background: #1A1A1A;
    padding: 20px 0 50px 0;
    text-align: center;
    color: #fff;
}

footer .hr {
    border: 1px solid rgba(255, 255, 255, 0.5);
    width: 225px;
    margin: 25px auto;
}

.logo_footer {
    width: max-content;
    margin: 0 auto;
    display: block;
}

.footer-title {
    font-family: Raleway;
    font-size: 14px;
    font-weight: 700;
    line-height: 16.44px;
    text-align: center;
    text-transform: uppercase;
}

.logo_footer img {
    display: block;
    margin: 10px auto;
}

.footer-flex {
    display: flex;
    gap: 0 30px;
    max-width: 840px;
    justify-content: space-between;
    margin: 0 auto;
    font-family: Raleway;
    font-size: 16px;
    font-weight: 300;
    line-height: 18.78px;
    text-align: center
}

.footer-flex a {
    color: #fff;
    font-size: 16px;
    font-weight: 300;
    line-height: 18.78px;
    text-align: center
}

.footer-phone a {
    font-family: Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.footer-form input {
    background: #353535;
    color: #fff;
    border: 0.5px solid #FFA300;
}

.footer-form .form-line input.wpcf7-submit {
    padding: 14px 30px;
    border-radius: 50px;
    border: 0.5px solid #FFA300;
    width: 100%;
    font-family: Raleway;
    font-size: 18px;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
    background: #FFA300;
    cursor: pointer;
    transition: all 0.3s;
    color: #000;
}

;
.footer-form .form-line input.wpcf7-submit:hover {
    color: #fff;
    background: #3B68E9;
}

.footer-addr a:before {
    content: '';
    width: 14px;
    height: 20px;
    background-image: url('data:image/svg+xml,<svg width="14" height="20" viewBox="0 0 14 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M7 9.5C6.33696 9.5 5.70107 9.23661 5.23223 8.76777C4.76339 8.29893 4.5 7.66304 4.5 7C4.5 6.33696 4.76339 5.70107 5.23223 5.23223C5.70107 4.76339 6.33696 4.5 7 4.5C7.66304 4.5 8.29893 4.76339 8.76777 5.23223C9.23661 5.70107 9.5 6.33696 9.5 7C9.5 7.3283 9.43534 7.65339 9.3097 7.95671C9.18406 8.26002 8.99991 8.53562 8.76777 8.76777C8.53562 8.99991 8.26002 9.18406 7.95671 9.3097C7.65339 9.43534 7.3283 9.5 7 9.5ZM7 0C5.14348 0 3.36301 0.737498 2.05025 2.05025C0.737498 3.36301 0 5.14348 0 7C0 12.25 7 20 7 20C7 20 14 12.25 14 7C14 5.14348 13.2625 3.36301 11.9497 2.05025C10.637 0.737498 8.85652 0 7 0Z" fill="white"/></svg>');
    margin-right: 10px;
    position: relative;
    top: 4px;
    display: inline-block;
}

.footer-phone a:before {
    content: '';
    width: 18px;
    height: 18px;
    display: inline-block;
    margin-right: 5px;
    background-image: url('data:image/svg+xml,<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M3.62 7.79C5.06 10.62 7.38 12.93 10.21 14.38L12.41 12.18C12.68 11.91 13.08 11.82 13.43 11.94C14.55 12.31 15.76 12.51 17 12.51C17.55 12.51 18 12.96 18 13.51V17C18 17.55 17.55 18 17 18C7.61 18 0 10.39 0 1C0 0.45 0.45 0 1 0H4.5C5.05 0 5.5 0.45 5.5 1C5.5 2.25 5.7 3.45 6.07 4.57C6.18 4.92 6.1 5.31 5.82 5.59L3.62 7.79Z" fill="white"/></svg>');
    position: relative;
    top: 4px;
}

.copyright {
    font-family: Raleway;
    font-size: 14px;
    font-weight: 300;
    line-height: 16.44px;
    text-align: center;
    color: #BFBFBF;
    margin-top: 20px;
}

.duble-nav .swiper-button-prev {
    bottom: 0;
    right: 93px;
    left: auto;
    top: auto;
    padding: 15px 24px 15px 18px;
    border-right: 0.5px solid rgba(49, 49, 49, 0.5);
}

.duble-nav .swiper-button-next {
    bottom: 0;
    right: 51px;
    left: auto;
    top: auto;
    padding: 15px 18px 15px 24px;
}

.swiper_wrap {
    height: 100%;
    width: 100%;
    padding: 0 51px;
    position: relative;
    display: block;
    text-align: left;
}

.zoom-slide {
    position: absolute;
    right: 85px;
    bottom: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.2);
    padding: 10px 10px;
    border-right: 0.5px solid rgba(49, 49, 49, 0.5);
    pointer-events: none;
}

.topNav {
    display: none;
}

.sideNav {
    display: none;
}

@media (max-width: 1070px) {
    .topNav {
        position: absolute;
        top: 0;
        left: auto;
        right: 0;
        width: max-content;
        height: 3rem;
        display: flex;
        align-items: end;
    }

    .ham {
        position: absolute;
        width: 45px;
        height: 40px;
        margin-left: 0.5rem;
        background: none;
        border: none;
        right: 10px;
        top: 8px;
        cursor: pointer;
        color: white;
    }

    .menuX {
        position: absolute;
        top: 1.5rem;
        right: 1rem;
        width: 2rem;
        height: 2rem;
        margin-left: 0.5rem;
        background: none;
        border: none;
        cursor: pointer;
        color: #000;
    }

    .sideNav {
        display: block;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        z-index: 101;
        background: #fff;
        width: 258px;
        height: 100vh;
        overflow: hidden;
        color: white;
        /* hide the menu above the screen by default */
        transform: translateX(100%);
        transition: transform 0.2s ease;
        padding: 20px 10px 20px 40px;
    }

    .sideNav .menu-primary-left-menu-container, .sideNav .menu-primary-right-menu-container {
        width: 100%;
    }

    .sideNav .menu-primary-left-menu-container {
        margin-top: 5rem;
    }

    .showNav {
        transform: translateX(0);
    }

    .sideNav ul {
        width: 100%;
        height: 100%;
        list-style: none;
        display: flex;
        flex-flow: column nowrap;
        align-items: start;
        padding: 0;
        margin: 0;
    }

    .sideNav .menu-item {
        margin: 10px 0;
    }

    .sideNav .phone a:before {
        display: none;
    }

    .sideNav ul li a {
        font-size: 16px;
        font-weight: 400;
        line-height: 18.78px;
        text-align: left;
        display: block;
        color: #313131;
    }

    .sideNav .phone a {
        font-family: Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    }

    .overlay {
        position: fixed;
        display: none;
        z-index: 100;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.3);
        width: 100%;
        height: 100vh;
    }

    .showOverlay {
        display: block;
    }

    .hero h1.hero__title {
        width: 100%;
        color: #fff;
        text-align: center;
        font-weight: 300;
        font-family: Raleway;
        font-size: 40px;
        font-weight: 300;
        line-height: 45px;
        text-transform: uppercase;
    }

    .section_title {
        font-size: 40px;
        font-weight: 500;
        line-height: 45.15px;
        letter-spacing: 0.06em;
        text-align: center;
        text-transform: uppercase;
    }

    .phpto_txt {
        position: absolute;
        bottom: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.6);
        min-height: 76px;
        color: #fff;
        font-family: Raleway;
        font-size: 18px;
        font-weight: 500;
        line-height: 18.4px;
        letter-spacing: 0.06em;
        text-align: left;
        padding: 15px 20px;
        display: flex;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .hero h1.hero__title {
        width: 100%;
        color: #fff;
        text-align: center;
        font-weight: 300;
        font-family: Raleway;
        font-size: 28px;
        font-weight: 300;
        line-height: 35px;
        text-transform: uppercase;
    }

    .paneli {
        position: relative;
        height: 500px;
        overflow: hidden;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        min-height: 500px;
        padding: 0;
    }

    .paneli .container {
        height: 500px;
        z-index: 2;
        position: relative;
        display: flex;
        align-items: center;
        min-height: 500px;
    }

    .paneli__title {
        width: 100%;
        color: #fff;
        text-align: center;
        font-weight: 300;
        font-family: Raleway;
        font-size: 26px;
        font-weight: 300;
        line-height: 34px;
        text-transform: uppercase;
    }

    .planning-images {
        flex-direction: column;
        gap: 15px;
    }

    .planning-images img {
        max-width: unset;
    }


    .swiper_wrap {
        height: 100%;
        width: 100%;
        padding: 0;
        position: relative;
        display: block;
        text-align: left;
    }

    .hero {
        background-position: top center;
    }

    .section_title {
        font-size: 30px;
        font-weight: 500;
        line-height: 30px;
        letter-spacing: 0.06em;
        text-align: center;
        text-transform: uppercase;
    }

    .section_subtitle {
        font-size: 18px;
        font-weight: 400;
        line-height: 19px;
        letter-spacing: 0.06em;
        text-align: center;
        max-width: 720px;
        margin: 20px auto;
        display: block;
    }

    .hr {
        max-width: 280px;
    }

    .terms_left_bl {
        width: 100%;
        background: #F1F1F1;
        padding: 40px;
    }

    .terms_right_bl {
        width: 100%;
        background: #3B68E9;
        padding: 40px;
    }

    .terms_txt {
        font-size: 30px;
        font-weight: 400;
        line-height: 30.61px;
        letter-spacing: 0.06em;
        text-align: left;
        text-transform: uppercase;
        margin: 30px 0;
    }

    .contact-title {
        font-size: 32px;
        font-weight: 500;
        line-height: 32.61px;
        letter-spacing: 0.06em;
        text-align: center;
        text-transform: uppercase;
        margin: 90px 0 20px 0;
    }

    .duble-nav {
        display: none;
    }

    .zoom-slide {
        display: none;
    }

    .contact-txt {
        font-size: 16px;
        font-weight: 500;
        line-height: 16px;
        text-align: center;
    }

    .form-line .col-1, .form-line .col-2 {
        width: 100%;
        padding-right: 0px;
        margin-bottom: 15px;
    }

    .form-line .col-3 {
        width: 100%;
    }

    .phpto_txt {
        position: absolute;
        bottom: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.6);
        min-height: 60px;
        color: #fff;
        font-family: Raleway;
        font-size: 18px;
        font-weight: 500;
        line-height: 18.4px;
        letter-spacing: 0.06em;
        text-align: left;
        padding: 10px 20px;
        display: flex;
        align-items: center;
    }

    .photo_content_row {
        display: flex;
        gap: 0 15px;
        margin-bottom: 15px;
        flex-wrap: wrap;
    }

    .photo_item {
        position: relative;
        width: 100%;
        margin-bottom: 15px;
    }

    .photo_item img {
        width: 100%;
        height: auto;
    }

    .flex_col_2 {
        display: flex;
        gap: 0 20px;
        flex-wrap: wrap;
    }

    .col_left_50 {
        width: 100%;
        padding-top: 30px;
    }

    .col_right_50 {
        width: 100%;
    }

    .col_left_txt {
        font-size: 22px;
        font-weight: 700;
        line-height: 22.61px;
        letter-spacing: 0.06em;
        text-align: center;
        max-width: 100%;
    }

    .btn_link_tel {
        margin: 40px auto 20px;
    }

    .footer-flex {
        display: flex;
        gap: 0;
        max-width: 100%;
        flex-wrap: wrap;
        text-align: left;
    }

    .footer-addr {
        width: 100%;
        margin-bottom: 15px;
    }

    .footer-phone {
        width: 100%;
        margin-bottom: 15px;
    }

    .footer-yur {
        width: 100%;
    }

    .footer-yur a {
        text-decoration: underline;
    }

    .site-title:before {
        display: none;
    }

    .site-title:after {
        display: none;
    }

    .swiper-button-prev, .swiper-rtl .swiper-button-next {
        background: #00000033;
        padding: 70px 14px;
        margin-left: 0px;
        margin-top: -70px;
        z-index: 5;
    }

    .swiper-button-prev {
        left: 0
    }

    .swiper-button-next {
        right: 0
    }

    .swiper-button-next, .swiper-rtl .swiper-button-prev {
        background: #00000033;
        padding: 70px 14px;
        margin-right: 0px;
        margin-top: -70px;
        z-index: 5;
    }

    .header__navigation .menu-primary-left-menu-container, .header__navigation .menu-primary-right-menu-container {
        display: none;
    }

    .logo__wrapper {
        width: 180px;
        display: flex;
        align-items: center;
    }

    .hero__content {
        height: 50vh;
        min-height: 320px;
    }

    .site-title a {
        font-size: 14px;
        font-weight: 700;
        line-height: 16.44px;
        text-align: left;
    }

    .header__navigation {
        border-bottom: 1px solid #FFFFFF80;
        padding-bottom: 11px;
    }
}

.photo_item {
    height: 264px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.photo_item.adv-1 {
    width: 42%;
}

.photo_item.adv-2, .photo_item.adv-3 {
    width: 29%;
}

.photo_item.adv-6 {
    width: 42%;
}

.photo_item.adv-4, .photo_item.adv-5 {
    width: 29%;
}

.photo_item.adv-7 {
    width: 42%;
}

.photo_item.adv-8, .photo_item.adv-9 {
    width: 29%;
}

.photo_item.adv-12 {
    width: 42%;
}

.photo_item.adv-10, .photo_item.adv-11 {
    width: 29%;
}

@media (max-width: 768px) {
    .photo_item {
        height: 264px;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }

    .photo_item.adv-1 {
        width: 100%;
    }

    .photo_item.adv-2, .photo_item.adv-3 {
        width: 100%;
    }

    .photo_item.adv-6 {
        width: 100%;
    }

    .photo_item.adv-4, .photo_item.adv-5 {
        width: 100%;
    }

    .photo_item.adv-7 {
        width: 100%;
    }

    .photo_item.adv-8, .photo_item.adv-9 {
        width: 100%;
    }

    .photo_item.adv-12 {
        width: 100%;
    }

    .photo_item.adv-10, .photo_item.adv-11 {
        width: 100%;
    }
}