@import url('https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,100..900;1,100..900&display=swap');
:root{
    --black: #2D251B;
    --bg_white: #FFFFFF;
    --bg_pink: #FFF7EF;
    --orange: #FA931D;
    --white: #FFFCF7;
    --border: rgba(139, 97, 45, 0.1);

    --h1: max(36px, 66rem);
    --h2: max(32px, 52rem);
    --h3: max(24px, 40rem);
    --h4: max(24px, 32rem);
    --body: max(16px, 18rem);
    --big_body: max(18px, 20rem);
    --button: max(16px, 18rem);
    --hint: max(14px, 16rem);

    --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
}
/************************* reset *************************/
html{
    height: 100%;
    margin: 0;
    padding: 0;width: 100%;
    background: var(--bg_pink);
    font-size: 0.052vw;
}
body{
    height: 100%;
    width: 100%;
    position: relative;
    margin: 0;
    padding: 0;
    color: var(--black);
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    font-family: 'Albert Sans', Arial, Helvetica, sans-serif;
    min-width: 320px;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}
h1, h2, h3, h4, p, ul, li, a, span, div, input, textarea, select, form, fieldset, button, dl, dd, dt, figure, figcaption, blockquote, caption, aside, section {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    box-sizing: border-box;
}
img {
    margin: 0;
    padding: 0;
    border-style: none;
    vertical-align: bottom;
}
input, textarea, select, button {
    font-weight: 400;
    font-family: 'Albert Sans', Arial, Helvetica, sans-serif;
    vertical-align:middle;
    border: 0;
    outline: 0;
    background: none;
}
a:hover {text-decoration: none;}
ul li {list-style: none;}
/************************* common styles *************************/
.holder {
    padding: 0 15px;
}
@media (min-width: 1025px) {
    .holder {
        max-width: 960px;
        margin: auto;
        padding: 0;
    }
}
@media (min-width: 1300px){
    .holder {
        max-width: 1200px;
    }
}
@media (min-width: 1480px){
    .holder {
        max-width: 1410px;
    }
}
.holder:after {
    display: block;
    content: '';
    clear: both;
}
.title {
    display: block;
    margin: 0 0 45px;
    font-size: 48px;
    font-weight: 700;
    line-height: 57px;
}
a {transition: all .3s linear;}
p {margin: 0 0 25px;}
p:last-child {margin: 0;}
p a, .article li a {color: var(--black);}
.center {text-align: center;}
.upper {text-transform: uppercase;}
.button-holder {text-align: center;}
.button {
    position: relative;
    display: inline-block;
    padding: 14px 40px;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    outline: 0;
    background: var(--orange);
    box-shadow: 1px 1px 5px 0 rgba(0, 0, 0, 0.16);
    transition: none;
}
@media (hover: hover){
    .button:hover {
        outline: 1px solid var(--orange);
    }
}
.button-border {
    padding: 9px 30px;
    font-size: 16px;
    color: var(--black);
    text-transform: none;
    background: transparent;
    border: 1px solid var(--orange);
    transition: all 0.3s linear;
}
@media (hover: hover){
    .button-border:hover {
        color: var(--white);
        background: var(--orange);
        outline: 0;
    }
}
.button-border:active {
    color: var(--white);
    background: var(--orange);
    outline: 0;
}
/************************* form-block *************************/
.input {
    display: block;
    width: 100%;
    height: 44px;
    padding: 0 15px;
    margin: 0 0 18px;
    font-size: 18px;
    color: var(--black);
    border-radius: 0;
    border: 1px solid rgba(90, 90, 90, 0.3);
    background: transparent;
}
.textarea {
    display: block;
    width: 100%;
    height: 170px;
    padding: 10px 15px;
    margin: 0 0 18px;
    font-size: 18px;
    color: var(--black);
    resize: vertical;
    border: 1px solid rgba(90, 90, 90, 0.3);
    background: transparent;
    border-radius: 0;
}
.input:focus, .textarea:focus {
    box-shadow: 1px 1px 5px 0 rgba(0, 0, 0, 0.16);
}
::-webkit-input-placeholder {color: rgba(45, 37, 27, 0.5);}
:-moz-placeholder {color: rgba(45, 37, 27, 0.5); opacity: 1;}
::-moz-placeholder {color: rgba(45, 37, 27, 0.5); opacity: 1;}
:-ms-input-placeholder {color: rgba(45, 37, 27, 0.5);}
.input-line {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.input-line .input {
    width: calc(50% - 8px);
}
.select-item {
    margin: 0 0 18px;
}
/************************* wrapper *************************/
#wrapper {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
    padding: 80px 0 0;
}
/************************* header *************************/
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: var(--black);
    transition: top 0.4s ease-out;
}
.header.hidden {
    top: -90px;
}
.header-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    height: 80px;
}
.header-nav {
    display: flex;
    gap: 70px;
}
.header-nav > li {
    position: relative;
}
.header-nav > li > a {
    position: relative;
    color: var(--white);
    text-decoration: none;
}
.header-nav > li > a::after {
    position: absolute;
    left: 0;
    bottom: -1px;
    content: '';
    height: 1px;
    background: var(--white);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 1s var(--ease-out-expo);
    width: 100%;
}
.header-nav > li > a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}
.header-icons {
    display: flex;
    gap: 40px;
}
.header-phone {
    position: relative;
}
.header-phone .button {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 5px;
    white-space: nowrap;
    display: none;
}
.header-phone .button::before {
    position: absolute;
    top: -7px;
    left: 0;
    right: 0;
    height: 7px;
    content: '';
}
.subnav {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 7px 0 0;
    display: none;
}
.subnav-mask {display: none;}
.subnav-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
    padding: 20px 0;
    background: var(--white);
}
.subnav-list li {
    padding: 0 12px;
}
.subnav-list li > a {
    display: block;
    padding: 10px;
    white-space: nowrap;
    color: var(--black);
    text-decoration: none;
}
.subnav-list li > a:hover {
    color: var(--white);
    background: var(--black);
}
.subnav-2 {
    position: absolute;
    top: 0;
    left: 100%;
    padding: 0 0 0 5px;
    min-height: 100%;
    display: none;
}
.subnav-2-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 20px 0;
    background: var(--white);
}
.subnav-close, .subnav-back {
    display: none;
}
@media screen and (min-width: 1024px) {
    .subnav-list > li:hover > a {
        color: var(--white);
        background: var(--black);
    }
    .header-nav > li:hover .subnav,
    .subnav-list li:hover .subnav-2 {
        display: block;
    }
    .header-phone:hover .button {
        display: block;
    }
}
@media screen and (max-width: 1299px) {
    .header-nav {
        gap: 60px;
    }
}
@media screen and (max-width: 1024px) {
    .header-nav {
        gap: 25px;
    }
}
@media screen and (max-width: 767px) {
    #wrapper {
        padding: 99px 0 0;
    }
    .header.hidden {
        top: -105px;
    }
    .header-block {
        height: 99px;
        padding: 12px 0 15px;
        flex-wrap: wrap;
        align-items: center;
        gap: 16px 0;
    }
    .header-logo img {
        width: 100px;
    }
    .header-nav {
        width: 100%;
        order: 5;
        gap: 0;
        justify-content: space-between;
    }
    .header-nav li {
        font-size: 16px;
        line-height: 22px;
    }
    .subnav {
        position: fixed;
        top: 0;
        bottom: 0;
        left: 100%;
        z-index: 600;
        width: 100%;
        padding: 99px 0 20px;
        transform: none;
        display: block;
        transition: all 0.5s ease-in-out;
    }
    .subnav.vis {
        left: 0;
    }
    .subnav-mask {
        display: block;
        position: absolute;
        inset: 0;
        backdrop-filter: blur(7px);
        background: rgba(68, 48, 24, 0.7);
    }
    .subnav-list li {
        padding: 0 15px;
    }
    .subnav-close {
        display: block;
        position: absolute;
        top: 64px;
        right: 15px;
    }
    .subnav-close img {display: block;}
    .subnav-list {
        left: 0;
        transition: all 0.5s ease-in-out;
    }
    .subnav-list, .subnav-2 {
        width: 100%;
    }
    .subnav-2.vis {
        display: block;
        padding: 0;
    }
    .subnav-list.move {
        left: -100%;
    }
    .subnav-back {
        display: block;
        position: absolute;
        top: -35px;
        left: 15px;
    }
    .subnav-back img {display: block;}
    .header-phone-button.vis {
        display: block;
    }
    body {
        font-size: 16px;
        line-height: 140%;
    }
}

/************************* banner *************************/
.banner {
    position: relative;
    margin: -80px 0 220px;
}
.banner-slider {
    position: relative;
    clip-path: polygon(0% 0%, 100% 0%, 100% 92%, 50% 100%, 0 92%);
}
.banner-slider::after {
    position: absolute;
    inset: 0;
    content: '';
    background: rgba(68, 48, 24, 0.7);
}
.banner-slide img {
    width: 100%;
    min-height: 800px;
    object-fit: cover;
}
.banner-main {
    position: absolute;
    inset: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0 5%;
    color: var(--white);
}
.banner-main .holder {
    width: 100%;
}
.banner-main h1 {
    max-width: 690px;
    margin: 0 0 15px;
}
.banner-text {
    max-width: 570px;
    margin: 0 0 30px;
    font-weight: 600;
    font-size: 22px;
    line-height: 130%;
}
@media screen and (max-width: 1479px) {
    .banner {
        margin: -80px 0 160px;
    }
}
@media screen and (max-width: 1299px) {

}
@media screen and (max-width: 1024px) {
    .banner {
        margin: -80px 0 120px;
    }
    .banner-slider {
        clip-path: polygon(0% 0%, 100% 0%, 100% 94%, 50% 100%, 0 94%);
    }
    .banner-slide img {
        min-height: 768px;
    }
    .banner-main h1 {
        max-width: 570px;
        margin: 0 0 25px;
    }
    .banner-text {
        margin: 0 0 50px;
    }
}
@media screen and (max-width: 767px) {
    .banner {
        margin: -99px 0 100px;
    }
    .banner-slider {
        clip-path: polygon(0% 0%, 100% 0%, 100% 97%, 50% 100%, 0 97%);
    }
    .banner-slide img {
        min-height: 566px;
    }
    .banner-main {
        padding: 60px 0 0;
    }
    .banner-main h1 {
        max-width: none;
        margin: 0 0 15px;
    }
    .banner-text {
        max-width: none;
        margin: 0 0 40px;
        font-weight: 400;
        font-size: 16px;
        line-height: 120%;
    }
    .banner-main .button {
        width: 100%;
    }
}

/************************* project *************************/
.project {
    padding: 0 0 220px;
}
.project h2 {
    margin: 0 0 70px;
}
.project-block {
    display: flex;
    justify-content: space-between;
}
.project-side {
    width: 210px;
    min-width: 210px;
}
.project-tabs {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 9px 4px;
    border: 1px solid rgba(139, 97, 45, 0.1);
}
.project-tabs-link {
    padding: 10px;
    color: var(--black);
    text-decoration: none;
}
.project-tabs-link.active,
.project-tabs-link:hover {
    color: var(--white);
    background: var(--black);
}
.project-content {
    width: calc(100% - 240px);
}
.project-tab {
    position: relative;
    display: none;
}
.project-tab.vis {
    display: block;
}
.project-slider {
    margin: 0 -15px;
}
.project-slide {
    padding: 0 15px;
}
.project-arrows {
    position: absolute;
    top: calc(408px - 36px);
    left: -127px;
    display: flex;
    gap: 20px;
}
.project-arrow {
    position: relative;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--black);
    border-radius: 50%;
    transition: all 0.3s linear;
}
.project-arrow path {
    fill: var(--black);
    transition: all 0.3s linear;
}
@media (hover: hover){
    .project-arrow:hover {
        background: var(--black);
    }
    .project-arrow:hover path {
        fill: var(--white);
    }
}
.project-arrow:active {
    background: var(--black);
}
.project-arrow:active path {
    fill: var(--orange);
}
.project-prev svg {
    transform: scale(-1, 1);
}
.project-photo {
    display: flex;
    justify-content: space-between;
    margin: 0 0 30px;
}
.project-photo-item {
    position: relative;
    width: calc(50% - 15px);
}
.project-photo-item img {
    width: 100%;
    height: 408px;
    object-fit: cover;
}
.project-photo-label {
    position: absolute;
    top: 20px;
    left: 0;
    width: 100px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(7px);
}
.project-photo-item:first-child .project-photo-label {
    left: auto;
    right: 0;
}
.project-bottom {
    display: flex;
    align-items: center;
}
.project-text {
    flex: 1;
}
.project-button {
    width: max(44%, 320px);
    min-width: max(44%, 320px);
    text-align: center;
}
@media screen and (max-width: 1299px) {
    .project-photo-item img {
        height: 300px;
    }
    .project-arrows {
        top: calc(300px - 36px);
    }
}
@media screen and (max-width: 1024px) {
    .project {
        padding: 0 0 120px;
    }
    .project h2 {
        margin: 0 0 50px;
    }
    .project-block {
        display: block;
    }
    .project-side {
        width: auto;
        min-width: 1px;
        margin: 0 0 30px;
    }
    .project-tabs {
        flex-direction: row;
        gap: 10px;
        padding: 9px;
        border: 1px solid rgba(139, 97, 45, 0.1);
    }
    .project-tabs-link {
        flex: 1;
        padding: 9px;
        border: 1px solid rgba(139, 97, 45, 0.1);
    }
    .project-tabs-link.active,
    .project-tabs-link:hover {
        border-color: var(--black);
    }
    .project-content {
        width: auto;
    }
    .project-photo {
        justify-content: flex-start;
        gap: 30px;
        overflow-x: auto;
    }
    .project-photo-item {
        width: 546px;
        min-width: 546px;
    }
    .project-photo-item img {
        height: 390px;
    }
    .project-bottom {
        display: block;
        padding: 0 190px 0 0;
    }
    .project-text {
        margin: 0 0 30px;
        text-align: justify;
    }
    .project-button {
        width: auto;
        min-width: 1px;
        text-align: left;
    }
    .project-arrows {
        top: 420px;
        left: auto;
        right: 0;
    }
}
@media screen and (max-width: 767px) {
    .project {
        padding: 0 0 100px;
    }
    .project h2 {
        margin: 0 0 30px;
    }
    .project-side {
        margin: 0 0 20px;
    }
    .project-tabs {
        flex-direction: column;
    }
    .project-photo {
        flex-direction: column;
        gap: 10px;
        overflow: hidden;
        margin: 0 0 56px;
    }
    .project-photo-item {
        width: auto;
        min-width: 1px;
    }
    .project-photo-item img {
        height: 213px;
    }
    .project-photo-item:first-child .project-photo-label {
        left: 0;
        right: auto;
    }
    .project-bottom {
        padding: 0;
    }
    .project-button .button {
        width: 100%;
    }
    .project-arrows {
        top: 446px;
    }
}

/************************* num *************************/
.num {
    padding: 0 0 220px;
}
.num-block {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.num-item {
    display: flex;
    align-items: center;
    gap: 20px;
}
.num-value {
    overflow: hidden;
    height: 74px;
    margin: 0 0 5px;
}
.num-wrap {
    font-weight: 600;
    font-size: 120px;
    line-height: 83%;
}
.num-title {
    font-weight: 700;
    font-size: 24px;
    line-height: 140%;
    text-transform: uppercase;
    text-align: center;
    opacity: 0.75;
}
.num-text {
    width: 190px;
}
@media screen and (max-width: 1479px) {
    .num {
        padding: 0 0 160px;
    }
    .num-block {
        justify-content: center;
        gap: 50px 80px;
    }
}
@media screen and (max-width: 1024px) {
    .num {
        padding: 0 0 120px;
    }
    .num-block {
        flex-direction: column;
        gap: 80px 0;
    }
    .num-item:nth-child(1){order: 1;}
    .num-item:nth-child(2){order: 3;}
    .num-item:nth-child(3){order: 2;}
    .num-left {
        width: 55%;
        display: flex;
        justify-content: flex-end;
    }
}
@media screen and (max-width: 767px) {
    .num {
        padding: 0 0 100px;
    }
    .num-block {
        gap: 30px 0;
    }
    .num-item {
        flex-direction: column;
        gap: 0;
        text-align: center;
    }
    .num-left {
        width: auto;
        display: block;
    }
    .num-text {
        width: auto;
        max-width: 290px;
        margin: 0 auto;
    }
}

/************************* cert *************************/
.cert {
    padding: 220px 0;
    margin: 0 0 220px;
    color: var(--white);
    background: url(../images/cert-bg.jpg) 50% 50% no-repeat;
    background-size: cover;
}
.cert h2 {
    margin: 0 0 70px;
}
.cert-slide {
    width: 482px;
    transform: scale(0.7);
    filter: blur(7px);
    transition: all 0.3s linear;
}
.cert-slide.slick-current {
    position: relative;
    z-index: 20;
    transform: scale(1);
    filter: blur(0px);
}
.cert-wrap {
    margin: 0 -100px;
}
.cert-wrap img {
    width: 100%;
}
.cert-arrows {
    display: flex;
    gap: 20px;
    max-width: 916px;
    margin: -36px auto 0;
}
.cert-arrow {
    position: relative;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--white);
    border-radius: 50%;
    transition: all 0.3s linear;
}
.cert-arrow path {
    fill: var(--white);
    transition: all 0.3s linear;
}
@media (hover: hover){
    .cert-arrow:hover {
        background: var(--white);
    }
    .cert-arrow:hover path {
        fill: var(--black);
    }
}
.cert-arrow:active {
    background: var(--white);
}
.cert-arrow:active path {
    fill: var(--orange);
}
.cert-prev svg {
    transform: scale(-1, 1);
}
@media screen and (max-width: 1479px) {
    .cert {
        padding: 160px 0;
    }
}
@media screen and (max-width: 1299px) {
    .cert {
        padding: 140px 0;
    }
}
@media screen and (max-width: 1024px) {
    .cert {
        padding: 60px 0 90px;
        margin: 0 0 120px;
    }
    .cert h2 {
        margin: 0 0 50px;
    }
    .cert-slider {
        margin: 0 -15px;
    }
    .cert-arrows {display: none;}
    .cert-slide {
        width: 506px;
    }
    .cert-wrap {
        margin: 0 -50px;
    }
}
@media screen and (max-width: 767px) {
    .cert {
        padding: 50px 0 70px;
        margin: 0 0 100px;
    }
    .cert h2 {
        margin: 0 0 30px;
    }
    .cert-slide {
        width: calc(100vw - 100px);
    }
    .cert-wrap {
        width: calc(100vw - 30px);
        margin: 0 -35px;
    }
}

/************************* about *************************/
.about {
    padding: 0 0 220px;
}
.about h2 {
    margin: 0 0 70px;
}
.about-block {
    display: flex;
    flex-direction: row-reverse;
}
.about-content {
    width: 40.5%;
}
.about-img {
    padding: 0 0 0 30px;
}
.about-img h3 {
    display: none;
}
.about-img img {
    width: 100%;
}
.about-content h3 {
    margin: 0 0 20px;
}
.about-text {
    margin: 0 0 50px;
}
.about-num {
    display: flex;
    justify-content: space-between;
    margin: 0 0 50px;
}
.about-num-item {
    text-align: center;
}
.about-num-wrap {
    overflow: hidden;
    height: 35px;
    margin: 0 0 4px;
}
.about-num-value {
    font-weight: 600;
    font-size: 55px;
    line-height: 44px;
}
.about-num-text {
    font-size: 14px;
    line-height: 17px;
}
@media screen and (max-width: 1299px) {
    .about-content h3 {display: none;}
    .about-block {display: block;}
    .about-img {
        padding: 0 0 30px;
    }
    .about-img h3 {
        display: block;
        margin: 0 0 20px;
    }
    .about-content {
        width: auto;
        display: flex;
        flex-direction: column;
    }
    .about-content .button {
        margin-right: auto;
        order: 3;
    }
    .about-text {
        order: 2;
        margin: 0 0 40px;
    }
    .about-num {
        order: 1;
        justify-content: center;
        flex-wrap: wrap;
        gap: 40px 80px;
        margin: 0 0 40px;
    }
}
@media screen and (max-width: 1024px) {
    .about {
        padding: 0 0 120px;
    }
    .about h2 {
        margin: 0 0 50px;
    }
    .about-img-wrap {
        margin: 0 -15px;
    }
    .about-num {
        margin: 0 0 20px;
    }
    .about-text {
        margin: 0 0 30px;
    }
}
@media screen and (max-width: 767px) {
    .about {
        padding: 0 0 100px;
    }
    .about h2 {
        margin: 0 0 30px;
    }
    .about-num {
        gap: 16px 40px;
    }

    .about .button {
        width: 100%;
    }
}

/************************* review *************************/
.review {
    padding: 0 0 220px;
}
.review h2 {
    margin: 0 0 70px;
}
.review-slide {
    width: 460px;
    transform: scale(0.8);
    filter: blur(7px);
    transition: all 0.3s linear;
}
.review-slide.slick-current {
    position: relative;
    z-index: 20;
    transform: scale(1);
    filter: blur(0px);
}
.slick-current + .review-slide {
    position: relative;
    z-index: 10;
}
.review-item {
    width: 700px;
    margin: 0 -120px;
    padding: 60px 60px 116px;
    background: var(--white);
}
.review-top {
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 0 0 25px;
}
.review-ava {
    width: 68px;
    min-width: 68px;
}
.review-ava img {
    width: 100%;
    border-radius: 50%;
}
.review-date {
    font-size: 14px;
    line-height: 17px;
}
.review-text {
    text-align: justify;
}
.review-arrows {
    display: flex;
    gap: 20px;
    max-width: 580px;
    margin: -86px auto 0;
}
.review-arrow {
    position: relative;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--black);
    border-radius: 50%;
    transition: all 0.3s linear;
}
.review-arrow path {
    fill: var(--black);
    transition: all 0.3s linear;
}
@media (hover: hover){
    .review-arrow:hover {
        background: var(--black);
    }
    .review-arrow:hover path {
        fill: var(--white);
    }
}
.review-arrow:active {
    background: var(--black);
}
.review-arrow:active path {
    fill: var(--orange);
}
.review-prev svg {
    transform: scale(-1, 1);
}
@media screen and (max-width: 1299px) {
    .review-slider {
        margin: 0 calc((100% - 100vw)/2);
    }
}
@media screen and (max-width: 1024px) {
    .review {
        padding: 0 0 120px;
    }
    .review h2 {
        margin: 0 0 50px;
    }
    .review-slider {
        margin: 0 -15px;
    }
    .review-slide {
        width: 446px;
    }
    .review-item {
        width: 546px;
        margin: 0 -50px;
        padding: 50px 30px 114px;
    }
    .review-arrows {
        max-width: 486px;
        margin: -66px auto 0;
    }
}
@media screen and (max-width: 767px) {
    .review {
        padding: 0 0 100px;
    }
    .review h2 {
        margin: 0 0 30px;
    }
    .review-slide {
        width: calc(100vw - 100px);
    }
    .review-item {
        width: calc(100vw - 30px);
        margin: 0 -35px;
        padding: 15px 15px 90px;
    }
    .review-top {
        gap: 20px;
        margin: 0 0 20px;
    }
    .review-arrows {
        max-width: none;
        padding: 0 15px;
        margin: -51px 0 0;
    }
}

/************************* main-form *************************/
.main-form {
    padding: 0 0 220px;
}
@media screen and (max-width: 1024px) {
    .main-form {
        padding: 0 0 120px;
    }
}
@media screen and (max-width: 767px) {
    .main-form {
        padding: 0 0 100px;
    }
}

/************************* contacts *************************/
.contacts {
    padding: 0 0 165px;
}
.contacts h2 {
    margin: 0 0 70px;
}
.contacts-block {
    display: flex;
}
.contacts-side {
    width: 420px;
    min-width: 420px;
    margin: 0 30px 0 0;
}
.contacts-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0 0 35px;
}
.contacts-icon {
    width: 40px;
    min-width: 40px;
}
.contacts-text a {
    position: relative;
    color: var(--black);
    text-decoration: none;
}
.contacts-text a::after {
    position: absolute;
    left: 0;
    bottom: -1px;
    content: '';
    height: 1px;
    background: var(--black);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 1s var(--ease-out-expo);
    width: 100%;
}
.contacts-text a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}
.contacts-map {
    flex: 1;
    height: 517px;
}
.contacts-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}
@media screen and (max-width: 1299px) {
    .contacts-side {
        width: 320px;
        min-width: 320px;
        margin: 0 30px 0 0;
    }
}
@media screen and (max-width: 1024px) {
    .contacts {
        padding: 0 0 65px;
    }
    .contacts h2 {
        margin: 0 0 50px;
    }
    .contacts-block {
        display: block;
    }
    .contacts-side {
        width: auto;
        min-width: 1px;
        margin: 0;
        padding: 0 0 5px;
    }
    .contacts-item {
        margin: 0 0 30px;
    }
    .contacts-map {
        height: 397px;
    }
}
@media screen and (max-width: 767px) {
    .contacts {
        padding: 100px 0 45px;
    }
    .contacts h2 {
        margin: 0 0 30px;
    }
    .contacts-side {
        padding: 0 0 10px;
    }
    .contacts-item {
        margin: 0 0 20px;
    }
    .contacts-map {
        height: 165px;
    }
}

/************************* serv page *************************/
.serv {
    padding: 0 0 80px;
}
.serv-wrap {
    position: relative;
    padding: 50px 0 35px;
    background: #eae3db;
}
.serv-wrap::after {
    position: absolute;
    bottom: -79px;
    left: 50%;
    transform: translateX(-50%);
    content: '';
    width: min(1920px, 3000px);
    height: 80px;
    background: #eae3db;
    clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
}
.serv-tabs {
    display: flex;
    gap: 5px;
    padding: 5px;
    margin: 0 0 30px;
    border: 1px solid var(--border);
}
.serv-tabs-item {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    padding: 10px 5px;
    font-size: 18px;
    line-height: 140%;
    color: var(--black);
    text-decoration: none;
    text-transform: uppercase;
}
.serv-tabs-item::before {
    content: '';
    width: 16px;
    height: 16px;
    margin-top: 3px;
    border-radius: 50%;
    background: var(--black);
    transition: all 0.3s linear;
}
.serv-tabs-item.active,
.serv-tabs-item:hover {
    color: var(--white);
    background: var(--black);
}
.serv-tabs-item.active::before,
.serv-tabs-item:hover::before {
    background: var(--white);
}
.serv-tab {
    display: none;
}
.serv-tab.vis {
    display: block;
}
.serv-main {
    display: flex;
}
.serv-side {
    width: 330px;
    min-width: 330px;
    margin: 0 30px 0 0;
}
.serv-links {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 15px 10px;
    border: 1px solid var(--border);
}
.serv-link {
    padding: 10px;
    color: var(--black);
    text-decoration: none;
}
.serv-link.active,
.serv-link:hover {
    color: var(--white);
    background: var(--black);
}
.serv-content {
    flex: 1;
}
.serv-box {
    display: none;
}
.serv-box.vis {
    display: block;
}
.serv-gallery {
    display: flex;
    margin: 0 0 30px;
}
.serv-photo {
    flex: 1;
    height: 540px;
}
.serv-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.serv-thumbs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 210px;
    min-width: 210px;
    margin: 0 0 0 30px;
    overflow-y: auto;
    height: 540px;
}
.serv-thumbs::-webkit-scrollbar-track {
    opacity: 0.75;
    background-color: rgba(255, 255, 255, 0.75);
}
.serv-thumbs::-webkit-scrollbar {
    width: 5px;
    background-color: rgba(255, 255, 255, 0.75);
}
.serv-thumbs::-webkit-scrollbar-thumb {
    background-color: rgba(45, 37, 27, 0.75);
}
.serv-thumbs-item {
    margin: 0 15px 0 0;

}
.serv-thumbs-item img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}
.serv-bottom {
    display: flex;
    align-items: center;
}
.serv-info {
    flex: 1;
}
.serv-info h3 {
    margin: 0 0 16px;
}
.serv-info p {
    margin: 0 0 10px;
}
.serv-info p:last-child {
    margin: 0;
}
.serv-button {
    width: 35%;
    min-width: max(35%, 300px);
    text-align: center;
}
.serv-title-mob {display: none;}

@media screen and (max-width: 1479px) {
    .serv-photo {
        height: 480px;
    }
    .serv-thumbs {
        width: 180px;
        min-width: 180px;
        height: 480px;
    }
    .serv-thumbs-item img {
        height: 120px;
    }
}
@media screen and (max-width: 1299px) {
    .serv-photo {
        height: 360px;
    }
    .serv-thumbs {
        width: 120px;
        min-width: 120px;
        height: 360px;
        margin: 0 0 0 20px;
    }
    .serv-thumbs-item img {
        height: 75px;
    }
    .serv-bottom {
        display: block;
    }
    .serv-button {
        width: auto;
        min-width: 1px;
        padding: 30px 0 0;
        text-align: left;
    }
}
@media screen and (max-width: 1024px) {
    .serv {
        padding: 0 0 47px;
    }
    .serv-wrap {
        position: relative;
        padding: 50px 0 20px;
    }
    .serv-wrap::after {
        bottom: -47px;
        width: 1100;
        height: 48px;
    }
    .serv-main {
        position: relative;
        display: block;
    }
    .serv-photo {
        height: 400px;
    }
    .serv-thumbs {
        width: 155px;
        min-width: 155px;
        height: 400px;
        margin: 0 0 0 10px;
    }
    .serv-thumbs-item img {
        height: 100px;
    }
    .serv-side {
        position: absolute;
        top: 420px;
        left: 0;
    }
    .serv-info {
        margin: 0 0 0 370px;
        min-height: 270px;
    }
    .serv-button {
        text-align: center;
    }
    .serv-tabs {
        margin: 0 0 20px;
    }
    .serv-tabs-item {align-items: center;}
    .serv-tabs-item::before {display: none;}
}
@media screen and (max-width: 768px) {
    .serv-photo {
        height: 364px;
    }
    .serv-thumbs {
        height: 364px;
    }
    .serv-side {
        position: absolute;
        top: 384px;
        left: 0;
    }
}
@media screen and (max-width: 767px) {
    .serv-side {display: none;}
    .serv-tabs {
        flex-direction: column;
        gap: 0;
        padding: 1px 0 0;
        margin: 0 0 15px;
        border: 0;
    }
    .serv-tabs-item {
        padding: 9px 5px;
        margin: -1px 0 0;
        border: 1px solid var(--border);
    }
    .serv-tabs-item.active,
    .serv-tabs-item:hover {
        border-color: var(--black);
    }
    .serv-tab-all {
        margin: 0 -15px;
    }
    .serv-gallery {
        display: block;
        margin: 0 0 20px;
    }
    .serv-photo {
        height: 360px;
    }
    .serv-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .serv-thumbs {
        display: flex;
        flex-direction: row;
        gap: 14px;
        width: auto;
        min-width: 1px;
        margin: 10px 0 0;
        overflow-y: hidden;
        overflow-x: auto;
        height: auto;
    }
    .serv-thumbs::-webkit-scrollbar {
        height: 5px;
    }
    .serv-thumbs-item {
        width: 128px;
        min-width: 128px;
        margin: 0 0 5px;
    }
    .serv-thumbs-item img {
        height: 96px;
    }
    .serv-bottom {
        padding: 0 15px;
    }
    .serv-info {
        min-height: 1px;
        margin: 0;
    }
    .serv-info h3 {display: none;}
    .serv-button .button {width: 100%;}
    .serv-box-all {
        margin: 0 -5px;
    }
    .serv-box {
        padding: 0 5px;
    }
    .serv-title-mob {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 45px;
        color: var(--white);
        text-align: center;
        background: var(--black);
    }
    .serv-box-all .slick-arrow {
        position: absolute;
        top: 0;
        z-index: 10;
        width: 15px;
        height: 45px;
        font-size: 0;
        background: url(../images/arrow.svg) 50% 50% no-repeat;
    }
    .slick-prev {
        left: 15px;
        transform: scale(-1, 1);
    }
    .slick-next {
        right: 15px;
    }
}
@media screen and (max-width: 576px) {
    .serv {
        padding: 0 0 25px;
    }
    .serv-wrap {
        position: relative;
        padding: 15px 0 30px;
    }
    .serv-wrap::after {
        bottom: -25px;
        width: 100%;
        height: 26px;
    }
    .serv-photo {
        height: 220px;
    }
}



/************************* form-section *************************/
.form-section {
    padding: 220px 0 145px;
}
.form-block h2 {
    margin: 0 0 70px;
}
.form-line {
    display: flex;
    align-items: center;
    gap: 7px 50px;
    margin: 0 0 50px;
}
.form-line h3 {
    margin: 0;
}
.form-main {
    display: flex;
    flex-direction: row-reverse;
}
.form-side {
    width: 450px;
    min-width: 450px;
    margin: 0 0 0 30px;
}
.form-content {
    flex: 1;
    position: relative;
}
.form-text {
    padding: 0 0 70px;
}
.form-content .form-button {
    position: absolute;
    left: 100%;
    bottom: 18px;
    margin-left: 30px;
}
.form-content .button {
    white-space: nowrap;
}
@media screen and (max-width: 1299px) {
    .form-side {
        width: 380px;
        min-width: 380px;
    }
}
@media screen and (max-width: 1024px) {
    .form-section {
        padding: 120px 0 65px;
    }
    .form-block h2 {
        margin: 0 0 50px;
    }
    .form-line {
        gap: 7px 40px;
    }
    .form-line h3 {
        font-weight: 500;
        font-size: 18px;
    }
    .form-main {
        display: block;
    }
    .form-side {
        width: auto;
        min-width: 1px;
        margin: 0;
    }
    .form-text {
        padding: 0 0 40px;
    }
    .form-content .form-button {
        position: relative;
        left: auto;
        bottom: auto;
        margin-left: 0px;
        padding: 22px 0 0;
    }
    .form-content .button {
        min-width: 260px;
    }
}
@media screen and (max-width: 767px) {
    .form-section {
        padding: 100px 0 45px;
    }
    .form-block h2 {
        margin: 0 0 30px;
    }
    .form-line {
        align-items: flex-start;
        flex-direction: column;
        margin: 0 0 30px;
    }
    .form-line h3 {
        max-width: 220px;
    }
    .form-line .button {
        width: 100%;
    }
    .form-text {
        padding: 0 0 30px;
    }
    .input, .textarea, .select-item {margin: 0 0 15px;}
    .input-line .input {
        width: 100%;
    }
    .form-content .form-button {
        padding: 15px 0 0;
    }
    .form-content .button {
        width: 100%;
    }
}

/************************* article *************************/
.article-section {
    padding: 50px 0 15px;
}
.article {
    text-align: center;
}
h1 {
    font-weight: 700;
    font-size: 50px;
    line-height: 120%;
}
h2 {
    font-weight: 700;
    font-size: 40px;
    line-height: 120%;
    text-transform: uppercase;
}
h3 {
    font-weight: 700;
    font-size: 24px;
    line-height: 140%;
    text-transform: uppercase;
}
.article h1 {
    margin: 0 0 70px;
}
.article h2 {
    padding: 80px 0 0;
    margin: 0 0 37px;
}
.article h2:first-child,
.article h1 + h2 {
    padding: 0;
}
.article h3 {
    padding: 26px 0 0;
}
.article h3:first-child,
.article h2 + h3 {
    padding: 0;
}
.article p {
    margin: 0 0 10px;
}
.article p:last-child {
    margin: 0;
}
.article ul {
    display: inline-flex;
    flex-direction: column;
    gap: 10px;
    padding: 0 0 0 24px;
    margin: 0 0 10px;
}
.article li {
    list-style-type: disc;
    text-align: left;
}
@media screen and (max-width: 1024px) {
    .article-section {
        padding: 50px 0 65px;
    }
    .article h1 {
        margin: 0 0 40px;
    }
    .article h2 {
        padding: 65px 0 0;
        margin: 0 0 20px;
    }
    .article h3 {
        padding: 17px 0 0;
    }
}
@media screen and (max-width: 767px) {
    h1 {
        font-size: 34px;
        line-height: 115%;
    }
    h2 {
        font-weight: 600;
        font-size: 30px;
        line-height: 120%;
    }
    h3 {
        font-weight: 500;
        font-size: 18px;
        line-height: 140%;
    }
    .article-section {
        padding: 30px 0 45px;
    }
    .article h1 {
        margin: 0 0 30px;
    }
    .article h2 {
        padding: 20px 0 0;
    }
    .article h3 {
        padding: 13px 0 0;
    }
}

/************************* footer *************************/
.footer {
    padding: 55px 0 0;
    margin: auto 0 0;
}
.footer-up {
    position: absolute;
    top: -55px;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border: 2px solid var(--black);
    border-radius: 50%;
}
.footer-up path {
    fill: var(--black);
    transition: all 0.3s linear;
}
@media (hover: hover){
    .footer-up:hover {
        background: var(--black);
    }
    .footer-up:hover path {
        fill: var(--white);
    }
}
.footer-up:active {
    background: var(--black);
}
.footer-up:active path {
    fill: var(--orange);
}
.footer-wrap {
    overflow: hidden;
    position: relative;
    padding: 120px 0 30px;
    color: var(--white);
    background: url(../images/footer-bg.jpg) 50% 50% no-repeat;
    background-size: cover;
    clip-path: polygon(0% 0%, 35% 0%, 100% 20%, 100% 100%, 0 100%);
}
.footer-wrap::before {
    position: absolute;
    inset: 0;
    content: '';
    background: rgba(45, 37, 27, 0.85);
    backdrop-filter: blur(4px);
}
.footer .holder {
    position: relative;
}
.footer-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 50px;
}
.footer-nav {
    display: flex;
    gap: 70px;
}
.footer-nav a {
    position: relative;
    color: var(--white);
    text-decoration: none;
}
.footer-nav a::after {
    position: absolute;
    left: 0;
    bottom: -1px;
    content: '';
    height: 1px;
    background: var(--white);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 1s var(--ease-out-expo);
    width: 100%;
}
.footer-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}
.webs {
    display: flex;
    gap: 20px;
}
.web-item svg {
    display: block;
}
.web-item path {
    fill: var(--white);
    transition: all 0.3s linear;
}
@media (hover: hover){
    .web-item:hover path {
        fill: var(--orange);
    }
}
.web-item:active path {
    fill: var(--orange);
}
.footer-contacts {
    max-width: 260px;
    margin: 0 0 113px;
}
.footer-contacts a {
    position: relative;
    color: var(--white);
    text-decoration: none;
}
.footer-contacts a::after {
    position: absolute;
    left: 0;
    bottom: -1px;
    content: '';
    height: 1px;
    background: var(--white);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 1s var(--ease-out-expo);
    width: 100%;
}
.footer-contacts a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}
.footer-copy {
    font-size: 14px;
    line-height: 120%;
    text-align: center;
}
.footer-copy a {
    position: relative;
    color: var(--white);
    text-decoration: none;
}
.footer-copy a::after {
    position: absolute;
    left: 0;
    bottom: -1px;
    content: '';
    height: 1px;
    background: var(--white);
    transform: scaleX(1);
    transform-origin: left;
    transition: transform 1s var(--ease-out-expo);
    width: 100%;
}
.footer-copy a:hover::after {
    transform: scaleX(0);
    transform-origin: right;
}
@media screen and (max-width: 1479px) {
    .footer-wrap {
        padding: 100px 0 30px;
        clip-path: polygon(0% 0%, 35% 0%, 100% 13%, 100% 100%, 0 100%);
    }
}
@media screen and (max-width: 1024px) {
    .footer-wrap {
        padding: 50px 0 30px;
        clip-path: polygon(0% 0%, 35% 0%, 100% 25px, 100% 100%, 0 100%);
    }
    .footer-line {
        margin: 0 0 40px;
    }
    .footer-contacts {
        margin: 0 0 68px;
    }
    .footer-nav {
        gap: 35px;
    }
    .footer-up {
        right: 15px;
    }
}
@media screen and (max-width: 767px) {
    .footer-wrap {
        padding: 30px 0 10px;
        clip-path: polygon(0% 0%, 60% 0%, 100% 15px, 100% 100%, 0 100%);
    }
    .footer-line {
        flex-wrap: wrap;
        margin: 0 0 34px;
    }
    .footer-logo img {
        width: 100px;
    }
    .footer-nav {
        width: 100%;
        order: 5;
        gap: 0;
        padding: 20px 0 0;
        justify-content: space-between;
    }
    .footer-nav li {
        font-size: 16px;
        line-height: 22px;
    }
    .footer-contacts {
        max-width: none;
        margin: 0 0 14px;
        font-size: 14px;
        line-height: 17px;
        text-align: center;
    }
    .footer-copy {
        max-width: 220px;
        margin: 0 auto;
    }
}

/************************* success *************************/

.alert {
	background: rgba(45, 37, 27, .75);
	position: fixed;
	display: flex;
	align-items: center;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	z-index: 1000;
}

.alert-holder {
	gap: 20px;
	padding: 50px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	justify-content: center;
	width: 100%;
	background: var(--bg_white);
}

.alert-holder h2 {
	font-size: 24px;
}

.alert-button {
	padding: 10px 20px;
	background: var(--bg_pink);
}
