/*contact*/
.contact__container {
    width: 100%;
    margin: 0 !important;
}

.contact__container > div:first-child {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.contact__image img {
    object-fit: cover;
    height: auto;
    min-height: 100%;
}

.contact__text {
    padding: 36px;
    background-color: var(--fair-gray-color);
}

.contact__text-title, .contact__text-subtitle {
    font-size: 22px;
    font-weight: var(--font-bold);
    margin-bottom: 18px;
}

.contact__text-desc {
    font-size: 20px;
    max-height: 25vh;
    overflow-y: auto;
    overflow-x: hidden;
    margin-bottom: 36px;
}

.contact__text-icon .ti {
    font-size: 24px;
}

.contact__text-icon img {
    width: 24px;
}

.picture-wrapper {
    position: relative;
}

.picture-source {
    position: absolute;
    right: 0;
    bottom: 0;
    background: #343434EE;
    color: var(--white-color);
    font-weight: 100;
    padding: 5px 10px;
}

@media only screen and (max-width: 768px) {
    .contact__text-title, .contact__text-subtitle {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .contact__text-desc {
        font-size: 18px;
    }
}


@media (max-width: 600px) {
    .contact__image {
        width: 100%;
        max-height: 60vh;
        display: flex;
        overflow: hidden
    }

    .contact__image img {
        width: 100%;
        height: auto;
        object-fit: cover;
        object-position: center;
    }

}