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

/* Applies to the entire scrollbar */
::-webkit-scrollbar {
    width: 10px;
    /* You can adjust width */
}

/* Track (background) */
::-webkit-scrollbar-track {
    background: #B2E2FA;
    /* Dark track */
}

/* Handle (thumb) */
::-webkit-scrollbar-thumb {
    background: #FF0080;
    /* Light gray handle */
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #999999;
}

body {
    font-family: 'Helvetica';

}


a,
a:hover {
    color: #000;
    text-decoration: none !important;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Obviously';
}

.img-fluid {
    width: 100%;
}

@font-face {
    font-family: 'Helvetica';
    src: url('../fonts/helvetica-now-display.woff2') format('woff2'),
        url('../fonts/helvetica-now-display.woff') format('woff');
}

@font-face {
    font-family: 'Obviously';
    src: url('../fonts/Obviously-Bold.woff2') format('woff2'),
        url('../fonts/Obviously-Bold.woff') format('woff');
}
@font-face {
    font-family: 'Helvetica Neue';
    src: url('../fonts/HelveticaNeueBold.woff2') format('woff2'),
        url('../fonts/HelveticaNeueBold.woff') format('woff');
}

.navbar {
    background-color: #FF5FB3;
    padding: 29px 0px;
}

.navbar-nav {
    justify-content: space-between;
    margin: 0;
    width: 100%;
}

.navbar-light .navbar-nav .nav-link {
    color: rgb(0, 0, 0) !important;
    font-size: 20px;
    font-weight: 500;
}

.header-right {
    display: flex;
    justify-content: end;
    gap: 20px;
    align-items: center;
}

.header-right .login-btn {
    width: 265px;
    background: #fff;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: anchor-center;
    gap: 8px;
    font-family: 'Helvetica Neue';
    padding-top: 5px;
}

.off-canvas-btn {
    padding: 0;
}



.menu {
    width: 200px;
    padding: 20px;
}

.menu-item {
    font-weight: bold;
    margin: 10px 0;
    color: #001f54;
    cursor: pointer;
}

.submenu {
    display: none;
    margin-left: 15px;
}

.submenu a {
    display: block;
    text-decoration: none;
    color: hotpink;
    margin: 5px 0;
    font-weight: bold;
}

.submenu a:hover {
    text-decoration: underline;
}





.registration-page form {
    /* max-width: 500px; */
    margin: auto;
}

.registration-page label {
    display: block;
    margin: 15px 0 5px;
    font-weight: bold;
    color: #FF4CB5;
    font-size: 30px;
}

.registration-page h4 {
    color: #FF4CB5;
    font-weight: 570;
    font-size: 30px;
    line-height: 140%;
    letter-spacing: 0%;
    text-transform: uppercase;
    margin-bottom: 17px;
}

.registration-page input[type="text"],
.registration-page input[type="email"],
.registration-page input[type="number"],
.registration-page select {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 0;
    background-color: #B2E2FA;
    font-size: 16px;
    height: 65px;
}

.login-page input {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 0;
    background-color: #B2E2FA;
    font-size: 16px;
    height: 65px;
}

.registration-page select {
    width: 100%;
    padding: 10px 30px 10px 10px;
    /* Right padding increases spacing from arrow */
    background-color: transparent;
    /* light blue */
    border: none;
    border-radius: 0;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 24 24"><path d="M7 10l5 5 5-5" fill="none" stroke="%23000" stroke-width="2"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
    font-size: 20px;
}

.registration-page .radio-group,
.registration-page .checkbox-group {
    margin-top: 5px;
}

.registration-page .radio-group label,
.registration-page .checkbox-group label {
    display: flex;
    font-weight: normal;
    color: #000;
    font-size: 20px;
    line-height: 26px;
    align-items: center;
    margin-bottom: 15px;
    gap: 9px;
}

.registration-page input[type="radio"],
.registration-page input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 39px;
    height: 39px;
    border: 2px solid hotpink;
    /* Your custom border color */
    border-radius: 50%;
    outline: none;
    margin-right: 10px;
    cursor: pointer;
    position: relative;
}

.registration-page input[type="radio"]:checked {
    background-color: hotpink;
    border-color: hotpink;
}

.registration-page input[type="checkbox"]:checked {
    background-color: hotpink;
    border-color: hotpink;
}

.registration-page input[type="radio"]:checked::before,
.registration-page input[type="radio"]:checked::before {
    content: "";
    width: 10px;
    height: 10px;
    background-color: hotpink;
    border-radius: 50%;
    position: absolute;
    top: 4px;
    left: 4px;
}

.registration-page .submit-btn {
    margin-top: 20px;
    padding: 12px 20px;
    background-color: black;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    cursor: pointer;
    width: 265px;
    font-weight: 700;
}

.registration-page .submit-btn:hover {
    opacity: 0.9;
}

.registration-page .note {
    font-size: 12px;
    color: gray;
    margin-top: 10px;
}

.registration-page {
    padding-top: 130px;
    padding-bottom: 351px;
}

.phone-input {
    display: flex;
    width: 100%;
    max-width: 100%;
    /* background-color: #aef; */
    /* Light blue */
    border-radius: 4px;
    overflow: hidden;
    height: 65px;
    gap: 6px;
    margin-bottom: 65px;
}

.phone-input .prefix {
    padding: 10px 15px;
    background-color: #B2E2FA;
    display: flex;
    align-items: center;
    /* justify-content: center; */
    white-space: nowrap;
    border-right: 1px solid white;
    font-family: sans-serif;
    width: 221px;
    color: #000;
    font-size: 20px;
}

.phone-input input {
    flex: 1;
    padding: 10px 12px;
    border: none;
    outline: none;
    background-color: #aef;
    margin: 0 !important;
}

.registration-page input::placeholder {
    color: #000;
    font-size: 20px;
}

.main-phone-num-div {
    margin-bottom: 65px;
}

.main-phone-num-div p {
    text-align: right;
    font-weight: 400;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0%;
    margin-top: 10px;
    vertical-align: middle;
    text-decoration: underline;
    text-decoration-style: solid;
    text-decoration-offset: 0%;
    text-decoration-thickness: 0%;
    margin-bottom: 26px;

}

.radio-group p {
    display: flex;
    align-items: center;
    gap: 10px;
}

.main-phone-num-div p a {
    color: #000;
}

.login-div input {
    margin-bottom: 0 !important;
}

.login-div p a {
    color: #000;
}

.login-div p {
    text-align: right;
    margin-top: 10px;
    font-size: 20px;
}

.footer {
    padding: 60px 20px;
    background-color: #000;
}

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

.footer a:hover {
    text-decoration: underline;
}

.footer .logo img {
    /* width: 100px; */
    margin-bottom: 15px;
        margin-left: -10px;
}

.footer .social-icons svg {
    width: 32px;
    margin-right: 15px;
    fill: #fff;
}

.footer .small-text {
    font-size: 12px;
    margin-top: 30px;
    color: #fff;
}

.footer h6 {
    color: #fff;
    margin-bottom: 32px;
}

.footer p {
    color: #fff;
    margin-bottom: 16px !important;
    font-size: 18px;
}

.banner-content {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 20px;
}

.banner-sec {
    position: relative;
    height: 600px;
}

#mainNavbar {
    transition: top 0.4s ease-in-out;
    z-index: 1030;
    /* stays on top */
}

.event-time-date p {
    font-size: 90px;
    font-weight: 700;
    font-family: 'Obviously';
    margin: 0;
    margin-top: 17px;
    text-align: center;
    line-height: 100%;
}

.scroll-btn {
    background: transparent;
    border: none;
    font-weight: 700;
    color: #ff73c5;
    /* bright pink */
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.3s;
}

.scroll-btn:hover {
    transform: translateY(2px);
}

.scroll {
    text-align: center;
    padding: 20px;
    margin-bottom: 30px;
}

.header-right .login-btn a {
    color: #000;
    text-decoration: none;
}

.banner-content .header-right img {
    filter: invert(1);
    width: max-content;
}

.top-heding {
    font-family: 'Helvetica';
    color: #000F4D;
    font-size: 40px;
    text-align: center;
    font-weight: 500;
    margin-bottom: 50px;
}

.register-btn {
    text-align: center;
    margin-bottom: 117px;
}

.register-btn a {
    font-size: 18px;
    color: #fff;
    background: #000;
    text-decoration: none;
    width: 305px;
    display: flex;
    margin: 0px auto;
    height: 50px;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.common-mid-sm-heading {
    font-family: 'Obviously';
    font-weight: 500;
    font-size: 48px;
    line-height: 90%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #FF5FB3;

}

.what-in-store p {
    font-family: 'Helvetica';
    color: #000000;
    font-weight: 400;
    font-size: 24px;
    line-height: 140%;
    letter-spacing: 0%;
    text-align: center;

}

.interested-sec {
    margin-top: 50px;
    margin-bottom: 35px;
}

.interested-sec h3 {
    font-family: 'Helvetica';
    color: #000;
    font-weight: 400;
    font-size: 36px;
    line-height: 100%;
    letter-spacing: -2%;
    text-align: center;
    margin-bottom: 35px;

}

.interested-sec ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.interested-sec ul li {
    font-weight: 600;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 1px;
    text-align: center;
    vertical-align: middle;
    background-color: #000F4D;
    border-radius: 100px;
    padding: 8px;
    color: #fff;
    display: inline-block;
    width: 225px;
    height: 35px;
}

.filter-label {
    font-weight: 400;
    font-size: 36px;
    line-height: 100%;
    letter-spacing: -2%;
    text-align: center;
    margin-right: 20px;
}

.dropdown-toggle.custom {
    border: none;
    border-bottom: 5px solid #000;
    font-weight: 800;
    font-size: 36px;
    line-height: 100%;
    letter-spacing: -2%;
    text-align: center;
    background: transparent;
}

.dropdown-toggle.custom::after {
    margin-left: 0.4em;
}

.events-venue-sec {
    margin-top: 63px;
}

.events-dropdown {
    margin-bottom: 100px;
    gap: 94px !important;
}


.card-hover {
    cursor: pointer;
    /* border-bottom: 1px solid #000; */
    padding-bottom: 1rem;
    margin-bottom: 10px;
}

.card-hover .tag {
    font-size: 18px;
    font-weight: 700;
    padding: 0.2rem 0.4rem;
    border-radius: 0;
    color: #B2E2FA;
    margin-right: 0;
    margin: -2px;
}

.card-hover .tag-free {
    background-color: #000F4D;
}

.card-hover .tag-exhibition {
    background-color: #FF0000;
}

.card-hover .tag-paid {
    background-color: #0066cc;
}

.card-hover .tag-entertainment {
    background-color: #ff66cc;
}

.mobile-header-list {
    display: none;
}

.card-hover .left-img {
    width: 100%;
    max-height: 1019px;
    object-fit: cover;
    border: 1px solid #ddd;
    height: 1017px;
}

.card-hover .card-title {
    font-weight: 800;
    margin-top: 17px !important;
    font-family: 'Helvetica';
    text-transform: lowercase;
    font-size: 36px;
    line-height: 48px;
}

.card-hover .card-footer {
    font-size: 0.875rem;
    color: #333;
    box-shadow: none !important;
    background: transparent;
    border: none;
    border-bottom: 1px solid #000;
    padding: 0;
    padding-bottom: 12px;
    margin-top: 13px !important;
    border-radius: 0;
}

.card-hover .card-footer p {
    margin-right: 1rem;
    color: #000;
    font-weight: 800;
    letter-spacing: 1px;
    font-size: 18px;
    display: flex;
    gap: 10px;
    border-right: 2px solid #000;
    padding-right: 15px;
    margin-bottom: 0;
}

.card-hover .card-footer p:last-child {
    border: none;
}


.events-dropdown {
    margin-bottom: 100px;
}

.events-img {
    margin-right: 27px;
}

.event-date-time {
    font-weight: 400;
    font-size: 20px;
    line-height: 29px;
    letter-spacing: 0%;
}

.card-footer {
    display: flex;
}

.right-column {
    padding-right: 0 !important;
    border-right: 11px solid #FFE600;
}

.events-venue-sec .register-btn {
    margin-top: 64px;

}

.marquee-wrapper {
    background-color: yellow;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
}

.marquee-text {
    display: inline-block;
    animation: scroll-left 30s linear infinite;
    font-weight: bold;
    text-transform: uppercase;
    color: #FF4CB5;
    font-family: 'Obviously';
    font-size: 30px;
    font-weight: 500;
    padding-top: 10px;
    letter-spacing: 2px;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}


.cities {
    /* display: flex; */
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    /* margin-bottom: 2rem; */
}

.city {
    display: inline-block;
    font-family: Obviously;
    font-weight: 600;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
    padding: 20px 20px 10px 16px;
    margin-bottom: 30px;
    margin-right: 29px;
    /* height: 61px; */
    max-width: max-content;
}

.beyond-goa-sec {
    background-image: url(../images/beyond-goa-bg-img.svg);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 70px 0px;
    text-align: center;
    padding-bottom: 0;
}

.main-heading {
    font-weight: 500;
    font-size: 90px;
    line-height: 104%;
    letter-spacing: 0%;
    text-align: center;
    color: #000F4D;
}

.common-p {
    font-weight: 400;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0%;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 60px;

}

.beyond-goa-sec .register-btn {
    margin-top: 65px;
    margin-bottom: 77px;
}

.beyond-goa-sec .register-btn a {
    background-color: #fff;
    color: #000;
}

.about-text-sec .main-heading {
    color: #FF0080;
}

.about-text-sec {
    padding-top: 60px;
    padding-bottom: 70px;
}


.saf-years p {
    font-weight: 600;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: 1px;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
    color: #000F4D;
    margin-top: 37px;
    margin-bottom: 68px;
}

.saf-vdo-swiper {
    padding-bottom: 60px;
}

.swiper-pagination-bullet {
    background: #B2E2FA !important;
    opacity: 1;
    width: 15px;
    height: 15px;
    margin: 0px 10px !important;
}

.swiper-pagination-bullet-active {
    background: #FF0080 !important;
}

.saf-years {
    background-image: url(../images/yellow-ball-img.svg);
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 80px;
}

.join-us-sec {
    background: #B2E2FA;
    text-align: center;
    padding: 70px;
    padding-bottom: 0;
}

.join-us-sec h5 {
    font-family: 'Helvetica';
    font-size: 48px;
    font-weight: 500;
    margin-bottom: 35px;
}

.join-us-sec .register-btn {
    margin-top: 80px;
}

.join-us-sec .register-btn a {
    background-color: #fff;
    color: #000;
}

.curators-sec {
    padding-top: 65px;
}

.curators-sec .main-heading {
    margin-bottom: 60px;
}

.curators-sec h5 {
    font-weight: 570;
    font-size: 30px;
    line-height: 140%;
    text-transform: uppercase;
    color: #FF4CB5;
    margin-bottom: 30px;
}

.curators-sec input {
    height: 65px;
    border-radius: 0;
    background-color: #B2E2FA;
    border: none;
    padding: 15px;
    margin-bottom: 130px;
}

.curators-sec input::placeholder {
    color: #000;
    font-size: 20px;
}






.curators-sec .card {
    /* max-width: 400px; */
    border: none;
    /* box-shadow: 0 4px 8px rgba(0,0,0,0.1); */
    margin-bottom: 70px;
}

.curators-sec .card img {
    width: 100%;
    display: block;
    margin-bottom: 31px;
}

.curators-sec .card-content {
    padding: 0;
    min-height: 300px;
    position: relative;
}

.curators-sec .label {
    background: red;
    color: white;
    font-size: 18px;
    font-weight: bold;
    padding: 0px 8px;
    display: inline-block;
    margin-bottom: 10px;
    letter-spacing: 2px;
    padding-top:3px;
}

.curators-sec .label a {
    color: #fff;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: bold;
    font-family: 'Helvetica Neue';
}

.curators-sec .curator-name {
    font-size: 36px;
    font-weight: bolder;
    margin: 0 0 10px;
    color: #000000;
    line-height: 41px;
    font-family: 'Helvetica Neue';
}

.curators-sec .instagram {
    color: black;
    font-weight: bold;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 20px;
    font-family: 'Helvetica Neue';
}

.curators-sec .description {
    font-size: 20px;
    color: #000000;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 29px;
    font-family: 'Helvetica';
}

.curators-sec .info {
    font-size: 18px;
    color: #000000;
    margin-top: 15px;
    display: flex;
    gap: 10px;
    align-items: baseline;
    align-items: center;
    position: absolute;
    bottom: 0;
}

.info a {
    font-weight: bold;
    font-family: 'Helvetica Neue';
}

.curators-sec .info img {
    width: 18px;
    margin: 0;
}

.instagram svg {
    width: 26px;
    gap: 20px;
    margin-right: 5px;
}

.pagination {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 70px;
}

.pagination button {
    background-color: #B2E2FA;
    border: none;
    padding: 5px 12px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 0px;
    transition: background-color 0.2s;
    width: 37px;
    height: 37px;

}

.pagination button.active {
    background-color: #FFE74D;
}

.pagination button:hover {
    background-color: #87d8f8;
}

.curators-detail-sec {
    padding: 0px;
}

.curators-detail-sec .main-heading {
    color: #FF0080;
}

.desi-tag {
    background-color: #B2E2FA;
    color: #000F4D;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    display: inline-block;
    margin: 0px auto;
    padding: 10px 19px;
    border-radius: 100px;
    margin-top: 25px;
    margin-bottom: 70px;
}

.curator-detail p {
    font-weight: 400;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0%;

}

.curator-detail a svg {
    width: 26px;
    margin-right: 8px;
}

.curator-detail a {
    color: #000;
    font-weight: 700;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0%;
    text-decoration: none;

}

.curator-detail {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.curated-programs-sec {
    margin-top: 170px;
    margin-bottom: 200px;
}

.curated-programs-sec h6 {
    font-family: 'Helvetica';
    font-weight: 700;
    font-size: 30px;
    line-height: 100%;
    letter-spacing: 1px;

    color: #000000;
}

.curated-programs-sec .card-footer {
    border: none;
}

.curated-programs-sec .card-hover .tag-exhibition {
    background-color: #B2E2FA;
    color: #000F4D;
}

.toggle-menu-list .menu-toggle {
    /* font-size: 43px; */
    background: none;
    border: none;
    cursor: pointer;
    width: max-content;
    /* height: 64px; */
    z-index: 9999;
    justify-content: center;
}

.toggle-menu-list .dropdown-menu {
    display: none;
    padding: 0px;
}

.toggle-menu-list .dropdown-menu.open {
    display: block;
    right: 0;
    top: 0;
    background-color: transparent;
    border: none;
    width: 100%;
    background: #9CE6FA;
    background: linear-gradient(135deg, rgba(156, 230, 250, 1) 50%, rgb(247 52 151) 100%);
    overflow-y: auto;
    height: 100vh;
}

.toggle-menu-list .dropdown-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: right;
    padding: 30px;
    padding-right: 72px;
    padding-top: 100px;
}



.toggle-menu-list .dropdown-menu ul li {
    font-weight: 500;
    margin-bottom: 10px;
    cursor: pointer;
    font-size: 20px;
    font-family: 'Obviously';
    color: #FF0080;
    text-transform: uppercase;
}

.toggle-menu-list .submenu {
    margin-top: 5px;
    margin-left: 20px;
    font-weight: normal;
    display: none;
}

.toggle-menu-list .has-submenu.open .submenu {
    display: block;
    padding: 0;
}

.toggle-menu-list .submenu li {
    margin: 5px 0;
}

.toggle-menu-list .dropdown-menu ul li a {
    font-size: 30px;
    font-family: 'Obviously';
    color: #000F4D;
    text-decoration: none;
}

.has-submenu.open .submenu-toggle {
    color: #FF0080;
}

.toggle-menu-list .submenu {
    margin-top: 5px;
    margin-left: 20px;
    font-weight: normal;
    display: none;
}

.toggle-menu-list .has-submenu.open .submenu {
    display: block;
    padding: 0;
}

.toggle-menu-list .submenu li {
    margin: 5px 0;
}

.toggle-menu-list .dropdown-menu ul li a {
    font-size: 30px;
    font-family: 'Obviously';
    color: #000F4D;
    text-decoration: none;
}

.has-submenu.open .submenu-toggle {
    color: #FF0080;

}

.banner-content.toggle-menu-list .menu-toggle {
    color: #fff;

}

.banner-content.toggle-menu-list .dropdown-menu.open {
    top: 0;
    padding: 20px 20px;
}

.banner-content .navbar-brand img {
    filter: grayscale(1);
}

.nav-internal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

.radio-group input {
    width: 39px !important;
    height: 39px !important;
    display: block;
    margin: 0;
    min-width: 39px !important;
}

.registration-page .accept-policy .form-group {
    display: flex;
    margin-bottom: 20px;
    align-items: anchor-center;
}

.form-fields-main .form-group {
    margin-bottom: 65px;
}

.form-group .select2-selection {
    width: 100%;
    padding: 10px;
    border: none !important;
    border-radius: 0 !important;
    background-color: #B2E2FA !important;
    font-size: 16px !important;
    height: 65px !important;
    display: flex !important;
    align-items: center;
}

.form-group .select2-selection__placeholder {
    color: #000 !important
}



#dropdownMenu .navbar .navbar-nav {
    padding: 0;
    padding-left: 0;
}

#dropdownMenu .navbar {
    background-color: transparent;
    padding: 29px 0px;
}

#dropdownMenu .navbar .nav-link {
    color: rgb(0, 0, 0) !important;
    font-size: 20px;
    font-weight: 500;
    font-family: 'Helvetica';
    text-transform: none;
    padding: 17px 8px !important;
}

.menu-toggle {
    width: 0;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 20px;
}

.bar {
    height: 3px;
    background: #000;
    border-radius: 2px;
    transition: all 0.3s ease;
    display: none;
}

/* Default as cross */
.header-right-dropdown .menu-toggle.open .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    display: none;
}

.header-right-dropdown .menu-toggle.open .bar:nth-child(2) {
    opacity: 0;
}

.header-right-dropdown .menu-toggle.open .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Hidden menu by default, unless "show" is present */
.header-right-dropdown .menu {
    display: none;
}

.header-right-dropdown .menu.show {
    display: block;
    width: max-content;
    padding: 0;
}

.navbar-nav .nav-item {
    margin-bottom: 0 !important;
}

.banner-content .menu-toggle {
    width: 38px;
}

.divider-div {
    width: 32px;
}

/* Hide menu by default */
#dropdownMenuTwo {
    display: none;
    padding-top: 9px;
}

/* Show menu when 'open' class is added */
#dropdownMenuTwo.open {
    display: block;
}

.banner-content .divider-div {
    width:50px;
}

.banner-content .dropdown-menu ul {
    padding-right: 22px !important;
    padding-top: 100px;
}

.event-time-date {
    margin-top: -10px;
}

.registration-page h4 span {
    font-size: 16px;
    color: #404040;
    font-family: 'Helvetica';
    margin-left: 10px;
    text-decoration: underline;
}

.select2-selection__arrow b {
    display: none;

}

.select2-selection__arrow {
    background-image: url(../images/dropdown-arrow.svg);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: contain;
    margin-top: 9px;
    margin-right: 12px;
}

.confirmpage h1 {
    font-weight: 570;
    font-style: Bold;
    font-size: 90px;
    line-height: 90%;
    color: #000F4D;
    text-align: center;

}

.confirmpage p {
font-weight: 500;
font-style: Medium;
font-size: 40px;
line-height: 120%;
text-align: center;
color: #000F4D;

}
.confirmpage {padding-top: 100px;}
.select2-results{
        background: #a1e4fb !important;
}
.select2-container--default .select2-results__option--selected {
    background-color: #ffdf4f !important;
    color: #000 !important;
}
.accept-policy a{
    text-decoration: underline!important;
}
.select2-container{width: 100% !important;}

.hide-register{
    display: none;
}
.header-menu .close-menu-img{
    position: relative;
    top: 0px;
}

.header-right-desktop .close-menu-img{
    position: relative;
    top: 0px !important;
}


/*error page */
.error-page {padding-top: 100px;}
.error-page .error-title {
    font-weight: 500;
    font-size: 90px;
    line-height: 104%;
    letter-spacing: 0%;
    text-align: center;
    color: #FF0080;
}


/*contact  us page */

.saf-contactpage{
    margin-top: 100px;
    padding: 0px;
    padding-bottom: 100px;
}

.saf-contactpage .contact-main-heading {
    font-weight: 500;
    font-size: 90px;
    line-height: 104%;
    letter-spacing: 0%;
    text-align: center;
    color: #FF0080;
}

.saf-contactpage .short-desc {
    font-weight: 400;
    font-size: 20px;
    line-height: 26px;
    text-align: center;
}

.saf-contactpage .cntfrm .submit-btn {
    margin-top: 20px;
    padding: 12px 20px;
    background-color: black;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    cursor: pointer;
    width: 265px;
    font-weight: 700;
}
.saf-contactpage .cntfrm h4{
    color: #FF4CB5;
    font-weight: 570;
    font-size: 30px;
    line-height: 140%;
    letter-spacing: 0%;
    text-transform: uppercase;
    margin-bottom: 17px;
}

.saf-contactpage .cntfrm input[type="text"],
.saf-contactpage .cntfrm input[type="email"]{
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 0;
    background-color: #B2E2FA;
    font-size: 16px;
    height: 65px;
}

.saf-contactpage .cntfrm textarea {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 0;
    background-color: #B2E2FA;
    font-size: 16px;
}

