
.visit-btn{
    display: inline-block;
    text-decoration: none;
    font-size: 14px;
    padding: 14px 12px 12px 34px;
    border: 1px solid;
    color: #fff;
    cursor: pointer;
    position: relative;
    background: transparent;
}

.visit-btn:hover{
    border: 1px solid #757373;
    background: #979292;
    transition: 1s;
}




/*responsive part for small screens like smart phones and tablets......*/

@media(max-width: 700px){

    .course h2{
        font-size: 20px;
    } 

}

/*-now coding the contacts us--*/

#experts {
    text-align: center;
    padding: 8vw;
    
}

#experts .expert-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    grid-gap: 1rem;
    margin-top: 50px; 

}

#experts .expert-box .profiles:hover{
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.19);
}

#experts .expert-box .profiles {
    transition: 0.8s ease-in-out;
    cursor: pointer;
    flex-basis: 31px; 
    background: #F9F9FF;
    padding: 20px; /* Adjusted padding for better fit */
    width: 200px; /* Fixed width */
    height: 200px; /* Fixed height */
    display: flex; /* Flexbox for content alignment */
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center items horizontally */
    justify-content: center; /* Center items vertically */
    overflow: hidden; /* Ensure no content overflows */
    margin: 0 auto; /* Center the expert box */
}

#experts .profiles img {
    height: 30%; /* Adjust size of the profile image */
    width: 30%; /* Ensure the image is responsive */
    border-radius: 50%; /* Make the image circular */
}

.pro-links a{
    padding: 10px;
}

#experts .pro-links {
    margin-top: 10px;
    display: flex;
    justify-content: center; /* Center the links */
}

#experts .pro-links img {
    height: 20px; /* Icon size */
    width: 20px; /* Icon size */
    margin: 0 5px; /* Space between icons */
    transition: background 0.3s ease-in;
}

#experts .pro-links :hover img{
    background: rgba(21, 25, 100);
    cursor: pointer;
}

#experts h1,h6 {
    font-weight: 700;
    color: #cbcbd6;
    font-size: 30px;
}

#experts p {
    color: #b8b8dd;
    margin-top: 15px;
    
}

p img{
    height: 15px;
    padding-left: 10px;

}

p a{
    text-decoration: none;
    transition: 1.5s ease-in-out;
}

p a:hover{
    text-shadow: #f44336;
    font-size: larger;
    color: brown;
}

.icons a{
    text-decoration: none;
    gap: 20px;
}

/*..map style*/

#map h2{
    padding: 30px;
    color: #cbcbd6;


}

#map{
   
    text-align: center;
    margin-left: 10rem;
    margin-right: 10rem;
}
