/* ---------------------------------------------
Table of contents
------------------------------------------------
01. font & reset css
02. reset
03. global styles
04. header
05. banner
06. features
07. testimonials
08. contact
09. Miscelaneous
19. footer

--------------------------------------------- */
/* 
---------------------------------------------
font & reset css
--------------------------------------------- 
*/
@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
/* 
---------------------------------------------
reset
--------------------------------------------- 
*/


:root {
  --xanthous: #F4B93Bff;
  --yellow-green: #B1D62Cff;
  --black: #030300ff;
  --ash-gray: #B1BDB6ff;
  --battleship-gray: #74776Bff;
  --black-2: #000000ff;
  --moonstone: #16535f;
  --dark-slate-gray: #436265ff;
  --black-3: #090906ff;
  --olive: #7C6F33ff;
  --rose-white: #f9f5f4;
  --moonstonev2: #227480;
  --rose-whitev2: #f9f5f4;
  --moonstone-light: #16535f;
  --curve: 10;
  --surface-color: #f0f0f0;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
div pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
figure,
header,
nav,
section,
article,
aside,
footer,
figcaption {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

/* .clearfix:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.clearfix {
  display: inline-block;
}

html[xmlns] .clearfix {
  display: block;
}

* html .clearfix {
  height: 1%;
} */


header,
nav,
section,
article,
aside,
footer,
hgroup {
  display: block;
}



@media (max-width: 768px) {
  .header-text h1 {
    font-size: 32px;
  }

  .shadow__btn {
    padding: 8px 16px;
  }
}

* {
  box-sizing: border-box;
}

html,
body {
  font-family: Comfortaa, sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

a {
  text-decoration: none !important;
}

.text-heading-h1 {
  font-family: Comfortaa;
  font-weight: bolder !important;
  font-size: 38px !important;
  color: #191817;
  margin-left: 0px;
  margin-right: 0px;
}

.text-heading-h2 {
  font-family: Comfortaa;
  font-weight: bolder !important;
  font-size: 38px !important;
  color: #191817;
  margin-left: 0px;
  margin-right: 0px;
}

.link-moonstone {
  color: var(--moonstone);
  font-weight: bold;
}


h1,
h2,
h3,
h4,
h5,
h6 {
  font-style: normal;
  font-optical-sizing: auto;
  color: #030300ff;
  margin-top: 0px;
  margin-bottom: 0px;
  font-weight: 700px;
}

h3{
  margin-top: 0px !important;
}

ul {
  margin-bottom: 0px;
}

p {
  font-size: 14px;
  line-height: 28px;
  color: #4a4a4a;
}
/* 
img {
  width: 100%;
  overflow: hidden;
} */

/* 
---------------------------------------------
Global Styles
--------------------------------------------- 
*/
html,
body {
  font-family: Comfortaa, sans-serif;
  background-color: #FFF !important;
}

::selection {
  background: var(--moonstone);
  color: #FFF;
}

::-moz-selection {
  background: var(--moonstone);
  color: #FFF;
}

.section {
  padding-top: 30px;
  margin-top: 120px;
}

.section-heading {
  margin-bottom: 60px;
}

.section-heading h2 {
  font-size: 36px;
  font-weight: 600;
  text-transform: capitalize;
  margin: 20px 0px 100px 0px;
  line-height: 44px;
}

.section-heading h2 em {
  color: var(--moonstone);
  font-style: normal;
}

.section-heading h6 {
  color: var(--moonstone);
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
}

.main-button a {
  display: inline-block;
  background-color: #FFF;
  color: var(--moonstone);
  font-size: 14px;
  font-weight: 500;
  height: 40px;
  line-height: 40px;
  padding: 0px 25px;
  border-radius: 20px;
  transition: all .3s;
}

.main-button a:hover {
  background-color: var(--moonstone);
  color: #FFF;
}

/* 
---------------------------------------------
Pre-loader Style
--------------------------------------------- 
*/

.js-preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.99);
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  z-index: 9999;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}

.js-preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@-webkit-keyframes dot {
  50% {
    -webkit-transform: translateX(96px);
    transform: translateX(96px);
  }
}

@keyframes dot {
  50% {
    -webkit-transform: translateX(96px);
    transform: translateX(96px);
  }
}

@-webkit-keyframes dots {
  50% {
    -webkit-transform: translateX(-31px);
    transform: translateX(-31px);
  }
}

@keyframes dots {
  50% {
    -webkit-transform: translateX(-31px);
    transform: translateX(-31px);
  }
}

.preloader-inner {
  position: relative;
  width: 142px;
  height: 40px;
  background: transparent;
}

.preloader-inner .dot {
  position: absolute;
  width: 16px;
  height: 16px;
  top: 12px;
  left: 15px;
  background: var(--moonstone);
  border-radius: 50%;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-animation: dot 2.8s infinite;
  animation: dot 2.8s infinite;
}

.preloader-inner .dots {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  margin-top: 12px;
  margin-left: 31px;
  -webkit-animation: dots 2.8s infinite;
  animation: dots 2.8s infinite;
}

.preloader-inner .dots span {
  display: block;
  float: left;
  width: 16px;
  height: 16px;
  margin-left: 16px;
  background: var(--moonstone);
  border-radius: 50%;
}

.bg-banner {
  background-color: #FFF;
}

/* 
---------------------------------------------
Header Style
--------------------------------------------- 
*/

.background-header {
  background-color: var(--moonstone) !important;
  border-radius: 0px 0px 25px 25px;
  /* height: 80px!important; */
  /* position: fixed!important; */
  top: 0 !important;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15) !important;

}

.header-area {
  position: absolute;
  background-color: transparent;
  top: 40px;
  left: 0;
  right: 0;
  z-index: 100;
  /* -webkit-transition: all .5s ease 0s;
  -moz-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
  transition: all .5s ease 0s; */
}


.text-moonstone {
  color: var(--moonstone);
}

.text-rose-white {
  color: #FFF;
}

/* 
---------------------------------------------
Banner Style
--------------------------------------------- 
*/


.main-banner {
  background: #FFF;
  z-index: 1;
  padding: 80px 0px 80px 0px;
  background-attachment: fixed;
}

.main-banner-one-e {
  background: #FFF;
  z-index: 1;
  padding: 100px 0px 0px 0px;
  background-attachment: fixed;
}



.main-banner-two-e {
  background-image: url(/background-forms.svg);
  z-index: 1;
  /* padding: 100px 0px 100px 0px; */
  background-attachment: fixed;
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: cover;
}

.main-banner-third-e {
  background-image: url(/background-forms.svg);
  z-index: 1;
  padding: 100px 0px 100px 0px;
  background-attachment: fixed;
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: cover;
}


/* Main banner educators */
.main-banner-home {
  background-image: url(/moonstone_waves_2.svg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0px 80px 0px;
  background-attachment: fixed;
  position: relative;
  z-index: 1;
  margin-top: -150px;
  /* Ajusta este valor para la superposición */
  padding-top: 250px;
  /* Ajusta este valor para la superposición */
}

.main-banner-educators {
  background-image: url(/moonstone_waves_2.svg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 20px 0px 80px 0px;
  background-attachment: fixed;
  position: relative;
  z-index: 1;
}


.main-banner-adventages {

  background-image: url(/moonstone_waves_2.svg);
  /* background-position: right bottom; */
  background-repeat: no-repeat;
  background-size: cover;
  padding: 50px 0px 50px 0px;
  background-attachment: fixed;
}

.main-banner-educators-2v {
  background-image: url(/moonstone_waves_2.svg);
  /* background-position: right bottom; */
  background-repeat: no-repeat;
  background-size: cover;
  padding: 120px 0px 30px 0px;
  background-attachment: fixed;
}

.main-banner-adventures {
  background: var(--rose-whitev2);
  z-index: 1;
  padding: 100px 0px 0px 0px;
  background-attachment: fixed;
}

.adventures {
  padding: 0px 0px 50px 0px;
}


.main-banner .item-1 {

  background-image: url(/banner-item-01.jpg);
}

.main-banner .item-2 {

  background-image: url(/banner-item-02.jpg);
}

.main-banner .item-3 {

  background-image: url(/banner-item-03.jpg);
}

.main-banner .carousel-item {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  border-radius: 25px;
  padding: 100px 100px;
  margin-left: 130px;
}

.main-banner .carousel-item span.category {
  background-color: var(--moonstone);
  color: #FFF;
  font-size: 14px;
  text-transform: uppercase;
  padding: 5px 15px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 50px;
}

.main-banner .carousel-item h2 {
  font-size: 48px;
  font-weight: 700;
  color: #FFF;
  line-height: 70px;
  width: 60%;
  margin-bottom: 40px;
}

.main-banner .carousel-item p {
  color: #FFF;
  width: 65%;
}

.main-banner .carousel-item .buttons {
  display: flex;
  margin-top: 50px;
}

.main-banner .carousel-item .buttons .main-button {
  margin-right: 30px;
}

.main-banner .carousel-item .buttons .main-button a {
  font-size: 14px;
  color: var(--moonstone);
  background-color: #FFF;
  display: inline-block;
  height: 50px;
  line-height: 50px;
  padding: 0px 25px;
  border-radius: 25px;
  font-weight: 500;
}

.main-banner .carousel-item .buttons .icon-button i {
  color: var(--moonstone);
  background-color: #FFF;
  display: inline-block;
  height: 50px;
  width: 50px;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  margin-right: 10px;
  font-size: 16px;
}

.main-banner .carousel-item .buttons .icon-button a {
  color: #FFF;
  font-size: 14px;
  font-weight: 500;
}

.main-banner .owl-nav {
  position: absolute;
  max-width: 1320px;
  bottom: 23px;
  left: 0;
  text-align: right;
}

.main-banner .owl-nav .owl-prev i,
.main-banner .owl-nav .owl-next i {
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 24px;
  display: inline-block;
  color: #FFF;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  opacity: 1;
  transition: all .3s;
}

.main-banner .owl-nav .owl-prev i {
  position: absolute;
  bottom: 65px;
}

.main-banner .owl-nav .owl-prev i:hover,
.main-banner .owl-nav .owl-next i:hover {
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.5);
}


/* 
---------------------------------------------
Services Style
--------------------------------------------- 
*/

.services .service-item:hover .icon img {
  margin-top: -10px;
}

.services .service-item {
  position: relative;
  margin-top: 95px;
}

.services .service-item .icon {
  width: 190px;
  height: 190px;
  display: inline-block;
  text-align: center;
  line-height: 190px;
  background-color: var(--moonstone);
  border-radius: 50%;
  position: absolute;
  right: 0;
  top: -95px;
}

.services .service-item .icon img {
  max-width: 86px;
  transition: all .2s;
}

.services .service-item .main-content {
  border-radius: 25px;
  padding: 85px 20px 30px 20px;
  background-color: #f1f0fe;
  margin-bottom: 30px;
  margin-right: 80px;
  transition: all .4s;
}

.services .service-item h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 30px;
  transition: all .4s;
}

.services .service-item p {
  color: #4a4a4a;
  /* margin-bottom: 25px; */
}

/* 
---------------------------------------------
About Style
--------------------------------------------- 
*/

.about-us {
  position: relative;
  padding: 0px;
  margin-top: 130px;
}

.about-us:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  width: 84%;
  height: 100%;
  background-color: #f1f0fe;
  content: '';
  border-top-left-radius: 500px;
  border-bottom-left-radius: 500px;
}

/* .accordion {
  margin-top: -40px;
  margin-bottom: -40px;
  background-color: var(--moonstone);
  border-radius: 40px;
  padding: 80px 50px 50px 50px;
} 

.accordion-item {
  background-color: #FFF;
  border-radius: 40px !important;
  margin-bottom: 30px;
  border: none;
}

.accordion-item .accordion-button {
  outline: none;
  box-shadow: none;
  border-radius: 40px !important;
}

.accordion-button:not(.collapsed) {
  color: var(--moonstone);
  background-color: #FFF;
}

h2.accordion-header button {
  padding: 15px 25px;
  font-family: 'Comfortaa';
  font-size: 16px;
  font-weight: 600;
}

.accordion-button::after {
  font-size: 18px;
  font-weight: 500;
  background-image: none;
  content: '+';
  width: 30px;
  height: 30px;
  display: inline-block;
  text-align: center;
  line-height: 30px;
  border-radius: 50%;
  background-color: var(--moonstone);
  color: #FFF;
}

.accordion-button:not(.collapsed)::after {
  background-image: none;
  line-height: 32px;
  content: '-';
}

.accordion-body {
  padding: 0px 25px 30px 25px;
  font-size: 14px;
  line-height: 28px;
  color: #4a4a4a;
} */
*/ .about-us .section-heading {
  margin-left: 60px;
  margin-bottom: 0px;
}

.about-us .section-heading .main-button {
  margin-top: 50px;
}


/* 
---------------------------------------------
Courses Style
--------------------------------------------- 
*/
/* .courses {
  margin-top: 160px;
}

.event_filter {
  text-align: center;
}

.event_filter {
  background-color: #f1f0fe;
  border-radius: 50px;
  padding: 15px 40px;
  list-style: none;
  margin: 0 auto 70px;
  max-width: max-content;
}

.event_filter li {
  display: inline-block;
  margin: 0px 20px;
}

.event_filter li a {
  font-size: 14px;
  font-weight: 500;
  color: #1e1e1e;
  transition: all .3s;
}

.event_filter li .event_filter li a.is_active,
.event_filter li a:hover {
  color: #7a6ad8;
}

.events_item .thumb {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
}

.events_item .thumb img {
  margin-bottom: -5px;
}

.events_item .thumb span.category {
  position: absolute;
  left: 30px;
  top: 30px;
  font-size: 14px;
  text-transform: uppercase;
  color: #7a6ad8;
  background-color: rgba(250, 250, 250, 0.95);
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 500;
  display: inline-block;
}

.events_item .thumb span.price {
  position: absolute;
  right: -30px;
  top: -50px;
  background-color: rgba(122, 106, 216, 0.95);
  width: 130px;
  height: 130px;
  border-radius: 50%;
  display: inline-block;
  transition: all .3s;
}

.events_item .thumb span.price h6 {
  margin-top: 72px;
  margin-left: 22px;
  font-size: 28px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 700;
}

.events_item .thumb span.price em {
  font-size: 18px;
  font-weight: 500;
  font-style: normal;
  vertical-align: top;
}

.events_item {
  background-color: #f1f0fe;
  border-radius: 25px;
  margin-bottom: 30px;
  position: relative;
  justify-content: center;
  align-items: center;
}

.events_item .down-content {
  padding: 20px 30px 25px 30px;
}

.events_item .down-content span.author {
  color: #7a6ad8;
  font-size: 15px;
  display: inline-block;
  margin-bottom: 6px;
}

.events_item .down-content h4 {
  font-size: 22px;
  font-weight: 600;
  transition: all .3s;
}

.events_item:hover .down-content h4 {
  color: #7a6ad8;
}

.events_item:hover .thumb span.price {
  transform: scale(1.2);
} */



/* 
---------------------------------------------
Facts Style
--------------------------------------------- 
*/

.fun-facts {
  position: relative;
  padding: 100px 0px 80px 0px;
  overflow: hidden;
}

.fun-facts:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 95%;
  height: 100%;
  background-color: var(--moonstone);
  content: '';
  border-top-right-radius: 500px;
  border-bottom-right-radius: 500px;
}

.fun-facts:after {
  background: url(/contact-dec-01.png);
  position: absolute;
  left: 15%;
  opacity: 0.5;
  top: 0;
  width: 318px;
  height: 119px;
  content: '';
  z-index: 2;
}

.fun-facts .counter {
  text-align: center;
  margin-bottom: 40px;
}

.fun-facts h2 {
  color: #FFF;
  font-size: 48px;
  font-weight: 700;
}

.fun-facts h2::after {
  content: '';
  margin-left: 5px;
}

.fun-facts p {
  color: #FFF;
  font-size: 15px;
  font-weight: 500;
  margin-top: 15px;
}


/* 
---------------------------------------------
Team Style
--------------------------------------------- 
*/

.team {
  margin-top: 100px;
  padding-top: 140px;
}

.team-member {
  position: relative;
}

.team-member img {
  max-width: 220px;
  border-radius: 50%;
  position: absolute;
  top: -110px;
  left: 50%;
  transform: translateX(-50%);
  transition: all .3s;
}

.team-member:hover img {
  top: -120px;
}

.team-member .main-content {
  border-radius: 25px;
  padding: 150px 15px 20px 15px;
  background-color: #FFF;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.team-member .main-content span.category {
  color: var(--moonstone);
  font-size: 15px;
}

.team-member .main-content h4 {
  font-size: 21px;
  font-weight: 700;
  margin-top: 8px;
  margin-bottom: 15px;
}

.team-member .main-content p {
  flex-grow: 1;
  /* Permite que el párrafo ocupe el espacio disponible */
}

.team-member .main-content ul li {
  display: inline-block;
  margin: 0px 2px;
}

.team-member .main-content ul li a {
  background-color: #FFF;
  color: var(--moonstone);
  display: inline-block;
  text-align: center;
  line-height: 40px;
  font-size: 18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all .3s;
}

.team-member .main-content ul li a:hover {
  background-color: var(--moonstone);
  color: #FFF;
}

/* 
---------------------------------------------
Partners Style
--------------------------------------------- 
*/

.partner-logo {
  max-height: 100px;
  /* Adjust the max height as needed */
  width: auto;
  object-fit: contain;
  padding: 10px;
  /* Optional: Add some padding around the logos */
}

.carousel-item {
  transition: transform 0.5s ease-in-out;
}


/* 
---------------------------------------------
Testimonials Style
--------------------------------------------- 
*/


.testimonials {
  position: relative;
  padding: 80px 0px;
  margin-top: 150px;
  z-index: 1;
}

.testimonials:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  width: 65%;
  height: 100%;
  background-color: #f1f0fe;
  content: '';
  border-top-left-radius: 500px;
  border-bottom-left-radius: 500px;
}

.testimonials .section-heading {
  margin-bottom: 0px;
  margin-left: 60px;
  vertical-align: middle;
}

.testimonials .section-heading p {
  margin-top: 50px;
}

.testimonials .item {
  background-color: var(--moonstone);
  border-radius: 25px;
  padding: 80px;
}

.testimonials .item p {
  font-size: 18px;
  line-height: 40px;
  color: #FFF;
  font-style: italic;
  font-weight: 300;
  margin-bottom: 40px;
}

.testimonials .item img {
  border-radius: 50%;
  max-width: 100px;
  float: left;
  margin-right: 25px;
}

.testimonials .item span {
  display: inline-block;
  margin-top: 20px;
  font-size: 15px;
  color: #FFF;
}

.testimonials .item h4 {
  color: #FFF;
  font-size: 22px;
  font-weight: 600;
  margin-top: 8px;
}

.testimonials .owl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-5px);
  right: -25px;
  text-align: right;
}

.testimonials .owl-nav .owl-prev i,
.testimonials .owl-nav .owl-next i {
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 24px;
  display: inline-block;
  color: var(--moonstone);
  background-color: #FFF;
  border-radius: 50%;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.10);
  opacity: 1;
  transition: all .3s;
}

.testimonials .owl-nav .owl-prev i {
  position: absolute;
  bottom: 65px;
}

.testimonials .owl-nav .owl-prev i:hover,
.testimonials .owl-nav .owl-next i:hover {
  opacity: 1;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
}


/* 
---------------------------------------------
Events Style
--------------------------------------------- 
*/




/* 
---------------------------------------------
Contact Style
--------------------------------------------- 
*/

.contact-us {
  margin-top: 160px;
  position: relative;
  padding: 50px 0px;
  z-index: 1;
}

.contact-us:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 65%;
  height: 100%;
  background-color: #f1f0fe; /* Color de fondo */
  content: '';
  border-top-right-radius: 500px;
  border-bottom-right-radius: 500px;
}



.contact-us .section-heading {
  margin-right: 50px;
  margin-bottom: 0px;
}

.contact-us .section-heading p {
  margin-top: 50px;
}

.contact-us .special-offer {
  margin-top: 50px;
  background-color: #FFF;
  border-radius: 25px;
  padding: 30px 120px;
  display: inline-block;
  position: relative;
}

.contact-us .special-offer span.offer {
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--moonstone);
  width: 80px;
  padding: 30px 8px;
  line-height: 25px;
  height: 120px;
  border-radius: 15px 60px 60px 15px;
  display: inline-block;
  text-align: center;
  color: #FFF;
  font-size: 16px;
  text-transform: uppercase;
  text-align: left;
}

.contact-us .special-offer span.offer em {
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
}

.contact-us .special-offer h6 {
  font-size: 15px;
  color: #4a4a4a;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 15px;
}

.contact-us .special-offer h6 em {
  font-style: normal;
  color: var(--moonstone);
  font-weight: 600;
}

.contact-us .special-offer h4 {
  font-size: 22px;
  font-weight: 600;
}

.contact-us .special-offer h4 em {
  font-style: normal;
  color: var(--moonstone);
}

.contact-us .special-offer a {
  position: absolute;
  right: 30px;
  top: 35px;
  width: 50px;
  height: 50px;
  display: inline-block;
  text-align: center;
  line-height: 50px;
  background-color: var(--moonstone);
  color: #FFF;
  border-radius: 50%;
}

.contact-us .contact-us-content {
  border-radius: 15px;
  padding: 2px;
  background-color: var(--moonstone);
  position: relative;
  z-index: 1;
}

.contact-us .contact-us-content::before {
  background: url(/contact-dec-01.png);
  position: absolute;
  left: 50%;
  transform: translateX(-149px);
  opacity: 0.5;
  top: 0;
  width: 318px;
  height: 119px;
  content: '';
  z-index: 2;
}

.contact-us .contact-us-content::after {
  background: url(/contact-dec-02.png);
  position: absolute;
  right: 0;
  bottom: 0;
  width: 183px;
  height: 149px;
  content: '';
  z-index: 2;
}



/* 
---------------------------------------------
Misc Styles
--------------------------------------------- 
*/

/* BTN PRIMARY */


.btn-1 {
  background-color: #ffffff00;
  color: #fff;
  width: auto;
  height: 2.9em;
  border: #067bc0 0.2em solid;
  border-radius: 33px;
  transition: all 0.6s ease;
}

.btn-1:hover {
  background-color: #067bc0;
  cursor: pointer;
  border-radius: 5px;
  color: #fff;
}




/* BTN SECONDARY */

.btn-2 {
  background-color: #ffffff00;
  color: #fff;
  width: auto;
  height: 2.9em;
  border: #227480 0.2em solid;
  border-radius: 33px;
  transition: all 0.6s ease;
}

.btn-2:hover {
  background-color: #227480;
  cursor: pointer;
  border-radius: 5px;
  color: #fff;
}

/* BTN TERTIARY */

.btn-3 {
  background-color: #ffffff00;
  color: #fff;
  width: auto;
  height: 2.9em;
  border: #ff0000 0.2em solid;
  border-radius: 33px;
  transition: all 0.6s ease;
}

.btn-3:hover {
  background-color: #ff0000;
  cursor: pointer;
  border-radius: 5px;
  color: #fff;
}


/* FEATURED ICON */

.feature-icon {
  width: 4rem;
  height: 4rem;
  border-radius: .75rem;
}


/* GENERAL BUTTONS */
.btn-next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 5px;
  border: 1px solid #16535f;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  background-color: white;
  /* Asegura que el botón tenga un fondo */
  color: black;
  /* Color del texto del botón */
}


.btn-next>svg {
  margin-left: 5px;
  transition: transform 0.3s ease-in-out;
}

.btn-next:hover>svg {
  font-size: 1.2em;
  transform: translateX(6px);
}

.btn-next:hover {
  box-shadow: 10px 10px 40px #d1d1d1;
  transform: translateY(-5px);
}

.btn-last {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s linear;
  border-radius: 10px;
  border: 1px solid #16535f;
  padding: 5px 20px;
}

.btn-last>svg {
  margin-right: 5px;
  transition: all 0.4s ease-in;
}

.btn-last:hover>svg {
  font-size: 1.2em;
  transform: translateX(-6px);
}

.btn-last:hover {
  box-shadow: 10px 10px 40px #d1d1d1;
  transform: translateY(-5px);
}


/* .button {
  cursor: pointer;
  position: relative;
  padding: 10px 24px;
  font-size: 18px;
  color: var(--moonstone);
  border: 2px solid var(--moonstone);
  border-radius: 34px;
  background-color: transparent;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
  overflow: hidden;
}

.button::before {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  width: 50px;
  height: 50px;
  border-radius: inherit;
  scale: 0;
  z-index: -1;
  background-color: var(--moonstone);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.button:hover::before {
  scale: 10;
}

.button:hover {
  color: #FFF;
  scale: 1.1;
  box-shadow: 0 0px 20px var(--dark-slate-gray);
}

.button:active {
  scale: 1;
} */


/* BTN UP0 */

.backToTop {
  position: fixed;
  cursor: pointer;
  display: block;
  border: none;
  z-index: 1000;
  transition: all .3s cubic-bezier(0.175, 0.885, 0.32, 1.275);

  &:focus {
    outline: 0 !important;
  }

  &:before {
    font-family: "FontAwesome";
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.btt1 {
  visibility: hidden;
  background: #fff;
  height: 0px;
  width: 0px;
  overflow: hidden;
  border-radius: 50px;
  right: 20px;
  bottom: 16px;
  font-size: 0px;

  &:before {
    content: "\f077";
    padding-bottom: 3px;
  }

  &.show {
    color: #16535f;
    font-size: 25px;
    height: 60px;
    width: 60px;
    visibility: visible;
    box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.25);
  }
}


/* CARD SLIDER WRAPPER */
.card_wrapper {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 20px 0;
}

.head_text {
  font-family: Comfortaa;
  font-size: 2.5rem;
  /* Ajuste de tamaño de texto para responsividad */
}

.head_para {
  margin-top: 15px;
}

.card_box {
  background: #ffffff;
  margin-top: 40px;
  margin-bottom: 40px;
  transition: .3s;
}

.card_box:hover {
  box-shadow: 0px 4px 0px rgba(0, 0, 0, 0.05);
  transform: translateY(-10px);
}

.card_text {
  padding: 20px;
  /* Ajuste de padding para pantallas pequeñas */
}

.card_text h4 {
  font-size: 1.125rem;
  /* Ajuste de tamaño de texto para responsividad */
  color: var(--moonstone);
}

.card_text p {
  font-size: 0.875rem;
  /* Ajuste de tamaño de texto para responsividad */
  line-height: 1.5;
  margin-top: 10px;
  color: #23273A;
}

.slider_carousel .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
}

.slider_carousel .owl-prev,
.slider_carousel .owl-next {
  width: 40px;
  height: 40px;
  background: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  top: 50%;
}

.slider_carousel .owl-next {
  right: -50px;
}

.slider_carousel .owl-prev {
  left: -50px;
}


/* TEXT WAVY */

.mark-text {
  color: #16535f;
  font-weight: 800px;
}

/* MAGICAL BUTTON */

.btnMag {
  position: relative;
  padding: 12px 35px;
  background: #FFF;
  font-size: 22px;
  font-weight: 500;
  color: var(--moonstone);
  border: 3px solid var(--xanthous);
  border-radius: 34px;
  box-shadow: 0 0 0 rgb(138, 222, 233);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.star-1 {
  position: absolute;
  top: 20%;
  left: 20%;
  width: 25px;
  height: auto;
  filter: drop-shadow(0 0 0 #16535f);
  z-index: -5;
  transition: all 1s cubic-bezier(0.05, 0.83, 0.43, 0.96);
}

.star-2 {
  position: absolute;
  top: 45%;
  left: 45%;
  width: 15px;
  height: auto;
  filter: drop-shadow(0 0 0 #16535f);
  z-index: -5;
  transition: all 1s cubic-bezier(0, 0.4, 0, 1.01);
}

.star-3 {
  position: absolute;
  top: 40%;
  left: 40%;
  width: 5px;
  height: auto;
  filter: drop-shadow(0 0 0 #16535f);
  z-index: -5;
  transition: all 1s cubic-bezier(0, 0.4, 0, 1.01);
}

.star-4 {
  position: absolute;
  top: 20%;
  left: 40%;
  width: 8px;
  height: auto;
  filter: drop-shadow(0 0 0 #16535f);
  z-index: -5;
  transition: all 0.8s cubic-bezier(0, 0.4, 0, 1.01);
}

.star-5 {
  position: absolute;
  top: 25%;
  left: 45%;
  width: 15px;
  height: auto;
  filter: drop-shadow(0 0 0 #16535f);
  z-index: -5;
  transition: all 0.6s cubic-bezier(0, 0.4, 0, 1.01);
}

.star-6 {
  position: absolute;
  top: 5%;
  left: 50%;
  width: 5px;
  height: auto;
  filter: drop-shadow(0 0 0 #16535f);
  z-index: -5;
  transition: all 0.8s ease;
}

.btnMag:hover {
  background: transparent;
  color: var(--moonstone);
  box-shadow: 0 0 25px #F4B93B;
}

.btnMag:hover .star-1 {
  position: absolute;
  top: -80%;
  left: -30%;
  width: 25px;
  height: auto;
  filter: drop-shadow(0 0 10px #F4B93B);
  z-index: 2;
}

.btnMag:hover .star-2 {
  position: absolute;
  top: -25%;
  left: 10%;
  width: 15px;
  height: auto;
  filter: drop-shadow(0 0 10px #F4B93B);
  z-index: 2;
}

.btnMag:hover .star-3 {
  position: absolute;
  top: 55%;
  left: 25%;
  width: 5px;
  height: auto;
  filter: drop-shadow(0 0 10px #F4B93B);
  z-index: 2;
}

.btnMag:hover .star-4 {
  position: absolute;
  top: 30%;
  left: 80%;
  width: 8px;
  height: auto;
  filter: drop-shadow(0 0 10px #F4B93B);
  z-index: 2;
}

.btnMag:hover .star-5 {
  position: absolute;
  top: 25%;
  left: 115%;
  width: 15px;
  height: auto;
  filter: drop-shadow(0 0 10px #F4B93B);
  z-index: 2;
}

.btnMag:hover .star-6 {
  position: absolute;
  top: 5%;
  left: 60%;
  width: 5px;
  height: auto;
  filter: drop-shadow(0 0 10px #F4B93B);
  z-index: 2;
}

.fil0 {
  fill: #F4B93B;
  
}

/* Side sections */
.social-icons-left,
.social-icons-right {
  display: flex;
  padding: 2rem;
  flex-direction: column;
  align-items: center;
  margin: 0;
}

.social-icons-left i,
.social-icons-right i {
  margin: 10px 0;
}

.social-icons-left .vertical-line,
.social-icons-right .vertical-line {
  width: 1px;
  height: 30px;
  background-color: #000;
  margin: 0.5rem 0;
  border-left: 2px solid #000;
}

.social-icons-left .vertical-text,
.social-icons-right .vertical-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  letter-spacing: -1px;
  font-weight: bold;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  text-transform: uppercase;
  text-orientation: mixed;

}

/* Video container */
.video-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  margin-top: 20px;
  margin-bottom: -150px;
  /* Ajusta este valor para la superposición */
  z-index: 2;
  /* Asegura que el video esté por encima */
}

.video-content {
  width: 70%;
  /* Adjust the width as needed */
  border-radius: 4px;
}

.video-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.play-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  color: white;
}

/* SWIPERS */
/* ADEVNTURES SLIDERS HOME  */
.blog-slider {
  width:100%;
  position: relative;
  max-width: 1200px;
  margin: auto;
  background: #fff;
  box-shadow: 0px 14px 80px rgba(34, 35, 58, 0.2);
  padding: 25px;
  border-radius: 25px;
  height: 400px;
  transition: all .3s;
}
@media screen and (max-width: 992px) {
  .blog-slider {
    max-width: 680px;
    height: 400px;
  }
}
@media screen and (max-width: 768px) {
  .blog-slider {
    min-height: 500px;
    height: auto;
    margin: 180px auto;
  }
}
@media screen and (max-height: 500px) and (min-width: 992px) {
  .blog-slider {
    height: 420px;
  }
}
.blog-slider__item {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .blog-slider__item {
    flex-direction: column;
  }
}
.blog-slider__item.swiper-slide-active .blog-slider__img img {
  opacity: 1;
  transition-delay: .3s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > * {
  opacity: 1;
  transform: none;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(1) {
  transition-delay: 0.3s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(2) {
  transition-delay: 0.4s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(3) {
  transition-delay: 0.5s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(4) {
  transition-delay: 0.6s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(5) {
  transition-delay: 0.7s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(6) {
  transition-delay: 0.8s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(7) {
  transition-delay: 0.9s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(8) {
  transition-delay: 1s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(9) {
  transition-delay: 1.1s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(10) {
  transition-delay: 1.2s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(11) {
  transition-delay: 1.3s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(12) {
  transition-delay: 1.4s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(13) {
  transition-delay: 1.5s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(14) {
  transition-delay: 1.6s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(15) {
  transition-delay: 1.7s;
}
.blog-slider__img {
  width: 300px;
  flex-shrink: 0;
  height: 300px;
  /* background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(22,83,95,1) 0%, rgba(24,89,101,1) 3%, rgba(51,163,179,1) 34%, rgba(54,170,186,1) 100%); */
  /* box-shadow: 4px 13px 30px 1px rgba(252, 56, 56, 0.2); */
  border-radius: 20px;
  transform: translateX(-80px);
  overflow: hidden;
}
.blog-slider__img:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(22,83,95,1) 0%, rgba(24,89,101,1) 3%, rgba(51,163,179,1) 34%, rgba(54,170,186,1) 100%); */
  border-radius: 20px;
  opacity: 0.8;
}
.blog-slider__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  border-radius: 20px;
  transition: all .3s;
}
@media screen and (max-width: 768px) {
  .blog-slider__img {
    transform: translateY(-50%);
    width: 90%;
  }
}
@media screen and (max-width: 576px) {
  .blog-slider__img {
    width: 95%;
  }
}
@media screen and (max-height: 500px) and (min-width: 992px) {
  .blog-slider__img {
    height: 270px;
  }
}
.blog-slider__content {
  padding-right: 25px;
}
@media screen and (max-width: 768px) {
  .blog-slider__content {
    margin-top: -80px;
    text-align: center;
    padding: 0 30px;
  }
}
@media screen and (max-width: 576px) {
  .blog-slider__content {
    padding: 0;
  }
}
.blog-slider__content > * {
  opacity: 0;
  transform: translateY(25px);
  transition: all .4s;
}
.blog-slider__code {
  color: #7b7992;
  margin-bottom: 15px;
  display: block;
  font-weight: 500;
}
.blog-slider__title {
  font-size: 24px;
  font-weight: 700;
  color: #0d0925;
  margin-bottom: 20px;
}
.blog-slider__text {
  color: #4e4a67;
  margin-bottom: 30px;
  line-height: 1.5em;
}
.blog-slider__button {
  display: inline-flex;
  background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(22,83,95,1) 0%, rgba(24,89,101,1) 3%, rgba(51,163,179,1) 34%, rgba(54,170,186,1) 100%);
  padding: 15px 35px;
  border-radius: 50px;
  color: #fff;
  /* box-shadow: 0px 14px 80px rgba(252, 56, 56, 0.4); */
  text-decoration: none;
  font-weight: 500;
  justify-content: center;
  text-align: center;
  letter-spacing: 1px;
}
@media screen and (max-width: 576px) {
  .blog-slider__button {
    width: 100%;
  }
}
.blog-slider .swiper-container-horizontal > .swiper-pagination-bullets, .blog-slider .swiper-pagination-custom, .blog-slider .swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}
.blog-slider__pagination {
  position: absolute;
  z-index: 21;
  right: 20px;
  width: 11px !important;
  text-align: center;
  left: auto !important;
  top: 50%;
  bottom: auto !important;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .blog-slider__pagination {
    margin-top: -40px;
    transform: translateX(-50%);
    left: 50% !important;
    top: 205px;
    width: 100% !important;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.blog-slider__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 8px 0;
}
@media screen and (max-width: 768px) {
  .blog-slider__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 5px;
  }
}
.blog-slider__pagination .swiper-pagination-bullet {
  width: 11px;
  height: 11px;
  display: block;
  border-radius: 10px;
  background: #062744;
  opacity: 0.2;
  transition: all .3s;
}
.blog-slider__pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--moonstone);
  height: 30px;
  /* box-shadow: 0px 0px 20px rgba(252, 56, 56, 0.3); */
}
@media screen and (max-width: 768px) {
  .blog-slider__pagination .swiper-pagination-bullet-active {
    height: 11px;
    width: 30px;
  }
}

.autoplay-progress {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 10;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: var(--moonstone);
}
    
.autoplay-progress svg {
  --progress: 0;
  position: absolute;
  left: 0;
  top: 0px;
  z-index: 10;
  width: 100%;
  height: 100%;
  stroke-width: 4px;
  stroke: var(--moonstone);
  fill: none;
  stroke-dashoffset: calc(125.6px * (1 - var(--progress)));
  stroke-dasharray: 125.6;
  transform: rotate(-90deg);
}

.swiper-slide {
  text-align: left !important;
  font-size: 18px;
  /* background: #fff; */
  /* display: flex; */
  /* justify-content: center; */
  align-items: center;
  display: flex !important; /* Cambia el display */
}

.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: 50% !important; 
  left: 0;
  width: 100%;
}
/* Scrollbar Styles */


::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #F5F5F5;
  border-radius: 10px;
}

::-webkit-scrollbar {
  width: 6px;
  background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb {
  background-color: var(--moonstone);
  background-image: -webkit-linear-gradient(45deg,
      rgba(255, 255, 255, .2) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, .2) 50%,
      rgba(255, 255, 255, .2) 75%,
      transparent 75%,
      transparent)
}

/* scrollbar-color: rgb(122, 153, 217) #F5F5F5;
scrollbar-width: thin; */

/* SSHADOW BTN */

.shadow__btn {
  padding: 10px 20px;
  border: none;
  font-size: 17px;
  color: #FFF;
  border-radius: 7px;
  letter-spacing: 4px;
  font-weight: 700;
  text-transform: uppercase;
  transition: 0.5s;
  transition-property: box-shadow;
}

.shadow__btn {
  background: rgb(0, 140, 255);
  box-shadow: 0 0 25px rgb(0, 140, 255);
}

.shadow__btn:hover {
  box-shadow: 0 0 5px rgb(0, 140, 255),
    0 0 25px rgb(0, 140, 255),
    0 0 50px rgb(0, 140, 255),
    0 0 100px rgb(0, 140, 255);
}


/* EMEBED */

.challenge_presentation {
  padding-bottom: 56.25%;
  position: relative;
  display: block;
  width: 100%
}

/* 
---------------------------------------------
Footer Style
--------------------------------------------- 
*/


/* 
footer {
  margin-top: 150px;
  position: relative;
  background-color: var(--moonstone);
  vertical-align: middle;
  min-height: 150px;
  border-radius: 150px 150px 0px 0px;
}

footer p {
  text-align: center;
  line-height: 150px;
  color: #FFF;
  font-weight: 400;
}

footer p a {
  color: #FFF;
  transition: all .3s;
  position: relative;
  z-index: 3;
}

footer p a:hover {
  opacity: 0.75;
}

footer::before {
  background: url(/contact-dec-01.png);
  position: absolute;
  left: 30px;
  transform: rotate(180deg);
  opacity: 1;
  bottom: 0;
  width: 318px;
  height: 119px;
  content: '';
  z-index: 2;
} */

/* 
---------------------------------------------
Responsive Style
--------------------------------------------- 
*/
body {
  overflow-x: hidden;
}

@media (max-width: 767px) {
  .header-area {
    top: 0px;
  }

  .header-area .main-nav .logo h1 {
    border-right: none;
  }

  .main-banner .carousel-item {
    padding: 80px 30px 120px 30px !important;
  }

  .main-banner .owl-nav {
    left: 30px !important;
  }

  .event_filter {
    padding: 15px 20px;
  }

  .event_filter li {
    display: inline-block;
    margin: 0px 10px;
  }
}

@media (max-width: 992px) {

  .header-area .main-nav #search,
  .header-area .main-nav #search i {
    display: none;
  }

  .header-area .main-nav .logo h1 {
    font-size: 34px;
  }

  .header-area .main-nav .logo {
    border-right: none;
  }

  .main-banner {
    padding-top: 100px;
  }

  .main-banner .carousel-item {
    padding: 100px 60px 140px 60px;
    margin-left: 0px;
    text-align: center;
  }

  .main-banner .carousel-item h2,
  .main-banner .carousel-item p {
    width: 100%;
  }

  .main-banner .carousel-item h2 {
    font-size: 36px;
    line-height: 50px;
  }

  .main-banner .carousel-item .buttons {
    display: inline-block;
    text-align: center;
  }

  .main-banner .carousel-item .buttons .main-button {
    margin-right: 0px;
    margin-bottom: 30px;
  }

  .main-banner .owl-nav {
    left: 50% !important;
    transform: translateX(-60px) !important;
    bottom: 60px;
  }

  .main-banner .owl-nav .owl-prev i {
    bottom: 0px;
  }

  .main-banner .owl-nav .owl-next i {
    bottom: 0px;
    position: absolute;
    left: 65px;
  }

  .services {
    margin-top: 80px;
  }

  .about-us {
    margin-top: 100px;
  }

  /* .accordion {
    padding: 40px 25px 10px 25px;
  } */
  .services .service-item .icon {
    width: 170px;
    height: 170px;
    line-height: 170px;
  }

  .about-us .section-heading {
    margin-left: 0px;
    margin-top: 120px;
  }

  .about-us::before,
  .testimonials::before,
  .contact-us::before {
    display: none;
  }

  .about-us .section-heading p,
  .testimonials .section-heading p,
  .contact-us .section-heading p {
    margin-top: 30px;
  }

  .about-us .section-heading .main-button {
    margin-top: 30px;
  }

  .about-us .main-button a {
    background-color: #7a6ad8;
    color: #fff;
  }

  .courses {
    margin-top: 100px;
  }

  .event_filter ul li {
    display: block;
    margin: 12px 5px;
  }

  .fun-facts {
    margin-top: 70px;
  }

  .fun-facts::before {
    width: 95%;
  }

  .team {
    margin-top: 160px;
  }

  .team-member {
    margin-bottom: 140px;
  }

  .testimonials {
    margin-top: -50px;
    padding: 0px;
  }

  .testimonials .section-heading {
    margin-left: 0px;
    margin-top: 40px;
  }

  .testimonials .carousel-item {
    padding: 40px 40px 60px 40px;
  }

  .testimonials .carousel-item h4 {
    font-size: 17px;
  }

  .testimonials .carousel-item img {
    margin-right: 15px;
  }

  .testimonials .owl-nav {
    display: none;
  }

  .events {
    margin-top: 80px;
  }

  .events .carousel-item {
    margin-bottom: 66px;
  }

  .events .carousel-item .image img {
    position: relative;
    max-width: 100%;
  }

  .events .carousel-item ul {
    margin-top: -40px;
  }

  .events .carousel-item ul li:first-child {
    width: 100% !important;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #ddd;
  }

  .events .carousel-item ul li:nth-child(2) {
    width: 40% !important;
  }

  .events .carousel-item ul li {
    display: inline-block;
    width: 28% !important;
  }

  .events .carousel-item ul li:last-child {
    text-align: right;
  }

  .events .carousel-item a {
    bottom: 150px;
    top: auto;
  }

  .events .carousel-item ul li h6 {
    font-size: 14px;
  }

  .contact-us {
    padding-top: 20px;
  }

  .contact-us .section-heading {
    margin-right: 0px;
  }

  .contact-us .special-offer {
    background-color: #f1f0fe;
    margin-bottom: 60px;
    padding: 34px 30px 34px 100px;
    width: 100%;
  }

  .contact-us .special-offer h4 {
    font-size: 17px;
  }

  .contact-us .special-offer a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    top: 15px;
    right: 15px;
  }

  .contact-us .contact-us-content {
    padding: 30px;
  }

  footer {
    margin-top: 30px;
  }
}

@media (max-width: 1200px) {
  .header-area .main-nav #search {
    width: 200px;
  }

  .header-area .main-nav .nav li.has-sub:after {
    right: 15px;
  }

  .fun-facts:before {
    width: 95%;
  }
}




/* HOME CARDS  */

/* DIALOG and MODALS FROM PP STYLES  */

.modal-backdrop {
  z-index: 1040 !important;
}

.modal {
  z-index: 1050 !important;
}


/* FORMS STYLES */

/* #EntityFormPanel{
  border-radius: 20px;
  padding: 20px;
} */

.tab-title {
  text-align: center;
  font-size: xx-large;
  font-weight: 900;
}



#InsertButton{
  width: 200px;
}

.section-title{
  padding: 20px;
  text-align: center !important;
  font-size: 32px;
  font-weight: 900;
}

.quickform{
  padding: 0px !important;
}

.actions {
  display: flex; /* Mantén flex */
  justify-content: flex-end !important; /* Alinea los elementos a la derecha */
  align-items: center; /* Centra verticalmente si es necesario */
  text-align: right !important;
}

.input-group-text {
  background-color: #f8f9fa; /* Fondo claro */
  color: #28a745; /* Verde resplandeciente */
  font-weight: bold;
  border: 1px solid #ced4da;
  border-right: none; /* Conectar con el input */
}

.readonly-event-price {
  background-color: #e9ecef; /* Fondo gris claro */
  color: #495057; /* Texto oscuro */
  font-weight: bold;
  cursor: not-allowed; /* Indicar que no es editable */
  border-left: none; /* Conectar con el ícono */
}


/* EVENTS SECTION HOME */
.cardevents {
  width: auto;
  background-color: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.cardevents:hover {
  transform: translateY(-10px) rotateY(5deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.cardevents-image {
  height: 18px;
  background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(22,83,95,1) 0%, rgba(24,89,101,1) 3%, rgba(51,163,179,1) 34%, rgba(54,170,186,1) 100%);
  position: relative;
  overflow: hidden;
}

.cardevents-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255, 255, 255, 0.1) 50%,
    transparent
  );
  transform: rotate(45deg);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% {
    transform: translateX(-50%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) rotate(45deg);
  }
}

.cardevents-content {
  padding: 24px;
}

.cardevents-title {
  font-size: 24px;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 16px;
  position: relative;
  padding-bottom: 10px;
}

.cardevents-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background-color: #16535f;
  transition: width 0.3s ease;
}

.cardevents:hover .cardevents-title::after {
  width: 100px;
}

.cardevents-description {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 20px;
}

.cardevents-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.cardevents-tag {
  font-size: 12px;
  color: #16535f;
  background-color: #eef2ff;
  padding: 4px 10px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.cardevents-tag:hover {
  background-color: #16535f;
  color: #ffffff;
  transform: translateY(-2px);
}

.cardevents-footer {
  display: flex;
  justify-content: end;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid #e5e7eb;
}

.cardevents-stats {
  display: flex;
  gap: 16px;
}

.cardevents-stat {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: #6b7280;
}

.cardevents-stat-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}




.cardevents-button {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(22,83,95,1) 0%, rgba(24,89,101,1) 3%, rgba(51,163,179,1) 34%, rgba(54,170,186,1) 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 900;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cardevents-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: all 0.4s ease;
}

.cardevents-button:hover::before {
  left: 100%;
}

.cardevents-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(79, 70, 229, 0.4);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(2deg);
  }
}

.nav-tabs-shortcuts {
  display: flex;
  flex-wrap: wrap; /* Permitir que los elementos se ajusten en varias filas */
  align-items: center;
  justify-content: center;
  gap: 10px; /* Espaciado entre elementos */
  padding: 20px 15px;
  border-radius: 12px;
}

.nav-tabs-shortcuts li {
  list-style: none;
  margin: 0;
  flex: 1 1 auto; /* Permitir que los elementos se ajusten dinámicamente */
  text-align: center; /* Centrar el contenido de cada elemento */
}

.nav-tabs-shortcuts li a {
  position: relative;
  color: #333;
  font-size: 18px; /* Ajustar el tamaño del texto */
  font-weight: 500;
  padding: 6px 0;
  text-decoration: none;
  display: inline-block;
}

.nav-tabs-shortcuts li a:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--moonstone);
  border-radius: 12px;
  transition: all 0.4s ease;
}

.nav-tabs-shortcuts li a:hover:before {
  width: 100%;
}

.nav-tabs-shortcuts li.center a:before {
  left: 50%;
  transform: translateX(-50%);
}

.nav-tabs-shortcuts li.upward a:before {
  width: 100%;
  bottom: -5px;
  opacity: 0;
}

.nav-tabs-shortcuts li.upward a:hover:before {
  bottom: 0px;
  opacity: 1;
}

.nav-tabs-shortcuts li.forward a:before {
  width: 100%;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

.nav-tabs-shortcuts li.forward a:hover:before {
  transform: scaleX(1);
  transform-origin: left;
}

/* Media queries para responsive design */
@media (max-width: 768px) {
  .nav-tabs-shortcuts {
    flex-direction: column; /* Cambiar a columna en pantallas pequeñas */
    gap: 15px;
  }

  .nav-tabs-shortcuts li a {
    font-size: 16px; /* Reducir tamaño de fuente en pantallas pequeñas */
  }
}

@media (max-width: 480px) {
  .nav-tabs-shortcuts li a {
    font-size: 14px; /* Reducir aún más para pantallas muy pequeñas */
  }
}


.project-info {
  padding: 100px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  top: -50px;
}

.project-title {
  font-weight: 500;
  font-size: 1.5em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: black;
}

.lighter {
  font-size: 0.9em;
}

.flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tag {
  font-weight: lighter;
  color: grey;
}


.card-img div {
  width: 90%;
}


/* CHILD CARDS */
.child-card {
  width: auto;
  background-color: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.child-card:hover {
  transform: translateY(-10px) rotateY(5deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.child-card-image {
  height: 80px;
  background: var(--moonstone);
  position: relative;
  overflow: hidden;
  display: flex; 
  justify-content: center; 
  align-items: center;
  padding: 50px;
}

.child-card-image-v2 {
  height: auto;
  /* background: var(--moonstone); */
  position: relative;
  overflow: hidden;
  display: flex; 
  justify-content: center; 
  align-items: center;
  padding: 50px;
}

.child-card-imgs {
  max-width: 100%;
  /* max-height: 100%; */
  object-fit: contain; /* Ajusta el tamaño de la imagen */
}

.child-card-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255, 255, 255, 0.1) 50%,
    transparent
  );
  transform: rotate(45deg);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% {
    transform: translateX(-50%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) rotate(45deg);
  }
}

.child-card-content {
  padding: 24px;
}

.child-card-title {
  font-size: 24px;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 16px;
  position: relative;
  padding-bottom: 10px;
}

.child-card-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background-color: var(--moonstonev2);;
  transition: width 0.3s ease;
}

.child-card:hover .child-card-title::after {
  width: 100px;
}

.child-card-description {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 20px;
}

.child-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.child-card-tag {
  font-size: 12px;
  color: #16535f;
  background-color: #eef2ff;
  padding: 4px 10px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.child-card-tag:hover {
  background-color: #16535f;
  color: #ffffff;
  transform: translateY(-2px);
}

.child-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid #e5e7eb;
}

.child-card-stats {
  display: flex;
  gap: 16px;
}

.child-card-stat {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: #6b7280;
}

.child-card-stat-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.child-card-button {
  display: inline-block;
  padding: 10px 20px;
  background: var(--moonstone);
  color: #ffffff;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.child-card-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: all 0.4s ease;
}

.child-card-button:hover::before {
  left: 100%;
}

.child-card-button:hover {
  color: #FFF;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(79, 70, 229, 0.4);
}

/* @keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(2deg);
  }
}

.child-card {
  animation: float 6s ease-in-out infinite;
} */



/* EDUCATORS STYLES */

/* CARDS */
.card-howworks {
  --su-primary-color: #16535f ;
}

.card-howworks .feature-wrapper {
  border-bottom: 4px solid var(--moonstone);
  transition: all .3s;
}

.card-howworks .feature-wrapper h4 {
  transition: all .3s;
}

.card-howworks .feature-wrapper h4:hover {
  color: var(--su-primary-color);
}

.card-howworks .feature-wrapper .icon-wrapper {
  width: 70px;
  height: 70px;
  background: var(--bs-light);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50rem;
  transition: all .2s;
  background-color: var(--su-primary-color);
  color: #fff;
  outline-style: solid;
  outline-color: var(--bs-light);
  outline-width: 10px;
}

.card-how-works .feature-wrapper:hover {
  border-color: var(--su-primary-color);
  transform: translateY(-5px);
}

/* LOADER MINI */

.yct-loader {
  position: relative;
  width: 120px;
  height: 90px;
  margin: 0 auto;
}

.yct-loader:before {
  content: "";
  position: absolute;
  bottom: 30px;
  left: 50px;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  background: var(--moonstone);
  animation: loading-bounce 0.5s ease-in-out infinite alternate;
}

.yct-loader:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 7px;
  width: 45px;
  border-radius: 4px;
  box-shadow: 0 5px 0 #FFF, -35px 50px 0 #f2f2f2, -70px 95px 0 #f2f2f2;
  animation: loading-step 1s ease-in-out infinite;
}

@keyframes loading-bounce {
  0% {
    transform: scale(1, 0.7);
  }

  40% {
    transform: scale(0.8, 1.2);
  }

  60% {
    transform: scale(1, 1);
  }

  100% {
    bottom: 140px;
  }
}

@keyframes loading-step {
  0% {
    box-shadow: 0 10px 0 rgba(0, 0, 0, 0),
            0 10px 0 #f2f2f2,
            -35px 50px 0 #f2f2f2,
            -70px 90px 0 #f2f2f2;
  }

  100% {
    box-shadow: 0 10px 0 #f2f2f2,
            -35px 50px 0 #f2f2f2,
            -70px 90px 0 #f2f2f2,
            -70px 90px 0 rgba(0, 0, 0, 0);
  }
}


/* LOADER PARA LAS PARTES DEL SITIO DINAMICAS */
#loaderOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(40px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999; /* Asegura que esté por encima de todo */
}

.loader2 {
  position: relative;
  display: flex;
  gap: 0.3em;
}

.loader2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 2em;
  filter: blur(45px);
  background-color: #16535f;
  background-image: radial-gradient(at 52% 57%, hsla(11,83%,72%,1) 0px, transparent 50%),
  radial-gradient(at 37% 57%, hsla(175,78%,66%,1) 0px, transparent 50%);
}

.loader__circle {
  --size__loader: 0.6em;
  width: var(--size__loader);
  height: var(--size__loader);
  border-radius: 50%;
  animation: loader__circle__jumping 2s infinite;
  background-color: #16535f;
}

.loader__circle:nth-child(2n) {
  animation-delay: 300ms;
  background-color: #F4B93Bff;
}

.loader__circle:nth-child(3n) {
  animation-delay: 600ms;
}

@keyframes loader__circle__jumping {
  0%, 100% {
    transform: translateY(0px);
  }

  25% {
    transform: translateY(-15px) scale(0.5);
  }

  50% {
    transform: translateY(0px);
  }

  75% {
    transform: translateY(5px) scale(0.9);
  }
}



/* Contenedor del botón y el menú */
.hamburger-container {
  position: relative;
  display: inline-block;
}

/* Botón hamburger */
.hamburger-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

/* SVG y sus líneas (mantén aquí tus estilos existentes) */
.hamburger-btn svg {
  height: 3em;
  transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.line {
  fill: none;
  stroke: black;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
              stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.line-top-bottom {
  stroke-dasharray: 12 63;
}
/* Ejemplo de transformación cuando se active (se puede manejar en JS si se desea) */
.hamburger-btn.active svg {
  transform: rotate(-45deg);
}
.hamburger-btn.active svg .line-top-bottom {
  stroke-dasharray: 20 300;
  stroke-dashoffset: -32.42;
}

/* Menú desplegable */
.menu-dropdown {
  display: none;
  flex-direction: column;
  width: 200px;              /* ancho fijo en pantallas grandes */
  background-color: #0D1117;
  justify-content: center;
  border-radius: 5px;
  padding: 0.5em;
  position: absolute;
  top: 50%;
  left: calc(100% + 10px);    /* Se coloca a la derecha del botón */
  transform: translateY(-50%);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  z-index: 1000;
  overflow: hidden;
}

/* Media query para pantallas pequeñas */
@media (max-width: 600px) {
  .menu-dropdown {
    width: 90vw;           /* Ancho responsivo */
    left: 50%;             /* Centramos horizontalmente */
    top: calc(100% + 10px); /* Se posiciona debajo del botón */
    transform: translateX(-50%); /* Centrado */
  }
}


/* .input {
  display: flex;
  flex-direction: column;
  width: 200px;
  background-color: #0D1117;
  justify-content: center;
  border-radius: 5px
} */

.value_btn {
  width: 100%;
  background-color: transparent;
  border: none;
  padding: 10px;
  color: white;
  display: flex;
  position: relative;
  gap: 5px;
  cursor: pointer;
  border-radius: 4px;
}

.value_btn:not(:active):hover,
.value_btn:focus {
  background-color: #21262C;
}

.value_btn:focus,
.value_btn:active {
  background-color: #1A1F24;
  outline: none;
}

.value_btn::before {
  content: "";
  position: absolute;
  top: 5px;
  left: -10px;
  width: 5px;
  height: 80%;
  background-color: #2F81F7;
  border-radius: 5px;
  opacity: 0;
}

.value_btn:focus::before,
.value_btn:active::before {
  opacity: 1;
}

.value_btn svg {
  width: 15px
}

/* CARD DE COACHES PANEL */
.event_card {
  margin: auto;
  width: auto;
  background-color: #fefefe;
  border-radius: 1rem;
  padding: 0.5rem;
  color: #f9f5f4;
}
.event_card__hero {
  background-color: #f9f5f4;
  border-radius: 0.5rem 0.5rem 0 0;
  padding: 1.5rem;
  font-size: 0.875rem;
  color: #16535f;
}
.event_card__hero .event_card__job-title {
  margin: 2rem 0;
  font-size: 2rem;
  font-weight: 600;
  padding-right: 2rem;
  color: #16535f;
}

.event_card__job-subtle {
  /* margin: 2rem 0; */
  font-size: 2rem;
  font-weight: 600;
  padding-right: 2rem;
  color: #16535f;
}
.event_card__hero-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 1rem;
  font-weight: 700;
  color: #16535f;
}
.event_card__footer {
  display: flex;
  justify-content: flex-start;
  align-items: start;
  flex-direction: column;
  flex-wrap: nowrap;
  padding: 0.75rem;
  row-gap: 1rem;
  font-weight: 700;
  font-size: 0.875rem;
  color: #16535f;
}
@media (min-width: 340px) {
  .event_card__footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }
}
.event_card__job-summary {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0.75rem;
}
.event_card__btn {
  width: 100%;
  font-weight: 400;
  border: none;
  display: block;
  cursor: pointer;
  text-align: center;
  padding: 0.5rem 1.25rem;
  border-radius: 1rem;
  background-color: #141417;
  color: #fff;
  font-size: 1rem;
}

.event_card__job-icon{
  width: 130px;
}

@media (min-width: 340px) {
  .event_card__btn {
    width: max-content;
  }
}



.littlecard {
  --main-color: #000;
  --bg-color: #EBD18D;
  font-family: Comfortaa, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  width: 300px;
  padding: 25px;
  background: var(--bg-color);
  border-radius: 20px;
}

.littlecard__wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.littlecard___wrapper-acounts {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  z-index: 1;
  cursor: pointer;
}

.littlecard___wrapper-acounts > div:nth-child(2) {
  position: absolute;
  left: 25px;
  z-index: -1;
}

.littlecard___wrapper-acounts > div:nth-child(3) {
  position: absolute;
  left: 50px;
  z-index: -2;
}

.littlecard__score {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  font-size: 16px;
  color: #f9f5f4;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background: var(--moonstone);
}

.littlecard__acounts {
  width: 42px;
  height: 42px;
}

.littlecard__acounts svg {
  width: 100%;
  height: 100%;
}

.littlecard__menu {
  width: 40px;
  height: 40px;
  background: #16535f;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.littlecard__title {
  margin-top: 50px;
  font-weight: 900;
  font-size: 25px;
  color: var(--main-color);
}

.littlecard__subtitle {
  margin-top: 15px;
  font-weight: 400;
  font-size: 15px;
  color: var(--main-color);
}

.littlecard__indicator {
  margin-top: 50px;
  font-weight: 500;
  font-size: 14px;
  color: var(--main-color);
}

.littlecard__progress progress {
  width: 100%;
  height: 4px;
  border-radius: 100px;
}

.littlecard__progress progress::-webkit-progress-bar {
  background-color: #00000030;
  border-radius: 100px;
}

.littlecard__progress progress::-webkit-progress-value {
  background-color: var(--main-color);
  border-radius: 100px;
}

.footer_viewers {
  position: relative;
  width: 100%;
  color: #9fa4aa;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: none;
  margin-top: 10px;
}

.footer_viewers div {
  margin-right: 1rem;
  height: 20px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.footer_viewers svg {
  margin-right: 5px;
  height: 100%;
  stroke: #9fa4aa;
}


.viewer span {
  height: 30px;
  width: 30px;
  background-color: var(--moonstone);
  margin-right: -10px;
  border-radius: 50%;
  border: 1px solid #f9f5f4;
  display: grid;
  align-items: center;
  text-align: center;
  font-weight: bold;
  font-size: 14px;
  color: #f9f5f4;
  padding: 2px;
}

.viewer span svg {
  stroke: #f9f5f4;
}

/*Neo Brutalism feature features-list*/
.features-list {
  width: auto;
  background: var(--moonstone);
  padding: 1rem;
  border-radius: 1rem;
  border: 0.5vmin solid #05060f;
  box-shadow: 0.4rem 0.4rem #05060f;
  overflow: hidden;
  color: #FFF;
}

/*features-list content*/
.feature-block-content {
  display: flex;
  height: 100%;
  flex-direction: column;
  gap: 0.5rem;
}

.feature-plan {
  color: #FFF;
  font-size: 1.3rem;
  line-height: 1.25;
  font-weight: 700;
}


.feature-note {
  opacity: 0.8;
}

/*Checklist*/
.feature-list {
  display: flex ;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.feature-list-item {
  display: flex;
  align-items: center;
  gap: 4px;
}


.feature-list-item svg {
  width: 1.2em;   /* (podría ser 1em, 1.5em, etc.) */
  height: auto;   /* Mantiene la proporción del SVG */
  flex-shrink: 0; /* Para que no se comprima en espacios muy pequeños */
}

@media (max-width: 600px) {

  .feature-list-item svg {
    width: 1.4em;
  }

  .feature-list{
      gap: 1rem;
  }
}

/* NEW EVENT CARDS FOR PARENTS */

.card__events {
  --primary: #16535f;
  --primary-hover: #ff6d43;
  --secondary: #F4B93Bff;
  --secondary-hover: #16535f;
  --accent: #00e0b0;
  --text: #050505;
  --bg: #ffffff;
  --shadow-color: #000000;
  --pattern-color: #cfcfcf;

  position: relative;
  width: auto;
  background: var(--bg);
  border: 0.35em solid var(--text);
  border-radius: 0.6em;
  box-shadow:
    0.7em 0.7em 0 var(--shadow-color),
    inset 0 0 0 0.15em rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
  font-family: Comfortaa, ui-sans-serif, system-ui, sans-serif;
  transform-origin: center;
}

.card__events:hover {
  transform: translate(-0.4em, -0.4em) scale(1.02);
  box-shadow: 1em 1em 0 var(--shadow-color);
}

.card__events:hover .card__events-pattern-grid,
.card__events:hover .card__events-overlay-dots {
  opacity: 1;
}

.card__events:active {
  transform: translate(0.1em, 0.1em) scale(0.98);
  box-shadow: 0.5em 0.5em 0 var(--shadow-color);
}

.card__events::before {
  content: "";
  position: absolute;
  top: -1em;
  right: -1em;
  width: 4em;
  height: 4em;
  background: var(--accent);
  transform: rotate(45deg);
  z-index: 1;
}

.card__events::after {
  content: "★";
  position: absolute;
  top: 0.4em;
  right: 0.4em;
  color: var(--text);
  font-size: 1.2em;
  font-weight: bold;
  z-index: 2;
}

.card__events-pattern-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.05) 1px,
      transparent 1px
    ),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
  background-size: 0.5em 0.5em;
  pointer-events: none;
  opacity: 0.5;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.card__events-overlay-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--pattern-color) 1px, transparent 1px);
  background-size: 1em 1em;
  background-position: -0.5em -0.5em;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.bold-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 6em;
  height: 6em;
  opacity: 0.15;
  pointer-events: none;
  z-index: 1;
}

.card__events-title-area {
  position: relative;
  padding: 1.4em;
  background: var(--primary);
  color: var(--bg);
  font-weight: 800;
  font-size: 1.2em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 0.35em solid var(--text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
  overflow: hidden;
}

.card__events-title-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    45deg,
    rgba(0, 0, 0, 0.1),
    rgba(0, 0, 0, 0.1) 0.5em,
    transparent 0.5em,
    transparent 1em
  );
  pointer-events: none;
  opacity: 0.3;
}

.card__events-tag {
  text-align: center;
  background: var(--bg);
  color: var(--text);
  font-size: 0.6em;
  font-weight: 800;
  padding: 0.5em 0.8em;
  border: 0.15em solid var(--text);
  border-radius: 0.3em;
  box-shadow: 0.2em 0.2em 0 var(--shadow-color);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transform: rotate(3deg);
  transition: all 0.3s ease;
}

.card__events:hover .card__events-tag {
  transform: rotate(-2deg) scale(1.1);
  box-shadow: 0.25em 0.25em 0 var(--shadow-color);
}

.card__events-body {
  position: relative;
  padding: 1.5em;
  z-index: 2;
}

.card__events-description {
  margin-bottom: 1.5em;
  color: var(--text);
  font-size: 0.95em;
  line-height: 1.4;
  font-weight: 500;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1em;
  margin-bottom: 1.5em;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.6em;
  transition: transform 0.2s ease;
}

.feature-item:hover {
  transform: translateX(0.3em);
}

.feature-icon {
  width: 1.4em;
  height: 1.4em;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary);
  border: 0.12em solid var(--text);
  border-radius: 0.3em;
  box-shadow: 0.2em 0.2em 0 rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease;
}

.feature-item:hover .feature-icon {
  background: var(--secondary-hover);
  transform: rotate(-5deg);
}

.feature-icon svg {
  width: 0.9em;
  height: 0.9em;
  fill: var(--xanthous);
}

.feature-text {
  font-size: 0.85em;
  font-weight: 600;
  color: var(--text);
}

.card__events-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5em;
  padding-top: 1.2em;
  border-top: 0.15em dashed rgba(0, 0, 0, 0.15);
  position: relative;
}

.card__events-actions::before {
  content: "✂";
  position: absolute;
  top: -0.8em;
  left: 50%;
  transform: translateX(-50%) rotate(90deg);
  background: var(--bg);
  padding: 0 0.5em;
  font-size: 1em;
  color: rgba(0, 0, 0, 0.4);
}

.price {
  position: relative;
  font-size: 1.8em;
  font-weight: 800;
  color: var(--text);
  background: var(--bg);
}

.price::before {
  content: "";
  position: absolute;
  bottom: 0.15em;
  left: 0;
  width: 100%;
  height: 0.2em;
  background: var(--accent);
  z-index: -1;
  opacity: 0.5;
}

.price-currency {
  font-size: 0.6em;
  font-weight: 700;
  vertical-align: top;
  margin-right: 0.1em;
}

.price-period {
  display: block;
  font-size: 0.4em;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.6);
  margin-top: 0.2em;
}

.card__events-button {
  position: relative;
  background: var(--secondary);
  color: var(--bg);
  font-size: 0.9em;
  font-weight: 700;
  padding: 0.7em 1.2em;
  border: 0.2em solid var(--text);
  border-radius: 0.4em;
  box-shadow: 0.3em 0.3em 0 var(--shadow-color);
  cursor: pointer;
  transition: all 0.2s ease;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.card__events-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.2) 50%,
    transparent 100%
  );
  transition: left 0.6s ease;
}

.card__events-button:hover {
  background: var(--secondary-hover);
  transform: translate(-0.1em, -0.1em);
  box-shadow: 0.4em 0.4em 0 var(--shadow-color);
  color: #FFF !important;
}

.card__events-button:hover::before {
  left: 100%;
}

.card__events-button:active {
  transform: translate(0.1em, 0.1em);
  box-shadow: 0.15em 0.15em 0 var(--shadow-color);
}

.dots-pattern {
  position: absolute;
  bottom: 2em;
  left: -2em;
  width: 8em;
  height: 4em;
  opacity: 0.3;
  transform: rotate(-10deg);
  pointer-events: none;
  z-index: 1;
}

.accent-shape {
  position: absolute;
  width: 2.5em;
  height: 2.5em;
  background: var(--secondary);
  border: 0.15em solid var(--text);
  border-radius: 0.3em;
  transform: rotate(45deg);
  bottom: -1.2em;
  right: 2em;
  z-index: 0;
  transition: transform 0.3s ease;
}

.card__events:hover .accent-shape {
  transform: rotate(55deg) scale(1.1);
}

.stamp {
  position: absolute;
  bottom: 1.5em;
  left: 1.5em;
  width: 4em;
  height: 4em;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.15em solid rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  transform: rotate(-15deg);
  opacity: 0.2;
  z-index: 1;
}

.stamp-text {
  font-size: 0.6em;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.corner-slice {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1.5em;
  height: 1.5em;
  background: var(--bg);
  border-right: 0.25em solid var(--text);
  border-top: 0.25em solid var(--text);
  border-radius: 0 0.5em 0 0;
  z-index: 1;
}
