* {
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
}

:root {
    --color-primary: #252C46;
    --color-secondary: #0068a3;
    --color-tertiary: #eaeaea;
    --get-ticket-color: #fbdd00;
    --color-gray: #656565;
    --color-learnmore-btn: #37446B;
    --color-footer-border: #e5e5e5;
    --color-footer-bg: #f4f4f4;
    --color-title-underline: #0099FF
}

/*imp! COMMON CSS */

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100dvh;
}

p,
a {
    font-family: 'Roboto';
}

.common__div {
    background-color: #fff;
}

/*imp! HEADER */


header {
    height: 5rem;
    width: 100%;
    background-color: white;
    box-shadow: 0rem 0.25rem 0.938rem #00000010;
    position: fixed;
    z-index: 50;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease-in-out;
}

.header-top {
    display: flex;
    flex: 1 1 100%;
    width: 100%;
    padding: 0.5rem 8%;
    justify-content: space-between;
    align-items: center;
    background-color: var(--color-primary);
    color: #fff;
    font-family: 'Roboto';
    font-size: 1.1rem;
    gap: 2rem;

}

.opening-hours-div {
    max-width: 62%;
    mask: linear-gradient(90deg, transparent, #fff 15%, #fff 85%, transparent);
    -webkit-mask: linear-gradient(90deg, transparent, #fff 15%, #fff 85%, transparent);

}

.opening-hours-div-inner {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    gap: 3rem;
    user-select: none;
    animation: scroll 20s linear infinite;

}

@keyframes scroll {
    to {
        transform: translate(calc(-50% - 1.5rem));
    }
}

.opening-hours {
    flex-shrink: 0;
    display: flex;
    align-items: center;


    p {
        width: 100%;
        font-size: 1rem;
    }
}

.header-login-main {
    display: flex;
    justify-content: flex-end;
    flex: 1 1 38%;
    gap: 1.5rem;
    transition: all 0.2s ease-in-out;
}

.header-login-main a {
    text-decoration: none;
    color: #fff;
    font-size: 1.1rem;
}

.header-member {
    display: flex;
    gap: 1rem;
}

.header-member:hover>span {
    color: var(--get-ticket-color);
}

.header-member:hover>i {
    color: var(--get-ticket-color);
}

.header-view-cart {
    display: flex;
    gap: 1rem;
}

.header-view-cart:hover>span {
    color: var(--get-ticket-color);
}

.header-view-cart:hover>i {
    color: var(--get-ticket-color);
}

.desktop-nav {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    width: 100%;
    margin: 0%;
}

.logo-div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 6.5rem;
    padding: 1.5rem 8%;
    background-image: linear-gradient(90deg, #074191, #006473, #0290e2, #006473, #074191);
    background-size: 200% auto;
    animation: topAnimation 4s linear infinite;
}

@keyframes topAnimation {
    to {
        background-position: 200%;
    }
}

.logo {
    width: 15.5rem;
}

.logo img {
    width: 100%;
}

.logo-div-right {
    display: flex;
    color: #fff;
    font-family: 'Roboto';
    font-size: 1.15rem;
    gap: 1rem;
}

.get-ticket-div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--get-ticket-color);
    padding: 0.7rem 1.2rem;
    text-decoration: none;
    color: #000000;
    font-weight: 600;
    transition: all 0.2s ease-in-out;
    cursor: pointer;

    &:hover {
        background-color: #000000;
        color: #fff;
    }
}

.get-ticket-div i {
    rotate: -45deg;
    font-size: 1.5rem;

}

.join-today-div {
    text-decoration: none;
    background-color: #fff;
    padding: 0.7rem 2.2rem;
    color: #000000;
    font-weight: 600;
    transition: all 0.2s ease-in-out;
    cursor: pointer;

    &:hover {
        background-color: #000000;
        color: #fff;
    }
}

.nav-div {
    width: 100%;
    display: flex;
    justify-content: space-between;
    background-color: #fff;
    box-shadow: 0rem 0.50rem 0.950rem #00000010;
    padding: 0rem 8%;

}

.nav-links {
    display: flex;
    list-style: none;
    z-index: 80;
    gap: 2rem;
    height: 3rem;
}

.nav-links a {
    display: flex;
    text-decoration: none;
    list-style-type: none;
    font-size: 1.25rem;
    font-weight: 500;
    color: #000;

}

.nav-links li {
    display: flex;
    transition: all 0.5s ease-in-out;
    align-items: center;
}

.nav-links li:hover {
    text-decoration: underline;
}


.c-open-menu,
.c-close-menu {
    position: absolute;
    color: #000000;
    cursor: pointer;
    font-size: 1.5rem;
    display: none;

}

.c-open-menu {
    color: #fff;
    top: 75%;
    right: 8%;
    transform: translateY(-50);
}

.c-close-menu {
    top: 2rem;
    right: 2rem;
}

.nav-icons i {
    padding-left: 1.7rem;
    font-size: 1.1rem;
    cursor: pointer;
}

.search-box {
    display: flex;
    height: 2rem;
    width: 9rem;
    cursor: pointer;
    background-color: #ffffffbb;
    align-items: center;
    transition: all 0.2s ease-in;
    padding-left: 0.5rem;
    border-radius: 0.3rem;
    border: 2px solid rgb(192, 192, 192);


}

.search-box:hover {
    background-color: var(--color-primary);
    color: #fff;
    width: 13.5rem;
}

.search-box:hover input {
    width: 15em;
    color: #fff;
}

.search-box:hover input::placeholder {
    color: #fff;
}

.search-box:hover .fa-solid {
    color: #fff;
}

.search-box a i {
    padding-left: 0;
    color: #000000;
}

.search-box input {
    width: 0;
    outline: none;
    border: transparent;
    transition: all 0.2s ease-in;
    background: transparent;
    font-family: 'Roboto';
    font-size: 1rem;
}

.checkbox {
    display: none;
}

@media (width <850px) {

    .nav-links a {
        font-weight: 500;

    }



    .nav-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 80%;
        height: 100dvh;
        position: fixed;
        top: 0%;
        right: -100%;
        z-index: 100;
        background-color: #fff;
        transition: all 0.5s ease-in-out;
    }

    .nav-links li {
        transition: all 0.5s ease-in-out;
        display: flex;
        justify-content: center;
        width: 100%;
        background-color: #ebebeb;
        ;

    }

    .nav-links li .nav-item {
        padding: 1rem 2rem;
        color: #000000;
        width: 100%;
        transition: all 0.5s ease-in-out;
    }


    .c-open-menu,
    .c-close-menu {
        display: flex;
    }

    .c-close-menu i {
        color: #000000;
    }

    #check:checked~.nav-div .nav-links {
        right: 0%;
    }

}

.nav-icons {
    display: flex;
    align-items: center;
    height: 3rem;
}

@media (width<850px) {

    .header-top {
        font-size: 1rem;
    }

    .header-login-main {
        gap: 2.1rem;
    }

    .header-member span {
        display: none;
    }

    .header-view-cart span {
        display: none;
    }

    .logo-div {
        height: 4.5rem;
    }

    .logo {
        width: 9rem;
    }

    .logo-div-right {
        position: fixed;
        bottom: 0;
        left: 0;
        justify-content: center;
        background-color: var(--color-primary);
        width: 100%;
    }

    .logo-div-right {
        justify-content: center;
    }
}

@media (width<450px) {
    .logo-div-right {
        font-size: 1rem;
        flex: 1 1 100%;
        gap: 0;
    }

    .get-ticket-div {
        flex: 1 1 50%;
        justify-content: center;
    }

    .join-today-div {
        flex: 1 1 50%;
        background-color: var(--color-primary);
        color: #fff;
    }

}

/*imp! SECTION-1 */

.breadcrumb {
    padding: 0.5rem 8%;
}

.breadcrumb i {
    padding-top: 13.5rem;
}

.breadcrumb a {
    text-decoration: none;
    color: #000000;
}

.breadcrumb a {
    font-size: 1.2rem;
    font-size: 400;
    padding-top: 2rem;
    color: #000000;
}

.breadcrumb a:hover {
    color: var(--color-primary);
}

@media (width<850px) {
    .breadcrumb i {
        padding-top: 11rem;
    }

    .breadcrumb a {
        font-size: 1.1rem;
    }
}

.section-1-energy {
    padding: 1.9rem 8% 0;

    h1 {
        font-family: "Playfair Display", serif;
        font-size: clamp(1.5rem, 1.1rem + 2vw, 3.5rem);
        color: #000000;
        padding-bottom: 2rem;
    }
}

.section-1-energy-img-div img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/*imp! SECTION-2 */


.section-2-energy {
    padding: 0 8%;
}

.section-2-energy-content-coponent {
    padding: 2rem 4rem;
    background-color: var(--color-tertiary);
}

.section-2-energy-title-div {
    display: flex;
    justify-content: space-between;
    padding-bottom: 3rem;
    height: auto;

    span {
        font-size: 1.3rem;
        font-weight: 400;
        font-family: 'Roboto';
        color: #000000;

    }

    h2 {
        font-size: 2rem;
        font-weight: 500;
        padding-top: 0.5rem;
        font-family: 'Roboto';
        color: #000000;
    }

    p {
        font-size: 1.3rem;
        padding-top: 0.5rem;
        font-weight: 400;
        color: #000000;

    }
}

.section-2-energy-title p:nth-child(3) {
    font-weight: 600;
}

.get-ticket-energy {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--color-secondary);
    padding: 0.7rem 1.2rem;
    color: #fff;
    font-weight: 600;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    text-decoration: none;
    border: 2px solid var(--color-secondary);
    transition: all 0.3s ease-in-out;

}

.get-ticket-energy i {
    rotate: -45deg;
    font-size: 1.5rem;
    transition: all 0.3s ease-in-out;
}

.get-ticket-energy p {
    font-size: 1.2rem;
    font-weight: 400;
    color: #fff;
    padding: 0;
    transition: all 0.3s ease-in-out;
}

.get-ticket-energy:hover {
    background-color: #fff;
    border: 2px solid #000000;
}

.get-ticket-energy:hover>i {
    color: #000000;
}

.get-ticket-energy:hover>p {
    color: #000000;
}

.section-2-energy-content h3 {
    font-family: 'Roboto';
    font-size: 1.3rem;
    font-weight: 500;
    padding-bottom: 3rem;
}

.section-2-energy-content p {
    font-family: 'Roboto';
    font-size: 1.1rem;
    text-align: justify;
    font-weight: 400;
    padding-bottom: 2rem;
    line-height: 1.5rem;
}

@media (width<850px) {
    .section-1-energy-img-div {
        width: 100%;
        height: 21rem;
    }

    .section-1-energy {
        padding: 1rem 8% 0;

        h1 {
            padding-bottom: 1rem;
        }
    }

    .section-2-energy-title-div {
        flex-direction: column;

        h2 {
            font-size: 1.5rem;
        }

        p {
            font-size: 1.2rem;
        }
    }

    .section-2-energy-title {
        order: 2;
    }

    .get-ticket-energy {
        justify-content: center;
        max-width: 12rem;
        margin-bottom: 2rem;
    }
}

@media (width<600px) {
    .section-1-energy-img-div {
        width: 100%;
        height: 21rem;
    }

    .section-1-energy {
        padding: 0;

        h1 {
            padding: 0 8%;
            padding-bottom: 1rem;
        }
    }

    .section-2-energy {
        padding: 0;
    }

    .section-2-energy-content-coponent {
        padding: 8%;
    }

    .section-2-energy-title-div {
        flex-direction: column;
        padding-bottom: 2rem;

        h2 {
            font-size: 1.3rem;
        }

        p {
            font-size: 1rem;
        }

        span {
            font-size: 1.1rem;
        }
    }

    .section-2-energy-content h3 {
        font-size: 1.2rem;
        padding-bottom: 2rem;
    }

    p {
        font-size: 1rem;
    }

    .get-ticket-energy {
        padding: 0.5rem 1rem;
    }
}


/*imp! SECTION-3 */

.get-involved {
    padding: 1rem 8% 4rem;
    background-color: var(--color-primary);
}

.get-involved-text {
    padding-top: 2rem;
    padding-bottom: 4rem;
    display: flex;
    justify-content: center;

    h2 {
        font-family: "Playfair Display", serif;
        font-size: clamp(1.4rem, 1.1199999999999999rem + 1.4vw, 2.8rem);
        font-weight: 600;
        color: #fff;
        text-decoration: underline;
    }
}

.get-involved-component {
    display: grid;
    gap: 3rem;
    grid-template-columns: repeat(3, 1fr);
}

.get-involved-list {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    height: auto;
}

.get-involved-list-img {
    width: 100%;
    height: auto;

    img {
        width: 100%;
    }
}

.get-involved-list-content {
    padding: 1rem 2rem;
    width: 100%;
    height: auto;

    span {
        font-family: 'Roboto';
        font-size: 1.1rem;
        font-weight: 400;
        text-align: justify;
        color: var(--color-gray);
    }

    h3 {
        font-family: 'Roboto';
        font-size: 1.2rem;
        font-size: clamp(1.2rem, 1.0799999999999998rem + 0.6000000000000001vw, 1.8rem);
        color: #000000;
        font-weight: 500;
        padding-top: 0.7rem;
        padding-bottom: 0.7rem;
        line-height: 1.5rem;
    }

    p {
        font-size: 1.2rem;
        font-weight: 400;
        text-align: justify;
        color: var(--color-gray);
    }
}

#get-involved-read-more-1 {
    display: none;
}

#get-involved-read-more-1:checked~.read-more-text-1 {
    display: block;
}

#get-involved-read-more-1:checked~label {
    display: none;
}

#get-involved-read-more-2 {
    display: none;
}

#get-involved-read-more-2:checked~.read-more-text-2 {
    display: block;
}

#get-involved-read-more-2:checked~label {
    display: none;
}

#get-involved-read-more-3 {
    display: none;
}

#get-involved-read-more-3:checked~.read-more-text-3 {
    display: block;
}

#get-involved-read-more-3:checked~label {
    display: none;
}

.read-more-common {
    display: none;
    padding-top: 1rem;
}


.get-involved-lable-common {
    display: inline-block;
    cursor: pointer;
    color: #fff;
    background-color: var(--color-secondary);
    padding: 0.5rem 1rem;
    font-family: 'Roboto';
    font-size: 1.1rem;
    font-weight: 400;
    border-radius: 0.2rem;
    margin-top: 0.2rem;
    transition: all 0.2s ease-in-out;

}

.get-involved-lable-common:hover {
    background-color: #000000;
    color: #fff;
}

@media (width<1080px) {
    .get-involved-component {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
    }
}

@media (width<850px) {
    .get-involved-component {
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }
}

@media (width<600px) {
    .get-involved {
        padding: 0 8% 3rem;
    }

    .get-involved-text {
        padding-bottom: 2rem;
    }

    .get-involved-component {
        gap: 1rem;
    }

    .get-involved-list-content p {
        font-size: 1rem;
    }
}

/*imp! FOOTER */


.footer-main-container {
    height: 5rem;
    width: 100%;
    background-color: #616881;
}

.footer-row-1 {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    padding: 0 8%;
    padding-top: 1.3rem;


}

.footer-row-1-left {
    display: flex;
    justify-content: flex-start;
    flex: 1 1 40%;

    h3 {
        font-family: 'Roboto';
        font-size: 1.5rem;
        color: #fff;
        font-weight: 400;
    }
}

.footer-row-1-right {
    display: flex;
    justify-content: flex-start;
    flex: 1 1 60%;


    input {
        background-color: white;
        width: 100%;
        height: 2.3rem;
        border-radius: 0.2rem;
        border: transparent;
        padding-left: 1rem;
        font-size: 1.1rem;
    }
}

.footer-row-1-right input::placeholder {
    color: var(--color-gray);
    padding-left: 1rem;
    font-size: 1rem;
}

.footer-row-1-right input:focus {
    outline-width: 0;
}

.footer-row-2-main-container {
    height: auto;
    display: flex;
    gap: 3rem;
}

.footer-row-2-left {
    padding-left: 8%;
    padding-top: 4rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;

    h4 {
        font-family: 'Roboto';
        font-size: 1.1rem;
        font-weight: 500;
        color: #000000;
    }

    p {
        font-size: 1rem;
        font-weight: 400;
        color: #000000;
    }

    span {
        font-family: 'Roboto';
        font-size: 1.1rem;
        font-weight: 500;
        color: #000000;
    }
}

.footer-logo-div {
    width: 13rem;
    height: auto;

    img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}

.footer-row-2-right {
    width: 100%;
    background-color: var(--color-footer-bg);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-template-rows: 1.5fr 0.8fr;
}

.footer__row__2__right_common {
    display: flex;
    flex-direction: column;
}

.footer-row-2-right-list-5 {
    grid-column: span 2;
}

.footer-row-2-right-list-1 {
    display: grid;
    padding: 4rem 1rem 2rem 1rem;
    border: 1px solid var(--color-footer-border);
    gap: 1rem;

    h4 {
        font-family: 'Roboto';
        font-size: 1.1rem;
        font-weight: 500;
        color: #000000;
    }

    p {
        font-size: 1rem;
        font-weight: 400;
        color: #000000;
    }


}

.footer__row__2__right_common a:hover {
    color: var(--color-primary);
}

.footer-row-2-right-list-1 .footer-tel {
    padding-top: 1rem;
}

.footer-row-2-right-list-2 {
    display: flex;
    flex-direction: column;
    padding: 4rem 1rem 2rem 1rem;
    border: 1px solid var(--color-footer-border);
    gap: 1.2rem;

    h4 {
        font-family: 'Roboto';
        font-size: 1.1rem;
        font-weight: 500;
        color: #000000;
    }

    a {
        text-decoration: none;
        font-size: 1rem;
        font-weight: 400;
        color: #000000;
    }
}

.footer-row-2-right-list-3 {
    display: flex;
    flex-direction: column;
    padding: 4rem 1rem 2rem 1rem;
    border: 1px solid var(--color-footer-border);
    gap: 1.2rem;

    h4 {
        font-family: 'Roboto';
        font-size: 1.1rem;
        font-weight: 500;
        color: #000000;
    }

    a {
        text-decoration: none;
        font-size: 1rem;
        font-weight: 400;
        color: #000000;
    }

}

.footer-row-2-right-list-4 {
    display: flex;
    flex-direction: column;
    padding: 2.5rem 1rem 2rem 1rem;
    border: 1px solid var(--color-footer-border);
    gap: 0.7rem;


    h4 {
        font-family: 'Roboto';
        font-size: 1.1rem;
        font-weight: 500;
        color: #000000;
    }

    i {
        font-size: 1.5rem;
        transition: all 0.2s ease-in-out;
    }

    .fa-square-facebook:hover {
        scale: 110%;
        color: #1877F2;
    }

    .fa-instagram:hover {
        scale: 110%;
        color: #e4107a;
    }

    .fa-pinterest:hover {
        scale: 110%;
        color: #BD081C;
    }

    .fa-x-twitter:hover {
        scale: 110%;
        color: #000000;
    }

    .fa-youtube:hover {
        scale: 110%;
        color: #E62117;
    }



    .footer-social-media-icons {
        display: flex;
        gap: 0.7rem;

        a {
            color: var(--color-primary);
        }
    }
}

.footer-row-2-right-list-5 {
    display: flex;
    flex-direction: column;
    padding: 2.5rem 1rem 2rem 1rem;
    border: 1px solid var(--color-footer-border);
    gap: 1.2rem;

    h4 {
        font-family: 'Roboto';
        font-size: 1.1rem;
        font-weight: 500;
        color: #000000;
    }

    input {
        background-color: white;
        width: 80%;
        height: 2.7rem;
        border-radius: 0.2rem;
        border: transparent;
        padding-left: 1rem;
        font-size: 1.1rem;
    }
}

.footer-row-2-right-list-5 input::placeholder {
    color: var(--color-gray);
    padding-left: 1rem;
    font-size: 1rem;

}

.footer-row-2-right-list-5 input:focus {
    outline-width: 0;
}

.footer-row-2-right-list-5 button {
    width: 10rem;
    height: 2.7rem;
    border-radius: 0.3rem;
    background-color: var(--color-footer-bg);
    border: 1.5px solid #000000;
    transition: all 0.2s ease-in-out;
}

.footer-row-2-right-list-5 button a {
    text-decoration: none;
    font-size: 1rem;
    padding: 0.8rem 3rem;
    font-weight: 400;
    color: #000000;
}

.footer-row-2-right-list-5 button:hover {
    background-color: #000000;
}

.footer-row-2-right-list-5 button:hover a {
    color: #fff;
}

.footer-row-3 {
    display: flex;
    align-items: center;
    height: 4rem;
    width: 100%;
    padding: 0 8%;
    background-color: var(--color-primary);
    justify-content: space-between;
}

.footer-left-div p {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 400;
}

.footer-right-div {
    display: flex;
    gap: 2rem;

    p {
        color: #fff;
        font-size: 0.9rem;
        font-weight: 400;
    }
}


@media (width<1160px) {
    .footer-row-2-main-container {
        flex-direction: column;
    }

    .footer__right__common {
        padding: 2.5rem 0 2rem 14%;
    }

    .footer-row-1 {
        gap: 0.5rem;
    }

    .footer-row-1-left h3 {
        font-size: 1.3rem;
    }
}

@media (width <850px) {

    .footer-row-2-main-container {
        gap: 2rem;
    }

    .footer-main-container {
        height: auto;
    }

    .footer-logo-div {
        width: 11rem;
    }

    .footer-row-1 {
        flex-direction: column;
        gap: 0.3rem;
        align-items: normal;
        padding-top: 0.4rem;
        padding-bottom: 1rem;
    }

    .footer-row-2-left {
        padding-top: 2rem;
    }

    .footer-row-1-left h3 {
        font-size: 1.1rem;
    }

    .footer-row-1-right input {
        padding-left: 0;
    }

    .footer-row-1-right input::placeholder {
        font-size: 1rem;
    }

    .footer-row-2-right {
        display: flex;
        flex-direction: column;
    }

    .footer__right__common {
        padding: 2.5rem 8% 2rem 8%;
    }

    #map {
        padding-right: 8%;
    }

    #map iframe {
        width: 100%;
    }

    .footer-row-2-right-list-5 input {
        width: 100%;
    }

    .footer-row-3 {
        flex-direction: column;
        align-items: flex-start;
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
        gap: 1rem;
        height: auto;
    }

    .footer-left-div {
        order: 2;
    }

    .footer-right-div {
        order: 1;
    }
}