body {
    position: relative;
    color: #d35e10;
    overflow-x: hidden;
    font-family: 'Space Grotesk', sans-serif;
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    /* color:(var(--text-color)); */
    background-color: var(--bg-color);
    transition: background 0.3s, color 0.3s;
}

body::before{
    content: "";
    position: fixed;
    object-fit: cover;
    background: url('web_gaga_wreath.jpg') center/contain no-repeat;
    z-index: -10;
    margin: 0;
    padding: 0;
    opacity: 0.1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.image-container {
    position: relative;
}

.image-container img {
    position: absolute;
    z-index: -10;
}

.classboxy{
    position: relative;
    left: 50%;
    width: 5px;
    height:100px;
    background: #d35e10;
}

#_1992_1994_1 {
    top: -250px;
    left:5px;
    width: 500px;
    /* max-height: 350px; */
    mask-image: radial-gradient(ellipse, rgba(255, 255, 255, 1) 25%, rgba(255, 110, 0, 0) 70%);
}
#x1 {
    top: -350px;
    left:-100px;
    width: 500px;
    /* max-height: 350px; */
    mask-image: radial-gradient(ellipse, rgba(255, 255, 255, 1) 50%, rgba(255, 110, 0, 0) 80%);
}
#x2 {
    top: 50px;
    left:300px;
    width: 500px;
    /* max-height: 350px; */
    mask-image: radial-gradient(ellipse, rgba(255, 255, 255, 1) 50%, rgba(0, 0, 0, 0) 90%);
}
#x3 {
    display: flex;
    flex-wrap:wrap ;
    top: -225px;
    left:10%;
    width: 90%;
    height: 500px;
    /* max-height: 350px; */
    mask-image: radial-gradient(ellipse, rgba(255, 255, 255, 1) 100%, rgba(0, 0, 0, 0) 100%);
}
#_1992_1994_2 {
    top: -150px;
    left:400px;
    width: 500px;
    /* max-height: 525px; */
    mask-image: radial-gradient(ellipse, rgba(0, 0, 0, 1) 25%, rgba(0, 0, 0, 0) 70%);
}
#_1992_1994_3 {
    top: 50px;
    left:5px;
    width: 500px;
    /* max-height: 350px; */
    mask-image: radial-gradient(ellipse, rgba(0, 0, 0, 1) 25%, rgba(0, 0, 0, 0) 70%);
}


.filling-button {
    position: relative;
    overflow: hidden;
    color: black;
    font-weight: bold;
    border: 2px solid #ff7200;
    background-color: white;
    padding: 12px 24px;
    border-radius: 8px;
    transition: color 0.5s;
}

.filling-button::before {
    content: "";
    position: absolute;
    left: 0;
    color: black;
    bottom: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(to right, #ff7200, #ff7200);
    transition: width 0.5s;
    z-index: 0;
}

.filling-button:hover::before {
    width: 100%;
}

.filling-button span {
    position: relative;
    z-index: 1;
    transition: color 0.5s;
    color: black;
}

.filling-button:hover span {
    color: white;
}


._text {
    text-align: center;
}

.accordion-button {
    justify-content: center;
}

.custom-accordion .accordion-item {
    border: none; 
    margin: 0;  
}

.custom-accordion .accordion-button::after {
    content: "🛞";
    font-size: 1.25rem;
    transition: transform 0.2s ease-in-out;
}

.custom-accordion .accordion-button.collapsed::after {
    transform: rotate(0deg); 
}

.custom-accordion .accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}

.accordion-body {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.accordion-collapse.show .accordion-body {
    opacity: 1;
    transform: translateY(0);
}

.animate__fadeInUp{
    /* display: inline-block; */
    /* margin: 0 0.5rem; */
  
    animation: fadeInUp; /* referring directly to the animation's @keyframe declaration */
    animation-duration: 3s; /* don't forget to set a duration! */
  }

  .accordion-item:hover .accordion-button span {
    animation: pulse 1.5s ease-in-out infinite;
}

.page_sec{
    display: flex;
    flex-wrap: wrap;
}

#intro_video{
    display: flex;
    flex-wrap: wrap;
    position:relative; 
    width:100vw;
    margin-top:2%;
    height: 100vh;
    margin-bottom:-10%;
}


.mode_switch{

    position: relative;
    margin-top: 2%;
    padding: 0;

}

 /* footer */
 footer {
    background-color: #484B50;
    border-bottom: 5px solid #ff7300;
    width: 100%;
    padding: 50px 15px;
    margin-top: 100px;
    display: flex;
    justify-content: center;
}

.footer-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.footer-list li {
    margin-bottom: 10px;
}

.footer-list p {
    color: white;
    margin: 0;
}

.footer-list a {
    color: #979797;
    text-decoration: none;
}

.footer-list a:hover {
    color: #ff7300;
}

.footer-img {
    max-width: 200px;
    padding-bottom: 15px;
}

.back-to-top {
    padding: 10px 50px;
    background-color: transparent;
    color: white;
    border: 2px solid rgb(255, 255, 255);
    cursor: pointer;
    margin: auto;
    display: inline-block;
}

.back-to-top:hover {
    border: 2px solid #ff7300;
    background-color: #ff7300;
}

@media (max-width: 767.98px) {
    footer {
        padding: 30px 15px;
        text-align: center;
    }

    .footer-list {
        text-align: center;
    }

    .footer-img {
        max-width: 150px;
        margin: 0 auto;
        display: block;
    }

    .col-12.col-md-6 {
        margin-bottom: 20px;
    }

    .d-flex.align-items-end.justify-content-end {
        justify-content: center !important;
        align-items: center !important;
    }

    .back-to-top {
        margin: 20px auto;
    }
}

@media (min-width: 768px) {
    .footer-list {
        text-align: left;
    }

    .col-12.col-md-6:nth-child(2) .footer-list {
        text-align: right;
    }

    .footer-img {
        margin-top: 10px;
        margin-right: 0;
        margin-left: 0;
        margin-bottom: 0;
    }

    .back-to-top {
        margin: 0 auto;
        margin-right: 12px;
    }
}




