section.side-image {
    display: flex;
    gap: 1em;
    margin: 32px 64px;
}

section.side-image>* {
    width: 50%;
}

section.side-image img {
    width: 100%;
    height: auto;
}

section.main-slider {
    margin: 32px 64px;
}

section.content h2 {
    text-transform: uppercase;
    font-size: xx-large;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2px;
    padding-left: 64px;
    padding-right: 16px;
    border-bottom: 4px solid var(--primary-color);
    padding-bottom: 4px;
    width: fit-content;
}

section.content p {
    margin: 2em 64px 32px 64px;
}

section.content table {
    margin-top: 2em;
    display: flex;
    flex-direction: column;
}

section.content table tr {
    display: flex;
}

section.content table td,
section.content table th {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
}

section.content table img {
    max-width: 100%;
    height: 300px;
    object-fit: contain;
}

section.content table th {
    font-weight: bold;
}


@media screen and (max-width: 1024px) {
    section.side-image {
        flex-direction: column;
        margin: 0;
    }

    section.side-image>* {
        width: 100%;
    }

    section.main-slider {
        margin: 0;
    }

    section.content table tr {
        flex-direction: column;
    }
}

/* ----- logos section ----- */

.logos {
    text-align: center;
    display: inline-block;
    padding: 10px 2%;
    width: 100%;
    padding-top: 160px;
    padding-bottom: 65px;
}

.logos a {
    display: inherit;
    text-align: inherit;
}

.logos img {
    display: inline;
    width: 150px;
    height: auto;
    margin: 15px;
}

@media screen and (max-width: 769px) {
    .logos img {
        width: 120px;
        margin: 10px;
    }

    .logos {
        padding: 10px 2%;
    }
}
