/* Fold */

.fold {
    width: 100%;
    min-height: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: calc(2 * var(--space-xl));

    padding: var(--space-l);

    position: relative;
}

.fold__body {
    width: 50%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
}

.fold__heading-tag {
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: var(--radius-l);

	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);

	background: rgba(255, 255, 255, 0.14);

    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-s);

	padding: var(--space-xs) var(--space-s);
}

.fold__heading-tag-icon {
    height: 16px;
}

.fold__heading-tag-text {
    font-size: var(--font-size-s);
}

.fold__heading {
    text-align: center;
}

.fold__p {
    text-align: center;
}

.fold__btn-wrapper {
    width: 100%;
    
    display: flex;
    justify-content: center;
}

.fold__contacts {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xs);
}

/* About us */

.about-us {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);

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

.about-us__header {
    width: 100%;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.about-us__heading-wrapper {
    flex: 1;
}

.about-us__body {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.about-us__body > p {
    flex: 1;
    grid-column: 2;
}

/* Services */

.services {
    width: 100%;

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

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

.service {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service > span {
    color: rgba(255, 255, 255, 0.4);

    font-size: var(--font-size-s);
}

.service__hr {
    width: 100%;
    height: 1px;

    background-color: rgba(255, 255, 255, 0.08);
}

/* Portfolio */

.portfolio {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);

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

.portfolio__header {
    width: 100%;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.portfolio__heading-wrapper {
    flex: 1;
}

.portfolio__body {
    width: 100%;

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

.projects__wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

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

.projects__wrapper:nth-child(3) > .project:nth-child(1),
.projects__wrapper:nth-child(4) > .project:nth-child(1) {
    grid-column: 3;
}

.projects__wrapper:nth-child(3) > .project:nth-child(2),
.projects__wrapper:nth-child(4) > .project:nth-child(2) {
    grid-column: 4;
}

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

.project__header-icon-wrapper {
    width: 48px;
    height: 48px;
    
	border-radius: var(--radius-l);

    display: flex;
    align-items: center;
    justify-content: center;
    
    position: relative;

    overflow: visible;
}

.project__header-icon-bg {
    width: 100%;
    height: 100%;
    
	border-radius: var(--radius-l);

    opacity: 0.8;

    overflow: visible;

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

.project:hover > .project__header > .project__header-icon-wrapper > .project__header-icon-bg {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
}

.project__header-icon-bg--01 {
    background-color: var(--color-02);
    background-image: linear-gradient(180deg, var(--color-02) 0%, var(--color-02) 25%, var(--color-01) 100%);
}

.project__header-icon-bg--02 {
    background-color: var(--color-01);
    background: linear-gradient(135deg, var(--color-01) 0%, var(--color-01) 30%, var(--color-03) 100%);
}

.project__header-icon-bg--03 {
    background-color: var(--color-03);
    background: linear-gradient(180deg, var(--color-03) 0%, var(--color-03) 20%, var(--color-02) 100%);
}

.project__header-icon-bg--04 {
    background-color: var(--color-02);
    background: linear-gradient(90deg, var(--color-02) 0%, var(--color-02) 40%, var(--color-01) 100%);
}

.project__header-icon-bg--05 {
    background-color: var(--color-01);
    background: linear-gradient(270deg, var(--color-01) 0%, var(--color-01) 35%, var(--color-02) 100%);
}

.project__header-icon-bg--06 {
    background-color: var(--color-03);
    background: linear-gradient(45deg, var(--color-03) 0%, var(--color-03) 25%, var(--color-01) 100%);
}

.project__header-icon-bg--07 {
    background-color: var(--color-03);
    background: linear-gradient(120deg, var(--color-03) 0%, var(--color-02) 60%, var(--color-02) 100%);
}

.project__header-icon-bg--08 {
    background-color: var(--color-02);
    background: linear-gradient(15deg, var(--color-02) 0%, var(--color-01) 80%, var(--color-01) 100%);
}

.project__header-icon {
    width: 16px;
    height: 16px;

    position: absolute;
}

.project__header-group {
    width: calc(100% - var(--space-m) - 48px);

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

.project__name {
    line-height: 1;
}

.project__description {
    line-height: 1;
}

.portfolio__link-wrapper {
    width: 100%;
    
    display: flex;
}

/* Testimonials */

.testimonials {
    width: 100%;

    display: flex;

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

.testimonials__body {
    width: 100%;

	/* border: 1px solid rgba(255, 255, 255, 0.08); */
	border-radius: var(--radius-m);

	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);

	background-color: rgba(18, 18, 18, 0.4);

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

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

.testimonials__header {
    width: 100%;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.testimonials__heading-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-s);
}

.testimonials__header-icon {
    height: 48px;
}

.testimonials__outer-wrapper {
    width: 100%;

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

.testimonials__inner-wrapper {
    width: calc(50% - (var(--space-xl) / 2));

    cursor: grab;
}

.testimonials__slider {
    width: 100%;
}

.testimonials__slider > .swiper-wrapper {
    align-items: stretch;
}

.testimonial {
    height: 100%;

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

.testimonial__author {
    display: flex;
    flex-direction: column;
    gap: var(--space-xxs);
}

.testimonial__author > span:last-child {
    color: rgba(255, 255, 255, 0.4);
}

.testimonials__nav {
    width: 100%;

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

.testimonials__slider-pag-bullet.swiper-pagination-bullet {
    color: rgba(255, 255, 255, 0.4);

    font-size: var(--font-size-s);
    
    cursor: pointer;

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

.testimonials__slider-pag-bullet.swiper-pagination-bullet-active {
    color: rgba(255, 255, 255, 0.8);
}

/* CTA */

.cta {
    width: 100%;

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

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

.cta__left {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.cta__right {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

@media (max-width: 1280px) {
}

@media (max-width: 1024px) {
    /* About us */

    .about-us__body {
        display: flex;
        flex-direction: column;
    }

    /* Portfolio */

    .projects__wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects__wrapper:nth-child(3) > .project:nth-child(1),
    .projects__wrapper:nth-child(4) > .project:nth-child(1) {
        grid-column: 1;
    }

    .projects__wrapper:nth-child(3) > .project:nth-child(2),
    .projects__wrapper:nth-child(4) > .project:nth-child(2) {
        grid-column: 2;
    }

    .portfolio__link-wrapper {
        justify-content: flex-end;
    }

    /* Testimonials */

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

@media (max-width: 768px) {
    /* Fold */

    .fold__body {
        width: 100%;

        align-items: flex-start;
    }

    .fold__heading {
        text-align: left;
    }

    .fold__p {
        text-align: left;
    }

    .fold__btn-wrapper {
        justify-content: flex-end;
    }

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

    /* About us */

    .about-us__header {
        display: flex;
    }

    /* Portfolio */

    .projects__wrapper {
        display: flex;
        flex-direction: column;
    }
}