﻿/*
    By Creatrix Ideas 
    Developer: Anıl Çıtlak
    2024 May
    ************************************************
    Global Structure CSS
    ************************************************
*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

html, body {
    font-family: 'Poppins', sans-serif;
    font-size: var(--text-primary-size);
    font-weight: var(--font-primary-weight);
    color: var(--font-primary-size);
    height: 100%;
    letter-spacing: 1px;
    line-height: 18px;
}

.cix-header-container{
    display:block;
    max-width:1200px;
    width:100%;
    margin: 0 auto;
    margin-bottom:50px;
}

.page-container {
    display: block;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    line-height:28px;
}



.page-container h1 {
    font-size: 28px;
    padding: 25px 0;
    border-bottom: 1px solid #ff0000;
    margin-bottom: 25px;
}

.slider-container {
    display: block;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    line-height: 28px;
}

    .slider-container > img {
        width: 100%;
        border-radius: 10px;
    }

.shadow-slider {
    background: url(../Images/Main/shadow_slide.png) top center no-repeat;
    height: 60px;
    opacity: 0.5;
}

.dropdown-item {
    padding: 15px 20px;
    border-bottom: 1px solid #dedede;
}


.dropdown-item:last-child {
    border-bottom: none;
}


.font-size-12{
    font-size:12px;
}

@media screen and (max-width:480px) {
    .page-container {
        width: 92%;
        margin: 0 4%;
        line-height: 28px;
    }

        .page-container h1 {
            font-size: 20px;
            padding: 15px 0;
            margin-bottom: 15px;
        }
}