@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    box-sizing: border-box;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    padding: 0;
    margin: 0;
}

p {
    line-height: 1.8;
}

a {
    text-decoration: none !important;
    transition: 0.3s;
}

input,
textarea,
button,
.slick-slide {
    outline: none !important;
    border: none;
}

body {

    font-size: 16px;
    font-family: "Montserrat", sans-serif;
    background: #FBFBFB;


}

body.modal-open {
    overflow: hidden;
}

section {
    overflow: hidden;
    position: relative;
}

ul,
li {
    margin: 0;
    padding: 0;
}

:root {
    --def-color: #FE3205;
}


.loader {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 2000;
    background: #222;
}

.loader-block {
    display: flex;
    align-items: center;
}

.loader-block-item {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--def-color);
}

.loader-block-item+.loader-block-item {
    margin-left: 10px;
}

.loader-block-item:nth-child(1n) {
    animation: loaderBottom 1s infinite;
}

@keyframes loaderTop {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }

    0% {
        transform: translateY(0);
    }
}

.loader-block-item:nth-child(2n) {
    animation: loaderTop 1s infinite;
}

@keyframes loaderBottom {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }

    0% {
        transform: translateY(0);
    }
}

@keyframes show {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.up-btn {
    width: 40px;
    height: 40px;
    cursor: pointer;
    border-radius: 50%;
    border: 1px solid #fff;
    background: #0D182E;
    position: fixed !important;
    right: 20px;
    bottom: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: 0.3s;
}

.up-btn:hover {
    background: #0D182E;
    border-color: var(--def-color);
}

.up-btn img {
    max-width: 70%;
    max-height: 70%;
    transition: 0.3s;
    animation: up 1s infinite;
}


@keyframes up {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }

    0% {
        transform: translateY(0);
    }
}

@keyframes leftToRight {
    0% {
        transform: translateX(-150%);
    }

    100% {
        transform: translateX(0);
    }
}

.color-option {
    position: fixed;
    left: 10px;
    top: 45%;
    z-index: 4;
}

.color-option-header {
    background: #222;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 4px;
    border: 1px solid var(--def-color);
}

.color-option-header img {
    width: 80%;
    height: 80%;
}

.color-option-header img:last-child {
    display: none;
}

.color-option-content {
    margin-bottom: 4px;
    border: 1px solid var(--def-color);
    animation: leftToRight 0.8s;
    background: #222;
    border-radius: 4px;
    padding: 10px;
    text-align: center;
    display: none;
    position: absolute;
    left: 0;
    bottom: 100%;
}

.color-option-content-title {
    width: 100%;
    margin-bottom: 10px;
    color: #fff;
}

.color-option-content-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: wrap;
}

.color-option-content-row-item {
    width: 30px;
    height: 30px;
    cursor: pointer;
    margin: 2px;
    border-radius: 4px;
    transition: 0.3s;
}

.color-option-content-row-item.active {
    transform: scale(0.9);
}

.color-option-content-row-item:hover {
    opacity: 0.5;
}

@media screen and (max-width: 1200px) {
    .color-option {
        top: auto;
        bottom: 20px;
    }
}

.container {
    max-width: 1180px;
}

.h-modal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10;
    padding-top: 10vh;
    display: none;
}

.h-modal-content {
    width: 500px;
    padding: 40px 20px;
    box-shadow: 0px 2px 2px 0px #00000040;
    border-radius: 5px;
    margin: auto;
    position: relative;
    max-width: calc(100% - 30px);
    color: #fff;
    overflow: hidden;
    background: #222;
    border: 2px solid var(--def-color);
    text-align: center;

}

.h-modal-content-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--def-color);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
    transition: 0.3s;
    z-index: 1;

}

.h-modal-content-close:hover {
    transform: scale(1.1);
}

.h-modal-content-close img {
    width: 80%;
    height: 80%;
}

.h-modal .title {
    margin-bottom: 30px;
}

/*default style*/

.header {
    padding: 11px 0;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 50;
    background: #fff;
    transition: 0.3s;
}

.header.active {
    padding: 0;
    border-bottom: 1px solid var(--def-color);

}

.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: block;
}

.logo:hover {
    transform: translateY(5px);
    opacity: 0.7;
}

.logo img {
    width: 60px;
    height: 60px;
}

.menu {
    display: flex;
    align-items: center;
}

.menu__item {
    display: block;
    position: relative;
}

.menu__item+.menu__item {
    margin-left: 10px;
}

.menu__link {
    display: block;
    font-size: 12px;
    line-height: 120%;
    color: #000000;
    padding: 5px 10px;
}

.menu__link:hover:after {
    width: 100%;
    background: var(--def-color);
}

.menu__link:hover {
    color: var(--def-color);
}

.menu__link:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 50%;
    height: 1px;
    background: #C8BBB2;
    transition: 0.3s;
}

.header-phone__link {
    font-weight: bold;
    font-size: 12px;
    line-height: 120%;
    color: #000000;
}

.header-phone__link:hover {
    color: var(--def-color);
}

.h-btn {
    background: #FE3205;
    background: var(--def-color);
    border-radius: 7px;
    padding: 7px 29px;
    font-weight: bold;
    font-size: 12px;
    color: #FFFFFF;
    text-transform: uppercase;
    display: inline-block;
    border: 1px solid transparent;
    transition: 0.3s;
}

.h-btn:hover {
    border-color: var(--def-color);
    color: var(--def-color);
    background: transparent;
}

.header-bars{
    margin-left: auto;
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    background: #1B1B1B;
    transition: 0.3s;
    border: 1px solid transparent;
}
.header-bars.active{
    border-color: var(--def-color);
    transform: rotate(90deg);
}
.header-bars img{
    width: 70%;
    height: 70%;
}

.mob-menu{
    display: none;
    border-top: 2px solid var(--def-color);
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 100vh;
    background: rgba( 0,0,0,0.8 );
}
.mob-menu__inner{
    text-align: center;

}

.head {
    padding-top: 82px;
    background-image: url('../img/head-bg.webp');
    position: relative;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    background-attachment: fixed;
}

.head:hover {
    .head-block {
        background: rgba(0, 0, 0, 0.8);
    }
}

.head-block {
    margin-left: -15px;
    background: rgba(203, 203, 203, 0.8);
    width: 480px;
    max-width: 100%;
    padding: 120px;
    text-align: center;
    transition: 0.3s;
}

.head-block__img img {
    width: 100%;
    max-width: 250px;
}

.title {
    font-weight: bold;
    font-size: 36px;
    line-height: 140%;
    color: #fff;
    margin-top: 18px;
}

.about {
    position: relative;
    background-image: url('../img/about-bg.jpg');
    background-size: cover;

    background-repeat: no-repeat;
    padding: 80px 0;

    .title {
        color: #434343;
        text-shadow: 2px 2px 5px white;
    }
}
.about-object{
    position: absolute;
    right: 0;
    top: 0;
}
.slogan {
    font-weight: bold;
    font-size: 22px;
    line-height: 134%;
    color: #616161;
    max-width: 844px;
    margin-top: 30px;
    text-shadow: 0px 0px 60.0273px rgba(255, 255, 255, 0.49);
}

.about-row {
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.about-row__item {}


.about-inner {
    max-width: 515px;
    position: relative;
    padding: 100px 70px 100px 0;
}

.about-inner:after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 10000%;
    height: 100%;
    border-radius: 0px 12.0055px 12.0055px 0px;
    background: rgba(0, 0, 0, 0.7);
}

.about-inner__item {
    position: relative;
    z-index: 1;
    padding-right: 70px;
}

.about-inner__item:hover {
    .about-inner__number {
        color: var(--def-color);
        opacity: 0.3;
    }
}

.about-inner__item+.about-inner__item {
    margin-top: 80px;
}

.about-inner__text {
    font-weight: bold;
    font-size: 14px;
    line-height: 180%;
    color: #fff;

}

.about-inner__number {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 600;
    font-size: 172.879px;
    color: #FFFFFF;
    opacity: 0.1;
    transition: 0.3s;
}

.about__title {

    text-align: center;
    font-weight: bold;
    font-size: 86px;
    line-height: 120%;
    color: #FFFFFF;
    text-shadow: 0px 0px 60.0273px rgba(27, 27, 27, 0.49);
}


.advantages {
    padding: 70px 0 140px 0;
    background: #1B1B1B;

    .title {
        text-align: right;
    }
}

.advantages-row {
    display: flex;
    flex-wrap: wrap;
}

.advantages-row__item {
    width: 33%;
    margin-top: 50px;
}

.advantages-inner__img {
    height: 100px;
    transition: 0.3s;
}

.advantages-inner__img img {
    max-width: 100%;
    max-height: 100%;
}

.advantages-inner {
    max-width: 300px;
    margin: 0 auto;
    height: 100%;
    text-align: center;
    transition: 0.3s;
    color: #F1F1F1;
}

.advantages-inner:hover {
    .advantages-inner__img {
        transform: translateY(-10px);
    }

    color: var(--def-color);
}

.gallery {
    padding-bottom: 40px;
    margin-top: -80px;
}

.slider-wrapper {
    display: flex;
    gap: 20px;
}

.slider-for {
    width: 75%;
    height: 24vw;
    border-radius: 12px;
    overflow: hidden;

    .slick-list,
    .slick-track {
        height: 100%;
    }

    .slick-arrow {
        background: #818181;
        border-radius: 3.00137px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 30px;
        height: 60px;
        transition: 0.3s;
        cursor: pointer;
        top: 50%;
        color: #fff;

    }

    .slick-prev::before {
        content: "<";
        color: #fff;
    }

    .slick-next::before {
        content: ">";
        color: #fff;
    }

    .slick-prev {
        left: 15px;
    }

    .slick-next {
        right: 15px;
    }

}

.slick-dots {
    bottom: 40px;
}

.slick-dots li {
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    transition: 0.3s;
}
.slick-dots li:hover{
    opacity: 0.5;
}

.slick-dots li.slick-active {
    background: var(--def-color);
}

.slick-dots li button {
    opacity: 0;
}

.slider-for img {
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.slider-nav {
    width: 25%;

    .slick-current img {
        opacity: 0.5;
        transition: 0.3s;
    }
}


.slider-nav__item {
    height: 8vw !important;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
    background: var(--def-color);
    transition: 0.3s;
}


.slider-nav img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    margin-bottom: 15px;
}

.slick-prev,
.slick-next {
    z-index: 10;
}

.slick-prev:before,
.slick-next:before {
    color: #333;
    font-size: 30px;
}

.peculiarities {
    padding: 80px 0 160px 0;
    background: #1B1B1B;
    color: #fff;

    .title {
        margin-bottom: 60px;

    }
}

.peculiarities-row {
    display: flex;
    justify-content: space-between;
}

.peculiarities-row__item {
    width: 24%;
}

.peculiarities-inner {
    text-align: center;

}

.peculiarities-inner__title {
    font-weight: 700;
    font-size: 60px;
    margin-bottom: 20px;
}

.peculiarities-inner__text {
    line-height: 1.4;
    font-weight: 500;
}

.peculiarities-slider-container {
    position: relative;
    margin-top: -120px;
}

.peculiarities-slider {
    overflow: hidden;
}

.peculiarities-slider__item {
    border-radius: 10px;
    overflow: hidden;
    padding: 10px;
}

.peculiarities-slider__item img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 10px;

}

.interior{
    background-image: url('../img/interior-bg.jpg');
    background-size: cover;
    background-attachment: fixed;
    padding: 80px 0 0 0;
    border-top: 10px solid var(--def-color);
    .title{
        color: #616161;
    }
}
.interior-object{
    position: absolute;
    right: 0;
    top: 0;
}
.interior-row{
    margin-top: 80px;
    display: flex;
    justify-content: space-between;
}
.interior-row__item{
    width: 49%;
}
.interior__title{
    text-align: center;
    font-weight: bold;
    font-size: 60px;
    line-height: 120%;
    color: #FFFFFF;
    text-shadow: 0px 0px 60.0273px rgba(27, 27, 27, 0.49);
}

.interior-inner{
    position: relative;
    padding: 70px 0 70px 70px;
}
.interior-inner:before{
    content: "";
    background: #23B65E;
    right: auto;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 12.0055px 0 0 12.0055px;
    width: 10000%;
    height: 100%;
}
.interior-inner__item{
    position: relative;
    z-index: 1;
    align-items: center;
    padding-left: 100px;
}
.interior-inner__item+.interior-inner__item{
    margin-top: 100px;
}
.interior-inner__item:hover{
    .interior-inner__item__number{
        color: var(--def-color);
    }
}
.interior-inner__item__title{
    font-weight: bold;
    font-size: 14px;
    line-height: 150%;
    color: #fff;
    text-align: right;
}
.interior-inner__item__number{
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 600;
    font-size: 172.879px;
    color: #FFFFFF;
    opacity: 0.1;
    transition: 0.3s;
}
.interior-img{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    transform: translateY(-49%);
}
.interior-img-item{
    width: 50%;
    padding: 1%;
    transition: 0.5s;
}
.interior-img-item:hover{
    filter: grayscale(80%);
}
.interior-img-item img{
    width: 100%;
    height: 660px;
    object-fit: cover;
    border-radius: 20px;
}

.contacts{
    overflow: visible;
    margin-top: -450px;
    position: relative;
    z-index: 2;
    padding: 80px 0;
    background: #1B1B1B;
    .slogan{
        text-align: center;
        margin: 40px auto;
        color: #fff;


    }
}
.contacts-map{
    border-radius: 10px;
    overflow: hidden;
}
.contacts-map iframe{
    width: 100%;
}

.contacts-inner{
    background: linear-gradient(180deg, rgba(65, 64, 64, 0) 0%, #5C5C5C 100.05%), #7A7A7A;
    padding: 70px 50px;
    border-radius: 12px;
    color: #fff;
    text-align: center;
    margin-top: -200px;
}
.contacts-inner__slogan{
    font-weight: 700;
    font-size: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba( 255,255,255,0.2 );
}
.contacts-inner__title{
    margin: 20px 0 40px 0;
    font-weight: bold;
    font-size: 28px;
    line-height: 105%;
}
.contacts-inner-soc{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.contacts-inner-soc__item{
    display: block;
    padding: 0 2%;
}
.contacts-inner-soc__item:hover{
    .contacts-inner-soc__item__img{
        transform: translateY(-10px);
    }
    .contacts-inner-soc__item__title{
        color: var(--def-color);
    }
}

.contacts-inner-soc__item__title{
    font-weight: bold;
    font-size: 14px;
    color: #ACACAC;
    margin-top: 30px;
    transition: 0.3s;
}
.contacts-inner-soc__item__img{
    transition: 0.3s;
    display: block;
}

.feedback{
    padding: 80px 0;
}
.feedback-form{
    max-width: 310px;
}
.feedback-form__item{
    display: block;
    padding: 0;
    margin: 0;
}
.feedback-form__item:hover{
    .feedback-form__item__title{
        color: var(--def-color);
    }
    .feedback-form__item__input__item{
        border-color: var(--def-color);
    }
}
.feedback-form__item+.feedback-form__item{
    margin-top: 40px;
}
.feedback-form__item__title{
    color: #696969;
    text-align: center;
    transition: 0.3s;
}
.feedback-form__item__input__item{
    border-bottom: 1px solid #CCCCCC;
    color: #696969;
    height: 40px;
    width: 100%;
    background: transparent;
    padding: 0 10px;
    text-align: center;
    transition: 0.3s;
}
.feedback-form__item__input__item:focus{
    border-color: var(--def-color);
}
.feedback-form__sub{
    margin-top: 40px;
    .h-btn{
        width: 100%;
    }
}
.feedback-row{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.feedback-img{
    width: calc( 100% - 500px );
    border: 20px solid var(--def-color);
    border-radius: 20px;
    transform: rotate(-5deg);
    transition: 0.3s;
}
.feedback-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;

}
.feedback-img:hover{
    transform: none;
}

.footer{
    background: #1B1B1B;
    padding: 80px 0;
}

.footer__text{
    font-size: 12px;
    color: #fff;
    max-width: 600px;
}
.footer__link{
    color: var(--def-color);
}
.footer__link:hover{
    opacity: 0.5;
}

@media screen and (max-width: 1200px){
    .slider-for{
        height: 400px;
    }
    .slider-nav__item{
        height: 133px !important; 
    }
    .about-row__item{
        width: 50%;
    }
    .interior__title,
    .about__title{
        font-size: 40px;
    }
    .feedback-img{
        width: calc( 100% - 320px );
    }
}

@media screen and (max-width: 992px){
    .header__menu,
    .header-phone,
    .header__btn{
        display: none;
    }
    .header-bars{
        display: flex;
    }
    .menu{
        display: block;
    }
    .menu__link{
        font-weight: 500;
        color: #fff;
        padding: 12px 10px;
    }
    .menu__link:after{
        display: none;
    }
    .menu__item+.menu__item{
        margin-left: 0;
    }
    .header-phone__link{
        color: #fff;
        margin: 20px 0;
        display: block;
    }



    .about-row{
        flex-wrap: wrap;
    }
    .about-row__item{
        width: 100%;
    }
    .about-row__item:last-child{
        order: 0;
    }
    .about-row__item:first-child{
        order: 1;
    }
    .about__title{
        color: #222;
        margin-bottom: 40px;
    }
    .slider-wrapper{
        flex-wrap: wrap;
    }

    .slider-for, .slider-nav{
        width: 100%;
    }
    .interior-row{
        flex-wrap: wrap;
    }
    .interior-row__item{
        width: 100%;
    }
    .interior__title{
        margin-bottom: 40px;
    }
    .interior-img{
        display: none;
    }
    .contacts{
        margin-top: 0;
    }
    .interior{
        padding-bottom: 200px;
    }
}

@media screen and (max-width: 768px){
    .feedback-form{
        max-width: 100%;
        width: 100%;
    }
    .feedback-img{
        width: 100%;
        margin-top: 40px;
    }
    .peculiarities-slider__item img{
        height: 400px;
    }
    .peculiarities-row{
        flex-wrap: wrap;
    }
    .peculiarities-row__item{
        width: 50%;
    }
    .advantages-row__item{
        width: 50%;
    }
    .contacts-inner-soc__item{
        padding: 4%;
    }
}

@media screen and (max-width: 574px){
    .head-block{
        width: 100%;
        margin-left: 0;
        padding: 120px 0;
    }
    .about-inner__item{
        padding-right: 0;
    }
    .about-inner__number,
    .interior-inner__item__number{
        position: static;
        line-height: 1;
        transform: none;
        font-size: 100px;
    }
    .about-inner{
        padding: 40px 0;
        text-align: center;
    }
    .peculiarities-row__item{
        padding: 1%;
        width: 100%;
    }
    .interior-inner{
        padding: 40px 0;
        text-align: center;
    }
    .interior-inner__item{
        padding-left: 0;
    }
    .interior-inner__item__title{
        text-align: center;
    }
    .interior-inner__item+.interior-inner__item{
        margin-top: 30px;
    }
    .about-inner__item+.about-inner__item{
        margin-top: 30px;
    }
    .title{
        font-size: 32px;
    }
    .slogan{
        font-size: 18px;
    }
}