* {
    margin: 0;
    padding: 0;
}

body {
    background-color: white;
}

a {
    cursor: pointer;
}

a:hover {
    text-decoration: none;
}


.header {
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: #FFD700;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.header .container {
    width: 75%;
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    background-color: white;
    height: 200px;
    width: 200px;
    border-radius: 32px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
    position: relative;
}

.logo img {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 60%;
    left: 50%;
}

.nav {
    gap: 40px;
    display: flex;
    align-items: center;
}

.nav-desktop {
    gap: 40px;
    display: flex;
    align-items: center;
}

@media screen and (max-width: 1300px) {
    .nav-desktop {
        display: none;
    }
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-item svg {
    color: black;
}

.nav-item p {
    color: black;
    font-size: 20px;
    font-weight: bold;
}

.nav-item.special {
    border-radius: 10px;
    background-color: #DC143C;
    padding: 10px;
    padding-left: 20px;
    padding-right: 20px;
    transition: .3s ease;
}

@media screen and (max-width: 500px) {
    .logo {
        background-color: #FFD700;
        border: none;
        height: auto;
        width: auto;
        box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
        position: static;
    }
    
    .logo img {
        position: static;
        transform: none;
        width: 60px;
    }
}

.nav-item.special:hover {
    box-shadow: rgba(220, 20, 60, 0.25) 0px 54px 55px, rgba(220, 20, 60, 0.12) 0px -12px 30px, rgba(220, 20, 60, 0.12) 0px 4px 6px, rgba(220, 20, 60, 0.17) 0px 12px 13px, rgba(220, 20, 60, 0.09) 0px -3px 5px;
}

.nav-item.special p {
    color: white
}

@media screen and (max-width: 768px) {
    .header .container {
        width: 90%;
    }

    .bottom-nav .container {
        width: 90%;
    }

    .top-footer .container {
        width: 90%;
    }

    .bottom-footer .container {
        width: 90%;
    }

    .banners .container {
        width: 90%;
    }

    .bottom-banners .container {
        width: 90%;
    }
}

.banners {
    width: 100%;
    display: flex;
    justify-content: center;
}

.banners img {
    width: 500px;
}

.banners .container {
    width: 75%;
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.bottom-banners {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 80px;
}

.bottom-banners img {
    width: 200px;
}

.bottom-banners .container {
    width: 75%;
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}



.footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 0;
}

.top-footer {
    width: 100%;
    display: flex;
    justify-content: center;
    height: 200px;
}

.top-footer .container {
    width: 75%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.bottom-footer {
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: black;
    color: white;
    height: 50px;
}

.bottom-footer .container {
    width: 75%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-list {
    display: flex;
    flex-direction: column;
    gap:5px;
}

.footer-list a {
    color: gray;
}

.footer-header {
    font-weight: 600;
}

.bg {
    padding-top: 80px;
    padding-bottom: 80px;
    background: url('https://kebanet.restapp.com/assets/img/by_bg0523.png') top center no-repeat !important;
}