* {
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
}

.header__area {
    position: relative;
}

.ana-menu-link {
    line-height: 32px;
    font-size: 13px !important;
    font-weight: 600 !important;
    font-family: Roboto, sans-serif !important;
    text-decoration: none;
    color: #cbd8e6 !important;
}

.has-dropdown > a {
    text-align: center;
    min-width: 110px !important;
}

.logo-container {
    top: 0;
    position: absolute;
    left: 0;
    right: 0;
    z-index: 99999;
    margin-inline: auto;
    width: fit-content;
}

.topbar-search,
.topbar-lang {
    display: inline-block;
    margin-left: 10px;
    vertical-align: top;
    height: 21px;
}

.topbar-links {
    width: auto;
    display: inline-block;
    margin-left: 10px;
}

.has-dropdown {
    line-height: 16px !important;
    margin: 0 !important;
    color: #bbb !important;
    font-weight: 700 !important;
    font-family: Roboto, sans-serif !important;
    padding: 0 !important;

}

.has-dropdown a:hover {
    background-color: #ffffff !important;
    color: #182958 !important;
    font-weight: bold;
}


.video-background {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100vh;
}

.video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
}

.video-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

.video-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
}

/* Videodaki 1. başlığın css özellikleri */
.video-content h1 {
    font-size: 5vw;
    /* %100 viewport genişliği */
    color: #fff;
    text-shadow: 2px 2px 4px #404040;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
}

/* Videodaki 2. başlığın css özellikleri */
.video-content p {
    font-size: 2.5vw;
    color: #fff;
    text-shadow: 4px 4px 4px #767575;
    font-family: 'Allura', cursive;
    font-weight: 250;
    font-style: normal;
    margin-top: 3vw;
    line-height: 96px;
}

/* Sosyal Medya CSS */

.sticky-icon {
    z-index: 1;
    position: fixed;
    top: 50%;
    right: 0%;
    width: 220px;
    display: flex;
    flex-direction: column;
}


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

    /* Mobil boyutta resimleri gizle */
    .sticky-icon {
        display: none;
    }
}

.sticky-icon a {
    transform: translate(160px, 0px);
    border-radius: 50px 0px 0px 50px;
    text-align: left;
    margin: 1px;
    text-decoration: none;
    text-transform: uppercase;
    padding: 10px;

    font-family: 'Oswald', sans-serif;
    transition: all 0.8s;
}

.sticky-icon a:hover {
    color: #FFF;
    transform: translate(0px, 0px);
}

.sticky-icon a:hover i {
    transform: rotate(360deg);
}

/*.search_icon a:hover i  {

transform:rotate(360deg);}*/

.Facebook {
    background-color: #2C80D3;
    color: #FFF;

    font-size: 15px;
    text-align: center;


}


.Youtube {
    background-color: #fa0910;
    color: #FFF;
    font-size: 15px;
    text-align: center;
}


.Twitter {
    background-color: #000000;
    color: #FFF;
    font-size: 15px;
    text-align: center;
}


.Instagram {
    background-color: #DD2A7B;
    color: #FFF;
    font-size: 15px;
    text-align: center;
}

.sticky-icon a i {
    background-color: #FFF;
    height: 40px;
    width: 40px;
    color: #000;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 20px;
    transition: all 0.5s;
}

.sticky-icon a i.fa-facebook-f {
    background-color: #FFF;
    color: #2C80D3;
}


.sticky-icon a i.fa-instagram {
    background-color: #FFF;
    color: #DD2A7B;
}


.sticky-icon a i.fa-youtube {
    background-color: #FFF;
    color: #fa0910;
}


.sticky-icon a i.fa-twitter {
    background-color: #FFF;
    color: #53c5ff;
}

.fas fa-shopping-cart {
    background-color: #FFF;
}

#myBtn {
    height: 50px;
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    text-align: center;
    padding: 10px;
    text-align: center;
    line-height: 40px;
    border: none;
    outline: none;
    background-color: #1e88e5;
    color: white;
    cursor: pointer;
    border-radius: 50%;
}

.fa-arrow-circle-up {
    font-size: 30px;
}


#myBtn:hover {
    background-color: #555;
}


.slider-container {
    position: relative;
    height: 400px; /* Slider yüksekliği */
    margin: 30px auto;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
    height: 100%;
    display: flex; /* Yeni ekleme */
    justify-content: center; /* Yeni ekleme */
    align-items: center; /* Yeni ekleme */
}

.slide img {
    width: 100%;
    height: auto; /* Yüksekliği otomatik ayarla */
    object-fit: contain; /* Resmin slider alanına tam oturmasını sağlar */
    display: block;
}

.slider-buttons {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.slider-buttons button {
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    padding: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slider-buttons button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.yokakLogo {
    height: 15px;
    display: inline-block;
    width: 23px;
    background-image: url("/img/icon/yokak.png") !important;
}