/*
Main Style
*/

/*** Global CSS ***/

:root {
  --fontLato: "Lato", sans-serif;
  --white: #fff;
  --title: #222;
  --body: #444;
  --rating: #ffc107;
  --blue: #015fc9;
  --yellow: #fe9d3d;
  --ff5: #ff5a24;
  --2c2b: #2c2b49;
  --gray: #f2f7fc;
  --dd: #ddd;
  --dc: #dcdcdc;
  --777: #777;
  --f7: #f7f7f7;
  --f9: #f9f9f9;
  --e5: #e5e5e5;
  --26: #262626;
  --rating: #ff8a00;
  --red: #e84946;
  --orange: #e94341;
  --red2: #ff3333;
  --blue: #2e80ec;
  --overlay: #0a2640;
  --footer: #0f1530;
  --fd: #fdeaff;
  --db: #db3beb;
  --ef: #efffec;
  --4d: #4da627;
  --ff: #fff2ea;
  --f3: #f38035;
  --box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.06);
  --shadow-2: 0 6px 35px rgba(215, 216, 222, 0.3);
  --shadow-3: 0 10px 50px 0 rgba(26, 46, 85, 0.07);
  --Y5: translateY(-5px);
}

body {
  color: var(--body);
  overflow-x: hidden;
  font-size: 16px;
  font-family: var(--fontLato);
  font-weight: 400;
  line-height: 1.8;
  position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--title);
  font-family: var(--fontLato);
  font-weight: 700;
  line-height: auto;
}

html,
body {
  position: relative;
}
img {
  max-width: 100%;
}
a {
  text-decoration: none;
  color: var(--body);
  transition: 0.5s;
}
a:hover,
a:focus {
  color: var(--orange);
}

.section-padding {
  padding: 100px 0;
}

.section-heading {
  margin-bottom: 60px;
  display: block;
}
.section-heading span {
  font-size: 15px;
  color: var(--orange);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 5px;
  display: block;
}
.section-heading h2 {
  display: block;
  color: var(--title);
  margin-bottom: 7px;
  font-size: 32px;
}
.gray_section {
  background-color: var(--gray);
}
.gray_section .section-heading span {
  background: var(--white);
}
.mt100 {
  margin-top: 100px;
}
.mb-60 {
  margin-bottom: 60px;
}
.pt100 {
  padding-top: 100px;
}
.pb100 {
  padding-bottom: 100px;
}

/** Start Buttons **/
@keyframes MoveScaleUpInitial {
  to {
    transform: translate3d(0, -105%, 0) scale3d(1, 2, 1);
    opacity: 0;
  }
}

@keyframes MoveScaleUpEnd {
  from {
    transform: translate3d(0, 100%, 0) scale3d(1, 2, 1);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.main_btn {
  background: var(--orange);
  padding: 13px 16px 13px 18px;
  border-radius: 30px;
  color: var(--white);
  display: inline-block;
  border: 1px solid var(--orange);
  text-align: center;
  overflow: hidden;
  position: relative;
  font-weight: 500;
  transition: 0.5s;
  color: var(--white);
  font-size: 15px;
  z-index: 1;
}
.main_btn:hover {
  border-color: var(--26);
}

.main_btn::before {
  content: "";
  background-color: var(--26);
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  transition: 0.5s;
  z-index: -1;
}
.main_btn:hover::before {
  width: 100%;
}
.main_btn::after {
  width: 95%;
  height: 88%;
  content: "";
  border: 1px dashed var(--white);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  border-radius: 30px;
}
.main_btn:hover,
.main_btn:focus {
  color: var(--white);
}
.main_btn i {
  width: 32px;
  height: 32px;
  display: inline-block;
  line-height: 32px;
  background-color: var(--white);
  border-radius: 50%;
  color: var(--orange);
  padding-left: ;
  margin-left: 10px;
}
.white_btn {
  background-color: var(--white);
  color: var(--title);
}
.white_btn i {
  background-color: var(--26);
  color: var(--white);
  border-color: var(--26);
}
.white_btn:hover {
  color: var(--title);
}

/** End Buttons **/

/** Preloader **/
.preloader_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: var(--white);
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 99999;
  overflow-x: hidden;
  overflow-y: hidden;
}
.preloader {
  width: 80px;
  height: 80px;
  border: 3px solid var(--orange);
  border-radius: 50%;
  display: inline-block;
  position: relative;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}
.pre_logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.preloader::after {
  content: "";
  box-sizing: border-box;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-bottom-color: var(--orange);
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/** Start Header **/

#mar_header {
  padding: 25px 0;
}
.site_logo {
  width: 165px;
}
.site_logo a {
  display: block;
}
.main-menu {
  display: inline-block;
}

.main-menu ul {
  padding-left: 0;
  margin-bottom: 0;
}
.main-menu li {
  display: inline-block;
  margin-left: 38px;
  position: relative;
  line-height: 35px;
}
.main-menu li a {
  text-transform: uppercase;
  font-weight: 600;
  transition: 0.5s;
  font-size: 14px;
  color: var(--white);
  transition: 0.5s;
  position: relative;
}
.main-menu .sub-menu a:after,
.main-menu .has-child-items a:after {
  display: none;
}
.main-menu li a:after {
  content: "";
  position: absolute;
  width: 50px;
  height: 8px;
  background-image: url(../img/shapes/menuhover.svg);
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  transition: 0.5s;
  background-repeat: no-repeat;
  opacity: 0;
}
.main-menu li a:hover:after {
  width: 50px;
  opacity: 1;
}
.main-menu li a i {
  font-size: 14px;
  padding-left: 12px;
}
.main-menu li a:hover,
.main-menu li a:focus {
  color: var(--orange);
}
.main-menu li ul.sub-menu {
  position: absolute;
  min-width: 220px;
  padding: 0 20px;
  background: #fff;
  box-shadow: 0 3px 11px #0000001a;
  max-height: 0;
  -webkit-transform-origin: 0 0 0;
  transform-origin: 0 0 0;
  left: 0;
  right: auto;
  visibility: hidden;
  overflow: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: 99;
  top: 101%;
  text-align: left;
  display: block;
  border-radius: 4px;
}

.main-menu ul ul.sub-menu li {
  display: block;
  margin-left: 0;
}
.main-menu ul ul.sub-menu li a {
  font-size: 15px;
  display: block;
  line-height: 36px;
  text-transform: capitalize;
  color: var(--body);
}
.main-menu ul ul.sub-menu li a:hover {
  color: var(--orange);
}
.main-menu ul > li:hover ul.sub-menu {
  visibility: visible;
  max-height: 360px;
  padding: 15px 20px;
}

.sidebar__toggle {
  font-size: 32px;
  color: var(--white);
  cursor: pointer;
  display: flex;
}
/** End Header **/

/* Mobile Menu */
.fix-area {
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
}
.offcanvas__info {
  background: var(--white) none repeat scroll 0 0;
  border-left: 2px solid var(--dc);
  position: fixed;
  right: 0;
  top: 0;
  width: 400px;
  height: 100%;
  -webkit-transform: translateX(calc(100% + 80px));
  -moz-transform: translateX(calc(100% + 80px));
  -ms-transform: translateX(calc(100% + 80px));
  -o-transform: translateX(calc(100% + 80px));
  transform: translateX(calc(100% + 80px));
  -webkit-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  -moz-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  z-index: 99999;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
  overflow: hidden;
}
.offcanvas__info::-webkit-scrollbar {
  display: none;
}

.offcanvas__info.info-open {
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}

.offcanvas__wrapper {
  position: relative;
  height: 100%;
  padding: 30px 30px;
}
.offcanvas__top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 20px;
}
.offcanvas__wrapper .offcanvas__content .text {
  color: var(--text);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__close {
  text-align: center;
  color: var(--orange);
  position: relative;
  z-index: 9;
  cursor: pointer;
  transition: 0.5s;
  font-size: 23px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__close:hover,
.offcanvas__wrapper .offcanvas__content .offcanvas__close:focus {
  color: var(--orange);
}
.offcanvas__close button {
  border: none;
  background-color: transparent;
  padding: 0;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__close i {
  color: var(--title);
  transition: 0.5s;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__close i:hover {
  color: var(--orange);
}
.offcanvas__logo {
  width: 140px;
}

.offcanvas__overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  background: #151515;
  z-index: 900;
  top: 0;
  opacity: 0;
  visibility: hidden;
  right: 0;
}

.offcanvas__overlay.overlay-open {
  opacity: 0.8;
  visibility: visible;
}

@media (max-width: 450px) {
  .offcanvas__info {
    width: 300px;
  }
}
@media (max-width: 575px) {
  .offcanvas__wrapper {
    padding: 20px;
  }
}
::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

.mean-container a.meanmenu-reveal {
  display: none;
}

.mean-container .mean-nav {
  background: none;
  list-style: none;
  margin: 0;
}
.mean-container .mean-bar {
  padding: 0;
  min-height: auto;
  background: none;
}

.mean-container .mean-nav > ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
  display: block !important;
}

.mean-container a.meanmenu-reveal {
  display: none !important;
}

.mean-container .mean-nav ul li a {
  width: 100%;
  padding: 10px 0;
  color: var(--header);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  text-transform: capitalize;
  border-bottom: 1px solid var(--dc) !important;
  border: none;
}
.mean-container .mean-nav ul li a:hover {
  color: var(--orange);
}

.mean-container .mean-nav ul li a:last-child {
  border-bottom: 0;
}

.mean-container .mean-nav ul li a:hover {
  color: var(--orange);
}

.mean-container .mean-nav ul li a.mean-expand {
  margin-top: 5px;
  padding: 0 !important;
}

.mean-container .mean-nav ul li > a > i {
  display: none;
}

.mean-container .mean-nav ul li > a.mean-expand i {
  display: inline-block;
  font-size: 18px;
}

.mean-container .mean-nav > ul > li:first-child > a {
  border-top: 0;
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transition: all 0.4s ease-in-out;
}

.mean-container .mean-nav ul li .mega-menu li a {
  height: 200px;
  width: 100%;
  padding: 0;
  border-top: 0;
  margin-bottom: 20px;
}
/** End Mobile Menu**/

/** Slider **/

.mar_slider {
  overflow: hidden;
  position: relative;
  z-index: 1;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.mar_slider:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: var(--overlay);
  opacity: 0.8;
  left: 0;
  top: 0;
  z-index: -1;
}

.mar_slider .swiper-slide {
  opacity: 0 !important;
  transition: opacity 0.6s ease;
  z-index: 0;
}

.mar_slider .swiper-slide.swiper-slide-active {
  opacity: 1 !important;
  z-index: 1;
}
.tr_slider .swiper-wrapper {
}
.slider_item {
  padding: 150px 0 80px;
  position: relative;
  background-size: cover;
  z-index: 1;
  color: var(--white);
}

.slider_item h1.heading {
  color: var(--white);
  font-size: 52px;
  margin-bottom: 25px;
  line-height: 72px;
}
.slider_item h1.heading span {
  color: var(--orange);
}
.slider_item p {
  margin-bottom: 40px;
  font-size: 17px;
}
.slider_social {
  list-style-type: none;
  display: flex;
  gap: 18px;
  padding-left: 0;
  margin-bottom: 0;
  margin-top: 15px;
}
.slider_social li a {
  color: var(--white);
  font-size: 18px;
  transition: 0.5s;
}
.slider_social li a:hover,
.slider_social li a:focus {
  color: var(--orange);
}

.slider_image {
  width: 55%;
}
.vbtn {
  display: block;
  position: absolute;
  z-index: 99;
  left: 34%;
  bottom: 39%;
}
.vbtn:focus {
  border: none;
  box-shadow: none;
  outline: none;
  border-radius: 50%;
}
.vbtn img {
  width: 80px;
}

.sshape_1 {
  left: 50px;
  bottom: 30px;
  width: 180px;
}
.sshape_2 {
  right: 70px;
  top: 66px;
  width: 170px;
}
.harrows {
  position: absolute;
  top: 50%;
  left: 2%;
  transform: translateY(-50%);
  display: inline-block;
  width: auto;
  z-index: 11;
}
.harrows div {
  margin: 5px 0;
}
.harrows img {
  width: 45px;
}

/** End Home Banner **/

/* Active Animation  */

.active_animation {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.mar_slider .swiper-slide-active .heading {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

.mar_slider .swiper-slide-active p {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

.mar_slider .swiper-slide-active .main_btn {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

.mar_slider .swiper-slide-active .slider_social {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
.mar_slider .swiper-slide-active .slider_image {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

/*
* ----------------------------------------------------------------------------------------
* Start About Section
* ----------------------------------------------------------------------------------------
*/

.about-us {
  background-size: cover;
}
.about_image {
}
.abshape_1,
.abshape_2 {
  width: 48px;
}
.abshape_1 {
  left: -17px;
  top: -21px;
}
.abshape_2 {
  right: -13px;
  bottom: -28px;
}
.about_content .section-heading {
  margin-bottom: 20px;
}
.about_content .main_btn {
  margin-top: 15px;
}

/*
* ----------------------------------------------------------------------------------------
* Start Features 
* ----------------------------------------------------------------------------------------
*/

.features {
  padding-top: 50px;
}
.feature_slider {
}
.feature_item {
  text-align: center;
  padding: 30px 20px;
  border: 1px solid var(--dc);
  border-radius: 10px;
  transition: 0.5s;
  margin-bottom: 30px;
}
.feature_item.swiper-slide-active {
  box-shadow: 0 14px 27px rgba(0, 0, 0, 0.03);
  border-color: var(--orange);
}
.feature_item img {
  width: 60px;
  display: inline-block;
  margin-bottom: 15px;
}
.feature_item h3 {
  font-size: 20px;
}
.feature_item p {
  margin-bottom: 0;
}
.feature-pagination {
  text-align: center;
}
.feature-pagination span {
  position: relative;
  width: 8px;
  height: 8px;
  margin: 5px 10px !important;
  opacity: 1;
  background: var(--dc);
}
.feature-pagination span::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border: 1px solid var(--dd);
  border-radius: 50%;
  left: -4px;
  top: -4px;
}
.feature-pagination span.swiper-pagination-bullet-active {
  background-color: var(--orange);
  box-shadow: 0 4px 17px rgba(0, 0, 0, 0.06);
}
.feature-pagination span.swiper-pagination-bullet-active:after {
  background: #fff;
  z-index: -1;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

/** ----------------------------------------------------------------------------------------
* Start Programs
* ----------------------------------------------------------------------------------------
*/
.programs {
  position: relative;
  background-color: var(--red2);
  z-index: 1;
}
.programs::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url("../img/bg/prog_overlay.png");
  background-color: rgba(250, 250, 250, 0.96);
  background-repeat: no-repeat;
  background-size: cover;
  left: 0;
  top: 0;
  z-index: -1;
}
.program-image {
  position: relative;
  border: 2px dashed var(--dd);
  padding: 12px;
  border-radius: 15px;
}
.program-image img {
  border-radius: 15px;
}
.pnumber {
  position: absolute;
  background: var(--orange);
  color: var(--white);
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  text-align: center;
  left: -13px;
  top: -13px;
  z-index: 1;
  transition: 0.5s;
}
.program_item:hover .pnumber {
  background-color: var(--white);
  color: var(--orange);
}
.program_content {
}
.program_content h3 {
  font-size: 22px;
  margin-bottom: 15px;
}
.program_content p {
  margin-bottom: 10px;
}
.program_content a,
.blog_btn {
  text-decoration: underline;
  color: var(--orange);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
}

/*
* ----------------------------------------------------------------------------------------
* Pricing
* ----------------------------------------------------------------------------------------
*/
.pricing_item.active {
  border-color: var(--orange);
}
.pricing_item {
  border: 1px solid var(--dc);
  border-radius: 15px;
  padding: 40px 0;
  margin-bottom: 30px;
}
.pricing_item:last-child {
  margin-bottom: 0;
}
.pricing_item h3 {
  font-size: 20px;
  margin-bottom: 0;
}
.pricing_item ul {
  list-style-type: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px 30px;
  padding-left: 0;
  margin-bottom: 0;
}
.pricing_item ul li {
}
.pricing_item ul li i {
  color: var(--orange);
  padding-right: 4px;
}
.pricing_item .price {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}
.pricing_item .price span {
  font-size: 16px;
  font-weight: 400;
}
.pricing_item.active .main_btn {
  background-color: var(--orange);
  border-color: var(--orange);
}

/*
* ----------------------------------------------------------------------------------------
* Events
* ----------------------------------------------------------------------------------------
*/

.event_slider {
  overflow: hidden;
  padding-top: 10px;
}
.event_item {
  padding-top: 5px;
  transition: 0.5s;
}
.event_img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  position: relative;
  margin-bottom: 35px;
  background-size: cover;
  background-position: center center;
}
.event_img::before {
  width: 225px;
  height: 225px;
  border: 2px dashed var(--dc);
  border-radius: 50%;
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.event_img::after {
  background-color: var(--overlay);
  border-radius: 50%;
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: 0.5s;
}
.event_item:hover .event_img:after {
  opacity: 0.5;
}
.event_img .evn_btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: var(--orange);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 14px;
  opacity: 0;
  transition: 0.5s;
  z-index: 1;
}
.evn_btn:hover {
  background: var(--white);
  color: var(--orange);
}
.event_item:hover .evn_btn {
  opacity: 1;
}
.event_content h4 {
  font-size: 20px;
}
.event_content h4 a {
  color: var(--title);
}
.event_content h4 a:hover {
  color: var(--orange);
}
.event_content p {
  margin-bottom: 0;
}
.event_content span {
  color: var(--orange);
}

/*
* ----------------------------------------------------------------------------------------
* Start Events Details
* ----------------------------------------------------------------------------------------
*/

.event_details {
}
.evd_img {
  border-radius: 15px;
}
.event_details h1,
.event_details h2,
.event_details h3,
.event_details h4,
.event_details h5,
.event_details h6 {
  margin-bottom: 15px;
}
.event_details ul {
  padding-left: 15px;
}
.event_info ul {
  list-style-type: none;
  padding-left: 0;
}
.event_sidebar {
  filter: drop-shadow(0px 0px 24px rgba(3, 31, 66, 0.1));
  background: var(--white);
  padding: 10px;
  margin-left: 30px;
  border-radius: 10px;
}
.event_info .evd p {
  float: right;
}
.event_speaker {
  margin-top: 50px;
  margin-left: 30px;
}

.single_speaker {
  border: 1px solid #ddd;
  padding: 40px;
  border-radius: 10px;
  margin-bottom: 25px;
}
.event_sidebar h3,
.event_speaker h3 {
  font-size: 22px;
  margin-bottom: 25px;
}

.evicon {
  padding-right: 10px;
}
.single_speaker h4 {
  font-size: 20px;
  margin-bottom: 11px;
  display: block;
}
.single_speaker span {
  font-size: 15px;
  border: 1px solid #ddd;
  padding: 2px 12px;
  display: inline-block;
  border-radius: 4px;
  background: rgba(125, 190, 72, 0.03);
  color: var(--orange);
}
.speaker_img {
  width: 170px;
  height: 170px;
  background-size: cover;
  border-radius: 50%;
  display: inline-block;
  margin-bottom: 12px;
  background-position: center;
}
.event_info {
  padding: 25px 25px;
}
.event_info ul {
  list-style-type: none;
  margin-bottom: 30px;
}
.event_info li h5 {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  padding-left: 3px;
  color: var(--body);
}
.event_info li span {
  font-weight: 500;
}
.event_info li {
  border-bottom: 1px solid #ddd;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.event_info li p {
  margin-bottom: 0;
}
.event_info li i {
  color: var(--orange);
}
.event_info li:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.event_info .bg-btn {
  width: 100%;
}

/*
* ----------------------------------------------------------------------------------------
* Team
* ----------------------------------------------------------------------------------------
*/
.team_item {
  position: relative;
  border-radius: 15px;
  border: 1px solid var(--dc);
  padding: 35px 0;
}

.team_img:after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--orange);
  position: absolute;
  left: 0;
  top: -50%;
  border-radius: 50%;
  opacity: 0;
  transition: 0.5s;
}
.team_img:before {
  content: "";
  width: 90%;
  height: 90%;
  border: 1px dashed var(--white);
  position: absolute;
  left: 0;
  top: -50%;
  border-radius: 50%;
  opacity: 0;
  transition: 0.5s;
  z-index: 1;
}
.team_item:hover .team_img:after {
  opacity: 0.8;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.team_item:hover .team_img:before {
  opacity: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.team_img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  display: inline-block;
  margin-bottom: 15px;
  position: relative;
  transition: 0.5s;
}
.team_img ul {
  position: absolute;
  left: 0;
  top: -50%;
  padding-left: 0;
  margin: 0;
  z-index: 99;
  width: 100%;
  opacity: 0;
  transition: 0.5s;
}
.team_img ul li {
  display: inline-block;
  margin: 0 5px;
}
.team_img ul li a {
  color: var(--title);
  display: inline-block;
  width: 28px;
  height: 28px;
  line-height: 28px;
  border-radius: 50%;
  background: var(--white);
  font-size: 14px;
}
.team_img ul li a:hover {
  color: var(--white);
  background: var(--title);
}
.team_item:hover .team_img ul {
  opacity: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.team_item p {
  margin-bottom: 0;
}
.team_item h3 {
  font-size: 20px;
  margin-bottom: 5px;
}
.team_item p {
  font-size: 14px;
  color: var(--orange);
  text-transform: uppercase;
}

/*
* ----------------------------------------------------------------------------------------
* Testimonial
* ----------------------------------------------------------------------------------------
*/
.testimonial {
  position: relative;
  background-size: cover;
  z-index: 1;
  background-repeat: no-repeat;
  overflow: hidden;
}
.testimonial_images {
  overflow: hidden;
  text-align: center;
  margin-bottom: 30px;
}
.testimonial_images img {
  display: inline-block;
  border-radius: 300px;
  width: 100%;
}
.testimonial_images .swiper-slide {
  position: relative;
  cursor: pointer;
}
.testimonial_images .swiper-slide:after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--overlay);
  border-radius: 300px;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.5;
  transition: 0.5s;
}
.testimonial_images .swiper-slide-active:after {
  opacity: 0;
}
.testimonial::after {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--overlay);
  opacity: 0.85;
  left: 0;
  top: 0;
  position: absolute;
  z-index: -1;
}
.testimonial_item {
  color: var(--white);
}
.testimonial_item p {
  font-size: 18px;
  font-style: italic;
  margin-bottom: 30px;
  position: relative;
  margin-bottom: 15px;
  width: 60%;
  display: inline-block;
}
.client_info h4 {
  color: var(--white);
  margin-bottom: 0px;
}
.client_info span {
  color: var(--orange);
}
.testimonial_slider {
  overflow: hidden;
}
.testimonial-pagination {
  text-align: center;
  margin-top: 9px;
}
.testimonial-pagination .swiper-pagination-bullet {
  background-color: var(--white);
}
.testimonial-pagination .swiper-pagination-bullet-active {
  background-color: var(--orange);
}

/*
* ----------------------------------------------------------------------------------------
* Counter UP
* ----------------------------------------------------------------------------------------
*/

.counterup_inner {
  border: 1px solid var(--dc);
  padding: 0 0;
  border-radius: 15px;
  background-color: var(--white);
  position: relative;
  z-index: 1;
  background: var(--white);
}
.counter_item {
  text-align: center;
  border-right: 1px solid var(--dc);
  padding: 40px 0;
}
.border-0 {
  border: none;
}
.counter_item h3 {
  font-size: 40px;
  color: var(--orange);
  margin-bottom: 5px;
}
.counter_item p {
  margin-bottom: 0;
}
.counter_shape {
  width: 130px;
  top: -45px;
  left: -45px;
}

/* ----------------------------------------------------------------------------------------
* Start Blog
* ----------------------------------------------------------------------------------------
*/
.blog_item {
}
.blog_img {
  border: 2px dashed var(--dd);
  border-radius: 15px;
  padding: 12px;
}
.blog_img img {
  width: 100%;
}
.blog_img,
.program-image {
  position: relative;
  transition: 0.5s;
}
.blog_img::before,
.program-image::before {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--orange);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: 0.5s;
  z-index: 1;
  border-radius: 15px;
}
.program_item:hover .program-image:before {
}
.blog_item:hover .blog_img::before,
.program_item:hover .program-image:before {
  opacity: 0.8;
}
.blog_img img {
  border-radius: 15px;
}

.blog_content h3 {
  font-size: 22px;
  margin-bottom: 10px;
  line-height: 32px;
}
.blog_content h3 a {
  color: var(--title);
}
.blog_content h3 a:hover {
  color: var(--orange);
}
.blog_content p {
  margin-bottom: 10px;
}
.blog_meta {
  color: var(--body);
  font-size: 15px;
  margin-bottom: 5px;
}
.blog_meta span {
  padding-right: 10px;
}
.blog_meta i {
  color: var(--orange);
  padding-right: 4px;
}

/* ----------------------------------------------------------------------------------------
* Start Clients
* ----------------------------------------------------------------------------------------
*/
.divider {
  width: 100%;
  height: 1px;
  background: var(--dc);
}
.clients {
  padding-bottom: 60px;
}
.client_slider {
  overflow: hidden;
  padding-top: 50px;
}

/* ----------------------------------------------------------------------------------------
* Start Clients
* ----------------------------------------------------------------------------------------
*/

/*	----------------------------------------------------------------------------------------
* Start Footer
* ----------------------------------------------------------------------------------------
*/
.foot_logo {
  width: 150px;
  margin-bottom: 15px;
  display: block;
}
.footer_widget {
  margin-bottom: 30px;
}
.footer_widget a:hover {
  color: var(--orange);
}
.footer_widget ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
  line-height: 34px;
}
.social_link {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
  margin-top: 15px;
}
.social_link li {
  display: inline-block;
  margin-right: 8px;
}
.social_link li a {
  color: var(--title);
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 15px;
  transition: 0.5s;
  border-radius: 50%;
  background: var(--white);
  display: block;
  text-align: center;
  transition: 0.5s;
}
.social_link li a:hover {
  background: var(--orange);
  color: var(--white);
}
.mar_footer {
  background: var(--footer);
  padding: 80px 0 30px;
  color: var(--white);
  position: relative;
  z-index: 1;
}
.footer-title {
  font-size: 17px;
  color: var(--white);
  margin-bottom: 25px;
  position: relative;
  text-transform: uppercase;
}
.mar_footer a {
  color: var(--white);
  transition: 0.5s;
}
.footer_contact p {
  display: flex;
  gap: 15px;
}
.footer_contact i {
  font-size: 24px;
  color: var(--orange);
  align-self: center;
}
#newsletter_form input[type="email"] {
  width: 100%;
  height: 50px;
  margin-bottom: 20px;
  padding: 0 15px;
  transition: 0.5s;
  border-radius: 4px;
  border: 1px solid var(--white);
}
#newsletter_form input[type="email"]:focus {
  border-color: var(--blue);
  outline: none;
  box-shadow: 0;
}
#newsletter_form input[type="submit"],
#newsletter_form button {
  background: var(--orange);
  color: var(--white);
  border: none;
  height: 50px;
  padding: 0 25px;
  font-weight: 400;
  transition: 0.5s;
  width: 100%;
  border-radius: 4px;
}
.dwhite {
  background-color: rgba(215, 216, 222, 0.2);
}
.mar_copyright p {
  margin-bottom: 0;
}
.footer_stars {
  left: 7px;
  top: 45px;
  width: 72px;
}
.footer_fdots {
  right: 53%;
  bottom: 105px;
  width: 90px;
}
.footer_fcircle {
  right: 30px;
  top: 92px;
  width: 40px;
}
.footer_arrowsup {
  right: 33px;
  bottom: 100px;
}

/* ----------------------------------------------------------------------------------------
* Main Banner
* ----------------------------------------------------------------------------------------
*/

.main_banner {
  position: relative;
  background-size: cover;
  background-position: center center;
  z-index: 1;
  color: var(--white);
  padding: 190px 0 100px;
  background-size: cover;
}

.main_banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #000;
  opacity: 0.6;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.main_banner h1 {
  color: var(--white);
  text-transform: capitalize;
}
.main_banner p {
  margin-bottom: 0;
  background: var(--blue);
  display: inline-block;
  padding: 4px 18px;
  border-radius: 30px;
  font-size: 14px;
}
.main_banner a {
  display: inline-block;
}
.main_banner p i {
  top: 2px;
  position: relative;
}

/** ----------------------------------------------------------------------------------------
* Contact Us
* ----------------------------------------------------------------------------------------
*/

.cinfo-item {
  border: 1px solid var(--dc);
  padding: 30px 20px;
  border-radius: 10px;
  transition: 0.5s;
  background: var(--white);
  overflow: hidden;
}
.cinfo-item i {
  float: left;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  font-size: 22px;
  border-radius: 50%;
  border: 1px dashed var(--orange);
  margin-right: 26px;
  color: var(--orange);
}
.cinfo_content {
  float: left;
  overflow: hidden;
}
.cinfo_content h3 {
  font-size: 20px;
  margin-bottom: 8px;
}
.pt-70 {
  padding-top: 70px;
}
.contact_map iframe {
  width: 100%;
  border-radius: 15px;
}
.contact-form {
  background: #fafafa;
  padding: 30px;
  border-radius: 15px;
}
.contact-form ul {
  list-style-type: none;
  padding: 0;
  margin: 0 -12px;
}
.contact-form p {
  margin-bottom: 0;
}
.contact-form-wrap {
  margin-bottom: 20px;
  margin-left: -12px;
  margin-right: -12px;
}
.contact-form li {
  width: 50%;
  margin-bottom: 24px;
  float: left;
  padding-left: 12px;
  padding-right: 12px;
}
.contact-form li textarea {
  width: 100%;
  height: 130px;
}
.contact-form li:last-child {
  width: 100%;
}
.contact-form input {
  height: 50px;
  line-height: 50px;
  background: #f6f6f6;
  border: 1px solid #e4e4e4;
  border-radius: 4px;
  padding: 6px 19px;
  color: var(--body);
  width: 100%;
  transition: 0.5s;
}
.contact-form textarea {
  background: #f6f6f6;
  border: 1px solid #e4e4e4;
  border-radius: 4px;
  padding: 6px 19px;
  transition: 0.5s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--orange);
}

/** ----------------------------------------------------------------------------------------
* Blog Page	
* ----------------------------------------------------------------------------------------
*/

.blog_image img {
  border-radius: 15px;
}
.single-widget {
  margin-bottom: 30px;
  padding-left: 25px;
}
.single-widget ul {
  list-style-type: none;
  padding-left: 0;
}
.category-widget li {
  border: 1px solid var(--dc);
  padding: 4px 17px;
  border-radius: 4px;
  margin-bottom: 15px;
  position: relative;
  transition: 0.5s;
}

.category-widget li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: var(--orange);
  border-color: var(--orange);
  width: 0;
  height: 100%;
  transition: 0.5s;
  z-index: -1;
  border-radius: 4px;
}
.category-widget li:hover:before {
  width: 100%;
}
.category-widget li a {
  display: block;
  transition: 0.5s;
}
.category-widget li:hover a {
  color: var(--white);
}
.widget-title {
  font-size: 20px;
  margin-bottom: 20px;
}
.single-widget form {
  position: relative;
}
.single-widget a {
  transition: 0.5s;
}
.single-widget a:hover,
.single-widget a:focus {
  color: var(--orange);
}
.form-control {
  height: 45px;
}
textarea.form-control {
  height: 130px;
}
.form-control:focus {
  outline: inherit;
  box-shadow: inherit;
  border-color: var(--orange);
}
.single-widget form button {
  position: absolute;
  right: 0;
  top: 0;
  border: 1px solid var(--orange);
  height: 45px;
  width: 45px;
  border-radius: 0 5px 5px 0;
  background-color: var(--orange);
  color: var(--white);
}
.category-widget a {
  font-weight: 500;
  color: var(--title);
  font-size: 17px;
}
.ppost_widget {
}
.ppost_widget .pp_img {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  float: left;
  margin-right: 22px;
  background-size: cover;
}
.ppost_content {
  overflow: hidden;
}
.ppost_widget p {
  font-weight: 600;
  font-size: 17px;
  line-height: 25px;
  margin-bottom: 5px;
}
.ppost_widget p a {
  color: var(--title);
}
.ppost_widget span {
  color: #666;
  font-weight: 500;
}
.ppost_widget span i {
  color: var(--yellow);
  padding-right: 2px;
}
.ppost_widget li {
  margin-bottom: 25px;
}
.ppost_widget li:last-child {
  margin-bottom: 0;
}
.tags-clouds a {
  display: inline-block;
  padding: 1px 13px;
  background: var(--f7);
  margin-bottom: 11px;
  margin-right: 8px;
  border-radius: 4px;
  font-weight: 500;
  transition: 0.5s;
}
.tags-clouds a:hover,
.tags-clouds a:focus {
  background: var(--orange);
  color: var(--white);
}

.mart-pagination {
  margin-top: 60px;
  border-top: 1px solid var(--dd);
  border-bottom: 1px solid var(--dd);
  padding: 20px 0;
}
.mart-pagination a,
.mart-pagination span {
  display: inline-block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  background: var(--f7);
  color: var(--title);
  font-weight: 500;
  margin-right: 15px;
  transition: 0.5s;
  font-size: 17px;
  border-radius: 50%;
  text-align: center;
}
.mart-pagination a i {
  font-size: 15px;
}
.mart-pagination a:hover,
.mart-pagination .current,
.mart-pagination span {
  background: var(--orange);
  color: var(--white);
}

/*
* ----------------------------------------------------------------------------------------
* Comment
* ----------------------------------------------------------------------------------------
*/

.comments {
  padding-top: 40px;
}
.comment-list {
  padding-left: 0;
}
.bdtitle {
  margin-bottom: 25px;
  font-size: 24px;
}
.comment-list,
.comment {
  list-style-type: none;
}
.com-img {
  margin-right: 48px;
  position: relative;
}
.com-img h4 {
  font-size: 18px;
  margin-top: 15px;
  margin-bottom: 0;
}
.com-img h4 a {
  color: var(--title);
}
.cdate {
  font-size: 15px;
}
.creplay {
  position: absolute;
  top: 50px;
  right: -13px;
  width: 35px;
  height: 35px;
  line-height: 35px;
  border-radius: 50%;
  color: var(--white);
  background: var(--orange);
  font-size: 16px;
  text-align: center;
}

.creplay:hover,
.creplay:focus {
  color: var(--white);
}
.com-img img {
  border-radius: 50%;
  width: 100px;
}
li.comment {
  display: block;
}
.comments .children {
  padding-left: 30px;
}
.single-comment {
  overflow: hidden;
  border: 1px solid #d9d9d9;
  padding: 35px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.comment-form {
  padding-top: 30px;
}
.comment-form .form-control {
}
.comment-form label {
  padding-bottom: 5px;
  cursor: pointer;
  color: var(--title);
  font-weight: 500;
}
.name_email {
  gap: 25px;
}

.comment-form p {
  margin-bottom: 25px;
}
.name_email p {
  width: 50%;
}
#submit {
  background-color: var(--orange);
  border: 1px solid var(--orange);
  color: var(--white);
  padding: 10px 35px;
  border-radius: 30px;
  transition: 0.5s;
  font-weight: 600;
  font-size: 17px;
}

#submit:hover,
#submit:focus {
  color: var(--white);
  background-color: var(--orange);
  border-color: var(--orange);
}

/* ----------------------------------------------------------------------------------------
* 404 Page
* ----------------------------------------------------------------------------------------
*/

.pnf_content {
  border: 2px dashed var(--dc);
  padding: 80px;
  border-radius: 15px;
}
.pnf_content h2 {
  font-size: 40px;
  margin-bottom: 20px;
}
.pnf_content p {
  font-size: 18px;
  margin-bottom: 20px;
}

/* MAPA */
.tours-map .tm_map_wrap {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 24px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  background: #0d1224;
  aspect-ratio: 2 / 1; /* Mercator/Equirect → 2:1 */
}
.tours-map .tm_world_map_img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain; /* mantiene márgenes si la proporción cambia */
  object-position: center;
  opacity: 0.95;
  pointer-events: none; /* los clics pasan a los pines */
}
.tours-map .tm_pins {
  position: absolute;
  inset: 0;
}

/* Pin */
.tours-map .tm_pin {
  position: absolute;
  width: 16px;
  height: 16px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #ff3b3b;
  box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.6);
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, background 0.2s ease;
}
.tours-map .tm_pin:hover,
.tours-map .tm_pin:focus {
  outline: none;
  transform: translate(-50%, -50%) scale(1.15);
}
.tours-map .tm_pin.active {
  background: #00d084;
  box-shadow: 0 0 0 10px rgba(0, 208, 132, 0.15);
}

/* Carrusel de clubes */
.tours-map .tm_clubs {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 24px;
}
.tours-map .tm_carousel {
  margin-top: 16px;
}
.tours-map .club_card {
  background: #0f1530;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 16px 14px;
  text-align: center;
  height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.tours-map .club_logo {
  width: 78px;
  height: 78px;
  margin-bottom: 10px;
  object-fit: contain;
}
.tours-map .club_name {
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  font-size: 14px;
}

/* Flechas/paginación */
.tours-map .tm_prev,
.tours-map .tm_next {
  position: static;
  display: inline-flex;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.tours-map .tm_prev::after,
.tours-map .tm_next::after {
  font-size: 16px;
  color: #fff;
}

@media (max-width: 575px) {
  .tours-map .club_card {
    height: 160px;
  }
}
/* MAPA */

/* Seccion Requisitos */
.requirements .rd_card {
  background: linear-gradient(180deg, #0f1530 0%, #121a3a 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 24px 22px;
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.requirements .rd_card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.24);
  border-color: rgba(255, 255, 255, 0.16);
}
.requirements .rd_card--docs {
  background: linear-gradient(180deg, #101735 0%, #0e1430 100%);
}

.requirements .rd_header h3 {
  color: white;
}

.requirements .rd_header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.requirements .rd_emoji {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  font-size: 22px;
  line-height: 1;
  border-radius: 50%;
  background: radial-gradient(
      100% 100% at 50% 0%,
      rgba(255, 255, 255, 0.18) 0%,
      rgba(255, 255, 255, 0) 70%
    ),
    #1d2858;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.06),
    0 4px 12px rgba(0, 0, 0, 0.25);
}

.requirements .rd_list {
  list-style: none;
  padding-left: 0;
  margin: 10px 0 0;
}
.requirements .rd_list li {
  position: relative;
  padding-left: 34px;
  margin: 10px 0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.requirements .rd_list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.75);
  background: rgba(0, 208, 132, 0.2);
  box-shadow: 0 0 0 0 rgba(0, 208, 132, 0.4);
}
.requirements .rd_card--docs .rd_list li::before {
  background: rgba(59, 130, 246, 0.25); /* azul */
}
/* Estado visible (lo activa el JS por item) */
.requirements .rd_list li.show {
  opacity: 1;
  transform: translateY(0);
}

/* Giras */
/* === Próximas Giras (cards) — v2 === */
.tours_next .tour_card {
  background: radial-gradient(
      120% 80% at 100% 0%,
      rgba(255, 255, 255, 0.08) 0%,
      rgba(255, 255, 255, 0) 60%
    ),
    #0f1734;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  color: #e9eefb;
  overflow: hidden;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.tours_next .tour_card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.32);
  border-color: rgba(255, 255, 255, 0.18);
}
.tours_next .tour_head {
  padding: 22px 20px 6px;
}
.tours_next .tour_head h3 {
  color: #fff;
  margin: 0 0 6px;
}
.tours_next .tour_dates {
  opacity: 0.92;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tours_next .tour_chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-left: 0;
  list-style: none;
}
.tours_next .tour_chips li {
  display: grid;
  place-items: center;
  gap: 6px;
  min-width: 86px;
  padding: 10px 10px 8px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
}
.tours_next .chip_flag {
  width: 26px;
  height: 18px;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}

.tours_next .tour_actions {
  display: flex;
  justify-content: flex-end;
  padding: 10px 16px 8px;
}
.tours_next .tour_body {
  padding: 0 16px 18px;
}
.tours_next .tour_info h4 {
  color: #fff;
  margin: 12px 0 10px;
}

.tours_next .tour_swiper .swiper-slide {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 12px 10px;
  text-align: center;
}
.tours_next .tour_swiper img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
  margin: 0 auto 6px;
}
.tours_next .tour_swiper span {
  font-size: 0.9rem;
  display: block;
  opacity: 0.95;
}

.tours_next .tour_meta {
  list-style: none;
  padding-left: 0;
  margin: 14px 0 0;
}
.tours_next .tour_meta li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0;
  opacity: 0.95;
}
.tours_next .tour_actions {
  justify-content: flex-start;
  margin-bottom: 18px;
}

/* Campamento */
/* === Próximos Campamentos === */
.camps_next .camp_mediacard {
  background: #0f1734;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.28);
}
.camps_next .camp_media {
  position: relative;
  min-height: 340px;
  border-radius: 24px;
  overflow: hidden;
  background: radial-gradient(
      100% 60% at 100% 0%,
      rgba(255, 255, 255, 0.08) 0%,
      rgba(255, 255, 255, 0) 60%
    ),
    #0f1734;
}
.camps_next .camp_media_el {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.camps_next .camp_media_el.is-visible {
  opacity: 1;
}
.camps_next .camp_overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 18px 20px;
  background: linear-gradient(
    180deg,
    rgba(10, 14, 30, 0) 0%,
    rgba(10, 14, 30, 0.75) 56%,
    rgba(10, 14, 30, 0.95) 100%
  );
  color: #fff;
}
.camps_next #campTitle {
  color: #fff;
  margin: 0 0 4px;
}
.camps_next #campSubtitle {
  margin: 0 0 10px;
  opacity: 0.95;
}
.camps_next .camp_badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  backdrop-filter: blur(4px);
}

/* Lista de países */
.camps_next .camp_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.camps_next .camp_tile {
  display: grid;
  grid-template-rows: auto auto auto;
  align-content: start;
  gap: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: #e9eefb;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 12px 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
  text-align: center;
  min-height: 104px;
}
.camps_next .camp_tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
  border-color: rgba(255, 255, 255, 0.24);
}
.camps_next .camp_tile.active {
  outline: 2px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 12px 28px rgba(0, 128, 255, 0.25);
}
.camps_next .camp_flag {
  width: 28px;
  height: 20px;
  object-fit: cover;
  border-radius: 3px;
  margin: 0 auto 4px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}
.camps_next .camp_tile span {
  font-weight: 800;
  color: #fff;
}
.camps_next .camp_tile small {
  opacity: 0.9;
}
@media (max-width: 991.98px) {
  .camps_next .camp_media {
    min-height: 280px;
  }
  .camps_next .camp_grid {
    grid-template-columns: 1fr 1fr;
  }
}
/* Orden y separación */
.camps_next .camp_list {
  margin-top: 8px;
}

/* Tarjetas de países con mejor contraste */
.camps_next .camp_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.camps_next .camp_tile {
  display: grid;
  grid-template-rows: auto auto auto;
  align-content: start;
  gap: 6px;
  background: #0f1734; /* NUEVO: fondo oscuro legible */
  color: #e9eefb;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  padding: 14px 12px;
  text-align: center;
  min-height: 108px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease,
    background 0.2s ease;
}
.camps_next .camp_tile span {
  color: #fff;
  font-weight: 800;
}
.camps_next .camp_tile small {
  color: #dbe6ff;
  opacity: 0.95;
}
.camps_next .camp_tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  border-color: rgba(255, 255, 255, 0.28);
}
.camps_next .camp_tile.active {
  outline: 2px solid rgba(0, 168, 255, 0.45);
  box-shadow: 0 14px 36px rgba(0, 168, 255, 0.22);
}

.camps_next .camp_flag {
  width: 28px;
  height: 20px;
  object-fit: cover;
  border-radius: 3px;
  margin: 0 auto 4px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* Responsivo */
@media (max-width: 767.98px) {
  .camps_next .camp_grid {
    grid-template-columns: 1fr;
  }
  .camps_next .camp_media {
    min-height: 260px;
  }
}
@media (min-width: 1200px) {
  .camps_next .camp_grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Contacto */
/* Visor multimedia */
.contact_hero {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #0f1734;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.28);
}
.contact_media {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
}
.contact_overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 18px 20px;
  color: #fff;
  background: linear-gradient(
    180deg,
    rgba(9, 13, 28, 0) 0%,
    rgba(9, 13, 28, 0.6) 40%,
    rgba(9, 13, 28, 0.9) 100%
  );
}
.contact_overlay h3 {
  margin: 6px 0 6px;
  color: #fff;
}
.contact_overlay p {
  margin: 0;
  opacity: 0.95;
}
.contact_overlay .badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 10px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(4px);
}

/* Card/form moderno */
.card-modern {
  background: #0f1734;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.24);
}
.form-modern {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form-modern .field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-modern label {
  color: #cfe2ff;
  font-weight: 700;
  font-size: 0.95rem;
}
.form-modern input,
.form-modern select,
.form-modern textarea {
  width: 100%;
  background: #0b132b;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  padding: 12px 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-modern textarea {
  min-height: 140px;
}
.form-modern input::placeholder,
.form-modern textarea::placeholder {
  color: rgba(255, 255, 255, 0.55);
}
.form-modern input:focus,
.form-modern select:focus,
.form-modern textarea:focus {
  outline: none;
  border-color: rgba(0, 170, 255, 0.65);
  box-shadow: 0 0 0 3px rgba(0, 170, 255, 0.18);
}

/* Ajustes de botones dentro del card */
.card-modern .main_btn {
  align-self: flex-start;
}

/* WhatsApp */
/* === Floating WhatsApp Button (global) === */
.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.smsa-whatsapp {
  --wa-green: #25d366;
  --wa-green-dark: #1fa955;
  position: fixed;
  left: max(18px, env(safe-area-inset-left));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 9999;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--wa-green);
  color: #fff;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35),
    0 0 0 2px rgba(255, 255, 255, 0.08) inset;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  isolation: isolate; /* para el pulso detrás */
}
.smsa-whatsapp:hover,
.smsa-whatsapp:active {
  color: #fff;
}

/* Icono */
.smsa-whatsapp .ph {
  font-size: 30px;
  line-height: 1;
}

/* Pulso */
.smsa-whatsapp::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.65);
  opacity: 0.65;
  transform: scale(1);
  z-index: -1;
  animation: smsa-wa-pulse 2.2s ease-out infinite;
}

@keyframes smsa-wa-pulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  60% {
    transform: scale(1.9);
    opacity: 0;
  }
  100% {
    transform: scale(1.9);
    opacity: 0;
  }
}

.smsa-whatsapp:hover {
  transform: translateY(-2px) scale(1.04);
  background: var(--wa-green-dark);
}
.smsa-whatsapp:active {
  transform: scale(0.98);
}
.smsa-whatsapp:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.25),
    0 14px 30px rgba(0, 0, 0, 0.35);
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .smsa-whatsapp::before {
    animation: none;
    opacity: 0.25;
  }
  .smsa-whatsapp {
    transition: none;
  }
}

/* Tamaño en móviles */
@media (max-width: 576px) {
  .smsa-whatsapp {
    width: 56px;
    height: 56px;
  }
  .smsa-whatsapp .ph {
    font-size: 26px;
  }
}
