
/* Base CSS */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Nuosu+SIL&family=Roboto:wght@100;300;400;500;700&display=swap');
.alignleft {
    float: left;
    margin-right: 15px;
}

.alignright {
    float: right;
    margin-left: 15px;
}

.aligncenter {
    display: block;
    margin: 0 auto 15px;
}

a:focus {
    outline: 0 solid
}

img {
    max-width: 100%;
    height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 15px;
    color: #fff;
    font-family: 'Nuosu SIL' ;
}

body {
    color: #fff;
    font-weight: 200;
    font-family: 'Bebas Neue';
    background-color: #121013;
}

p {
    font-family: 'Roboto', sans-serif;
}

.selector-for-some-widget {
    box-sizing: content-box;
}

a:hover {
    text-decoration: none
}

/*---------------------- Main area start ----------------------*/

/* Style the video: 100% width and height to cover the entire window */
#myVideo {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
}

/* Add some content at the bottom of the video/page */
.content {
  position: fixed;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #f1f1f1;
  width: 100%;
  padding: 20px;
}

/* Style the button used to pause/play the video */
#myBtn {
  width: 200px;
  font-size: 18px;
  padding: 10px;
  border: none;
  background: #000;
  color: #fff;
  cursor: pointer;
}

#myBtn:hover {
  background: #ddd;
  color: black;
}





.main {
    position: relative;
   /* min-height: 100vh; */
}

.shape-1 {
    left: 0;
    top: 0;
    max-width: 187px;
    z-index: -1;
}
.full__height {
    padding: 120px 50px;
}

.shape-2 {
    right: 0;
    top: 0;
    z-index: -1;
    max-width: 255px;
}

.shape-3 {
    bottom: 0;
    right: 0;
    max-width: 181px;
    z-index: -1;
}

.shape-4 {
    bottom: 0;
    left: 0;
    z-index: -1;
    max-width: 181px;
}

/*---------------------- Event area start ----------------------*/


.event__area {
    position: relative;
    width: 100%;
}



.section__title h3 {
    font-weight: 400;
    font-size: 64px;
    line-height: 1.17;
    text-align: center;
    margin-bottom: 3px;
}

.section__title p {
    font-size: 24px;
}

.section__title {
    padding-bottom: 23px;
    padding-top: 70px;
}

.single__event__card {
    height: 195px;
    position: relative;
    margin-bottom: 22px;
    border-radius: 3px;
    overflow: hidden;
    z-index: 1;
}

.single__event__card:hover::after {
    opacity: 0;
}

.single__event__card__thumb {
    height: 100%;
    width: 100%;
    position: relative;
    z-index: -1;
}

.single__event__card__thumb img {
    width: 100%;
     height: 100%;  
    object-fit: fill;
}

.single__event__card__shape {
    position: absolute;
    left: -2px;
    top: -2px;
    max-width: 95px;
    z-index: 0;
}

.single__event__card::after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: rgba(18, 16, 19, 0.7);
    content: '';
    transition: .3s;
}

.single__event__card h4 {
    font-size: 43px;
    color: #fff;
    position: absolute;
    bottom: 5px;
    z-index: 1;
    transition: .3s;
    left: 46px;
    margin: 0;
    text-shadow: 0 0 4px #0003;
}

/*---------------------- Event area end ----------------------*/






/*---------------------- Form area start ----------------------*/
.single__input__item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.single__input__item .form-control {
    width: 100%;
    height: 65px;
    border: 1px solid #FFFFFF;
    background: transparent;
    border-radius: 0;
    color: #fff;
    font-size: 32px;
    line-height: 1.1;
    padding: 0 26px;
    font-family: 'Nuosu SIL';
    box-shadow: unset !important;
    margin: 0 10px;
    padding-top: 5px;
    display: flex;
    align-items: center;
}

.single__input__item label {
    min-width: 183px;
    text-align: right;
    margin: 0;
    margin-right: 30px;
    font-size: 39px;
    color: #fff;
    font-weight: 400;
    line-height: 1.1;
    padding-top: 4px;
}

.single__input__item .form-control.w-25 {
    width: 96px !important;
    padding: 0 11px;
    text-align: center;
}

.form__input__wrapper {
    min-height: 240px;
}

.form__wrapper {
    max-width: 870px;
    margin: 0 auto;
}

.form__submit button {
    background: #C49554;
    width: 291px;
    height: 71px;
    border: 4px solid #C49554;
    font-size: 36px;
    line-height: 43px;
    text-align: center;
    color: #FFFFFF;
    padding-top: 8px;
    transition: .3s;
    position: relative;
    transition: .3s;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}


.form__submit button::after {
    position: absolute;
    left: -19px;
    width: 4px;
    height: 30px;
    top: 51%;
    transform: translateY(-50%);
    transition: .3s;
    content: '';
    background: #DAA65E;
}

.form__submit button::before {
    position: absolute;
    right: -19px;
    width: 4px;
    height: 30px;
    top: 51%;
    transform: translateY(-50%);
    transition: .3s;
    content: '';
    background: #DAA65E;
}
.go__back__btn {
	width: 100%;
}
.form__submit button:hover {
    background-color: #121013;
}

.form__submit {
    padding-top: 20px;
    padding-left: 20px;
}

.go__back__btn a {
  font-style: normal;
  font-weight: 400;
  font-size: 36px;
  line-height: 43px;
  color: #FFFFFF;
  text-decoration: none;
}
.go__back__btn a img {
  margin-right: 17px;
}
.text-link {
    color: #C49554;
    text-decoration: underline;
    font-weight: 500;
    transition: .3s;
}

.text-link:hover {
    color: #C49554;
    text-decoration: none;
}

.verify-input .form-control {
    width: 116px;
    height: 188px;
    text-align: center;
    font-size: 90px;
}

.payment__method__buttons button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    margin-bottom: 20px;
    background: #C49554;
    min-height: 85px;
    border: 0;
    outline: none;
    transition: .3s;
    z-index: 1;
    overflow: hidden;
}

.payment__method__buttons button b {
    font-size: 32px;
    color: #fff;
    line-height: .9;
    padding-top: 4px;
    border-left: 4px solid #fff;
    padding-left: 52px;
}

.payment__method__icons {
    display: flex;
    align-items: center;
}

.payment__method__icons span {
    margin-right: 16px;
}

.ticket__number__input {
    display: flex;
    position: relative;
    align-items: flex-start;
}

.ticket__number__input input.form-control {
    width: 338px;
    height: 139px; 
    border: 4px solid #C49554;
    font-size: 96px;
    text-align: center;
    line-height: 1;
}

.ticket__number__input button {
    width: 50px;
    height: 50px; 
    background: #C49554;
    border: 0;
    outline: none;
    margin-left: 5px;
}

/*---------------------- Form area end ----------------------*/



/*---------------------- IDEX area start ----------------------*/
.idex__wrapper {
    position: relative;
    padding: 60px 160px;
    max-width: 80%;
    width: 883px;
    z-index: 1;
}
.idex__wrapper::after {
	position: absolute;
	left: 0;
	top: 0;
	width: 101%;
	height: 100%;
	background: rgba(18, 16, 19, 0.4);
	backdrop-filter: blur(60px);
	z-index: -1;
	content: '';
	clip-path: polygon(0 0, 58% 0%, 100% 100%, 0% 100%);
}
.idex__logo {
    max-width: 554px;
    margin-bottom: 27px;
}

.idex__content__wrap p {
    font-size: 20px;
    margin-bottom: 22px;
}

.idex__btn a {
    background: transparent;
    width: 200px;
    height: 50px;
    border: 4px solid #C49554;
    font-size: 24px;
    text-align: center;
    color: #FFFFFF;
    padding-top: 2px;
    position: relative;
    transition: .3s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    margin-left: 18px
}


.idex__btn a::after {
    position: absolute;
    left: -19px;
    width: 4px;
    height: 30px;
    top: 51%;
    transform: translateY(-50%);
    transition: .3s;
    content: '';
    background: #DAA65E;
}

.idex__btn a::before {
    position: absolute;
    right: -19px;
    width: 4px;
    height: 30px;
    top: 51%;
    transform: translateY(-50%);
    transition: .3s;
    content: '';
    background: #DAA65E;
}

.idex__btn a:hover {
    background-color: #C49554;
}

.hs-1 {
    position: absolute;
    left: 0;
    bottom: 0;
    max-width: 93px;
    z-index: 0;
}

.hs-2 {
    position: absolute;
    right: 74px;
    bottom: 69px;
    max-width: 170px;
    z-index: 0;
}

.idex__btns__wrapper a {
    background: #C49554;
    display: block;
    text-align: right;
    margin-bottom: 18px;
    transition: .3s;
    font-size: 35px;
    color: #fff;
    line-height: 1.1;
    text-decoration: none;
    padding: 18px 80px;
    position: relative;
}

.idex__btns__wrapper {
    width: 600px;
    margin-left: auto;
    margin-top: -70px;
    position: relative;
    clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
    position: relative;
    z-index: 1;
}


.idex__btns__wrapper a.two {
    padding-right: 130px;
}

.idex__btns__wrapper a.three {
    padding-right: 200px;
}

.idex__area {
   /* background: url(../img/bg.gif);  */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.idex__btns__wrapper a::after {
    position: absolute;
    left: 43px;
    top: 0;
    height: 101%;
    width: 110px;
    background: #121013;
    z-index: 1;
    content: '';
    clip-path: polygon(47% 0, 56% 0, 10% 100%, 0% 100%);
}

.idex__btns__wrapper a.one::after {
    left: 178px;
}

.idex__btns__wrapper a.two::after {
    left: 110px;
}

/*---------------------- IDEX area end ----------------------*/

/*---------------------- REGSTAR AREA START ----------------------*/

.bg__shape {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.bg__shape img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.registar__title h2 span {
    font-style: normal;
    font-weight: 400;
    font-size: 64px;
    line-height: 77px;
    text-align: center;
    color: #FFFFFF;
    display: inline-block;
    padding: 0 20px;
}

.registar__title h2 {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.check__box .form-check label {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 23px;
    line-height: 28px;
    text-align: right;
    color: #FFFFFF;
    cursor: pointer;
    padding-left: 16px;
}

.check__box .form-check {
    position: relative;
}

.check__box .form-check {
    position: relative;
    margin-bottom: 20px;
}

.check__box .form-check-input:checked[type="checkbox"] {
    background: transparent;
    border-radius: 0;
    border: 2px solid #fff;
}

.check__box .form-check-input {
    position: absolute;
    left: 23px;
    top: 0;
    height: 26px;
    width: 26px;
    background: transparent;
    border-radius: 0;
    border: 2px solid #fff;
    margin-top: 0;
    vertical-align: top;
    -webkit-border: 2px solid #fff;
    z-index: 777;
    cursor: pointer;
}

.check__box .form-check-input:focus {
    box-shadow: unset;
    border-color: #fff;
}

.checked__item {
    position: absolute;
    left: 0;
    top: 0;
    height: 26px;
    width: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    background: #fff;
    font-size: 20px;
    display: none;
}

.check__box .form-check-input:checked[type="checkbox"]~.checked__item {
    display: flex;
}

.register__wrapper {
    width: 731px;
    margin: 0 auto;
}
.register__card__wrap {
	width: 870px;
	margin: 0 auto;
}
.registar__title {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.attend__content__blk>h3 {
    font-style: normal;
    font-weight: 400;
    font-size: 40px;
    line-height: 48px;
    color: #C49554;
}

.check__box__blk {
    display: flex;
    justify-content: space-between;
}

.check__box__right__content h4 {
    font-style: normal;
    font-weight: 400;
    font-size: 32px;
    line-height: 38px;
    text-align: right;
    color: #FFFFFF;
}

.attend__accordion button {
    font-style: normal;
    font-weight: 400;
    font-size: 32px !important;
    line-height: 38px;
    color: #FEFEFE !important;
    padding: 0 55px;
    background: transparent;
}

.attend__accordion .accordion-item:last-of-type {
    border-radius: 0;
}

.attend__accordion .accordion-item {
    border: 2px solid #fff;
    background: transparent !important;
}

.attend__accordion .accordion-button:not(.collapsed) {
    color: #fff;
    background-color: transparent;
}

.attend__accordion .accordion-button:focus {
    border-color: unset;
    box-shadow: unset;
}

.choose__list ul {
    margin: 0;
    padding: 0;
    height: 400px;
}

.choose__list ul li {
    list-style: none;
    padding-right: 50px;
}

.attend__accordion .accordion-body {
    padding: 15px 55px;
}

.attend__accordion button span {
    display: block;
    width: 100%;
    border-bottom: 2px solid #fff;
    padding: 15px;
    transition: .3s all ease-in-out;
}

.choose__list ul li a {
    text-decoration: none;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    font-size: 24px;
    line-height: 28px;
    color: #FFFFFF;
    display: block;
    padding: 20px 15px;
    transition: .3s all ease-in-out;
    border-bottom: 2px solid #fff;
}

.attend__accordion .accordion-button.collapsed span {
    border: 0;
}

.choose__list ul li a:hover {
    color: #C49554;
}

.choose__list ul li:last-child a {
    border: 0;
}

.attend__accordion .accordion-button:not(.collapsed)::after {
    background-image: url(../img/down__ico.svg);
}

.attend__accordion .accordion-button::after {
    background-image: url(../img/down__ico.svg);
}

.main__wrap {
    min-height: auto;
    height: auto;
}

html,
body {
    height: 100%;
}

.accordion__bottom__text p {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 19px;
    text-align: right;
    color: #C49554;
    margin-top: 8px;
}

.voucher__top__text__blk {
    display: flex;
    justify-content: space-between;
}

.voucher__top__text__blk h3 {
    font-style: normal;
    font-weight: 400;
    font-size: 32px;
    line-height: 38px;
    color: #FFFFFF;
}

.voucher__top__text__blk {
    display: flex;
    justify-content: space-between;
}

.voucher__code__form input {
    border: 3px solid #FFFFFF;
    font-style: normal;
    font-weight: 400;
    font-size: 32px;
    color: #FFFFFF;
    width: 447px;
    height: 55px;
    background: transparent;
    padding: 0 15px;
    padding-top: 4px;
}

.voucher__code__form button {
    background: #C49554;
    width: 215px;
    height: 56px;
    border: 0;
    font-style: normal;
    font-weight: 400;
    font-size: 32px;
    line-height: 38px;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    top: -2px;
    margin-left: 10px;
}

.voucher__blk {
    padding: 25px;
    border: 3px solid #fff;
    margin-bottom: 40px;
}

.voucher__top__text__blk h4 {
    font-style: normal;
    font-weight: 400;
    font-size: 32px;
    line-height: 38px;
    text-align: right;
    color: #C49554;
}

.minus__img {
    display: flex;
    justify-content: space-between;
}

.minus__img span {
    display: flex;
}

.minus__img span img {
    height: 30px;
    margin-right: 65px;
}

.minus__img>b {
    font-style: normal;
    font-weight: 400;
    font-size: 32px;
    line-height: 38px;
    text-align: right;
    color: #FFFFFF;
}

.minus__img span p {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    font-size: 24px;
    line-height: 28px;
    color: #FFFFFF;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    margin: 0;
}

.course__minus {
    border-bottom: 3px solid #C49554;
}

.minus__img {
    margin-bottom: 20px;
}

.subtotal__top__blk {
    padding: 20px 0;
}

.subtotal__top__blk h4 {
    font-style: normal;
    font-weight: 400;
    font-size: 32px;
    line-height: 38px;
    color: #FFFFFF;
    display: flex;
    justify-content: space-between;
}

.subtotal__top__blk p {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    font-size: 24px;
    line-height: 28px;
    color: #FFFFFF;
    display: flex;
    justify-content: space-between;
    margin: 0;
}

.subtotal__area {
    border-bottom: 3px solid #C49554;
}

.total__content {
    margin-top: 30px;
}

.total__content h4 {
    font-style: normal;
    font-weight: 400;
    font-size: 36px;
    line-height: 43px;
    color: #C49554;
    display: flex;
    justify-content: space-between;
}
.total__content__wrapper h4 {
	margin-bottom: 20px;
	padding-bottom: 15px;
	border-bottom: 5px solid #FFFFFF;
	color: #fff !important;
}
.proceed__button a {
    font-style: normal;
    font-weight: 400;
    font-size: 32px;
    line-height: 38px;
    text-align: right;
    color: #FFFFFF;
    text-decoration: none;
    width: 431.04px;
    height: 74px;
    background: #C49554;
    display: flex;
    justify-content: space-around;
    align-items: center;
    transition: .3s all;
    border: 2px solid #C49554;
    padding-top: 5px;
}

.proceed__button a:hover {
    background: transparent;
}

.proceed__button {
    display: flex;
    justify-content: flex-end;
    margin-top: 68px;
    position: relative;
    z-index: 22;
}

.spinner {
    width: 29px;
    height: 29px;
    border: 2px solid transparent;
    border-top: 3px solid #BCBBBC;
    border-left: 3px solid #BCBBBC;
    border-radius: 100%;
    animation: spin 1s infinite linear;
}

@keyframes spin {
    from {
        transform: rotate(0deg)
    }
    to {
        transform: rotate(360deg);
    }
}

.scrollbar-track {
    background: #5A462E!important;
    border-radius: 0 !important;
}

.scrollbar-thumb {
    background: #C49554 !important;
    border-radius: 0 !important;
}


/*---------------------- REGSTAR AREA END ----------------------*/


/*---------------------- SCROLL BAR STYLE AREA START ----------------------*/

.js-scroll-rail {
    width: 7px !important;
    background: #C495547A !important;
}

.js-scroll-bar {
    height: 70px;
    width: 7px !important;
    background: #C49554 !important;
}

.item__bg {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 104%;
    z-index: -1;
    max-width: 100% !important;
}

.item__bg img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}



.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
    left: 50%;
    transform: translate(-50%, -50%);

}
.lds-ellipsis div {
  position: absolute;
  top: 33px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #fff;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
  left: 32px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
  left: 56px;
  animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}



/*---------------------- Main area end ----------------------*/
