* {
    margin: 0px;
    padding: 0px;
}

.main-section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
    margin-top: 150px;
    margin-bottom: 150px;
}

.one-day {
    background-color: #f5f5f5;
    width: 343.667px;
    height: 356.667px;
    align-items: center;
}

.three-day {
    background-color: #f5f5f5;
    width: 400.667px;
    height: 356.667px;
    margin-left: 50px;
}

.day1 {
    text-align: center;
}

    .day1 img {
        width: 50px;
        margin-bottom: 10px;
        margin-left: 0px;
    }

    .day1 h3 {
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 0px;
        color: #f5f5f5;
    }

    .day1 a {
        color: black;
        border-radius: 5px;
        font-size: 30px;
    }


.day3 {
    text-align: center;
    margin-top: 120px;
}

    .day3 img {
        width: 60px;
        margin-bottom: 12px;
    }

    .day3 h3 {
        text-transform: uppercase;
        margin-bottom: 0px;
    }

    .day3 a {
        color: black;
        border-radius: 5px;
        font-size: 30px;
    }



.collapse .navbar-nav .nav-item .nav-link:hover {
    color: #1ABC9C;
}

.navbar-nav {
    font-weight: 700;
}

.collapse .navbar-nav .nav-item .nav-link {
    letter-spacing: 1px;
    font-weight: bold;
    font-weight: 900;
}

.main1 {
    display: inline-block;
    height: 100px;
    width: 200px;
}

    .main1 ul li ul li {
        color: yellowgreen;
    }


.title {
    text-align: center;
    font-size: 44px;
    padding: 50px;
    color: #fff;
}

.main {
    display: inline-block;
    margin: 30px;
    position: relative;
    text-align: left;
}

.list {
    width: 100%;
    position: absolute;
    z-index: 1;
    top: 45px;
    left: 0px;
    border-top: 1px solid #eee;
    visibility: hidden;
    opacity: 0;
    cursor: pointer;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

.item {
    width: 100%;
    line-height: 45px;
    padding-left: 20px;
    background-color: #fff;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    font-weight: 400;
}

    .item:hover {
        background-color: #eee;
    }



#drop-1:checked ~ .list-1 {
    visibility: visible;
    opacity: 1;
    z-index: 10;
}


.list-3 {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    z-index: 10;
}

#drop-3:checked ~ .list-3 {
    visibility: visible;
    opacity: 2;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
}


:root {
    --dropdown-width: 343px;
}

/* Center the planet */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #222229;
}

/* Boring button styles */
a.button {
    display: inline-block;
    padding: 10px 50px;
    border-radius: 50px;
    box-sizing: border-box;
    border: none;
    background: var(--button-background);
    color: var(--button-color);
    cursor: pointer;
    margin-left: 15px;
}


.dropdown {
    position: relative;
    padding: 0;
    margin-right: 1em;
    border: none;
}

    .dropdown summary {
        list-style: none;
        list-style-type: none;
    }

    .dropdown > summary::-webkit-details-marker {
        display: none;
    }

    .dropdown summary:focus {
        outline: none;
    }

        .dropdown summary:focus a.button {
            /*border: 2px solid white;*/
        }

    .dropdown summary:focus {
        outline: none;
    }

    .dropdown ul {
        position: absolute;
        margin: 17px 0 0 0;
        padding: 20px 0;
        width: var(--dropdown-width);
        left: 56%;
        margin-left: calc((var(--dropdown-width) / 2) * -1);
        box-sizing: border-box;
        z-index: 2;
        background-color: lightgray;
        list-style: none;

    }

        .dropdown ul li {
            padding: 0;
            margin: 0;
            text-align: left;
            margin-top: -25px;
        }

            .dropdown ul li a span {
                color: #000;
                justify-content: end;
                display: flex;
                margin-top: -26px;
            }

            .dropdown ul li a:link, .dropdown ul li a:visited {
                display: inline-block;
                box-sizing: border-box;
                text-decoration: none;
                color: #000;
                font-size: 17px;
            }


        .dropdown ul::before {
            content: ' ';
            position: absolute;
            width: 0;
            height: 0;
            top: -10px;
            left: 50%;
            margin-left: -10px;
            border-style: solid;
            border-width: 0 10px 10px 10px;
            border-color: transparent transparent var(--dropdown-background) transparent;
            display: none;
        }


    /* Close the dropdown with outside clicks */
    .dropdown > summary::before {
        display: none;
    }

    .dropdown[open] > summary::before {
        content: ' ';
        display: inline-block;
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
        z-index: 1;
    }




.day1 p {
    margin-bottom: 0px;
    color: #f5f5f5;
    margin-top: 20px;
    font-size: 15px;
}



p {
    margin: 0;
}



.wrapper {
    min-width: min(10rem, 20%);
}

/* .box */
.one-day {
    font-size: 3vw;
    margin: max(1rem, 3vw);
    border: 0.35rem solid;
    padding: 3vw;
    border-image: conic-gradient(from var(--angle), var(--c2), var(--c1) 0.1turn, var(--c1) 0.15turn, var(--c2) 0.25turn) 30;
    animation: borderRotate var(--d) linear infinite forwards;
}

    .one-day:nth-child(2) {
        border-image: radial-gradient(ellipse at var(--gradX) var(--gradY), var(--c1), var(--c1) 10%, var(--c2) 40%) 30;
        animation: borderRadial var(--d) linear infinite forwards;
    }



    /* new animation  */

    .one-day .day1 .main .dropdown ul li a::before {
        content: '';
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        transition: .5s;
        transform: scale(.9);
        z-index: -1;
    }


.btn1 {
    display: flex;
    font-size: 13px;
    margin-top: 5px;
}

    .btn1 button:hover {
        color: #eee;
    }

    .btn1 button:hover {
        background-color: #1ABC9C;
    }



ul li a .glow-on-hover {
    width: 150px;
    height: 35px;
    border: none;
    outline: none;
    background: #111;
    cursor: pointer;
    position: relative;
    z-index: 0;
}


.glow-on-hover:active {
    /*color: #fff*/
}

.glow-on-hover {
    color: #fff;
}


@keyframes glowing {
    0% {
        background-position: 0 0;
    }

    50% {
        background-position: 400% 0;
    }

    100% {
        background-position: 0 0;
    }
}


@media only screen and (max-width: 1800px) {
    .button {
        margin-top: 25px;
    }

    .day1 h3 {
        margin-top: 30px;
    }

    .day1 p {
        margin-top: 30px;
    }

    .day1 p {
        margin-top: 20px;
    }
}

/* media  */
@media only screen and (max-width: 1600px) {
    .button {
        margin-top: 25px;
    }

    .day1 h3 {
        margin-top: 30px;
    }

    .day1 p {
        margin-top: 30px;
    }

    .day1 p {
        margin-top: 20px;
    }
}

@media only screen and (max-width: 1500px) {
    .button {
        margin-top: 25px;
    }

    .day1 h3 {
        margin-top: 30px;
    }

    .day1 p {
        margin-top: 30px;
    }

    .day1 p {
        margin-top: 20px;
    }
}


@media only screen and (max-width: 1500px) {
    .button {
        margin-top: 25px;
    }

    .day1 h3 {
        margin-top: 30px;
    }

    .day1 p {
        margin-top: 30px;
    }

    .day1 p {
        margin-top: 20px;
    }
}

@media only screen and (max-width: 1300px) {
    .button {
        margin-top: 25px;
    }

    .day1 h3 {
        margin-top: 50px;
    }

    .day1 p {
        margin-top: 30px;
    }

    .day1 p {
        margin-top: 20px;
    }

    .day1 img {
        margin-top: 20px;
    }
}

}

@media only screen and (max-width: 800px) {
    .button {
        margin-top: 50px;
    }

    .day1 h3 {
        margin-top: 30px;
    }

    .day1 p {
        margin-top: 30px;
    }

    .day1 p {
        margin-top: 20px;
    }
}



@media only screen and (max-width: 600px) {
    .main-section {
        display: inline;
        margin-top: 20px;
        z-index: 1;
    }

    .one-day {
        /* z-index: 1; */
        align-items: center;
        margin: 0 auto;
        margin-top: 110px;
        height: 300px;
        width: 300px;
        z-index: 1;
    }

    footer {
        margin-top: 330px;
    }

    a.button {
        margin-top: 10px;
    }

    .one-day h3 {
        margin-top: 35px;
    }

    .dropdown ul {
        position: absolute;
        margin: 0px 0 0 0;
        padding: 0px 0;
        left: 56%;
        margin-left: calc((var(--dropdown-width) / 2) * -1);
        box-sizing: border-box;
        z-index: 2;
        background-color: lightgray;
        list-style: none;
        overflow-y: scroll;
        height: 35vh;
        z-index: 1;
    }
}
