/* Fold */

.fold {
    width: 100%;

    background-color: var(--color-07);
    background: linear-gradient(225deg, rgba(22, 26, 23, 1) 0%, var(--color-07) 25%, var(--color-07) 50%, var(--color-07) 75%, rgba(22, 26, 23, 1) 100%);

    display: flex;
    flex-direction: column;
    gap: var(--space-xxxl);

    padding: calc(var(--space-xxxxl) + 124px) calc(2 * var(--space-xxxxl)) 0 calc(2 * var(--space-xxxxl));
}

.fold-top {
    display: flex;
    flex-direction: column;
    gap: var(--space-xxxl);
}

.fold-heading {
    color: var(--color-03);
}

.fold-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-l);
}

.fold-info > p {
    color: var(--color-05);
}

.fold-info-wrapper {
    display: flex;
    align-items: center;
    gap: var(--space-l);
}

.fold-info-wrapper > span {
    color: var(--color-05);

    line-height: 1;
}

.fold-bottom {
    width: 100%;

    display: flex;
    justify-content: flex-end;
}

.fold-media-outer-wrapper {
    width: calc((2 * (100% / 3)) - (var(--space-l) / 2));
    height: 300px;

    border-radius: var(--radius-l);
    
    box-shadow: 0px 0px 48px 0px rgba(10, 62, 40, 0.4);

    margin-bottom: calc(0px - var(--space-xxxxl));
}

.fold-media-inner-wrapper {
    width: 100%;
    height: 100%;

    border-radius: var(--radius-l);

    display: flex;

    overflow: hidden;
}

.fold-media {
    width: 100%;
    height: 100%;
}

/* About us */

.about-us {
    display: flex;
    flex-direction: column;
    gap: var(--space-xxxxl);

    padding: calc(2 * var(--space-xxxxl)) calc(2 * var(--space-xxxxl)) var(--space-xxxxl) calc(2 * var(--space-xxxxl));
}

.about-us._no-padding {
    padding: var(--space-xxxxl) calc(2 * var(--space-xxxxl));
}

.about-us-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-m);
}

.about-us-list {
    display: flex;
    flex-direction: column;

    padding-left: var(--space-xxxxl);
}

.about-us-list > li {
    padding-left: calc(4px + var(--space-m));

    position: relative;
}

.about-us-list > li::before {
    content: "";

    width: 4px;
    height: 4px;

    border-radius: 50%;

    background-color: var(--color-06);

    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);

    position: absolute;

    top: 50%;
    left: 0;
}

/* Staff */

.staff {
    padding-bottom: var(--space-xxxxl);

    position: relative;
}

.staff-slider {
    width: 100%;
}

.staff-member {
    display: flex;
    flex-direction: column;
    gap: var(--space-m);
}

.staff-member-img-wrapper {
    border-radius: var(--radius-l);

    display: flex;

    overflow: hidden;
}

.staff-member-img {
    width: 100%;
}

.staff-member-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-xxxs);
}

.staff-slider-scrollbar-wrapper {
    width: calc(100% - (4 * var(--space-xxxxl)));

    position: absolute;

    bottom: 0;
    left: calc(2 * var(--space-xxxxl));
}

.staff-slider-scrollbar.swiper-scrollbar {
    width: 100%;
    height: 1px;

    border-radius: var(--radius-s);

    background: none;
    background-color: rgba(10, 62, 40, 0.2);

    bottom: 0;
    left: 0;
}

.staff-slider-scrollbar.swiper-scrollbar > .swiper-scrollbar-drag {
    height: 1px;

    border-radius: var(--radius-s);

    background: none;
    background-color: var(--color-02);
}

/* Pricelist */

.pricelist {
    display: flex;
    flex-direction: column;
    gap: var(--space-xxxl);

    padding: var(--space-xxxxl) calc(2 * var(--space-xxxxl));
}

.services-wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--space-s);
}

.service {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-m);
}

.service-name {
    font-size: var(--font-size-m);
    font-weight: 400;
}

/* Advantages */

.advantages {
    display: flex;
    flex-direction: column;
    gap: var(--space-xxxl);

    padding: var(--space-xxxxl) calc(2 * var(--space-xxxxl));
}

.advantage-rows {
    display: flex;
    flex-direction: column;
    gap: var(--space-l);
}

.advantages-top {
    display: flex;
    gap: var(--space-l);
}

.advantage {
    height: 300px;

    border-radius: var(--radius-l);

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: var(--space-m);
}

.advantage._1 {
    width: calc((2 * (100% / 3)) - (var(--space-l) / 2));

    background-color: var(--color-02);

    padding: var(--space-m);
}

.advantage._1 > .advantage-top > .c-subheading,
.advantage._1 > .c-link {
    color: var(--color-03);

    line-height: 1;
}

.advantage._1 > .advantage-top > p {
    color: var(--color-03);
}

.advantage-top {
    display: flex;
    flex-direction: column;
    gap: var(--space-m);
}

.advantage._2 {
    width: calc((100% / 3) - (var(--space-l) / 2));

    overflow: hidden;
}

.advantage._2 > img {
    width: 100%;
    height: 100%;
}

.advantages-bottom {
    display: flex;
    gap: var(--space-l);
}

.advantages-bottom > .advantage {
    width: calc((100% / 3) - (var(--space-l) / 2));
}

.advantage._3 {
    overflow: hidden;
}

.advantage._3 > img {
    width: 100%;
    height: 100%;
}

.advantage._4 {
    background-color: var(--color-07);
    
    padding: var(--space-m);
}

.advantage._4 > .advantage-top > .c-subheading,
.advantage._4 > .advantage-top > p {
    color: var(--color-03);
}

.advantage._5 {
    border: 1px solid rgba(10, 62, 40, 0.2);
    
    padding: var(--space-m);
}

.advantage._5 > div {
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--space-m);
}

.advantage._5 > div > img {
    height: 80px;
}

.advantage._5 > div > span {
    font-size: 96px;

    line-height: 1;
}

/* Gallery */

.gallery {
    display: flex;
    flex-direction: column;
    gap: var(--space-xxxl);

    padding: var(--space-xxxxl) 0 0 0;

    position: relative;
}

.gallery-header {
    padding: 0 calc(2 * var(--space-xxxxl));
}

.gallery-slider {
    width: 100%;
}

.gallery-media-wrapper {
    height: 300px;

    border-radius: var(--radius-l);

    display: flex;

    overflow: hidden;
}

.gallery-media {
    width: 100%;
}

.gallery-slider-scrollbar-wrapper {
    width: calc(100% - (4 * var(--space-xxxxl)));

    position: absolute;

    bottom: 0;
    left: calc(2 * var(--space-xxxxl));
}

.gallery-slider-scrollbar.swiper-scrollbar {
    width: 100%;
    height: 1px;

    border-radius: var(--radius-s);

    background: none;
    background-color: rgba(10, 62, 40, 0.2);

    bottom: 0;
    left: 0;
}

.gallery-slider-scrollbar.swiper-scrollbar > .swiper-scrollbar-drag {
    height: 1px;

    border-radius: var(--radius-s);

    background: none;
    background-color: var(--color-02);
}

/* Testimonials */

.testimonials {
    width: 100%;

    display: flex;
    justify-content: flex-end;

    padding: 0 calc(2 * var(--space-xxxxl)) var(--space-xxxxl) calc(2 * var(--space-xxxxl));

    position: relative;

    top: calc(100% - var(--space-xxxxl));

    margin-top: calc(0px - var(--space-xxxxl) - var(--space-xxxl));
}

.testimonials-wrapper {
    width: calc((100% / 3) - (var(--space-l) / 2));

    border-radius: var(--radius-l);

    box-shadow: 0px 0px 48px 0px rgba(10, 62, 40, 0.4);

    background-color: var(--color-02);

    padding: var(--space-m);

    position: relative;

    z-index: 1;
}

.testimonial {
    height: auto;
    
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: var(--space-m);
}

.testimonial > p {
    color: var(--color-03);
}

.testimonial-bottom {
    display: flex;
    flex-direction: column;
    gap: var(--space-m);
}

.testimonial-bottom > .c-hr {
    background-color: var(--color-06);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-m);
}

.testimonial-author-profile-img-wrapper {
    width: 50px;
    height: 50px;

    border-radius: var(--radius-l);

    display: flex;

    overflow: hidden;
}

.testimonial-author-profile-img {
    width: 100%;
    height: 100%;
}

.testimonial-author-info {
    display: flex;
    flex-direction: column;
}

.testimonial-author-info > span:first-child {
    color: var(--color-03);
}

.testimonial-author-info > span:last-child {
    color: var(--color-05);
}

/* FAQ */

.faq {
    display: flex;
    flex-direction: column;
    gap: var(--space-xxxl);

    padding: var(--space-xxxxl) calc(2 * var(--space-xxxxl));
}

.faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--space-s);
}

.faq-block {
    display: flex;
    flex-direction: column;
}

.faq-question-wrapper {
    width: 100%;

    display: flex;
    align-items: center;
    gap: var(--space-m);

    cursor: pointer;
}

.faq-toggle-icon {
    height: 16px;

    transition: var(--transition-02);
    -webkit-transition: var(--transition-02);
}

.faq-toggle-icon._active {
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
}

.faq-question {
    font-size: var(--font-size-m);
    font-weight: 400;
}

.faq-answer-wrapper {
    display: none;

    margin-top: var(--space-s);
}

@media only screen and (max-width: 1280px) {
    /* Fold */

    .fold-media-outer-wrapper {
        width: 100%;
    }

    /* Advantages */

    .advantages-top {
        flex-direction: column-reverse;
    }

    .advantage {
        width: 100%;
    }

    .advantage._1 {
        width: 100%;
    }

    .advantage._2 {
        width: 100%;
    }

    .advantages-bottom {
        flex-direction: column;
    }

    .advantages-bottom > .advantage {
        width: 100%;
    }

    /* Gallery */

    .gallery-media-wrapper {
        border-radius: 0;
    }

    /* Testimonials */

    .testimonials-wrapper {
        width: 100%;
    }
}

@media only screen and (max-width: 1024px) {
    /* Fold */

    .fold {
        padding: calc(var(--space-xxxxl) + 111px) var(--space-xxxxl) 0 var(--space-xxxxl);
    }

    /* About us */

    .about-us {
        padding: calc(2 * var(--space-xxxxl)) var(--space-xxxxl) var(--space-xxxxl) var(--space-xxxxl);
    }

    .about-us._no-padding {
        padding: var(--space-xxxxl);
    }

    .about-us-list {
        padding-left: var(--space-m);
    }

    /* Staff */

    .staff-slider-scrollbar-wrapper {
        width: calc(100% - (2 * var(--space-xxxxl)));

        left: var(--space-xxxxl);
    }

    /* Pricelist */

    .pricelist {
        padding: var(--space-xxxxl);
    }

    /* Advantages */

    .advantages {
        padding: var(--space-xxxxl);
    }

    /* Gallery */

    .gallery-header {
        padding: 0 var(--space-xxxxl);
    }

    .gallery-media-wrapper {
        height: 200px;
    }

    .gallery-slider-scrollbar-wrapper {
        width: calc(100% - (2 * var(--space-xxxxl)));

        left: var(--space-xxxxl);
    }

    /* Testimonials */

    .testimonials {
        padding: 0 var(--space-xxxxl) var(--space-xxxxl) var(--space-xxxxl);
    }

    /* FAQ */

    .faq {
        padding: var(--space-xxxxl);
    }
}

@media only screen and (max-width: 768px) {
    /* Fold */
    
    .fold-media-outer-wrapper {
        height: 200px;
    }
    
    /* Pricelist */

    .service {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media only screen and (max-width: 480px) {
    /* Fold */

    .fold-info-wrapper {
        flex-direction: column-reverse;
        align-items: flex-start;
    }

    /* FAQ */

    .faq-question-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-s);
    }
}