@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body {
    font-family: "Montserrat", sans-serif;
        font-optical-sizing: auto;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.banner {
    background-image: url('../img/bg.png');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    margin: 20px;
    box-sizing: border-box;
}

.kongre-adi {
    transform: translate(100px, 10px);
}

.telefon {
    transform: scale(1.27);
}

.app-store {
    text-align: right;
}

.google-play {
    text-align: left;
}

.gray  {
    color: #8b8888;
}


/* Responsive */

@media screen and (max-width: 1366px){
    .kongre-adi {
        transform: translateX(100px);
    }

    .app {
        transform: translateX(30px);
    }
}

@media screen and (max-width: 768px) {

    .logo {
        width: 50%;
    }

    .kongre-adi {
        transform: translate(0, 0);
        width: 100%;
    }

    .telefon {
        transform: scale(1);
        width: 70%;
    }

    .app-store {
        text-align: center;
        padding: 10px 0;
    }

    .app-store img {
        width: 70%;
    }

    .app {
        transform: translateX(0);
    }

    .google-play {
        text-align: center;
        padding: 10px 0 20px 0;
    }

    .google-play img {
        width: 70%;
    }

    .iletisim {
        text-align: center;
    }
    
}

@media screen and (max-width: 550px) {
    body {
        font-size: 14px;
    }

    .adres {
        display: block;
        padding-bottom: 10px;
    }
}

#sol{
    animation: sol 1s ease-in-out;
}

@keyframes sol {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(0);
    }
}

#sag{
    animation: sag 1s ease-in-out;
}

@keyframes sag {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(0);
    }
}


#cb-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    border-radius: 0;
    display: none;
    background-color: #f1f1f1;
    font-size: 13px;
}