* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

.about-section {
    max-width: 1600px;
    width: 100%;
    height: 790px;
}

.about-body {
    max-width: 1175px;
    width: 100%;
    margin: 0 auto;
}

.about-body h1 {
    padding: 0px 0 25px;
    font-size: 25px;
    color: #2d2d2d;
}

.about-text-one {
    width: 83%;
    color: #2d2d2d;
    margin: 20px 0;
    line-height: 20px;
}

.about-img {
    max-width: 1175px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    place-items: center;
    gap: 23px;
    height: 425px;
}

.about-img .img-one {
    max-width: 676px;
    width: 100%;
    height: 425px;
}

.about-img .img-two {
    max-width: 470px;
    width: 100%;
    height: 425px;
}

.about-text-two {
    display: none;
}

@media screen and (max-width:822px) {
    .about-section {
        height: auto;
    }

    .about-body h1 {
        padding-left: 30px;
    }

    .about-text-one {
        display: none;
    }

    .about-img {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 23px;
        height: auto;
    }

    .about-img .img-one {
        max-width: 1175px;
        width: 100%;
        height: auto;
    }

    .about-img .img-two {
        display: none;
    }

    .about-text-two {
        display: block;
        width: 100%;
        text-align: center;
        padding: 0 30px;
        color: #2d2d2d;
        margin: 25px 0;
        font-size: 14px;
        line-height: 20px;
    }
}

@media screen and (max-width: 400px) {
    .about-text-two {
        font-size: 11px;
    }
}