@media screen and (max-width: 1100px) {
    .about {
        display: grid;
        grid-template-columns:  1fr;
        gap: 10px;
    }
    
    .about .text {
        text-align: center;
        margin-left: 0px;
        max-width: 500px;
        justify-self: center;
    }
    
    .about h1 {
        text-align: center;
        margin-top: 100px;
        color: #fff;
        font-size: 52px;
        font-family: gilroy-bold;
        margin-bottom: 30px;
    }
    
    .about p {
        font-size: 20px;
    }
    
    .about img {
        justify-self: center;
        margin-right: 0px;
        margin-top: 20px;
        margin-bottom: 100px;
        width: 80%;
        height: unset;
        -webkit-user-drag: none;
        user-select: none;
        -moz-user-select: none;
        -webkit-user-select: none;
        -ms-user-select: none;
    }
    
    header {
        background-image: url("../images/about-us-page/about-us.png");
        height: auto;
    }
}