@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap");

*{
    box-sizing: border-box;
}

body{
    padding: 0;
    margin: 0;
    font-family:'Open Sans', Calibri, sans-serif; 
    /* overflow: hidden; */
}


.wrapper{
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
}

@media screen and (max-width: 600px) {
    .wrapper{
        display: block;
        height: 100%;
    }
    .btn-wrap{
        font-size: 2rem;
        flex-direction: column;
    }
}

.info{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-self: center;
    justify-content: space-between;
    padding: 2em 5em;
}

.info h1 {
    font-size: 3rem;
}

.info p {
    font-size: 18px;
}

.info img{
    width: 600px;
    height: 300px;
    object-fit: contain;
    padding: 0;
    margin: 0;
}

.info .test{
    width: 100%;
}

.image{
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    overflow: hidden;
    background-image: url('images/eq.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 600px) {

    .image{
        height: 300px;
    }

    .info img{
        width: 100%;
    }
}

.overlay{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

.btn-wrap{
    display: flex;
    justify-content: space-around;
    border-radius: 10px;
    /* margin: 4em 0; */
}

.btn-wrap a img{
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    transition: all 500ms ease;
}

.btn-wrap a img:hover{
    transform: scale(1.04);
    box-shadow: 0px 4px 8px -3px #000000;
}

/* .white-bg{
    background: rgba(255,255,255,0.2);
    z-index: 222;
    border-radius: 10px;
} */

.image img{
    z-index: 22222;
    width: 100%;
}

.verdeler-wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.verdeler-wrapper img{
    width: 150px;
    height: 100px;
    object-fit: contain;
}

@media screen and (max-width: 600px) {
    .verdeler-wrapper{
        flex-direction: column;
    }
    .btn-wrap a img{
        width: 100%;
    }
}

.partner-wrapper img{
    width: 100%;
    height: 100%;
    
}
