
/* Main css */


/* Font Family */
@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/opensans-regular.woff2') format('woff2'),
        url('../fonts/opensans-regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/opensans-light.woff2') format('woff2'),
        url('../fonts/opensans-light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/opensans-semibold.woff2') format('woff2'),
        url('../fonts/opensans-semibold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/opensans-bold.woff2') format('woff2'),
        url('../fonts/opensans-bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/opensans-extrabold.woff2') format('woff2'),
        url('../fonts/opensans-extrabold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Raleway';
    src: url('../fonts/raleway-bold.woff2') format('woff2'),
        url('../fonts/raleway-bold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Archivo';
    src: url('../fonts/archivo-bold.woff2') format('woff2'),
        url('../fonts/archivo-bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Museo Sans';
    src: url('../fonts/museo-sans-black.woff2') format('woff2'),
        url('../fonts/museo-sans-black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Museo Sans';
    src: url('../fonts/museo-sans-bold.woff2') format('woff2'),
        url('../fonts/museo-sans-bold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}


/* Variables */

:root{
    --fontPrimary: 'Open Sans';
    --fontSecondary: 'Museo Sans';
    --fontAlt: 'Archivo';
    --white: #ffffff;
    --black: #000000;
    --purpleGradient: linear-gradient(360deg,rgba(0, 14, 56, 1) 0%, rgba(63, 24, 106, 1) 100%);
    --pinkGradient: linear-gradient(180deg,rgba(255, 204, 129, 1) 0%, rgba(233, 199, 159, 1) 100%); 
}


/* Utility classes */
.white{
    color: var(--white);
}
.dark{
    color: var(--black);
}
.section--hl1{
    font-size: 4rem;
    line-height: 1.3;
}
.section--hl2{
    font-size: 3rem;
    line-height: 1.5;
}
.section--hl3{
    font-size: 2rem;
    line-height: 1.5;
}
.section--hl4{
    font-size: 1.5rem;
    line-height: 1.5;
}
.container{
    width: 100%;
    max-width: 1720px;
    margin: 0 auto;
}
.container--flex{
    position: relative;
    display: flex;
    display: -moz-box;
    display: -ms-flexbox;
    box-sizing: border-box;
}
.container--aligncenter{
    align-items: center;
}
.container--alignstart{
    align-items: start;
}
.container--alignend{
    align-items: end;
}
.container--justifycenter{
    justify-content: center;
}
.container--justifybetween{
    justify-content: space-between;
}
.container--justifyend{
    justify-content: flex-end;
}


/* Main CSS */

body{
    font-family: var(--fontPrimary);
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
    padding: 0;
    color: var(--black);
    overflow-x: hidden;
    box-sizing: border-box;
}

h1,h2,h3,h4,h5,h6,p,figure,fieldset,input,select{
    margin: 0;
    padding: 0;
}

.siteheader{
    width: 100%;
    height: 100px;
    z-index: 5;
    top: 0;
    left: 0;
    position: fixed;
    transition: all 0.3s ease-out;
    transition-timing-function: linear;
}
.siteheader-fixed{
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 5;
    border-bottom: 1px solid #3B269C;
    background: linear-gradient(to right,  rgba(0,14,56,1) 0%,rgba(63,24,106,1) 100%);

}
.siteheader .container--flex{
    position: relative;
    overflow: visible;
}
.siteheader__logo{
    top: 3px;
    left: 0; 
    z-index: 3;
    margin-left: -15px;
    position: absolute;
}
.siteheader__logo img{
    transition: all 0.3s ease-out;
    transition-timing-function: linear;
}
.siteheader__logo-scroll{
    top: 0px;
}
.siteheader__logo-scroll img{
    width: 132px;
    height: 103px;
}
.siteheader__btn{
    height: auto;
    margin-top: 20px;
    display: inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    border-radius: 4px;
    margin-right: 18px;
    text-decoration: none;
}
.siteheader__btn-active{
    display: inline-flex;
}
.siteheader__btn-disable{
    display: none;
}
.siteheader__btnleft{
    width: 60px;
    height: 60px;
    display: flex;
    display: -moz-box;
    display: -ms-flexbox;
    align-items: center;
    justify-content: center;
    border-radius: 4px 0 0 4px;
    background: #3F186A;
    background: linear-gradient(90deg,rgba(63, 24, 106, 1) 0%, rgba(52, 22, 97, 1) 50%, rgba(0, 14, 56, 1) 100%);
}
.siteheader__btnright{
    font-size: 14px;
    font-family: var(--fontPrimary);
    font-weight: bold;
    line-height: 14px;
    text-transform: uppercase;
    color: #030E3B;
    height: 56px;
    padding: 0 20px;
    display: flex;
    display: -moz-box;
    display: -ms-flexbox;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 2px solid #000E38;
    border-left: none;
    border-radius: 0 4px 4px 0;
}
.siteheader__btn__scroll{
    width: 224px;
    height: 62px;
    border-radius: 8px;
    border: 1px solid #3B269C;
    font-family: var(--fontPrimary);
    font-size: 20px;
    font-weight: bold;
    color: #194C9C;
    text-decoration: none;
    display: none;
    margin-top: 20px;
    background-color: var(--white);
}
.siteheader__btn__scroll-active{
    display: flex;
}
.siteheader__btn__scroll-disable{
    display: none;
}
.siteheader__btn__scroll svg{
    margin-left: 10px;
}
.skip__link:not(:focus) {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
.skip__link:focus {
  position: static;
  width: auto;
  height: auto;
  display: inline-block;
  padding: 5px;
  color: #fff;
  font-size: 14px;
  z-index: 10;
  text-decoration: none;
  background-color: gray;
}
.hero{
    width: 100%;
    height: auto;
    min-height: 720px;
    position: relative;
    margin-top: 100px;
    background: linear-gradient(to right,  #000e38 0%,#3f186a 50%,#3f186a 72%,#3f186a 100%);
}
.hero> .container--flex{
    min-height: 720px;
}

.hero__bgcircle{
    width: 585px;
    height: 585px;
    position: absolute;
    top: 70px;
    right: 70px;
    filter: blur(100px);
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.24);
}

.hero__left{
    max-width: 520px;
    height: 100%;
    align-self: center;
}

.hero__left__hl1{
    font-family: var(--fontSecondary);
    font-size: 3rem;
    line-height: 1.5;
    background: -webkit-linear-gradient(to bottom,  #ffcc81 0%,#e9c79f 100%);
    background: linear-gradient(to bottom,  #ffcc81 0%,#e9c79f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero__left__svg{
    margin-top: 4px;
}

.hero__hl2{
    font-family: var(--fontPrimary);
    font-size: 1.875rem;
    line-height: 1.5;
    display: block;
    margin-top: 4px;
    text-transform: uppercase;
    background: -webkit-linear-gradient(to bottom,  #ffcc81 0%,#e9c79f 100%);
    background: linear-gradient(to bottom,  #ffcc81 0%,#e9c79f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero__infowrap{
    width: 100%;
    max-width: 520px;
    height: 120px;
    margin-top: 35px;
    display: flex;
    display: -moz-box;
    display: -ms-flexbox;
    border-radius: 213.33px;
    position: relative;
    background: linear-gradient(to bottom,  #ffcc81 0%,#e9c79f 100%);
}

.hero__infowrap__inner{
    width: 510px;
    height: 112px;
    column-gap: 32px;
    position: relative;
    display: flex;
    display: -moz-box;
    display: -ms-flexbox;
    border-radius: 213.33px;
    border: 1.33px solid rgba(0,0,0,0.13);
}
.svg__path{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.info__text{
    width: 203px;
}
.info__text p{
    font-family: var(--fontPrimary);
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1.4;
    text-align: center;
    background: -webkit-linear-gradient(to bottom,  #3f186a 0%,#000e38 100%);
    background: linear-gradient(to bottom,  #3f186a 0%,#000e38 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}
.info__text p span{
    font-family: var(--fontPrimary);
    font-size: 1.1rem;
    display: inline-block;
    font-weight: 400;
}
.info__text-right{
    width: 208px;
}

.hero__slider__desktop{
    width: 100%;
    max-width: 676px;
}
.hero__slider__desktop{
    height: 100%;
    max-height: 720px;
    display: flex;
    justify-content: space-between;
}
.hero__slider__desktop .swiper-wrapper{
    flex-flow: column;
    -webkit-transition-timing-function:linear!important; 
    -o-transition-timing-function:linear!important;
    transition-timing-function : linear;
}
.hero__slider__inner .swiper-slide{
    display: flex;
    width: auto !important;
    height: auto !important;
    margin-bottom: 0 !important;
}
.hero__slider__inner .swiper-slide img{
    width: 100%;
    height: auto;
    margin: 18px 0px;
    border-radius: 131px;
    border: none !important;
}
.hero__form{
    width: 100%;
    padding: 24px;
    max-width: 414px;
    border-radius: 12px;
    position: relative;
    z-index: 3;
    margin-top: 109px;
    box-sizing: border-box;
    background: linear-gradient(to bottom,  rgba(0,0,0,0.2) 0%,rgba(6,21,50,0.2) 100%);
}
.hero__form__hl1{
    font-family: var(--fontAlt);
    font-size: 2rem;
    font-weight: bold;
    color: var(--white);
    display: block;
    margin-bottom: 25px;
}
.hero_form_input{
    width: 100%;
    height: 55px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 18px;
    color: var(--white);
    border: none;
    margin-bottom: 14px;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.2);
}
.hero_form_textarea{
    width: 100%;
    min-height: 100px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 18px;
    color: var(--white);
    resize: vertical;
    border: none;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.2);
}

.hero_form_input::placeholder,
.hero_form_textarea::placeholder{
    font-family: var(--fontPrimary);
    font-size: 18px;
    font-weight: 400;
    color: var(--white);
}
.hero_form_input:focus,
.hero_form_textarea:focus{
    outline: none;
}
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0; 
}

.hero__form__btn{
    font-size: 14px;
    font-family: var(--fontPrimary);
    font-weight: bold;
    line-height: 14px;
    text-transform: uppercase;
    color: #030E3B;
    height: auto;
    padding: 0;
    border: none;
    margin-top: 35px;
    display: flex;
    display: -moz-box;
    display: -ms-flexbox;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    border-left: none;
    border-radius: 0 4px 4px 0;
}
.hero__form__btnleft{
    width: 60px;
    height: 60px;
    display: flex;
    display: -moz-box;
    display: -ms-flexbox;
    align-items: center;
    justify-content: center;
    border-radius: 4px 0 0 4px;
    background: var(--white);
}
.hero__form__btnright {
    font-size: 14px;
    font-family: var(--fontPrimary);
    font-weight: bold;
    line-height: 14px;
    text-transform: uppercase;
    color: var(--white);
    width: 150px;
    height: 56px;
    padding: 0;
    display: flex;
    display: -moz-box;
    display: -ms-flexbox;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 2px solid var(--white);
    border-left: none;
    border-radius: 0 4px 4px 0;
}
.hero__slider__mobile{
    display: none;
    padding-top: 30px;
}
.hero__slider__mobile .swiper-wrapper{
    transition-timing-function: linear;
    -webkit-transition-duration: linear;

}
.hero__slider__mobile .mobile__slide__item{
    width: 138px !important;
    height: 221px;
    margin-left: 8px;
    margin-right: 8px;
    border-radius: 93px;
}
.mobile__slide__item img{
    border-radius: 93px;
}
.mb-50{
    margin-bottom: 50px;
}
.mt-50{
    margin-top: 50px;
}
.badge{
    width: 100%;
    padding: 17px;
    max-width: 1406px;
    margin: 80px auto;
}
.badge__item{
    width: 100%;
    max-width: 308px;
    position: relative;
}
.badge__item p{
    font-family: var(--fontPrimary);
    font-size: 1.75rem;
    line-height: 1.2;
    font-weight: 400;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: -webkit-linear-gradient(to right,  rgba(1,14,57,1) 0%,rgba(3,68,162,1) 100%);
    background: linear-gradient(to right,  rgba(1,14,57,1) 0%,rgba(3,68,162,1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.badge__item p span{
    font-weight: bold;
}
.participating__schools__hl2{
    font-family: var(--fontAlt);
    font-size: 2rem;
    line-height: 1.2;
    text-align: center;
    font-weight: bold;
    background: -webkit-linear-gradient(to bottom,  rgba(63,24,106,1) 0%,rgba(1,14,57,1) 100%);
    background: linear-gradient(to bottom,  rgba(63,24,106,1) 0%,rgba(1,14,57,1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.participating__schools_slider-one{
    margin: 42px 0;
}
.participating__schools_slider .swiper-slide{
    width: 100%;
    max-width: 274px;
    height: 120px;
    margin: 0 16px;
    border: 1px solid #E8E7E7;
}
.participating__schools_slider .swiper-wrapper{
    -webkit-transition-timing-function:linear!important; 
    -o-transition-timing-function:linear!important;
    transition-timing-function : linear;
}
.videosection{
    margin-top: 100px;
}
.videosection__inner{
    width: 100%;
    height: 800px;
    position: relative;
}
.videosection__introvideo{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    object-fit: cover;
    object-position: center center;
}
.videosection__overlay{
    width: 100%;
    height: 500px;
    left: 0;
    bottom: 0;
    position: absolute;
    background: linear-gradient(to bottom,  rgba(255,255,255,0) 0%,rgba(0,0,0,1) 100%);
}
.videosection__controls{
    height: 100%;
    position: relative;
}
.videosection__controls .container{
    position: relative;
    height: 100%;
}
.videosection__playpause{
    position: absolute;
    bottom: 40px;
    left: 0;
    display: flex;
    display: -ms-flexbox;
    display: -moz-box;
    align-items: center;
    justify-content: start;
}
.videosection__btn{
    width: 80px;
    height: 80px;
    padding: 0;
    border: 0;
    cursor: pointer;
    display: flex;
    display: -ms-flexbox;
    display: -moz-box;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--white);
}
.playpause__text{
    font-family: 'Raleway';
    font-size: 24px;
    font-weight: bold;
    margin-left: 20px;
    color: var(--white);
    display: block;
}
.chosenschools{
    margin-top: 80px;
}
.chosenschools__hl3{
    font-family: var(--fontSecondary);
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.5;
    font-weight: bold;
    text-align: center;
    background: -webkit-linear-gradient(to bottom,  rgba(63,24,106,1) 0%,rgba(0,14,56,1) 100%);
    background: linear-gradient(to bottom,  rgba(63,24,106,1) 0%,rgba(0,14,56,1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.chosenschools__container{
    margin-top: 35px;
    padding: 12px 0px;
}
.chosenschools__item{
    width: 100%;
    max-width: 420px;
    height: 405px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}
.chosenschools__item img{
    width: 100%;
    height: 405px;
    object-fit: cover;
    object-position: center center;
}
.chosenschools__item::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 1px;
    z-index: 1;
    background: linear-gradient(to bottom,  rgba(255,255,255,0) 0%,rgba(255,255,255,0) 12%,rgba(0,0,0,1) 100%);
}
.chosenschools__overlay{
    position: absolute;
    width: calc(100% - 48px);
    left: 24px;
    bottom: 24px;
    z-index: 2;
}
.chosenschools__hl4{
    font-family: var(--fontAlt);
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--white);
}
.chosenschools__p{
    font-family: var(--fontPrimary);
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--white);
    margin-top: 12px;
    max-width: 100%;
    line-height: 1.5;
}
.appointments{
    margin-top: 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to right,  rgba(222,193,255,1) 0%,rgba(234,215,255,1) 55%,rgba(234,215,255,1) 100%);
}
.appointments__img{
    position: absolute;
    width: 1150px;
    height: 100%;
    top: 0;
    right: 0;
    background: url('../img/pre-schedule-bg.jpg') no-repeat top center;
    background-size: cover;
}
.appointments__preschedules{
    width: 100%;
    max-width: 640px;
    position: relative;
    min-height: 725px;
}
.appointments__img::after{
    position: absolute;
    content: "";
    width: 254px;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 3;
    background: linear-gradient(to right,  rgba(234,215,255,1) 0%,rgba(234,215,255,1) 20%,rgba(255,255,255,0) 100%);
}
.appointments__img::before{
    position: absolute;
    content: "";
    width: 254px;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 3;
    background: linear-gradient(to right,  rgba(234,215,255,1) 0%,rgba(234,215,255,1) 20%,rgba(255,255,255,0) 100%);
}
.appointments__container{
    min-height: 725px;
    position: static;
    overflow: hidden;
}
.appointments__span{
    font-family: var(--fontPrimary);
    font-size: 2rem;
    line-height: 1.5;
    font-style: italic;
    display: block;
    background: -webkit-linear-gradient(to right,  rgba(155,77,240,1) 0%,rgba(117,87,151,1) 100%);
    background: linear-gradient(to right,  rgba(155,77,240,1) 0%,rgba(117,87,151,1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.appointments__preschedules__hl3{
    font-family: var(--fontSecondary);
    font-size: 4rem;
    line-height: 1.3;
    font-weight: 400;
    margin-bottom: 7px;
    background: -webkit-linear-gradient(to bottom, rgba(63,24,106,1) 0%,rgba(0,14,56,1) 100%);
    background: linear-gradient(to bottom, rgba(63, 24, 106, 1) 0%, rgba(0, 14, 56, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.appointments__preschedules__hl3 span{
    font-family: var(--fontPrimary);
    display: inline-block;
    font-size: 3.5rem;
}
.appointments__btn {
    display: inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    border-radius: 4px;
    margin-top: 40px;
    text-decoration: none;
}
.appointments__preschedules .appointments__btnleft {
    width: 60px;
    height: 60px;
    display: flex;
    display: -moz-box;
    display: -ms-flexbox;
    align-items: center;
    justify-content: center;
    border-radius: 4px 0 0 4px;
    background: #3F186A;
    background: linear-gradient(to bottom,  rgba(63,24,106,1) 0%,rgba(0,14,56,1) 100%);
}
.appointments__preschedules .appointments__btnright {
    font-size: 14px;
    font-family: var(--fontPrimary);
    font-weight: bold;
    line-height: 14px;
    text-transform: uppercase;
    color: #030E3B;
    height: 56px;
    padding: 0 20px;
    display: flex;
    display: -moz-box;
    display: -ms-flexbox;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 2px solid #000E38;
    border-left: none;
    border-radius: 0 4px 4px 0;
}
.appointments___img{
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
}
.attraction{
    min-height: 850px;
    background: url('../img/attraction-bg.jpg') no-repeat top center;
    background-size: cover;
}
.attraction__left{
    width: 100%;
    max-width: 987px;
}
.kids__gallery{
    width: 100%;
    max-width: 462px;
    flex-wrap: wrap;
    column-gap: 20px;
    margin-left: 70px;
    row-gap: 30px;
    transform: rotate(-45deg);
}
.kids__gallery__item{
    width: 214px;
    height: 214px;
    overflow: hidden;
    border-radius: 32px;
    position: relative;
}
.kids__gallery__item__img{
    width: 280px;
    height: 280px;
    position: absolute;
    top: -32px;
    left: -35px;
    border-radius: 32px;
    transform: rotate(45deg);
}
.kids__gallery__item-one{
    margin-top: 20px;
}
.kids__gallery__item-two{
    margin-top: 10px;
}
.kids__gallery__item-four{
    margin-top: -8px;
}
.kids__gallery-mobile{
    display: none;
}
.attraction__right{
    width: 100%;
    max-width: 565px;
}
.attraction__right__hl3{
    font-family: var(--fontSecondary);
    font-size: 3rem;
    line-height: 1.5;
    font-weight: 800;
    background: -webkit-linear-gradient(to bottom, rgba(63,24,106,1) 0%,rgba(0,14,56,1) 100%);
    background: linear-gradient(to bottom, rgba(63, 24, 106, 1) 0%, rgba(0, 14, 56, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.attraction__right__hl3 span{
    font-size: 3rem;
    font-family: var(--fontPrimary);
    line-height: 1.4;
    font-weight: 600;
    background: -webkit-linear-gradient(to bottom, rgba(63,24,106,1) 0%,rgba(0,14,56,1) 100%);
    background: linear-gradient(to bottom, rgba(63, 24, 106, 1) 0%, rgba(0, 14, 56, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.attraction__right__btngroup{
    margin-top: 24px;
}
.attraction__right__btn{
    width: 100%;
    max-width: 273px;
    font-family: var(--fontPrimary);
    font-size: 1.25rem;
    text-transform: uppercase;
    font-weight: bold;
    height: 60px;
    display: flex;
    display: -ms-flexbox;
    display: -moz-box;
    align-items: center;
    justify-content: center;
    border-radius: 5.45px;
    text-decoration: none;
}
.attraction__right__btn-dark{
    color: var(--white);
    background: linear-gradient(to bottom,  rgba(63,24,106,1) 0%,rgba(0,14,56,1) 100%);;
}
.attraction__right__btn-light{
    color: #3F186A;
    border: solid 1.36px #3F186A;
    background: transparent;
}
.attraction__right__hl4{
    font-family: var(--fontPrimary);
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.5;
    color: var(--black);
    margin-top: 48px;
}
.attraction__right__p{
    font-family: var(--fontPrimary);
    font-size: 1.25rem;
    line-height: 1.5;
    font-weight: 400;
    color: var(--black);
    margin-top: 16px;
}
.attraction__btn{
    display: inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    border-radius: 4px;
    margin-top: 42px;
    text-decoration: none;
}
.attraction__btnleft {
    width: 60px;
    height: 60px;
    display: flex;
    display: -moz-box;
    display: -ms-flexbox;
    align-items: center;
    justify-content: center;
    border-radius: 4px 0 0 4px;
    background: #3F186A;
    background: linear-gradient(to bottom, rgba(63, 24, 106, 1) 0%, rgba(0, 14, 56, 1) 100%);
}
.attraction__btnright {
    font-size: 14px;
    font-family: var(--fontPrimary);
    font-weight: bold;
    line-height: 14px;
    text-transform: uppercase;
    color: #030E3B;
    height: 56px;
    padding: 0 20px;
    display: flex;
    display: -moz-box;
    display: -ms-flexbox;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 2px solid #000E38;
    border-left: none;
    border-radius: 0 4px 4px 0;
}
.exibition{
    padding-top: 80px;
    position: relative;
    background: linear-gradient(to bottom,  rgba(63,24,106,1) 0%,rgba(0,14,56,1) 100%);
}
.exibition::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 70px;
    left: 0;
    bottom: -1px;
    z-index: 1;
    background-color: var(--white);
}
.exibition::after{
    position: absolute;
    content: "";
    width: 100%;
    height: 184px;
    bottom: -115px;
    left: 0;
    z-index: 2;
    background: url('../img/svg-curve.png') no-repeat top center;
    background-size: cover;
}
.exibition__hl3{
    font-family: var(--fontSecondary);
    font-size: 3rem;
    text-align: center;
    color: var(--white);
}
.exibition__hl3 span{
    font-family: var(--fontPrimary);
    font-size: 3rem;
    font-weight: 600;
    line-height: 1;
}
.exibition__sliderwrap{
    margin-top: 40px;
    position: relative;
}
.exibition__itemwrap{
    width: 100%;
    padding: 2px;
    border-radius: 20px;
    max-width: 417px;
    min-height: 376px;
    background: linear-gradient(135deg,  rgba(7,15,61,1) 0%,rgba(117,87,151,1) 100%);
}
.exibition__item{
    width: 100%;
    padding: 30px;
    max-width: 417px;
    min-height: 380px;
    border-radius: 20px;
    box-sizing: border-box;
    background: linear-gradient(60deg,rgba(221, 191, 255, 1) 0%, rgba(237, 221, 255, 1) 100%);
}
.exibition__hl4{
    font-family: var(--fontPrimary);
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.5;
    margin-top: 30px;
    background: -webkit-linear-gradient(to bottom, rgba(63,24,106,1) 0%,rgba(0,14,56,1) 100%);
    background: linear-gradient(to bottom, rgba(63, 24, 106, 1) 0%, rgba(0, 14, 56, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.exibition__p{
    font-family: var(--fontPrimary);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    margin-top: 8px;
    background: -webkit-linear-gradient(to bottom, rgba(63,24,106,1) 0%,rgba(0,14,56,1) 100%);
    background: linear-gradient(to bottom, rgba(63, 24, 106, 1) 0%, rgba(0, 14, 56, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.exibition__slider__navigation{
    width: 100%;
    min-height: 184px;
    position: relative;
    background: url('../img/svg-curve.png') no-repeat top center;
}
.exibition__slider__shape{
    position: absolute;
    top: 0;
    left: 0;
}
.exibition__slider__btn{
    width: 60px;
    height: 60px;
    z-index: 3;
    position: relative;
    cursor: pointer;
    border: 2.25px solid var(--white);
    border-radius: 50px;
    background-color: var(--white);
}
.swiper-button-disabled{
    background-color: transparent;
}
.swiper-button-disabled svg path{
    fill: var(--white);
}
.exibition__slider__navigationwrap{
    position: relative;
    width: 150px;
    margin: 0 auto;
    z-index: 3;
    margin-top: 20px;
}

.chooseus{
    margin-top: 194px;
}
.chooseus__hl3 {
    font-family: var(--fontSecondary);
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.5;
    text-align: center;
    background: -webkit-linear-gradient(to bottom, rgba(63,24,106,1) 0%,rgba(0,14,56,1) 100%);
    background: linear-gradient(to bottom, rgba(63, 24, 106, 1) 0%, rgba(0, 14, 56, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.chooseus__wrapper{
    margin-top: 40px;
}
.chooseus__item{
    width: 100%;
    max-width: 418px;
    height: 290px;
    border-radius: 17px;
    overflow: hidden;
    position: relative;
}

.chooseus__overlay{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.40);
}
.chooseus__playpause{
    position: absolute;
    left: 20px;
    bottom: 20px;
    display: flex;
    display: -ms-flexbox;
    display: -moz-box;
    align-items: center;
    justify-content: start;
}
.chooseus__video__btn{
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    cursor: pointer;
    display: flex;
    display: -ms-flexbox;
    display: -moz-box;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--white);
}
.chooseus__playpause__text{
    font-family: var(--fontPrimary);
    font-size: 20px;
    font-weight: 500;
    margin-left: 12px;
    line-height: 1.4;
    color: var(--white);
    display: block;
}
.chooseus__slider__nav__wrapper{
    width: 100%;
    max-width: 100px;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    display: none;
}

.chooseus__slider__nav{
    width: 40px;
    height: 40px;
    border-radius: 50px;
    border: none;
    padding: 0;
    background: linear-gradient(to bottom,  rgba(63,24,106,1) 0%,rgba(0,14,56,1) 100%);
}
.swiper-button-disabled .slider__nav__inner{
    background-color: var(--white);
}
.swiper-button-disabled .slider__nav__inner svg path{
    fill: #000E38;
}
.slider__nav__inner{
    width: 36px;
    height: 36px;
    border-radius: 50px;
    background-color: linear-gradient(to bottom,  rgba(63,24,106,1) 0%,rgba(0,14,56,1) 100%);
}
.interview__video{
    position: absolute;
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center center;
}
.gallery{
    margin-top: 106px;
    padding-left: 100px;
}

.gallery__hl3 {
    font-family: var(--fontSecondary);
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.5;
    position: relative;
    font-weight: bold;
    text-align: center;
    z-index: 3;
    background: -webkit-linear-gradient(to bottom, rgba(63,24,106,1) 0%,rgba(0,14,56,1) 100%);
    background: linear-gradient(to bottom, rgba(63, 24, 106, 1) 0%, rgba(0, 14, 56, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.gallery__slider{
    position: relative;
    margin-top: -60px;
}
.gallery__slider::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 86px;
    left: 0;
    top: 0;
    z-index: 3;
    background: url('../img/gallery-before.png') no-repeat top left;
    background-size: cover;
}
.gallery__slider::after{
    position: absolute;
    content: "";
    width: 100%;
    height: 86px;
    left: 0;
    bottom: 7px;
    z-index: 3;
    background: url('../img/gallery-after.png') no-repeat bottom left;
    background-size: cover;
}
.gallery__item__img{
    width: 100%;
}
.gallery__slider .swiper-wrapper{
    -webkit-transition-timing-function:linear!important; 
    -o-transition-timing-function:linear!important;
    transition-timing-function : linear;
}
.footer{
    margin-top: 60px;
}
.footer__inner{
    width: 100%;
    height: auto;
    position: relative;
    padding-top: 58px;
    padding-bottom: 92px;
    background: linear-gradient(to bottom,  rgba(63,24,106,1) 0%,rgba(0,14,56,1) 70%,rgba(0,14,56,1) 100%);
}
.footer__column__one{
    width: 100%;
    max-width: 142px;
}
.footer__column__wrap{
    width: calc(100% - 227px);
}
.footer__column__two{
    width: 100%;
    max-width: 417px;
}
.footer__column__three{
    width: 100%;
    max-width: 417px;
}
.footer__column__four{
    width: 100%;
    max-width: 275px;
}
.footer__column__five{
    width: 100%;
    max-width: 187px;
}
.footer__column__five .footer__text{
    margin-left: 0;
}
.footer__social{
    
}
.footer__icon{
    width: 52px;
    height: 52px;
    border-radius: 10px;
    background: linear-gradient(135deg,  rgba(0,14,56,1) 0%,rgba(0,14,56,1) 30%,rgba(63,24,106,1) 100%);;
}
.footer__icon__inner{
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background-color: var(--white);
}
.footer__column__heading{
    font-family: var(--fontSecondary);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--white);
}
.footer__text{
    margin-left: 14px;
}
.footer__text p{
    font-family: var(--fontPrimary);
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--white);
    margin-top: 6px;
}
.footer__copyright{
    width: 100%;
    padding: 18px 0px;
    background-color: var(--white);
}
.footer__copyright p{
    font-family: var(--fontSecondary);
    font-size: 1.125rem;
    line-height: 1.4;
    text-align: center;
    background: -webkit-linear-gradient(to bottom, rgba(63,24,106,1) 0%,rgba(0,14,56,1) 100%);
    background: linear-gradient(to bottom, rgba(63, 24, 106, 1) 0%, rgba(0, 14, 56, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.footer__copyright p span:first-of-type{
    font-family: var(--fontPrimary);
    color: #464646;
    background: #464646;
    background: #464646;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.footer__copyright p span{
    font-family: var(--fontPrimary);
    font-size: 1.125rem;
    line-height: 1.4;
    text-align: center;
}

