.heading {
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    padding-bottom: 3.5rem;
    font-size: 4rem;
    margin-top: 5rem;
    margin-bottom: 2rem;
    background-image: url("images/bg2.jpg");
    background-size: cover;
    background-position: center;

}  


.heading span {
    color: var(--main-color);
    text-transform: uppercase;
    border-bottom: none;
    padding: 10px;
    margin-top: 20px;

}

.about {
    margin-top: 70px;
}


.about h1 {
    font-size: 45px;
}

h1:hover {
    color: #d3ad7f;

}
h1 span:hover{
    color: white;
}

.about .row  {
    display: flex;
    align-items: center; 
    justify-content: center;
    background: var(--black);
    flex-wrap: wrap; 
    
}

.about .row {
    display: flex;
    align-items: center; 
    justify-content: center;
    background: var(--black);
    flex-wrap: wrap; 
    
}

.about .row img {
    width:30rem;
    height:auto;

}


.about .row .content {
    flex: 1 1 45rem;
    padding:2rem;

}

.about .row .content h3 {
    padding-left: 15px;
    font-size: 3rem;
    color: #c7a163;
}

.content h3 {
    margin-bottom: 15px;
}

.about .row .content p {
    font-size:1.6rem;
    color: #fff;
    padding: 1rem 0;
    line-height: 1.8;
    text-align: start;
    max-width: none;
    padding-right: 5px;
    margin-bottom: 20px;


}
.btn {
    margin-top: 1rem;
    padding: 1rem 3rem;
    font-size: 1.9rem;
    color: #0c0c0c;
    font-weight: 600;
    background: var(--main-color);
    cursor: pointer;
    text-align: center;
    border-radius: 25px;
    margin-bottom: 25px;
}

.btn:hover {
    background:white;
}

@media (max-width: 992px) {
    .heading {
        font-size: 2.5rem;
        padding-bottom: 2rem;
        margin-top: 3rem;
        margin-bottom: 1.5rem;
    }

    .about h1 {
        font-size: 35px;
    }

    .about .row img {
        width: 20rem;
    }

    .about .row .content {
        flex: 1 1 35rem;
        padding: 1rem;
    }

    .about .row .content h3 {
        font-size: 2rem;
    }

    .about .row .content p {
        font-size: 1.2rem;
    }

    .btn {
        font-size: 1.5rem;
        padding: 0.7rem 2rem;
    }
}

@media (max-width: 768px) {
    .heading {
        font-size: 2rem;
        padding-bottom: 1.5rem;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    .about h1 {
        font-size: 30px;
    }

    .about .row img {
        width: 100%;
        max-width: 300px;
    }

    .about .row .content {
        flex: 1 1 100%;
        padding: 1rem;
    }

    .about .row .content h3 {
        font-size: 1.8rem;
    }

    .about .row .content p {
        font-size: 1rem;
    }

    .btn {
        font-size: 1.3rem;
        padding: 0.5rem 1.5rem;
    }

    #imgg{
        display: none;
    }
}

@media (max-width: 480px) {
    .heading {
        font-size: 1.5rem;
        padding-bottom: 1rem;
        margin-top: 1rem;
        margin-bottom: 0.5rem;
    }

    .about h1 {
        font-size: 25px;
    }

    .about .row img {
        width: 100%;
        max-width: 250px;
    }

    .about .row .content {
        flex: 1 1 100%;
        padding: 0.5rem;
    }

    .about .row .content h3 {
        font-size: 1.5rem;
    }

    .about .row .content p {
        font-size: 0.9rem;
    }

    .btn {
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }
}