.container {
    width: 100%;

    display: flex;
    flex-direction: column;
}

/* Fold */

.fold {
    width: 100%;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    position: relative;
}

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

    object-fit: cover;
    -o-object-fit: cover;

    position: absolute;

    z-index: -1;
}

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

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.fold-heading {
    color: #FFFFFF;

    font-size: 64px;

    margin-bottom: 20px;
}

.fold-slogan {
    color: var(--secondary-color);

    text-transform: uppercase;
}

/* Card info */

.card-info {
    display: flex;
    flex-direction: column;
}

.card-info-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    
    margin-bottom: 40px;
}

.card-info-header-info {
    display: flex;
    flex-direction: column;
}

.card-info-heading {
    color: var(--primary-color);

    margin-bottom: 20px;
}

.card-info-header > a {
    line-height: 1;

    margin-top: 20px;
}

.card-info-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-details {
    width: calc(50% - 20px);

    display: flex;
    flex-direction: column;
}

.characteristics {
    margin-bottom: 40px;
}

.card-details-heading {
    color: var(--secondary-color);

    margin-bottom: 20px;
}

.card-details li {
    font-size: 16px;
}

.card-details li::before {
    content: "⦿";

    color: var(--secondary-color);

    padding-right: 10px;
}

.flipping-cards-img {
    width: calc(50% - 20px);

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

.flipping-cards-img > img {
    width: 100%;
}

/* What we offer */

.offers {
    background-color: var(--primary-color);

    display: flex;
    flex-direction: column;
}

.offers-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    margin-bottom: 80px;
}

.offers-header-info {
    display: flex;
    flex-direction: column;
}

.offers-heading {
    color: #FFFFFF;

    margin-bottom: 20px;
}

.offers-header-info > span {
    color: #FFFFFF;
}

.offers-header > a {
    line-height: 1;

    margin-top: 20px;
}

.offers-blocks {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.offer {
    width: calc(25% - 30px);
}

.offer-icon {
    height: 80px;
}

.offer-name {
    color: #FFFFFF;

    margin: 10px 0;
}

.offer-description {
    color: #FFFFFF;
}

/* Wholesale */

.wholesale {
    width: 100%;

    position: relative;
}

.wholesale-img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    -o-object-fit: cover;

    position: absolute;

    z-index: -1;
}

.wholesale-info {
    min-height: 400px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.wholesale-heading {
    color: #FFFFFF;

    text-align: center;

    margin-bottom: 20px;
}

.wholesale-info > p {
    color: #FFFFFF;

    font-size: 16px;

    margin-bottom: 20px;
}

.wholesale-info ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.wholesale-info li {
    width: calc(50% - 20px);

    color: #FFFFFF;

    font-size: 16px;
}

.wholesale-info li::before {
    content: "⦿";

    color: var(--secondary-color);

    padding-right: 10px;
}

/* Integrations */

.integrations {
    display: flex;
    flex-wrap: wrap;
}

.integration {
    width: 50%;
}

.integration.primary {
    background-color: var(--primary-color);
}

.integration.secondary {
    background-color: var(--secondary-color);
}

.integration-heading {
    color: #FFFFFF;

    line-height: 1.2;

    margin-bottom: 20px;
}

.integration-heading > span {
    font-weight: 800;
}

.integration.primary > .integration-heading > span {
    color: var(--secondary-color);
}

.integration.secondary > .integration-heading > span {
    color: var(--primary-color);
}

.integration-info {
    color: #FFFFFF;

    font-size: 16px;

    margin-bottom: 20px;
}

.integration ul {
    display: flex;
    flex-direction: column;
}

.integration li {
    color: #FFFFFF;

    font-size: 16px;
}

.integration.primary li::before {
    content: "⦿";

    color: var(--secondary-color);

    padding-right: 10px;
}

.integration.secondary li::before {
    content: "⦿";

    color: var(--primary-color);

    padding-right: 10px;
}

/* Contact us CTA */

.contact-us-cta {
    min-height: 200px;

    background: linear-gradient(90deg, var(--secondary-color) 0%, var(--tertiary-color) 100%);

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

.contact-us-cta-heading {
    color: #FFFFFF;

    margin-bottom: 20px;
}

.contact-us-cta-info > span {
    color: #FFFFFF;
}

.contact-us-cta-btn {
    font-size: 20px;

    transition: 0.2s;
    -o-transition: 0.2s;
    -moz-transition: 0.2s;
    -webkit-transition: 0.2s;
}

.contact-us-cta-btn:hover {
    color: var(--tertiary-color);
    background-color: #FFFFFF;
}

@media only screen and (max-width: 1000px) {
    .card-info-header, .offers-header {
        flex-direction: column;
        align-items: flex-start;

        margin-bottom: 20px;
    }

    .card-info-header .c-heading-line, .offers-header .c-heading-line {
        margin-bottom: 20px;
    }

    .offer {
        width: calc(50% - 20px);
    }

    .offer-icon {
        height: 50px;
    }
    
    .integration {
        width: 100%;
    }
}

@media only screen and (max-width: 800px) {
    .fold-heading {
        font-size: 54px;
    }

    .card-info {
        flex-direction: column;
    }

    .card-details {
        width: 100%;
    }

    .flipping-cards-img {
        display: none;
    }

    .contact-us-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-us-cta-info {
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 600px) {
    .fold-heading {
        font-size: 48px;
    }

    .card-info-container {
        flex-direction: column;
    }

    .offer {
        width: 100%;
    }

    .wholesale-info li {
        width: 100%;
    }
}

@media only screen and (max-width: 400px) {
    .card-details {
        margin-bottom: 20px;
    }

    .flipping-cards-img {
        width: 100%;

        display: flex;
    }
}