*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}
.container{
    max-width: 1140px;
    width: 100%;
    padding: 0 15px;
    margin: 0 auto;
}
body{
    background-color: #102A2A;
    height: 100vh;
}
.nav_title{
    color: white;
    font-size: 34px;
    padding-top: 15px;
}
.card{
    width: 300px;
    position: relative;
    
    border: 2px solid #1d4e4e ;
    align-items: center;
}
.card_img{
     width: 294px;
    height: 200px;
    margin-bottom: 10px;
}
.card_text{
    color: white;
    padding: 10px;
    text-decoration: none;
}
.card:hover{
    box-shadow: 0px 0px 10px rgb(179, 179, 79);
    transition: 0.5s;
}
.box{
    display: flex;
    gap: 20px;

}
.card_inp{
    position: absolute;
    left: 95%;
    top: 10px;
}
.box{
    margin-top: 50px;
}
.card_img_2{
    width: 90px;
}
.card_text_2{
    color: grey;
    font-size: 28px;
   
    
}
.card_2{
    background-color: gainsboro ;
    display: flex;
    justify-content: space-between;
    width: 300px;
    align-items: center;
    padding: 10px;
    cursor:no-drop;
    gap: 20px;
    
}
.box_2{
    display: flex;
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 20px;
    margin-top: 150px;
    margin-left: 120px;
    align-items: center;
    
}
.gif_img{
    width: 50px;
    animation: init 4s linear infinite;
}
@keyframes init {
    100% {
        transform: rotateY(360deg);
    }
}