﻿/******************************
|     Text Image Module       |
******************************/
.div-height-360 {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 16px;
}

.title-bold {
    color: var(--gray-900, #101828);
    /* Display/Small */
    font-family: var(--font-asap);
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 48px; /* 120% */
}

.description {
    width: 100%;
    color: var(--gray-600, #475467);
    /* Body/Large */
    font-family: var(--font-asap);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
}

.img-right {
    width: 100%;
    height: auto;
    margin: 32px 0 0 0;
}

.col-text {
    width: 62%;
}

.col-img {
    width: 38%;
}

@media screen and (max-width: 1199px) {
    .div-height-360 {
        width: 100%;
        align-items: center;
        display: flex;
        gap: 16px;
    }

    .col-text {
        width: 100%;
    }

    .col-img {
        width: 100%;
    }

    .img-right {
        width: 99%;
        height: auto;
        margin: 32px 0 0 0;
    }
}

@media screen and (max-width: 991px) {
    .div-height-360 {
        width: 100%;
        align-items: center;
        display: inherit;
        gap: 16px;
    }
}

/******************************
|  End Text Image Module      |
******************************/
