/* ===== FONTS ===== */

@font-face {
    font-family: "Room";
    src:
            url("../fonts/Room-Medium.woff2") format("woff2"),
            url("../fonts/Room-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Codec Pro";
    src:
            url("../fonts/CodecPro-Regular.woff2") format("woff2"),
            url("../fonts/CodecPro-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}


/* ===== RESET ===== */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Room", system-ui, sans-serif;

    background-color: #2F2F2F;
    color: #E5E5E5;
}



.hero__title{
    font-family: "Codec Pro", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
    cursor: pointer;
}

h1{
    color: #E8BE83;
    font-size: 32px;
    letter-spacing: 0.14em;
}



/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    padding: 0 16px;
    margin: 0 auto;
}

/* ===== HEADER ===== */
.header {
    background: rgba(47, 47, 47, 1);
    position: relative;
    z-index: 10;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 64px;

}


.header__inner {
    min-height: 150px;
}

.logo img {
    height: 181px;
    height: 49px;
}

/* ===== NAV ===== */
.nav {
    position: fixed;
    inset: 0;
    padding: 50px 24px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.nav.is-open {
    transform: translateX(0);
    background: rgba(47, 47, 47, 1);
}

.nav.is-open .dropdown {
    gap: 10px;
    padding: 20px;
}


.nav__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.nav__link {
    background: none;
    border: none;
    color: #E5E5E5;
    font-size: 16px;
    padding: 10px 14px;
}

.nav__item--main{
    border: 1px solid #E9BF84;
}



.nav__link{
    transition: all 0.25s ease, transform 0.15s ease;
}

.nav__link.active,
.nav__link:hover{
    color: #2F2F2F;
    background-color: #E8BE83;
}

.nav__link--highlight {
    color: #2F2F2F;
    background-color: #E8BE83;
}

.nav__link--toggle{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.nav.is-open .nav__close{
    width: 20px;
    height: 20px;
    background-image: url(../images/close.svg);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 10px;
    right: 10px;

}

/* ===== BURGER ICON (INLINE) ===== */
.burger-icon {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
}

.burger-icon span {
    width: 10px;
    height: 2px;
    background-color: #E5E5E5;
}

/* ===== DROPDOWN ===== */
.nav__item--dropdown {
    position: relative;
}

.dropdown {
    display: none;
    list-style: none;
    padding-left: 16px;
    margin-top: 1px;
    /*gap: 10px;*/
}

.nav__item--dropdown.is-open .dropdown {
    display: flex;
    flex-direction: column;
}

/* ===== HEADER CONTACTS ===== */
.header__contacts {
    display: none;
    flex-direction: column;
    gap: 4px;
    text-align: right;
}

.phone {
    color: #E8BE83;
    font-size: 17px;
    position: relative;
    padding-left: 24px;
}

.phone::before {
    content: "";
    width: 16px;
    height: 16px;
    position: absolute;
    left: 0;
    top: calc(50% - 8px);
    background-image: url(../images/call-icon.svg);
    background-repeat: no-repeat;
    background-size: contain;
}



.address {
    font-size: 15px;
    position: relative;
    padding-left: 20px;
}

.address::before {
    content: "";
    width: 12px;
    height: 20px;
    position: absolute;
    left: 0;
    top: calc(50% - 8px);
    background-image: url(../images/map-icon.svg);
    background-repeat: no-repeat;
    background-size: contain;
}



/* ===== MOBILE BURGER ===== */
.burger{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    border: 0;
    background-color: #E8BE83;
    padding: 20px 40px;
}

.burger__list {
    background: none;
    border: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.burger__list span {
    width: 10px;
    height: 2px;
    background-color: #2F2F2F;
}

.burger--mobile{

}

/* ===== HERO ===== */
.hero {

    background-image: url("../images/hero-bg.png"); /* заменишь на свою */
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: left;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.hero__content {
    position: relative;
    z-index: 1;
    width: 1200px;
    /*display: flex;*/
    /*flex-direction: column;*/
    /*gap: 24px;*/
    padding-top: 35px;
    padding-bottom: 35px;
}

.hero__label {
    color: #E8BE83;
    font-size: 18px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin: 0;
}

.hero__title {
    margin: 0;
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.1;
    font-weight: 700;
    color: #E5E5E5;
}

.hero__list {
    list-style: none;
    padding: 30px 0;
    margin: 0;
    display: grid;
    gap: 4px;
}

.hero__list li {
    font-size: 14px;
    font-weight: 400;
}

.hero__button {
    font-size: 18px;
    margin-top: 16px;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background-color: #E8BE83;
    color: #1F1F1F;
    font-weight: 600;
    transition: background-color 0.25s ease, transform 0.15s ease;
}

.hero__button:hover {
    background-color: #E6E6E6;
    /*transform: translateY(-1px);*/
}

.hero__button-icon {
    width: 24px;
    height: 24px;
    background-image: url(../images/target-icon-large.svg);
    background-repeat: no-repeat;
    background-size: contain;
}


.btn {
    font-size: 18px;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background-color: #E8BE83;
    color: #1F1F1F!important;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.25s ease, transform 0.15s ease;
}

.btn:hover {
    background-color: #E6E6E6;
    text-decoration: none!important;
    /*transform: translateY(-1px);*/
}

.btn-icon {
    width: 24px;
    height: 24px;
    background-image: url(../images/target-icon-large.svg);
    background-repeat: no-repeat;
    background-size: contain;
}


.hero__gallery-info{
    display: none;
    justify-content: right;
    align-items: end;
    flex-direction: column;
    gap: 3px;
    font-size: 24px;
    letter-spacing: 0.14em;
}

.gallery-info__name{

}

.gallery-info__caption{
    color: #E8BE83;
}




.programs__image{
    position: relative;
}

.programs__image::after{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    border: 20px solid transparent;
    border-top: 20px solid #2F2F2F;
    border-right: 20px solid #2F2F2F;
}

.programs__img{
    max-width: 100%;
}

.programs__name{
    position: relative;
    background-color: #4D4D4D;
    height: 83px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.25s ease;
}

.programs__item:hover .programs__name {
    background-color: #E8BE83;
    color: #2F2F2F;
}

.programs__name::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    border: 20px solid transparent;
    border-bottom: 20px solid #2F2F2F;;
    border-left: 20px solid #2F2F2F;;
}

.programs__name span{
    position: relative;
    padding-left: 40px;
}

.programs__name span::before{
    content: "";
    width: 24px;
    height: 24px;
    position: absolute;
    left: 0;
    top: calc(50% - 11px);
    background-image: url(../images/target-icon.svg);
    background-repeat: no-repeat;
    background-size: contain;
}

.programs__item:hover .programs__name span::before {
    background-image: url(../images/target-icon-dark.svg);
}



.programs__price{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    color: #989898;
    font-size: 20px;
}

.about{
    padding-bottom: 70px;
    position: relative;
}



.about-title{
    color: #E8BE83;
    font-size: 28px;
    padding: 53px 0 60px;
    letter-spacing: 0.14em;
}

.about-text{
    font-family: "Codec Pro", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    font-size: 20px;
    padding-top: 40px;
    line-height: 140%;
}

.about-text--small{
    font-size: 18px;
    margin: 30px 0;
}


.video{
    position: relative;
}

.video-link--box{
    padding-bottom: 30px;
}

.video-link{
    color: #E8BE83;
    font-size: 20px;
    position: relative;
    padding-right: 30px;
}

.video-link:after{
    content: "";
    width: 20px;
    height: 20px;
    position: absolute;
    right: 0;
    top: calc(50% - 7px);
    background-image: url('../images/arrow-video.svg');
    background-repeat: no-repeat;
    background-size: contain;
}



.video::after{
    content: "";
    width: 75px;
    height: 75px;
    position: absolute;
    left: calc(50% - 38px);
    top: calc(50% - 38px);
    background-image: url(../images/play.png);
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 1;
}

.video img{
   max-width: 600px;
    width: 100%;
}

.video-click{
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 2;
}

.about-details{
    font-family: "Codec Pro", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    font-size: 16px;
    padding-top: 70px;
    max-width: 700px;
    line-height: 140%;
}

.rent{
    background-color: #E5E5E5;
    color: #2F2F2F;
    padding: 50px 0 50px;
    background-image: url(../images/rent-mobile.png);
    background-repeat: no-repeat;
    background-position: bottom right;
}

.rent__columns{

}

.rent__title{
    font-weight: bold;
    font-size: 26px;
}

.rent__right{
    width: 40%;
    display: none;
}

.rent__description{
    font-family: "Codec Pro", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    font-size: 18px;
    line-height: 130%;
    padding: 30px 0;
}

.rent__price{
    padding: 15px 20px;
    border: 2px solid #2F2F2F;
    width: 257px;
    font-size: 20px;
    font-weight: bold;
    line-height: 130%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery{
    padding: 70px 0;
}

.my-slider img{
    max-width: 100%;
}


.swiper-button-next-t{
    left: auto;
    right: calc((100% - 63%) / 2 - 60px);
    margin-left: 0;
    margin-top: calc(0px - var(--swiper-navigation-size) / 2);
    top: var(--swiper-navigation-top-offset, 50%);
    align-items: center;
    cursor: pointer;
    display: flex;
    justify-content: center;
    position: absolute;
    width: 22px;
    height: 39px;
    background-image: url(../images/arrow-right.png);
    z-index: 10;
}


.swiper-button-prev-t{
    right: auto;
    left: calc((100% - 63%) / 2 - 60px);
    margin-left: 0;
    margin-top: calc(0px - var(--swiper-navigation-size) / 2);
    top: var(--swiper-navigation-top-offset, 50%);
    align-items: center;
    cursor: pointer;
    display: flex;
    justify-content: center;
    position: absolute;
    z-index: 10;
    width: 22px;
    height: 39px;
    background-image: url(../images/arrow-right.png);
    rotate: 180deg;
}

.certificates{
    padding: 50px 0;
    background-image: url(../images/certificate-mobile.png);
    background-repeat: no-repeat;
    background-position: right 22px;
    background-color: #1A1A1A;
}

.certificates__columns{

}

.certificates__columns img{
    max-width: 100%;
    height: auto;
}

.certificates__title{
    font-weight: bold;
    font-size: 26px;
    color: #E8BE83;
}

.certificates__right{
    width: 40%;
    display: none;
}

.certificates__description{
    font-family: "Codec Pro", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    font-size: 18px;
    line-height: 130%;
    padding: 30px 0;
    color: #E5E5E5;
}

.certificates__button{
    padding: 15px 20px;
    border: 2px solid #E8BE83;
    color: #E8BE83;
    width: 257px;
    font-size: 20px;
    font-weight: bold;
    line-height: 130%;
    display: flex;
    align-items: center;
    justify-content: center;
}



/* for children */

.for-children{
    background-color: #E6E6E6;
    padding: 70px 0 96px 0;
    background-image: url("../images/balls.png");
    background-repeat: no-repeat;
    background-position: left bottom;
}

.for-children__columns img{
    max-width: 100%;
    height: auto;
}


.for-children__title{
    font-weight: bold;
    font-size: 26px;
    color: #2F2F2F;
}

.for-children__right{

    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: self-end;
}

.for-children__description{
    font-family: "Codec Pro", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    font-size: 18px;
    line-height: 130%;
    padding: 30px 0;
    color: #2F2F2F;
}

.for-children__button{
    padding: 15px 20px;
    border: 2px solid #2F2F2F;
    color: #2F2F2F;
    width: 257px;
    font-size: 20px;
    font-weight: bold;
    line-height: 130%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.for-children__left{
    display: none;
}


/* security-guards */


.security-guards{
    background-color: #2F2F2F;
    padding: 76px 0;
}

.security-guards__columns{

}

.security-guards__title{
    font-weight: bold;
    font-size: 26px;
    color: #E8BE83;
    padding-bottom: 40px;
}

.security-guards__right{
    width: 40%;
    display: none;
}

.security-guards__description{
    font-family: "Codec Pro", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    font-size: 18px;
    line-height: 130%;
    padding: 30px 0;
    color: #E5E5E5;
}

.security-guards__button{
    padding: 15px 20px;
    border: 2px solid #E8BE83;
    color: #E8BE83;
    width: 333px;
    font-size: 20px;
    font-weight: bold;
    line-height: 130%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.route{
    background-color: #E6E6E6;
}

.route__columns{

}

.route__title{
    font-weight: bold;
    font-size: 26px;
    color: #2F2F2F;
}

.route__address{
    height: 100%;
    display: flex;
    color: #2F2F2F;
    flex-direction: column;
    justify-content: center;
    padding: 88px 20px 78px;
}

.route__map{
    min-height: 597px;
    background-image: url("../images/map.jpg");
    background-repeat: no-repeat;
    background-color: #161616;
    background-position: center;
}


.address__title{

}

.route__description{
    font-family: "Codec Pro", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    font-size: 18px;
    line-height: 130%;
    padding: 30px 0;
    color: #2F2F2F;
}

.route__phone{
    font-family: "Codec Pro", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    font-size: 18px;
    line-height: 130%;
    padding: 30px 0;
    color: #989898;
}


.footer{
    background-color: #2F2F2F;
    padding: 80px 0;
    font-family: "Codec Pro", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}


.footer-text{
    padding-bottom: 24px;
    line-height: 140%;
}


.footer-phone{
    font-size: 24px;
    line-height: 130%;
    padding: 30px 0;
}

.information{
    color: #E8BE83;
}

.copy{
    padding: 30px 0;
}

.privacy-policy{
    color: #E8BE83;
}

.footer__columns img{
    max-width: 100%;
    height: auto;
}

.fancybox-content{
    background: transparent;
}

.contact-form__title{
    font-weight: bold;
    font-size: 26px;
    color: #2F2F2F;
    padding-bottom: 40px;
}

.contact-form__field{
    margin-bottom: 60px;
}

.contact-form__input, .contact-form__input:focus{
    width: 100%;
    height: 64px;
    border: 2px solid #cccccc;
    color: #7d7d7d;
    font-size: 20px;
    padding: 20px;
    font-family: "Room", system-ui, sans-serif;
}

.contact-form__field--checkbox label{
    font-size: 22px;
    color: #929292;

}

.contact-form__action{
    display: flex;
    align-items: center;
}

.contact-form__submit{
    font-size: 22px;
    color: #2F2F2F;
    background-color: #E8BE83;
    border: 0;
    padding: 17px 57px;
    margin: 0 auto;
}


.program-detail__floating {

    width: 100%; /* Ширина блока */


    margin-bottom: 30px; /* Отступ снизу */
    padding: 0;

    text-align: center;
    /*display: flex;*/
    /*align-items: center;*/
    /*justify-content: center;*/
    /*font-weight: bold;*/
}

.program-detail__info{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.program-detail__img img{
    max-width: 100%;
}

.clear{
    clear: both;
}

.program-detail__price{
    color: #E8BE83;
    font-size: 20px;
}

.program-detail__large{
    font-size: 24px;
}

.program-content{
    font-family: "Codec Pro", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    font-size: 20px;
    padding-top: 20px;
    line-height: 140%;
}

.program-content p {
    padding: 0 0 40px;
    margin: 0;
}

.program-detail__caption{
    padding-right: 30px;
}

.program-detail{
    padding-bottom: 50px;
}



.breadcrumb a{
    color: #989898;
}

.social {
    display: flex;
    gap: 11px;
    align-items: center;
}


.footer-phone{
    position: relative;
    padding-left: 40px;
}

.footer-phone::before{
    content: "";
    width: 22px;
    height: 22px;
    position: absolute;
    left: 0;
    top: 24px;
    background-image: url(../images/phone.svg);
    background-repeat: no-repeat;
    background-size: contain;
}

.footer__img{
    display: flex;
    align-items: center;
}

.security-guards__discharge{
    font-family: "Codec Pro", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    display: flex;
    align-items: start;
}

.discharge__large{
    font-size: 60px;
}

.discharge__small{
    font-size: 18px;
    padding-left: 20px;
}
.btn-back{
    height: 59px;
    display: inline-block;
    padding: 16px 20px 16px 40px;
    border: 2px solid #fff;
    margin-bottom: 57px;

    position: relative;
    font-size: 20px;
}

.btn-back::before{
    content: "";
    width: 11px;
    height: 19px;
    position: absolute;
    left: 15px;
    top: calc(50% - 8px);
    background-image: url(../images/arrow-back.svg);
    background-repeat: no-repeat;
    background-size: contain;
}
.fancybox-close-small svg{
    display: none;
}

.fancybox-close-small{
    background-image: url(../images/close.svg);
    background-repeat: no-repeat;
    background-size: 24px 24px;
    background-position: 6px;

}

.main-title{
    padding-bottom: 30px;
}

.page-text{
    padding-bottom: 70px;
    font-size: 20px;
    padding-top: 10px;
    line-height: 140%;
    font-family: "Codec Pro", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

.page-text a{
    color: #E8BE83;
}

.page-text a:hover{
    text-decoration: underline;
}

.news-item{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100%;
    margin-bottom: 50px;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;

}

.news-item__image{
    display: flex;
}

.news-item__preview {
    padding-top: 15px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-item__text-bottom{
    width: 100%;
    position: relative;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    margin-top: auto;
    justify-content: space-between;
    display: flex;
    align-content: flex-start;
    flex-wrap: wrap;
    flex-direction: row;
}


.news-item__text-bottom:after {
    content: '';
    position: absolute;
    height: 1px;
    width: calc(100% - 155px);
    bottom: 1px;
    right: 185px;
    background-color: #E8BE83;
}

.news-item__title{
    font-weight: bold;
}

.news-item__preview-text{
    font-size: 16px;
}

.news-item__data{
    font-size: 16px;
}

.event-slider{
    padding-top: 50px;
}

.event-slider img {
    max-width: 100%;
}

.swiper-button-disabled{
    opacity: 0.3;
    cursor: inherit;
}

.licens-cell{
    padding-top: 20px;
}

.page-text img{
    max-width: 100%;
}