*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:"Poppins",sans-serif;
}
body{
    background-color:#F2F2F2;
    justify-content: center;
}
.heading{
    background-color:#3D2E4F;
    height: 38vw;
    width: 100%;
    margin: 7.5em 0;
    display: flex;
    flex-wrap:wrap;
    box-shadow: 0px 0px 30px 0px 
  rgba(0,0,0,0.4);
}

.nav{
    padding: 4em 2em;
    color:#ffffff;
    text-align: center;
    justify-content: center;
    align-items: center;
    width: 50%;
    font-size: 2vw;
    display: flex;
}

.lang-image {
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.lang-image img{
     cursor: pointer;
}
.overlay{
    position: absolute;
    transition: all .5s ease-in-out;
    opacity:0;
    border-radius: 15px;
    background-color:rgba(73,56,91,0.4) ;
    height: 0;
    width: 100%;
    bottom: 0;
    
}
.cards:hover .overlay{
   opacity: 1;
  height: 100%;
}

.heading-content{
    background-color :#49385B;
  width: 100%;
  padding: 2.4em 0;
  font-weight: 900;
  font-family: poppings, sans-serif;
  text-align: center; 
  box-shadow: 0px 0px 20px 0px 
  rgba(0,0,0,0.4);
  z-index: 1;
  position:fixed;
  top:0;
}
.heading-content h4{
    font-size: 40px;
    letter-spacing: 0.01em;
    color:#FFFFFF;
   
}
.container{
   width: 90%;
   margin: 5em 0 ;
    display: grid;
   grid-template-columns: repeat(2,2fr);
    grid-column-gap: 1em;
    justify-content:center;
    margin-left: 5%;
   
}
.cards{
    display: grid;
    position: relative;
    grid-template-rows: auto 1fr;
    border-radius: 15px;
    margin: 1.2em 0;
    box-shadow: 0px 3px 10px 1px rgba(0,0,0,0.4);
    
}
img{
    width:100%;
    object-fit: cover;
}
.cards img {
    border-radius: 15px 15px 0 0;
   
}
.content{
    color: gray;
    font-size: 1.2em;
    padding: 1em 1em;
}
.button-control{
    padding: 1em 1em 1.5em;
}
p{
    margin-top: 0.4em;
}
button{
    width: 10em;
    height: 4vh;
    padding: 0em 0.1em;
    text-align: center;
    background-color :#3D2E4F;
    color: #FFFFFF;
    border: none;
    font-weight: 600;
    border-radius: 5px;
    transition: 0.3s ease-in-out;
    font-size: 1.2em;
}
button:hover{
    cursor: pointer;
    background-color: #F2F2F2;
    color:#3D2E4F;
    border: 2px solid #3D2E4F;
}
span{
    color: black;
    font-weight: bold;
}
@media  (max-width:768px) {
   .container{
    grid-template-columns: repeat(1,2fr);
}

}
@media  (max-width:430px){
    .heading{
        height: 60vh;
    }
    .nav{
        font-size: 3vh;
    }
}