/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Cards
# Common
# Form
# Navigations
# Animations
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/

/* width */
body::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  cursor: pointer;
}

/* Track */
body::-webkit-scrollbar-track {
  background: var(--white);
}

/* Handle */
body::-webkit-scrollbar-thumb {
  background: var(--primary-gradient);
  transition: var(--transition-05s);
  border-radius: 10px;
}

/* Handle on hover */
body::-webkit-scrollbar-thumb:hover {
  background: var(--primary-gradient_hover);
  border-radius: 10px;
}

body::-webkit-scrollbar-button {
  background: no-repeat center center / 60%;
  height: 8px;
  width: 8px;
  /* -webkit-box-shadow: inset 1px 1px 2px rgba(0,0,0,0.2); */
  cursor: pointer;
}

body::-webkit-scrollbar-button:vertical:increment {
  background-image: url(../images/resources/scroll-down.svg);
}

body::-webkit-scrollbar-button:vertical:decrement {
  background-image: url(../images/resources/scroll-up.svg);
}

.canvaslogo img {
  width: 195px;
  height: 50px;
  object-fit: contain;
}

.main-menu__logo img {
  width: 195px;
  height: 50px;
  object-fit: contain;
}

.menuActions {
  display: flex;
  align-items: center;
  width: 310px;
  position: relative;
  width: auto;
}

/* .menuActions ul {
  margin-bottom: 0;
} */

.menuAction {
  display: flex;
  align-items: center;
  position: relative;
}

.menuAction::before {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  bottom: -5px;
  left: -8px;
  border: 2px solid transparent;
  border-top: 2px solid transparent;
  border-right: 2px solid transparent;
  border-bottom-left-radius: 10px;
  transition: all 0.5s ease;
}

.menuAction__icon {
  font-size: 25px;
  color: var(--secondary);
}

.menuAction__content {
  margin-left: 10px;
  display: inline-block;
}

.menuAction__text {
  display: block;
  font-size: 18px;
  line-height: 1.15em;
  color: var(--black);
}

.menuAction__text:hover {
  color: var(--primary);
}

.menuAction__text.blue {
  font-weight: 600;
}

.menuActions__separator {
  display: inline-block;
  height: 28px;
  width: 1px;
  background: var(--gray);
  margin: 0 40px;
}

.menuAction__counter {
  position: absolute;
  font-size: 9px;
  line-height: 1em;
  font-weight: 700;
  width: 19px;
  top: -5px;
  left: 15px;
  padding: 5px 0;
  font-variant-numeric: tabular-nums;
  border-radius: 50%;
  text-align: center;
  background: #333338;
  color: var(--white);
}

.menuLogin {
  overflow: hidden;
  border-radius: 10px;
  margin-top: 1rem;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transform-origin: top center;
  transform-origin: top center;
  z-index: 99;
  background-color: var(--white);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}

.menuLogin ul > li {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  width: 100%;
  position: relative;
  border-bottom: 1px solid rgba(var(--black-rgb), 0.1);
}

.menuLogin ul > li > a {
  position: relative;
  font-size: 18px;
  line-height: 30px;
  color: var(--black);
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 20px 10px;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.menuLogin ul > li:hover > a {
  background: var(--primary-gradient);
  color: var(--white);
}

.menuloginul {
  list-style: none;
  padding: 0;
}

.menuLogin__actions {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 10px;
}

.menuLogin__action {
  flex: 0 0 50%;
  text-align: center;
  padding: 5px 0;
  border-bottom: 1px solid transparent;
  font-weight: 300;
  font-style: italic;
  font-size: 11px;
  transition: all 0.25s ease;
}

.image--cover {
  width: 40px;
  height: 40px;
  border-radius: 50%;

  object-fit: cover;
  object-position: center;
}

section.common-section.Works-section {
  padding: 90px 0px 0px;
}

.Works-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  /* gap: 50px; */
  margin: 50px 0px;
  list-style: none;
  padding: 0px;
  align-items: center;
  justify-content: space-between;
}

.Works-list li {
  padding: 0px 20px;
  position: relative;
}

.Works-list-icon {
  --ehw-sli: 108px;
  width: var(--ehw-sli);
  height: var(--ehw-sli);
  margin: 0 auto 20px;
  background: var(--primary-gradient);
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  border-radius: 50%;
  padding: 20px;
}

.Works-list-icon img {
  object-fit: contain;
}

.Works-list-text {
  text-align: center;
  color: rgba(var(--black-color), 1);
  padding: 0px 20px;
  height: 127px;
}

.Works-list-text h5 {
  color: var(--black);
  font-size: 24px;
  margin-bottom: 0px;
  font-weight: 600;
  padding: 0px 25px;
}

.Works-list-text .common-para {
  margin-bottom: 0px;
  margin-top: 6px;
  color: var(--dark);
  line-height: 18px;
  font-size: 15px;
}

.common-para p:last-child,
.common-box > div p:last-child {
  margin-bottom: 0px;
}

.Works-list li:first-child::after {
  background-image: url(../images/resources/work-right.png);
}

.Works-list li:nth-child(2)::after {
  background-image: url(../images/resources/work-left.png);
}

.Works-list li:nth-child(3)::after {
  background-image: url(../images/resources/work-right.png);
}

.Works-list li:nth-child(4)::after {
  background-image: url(../images/resources/work-left.png);
}

.Works-list li:last-child::after {
  display: none;
}

.Works-list li::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 100px;
  height: 40px;
  background: no-repeat center center / contain;
  top: 0px;
  bottom: 60%;
  right: -18%;
  margin: auto;
}

.services-one__single.homecategory {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 20px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
  z-index: 1;
  height: 212px;
}

.services-page.category-section {
  padding: 90px 0px;
}

.services-one__single.homecategory:hover {
  background: var(--primary-gradient);
}

.services-one__single.homecategory:hover .services-two__title a,
.services-one__single.homecategory:hover .services-two__btn {
  color: var(--white);
}

.services-one__single.homecategory:hover .services-one__icon {
  background: transparent;
  border: 1px solid var(--white);
}

.card-img-overlay {
  background-color: rgba(var(--dark-rgb), 0.4);
  justify-content: space-around;
  align-items: center;
  border-radius: 20px !important;
}

.card-subtitle {
  font-size: 26px;
}

button.btn.mycustomebtn {
  color: var(--primary);
  width: 50px;
  height: 50px;
  /* border: 1px dotted rgb(255, 255, 255); */
  border-radius: 50%;
  display: flex;
  text-align: center;
  align-items: center;
  background: var(--white);
  justify-content: center;
}

button.btn.mycustomebtn i {
  font-size: 26px;
}

.schedule-two.tabgroupsection {
  padding-top: 90px;
  background-color: var(--back);
}

.flip-card {
  background-color: transparent;
  width: 300px;
  height: 300px;
  perspective: 1000px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 1.5s;
  transform-style: preserve-3d;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  backface-visibility: hidden;
  -moz-backface-visibility: hidden;
}

.flip-card:focus {
  outline: 0;
}

.fullcard .card {
  border-radius: 20px;
}

.fullcard .card .flip-card-front .card-img {
  border-radius: 20px;
}

.flip-card:hover .flip-card-inner,
.flip-card:focus .flip-card-inner {
  transform: rotateY(180deg);
  transition: transform 1.5s;
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
}

.flip-card-front {
  z-index: 9;
  display: flex;
  justify-content: center;
  align-items: center;
  /* border: 2px solid red; */
  background-color: #fff;
  border-radius: 20px;
}

.flip-card-back {
  background: var(--primary-gradient);
  /* background-color: red; */
  color: var(--white);
  transform: rotateY(180deg);
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  gap: 10px;
}

.schedule-two__title.truncatetitle a {
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 1;
  text-overflow: ellipsis;
  display: -webkit-box;
  height: auto;
  width: 450px;
  overflow: hidden;
  margin-bottom: 6px;
}

.schedule-two__text {
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  display: -webkit-box;
  height: auto;
  width: 485px;
  overflow: hidden;
}

/* mobile-slider-section */

.mobile-app-dowmload-section {
  background: #ffffff00;
  padding: 90px 0px 90px;
}

.swiper-full-mobile {
  position: relative;
  width: auto;
  margin-left: 245px;
}

.swiper-full-mobile-inner {
  width: 265px;
  margin: 0px auto;
  height: 100%;
}

.swiper-full-mobile .swiper-wrapper {
  width: 265px;
}

.swiper-full-mobile::after {
  content: "";
  width: 265px;
  background: url(../images/resources/Pixel-3-XL.png);
  background-size: 100%;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  right: -2px;
  top: 0px;
  height: 540px;
  z-index: 10;
  margin: auto;
  overflow: hidden;
}

.swiper-full-mobile::before {
  content: "";
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: var(--light-back);
  position: absolute;
  left: -6px;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.swiper-full-mobile .swiper-slide {
  height: 100%;
}

.swiper-full-mobile .swiper-slide img {
  /* width: 100%;
  height: 530px; */
  object-fit: cover;
  z-index: -10;
  position: relative;
}

.swiper-full-mobile .swiper-mobile-content {
  height: auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  width: 265px;
  padding: 0px;
}

.swiper-full-mobile .swiper-mobile-content h3 {
  font-size: 21px;
  font-weight: 900;
}

.swiper-full-mobile .swiper-mobile-content .btn {
  background: var(--primary);
  border-color: var(--primary);
  border-radius: 5px;
  padding: 5px 15px 7px;
}

.swiper-full-mobile .swiper-mobile-content .btn:hover {
  background-color: transparent;
  color: var(--primary);
}

.swiper-full-mobile .swiper-mobile-content p {
  font-size: 13px;
  line-height: 24px;
}

.swiper-img {
  width: 265px;
  height: 540px;
  overflow: hidden;
  border-radius: 30px;
}

.swiper-img img {
  width: 265px;
  height: 540px;
  object-fit: cover;
  object-position: top left;
  border-radius: 30px;
}

.swiper-full-mobile .swiper-slide.swiper-slide-active img {
  border-radius: 0px;
}

.mobile-slider-section .col-md-6.col-lg-5.offset-lg-1.col-12 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.mobile-slider-section .content h1 {
  font-size: 36px;
  font-weight: 300;
  letter-spacing: 2px;
  margin: 0px 0px 15px;
  color: var(--black);
}

.mobile-slider-section .content p {
  font-size: 14px;
  font-weight: 500;
  margin: 0px 0px 15px;
  color: var(--black);
}

.mobile-slider-section .content .btn {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
  padding: 5px 30px;
  margin: 0px;
}

.mobile-slider-section .content .btn:hover {
  background: var(--primary);
  color: #fff;
}

.common-title {
  font-weight: 600;
  font-size: 35px;
  margin-bottom: 0px;
}

.common-para {
  font-size: 13px;
  line-height: 22px;
  margin-bottom: 30px;
}

.download-btn-box {
  display: grid;
  align-items: center;
  justify-content: flex-start;
  grid-template-columns: auto auto;
  gap: 20px;
}

.download-btn-box img {
  pointer-events: none;
  user-select: none;
}

.conference-one.faqsection {
  padding-top: 90px;
}

.site-footer-two__logo img {
  width: 213px;
  height: 62px;
  object-fit: contain;
}

.mobile-app-dowmload-section {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.itembox {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 116px;
  width: 206px;
  margin: 0 auto 0;
  border-radius: 20px;
  text-align: center;
}

.itembox .count {
  color: var(--white);
  margin-bottom: 5px;
  font-size: 40px;
}

.itembox h4 {
  color: var(--black);
  font-size: 33px;
  margin-bottom: 6px;
  font-weight: 800;
}

.itembox p {
  font-weight: 600;
  font-size: 16px;
  color: var(--dark-gray);
  margin-bottom: 0px;
}

.itembox {
  position: relative;
}

.itembox::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  border-radius: 20px;
  border: 1px solid transparent;
  background: linear-gradient(180deg, #006be5, rgba(74, 10, 180, 0.33))
    border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  visibility: visible;
  opacity: 1;
  z-index: -1;
}

.itembox:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  border-radius: 20px;
  border: 1px solid transparent;
  background: linear-gradient(180deg, rgba(74, 10, 180, 0.33), #006be5)
    border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
}

.itembox:hover:before {
  visibility: hidden;
  opacity: 0;
}

.itembox:hover:after {
  visibility: visible;
  opacity: 1;
}

.listingstyle ul li {
  color: #000000;
}

.listingstyle ul li::marker {
  color: #4a0ab4;
}

.listingstyle .table > thead {
  vertical-align: bottom;
  background-color: red;
}

/* table */

.listingstyle table {
  position: relative;
  width: 100%;
  margin-bottom: 30px;
  vertical-align: top;
  font-size: 20px;
  display: block;
  overflow: auto;
  margin-top: 28px;
  border: 1px solid #4a0ab4;
  border-radius: 20px;
}

.listingstyle table > tbody {
  display: table;
  width: 100%;
}

.listingstyle table > :not(caption) > * > * {
  padding: 0.5rem 0.5rem;
  border-bottom-width: 1px;
  padding: 20px !important;
}

.listingstyle table > tbody > tr > td {
  background: #fff;
}

.listingstyle table > tbody > tr:nth-of-type(even),
.listingstyle table > tbody > tr:nth-of-type(even) > td {
  background-color: #ffffff;
}

.listingstyle table > tbody > tr > th {
  background: #ffffff;
  color: #000000;
}

.listingstyle tbody,
.listingstyle td,
.listingstyle th,
.listingstyle tr {
  border-color: #4a0ab4;
  border-style: solid;
  border-width: 0;
  font-size: 16px;
  line-height: 26px;
  color: black;
}

.listingstyle table > tbody > tr > th:nth-child(1),
.listingstyle table > tbody > tr > td:nth-child(1) {
  position: sticky;
  top: 0;
  left: 0;
}

.listingstyle table tr:last-child td {
  border-bottom-width: 0px;
}

.listingstyle p {
  color: black;
}

section.event-one.event-three.aboutussec {
  padding-top: 90px;
  background-color: #f9f9f9;
}

section.testimonial-one.abouttestimonial {
  background-color: #fff;
  padding: 90px 0px;
}

h4.testimonial-one__client-name.text-dark a {
  color: #000;
}

.testimonial-one__single.abouttestiitem {
  border: 1px solid #4a0ab4;
}

.testimonial-one__nav.abouttestinav .swiper-button-next1:before,
.testimonial-one__nav.abouttestinav .swiper-button-prev1:before {
  border: 2px solid #4a0ab4;
}

.testimonial-one__nav.abouttestinav .swiper-button-prev1 i,
.testimonial-one__nav.abouttestinav .swiper-button-next1 i {
  color: #4a0ab4;
}

section.faq-page.faqpagesec {
  padding: 90px 0px;
}

.faq-page.faqpagesec .faq-one-accrodion .accrodion {
  background-color: white;
  border: 1px solid #4a0ab4;
  margin-bottom: 37px;
}

.faq-page.faqpagesec .faq-one-accrodion .accrodion-title h4 {
  color: #000;
}

.faq-page.faqpagesec .faq-one-accrodion__count:after {
  background-color: #000000;
}

.faq-page.faqpagesec .faq-one-accrodion__count::before {
  color: #000;
}

.faq-page.faqpagesec .faq-one-accrodion .accrodion-content p {
  color: #000;
}

.faq-page.faqpagesec .faq-one-accrodion .accrodion-title h4::before {
  color: #4a0ab4;
}

.contact-one.contactsection {
  padding: 90px 0px;
}

.contact-one__inner.contactfirstsec {
  background-color: rgba(255, 255, 255, 0);
  border: 1px solid #4a0ab4;
  border-radius: 30px;
}

.contact-one__input-box.contactpage input[type="text"],
.contact-one__input-box.contactpage input[type="password"],
.contact-one__input-box.contactpage input[type="email"],
.contact-one__input-box.contactpage input[type="date"],
.contact-one__input-box.contactpage input[type="tel"],
.contact-one__input-box.contactpage input[type="select"] {
  border: 1px solid #4a0ab4;
  color: black;
}

.contact-one__input-box.contactpage .nice-select,
.contact-one__input-box.contactpage textarea {
  border: 1px solid #4a0ab4;
  color: black;
}

.contact-two__single.contactbottomcard {
  border: 1px solid #4a0ab4;
}

.contact-two__single.contactbottomcard:hover .contact-two__icon {
  background-color: #8a606000;
}

.contact-two__single.contactbottomcard .contact-two__icon {
  background-color: white;
  border: 1px solid #4a0ab4;
}

.contentinner p {
  color: black;
  margin-bottom: 1rem;
}

.contentinner h2 {
  color: #000;
  margin-bottom: 2rem;
  font-size: 42px;
  font-weight: 600;
}

.schedule-two.leadsection {
  padding: 20px 0px 90px;
}

.cardlead {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e2e0e8;
  display: block;
  z-index: 1;
}

.userimg {
  padding-left: 16px;
  padding-bottom: 16px;
  padding-right: 16px;
  text-align: center;
  margin-top: -50px;
}

.imgclass {
  /* border br-white border-width-2-px w-100-px h-100-px rounded-circle object-fit-cover */
  border: 2px solid white;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}

.bottomcardsec {
  border-radius: 8px;
  background: var(--primary-gradient);
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
  position: relative;
  margin-top: 20px;
}

.card_bottomcardsec {
  gap: 0;
  position: relative;
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background-color: DodgerBlue;
  justify-content: center;
}

.card_bottomcardsec div:nth-child(2) {
  border-left: none !important;
}

.bottomcardsec div {
  text-align: center;
  width: 50%;
}

.bottomcardsec div:last-child,
.bottomcardsec div:nth-child(2),
.bottomcardsec div:nth-child(3) {
  border-left: 2px solid #e2e0e8;
}

.bottomcardsec div h6 {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0;
}

.bottomcardsec div span {
  font-size: 14px;
  margin-bottom: 0;
  font-weight: 500;
  color: #ffffff;
}

.nameuser {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  margin-top: 20px;
}

.backcolor {
  width: 100%;
  height: 120px;
  background: var(--primary-gradient);
}

.rank {
  position: absolute;
  top: 0;
  left: 0;
  width: max-content;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0e0a17;
  border-top-left-radius: 15px;
  border-bottom-right-radius: 15px;
  padding: 10px;
}

.rank p,
.rank span {
  font-size: 12px;
  font-weight: 600;
  color: white;
}

.leadbox .row {
  gap: 30px 0px;
}

.sidebar__single.sidebar__search.leadsearch {
  background-color: white;
  padding: 0;
  position: relative;
}

.sidebar__search-form.lead__search input[type="search"],
.sidebar__search-form.lead__search input[type="month"] {
  display: block;
  outline: none;
  background: #ffffff24;
  border: 1px solid #4a0ab4;
  font-weight: 400;
  font-size: 20px;
  height: 54px;
  width: 100%;
  padding-left: 30px;
  padding-right: 60px;
  color: #000000;
  border-radius: 30px;
}

/* .top-cover {
  background-image: url(../images/backgrounds/young-fitness-woman-runner.jpg);
  background-size: cover;
  width: 100%;
} */
.overcover .covwe-inn {
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  padding: 30px;
  display: flex;
}

.no-margin {
  margin: 0px;
}

.img-c img {
  border-radius: 50%;
  background: var(--primary-gradient);
  padding: 5px;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  margin: auto;
  --imgsize: 260px;
  width: var(--imgsize);
  height: var(--imgsize);
}

.overcover .covwe-inn .img-c {
  padding: 20px;
}

.tit-det p {
  color: #fff;
  font-size: 20px;
  line-height: 23px;
  text-align: left;
  /* *text-indent: -2px; */
}

.tit-det h2 {
  color: #ffffff;
  font-size: 40px;
  font-weight: 600;
  text-align: left;
  margin-bottom: 10px;
}

.tit-det {
  padding: 20px;
  padding-left: 10px;
  margin: auto;
}

.overcover {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.bottomsection {
  background: var(--primary-gradient);
  border-radius: 30px;
  /* margin-top: -164px; */
  z-index: 1;
  position: relative;
  padding: 40px 0px;
}

.leadbannerbottomsec {
  margin-top: -170px;
}

.page-header.leadpageheader {
  padding: 150px 0px 150px;
}

.bottomsection {
  background-image: url(../images/backgrounds/jogger-urban-environment.jpg);
  background-size: cover;
  width: 100%;
  overflow: hidden;
}

.bottomsection::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(
    90deg,
    rgb(0 0 0 / 68%) 58.4%,
    rgba(102, 102, 102, 0) 100%
  );
  /* border-radius: 27px; */
}

.innersection {
  position: relative;
  z-index: 2;
}

.mail {
  font-size: 16px;
  color: white;
  font-weight: 500;
}

.cardlead {
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.recent_list {
  max-height: 350px;
  overflow: auto;
  list-style: none;
  padding: 0;
}

.searchresults h3 {
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-size: 23px;
  font-weight: 600;
  color: rgb(0, 0, 0);
}

.recent_list li {
  margin-bottom: 10px;
}

.recent-box {
  padding: 8px 10px;
  display: block;
  min-height: max-content;
  background: var(--primary-gradient);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.recent-box .left-side {
  display: flex;
  align-items: center;
}

.recent-box p {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0;
}

/* For WebKit browsers (Chrome, Safari) */
.recent_list::-webkit-scrollbar {
  width: 8px;
  /* Width of the scrollbar */
  border-radius: 10px;
  padding-left: 7px;
}

.recent_list::-webkit-scrollbar-thumb {
  background-color: #000000;
  /* Scrollbar color */
  border-radius: 10px;
  /* Rounded corners for the scrollbar */

  padding-left: 7px;
}

.recent_list::-webkit-scrollbar-track {
  background-color: #f1f1f1;
  /* Background of the scrollbar track */

  padding-left: 7px;
}

/* For Firefox */
.recent_list {
  scrollbar-color: #4a0ab4 #b9b8b8;
  /* Thumb color, track color */
  scrollbar-width: thin;
  /* Makes the scrollbar thinner */
  border-radius: 10px;
}

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

.contact-two__single.contactbottomcard {
  height: 200px;
  transition: all ease-in-out 0.5s;
}

.contact-two__single.contactbottomcard:hover {
  border-bottom: 8px solid #4a0ab4;
  transition: all ease-in-out 0.5s;
}

.customheight {
  padding-left: 0px;
  padding-right: 0px;
}

.customheight-login {
  height: 600px;
}

.customheight-register {
  height: 730px;
}

.gallery-two.logingallery {
  padding: 0px;
  height: 100%;
}

.gallery-two.logingallery .gallery-two__bottom .container {
  padding-left: 0px;
  padding-right: 0px;
}

.gallery-two.logingallery .gallery-two__img {
  border-radius: 0px;
}

.gallery-two.logingallery .gallery-two__img img {
  height: 960px;
  object-fit: cover;
  border-radius: 0px;
}

.container.main {
  /* padding: 30px; */
  border-radius: 30px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  overflow: hidden;
  /* background: var(--primary-gradient); */
}

span.logcolor {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.main .wrapper {
  max-width: 30rem;
  padding: 20px;
  width: 100%;
  margin: 0rem auto;
  border: none;
  outline: none;
  color: black;
  background: white;
  /* box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; */
}

.main .wrapper .form {
  width: 100%;
  height: auto;
  margin-top: 2rem;
}

.main .wrapper .form .input-control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.main .wrapper .striped {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 1rem 0;
}

.main .wrapper .striped-line {
  flex: auto;
  flex-basis: auto;
  border: none;
  outline: none;
  height: 2px;
  background: var(--color-grayish);
}

.main .wrapper .striped-text {
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  line-height: inherit;
  color: var(--color-black);
  margin: 0 1rem;
}

.main .wrapper .method-control {
  margin-bottom: 1rem;
}

.input-control {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 10px;
}

button.text.text-links.thm-btn {
  border: none;
  position: relative;
  align-items: center;
  vertical-align: middle;
  -webkit-appearance: none;
  appearance: none;
  outline: none !important;
  font-weight: 700;
  font-size: 15px;
  color: var(--white);
  text-transform: capitalize;
  letter-spacing: 0.6px;
  padding: 12px 20px;
  background: var(--primary-gradient);
  border-radius: 30px;
  moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  overflow: hidden;
  gap: 10px;
  z-index: 1;
  text-align: center;
  width: 100%;
  justify-content: center;
}

.google-button {
  all: unset;
  margin: auto;
  width: fit-content;
  height: 52px;
  background-color: #4285f4;
  border-radius: 30px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25);
  transition: all 300ms ease-in-out;
  display: flex;
  justify-content: space-between;
}

.google-button .google-icon-wrapper {
  margin: 1px;
  width: 50px;
  height: 50px;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.google-button .google-button-text {
  display: flex;
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.2px;
  margin-left: 1em;
  margin-right: 1em;
  align-items: center;
}

.google-button:hover {
  box-shadow: 0 0 3px 3px rgba(66, 133, 244, 0.3);
  cursor: pointer;
}

.google-button:active {
  background: #3367d6;
}

.bottomeventsec {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 15px;
  background-color: #eee;
  border-radius: 20px;
}

#swiper-dot-style1 {
  display: inline-flex;
  align-items: end;
  justify-content: center;
  flex-direction: row;
  max-width: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  gap: 10px;
  top: auto;
  transform: translateY(-50%);
  padding: 0 50px;
  margin: 0 auto !important;
  height: 0;
  line-height: 0;
  z-index: 100;
}

#swiper-dot-style1 .swiper-pagination-bullet {
  position: relative;
  display: block;
  width: 14px;
  height: 14px;
  padding: 6px 0;
  margin: 4px 0px;
  background: transparent;
  border: 1px solid var(--white);
  opacity: 1;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

#swiper-dot-style1 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}

#swiper-dot-style1 .swiper-pagination-bullet::before {
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  border-radius: 50%;
  background-color: var(--white);
  transform: scale(0);
  transition: all 200ms linear;
  transition-delay: 0.1s;
  content: "";
}

#swiper-dot-style1
  .swiper-pagination-bullet.swiper-pagination-bullet-active::before,
#swiper-dot-style1 .swiper-pagination-bullet:hover {
  transform: scale(1);
}

.input-group > .intl-tel-input.allow-dropdown {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: 1%;
}

.input-group > .intl-tel-input.allow-dropdown > .flag-container {
  z-index: 4;
}

.iti-flag {
  background-image: url("https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/12.1.6/img/flags.png");
}

@media only screen and (-webkit-min-device-pixel-ratio: 2),
  only screen and (min--moz-device-pixel-ratio: 2),
  only screen and (-o-min-device-pixel-ratio: 2 / 1),
  only screen and (min-device-pixel-ratio: 2),
  only screen and (min-resolution: 192dpi),
  only screen and (min-resolution: 2dppx) {
  .iti-flag {
    background-image: url("https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/12.1.6/img/flags@2x.png");
  }
}

.intl-tel-input.separate-dial-code .selected-flag {
  background-color: rgba(0, 0, 0, 0.05);
  display: table;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  height: 52px;
}

.gallery-two.logingallery.regisimg .gallery-two__img img {
  /* height: 800px; */
  border-radius: 0px;
  object-fit: cover;
}

.contact-one__input-box.contactpage .error {
  padding-left: 30px;
  color: red;
  font-size: 18px;
  font-weight: 500;
}

.table .menuAction__text {
  text-transform: capitalize;
}

.resulttable.table {
  border: 1px solid #4b0ab479;
}

.resulttable.table-hover > tbody > tr:hover {
  background-color: lighten(cyan, 40%);
}

/* //important if we want to add ellipsis
//to cells with content longer than width */
.resulttable.table {
  @media only screen and (min-width: 768px) {
    table-layout: fixed;
    /* //this declaration overwrites 
      //the default plugin style */
    max-width: 100% !important;
  }
}

.resulttable tr {
  text-align: center;
}

.resulttable thead {
  background: var(--primary-gradient);
  color: white;
  text-align: center;
}

.resulttable.table td:nth-child(2) {
  overflow: hidden;
  /* //white-space: nowrap; */
  text-overflow: ellipsis;
}

@media only screen and (max-width: 767px) {
  /* Force table to not be like tables anymore */
  .resulttable,
  .resulttable thead,
  .resulttable tbody,
  .resulttable th,
  .resulttable td,
  .resulttable tr {
    display: block;
  }

  /* Hide table headers (but not display: none;, for accessibility) */
  .resulttable thead tr,
  .resulttable tfoot tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }

  .resulttable td {
    /* Behave  like a "row" */
    border: none;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 50% !important;
  }

  .resulttable td:before {
    /* Now like a table header */
    position: absolute;
    /* Top/left values mimic padding */
    top: 6px;
    left: 6px;
    width: 45%;
    padding-right: 10px;
    white-space: nowrap;
  }

  .resulttable.table td:nth-child(1) {
    background: #ccc;
    height: 100%;
    top: 0;
    left: 0;
    font-weight: bold;
  }

  /*
Label the data
*/
  .resulttable td:nth-of-type(1):before {
    content: "RANK";
  }

  .resulttable td:nth-of-type(2):before {
    content: "PARTICIPANT";
  }

  .resulttable td:nth-of-type(3):before {
    content: "GENDER";
  }

  .resulttable td:nth-of-type(4):before {
    content: "DISTANCE";
  }

  .resulttable td:nth-of-type(5):before {
    content: "DURATION";
  }

  .resulttable td:nth-of-type(6):before {
    content: "PACE/SPEED";
  }

  .resulttable.dataTables_length {
    display: none;
  }
}

.dataTables_length label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
  color: black;
  font-size: 16px;
  font-weight: 500;
}

.dataTables_filter {
  display: none;
}

.resultsearch .sidebar__search-form.lead__search input[type="search"] {
  font-size: 16px;
}

.dataTables_paginate .pagination {
  display: flex;
  padding-left: 0;
  list-style: none;
  float: right;
}

.dataTables_paginate .pagination a {
  position: relative;
  display: block;
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 40px;
  display: inline-block;
  color: var(--white);
  border: 1px solid rgba(var(--gsm-bdr-color-rgb), 0.2);
  font-weight: 400;
  font-size: 16px;
  border-radius: 50%;
  background-color: #0e0a17;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
  margin-right: 3px;
}

.dataTables_paginate .pagination a:hover {
  color: var(--white);
}

.dataTables_paginate .pagination a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary-gradient);
  opacity: 0;
  border-radius: 50%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: -1;
}

.dataTables_paginate .pagination a:hover::before {
  opacity: 1;
}

.dataTables_paginate .pagination a i {
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.dataTables_paginate .pagination:last-child a:hover i {
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.dataTables_paginate .pagination:first-child a:hover i {
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.dataTables_info {
  color: black;
}

.mtabletop {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
  position: absolute;
  right: 0px;
  top: -18px;
}

.drop {
  width: 226px;
}

.resulttable tr td {
  vertical-align: middle;
}

.resulttable tr:first-child {
  /* box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 30px 60px -12px inset; */
  /* box-shadow: #006be5 0px 0px 26px -13px, #4b0ab462 0px 0px 9px 2px; */
  background: #0808cb17;
}

/* my css closed */

:root {
  --gsm-font: "Lato", sans-serif;
  --gsm-gray: #7c7b7b;
  --gsm-gray-rgb: 124, 123, 123;
  --white: #ffffff;
  --white-rgb: 255, 255, 255;
  --gsm-base: #006be5;
  --gsm-base-rgb: 178, 13, 93;
  --black: #04000a;
  --black-rgb: 4, 0, 10;
  --gsm-primary: #4a0ab4;
  --gsm-primary-rgb: 74, 10, 180;
  --gsm-extra: #f8f8f8;
  --gsm-extra-rgb: 248, 248, 248;
  --gsm-bdr-color: #cccccc;
  --gsm-bdr-color-rgb: 204, 204, 204;
}

.row {
  --bs-gutter-x: 30px;
}

.gutter-y-30 {
  --bs-gutter-y: 30px;
}

body {
  font-family: var(--gsm-font);
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  /* color: rgba(var(--white-rgb), .90); */
  color: #000 !important;
}

.body-bg-color-1 {
  background-color: var(--black);
}

.body-bg-color-2 {
  background-color: var(--white);
  color: var(--gsm-gray);
}

body.locked {
  overflow: hidden;
}

a {
  color: var(--gsm-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

a,
a:hover,
a:focus,
a:visited {
  text-decoration: none !important;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000;
  margin: 0;
  font-family: var(--gsm-font);
}

p {
  margin: 0;
}

dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 0;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  overflow: hidden;
}

.container {
  padding-left: 15px;
  padding-right: 15px;
}

.list-unstyled {
  padding-left: 0;
}

@media (min-width: 1320px) {
  .container {
    max-width: 1320px;
  }
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

.section-separator {
  border-color: var(--gsm-border);
  border-width: 1px;
  margin-top: 0;
  margin-bottom: 0;
}

#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  opacity: 0.4;
  z-index: -1;
}

.section-title {
  position: relative;
  display: block;
  margin-top: -5px;
  margin-bottom: 52px;
}

.section-title__tagline-box {
  position: relative;
  display: block;
  margin-bottom: 12px;
}

.section-title__tagline {
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 18px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.section-title__title {
  margin: 0;
  color: var(--white);
  font-size: 48px;
  line-height: 55px;
  font-weight: 700;
  text-transform: capitalize;
}

.section-title__title--two {
  color: var(--black);
}

.thm-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  -webkit-appearance: none;
  appearance: none;
  outline: none !important;
  font-weight: 700;
  font-size: 15px;
  color: var(--white);
  text-transform: capitalize;
  letter-spacing: 1.6px;
  padding: 17px 30px 17px;
  background: var(--primary-gradient);
  border-radius: 30px;
  moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  overflow: hidden;
  gap: 10px;
  z-index: 1;
}

.thm-btn::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 150%;
  height: 150%;
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 50%;
  background: var(--primary-gradient);
  transition-duration: 700ms;
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  z-index: -1;
}

.thm-btn:hover {
  color: var(--white);
}

.thm-btn:hover::after {
  bottom: -50%;
}

.main-slider-two__btn.thm-btn {
  color: var(--black);
}

.main-slider-two__btn.thm-btn:hover {
  color: var(--white);
}

.bootstrap-select .btn-light:not(:disabled):not(.disabled).active,
.bootstrap-select .btn-light:not(:disabled):not(.disabled):active,
.bootstrap-select .show > .btn-light.dropdown-toggle {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  outline: none !important;
}

.bootstrap-select > .dropdown-toggle {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.bootstrap-select .dropdown-toggle:focus,
.bootstrap-select > select.mobile-device:focus + .dropdown-toggle {
  outline: none !important;
}

.bootstrap-select .dropdown-menu {
  border: 0;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  z-index: 991;
  border-radius: 0;
}

.bootstrap-select .dropdown-menu > li + li > a {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.bootstrap-select .dropdown-menu > li.selected > a {
  background: var(--gsm-base);
  color: var(--white);
}

.bootstrap-select .dropdown-menu > li > a {
  font-size: 16px;
  font-weight: 500;
  padding: 4px 12px;
  color: #ffffff;
  text-transform: uppercase;
  background: var(--black);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.bootstrap-select .dropdown-menu > li > a:hover {
  background: var(--gsm-base);
  color: var(--white);
  cursor: pointer;
}

.preloader {
  position: fixed;
  background-color: var(--white);
  background-position: center center;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.preloader__image {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  background-image: url(../images/loader.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 60px auto;
  width: 100%;
  height: 100%;
}

/* scroll to top */
.scroll-to-top {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: var(--primary-gradient);
  position: fixed;
  bottom: 50px;
  right: 50px;
  z-index: 99;
  text-align: center;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  display: none;
  border-radius: 0;
}

.scroll-to-top i {
  color: var(--white);
  font-size: 18px;
  line-height: 60px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.scroll-to-top:hover {
  background-color: var(--white);
}

.scroll-to-top:hover i {
  color: var(--gsm-base);
}

/** xs sidebar **/
.xs-sidebar-group .xs-overlay {
  left: 0%;
  top: 0;
  position: fixed;
  height: 100%;
  opacity: 0;
  width: 100%;
  visibility: hidden;
  -webkit-transition: all 0.4s ease-in 0.8s;
  -o-transition: all 0.4s ease-in 0.8s;
  transition: all 0.4s ease-in 0.8s;
  cursor: url(../images/icon/cross-out.png.html), pointer;
  z-index: 9999;
}

.xs-sidebar-group.isActive .xs-overlay {
  opacity: 0.8;
  visibility: visible;
  -webkit-transition: all 0.8s ease-out 0s;
  -o-transition: all 0.8s ease-out 0s;
  transition: all 0.8s ease-out 0s;
  right: 100%;
}

.xs-sidebar-group .widget-heading {
  position: absolute;
  top: 0;
  right: 0;
  padding: 25px;
}

.xs-sidebar-group .widget-heading a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border: 2px solid var(--black);
  border-radius: 50%;
  color: var(--black);
  font-size: 16px;
  font-weight: 400;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.xs-sidebar-group .widget-heading a:hover {
  color: var(--gsm-base);
  border-color: var(--gsm-base);
}

.xs-sidebar-widget {
  position: fixed;
  left: -100%;
  top: 0;
  bottom: 0;
  width: 100%;
  max-width: 360px;
  z-index: 999999;
  overflow: visible;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
  -o-transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
  transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
  visibility: hidden;
  opacity: 0;
}

.xs-sidebar-group.isActive .xs-sidebar-widget {
  opacity: 1;
  visibility: visible;
  left: 0;
  background-color: var(--white);
  -webkit-transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
  -o-transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
  transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
}

.sidebar-textwidget {
  padding: 70px 30px;
  overflow: hidden;
}

.sidebar-widget-container {
  position: relative;
  top: 150px;
  background-color: var(--white);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in 0.3s;
  -o-transition: all 0.3s ease-in 0.3s;
  transition: all 0.3s ease-in 0.3s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.xs-sidebar-group.isActive .sidebar-widget-container {
  top: 0px;
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 1s ease-out 1.2s;
  -o-transition: all 1s ease-out 1.2s;
  transition: all 1s ease-out 1.2s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

.xs-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0.8;
  z-index: 0;
}

.xs-bg-black {
  background-color: #000000;
}

.xs-sidebar-group .content-inner .logo {
  position: relative;
  max-width: 172px;
  width: 100%;
  margin-bottom: 30px;
}

.xs-sidebar-group .content-inner h4 {
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 30px;
  color: var(--black);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.xs-sidebar-group .content-inner .content-box {
  margin-bottom: 30px;
  padding-right: 15px;
}

.xs-sidebar-group .content-inner .content-box p {
  color: var(--black);
}

.xs-sidebar-group .content-inner .form-inner .form-group {
  position: relative;
  margin-bottom: 20px;
}

.xs-sidebar-group .content-inner .form-inner .form-group:last-child {
  margin-bottom: 0px;
}

.xs-sidebar-group .content-inner .form-inner .form-group input[type="text"],
.xs-sidebar-group .content-inner .form-inner .form-group input[type="email"],
.xs-sidebar-group .content-inner .form-inner .form-group textarea {
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
  font-size: 15px;
  padding: 10px 20px;
  color: #848484;
  border: none;
  outline: none;
  border-radius: 25px;
  transition: all 500ms ease;
}

.xs-sidebar-group .content-inner .form-inner .form-group .form-inner__btn {
  border: none;
  outline: none;
  background-color: transparent;
  color: var(--white);
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  padding: 13px 45px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.xs-sidebar-group
  .content-inner
  .form-inner
  .form-group
  .form-inner__btn:hover {
  color: var(--white);
}

.xs-sidebar-group .content-inner .form-inner .form-group textarea {
  resize: none;
  height: 120px;
}

.xs-sidebar-group .content-inner .form-inner .form-group input:focus,
.xs-sidebar-group .content-inner .form-inner .form-group textarea:focus {
  border-color: #00224f;
}

/*--------------------------------------------------------------
# Navigations One
--------------------------------------------------------------*/
/* .main-header {
  position: sticky;
  z-index: 999;
  top: 0;
  left: 0;
  background-color: #fff;
  width: 100%;
  visibility: visible;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  display: block;
} */

.main-header {
  position: relative;
  display: block;
  width: 100%;
  background: transparent;
  transition: all 500ms ease;
  z-index: 999;
}

.main-menu {
  position: relative;
  display: block;
  z-index: 1;
}

.main-menu__wrapper {
  position: relative;
  display: block;
  z-index: 1;
}

.main-menu__wrapper-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 60px;
  z-index: 1;
}

.main-menu__wrapper-inner:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: rgba(var(--white-rgb), 0.15);
  z-index: -1;
}

.main-menu__left {
  position: relative;
  display: block;
}

.main-menu__logo {
  position: relative;
  display: block;
  padding: 25px 0;
  z-index: 1;
}

.main-menu__main-menu-box {
  position: relative;
  display: block;
}

.main-menu__right {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  padding: 25px 0;
}

.main-menu__cart-search-nav-sidebar-icon-and-btn-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.main-menu__cart {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 20px;
  color: var(--white);
  padding-top: 12px;
  padding-bottom: 12px;
}

.main-menu__cart:hover {
  color: var(--gsm-base);
}

.main-menu__search {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 20px;
  color: var(--white);
  /* border-left: 1px solid rgba(255, 255, 255, 0.15); */
  /* border-right: 1px solid rgba(255, 255, 255, 0.15); */
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 10px;
  padding-right: 10px;
  margin-left: 10px;
  margin-right: 10px;
}

.main-menu__search:hover {
  color: var(--gsm-base);
}

.main-menu__nav-sidebar-icon {
  position: relative;
  display: block;
}

.main-menu__nav-sidebar-icon a {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 24px;
  color: var(--black);
  padding-top: 11px;
  padding-bottom: 11px;
}

.main-menu__nav-sidebar-icon a:hover {
  color: var(--gsm-base);
}

.stricky-header.main-menu {
  background-color: var(--black);
}

.main-menu .main-menu__list,
.main-menu .main-menu__list > li > ul,
.main-menu .main-menu__list > li > ul > li > ul,
.stricky-header .main-menu__list,
.stricky-header .main-menu__list > li > ul,
.stricky-header .main-menu__list > li > ul > li > ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: none;
}

@media (min-width: 1200px) {
  .main-menu .main-menu__list,
  .main-menu .main-menu__list > li > ul,
  .main-menu .main-menu__list > li > ul > li > ul,
  .stricky-header .main-menu__list,
  .stricky-header .main-menu__list > li > ul,
  .stricky-header .main-menu__list > li > ul > li > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.main-menu .main-menu__list > li,
.stricky-header .main-menu__list > li {
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
}

.main-menu .main-menu__list > li + li,
.stricky-header .main-menu__list > li + li {
  margin-left: 50px;
}

.main-menu .main-menu__list > li > a,
.stricky-header .main-menu__list > li > a {
  font-size: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--black);
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu .main-menu__list > li.dropdown > a {
  padding-right: 16px;
}

.main-menu .main-menu__list > li.dropdown > a:after {
  position: absolute;
  top: 55%;
  right: 0;
  font-family: "Font Awesome 5 Free";
  content: "\f067";
  font-size: 11px;
  color: var(--white);
  transform: translateY(-50%);
  font-weight: 700;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.main-menu .main-menu__list > li.current > a::after,
.main-menu .main-menu__list > li:hover > a::after,
.stricky-header .main-menu__list > li.current > a::after,
.stricky-header .main-menu__list > li:hover > a::after {
  color: var(--secondary);
}

.main-menu .main-menu__list > li.current > a,
.main-menu .main-menu__list > li:hover > a,
.stricky-header .main-menu__list > li.current > a,
.stricky-header .main-menu__list > li:hover > a {
  color: var(--secondary);
}

.main-menu .main-menu__list > li > ul,
.main-menu .main-menu__list > li > ul > li > ul,
.stricky-header .main-menu__list > li > ul,
.stricky-header .main-menu__list > li > ul > li > ul {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  opacity: 0;
  visibility: hidden;
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-transform: scaleY(0) translateZ(100px);
  transform: scaleY(0) translateZ(100px);
  -webkit-transition: opacity 500ms ease, visibility 500ms ease,
    -webkit-transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease,
    -webkit-transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease,
    -webkit-transform 700ms ease;
  z-index: 99;
  background-color: #fff;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}

.main-menu .main-menu__list > li > ul > li > ul > li > ul,
.stricky-header .main-menu__list > li > ul > li > ul > li > ul {
  display: none;
}

.main-menu .main-menu__list > li:hover > ul,
.main-menu .main-menu__list > li > ul > li:hover > ul,
.stricky-header .main-menu__list > li:hover > ul,
.stricky-header .main-menu__list > li > ul > li:hover > ul {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(1) translateZ(0px);
  transform: scaleY(1) translateZ(0px);
}

.main-menu .main-menu__list > li > ul > li,
.main-menu .main-menu__list > li > ul > li > ul > li,
.stricky-header .main-menu__list > li > ul > li,
.stricky-header .main-menu__list > li > ul > li > ul > li {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  width: 100%;
  position: relative;
  border-bottom: 1px solid rgba(var(--black-rgb), 0.1);
}

.main-menu .main-menu__list > li > ul > li:last-child,
.main-menu .main-menu__list > li > ul > li > ul > li:last-child,
.stricky-header .main-menu__list > li > ul > li:last-child,
.stricky-header .main-menu__list > li > ul > li > ul > li:last-child {
  border-bottom: 0;
}

.main-menu .main-menu__list > li > ul > li + li,
.main-menu .main-menu__list > li > ul > li > ul > li + li,
.stricky-header .main-menu__list > li > ul > li + li,
.stricky-header .main-menu__list > li > ul > li > ul > li + li {
  border-top: none;
  margin-top: 0px;
}

.main-menu .main-menu__list > li > ul > li > a,
.main-menu .main-menu__list > li > ul > li > ul > li > a,
.stricky-header .main-menu__list > li > ul > li > a,
.stricky-header .main-menu__list > li > ul > li > ul > li > a {
  position: relative;
  font-size: 18px;
  line-height: 30px;
  color: var(--black);
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 20px 10px;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.main-menu .main-menu__list > li > ul > li:hover > a,
.main-menu .main-menu__list > li > ul > li > ul > li:hover > a,
.stricky-header .main-menu__list > li > ul > li:hover > a,
.stricky-header .main-menu__list > li > ul > li > ul > li:hover > a {
  background-color: var(--gsm-base);
  color: var(--white);
}

.main-menu .main-menu__list > li > ul > li > ul,
.stricky-header .main-menu__list > li > ul > li > ul {
  top: 0;
  left: 100%;
}

.main-menu .main-menu__list li ul li > ul.right-align,
.stricky-header .main-menu__list li ul li > ul.right-align {
  top: 0;
  left: auto;
  right: 100%;
}

.stricky-header {
  position: fixed;
  z-index: 991;
  top: 0;
  left: 0;
  background-color: #fff;
  width: 100%;
  visibility: hidden;
  -webkit-transform: translateY(-120%);
  transform: translateY(-120%);
  -webkit-transition: visibility 500ms ease, -webkit-transform 500ms ease;
  transition: visibility 500ms ease, -webkit-transform 500ms ease;
  transition: transform 500ms ease, visibility 500ms ease;
  transition: transform 500ms ease, visibility 500ms ease,
    -webkit-transform 500ms ease;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

@media (max-width: 1199px) {
  .stricky-header {
    display: none !important;
  }
}

.stricky-header.stricky-fixed {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  visibility: visible;
}

.mobile-nav__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  margin-right: 10px;
}

@media (min-width: 1200px) {
  .mobile-nav__buttons {
    display: none;
  }
}

.mobile-nav__buttons a {
  font-size: 20px;
  color: var(--gsm-base);
  cursor: pointer;
}

.mobile-nav__buttons a + a {
  margin-left: 10px;
}

.mobile-nav__buttons a:hover {
  color: var(--gsm-base);
}

.main-menu .mobile-nav__toggler {
  position: relative;
  display: inline-block;
  font-size: 20px;
  color: var(--gsm-base);
  cursor: pointer;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.main-menu .mobile-nav__toggler:hover {
  color: var(--white);
}

@media (min-width: 1200px) {
  .main-menu .mobile-nav__toggler {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Nav
--------------------------------------------------------------*/
.mobile-nav__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition: visibility 500ms ease 500ms,
    -webkit-transform 500ms ease 500ms;
  transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms,
    -webkit-transform 500ms ease 500ms;
  visibility: hidden;
}

.mobile-nav__wrapper .container {
  padding-left: 0;
  padding-right: 0;
}

.mobile-nav__wrapper.expanded {
  opacity: 1;
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  visibility: visible;
  -webkit-transition: visibility 500ms ease 0ms,
    -webkit-transform 500ms ease 0ms;
  transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms,
    -webkit-transform 500ms ease 0ms;
}

.mobile-nav__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000000;
  opacity: 0.5;
  cursor: pointer;
}

.mobile-nav__content {
  width: 300px;
  background-color: var(--black);
  z-index: 10;
  position: relative;
  height: 100%;
  overflow-y: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms,
    -webkit-transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms,
    -webkit-transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms,
    transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms,
    transform 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

.mobile-nav__wrapper.expanded .mobile-nav__content {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms,
    -webkit-transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms,
    -webkit-transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms,
    transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms,
    transform 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
}

.mobile-nav__content .logo-box {
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 15px;
  font-size: 18px;
  color: var(--white);
  cursor: pointer;
}

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list > li > ul,
.mobile-nav__content .main-menu__list > li > ul > li > ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.mobile-nav__content .main-menu__list > li > ul,
.mobile-nav__content .main-menu__list > li > ul > li > ul {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-left: 0.5em;
}

.mobile-nav__content .main-menu__list > li:not(:last-child),
.mobile-nav__content .main-menu__list > li > ul > li:not(:last-child),
.mobile-nav__content
  .main-menu__list
  > li
  > ul
  > li
  > ul
  > li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-menu__list > li > a > .main-menu-border {
  display: none !important;
}

.mobile-nav__content .main-menu__list > li > a,
.mobile-nav__content .main-menu__list > li > ul > li > a,
.mobile-nav__content .main-menu__list > li > ul > li > ul > li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  line-height: 30px;
  color: #ffffff;
  font-size: 14px;
  font-family: var(--gsm-font);
  font-weight: 500;
  height: 46px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__content
  .main-menu__list
  > li
  > a.expanded
  .mobile-nav__content
  .main-menu__list
  > li
  > ul
  > li
  > a.expanded
  .mobile-nav__content
  .main-menu__list
  > li
  > ul
  > li
  > ul
  > li
  > a.expanded {
  color: var(--gsm-base);
}

.mobile-nav__content .main-menu__list li a.expanded {
  color: var(--gsm-base);
}

.mobile-nav__content .main-menu__list > li > a > button,
.mobile-nav__content .main-menu__list > li > ul > li > a > button,
.mobile-nav__content .main-menu__list > li > ul > li > ul > li > a > button {
  width: 30px;
  height: 30px;
  background-color: var(--gsm-base);
  border: none;
  outline: none;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
  padding: 0;
}

.mobile-nav__content .main-menu__list > li > a > button.expanded,
.mobile-nav__content .main-menu__list > li > ul > li > a > button.expanded,
.mobile-nav__content
  .main-menu__list
  > li
  > ul
  > li
  > ul
  > li
  > a
  > button.expanded {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  background-color: #fff;
  color: var(--gsm-base);
}

/* no menu after 2rd level dropdown */
.mobile-nav__content .main-menu__list > li > ul > li > ul > li > a > button,
.mobile-nav__content .main-menu__list > li > ul > li > ul > li > ul {
  display: none !important;
}

.mobile-nav__content .main-menu__list li.cart-btn span {
  position: relative;
  top: auto;
  right: auto;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.mobile-nav__content .main-menu__list li.cart-btn i {
  font-size: 16px;
}

.mobile-nav__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 30px;
}

.mobile-nav__top .main-menu__login a {
  color: var(--gsm-text-dark);
}

.mobile-nav__container {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mobile-nav__social a {
  font-size: 16px;
  color: var(--black);
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__social a + a {
  margin-left: 30px;
}

.mobile-nav__social a:hover {
  color: var(--gsm-base);
}

.mobile-nav__contact {
  margin-bottom: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}

.mobile-nav__contact li {
  color: var(--gsm-text-dark);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mobile-nav__contact li + li {
  margin-top: 15px;
}

.mobile-nav__contact li a {
  color: var(--black);
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__contact li a:hover {
  color: var(--gsm-base);
}

.mobile-nav__contact li > i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--gsm-base);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  font-size: 11px;
  margin-right: 10px;
  color: #fff;
}

.mobile-nav__container .main-logo,
.mobile-nav__container .topbar__buttons,
.mobile-nav__container .main-menu__language,
.mobile-nav__container .main-menu__login {
  display: none;
}

/*--------------------------------------------------------------
# Navigations Two
--------------------------------------------------------------*/
.main-header-two {
  background-color: var(--white);
}

.main-menu-two .main-menu__wrapper-inner {
  padding: 0 0px;
}

.main-menu-two .main-menu__wrapper-inner:before {
  display: none;
}

.main-menu-two .main-menu__wrapper:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: rgba(var(--white-rgb), 0.2);
  z-index: -1;
}

.main-menu-two .main-menu__list > li + li,
.stricky-header.main-menu-two .main-menu__list > li + li {
  margin-left: 20px;
}

/*--------------------------------------------------------------
# Main Header Three
--------------------------------------------------------------*/
.main-menu-three .main-menu__right {
  padding: 0;
}

.main-menu-three .main-menu__wrapper-inner:before {
  background-color: rgba(var(--white-rgb), 0.05);
}

/*--------------------------------------------------------------
# Search Popup
--------------------------------------------------------------*/
.search-popup {
  padding: 118px 0px;
  position: fixed;
  top: 0px;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  padding-left: 20px;
  padding-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: self-start;
  -webkit-transform: translateY(-110%);
  transform: translateY(-110%);
  -webkit-transition: opacity 500ms ease, -webkit-transform 500ms ease;
  transition: opacity 500ms ease, -webkit-transform 500ms ease;
  transition: transform 500ms ease, opacity 500ms ease;
  transition: transform 500ms ease, opacity 500ms ease,
    -webkit-transform 500ms ease;
}

.search-popup.active {
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}

.search-popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--black);
  opacity: 0.75;
  cursor: pointer;
}

.search-popup__content {
  width: 100%;
  max-width: 730px;
  z-index: 9;
  padding: 40px;
  height: max-content;
  border-radius: 30px;
  background: white;
}

.search-popup__content form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  background-color: var(--white);
  border-radius: 0;
  overflow: hidden;
}

.search-popup__content form input[type="search"],
.search-popup__content form input[type="text"] {
  width: 100%;
  background-color: #ffffff00;
  font-size: 16px;
  border: none;
  outline: none;
  height: 50px;
  padding-left: 27px;
  border: 1px solid var(--primary);
  border-radius: 23px;
}

.search-popup__content .thm-btn {
  padding: 0;
  width: 70px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  position: absolute;
  top: 0;
  right: 0px;
  border-radius: 0;
  background-color: var(--primary);
  border: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  clip-path: none;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
}

.search-popup__content .thm-btn i {
  height: auto;
  width: auto;
  background-color: transparent;
  border-radius: 50%;
  color: var(--white);
  font-size: 22px;
  line-height: inherit;
  text-align: center;
  top: 0;
  margin-right: 0;
  padding-left: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.search-popup__content .thm-btn:hover i {
  color: var(--white);
}

/*--------------------------------------------------------------
# Main Slider
--------------------------------------------------------------*/
.main-slider {
  position: relative;
  display: block;
  background-color: var(--black);
  z-index: 91;
  overflow: hidden;
}

.main-slider .swiper-slide {
  position: relative;
  background-color: var(--black);
}

.main-slider__img {
  position: absolute;
  top: 140px;
  right: 350px;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateX(400px);
  -ms-transform: perspective(400px) rotateY(0deg) translateX(400px);
  transform: perspective(400px) rotateY(0deg) translateX(400px);
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  -webkit-transition: all 2000ms ease;
  -moz-transition: all 2000ms ease;
  -ms-transition: all 2000ms ease;
  -o-transition: all 2000ms ease;
  transition: all 2000ms ease;
}

.main-slider__img img {
  width: auto;
  border: 3px solid #41102b;
  border-radius: 20px;
}

.main-slider .swiper-slide-active .main-slider__img {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateY(0deg) translateX(0px);
  -ms-transform: perspective(400px) rotateY(0deg) translateX(0px);
  transform: perspective(400px) rotateY(0deg) translateX(0px);
  -webkit-transition-delay: 2000ms;
  -moz-transition-delay: 2000ms;
  -ms-transition-delay: 2000ms;
  -o-transition-delay: 2000ms;
  transition-delay: 2000ms;
}

.main-slider__shpae-1 {
  position: absolute;
  top: 180px;
  right: 195px;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateX(-160px);
  -ms-transform: perspective(400px) rotateY(0deg) translateX(-160px);
  transform: perspective(400px) rotateY(0deg) translateX(-160px);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  transition: all 1500ms ease;
  z-index: -1;
}

.main-slider .swiper-slide-active .main-slider__shpae-1 {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateY(0deg) translateX(0px);
  -ms-transform: perspective(400px) rotateY(0deg) translateX(0px);
  transform: perspective(400px) rotateY(0deg) translateX(0px);
  -webkit-transition-delay: 2000ms;
  -moz-transition-delay: 2000ms;
  -ms-transition-delay: 2000ms;
  -o-transition-delay: 2000ms;
}

.main-slider__shpae-1 img {
  width: auto;
}

.main-slider__shpae-2 {
  position: absolute;
  bottom: -50px;
  right: 270px;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(160px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(160px);
  transform: perspective(400px) rotateY(0deg) translateY(160px);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  transition: all 1500ms ease;
  z-index: -1;
}

.main-slider .swiper-slide-active .main-slider__shpae-2 {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  -webkit-transition-delay: 2000ms;
  -moz-transition-delay: 2000ms;
  -ms-transition-delay: 2000ms;
  -o-transition-delay: 2000ms;
}

.main-slider__shpae-2 img {
  width: auto;
  opacity: 0.1;
}

.main-slider__start-1 {
  position: absolute;
  top: 130px;
  left: 830px;
  animation-name: border-round;
  animation-duration: 15s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  z-index: -1;
}

.main-slider__start-1 img {
  width: auto;
}

@keyframes border-round {
  0% {
    transform: rotate(0deg);
    opacity: 1;
  }

  50% {
    transform: rotate(-180deg);
  }

  100% {
    transform: rotate(-360deg);
    opacity: 1;
  }
}

.main-slider__start-2 {
  position: absolute;
  bottom: 50px;
  left: 520px;
  z-index: -1;
}

.main-slider__start-2 img {
  width: auto;
}

.main-slider__start-3 {
  position: absolute;
  top: 216px;
  right: 170px;
  animation-name: border-round;
  animation-duration: 10s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  z-index: -1;
}

.main-slider__start-3 img {
  width: auto;
}

.main-slider .container {
  position: relative;
  padding-top: 226px;
  padding-bottom: 194px;
  z-index: 30;
}

.main-slider__content {
  position: relative;
  display: block;
  z-index: 15;
}

.main-slider__sub-title {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 18px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(-120px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(-120px);
  transform: perspective(400px) rotateY(0deg) translateY(-120px);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  transition: all 1500ms ease;
}

.main-slider .swiper-slide-active .main-slider__sub-title {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  -webkit-transition-delay: 1000ms;
  -moz-transition-delay: 1000ms;
  -ms-transition-delay: 1000ms;
  -o-transition-delay: 1000ms;
}

.main-slider__title {
  position: relative;
  font-size: 60px;
  color: var(--white);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 75px;
  margin-top: 7px;
  margin-bottom: 18px;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(-120px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(-120px);
  transform: perspective(400px) rotateY(0deg) translateY(-120px);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  transition: all 1500ms ease;
}

.main-slider__title span {
  color: transparent;
  -webkit-text-stroke: 1.5px #ffffff;
}

.main-slider .swiper-slide-active .main-slider__title {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  -webkit-transition-delay: 1500ms;
  -moz-transition-delay: 1500ms;
  -ms-transition-delay: 1500ms;
  -o-transition-delay: 1500ms;
}

.main-slider__text {
  position: relative;
  display: block;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateX(-120px);
  -ms-transform: perspective(400px) rotateY(0deg) translateX(-120px);
  transform: perspective(400px) rotateY(0deg) translateX(-120px);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  transition: all 1500ms ease;
}

.main-slider .swiper-slide-active .main-slider__text {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateY(0deg) translateX(0px);
  -ms-transform: perspective(400px) rotateY(0deg) translateX(0px);
  transform: perspective(400px) rotateY(0deg) translateX(0px);
  -webkit-transition-delay: 1500ms;
  -moz-transition-delay: 1500ms;
  -ms-transition-delay: 1500ms;
  -o-transition-delay: 1500ms;
}

.main-slider__address {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 27px;
  margin-bottom: 34px;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(120px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(120px);
  transform: perspective(400px) rotateY(0deg) translateY(120px);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  transition: all 1500ms ease;
}

.main-slider .swiper-slide-active .main-slider__address {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  -webkit-transition-delay: 1500ms;
  -moz-transition-delay: 1500ms;
  -ms-transition-delay: 1500ms;
  -o-transition-delay: 1500ms;
}

.main-slider__address li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.main-slider__address li .icon {
  position: relative;
  display: flex;
  align-items: center;
}

.main-slider__address li .icon span {
  position: relative;
  display: inline-block;
  font-size: 16px;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.main-slider__btn-box {
  position: relative;
  display: block;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(120px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(120px);
  transform: perspective(400px) rotateY(0deg) translateY(120px);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  transition: all 1500ms ease;
}

.main-slider .swiper-slide-active .main-slider__btn-box {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  -webkit-transition-delay: 2000ms;
  -moz-transition-delay: 2000ms;
  -ms-transition-delay: 2000ms;
  -o-transition-delay: 2000ms;
}

#main-slider-pagination {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-direction: column;
  max-width: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 56%;
  transform: translateY(-50%);
  padding: 0 50px;
  margin: 0 auto !important;
  height: 0;
  line-height: 0;
  z-index: 100;
}

#main-slider-pagination .swiper-pagination-bullet {
  position: relative;
  display: block;
  width: 14px;
  height: 14px;
  padding: 6px 0;
  margin: 4px 0px;
  background: transparent;
  border: 1px solid var(--black);
  opacity: 1;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

#main-slider-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}

#main-slider-pagination .swiper-pagination-bullet::before {
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  border-radius: 50%;
  background-color: var(--black);
  transform: scale(0);
  transition: all 200ms linear;
  transition-delay: 0.1s;
  content: "";
}

#main-slider-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active::before,
#main-slider-pagination .swiper-pagination-bullet:hover {
  transform: scale(1);
}

/*--------------------------------------------------------------
# Main Slider Two
--------------------------------------------------------------*/
.main-slider-two {
  position: relative;
  display: block;
  background-color: var(--black);
  z-index: 91;
}

.main-slider-two .swiper-slide {
  position: relative;
  background-color: var(--light-gray);
  /* background-color: #b9dcff; */
}

.main-slider-two .container {
  position: relative;
  z-index: 30;
  height: 100vh;
  /* border: 2px solid red; */
  /* overflow: hidden; */
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-slider-two__content {
  position: relative;
  display: block;
  margin-top: 60px;
  z-index: 15;
}

.main-slider-two__sub-title {
  position: relative;
  display: block;
  font-size: 18px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--black);
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(-120px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(-120px);
  transform: perspective(400px) rotateY(0deg) translateY(-120px);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  transition: all 1500ms ease;
}

.main-slider-two .swiper-slide-active .main-slider-two__sub-title {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  -webkit-transition-delay: 1000ms;
  -moz-transition-delay: 1000ms;
  -ms-transition-delay: 1000ms;
  -o-transition-delay: 1000ms;
}

.main-slider-two_para {
  margin-bottom: 3rem;
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--black);
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(-120px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(-120px);
  transform: perspective(400px) rotateY(0deg) translateY(-120px);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  transition: all 1500ms ease;
}

.main-slider-two .swiper-slide-active .main-slider-two_para {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  -webkit-transition-delay: 1000ms;
  -moz-transition-delay: 1000ms;
  -ms-transition-delay: 1000ms;
  -o-transition-delay: 1000ms;
}

.main-slider-two__title {
  position: relative;
  color: var(--black);
  font-size: 68px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 84px;
  margin-top: 20px;
  margin-bottom: 40px;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(-120px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(-120px);
  transform: perspective(400px) rotateY(0deg) translateY(-120px);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  transition: all 1500ms ease;
}

.main-slider-two__title .color-text {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.main-slider-two .swiper-slide-active .main-slider-two__title {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  -webkit-transition-delay: 1500ms;
  -moz-transition-delay: 1500ms;
  -ms-transition-delay: 1500ms;
  -o-transition-delay: 1500ms;
}

.main-slider-two__btn-box {
  position: relative;
  display: block;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(120px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(120px);
  transform: perspective(400px) rotateY(0deg) translateY(120px);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  transition: all 1500ms ease;
}

.main-slider-two .swiper-slide-active .main-slider-two__btn-box {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  -webkit-transition-delay: 2000ms;
  -moz-transition-delay: 2000ms;
  -ms-transition-delay: 2000ms;
  -o-transition-delay: 2000ms;
}

.main-slider-two__btn {
  background: transparent;
}

.main-slider-two__btn:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  border-radius: 30px;
  border: 3px solid transparent;
  background: linear-gradient(90deg, #b00d5c, #490ab3) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: -1;
}

.main-slider-two__img-box {
  position: relative;
  display: block;
  padding: 16px;
  border-radius: 250px;
  opacity: 0;
  transform: translateX(300px);
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  z-index: 1;
}

.main-slider-two .swiper-slide-active .main-slider-two__img-box {
  opacity: 1;
  transform: translateX(0);
  -webkit-transition-delay: 2500ms;
  -moz-transition-delay: 2500ms;
  -ms-transition-delay: 2500ms;
  -o-transition-delay: 2500ms;
  transition-delay: 2500ms;
}

.main-slider-two__img-box:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  border-radius: 250px;
  border: 6px solid transparent;
  background: linear-gradient(180deg, #b20d5c, #490ab3) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  visibility: visible;
  opacity: 1;
  z-index: 1;
}

.main-slider-two__img {
  position: relative;
  display: block;
  border-radius: 250px;
  overflow: hidden;
  z-index: 1;
}

.main-slider-two__img img {
  width: 100%;
  border-radius: 250px;
}

.main-slider-two__shape-1 {
  position: absolute;
  bottom: -60px;
  left: -56px;
  z-index: -1;
  animation-name: border-round;
  animation-duration: 15s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.main-slider-two__shape-1 img {
  width: auto;
  filter: grayscale(1);
  opacity: 0.3;
}

.main-slider-two__shape-2 {
  position: absolute;
  top: 0px;
  right: 0px;
  animation: topBottom 3s ease-in-out infinite;
  z-index: -1;
}

.main-slider-two__shape-2 img {
  width: auto;
  filter: grayscale(1);
}

.main-slider-two__shape-3 {
  position: absolute;
  top: -10px;
  right: -100px;
  z-index: 1;
}

.main-slider-two__shape-3 img {
  width: auto;
  filter: grayscale(1);
  opacity: 0.1;
}

.main-slider-two #main-slider-pagination {
  top: 50%;
}

/*--------------------------------------------------------------
# Banner One
--------------------------------------------------------------*/
.banner-one {
  position: relative;
  display: block;
  padding: 200px 0 200px;
  background-color: #000000;
  z-index: 91;
}

.banner-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.15;
  z-index: -1;
}

.banner-one__inner {
  position: relative;
  display: block;
  text-align: center;
}

.banner-one__countdown-timer-box {
  position: relative;
  display: block;
}

.banner-one__countdown-timer-box .time-countdown-two {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 500px;
  width: 100%;
  margin: 0 auto 10px;
}

.banner-one__countdown-timer-box li {
  position: relative;
  display: block;
  float: left;
  text-align: center;
  margin-bottom: 30px;
  z-index: 2;
}

.banner-one__countdown-timer-box li + li {
  margin-left: 5px;
}

.banner-one__countdown-timer-box li .box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 120px;
  width: 120px;
  margin: 0 auto 0;
  border-radius: 50%;
  text-align: center;
  z-index: 1;
}

.banner-one__countdown-timer-box li .box:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  border-radius: 10px;
  border: 2px solid transparent;
  background: linear-gradient(180deg, #006be5, rgba(140, 30, 13, 0.33))
    border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  visibility: visible;
  opacity: 1;
  z-index: -1;
}

.banner-one__countdown-timer-box li span.days,
.banner-one__countdown-timer-box li span.hours,
.banner-one__countdown-timer-box li span.minutes,
.banner-one__countdown-timer-box li span.seconds {
  position: relative;
  display: block;
  color: var(--white);
  font-size: 35px;
  line-height: 35px;
  text-align: center;
  font-weight: 700;
  margin: 0 auto;
}

.banner-one__countdown-timer-box li span.timeRef {
  position: relative;
  display: block;
  color: var(--white);
  font-size: 16px;
  line-height: 16px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-align: center;
  text-transform: uppercase;
  margin-top: 8px;
}

.banner-one__title {
  font-size: 45px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 55px;
}

.banner-one__date {
  font-size: 35px;
  line-height: 45px;
  color: var(--white);
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 20px;
}

.banner-one__address {
  font-size: 24px;
  color: var(--white);
  font-weight: 700;
  line-height: 34px;
}

.banner-one__btn-box {
  position: relative;
  display: block;
  margin-top: 41px;
}

/*--------------------------------------------------------------
# Services One
--------------------------------------------------------------*/
.services-one {
  position: relative;
  display: block;
  padding: 96px 0 80px;
  z-index: 1;
}

.services-one__single {
  position: relative;
  display: block;
  padding: 38px 39px 37px;
  border-radius: 20px;
  margin-bottom: 30px;
  z-index: 1;
}

.services-one__single:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  border-radius: 20px;
  border: 1px solid transparent;
  background: linear-gradient(180deg, #f24617, rgba(140, 30, 13, 0.33))
    border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  visibility: visible;
  opacity: 1;
  z-index: -1;
}

.services-one__single:hover:before {
  visibility: hidden;
  opacity: 0;
}

.services-one__single:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  border-radius: 20px;
  border: 1px solid transparent;
  background: linear-gradient(180deg, rgba(140, 30, 13, 0.33), #f24617)
    border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
}

.services-one__single:hover:after {
  visibility: visible;
  opacity: 1;
}

.services-one__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--primary-gradient);
}

.services-one__icon span {
  position: relative;
  display: inline-block;
  font-size: 30px;
  color: var(--white);
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.services-one__single:hover .services-one__icon span {
  transform: scale(1.05);
}

.services-one__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  margin-top: 22px;
}

.services-one__title a {
  color: var(--white);
}

.services-one__title a:hover {
  color: var(--gsm-base);
}

.services-one__text {
  margin-top: 14px;
  margin-bottom: 30px;
}

.services-one__read-more {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--white);
  font-weight: 700;
}

.services-one__read-more:hover {
  color: var(--gsm-base);
}

/*--------------------------------------------------------------
# Sliding Text One
--------------------------------------------------------------*/
.sliding-text-one {
  position: relative;
  display: block;
  padding: 0px 0 109px;
  z-index: 1;
}

.sliding-text-one__wrap {
  position: relative;
  display: block;
}

.sliding-text__list {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  flex-wrap: nowrap;
  width: fit-content;
}

.sliding-text__list li {
  osition: relative;
  display: block;
  float: left;
  margin-right: 35px;
}

.sliding-text__title {
  position: relative;
  display: flex;
  align-items: center;
  gap: 35px;
  color: transparent;
  -webkit-text-stroke: 1px #ffffff;
  font-size: 96px;
  line-height: 115px;
  font-weight: 700;
  text-transform: capitalize;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  font-family: var(--gsm-font);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.sliding-text__title img {
  width: auto;
  animation: textRotate 05s linear 0s forwards infinite alternate;
}

.sliding-text__list li .sliding-text__title:hover {
  color: transparent;
  -webkit-text-stroke: 1px transparent;
}

.sliding-text__title:before {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  color: var(--white);
  white-space: nowrap;
  content: attr(data-hover);
  transition: all 0.5s cubic-bezier(0.17, 0.67, 0.32, 0.87);
}

.sliding-text__list li:hover .sliding-text__title:before {
  width: 100%;
  color: var(--white);
}

@keyframes textRotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Event One
--------------------------------------------------------------*/
.event-one {
  position: relative;
  display: block;
  padding: 0 0 120px;
}

.event-one__inner {
  position: relative;
  display: block;
  border: 2px solid rgba(var(--gsm-bdr-color-rgb), 0.2);
  border-radius: 20px;
  padding: 60px 60px 60px;
  z-index: 1;
}

.event-one__top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.event-one__top .section-title {
  margin-bottom: 0;
}

.event-one__btn-box {
  position: relative;
  display: block;
}

.event-one__points {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 50px;
  margin-bottom: 60px;
}

.event-one__points li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 460px;
  width: 100%;
}

.event-one__points li .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 80px;
  width: 100%;
  height: 80px;
  border-radius: 50%;
  background: var(--primary-gradient);
}

.event-one__points li .icon span {
  position: relative;
  display: inline-block;
  font-size: 45px;
  color: var(--white);
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.event-one__points li:hover .icon span {
  transform: scale(0.9);
}

.event-one__points li .content {
  position: relative;
  display: block;
}

.event-one__points li .content h4 {
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
  margin-bottom: 14px;
}

.event-one__points li .content h4 a {
  color: var(--white);
}

.event-one__points li .content p {
  font-size: 12px;
  line-height: 20px;
}

.event-one__points li .content h4 a:hover {
  color: var(--gsm-base);
}

.event-one__img-box {
  position: relative;
  display: block;
}

.event-one__img-box img {
  width: 100%;
  border-radius: 20px;
}

/*--------------------------------------------------------------
# Buy Ticket
--------------------------------------------------------------*/
.buy-ticket {
  position: relative;
  display: block;
  background-color: #0e0a17;
  padding: 120px 0 120px;
  z-index: 1;
}

.buy-ticket__left {
  position: relative;
  display: block;
  margin-right: -20px;
}

.buy-ticket__address {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.buy-ticket__address li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
}

.buy-ticket__address li .icon {
  position: relative;
  display: flex;
  align-items: center;
}

.buy-ticket__address li .icon span {
  position: relative;
  display: inline-block;
  font-size: 15px;
  color: var(--white);
}

.buy-ticket__address li .text {
  position: relative;
  display: block;
}

.buy-ticket__address li .text p {
  font-size: 12px;
  color: var(--white);
}

.buy-ticket__title {
  font-size: 48px;
  line-height: 55px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 5px;
}

.buy-ticket__title a {
  color: var(--white);
}

.buy-ticket__text {
  margin-bottom: 42px;
}

.buy-ticket__btn-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.buy-ticket__btn-2 {
  background: transparent;
  border: 1px solid var(--gsm-bdr-color);
  padding: 16px 30px 16px;
}

.buy-ticket__btn-2:hover {
  border: 1px solid transparent;
}

.buy-ticket__right {
  position: relative;
  display: block;
  margin-left: 60px;
}

.buy-ticket__img {
  position: relative;
  display: block;
}

.buy-ticket__img img {
  width: 100%;
  border: 7px solid #261e36;
  border-radius: 20px;
}

/*--------------------------------------------------------------
# Team One
--------------------------------------------------------------*/
.team-one {
  position: relative;
  display: block;
  padding: 120px 0 90px;
  z-index: 1;
}

.team-one__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.team-one__img-box {
  position: relative;
  display: block;
}

.team-one__img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 20px;
  z-index: 1;
}

.team-one__img img {
  width: 100%;
  border-radius: 20px;
  transform: scale3d(1, 1, 1);
  transition: transform 1s ease-in-out;
}

.team-one__single:hover .team-one__img img {
  transform: scale(1.05) rotate(0deg);
}

.team-one__content {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  background-color: #0e0a17;
  padding: 24px 30px 23px;
  border-radius: 20px;
  transform: translateY(0%);
  transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease;
  visibility: visible;
  opacity: 1;
  z-index: 2;
}

.team-one__single:hover .team-one__content {
  visibility: hidden;
  transform: translateY(150%);
  opacity: 0;
}

.team-one__name {
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
  margin-bottom: 20px;
}

.team-one__name a {
  color: var(--white);
}

.team-one__sub-title {
  line-height: 16px;
  color: var(--white);
}

.team-one__content-hover {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  background: var(--primary-gradient);
  border-radius: 20px;
  padding: 27px 30px 29px;
  transform: translateY(66%);
  transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease;
  visibility: hidden;
  opacity: 0;
  z-index: 2;
}

.team-one__single:hover .team-one__content-hover {
  visibility: visible;
  transform: translateY(0%);
  opacity: 1;
}

.team-one__name-hover {
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
  margin-bottom: 20px;
}

.team-one__name-hover a {
  color: var(--white);
}

.team-one__name-hover a:hover {
  color: var(--black);
}

.team-one__sub-title-hover {
  line-height: 16px;
  color: var(--white);
}

.team-one__text-hover {
  margin-top: 15px;
}

/*--------------------------------------------------------------
# Event Direction
--------------------------------------------------------------*/
.event-direction {
  position: relative;
  display: block;
  z-index: 1;
}

.event-direction__inner {
  position: relative;
  display: block;
  background-color: #0e0a17;
  padding: 100px 60px 70px;
  border-radius: 20px;
}

.event-direction__left {
  position: relative;
  display: block;
}

.event-direction__left .section-title {
  margin-bottom: 4px;
}

.event-direction__call {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
}

.event-direction__call-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.event-direction__call-icon img {
  width: auto;
}

.event-direction__call-content {
  position: relative;
  display: block;
}

.event-direction__call-content p {
  color: var(--white);
  margin-bottom: 9px;
}

.event-direction__call-content h4 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.4px;
  line-height: 16px;
}

.event-direction__call-content h4 a {
  color: var(--white);
}

.event-direction__call-content h4 a:hover {
  color: var(--gsm-base);
}

.event-direction__right {
  position: relative;
  display: block;
  margin-left: 8px;
}

.event-direction__counter {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-left: -20px;
  margin-right: -20px;
}

.event-direction__counter li {
  position: relative;
  flex: 0 0 50%;
  max-width: 50%;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}

.event-direction__counter-single {
  position: relative;
  display: block;
  border: 1px solid rgba(var(--gsm-bdr-color-rgb), 0.2);
  border-radius: 20px;
  text-align: center;
  margin-bottom: 30px;
  padding: 21px 0 26px;
}

.event-direction__counter-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.event-direction__counter-box h3 {
  font-size: 48px;
  line-height: 48px !important;
  font-weight: 700;
  font-family: var(--gsm-font) !important;
}

.event-direction__counter-plus {
  font-size: 48px;
  line-height: 48px !important;
  font-weight: 700;
  font-family: var(--gsm-font) !important;
}

.event-direction__counter-text {
  color: rgba(var(--white-rgb), 0.8);
  line-height: 16px;
}

/*--------------------------------------------------------------
# Gallery One
--------------------------------------------------------------*/
.gallery-one {
  position: relative;
  display: block;
  padding: 120px 0 110px;
  z-index: 1;
}

.gallery-one .container {
  max-width: 1572px;
}

.gallery-one .row {
  --bs-gutter-x: 10px;
}

.gallery-one__single {
  position: relative;
  display: block;
  margin-bottom: 10px;
}

.gallery-one__img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 20px;
  z-index: 1;
}

.gallery-one__img::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--black);
  opacity: 0;
  transition: background-color 0.5s ease;
  transition: all 0.5s ease;
  z-index: 1;
}

.gallery-one__single:hover .gallery-one__img::before {
  opacity: 0.4;
}

.gallery-one__img img {
  width: 100%;
  border-radius: 20px;
  transform: scale3d(1, 1, 1);
  transition: transform 1s ease-in-out;
}

.gallery-one__single:hover .gallery-one__img img {
  transform: scale(1.05) rotate(0deg);
}

.gallery-one__content {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  background-color: #0e0a17;
  border-radius: 20px;
  padding: 26px 30px 18px;
  transform: translateX(-50%);
  transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease;
  visibility: hidden;
  opacity: 0;
  z-index: 2;
}

.gallery-one__single:hover .gallery-one__content {
  transform: translateX(0%);
  visibility: visible;
  opacity: 1;
  transition-delay: 500ms;
}

.gallery-one__sub-title-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.gallery-one__sub-title-shape {
  position: relative;
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-gradient);
}

.gallery-one__sub-title {
  font-size: 16px;
  line-height: 16px;
  color: var(--white);
}

.gallery-one__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
}

.gallery-one__title a {
  color: var(--white);
}

.gallery-one__title a:hover {
  color: var(--gsm-base);
}

/*--------------------------------------------------------------
# Schedule One
--------------------------------------------------------------*/
.schedule-one {
  position: relative;
  display: block;
  padding-bottom: 90px;
}

.schedule-one__inner {
  position: relative;
  display: block;
}

.schedule-one__inner .section-title {
  position: absolute;
  top: 0;
  left: 0;
  margin-bottom: 0;
  z-index: 20;
}

.schedule-one__main-tab-box {
  position: relative;
  display: block;
}

.schedule-one__main-tab-box .tab-buttons {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  /* max-width: 480px;
  width: 100%; */
  margin-left: auto;
  margin-bottom: 60px;
}

.schedule-one__main-tab-box .tab-buttons .tab-btn {
  position: relative;
  cursor: pointer;
  text-align: center;
  padding: 11px 29px 11px;
  border: 1px solid #cccccc;
  border-radius: 32px;
  z-index: 1;
}

.schedule-one__main-tab-box .tab-buttons .tab-btn:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0%;
  content: "";
  background: var(--primary-gradient);
  border-radius: 32px;
  transition: all 0.3s ease;
  z-index: -1;
}

.schedule-one__main-tab-box .tab-buttons .tab-btn.active-btn:before {
  height: 100%;
}

.schedule-one__main-tab-box .tab-buttons .tab-btn::after {
  content: "";
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  border-top: 14px solid var(--gsm-primary);
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  opacity: 0;
  transition: all 0.3s ease;
}

.schedule-one__main-tab-box .tab-buttons .tab-btn.active-btn::after {
  opacity: 1;
}

.schedule-one__main-tab-box .tab-buttons .tab-btn h3 {
  font-size: 15px;
  color: black;
  font-weight: 700;
  line-height: 15px;
  letter-spacing: 1.4px;
  /* margin-bottom: 10px; */
  transition: all 0.3s ease;
}

.schedule-one__main-tab-box .tab-buttons .tab-btn.active-btn h3 {
  color: var(--white);
}

.schedule-one__main-tab-box .tab-buttons .tab-btn p {
  position: relative;
  display: block;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  font-size: 14px;
  line-height: 14px;
  color: black;
  font-weight: 500;
  transition: all 0.3s ease;
  z-index: 1;
}

.schedule-one__main-tab-box .tab-buttons .tab-btn.active-btn p {
  color: var(--white);
}

.schedule-one__main-tab-box .tabs-content {
  position: relative;
  display: block;
  z-index: 1;
}

.schedule-one__main-tab-box .tabs-content .tab {
  position: relative;
  display: none;
  -webkit-transform: translateY(35px);
  -ms-transform: translateY(35px);
  transform: translateY(35px);
  -webkit-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  transition: all 600ms ease;
  z-index: 10;
}

.schedule-one__main-tab-box .tabs-content .tab.active-tab {
  display: block;
  margin-top: 0px;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}

.schedule-one__tab-content-box {
  position: relative;
  display: block;
}

.schedule-one__single {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  background-color: #1b1720;
  border-radius: 20px;
  padding: 30px 40px 30px;
  margin-bottom: 30px;
  z-index: 1;
}

.schedule-one__left {
  position: relative;
  display: block;
}

.schedule-one__title {
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  margin-bottom: 20px;
}

.schedule-one__title a {
  color: var(--white);
}

.schedule-one__title a:hover {
  color: var(--gsm-base);
}

.schedule-one__text {
  color: var(--white);
}

.schedule-one__img {
  position: relative;
  display: block;
  max-width: 309px;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  z-index: 1;
}

.schedule-one__img::after {
  background: hsla(0, 0%, 100%, 0.5);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  opacity: 1;
  z-index: 9;
  pointer-events: none;
}

.schedule-one__single:hover .schedule-one__img::after {
  height: 100%;
  opacity: 0;
  transition: all 0.6s linear;
}

.schedule-one__img img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  transition: all 1s ease-in-out;
}

.schedule-one__single:hover .schedule-one__img img {
  transform: scale(1.1);
}

.schedule-one__address-and-btn-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 70px;
}

.schedule-one__address {
  position: relative;
  display: block;
}

.schedule-one__address li {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.schedule-one__address li + li {
  margin-top: 13px;
}

.schedule-one__address li .icon {
  position: relative;
  display: inline-block;
}

.schedule-one__address li .icon span {
  position: relative;
  display: inline-block;
  font-size: 13px;
  color: var(--white);
}

.schedule-one__address li .text {
  position: relative;
  display: block;
}

.schedule-one__address li .text p {
  font-size: 12px;
  line-height: 20px;
}

.schedule-one__btn-box {
  position: relative;
  display: block;
}

/*--------------------------------------------------------------
# Brand One
--------------------------------------------------------------*/
.brand-one {
  position: relative;
  display: block;
  padding: 90px 0 90px;
  border-top: 2px dashed rgba(255, 255, 255, 0.1);
  border-bottom: 2px dashed rgba(255, 255, 255, 0.1);
  z-index: 1;
}

.brand-one__inner {
  position: relative;
  display: block;
}

.brand-one .swiper-slide {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.brand-one .swiper-slide__img {
  position: relative;
  display: block;
  opacity: 0.5;
  max-width: 137px;
  width: 100%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.brand-one .swiper-slide:hover .swiper-slide__img {
  opacity: 1;
}

.brand-one .swiper-slide__img img {
  -webkit-transition: 500ms;
  transition: 500ms;
  width: 100%;
}

/*--------------------------------------------------------------
# Blog One
--------------------------------------------------------------*/
.blog-one {
  position: relative;
  display: block;
  padding: 120px 0 90px;
  z-index: 1;
}

.blog-one__top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.blog-one__top .section-title {
  margin-bottom: 0;
}

.blog-one__btn-box {
  position: relative;
  display: block;
}

.blog-one__bottom {
  position: relative;
  display: block;
}

.blog-one__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.blog-one__img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 15px;
  z-index: 3;
}

.blog-one__img img {
  width: 100%;
  transform: scale3d(1, 1, 1);
  transition: transform 1s ease-in-out;
}

.blog-one__single:hover .blog-one__img img {
  transform: scale(1.05) rotate(0deg);
}

.blog-one__hover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(var(--gsm-base-rgb), 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  transform: scale(1, 0);
  transition: transform 500ms ease;
  transform-origin: bottom center;
}

.blog-one__single:hover .blog-one__hover {
  transform-origin: top center;
  transform: scale(1, 1);
}

.blog-one__hover > a {
  position: relative;
}

.blog-one__hover-icon-1 {
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(var(--white-rgb), 0.2);
  transition: all 0.5s ease-in-out;
}

.blog-one__hover-icon-1:hover {
  background-color: var(--black);
}

.blog-one__hover-icon-2 {
  width: 30px;
  height: 30px;
  display: block;
  position: relative;
}

.blog-one__hover-icon-2::after,
.blog-one__hover-icon-2::before {
  content: "";
  width: 3px;
  height: 100%;
  background-color: var(--white);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.blog-one__hover-icon-2::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.blog-one__content {
  position: relative;
  display: block;
  background-color: #0e0a17;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  padding: 45px 30px 30px;
  margin-top: -15px;
  margin-right: 40px;
  z-index: 1;
}

.blog-one__meta {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.blog-one__meta li {
  position: relative;
  display: block;
}

.blog-one__meta li a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: rgba(var(--white-rgb), 0.9);
}

.blog-one__meta li a:hover {
  color: var(--gsm-base);
}

.blog-one__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  margin-top: 28px;
  margin-bottom: 31px;
}

.blog-one__title a {
  color: var(--white);
}

.blog-one__title a:hover {
  color: var(--gsm-base);
}

.blog-one__btn-box-two {
  position: relative;
  display: block;
}

.blog-one__btn-2 {
  background: transparent;
  border: 1px solid rgba(var(--gsm-bdr-color-rgb), 0.2);
  padding: 16px 30px 16px;
}

/*--------------------------------------------------------------
# CTA One
--------------------------------------------------------------*/
.cta-one {
  position: relative;
  display: block;
  background: var(--primary-gradient_hover);
  padding: 80px 0 80px;
  z-index: 1;
}

.cta-one__inner {
  position: relative;
  display: block;
  text-align: center;
}

.cta-one__title {
  font-size: 60px;
  font-weight: 700;
  line-height: 75px;
  color: var(--white);
  text-transform: capitalize;
  margin-bottom: 29px;
}

.cta-one__form.mc-form {
  position: relative;
  display: block;
  max-width: 670px;
  width: 100%;
  margin: 0 auto 0;
}

.cta-one__form-input-box {
  position: relative;
  display: block;
}

.cta-one__form-input-box input[type="email"] {
  font-size: 16px;
  height: 60px;
  width: 100%;
  background-color: transparent;
  outline: none;
  color: var(--white);
  font-weight: 400;
  border: 2px solid rgba(var(--white-rgb), 0.14);
  border-radius: 30px;
  padding-right: 65px;
  padding-left: 30px;
}

.cta-one__btn {
  position: absolute;
  top: 50%;
  right: 7px;
  height: 45px;
  width: 45px;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--black);
  transform: translateY(-50%);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.cta-one__btn:hover {
  background-color: var(--gsm-base);
  color: var(--white);
}

/*--------------------------------------------------------------
# Site Footer
--------------------------------------------------------------*/
.site-footer {
  position: relative;
  display: block;
  padding: 98px 0px 0px;
  z-index: 1;
}

.site-footer__shape-1 {
  position: absolute;
  bottom: 25px;
  right: 0;
  z-index: -1;
}

.site-footer__shape-1 img {
  width: auto;
  opacity: 0.05;
}

.site-footer__top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(var(--gsm-bdr-color-rgb), 0.2);
  padding: 22px 0;
  z-index: 1;
}

.site-footer__logo {
  position: relative;
  display: block;
}

.site-footer__social {
  position: relative;
  display: flex;
  align-items: center;
  gap: 40px;
}

.site-footer__social a {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 20px;
  color: var(--white);
}

.site-footer__social a:hover {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.site-footer__middle {
  position: relative;
  display: block;
  padding: 98px 0px 112px;
}

.site-footer__middle-inner {
  position: relative;
  display: block;
}

.footer-widget__title-box {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-bottom: 40px;
}

.footer-widget__title {
  font-size: 24px;
  color: var(--black);
  font-weight: 700;
  line-height: 24px;
}

.footer-widget__events {
  position: relative;
  display: block;
}

.footer-widget__events-list {
  position: relative;
  display: block;
}

.footer-widget__events-list li {
  position: relative;
  display: block;
}

.footer-widget__events-list li + li {
  margin-top: 15px;
}

.footer-widget__events-list li h5 {
  font-size: 15px;
  font-weight: 700;
  line-height: 20px;
  margin-top: 9px;
  margin-bottom: 17px;
}

.footer-widget__events-list li a {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: capitalize;
  color: var(--dark-gray);
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-widget__events-list li a span {
  position: relative;
  display: inline-block;
  font-size: 12px;
}

.footer-widget__events-list li a:hover {
  color: var(--primary);
}

.footer-widget__link {
  position: relative;
  display: block;
  margin-left: 50px;
}

.footer-widget__link-list {
  position: relative;
  display: block;
}

.footer-widget__link-list li {
  position: relative;
  display: block;
}

.footer-widget__link-list li + li {
  margin-top: 15px;
}

.footer-widget__link-list li a {
  position: relative;
  display: inline-block;
  font-size: 16px;
  color: rgba(var(--white-rgb), 0.9);
}

.footer-widget__link-list li a:hover {
  color: rgba(var(--gsm-base-rgb), 1);
}

.footer-widget__our-company {
  position: relative;
  display: block;
}

.footer-widget__contact {
  position: relative;
  display: block;
  margin-left: 15px;
}

.footer-widget__contact-inner {
  position: relative;
  display: block;
}

.footer-widget__contact-list {
  position: relative;
  display: block;
}

.footer-widget__contact-list li {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-widget__contact-list li + li {
  margin-top: 15px;
}

.footer-widget__contact-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  height: 40px;
  width: 40px;
  border: 0;
  border-radius: 50%;
  background: var(--primary-gradient);
}

.footer-widget__contact-list li .icon span {
  position: relative;
  display: inline-block;
  font-size: 15px;
  background: var(--white);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.footer-widget__contact-list li .text {
  position: relative;
  display: block;
}

.footer-widget__contact-list li .text p {
  font-size: 16px;
  color: var(--dark-gray);
  line-height: 26px;
}

.footer-widget__contact-list li .text p a {
  color: var(--dark-gray);
}

.footer-widget__contact-list li .text p a:hover {
  color: var(--primary);
}

.site-footer__bottom {
  position: relative;
  display: block;
}

.site-footer__bottom-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  border-top: 1px solid rgba(var(--gsm-bdr-color-rgb), 0.2);
  padding: 40.5px 0;
}

.site-footer__bottom-menu {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.site-footer__bottom-menu li {
  position: relative;
  display: block;
}

.site-footer__bottom-menu li a {
  position: relative;
  display: flex;
  align-items: center;
  color: rgba(var(--white-rgb), 0.9);
}

.site-footer__bottom-menu li a:hover {
  color: rgba(var(--gsm-base-rgb), 1);
}

/*--------------------------------------------------------------
# Schedule One
--------------------------------------------------------------*/
.schedule-two {
  position: relative;
  display: block;
  padding: 120px 0 90px;
}

.schedule-two__inner {
  position: relative;
  display: block;
}

.schedule-two__inner .section-title {
  position: absolute;
  top: 0;
  left: 0;
  margin-bottom: 0;
  z-index: 20;
}

.schedule-two__main-tab-box {
  position: relative;
  display: block;
}

.schedule-two__main-tab-box .tab-buttons {
  /* position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 480px;
  width: 100%;
  margin-left: auto;
  margin-bottom: 60px; */
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  /* max-width: 480px; */
  width: 100%;
  /* margin-left: auto; */
  margin-bottom: 60px;
}

.schedule-two__main-tab-box .tab-buttons .tab-btn {
  position: relative;
  cursor: pointer;
  text-align: center;
  padding: 11px 29px 11px;
  border: 1px solid var(--gsm-bdr-color);
  border-radius: 32px;
  z-index: 1;
}

.schedule-two__main-tab-box .tab-buttons .tab-btn:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0%;
  content: "";
  background: var(--primary-gradient);
  border-radius: 32px;
  transition: all 0.3s ease;
  z-index: -1;
}

.schedule-two__main-tab-box .tab-buttons .tab-btn.active-btn:before {
  height: 100%;
}

.schedule-two__main-tab-box .tab-buttons .tab-btn::after {
  content: "";
  position: absolute;
  bottom: -13px;
  left: 50%;
  transform: translateX(-50%);
  border-top: 14px solid var(--gsm-primary);
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  opacity: 0;
  transition: all 0.3s ease;
}

.schedule-two__main-tab-box .tab-buttons .tab-btn.active-btn::after {
  opacity: 1;
}

.schedule-two__main-tab-box .tab-buttons .tab-btn h3 {
  font-size: 15px;
  color: var(--black);
  font-weight: 700;
  line-height: 15px;
  letter-spacing: 1.4px;
  transition: all 0.3s ease;
  margin-bottom: 0;
}

.schedule-two__main-tab-box .tab-buttons .tab-btn.active-btn h3 {
  color: var(--white);
}

.schedule-two__main-tab-box .tab-buttons .tab-btn p {
  position: relative;
  display: block;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  font-size: 14px;
  line-height: 14px;
  color: var(--gsm-gray);
  font-weight: 500;
  transition: all 0.3s ease;
  z-index: 1;
}

.schedule-two__main-tab-box .tab-buttons .tab-btn.active-btn p {
  color: var(--white);
}

.schedule-two__main-tab-box .tabs-content {
  position: relative;
  display: block;
  z-index: 1;
}

.schedule-two__main-tab-box .tabs-content .tab {
  position: relative;
  display: none;
  -webkit-transform: translateY(35px);
  -ms-transform: translateY(35px);
  transform: translateY(35px);
  -webkit-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  transition: all 600ms ease;
  z-index: 10;
}

.schedule-two__main-tab-box .tabs-content .tab.active-tab {
  display: block;
  margin-top: 0px;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}

.schedule-two__tab-content-box {
  position: relative;
  display: block;
}

.schedule-two__sinlge {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.schedule-two__img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 20px;
  z-index: 1;
}

.schedule-two__img::after {
  background: hsla(0, 0%, 100%, 0.5);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  opacity: 1;
  z-index: 9;
  pointer-events: none;
}

.schedule-two__sinlge:hover .schedule-two__img::after {
  height: 100%;
  opacity: 0;
  transition: all 0.6s linear;
}

.schedule-two__img img {
  width: 100%;
  height: 280px;
  border-radius: 20px;
  object-fit: cover;
  transition: all 1s ease-in-out;
}

.schedule-two__sinlge:hover .schedule-two__img img {
  transform: scale(1.1);
}

.schedule-two__right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  background-color: var(--gsm-extra);
  border-radius: 20px;
  padding: 34px 40px 35px;
}

.schedule-two__right-content {
  position: relative;
  display: block;
}

.schedule-two__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
}

.schedule-two__title a {
  color: var(--black);
}

.schedule-two__title a:hover {
  color: var(--gsm-base);
}

.schedule-two__text {
  color: var(--black);
  margin-top: 19px;
  margin-bottom: 20px;
}

.schedule-two__btn {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 15px;
  color: #000;
  font-weight: 700;
  gap: 10px;
  margin-top: 10px;
  /* justify-content: end; */
}

.schedule-two__btn:hover {
  color: #000;
}

.schedule-two__address {
  position: relative;
  display: block;
}

.schedule-two__address:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -55px;
  width: 1px;
  background-color: rgba(var(--black-rgb), 0.2);
}

.schedule-two__address li {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.schedule-two__address li + li {
  margin-top: 22px;
}

.schedule-two__address li .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  width: 32px;
  border: 1px solid var(--gsm-bdr-color);
  border-radius: 50%;
}

.schedule-two__address li .icon span {
  position: relative;
  display: inline-block;
  font-size: 13px;
  color: var(--black);
}

.schedule-two__address li .text {
  position: relative;
  display: block;
  margin-left: 10px;
}

.schedule-two__address li .text p {
  font-size: 12px;
  line-height: 20px;
  color: var(--black);
}

/*--------------------------------------------------------------
# Services Two
--------------------------------------------------------------*/
.services-two {
  position: relative;
  display: block;
  padding: 0 0 90px;
}

.services-two__single {
  position: relative;
  display: block;
  border: 1px solid var(--gsm-bdr-color);
  border-radius: 20px;
  padding: 39px 39px 37px;
  margin-bottom: 30px;
}

.services-two__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  width: 90px;
  border-radius: 50%;
  background: var(--primary-gradient);
  margin-bottom: 22px;
  z-index: 1;
}

.services-two__icon span {
  position: relative;
  display: inline-block;
  font-size: 45px;
  color: var(--white);
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.services-two__single:hover .services-two__icon span {
  transform: scale(0.9);
}

.services-two__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
}

.services-two__title a {
  color: var(--black);
}

.services-two__title a:hover {
  color: var(--gsm-base);
}

.services-two__text {
  margin-top: 18px;
  margin-bottom: 24px;
}

.services-two__btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--black);
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: capitalize;
}

.services-two__btn span {
  font-size: 13px;
}

.services-two__btn:hover {
  color: var(--gsm-base);
}

/*--------------------------------------------------------------
# Event Two
--------------------------------------------------------------*/
.event-two {
  position: relative;
  display: block;
  background-color: var(--gsm-extra);
  padding: 90px 0 90px;
  z-index: 1;
}

.event-two__left {
  position: relative;
  display: block;
  margin-right: 340px;
}

.event-two__img-box {
  position: relative;
  display: block;
}

.event-two__img {
  height: 505px;
  width: 290px;
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 20px;
  z-index: 1;
}

.event-two__img::after {
  background: hsla(0, 0%, 100%, 0.5);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  opacity: 1;
  z-index: 9;
  pointer-events: none;
}

.event-two__img-box:hover .event-two__img::after {
  height: 100%;
  opacity: 0;
  transition: all 0.6s linear;
}

.event-two__img img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  transition: all 1s ease-in-out;
}

.event-two__img-box:hover .event-two__img img {
  transform: scale(1.1);
}

.event-two__trusted-customer {
  position: absolute;
  bottom: 30px;
  right: -120px;
  background: var(--primary-gradient);
  max-width: 230px;
  width: 100%;
  border-radius: 20px;
  text-align: center;
  padding: 24px 0 16px;
  z-index: 2;
}

.event-two__trusted-customer-icon-and-count-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 10px;
}

.event-two__trusted-customer-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.event-two__trusted-customer-icon span {
  position: relative;
  display: inline-block;
  font-size: 40px;
  color: var(--white);
}

.event-two__trusted-customer-count {
  position: relative;
  display: flex;
  align-items: center;
}

.event-two__trusted-customer-count h3 {
  font-size: 30px;
  color: var(--white);
  line-height: 30px !important;
  font-weight: 700;
  font-family: var(--gsm-font) !important;
}

.event-two__trusted-customer-count-plus {
  font-size: 30px;
  color: var(--white);
  line-height: 30px;
  font-weight: 700;
  font-family: var(--gsm-font);
}

.event-two__trusted-customer-text {
  color: var(--white);
}

.event-two__img-two {
  height: 402px;
  width: 310px;
  position: absolute;
  bottom: 0;
  right: -340px;
  overflow: hidden;
  border-radius: 20px;
  z-index: 1;
}

.event-two__img-two::after {
  background: hsla(0, 0%, 100%, 0.5);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  opacity: 1;
  z-index: 9;
  pointer-events: none;
}

.event-two__img-box:hover .event-two__img-two::after {
  height: 100%;
  opacity: 0;
  transition: all 0.6s linear;
  transition-delay: 500ms;
}

.event-two__img-two img {
  width: auto;
  border-radius: 20px;
  object-fit: cover;
  transition: all 1s ease-in-out;
}

.event-two__img-box:hover .event-two__img-two img {
  transform: scale(1.1);
  transition-delay: 500ms;
}

.event-two__shape-1 {
  position: absolute;
  top: 0;
  right: -340px;
  z-index: -1;
}

.event-two__shape-1 img {
  width: auto;
}

.event-two__right {
  position: relative;
  display: block;
  margin-top: 45px;
  margin-left: 68px;
}

.event-two__right .section-title {
  margin-bottom: 22px;
}

.event-two__points {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.event-two__points li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  border: 1px solid var(--gsm-bdr-color);
  background-color: var(--white);
  max-width: 260px;
  width: 100%;
  border-radius: 20px;
  padding: 20px 20px 20px;
}

.event-two__points-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.event-two__points-icon span {
  position: relative;
  display: inline-block;
  font-size: 40px;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.event-two__points li:hover .event-two__points-icon span {
  transform: scale(0.9);
}

.event-two__points-text-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
}

.event-two__points-count {
  position: relative;
  display: flex;
  align-items: center;
}

.event-two__points-count h3 {
  font-size: 15px;
  line-height: 15px !important;
  color: var(--black);
  font-weight: 700;
  letter-spacing: 1.4px;
  font-family: var(--gsm-font) !important;
}

.event-two__points-count-plus {
  font-size: 15px;
  line-height: 15px;
  color: var(--black);
  font-weight: 700;
  letter-spacing: 1.4px;
  font-family: var(--gsm-font);
}

.event-two__points-text {
  font-size: 15px;
  line-height: 15px;
  color: var(--black);
  font-weight: 700;
  letter-spacing: 1.4px;
  font-family: var(--gsm-font);
}

.event-two__text {
  margin-top: 30px;
  margin-bottom: 30px;
}

.event-two__btn-box {
  position: relative;
  display: block;
}

/*--------------------------------------------------------------
# Countdown One
--------------------------------------------------------------*/
.countdown-one {
  position: relative;
  display: block;
  margin-top: -160px;
  z-index: 2;
}

.countdown-one__inner {
  position: relative;
  display: block;
  /* background: var(--light-back); */
  background: var(--white);
  border-radius: 20px;
  padding: 70px 80px;
  z-index: 1;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.countdown-one__top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 46px;
}

.countdown-one__title {
  position: relative;
  display: block;
  font-size: 48px;
  line-height: 55px;
  font-weight: 700;
}

.countdown-one__btn-box {
  position: relative;
  display: block;
}

.countdown-one__btn {
  background: transparent;
  border: 1px solid var(--white);
  padding: 16px 30px 16px;
}

.countdown-one__btn:hover {
  color: var(--gsm-base);
}

.countdown-one__btn:after {
  background: var(--white);
}

.countdown-one__bottom {
  position: relative;
  display: block;
}

.countdown-one__countdown-timer-box {
  position: relative;
  display: block;
}

.countdown-one__countdown-timer-box .time-countdown-one {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}

.countdown-one__countdown-timer-box li {
  position: relative;
  display: block;
  text-align: center;
  margin-bottom: 30px;
  z-index: 2;
}

.countdown-one__countdown-timer-box li .box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 116px;
  width: 206px;
  border: 2px solid rgba(var(--white-rgb), 0.2);
  margin: 0 auto 0;
  border-radius: 20px;
  text-align: center;
}

.countdown-one__countdown-timer-box li span.days,
.countdown-one__countdown-timer-box li span.hours,
.countdown-one__countdown-timer-box li span.minutes,
.countdown-one__countdown-timer-box li span.seconds {
  position: relative;
  display: block;
  color: var(--white);
  font-size: 48px;
  line-height: 48px;
  text-align: center;
  font-weight: 700;
  font-family: var(--gsm-font);
  margin: 0 auto;
}

.countdown-one__countdown-timer-box li span.timeRef {
  position: relative;
  display: block;
  color: var(--white);
  font-size: 15px;
  line-height: 15px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-align: center;
  font-family: var(--gsm-font);
  text-transform: capitalize;
  margin-top: 8px;
}

/*--------------------------------------------------------------
# Brand Two
--------------------------------------------------------------*/
.brand-two {
  position: relative;
  display: block;
  padding: 90px 0 118px;
  z-index: 1;
}

.brand-two__inner {
  position: relative;
  display: block;
}

.brand-two .swiper-slide {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.brand-two .swiper-slide__img {
  position: relative;
  display: block;
  opacity: 0.5;
  max-width: 137px;
  width: 100%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.brand-two .swiper-slide:hover .swiper-slide__img {
  opacity: 1;
}

.brand-two .swiper-slide__img img {
  -webkit-transition: 500ms;
  transition: 500ms;
  width: 100%;
}

/*--------------------------------------------------------------
# Conference One
--------------------------------------------------------------*/
.conference-one {
  position: relative;
  display: block;
  padding: 0 0 120px;
  z-index: 1;
}

.conference-one__main-tab-box {
  position: relative;
  display: block;
}

.conference-one__main-tab-box .tab-buttons {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: max-content;
  width: 100%;
  margin: 0 auto 0;
  left: 0;
  right: 0;
  top: 437px;
  z-index: 5;
}

.conference-one__main-tab-box .tab-buttons:before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  height: 1px;
  background-color: var(--gsm-bdr-color);
  z-index: -1;
}

.conference-one__main-tab-box .tab-buttons .tab-btn + .tab-btn {
  margin-left: 55px;
}

.conference-one__main-tab-box .tab-buttons .tab-btn {
  position: relative;
  cursor: pointer;
  text-align: center;
  padding: 12px 29px 11px;
  border: 1px solid var(--gsm-bdr-color);
  background-color: var(--white);
  border-radius: 32px;
  overflow: hidden;
  z-index: 1;
}

.conference-one__main-tab-box .tab-buttons .tab-btn:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0%;
  content: "";
  background: var(--primary-gradient);
  border-radius: 32px;
  transition: all 0.3s ease;
  z-index: -1;
}

.conference-one__main-tab-box .tab-buttons .tab-btn.active-btn:before {
  height: 100%;
}

.conference-one__main-tab-box .tab-buttons .tab-btn p {
  position: relative;
  display: block;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  font-size: 15px;
  line-height: 15px;
  color: var(--black);
  font-weight: 700;
  letter-spacing: 1.6px;
  transition: all 0.3s ease;
  z-index: 1;
}

.conference-one__main-tab-box .tab-buttons .tab-btn.active-btn p {
  color: var(--white);
}

.conference-one__main-tab-box .tabs-content {
  position: relative;
  display: block;
  z-index: 1;
}

.conference-one__main-tab-box .tabs-content .tab {
  position: relative;
  display: none;
  -webkit-transform: translateY(35px);
  -ms-transform: translateY(35px);
  transform: translateY(35px);
  -webkit-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  transition: all 600ms ease;
  z-index: 10;
}

.conference-one__main-tab-box .tabs-content .tab.active-tab {
  display: block;
  margin-top: 0px;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}

.conference-one__tab-content-box {
  position: relative;
  display: block;
}

.conference-one__img {
  position: relative;
  display: block;
  border-radius: 20px;
  overflow: hidden;
  z-index: 1;
}

.conference-one__img img {
  width: 100%;
  border-radius: 20px;
}

.conference-one__tab-content-bottom {
  position: relative;
  display: block;
  margin-top: 116px;
}

.conference-one__tab-content-bottom-left {
  position: relative;
  display: block;
}

.conference-one__tab-content-title {
  font-size: 30px;
  color: var(--black);
  font-weight: 700;
  line-height: 40px;
  margin-bottom: 25px;
}

.conference-one__address {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.conference-one__address li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.conference-one__address li .icon {
  position: relative;
  display: flex;
  align-items: center;
}

.conference-one__address li .icon span {
  position: relative;
  display: inline-block;
  font-size: 14px;
  color: var(--black);
}

.conference-one__tab-content-text {
  position: relative;
  display: block;
  margin-left: 125px;
}

/*--------------------------------------------------------------
# Gallery Two
--------------------------------------------------------------*/
.gallery-two {
  position: relative;
  display: block;
  background-color: var(--gsm-extra);
  padding: 120px 0 120px;
  z-index: 1;
}

.gallery-two__top {
  position: relative;
  display: block;
}

.gallery-two__top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.gallery-two__top-inner .section-title {
  margin-bottom: 0px;
}

.gallery-two__nav {
  position: relative;
  display: flex;
  align-items: center;
}

.gallery-two__nav .swiper-button-prev1,
.gallery-two__nav .swiper-button-next1 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  font-size: 20px;
  margin: 0px 0px;
  text-align: center;
  transition: all 500ms ease;
  z-index: 100;
}

.gallery-two__nav .swiper-button-prev1 i,
.gallery-two__nav .swiper-button-next1 i {
  color: var(--black);
  font-size: 16px;
  transition: all 500ms ease;
}

.gallery-two__nav .swiper-button-prev1:hover i,
.gallery-two__nav .swiper-button-next1:hover i {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.gallery-two__nav .swiper-button-prev1:before,
.gallery-two__nav .swiper-button-next1:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  border: 2px solid var(--gsm-bdr-color);
  border-radius: 50%;
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.gallery-two__nav .swiper-button-prev1:hover:before,
.gallery-two__nav .swiper-button-next1:hover:before {
  opacity: 0;
  visibility: hidden;
}

.gallery-two__nav .swiper-button-prev1:after,
.gallery-two__nav .swiper-button-next1:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  border-radius: 50%;
  border: 2px solid transparent;
  background: linear-gradient(-90deg, #006be5, #4a0ab4) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}

.gallery-two__nav .swiper-button-prev1:hover:after,
.gallery-two__nav .swiper-button-next1:hover:after {
  opacity: 1;
  visibility: visible;
}

.gallery-two__nav .swiper-button-next1 {
  margin-right: 15px;
}

.gallery-two__bottom-forgot {
  img {
    height: 500px !important;
    width: 100%;
  }
}

.gallery-two__bottom {
  position: relative;
  display: block;
  height: 100%;

  div,
  img {
    height: 100%;
    width: 100%;
  }
}

.gallery-two__bottom .container {
  max-width: 1840px;
}

.gallery-two__carousel-box {
  position: relative;
  display: block;
}

.gallery-two__single {
  position: relative;
  display: block;
}

.gallery-two__img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 20px;
  z-index: 1;
}

.gallery-two__img::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--black);
  opacity: 0;
  transition: background-color 0.5s ease;
  transition: all 0.5s ease;
  z-index: 1;
}

.gallery-two__single:hover .gallery-two__img::before {
  opacity: 0.4;
}

.gallery-two__img img {
  width: 100%;
  border-radius: 20px;
  transform: scale3d(1, 1, 1);
  transition: transform 1s ease-in-out;
}

.gallery-two__single:hover .gallery-two__img img {
  transform: scale(1.05) rotate(0deg);
}

.gallery-two__content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background-color: var(--white);
  border-radius: 20px;
  padding: 28px 30px 18px;
  transform: translateY(30%);
  transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease;
  visibility: hidden;
  opacity: 0;
  z-index: 2;
}

.gallery-two__single:hover .gallery-two__content {
  transform: translateY(0%);
  visibility: visible;
  opacity: 1;
  transition-delay: 500ms;
}

.gallery-two__sub-title-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.gallery-two__sub-title-shape {
  position: relative;
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-gradient);
}

.gallery-two__sub-title {
  font-size: 16px;
  line-height: 16px;
  color: var(--gsm-gray);
}

.gallery-two__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
}

.gallery-two__title a {
  color: var(--black);
}

.gallery-two__title a:hover {
  color: var(--gsm-base);
}

/*--------------------------------------------------------------
# Testimonial One
--------------------------------------------------------------*/
.testimonial-one {
  position: relative;
  display: block;
  background-color: var(--light-gray);
  padding: 120px 0 120px;
  z-index: 1;
}

.testimonial-one .section-title__title--two {
  color: var(--black);
}

.testimonial-one__carousel-box {
  position: relative;
  display: block;
}

.testimonial-one__single {
  position: relative;
  display: block;
  background-color: var(--white);
  border-radius: 20px;
  padding: 40px 40px 40px;
  z-index: 1;
}

.testimonial-one__client-info-and-review {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.testimonial-one__client-info {
  position: relative;
  display: flex;
  align-items: center;
}

.testimonial-one__client-img {
  position: relative;
  display: block;
  width: 60px;
  height: 60px;
  overflow: hidden;
  z-index: 1;
  border-radius: 50px;
}

.testimonial-one__client-img img {
  width: 100%;
  height: 100%;
}

.testimonial-one__client-content {
  position: relative;
  display: block;
  margin-left: 15px;
}

.testimonial-one__client-name {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  margin-bottom: 10px;
}

.testimonial-one__client-name a {
  color: var(--black);
}

.testimonial-one__client-name a:hover {
  color: var(--primary);
}

.testimonial-one__sub-title {
  color: var(--dark-gray);
}

.testimonial-one__review {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.testimonial-one__review span {
  position: relative;
  display: inline-block;
  font-size: 20px;
  color: #f3dc65;
}

.testimonial-one__review span.clr-start {
  color: #cccccc;
}

.testimonial-one__text {
  font-size: 20px;
  line-height: 30px;
  color: var(--dark);
  margin-top: 30px;
  margin-bottom: 30px;
}

.testimonial-one__quote {
  position: relative;
  display: flex;
  align-items: center;
}

.testimonial-one__quote span {
  position: relative;
  display: inline-block;
  font-size: 45px;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.testimonial-one__nav {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: space-between;
  top: 50%;
  left: -115px;
  right: -115px;
  transform: translateY(-50%);
  line-height: 0;
  height: 0;
  z-index: 100;
}

.testimonial-one__nav .swiper-button-prev1,
.testimonial-one__nav .swiper-button-next1 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  font-size: 20px;
  margin: 0px 0px;
  text-align: center;
  transition: all 500ms ease;
  z-index: 100;
}

.testimonial-one__nav .swiper-button-prev1 i,
.testimonial-one__nav .swiper-button-next1 i {
  color: var(--dark-gray);
  font-size: 16px;
  transition: all 500ms ease;
}

.testimonial-one__nav .swiper-button-prev1:hover i,
.testimonial-one__nav .swiper-button-next1:hover i {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.testimonial-one__nav .swiper-button-prev1:before,
.testimonial-one__nav .swiper-button-next1:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  border: 2px solid var(--dark-gray);
  border-radius: 50%;
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.testimonial-one__nav .swiper-button-prev1:hover:before,
.testimonial-one__nav .swiper-button-next1:hover:before {
  opacity: 0;
  visibility: hidden;
}

.testimonial-one__nav .swiper-button-prev1:after,
.testimonial-one__nav .swiper-button-next1:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  border-radius: 50%;
  border: 2px solid transparent;
  background: linear-gradient(-90deg, #006be5, #4a0ab4) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}

.testimonial-one__nav .swiper-button-prev1:hover:after,
.testimonial-one__nav .swiper-button-next1:hover:after {
  opacity: 1;
  visibility: visible;
}

/*--------------------------------------------------------------
# Video One
--------------------------------------------------------------*/
.video-one {
  position: relative;
  display: block;

  z-index: 1;
}

.video-one__inner {
  position: relative;
  display: block;
}

.video-one__img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 20px;
}

.video-one__img img {
  width: 100%;
  border-radius: 20px;
}

.video-one__video-link {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.video-one__video-icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 110px;
  height: 110px;
  line-height: 110px;
  text-align: center;
  font-size: 30px;
  color: var(--white);
  background-color: rgba(var(--white-rgb), 0.5);
  border-radius: 50%;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  z-index: 1;
}

.video-one__video-icon:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  background: var(--primary-gradient);
  opacity: 0.4;
  border-radius: 50%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: -1;
}

.video-one__video-icon:after {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border-radius: 50%;
  background: var(--primary-gradient);
  border-radius: 50%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: -1;
}

.video-one__video-icon:hover {
  color: var(--white);
}

.video-one__video-link .ripple,
.video-one__video-icon .ripple:before,
.video-one__video-icon .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -ms-box-shadow: 0 0 0 0 rgba(var(--gsm-base-rgb), 0.6);
  -o-box-shadow: 0 0 0 0 rgba(var(--gsm-base-rgb), 0.6);
  -webkit-box-shadow: 0 0 0 0 rgba(var(--gsm-base-rgb), 0.6);
  box-shadow: 0 0 0 0 rgba(var(--gsm-base-rgb), 0.6);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
}

.video-one__video-icon .ripple:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.video-one__video-icon .ripple:after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

/*--------------------------------------------------------------
# Team Two
--------------------------------------------------------------*/
.team-two {
  position: relative;
  display: block;
  padding: 120px 0 90px;
  z-index: 1;
}

.team-two__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.team-two__img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 20px;
  border-top-left-radius: 0;
  margin-left: 107px;
  z-index: 1;
}

.team-two__img::after {
  background: hsla(0, 0%, 100%, 0.5);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  opacity: 1;
  z-index: 9;
  pointer-events: none;
}

.team-two__single:hover .team-two__img::after {
  height: 100%;
  opacity: 0;
  transition: all 0.6s linear;
}

.team-two__img img {
  width: 100%;
  border-radius: 20px;
  border-top-left-radius: 0;
  object-fit: cover;
  transition: all 1s ease-in-out;
}

.team-two__single:hover .team-two__img img {
  transform: scale(1.1);
}

.team-two__content-box {
  position: relative;
  display: block;
  border: 1px solid var(--gsm-bdr-color);
  border-radius: 20px;
  margin-top: -250px;
  margin-right: 80px;
  padding: 290px 30px 29px;
}

.team-two__sub-title-box {
  position: absolute;
  top: 105px;
  left: -35px;
  transform: rotate(-90deg);
}

.team-two__sub-title-box h5 {
  font-size: 15px;
  line-height: 15px;
  letter-spacing: 1.4px;
  color: rgba(var(--black-rgb), 0.4);
  text-transform: uppercase;
}

.team-two__content {
  position: relative;
  display: block;
}

.team-two__name {
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
  text-transform: capitalize;
}

.team-two__name a {
  color: var(--black);
}

.team-two__name a:hover {
  color: var(--gsm-base);
}

.team-two__text {
  margin-top: 14px;
  margin-bottom: 17px;
}

.team-two__social {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.team-two__social a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  width: 34px;
  border-radius: 50%;
  font-size: 14px;
  color: var(--black);
  overflow: hidden;
  z-index: 1;
}

.team-two__social a:hover {
  color: var(--white);
}

.team-two__social a:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border: 1px solid var(--gsm-bdr-color);
  border-radius: 50%;
  z-index: -1;
}

.team-two__social a:after {
  content: "";
  position: absolute;
  height: 0%;
  width: 0%;
  top: 50%;
  left: 50%;
  background: var(--primary-gradient);
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
  z-index: -1;
}

.team-two__social a:hover:after {
  width: 100%;
  height: 100%;
  top: 0%;
  left: 0%;
}

/*--------------------------------------------------------------
# Pricing One
--------------------------------------------------------------*/
.pricing-one {
  position: relative;
  display: block;
  padding: 70px 0 90px;
  z-index: 1;
}

.pricing-one__inner {
  position: relative;
  display: block;
}

.pricing-one__inner .section-title {
  position: absolute;
  margin-bottom: 0;
  top: -70px;
  left: 0;
}

.pricing-one__main-tab-box {
  position: relative;
  display: block;
}

.pricing-one__main-tab-box .tab-buttons {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 60px;
}

.pricing-one__main-tab-box .tab-buttons .tab-btn {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 130px;
  width: 100%;
}

.pricing-one__main-tab-box .tab-buttons .tab-btn + .tab-btn {
  margin-left: 0px;
}

.pricing-one__main-tab-box .tab-buttons .tab-btn span {
  position: relative;
  display: block;
  text-align: center;
  font-size: 16px;
  line-height: 16px;
  color: var(--black);
  background-color: var(--white);
  padding: 19px 35px 19px;
  font-weight: 400;
  cursor: pointer;
  overflow: hidden;
  border-radius: 27px;
  transition: all 0.5s linear;
  z-index: 1;
}

.pricing-one__main-tab-box .tab-buttons .tab-btn.active-btn span {
  color: var(--white);
}

.pricing-one__main-tab-box .tab-buttons .tab-btn:nth-child(1) span {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.pricing-one__main-tab-box .tab-buttons .tab-btn:nth-child(2) span {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.pricing-one__main-tab-box .tab-buttons .tab-btn span:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 0;
  background: var(--primary-gradient);
  transition: all 0.5s linear;
  z-index: -1;
}

.pricing-one__main-tab-box .tab-buttons .tab-btn.active-btn span:before {
  height: 100%;
}

.pricing-one__main-tab-box .tab-buttons .tab-btn:nth-child(1) span:before {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.pricing-one__main-tab-box .tab-buttons .tab-btn:nth-child(2) span:before {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.pricing-one__main-tab-box .tab-buttons .tab-btn span:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid var(--gsm-bdr-color);
  border-radius: 27px;
  z-index: -1;
}

.pricing-one__main-tab-box .tab-buttons .tab-btn:nth-child(1) span:after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.pricing-one__main-tab-box .tab-buttons .tab-btn:nth-child(2) span:after {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-left: 0px;
}

.pricing-one__main-tab-box .tabs-content {
  position: relative;
  display: block;
}

.pricing-one__main-tab-box .tabs-content .tab {
  position: relative;
  display: none;
  -webkit-transform: translateY(35px);
  -ms-transform: translateY(35px);
  transform: translateY(35px);
  -webkit-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  transition: all 600ms ease;
  z-index: 10;
}

.pricing-one__main-tab-box .tabs-content .tab.active-tab {
  display: block;
  margin-top: 0px;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}

.pricing-one__tab-content-box {
  position: relative;
  display: block;
}

.pricing-one__single {
  position: relative;
  display: block;
  border-radius: 20px;
  background-color: var(--white);
  box-shadow: 0px 4.4px 20px -1px rgba(19, 16, 34, 0.05);
  margin-bottom: 30px;
  z-index: 1;
}

.pricing-one__single-inner {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 20px;
  background-color: var(--white);
  padding: 0 0 45px;
  z-index: 1;
}

.pricing-one__price-box {
  position: relative;
  display: block;
  text-align: center;
  padding: 59px 0 94px;
  z-index: 1;
}

.pricing-one__shape-1 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
}

.pricing-one__price {
  font-size: 48px;
  line-height: 48px;
  font-weight: 700;
  margin-bottom: 26px;
}

.pricing-one__price span {
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  font-family: var(--gsm-font);
  position: relative;
  display: inline-block;
  margin-left: -4px;
}

.pricing-one__pack-name {
  font-size: 30px;
  font-weight: 700;
  line-height: 36px;
  color: var(--white);
  font-family: var(--gsm-font);
}

.pricing-one__points {
  position: relative;
  display: block;
  padding: 33px 40px 33px;
}

.pricing-one__points li {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.pricing-one__points li .icon {
  position: relative;
  display: flex;
  align-items: center;
}

.pricing-one__points li .icon span {
  position: relative;
  display: inline-block;
  color: #cccccc;
  font-size: 14px;
}

.pricing-one__points li .text {
  position: relative;
  display: block;
}

.pricing-one__points li + li {
  margin-top: 15px;
}

.pricing-one__btn-box {
  position: relative;
  display: block;
  padding: 0 40px 0;
}

.pricing-one__btn {
  background: transparent;
  border: 1px solid var(--gsm-bdr-color);
  padding: 16px 30px 16px;
  width: 100%;
  color: var(--black);
  justify-content: center;
}

/*--------------------------------------------------------------
# Blog Two
--------------------------------------------------------------*/
.blog-two {
  position: relative;
  display: block;
  padding: 0 0 90px;
  z-index: 1;
}

.blog-two__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.blog-two__img {
  position: relative;
  display: block;
  overflow: hidden;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  z-index: 1;
}

.blog-two__img img {
  width: 100%;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  transform: scale3d(1, 1, 1);
  transition: transform 1s ease-in-out;
}

.blog-two__single:hover .blog-two__img img {
  transform: scale(1.05) rotate(0deg);
}

.blog-two__hover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  transform: scale(1, 0);
  transition: transform 500ms ease;
  transform-origin: bottom center;
}

.blog-two__single:hover .blog-two__hover {
  transform-origin: top center;
  transform: scale(1, 1);
}

.blog-two__hover > a {
  position: relative;
}

.blog-two__hover-icon-1 {
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(var(--white-rgb), 0.2);
  transition: all 0.5s ease-in-out;
}

.blog-two__hover-icon-1:hover {
  background-color: var(--black);
}

.blog-two__hover-icon-1 i {
  font-size: 30px;
  color: var(--white);
}

.blog-two__hover-icon-2 {
  width: 30px;
  height: 30px;
  display: block;
  position: relative;
}

.blog-two__hover-icon-2::after,
.blog-two__hover-icon-2::before {
  content: "";
  width: 3px;
  height: 100%;
  background-color: var(--white);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.blog-two__hover-icon-2::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.blog-two__date {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--secondary);
  border-radius: 0px 20px;
  padding: 12.5px 20px;
  z-index: 2;
}

.blog-two__date p {
  font-size: 15px;
  line-height: 15px;
  color: var(--white);
  letter-spacing: 0.2px;
  /* font-weight: 700; */
  margin-top: 0;
}

.blog-two__content {
  position: relative;
  display: block;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  border: 1px solid var(--gsm-bdr-color);
  border-top: 0;
  padding: 35px 40px 40px;
  background-color: var(--white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  text-align: center;
}

.blog-two__single:hover .blog-two__content {
  border: 1px solid transparent;
  border-top: 0;
  box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.05);
}

.blog-two__meta {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
}

.blog-two__meta li {
  position: relative;
  display: block;
}

.blog-two__meta li a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 800;
  color: var(--dark);
}

.blog-two__meta li a span {
  color: var(--dark);
}

.blog-two__meta li a:hover {
  color: var(--secondary);
}

.blog-two__title {
  font-size: 22px;
  font-weight: 700;
  line-height: 34px;
  margin-top: 12px;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog-two__title a {
  color: var(--black);
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 1;
  text-overflow: ellipsis;
  display: -webkit-box;
  height: auto;
  /* width: 450px; */
  overflow: hidden;
}

.blog-two__content .schedule-two__text {
  width: auto;
  margin-top: 0px;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  display: -webkit-box;
  height: auto;
  /* width: 485px; */
  overflow: hidden;
}

.blog-two__title a:hover {
  color: var(--gsm-base);
}

.blog-two__btn {
  background: var(--primary-gradient);
  border: 1px solid var(--primary-gradient);
  padding: 16px 30px 16px;
  color: var(--white);
}

.blog-two__btn:hover {
  background: var(--primary-gradient_hover);
  border: 1px solid var(--primary-gradient_hover);
}

/*--------------------------------------------------------------
# Site Footer Two
--------------------------------------------------------------*/
.site-footer-two {
  position: relative;
  display: block;
  background-color: var(--light-gray);
  padding: 100px 0 0;
  z-index: 1;
}

.site-footer-two__top {
  position: relative;
  display: block;
}

.site-footer-two__top-inner {
  position: relative;
  display: block;
}

.site-footer-two__top-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    90.1deg,
    #f24617 -3.39%,
    rgba(242, 70, 23, 0.17) -3.38%,
    rgba(140, 40, 13, 0.1) 99.91%
  );
  border-radius: 10px;
  font-size: 60px;
  color: var(--white);
  font-weight: 800;
  font-family: var(--gsm-font);
  text-transform: capitalize;
  line-height: 60px;
  padding: 25px 20px 25px;
  max-width: 850px;
  width: 100%;
  margin: 0 auto 0;
}

.site-footer-two__top-content:hover {
  color: var(--white);
}

.site-footer-two__top-content span {
  color: transparent;
  -webkit-text-stroke: 1px #ffffff;
  position: relative;
  display: block;
  margin-left: 15px;
  text-transform: uppercase;
  font-weight: 700;
}

.site-footer-two__top-content i {
  position: relative;
  display: inline-block;
  font-size: 55px;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-weight: 800;
  margin-left: 10px;
}

.site-footer-two__middle {
  position: relative;
  display: block;
  padding: 0px 0px 60px;
}

.site-footer-two__middle-inner {
  position: relative;
  display: block;
}

.footer-widget-two__about {
  position: relative;
  display: block;
}

.site-footer-two__logo {
  position: relative;
  display: block;
}

.footer-widget-two__about-text {
  color: var(--dark-gray);
  margin-top: 24px;
  margin-bottom: 30px;
}

.site-footer-two__social {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.site-footer-two__social a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  width: 35px;
  background: var(--primary-gradient);
  font-size: 14px;
  color: var(--white);
  border-radius: 50%;
  overflow: hidden;
  z-index: 1;
}

.site-footer-two__social a:after {
  content: "";
  position: absolute;
  height: 0%;
  width: 0%;
  top: 50%;
  left: 50%;
  background: var(--primary-gradient_hover);
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
  z-index: -1;
}

.site-footer-two__social a:hover:after {
  width: 100%;
  height: 100%;
  top: 0%;
  left: 0%;
}

.download-app {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
}

.download-app img {
  width: 150px;
  cursor: pointer;
}

.footer-widget-two__newsletter {
  position: relative;
  display: block;
}

.footer-widget-two__newsletter-text {
  color: var(--dark-gray);
}

.footer-widget-two__newsletter-form {
  position: relative;
  display: block;
  margin-top: 27px;
}

.footer-widget-two__newsletter-form-input-box {
  position: relative;
  display: block;
}

.footer-widget-two__newsletter-form-input-box input[type="email"] {
  font-size: 16px;
  height: 58px;
  width: 100%;
  background-color: var(--white);
  outline: none;
  color: var(--dark-gray);
  font-weight: 500;
  border: 1px solid rgba(var(--gsm-bdr-color-rgb), 0.2);
  border-radius: 10px;
  padding-right: 64px;
  padding-left: 20px;
}

.footer-widget-two__newsletter-btn {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: none;
  width: 55px;
  background: var(--primary-gradient);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--white);
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.site-footer-two .footer-widget__contact {
  margin-left: 0;
}

.site-footer-two__bottom {
  position: relative;
  display: block;
}

.site-footer-two__bottom-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  background-color: var(--gray);
  padding: 29.5px 30px 29.5px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.site-footer-two__bottom-text {
  color: var(--black);
}

.site-footer-two__bottom-menu {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.site-footer-two__bottom-menu li {
  position: relative;
  display: block;
}

.site-footer-two__bottom-menu li a {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--black);
}

.site-footer-two__bottom-menu li a:hover {
  color: var(--secondary);
}

/*--------------------------------------------------------------
# Feature One
--------------------------------------------------------------*/
.feature-one {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 120px 0 60px;
  z-index: 1;
}

.feature-one__single {
  position: relative;
  display: flex;
  margin-bottom: 52px;
}

.feature-one__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  max-width: 80px;
  width: 100%;
  background-color: var(--gsm-base);
  border-radius: 50%;
  z-index: 1;
}

.feature-one__icon i {
  position: relative;
  display: inline-block;
  font-size: 40px;
  color: var(--white);
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.feature-one__single:hover .feature-one__icon i {
  transform: scale(0.9);
}

.feature-one__content {
  position: relative;
  display: block;
  margin-left: 20px;
  margin-top: -2px;
}

.feature-one__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
  margin-bottom: 20px;
}

.feature-one__title a {
  color: var(--white);
}

.feature-one__title a:hover {
  color: var(--gsm-base);
}

/*--------------------------------------------------------------
# Ticket One
--------------------------------------------------------------*/
.ticket-one {
  position: relative;
  display: block;
  padding: 120px 0 90px;
  z-index: 1;
}

.ticket-one .row {
  --bs-gutter-x: 50px;
}

.ticket-one__single {
  position: relative;
  display: block;
  background-color: #0e0a17;
  padding: 30px 30px 30px;
  margin-bottom: 30px;
}

.ticket-one__title-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.ticket-one__title-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.ticket-one__title-icon i {
  position: relative;
  display: inline-block;
  font-size: 20px;
  color: var(--white);
}

.ticket-one__title {
  font-size: 20px;
  line-height: 20px;
  text-transform: uppercase;
}

.ticket-one__price-box {
  position: relative;
  display: inline-block;
  background: var(--primary-gradient_hover);
  padding: 18px 30px 18px;
  border-top-right-radius: 37px;
  border-bottom-right-radius: 37px;
  margin-left: -30px;
  margin-top: 27px;
  margin-bottom: 25px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.ticket-one__single:hover .ticket-one__price-box {
  padding-right: 80px;
}

.ticket-one__price-box h3 {
  font-size: 38px;
  line-height: 38px;
  font-weight: 700;
}

.ticket-one__points {
  position: relative;
  display: block;
}

.ticket-one__points li {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: 1px dashed rgba(var(--white-rgb), 0.1);
  margin-bottom: 10px;
  padding-bottom: 10px;
}

.ticket-one__points li:last-child {
  border-bottom: 0;
}

.ticket-one__points li .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 16px;
  width: 16px;
  border: 1px solid var(--gsm-base);
  border-radius: 50%;
  font-size: 8px;
  color: var(--gsm-base);
}

.ticket-one__points li .text {
  position: relative;
  display: block;
  margin-left: 15px;
}

.ticket-one__btn-box {
  position: relative;
  display: block;
}

.ticket-one__btn {
  background: transparent;
  border: 1px solid rgba(var(--gsm-bdr-color-rgb), 0.2);
  padding: 16px 30px 16px;
}

/*--------------------------------------------------------------
# Schedule Three
--------------------------------------------------------------*/
.schedule-three {
  position: relative;
  display: block;
  padding: 120px 0 90px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.schedule-three__top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.schedule-three__top .section-title {
  margin-bottom: 0;
}

.schedule-three__time-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.schedule-three__time-info-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 155px;
  width: 155px;
  border-radius: 5px;
  background-color: #0e0a17;
  border: 2px dashed rgba(255, 255, 255, 0.1);
  text-align: center;
}

.schedule-three__time-info-box:nth-child(1) {
  margin-right: -40px;
  margin-top: 80px;
}

.schedule-three__time-info-box:nth-child(2) {
  margin-right: -40px;
  margin-top: -80px;
}

.schedule-three__time-info-box:nth-child(3) {
  margin-top: 80px;
}

.schedule-three__time-info-box-content {
  position: relative;
  display: block;
}

.schedule-three__time-info-box-content h4 {
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
  text-transform: uppercase;
}

.schedule-three__time-info-box-content p {
  color: var(--gsm-base);
  font-weight: 700;
  margin-top: 8px;
  line-height: 16px;
  text-transform: uppercase;
}

.schedule-three__bottom {
  position: relative;
  display: block;
}

.schedule-three__routine-details {
  position: relative;
  display: grid;
  grid-template-columns: 55% 23% 22%;
  align-items: center;
  justify-content: center;
  background-color: #0e0a17;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 30px;
  z-index: 1;
}

.schedule-three__routine-details-description {
  position: relative;
  display: block;
  padding: 25px 50px;
}

.schedule-three__routine-details-description-title {
  font-size: 22px;
  line-height: 32px;
  text-transform: capitalize;
  font-weight: 600;
}

.schedule-three__routine-details-description-title a {
  color: var(--white);
}

.schedule-three__routine-details-description-title a:hover {
  color: var(--gsm-base);
}

.schedule-three__routine-details-description-text {
  margin-top: 15px;
  margin-bottom: 15px;
}

.schedule-three__routine-details-description-btn {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 16px;
}

.schedule-three__routine-details-description-btn:hover {
  color: var(--white);
}

.schedule-three__routine-details-img-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 55px 0;
}

.schedule-three__routine-details-img-single {
  position: relative;
  display: block;
  width: 80px;
  border-radius: 50%;
  overflow: hidden;
}

.schedule-three__routine-details-img-single img {
  width: 100%;
}

.schedule-three__routine-time-detail {
  position: relative;
  display: block;
  text-align: center;
  background-color: rgba(var(--gsm-base-rgb), 1);
  padding: 74.5px 0;
}

.schedule-three__routine-time-detail p {
  font-weight: 700;
  font-size: 14px;
  line-height: 14px;
}

.schedule-three__routine-time-detail h6 {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 16px;
  margin-top: 11px;
}

.schedule-three__routine-details:nth-child(2)
  .schedule-three__routine-time-detail {
  background-color: rgba(var(--white-rgb), 0.05);
}

.schedule-three__routine-details:nth-child(4)
  .schedule-three__routine-time-detail {
  background-color: rgba(var(--white-rgb), 0.05);
}

/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.page-header {
  position: relative;
  display: block;
  padding: 90px 0 90px;
  overflow: hidden;
  z-index: 1;
}

.page-header__shape-1 {
  position: absolute;
  top: 30px;
  left: -30px;
  z-index: -1;
}

.page-header__shape-1 img {
  width: auto;
  filter: grayscale(1);
  opacity: 0.2;
}

.page-header__shape-2 {
  position: absolute;
  bottom: 0;
  right: -30px;
  z-index: -1;
}

.page-header__shape-2 img {
  width: auto;
  filter: grayscale(1);
  opacity: 0.2;
}

.page-header__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.page-header__bg::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.87) 24.4%,
    rgba(102, 102, 102, 0) 100%
  );
}

.page-header__inner {
  position: relative;
  display: block;
  text-align: center;
}

.page-header__inner h2 {
  font-size: 60px;
  font-weight: 700;
  line-height: 70px;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.thm-breadcrumb__box {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.thm-breadcrumb {
  position: relative;
  display: inline-block;
}

.thm-breadcrumb li {
  position: relative;
  display: inline-block;
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  font-family: var(--gsm-font);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.thm-breadcrumb li + li {
  margin-left: 13px;
}

.thm-breadcrumb li span {
  font-size: 13px;
}

.thm-breadcrumb li a {
  position: relative;
  display: inline-block;
  color: var(--white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-size: 24px;
}

.thm-breadcrumb li:hover a {
  color: var(--gsm-base);
}

/*--------------------------------------------------------------
#  Contact One
--------------------------------------------------------------*/
.contact-one {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  z-index: 1;
}

.contact-one .container {
  max-width: 1030px;
}

.contact-one__inner {
  position: relative;
  display: block;
  background-color: #0e0a17;
  text-align: center;
  padding: 58px 60px 70px;
}

.contact-one__title {
  font-size: 48px;
  font-weight: 700;
  line-height: 58px;
  text-transform: capitalize;
}

.contact-one__text {
  line-height: 24px;
  color: var(--white);
  margin-top: 11px;
  margin-bottom: 40px;
}

.contact-one__form {
  position: relative;
  display: block;
}

.contact-one__input-box {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.contact-one__input-box input[type="text"],
.contact-one__input-box input[type="password"],
.contact-one__input-box input[type="email"],
.contact-one__input-box input[type="date"],
.contact-one__input-box input[type="tel"],
.contact-one__input-box input[type="select"] {
  height: 54px;
  width: 100%;
  background-color: transparent;
  border: 1px solid rgba(var(--gsm-bdr-color-rgb), 0.2);
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  font-size: 16px;
  color: var(--white);
  display: block;
  font-weight: 400;
  border-radius: 27px;
}

.contact-one__input-box .select-box {
  width: 100%;
}

.contact-one__input-box .nice-select {
  height: 54px !important;
  /* width: 100%; */
  background-color: transparent;
  border: 1px solid rgba(var(--gsm-bdr-color-rgb), 0.2);
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  font-size: 16px;
  color: var(--white);
  display: block;
  font-weight: 400;
  border-radius: 27px;
  line-height: 54px;
  float: none;
}

.contact-one__input-box .nice-select:after {
  position: absolute;
  top: 21px;
  right: 20px;
  width: 8px;
  height: 8px;
  border-bottom: 2px solid var(--gsm-base);
  border-right: 2px solid var(--gsm-base);
  margin-top: 0px;
  z-index: 10;
}

.contact-one__input-box .nice-select .option {
  color: var(--white);
}

.contact-one__input-box textarea {
  position: relative;
  height: 93px;
  width: 100%;
  background-color: transparent;
  border: 1px solid rgba(var(--gsm-bdr-color-rgb), 0.2);
  padding-top: 10px;
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  font-size: 14px;
  color: var(--white);
  display: block;
  font-weight: 400;
  border-radius: 30px;
  margin-bottom: 0px;
}

.contact-one__input-box.text-message-box {
  height: 120px;
}

.contact-one__btn-box {
  position: relative;
  display: block;
  text-align: center;
}

.contact-one__btn {
  border: none;
  padding: 17px 176px 17px;
}

/*--------------------------------------------------------------
# Contact Two
--------------------------------------------------------------*/
.contact-two {
  position: relative;
  display: block;
  padding: 0 0 90px;
  z-index: 1;
}

.contact-two__single {
  position: relative;
  display: block;
  border: 1px solid rgba(var(--gsm-bdr-color-rgb), 0.2);
  border-radius: 20px;
  text-align: center;
  padding: 20px;
  /* margin-bottom: 30px; */
}

.contact-two__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #0e0a17;
  border-radius: 50%;
  margin: 0 auto;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.contact-two__single:hover .contact-two__icon {
  background-color: var(--white);
}

.contact-two__icon span {
  position: relative;
  display: inline-block;
  font-size: 24px;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.contact-two__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  margin-bottom: 4px;
  margin-top: 21px;
}

.contact-two__text {
  line-height: 24px;
  color: var(--white);
}

.contact-two__text a {
  color: var(--white);
}

.contact-two__text a:hover {
  color: var(--gsm-base);
}

/*--------------------------------------------------------------
# Blog Details
--------------------------------------------------------------*/
.blog-details {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  z-index: 1;
}

.blog-details__left {
  position: relative;
  display: block;
}

.blog-details__img-1 {
  position: relative;
  display: block;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
}

.blog-details__img-1 img {
  width: 100%;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
}

.blog-details__date {
  position: absolute;
  top: 0;
  right: 0;
  width: 86px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-gradient);
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
}

.blog-details__date p {
  font-size: 15px;
  font-weight: 700;
  line-height: 25px;
  letter-spacing: 1.4px;
  font-family: var(--gsm-font);
  text-transform: capitalize;
  color: var(--white);
}

.blog-details__content {
  position: relative;
  display: block;
  background-color: #0e0a17;
  border: 1px solid rgba(var(--gsm-bdr-color-rgb), 0.2);
  border-top: 0;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  padding: 28px 40px 40px;
}

.blog-details__title-1 {
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
}

.blog-details__text-1 {
  color: var(--white);
  margin-top: 17px;
  margin-bottom: 18px;
}

.blog-details__text-2 {
  color: var(--white);
}

.blog-details__quote-box {
  position: relative;
  display: block;
  background-color: #ffffff00;
  border: 1px solid #4a0ab4;
  border-radius: 20px;
  padding: 30px 40px 28px;
  margin-top: 37px;
  margin-bottom: 28px;
}

.blog-details__quote-box-client-name {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  text-transform: capitalize;
}

.blog-details__quote-box-sub-title {
  margin-top: 3px;
  margin-bottom: 18px;
}

.blog-details__quote-icon {
  position: absolute;
  right: 40px;
  top: 40px;
}

.blog-details__quote-icon span {
  position: relative;
  display: inline-block;
  font-size: 43px;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.blog-details__title-2 {
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
  text-transform: capitalize;
}

.blog-details__text-3 {
  margin-top: 17px;
  margin-bottom: 18px;
}

.blog-details__points-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 75px;
  margin-bottom: 28px;
}

.blog-details__points {
  position: relative;
  display: block;
}

.blog-details__points li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
}

.blog-details__points li + li {
  margin-top: 13px;
}

.blog-details__points li .icon {
  position: relative;
  display: inline-block;
}

.blog-details__points li .icon span {
  position: relative;
  display: inline-block;
  font-size: 13px;
  background: var(--primary-gradient_hover);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.blog-details__points li p {
  color: var(--white);
}

.blog-details__text-4 {
  color: var(--white);
}

.blog-details__img-box {
  position: relative;
  display: block;
  margin-top: 29px;
}

.blog-details__img-box-img-1 {
  position: relative;
  display: block;
  margin-bottom: 38px;
}

.blog-details__img-box-img-1 img {
  width: 100%;
  border-radius: 20px;
}

.blog-details__prev-and-next {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog-details__prev-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.blog-details__prev-arrow {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: transparent;
}

.blog-details__prev-arrow:hover {
  background: var(--primary-gradient_hover);
}

.blog-details__prev-arrow span {
  font-size: 15px;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-details__prev-arrow:hover span {
  background: linear-gradient(90deg, #fff 0%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: #fff;
  background-clip: text;
  text-fill-color: #fff;
}

.blog-details__prev-arrow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid transparent;
  background: var(--primary-gradient_hover) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  border-radius: 50%;
}

.blog-details__prev-arrow:hover::before {
  background: var(--primary-gradient_hover) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.blog-details__prev {
  position: relative;
  display: block;
  font-size: 15px;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: 1.4px;
  font-family: var(--gsm-font);
  color: var(--white);
}

.blog-details__prev:hover {
  color: var(--gsm-base);
}

.blog-details__next-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.blog-details__next {
  position: relative;
  display: block;
  font-size: 15px;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: 1.4px;
  font-family: var(--gsm-font);
  color: var(--white);
}

.blog-details__next:hover {
  color: var(--gsm-base);
}

.blog-details__next-arrow {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: transparent;
}

.blog-details__next-arrow:hover {
  background: var(--primary-gradient_hover);
}

.blog-details__next-arrow span {
  font-size: 15px;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-details__next-arrow:hover span {
  background: linear-gradient(90deg, #fff 0%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: #fff;
  background-clip: text;
  text-fill-color: #fff;
}

.blog-details__next-arrow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid transparent;
  background: var(--primary-gradient_hover) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  border-radius: 50%;
}

.blog-details__next-arrow:hover::before {
  background: var(--primary-gradient_hover) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.blog-details__keyword-and-social {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(var(--gsm-bdr-color-rgb), 0.2);
  border-radius: 20px;
  padding: 29px 29px 29px;
  margin-top: 40px;
  margin-bottom: 38px;
}

.blog-details__keyword-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 26px;
}

.blog-details__keyword {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.blog-details__keyword-box span {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.4px;
  color: var(--white);
}

.blog-details__keyword a {
  color: var(--white);
  position: relative;
  display: inline-block;
}

.blog-details__keyword a:hover {
  color: var(--gsm-base);
}

.blog-details__keyword a::before {
  content: "";
  position: absolute;
  left: -9px;
  top: 50%;
  width: 5px;
  height: 5px;
  background-color: var(--white);
  border-radius: 50%;
  transform: translateY(-50%);
}

.blog-details__social {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-details__social a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(var(--gsm-bdr-color-rgb), 0.2);
  border-radius: 50%;
  background-color: transparent;
}

.blog-details__social a:hover {
  background-color: var(--gsm-base);
}

.blog-details__social a span {
  font-size: 17px;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-details__social a:hover span {
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: #ffffff;
  background-clip: text;
  text-fill-color: #ffffff;
}

.blog-details__comment-box {
  position: relative;
  display: block;
}

.blog-details__comment-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
}

.blog-details__comment-date {
  color: var(--white);
  margin-top: 27px;
  margin-bottom: 5px;
}

.blog-details__comment-client-name {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  text-transform: capitalize;
}

.blog-details__comment-text {
  margin-top: 18px;
  margin-bottom: 29px;
  color: var(--white);
}

.blog-details__comment-btn-box {
  position: relative;
  display: block;
}

.blog-details__comment-btn {
  padding: 9px 30px 9px;
}

.comment-one {
  position: relative;
  display: block;
  background: #0e0a17;
  box-shadow: 0px 4.4px 20px -1px rgba(19, 16, 34, 0.05);
  border-radius: 20px;
  margin-top: 60px;
  padding: 61px 60px 60px;
}

.comment-one__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  text-transform: capitalize;
}

.comment-one__text {
  color: var(--white);
  margin-top: 18px;
  margin-bottom: 39px;
}

.comment-one__form {
  position: relative;
  display: block;
}

.comment-one__input-box {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.comment-one__input-box input[type="text"],
.comment-one__input-box input[type="email"] {
  height: 64px;
  width: 100%;
  background-color: transparent;
  border: 1px solid rgba(var(--gsm-bdr-color-rgb), 0.2);
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  font-size: 16px;
  color: var(--white);
  display: block;
  font-weight: 400;
  border-radius: 32px;
}

.comment-one__input-box textarea {
  position: relative;
  height: 130px;
  width: 100%;
  background-color: transparent;
  border: 1px solid rgba(var(--gsm-bdr-color-rgb), 0.2);
  padding-top: 10px;
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  font-size: 16px;
  color: var(--white);
  display: block;
  font-weight: 400;
  border-radius: 20px;
  margin-bottom: 0;
}

.comment-one__input-box.text-message-box {
  height: 130px;
}

.comment-one__btn-box {
  position: relative;
  display: block;
  text-align: center;
}

.comment-one__btn {
  border: none;
  width: 100%;
  justify-content: center;
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
.sidebar {
  position: relative;
  display: block;
}

.sidebar__single + .sidebar__single {
  margin-top: 40px;
}

.sidebar__title {
  position: relative;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--black);
}

.sidebar__search {
  position: relative;
  display: block;
  padding: 44px 40px 40px;
  border-radius: 20px;
  background-color: #0e0a17;
}

.sidebar__search-form {
  position: relative;
  display: block;
}

.sidebar__search-form input[type="search"] {
  display: block;
  outline: none;
  background-color: transparent;
  border: 1px solid rgba(var(--gsm-bdr-color-rgb), 0.2);
  font-weight: 400;
  font-size: 16px;
  height: 57px;
  width: 100%;
  padding-left: 30px;
  padding-right: 60px;
  color: var(--white);
  border-radius: 29px;
}

.sidebar__search-form button[type="submit"] {
  font-size: 16px;
  position: absolute;
  top: 0;
  right: 13px;
  bottom: 0;
  max-width: 50px;
  width: 100%;
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background-color: transparent;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.sidebar__search-form button[type="submit"]:hover {
  background-color: var(--black);
  color: var(--white);
}

.sidebar__all-category {
  position: relative;
  display: block;
  padding: 44px 40px 40px;
  border-radius: 20px;
  background-color: var(--gray);
}

.sidebar__all-category .sidebar__title {
  margin-bottom: 34px;
}

.sidebar__all-category-list {
  position: relative;
  display: block;
}

.sidebar__all-category-list li {
  position: relative;
  display: block;
}

.sidebar__all-category-list li + li {
  margin-top: 20px;
}

.sidebar__all-category-list li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--border-dark-color);
  border-radius: 27px;
  color: var(--dark);
  padding: 14px 20px 14px;
  padding-left: 45px;
  z-index: 1;
}

.sidebar__all-category-list li.active a {
  color: var(--white);
}

.sidebar__all-category-list li:hover a {
  color: var(--white);
}

.sidebar__all-category-list li > a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 27px;
  background: var(--primary-gradient);
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  transform-origin: bottom right;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  z-index: -1;
}

.sidebar__all-category-list li:hover a::before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transform-origin: top center;
}

.sidebar__all-category-list li.active a::before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transform-origin: top center;
}

.sidebar__all-category-list li a i {
  position: absolute;
  top: 50%;
  left: 20px;
  font-size: 14px;
  transform: translateY(-50%);
  background: var(--primary-gradient_hover);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.sidebar__all-category-list li a:hover i {
  background: linear-gradient(90deg, #4a0ab4 0%, #4a0ab4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.sidebar__all-category-list li.active a i {
  /*  background: linear-gradient(90deg, #4A0AB4 0%, #4A0AB4 100%);*/
  background: #fff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.sidebar__post {
  position: relative;
  display: block;
  padding: 44px 40px 40px;
  border-radius: 20px;
  background-color: var(--gray);
}

.sidebar__post .sidebar__title {
  margin-bottom: 32px;
}

.sidebar__post-list {
  position: relative;
  display: block;
}

.sidebar__post-list li {
  position: relative;
  display: block;
  border: 1px solid var(--border-dark-color);
  border-radius: 20px;
  padding: 23px 30px 24px;
}

.sidebar__post-list li + li {
  margin-top: 20px;
}

.sidebar__post-content {
  position: relative;
  display: block;
}

.sidebar__post-date {
  color: var(--dark);
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sidebar__post-date span {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.sidebar__post-content h3 {
  font-size: 15px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: 1.4px;
  margin-top: 9px;
  width: 100%;
}

.sidebar__post-content h3 a {
  color: var(--black);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  /* Number of lines to show */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sidebar__post-content h3 a:hover {
  color: var(--primary);
}

.sidebar__tags {
  position: relative;
  display: block;
  padding: 44px 40px 40px;
  border-radius: 20px;
  padding-right: 20px;
  background-color: #0e0a17;
}

.sidebar__tags .sidebar__title {
  margin-bottom: 16px;
}

.sidebar__tags-list {
  position: relative;
  display: block;
  margin-left: -10px;
}

.sidebar__tags-list a {
  position: relative;
  color: var(--white);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  display: inline-block;
  padding: 3px 10px 3px;
  border: 1px solid rgba(var(--gsm-bdr-color-rgb), 0.2);
  margin-left: 10px;
  font-weight: 400;
  border-radius: 17px;
  overflow: hidden;
  z-index: 1;
}

.sidebar__tags-list a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary-gradient);
  border-radius: 17px;
  background-position: center top;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.5s;
  transition-property: all;
  transform-origin: top;
  transform-style: preserve-3d;
  transform: scaleY(0);
  z-index: -1;
}

.sidebar__tags-list a:hover::before {
  transform: scaleY(1);
}

.sidebar__tags-list a + a {
  margin-top: 15px;
}

.sidebar__tags-list a:hover {
  color: var(--white);
  border: 1px solid transparent;
}

/*--------------------------------------------------------------
# Blog Page
--------------------------------------------------------------*/
.blog-list {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  z-index: 1;
}

.blog-list__left {
  position: relative;
  display: block;
}

.blog-list__single {
  position: relative;
  display: block;
  margin-bottom: 60px;
}

.blog-list__img-box {
  position: relative;
  display: block;
  z-index: 1;
}

.blog-list__img {
  position: relative;
  display: block;
  border-radius: 15px;
}

.blog-list__img img {
  width: 100%;
  border-radius: 15px;
}

.blog-list__date {
  position: absolute;
  top: 0;
  left: 0;
  width: 65px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0e0a17;
  border-top-left-radius: 15px;
  border-bottom-right-radius: 15px;
}

.blog-list__date p {
  color: var(--white);
}

.blog-list__content {
  position: relative;
  display: block;
  margin-right: 80px;
  background-color: #0e0a17;
  border-radius: 15px;
  padding: 59px 40px 40px;
  margin-top: -30px;
}

.blog-list__meta {
  position: relative;
  display: flex;
  align-items: center;
  gap: 22px;
}

.blog-list__meta li {
  position: relative;
  display: block;
}

.blog-list__meta li a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}

.blog-list__meta li a:hover {
  color: var(--gsm-base);
}

.blog-list__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  margin-top: 20px;
  margin-bottom: 39px;
  text-transform: capitalize;
}

.blog-list__title a {
  color: var(--white);
}

.blog-list__title a:hover {
  color: var(--gsm-base);
}

.blog-list__btn-box {
  position: relative;
  display: block;
}

.blog-list__pagination {
  position: relative;
  display: block;
  text-align: center;
}

.blog-list__pagination .pg-pagination li {
  display: inline-block;
  margin-right: 10px;
}

.blog-list__pagination .pg-pagination li a {
  position: relative;
  display: block;
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 40px;
  display: inline-block;
  color: var(--white);
  border: 1px solid rgba(var(--gsm-bdr-color-rgb), 0.2);
  font-weight: 400;
  font-size: 16px;
  border-radius: 50%;
  background-color: #0e0a17;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.blog-list__pagination .pg-pagination li a:hover {
  color: var(--white);
}

.blog-list__pagination .pg-pagination li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary-gradient);
  opacity: 0;
  border-radius: 50%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: -1;
}

.blog-list__pagination .pg-pagination li a:hover::before {
  opacity: 1;
}

.blog-list__pagination .pg-pagination li a i {
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-list__pagination .pg-pagination li:last-child a:hover i {
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.blog-list__pagination .pg-pagination li:first-child a:hover i {
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

/*--------------------------------------------------------------
# Gallery Details
--------------------------------------------------------------*/
.gallery-details {
  position: relative;
  display: block;
  padding: 120px 0 90px;
  z-index: 1;
}

.gallery-details__top {
  position: relative;
  display: block;
}

.gallery-details__top-img {
  position: relative;
  display: block;
}

.gallery-details__top-img img {
  width: 100%;
  border-radius: 20px;
}

.gallery-details__top-right {
  position: relative;
  display: block;
}

.gallery-details__information {
  position: relative;
  display: block;
  background-color: #0e0a17;
  border-radius: 20px;
  padding: 40px 20px 40px;
}

.gallery-details__information-title {
  position: relative;
  display: block;
  text-align: center;
  background: var(--primary-gradient);
  border-radius: 20px;
  padding: 19px 20px 17px;
  margin-bottom: 30px;
}

.gallery-details__information-title h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
}

.gallery-details__information-list {
  position: relative;
  display: block;
}

.gallery-details__information-list li {
  position: relative;
  display: block;
  text-align: center;
  background-color: #04000a;
  border: 1px solid rgba(var(--gsm-bdr-color-rgb), 0.2);
  border-radius: 20px;
  padding: 13px 20px 13px;
}

.gallery-details__information-list li:last-child {
  padding: 19px 20px 19px;
}

.gallery-details__information-list li + li {
  margin-top: 20px;
}

.gallery-details__information-list li p {
  color: var(--gsm-gray);
}

.gallery-details__information-ratting {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.gallery-details__information-ratting span {
  position: relative;
  display: inline-block;
  font-size: 14px;
  color: #eeca48;
}

.gallery-details__information-ratting span.last-icon {
  color: #cccccc;
}

.gallery-details__information-social {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.gallery-details__information-social a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 33px;
  height: 33px;
  font-size: 14px;
  color: var(--white);
  background-color: #04000a;
  border-radius: 50%;
  z-index: 1;
}

.gallery-details__information-social a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary-gradient);
  opacity: 0;
  border-radius: 50%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: -1;
}

.gallery-details__information-social a:hover::before {
  opacity: 1;
}

.gallery-details__content {
  position: relative;
  display: block;
  margin-top: 28px;
}

.gallery-details__title-1 {
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
  text-transform: capitalize;
}

.gallery-details__text-1 {
  color: rgba(var(--white-rgb), 0.8);
  margin-top: 17px;
  margin-bottom: 28px;
}

.gallery-details__points-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 100px;
}

.gallery-details__points {
  position: relative;
  display: block;
}

.gallery-details__points li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
}

.gallery-details__points li + li {
  margin-top: 13px;
}

.gallery-details__points li .icon {
  position: relative;
  display: inline-block;
}

.gallery-details__points li .icon span {
  position: relative;
  display: inline-block;
  font-size: 13px;
  background: var(--primary-gradient_hover);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.gallery-details__points li p {
  color: rgba(var(--white-rgb), 0.8);
}

.gallery-details__title-2 {
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
  text-transform: capitalize;
  margin-top: 27px;
  margin-bottom: 19px;
}

.gallery-details__text-2 {
  color: rgba(var(--white-rgb), 0.8);
}

.gallery-details__img-box {
  position: relative;
  display: block;
  margin-top: 39px;
}

.gallery-details__img-box-img {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.gallery-details__img-box-img img {
  width: 100%;
  border-radius: 20px;
}

/*--------------------------------------------------------------
# Event Details
--------------------------------------------------------------*/
.event-details {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  z-index: 1;
}

.event-details__left {
  position: relative;
  display: block;
}

.event-details__img {
  position: relative;
  display: block;
}

.event-details__img img {
  width: 100%;
  max-height: 350px;
  border-radius: 20px;
}

.event-details__main-tab-box {
  position: relative;
  display: block;
  margin-top: 40px;
}

.event-details__main-tab-box .tab-buttons {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 745px;
  width: 100%;
  z-index: 5;
}

.event-details__main-tab-box .tab-buttons:before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  height: 1px;
  background-color: rgba(var(--gsm-bdr-color-rgb), 0.2);
  z-index: -1;
}

.event-details__main-tab-box .tab-buttons .tab-btn + .tab-btn {
  margin-left: 55px;
}

.event-details__main-tab-box .tab-buttons .tab-btn {
  position: relative;
  cursor: pointer;
  text-align: center;
  padding: 12px 29px 11px;
  border: 1px solid rgba(var(--gsm-bdr-color-rgb), 0.2);
  background-color: #0e0a17;
  border-radius: 32px;
  overflow: hidden;
  z-index: 1;
}

.event-details__main-tab-box .tab-buttons .tab-btn:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0%;
  content: "";
  background: var(--primary-gradient);
  border-radius: 32px;
  transition: all 0.3s ease;
  z-index: -1;
}

.event-details__main-tab-box .tab-buttons .tab-btn.active-btn:before {
  height: 100%;
}

.event-details__main-tab-box .tab-buttons .tab-btn p {
  position: relative;
  display: block;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  font-size: 15px;
  line-height: 15px;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 1.6px;
  transition: all 0.3s ease;
  z-index: 1;
}

.event-details__main-tab-box .tab-buttons .tab-btn.active-btn p {
  color: var(--white);
}

.event-details__main-tab-box .tabs-content {
  position: relative;
  display: block;
  z-index: 1;
}

.event-details__main-tab-box .tabs-content .tab {
  position: relative;
  display: none;
  -webkit-transform: translateY(35px);
  -ms-transform: translateY(35px);
  transform: translateY(35px);
  -webkit-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  transition: all 600ms ease;
  z-index: 10;
}

.event-details__main-tab-box .tabs-content .tab.active-tab {
  display: block;
  margin-top: 0px;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}

.event-details__tab-content-box {
  position: relative;
  display: block;
}

.event-details__meta {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 39px;
  margin-bottom: 23px;
}

.event-details__meta li {
  position: relative;
  display: block;
}

.event-details__meta li p {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}

.event-details__title-1 {
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
  text-transform: capitalize;
}

.event-details__text-1 {
  color: rgba(var(--white-rgb), 0.8);
  margin-top: 17px;
  margin-bottom: 18px;
}

.event-details__text-2 {
  color: rgba(var(--white-rgb), 0.8);
}

.event-details__img-box {
  position: relative;
  display: block;
  margin-top: 29px;
}

.event-details__img-box-img {
  position: relative;
  display: block;
  margin-bottom: 29px;
}

.event-details__img-box-img img {
  width: 100%;
  border-radius: 20px;
}

.event-details__points-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 115px;
}

.event-details__points {
  position: relative;
  display: block;
}

.event-details__points li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
}

.event-details__points li + li {
  margin-top: 13px;
}

.event-details__points li .icon {
  position: relative;
  display: inline-block;
}

.event-details__points li .icon span {
  position: relative;
  display: inline-block;
  font-size: 15px;
  background: var(--primary-gradient_hover);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.event-details__points li p {
  color: rgba(var(--white-rgb), 0.8);
}

.event-details__text-3 {
  color: rgba(var(--white-rgb), 0.8);
  margin-top: 28px;
  margin-bottom: 18px;
}

.event-details__text-4-long-desc-short {
  overflow: hidden;
}

.event-details__text-4 {
  color: rgba(var(--white-rgb), 0.8);
}

.event-details__right {
  position: relative;
  display: block;
}

.event-details__speakers {
  position: relative;
  display: block;
  background-color: #0e0a17;
  border-radius: 20px;
  text-align: center;
  padding: 40px 40px 39px;
}

.event-details__speakers-title {
  position: relative;
  display: block;
  background-color: rgba(var(--white-rgb), 0.2);
  border-radius: 20px;
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  padding: 18px 20px 17px;
}

.event-details__speakers-sub-title {
  color: var(--white);
  margin-top: 19px;
  margin-bottom: 18px;
}

.event-details__speakers-text {
  color: rgba(var(--white-rgb), 0.8);
}

.event-details__ticket {
  position: relative;
  display: block;
  background-color: #0e0a17;
  border-radius: 20px;
  text-align: center;
  padding: 40px 40px 38px;
  margin-top: 40px;
}

.event-details__ticket-title {
  position: relative;
  display: block;
  background-color: rgba(var(--white-rgb), 0.2);
  border-radius: 20px;
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  padding: 18px 20px 17px;
}

.event-details__ticket-sub-title {
  color: var(--white);
  margin-top: 19px;
  margin-bottom: 19px;
}

.event-details__ticket-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  background: var(--primary-gradient);
  border-radius: 50%;
  margin: 0 auto;
}

.event-details__ticket-icon span {
  position: relative;
  display: inline-block;
  font-size: 30px;
  color: var(--white);
}

.event-details__ticket-sub-title-2 {
  color: var(--white);
  margin-top: 14px;
  margin-bottom: 7px;
}

.event-details__ticket-number {
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
}

.event-details__ticket-number a {
  color: var(--white);
}

.event-details__ticket-number a:hover {
  color: var(--gsm-base);
}

.event-details__ticket-two {
  position: relative;
  display: block;
  background-color: #0e0a17;
  border-radius: 20px;
  text-align: center;
  padding: 40px 40px 38px;
  margin-top: 40px;
}

.event-details__ticket-two-title {
  position: relative;
  display: block;
  background-color: rgba(var(--white-rgb), 0.2);
  border-radius: 20px;
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  padding: 18px 20px 17px;
}

.event-details__ticket-two-text {
  margin-top: 19px;
  color: rgba(var(--white-rgb), 0.8);
  margin-bottom: 29px;
}

.event-details__follow-us {
  position: relative;
  display: block;
  background-color: #0e0a17;
  border-radius: 20px;
  text-align: center;
  padding: 40px 40px 38px;
  margin-top: 40px;
}

.event-details__follow-us-title {
  position: relative;
  display: block;
  background-color: rgba(var(--white-rgb), 0.2);
  border-radius: 20px;
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  padding: 18px 20px 17px;
}

.event-details__follow-us-social {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.event-details__follow-us-social a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 33px;
  height: 33px;
  background-color: #04000a;
  border-radius: 50%;
  font-size: 16px;
  color: var(--white);
}

.event-details__follow-us-social a:hover {
  background-color: var(--gsm-base);
  color: var(--white);
}

.event-details__location {
  position: relative;
  display: block;
  background-color: #0e0a17;
  border-radius: 20px;
  text-align: center;
  padding: 40px 40px 38px;
  margin-top: 40px;
}

.event-details__location-title {
  position: relative;
  display: block;
  background-color: rgba(var(--white-rgb), 0.2);
  border-radius: 20px;
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  padding: 18px 20px 17px;
}

.google-map__one {
  position: relative;
  display: block;
  border: none;
  height: 180px;
  width: 100%;
  border-radius: 20px;
  margin-top: 30px;
}

/*--------------------------------------------------------------
# Service Details
--------------------------------------------------------------*/
.service-details {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  z-index: 1;
}

.service-details__top {
  position: relative;
  display: block;
}

.service-details__top-left {
  position: relative;
  display: block;
}

.service-details__category-title {
  position: relative;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
}

.service-details__all-category {
  position: relative;
  display: block;
  padding: 44px 40px 30px;
  border-radius: 20px;
  background-color: #0e0a17;
}

.service-details__all-category .service-details__title {
  margin-bottom: 34px;
}

.service-details__all-category-list {
  position: relative;
  display: block;
}

.service-details__all-category-list li {
  position: relative;
  display: block;
}

.service-details__all-category-list li + li {
  margin-top: 20px;
}

.service-details__all-category-list li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #04000a;
  border-radius: 27px;
  color: var(--white);
  padding: 14px 20px 14px;
  padding-left: 45px;
  z-index: 1;
}

.service-details__all-category-list li.active a {
  color: var(--white);
}

.service-details__all-category-list li:hover a {
  color: var(--white);
}

.service-details__all-category-list li > a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 27px;
  background: var(--primary-gradient);
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  transform-origin: bottom right;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  z-index: -1;
}

.service-details__all-category-list li:hover a::before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transform-origin: top center;
}

.service-details__all-category-list li.active a::before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transform-origin: top center;
}

.service-details__all-category-list li a i {
  position: absolute;
  top: 50%;
  left: 20px;
  font-size: 14px;
  transform: translateY(-50%);
  background: var(--primary-gradient_hover);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.service-details__all-category-list li a:hover i {
  background: linear-gradient(90deg, #4a0ab4 0%, #4a0ab4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.service-details__all-category-list li.active a i {
  background: linear-gradient(90deg, #4a0ab4 0%, #4a0ab4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.service-details__get-touch {
  position: relative;
  display: block;
  padding: 20px;
  border-radius: 20px;
  margin-top: 40px;
  margin-bottom: 40px;
  z-index: 1;
}

.service-details__get-touch-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  z-index: -1;
}

.service-details__get-touch-inner {
  position: relative;
  display: block;
  text-align: center;
  background: var(--primary-gradient);
  border-radius: 20px;
  padding: 38px 30px 38px;
}

.service-details__get-touch-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
  text-transform: uppercase;
}

.service-details__get-touch-sub-title {
  color: var(--white);
  margin-top: 7px;
  margin-bottom: 20px;
}

.service-details__get-touch-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  background-color: rgba(var(--white-rgb), 0.2);
  border-radius: 50%;
  margin: 0 auto;
  webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.service-details__get-touch-icon:hover {
  background-color: var(--black);
}

.service-details__get-touch-icon span {
  position: relative;
  display: inline-block;
  font-size: 30px;
  color: var(--white);
}

.service-details__get-touch-number {
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
  margin-top: 28px;
}

.service-details__get-touch-number a {
  color: var(--white);
}

.service-details__get-touch-number a:hover {
  color: var(--black);
}

.service-details__download-box {
  position: relative;
  display: block;
  padding: 30px 40px 30px;
  background-color: #0e0a17;
  border-radius: 20px;
}

.service-details__download-list {
  position: relative;
  display: block;
}

.service-details__download-list li {
  position: relative;
  display: block;
}

.service-details__download-list li + li {
  margin-top: 20px;
}

.service-details__download-list li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(var(--white-rgb), 0.05);
  border-radius: 34px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.4px;
  color: var(--white);
  padding: 20px 30px 20px;
  z-index: 1;
}

.service-details__download-list li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 27px;
  background: var(--primary-gradient);
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  transform-origin: bottom right;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  z-index: -1;
}

.service-details__download-list li:hover a::before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transform-origin: top center;
}

.service-details__top-right {
  position: relative;
  display: block;
}

.service-details__img-1 {
  position: relative;
  display: block;
}

.service-details__img-1 img {
  width: 100%;
  border-radius: 20px;
}

.service-details__title-1 {
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
  text-transform: capitalize;
  margin-top: 28px;
  margin-bottom: 17px;
}

.service-details__text-1 {
  color: rgba(var(--white-rgb), 0.8);
  line-height: 24px;
}

.service-details__img-box {
  position: relative;
  display: block;
  margin-top: 29px;
}

.service-details__img-box-img {
  position: relative;
  display: block;
  margin-bottom: 38px;
}

.service-details__img-box-img img {
  width: 100%;
  border-radius: 20px;
}

.service-details__title-2 {
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
  text-transform: capitalize;
}

.service-details__text-2 {
  color: rgba(var(--white-rgb), 0.8);
  margin-top: 17px;
  margin-bottom: 18px;
  line-height: 24px;
}

.service-details__text-3 {
  color: rgba(var(--white-rgb), 0.8);
  line-height: 24px;
}

.service-details__bottom {
  position: relative;
  display: block;
  margin-top: 36px;
}

.service-details__single {
  position: relative;
  display: block;
  background-color: #0e0a17;
  border-radius: 20px;
  padding: 39px 39px 37px;
  margin-bottom: 30px;
}

.service-details__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  width: 90px;
  border-radius: 50%;
  background: var(--primary-gradient);
  margin-bottom: 22px;
  z-index: 1;
}

.service-details__icon span {
  position: relative;
  display: inline-block;
  font-size: 45px;
  color: var(--white);
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.service-details__single:hover .service-details__icon span {
  transform: scale(0.9);
}

.service-details__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
}

.service-details__title a {
  color: var(--white);
}

.service-details__title a:hover {
  color: var(--gsm-base);
}

.service-details__text {
  margin-top: 18px;
  margin-bottom: 24px;
  color: rgba(var(--white-rgb), 0.8);
}

.service-details__btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: capitalize;
}

.service-details__btn span {
  font-size: 13px;
}

.service-details__btn:hover {
  color: var(--gsm-base);
}

.service-details__text-4 {
  color: rgba(var(--white-rgb), 0.8);
  line-height: 24px;
  padding-top: 54px;
}

.service-details__faq-box {
  position: relative;
  display: block;
  margin-top: 0px;
  counter-reset: count;
}

.service-details__faq-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  margin-bottom: 40px;
}

.service-details__faq-box .faq-one-accrodion .accrodion {
  position: relative;
  display: block;
  background-color: transparent;
  border: 1px solid rgba(var(--gsm-bdr-color-rgb), 0.2);
  background: var(--primary-gradient);
  border-radius: 20px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.service-details__faq-box .faq-one-accrodion .accrodion-title {
  position: relative;
  display: block;
  cursor: pointer;
  padding: 16px 30px 17px;
  padding-left: 60px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  padding-right: 25px;
}

.service-details__faq-box .faq-one-accrodion .accrodion-title h4 {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 25px;
  letter-spacing: 1.4px;
  color: var(--black);
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.service-details__faq-box .faq-one-accrodion .accrodion + .accrodion {
  margin-top: 37px;
}

.service-details__faq-box .faq-one-accrodion .accrodion-title h4::before {
  content: "\e915";
  font-family: "icomoon" !important;
  font-weight: 700;
  font-size: 13px;
  color: var(--white);
  position: absolute;
  top: 50%;
  right: 0;
  line-height: 15px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  text-align: center;
  width: 21px;
  height: 21px;
}

.service-details__faq-box .faq-one-accrodion .accrodion-content {
  position: relative;
  padding-bottom: 28px;
  padding-left: 30px;
  padding-right: 35px;
}

.service-details__faq-box .faq-one-accrodion .accrodion-content p {
  margin: 0;
  color: var(--dark-gray);
}

.service-details__faq-box .faq-one-accrodion__count {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
}

.service-details__faq-box .faq-one-accrodion__count::before {
  position: relative;
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  line-height: 25px;
  letter-spacing: 1.4px;
  color: var(--black);
  font-family: var(--gsm-font);
  counter-increment: count;
  content: "" counter(count);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.service-details__faq-box .faq-one-accrodion__count:after {
  content: "";
  position: absolute;
  bottom: 8px;
  right: -7px;
  width: 4px;
  height: 4px;
  background-color: var(--black);
  border-radius: 50%;
}

/*--------------------------------------------------------------
# Team Details
--------------------------------------------------------------*/
.team-details {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  z-index: 1;
}

.team-details__left {
  position: relative;
  display: block;
  background-color: #0e0a17;
  border-radius: 20px;
  padding: 40px 70px 100px;
  text-align: center;
  overflow: hidden;
  z-index: 1;
}

.team-details__client-shape-1 {
  position: absolute;
  bottom: -100px;
  right: -100px;
  opacity: 0.1;
  z-index: -1;
}

.team-details__client-shape-1 img {
  width: auto;
}

.team-details__img-box {
  position: relative;
  display: block;
}

.team-details__client-img {
  position: relative;
  display: block;
}

.team-details__client-img img {
  border-radius: 50%;
  padding: 10px;
  background-color: rgba(var(--white-rgb), 0.1);
}

.team-details__img-content {
  position: relative;
  display: block;
}

.team-details__client-name {
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  color: var(--white);
  margin-top: 25px;
}

.team-details__sub-title {
  color: rgba(var(--white-rgb), 0.8);
}

.team-details__social {
  position: relative;
  display: block;
  margin-top: 20px;
}

.team-details__social-list {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.team-details__social a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  font-size: 15px;
  color: var(--white);
  background-color: #04000a;
  border-radius: 50%;
  z-index: 1;
}

.team-details__social a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background: var(--primary-gradient_hover);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  opacity: 0;
  z-index: -1;
}

.team-details__social a:hover::before {
  opacity: 1;
}

.team-details__right {
  position: relative;
  display: block;
  padding-left: 40px;
  margin-right: 40px;
}

.team-details__title-1 {
  font-size: 30px;
  line-height: 40px;
  font-weight: 700;
  text-transform: capitalize;
}

.team-details__text-1 {
  color: rgba(var(--white-rgb), 0.8);
  margin-top: 17px;
}

.team-details__speaker-info-box {
  position: relative;
  display: block;
  margin-top: 42px;
}

.team-details__speaker-info {
  position: relative;
  display: block;
}

.team-details__speaker-title {
  font-size: 30px;
  line-height: 40px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 20px;
}

.team-details__speaker-info p {
  color: rgba(var(--white-rgb), 0.8);
}

.team-details__speaker-info-list {
  position: relative;
  display: block;
  border: 1px solid rgba(var(--gsm-bdr-color-rgb), 0.2);
  background-color: #0e0a17;
  border-radius: 20px;
}

.team-details__speaker-info-list ul {
  position: relative;
  display: block;
}

.team-details__speaker-info-list ul li {
  padding: 10px 25px;
  position: relative;
  display: block;
}

.team-details__speaker-info-list ul li + li {
  border-top: 1px solid rgba(var(--gsm-bdr-color-rgb), 0.2);
}

.team-details__speaker-info-list ul li p {
  font-size: 14px;
  line-height: 24px;
  font-weight: 600;
  color: var(--gsm-base);
}

.team-details__speaker-info-list ul li span {
  font-size: 14px;
  line-height: 24px;
}

.team-details__speaker-info-list ul li a {
  font-size: 14px;
  line-height: 24px;
  color: rgba(var(--white-rgb), 0.9);
}

.team-details__speaker-info-list ul li a:hover {
  color: var(--gsm-base);
}

/*--------------------------------------------------------------
# Blog Page
--------------------------------------------------------------*/
.blog-page {
  position: relative;
  display: block;
  padding: 120px 0 90px;
  z-index: 1;
}

/*--------------------------------------------------------------
# Team Page
--------------------------------------------------------------*/
.team-page {
  position: relative;
  display: block;
  padding: 120px 0 90px;
  z-index: 1;
}

/*--------------------------------------------------------------
# Team Page
--------------------------------------------------------------*/
.testimonial-page {
  position: relative;
  display: block;
  padding: 120px 0 90px;
  z-index: 1;
}

.testimonial-page .testimonial-one__single {
  margin-bottom: 30px;
}

/*--------------------------------------------------------------
# Services Page
--------------------------------------------------------------*/
.services-page {
  position: relative;
  display: block;
  padding: 120px 0 90px;
  z-index: 1;
}

/*--------------------------------------------------------------
# Event Page
--------------------------------------------------------------*/
.event-page {
  position: relative;
  display: block;
  padding: 90px 0 90px;
  z-index: 1;
  /* background-color: var(--gsm-extra); */
}

/*--------------------------------------------------------------
## Error Page
--------------------------------------------------------------*/
.error-page {
  position: relative;
  display: block;
  padding: 72px 0 120px;
  z-index: 1;
}

.error-page__inner {
  position: relative;
  display: block;
  text-align: center;
}

.error-page__title-box {
  position: relative;
  display: inline-block;
  z-index: 2;
}

.error-page__title {
  position: relative;
  display: inline-block;
  font-size: 350px;
  line-height: 350px;
  font-weight: 500;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  z-index: 2;
}

.error-page__tagline {
  font-size: 40px;
  line-height: 49px;
  font-weight: 400;
  color: var(--white);
  text-transform: capitalize;
  margin-bottom: 15px;
}

.error-page__text {
  font-size: 20px;
}

.error-page__form {
  position: relative;
  display: block;
  margin: 47px auto 20px;
}

.error-page__form-input {
  position: relative;
  display: block;
  max-width: 550px;
  width: 100%;
  margin: 0 auto;
}

.error-page__form input[type="search"] {
  height: 52px;
  width: 100%;
  outline: none;
  background: var(--primary-gradient);
  border-radius: 25px;
  border: 0;
  font-size: 14px;
  color: var(--white);
  font-weight: 500;
  padding-left: 50px;
  padding-right: 75px;
}

.error-page__form button[type="submit"] {
  background-color: transparent;
  color: var(--white);
  font-size: 22px;
  position: absolute;
  top: 0;
  right: 0px;
  bottom: 0;
  width: 72px;
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  padding: 0;
}

/*--------------------------------------------------------------
# Coming Soon Page
--------------------------------------------------------------*/
.coming-soon-page {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 10;
}

.coming-soon-page__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-color: var(--black);
  background-blend-mode: luminosity;
  z-index: -1;
}

.coming-soon-page__bg:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(0deg, #000000 5%, rgba(0, 0, 0, 0.5) 100%);
}

.coming-soon-page__content {
  position: relative;
  display: block;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
  top: 50%;
  transform: translateY(-50%);
}

.coming-soon-page__content .inner {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
}

.coming-soon-page__content .big-title {
  position: relative;
  display: inline-block;
  color: transparent;
  font-size: 80px;
  line-height: 1.1em;
  font-family: var(--gsm-font-2);
  font-weight: 700;
  text-transform: uppercase;
  -webkit-background-clip: text;
  -webkit-text-stroke: 1px var(--white);
  word-spacing: 15px;
}

.coming-soon-page .timer-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 57px 0 42px;
  z-index: 2;
}

.coming-soon-page .timer-box .countdown-timer li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  float: left;
  width: 170px;
  height: 170px;
  margin: 0px 15px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  background-color: transparent;
  border-radius: 50%;
}

.coming-soon-page .timer-box .countdown-timer li span.days,
.coming-soon-page .timer-box .countdown-timer li span.hours,
.coming-soon-page .timer-box .countdown-timer li span.minutes,
.coming-soon-page .timer-box .countdown-timer li span.seconds {
  color: #ffffff;
  font-size: 55px;
  line-height: 60px;
  font-weight: 700;
  font-family: var(--gsm-font);
}

.coming-soon-page .timer-box .countdown-timer li span.timeRef {
  position: relative;
  display: block;
  color: #ffffff;
  font-size: 18px;
  line-height: 20px;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 11px;
  font-family: var(--gsm-font);
}

.coming-soon-page__content .inner .text {
  position: relative;
  display: block;
  padding-bottom: 60px;
}

.coming-soon-page__content .inner .text p {
  color: #ffffff;
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
}

.coming-soon-page__subscribe-box {
  position: relative;
  display: block;
  max-width: 770px;
  width: 100%;
  margin: 0 auto;
}

.coming-soon-page__subscribe-box form {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  width: 100%;
}

.coming-soon-page__subscribe-box form input[type="email"] {
  position: relative;
  display: block;
  max-width: 490px;
  width: 100%;
  height: 60px;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid #ffffff !important;
  color: var(--gsm-gray);
  font-size: 16px;
  font-weight: 400;
  padding-left: 30px;
  padding-right: 30px;
  transition: all 500ms ease 0s;
  font-family: var(--gsm-font);
  outline: none;
}

.coming-soon-page__btn {
  position: relative;
  align-items: center;
  border: 0;
  padding: 17px 40px 17px;
  background-color: var(--gsm-base);
}

.coming-soon-page__btn:hover {
  color: var(--white);
}

/*--------------------------------------------------------------
# Services Three
--------------------------------------------------------------*/
.services-three {
  padding: 0px 0 90px;
}

/*--------------------------------------------------------------
# Ticket Two
--------------------------------------------------------------*/
.ticket-two {
  padding: 120px 0 90px;
}

/*--------------------------------------------------------------
# Pricing Two
--------------------------------------------------------------*/
.pricing-two {
  background-color: var(--white);
  padding: 190px 0 90px;
}

.pricing-two .pricing-one__points li .text p {
  color: var(--gsm-gray);
}

/*--------------------------------------------------------------
# Event Three
--------------------------------------------------------------*/
.event-three {
  padding: 120px 0 120px;
}

/*--------------------------------------------------------------
# Event Direction Two
--------------------------------------------------------------*/
.event-direction-two {
  padding: 0 0 120px;
}

/*--------------------------------------------------------------
# Faq Page
--------------------------------------------------------------*/
.faq-page {
  position: relative;
  display: block;
  padding: 120px 0 100px;
  counter-reset: count;
}

.faq-page__left {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.faq-page .faq-one-accrodion .accrodion {
  position: relative;
  display: block;
  background-color: transparent;
  border: 1px solid rgba(var(--gsm-bdr-color-rgb), 0.2);
  background-color: #0e0a17;
  border-radius: 20px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.faq-page .faq-one-accrodion .accrodion-title {
  position: relative;
  display: block;
  cursor: pointer;
  padding: 16px 30px 17px;
  padding-left: 60px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  padding-right: 25px;
}

.faq-page .faq-one-accrodion .accrodion-title h4 {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 25px;
  letter-spacing: 1.4px;
  color: var(--white);
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.faq-page .faq-one-accrodion .accrodion + .accrodion {
  margin-top: 37px;
}

.faq-page .faq-one-accrodion .accrodion-title h4::before {
  content: "\e915";
  font-family: "icomoon" !important;
  font-weight: 700;
  font-size: 13px;
  color: var(--white);
  position: absolute;
  top: 50%;
  right: 0;
  line-height: 15px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  text-align: center;
  width: 21px;
  height: 21px;
}

.faq-page .faq-one-accrodion .accrodion-content {
  position: relative;
  padding-bottom: 28px;
  padding-left: 30px;
  padding-right: 35px;
}

.faq-page .faq-one-accrodion .accrodion-content p {
  margin: 0;
  color: rgba(var(--white-rgb), 0.8);
}

.faq-page .faq-one-accrodion__count {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
}

.faq-page .faq-one-accrodion__count::before {
  position: relative;
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  line-height: 25px;
  letter-spacing: 1.4px;
  color: var(--white);
  font-family: var(--gsm-font);
  counter-increment: count;
  content: "" counter(count);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.faq-page .faq-one-accrodion__count:after {
  content: "";
  position: absolute;
  bottom: 8px;
  right: -7px;
  width: 4px;
  height: 4px;
  background-color: var(--white);
  border-radius: 50%;
}

.faq-page__right {
  position: relative;
  display: block;
}

/*--------------------------------------------------------------
# Team Three
--------------------------------------------------------------*/
.team-three {
  padding: 0px 0 90px;
}

.reg_btn {
  padding: 6px 25px;
  color: #fff;
  margin-top: 0px;
}

.reg_btn:hover {
  /*  padding: 13px 25px;*/
  color: #fff;
}

.reward_sec {
  background-color: #eee;
  padding: 13px;
  border-radius: 10px;
  margin: 1rem 0;
  /* border: 2px solid #3f19bc; */
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.reward_sec .list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: center;
  /* display: flex; */
  /* justify-content: space-between; */
  list-style: none;
  padding-left: 0rem;
}

.listingstyle ul li {
  color: #000000;
  display: flex;
  gap: 12px;
}

.reward_sec .list li .icon span {
  position: relative;
  display: inline-block;
  font-size: 15px;
  background: var(--primary-gradient_hover);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.contentinner {
  position: relative;
  display: block;
  border: 2px solid rgba(var(--gsm-bdr-color-rgb), 0.2);
  border-radius: 20px;
  padding: 60px 60px 60px;
  z-index: 1;
}

.title_sp {
  color: #000 !important;
}

.reward_sec table {
  position: relative;
  width: 100%;
  margin-bottom: 0px;
  vertical-align: top;
  font-size: 20px;
  display: inline-grid;
  overflow: auto;
  margin-top: 28px;
  border: 1px solid #eee;
  border-radius: 0;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  border-radius: 8px;
}

.reward_sec .table > thead {
  vertical-align: bottom;
  background-color: #000000;
}

.reward_sec table > tbody {
  display: table;
  width: 100%;
}

.reward_sec tbody,
.reward_sec td,
.reward_sec th,
.reward_sec tr {
  border-color: #4a0ab4;
  border-style: solid;
  border-width: 0;
  font-size: 15px;
  line-height: 26px;
  color: #ffffff;
}

.reward_sec table > tbody > tr > td {
  background: #ffffff;
  color: black;
}

.reward_sec table > :not(caption) > * > * {
  padding: 0.5rem 0.5rem;
  border-bottom-width: 1px;
  padding: 11px !important;
}

.reward_sec table > :not(:last-child) > :last-child > * {
  border-bottom-color: transparent;
}

.tag_btn {
  padding: 6px 12px;
  border-radius: 50px;
  background: var(--primary-gradient);
  color: #fff;
  font-size: 12px;
}

.tag_btn:hover {
  color: #fff;
}

.login_img img {
}

.two_text {
  margin-top: 10px;
  margin-bottom: 0;
}

.modal .modal-dialog {
  width: 100%;
  z-index: 9;
  height: max-content;
  border-radius: 30px;
  background: white;
  /* margin-top: 5rem; */
}

.modal-content {
  border: none;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px,
    rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}

.modal_popup {
  padding: 40px 40px 28px !important;
}

.modal-dialog-centered {
  min-height: auto;
}

.event_details_name {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.event_details_name i {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.phone-container {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid #4a0ab4;
  border-radius: 30px;
  width: 100%;
}

.phone-container select {
  position: absolute;
  left: 0;
  height: 100%;
  padding-left: 10px;
  padding-right: 5px;
  border: none;
  font-size: 16px;
  background: none;
  appearance: none;
  pointer-events: none;
}

.phone-container input[type="tel"] {
  font-size: 16px;
  border: none !important;
  border-radius: 5px;
  height: 54px;
  width: 100%;
  max-width: 300px;
}

.phone-container select:focus,
.phone-container input[type="tel"]:focus {
  outline: none;
}

.phone-container .nice-select {
  border: none !important;
  background: #eee !important;
  border-radius: 30px 0px 0px 30px !important;
}

.challange_cate {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/
.service-details__faq-box .accordion-item {
  position: relative;
  display: block;
  background-color: transparent;
  border: 1px solid rgba(var(--gsm-bdr-color-rgb), 0.2);
  background: var(--light-gray);
  border-radius: 20px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  margin-bottom: 37px;
}

.service-details__faq-box.faqsecbox .accordion-item {
  background: white !important;
  border: 1px solid var(--primary) !important;
}

.service-details__faq-box .accordion-item {
  border: none;
}

.service-details__faq-box .accordion-button {
  background: #ffffff00;
  border: none;
}

.service-details__faq-box .faq-one-accrodion .accrodion-title {
  padding: 20px;
  padding-left: 20px !important;
  padding-bottom: 0px;
  padding-top: 0px;
}

.service-details__faq-box .faq-one-accrodion .accrodion-title h4::before {
  display: none;
}

.service-details__faq-box .faq-one-accrodion__count {
  left: 6px !important;
  top: 48% !important;
}

.service-details__faq-box .faq-one-accrodion .accrodion-title h4 {
  margin: 0;
  padding-left: 20px;
}

.service-details__faq-box .accordion-button:not(.collapsed) {
  box-shadow: none !important;
}

.service-details__faq-box .accordion-button:focus {
  border-color: rgba(255, 0, 0, 0);
  box-shadow: none !important;
}

.service-details__faq-box.faqsecbox .accordion-button::after {
  color: #4a0ab4;
}

.service-details__faq-box .accordion-button::after {
  content: "\e915";
  font-family: "icomoon" !important;
  font-weight: 700;
  font-size: 13px;
  color: var(--black);
  position: absolute;
  top: 50%;
  right: 0;
  line-height: 15px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  text-align: center;
  width: 21px;
  height: 21px;
  background-image: none !important;
}

.service-details__faq-box .faq-one-accrodion .accrodion-content {
  padding: 0px 20px 20px 20px !important;
}

:where(.css-dev-only-do-not-override-190m0jy).ant-pagination
  .ant-pagination-options {
  display: none;
}

.rw-widget-picker,
.rw-widget-picker:focus {
  display: grid;
  overflow: hidden;
  min-height: 54px;
  background-color: #fff;
  border: 1px solid #4a0ab4;
  border-radius: 27px;
  outline: none;
  grid-template: 1fr / 1fr 1.9em;
  width: 100%;
}

.mobiledrop .rw-widget-picker:focus,
.mobiledrop .rw-widget-picker:focus-visible,
.mobiledrop .rw-widget-picker:active,
.mobiledrop .rw-widget-picker:hover,
.mobiledrop .rw-widget-picker:visited {
  box-shadow: inset 0 1px 1px rgb(255 255 255 / 8%);
  outline: 0;
  border: 0 !important;
}

.mobiledrop .rw-widget-picker {
  display: grid;
  overflow: hidden;
  min-height: 54px;
  background-color: #ffffff00;
  border: #ffffff00 1px solid;
  border-radius: 0;
  outline: none;
  grid-template: 1fr / 1fr 0.9em;
  width: 100%;
  box-shadow: inset 0 1px 1px rgb(255 255 255 / 8%);
}

.mobiledrop .rw-dropdown-list {
  width: 30%;
}

/* google button text */
.nsm7Bb-HzV7m-LgbsSe.jVeSEe.i5vt6e-Ia7Qfc.uaxL4e-RbRzK {
  opacity: 0 !important;
}

.rw-widget-input {
  color: #000000;
  background-color: #fff;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  background-clip: padding-box;
  width: inherit;
  border: 1px solid #4a0ab4 !important;
  border-radius: 50px !important;
  height: 54px;
}

.mobiledrop .rw-widget-picker {
  border: none !important;
}

.rw-state-focus .rw-widget-picker.rw-widget-input {
  box-shadow: none !important;
}

.rw-placeholder,
.rw-input::placeholder {
  color: #000000 !important;
}

.input-group:not(.has-validation)
  > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu) {
  border-top-right-radius: 30px !important;
  border-bottom-right-radius: 30px !important;
}

.xs-sidebar-widget {
  overflow: visible;
  overflow-y: visible;
}

.offcanvas-backdrop::before {
  position: relative;
  top: 0;
  left: 0;
  z-index: 1039;
  width: 100vw;
  height: 100vh;
  content: "";
  background-color: transparent !important;
}

.event-two__shape-1 {
  position: absolute;
  top: 0;
  right: -117px;
  z-index: -1;
}

@media only screen and (min-width: 280px) and (max-width: 990px) {
  .event-two__shape-1 {
    position: absolute;
    top: 0;
    right: 0 !important;
    z-index: -1;
  }
}

.btn-close {
  box-sizing: content-box;
  background: transparent url("../images/icon/close.png") center / 1em auto
    no-repeat;
  opacity: 1 !important;
  font-size: 13px;
  font-weight: 700;
}

.cross {
  color: #fff !important;
  font-size: 32px;
  opacity: 1 !important;
  font-weight: bold;
}

body {
  overflow: visible !important;
}

.offcanvas {
  background-color: var(--white) !important;
  /* width: 300px !important; */
}

.main-menu__list {
  list-style: none;
  padding-left: 0;
}

.main-menu__list li:nth-child(1) {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.main-menu__list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.main-menu__list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  line-height: 30px;
  color: var(--black);
  font-size: 14px;
  font-family: var(--gsm-font);
  font-weight: 500;
  height: 46px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.slot {
  display: none;
}

@media only screen and (max-width: 1199px) {
  .slot {
    display: block;
    position: relative;
    display: inline-block;
    font-size: 20px;
    color: var(--gsm-base);
    cursor: pointer;
    -webkit-transition: 500ms;
    transition: 500ms;
    background-color: transparent;
    border: none;
  }
}

/* new css add for checkout page date 04.12.2024 */
.checkoutsec,
.leadbannerbottomsec {
  padding: 90px 0px 90px;
  margin-top: 0px;
}

.payment-container .radio-label input[type="radio"] {
  display: none;
}

.subtittlecheck {
  font-size: 20px;
  font-weight: 600;
  position: relative;
  display: inline-block;
  line-height: 18px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}

.payment-container .radio-custom {
  width: 18px;
  height: 18px;
  border: 2px solid #ddd;
  border-radius: 50%;
  display: inline-block;
  position: relative;
}

.payment-container
  .radio-label
  input[type="radio"]:checked
  + .radio-custom::after {
  content: "";
  width: 10px;
  height: 10px;
  background: #2ecc71;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
}

.payment-container .card-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 20px;
}

.payment-container .card {
  background: white;
  border-radius: 10px;
  padding: 10px;
  width: 23%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  position: relative;
}

.payment-container,
.ticket-container {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 20px;
}

.payment-container .card input[type="radio"] {
  display: none;
}

.payment-container .card:has(input[type="radio"]:checked) {
  outline: 1px solid #480db6;
  /*  box-shadow: 0px 0px 20px 0px rgb(8 96 223 / 56%);*/
}

.payment-container .card-content {
  transition: background-color 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.payment-container .card-logo {
  margin-top: 1px;
}

.payment-container .card-logo i {
  color: #4016ba;
  font-size: 25px;
}

.payment-container .card-level {
  font-size: 16px;
  color: #4016ba;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 5px;
  text-align: center;
}

.payment-container .card-count {
  font-size: 18px;
  color: #000;
  font-weight: 500;
  text-transform: capitalize;
}

.ticket-container .ticket-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  border-radius: 8px;
  box-shadow: 1px 0px 13px 3px rgb(29 69 209 / 17%);
  padding: 20px;
  gap: 5px;
  width: 50%;
}

.ticketsection {
  display: flex;
  align-items: center;
  gap: 24px;
}

.ticket-container .card-content {
  display: flex;
  flex-direction: column;
}

.ticket-container .card-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
  color: #000;
}

.ticket-container .card-price {
  font-size: 16px;
  color: #000000e3;
  font-weight: 500;
}

.ticket-container.payment-container .card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ticket-container.payment-container .card {
  /* width: 100%; */
  justify-content: space-between;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.ticket-container.border-none .ticket-card {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.side-card-logo {
  height: 45px;
  margin-bottom: 1px;
  transition: outline 0.3s ease, box-shadow 0.3s ease;
  border-radius: 5px;
  padding: 0px;
}

.ticket-container.border-none {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  padding: 0px;
}

.checkoutsec .accordion-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 0px solid #3e1abc;
  font-size: 16px;
  font-weight: 600;
  color: #4611b8;
}

.checkoutsec .accordion-button::after {
  margin-left: 0;
}

.checkoutsec .total-badge {
  margin-left: 10px;
  background-color: #164fd7;
}

.checkoutsec .accordion-button:focus {
  z-index: 3;
  border-color: transparent;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0);
}

.checkoutsec .accordion-item {
  margin-bottom: -1px;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.paynow {
  display: inline-block;
  border-radius: 4px;
  background: var(--primary-gradient);
  border: none;
  color: #ffffff;
  text-align: center;
  font-size: 17px;
  padding: 16px;
  width: 100%;
  transition: all 0.5s;
  cursor: pointer;
  margin-top: 1rem;
}

button.paynow.addbtn {
  width: auto;
  margin: 0;
  height: auto;
  padding: 7px 20px;
}

button.paynow.addbtn span:after {
  content: "+";
}

button.paynow.removebtn {
  width: auto;
  margin: 0;
  height: auto;
  padding: 7px 20px;
}

button.paynow.removebtn span:after {
  content: "🗑";
}

.paynow span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.paynow span:after {
  content: "»";
  position: absolute;
  opacity: 0;
  top: 0;
  right: -15px;
  transition: 0.5s;
}

.paynow:hover span {
  padding-right: 15px;
}

.paynow:hover span:after {
  opacity: 1;
  right: 0;
}

.defaultul li::marker {
  content: "⇰ ";
  color: rgb(70 15 183);
  font-size: 20px;
}

.defaultul li {
  color: #000;
  font-size: 16px;
}

@media (max-width: 1199px) {
  .checkoutsec .row {
    gap: 24px 0px;
  }
}

@media (max-width: 992px) {
  .payment-container .card {
    width: 30%;
  }

  .payment-container .card-container {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .payment-container .card-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    width: auto;
    margin-bottom: 20px;
  }

  .payment-container .card {
    width: 46%;
  }

  .ticket-container.payment-container .card {
    width: 100%;
  }
}

@media (max-width: 580px) {
  .payment-container .card {
    width: 100%;
  }

  .subtittlecheck {
    font-size: 19px;
    line-height: 22px;
  }
}

.thanktsec {
  background: #fff;
  padding: 90px 0px 90px;
  margin-top: 0px;
}

.thanktsec .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.thanktsec .card {
  margin: 10px;
  border: none;
  background: transparent;
  display: flex;
  gap: 20px;
  padding: 5rem;
  text-align: center;
  max-width: 750px;
  width: 100%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
}

.thanktsec h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.thanktsec p {
  font-size: 1.2rem;
  margin-bottom: 0rem;
  color: #000;
}

@media (max-width: 768px) {
  .customheight-register,
  .customheight-login {
    height: 100%;
  }

  .thanktsec .card {
    padding: 2rem;
  }

  .thanktsec h1 {
    font-size: 2.2rem;
  }

  .thanktsec p {
    font-size: 1rem;
  }
}

button.paynow.home-btn {
  width: 40%;
}

button.paynow.home-btn span:after {
  content: "";
}

button.paynow.home-btn:hover span {
  padding-right: 0px;
}

button.paynow.home-btn:hover span:after {
  opacity: 1;
  right: -9px;
}

@media (max-width: 1399px) {
  .card-subtitle {
    font-size: 22px;
  }

  button.btn.mycustomebtn {
    width: 42px;
    height: 42px;
  }

  button.btn.mycustomebtn i {
    font-size: 22px;
  }
}

.testimonial-one__single.abouttestiitem {
  background: var(--light-gray);
}

.selected-name {
  margin-bottom: 10px;
  font-size: 17px;
  font-weight: 600;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
