@import url('https://fonts.googleapis.com/css2?family=Nova+Mono&family=Nova+Round&family=Oswald:wght@200..700&display=swap');
/*****STYLING GLOBAL*****/

/*****STYLING GLOBAL*****/
*:not(i) {
    font-family: "Oswald", sans-serif !important;
}

html {
    scroll-behavior: smooth;
}

:root {
    --main-color: #fff;
    --main-color-2: #FF1919;
    --main-color-3: #10314b;
}

.test {
    min-width: inherit!important;
    min-height: inherit!important;
}

.franchises.franchises-about {
    position: relative;
    min-height: 100vh;
    background: var(--main-color-3);
}

.franchises-about img {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    object-fit: cover;
    height: 100%;
}

.franchises-about .franchises__info-item {
    border-bottom: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.franchises-about .franchises__info-item p {
    font-size: 23px;
    margin: 40px 0;
    color: var(--main-color);
    font-weight: 500;
}

.franchises-about .franchises__info h3 span:first-child {
    color: var(--main-color);
}

.franchises-about .franchises__info h3 span:last-child {
    padding-top: 15px;
}

.franchises__info .franchises__info-item-2 h3 span:last-child {
    padding-top: 20px;
}

.franchises-5 .franchises__info-item {
    border: 0;
}

.franchises-about .img-2 {
    display: none;
}

@media only screen and (max-width: 600px) {
    .franchises-about .franchises__info-item {
        grid-template-columns: 1fr;
    }

    .franchises-about img {
        position: inherit;
    }

    .franchises-about .none,
    .img-1 {
        display: none;
    }

    .franchises-about .img-2 {
        display: block;
        width: 100%;
        max-height: 400px;
        object-fit: cover;
        margin-top: 20px;
        margin-bottom: 20px;
    }
}

.review-btns {
    width: 200px;
    display: flex;
    margin: auto;
    gap: 20px;
    margin-bottom: 20px;
    justify-content: center;

}

.review-section {
    overflow: hidden;
}

.review-button-prev,
.review-button-next {
    width: 50px;
    cursor: pointer;
    height: 50px;
    border-radius: 50%;
    background: var(--main-color-2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.text {
    height: 400px;
    overflow-y: scroll;
}

.swiper {

    margin-bottom: 40px;
}

.testimonial-slide {
    background: #fff;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

/* Стили картинки внутри отзыва */
.testimonial-image {
    width: 300px;
    /* Можно подогнать под нужный размер */
    height: 400px;
    border-radius: 16px;
    /* Закруглённое фото (аватар) */
    float: left;
    /* Прижимаем к левому краю */
    margin-right: 20px;
    /* Отступ от текста */
    object-fit: cover;
    margin-bottom: 20px;
    /* Если нужно обрезать картинку под круг */
}

.testimonial-slide h3 {
    margin-top: 0;
    margin-bottom: 10px;
}

.testimonial-slide p {
    margin-bottom: 10px;
    line-height: 1.5;
}

@media only screen and (max-width: 768px) {

    .text {
        height: 260px;
        overflow-y: scroll;
    }

    .testimonial-image {
        width: 100%;
        height: 340px;
    }

    .testimonial-slide {
        flex-direction: column;
        display: flex;
    }


}

.video-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* Соотношение сторон 16:9 */
    overflow: hidden;
    background: #10314b;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Опционально: для заполнения контейнера с сохранением пропорций */
}

.grid-section {
    background-color: var(--main-color-3);
    padding: 40px 0;
}

.grid-section h2 {
    color: #fff;
    text-align: center;
    font-size: 40px;
    margin-bottom: 40px;
}

.parent {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
}

.div1 {
    grid-area: 1 / 1 / 7 / 7;
    height: 240px;
}

.div2 {
    grid-area: 7 / 1 / 13 / 4;
    height: 240px;
}

.div3 {
    grid-area: 7 / 4 / 13 / 7;
    height: 240px;
}

.div4 {
    grid-area: 1 / 7 / 13 / 10;
    height: 500px;
}

.div5 {
    grid-area: 1 / 10 / 7 / 13;
    height: 240px;
}

.div6 {
    grid-area: 7 / 10 / 13 / 13;
    height: 240px;
}

.parent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

@media only screen and (max-width: 992px) {
    .div1 {
        grid-area: 1 / 1 / 3 / 13;
        height: 240px;
    }

    .div2 {
        grid-area: 3 / 1 / 5 / 13;
        height: 240px;
    }

    .div3 {
        grid-area: 5 / 1 / 7 / 13;
        height: 240px;
    }

    .div4 {
        grid-area: 7 / 1 / 9 / 13;
        height: 240px;
    }

    .div5 {
        grid-area: 9 / 1 / 11 / 13;
        height: 240px;
    }

    .div6 {
        grid-area: 11 / 1 / 13 / 13;
        height: 240px;
    }
}

/*****STYLING SECTION*****/
.last-section {
    padding: 40px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: url(/img/Рисунок1.jpg) center/cover;
}

.last-section .overlay {
    background: #00000087;
}

.last-section h2 {
    text-align: center;
    font-weight: 900;
    font-size: 55px;
    margin-bottom: 30px;
    color: #fff;
    position: relative;
    z-index: 3;
}

.last-section__inner .row {
    gap: 20px;
    max-width: 800px;
    position: relative;
    margin: auto;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.last-section__inner .row div {
    background: var(--main-color-3);
    padding: 20px;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.last-section__inner .row .col h3 {
    color: #fff;
}


.last-section h3 {
    color: #fff;
}

@media only screen and (max-width: 768px) {
    .last-section h2 {
        font-size: 35px;
    }

    .last-section__inner .row {
        grid-template-columns: 1fr;
    }


}


/*****STYLING EXPECTATION*****/
.expectation {
    padding: 0 0 40px 0;
}

.expectation__content {
    max-width: 1200px;
    margin: auto;
}

.expectation__title {
    margin: auto;
    gap: 10px;
    background: var(--main-color);
    color: #fff;
    border-radius: 30px;
    padding: 20px;
    text-align: center;
}

.expectation .row {
    padding-top: 30px;
    gap: 20px;
    align-items: center;
}

.expectation .row .col {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    background: var(--main-color-3);
    color: var(--main-color);
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 20px;
    min-height: 320px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

}

.expectation .row .decor {
    width: 90px;
    position: relative;
    animation-name: example;
    animation-duration: 3s;
    animation-iteration-count: infinite;
}

.expectation .row .col div {
    background: var(--main-color-2);
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    margin-top: 10px;
}

.expectation .row .col img {
    width: 80px;
    height: 80px;
}

@keyframes example {
    0% {
        left: -20px;
    }


    50% {
        left: 20px;
    }


    100% {
        left: -20px;
    }
}

.expectation__line {
    width: 100%;
    height: 50px;
    background: url('https://optim.tildacdn.com/tild3837-3335-4331-b133-636366623337/-/format/webp/1618e2a7-22bf-4091-9.png') center/cover;
    margin-bottom: 10px;
}

.expectation h2 {
    font-size: 60px;
    line-height: 68px;
    color: var(--main-color-3);
    font-weight: 900;
    text-align: center;
}

.map-block .adress-icon {
    width: 25px !important;
}

@media only screen and (max-width: 992px) {

    /*RESPONSIVE 992 EXPECTATION */
    .expectation__title {
        flex-direction: column;
    }

    .expectation h2 {
        font-size: 40px;
        line-height: 40px;
        width: 100%;
        text-align: center;
    }

    .expectation__line {
        height: 40px;
    }

    .expectation .row {
        flex-direction: column;
    }

    .expectation .row .col {
        min-height: inherit;
        padding: 20px;
        font-size: 20px;
        text-align: center;
    }

    .expectation .row img {
        width: 50px;
    }

}


/*****STYLING INVESTMENTS*****/
.investments {
    min-height: 110vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--main-color-3);
}

.investments .finance__title {
    color: var(--main-color);
    text-align: center;
    font-size: 40px;
    position: relative;
    top: -40px;

}


.investments__content-absoluteBlock {
    display: flex;
    justify-content: space-between;
    position: absolute;
    width: 100%;
    left: 50%;
    top: 50%;
    padding: 0 30px;
    max-width: 1250px;
}

.investments__content {
    max-width: 1020px;
    margin: auto;
}

.investments__content-absoluteBlock.first {
    transform: translate(-50%, -100%)
}

.investments__content-absoluteBlock.second {
    transform: translate(-50%, 24%)
}

.investments__content-absoluteBlock.third {
    transform: translate(-50%, 260%)
}

.investments__content-absoluteBlock.third .investments__item {
    display: flex;
    max-width: fit-content;
    margin: auto;
    align-items: center;
}

.investments__item {
    max-width: 300px;
}

.investments__item h2 {
    font-size: 30px;
    color: var(--main-color);
    font-weight: 900;
    text-transform: uppercase;
}

.investments__item h3 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.investments__item h3 span:first-of-type {
    font-size: 80px;
    color: var(--main-color);
}

.investments__item h3 span:nth-of-type(2) {
    font-size: 40px;
    color: var(--main-color);
}

.investments__logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 50%;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 350px;
    height: 350px;
    cursor: pointer;
    transition: .5s;
    box-shadow: rgba(99, 99, 99, 0.2) 4px 9px 28px 10px;
}

.investments__logo:hover {
    box-shadow: none;
}

.investments__logo img {
    width: 100%;
    object-fit: cover;
}

@media only screen and (max-width: 992px) {

    /*RESPONSIVE 992 INVESTMENTS*/
    .investments__logo {
        display: none;
    }

    .investments__logo.mobile {
        position: static;
        transform: translate(0, 0);
        margin: 40px auto;
    }

    .investments svg {
        display: none;
    }

    .investments__item {
        margin-bottom: 40px;
        border: 2px solid #fff;
        padding: 10px;
        border-radius: 20px;
        max-width: 100%;
    }

    .investments__content-absoluteBlock,
    .investments__content-relBlock {
        position: static;
        padding: 0;
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        justify-content: center;
        gap: 10px;
    }

    .investments__content-absoluteBlock.first,
    .investments__content-absoluteBlock.second {
        transform: translate(0, 0);
    }

    .investments__item h3 {
        justify-content: center;
    }

    .investments__item h2 {
        text-align: center;
    }

}

@media only screen and (max-width: 768px) {

    /*RESPONSIVE 768 INVESTMENTS*/
    .investments__logo {
        width: 200px;
        height: 200px;
    }

    .investments__content-absoluteBlock,
    .investments__content-relBlock {
        grid-template-columns: 1fr !important;
    }

    .investments__item h3 span:first-of-type {
        font-size: 40px;
    }

    .investments__item h2 {
        font-size: 16px;
    }

    .investments .finance__title {
        font-size: 35px;
    }

    .investments__item h3 span:nth-of-type(2) {
        font-size: 40px !important;
    }

}

/*****STYLING ANALYSIS*****/
.analysis {
    padding: 40px 0;
    position: relative;
    background: var(--main-color-3)
}

.analysis .partners__title {
    border: none;
}

.analysis .partners__title h2 {
    font-size: 35px;
    color: var(--main-color-2);
    background: #fff;
    padding: 5px 10px;
    border-radius: 4px;
}

.analysis .partners__title h2:last-child {
    color: #fff !important;
    background: var(--main-color-2) !important;
}

.analysis__inner h3 {
    background: var(--main-color-2);
    color: #fff;
    text-align: center;
    max-width: fit-content;
    text-align: center;
    margin: auto;
    padding: 20px 30px;
    border-radius: 20px;
    font-size: 50px;
}

.analysis .container {
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.analysis__inner {
    position: relative;
    z-index: 3;
}

.analysis .overlay {
    width: 100%;
    height: 100%;
    background: #ffe4bf86;
}

.analysis__inner p {
    color: #fff;
    font-size: 40px;
    line-height: 55px;
    font-weight: 900;
    max-width: 700px;
}

.analysis__inner p span {
    font-size: 55px;
}

.analysis__inner .partners__title {
    margin-top: 30px;
}

.statistics {
    margin: 40px 0;
    display: flex;
}

.statistics span {
    color: #fff;
    font-size: 30px;
    padding-right: 20px;
}

.statistics-1,
.statistics-2 {
    width: 53.1%;
    height: 50px;
    background: #fff;
}

.statistics-3,
.statistics-4 {
    width: 46.9%;
    height: 50px;
    background: var(--main-color-2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
}

.statistics-4 {
    background: transparent !important;
}


/******STYLING WHATSAPP START**********/
.fixed-whatsapp {
    width: 50px;
    height: 50px;
    background: var(--main-color-2);
    position: fixed;
    bottom: 20px;
    z-index: 1000;
    right: 20px;
    color: #fff;
    animation: 1s infinite wpAnim;
    box-shadow: 0 0 0 18px transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 25px
}

.fixed-whatsapp:hover a {
    color: #fff;
}



@keyframes wpAnim {
    0% {
        box-shadow: 0 0 0 0 var(--main-color-2);
    }
}


.container {
    max-width: 1450px !important;
    width: 100% !important;
    padding: 0 20px !important;
    margin: auto !important;
}


/*****PRICE-FORM START*****/

#price-form .modal-content {
    padding: 20px 0 0 0;
    max-width: 500px;
    margin: auto;
}

#price-form .modal-body {
    padding: 15px 40px 40px 40px
}

#price-form .modal-title {
    font-size: 18px !important
}

#price-form .modal-header {
    margin: 0 40px 10px 40px;
    padding-left: 0;
    padding-right: 0;
    border: none;
    border-bottom: 1px solid var(--main-color);
}

#price-form .modal-title {
    font-weight: 700;
    color: #000
}

#price-form input.effect,
#price-form .custom-form select.effect {
    height: 50px
}

#price-form .effect,
.projects-full-story__form .effect {
    width: 100%;
    border: 2px solid #e6ecf2;
    padding: 12px 20px;
    margin: 0 0 16px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    font-size: 14px;
    -webkit-appearance: none;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    position: relative;
}

#price-form .modal-content .btn-close {
    display: block;
    height: 20px;
    opacity: .5;
    position: absolute;
    right: 50px;
    top: 34px;
    width: 20px;
    z-index: 100;
    padding: 0;
    outline: transparent;
}

.modal-backdrop {
    opacity: .8 !important
}

#price-form .btn-close:focus {
    box-shadow: none !important
}

#price-form .submit-btn:hover .projects-full-story__form .submit-btn:hover {
    background-color: #742220;
}

#price-form .submit-btn,
.projects-full-story__form .submit-btn {
    background-color: #000;
    color: #fff;
    border-radius: 4px;
    height: 50px;
    line-height: 50px;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    padding: 0 26px;
    width: 100%;
    font-size: 15px;
    font-weight: 500;
}

#price-form .submit-btn,
.projects-full-story__form .submit-btn:hover {
    background-color: #742220;
}



/*****STYLING HEADER*****/
header {
    padding: 15px 0;
    /* position: fixed; */
    /* top: 0;
    left: 0; */
    width: 100%;
    z-index: 10;
    transition: .3s;
    position: absolute;
}

.header__logo {
    max-width: 150px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__menu {
    display: flex;
    gap: 20px;
}

.header__menu li a {
    color: var(--main-color-3);
    position: relative;
    padding-bottom: 5px;
}

header .header__menu li a {
    color: #fff;
}

.header__menu li a:hover::after {
    width: 100%;
    left: 0;
}

nav button,
.mobile__menu button {
    background: var(--main-color-2);
    border: 1px solid transparent;
    outline: none;
    padding: 15px 20px;
    border-radius: 7px;
    cursor: pointer;
    transition: .3s;
    font-size: 14px;
    text-transform: uppercase;
    animation: inf-pulse-3 .8s;
    animation-iteration-count: infinite;
    /* box-shadow: 0px 5px 25px 0px  var(--main-color-2); */
    color: #fff;
    font-weight: bold;
}

/* @keyframes inf-pulse-3 {
    0% {
        -webkit-box-shadow: 0 0 0 0  var(--main-color-2);
        -moz-box-shadow: 0 0 0 0  var(--main-color-2);
        -o-box-shadow: 0 0 0 0  var(--main-color-2);
        box-shadow: 0 0 0 0  var(--main-color-2);
    }
} */

nav button:hover {
    background: #a00a0a;
}

.header__menu li a::after {
    content: "";
    position: absolute;
    height: 2px;
    right: 0;
    bottom: 0;
    width: 0;
    background-color: #f2b96f;
    transition: 0.3s;
}

.menu-btn-mobile {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #fff;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.menu-btn-mobile__inner {
    width: 20px
}

.menu-btn-mobile__inner .line:first-child {
    width: 90%
}

.menu-btn-mobile__inner .line:last-child {
    width: 80%
}

.menu-btn-mobile__inner .line {
    width: 100%;
    height: 2px;
    background-color: #323232;
    margin: 3px 0;
}

body.active {
    overflow: hidden;
}

.mobile__menu {
    height: 100vh;
    background: url('/img/menubg.jpg') center/cover;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(-100%);
    width: 100%;
    transition: .5s;
}

.mobile__menu.active {
    transform: translateX(0);
}

.mobile__menu .header__menu {
    width: 100%;
    position: relative;
    height: 100%;
    flex-direction: column;
    align-items: center;
    padding-top: 70px;
}

.mobile__menu .header__menu li {
    position: relative;
    z-index: 5;
}

.mobile__menu .header__menu li a {
    font-size: 20px;
}

.mobile__menu .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(60deg, #000000eb 30%, #f2b96faf 90%);
}

.mobile__menu-header {
    display: flex;
    position: relative;
    z-index: 5;
    align-items: center;
    justify-content: space-between;
    background: #ff92048e;
    padding: 20px;
}

.mobile__menu-header img {
    cursor: pointer;
}

.mobile__menu button {
    position: relative;
    z-index: 5;
}

/*****STYLING SLIDER*****/
.slider {
    height: 100vh;
    position: relative;
    padding: 0;
}

.swiper-header {
    height: 100%
}

.swiper-header .swiper-slide {
    display: flex;
    padding-top: 85px;
    align-items: flex-end;
}

.slide-1 {
    background: url(/img/slider-1.png) center/cover
}

.slide-2 {
    background: url(/img/slider-2.jpg) center/cover
}

.slide-3 {
    background: url(/img/slider-3.jpg) center/cover
}

.swiper-header .swiper-header-btns {
    position: absolute;
    bottom: 10%;
    z-index: 2;
    display: flex;
    gap: 10px;
    right: 40px;
}

.swiper-header .swiper-header-btns div {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.swiper-header .swiper-header-btns div i {
    font-size: 20px;
    color: var(--main-color);
    transition: all 0.3s ease;
}

.swiper-header .button-prev:hover i {
    color: #fff
}

.swiper-header .button-prev:hover {
    background: var(--main-color)
}

.swiper-header .button-next:hover i {
    color: #fff
}

.swiper-header .button-next:hover {
    background: var(--main-color)
}

.swiper-header .swiper-text {
    position: relative;
    z-index: 2;
    max-width: 850px;
    width: 100%;
}

.swiper-header .swiper-text h2 {
    color: var(--main-color);
    font-weight: 900;
    font-size: 60px;
    line-height: 70px;
    text-transform: uppercase;
}

.swiper-header .swiper-text p {
    color: #fff;
    font-weight: 200;
    font-size: 20px;
    text-transform: uppercase;
}

.swiper-header .slide-btns {
    display: flex;
    gap: 12px;
}

.swiper-header .swiper-slide__btn,
.ostavit {
    position: relative;
    display: inline-block;
    background-color: #fff;
    color: #000;
    padding: 15px 35px 15px 25px;
    font-size: 20px;
    font-weight: 700;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.swiper-header .swiper-slide__btn-1 {
    width: 192px
}

.swiper-header .swiper-slide__btn span::after {
    content: "";
    width: 12px;
    height: 12px;
    margin-bottom: -2px !important;
    margin-left: 5px !important;
    display: inline-block;
    clip-path: polygon(56.4% 50%, 26.4% 19.9%, 35% 11.3%, 73.6% 50%, 35% 88.7%, 26.4% 80.1%, 56.4% 50%);
    background-color: #000;
    transition: all 0.3s ease;
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translate(0, -50%);
}

.swiper-header .swiper-slide__btn-1 span::after {
    right: 35px !important
}

.swiper-header .swiper-slide__btn-2,
.ostavit {
    background: #FF1919;
    color: #fff;
    text-transform: uppercase;
    display: inline-block;
}



.swiper-header .swiper-slide__btn-2 span::after,
.ostavit span::after {
    background-color: #fff
}

.swiper-header .swiper-slide__btn:hover span::after {
    clip-path: polygon(74.1% 44.2%, 43.1% 13.2%, 51.3% 5%, 96.3% 50%, 51.3% 95%, 43.1% 86.8%, 74.1% 55.8%, 3.7% 55.8%, 3.7% 44.2%, 74.1% 44.2%)
}

.swiper-header .swiper-slide__btn:hover {
    border-radius: 15px
}

.swiper-header .swiper-slide__btn:hover span::after {
    right: 17px
}

.swiper-header .swiper-slide__btn-1:hover span::after {
    right: 30px !important
}

.overlay {
    background: #0000007c;
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.slider {
    position: relative;
    padding: 0;
    overflow: hidden;
}

.slider-2 {
    height: 100vh;
}

.slider-2 .overlay {
    background: #1e2333a2;
}

.swiper-container {
    height: 100vh;
}

.slide-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.slide-inner .container {
    padding-left: 150px !important;
    margin: inherit !important;
    padding-bottom: 50px !important;
}

.swiper-button-custom-next,
.swiper-button-custom-prev {
    width: 60px;
    height: 60px;
    background: url(/img/arrow_left.svg) center/cover;
    z-index: 999;
    position: absolute;
    cursor: pointer;
    top: 50%;
}

.swiper-button-custom-next {
    background: url(/img/arrow_left.svg) center/cover !important;
    left: 50px;
}

.swiper-button-custom-prev {
    right: 50px !important;

    background: url(/img/arrow_right.svg) center/cover;
}


/*****STYLING ABOUT*****/
.about {
    min-height: 80vh;
    background: url(/img/slayd812.jpg) center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 20px 0;
}

.about__content {
    display: grid;
    gap: 20px;
    max-width: 1100px;
    margin: auto;
    position: relative;
    z-index: 2;
}

.about__content .logo {
    max-width: 140px;
    height: 90px;
}

.about__content .about__text {
    background: #0000008a;
    color: #fff;
    padding: 20px;
    transition: .2s;
}

.about__content .about__text p,
.about__content .about__text span,
.about__text ol li {
    font-size: 25px;
    line-height: 40px;
    font-weight: bold;
}

.about__text ol {
    list-style: decimal;
    padding-left: 40px;
}

.about__content .about__text span {
    color: var(--main-color-2);
}

.about-img-1:hover img,
.about-img-2:hover img,
.about-img-3:hover img {
    transform: scale(1.3);
}

.about-img-1,
.about-img-2,
.about-img-3,
.about__text {
    position: relative;
    overflow: hidden;
    z-index: 2;
    border: 1px solid var(--main-color);
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.about__imgs {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about__content .about__imgs div {
    height: 250px;
}

.about__content .about__imgs img {
    width: 100%;
    height: 250px;
    border-radius: 20px;
    object-fit: cover;
    transition: .3s;

}

.about .overlay {
    background: linear-gradient(10deg, #292828eb 30%, rgba(22, 44, 76, 0) 90%);
}

/*****STYLING FRANCHISES*****/
.franchises {
    background: #fff;
    padding: 40px 0 0 0;
}

.franchises h2 {
    font-size: 80px;
    line-height: 85px;
    color: #e7a043;
    max-width: 700px;
}

.franchises__content {
    max-width: 1200px;
    margin: auto;
    gap: 20px;
    display: flex;
    justify-content: space-between;
}

.franchises__info {
    width: 100%;
}

.franchises__info-item {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 70px;
    border-bottom: 3px solid #10314b;
    gap: 20px;
}

.franchises__info-item h4 {
    font-size: 50px;
    max-width: 353px;
    line-height: 50px;
    color: #10314b;
    text-transform: uppercase;
    font-weight: 900;
}

.franchises__info h3 {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
    max-width: 600px;
    align-items: center;
}

.franchises__info h3 span:first-child {
    font-size: 70px;
    line-height: 70px;
    font-weight: 700;
    border-radius: 50%;
    background: var(--main-color-2);
    padding: 20px;
    color: #fff;
    min-width: 114.49px;
    min-height: 114.49px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.franchises__info h3 span:last-child {
    font-size: 30px;
    line-height: 30px;
    font-weight: 700;
    color: var(--main3-color);
}

@media only screen and (max-width: 768px) {

    /*RESPONSIVE 768 FRANCHISES*/
    .franchises {
        padding: 40px 0 0 0;
    }

    .franchises__info-item h4 {
        font-size: 35px;
        line-height: 38px;
        max-width: 100%;
    }

    .franchises__info h3 span:first-child {
        font-size: 60px;
        line-height: 64px;
    }

    .franchises__info h3 span:last-child {
        font-size: 20px;
        line-height: 40px;
    }

    /*RESPONSIVE 768 FRANCHISES*/
    .franchises__info-item {
        flex-direction: column;
        gap: 50px;
    }

    .franchises__info h3 {
        gap: 20px;
    }

    .franchises__info h3 span:first-child {
        font-size: 60px;
        line-height: 64px;
        min-width: 104px;
        min-height: 104px;
    }

    .franchises__info h3 span:last-child {
        font-size: 20px;
        line-height: 20px;
    }
}




/*****STYLING ADVANTAGES*****/
.advantages {
    background: url(/img/aboutBg.jpg) top/cover;
    position: relative;
    padding: 100px 0;
}

.advantages .overlay {
    background: #000000e5;
}

.advantages .row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    position: relative;
    z-index: 3;
}

.advantages .row .advantages__card {
    width: 31%;
    cursor: pointer;
    transition: .3s;
    display: flex;
    align-items: center;
}

.advantages__card:hover {
    background: #815a27ce;
}

.advantages__card {
    padding: 35px;
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
    border: 3px solid #e7a043;
    gap: 10px;
    box-shadow: #e7a043;
    cursor: pointer;
    transition: .3s ease-in-out
}

.advantages_card_icon img {
    width: 40px;
    height: 40px;
    margin-top: 10px;
    filter: invert();
}

.advantages_content {
    width: calc(100% - 40px);
}

.advantages_content h5 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
    -webkit-line-clamp: 1;
    line-height: 1.2;
}

.advantages_content p {
    font-size: 14px;
    -webkit-line-clamp: 2;
    color: #fff;
    font-weight: 500;
    opacity: .9;
}

/*****STYLING PARTNERS*****/
.partners .container {
    position: relative;
    padding: 40px 0;
}

.partners__title {
    padding: 20px;
    border: 5px solid #f3bf7c;
    position: absolute;
    border-radius: 4px;
    background: #10314b9a;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    height: fit-content;
}

.partners__title-1 {
    top: 40px;
    right: 0;
}

.partners__title-2 {
    bottom: 40px;
    left: 0;
    max-width: 500px;
}

.partners__content h2 {
    font-size: 25px;
    color: #fff;
    background: #10314b;
    padding: 20px;
    max-width: 800px;
    border-radius: 4px;
}

.partners__content img {
    width: 100%;
}

/*****STYLING FOOTER*****/
.footer__inner {
    min-height: 100vh;
    display: flex;
}

.footer__inner-left,
.footer__inner-right {
    min-height: calc(100vh - 98px);
    width: 100%;
    padding: 0 45px;
    background: var(--main-color-3);

}

.footer__line {
    width: 100px !important;
}

.footer__inner-left {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer__inner-right {
    background: url(/img/Рисунок4.jpg) center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.footer__inner-right .overlay {
    background: #26262697;
}

.footer__inner-left h2 {
    color: #fff;
    font-size: 60px;
    margin-bottom: 28px;
    font-weight: 700;
    text-transform: uppercase;
}

.footer__inner-right h2 {
    color: #fff;
    font-weight: bold;
    font-size: 30px;
    margin-bottom: 28px;
    text-transform: uppercase;
}

.footer__form {
    max-width: 450px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer__form form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer__form form input {
    outline: none;
    border-top: 0;
    border-right: 0;
    border-left: 0;
    background-color: transparent;
    color: var(--main-color);
    padding-bottom: 10px;
    font-size: 20px;

}

.footer__form form .submit {
    transition: background 700ms ease-out, color 700ms ease-out, background-position 700ms ease-out, background-size 700ms ease-out !important;
    background: var(--main-color-2);
    background-position: 1% 50% !important;
    background-size: 300% 300% !important;
    color: rgba(255, 255, 255, 1) !important;
    padding: 0px 15px;
    display: block;
    width: 100%;
    font-weight: 700;
    height: 60px;
    margin-left: auto;
    margin-right: auto;
    outline: none;
    cursor: pointer;
    border-bottom: none;
    text-transform: uppercase;
    margin-top: 10px;

}

.footer__contact-info {
    max-width: 550px;
    position: relative;
    z-index: 2;
}

.footer__phones div {
    margin-bottom: 40px;
}

.footer__phones a,
.footer__phones i,
.footer__phones p {
    color: #fff;
    font-size: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.copyright {
    background: #ffff;
    padding: 20px 0;
}

.copyright-2 {
    border-top: 1px solid #436d8d;
}

.d-none-mobile {
    display: none;
}

.kafe {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--main-color-3);
    padding-top: 40px;
}

.kafe-2 {
    background: #fff;
    padding-bottom: 40px;
}


.kafe__btn,
.about__content h3 {
    background: var(--main-color-2);
    color: #fff;
    font-weight: bold;
    padding: 15px 20px;
    max-width: 200px;
    text-align: center;
    margin: 0 auto 40px auto;

}

.kafe__btn {
    max-width: fit-content;
}

.about__content h3 {
    max-width: 100%;
}

.kafe__inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 20px;
}

.kafe-2 .kafe__inner {
    grid-template-columns: 1fr 1fr 1fr;
}

.kafe__inner div {
    border-radius: 20px;


}

.kafe__inner div img {
    width: 100%;
    height: 275px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.kafe__inner div h2 {
    color: #fff;
    font-size: 18px;
    text-align: center;
    margin: 10px 0 20px 0;
}



@media only screen and (max-width: 1200px) {

    /*RESPONSIVE 1200 HEADER*/

    .header__logo {
        max-width: 130px;
    }



    /*RESPONSIVE 1200 FOOTER*/
    .footer__inner-left h2 {
        font-size: 45px;
    }

    .footer__inner-right h2 {
        font-size: 20px;
    }
}

@media only screen and (max-width: 992px) {

    .kafe__inner {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .kafe-2 .kafe__inner {
        grid-template-columns: 1fr 1fr;
    }

    /*RESPONSIVE 992 HEADER*/
    header {
        padding: 20px 0;
    }

    nav button {
        padding: 15px 15px;
        font-size: 12px;
    }

    header .desktop__menu,
    header .desktop__btn {
        display: none !important;
    }

    .menu-btn-mobile {
        display: flex;
    }

    /*RESPONSIVE 992 SLIDER*/
    .swiper-header .swiper-text h2 {
        font-size: 30px;
        line-height: 50px;
        margin-bottom: 10px;
    }

    .swiper-header .swiper-slide__btn {
        font-size: 20px;
    }





    /*RESPONSIVE 992 ABOUT*/
    .about__content {
        grid-template-columns: 1fr;
    }

    .about__content .about__text p,
    .about__text ol li {
        font-size: 16px;
        line-height: 22px;
    }

    .about__text ol li {
        margin-bottom: 20px;
    }

    .about__imgs div:first-of-type {
        grid-template-columns: 1fr !important;
    }



    /*RESPONSIVE 992 ADVANTAGES*/
    .advantages .row .advantages__card {
        width: 45%;
    }

    /*RESPONSIVE 992 partners PARTNERS*/
    .partners__content h2 {
        font-size: 16px;
        padding: 10px;
    }

    .partners__title {
        padding: 10px
    }

    /*RESPONSIVE 992 FOOTER*/
    .footer__inner {
        flex-direction: column;
    }

    footer .header__menu {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    footer nav {
        flex-direction: column;
        gap: 30px;
    }

    .footer__inner-left {
        justify-content: flex-start;
    }

    .footer__form {
        width: 100%;
    }

}

@media only screen and (max-width: 768px) {

    .liner-1 {
        display: none;
    }

    .kafe__inner {
        grid-template-columns: 1fr;
    }

    .kafe-2 .kafe__inner {
        grid-template-columns: 1fr;
    }

    /*RESPONSIVE 768  analysis*/
    .analysis .partners__content h2 {
        font-size: 20px;
        padding: 10px;
    }

    .analysis .partners__title {
        padding: 10px;
        position: static;
    }

    .analysis .partners .container {
        padding: 0 !important;
    }

    /*RESPONSIVE 768  ANALYSIS*/
    .analysis .analysis__inner h2 {
        font-size: 20px;
    }

    .analysis .analysis__inner h3 {
        padding: 10px 20px;
        font-size: 30px;
    }

    .analysis .statistics-5 span {
        padding-right: 0;
        font-size: 18px;
    }




    .kafe__inner {
        flex-direction: column;
    }

    .kafe__inner div {
        width: 100%;
    }

    .kafe {
        padding: 30px 0;
    }

    /*RESPONSIVE 768 SLIDER*/
    .slider {
        height: 100vh;
    }

    .swiper-header .swiper-text h2 {
        font-size: 25px;
        line-height: 35px;
        margin-bottom: 10px;
        text-align: left;
    }

    .swiper-header .slide-btns {
        justify-content: flex-start;
    }

    .swiper-header .swiper-text p {
        font-size: 18px;
    }

    .swiper-header .swiper-slide__btn {
        font-size: 16px;
    }

    .swiper-header .swiper-header-btns div {
        width: 40px;
        height: 40px;
    }

    .swiper-header .swiper-header-btns div i {
        font-size: 12px;
    }

    .swiper-button-custom-next,
    .swiper-button-custom-prev {
        top: inherit;
        bottom: 20px;
    }

    .slide-inner .container {
        padding: 0 !important;
        text-align: center;
    }

    .slider-2 .swiper-header .swiper-text {
        padding-left: 20px;
        padding-bottom: 50px;
    }

    .slider .swiper-header .swiper-text {
        padding: 0 20px;
        padding-bottom: 100px;
    }

    .slider-3,
    .slider-3 .swiper-container {
        height: 60vh;
    }






    /*RESPONSIVE 768 ABOUT*/
    .about__content .about__text:hover {
        background: #0000008a;
    }

    .about-img-1:hover img,
    .about-img-2:hover img,
    .about-img-3:hover img {
        transform: scale(1);
    }




    /*RESPONSIVE 768 ADVANTAGES*/
    .advantages .row .advantages__card {
        width: 100%;
    }

    .advantages__card:hover {
        background: transparent;
    }

    /*RESPONSIVE 768 partners PARTNERS*/
    .partners__content h2 {
        font-size: 14px;
        padding: 10px;
    }

    .partners__title {
        padding: 10px;
        position: static;
    }
}


@media only screen and (max-width: 480px) {



    /*RESPONSIVE 480 FOOTER*/
    .footer__inner-left,
    .footer__inner-right {
        padding: 20px;
    }

    .footer__inner-left h2 {
        font-size: 30px;
    }

    .footer__form form input,
    .footer__form form .submit {
        font-size: 16px;
    }

    .footer__inner-right h2 {
        font-size: 16px;
        text-align: center;
    }

}