@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&display=swap');
#out_team{
    background-color: rgb(39, 39, 39);
    padding: 20px 0 40px;
}
#out_team .team_card_container{
 display: flex;
 justify-content: center;
 align-items: center;
 gap: 25px;
 flex-wrap: wrap;
}
#out_team .team-title {
  margin-bottom: 40px;    
  text-align: center;
}
#out_team .team-title span{
    padding: 5px;
    border-bottom: 2px solid white; 
    font-size: 25px;
    color: white; 
    font-family: 'Roboto', sans-serif;
}
#out_team .team_card_container .team_member{
background-color: black;
box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
border-radius: 10px;
padding: 20px 10px;
color: white;
width: 250px;
text-align: center;
font-family: 'Roboto', sans-serif;
transition: all .5s ease;
}
#out_team .team_card_container .team_member:hover{
    -webkit-box-shadow: 0px 2px 19px 1px rgba(255,255,255,0.59);
-moz-box-shadow: 0px 2px 19px 1px rgba(255,255,255,0.59);
box-shadow: 0px 2px 19px 1px rgba(255,255,255,0.59);
}
.img_circle{
    width: 150px;
    height: 150px;
     border-radius:50%;
     margin: 0 auto;
     overflow: hidden;

}
.img_circle img{
 width: 100%;
 height: 100%;
 object-fit:cover;
}
.member_name{
    font-size: 16px;
    font-weight: 700;
    line-height: 30px;
    margin: 0;
    margin-top: 20px;
}
.position{
    font-size: 15px;
    font-weight: 700;
    line-height: 20px;
    margin: 0;
    margin-top: 5px;
    color: rgb(0, 106, 255);
}
.decription{
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    margin: 0;
    margin-top: 20px;
}
.social_icon{
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.social_icon .icon{
    transition: all .5s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: white;
background-color: rgb(4, 49, 134);
}
.social_icon .icon a{
    color: white;
}
.social_icon .icon:hover{
    transform: scale(1.1);
}
.social_icon .icon:nth-child(2){
    background-color: rgb(0, 119, 255);
}
.social_icon .icon:nth-child(3){
background-color: rgb(255, 0, 115);
}
#about-textImg{
    padding-top: 100px;
}
#about-textImg .Img_text{
 display: flex;
 justify-content: center;
 gap: 40px;
 align-items: flex-start;
 margin-bottom: 20px;
}
#about-textImg .Img_text img{
    width: 80%;
    margin: 0 auto;
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
#about-textImg .Img_text .left , #about-textImg .Img_text .right{
 width: 50%;
}
#about-textImg .Img_text .left{
    text-align: right;
}
#about-textImg .Img_text:nth-child(2) .left{
    text-align: left;
}
#about-textImg .Img_text h3.title{
     font-size: 40px;
   line-height: 70px;
   margin: 0;
   margin-bottom: 20px;
   font-family: 'Lato', sans-serif;
}
#about-textImg .Img_text p.description{
    font-size: 18px;
    line-height: 25px;
    width: 80%;
    margin: 0;
    font-weight: 400;
    margin-bottom: 20px;
    font-family: 'Lato', sans-serif;
}
.Img_text:nth-child(2) .right .text{
text-align: right;
}
.Img_text:nth-child(2) .text p.description{
   margin-left: auto !important;
   width: 90% !important;
}
@media screen and (max-width: 480px) {
    #about-textImg .Img_text{
        flex-wrap: wrap;
       }
       #about-textImg .Img_text .left , #about-textImg .Img_text .right{
        width: 100%;
       } 
       #about-textImg .Img_text p.description{
        width: 100%;
       }
  }