.map-container{
    overflow:hidden;
    padding-bottom:56.25%;
    position:relative;
    height:0;
}

.map-container iframe{
    left:0;
    top:0;
    height:50%;
    width:100%;
    position:absolute;
}




.projeAlani{
    background-color: rgb(20, 74, 145);
    border-bottom-right-radius: 25px;
    
}

.card{
    margin-top: 20px;
    width: 200px;
    height: 300px;
    overflow: hidden;
    border-radius: 20px;
    position: relative; /*overlay class'Inı card'ın içinde sabitleyeceğimiz için*/
    background-color: #000000;

}

.card img{
    width: 100%;
    height: 100%;
    transition: 500ms all;
    object-fit: contain;  

}


.overlay{
    background-color: rgb(0, 0, 0);
    position: absolute;
    left: 0;
    bottom: -91%;
    width: 100%;
    height: 100%;
    color: rgb(255, 255, 255);
    padding: 0px;
    transition: 500ms all;
    border-radius: 40px;
    

    
}

.overlay-text h2{
    font-size: 15px;
    font-weight: bold;
    margin-top: 5px;
    margin-bottom: 5px;
    text-align: center;
}

.overlay-text p{
    font-size: 16px;
    padding-left: 5px;
    padding-right: 5px;
    text-align: center;

}

.overlay-text a{
    display: block;
    width: 50%;
    height: 40px;
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    text-align: center;
    line-height: 40px;
    font-size: 15px;    
    font-weight: bold;
    cursor: pointer;
    border-radius: 20px;
    letter-spacing: 2px;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
    transition: 500ms all;
    


}

.overlay-text a i{
    font-size: 13px;
    display: inline-block;
    margin-left: -17px;
    opacity: 0;
    transition: 300ms all;
    

}

.overlay-text a:hover{
    background-color: rgb(165, 2, 2);
    color: rgb(255, 255, 255);
}

.overlay-text a:hover i{
    opacity: 1;
    margin-left: 1px;

}

.card:hover .overlay{
    bottom: -40%;
    

}

.card:hover img{
    transform: scale(1.3) translateX(10px);
    opacity: 0.5;
}

/*  */
.bg-1 {
    background-color: #1abc9c; /* Green */
    color: #ffffff;
  }
  .bg-2 {
    background-color: #474e5d; /* Dark Blue */
    color: #ffffff;
  }
  .bg-3 {
    background-color: #ffffff; /* White */
    color: #555555;
  }