.about {
    background: url(/img/bg-second.webp) no-repeat center center;
    background-size: cover;
    padding-top: 80px;
    padding-bottom: 80px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 50px;
}

.about-content h5 {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    max-width: 600px;
    line-height: 1.2em;
}
.about-content p {
    margin-bottom: 15px;
    color: #fff;
    font-weight: 400;
    max-width: 600px;
}

.about-content a {
        background-color: #fff;
        color: #0d3c00;
}

.about-img img{
    border-radius: 30px;
    margin-left: auto;
    margin-right: auto;
}

@media only screen and (min-width:486px) and (max-width:1015px) {
    .about-grid {
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 50px;
    }

    .about-content {
        margin-left: auto;
        margin-right: auto;
    }

    .about-content a {
        margin-bottom: 10px;
    }
    
}
@media only screen and (max-width:485px) {
    .about-grid {
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 50px;
    }

    .about-content {
        margin-left: auto;
        margin-right: auto;
    }

    .about-content a {
        margin-bottom: 1px;
        margin-top: 30px;
    }
    .about-img img {
        display: none;
    }

    .about-content h5 {
        font-size: 1.8rem;
    }
    .about-content p {
        font-size: .9rem;
    }
}