@media screen and (min-width: 1500px) {
    #about .container {
        max-width: 1410px;
        padding: 0;
    }
}
#about .container {
    padding-top: 78px;
    padding-bottom: 96px;
    color: var(--primary-color);
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 132px;
}
#about .text-content h5 {
    font-size: 15px;
    font-weight: 500;
    line-height: 26px; 
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-left: 2px;
}
#about .text-content h2 {
    font-size: 32px;
    font-family: var(--body-font);
    font-weight: 400;
    line-height: 38px;
    margin-top: 21px;
    margin-bottom: 33px;
    margin-left: 1px;
}
#about .text-content p {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0.16px;
    margin-bottom: 22px;
}
#about .text-content a.btn {
    width: 131px;
    height: 50px;
    border-radius: 0;
    background: transparent;
    color: var(--primary-color);
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    line-height: unset;
    letter-spacing: 0.48px;
    text-transform: uppercase;
    margin-top: 4px;
    padding: 13px 0;
    border-bottom: 1px solid var(--primary-color);
}
#about .image-content img {
    margin-top: 5px;
}
@media screen and (max-width: 1500px) {
    #about .container {
        display: grid;
        grid-template-columns: 49% auto;
        gap: 40px;
    }
    #about .image-content img {
        width: 100%;
    }
}
@media screen and (max-width: 992px) {
    #about .container {
        grid-template-columns: 1fr;
        padding-top: 30px;
        padding-bottom: 35px;
        gap: 25px;
    }
    #about .image-content {
        grid-row-start: 1;
        display: flex;
        flex-direction: column-reverse;
        gap: 15px;
    }
    #about .text-content h2 {
        font-size: 24px;
        line-height: 30px;
        margin-top: 8px;
        margin-bottom: 18px;
    }
    #about .text-content h5 {
        font-size: 14px;
        line-height: 20px;
    }
}
@media screen and (max-width: 767px) {
    #about .container {
        padding-top: 20px;
        padding-bottom: 25px;
        gap: 15px;
    }
    #about .text-content p {
        font-size: 15px;
        line-height: 20px;
        margin-bottom: 14px;
    }
}