:root{
    --main-color: #036ED1;

    --text-main-color: #212529;
    --text-secondary-color: #9b9b9b;
    --text-secondary-color2: #6c6c6c;


    --product-widget-divider: 2.5rem;
}

.footer_area {
    margin-top: 8rem;
    color: var(--text-main-color);
}

.footer_contents {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, auto));
    gap: 5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #4286f566;
    margin-bottom: 2rem;
}

.footer_logo_company img{
    max-width: 215px;
}
.footer_description {
    font-size: 15px;
    margin-bottom: 2.5rem;
}


.footer_company_information{

    li{
        font-size: 15px;
        max-width: 330px;
    }

    svg{
        vertical-align: middle;
        width: 17px;
        height: 17px;
        margin-right: 5px;

        path{
            fill: var(--main-color);
        }
    }

    b{
        font-weight: 500;
    }
}

.footer_titles {
    font-size: 24px;
    font-weight: 500;
    margin-top: 0;
}

.mb_rem1{
    margin-bottom: 1.5rem;
}

.footer_ul_list{
    li{
        font-size: 15px;
        margin-bottom: 1.2rem;
    }

    a{
        color: var(--text-main-color);
        transition: 0.3s ease all;
    }

    li a:hover{
        color: var(--main-color);
        margin-left: 5px;
    }
}

.footer_bottom {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    justify-items: stretch;
    margin-bottom: 2rem;
}

.footer_bottom_social {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;

    b {
        font-weight: 500;
        font-size: 15px;
    }
}

.footer_bottom_socials {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.footer_bottom_socials a {
    background-color: var(--main-color);
    border-radius: 50%;
    color: #fff;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
    display: inline-flex;
    transition: 0.3s ease all;
}

.footer_bottom_socials a:hover{
    transform: translateY(-5px);
}

.footer_bottom_socials a i {
    font-size: 14px;
}


.footer_bottom_prepare,
.footer_bottom_ssl{
    font-family: 'Poppins'
}

.footer_bottom_prepare {
    font-size: 15px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
    margin-bottom: 8px;

    img{
        max-width: 70px;
    }

    a{
        color: var(--main-color);
        font-weight: 500;
    }
}

.footer_bottom_ssl{
    font-size: 15px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;

    svg{
        width: 18px;
        height: 18px;

        path{
            stroke: #2fb57e;
        }
    }

    span{
        font-weight: 500;
        color: #2fb57e;
    }
}



/* Küçük telefonlar */
@media (max-width: 480px) {

}

/* Orta telefonlar  ve Küçük Telefonlar*/
@media (max-width: 767px) {
    :root{
        --product-widget-divider: 2rem;
    }

    .footer_area{
        margin-top: 2rem !important;
    }
}

/* Tablet dikey */
@media (min-width: 768px) and (max-width: 1023px) {

}

/* Tablet yatay ve küçük laptop */
@media (min-width: 1024px) and (max-width: 1279px) {

}

/* Normal laptop & masaüstü */
@media (min-width: 1280px) and (max-width: 1535px) {

}

/* Büyük ekranlar */
@media (min-width: 1536px) {

}