@import url(main.css);

.contact-section-1 {
    padding-top: var(--header-height);
    height: 100vh;
    background-color: var(--c-background-main);
    display: flex;
    align-items: center;
}

.contact-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--general-padding);
}

.contact-text,
.contact-image {
    width: 50%;
}

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

.contact-section-1 .section-title {
    padding: 0px 0px 24px 0px;
}

.contact-text-desc {
    color: var(--c-text-main);
    font-size: var(--fs-content);
    font-weight: 400;
}

.contact-text-desc b {
    font-weight: 500;
}

.contact-email {
    font-size: var(--fs-content-strong);
    color: var(--c-theme-main);
    font-weight: 700;
    margin: 4px 0px 24px;
    display: block;
}

@media only screen and (max-width: 1200px) {
    .contact-section-1 {
        height: auto;
        padding: 160px 0px 60px;
    }

    .contact-flex {
        flex-direction: column;
    }

    .contact-text,
    .contact-image {
        width: 100%;
    }
}

@media only screen and (max-width: 768px) {
    .contact-flex {
        direction: column;
    }

    .contact-text,
    .contact-image {
        width: 100%;
    }
}