@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

body {
    min-height: 100vh;
    margin: 0;
    padding: 0 0 50px 0;
    box-sizing: border-box;
    position: relative;
}

body::before {
    width: 100%;
    height: 100%;
    background: url('img/bg.jpg') no-repeat center / cover;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    filter: blur(10px);
}

.container {
    max-width: 1345px;
    min-height: 100vh;
    margin: 0 auto;
    height: 100%;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.container_left {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.container_left {
    height: 100%;
}

.container_left_logo {
    width: 200px;
    margin: 0 auto 20px;
    display: block;
}

.container_left_logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.container_left_title {
    margin-bottom: 60px;
    font-size: 40px;
    list-style: 53px;
    color: #000;
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    text-align: center;
}

.container_left_title div {
    max-width: 500px;
    margin: 10px auto 0;
    font-size: 17px;
    list-style: 25px;
    font-weight: 400;
}
.container_left_logosImg {
    display: none;
    width: 310px;
    margin: 0 auto;
}

.container_left_logosImg img {
    width: 100%;
    display: block;
}
.container_left_logos {
    display: flex;
    align-items: center;
    gap: 45px;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* 1 - VORTEX FLOW */
.container_left_logos li:nth-child(1) img {
    height: 72px;
    width: auto;
}

/* 2 - BRIGHT ARMOR */
.container_left_logos li:nth-child(2) img {
    height: 124px;
    width: auto;
}

/* 3 - LOXO */
.container_left_logos li:nth-child(3) img {
    height: 105px;
    width: auto;
}

/* 4 - OXI NOVA */
.container_left_logos li:nth-child(4) img {
    height: 133px;
    width: auto;
}

/* 5 - SODAX */
.container_left_logos li:nth-child(5) img {
    height: 110px;
    width: auto;
}

/* 6 - AIR GLOW */
.container_left_logos li:nth-child(6) img {
    height: 114px;
    width: auto;
}

/* 7 - X-MAX PRO */
.container_left_logos li:nth-child(7) img {
    height: 63px;
    width: auto;
}


.container_left_contact_container {
    margin-top: 80px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.container_left_contact_container_title {
    font-size: 15px;
    line-height: 23px;
    color: #000;
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    text-align: center;
}

.container_left_contact_container_left, .container_left_contact_container_right {
    width: 40%;   
}

.container_left_contact_container_left {
    margin-right: 100px;
}

.container_left_contact {
    padding-left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    list-style-type: none;
    flex-direction: column;
}

.container_left_contact li:not(:last-child) {
    margin-bottom: 5px;
}

.container_left_contact li,
.container_left_contact li a {
    font-size: 15px;
    line-height: 23px;
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    color: #000;
    text-decoration: initial;
    text-align: center;
}

.container_right {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.container_right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: blur(10px);
}

.item {
    margin-top: 30px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #e3e6ee;
    cursor: pointer;
    user-select: none;
}

/* Görsel checkbox */
.cb {
    width: 20px;
    height: 20px;
    appearance: none;
    -webkit-appearance: none;
    border: 2px solid #c6cbd8;
    border-radius: 4px;
    display: inline-block;
    position: relative;
}

.cb:checked {
    background: #2563eb;
    border-color: #2563eb;
}

.cb:checked::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.label {
    font-size: 15px;
    line-height: 23px;
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    color: #000;
}

b {
    font-weight: 700;
}

@media screen and (min-width: 320px) and (max-width: 1345px) {
    .container {
        height: initial;
        padding: 10px 20px;
    }
    
    .container_left_contact_container_left {
        margin-right: 0;
    }

    .container_left_logo {
        width: 100px;
        margin-bottom: 20px;
    }

    .container_left_title {
        margin-bottom: 35px;
        font-size: 20px;
        line-height: 28px;
    }

    .container_left_logos {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        justify-items: center;
        row-gap: 35px;
        padding: 0;
        margin: 0;
    }

    .container_left_logos {
        display: none;
    }
    
    .container_left_logosImg {
        display: block;
    }

    /* Mobilde genel logo boyutu */
    .container_left_logos li img {
        height: 100% !important;
        width: auto;
    }

    .container_left_logos li {
        width: 80px;
        height: initial;
        margin: 0 auto !important;
        text-align: center;
    }
    
    .container_left_contact_container {
        margin-top: 35px;
        flex-direction: column;
    }
    
    .container_left_contact_container_left, .container_left_contact_container_right {
        width: 100%;
    }
    
    .container_left_contact {
        width: 100%;
        margin-bottom: 30px;
    }
}