*{
    box-sizing: border-box;
}
body{
    margin: 0;
}

nav {
    width: 100%;
    height: 15vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    margin-bottom: 10px;
}

nav  .contain{
    width: 60%;
    height: 10vh;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;

}
nav  .contain .logo h3{
    font-size: 30px;
    font-weight: 200;
    color: black;
}
nav  .contain .logo h3 span{
    font-size: 35px;
    font-weight: 900;
}

nav  .contain .button ul{
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

nav  .contain .button ul li a{
    text-decoration: none;
    color: black;
    font-size: 20px;
    transition: .3s;
}
nav  .contain .button ul li a:hover{
    color: blue;
    font-size: 23px;
}
nav  .contain .button ul li a span{
    color: blue;
}
nav  .social{
    width: 15%;
    height: 10vh;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    cursor: pointer;
}

.sec1 {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}
.sec1 p{
    font-size: 30px;
    color: black;
    margin-left: 60px;
    font-weight: 900;

}
/* .sec1 .ul{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
} */
.sec1 .ul ul{
    display: flex;
    margin-left: 10px;
    gap: 35px;
}
.sec1 .ul ul li{
    list-style: none;
}
.sec1 .ul ul a{
    text-decoration: none;
    font-size: 25px;
    font-weight: 200;
    color: gray;
    transition: .3s;
}
.sec1 .ul ul a:hover{
    color: blue;
    font-size: 28px;
}





.row{
    width: 90%;
    height: fit-content;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-left: 40px;
}
.card{
    width: 230px;
    height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 3px;
    background-color: rgba(92, 97, 67, 0.363);
    box-shadow: 1px 1px 1px 1px rgb(206, 204, 204);  
    border-radius: 20px; 
    transition: .3s;
    cursor: pointer;
}
.card h3 , h6 ,p{
    margin: 0;

}
.card:hover{
    box-shadow: -7px 8px 21px 8px rgba(48,47,47,0.49);
    -webkit-box-shadow: -7px 8px 21px 8px rgba(48,47,47,0.49);
    -moz-box-shadow: -7px 8px 21px 8px rgba(48,47,47,0.49);
    border-radius: 22px;
    background-color: #302f2f21;
    transform: scale(.9);
}
img{
    width: 230px;
    height: 200px;
    background-size:contain ;
    box-shadow: 1px 1px 1px 1px gray;
    filter: drop-shadow( 20px 20px 20px gray);
    margin-bottom: 5px;
}
