/*--------------------------------------------------------------
# Generalin
--------------------------------------------------------------*/
#main-background {
    color: #000000;
    background-size: cover;
    background-position: center;
  }
  
  html {
      width: 100%;
      height: 100%;
      margin: 0;
      padding: 0;
  }
  
  body {
    color: #000000;ons
    background-attachment: fixed;
    background-size: cover;
    font-family: "Open Sans", sans-serif;
  }
  
  a {
    color: #18A8BA;
    transition: 0.5s;
  }
  
  a:hover,
  a:active,
  a:focus {
    color: #D25267;
    outline: none;
    text-decoration: none;
  }
  
  p {
    padding: 0;
    margin: 0 0 30px 0;
    font-size: 18px;
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    margin: 0 0 20px 0;
    padding: 0;
  }
  
  #preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
  }
  
  #preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #f2f2f2;
    border-top: 6px solid #18A8BA;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
  }
  
  @-webkit-keyframes animate-preloader {
    0% {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
  
    100% {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }
  
  @keyframes animate-preloader {
    0% {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
  
    100% {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }
  
  
  
  /*--------------------------------------------------------------
  # Header
  --------------------------------------------------------------*/
  
  #header {
    /* Top margin */
    width: 100%;
    height: 70px;     /* Menu bar height */
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    transition: all 0.5s;
    z-index: 997;
    background: rgba(0, 0, 0, 0); /* Initial color (transparent) */
  }
  
  #header.header-scrolled {
    background: rgba(0, 0, 0, 0.9);
    padding: 14px 0; /* Top margin */
    height: 70px;     /* Menu bar height */
    transition: all 0.5s;
  }
  #header #logo {
    float: left;
  }
  
  #header #logo h1 {
    font-size: 34px;
    margin: 0;
    padding: 5px;     /*Blue Vertical Bar Height*/
    line-height: 1;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    letter-spacing: 3px;
    border-left: 4px solid #18A8BA;
  }
  
  #header #logo h1 a,
  #header #logo h1 a:hover {
    color: #fff;
    padding-left: 7px;
  }
  
  #header #logo img {
    padding: 0;
    margin: 0;
  }
  
  
  /*--------------------------------------------------------------
  # Intro Section - Main
  --------------------------------------------------------------*/
  #intro {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.video-background {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}



.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.1); /* fix opacity as needed */
}

.content-overlay-logos {
    position: absolute;
    top: 250px;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.0); /* fix opacity as needed */
}

.carousel-container {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-60%);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}



.carousel-content {
    scale: 100%;
    color: white;
    text-align: center;
}

.semf-logo {
    width: 80%; /* Reduce el tamaño en pantallas pequeñas */
    max-width: 400px; /* Ajusta el máximo para que no crezca tanto */
    margin-bottom: 2rem;
}


.conference-title {
    font-size: clamp(1.2rem, 6vw, 2.5rem); /* Ajusta el mínimo y el máximo para pantallas más pequeñas */
    white-space: nowrap;
}

.dual-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 44px;
    
    /* que estén en la zona central, no pegados a un lado */
    margin: 30px auto 35px auto;
    max-width: 400px;   /* aprox el 50% en muchas pantallas */
}

.dual-logo {
    /* tamaño visible de los logos */
    height: 130px;       /* súbelo o bájalo según lo que veas */
    max-height: none;
    width: auto;
    object-fit: contain;
}




@media (max-width: 768px) { 
    .conference-title {
        font-size: 2rem; /* Ensures a readable size on mobile */
        white-space: normal; /* Allows text wrapping */
        display: block;
        text-align: center; /* Optional: centers the text */
    }
    
    .conference-title .light-text,
    .conference-title .bold-text {
        display: block; /* Forces each part to be on a separate line */
    }
}


.conference-title .light-text {
    font-weight: 100;
}

.conference-title .bold-text {
    font-weight: 800;
}

.conference-details {
    font-size: 1.8rem; /* Default size for desktops */
    margin-bottom: 2rem;
}

@media (max-width: 768px) { 
    .conference-details {
        font-size: 1.3rem !important; /* Forces a larger size on mobile */
    }
}



.btn-get-started {
    font-family: "Quattrocento Sans", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 32px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    color: #fff;
    border: 2px solid #fff;
    background: transparent;
    display: flow;
}

.btn-get-started:hover {
  background-color: white;
  color: black;
  mix-blend-mode: lighten;
}

.btn-register {
    font-family: "Quattrocento Sans", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    width: auto;
    padding: 10px 30px;
    border-radius: 50px;
    transition: 0.5s;
    color: black;
    background: white;
}

.btn-register:hover {
  background-color: white;
  color: black;
  mix-blend-mode: lighten;
}

/* Sponsor Logos Grid */

.content-overlay-sponsors {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  padding: 0;
  z-index: 1;
  scale: 0.7;
}



.sponsor-logo-grid {
    display: inline-flex;
    gap: 10rem;
    margin-top: 2rem;
    padding: 0 20px;
    max-width: max-content;
    justify-content: center;
}

.support-message{
    font-size: small;
    display: block;
    text-align: center;
    padding: 0;
}

.sponsor-logo-grid .logo {
    max-width: 100%;
    height: auto; /* Maintains aspect ratio */
    max-height: 80px; /* Restricts logo height */
    filter: grayscale(1) contrast(15) brightness(1);
    mix-blend-mode: darken;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .sponsor-logo-grid {
        grid-template-columns: repeat(2, 1fr); /* Adjusts to two columns on smaller screens */
        gap: 1rem;
    }
    
    .sponsor-logo-grid .logo {
        max-height: 60px; /* Reduces logo height for smaller screens */
    }
}

@media (max-width: 480px) {
    .sponsor-logo-grid {
        grid-template-columns: 1fr; /* Single column for very small screens */
        gap: 0.5rem;
    }
    
    .sponsor-logo-grid .logo {
        max-height: 50px; /* Further reduces logo height */
    }
}


/*--------------------------------------------------------------
# Navigation + Header2
--------------------------------------------------------------*/

/* Base styles */
#header2 {
    background-color: #000000;
    mix-blend-mode: normal;
    padding: 10px 0;
    height: 72px;
    left: 0;
    top: 0;
    right: 0;
    transition: all 0.5s;
    z-index: 997;
    position: fixed;
}

.container-fluid {
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px 10px 20px;
}

#logo h1 {
    font-size: clamp(18px, 3vw, 24px);
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 400;
}

#logo h1 a,
#logo h1 a:hover {
    font-size: large;
    color: #fff;
    text-decoration: none;
}

/* Mobile menu styles */
#mobile-nav-toggle {
    position: fixed;
    right: 15px;
    background: white;
    z-index: 999;
    display: block;
}

#mobile-nav-toggle .bar {
    color: red;
}

#mobile-nav-toggle {
    display: none;
    /* Hide on desktop */
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: #fff;
}

@media (max-width: 768px) {
    #mobile-nav-toggle {
        display: block;
        /* Show on mobile */
    }

    #nav-menu-container {
        display: none;
        /* Hide regular menu on mobile */
    }
}

#mobile-nav {
    position: fixed;
    top: 0;
    padding-top: 90px;
    bottom: 0;
    z-index: 998;
    background: rgba(0, 0, 0, 0.6);
    left: -260px;
    width: 260px;
    overflow-y: auto;
    transition: 0.4s;
}

#mobile-nav ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

#mobile-nav ul li {
    position: relative;
}

#mobile-nav ul li a {
    color: #fff;
    font-size: 16px;
    overflow: hidden;
    padding: 10px 22px 10px 15px;
    position: relative;
    width: 100%;
    display: block;
    outline: none;
}

#mobile-nav ul li a:hover {
    color: #fff;
}

#mobile-nav ul li li {
    padding-left: 30px;
}

#mobile-nav ul .menu-has-children i {
    position: absolute;
    right: 0;
    z-index: 99;
    padding: 15px;
    cursor: pointer;
    color: #fff;
}

#mobile-nav ul .menu-has-children i.fa-chevron-up {
    color: #18d26e;
}

#mobile-nav ul .menu-item-active {
    color: #18d26e;
}

#mobile-body-overly {
    width: 100%;
    height: 100%;
    z-index: 997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(0, 0, 0, 0.6);
    display: none;
}

/* Hide desktop menu on mobile */
#nav-menu-container {
    display: none;
}

/* Mobile menu active states */
body.mobile-nav-active #mobile-nav {
    left: 0;
}

body.mobile-nav-active #mobile-nav-toggle .bar:nth-child(2) {
    opacity: 30;
}

body.mobile-nav-active #mobile-nav-toggle .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

body.mobile-nav-active #mobile-nav-toggle .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Media query for larger screens */
@media (min-width: 769px) {
    #header2 {
        padding: 20px 0;
        height: 92px;
    }

    #header2 #logo h1 {
        font-size: medium;
    }

    #mobile-nav-toggle {
        display: none;
    }

    #nav-menu-container {
        display: block;
        float: right;
        text-align: right;
        margin: 0;
    }

    .nav-menu {
        font-size: medium;
        padding: 0;
        margin: 0;
        list-style: none;
        display: flex;
    }

    .nav-menu>li {
        position: relative;
        white-space: nowrap;
    }

    .nav-menu a {
        padding: 10px 8px 10px 8px;
        text-decoration: none;
        display: inline-block;
        color: #fff;
        font-family: "Belleza", sans-serif;
        font-weight: 100;
        font-size: 13px;
        text-transform: uppercase;
        outline: none;
        transition: 0.3s;
    }

    .nav-menu>li>a:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 2px;
        bottom: 0;
        left: 0;
        background-color: rgba(0, 0, 0, 0.95);
        visibility: hidden;
        transform: scaleX(1);
        transition: all 0.3s ease-in-out 0s;
    }

    .nav-menu a:hover:before,
    .nav-menu li:hover>a:before,
    .nav-menu .menu-active>a:before {
        visibility: visible;
        transform: scaleX(1);
    }

    /* Black bar hover effect */
    .nav-menu a::after {
        content: "";
        position: absolute;
        bottom: 0;
        /* Positions the bar at the bottom of the menu item */
        left: 0;
        width: 100%;
        height: 3px;
        /* Height of the black bar */
        background-color: #FFFFFF;
        /* Black color for the bar */
        transform: scaleX(0);
        /* Initially hidden (scaled down) */
        transform-origin: center;
        /* Animation starts from the center */
        transition: transform 0.3s ease-in-out;
        /* Smooth scaling animation */
    }


    .nav-menu a:hover::after {
        transform: scaleX(1);
        /* Expands the bar to full width on hover */
    }

    .nav-menu ul {
        position: absolute;
        display: none;
        top: 100%;
        left: 0;
        z-index: 99;
        list-style: none;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    }

    .nav-menu li:hover>ul {
        display: block;
    }

    .nav-menu ul li {
        min-width: 180px;
        position: relative;
        top: 20px;
        padding-top: 50px;
        bottom: 20px;
        z-index: 998;
        background: #000000;
        background-color: rgba(0, 0, 0, 0.95);
        left: -50px;
        width: 60;
        overflow-y: overlay;
        transition: 0.4s;
        text-align: left;
        align-content: center;
    }

    .nav-menu ul li a {
        padding: 10px;
        align-content: right;
        color: #fff;
        transition: 0.3s;
        display: block;
        font-size: 13px;
        text-transform: none;
    }

    .nav-menu ul li:hover>a {
        color: #18d26e;
    }
}

@media (min-width: 1024px) {
    #header2 .nav-menu a {
        padding: 0 10px;
    }
}

  /*--------------------------------------------------------------
  # INFO Elements : Used in registration.html of school 2025 for progress-bar
  --------------------------------------------------------------*/
  /* Progress Bar */
  

  #registration-banner .carousel-container {
    /* Styles specific to the registration banner */
    scale: 100%;
}


    .registration-container {
        text-align: center;
        max-width: 800px;
        margin: 0 auto;
        padding: 20px;
        font-size: 16px;
    }

    .registration-content {
        max-width: 100%;
    }
    
    /* New registration-specific styles */
#intro.intro-registration {
    height: 20vh; /* Adjust as needed */
}

#intro.intro-registration .content-overlay {
    margin-top: 10px;
    background-color: rgba(0, 0, 0, 0.1); /* Darker overlay for registration page */
}

#intro.intro-registration .carousel-container {
    margin-top: 30px;
}

#intro.intro-registration .conference-title {
    font-size: 1rem; /* Smaller title for registration page */
}

#intro.intro-registration .conference-details {
    font-size: 1rem; /* Smaller details for registration page */
}

#intro.intro-registration .btn-get-started {
    padding: 8px 16px; /* Smaller button for registration page */
}

 
    #info-msg {
        margin: 10px 0;
        padding: 10px;
        border-radius: 3px;
        color: #059;
        background-color: #BEF;
    }
    
    #orange-msg {
        margin: 10px 0;
        padding: 10px;
        border-radius: 3px;
        color: #764b01;
        background-color: #ffdc9e;
    }
    
    #ok-msg {
    background-color: rgba(40, 167, 69, 0.1);
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    }

    #ok-msg i {
    color: #28a745;
    font-size: 48px;
    margin-bottom: 20px;    
    }

    #ok-msg a {
    color: #28a745;
    text-decoration: underline;
    }

    #ok-msg a:hover {
    color: #218838;
    }

    #progressBarContainer {
        margin: 20px 0;
        padding: 15px;
        background: #f8f9fa;
        border-radius: 5px;
    }

    #progressBar {
        font-weight: bold;
        color: #333;
        text-align: center;
        padding: 10px;
        background: #e9ecef;
        border-radius: 5px;
    }

    .proceed-btn {
        display: inline-block;
        width: auto;
        min-width: 200px;
        margin: 20px auto;
        padding: 10px 20px;
        background: #007bff;
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        transition: background 0.3s ease;
        font-size: 16px;
        text-align: center;
    }

    .proceed-btn:hover { background: #0056b3; }

    .proceed-btn:disabled {
        background: #cccccc;
        cursor: not-allowed;
        opacity: 0.5;
    }

    #paymentSelection {
        margin: 20px 0;
        padding: 15px;
        background-color: #f8f9fa;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    #paymentSelection label {
        display: block;
        margin-bottom: 10px;
        font-weight: bold;
        color: #333;
    }

    #contributionTier {
        width: 100%;
        max-width: none;
        padding: 10px;
        border: 1px solid #ced4da;
        border-radius: 4px;
        background-color: white;
        font-size: 16px;
        color: #495057;
        appearance: auto;
    }

    #contributionTier:hover {
        border-color: #80bdff;
    }

    #contributionTier:focus {
        border-color: #80bdff;
        outline: none;
        box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, .25);
    }

    #contributionTier option {
        padding: 10px;
        white-space: nowrap;
    }

    @media (min-width: 768px) {
        #contributionTier {
            width: auto;
            min-width: 300px;
            max-width: 100%;
        }
    }

    @media (max-width: 767px) {
        .proceed-btn {
            width: 100%;
            max-width: none;
        }
    }



  /*--------------------------------------------------------------
  # Sections
  --------------------------------------------------------------*/
  
  /* Sections Header
  --------------------------------*/
  
  
  .section-header h3 {
    font-size: 32px;
    color: white;
    text-transform: uppercase;
    text-align: center;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
    font-family: 'Belleza';
  }
  
  
  .section-header h3::before {
    content: '';
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: #ddd;
    bottom: 1px;
    left: calc(50% - 60px);
  }
  
  .section-header h3::after {
    content: '';
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: #18A8BA;
    bottom: 0;
    left: calc(50% - 20px);
  }
  
  .section-header h3 a{
      color: white;
  }
  
  .section-header h3 a:hover {
      color:#D25267;
  }
  
  .section-header h4 {
    font-size: 32px;
    color: #111;
    text-transform: uppercase;
    text-align: center;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
    font-family: 'Belleza';
  }
  
  
  .section-header h4::before {
    content: '';
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: #ddd;
    bottom: 1px;
    left: calc(50% - 60px);
  }
  
  .section-header h4::after {
    content: '';
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: #18A8BA;
    bottom: 0;
    left: calc(50% - 20px);
  }
  
  .section-header h4 a{
      color:white;
  }
  
  .section-header h4 a:hover {
      color:#D25267;
  }
  
  
  .section-header p {
    text-align: center;
    padding-bottom: 30px;
    color: #333;
    font-family: "Quattrocento Sans", sans-serif;
  }
  
  
  
  
  
  /* Section with background
  --------------------------------*/
  
  .section-bg {
    background: #f7f7f7;
  }
  
  /* Featured Services Section
  --------------------------------*/
  
  #featured-services {
    background: #000;
  }
  
  #featured-services .box {
    padding: 30px 20px;
  }
  
  #featured-services .box-bg {
    background-image: linear-gradient(0deg, #000000 0%, #242323 50%, #000000 100%);
  }
  
  #featured-services i {
    color: #18A8BA;
    font-size: 48px;
    display: inline-block;
    line-height: 1;
  }
  
  #featured-services h4 {
    font-weight: 400;
    margin: 15px 0;
    font-size: 18px;
  }
  
  #featured-services h4 a {
    color: #fff;
  }
  
  #featured-services h4 a:hover {
    color: #18A8BA;
  }
  
  #featured-services p {
    font-size: 14px;
    line-height: 24px;
    color: #fff;
    margin-bottom: 0;
  }
  
  
  
/* *************** */
/* Tariler Section */
/* *************** */

#trailer {
    padding: 40px 20px;
    background: black;
    background-size: cover; 
}

.section-header h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    color: white;
}

  
  /* En tu CSS global o en un <style> */
#trailer .video-wrapper {
  width: 70%;
  margin: 0 auto;       /* centro horizontal */
  aspect-ratio: 16 / 9; /* fija la proporción */
}
#trailer .video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
  
  
  
  
  
  
  
  /* Participants
  --------------------------------*/
  
  #participants {
    padding: 60px 0 40px 0;
    position: relative;
    font-family: "Quattrocento Sans", sans-serif;
    color: white;
  }
  
  #participants h2{
    font-family: "Belleza", sans-serif;
  }
  
  #participants .box {
    margin-bottom: 30px;
  }
  
  #participants .icon {
    float: left;
  }
  
  #participants .icon i {
    color: #18A8BA;
    font-size: 36px;
    line-height: 1;
    transition: 0.5s;
  }
  
  #participants .title {
    margin-left: 60px;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
  }
  
  #participants .title a {
    color: #111;
  }
  
  #participants .box:hover .title a {
    color: #18A8BA;
  }
  
  #participants .description {
    font-size: 14px;
    margin-left: 60px;
    line-height: 24px;
    margin-bottom: 0;
  }
  
  #participants .lgs-btn {
    font-family: "Quattrocento Sans", sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 28px;
    border-radius: 25px;
    transition: 0.5s;
    margin-top: 10px;
    border: 2px solid #000;
    color: #000;
  }
  
  #participants .lgs-btn:hover {
    background: #18A8BA;
    border: 2px solid #18A8BA;
  }
  
  
  #participants .wks-btn {
    font-family: "Quattrocento Sans", sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 28px;
    border-radius: 25px;
    transition: 0.5s;
    margin-top: 10px;
    border: 2px solid white;
    color: white;
  }
  
  #participants .wks-btn:hover {
    background: #18A8BA;
    border: 2px solid #18A8BA;
  }
  
 
  
  /* Sessions Preview Section
  --------------------------------*/
  
  #sessionspreview {
    background: url("/school2025/assets/img/Micro.png") center top no-repeat fixed;
    background-size: cover;
    padding: 60px 0 40px 0;
    position: relative;
    font-family: "Quattrocento Sans", sans-serif;
  }
  
  #sessionspreview .container {
    position: relative;
    z-index: 10;
  }
  
  #sessionspreview .sessionspreview-col {
    background: #fff;
    border-radius: 0 0 4px 4px;
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
    
  }
  
  #sessionspreview .sessionspreview-col .img {
    position: relative;
  }
  
  #sessionspreview .sessionspreview-col .img img {
    border-radius: 4px 4px 0 0;
  }
  
  #sessionspreview .sessionspreview-col .icon {
    width: 64px;
    height: 64px;
    padding-top: 8px;
    text-align: center;
    position: absolute;
    background-color: #18A8BA;
    border-radius: 50%;
    border: 4px solid #fff;
    left: calc( 50% - 32px);
    bottom: -30px;
    transition: 0.3s;
  }
  
  #sessionspreview .sessionspreview-col i {
    font-size: 36px;
    line-height: 1;
    color: #fff;
    transition: 0.3s;
  }
  
  #sessionspreview .sessionspreview-col b {
    color: #fff;
    font-size: 18px;
  }
  
  #sessionspreview .sessionspreview-col:hover .icon {
    background-color: #fff;
  }
  
  #sessionspreview .sessionspreview-col:hover i {
    color: white;
  }
  
  #sessionspreview .sessionspreview-col h2 {
    color: #000;
    text-align: center;
    font-weight: 700;
    font-size: 18px;
    font-family: "Quattrocento Sans", sans-serif;
    margin-left: 5px;
    margin-right: 5px;                            /* Session Titles Margins */
  }
  
  #sessionspreview .sessionspreview-col h2 a {
    color: #18A8BA;
    font-family: "Quattrocento Sans", sans-serif;
  }
  
  #sessionspreview .sessionspreview-col h2 a:hover {
    color: #D25267;
  }
  
  #sessionspreview .sessionspreview-col p {
    font-size: 14px;
    line-height: 24px;
    color: #333;
    margin-bottom: 0;
    padding: 0 20px 20px 20px;
  }
  
  #sessionspreview .member {
    text-align: center;
    margin-bottom: 20px;
    background: #000;
    position: relative;
  }
  
  #sessionspreview .member .member-info {
    opacity: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    transition: 0.2s;
    font-family: "Quattrocento Sans", sans-serif;
  }
  
  #sessionspreview .member .member-info-content {
    margin-top: -50px;
    transition: margin 0.2s;
    font-family: "Quattrocento Sans", sans-serif;
  }
  
  
  #sessionspreview .member:hover .member-info {
    background: rgba(0, 0, 0, 0.7);
    opacity: 1;
    transition: 0.4s;
  }
  
  #sessionspreview .member:hover .member-info-content {
    margin-top: 0;
    transition: margin 0.4s;
  }
  
  #sessionspreview .member h2{
    font-family: "Quattrocento Sans", sans-serif;
  }
  
  #sessionspreview .member h4 {
    font-weight: 700;
    margin-bottom: 2px;
    font-size: 18px;
    color: #fff;
    font-family: "Quattrocento Sans", sans-serif;
  }
  
  #sessionspreview .member span {
    font-style: italic;
    display: block;
    font-size: 13px;
    color: #fff;
  }
  
  #sessionspreview .member .social {
    margin-top: 15px;
    font-size: 23px;
  }
  
  #sessionspreview .member .social a {
    transition: none;
    color: #fff;
  }
  
  #sessionspreview .member .social a:hover {
    color: #18A8BA;
  }
  
  #sessionspreview .member .social i {
    font-size: 18px;
    margin: 0 2px;
  }
  
  
  .fa  {
    transition: 0.1s cubic-bezier(0.6, 0.03, 0.28, 0.98);  
    transform: scale(1);
  }
  .fa:hover {
    transform: scale(1.5);
    transition: 0.4s cubic-bezier(0.6, 0.03, 0.28, 0.98);
  }
  
  .fab  {
    transition: 0.1s cubic-bezier(0.6, 0.03, 0.28, 0.98);  
    transform: scale(1);
  }
  .fab:hover {
    transform: scale(1.5);
    transition: 0.4s cubic-bezier(0.6, 0.03, 0.28, 0.98);
  }
  
  
  
  
  
  /* Tracks Section
  --------------------------------*/
  
  #tracks {
    padding: 60px 0 40px 0;
    position: relative;
    font-family: "Quattrocento Sans", sans-serif;
  }
  
  #tracks p {
    color: #fff;
  }
  
  #tracks p a {
    color: white; 
  }
  
  #tracks::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0);
    z-index: 9;
  }
  
  
  #tracks h3 a{
      color: white;
  }
  
  #tracks h3 a:hover{
      color: white;
  }
  
  
  #tracks .container {
    position: relative;
    z-index: 10;
  }
  
  #tracks .tracks-col {
    background: #fff;
    border-radius: 4px 4px 4px 4px;
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
    overflow: hidden;
  }
  
  #tracks .tracks-col .img {
    position: relative;
  }
  
  .tracks-col .img:hover img {transition: all 0.3s ease-out;}
  .tracks-col .img:hover img {transform: scale(1.1);
  }  
  
  #tracks .tracks-col .img img {
    border-radius: 4px 4px 0 0;
  }
  
  #tracks .tracks-col .icon {
    width: 50px;
    height: 50px;
    padding-top: 8px;
    text-align: center;
    position: absolute;
    background-color: #18A8BA;
    border-radius: 50%;
    text-align: center;
    border: 4px solid #fff;
    left: calc( 50% - 25px);
    bottom: -30px;
    transition: 0.3s;
  }
  
  #tracks .tracks-col i {
    font-size: 26px;
    line-height: 1;
    color: #fff;
    transition: 0.3s;
  }
  
  
  /*Icon Color When Hover*/
  #tracks .tracks-col:hover .icon {
    background-color: #D25267;
    color: white;
  }
  
  /*Icon Link Color When Hover*/
  #tracks .tracks-col:hover i {
    color: white;
  }
  
  #tracks .tracks-col h2 {
    color: #000;
    text-align: center;
    font-weight: 700;
    font-size: 19px;
    padding: 0;
    margin: 30px 0 12px 0;
    font-family: 'Belleza', sans-serif;
  }
  
  #tracks .tracks-col h2 a {
    color: #18A8BA;
  }
  
  #tracks .tracks-col h2 a:hover {
    color: #D25267;
  }
  
  #tracks .tracks-col p {
    font-size: 14px;
    line-height: 24px;
    color: white;
    margin-bottom: 0;
    padding: 0 20px 20px 20px;
    font-family: "Quattrocento Sans", sans-serif;
  }
  
  
  
  
  
  /* Valencia Section
  --------------------------------*/
  #valencia-experience {
    padding: 60px 0; 
    background-color: white;
}


#valencia-experience .section-header h3 {
    color: black;
}


.valencia-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.valencia-card {
  height: 300px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.valencia-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.valencia-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 20px;
  transform: translateY(calc(100% - 65px)); /* Shows only the top 65px */
  transition: transform 0.3s ease;
  max-height: 100%;
  overflow-y: auto;
}

.valencia-card:hover .valencia-card-content {
  transform: translateY(0);
}

.valencia-card-content h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.5em;
}

.valencia-card-content ul {
  padding-left: 20px;
  margin-bottom: 10px;
}

.btn-learn-more, .btn-view-map {
  display: inline-block;
  padding: 8px 15px;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.btn-learn-more:hover, .btn-view-map:hover {
  background-color: #0056b3;
}

@media (max-width: 768px) {
  .valencia-card {
    height: 250px;
  }
}

  
  /* Valencia2 Section
  --------------------------------*/
  
  
  
  #valencia2 .info-box {
    background-color: rgba(0, 0, 0, 0.65);
    color: white;
    border-radius: 10px;
    padding: 40px;
    margin-bottom: -20 px;
  }
  
  
  #valencia2 .btn-get-started {
    font-family: "Quattrocento Sans", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 32px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    color: black;
    background: white;
  }
  
  #valencia2 .btn-get-started:hover {
    background-color: #18A8BA;
    color: white;
    mix-blend-mode: lighten;
  }
  
  
  #valencia2 {
    background-image: url("assets/img/backgrounds/sand.png");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 60px 0;
    font-family: "Quattrocento Sans", sans-serif;
      
  }
  
  #valencia2 #valencia2-flters {
    padding: 0;
    margin: 5px 0 5px 0;
    list-style: none;
    text-align: center;
  }
  
  #valencia2 #valencia2-flters li {
    cursor: pointer;
    margin: 5px 5px 5px 0;
    display: inline-block;
    padding: 10px 20px;
    font-size: 12px;
    line-height: 20px;
    color: #666666;
    border-radius: 4px;
    text-transform: uppercase;
    background: #fff;
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;
  }
  
  #valencia2 #valencia2-flters li:hover,
  #valencia2 #valencia2-flters li.filter-active {
    background: #18A8BA;
    color: #fff;
  }
  
  #valencia2 #valencia2-flters li:last-child {
    margin-right: 0;
  }
  
  #valencia2 .valencia2-wrap {
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
  }
  
  #valencia2 .valencia2-wrap:hover {
    box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.16);
  }
  
  #valencia2 .valencia2-item {
    height: 256px;
    overflow: hidden;
  }
  
  #valencia2 .valencia2-item figure {
    background: #000;
    overflow: hidden;
    height: 230px;
    position: relative;
    border-radius: 4px 4px 0 0;
    margin: 0;
  }
  
  #valencia2 .valencia2-item figure:hover img {
    opacity: 0.4;
    transition: 0.3s;
  }
  
  #valencia2 .valencia2-item figure .link-preview,
  #valencia2 .valencia2-item figure .link-details {
    position: absolute;
    display: inline-block;
    opacity: 0;
    line-height: 1;
    text-align: center;
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 50%;
    transition: 0.2s linear;
  }
  
  #valencia2 .valencia2-item figure .link-preview i,
  #valencia2 .valencia2-item figure .link-details i {
    padding-top: 6px;
    font-size: 22px;
    color: #333;
  }
  
  #valencia2 .valencia2-item figure .link-preview:hover,
  #valencia2 .valencia2-item figure .link-details:hover {
    background: #18A8BA;
  }
  
  #valencia2 .valencia2-item figure .link-preview:hover i,
  #valencia2 .valencia2-item figure .link-details:hover i {
    color: #fff;
  }
  
  #valencia2 .valencia2-item figure .link-preview {
    left: calc(50% - 38px);
    top: calc(50% - 18px);
  }
  
  #valencia2 .valencia2-item figure .link-details {
    right: calc(50% - 38px);
    top: calc(50% - 18px);
  }
  
  #valencia2 .valencia2-item figure:hover .link-preview {
    opacity: 1;
    left: calc(50% - 44px);
  }
  
  #portfolio .portfolio-item figure:hover .link-details {
    opacity: 1;
    right: calc(50% - 44px);
  }
  
  #valencia2 .valencia2-item .valencia2-info {
    background: #fff;
    text-align: center;
    padding: 30px;
    height: 90px;
    border-radius: 0 0 3px 3px;
  }
  
  #valencia2 .valencia2-item .valencia2-info h4 {
    font-size: 18px;
    line-height: 1px;
    font-weight: 700;
    margin-bottom: 18px;
    padding-bottom: 0;
  }
  
  #valencia2 .valencia2-item .valencia2-info h4 a {
    color: #333;
  }
  
  #valencia2 .valencia2-item .valencia2-info h4 a:hover {
    color: #18A8BA;
  }
  
  #valencia2 .valencia2-item .valencia2-info p {
    padding: 0;
    margin: 0;
    color: black;
    font-weight: 500;
    font-size: 13px;
  }
  
  
  
  
  
  
  
  /* Questions Section
  --------------------------------*/
  
  #questions {
    padding: 60px 0;
    display: table;
    width: 100%;
    background-color: #f2f2f2;
  }
  }
  
  #questions::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.85);
    z-index: 9;
  }
  
  
  #questions h3 a{
      color: black;
  }
  
  #questions h3 a:hover{
      color: black;
  }
  
  
  #questions .container {
    position: relative;
    z-index: 10;
  }
  
  #questions .questions-col {
    background: #fff;
    border-radius: 0 0 4px 4px;
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
    overflow: hidden;
  }
  
  #questions .questions-col .img {
    position: relative;
  }
  
  .questions-col .img:hover img {transition: all 0.3s ease-out;}
  .questions-col .img:hover img {transform: scale(1.1);
  }  
  
  #questions .questions-col .img img {
    border-radius: 4px 4px 0 0;
  }
  
  #questions .questions-col .icon {
    width: 64px;
    height: 64px;
    padding-top: 8px;
    text-align: center;
    position: absolute;
    background-color: #18A8BA;
    border-radius: 50%;
    text-align: center;
    border: 4px solid #fff;
    left: calc( 50% - 32px);
    bottom: -30px;
    transition: 0.3s;
  }
  
  #questions .questions-col i {
    font-size: 36px;
    line-height: 1;
    color: #fff;
    transition: 0.3s;
  }
  
  
  /*Icon Color When Hover*/
  #questions .questions-col:hover .icon {
    background-color: #D25267;
    color: white;
  }
  
  /*Icon Link Color When Hover*/
  #questions .questions-col:hover i {
    color: white;
  }
  
  #questions .questions-col h2 {
    color: #000;
    text-align: center;
    font-weight: 700;
    font-size: 21px;
    padding: 0;
    margin: 20px 0 12px 0;
    font-family: 'Belleza', sans-serif;
  }
  
  #questions .questions-col h2 a {
    color: #18A8BA;
  }
  
  #questions .questions-col h2 a:hover {
    color: #D25267;
  }
  
  #questions .questions-col p {
    font-size: 14px;
    line-height: 24px;
    color: #333;
    margin-bottom: 0;
    padding: 0 20px 20px 20px;
    font-family: "Quattrocento Sans", sans-serif;
  }
  
  
  
  
  /* About Section
  --------------------------------*/
  
  #about {
    width: 100%;
    background-color: #f9f9f9; /* Light background for contrast */
    background-size: cover;
    padding: 60px 0 40px 0;
    font-family: 'Quattrocento Sans';
  
  }
  
  #about h4 {
      font-family: 'Belleza';
      font-size: 20;
  }
  
  #about h4 a{
    color: #18A8BA;
  }
  
  #about h4 a:hover{
    color: #D25267;
  }
  
  #about p{
    color: black;
  }
  
  #about .box {
    margin-bottom: 30px;
  }
  
  #about .icon {
    float: left;
  }
  
  #about .icon i {
    color: #18A8BA;
    font-size: 36px;
    line-height: 1;
    transition: 0.5s;
  }
  
  #about .icon ion-icon{
    color: #18A8BA;
    font-size: 30px;
    line-height: 0.5;
    transition: 0.5s;  
  }
  
  #about .title {
    margin-left: 60px;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 20px;
  }
  
  #about .title a {
    color: #18A8BA;
  }
  
  #about .box:hover .title a {
    color: #D25267;
  }
  
  #about .description {
    font-size: 16px;
    margin-left: 60px;
    line-height: 24px;
    margin-bottom: 0;
    text-align: justify;
  }
  
  
  
  
  
  /* Estilos del botón flotante */
    /* En tu style.css o dentro de <style> */
    #floating-btn {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #007bff;
      color: #fff;
      font-size: 1.2rem;
      padding: 16px 24px;
      border-radius: 35px;
      text-decoration: none;
      font-weight: bold;
      box-shadow: 0 4px 8px rgba(0,0,0,0.2);
      z-index: 1000;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    #floating-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 12px rgba(0,0,0,0.3);
    }


  
  
  
  
  
  
  
  
  
  
  /* Schedule Section
  --------------------------------*/
  
  #schedule {
    background: #fff;
    background-size: cover;
    padding: 60px 0 40px 0;
    font-family: 'Quattrocento Sans';
  
  }
  
  
  #schedule .lgs-btn {
    font-family: "Quattrocento Sans", sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    text-align: center;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 28px;
    border-radius: 25px;
    transition: 0.5s;
    margin-top: 10px;
    border: 2px solid #18A8BA;
    color: #18A8BA;
  }
  
  #schedule .lgs-btn:hover {
    background: #18A8BA;
    border: 2px solid #18A8BA;
    color: black;
  }
  
  #schedule h4 {
      font-family: 'Belleza';
      font-size: 20;
  }
  
  #schedule h4 a{
    color: #18A8BA;
  }
  
  #schedule h4 a:hover{
    color: #D25267;
  }
  
  #schedule .box {
    margin-bottom: 30px;
  }
  
  #schedule .icon {
    float: left;
  }
  
  #schedule .icon i {
    color: #18A8BA;
    font-size: 36px;
    line-height: 1;
    transition: 0.5s;
  }
  
  #schedule .icon ion-icon{
    color: #18A8BA;
    font-size: 30px;
    line-height: 0.5;
    transition: 0.5s;  
  }
  
  #schedule .title {
    margin-left: 60px;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 20px;
  }
  
  #schedule .title a {
    color: #18A8BA;
  }
  
  #schedule .box:hover .title a {
    color: #D25267;
  }
  
  #schedule .description {
    font-size: 16px;
    margin-left: 60px;
    line-height: 24px;
    margin-bottom: 0;
    text-align: justify;
  }
  
  
  
  
  
  
  /* Workshop Section
  --------------------------------*/
  
  #workshop {
    background: linear-gradient(rgba(0, 142, 99, 0.1), rgba(0, 0, 0, 0.1)), url(assets/img/workshop.jpg) fixed center center;
    background-size: cover;
    padding: 60px 0;
    font-family: "Quattrocento Sans", sans-serif;
  }
  
  #workshop .title {
    margin-left: 60px;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
  }
  
  #workshop .title a {
    color: #111;
  }
  
  #workshop p {
    color: #fff;
  }
  
  #workshop .wks-btn {
    font-family: "Quattrocento Sans", sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 28px;
    border-radius: 25px;
    transition: 0.5s;
    margin-top: 10px;
    border: 2px solid #fff;
    color: #fff;
  }
  
  #workshop .wks-btn:hover {
    color: #18A8BA;
    background: #fff;
    border: 2px solid #18A8BA;
  }
  
  
  
  
  /*--------------------------------------------------------------
  # Gallery Section - Responsive Adjustments
  --------------------------------------------------------------*/
  
  #gallery {
    background-color: #f9f9f9;
    background-size: cover;
    padding: 60px 0;
    font-family: "Quattrocento Sans", sans-serif;
  }
  
  .row.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px; /* Space between gallery items */
    justify-content: center;
  }
  
  .row.gallery-grid .gallery-item {
    flex: 1 1 calc(33.333% - 30px); /* Three columns layout */
    max-width: calc(33.333% - 30px);
    box-sizing: border-box;
  }
  
  .row.gallery-grid .gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }
  
  /* Hover effects for images */
  .row.gallery-grid .gallery-item img:hover {
    transform: scale(1.05); /* Slight zoom effect */
    transition: all ease-in-out .3s;
  }
  
  /* Responsive adjustments for smaller screens */
  @media (max-width: 768px) {
    .row.gallery-grid .gallery-item {
      flex: 1 1 calc(50% - 20px); /* Two columns layout for tablets */
      max-width: calc(50% - 20px);
      margin-bottom: 15px;
    }
  }
  
  @media (max-width: 480px) {
    .row.gallery-grid .gallery-item {
      flex: 1 1 calc(100% - 10px); /* Single column layout for mobile */
      max-width: calc(100% - 10px);
      margin-bottom: 10px;
      text-align: center; /* Center-align content for mobile */
    }
  }
  
  
  /* Disable zooming on mobile devices */
  html, body {
    touch-action: pan-y; /* Allow vertical scrolling but disable zooming */
  }
  
  
  #slideshow { 
    margin: 50px auto; 
    position: relative; 
    width: 64%; 
    height: 36%; 
    padding: 10px; 
    box-shadow: 0 0 0px rgba(0,0,0,0); 
  }
  
  #slideshow > div { 
    position: absolute; 
    top: 10px; 
    left: 10px; 
    right: 10px; 
    bottom: 10px; 
  }
  
  #slideshow2 { 
    margin: 50px auto; 
    position: relative; 
    width: 64%; 
    height: 36%; 
    padding: 10px; 
    box-shadow: 0 0 0px rgba(0,0,0,0); 
  }
  
  #slideshow2 > div { 
    position: absolute; 
    top: 10px; 
    left: 10px; 
    right: 10px; 
    bottom: 10px; 
  }
  
  
  #slideshow3 { 
    margin: 50px auto; 
    position: relative; 
    width: 64%; 
    height: 36%; 
    padding: 10px; 
    box-shadow: 0 0 0px rgba(0,0,0,0); 
  }
  
  #slideshow3 > div { 
    position: absolute; 
    top: 10px; 
    left: 10px; 
    right: 10px; 
    bottom: 10px; 
  }
  
  
  #gallery .gallery-col {
    background: #fff;
    border-radius: 0 0 4px 4px;
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
    
  }
  
  #gallery .gallery-col .img {
    position: relative;
  }
  
  #gallery .gallery-col .img img {
    border-radius: 4px 4px 0 0;
  }
  
  #gallery .gallery-col .icon {
    width: 64px;
    height: 64px;
    padding-top: 8px;
    text-align: center;
    position: absolute;
    background-color: #18A8BA;
    border-radius: 50%;
    border: 4px solid #fff;
    left: calc( 50% - 32px);
    bottom: -30px;
    transition: 0.3s;
  }
  
  #gallery .gallery-col i {
    font-size: 36px;
    line-height: 1;
    color: #fff;
    transition: 0.3s;
  }
  
  #gallery .gallery-col b {
    color: #fff;
    font-size: 18px;
  }
  
  #gallery .gallery-col:hover .icon {
    background-color: #fff;
  }
  
  #gallery .gallery-col:hover i {
    color: white;
  }
  
  #gallery .gallery-col h2 {
    color: #000;
    text-align: center;
    font-weight: 700;
    font-size: 18px;
    font-family: "Quattrocento Sans", sans-serif;
    margin-left: 5px;
    margin-right: 5px;                            /* Session Titles Margins */
  }
  
  #gallery .gallery-col h2 a {
    color: #18A8BA;
    font-family: "Quattrocento Sans", sans-serif;
  }
  
  #gallery .gallery-col h2 a:hover {
    color: #D25267;
  }
  
  #gallery .gallery-col p {
    font-size: 14px;
    line-height: 24px;
    color: #333;
    margin-bottom: 0;
    padding: 0 20px 20px 20px;
  }
  
  #gallery .member {
    text-align: center;
    margin-bottom: 20px;
    background: #000;
    position: relative;
  }
  
  #gallery .member .member-info {
    opacity: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    transition: 0.2s;
    font-family: "Quattrocento Sans", sans-serif;
  }
  
  #gallery .member .member-info-content {
    margin-top: -50px;
    transition: margin 0.2s;
    font-family: "Quattrocento Sans", sans-serif;
  }
  
  
  #gallery .member:hover .member-info {
    background: rgba(0, 0, 0, 0.7);
    opacity: 1;
    transition: 0.4s;
  }
  
  #gallery .member:hover .member-info-content {
    margin-top: 0;
    transition: margin 0.4s;
  }
  
  #gallery .member h2{
    font-family: "Quattrocento Sans", sans-serif;
  }
  
  #gallery .member h4 {
    font-weight: 700;
    margin-bottom: 2px;
    font-size: 18px;
    color: #fff;
    font-family: "Quattrocento Sans", sans-serif;
  }
  
  #gallery .member span {
    font-style: italic;
    display: block;
    font-size: 13px;
    color: #fff;
  }
  
  #gallery .member .social {
    margin-top: 15px;
    font-size: 23px;
  }
  
  #gallery .member .social a {
    transition: none;
    color: #fff;
  }
  
  #gallery .member .social a:hover {
    color: #18A8BA;
  }
  
  #gallery .member .social i {
    font-size: 18px;
    margin: 0 2px;
  }
  
  
  
  
  /* Field Guide Section
  --------------------------------*/
  
  #fieldguide {
    background-size: cover;
    padding: 60px 0;
    font-family: "Quattrocento Sans", sans-serif;
  }
  
  #fieldguide .title {
    margin-left: 60px;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
  }
  
  #fieldguide .title a {
  
  }
  
  #fieldguide p {
      color:white;
  }
  
  #fieldguide h3 {
      color:white;
  }
  
  #fieldguide h3 a {
  }
  
  #fieldguide h3 a:hover {
    color: #D25267;
  }
  
  
  /*
  #fieldguide {
    background: linear-gradient(rgba(0, 142, 99, 0.1), rgba(0, 0, 0, 0.1)), url(../img/backgrounds/fieldguide-bg.jpg) fixed center center;
    background-size: cover;
    padding: 60px 0;
    font-family: "Quattrocento Sans", sans-serif;
  }
  
  #fieldguide .title {
    margin-left: 60px;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
    color:white;
  }
  
  #fieldguide .title a {
    color: #111;
    color:white;
  }
  
  #fieldguide p {
    color: #fff;
  }
  
  #fieldguide h3 {
    color: #fff;
  }
  
  #fieldguide h3 a {
    color: white;
  }
  
  #fieldguide h3 a:hover {
    color: #D25267;
  }
  
  */
  
  #fieldguide .wks-btn {
    font-family: "Quattrocento Sans", sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 28px;
    border-radius: 25px;
    transition: 0.5s;
    margin-top: 10px;
    border: 2px solid white;
    color: white;
  }
  
  #fieldguide .wks-btn:hover {
    background: #18A8BA;
    border: 2px solid #18A8BA;
  }
  
  
  #slideshow { 
    margin: 50px auto; 
    position: relative; 
    width: 64%; 
    height: 36%; 
    padding: 10px; 
    box-shadow: 0 0 0px rgba(0,0,0,0); 
  }
  
  #slideshow > div { 
    position: absolute; 
    top: 10px; 
    left: 10px; 
    right: 10px; 
    bottom: 10px; 
  }
  
  
  
  
  #slideshow2 { 
    margin: 50px auto; 
    position: relative; 
    width: 64%; 
    height: 36%; 
    padding: 10px; 
    box-shadow: 0 0 0px rgba(0,0,0,0); 
  }
  
  #slideshow2 > div { 
    position: absolute; 
    top: 10px; 
    left: 10px; 
    right: 10px; 
    bottom: 10px; 
  }
  

/* Common styles for both sections */
.section-bg {
    background-color: #f8f9fa;
}

.section-header {
    text-align: center;
    padding-bottom: 30px;
}

.section-header h3 {
    font-size: 32px;
    color: #111;
    text-transform: uppercase;
    text-align: center;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.section-header h3::before {
    content: '';
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: #ddd;
    bottom: 1px;
    left: calc(50% - 60px);
}

.section-header h3::after {
    content: '';
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: #18d26e;
    bottom: 0;
    left: calc(50% - 20px);
}
  
 /* Schedule Section Styles */
#schedule .schedule-content {
    text-align: center;
}

#schedule .btn-schedule {
    display: inline-block;
    background: #18d26e;
    color: #fff;
    padding: 10px 25px;
    border-radius: 50px;
    margin-top: 15px;
    transition: 0.3s;
}

#schedule .btn-schedule:hover {
    background: #13a456;
}

#schedule .schedule-image {
    margin-top: 30px;
}

#schedule .schedule-image img {
    max-width: 100%;
    height: auto;
}







/* Registration Section Styles */


#registration {
  background: url("../../assets/img/backgrounds/registration.jpg") center center no-repeat fixed;
  background-size: cover; /* Ajusta la imagen dentro del área sin recortarse */
  background-position: center center; /* Centra la imagen */
  width: 100%; /* Ajusta el ancho al 100% de la pantalla */
}

#registration .container{
    padding: 60px 0;
    text-align: center;
}

#registration .section-header h3 {
    color: white;
}

#registration p {
    color: white;
}


#registration .registration-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two same-width columns*/
    gap: 30px;
    margin-bottom: 30px;
}

/* Make all cards the same width on mobile */
@media (max-width: 768px) {
    #registration .registration-grid {
        grid-template-columns: 1fr; /* Single column layout for mobile */
    }
}

#registration .registration-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

#registration .registration-card h4 {
    display: flex; /* Align elements in the same line */
    justify-content: space-between; /* Left title and right price */
    align-items: center; /* Align vertically */
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Card title style */
#registration .registration-card .reg-title {
    color: #333;
}

/* Price style */
#registration .registration-card .reg-price {
    color: #13a456; 
    font-weight: 800; 
    font-size: 22px; 
}


#registration .registration-card:hover {
    transform: translateY(-5px);
}

#registration .registration-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

#registration .registration-card p {
    text-align: justify;
    font-size: 15px;
    color: black;
}

/* Additional prices formatted similarly */
.registration-card .extra-prices {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    font-size: 14px;
}

.registration-card .extra-price {
    color: #13a456; /* Same as main price */
}


#registration .btn-info {
    display: inline-block;
    background: #18d26e;
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    margin-top: 15px;
    transition: 0.3s;
}

#registration .btn-info:hover {
    background: #13a456;
}
  

.btn-registration {
    font-family: "Quattrocento Sans", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    width: auto;
    padding: 10px 30px;
    margin-bottom: 30px; 
    border-radius: 50px;
    transition: 0.5s;
    color: white;
    background: #fb5425;
}

.btn-registration:hover {
  background-color: #18A8BA;
  color: white;
}



/* Details Section Styles */


#details {
  background: url("../../assets/img/backgrounds/logistics.jpg") center center no-repeat fixed;
  background-size: cover; /* Ajusta la imagen dentro del área sin recortarse */
  background-position: center center; /* Centra la imagen */
  width: 100%; /* Ajusta el ancho al 100% de la pantalla */
}


#details .container{
    padding: 60px 0;
}


#details .section-header h3 {
    color: white;
}

#details .details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

#details .details-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

#details .btn-container {
    margin-top: auto;
    display: flex;
    justify-content: center; 
    width: 100%;
}

#details .details-card:hover {
    transform: translateY(-5px);
}

#details .details-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

#details .details-card p {
    text-align: justify;
}


#details .btn-details {
    display: inline-block;
    background: #18d26e;
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    margin-top: 15px;
    transition: 0.3s;
}

#details .btn-details:hover {
    background: #13a456;
}
  




#logistics .container{
    padding: 60px 0;
}
/* Logistics Section Styles */
#logistics .logistics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

#logistics .logistics-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

#logistics .logistics-card:hover {
    transform: translateY(-5px);
}

#logistics .logistics-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

#logistics .btn-logistics {
    display: inline-block;
    background: #18d26e;
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    margin-top: 15px;
    transition: 0.3s;
}

#logistics .btn-logistics:hover {
    background: #13a456;
}
  
  
  
  
  /* Accommodation Section Styles */
#accommodation {
    padding: 60px 0;
}

.accommodation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.accommodation-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.accommodation-card:hover {
    transform: translateY(-5px);
}

.accommodation-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #18d26e;
}

.accommodation-card ul {
    list-style-type: none;
    padding: 0;
}

.accommodation-card ul li {
    margin-bottom: 10px;
}

.btn-booking {
    display: inline-block;
    background: #18d26e;
    color: #fff;
    padding: 10px 25px;
    border-radius: 50px;
    margin-top: 15px;
    transition: 0.3s;
    text-decoration: none;
}

.btn-booking:hover {
    background: #13a456;
}

.contact-info {
    margin-top: 40px;
    text-align: center;
}

.contact-info a {
    color: #18d26e;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}
 
  
 
  
  
  /* Register Section
  --------------------------------*/
  
  
  
  #register {
    background: url("assets/img/backgrounds/darksand.jpg") center top no-repeat fixed;
    background-size: cover;
    padding: 60px 0 40px 0;
    position: relative;
    font-family: "Quattrocento Sans", sans-serif;
  }
  
  
  #register p{
      color: white;
      text-align:justify;
  }
  
  #register h2{
      color:white;
  }
  
  #register #register-flters {
    padding: 0;
    margin: 5px 0 5px 0;
    list-style: none;
    text-align: center;
  }
  
  #register #register-flters li {
    cursor: pointer;
    margin: 5px 5px 5px 0;
    display: inline-block;
    padding: 10px 20px;
    font-size: 12px;
    line-height: 20px;
    color: #666666;
    border-radius: 4px;
    text-transform: uppercase;
    background: #fff;
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;
  }
  
  #register #register-flters li:hover,
  #register #register-flters li.filter-active {
    background: #18A8BA;
    color: #fff;
  }
  
  #register #register-flters li:last-child {
    margin-right: 0;
  }
  
  #register .register-wrap {
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
  }
  
  #register .register-wrap:hover {
    box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.16);
  }
  
  #register .register-item {
    height: 256px;
    overflow: hidden;
  }
  
  #register .register-item figure {
    background: #000;
    overflow: hidden;
    height: 230px;
    position: relative;
    border-radius: 4px 4px 0 0;
    margin: 0;
  }
  
  #register .register-item figure:hover img {
    opacity: 0.4;
    transition: 0.3s;
  }
  
  #register .register-item figure .link-preview,
  #register .register-item figure .link-details {
    position: absolute;
    display: inline-block;
    opacity: 0;
    line-height: 1;
    text-align: center;
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 50%;
    transition: 0.2s linear;
  }
  
  #register .register-item figure .link-preview i,
  #register .register-item figure .link-details i {
    padding-top: 6px;
    font-size: 22px;
    color: #333;
  }
  
  #register .register-item figure .link-preview:hover,
  #register .register-item figure .link-details:hover {
    background: #18A8BA;
  }
  
  #register .register-item figure .link-preview:hover i,
  #register .register-item figure .link-details:hover i {
    color: #fff;
  }
  
  #register .register-item figure .link-preview {
    left: calc(50% - 38px);
    top: calc(50% - 18px);
  }
  
  #register .register-item figure .link-details {
    right: calc(50% - 38px);
    top: calc(50% - 18px);
  }
  
  #register .register-item figure:hover .link-preview {
    opacity: 1;
    left: calc(50% - 44px);
  }
  
  #portfolio .portfolio-item figure:hover .link-details {
    opacity: 1;
    right: calc(50% - 44px);
  }
  
  #register .register-item .register-info {
    background: #fff;
    text-align: center;
    padding: 30px;
    height: 90px;
    border-radius: 0 0 3px 3px;
  }
  
  #register .register-item .register-info h4 {
    font-size: 18px;
    line-height: 1px;
    font-weight: 700;
    margin-bottom: 18px;
    padding-bottom: 0;
  }
  
  #register .register-item .register-info h4 a {
    color: #333;
  }
  
  #register .register-item .register-info h4 a:hover {
    color: #18A8BA;
  }
  
  #register .register-item .register-info p {
    padding: 0;
    margin: 0;
    color: black;
    font-weight: 500;
    font-size: 13px;
  }
  
  #register .btn-register {
    font-family: "Quattrocento Sans", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 32px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    color: #fff;
    border: 2px solid #fff;
    background: transparent;
  }
  
  #register .btn-register:hover {
    background-color: white;
    color: black;
    mix-blend-mode: lighten;
  }
  
  
  /*******************/
  
  /* Logistics Section
  --------------------------------*/
  
  
  #skills {
    padding: 60px 0;
  }
  
  #skills .progress {
    height: 35px;
    margin-bottom: 10px;
  }
  
  #skills .progress .skill {
    font-family: "Open Sans", sans-serif;
    line-height: 35px;
    padding: 0;
    margin: 0 0 0 20px;
    text-transform: uppercase;
  }
  
  #skills .progress .skill .val {
    float: right;
    font-style: normal;
    margin: 0 20px 0 0;
  }
  
  #skills .progress-bar {
    width: 1px;
    text-align: left;
    transition: .9s;
  }
  
  /* -------------------------------*/
  /* Facts Section
  --------------------------------*/
  
  #facts {
    background: url("assets/img/facts-bg.jpg") center top no-repeat fixed;
    background-size: cover;
    padding: 60px 0 0 0;
    position: relative;
  }
  
  #facts::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.88);
    z-index: 9;
  }
  
  #facts .container {
    position: relative;
    z-index: 10;
  }
  
  #facts .counters span {
    font-family: "Quattrocento Sans", sans-serif;
    font-weight: bold;
    font-size: 48px;
    display: block;
    color: #18A8BA;
  }
  
  #facts .counters p {
    padding: 0;
    margin: 0 0 20px 0;
    font-family: "Quattrocento Sans", sans-serif;
    font-size: 14px;
    color: #111;
  }
  
  #facts .facts-img {
    text-align: center;
    padding-top: 30px;
  }
  
  /* Field Guide
  --------------------------------*/
  
  #portfolio {
    background-image: url("assets/img/backgrounds/sand.png");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 60px 0;
    font-family: "Quattrocento Sans", sans-serif;
      
  }
  
  #portfolio #portfolio-flters {
    padding: 0;
    margin: 5px 0 5px 0;
    list-style: none;
    text-align: center;
  }
  
  #portfolio #portfolio-flters li {
    cursor: pointer;
    margin: 5px 5px 5px 0;
    display: inline-block;
    padding: 10px 20px;
    font-size: 12px;
    line-height: 20px;
    color: #666666;
    border-radius: 4px;
    text-transform: uppercase;
    background: #fff;
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;
  }
  
  #portfolio #portfolio-flters li:hover,
  #portfolio #portfolio-flters li.filter-active {
    background: #18A8BA;
    color: #fff;
  }
  
  #portfolio #portfolio-flters li:last-child {
    margin-right: 0;
  }
  
  #portfolio .portfolio-wrap {
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
  }
  
  #portfolio .portfolio-wrap:hover {
    box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.16);
  }
  
  #portfolio .portfolio-item {
    height: 256px;
    overflow: hidden;
  }
  
  #portfolio .portfolio-item figure {
    background: #000;
    overflow: hidden;
    height: 230px;
    position: relative;
    border-radius: 4px 4px 0 0;
    margin: 0;
  }
  
  #portfolio .portfolio-item figure:hover img {
    opacity: 0.4;
    transition: 0.3s;
  }
  
  #portfolio .portfolio-item figure .link-preview,
  #portfolio .portfolio-item figure .link-details {
    position: absolute;
    display: inline-block;
    opacity: 0;
    line-height: 1;
    text-align: center;
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 50%;
    transition: 0.2s linear;
  }
  
  #portfolio .portfolio-item figure .link-preview i,
  #portfolio .portfolio-item figure .link-details i {
    padding-top: 6px;
    font-size: 22px;
    color: #333;
  }
  
  #portfolio .portfolio-item figure .link-preview:hover,
  #portfolio .portfolio-item figure .link-details:hover {
    background: #18A8BA;
  }
  
  #portfolio .portfolio-item figure .link-preview:hover i,
  #portfolio .portfolio-item figure .link-details:hover i {
    color: #fff;
  }
  
  #portfolio .portfolio-item figure .link-preview {
    left: calc(50% - 38px);
    top: calc(50% - 18px);
  }
  
  #portfolio .portfolio-item figure .link-details {
    right: calc(50% - 38px);
    top: calc(50% - 18px);
  }
  
  #portfolio .portfolio-item figure:hover .link-preview {
    opacity: 1;
    left: calc(50% - 44px);
  }
  
  #portfolio .portfolio-item figure:hover .link-details {
    opacity: 1;
    right: calc(50% - 44px);
  }
  
  #portfolio .portfolio-item .portfolio-info {
    background: #fff;
    text-align: center;
    padding: 30px;
    height: 90px;
    border-radius: 0 0 3px 3px;
  }
  
  #portfolio .portfolio-item .portfolio-info h4 {
    font-size: 18px;
    line-height: 1px;
    font-weight: 700;
    margin-bottom: 18px;
    padding-bottom: 0;
  }
  
  #portfolio .portfolio-item .portfolio-info h4 a {
    color: #333;
  }
  
  #portfolio .portfolio-item .portfolio-info h4 a:hover {
    color: #18A8BA;
  }
  
  #portfolio .portfolio-item .portfolio-info p {
    padding: 0;
    margin: 0;
    color: black;
    font-weight: 500;
    font-size: 13px;
  }
  
  /* Clients Section
  --------------------------------*/
  
  #clients {
    padding: 60px 0;
  }
  
  #clients img {
    max-width: 100%;
    opacity: 0.5;
    transition: 0.3s;
    padding: 15px 0;
  }
  
  #clients img:hover {
    opacity: 1;
  }
  
  #clients .owl-nav,
  #clients .owl-dots {
    margin-top: 5px;
    text-align: center;
  }
  
  #clients .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
  }
  
  #clients .owl-dot.active {
    background-color: #18A8BA;
  }
  
  
  
  
  /* Testimonials Section
  --------------------------------*/
  
  #testimonials {
    /* background-image: linear-gradient(to top, transparent 95%, rgba(0, 0, 0, 1) 100%), linear-gradient(to bottom, transparent 95%, rgba(0, 0, 0, 1) 100%), url('../spatiality/backgrounds/Participants.png'); background-size: cover; background-position: center;;*/
    background-color: transparent;
    background-size: cover;
    padding: 60px 0 40px 0;
    position: relative;
    font-family: 'Belleza';
    margin-top: 20px;
    position: relative;
  }
  
  #testimonials .section-header {
    margin-bottom: 40px;
  }
  
  #testimonials .testimonial-item {
    text-align: center;
    margin: 0 20% 15px 20%;
  
  }
  
  #testimonials .testimonial-item .testimonial-img {
    width: 120px;
    border-radius: 50%;
    border: 4px solid #fff;
    margin: 0 auto;
  }
  
  #testimonials .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    color: white;
    font-family: 'Quattrocento Sans', sans-serif;
      text-align: right;
  }
  
  #testimonials .testimonial-item h4 {
    font-size: 22px;
    color: white;
      font-family: 'Belleza';
      text-align: right;
  }
  
  #testimonials .testimonial-item .quote-sign-left {
    margin-top: -15px;
    padding-right: 5px;
    display: inline-block;
    width: 37px;
  }
  
  #testimonials .testimonial-item .quote-sign-right {
    margin-top: -15px;
    padding-left: 5px;
    display: inline-block;
    max-width: 100%;
    width: 37px;
  }
  
  #testimonials .testimonial-item p {
    text-align:justify;
      font-size: 18px;
    font-family: 'Quattrocento Sans', sans-serif;
      color: white;
  }
  
  #testimonials .owl-nav,
  #testimonials .owl-dots {
    margin-top: 5px;
    text-align: center;
  }
  
  #testimonials .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
  }
  
  #testimonials .owl-dot.active {
    background-color: #18A8BA;
  }
  
  
  
  #testimonials .btn-testimonials {
    font-family: "Quattrocento Sans", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 32px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    color: black;
    border: 2px solid #fff;
    background: white;
  }
  
  #testimonials .btn-testimonials:hover {
    background: #18A8BA;
    border: 2px solid #18A8BA;
    color: white;
  }
  
/* *************** */
/* Speaker Section */
/* *************** */

#speakers {
    padding: 40px 20px;
    background: url("../../assets/img/backgrounds/registration.jpg") center center no-repeat fixed;
    background-size: cover; /* Ajusta la imagen dentro del área sin recortarse */
    background-position: center center; /* Centra la imagen */
    width: 100%; /* Ajusta el ancho al 100% de la pantalla */
}

.section-header h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    color: white;
}

.section-header p {
    color: white;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Icon legend under title */
.section-header p span.type,
.section-header p span.mode {
  display: inline-block;
  width: 1.4em;
  height: 1.4em;
  text-align: center;
  line-height: 1.4em;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: 15px;           /* space to the left of each icon */
  margin-right: 0;         /* space to the right, before the label */
}




/* Speaker Grid */
.speaker-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Responsive columns */
    gap: 20px; /* Space between cards */
}

/* Speaker Card */
.speaker-card {
    background-color: #fff; /* White background for cards */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    overflow: hidden; /* Ensures content stays inside rounded corners */
    display: flex;
    flex-direction: column; /* Align content vertically */
    justify-content: space-between; /* Ensures consistent spacing */
    padding: 20px;
}

/*
/*.speaker-card:hover {
/*    transform: translateY(-5px); /* Slight lift on hover */
/*    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Enhanced shadow on hover */
/*} 

/* Speaker Photo */
.speaker-photo-container {
    width: 100%;
    padding-top: 100%; /* Creates a 1:1 aspect ratio */
    position: relative;
    overflow: hidden;
    border-radius: 8px; /* Slight rounding for photos */
    margin-bottom: 10px;
}

.speaker-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* This will crop the image to fill the container */
    object-position: center; /* Centers the image within the container */
}


/* Speaker Info */
.speaker-info {
    text-align: center;
}

.speaker-name {
    font-size: 1.4rem;
    font-weight: bold;
    color: #333;
}

.speaker-affiliation-container {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.speaker-affiliation {
    width: 100%;
    height: auto;
    object-fit: contain;
    margin: 10px 0; /* 10px top and bottom, 0px sides */
}



.speaker-topic {
    font-size: 1rem;
    font-style: italic;
    color: #666; }
    

/* Speaker Label */
.speaker-label {
    display: inline-block;
    margin-top: 10px; /* Adds spacing above the label */
    padding: 5px 10px;
    font-size: 0.9rem;
    color: gray;
    margin-bottom: 0; /* Ensures no space below the label */
}



/* Speaker Meta-icon container */
.speaker-meta{
  display:flex;
  justify-content:center;
  gap:8px;          /* space between the two icons */
  margin-top:10px;
}

/* Generic icon styling */
.speaker-contribution-meta {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
  /* para que los spans sean cuadrados y centrados */
}
.speaker-contribution-meta span {
  display: inline-block;
  width: 1.4em;
  height: 1.4em;
  text-align: center;
  line-height: 1.4em;
  font-family: "Font Awesome 5 Free"; /* nombre interno FA */
  font-weight: 900;                   /* solid style */
  color: #666;                        /* color por defecto */
}

/* session types */
.type.talk::before {
  content: "\f130"; /* fa-microphone */
  color: #6c757d;
}
.type.course::before {
  content: "\f518"; /* fa-book-open */
  color: #6c757d;
}
.type.workshop::before {
  content: "\f085"; /* fa-cogs */
  color: #6c757d;
}
.type.discussion::before {
  content: "\f0c0"; /* fa-users */
  color: #6c757d;
}

/* delivery modes */
.mode.online::before {
  content: "\f108"; /* fa-desktop */
  color: #6c757d;
}
.mode.onsite::before {
  content: "\f3c5"; /* fa-map-marker-alt */
  color: #6c757d;
}

/* Makes icons white in the legend */
.section-header p span.type.talk::before,
.section-header p span.type.workshop::before,
.section-header p span.type.course::before,
.section-header p span.mode.online::before,
.section-header p span.mode.onsite::before {
  color: #fff !important;
}



/* Program Section Styles */
#onsite-activities {
    padding: 60px 0;
    background-color: #fff;
}


#onsite-activities .legend{
    margin-top: 50px;
    margin-bottom: 0px;
    padding-bottom: 0;
    text-align: center;
}

/* Legend container: allow items to wrap but keep pairs intact */
.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;               /* space between pairs */
  justify-content: center;  /* center all items horizontally */
  align-items: center;      /* (optional) center them vertically */
}


/* Each icon+text pair never breaks apart */
.legend-item {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;  /* prevent line breaks within the pair */
}

/* Icon styling within each legend item */
.legend-item .type,
.legend-item .mode {
  display: inline-block;
  width: 1.4em;
  height: 1.4em;
  text-align: center;
  line-height: 1.4em;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: 0.5em;   /* space between icon and its text */
  margin-right: 0.5em;   /* space between icon and its text */
  color: #fff !important; /* override previous grey */
}


#onsite-activities .section-header h3 {
    color: black;
}


.section-header {
    text-align: center;
    margin-bottom: 0px;
}

.section-title {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: #007bff;
    bottom: 0;
    left: calc(50% - 25px);
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.activity-card {
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    height: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 20px;
  transform: translateY(calc(100% - 65px)); /* Shows only the top 65px */
    transition: transform 0.3s ease;
}

.activity-card:hover .card-content {
    transform: translateY(0);
}

.card-content h3 {
    margin-top: 0;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.card-content p {
    font-size: 0.9em;
    margin-bottom: 15px;
}

.btn-learn-more {
    display: inline-block;
    padding: 8px 15px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn-learn-more:hover {
    background-color: #0056b3;
}

/* ——— Style for the “Confirmed Sessions” heading ——— */
.sessions-heading {
  text-align: center;
  font-size: 2rem;    /* smaller than an h3 */
  font-weight: bold;
  margin: 0px;  /* space above and below */
  color: #333;
}

/* Remove default top/bottom margins from the two <p> inside each card */
.session-item > p {
  margin: 5px;              /* kills the 16 px  + 16 px browser default ✅ */
}

.session-item:hover {
  transform: scale(1.05); /* Zoom al 105% */
}



/* Optional: give back a tiny gap only when the card is open */
.session-item.open .session-desc {
  margin-top: 0.5rem;     /* small breathing space when expanded */
}



/* ——— Adjustments for the sessions list ——— */
.sessions-list .session-item {
  margin-bottom: 0px;   /* more space between items */
}

.day-heading {
    padding-top: 40px;
    font-weight: 800;
}

.session-header {
  margin: 0 0 5px;
  font-size: 16px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  cursor: pointer;
}

/* ───── LEFT PART: TIME ───── */
.session-time {
  display: inline-flex;
  align-items: center;
  background-color: #b4e5ff;     /* brighter blue – time section ✅ */
  border: 1px solid #7ccaff;     /* matching border ✅ */
  border-right: none;            /* remove right border to fuse blocks ✅ */
  border-top-left-radius: 6px;   /* keep only left corners rounded ✅ */
  border-bottom-left-radius: 6px;/* keep only left corners rounded ✅ */
  padding: 0.3em 0.6em;
  margin-right: 0;               /* no gap between the two blocks ✅ */
}

/* ───── RIGHT PART: TITLE + ICONS ───── */
.session-label {
  display: inline-flex;
  align-items: center;
  background-color: #e0f4ff;     /* lighter blue – label section ✅ */
  border: 1px solid #a0cfff;     /* its own border color ✅ */
  border-left: none;             /* remove left border to fuse blocks ✅ */
  border-top-right-radius: 6px;  /* right corners rounded ✅ */
  border-bottom-right-radius: 6px;/* right corners rounded ✅ */
  padding: 0.3em 0.8em;
  margin-right: 0.6em;           /* keep gap AFTER the pill ✅ */
}

.session-label span,
.session-label strong {
  margin-right: 0.2em;
  margin-left: 0.2em;
}

.session-label strong {
  margin-right: 15px;
}



/* ───── LEFT PART: TIME (SPECIAL)───── */
.session-time-special {
  display: inline-flex;
  align-items: center;
  background-color: #ffcc80;     /* brighter blue – time section ✅ */
  border: 1px solid #ffa64d;     /* matching border ✅ */
  border-right: none;            /* remove right border to fuse blocks ✅ */
  border-top-left-radius: 6px;   /* keep only left corners rounded ✅ */
  border-bottom-left-radius: 6px;/* keep only left corners rounded ✅ */
  padding: 0.3em 0.6em;
  margin-right: 0;               /* no gap between the two blocks ✅ */
}

/* ───── RIGHT PART: TITLE + ICONS (SPECIAL) ───── */
.session-label-special {
  display: inline-flex;
  align-items: center;
  background-color: #ffe6bf;     /* lighter blue – label section ✅ */
  border: 1px solid #ffbf80;     /* its own border color ✅ */
  border-left: none;             /* remove left border to fuse blocks ✅ */
  border-top-right-radius: 6px;  /* right corners rounded ✅ */
  border-bottom-right-radius: 6px;/* right corners rounded ✅ */
  padding: 0.3em 0.8em;
  margin-right: 0.6em;           /* keep gap AFTER the pill ✅ */
}

.session-label span,
.session-label strong {
  margin-right: 0.2em;
  margin-left: 0.2em;
}

.session-label strong {
  margin-right: 15px;
}


/* ───── LEFT PART: TIME (VISIT) ───── */
.session-time-visit {
  display: inline-flex;
  align-items: center;
  background-color: #80ff80;     /* bright green – time section ✅ */
  border: 1px solid #66cc66;     /* harmonious green border ✅ */
  border-right: none;            /* remove right border to merge blocks ✅ */
  border-top-left-radius: 6px;   /* round top-left corner ✅ */
  border-bottom-left-radius: 6px;/* round bottom-left corner ✅ */
  padding: 0.3em 0.6em;
  margin-right: 0;               /* no gap between the two blocks ✅ */
}

/* ───── RIGHT PART: TITLE + ICONS (VISIT) ───── */
.session-label-visit {
  display: inline-flex;
  align-items: center;
  background-color: #b3ffb3;     /* soft green – label section ✅ */
  border: 1px solid #99e699;     /* moderate green border ✅ */
  border-left: none;             /* remove left border to merge blocks ✅ */
  border-top-right-radius: 6px;  /* round top-right corner ✅ */
  border-bottom-right-radius: 6px;/* round bottom-right corner ✅ */
  padding: 0.3em 0.8em;
  margin-right: 0.6em;           /* gap after the pill ✅ */
}

/* Optional alternative tones: */
/* Vibrant green */
/* background-color: #66ff66; border: 1px solid #4dcc4d; */

/* Pale green */
/* background-color: #d9ffdb; border: 1px solid #b3e6b3; */



.session-desc {
  max-height: 0;            
  overflow: hidden;
  opacity: 0;
  font-size: 16px;
  transition: max-height .3s ease, opacity .3s ease;
  margin-left: 2.2rem;
}

.session-item.open .session-desc {
  max-height: 500px;        
  opacity: 1;
}

/* Mobile */
@media (max-width: 600px) {
  .session-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .session-header .session-label {
    margin-bottom: 0.5em;
  }
}



/* ---------- BASE ICONS ---------- */
.type, .mode {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: relative;          /* ancla para el tooltip */
  cursor: pointer;
}

/* ---------- TOOLTIP (just ::after) ---------- */
.type[data-tip]:hover::after,
.type[data-tip]:focus::after,
.mode[data-tip]:hover::after,
.mode[data-tip]:focus::after {
  content: attr(data-tip);     /* texto que pusiste en data-tip */
  position: absolute;
  left: 50%;
  bottom: 125%;                /* encima del icono */
  transform: translateX(-50%);
  background: #333;
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-family: "Quattrocento Sans", sans-serif;
  font-size: 16px;
  white-space: nowrap;
  z-index: 999;
  opacity: 0;
  animation: fadeIn 0.2s forwards;
}

/* suave aparición */
@keyframes fadeIn { to { opacity: 1; } }




/* -------- BUTTON STYLE -------- */
.btn-gcal {
  font-family: "Quattrocento Sans", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: block;          /* keeps margin auto centering */
  width: max-content;
  padding: 10px 30px;
  margin: 50px auto 30px;
  border-radius: 50px;
  transition: background 0.3s ease;
  color: #fff;
  background: #4d98ff;     /* original blue */
}

.btn-gcal:visited,
.btn-gcal:active,
.btn-gcal:focus {
  color: #fff;              /* no red/purple after click */
  text-decoration: none;    /* evita subrayados raros */
}

.btn-gcal:hover {
  background: #1e5ddf;     /* noticeably darker on hover */
  color: #fff;
}






@media (max-width: 768px) {
    .activities-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .activity-card {
        height: 250px;
    }
}

  
  /* Team Section
  --------------------------------*/
  
  #team {
    background: url("assets/img/backgrounds/darksand.jpg") center top no-repeat fixed;
    background-size: cover;
    padding: 60px 0 40px 0;
    position: relative;
    font-family: "Quattrocento Sans", sans-serif;
  }
  
  
  #team p{
      margin-bottom:0px;
  }
  
  #team .member {
    text-align: center;
    margin-bottom: 20px;
    background: #000;
    position: relative;
  }
  
  #team .member .member-info {
    opacity: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    transition: 0.2s;
  }
  
  #team .member .member-info-content {
    margin-top: -50px;
    transition: margin 0.2s;
  }
  
  #team .member:hover .member-info {
    background: rgba(0, 0, 0, 0.7);
    opacity: 1;
    transition: 0.4s;
  }
  
  #team .member:hover .member-info-content {
    margin-top: 0;
    transition: margin 0.4s;
  }
  
  #team .member h4 {
    font-weight: 700;
    margin-bottom: 2px;
    font-size: 16px;
    color: #fff;
  }
  
  #team .member span {
    font-weight: 700;
    margin-bottom: 2px;
    font-size: 12px;
    color: #fff;
  }
  
  #team .member span {
    font-style: italic;
    display: block;
    font-size: 13px;
    color: #fff;
  }
  
  #team .member .social {
    margin-top: 15px;
    font-size: 23px;
  }
  
  #team .member .social a {
    transition: none;
    color: #fff;
  }
  
  #team .member .social a:hover {
    color: #18A8BA;
  }
  
  #team .member .social i {
    font-size: 18px;
    margin: 0 1px;
  }
  
  
  
  
  
  
  
  
  
  
  /* Sponsors Section
  --------------------------------*/
  
  #sponsors {
    background-color: white;
   padding: 60px 0 40px 0;
    position: relative;
    font-family: "Quattrocento Sans", sans-serif;
  }
  
  
  #sponsors p{
      margin-bottom:0px;
  }
  
  
  
  
  
  
  /* Mobile Table Styles (Speakers, Team)*/
  
  @media (max-width: 1000px) {
    table {
      width: 60%; /* Ancho del 60% en dispositivos móviles */
      margin-left: auto;
      margin-right: auto;
    }
  }
  
  @media (max-width: 1000px) {
    .responsive-table tr {
      display: flex;
      flex-wrap: wrap;
      margin-bottom: 10px;
    }
  }
  
  @media (max-width: 1000px) {
    .responsive-table td {
      width: 100%; /* Porcentaje deseado */
      display: block;
      font-size: 22px;
      text-align: center;
      margin-bottom: 0px;
    }
  }
  
  
  @media (max-width: 1000px) {
    .responsive-table td p {
      font-size: 25px;
      text-align: center;
      margin-bottom: 25px !important;
    }
  }
  
  
  @media (max-width: 1000px) {
    .responsive-table td a {
      font-size: 28px;
      margin-top: 20px !important;
      display: inline-block;
      line-height: 1;
    }
  }
  
  
  
  
  
  
  /* Sessions Section
  --------------------------------*/
  
  #sessions {
    background: url("assets/img/Micro2.png") center top no-repeat fixed;
    background-size: cover;
    padding: 60px 0 40px 0;
    position: relative;
    font-family: "Quattrocento Sans", sans-serif;
    color: white;
  }
  
  #sessions b{
    text-align: center;
  }
  
  
  
  #sessions .info-box {
    background-color: rgba(0, 0, 0, 0.65);
    color: white;
    border-radius: 10px;
    padding: 40px;
    margin-bottom: -20 px;
  }
  
  #sessions .member {
    text-align: center;
    margin-bottom: 20px;
    background: #000;
    position: relative;
  }
  
  #sessions .member .member-info {
    opacity: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    transition: 0.2s;
  }
  
  #sessions .member .member-info-content {
    margin-top: -50px;
    transition: margin 0.2s;
  }
  
  #sessions .member:hover .member-info {
    background: rgba(0, 0, 0, 0.7);
    opacity: 1;
    transition: 0.4s;
  }
  
  #sessions .member:hover .member-info-content {
    margin-top: 0;
    transition: margin 0.4s;
  }
  
  #sessions .member h4 {
    font-weight: 700;
    margin-bottom: 2px;
    font-size: 18px;
    color: #fff;
  }
  
  #sessions .member span {
    font-style: italic;
    display: block;
    font-size: 13px;
    color: #fff;
  }
  
  #sessions .member .social {
    margin-top: 15px;
    font-size: 23px;
  }
  
  #sessions .member .social a {
    transition: none;
    color: #fff;
  }
  
  #sessions .member .social a:hover {
    color: #18A8BA;
  }
  
  #sessions .member .social i {
    font-size: 18px;
    margin: 0 2px;
  }
  
  
  #sessions .btn-youtube {
    font-family: "Quattrocento Sans", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 4px 10px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 33px;
    color: #fff;
    background: #FF0000;
    border: 2px solid #FF0000;
  }
  
  #sessions .btn-youtube:hover {
    background: #fff;
    color: #FF0000;
    border: 2px solid #FF0000;
  }
  
  #sessions .questions-col {
    background: rgba(255,255,255,0.3);
    border-radius: 15px 15px 15px 15px;
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
  }
  
  #sessions .artist {
    color: white;
    background: rgba(0,0,0,0.4);
    border-radius: 15px 15px 15px 15px;
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
  }
  
  
  #sessions .questions-col .img {
    position: relative;
  }
  
  #sessions .questions-col .img img {
    border-radius: 4px 4px 0 0;
  }
  
  #sessions .questions-col .icon {
    width: 64px;
    height: 64px;
    padding-top: 8px;
    text-align: center;
    position: absolute;
    background-color: #18A8BA;
    border-radius: 50%;
    text-align: center;
    border: 4px solid #fff;
    left: calc( 50% - 32px);
    bottom: -30px;
    transition: 0.3s;
  }
  
  #sessions .questions-col i {
    /*font-size: 36px;
    line-height: 1;
    color: #fff;
    transition: 0.3s;*/
  }
  
  #sessions .questions-col:hover .icon {
    background-color: #fff;
  }
  
  #sessions .questions-col:hover i {
    /*color: #18A8BA;*/
  }
  
  #sessions .questions-col h2 {
    color: #000;
    text-align: center;
    font-weight: 700;
    font-size: 20px;
    padding: -10;
    margin: -10px 0 12px 0;
    margin-top: -10px;
  }
  
  #sessions .questions-col h2 a {
    color: #000;
  }
  
  #sessions .questions-col h2 a:hover {
    color: #18A8BA;
  }
  
  #sessions .questions-col p {
    font-size: 17px;
    line-height: 24px;
    color: black;
    margin-bottom: 0;
    padding: 0 20px 20px 20px;
  }
  
  
  
  
  
  /* Artists Section
  --------------------------------*/
  
  #artists {
    background: url("assets/img/backgrounds/gallery-page-bg.jpg") center top no-repeat fixed;
    background-size: cover;
    padding: 60px 0 40px 0;
    position: relative;
    font-family: "Quattrocento Sans", sans-serif;
  }
  
  #artists b{
    text-align: center;
  }
  
  #artists .member {
    text-align: center;
    margin-bottom: 20px;
    background: transparent;
    position: relative;
  }
  
  #artists .member .member-info {
    opacity: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    transition: 0.2s;
  }
  
  #artists .member .member-info-content {
    margin-top: -50px;
    transition: margin 0.2s;
  }
  
  #artists .member:hover .member-info {
    background: rgba(0, 0, 0, 0.7);
    opacity: 1;
    transition: 0.4s;
  }
  
  #artists .member:hover .member-info-content {
    margin-top: 0;
    transition: margin 0.4s;
  }
  
  #artists .member h4 {
    font-weight: 700;
    margin-bottom: 2px;
    font-size: 18px;
    color: #fff;
  }
  
  #artists .member span {
    font-style: italic;
    display: block;
    font-size: 13px;
    color: #fff;
  }
  
  #artists .member .social {
    margin-top: 15px;
    font-size: 23px;
  }
  
  #artists .member .social a {
    transition: none;
    color: #fff;
  }
  
  #artists .member .social a:hover {
    color: #18A8BA;
  }
  
  #artists .member .social i {
    font-size: 18px;
    margin: 0 2px;
  }
  
  
  #artists .btn-youtube {
    font-family: "Quattrocento Sans", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 4px 10px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 22px;
    color: #fff;
    background: #FF0000;
  }
  
  #artists .btn-youtube:hover {
    background: #fff;
    color: #FF0000;
  }
  
  #artists .gallery-col {
    background: transparent;
    text-align: center;
    border-radius: 0 0 0px 0px;
    margin-bottom: 0px;
    
  }
  
  #artists .questions-col {
    background: rgba(255,255,255,0.3);
    border-radius: 15px 15px 15px 15px;
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
  }
  
  #artists .artist {
    color: white;
    background: rgba(0,0,0,0.8);
  }
  
  #artists .artist2 {
    color: white;
    background: rgba(0,0,0,0.65);
  }
  
  
  #artists .questions-col .img {
    position: relative;
  }
  
  #artists .questions-col .img img {
    border-radius: 4px 4px 0 0;
  }
  
  #artists .questions-col .icon {
    width: 64px;
    height: 64px;
    padding-top: 8px;
    text-align: center;
    position: absolute;
    background-color: #18A8BA;
    border-radius: 50%;
    text-align: center;
    border: 4px solid #fff;
    left: calc( 50% - 32px);
    bottom: -30px;
    transition: 0.3s;
  }
  
  #artists .questions-col i {
    /*font-size: 36px;
    line-height: 1;
    color: #fff;
    transition: 0.3s;*/
  }
  
  #artists .questions-col:hover .icon {
    background-color: #fff;
  }
  
  #artists .questions-col:hover i {
    /*color: #18A8BA;*/
  }
  
  #artists .questions-col h2 {
    color: #000;
    text-align: center;
    font-weight: 700;
    font-size: 20px;
    padding: -10;
    margin: -10px 0 12px 0;
    margin-top: -10px;
  }
  
  #artists .questions-col h2 a {
    color: #000;
  }
  
  #artists .questions-col h2 a:hover {
    color: #18A8BA;
  }
  
  #artists .questions-col p {
    font-size: 17px;
    line-height: 24px;
    color: black;
    margin-bottom: 0;
    padding: 0 20px 20px 20px;
  }
  
  #artists .btn-steam {
    font-family: "Quattrocento Sans", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 24px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 40px;
    color: #2a475e;
    background: transparent;
    border: 2px solid #2a475e;
  }
  
  #artists .btn-steam:hover {
    background: #2a475e;
    color: white;
    border: 2px solid #2a475e;
  }
  
  #artists .btn-steam i{
    vertical-align: middle;
    padding: 2px;
  }
  
  
  
   /*----------------------------------------------
          MOD: CARDS (TARJETAS INSPIRACIONES)
      ----------------------------------------------*/      
          
  
  
  #card{
      box-shadow: 0 10px 10px 1px rgba(128, 128, 128, 0.31);
      background: rgba(255, 255, 255);
      text-align: justify;
      border-radius: 20px;
      overflow: hidden;
      margin: 5em auto;
      height: 155px;
      width: 340px;
      
  }
  
  
  /* 	Product details  */
  .product-details {
      position: relative;
      text-align: justify;
      overflow: hidden;
      padding: 12px;      /* Space between text and borders of the card */
      height: 100%;
      float: right;
      width: 72%;
  
  }
  
  /* 	Product Name */
  #card .product-details h1{
      font-family: 'Belleza';
      font-weight: 800;
      display: inline-block;
      position: relative;
      font-size: 13px;
      color: #344055;
      margin: 10;
      
  }
  
  
  /* The most important information about the product */
  #card .product-details p {
      text-align: justify;
      font-size: 13px;
      color: #000;
      margin: 10;
      
  }
  
  /* control */
  
  .control{
      position: absolute;
      bottom: 20%;
      left: 22.8%;
      
  }
  
  
  
  /* product image  */
  .product-image {
      transition: all 0.3s ease-out;
      display: inline-block;
      position: relative;
      overflow: hidden;
      height: 100%;
      float: left;
      width: 28%;
      display: inline-block;
  }
  
  #card img {width: 100%;height: 100%;}
  
  .info {
      background: rgba(27, 26, 26, 0.9);
      font-family: 'Farsan', cursive;
      transition: all 0.3s ease-out;
      transform: translateX(-100%);
      position: absolute;
      line-height: 1.9;
      text-align: left;
      font-size: 120%;
      cursor: no-drop;
      color: #FFF;
      height: 100%;
      width: 100%;
      left: 0;
      top: 0;
  }
  
  /*.info h2 {text-align: center}
  .product-image:hover .info{transform: translateX(0);}
  
  .info ul li{transition: 0.3s ease;}
  .info ul li:hover{transform: translateX(50px) scale(1.3);}*/
  
  .product-image:hover img {transition: all 0.3s ease-out;}
  .product-image:hover img {transform: scale(1.2, 1.2);}        
  
  
  
  
  /* Contact Section
  --------------------------------*/
  
  #contact {
    padding: 60px 0;
  }
  
  #contact .contact-info {
    margin-bottom: 20px;
    text-align: center;
  }
  
  #contact .contact-info i {
    font-size: 48px;
    display: inline-block;
    margin-bottom: 10px;
    color: #18A8BA;
  }
  
  #contact .contact-info address,
  #contact .contact-info p {
    margin-bottom: 0;
    color: #000;
  }
  
  #contact .contact-info h3 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: bold;
    text-transform: uppercase;
    color: #999;
  }
  
  #contact .contact-info a {
    color: #000;
  }
  
  #contact .contact-info a:hover {
    color: #18A8BA;
  }
  
  #contact .contact-address,
  #contact .contact-phone,
  #contact .contact-email {
    margin-bottom: 20px;
  }
  
  #contact .form #sendmessage {
    color: #18A8BA;
    border: 1px solid #18A8BA;
    display: none;
    text-align: center;
    padding: 15px;
    font-weight: 600;
    margin-bottom: 15px;
  }
  
  #contact .form #errormessage {
    color: red;
    display: none;
    border: 1px solid red;
    text-align: center;
    padding: 15px;
    font-weight: 600;
    margin-bottom: 15px;
  }
  
  #contact .form #sendmessage.show,
  #contact .form #errormessage.show,
  #contact .form .show {
    display: block;
  }
  
  #contact .form .validation {
    color: red;
    display: none;
    margin: 0 0 20px;
    font-weight: 400;
    font-size: 13px;
  }
  
  #contact .form input,
  #contact .form textarea {
    padding: 10px 14px;
    border-radius: 0;
    box-shadow: none;
    font-size: 15px;
  }
  
  #contact .form button[type="submit"] {
    background: #18A8BA;
    border: 0;
    padding: 10px 30px;
    color: #fff;
    transition: 0.4s;
    cursor: pointer;
  }
  
  #contact .form button[type="submit"]:hover {
    background: #13a456;
  }
  
  
  
    /*----------------------------------------------
          MOD: ZOOM WHEN HOVER
      ----------------------------------------------*/           
          
  .zoom-thumbnail {
    transition: 0.1s cubic-bezier(0.6, 0.03, 0.28, 0.98);  
    transform: scale(1);
  }
  .zoom-thumbnail:hover {
    transform: scale(1.7);
    transition: 0.4s cubic-bezier(0.6, 0.03, 0.28, 0.98);
  }
  
  .zoom-semf {
    transition: 0.1s cubic-bezier(0.6, 0.03, 0.28, 0.98);  
    transform: scale(1);
  }
  .zoom-semf:hover {
    transform: scale(1.3);
    transition: 0.4s cubic-bezier(0.6, 0.03, 0.28, 0.98);
  }
  
  .zoom-idioma {
    transition: 0.1s cubic-bezier(0.6, 0.03, 0.28, 0.98);  
    transform: scale(1);
  }
  .zoom-idioma:hover {
    transform: scale(1.2);
    transition: 0.4s cubic-bezier(0.6, 0.03, 0.28, 0.98);
  }
  
  
  
  .svgMap-map-wrapper {
    position: relative;
    width: 100%;
    padding-top: 50%;
    overflow: hidden;
    background: white;
    color: #111;
    font-family: "Quattrocento Sans", sans-serif;
  }
  
  
  .svgMap-map-wrapper .svgMap-map-image {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    font-family: "Quattrocento Sans", sans-serif;
  }
  
  
  .demo-container {
    padding: 0 0 80px;
  }
  
  h2 {
    text-align: center;
    font-size: 32px;
    margin: 0 0 25px;
    font-weight: normal;
    font-family: "Belleza";
  }
  
  
  
  
  
  /*--------------------------------------------------------------
  # Footer
  --------------------------------------------------------------*/
  
  #footer {
    background: #000;
    padding: 0 0 30px 0;
    color: #eee;
    font-size: 14px;
  }
  
  
  #footer .footer-top {
    background: #111;
    padding: 60px 0 30px 0;
  }
  
  #footer .footer-top .footer-info {
    margin-bottom: 30px;
  }
  
  #footer .footer-top .footer-info h3 {
    font-size: 34px;
    margin: 0 0 20px 0;
    padding: 2px 0 2px 10px;
    line-height: 1;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    letter-spacing: 3px;
    border-left: 4px solid #18A8BA;
  }
  
  #footer .footer-top .footer-info p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: "Quattrocento Sans", sans-serif;
    color: #eee;
  }
  
  #footer .footer-top .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #333;
    color: #eee;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
  }
  
  #footer .footer-top .social-links a:hover {
    background: #18A8BA;
    color: #fff;
  }
  
  #footer .footer-top h4 {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 12px;
    font-family: "Belleza", sans-serif;
  }
  
  #footer .footer-top h4::before,
  #footer .footer-top h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
  }
  
  #footer .footer-top h4::before {
    right: 0;
    background: #555;
  }
  
  #footer .footer-top h4::after {
    background: #18A8BA;
    width: 60px;
  }
  
  #footer .footer-top .footer-links {
    margin-bottom: 30px;
  }
  
  #footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  #footer .footer-top .footer-links ul i {
    padding-right: 8px;
    color: #ddd;
  }
  
  #footer .footer-top .footer-links ul li {
    border-bottom: 1px solid #333;
    padding: 10px 0;
    font-family: "Quattrocento Sans", sans-serif;
  }
  
  #footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
  }
  
  #footer .footer-top .footer-links ul a {
    color: #18A8BA;
  }
  
  #footer .footer-top .footer-links ul a:hover {
    color: #D25267;
  }
  
  #footer .footer-top .footer-contact {
    margin-bottom: 30px;
  }
  
  #footer .footer-top .footer-contact p {
    line-height: 26px;
    font-family: "Quattrocento Sans", sans-serif;
  }
  
  #footer .footer-top .footer-newsletter {
    margin-bottom: 30px;
  }
  
  #footer .footer-top .footer-newsletter input[type="email"] {
    border: 0;
    padding: 6px 8px;
    width: 65%;
  }
  
  #footer .footer-top .footer-newsletter input[type="submit"] {
    background: #18A8BA;
    border: 0;
    width: 35%;
    padding: 6px 0;
    text-align: center;
    color: #fff;
    transition: 0.3s;
    cursor: pointer;
  }
  
  #footer .footer-top .footer-newsletter input[type="submit"]:hover {
    background: #13a456;
  }
  
  #footer .copyright {
    text-align: center;
    font-size: 16px;
    padding-top: 30px;
    font-family: "Quattrocento Sans", sans-serif;
  }
  
  #footer .credits {
    text-align: center;
    font-size: 13px;
    color: #ddd;
    font-family: "Quattrocento Sans", sans-serif;
  }
  
  /*--------------------------------------------------------------
  # Responsive Media Queries
  --------------------------------------------------------------*/
  
  
  
  @media (min-width: 768px) {
    #contact .contact-address,
    #contact .contact-phone,
    #contact .contact-email {
      padding: 20px 0;
    }
  
    #contact .contact-phone {
      border-left: 1px solid #ddd;
      border-right: 1px solid #ddd;
    }
  }
  
  @media (min-width: 992px) {
    #testimonials .testimonial-item p {
      width: 80%;
    }
  }
  
  @media (min-width: 1024px) {
    #header #logo {
      padding-left: 60px;
    }
  
    #intro p {
      width: 60%;
    }
  
    #intro .carousel-control-prev,
    #intro .carousel-control-next {
      width: 5%;
    }
  
  }
  
  @media (max-width: 768px) {
    .floating-right {
      bottom: 15px;
    }
    
    .floating-left {
      bottom: 15px;
    }
  
    #header #logo h1 {
      font-size: 28px;
    }
  
    #header #logo img {
      max-height: 40px;
    }
  
    #header2 #logo h1 {
      font-size: medium;
    }
  
    #header2 #logo img {
      max-height: 40px;
    }
    #intro h2 {
      font-size: small;
    }
  
    #nav-menu-container {
      display: none;
    }
  
    #mobile-nav-toggle {
      display: inline;
    }
   
  }