body, html {
    font-family: Arial, Helvetica, sans-serif !important;
    height: 100%;
    background-color: #d8d8d8;
}
.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    max-width: 966px;
    margin: 0 auto;
    padding: 20px;
}
.row>*{
    padding-left: 1px;
    padding-right: 1px;
    padding-bottom: 2px;
}
.logo {
    width: 320px;
    margin: 10px auto;
    opacity: 0;
    transform: scale(0.5);
    transition: transform 1s, opacity 1s;
}
.logo.loaded {
    opacity: 1;
    transform: scale(1);
}
.image-col {
    position: relative;
}
.image-col img {
    width: 100%;
    filter: grayscale(100%);
    transition: all ease-in 0.1s;
    cursor: pointer;
    scale:1;
    border-radius: .3rem;
}
.image-col img:hover {
    filter: grayscale(0%);
    transition: all ease-in 0.1s;
    scale:.98;
 
}
.image-col p {
    position: absolute;
    top: 10px;
    left: 10px;
    margin: 0;
    color: white;
    text-shadow: -1px 2px 2px rgba(0,0,0,0.6);
    padding: 10px;
    font-size: 25px;
}
.fade-in {
    opacity: 0;
}
.fade-in.visible {
    opacity: 1;
    transition: opacity 1s ease-in;
}
.footer-logo{
    background-image: url('../images/inaltay-logo-shape.svg'); /* Replace with the actual URL of your image */
    background-repeat: no-repeat;
    background-position: left center;
    padding-left: 40px;
    padding-top: 10px;
    height: 46px;
    width: 152px;
    margin-top: 5px;
    margin-bottom: 5px;
}
.footer-logo .text1{
    font-size: 14px;
    line-height: 16px;
    color:#58595B;
    font-weight: bold;
    text-align: left !important;         
}
.footer-logo .text2{
    font-size: 14px;
    line-height: 15px;
    color:#58595B;  
    font-weight: normal !important;  
    text-align: left !important;        
}

.social-media{
    font-size: 0px;
    }

.social-media img{
        width: 25px;
        filter: grayscale(100%);
        transition: filter 0.5s;
        margin: 4px;
    }
    .social-media img:hover{
        transition: filter 0.5s;
        filter: grayscale(0%);
    }

@media (max-width: 767px) {
    .logo {
    width: 230px;
    margin: 0px auto;
    opacity: 0;
    transform: scale(0.5);
    transition: transform 1s, opacity 1s;
}

    .footer-logo{
        margin: auto !important;
        height: auto !important;
    }
    .container{
        max-width:400px;
        display: block !important;
    }

    body, html {
    background-size:auto;
    background-position: center center;
    background-repeat: no-repeat;
}
.image-col p {
    position: absolute;
    top: 5px;
    left: 5px;
    margin: 0;
    color: white;
    text-shadow: -1px 4px 2px rgba(0,0,0,0.6);
    padding: 5px;
    font-size: 18px;
}

.col-6:last-of-type{
    margin-left: 25%;
}
    } 