/* ***** Font Css **** */
@import url('https://fonts.googleapis.com/css2?family=Marcellus&display=swap');
/* font-family: "Marcellus", serif; */
@import url('https://fonts.googleapis.com/css2?family=Public+Sans:ital,wght@0,100..900;1,100..900&display=swap');

/* font-family: "Public Sans", sans-serif; */
/* ***** Common Css **** */
:root {
    scroll-behavior: initial;
    --golden: #E2B774;
    --blue: #111136;
    --error: #C90C00;
    --netural: #F3F3F3;
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
}

a:hover,
a:focus,
a:active {
    text-decoration: none;
}

ol,
ul {
    margin: 0;
    padding: 0;
}

img {
    display: block;
}

figure {
    margin: 0;
}

a,
button {
    transition: 0.4s linear;
    -webkit-transition: 0.4s linear;
    text-decoration: none;
}

body {
    font-family: "Public Sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 130%;
    color: #fff;
    text-decoration: none;
    background: var(--blue);
}

.main-wrpper {
    height: auto;
    width: 100%;
    overflow: hidden;
}

.container {
    max-width: 1400px;
    position: relative;
    z-index: 1;
}

h1,
h2 {
    font-family: "Marcellus", serif;
}

.title {
    color: #E2B774;
    font-size: 48px;
    font-weight: normal;
    line-height: 110%;
}

.title * {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}

.btn {
    font-family: 'Public Sans', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 110%;
    color: var(--netural);
    display: inline-flex;
    transition: .3s ease-in all;
    align-items: center;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.btn-brown {
    padding: 4px;
    border: 1px solid;
    border-color: var(--blue);
    box-sizing: border-box;
    background-color: var(--golden);
    transition: .3s ease-in all;
    -webkit-transition: .3s ease-in all;
    -moz-transition: .3s ease-in all;
    -ms-transition: .3s ease-in all;
    -o-transition: .3s ease-in all;
}

.btn-brown span {
    padding: 16px;
    border: 1px solid;
    border-color: var(--blue);
    box-sizing: border-box;
    transition: .3s ease-in all;
    color: var(--blue);
}

.btn-brown:hover {
    color: var(--golden);
    border-color: var(--golden);
    background: linear-gradient(275.83deg, #1C0D4B 0%, #472CA0 100%);
}

.btn-brown:hover span {
    color: var(--golden);
    border-color: var(--golden);
}

.btn-brown .icon {
    height: 100%;
    display: flex;
    padding: 17px;
    transition: .3s ease-in all;
    color: var(--blue) !important;
    border-color: var(--blue);
    border-top: 1px solid;
    border-bottom: 1px solid;
    border-right: 1px solid;
    -webkit-transition: .3s ease-in all;
    -moz-transition: .3s ease-in all;
    -ms-transition: .3s ease-in all;
    -o-transition: .3s ease-in all;
}

.btn-brown:hover .icon {
    border-color: var(--golden);
}

.btn-brown:hover .icon * {
    color: var(--golden) !important;
}

.btn-brown .icon * {
    color: var(--blue) !important;
}


/* ***** End Common Css **** */

/* **** Header **** */
.header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    border: 1px solid #111136;
    z-index: 11;
    background: linear-gradient(274.45deg, #1C0D4B 0%, #472CA0 100%);
    border-bottom: 1px solid var(--golden);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.7s ease, opacity 0.7s ease;
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    -webkit-transition: transform 0.7s ease, opacity 0.7s ease;
    -moz-transition: transform 0.7s ease, opacity 0.7s ease;
    -ms-transition: transform 0.7s ease, opacity 0.7s ease;
    -o-transition: transform 0.7s ease, opacity 0.7s ease;
}

.header.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.header .h-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    max-width: 1478px;
    margin: 0 auto;
}

.header .brand-logo {
    max-width: 138px;
}

.header .brand-logo * {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* **** End Header **** */


/* **** Home Page **** */

/* hero-section */
.hero-section {
    padding: 112px 0 60px;
    position: relative;
}

.hero-section .find-out-more {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-direction: column;
    width: 100%;
    color: var(--netural);
    position: relative;
}

.hero-section .find-out-more::after {
    content: "\f175"; /* fa-arrow-down-long */
    font-family: "Font Awesome 7 Free";
    font-weight: 900; /* Solid icons */
    color: #fff;
    display: inline-block;
    position: absolute;
    bottom: -25px;
    transform-origin: top;
    transition: transform 0.3s ease;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.hero-section .find-out-more:hover::after {
    transform: translateY(5px);
}

.hero-section .find-out-more:hover::after {
    transform: scaleY(1.8);
    -webkit-transform: scaleY(1.8);
    -moz-transform: scaleY(1.8);
    -ms-transform: scaleY(1.8);
    -o-transform: scaleY(1.8);
}

.hero-section .hero-section-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.hero-banner-details {
    padding: 112px 0 71px;
}

.hero-section .brand-logo {
    max-width: 248px;
    margin: 0 auto;
}

.hero-section .hero-tag {
    font-family: 'Marcellus', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 120%;
    color: var(--golden);
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.hero-banner-details .main-title {
    margin-bottom: 40px;
}

.hero-banner-details .main-title * {
    font-family: 'Marcellus', sans-serif;
    font-weight: 400;
    font-size: 72px;
    line-height: 100%;
    color: #FFFFFF;
    margin-bottom: 0;
}

.hero-banner-details .main-title span {
    display: block;
    font-size: 48px;
    line-height: 110%;
    color: #FFFFFF;
}

.hero-banner-details .small-title * {
    font-family: 'Marcellus', sans-serif;
    font-weight: 400;
    font-size: 32px;
    line-height: 110%;
    color: #FFFFFF;
}

.hero-banner-details .event h3 {
    font-family: 'Marcellus', sans-serif;
    font-weight: 400;
    font-size: 32px;
    line-height: 110%;
    color: var(--golden);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.hero-banner-details .small-title {
    margin-bottom: 40px;
}

.hero-banner-details .event h3 span {
    width: 53px;
    height: 1px;
    background: var(--golden);
    display: inline-block;
}

.hero-banner-details .event {
    padding-left: 24px;
    border-left: 1px solid var(--golden);
    margin-bottom: 40px;
}

.hero-banner-details .event p {
    font-family: 'Marcellus', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 120%;
    color: var(--golden);
}

.hero-banner-details .event p:last-child {
    margin-bottom: 0;
}


.hero-banner-details .btn-wrppaer {
    display: flex;
    align-items: center;
    gap: 24px;
    max-width: 350px;
}

.hero-banner-details .btn-wrppaer p {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
}

.hero-section .hero-banner-details {
    max-width: 628px;
}

.hero-section .hero-video {
    position: absolute;
    right: -340px;
    top: 0;
    width: 888px;
    aspect-ratio: 1 / 1;
}

.hero-section .hero-video * {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* hero-section */

/* **** panel **** */

.panel-wrp {
    position: relative;
    padding: 60px 0;
}

.panel-main {
    position: relative;
}

.panel-main .title.textCenter {
    margin-bottom: 48px;
}

.panel-box {
    display: flex;
}

.panel-left {
    width: 62%;
}

.panel-right {
    width: 38%;
    position: relative;
}

.panel-right-wrp {
    position: relative;
    height: 100%;
}

.panel-right-wrp::after {
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: linear-gradient(#11113600, #302f73f5);
}

.panel-right-wrp img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.panel-right-detail {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    z-index: 2;
}

.panel-right-detail .title {
    color: #fff;
}

.panel-right-detail h3 {
    font-family: "Marcellus", serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 110%;
}

.panel-right-detail p {
    margin-bottom: 0;
}

.panel-item {
    position: relative;
    display: flex;
    margin-bottom: 24px;
}

.panel-item:last-child {
    margin-bottom: 0;
}

.panel-img {
    width: 200px;
    height: 200px;
    flex: none;
}

.panel-img img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid var(--golden);
}

.panel-detail {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
}

.panel-detail h3 {
    padding: 25px 24px;
    font-size: 32px;
    font-family: "Marcellus", serif;
    font-weight: 400;
    color: var(--golden);
    margin-bottom: 20px;
    border-bottom: 1px solid var(--golden);
}

.panel-detail p {
    padding: 0 24px;
}

.panel-detail span {
    color: var(--golden);
    font-weight: 700;
    padding: 0 24px;
}

.panel-last {
    margin-top: 72px;
    display: flex;
    align-items: flex-start;
    font-family: "Marcellus", serif;
    color: var(--golden);
    font-size: 24px;
    line-height: 120%;
}

.panel-last span {
    flex: none;
    width: 200px;
    height: 1px;
    background-color: var(--golden);
    margin: 12px 12px 0 0;
}

/* **** panel **** */


/* **** bianco **** */
.bianco-wrp {
    position: relative;
    padding: 60px 0;
}

.bianco-bg-img {
    position: absolute;
    top: -348px;
    left: 0;
}

.bianco-main {
    position: relative;
    display: flex;
}

.bianco-left {
    width: 41%;
    padding-right: 48px;
}

.bianco-right {
    width: 59%;
}

.bianco-right .bianco-item {
    margin-bottom: 32px;
}

.bianco-right .bianco-item:last-child {
    margin-bottom: 0;
}

.bianco-item h3 {
    font-family: "Marcellus", serif;
    font-size: 24px;
    line-height: 120%;
    margin-bottom: 10px;
}

.bianco-item p {
    margin-bottom: 0;
}

/* **** bianco **** */

/* **** End Home Page **** */

/* **** Thank You Page **** */
.thanku-wrp .row {
    align-items: center;
}

.thank-data {
    max-width: 644px;
}

.thank-data h1 {
    margin: 0 0 40px;
    font-weight: 600;
    font-size: 80px;
    line-height: 100%;
    letter-spacing: 1px;
    color: #273583;
}

.thank-data p {
    margin: 0 0 40px;
    font-family: 'Jubilat';
    font-weight: 500;
    font-size: 32px;
    line-height: 130%;
    letter-spacing: 0.5px;
    color: #273583;
}

.thank-data p span {
    color: #E51765;
}

.thank-data .btn-redin {
    font-weight: 500;
    font-size: 18px;
    line-height: 25px;
    color: #273583;
    display: flex;
    align-items: center;
}

.thank-data .btn-redin figure {
    min-width: 100px;
    width: 100px;
    height: 100px;
    background: #CFFF45;
    border-radius: 100%;
    margin-right: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .4s linear;
    -webkit-transition: .4s linear;
}

.thank-data .btn-redin img {
    transition: .4s linear;
    -webkit-transition: .4s linear;
}

.thank-data .btn-redin:hover figure {
    background: #E51765;
}

.thank-data .btn-redin:hover {
    color: #E51765;
}

.thank-data .btn-redin:hover img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

.thank-data .readmore img {
    margin-right: 30px;
}

.thank-img img {
    width: 100%;
    border-radius: 30px;
    max-width: 644px;
    margin: 0 0 0 auto;
}

.how-take-wrp {
    padding: 150px 0;
}

.located-bx {
    margin: 0 0 40px;
}

.located-bx h6 {
    margin: 0 0 16px;
    font-family: 'Jubilat';
    font-weight: 600;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: 0.5px;
    color: #273583;
    display: flex;
}

.located-bx h6 figure {
    min-width: 24px;
    max-width: 24px;
    margin: 0 14px 0 0;
}

.how-take-wrp figure.shap1 {
    top: -30%;
}

.how-take-wrp .why-data-box p:last-child {
    margin: 0;
}

/* video-plyer-section */

.video-plyer-section {
    padding: 60px 0;
    position: relative;
}

.video-plyer-section .video-player {
    position: relative;
    overflow: hidden;
    height: 761px;
    background: #999;
}

.video-plyer-section .video-player video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.video-plyer-section .play-btn {
    width: 140px;
    height: 140px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

/* .video-plyer-section .play-btn:hover{
    transform:translate(-50%,-50%) scale(1.08);
    -webkit-transform:translate(-50%,-50%) scale(1.08);
    -moz-transform:translate(-50%,-50%) scale(1.08);
    -ms-transform:translate(-50%,-50%) scale(1.08);
    -o-transform:translate(-50%,-50%) scale(1.08);
} */

.video-plyer-section .play-btn svg {
    width: 100%;
    height: 100%;
    display: block;
}

.video-plyer-section .mute-btn {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    z-index: 10;
}


.video-plyer-section .mute-btn svg {
    width: 100%;
    height: 100%;
}

.video-plyer-section .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
    z-index: 5;
    transition: opacity .3s ease;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -webkit-transition: opacity .3s ease;
    -moz-transition: opacity .3s ease;
    -ms-transition: opacity .3s ease;
    -o-transition: opacity .3s ease;
}

.video-plyer-section .play-btn .pause-icon {
    display: none;
}

/* Hide the button while playing (controlled via .play-btn-hidden) */
.video-plyer-section .video-player.playing.play-btn-hidden .play-btn {
    opacity: 0;
    pointer-events: none;
}

.video-plyer-section .video-plyer-bg {
    position: absolute;
    right: 0;
    bottom: -398px;
}

.video-plyer-section .video-plyer-bg img {
    width: 100%;
    height: 100%;
}

/* video-plyer-section */
/* **** End Thank You Page **** */

/* divyesh */
/* registration-section */
.registration-section {
    padding: 60px 0;
    position: relative;
}

.registration-section .form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.registration-section .title {
    margin-bottom: 48px;
}

.registration-section .title * {
    margin-bottom: 0;
}

.registration-section .form-bg {
    position: absolute;
    top: -218px;
    left: 0;
    z-index: -1;
}

.registration-form .form-top {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.registration-form .form-control,
.registration-form .form-select {
    background: transparent;
    border: 1px solid var(--golden);
    color: var(--netural);
    border-radius: 0;
    padding: 32px;
    font-size: 18px;
    font-weight: 400;
    line-height: 130%;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}



.custom-select {
    width: 100%;
    border: 1px solid #c9a14a;
    overflow: hidden;
}

.select-box {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    cursor: pointer;
    position: relative;
    /* background:#fff; */
}

.selected {
    font-size: 18px;
    line-height: 130%;
    color: var(--netural);
}

.select-search {
    flex: 1;
    min-width: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    outline: none;
    background: transparent;
    font: inherit;
    font-size: 18px;
    line-height: 130%;
    color: var(--netural);
    cursor: text;
}

.select-search::placeholder {
    color: var(--netural);
    opacity: 1;
}

.arrow {
    transition: .3s;
    flex-shrink: 0;
}

.custom-select.active .select-box {
    background: linear-gradient(275.83deg, #1C0D4B 0%, #472CA0 100%);
}

.options {
    display: none;
    background: linear-gradient(275.83deg, #1C0D4B 0%, #472CA0 100%);
    max-height: calc(3 * (52px + 1.3 * 18px + 1px));
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

.option {
    padding: 26px 30px;
    color: #fff;
    border-top: 1px solid #c9a14a;
    cursor: pointer;
    transition: .3s;
}

.option.is-filtered-out {
    display: none;
}

.option:hover {
    background: #3c2488;
}

.custom-select.active .arrow {
    transform: rotate(180deg);
}

.registration-form .form-control::placeholder {
    color: #fff;
    opacity: 1;
}

.registration-form .form-control:focus,
.registration-form .form-select:focus {
    background: linear-gradient(275.83deg, #1C0D4B 0%, #472CA0 100%);
    color: #fff;
    border-color: #d9b26f;
    box-shadow: none;
}

.registration-form .form-select {
    color: #fff;
}

.registration-form .form-select option {
    color: #000;
}

.registration-form .form-check {
    margin-bottom: 12px;
}

.registration-form .form-term {
    padding-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.registration-form .form-check-input {
    --bs-form-check-bg: transparent;
    border-radius: 0;
    border-color: var(--golden);
    box-shadow: none;
    width: 32px;
    height: 32px;
    margin-top: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.registration-form .form-group {
    position: relative;
}

.registration-form .form-group img {
    width: 14px;
    position: absolute;
    right: 32px;
}

.form-check-input:checked {
    background-color: #472CA0;
}

.registration-form .form-check-input:focus {
    border-color: var(--golden);
}

.form-term .form-group .form-check-label {
    display: flex;
    align-items: start;
    gap: 16px;
}

.form-term .form-group .form-check-label span {
    font-family: 'Public Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    color: #FFFFFF;
}

.registration-form .form-btn {
    margin-top: 48px;
}

.registration-form .form-alert {
    margin-top: 24px;
    padding: 12px 16px;
    text-align: center;
    color: var(--error);
    font-family: 'Public Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 130%;
}

.registration-form .form-alert[hidden],
.registration-form .form-field-error[hidden] {
    display: none !important;
}

.registration-form .form-field-error {
    display: block;
    margin-top: 6px;
    color: var(--error);
    font-family: 'Public Sans', sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 130%;
}

.registration-form .form-control.is-invalid,
.registration-form .custom-select.is-invalid {
    border-color: var(--error);
}

.registration-form .form-check-input.is-invalid {
    border-color: var(--error);
}

.registration-form .btn:disabled {
    opacity: 0.7;
    pointer-events: none;
}

.registration-form .btn:disabled,
.registration-form .btn:disabled span {
    color: #FFFFFF;
}

/* registration-section */

/* thank-you-section */
.thank-you-section .thank-you-page-wrapper {
    max-width: 760px;
    margin: 0 auto;
}

.thank-you-section {
    padding: 112px 0 180px;
}

.thank-you-section .thank-you-page-detils{
    padding-top: 186px;
}

.thank-you-section .logo {
    max-width: 248px;
    margin: 0 auto;
}

.thank-you-section .logo *{
    width: 100%;
    height: 100%;
}

.bg-thank-you {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.thank-you-section .thank-you-page-detils .title *{
    margin-bottom: 16px;
}

.thank-you-section .thank-you-page-detils .subtitle{
    margin-bottom: 24px;
}

.thank-you-section .thank-you-page-detils .social-title{
    margin-bottom: 24px;
}

.thank-you-section .thank-you-page-detils .socials-icons ul{
    display: flex;
    gap: 24px;
    justify-content: center;
}

.thank-you-section .thank-you-page-detils .socials-icons ul li a{
    display:flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    padding: 4px;
    background: var(--golden);
    border: 1px solid var(--blue);
}

.thank-you-section .thank-you-page-detils .socials-icons ul li a .icon{
    border: 1px solid var(--blue);
    width: 100%;
    height: 100%;
    display:flex;
    justify-content: center;
    align-items: center;
    color: var(--blue);
     transition: 0.4s linear;
    -webkit-transition: 0.4s linear;
    text-decoration: none;
}

.thank-you-section .thank-you-page-detils .socials-icons ul li a:hover{
    background: linear-gradient(97.12deg, #1C0D4B 0%, #472CA0 100%);
    border: 1px solid var(--golden);
}

.thank-you-section .thank-you-page-detils .socials-icons ul li a:hover .icon{
    border: 1px solid var(--golden);
    color: var(--golden);
}


/* thank-you-section */


/* footer */
.footer {
    position: relative;
}

.footer .footer-bg {
    position: absolute;
    top: -280px;
    left: 0;
    right: 0;
    bottom: 0;
}

.footer .footer-bg * {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer .footer-main {
    padding: 60px 0 80px;
    position: relative;
    z-index: 1;
}

.footer .footer-top .logo-container {
    max-width: 248px;
    margin: 0 auto 72px;
    display: inline-block;
}

.footer .footer-top .event-details .event-date-time * {
    font-family: "Marcellus", serif;
    font-size: 32px;
    line-height: 110%;
}

.footer .footer-top .event-details .event-date-time {
    margin-bottom: 8px;
}

.footer .footer-top .event-details .event-date-time p {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer .footer-top .event-details .event-location * {
    font-family: "Marcellus", serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 120%;
}

.footer .footer-top .event-details .event-location {
    margin-bottom: 48px;
}

.footer .footer-top .event-details::after {
    content: "";
    display: inline-block;
    width: 154px;
    background: var(--golden);
    height: 1px;
}

.footer-top .contact-info {
    padding-top: 48px;
    display: inline-flex;
    gap: 8px;
    align-items: center;
}

.footer-top .contact-info a:hover {
    color: var(--netural);
}

.footer .footer-top .event-details .event-location p:last-child {
    margin-bottom: 0;
}

.footer .footer-top .event-details .event-date-time p:last-child {
    margin-bottom: 0;
}

.footer .footer-top .contact-info * {
    font-family: "Marcellus", serif;
    font-size: 24px;
    line-height: 120%;
    color: var(--golden);
}

.footer .footer-top .event-details .event-date-time span {
    display: inline-block;
    width: 53px;
    height: 1px;
    background: #FFFFFF;
}

.footer .footer-bottom {
    padding: 50px 0;
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--golden);
}

.footer-bottom .footer-bottom-wrapper {
    max-width: 1352px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between
}

.footer-bottom .footer-bottom-wrapper .company-info * {
    font-family: "Public Sans", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    color: #FFFFFF;
}

.footer-bottom .footer-bottom-wrapper .company-info p {
    margin-bottom: 5px;
}

.footer-bottom .footer-bottom-wrapper .company-info p:last-child {
    margin-bottom: 0;
}

.footer-bottom .footer-bottom-wrapper .legal-links ul li {
    margin-bottom: 8px;
}

.footer-bottom .footer-bottom-wrapper .legal-links ul li:last-child {
    margin-bottom: 0;
}

.footer-bottom .footer-bottom-wrapper .legal-links ul li * {
    font-family: "Public Sans", sans-serif !important;
    font-weight: 400 !important;
    font-size: 14px !important;
    line-height: 130% !important;
    color: var(--netural) !important;
    background-image: none !important;
    background-color: transparent !important;
    padding: 0 !important;
    border: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    -ms-border-radius: 0 !important;
    -o-border-radius: 0 !important;
}

.footer-bottom .footer-bottom-wrapper .legal-links ul li a:hover {
    color: var(--golden) !important;
}

/* footer */
/* divyesh */

.videoBox {display:none;}
.gifBox {display:none;}
html.safari .videoBox {display: none !important;}

html.other .videoBox {display:block !important;}
html.safari .gifBox {display:block !important;}

.socials-icons ul
{
    display: flex;
}

.socials-icons ul li{
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    margin-bottom: 15px;
    font-size: 24px;
    color: #E2B774;
}

.socials-icons ul li a{
    color: #E2B774;
}
