@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins';
}

img {
    max-width: 100%;
    height: auto;
}

body,
html {
    overflow-x: hidden;
}

.breadcrumb {
    margin-top: 40px;
    margin-left: 150px;
    margin-bottom: 40px;
}

.breadcrumb a {
    text-decoration: none;
    color: grey;
    font-weight: 550;
}

.breadcrumb li {
    color: black !important;
    font-weight: 550;
}

.about {
    margin-top: 18px;
    margin-left: 50px;
}

.about p {
    margin-top: 15px;
    margin-bottom: 1rem;
    text-align: justify;
    
}

.about img{
    width: auto;
    height: 535px;
    border-radius: 10px;
}
@media screen and (max-width:425px) {
    .breadcrumb {
        margin-top: 50px;
        margin-left: 30px;
    }
    .about {
        margin-left: 20px;
    }
    
    .abt-info {
        padding-top: 0px;
    }
    .abt-info p{
        padding-right: 30px;
        text-align: justify;
        font-size: 13px;
    }
    .about img{
        height: 260px;
    }
    .about p {
        margin-top: 15px;
        margin-bottom: 1rem;
        text-align: justify;
        width: 305px;
        font-size: 13px;
        margin-left: 10px;
    }
}
@media screen and (min-width:425px) and (max-width:768px) {
    .breadcrumb {
        margin-top: 40px;
        margin-left: 50px;
    }
    .about {
        margin-left: 20px;
    }
    
    .abt-info {
        padding-top: 10px;
    }
    .abt-info p{
        padding-right: 10px;
        text-align: justify;
        font-size: 13px;
        padding: 0px 20px;
    }
    .about img{
        height: 290px;
        margin-top: 35px;
    }
    .about p {
        font-size: 9px;
        padding: 0px 20px;
    }
    .about h1{
        font-size: 25px;
        margin-left: 18px;
    }
}

.aboutcard{
    width: 250px;
    margin-left: 25px;
    margin-top: 30px;
    margin-bottom: 30px;
    transition: 0.3s;
}

.abt-card{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.bg-black{
    display: flex;
    width: 70px;
    height: 70px;
    justify-content: center;
    align-items: center;  
    border-radius: 50px;  
}
.bg-grey{
    background-color: #b9b9b9;
    display: flex;
    width: 100px;
    height: 100px;
    justify-content: center;
    align-items: center;  
    border-radius: 50px;  
}


.aboutcard:hover{
    background-color: #DB4444;
    color: white;
    border: none;
    box-shadow: 2px 2px 8px 1px grey;
}

.aboutcard svg{
    fill: none;
}
.aboutcard:hover svg path{
    stroke: black;
}

.aboutcard:hover .bg-black{
    background-color: white !important;
}

.aboutcard:hover .bg-grey{
    background-color: #e9e9e9;
}

@media screen and (max-width:425px) {
    .aboutcard{
        margin-left: 60px;
    }
}
@media screen and (min-width:425px) and (max-width:768px) {
    .aboutcard{
        margin-left: 85px;
    }
}

.prof{
    margin-top: 100px;
}
.profile{
    border: none;
    background-color: #F5F5F5;
}
.profile img{
    height: 500px;
}
.profile i{
    width: 30px;
}
.fa-brands{
    font-weight: 400;
    font-size: 25px;
}

@media screen and (min-width:425px) and (max-width:768px) {
    .profile img{
        height: 300px;
    }
    .profile h1{
        font-size: 30px;
    }
    .profile p{
        font-size: 15px;
    }
    .profile i{
        width: 20px;
    }
    .fa-brands{
        font-size: 18px;
    }
}