.contact {
    margin-top: 124px;
}

/* HERO BANNER */
/* ============================================= */

.contact .hero-banner {
    position: relative;
}

.contact .hero-banner img.banner-about {
    width: 100%;
    aspect-ratio: 1.8;
    height: auto;
    display: block;
    min-height: 500px;
    object-fit: cover;
}

.contact .hero-banner .banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media (max-width: 768px) {
    .contact .hero-banner .banner-text {
        font-size: 1.25rem;
    }
}

/* ============================================= */

/* SOCIAL BAR SECTION */
/* ============================================= */
.contact .social-bar {
    display: flex;
    width: 100%;
}

.contact .social-bar .social-item {
    width: calc(100% / 3);
    text-decoration: underline;
    display: block;
    padding: 1.5rem;
    text-align: center;
    line-height: 150%;
}

@media (max-width: 768px) {
    .contact .social-bar {
        flex-direction: column;
    }

    .contact .social-bar .social-item {
        width: 100%;
        padding: 1.5rem 0;
    }
}

/* ============================================= */

/* CONTACT SECTION */
/* ========================== */

.contact .contact-section {
    display: flex;
    margin: 8rem 0;
    height: 510px;
    align-items: stretch;
}

.contact .contact-section .overview {
    background-color: var(--primary-red);
    padding: 6.5rem 3rem;
    width: calc(100% / 3);
    height: auto;
    text-align: right;
}

.contact .contact-section #contact-slider {
    height: 100%;
}

.contact .contact-section .info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact .contact-section .info-wrapper {
    display: flex;
    flex-direction: column;
}

.contact .contact-section .card {
    padding: 2rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    height: 360px;
    margin: 0.25rem;
    justify-content: center;
}

.contact .contact-section img {
    width: 240px;
}

.contact .contact-section .card.first {
    background-color: var(--grey-white);
}

.contact .contact-section .card.second {
    background-color: var(--primary-red);
    color: var(--grey-white);
}

.contact .contact-section .card.third {
    background-color: var(--grey-black);
    color: var(--grey-white);
}

.contact .contact-section .card.second p,
.contact .contact-section .card.third p {
  color: var(--grey-white);
}

.contact .contact-section .slick-list {
    height: 100%;
}

.contact .contact-section .slick-slide {
    transform: scale(0.9);
    transition: 0.3s;
}

.contact .contact-section .slick-slide.slick-current {
    transform: scale(1);
    transition: 0.3s;
}

.contact .contact-section .slick-track {
    height: 100%;
    display: flex;
    align-items: center;
}

.contact .contact-section .social-wrapper {
    display: flex;
    gap: 0.5rem;
}

.contact .contact-section .social-wrapper a {
    width: 2.75rem;
    height: 2.75rem;
    display: block;
}

.contact .contact-section .social-wrapper img {
    width: 100%;
}

@media (max-width: 768px) {
    .contact .contact-section {
        flex-direction: column-reverse;
        height: unset;
        margin: 3rem 0;
    }

    .contact .contact-section .card {
        height: unset;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .contact .contact-section .social-wrapper {
        justify-content: center;
    }

    .contact .contact-section .slick-track {
        padding: 2rem 0;
    }

    .contact .contact-section .overview {
        width: calc(100% - 3rem);
        text-align: center;
        padding: 4rem 1.5rem;
    }
}