@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');

@font-face {
    font-family: 'Poppins';
    src: url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

header {
    font-family: 'Poppins', sans-serif;
}

.logo img {
    max-height: 80px;
}

.logo {
    max-height: 80px;
    margin-left: 200px;
}

.navbar{
    margin-right: 30px;
}

@media (max-width:1300px){
    .logo {
        margin-left: 100px;
    }
}

@media (max-width:1160px){
    .logo {
        margin-left: 30px;
    }
}

@media (max-width:1569px){
    .logo {
        margin-left: 50px;
    }
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background-color: #fff;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.header:hover::after {
    left: 100%;
}

.logo {
    font-size: 2rem;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

.navbar a {
    position: relative;
    font-size: 15px;
    color: #000000;
    text-decoration: none;
    letter-spacing: 1px;
    font-weight: 700;
    margin-left: 2.0rem;
}

.navbar a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: rgb(0, 0, 0);
    transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
}

.navbar a:hover::after {
    width: 100%;
    left: 0;
}

#check {
    display: none;
}

.icons {
    position: absolute;
    right: 5%;
    font-size: 2.8rem;
    color: #fff;
    cursor: pointer;
    display: none;
}

.slick-prev,
.slick-next {
    display: none !important;
}

.slick-dots {
    display: none !important;
}

@media (max-width:1267px) {
    .icons {
        display: inline-flex;
    }

    #check:checked~.icons #menu-icon {
        display: none;
    }

    .icons #close-icon {
        display: none;
    }

    #check:checked~.icons #close-icon {
        display: block;
    }

    .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: 0;
        background: #fff;
        backdrop-filter: blur(50px);
        box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
        overflow: hidden;
        transition: .3s ease;
        z-index: 1001;
    }

    #check:checked~.navbar {
        height: 26rem;
    }

    .navbar a {
        display: block;
        font-size: 1.1rem;
        margin: 1.5rem 0;
        text-align: center;
        transform: translateY(-50px);
        opacity: 0;
        transition: .3s ease;
    }

    #check:checked~.navbar a {
        transform: translateY(0);
        transition-delay: calc(.15s * var(--i));
        opacity: 1;
    }

    .navbar a:hover::after {
        display: none;
    }

}

@media (min-width:768px) and (max-width:888px){
    .navbar a::after{
        display: none;
    }
}

/* Whatsapp Butonu */

a.whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366;
    border-radius: 50%;
    text-decoration: none;
    z-index: 1000;
}

a.whatsapp {
    color: #fff;
    font-size: 24px;
    z-index: 1000;
}

a.instagram {
    position: fixed;
    right: 100px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #E1306C;
    border-radius: 50%;
    text-decoration: none;
    z-index: 1000;
}

a.instagram {
    color: #fff;
    font-size: 24px;
    z-index: 1000;
}

a.facebook {
    position: fixed;
    right: 180px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #3b5998;
    border-radius: 50%;
    text-decoration: none;
    z-index: 1000;
}

a.facebook {
    color: #fff;
    font-size: 24px;
    z-index: 1000;
}

@media (max-width:375px){
    .logo{
        margin-left: 0;
    }
}


/* Boncuk için gerekli stiller */
.continue-circle-1 {
    position: absolute;
    top: -5px; /* İlgili konumu ayarlamak için değerler */
    left: -15px;
    width: 10px;
    height: 10px;
    background-color: #fa9e35;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
    animation: pulse-dot 1.25s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
}

.continue-circle-1:before {
    content: '';
    position: absolute;
    width: 300%;
    height: 300%;
    margin-left: -100%;
    margin-top: -100%;
    border-radius: 50%;
    background-color: #fa9e35;
    animation: pulse-ring 1.25s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(.33);
    }

    80%,
    100% {
        opacity: 0;
    }
}

@keyframes pulse-dot {
    0% {
        transform: scale(.8);
    }

    50% {
        transform: scale(1);
    }

    100% {
        transform: scale(.8);
    }
}
