@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@700&display=swap');

* {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    box-sizing: border-box;
    user-select: none;
    font-family: 'Quicksand', sans-serif;
}

.container {
    width: 80%;
    margin: 0 auto;
}

/* header */

header {
    position: fixed;
    width: 100%;
    top: 20px;
    left: 0;
    z-index: 1000;
}

header img {
    width: 70px;
    border-radius: 20px;
}

header a {
    color: aliceblue;
    text-decoration: none;
}

.site-header__wrapper {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.nav__item a {
    display: block;
    padding: 1rem 1.1rem;
}

.nav__toggle {
    display: none;
}

section {
    margin-top: 200px;
    /* display: flex;
    flex-wrap: wrap; */

}

.imgs-hiss img {
    width: 150px;
    height: 150px;
    border-radius: 20px;
    object-fit: cover;
    flex: 6;
}

.imgs-hiss {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.imgs-hiss div {
    /* flex: 1 1 calc(10% - 10px); */
    box-sizing: border-box;
}

.dropdown .dropdown-menu {
    transform-origin: top center;
    will-change: transform, opacity;
    transition: transform 260ms cubic-bezier(.2, .9, .3, 1), opacity 260ms ease;
    opacity: 0;
    transform: translateY(-8px) scale(.98);
    pointer-events: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    overflow: hidden;
}

.dropdown.show .dropdown-menu,
.dropdown-menu.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.dropdown .dropdown-item {
    opacity: 0;
    transform: translateX(-8px);
    transition: transform 220ms cubic-bezier(.2, .9, .3, 1), opacity 220ms ease;
    transition-delay: 0s;
    padding: 10px 12px;
}

.dropdown.show .dropdown-item:nth-child(1) {
    transition-delay: 0.03s;
    opacity: 1;
    transform: translateX(0);
}

.dropdown.show .dropdown-item:nth-child(2) {
    transition-delay: 0.06s;
    opacity: 1;
    transform: translateX(0);
}

.dropdown.show .dropdown-item:nth-child(3) {
    transition-delay: 0.09s;
    opacity: 1;
    transform: translateX(0);
}

.dropdown.show .dropdown-item:nth-child(4) {
    transition-delay: 0.12s;
    opacity: 1;
    transform: translateX(0);
}

.dropdown.show .dropdown-item:nth-child(5) {
    transition-delay: 0.15s;
    opacity: 1;
    transform: translateX(0);
}

.dropdown.show .dropdown-item:nth-child(6) {
    transition-delay: 0.18s;
    opacity: 1;
    transform: translateX(0);
}

.dropdown .dropdown-item:hover,
.dropdown .dropdown-item:focus {
    transform: translateX(4px);
    background-color: rgba(0, 0, 0, 0.03);
}



/* img loop start */
/* Overlay tam ekran */
#img-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#overlay-img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    cursor: default;
}

#prev,
#next {
    position: absolute;
    top: 50%;
    font-size: 3rem;
    color: white;
    padding: 0 15px;
    cursor: pointer;
    user-select: none;
    transform: translateY(-50%);
    transition: 0.3s;
}

#prev:hover,
#next:hover {
    color: #ccc;
}

#prev {
    left: 10px;
}

#next {
    right: 10px;
}


/* img loop stop */






@media (max-width: 576px) {
    .dropdown .dropdown-menu {
        width: calc(100vw - 32px) !important;
        left: 16px !important;
        right: 16px !important;
    }
}

@media (prefers-reduced-motion: reduce) {

    .dropdown .dropdown-menu,
    .dropdown .dropdown-item {
        transition: none !important;
        transform: none !important;
        opacity: 1 !important;
        pointer-events: auto;
    }
}


@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateX(0) scale(0);
    }

    100% {
        opacity: 1;
        transform: translateX(0) scale();
    }
}


/* footer start */
.footer {
    /* background-color: #333; */
    /* color: #fff; */
    text-align: center;
    padding: 20px 0;
    position: relative;
    bottom: 0;
    width: 100%;
    border-top: 1px solid #020316;
    margin-top: 100px;
}

.box {
    width: 70px;
    height: 70px;
    border-radius: 50px;
    background-color: #f0f2f3;
    transition: box-shadow 0.3s ease;
}

.sosial-media {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding-bottom: 30px;
}

.sosial-media i {
    color: #020316;
    font-size: 30px;
    padding-top: 20px;
}

.box:hover {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}


/* footer end */




@media (min-width: 600px) {
    .site-header__wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 0;
        padding-bottom: 0;
    }
}

@media (min-width: 600px) {
    .nav__wrapper {
        display: flex;
    }
}

@media (max-width: 599px) {
    .site-header__wrapper a img {
        position: relative;
        z-index: 20;
    }

    .nav__wrapper {
        position: absolute;
        top: -20px;
        right: 0;
        left: 0;
        z-index: 10;
        text-align: center;
        padding-top: 40px;
        background-color: #020316;
        visibility: hidden;
        opacity: 0;
        transform: translateY(-100%);
        transition: transform 0.3s ease-out, opacity 0.3s ease-out;
    }

    .nav__wrapper.active {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 599px) {
    .nav__toggle {
        display: block;
        position: absolute;
        right: 1rem;
        top: 1rem;
        color: aliceblue;
    }
}

@media (max-width: 320px) {
    .site-header {
        width: 100%;
        display: flex;
    }

    .imgs-hiss img {
        width: 60px;
        height: 60px;
        border-radius: 10px;
        object-fit: cover;
        flex: 4;
    }

    .imgs-hiss {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .footer-content {
        padding: 0 10px;
    }

    .footer span {
        font-size: 14px;
        text-align: center;
    }

    .box {
        width: 50px;
        height: 50px;
        border-radius: 50px;
        background-color: #f0f2f3;
        transition: box-shadow 0.3s ease;
    }

    .sosial-media {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        padding-bottom: 30px;
    }

    .sosial-media i {
        color: #020316;
        font-size: 20px;
        padding-top: 15px;
    }
}

@media (min-width: 321px) and (max-width: 375px) {
    .imgs-hiss img {
        width: 80px;
        height: 80px;
        border-radius: 10px;
        object-fit: cover;
        flex: 4;
    }

    .imgs-hiss {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .nav__toggle {
        display: block;
        cursor: pointer;
        z-index: 1001;
    }
}

@media (max-width: 375px) {
    .site-header {
        width: 100%;
    }

    #dropdownMenu {
        margin-right: 27px;
    }

    .nav__toggle {
        display: block;
        cursor: pointer;
        z-index: 1001;
    }
}

@media (min-width: 376px) and (max-width: 425px) {
    .imgs-hiss {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .imgs-hiss img {
        width: 90px;
        height: 90px;
        border-radius: 20px;
        object-fit: cover;
        flex: 4;
    }

    .nav__toggle {
        display: block;
        cursor: pointer;
        z-index: 1001;
    }
}

@media (max-width: 425px) {
    .site-header {
        width: 100%;
    }

    .imgs-hiss {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #dropdownMenu {
        margin-right: 27px;
    }

    .nav__toggle {
        display: block;
        cursor: pointer;
        z-index: 1001;
    }
}

@media (min-width: 426px) and (max-width: 500px) {
    .imgs-hiss {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

@media (min-width: 426px) and (max-width: 768px) {
    .imgs-hiss {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .site-header {
        width: 100%;
    }

    .imgs-hiss {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .nav__toggle {
        display: block;
        cursor: pointer;
        z-index: 1001;
    }
}