#about-block {
    display: flex;
    border-bottom: 1px solid #5b692c;
    border-top: 1px solid #5b692c;
}
#about-block .left-side{
    width: 40%;
    z-index: 1;
    margin-right: -60px;
}
#about-block .left-side .about-img {
    margin-top: 55px;
    margin-bottom: 55px;
    
}
#about-block .left-side img {
    max-width: 900px;
    max-height: 580px;
    width: 100%;
    height: 100%;
    display: block;
}
#about-block .right-side{
    width: 65%;
    padding: 60px 130px;
    padding-left: calc((78% - 1170px) / 2);
    background: #5b692c;
}
#about-block .about-title{
font-weight: 700;
font-size: 48px;
line-height: 120%;
text-transform: uppercase;
color: #ffffff;
margin-bottom: 40px;
}
#about-block .about-title span {
    color: #a81c17;
    font-weight: 700;
}
#about-block .about-desc p{
    font-family: 'Gilroy';
font-weight: 400;
font-size: 18px;
line-height: 130%;
color: #ffffff;
}
@media (max-width: 1700px) {
    #about-block .left-side {
        width: 45%;
    }
    #about-block {
        justify-content: space-between;
    }
    #about-block .right-side {
        width: 50%;
        padding-left: 10px;
    }
}
@media (max-width: 1400px) {
    #about-block {
        flex-direction: column;
        align-items: center;
        background: #754f45;
    }
    #about-block .right-side {
        padding-right: 10px;
        width: 100%;
    }
    #about-block .left-side .about-img {
        margin-top: 0px;
        margin-bottom: 0px;
    }
    #about-block .left-side .about-img img {
        max-width: unset;
        max-height: unset;
    }
    #about-block .left-side {
        margin-right: unset;
    }
}
@media (max-width: 996px) {
    #about-block .left-side {
        width: 100%;
    }
}
@media (max-width: 450px) {
    #about-block .about-title {
        font-size: 34px;
    }
    #about-block .about-desc p {
        font-size: 16px;
        line-height: 110%;
    }
    #about-block .right-side {
        padding-top: 20px;
        padding-bottom: 20px;
    }
}