/* Brainer Website Styles */

@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;700&family=Bebas+Neue&display=swap');
@font-face {
    font-family: 'PP Neue Machina';
    src: url('assets/machina/fonts/PPNeueMachina-Ultrabold.eot');
    src: url('assets/machina/fonts/PPNeueMachina-Ultrabold.eot?#iefix') format('embedded-opentype'),
         url('assets/machina/fonts/PPNeueMachina-Ultrabold.woff2') format('woff2'),
         url('assets/machina/fonts/PPNeueMachina-Ultrabold.woff') format('woff'),
         url('assets/machina/fonts/PPNeueMachina-Ultrabold.ttf')  format('truetype'),
         url('assets/machina/fonts/PPNeueMachina-Ultrabold.svg#PP Neue Machina') format('svg');
}

.archivo-<uniquifier> {
  font-family: "Archivo", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

:root {
    --yellow-light: #FFED96;
    --white: #FFFFFF;
    --pink: #FF77A4;
    --text-light: #FFFFFF;
    --brain-primary: #FF77A4;
    --black: #000000;
    --yellow: #FFCD03;
    --grey-light: #E6E6E6;
    --green: #7CCB6F;
    --brain-dark: #9B2B62;
    --grey: #BABABA;
    --shadow: 6px 6px 0px 0px #000000;
}

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

h1, h2, h3, h4, .h1, .h2, .h3, .h4{
    font-family: 'PP Neue Machina';
}

a{
    color: var(--black);
    text-decoration: none;
}
a:hover{
    color: var(--black);
    text-decoration: none;
}

body {
    font-family: 'Archivo', sans-serif;
    background: var(--white);
    font-size: 18px;
}

.bg-yellow{
    background: var(--yellow-light)!important;
}

.bg-purple{
    background: var(--brain-dark)!important;
}

.main-container {
    width: 100%;
    margin: 0 auto;
    position: relative;
}
.rounded{border-radius: 10px !important}
.rounded-30{border-radius: 30px !important}

.navbar {
    width: 100%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    padding: .5rem;
}
.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}
.navbar > ul > li {
    position: relative;
    white-space: nowrap;
    padding: 10px 0px 10px 24px;
}
.navbar a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    font-size: 16px;
    color: var(--black);
    white-space: nowrap;
    font-weight: 600;
    transition: 0.3s;
    letter-spacing: 2%;
    position: relative;
    text-transform: uppercase;
}
#header.home .navbar a:not(.cta) {
    color: var(--white);
}
#header.home .navbar .dropdown ul a {
    color: var(--black);
}
#header .mobile-nav-toggle.icon-open {
    filter: invert(1);
}
#header.home .mobile-nav-toggle.icon-open {
    filter: invert(0);
}
/* Header */
.header {
    position: relative;
}
#header {
  z-index: 997;
  top: 20px;
  height: 70px;
  transition: all 0.5s;
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 99999;
}
.logo-fixed {
    position: fixed;
    top: 20px;
    /*left: 15px;*/
    z-index: 9999;
}
#header .logo a {
  color: #fff;
}
#header .logo img {
  max-height: 60px;
}
.navbar.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 30px;
    right: 15px;
}

.header-inner-pages {
  background: rgba(5, 87, 158, 0.9) !important;
}

.topbar-inner-pages {
  background: rgba(6, 98, 178, 0.9) !important;
}

.line1 {
    height: 100px;
    background: var(--black);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

.nav {
    position: absolute;
    top: 103px;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--white);
    border: 3px solid var(--black);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    padding: 0 100px;
}

.logo {
    width: 272px;
    height: 70px;
}

.logo img {
    width: 100%;
    height: 100%;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu li a {
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--black);
    letter-spacing: 0;
}

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

.social-media {
    display: flex;
    gap: 20px;
}

.social-media img {
    width: 24px;
    height: 24px;
}

/* Hero */
.hero {
    position: relative;
    height: 91vh;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    width: 100%;
    height: auto;
    background: url(/assets/img/video-bg.jpg) center;
    background-size: cover;
}

.hero-bg-in{
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-bg-in img{
    width: 450px;
    max-width: 90%;
}
.hero.in .hero-content{
    height: auto;
}
.hero.in h2{
    font-size: 48px;
    text-transform: uppercase;
}
.hero.in .hero-text {
    top: 30px;
}

.hero-bg img {
    width: 100%;
    height: 100%;
}
.hero-content {
    position: relative;
    top: 0;
    left: 0;
    bottom: 0;
    height: 100%;
    display: flex;
    gap: 130px;
    align-items: flex-end;
    width: 100%;
}
.hero-text{
    position: relative;
    text-align: center;
    top: 70px;
}

video{
    position: absolute;
    top: 0;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*.hero-text h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    font-weight: 800;
    line-height: 56px;
    letter-spacing: 0;
    text-transform: uppercase;
    color: var(--brain-primary);
}

.hero-text p {
    font-family: 'Archivo', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 2px;
    color: var(--black);
    margin: 20px 0;
}*/

.cta-button {
    background: var(--yellow);
    border: 4px solid var(--black);
    border-radius: 100px;
    padding: 20px;
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    color: var(--black);
    box-shadow: var(--shadow);
    cursor: pointer;
}

.hero-image {
    width: 566px;
    height: 483px;
}

.hero-image img {
    width: 100%;
    height: 100%;
}

/* Exhibits */
.exhibits {
    padding: 140px 0;
    background: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.exhibits-header {
    text-align: center;
    width: 498px;
}

.exhibits-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: uppercase;
    color: var(--brain-primary);
}

.exhibits-header p {
    font-family: 'Archivo', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 2px;
    color: var(--black);
    margin-top: 10px;
}

.exhibits-cards {
    display: flex;
    gap: 20px;
}

.card {
    background: var(--white);
    border: 3px solid var(--black);
    border-radius: 30px;
    padding: 30px;
    box-shadow: var(--shadow);
    width: 423px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.card img {
    width: 100%;
    height: auto;
}

.card h3 {
    font-family: 'Archivo', sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 2px;
    text-align: center;
}

.card p {
    font-family: 'Archivo', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 2px;
    text-align: center;
}

.tickets {
    width: 646px;
    height: 206px;
}

.tickets img {
    width: 100%;
    height: 100%;
}

.tickets-type h2{
    font-weight: 800;
    font-size: 36px;
    letter-spacing: 2%;
}

.tickets-type p{
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 2%;
    text-align: left;
    margin-bottom: 15px;
}

/* Events */
.events {
    padding: 140px 0;
    background: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.events-header {
    text-align: center;
    width: 498px;
}

.events-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: uppercase;
    color: var(--brain-primary);
}

.events-header p {
    font-family: 'Archivo', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 2px;
    color: var(--black);
    margin-top: 10px;
}

.events-content {
    display: flex;
    gap: 20px;
}

.main-event {
    background: var(--white);
    border: 3px solid var(--black);
    border-radius: 30px;
    padding: 30px;
    box-shadow: var(--shadow);
    width: 864px;
    display: flex;
    gap: 30px;
    align-items: start;
}

.main-event img {
    width: 100%;
    height: auto;
}

.event-text h3 {
    font-family: 'Archivo', sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 2px;
}

.event-text p {
    font-family: 'Archivo', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 2px;
    margin: 10px 0;
}

.event-cta {
    background: var(--yellow);
    border: 4px solid var(--black);
    border-radius: 100px;
    padding: 20px;
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    color: var(--black);
    box-shadow: var(--shadow);
    cursor: pointer;
}

.side-events {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.event {
    background: var(--white);
    border: 3px solid var(--black);
    border-radius: 30px;
    padding: 30px;
    box-shadow: var(--shadow);
    width: 424px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

#event img, .event img {
    width: 100%;
    height: auto;
}
#event img{
    min-height: 480px;
}

.event h4 {
    font-family: 'Archivo', sans-serif;
    font-size: 24px;
    font-weight: 800;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: uppercase;
    color: var(--brain-primary);
}

.event p {
    font-family: 'Archivo', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 2px;
}

/* FAQ */
.faq {
    padding: 140px 0;
    background: var(--white);
    display: flex;
    gap: 127px;
    align-items: start;
}

.faq-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: uppercase;
    color: var(--brain-primary);
    width: 312px;
}

.faq-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 872px;
}

.faq-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item h3 {
    font-family: 'Archivo', sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 2px;
    color: var(--black);
}

.faq-item p {
    font-family: 'Archivo', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 2px;
    color: var(--black);
}

.faq-cta {
    background: var(--yellow);
    border: 4px solid var(--black);
    border-radius: 100px;
    padding: 20px;
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    color: var(--black);
    box-shadow: var(--shadow);
    cursor: pointer;
    align-self: flex-end;
}

/* Feedback */
.feedback {
    padding: 100px 0;
    background: var(--white);
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.feedback-header {
    text-align: center;
}

.feedback-header h2 {
    font-size: 36px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: uppercase;
    color: var(--brain-primary);
}

.feedback-header p {
    font-family: 'Archivo', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 2px;
    color: var(--black);
    margin-top: 10px;
}

.feedback-cards {
    display: flex;
    gap: 20px;
}

.feedback-card {
    position: relative;
    background: var(--white);
    border: 3px solid var(--black);
    border-radius: 30px;
    padding: 30px;
    box-shadow: var(--shadow);
    /*width: 484px;*/
    display: flex;
    flex-direction: column;
    gap: 10px;
}
/*.feedback-card::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 60px;

    width: 0;
    height: 0;

    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid var(--black);

    z-index: 2;
}*/
.feedback-card::before {
    content: "";
    position: absolute;
    bottom: -25px;
    left: 44%;
    width: 0;
    height: 0;
    border-left: 17px solid transparent;
    border-right: 17px solid transparent;
    border-top: 17px solid var(--black);
    z-index: 1;
}

.whyus h3{
    font-size: 24px;
}

.whyus .imgbox{
    min-height: 170px;
    display: flex;
    justify-content: center;
    align-items: center;

}

.stars {
    font-size: 26px;
    color: var(--yellow);
    margin-top: -6px;
}

.feedback-card p {
    font-family: 'Archivo', sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 105%;
    letter-spacing: 1%;
    color: var(--black);
    margin-bottom: 0;
}
.feedback-card .date{
    font-size: 18px;
    margin-top: -10px;
}
.author {
    font-family: 'Archivo', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 2%;
    color: var(--black);
    text-align: center;
    margin-top: 32px;
}

.author span {
    font-weight: 500;
    width: 100%;
    display: block;
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--white);
    display: flex;
    flex-direction: column;
}

.footer a{
    color: var(--white);
    text-decoration: none;
}

.footer-main {
    padding: 40px 0px;
    display: flex;
    /*gap: 130px;*/
    align-items: start;
}

.footer-left {
    /*width: 312px;*/
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-right: 100px;
}

.footer-left img {
    width: 159px;
    height: 41px;
}

.footer-left p {
    font-family: 'Archivo', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
    letter-spacing: 2%;
}

.address {
    display: flex;
    align-items: start;
    gap: 10px;
}

.address img {
    width: 24px;
    height: 24px;
    margin-top: 2px;
}

.address p {
    font-family: 'Archivo', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
    letter-spacing: 2%;
}

.google-maps {
    background: var(--yellow);
    border: 4px solid var(--black);
    border-radius: 100px;
    padding: 15px 20px;
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--black)!important;
    box-shadow: var(--shadow);
    cursor: pointer;
    align-self: flex-start;
}

.footer-right {
    padding: 40px 0px;
    display: flex;
    gap: 22px;
    align-items: start;
}

.footer-right ul {
    list-style: none;
    /*display: flex;
    flex-direction: column;*/
    gap: 10px;
    font-family: 'Archivo', sans-serif;
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    color: var(--white);
}

.contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

.contact-item img {
    width: 24px;
    height: 24px;
}

.contact-item p {
    font-family: 'Archivo', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
    letter-spacing: 2px;
}

.social {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social p {
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 2%;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icons img {
    width: 24px;
    height: 24px;
}

.footer-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-family: 'Archivo', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 2%;
    color: var(--white);
    text-transform: initial !important;
}

.footer-bottom {
    background: var(--black);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Archivo', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
    letter-spacing: 2%;
}

.footer-bottom p {
    color: var(--grey);
}

.credits {
    display: flex;
    gap: 40px;
}

.credits p {
    color: var(--grey);
}

#header .navbar .nav-link {
    color: var(--black) !important;
    font-weight: 600;
    /*font-size: 0.85rem;*/
    font-size: 16px;
    margin: 0 0.75rem;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

#header.home .navbar .nav-link {
    color: var(--text-light) !important;
}

.navbar .nav-link:hover {
    color: var(--yellow) !important;
}

.nav-right {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-tickets-nav {
    background-color: var(--yellow);
    color: var(--black);
    border: none;
    padding: 0.5rem 1.25rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(255, 205, 3, 0.3);
}

.btn-tickets-nav:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(255, 205, 3, 0.5);
}

.nav-lang {
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.nav-lang:hover {
    color: var(--yellow);
}

/* Hero Section */
.hero-section-custom {
    position: relative;
    height: 500px;
    overflow: hidden;
    margin-bottom: 60px;
}

.hero-background-custom {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 119, 164, 0.3) 0%, rgba(255, 0, 110, 0.2) 100%);
    backdrop-filter: blur(2px);
}

.hero-content-custom {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-light);
}

.hero-title-custom {
    font-size: 128px;
    font-weight: 800;
    text-transform: capitalize;
    margin-bottom: 0;
    letter-spacing: 2px;
    color: var(--white);
}

.hero-subtitle-custom {
    font-size: 32px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.hero-dots-custom {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 2rem;
}

.dot-custom {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--yellow);
    animation: dotPulseCustom 2s ease-in-out infinite;
}

.dot-custom:nth-child(2) {
    animation-delay: 0.3s;
}

@keyframes dotPulseCustom {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.3);
    }
}

/* Exhibitions Section */
.exhibitions-section {
    background: white;
    padding: 80px 0;
    overflow: hidden;
}

.exhibitions-title {
    font-size: 2.3rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.text-pink {
    color: var(--pink);
}

.exhibitions-subtitle {
    font-size: 1.125rem;
    color: var(--black);
    font-weight: 500;
    letter-spacing: 0.36px;
}

.event-card, .exhibit-card {
    background: var(--white);
    border: 3px solid var(--black);
    border-radius: 30px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
    height: 100%;
}

.exhibit-card:hover {
    transform: translateY(-5px);
}

.exhibit-image {
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.exhibit-card h3, .exhibit-card h4 {
    font-size: 1.5rem;
    color: var(--black);
    margin: 0;
    text-align: center;
}

.exhibit-card p {
    font-size: 1.2rem;
    color: var(--black);
    margin-top: -15px;
    font-weight: 500;
    margin-bottom: 0;
    text-align: center;
}
.mask{
  display: block;
  width: 100%;
  margin: 0 auto;
  -webkit-mask-image: url(assets/img/brain-mask.svg);
  mask-image: url(assets/img/brain-mask.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  transition: 0.3s;
  -webkit-mask-position: top;
  mask-position: top;
  position: relative;
  mask-size: 100% 100%;
  position: relative;
  padding: 200px 140px;
  background: #ffeaa1;
}
.mask.bottom{
  mask-position: bottom;
  -webkit-mask-position: bottom;
  mask-size: 100%;
  padding: 0;
  padding-bottom: 7%;
  position: relative;
  top: -70px;
}
.related img{
    height: 300px;
    object-fit: cover;
    width: 100%;
}

/*.mask::before {
    content: "";
    position: absolute;
    inset: 0;
    background: black;

    -webkit-mask: url('assets/img/brain-mask.svg') center/contain no-repeat;
    mask: url('assets/img/brain-mask.svg') center/contain no-repeat;
}*/
/*
.mask {
    width: 100%;
    height: 600px;
    background-color: #000;

    -webkit-mask-image: url('assets/img/brain-mask.svg');
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;

    mask-image: url(assets/img/brain-mask.svg);
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;

    mask-size: 100% 100%;
    -webkit-mask-size: 100% 100%;
}*/
/* Tickets Box */
.ticket-box {
    position: relative;
    background: var(--pink);
    border: 3px solid var(--black);
    border-radius: 20px;
    padding: 20px 20px 0 20px;
    margin-top: 0;
    z-index: 99;
}

.ticket-shadow {
    top: 5px;
    right: 2px;
    bottom: -6px;
    left: 10px;
    z-index: 0;
    position: absolute;
    background: #000;
    border-radius: 20px;
}

.bg-yellow .ticket-shadow {
    right: -5px;
}

.ticket-top {
    padding: 0 0 10px 0;
    /*min-height: 100px;*/
}
.ticket-top h3{
    font-family: inherit;
    font-weight: 700;
    font-size: 22px;
}
.ticket-top p{
    font-weight: 500;
    font-size: 18px;
}

.ticket-bottom {
    border-top: 1px dashed #333;
    padding: 15px 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-height: 100px;
}

.rip::before, .rip::after {
    content: "";
    position: absolute;
    top: 58%;
    width: 32px;
    height: 32px;
    background: #fff;
    border: 3px solid #000;
    border-radius: 50%;
    transform: translateY(-50%);
    z-index: 3;
}

.bg-yellow .rip::before, .bg-yellow .rip::after, .bg-yellow .ticket-shadow::after {
    background: var(--yellow-light);
}

.rip::before {
    left: -19px;
    clip-path: inset(0 0 0 48%);
}

.rip::after{
    right: -18px;
    clip-path: inset(0 45% 0 0);
    box-shadow: inset 5px 5px 0 0px #000;
}
.ticket-shadow::after {
    content: "";
    position: absolute;
    top: 58%;
    right: -15px;
    width: 32px;
    height: 35px;
    background: #fff;
    border: 3px solid #000;
    border-radius: 50%;
    transform: translateY(-50%);
    z-index: 3;
    clip-path: inset(0 45% 0 0);
}

.tickets-content {
    text-align: center;
}

.tickets-content h4 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.tickets-content p {
    font-size: 1.125rem;
    color: var(--black);
    margin-bottom: 20px;
    font-weight: 500;
}

/* Smart Selfie Section */
.smart-section, .school-section {
    background: linear-gradient(135deg, var(--yellow-light) 0%, #ffe8a8 100%);
    padding: 80px 0;
}

.smart-title {
    font-size: 3rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.smart-text {
    font-size: 1.125rem;
    color: var(--black);
    margin-bottom: 30px;
    font-weight: 500;
    line-height: 1.6;
}

/* School Section */
.school-section {
    padding: 80px 0;
}
.school-section img{
    min-height: 360px;
    object-fit: cover;
    width: 100%;
}

.school-title {
    font-size: 3rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}
.contact-title {
    font-size: 36px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 25px;
    letter-spacing: 0;
}

.school-text {
    font-size: 1.125rem;
    color: var(--black);
    margin-bottom: 30px;
    font-weight: 500;
    line-height: 1.6;
}

/* Events Section */
.events-section {
    background: white;
    padding: 80px 0;
}

.events-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.events-subtitle {
    font-size: 1.125rem;
    color: var(--black);
    font-weight: 500;
    letter-spacing: 0.36px;
}


.event-card:hover {
    transform: translateY(-5px);
}

.event-card-main {
    overflow: hidden;
}

.event-card h3, .event-card h4 {
    font-family: inherit;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.event-card h5 {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
}

.event-card p {
    font-size: 1.125rem;
    color: var(--black);
    font-weight: 500;
    margin: 0;
    letter-spacing: 2%;
    line-height: 100%;
}

.event-card img {
    border-radius: 10px;
    height: 260px;
    width: 100%;
    object-fit: cover;
    max-width: auto;
}
.event-card-main img{
    height: 390px;
    width: 100%;
}

.object-fit-cover {
    object-fit: cover;
}

/* FAQ Section */
.faq-section {
    background: white;
    padding: 80px 0;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--pink);
    line-height: 1.2;
    padding-right: 30px;
}

.faq-items {
    background: white;
}

.faq-item {
    padding: 30px 0;
}

.faq-item h4,
.accordion-button {
    font-size: 1.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--black);
    padding: 1.3rem 1.25rem;
}

.faq-item h4::before {
    content: '▶';
    font-size: 0.875rem;
    color: var(--black);
}

.small-text p{
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.accordion-item, hr {
    border: 0;
    border-bottom: 3px solid var(--black);
    opacity: 1;
}
.accordion-item:last-child {
    border: 0;
}
.accordion-item h3, .accordion-item h4{
    font-family: inherit;
}

.accordion-button, .accordion-button:not(.collapsed){
    background-color: var(--white)!important;
    box-shadow: none!important;
    font-size: inherit;
    color: var(--black);
    font-size: 28px;
}
.faq-item p, .accordion-body p {
    font-size: 1.125rem;
    color: var(--black);
    font-weight: 500;
    margin: 0;
    letter-spacing: 2%;
    line-height: 1.6;
}
.accordion-button::after { display: none; }
.accordion-body {
    padding: 1rem 1.25rem 1rem 6rem;
}
.faq-divider {
    border: 0;
    border-top: 3px solid var(--black);
    margin: 0;
}

/* Testimonials Section */
.testimonials-section {
    background: white;
    padding: 80px 0;
}

.testimonials-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.testimonials-subtitle {
    font-size: 1.125rem;
    color: var(--black);
    font-weight: 500;
    letter-spacing: 0.36px;
}

.testimonial-card {
    background: white;
    border: 3px solid var(--black);
    border-radius: 30px;
    padding: 30px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-height: 100%;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.testimonial-stars {
    display: flex;
    gap: 5px;
}

.star {
    color: var(--yellow);
    font-size: 1.5rem;
}

.testimonial-date {
    font-size: 1.125rem;
    font-weight: 500;
}

.testimonial-text {
    font-size: 1.5rem;
    color: var(--black);
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
    flex-grow: 1;
}

.testimonial-author {
    margin-top: auto;
}

.testimonial-author h5 {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0 0 5px 0;
}

.testimonial-author p {
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
    color: var(--black);
}

/* Buttons */
.btn-primary-action,
.btn-secondary-action,
.btn-tickets,
.school-submit-btn,
.btn-maps {
    background-color: var(--yellow);
    color: var(--black);
    border: 4px solid var(--black);
    border-radius: 100px;
    padding: 15px 20px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.28px;
    /*font-size: 0.875rem;*/
    font-size: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
}

.school-submit-btn{
    background-color: var(--green);
}

.btn-primary-action:hover,
.btn-secondary-action:hover,
.navbar a.cta:hover,
.school-submit-btn:hover,
.btn-tickets:hover,
.btn-maps:hover {
    transform: translate(2px, 2px);
    box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 1);
    background-color: var(--yellow);
    color: var(--black);
}

.school-submit-btn:hover{
    background-color: var(--green);
}

/* Footer */
.footer-section {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 60px 0 20px;
}

.footer-logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--yellow);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-desc,
.footer-address,
.footer-hours,
.footer-contact {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-menu-title,
.footer-contact-title,
.footer-social-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--yellow);
    text-transform: uppercase;
    letter-spacing: 0.28px;
    margin-bottom: 15px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: var(--yellow);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: var(--yellow);
    color: var(--black);
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.1);
}

.footer-divider {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin: 30px 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright,
.footer-credits {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--grey);
}

.footer-credits span {
    margin-right: 0;
}

.footer-credits strong {
    color: var(--text-light);
}

/* Container adjustments */
.container-lg {
    max-width: 1312px;
}

/*Form*/

.school-form-section {
    background: #a82068;
}

.school-form-box {
    background: #fff;
    border: 4px solid #000;
    border-radius: 24px;
    padding: 28px;
    align-items: start;
}

.school-form-title {
    font-size: 20px;
    font-weight: 700;
    color: #000;
}

.school-form-box .form-label {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.school-form-box .form-control {
    border: 1px solid #cfcfcf;
    border-radius: 30px;
    font-size: 18px;
    padding: 8px 16px;
    box-shadow: none;
}

.school-form-box textarea.form-control {
    height: auto;
    border-radius: 20px;
    resize: none;
}

.school-form-box .form-control::placeholder {
    color: #b9b9b9;
    font-size: 18px;
}

.school-form-box .form-check {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    padding-left: 0;
}

.school-form-box .form-check-input {
    margin: 2px 0 0 0;
    width: 16px;
    height: 16px;
    border-radius: 3px;
    background-color: #22226c;
    border-color: #22226c;
    flex-shrink: 0;
}

.school-form-box .form-check-label {
    font-size: 18px;
    line-height: 1.1;
    color: #000;
    margin-top: 5px;
}

.school-form-box .form-check-label a {
    color: #000;
    font-weight: 700;
    text-decoration: underline;
}


/* Responsive Design */
@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1180px;
    }
}

@media (max-width: 1200px) {
    .mask {
        -webkit-mask-position: center 100%;
        mask-position: center 100%;
        mask-size: 200% 100%;
        padding: 200px 140px;
    }
    .mask.bottom {
        /*mask-position: center 100%;
        -webkit-mask-position: center 100%;*/
        mask-size: 130%;
        padding-bottom: 10%;
        top: -200px;
    }
}
@media (max-width: 768px) {
    .mask.bottom {
        mask-size: 100%;
        padding-bottom: 10%;
        top: -100px;
    }
    #header .logo {
        z-index: 99999;
        /*position: fixed;*/
    }

    #header .navbar .nav-link, .navbar .nav-link {
        color: var(--text-light) !important;
    }
    .navbar .nav-link {
        font-weight: 700;
        font-size: 24px;
    }
    .navbar {
        padding: 0;
        /*margin-top: -15px;*/
    }
    .exhibit-card,
    .event-card,
    .testimonial-card,
    .tickets-box {
        padding: 20px;
    }

    .btn-primary-action,
    .btn-secondary-action,
    .btn-tickets {
        padding: 15px 30px;
        font-size: 14px;
    }

    .btn-primary-action.big{
        width: 100%;
        font-size: 20px;
        padding: 12px;
    }

    .mask {
        -webkit-mask-image: url(assets/img/brain-mask-mobile.svg);
        mask-image: url(assets/img/brain-mask-mobile.svg);
        -webkit-mask-position: top;
        mask-position: top;
        mask-size: 490% 100%;
        padding: 60px 0;
    }
    .yellow.mask{
      -webkit-mask-image: url(assets/img/brain-mask.svg);
      mask-image: url(assets/img/brain-mask.svg);
      padding: 50px 10px;
      overflow: hidden;
    }
    .event-card-main img, .school-section img {
        height: 240px;
    }
    .faq-title {
        font-size: 32px;
        padding-right: 0px;
        text-align: center;
    }
    .accordion-item .accordion-button{
        font-size: 22px;
        padding: 20px 10px;
    }
    .accordion-body {
        padding: 10px;
    }
    .faq-item p, .accordion-body p {
        line-height: 1.1;
    }
    .btn-secondary-action.big {
        width: 100%;
        font-size: 20px;
    }
    .feedback {
        padding: 50px 0;
    }
    .feedback-card p {
        font-size: 22px;
    }
    .feedback-card {
        margin-top: 10px;
    }
    .hero-title-custom {
        font-size: 46px;
    }
    .hero-subtitle-custom {
        font-size: 20px;
    }
    .hero-text {
        top: -30px;
    }
    .exhibit-card h4, .event-card h5 {
        font-size: 24px;
    }
    .event-card h4 {
        font-size: 22px;
    }
    .footer-left {
        align-items: center;
        text-align: center;
    }
    .google-maps{
        width: 100%;
    }
    .address{
        padding: 0 70px; 
    }
    .social {
        margin: 15px 0;
        text-align: center;
    }
    .social-icons {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-right {
        padding: 10px 30px;
    }
    .footer a {
        font-size: 14px;
    }
    .footer-menu{
        text-align: center;
        margin-top: 20px;
        font-size: 14px;
    }
    .footer-right li.list-inline-item{
        display: block;
        width: 100%;
        margin-bottom: 20px;
        padding-left: 50px;
        text-align: center;
    }
    .contact-item{
        justify-content: center;
    }
    .footer-menu li {
        margin-bottom: 5px;
    }
    .footer-left {
        padding-right: 10px;
        margin: 0 auto;
    }
    .footer-credits {
        display: flex;
        flex-direction: column;
    }
    .footer-bottom{
        text-align: center;
    }
    .credits{
        width: 100%;
        flex-direction: column;
        gap: 0px;
    }
    .footer-bottom p {
         width: 100%; 
    }
    .credits p{
        width: 100%;
    }
    .exhibitions-title, .smart-title, .school-title, .events-title {
        font-size: 35px;
        line-height: 43px;
        padding: 0;
    }
    .smart-text, .school-text {
        font-size: 18px;
        line-height: 1.2;
    }
    
}


/*mobile menu toggle*/

.navbar.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 150px;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 150px 20px;
  border-radius: 0;
  background: var(--black);
  overflow-y: auto;
  transition: 0.3s;
}

.navbar .cta {
    padding: 10px 18px;
    border-radius: 999px;
}
.icon-close {
    display: none;
}

.navbar-mobile ~ .icon-open {
    display: none;
}

.navbar-mobile ~ .icon-close {
    display: block;
}
.mobile-nav-toggle {
    cursor: pointer;
    width: 28px;
    transition: opacity 0.2s ease;
    width: 50px;
}

/* MOBILE TOGGLE */
.mobile-nav-toggle {
    display: none;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}

/* HEADER SCROLLED */
#header.header-scrolled {
    backdrop-filter: blur(8px);
}

.navbar.navbar-mobile .dropdown ul {
    position: static;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    background: transparent;
    border-radius: 0;
    padding: 0 0 0 16px;
    margin-top: 6px;
    display: none;
}

.navbar.navbar-mobile .dropdown ul.dropdown-active {
    display: block;
}

/* MOBILE */
@media (max-width: 991.98px) {
    .desktop-cta-item,
    .desktop-lang-dropdown {
        display: none;
    }
    .mobile-nav-toggle {
        display: block;
        z-index: 1002;
    }

    .navbar {
        flex: 0;
    }

    .navbar > ul {
        display: none;
    }

    .navbar.navbar-mobile {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        height: 100vh;
        width: 100%;
        z-index: 1001;
        bottom: 0px;
        top: -20px;
    }

    .navbar.navbar-mobile > ul > li {
        width: 100%;
    }

    .navbar.navbar-mobile a {
        width: 100%;
        padding: 12px 0;
        justify-content: center;
    }

    

    .navbar.navbar-mobile .dropdown:hover > ul {
        transform: none;
    }

    .navbar.navbar-mobile .cta {
        justify-content: center;
    }
}

.mobile-nav-bottom {
    display: none;
}

@media (max-width: 991.98px) {
    .navbar.navbar-mobile {
        position: fixed;
        inset: 0;
        width: 100%;
        height: 100%;
        background: #000;
        z-index: 9999;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 100px 20px 40px;
    }

    .navbar.navbar-mobile > ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 28px;
        width: 100%;
        padding: 0;
        margin: 0;
        background: transparent;
        box-shadow: none;
    }

    /* desktop dropdown és desktop CTA rejtése mobilon */
    .navbar.navbar-mobile .dropdown,
    .navbar.navbar-mobile > ul > li:has(.cta) {
        display: none;
    }

    .navbar.navbar-mobile .nav-link {
        color: #fff;
        font-size: 24px;
        font-weight: 800;
        text-transform: uppercase;
        justify-content: center;
        width: auto;
        padding: 0;
    }

    .mobile-nav-bottom {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
        width: 100%;
        max-width: 420px;
        margin: 60px auto 0;
    }

    .mobile-langs {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .mobile-langs a {
        color: #fff;
        text-decoration: none;
        font-size: 16px;
        font-weight: 700;
        text-transform: uppercase;
    }

    .mobile-langs a.active {
        border: 2px solid #fff;
        border-radius: 999px;
        width: 56px;
        height: 56px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-cta {
        display: block;
        width: 30%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0 28px;
        border-radius: 999px;
        background: #ffd000;
        color: #000;
        font-weight: 800;
        text-decoration: none;
    }
}


.item-leftside{
    font-family: "Archivo", sans-serif;
    font-weight: 700;
    font-size: 20px;
}
.ticket-bottom .form-select{
    border-radius: 50px;
    padding: 10px;
    width: 120px !important;
}


.mobile-nav-toggle {
    display: none !important;
}

.icon-close {
    display: none !important;
}

@media (max-width: 991px) {
    .mobile-nav-toggle.icon-open {
        display: block !important;
    }

    .mobile-nav-toggle.icon-close {
        display: none !important;
    }

    .navbar.navbar-mobile .icon-open {
        display: none !important;
    }

    .navbar.navbar-mobile .icon-close {
        display: block !important;
    }
}

.datepicker {
    border-radius: 50px;
    padding: 10px 20px;
    width: 100%;
}
.flatpickr-calendar {
    border-radius: 25px!important;
    border: 1px solid #ced4da!important;

    box-shadow: 1px 10px 30px rgba(0, 0, 0, 0.1)!important;
}
.cart-item .form-control:focus {
    border-color: #ced4da;
    box-shadow: none!important;
}
.time-slot-btn{
    border-radius: 50px!important;
    border: 2px solid #000!important;
}
.flatpickr-day.today {
    border-color: #000!important;
}
.form-control, .form-select {
    border: 2px solid #000!important;
    border-radius: 50px;
    padding: 15px;
}
/*.form-check-input[type=checkbox] {
    border-radius: 50px!important;
}*/
.form-check-input:checked {
    background-color: #111563!important;
    border-color: #111563!important;
}
.time-slot-btn.active {
    background: #ff77a4!important;
    color: #000!important;
    border-color: #ff77a4!important;
    font-weight: 600!important;
}
.flatpickr-day.selected, .flatpickr-day.startRange, .flatpickr-day.endRange, .flatpickr-day.selected.inRange, .flatpickr-day.startRange.inRange, .flatpickr-day.endRange.inRange, .flatpickr-day.selected:focus, .flatpickr-day.startRange:focus, .flatpickr-day.endRange:focus, .flatpickr-day.selected:hover, .flatpickr-day.startRange:hover, .flatpickr-day.endRange:hover, .flatpickr-day.selected.prevMonthDay, .flatpickr-day.startRange.prevMonthDay, .flatpickr-day.endRange.prevMonthDay, .flatpickr-day.selected.nextMonthDay, .flatpickr-day.startRange.nextMonthDay, .flatpickr-day.endRange.nextMonthDay {
    background: #ff77a4!important;
    color: #000!important;
    border-color: #ff77a4!important;
}