@import url('https://fonts.googleapis.com/css2?family=Nunito&display=swap');
body{
    margin: 0;
    padding: 0;
    font-family: 'Raleway', sans-serif;
    /* background-color: black;   */
}
/* navigation baar  */
li {
    list-style: none;
}
a {
    text-decoration: none;
    font-size: 21px;
    font-weight: bold;
    color: #4AA82E;
}
a:hover {
    color: #626b12;
}
/*header start */
header {
    position: relative;
    padding: 0 2rem;
    background: #000000;
    border-bottom: 1px solid #CAD0D3;
    border-top: 1px solid #CAD0D3;
}
.navbar {
    width: 100%;
    height: 60px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #0a0a0a;
}
.navbar .logo a {
    font-size: 1.5rem;
    font-weight: bold;
    color: #CAD0D3;
}
.navbar .links {
    text-decoration: none;
    display: flex;
    gap: 2rem;
}
.navbar .toggle_btn {
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
}
.action_btn {
    background: #313131;
    color: #f1f1f1;
    padding: 0.5rem 1rem;
    border: none;
    outline: none;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: scale 0.2 ease;
}
.action_btn:hover {
    outline: 1px solid rgb(125, 247, 77);
    background: #585858;
    color: rgb(237, 236, 236);
    box-shadow: 1px 2px 15px 2px #1a0404;
    cursor: pointer;
}
.action_btn:active {
    scale: 0.95;
}
/* dropdwon menu*/
.dropdown_menu {
    display: none;
    position: absolute;
    right: 2rem;
    height: 0;
    top: 60px;
    width: 500px;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 10px;
    overflow: hidden;
    transition: height 1.0s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.dropdown_menu.open {
    height: 180px;
    border-bottom: 3px solid #CAD0D3;
    z-index: 1000;
}
.dropdown_menu li {
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dropdown_menu .action_btn {
    width: 100%;
    display: flex;
    justify-content: center;
}
/* responsive design*/
@media(max-width: 992px) 
{
    .navbar .links,
    .navbar .action_btn {
        display: none;
    }
    .navbar .toggle_btn {
        display: block;
        color: #CAD0D3;
    }
    .dropdown_menu {
        display: block;
    }
}
@media(max-width: 576px) {
    .navbar {
        height: 40px;
    }

    .navbar .logo a {
        font-size: 1rem;
    }
    .dropdown_menu {
        left: 2rem;
        width: unset;
    }
}
.logo img {
    width: 90px;
    height: 45px;
    margin: 7px 0px 0px 0px 
}
@media (max-width:500px){
    .logo img {
        width: 73px;
        height: 37px;
    }
}
/* section one css */

/* section two */
.section_team {
    display: flex;
    width: 100%;
    min-height: 90vh;
    justify-content: center;
    align-items: center;
    background: url(img/about.webp);
    background-size: cover;
    backdrop-filter: blur(40px);
}

@media(max-width:1025px) {
    .section_team {
        min-height: 50vh;
    }
}
/* for ipad mini air */
@media(max-width:821px) {
    .section_team {
        min-height: 45vh;
    }
}
@media(max-width:715px) {
    .section_team {
        min-height: 60vh;
    }

}


@media(max-width:482px) {
    .section_team {
        min-height: 45vh;
    }
}
/* end */

.col-md-3 {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.our-team{
    width: 250px;
    height: 340px;
    margin: 10px 10px;
    border-radius: 10px;
    border: 1px solid #d3d3d3;
    position: relative;
    overflow: hidden;
}
.our-team img{
    width: 100%;
    height: auto;
}
.our-team .team-content{
    width: 97%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 0px 5px;
    background: rgba(0,0,0,0.7);
    transform: translateX(-100%);
    transition: all 0.20s ease 0s;
    display: grid;
    justify-items: center;
}
.our-team:hover .team-content{
    transform: translateX(0);
}
.our-team .team-content .post-title{
    font-size: 16px;
    color: #fff;
    text-transform: uppercase;
}
.our-team .team-content .post{
    font-size: 14px;
    color: #155e2d;
    font-weight: bold;
    display: block;
    margin-bottom: 2px;
}
.our-team .description{
    font-size: 10px;
    line-height: 13px;
    text-align: justify;
    color: #fff;
    margin-bottom: 0px;
    margin-top: -10px;
}
.our-team .team_social{
    margin:0;
    padding:0;
    list-style: none;
}
.our-team .team_social li{
    display: inline-block;
    margin-right: 5px;
}
.our-team .team_social li a{
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: none;
    font-size: 14px;
    color: #f5f5f5;
    line-height: 40px;
    text-align: center;
    display: inline-block;
    transition: border 0.3s ease 0s;
}
.our-team .team_social li a:hover{
    border-color: transparent;
}
.our-team .team-prof{
    width: 90%;
    position: absolute;
    bottom: 0;
    text-align: right;
    padding: 20px 16px;
    background: rgba(0,0,0,0.7);
    transform: translateX(0);
    transition: all 0.20s ease 0s;
}
@media(max-width:500px) {
.our-team .team-prof{
        text-align: center;
}
    
}
.our-team:hover .team-prof{
    transform: translateX(100%);
}
.our-team .team-prof .post-title{
    font-size: 16px;
    color: #fff;
    margin: 0 0 8px 0;
    text-transform: uppercase;
}
.our-team .team-prof .post{
    font-size: 14px;
    font-weight: bold;
    color: #1f7320;
    margin-bottom: 0;
}
@media only screen and (max-width: 990px) {
    .our-team{ margin-bottom: 20px; }
}

/* last */
.copyright{
    width: 100%;
    background-color: #333;
    text-align: end;
    margin-top: -17px;
}
p .last_a{
    color: #CAD0D3;
    font-size: 7px;
    margin-right: 10px;
}
@media(max-with:500px){
    p .last_a{
    color: #CAD0D3;
    font-size: 4px;
        
    }
}