/*
Author: XpeedStudio
Author URI: http://themeforest.net/user/XpeedStudio/portfolio
*/
/* ==========================================================================
	Author's custom styles
========================================================================== */
/*------------------------------ Table Of Content -------------------------

===========================================================================*/
.nav-alignment-flex-end, .nav-alignment-dynamic {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

/*=================================================
		  predefinced
===============================================*/

/* Video Background Styles */
.video-background {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  z-index: -1 !important;
  pointer-events: none !important;
}

/* Desktop - mostrar apenas vídeo desktop */
.desktop-video {
  display: block !important;
}

.mobile-video {
  display: none !important;
}

/* Mobile - mostrar apenas vídeo mobile */
@media (max-width: 768px) {
  .desktop-video {
    display: none !important;
  }
  
  .mobile-video {
    display: block !important;
  }
}

/* Ensure video container has minimum height */
#home {
  min-height: 100vh;
  overflow: hidden;
  position: relative;
}

/* Fallback overlay for better text visibility */
#home::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
  pointer-events: none;
}

/* Ensure content is above video and overlay */
#home .container {
  position: relative;
  z-index: 1;
}

/* Missão e Valores Modern Styles */
.xs-missao-valores-section {
    position: relative;
    overflow: hidden;
}

/* Geometric Background */
.xs-geometric-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.xs-shape-1, .xs-shape-2, .xs-shape-3 {
    position: absolute;
    opacity: 0.1;
    background: linear-gradient(135deg, #FFCC00, #FFD700);
    border-radius: 50%;
}

.xs-shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    animation: float 6s ease-in-out infinite;
}

.xs-shape-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 5%;
    animation: float 4s ease-in-out infinite reverse;
}

.xs-shape-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    left: 20%;
    animation: float 5s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Modern Heading */
.xs-modern-heading {
    position: relative;
    z-index: 2;
    margin-bottom: 60px;
}

.xs-modern-heading h2 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.xs-heading-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #FFCC00, #FFD700);
    margin: 0 auto 25px;
    border-radius: 2px;
    position: relative;
}

.xs-heading-line::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: #FFCC00;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255, 204, 0, 0.5);
}

.xs-section-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.xs-mt-60 {
    margin-top: 60px;
}

/* Missão Card */
.xs-missao-card {
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
    border: 1px solid rgba(255, 204, 0, 0.3);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    height: 100%;
}

.xs-missao-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.05) 0%, transparent 50%);
    border-radius: 20px;
    pointer-events: none;
}

.xs-missao-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 204, 0, 0.2);
    border-color: rgba(255, 204, 0, 0.6);
}

.xs-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.9), rgba(255, 215, 0, 0.7));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
    box-shadow: 0 8px 25px rgba(255, 204, 0, 0.2);
    border: 1px solid rgba(255, 204, 0, 0.4);
    transition: all 0.4s ease;
}

.xs-card-icon i {
    font-size: 2.2rem;
    color: #000;
    opacity: 0.9;
}

.xs-card-icon::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.3), rgba(255, 215, 0, 0.2));
    border-radius: 19px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.xs-missao-card:hover .xs-card-icon {
    background: linear-gradient(135deg, #FFCC00, #FFD700);
    box-shadow: 0 10px 30px rgba(255, 204, 0, 0.3);
    transform: translateY(-2px);
}

.xs-missao-card:hover .xs-card-icon::after {
    opacity: 0.4;
}

.xs-card-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #fff;
}

.xs-card-content p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Divider */
.xs-divider {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #FFCC00, #FFD700);
    margin-bottom: 25px;
    border-radius: 2px;
}

/* Valores Container */
.xs-valores-container {
    height: 100%;
}

.xs-valores-title {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #fff;
}

.xs-valores-grid {
    display: grid;
    gap: 20px;
    margin-top: 30px;
}

/* Valor Item */
.xs-valor-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 204, 0, 0.2);
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.xs-valor-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 204, 0, 0.1), transparent);
    transition: left 0.6s ease;
}

.xs-valor-item:hover::before {
    left: 100%;
}

.xs-valor-item:hover {
    transform: translateX(5px);
    border-color: rgba(255, 204, 0, 0.4);
    background: rgba(255, 204, 0, 0.03);
    box-shadow: 0 6px 20px rgba(255, 204, 0, 0.1);
}

.xs-valor-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.8), rgba(255, 215, 0, 0.6));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(255, 204, 0, 0.3);
}

.xs-valor-icon i {
    font-size: 1.6rem;
    color: #000;
    opacity: 0.9;
}

.xs-valor-item:hover .xs-valor-icon {
    transform: scale(1.05);
    background: linear-gradient(135deg, #FFCC00, #FFD700);
    box-shadow: 0 6px 15px rgba(255, 204, 0, 0.25);
    border-color: rgba(255, 204, 0, 0.5);
}

.xs-valor-content h4 {
    font-size: 1.3rem;
    color: #FFCC00;
    margin-bottom: 8px;
    font-weight: 600;
}

.xs-valor-content p {
    color: #ccc;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Visão Card Styles */
.xs-vision-card {
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.15) 0%, rgba(255, 215, 0, 0.05) 100%);
    border: 2px solid rgba(255, 204, 0, 0.3);
    border-radius: 25px;
    padding: 40px 30px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    height: 100%;
    text-align: center;
    overflow: hidden;
}

.xs-vision-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 204, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.xs-vision-card:hover::before {
    opacity: 1;
}

.xs-vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(255, 204, 0, 0.25);
    border-color: rgba(255, 204, 0, 0.6);
}

.xs-vision-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FFCC00, #FFD700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 25px rgba(255, 204, 0, 0.3);
}

.xs-vision-icon i {
    font-size: 2.5rem;
    color: #000;
    opacity: 0.9;
}

.xs-vision-card:hover .xs-vision-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(255, 204, 0, 0.4);
}

.xs-vision-content {
    position: relative;
    z-index: 1;
}

.xs-vision-content h3 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 25px;
    font-weight: 600;
}

.xs-vision-content h3 span {
    color: #FFCC00;
}

.xs-vision-statement {
    position: relative;
    margin: 30px 0;
    padding: 20px 0;
}

.xs-vision-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: #FFCC00;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    text-shadow: 0 3px 15px rgba(255, 204, 0, 0.4);
    line-height: 1.2;
    position: relative;
    z-index: 2;
}

.xs-vision-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #FFCC00, #FFD700);
    margin: 20px auto 0;
    border-radius: 2px;
    position: relative;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(255, 204, 0, 0.3);
        transform: scaleX(1);
    }
    50% {
        box-shadow: 0 0 15px rgba(255, 204, 0, 0.6);
        transform: scaleX(1.1);
    }
}

/* Missão Card Styles */
.xs-mission-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(240, 240, 240, 0.05) 100%);
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 25px;
    padding: 40px 30px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    height: 100%;
    text-align: center;
    overflow: hidden;
}

.xs-mission-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 204, 0, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.xs-mission-card:hover::before {
    opacity: 1;
}

.xs-mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(255, 204, 0, 0.15);
    border-color: rgba(255, 204, 0, 0.4);
}

.xs-mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.9), rgba(255, 215, 0, 0.7));
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 25px rgba(255, 204, 0, 0.25);
}

.xs-mission-icon i {
    font-size: 2.5rem;
    color: #000;
    opacity: 0.9;
}

.xs-mission-card:hover .xs-mission-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 12px 35px rgba(255, 204, 0, 0.35);
    background: linear-gradient(135deg, #FFCC00, #FFD700);
    border-color: rgba(255, 255, 255, 0.5);
}

.xs-mission-content {
    position: relative;
    z-index: 1;
}

.xs-mission-content h3 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 25px;
    font-weight: 600;
}

.xs-mission-content h3 span {
    color: #FFCC00;
}

.xs-mission-text {
    margin-top: 20px;
}

.xs-mission-text p {
    font-size: 1.1rem;
    color: #e8e8e8;
    line-height: 1.7;
    margin: 0;
}

.xs-mission-text strong {
    color: #FFCC00;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(255, 204, 0, 0.3);
}

/* Título Nossos Valores */
.xs-valores-title {
    font-size: 2.5rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 0;
    position: relative;
    display: inline-block;
}

.xs-valores-title span {
    color: #FFCC00;
    text-shadow: 0 2px 10px rgba(255, 204, 0, 0.3);
}

/* Valores Numerados */
.xs-valores-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.xs-valor-numbered {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 204, 0, 0.2);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.xs-valor-numbered:hover {
    transform: translateX(5px);
    border-color: rgba(255, 204, 0, 0.4);
    background: rgba(255, 204, 0, 0.03);
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.1);
}

.xs-valor-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #FFCC00, #FFD700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: #000;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.xs-valor-numbered:hover .xs-valor-number {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(255, 204, 0, 0.3);
}

.xs-valor-numbered .xs-valor-content {
    flex: 1;
}

.xs-valor-numbered .xs-valor-content h4 {
    font-size: 1.1rem;
    color: #FFCC00;
    margin: 0;
    font-weight: 600;
    line-height: 1.3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .xs-modern-heading h2 {
        font-size: 2.2rem;
    }
    
    .xs-missao-card {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    
    .xs-card-icon {
        width: 60px;
        height: 60px;
    }
    
    .xs-card-icon i {
        font-size: 2rem;
    }
    
    .xs-valor-item {
        padding: 20px;
    }
    
    .xs-valor-icon {
        width: 50px;
        height: 50px;
    }
    
    .xs-valor-icon i {
        font-size: 1.5rem;
    }
    
    .xs-vision-card,
    .xs-mission-card {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    
    .xs-vision-icon,
    .xs-mission-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .xs-vision-icon i,
    .xs-mission-icon i {
        font-size: 2rem;
    }
    
    .xs-vision-content h3,
    .xs-mission-content h3 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .xs-valores-title {
        font-size: 2rem;
    }
    
    .xs-vision-statement {
        margin: 20px 0;
        padding: 15px 0;
    }
    
    .xs-vision-text {
        font-size: 1.4rem;
        letter-spacing: 1px;
        line-height: 1.3;
    }
    
    .xs-vision-underline {
        width: 60px;
        height: 3px;
        margin: 15px auto 0;
    }
    
    .xs-mission-text p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .xs-valores-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .xs-valor-numbered {
        padding: 12px 15px;
    }
    
    .xs-valor-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .xs-valor-numbered .xs-valor-content h4 {
        font-size: 1rem;
    }
}

/* Kids Section Styles */
.xs-kids-section {
    position: relative;
    overflow: hidden;
}

/* Kids Background Elements */
.xs-kids-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.xs-kids-shape-1, .xs-kids-shape-2, .xs-kids-shape-3 {
    position: absolute;
    opacity: 0.08;
    background: linear-gradient(135deg, #FFCC00, #FFD700);
    border-radius: 50%;
}

.xs-kids-shape-1 {
    width: 180px;
    height: 180px;
    top: 15%;
    right: 15%;
    animation: float 7s ease-in-out infinite;
}

.xs-kids-shape-2 {
    width: 120px;
    height: 120px;
    bottom: 25%;
    left: 8%;
    animation: float 5s ease-in-out infinite reverse;
}

.xs-kids-shape-3 {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 25%;
    animation: float 6s ease-in-out infinite;
}

/* Kids Space Card */
.xs-kids-space-card {
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
    border: 1px solid rgba(255, 204, 0, 0.3);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    height: 100%;
}

.xs-kids-space-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 204, 0, 0.2);
    border-color: rgba(255, 204, 0, 0.6);
}

.xs-kids-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.9), rgba(255, 215, 0, 0.7));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
    box-shadow: 0 8px 25px rgba(255, 204, 0, 0.2);
    border: 1px solid rgba(255, 204, 0, 0.4);
    transition: all 0.4s ease;
}

.xs-kids-icon i {
    font-size: 2.2rem;
    color: #000;
    opacity: 0.9;
}

.xs-kids-space-card:hover .xs-kids-icon {
    background: linear-gradient(135deg, #FFCC00, #FFD700);
    box-shadow: 0 10px 30px rgba(255, 204, 0, 0.3);
    transform: translateY(-2px);
}

.xs-kids-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #fff;
}

.xs-kids-content p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Funcional Kids Card */
.xs-funcional-kids-card {
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.05) 0%, rgba(0, 0, 0, 0.4) 100%);
    border: 1px solid rgba(255, 204, 0, 0.2);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(5px);
    height: 100%;
}

.xs-funcional-kids-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 204, 0, 0.15);
    border-color: rgba(255, 204, 0, 0.4);
}

.xs-kids-modal-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.xs-kids-modal-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFCC00, #FFD700);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.xs-kids-modal-icon i {
    font-size: 1.8rem;
    color: #000;
}

.xs-kids-modal-header h3 {
    font-size: 1.8rem;
    color: #fff;
    margin: 0;
}

.xs-kids-description {
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1rem;
}

/* Kids Benefits */
.xs-kids-benefits {
    margin-bottom: 25px;
}

.xs-kids-benefits h4 {
    color: #FFCC00;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.xs-benefits-grid {
    display: grid;
    gap: 12px;
}

.xs-benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    transition: all 0.3s ease;
}

.xs-benefit-item:hover {
    transform: translateX(5px);
}

.xs-benefit-item i {
    color: #FFCC00;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.xs-benefit-item span {
    color: #ddd;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Kids Schedule */
.xs-kids-schedule {
    margin-bottom: 25px;
}

.xs-kids-schedule h4 {
    color: #FFCC00;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.xs-schedule-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.xs-schedule-item {
    color: #ddd;
    font-size: 0.95rem;
    padding: 8px 15px;
    background: rgba(255, 204, 0, 0.1);
    border-radius: 8px;
    border-left: 3px solid #FFCC00;
}

.xs-schedule-item strong {
    color: #FFCC00;
}

/* Kids CTA */
.xs-kids-cta {
    text-align: center;
    margin-top: 20px;
}

.xs-kids-cta .btn {
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.xs-kids-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 204, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .xs-kids-space-card, .xs-funcional-kids-card {
        padding: 25px 20px;
        margin-bottom: 25px;
    }
    
    .xs-kids-icon {
        width: 60px;
        height: 60px;
    }
    
    .xs-kids-icon i {
        font-size: 1.8rem;
    }
    
    .xs-kids-modal-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .xs-kids-modal-icon {
        width: 50px;
        height: 50px;
    }
    
    .xs-kids-modal-icon i {
        font-size: 1.5rem;
    }
}

/* Free Pass Hero Section - SPECTACULAR DESIGN */
.xs-freepass-hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 25%, #2d2d2d 50%, #1a1a1a 75%, #000000 100%);
    display: flex;
    align-items: center;
    padding: 80px 0;
}

/* Animated Background */
.xs-freepass-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.xs-freepass-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 15% 85%, rgba(255, 204, 0, 0.12) 0%, rgba(255, 204, 0, 0.04) 40%, transparent 75%),
                radial-gradient(ellipse at 85% 15%, rgba(255, 215, 0, 0.08) 0%, rgba(255, 215, 0, 0.03) 45%, transparent 80%),
                linear-gradient(135deg, rgba(255, 204, 0, 0.03) 0%, transparent 50%, rgba(255, 204, 0, 0.02) 100%);
    animation: gentleGlow 15s ease-in-out infinite;
}

@keyframes gentleGlow {
    0%, 100% { 
        opacity: 0.4;
    }
    50% { 
        opacity: 0.6;
    }
}

/* Floating Particles */
.xs-freepass-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    background: rgba(255, 204, 0, 0.6);
    border-radius: 50%;
    animation: subtleParticleFloat 12s ease-in-out infinite;
}

.particle-1 { width: 4px; height: 4px; top: 25%; left: 15%; animation-delay: 0s; }
.particle-2 { width: 6px; height: 6px; top: 65%; left: 75%; animation-delay: 3s; }
.particle-3 { width: 3px; height: 3px; top: 75%; left: 25%; animation-delay: 6s; }
.particle-4 { width: 5px; height: 5px; top: 35%; left: 65%; animation-delay: 9s; }
.particle-5 { width: 4px; height: 4px; top: 60%; left: 45%; animation-delay: 2s; }
.particle-6 { width: 3px; height: 3px; top: 45%; left: 35%; animation-delay: 7s; }

@keyframes subtleParticleFloat {
    0%, 100% { transform: translateY(0px); opacity: 0.1; }
    50% { transform: translateY(-10px); opacity: 0.3; }
}

/* Floating Icon Elements */
.xs-freepass-float-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.float-element {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(255, 204, 0, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 204, 0, 0.15);
    animation: gentleFloatElement 20s ease-in-out infinite;
}

.float-element i {
    color: rgba(255, 204, 0, 0.4);
    font-size: 1rem;
    opacity: 0.5;
}

.float-1 { top: 20%; right: 15%; animation-delay: 0s; }
.float-2 { bottom: 25%; left: 20%; animation-delay: 7s; }
.float-3 { top: 55%; right: 25%; animation-delay: 14s; }

@keyframes gentleFloatElement {
    0%, 100% { transform: translateY(0px) scale(1); opacity: 0.3; }
    50% { transform: translateY(-15px) scale(1.05); opacity: 0.6; }
}


/* Hero Content */
.xs-freepass-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    margin-bottom: 40px;
}

.hero-subtitle {
    font-size: 1rem;
    color: #FFCC00;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: slideInDown 1s ease-out;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 30px;
    animation: titleExplosion 1.5s ease-out;
}

.title-highlight {
    color: #fff;
    display: block;
    font-size: 2.5rem;
    margin-bottom: 10px;
    opacity: 0.9;
}

.title-main {
    background: linear-gradient(135deg, #FFCC00, #FFD700, #FFCC00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    text-shadow: 0 0 30px rgba(255, 204, 0, 0.5);
    filter: drop-shadow(0 0 10px rgba(255, 204, 0, 0.3));
}

.title-accent {
    color: #fff;
    display: block;
    font-size: 3rem;
    margin-top: 10px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

@keyframes titleExplosion {
    0% { transform: scale(0.5); opacity: 0; }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

.hero-tagline {
    margin-bottom: 25px;
    animation: slideInUp 1s ease-out 0.5s both;
}

/* Comentado para evitar conflito com .tagline-text da seção Free Pass */
/*
.tagline-text {
    background: linear-gradient(90deg, #FFCC00, #FFD700, #FFCC00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}
*/

.hero-description {
    font-size: 1.2rem;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.hero-description strong {
    color: #FFCC00;
    font-weight: 700;
}

/* Benefits Grid */
.xs-freepass-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
    animation: fadeInUp 1s ease-out 1s both;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(255, 204, 0, 0.1);
    border: 1px solid rgba(255, 204, 0, 0.2);
    border-radius: 50px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.benefit-item:hover {
    background: rgba(255, 204, 0, 0.2);
    border-color: rgba(255, 204, 0, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 204, 0, 0.2);
}

.benefit-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #FFCC00, #FFD700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    color: #000;
    font-size: 0.9rem;
}

.benefit-item span {
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
}

/* CTA Container */
.xs-freepass-cta-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.cta-glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 204, 0, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes glowPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

/* Mega Button */
.xs-freepass-mega-btn {
    position: relative;
    background: linear-gradient(135deg, #FFCC00 0%, #FFD700 50%, #FFCC00 100%);
    border: none;
    border-radius: 60px;
    padding: 25px 50px;
    font-size: 1.3rem;
    font-weight: 800;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 35px rgba(255, 204, 0, 0.4);
    z-index: 10;
    min-width: 350px;
    animation: buttonEntrance 1s ease-out 1.5s both;
}

@keyframes buttonEntrance {
    0% { transform: scale(0.8) rotateX(90deg); opacity: 0; }
    100% { transform: scale(1) rotateX(0deg); opacity: 1; }
}

.xs-freepass-mega-btn:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 25px 50px rgba(255, 204, 0, 0.6);
    background: linear-gradient(135deg, #FFD700 0%, #FFCC00 50%, #FFD700 100%);
}

.btn-bg-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.xs-freepass-mega-btn:hover .btn-bg-effect {
    left: 100%;
}

.btn-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    z-index: 2;
}

.btn-icon {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.btn-text {
    font-size: 1.3rem;
    font-weight: 800;
    line-height: 1;
}

.btn-subtext {
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.8;
    line-height: 1;
}

/* Button Particles */
.btn-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.btn-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
    opacity: 0;
    animation: buttonParticle 2s ease-out infinite;
}

.btn-particle-1 { top: 20%; left: 20%; animation-delay: 0s; }
.btn-particle-2 { top: 30%; right: 20%; animation-delay: 0.5s; }
.btn-particle-3 { bottom: 20%; left: 30%; animation-delay: 1s; }
.btn-particle-4 { bottom: 30%; right: 30%; animation-delay: 1.5s; }

@keyframes buttonParticle {
    0% { opacity: 0; transform: scale(0) translateY(0); }
    50% { opacity: 1; transform: scale(1) translateY(-10px); }
    100% { opacity: 0; transform: scale(0) translateY(-20px); }
}

/* Urgency Text */
.cta-urgency {
    animation: urgencyPulse 2s ease-in-out infinite;
}

.urgency-text {
    color: #ff6b6b;
    font-size: 1rem;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
}

@keyframes urgencyPulse {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

/* Container Z-Index */
.xs-freepass-hero .container {
    position: relative;
    z-index: 2;
}

/* Responsive Design */
@media (max-width: 768px) {
    .xs-freepass-hero {
        min-height: auto;
        padding: 60px 0;
    }
    
    
    
    .hero-title {
        font-size: 3rem;
    }
    
    .title-highlight {
        font-size: 2rem;
    }
    
    .title-accent {
        font-size: 2.5rem;
    }
    
    .xs-freepass-benefits {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .xs-freepass-mega-btn {
        min-width: 300px;
        padding: 20px 40px;
    }
    
    .btn-text {
        font-size: 1.1rem;
    }
}

/* Premiare Online Section - Ultra Modern Styles */
.xs-online-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #000;
    padding: 100px 0;
}

/* Advanced Background Wrapper */
.xs-online-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Animated Gradient Background */
.xs-online-gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(255, 204, 0, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(255, 215, 0, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(255, 204, 0, 0.08) 0%, transparent 70%),
        linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.95) 100%);
    animation: digitalPulse 8s ease-in-out infinite;
}

/* Digital Grid Pattern */
.xs-digital-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.grid-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(255, 204, 0, 0.3), transparent);
    animation: gridScan 4s linear infinite;
}

.grid-line-1 {
    width: 100%;
    height: 1px;
    top: 20%;
    animation-delay: 0s;
}

.grid-line-2 {
    width: 1px;
    height: 100%;
    left: 25%;
    animation: gridScanVertical 6s linear infinite;
    animation-delay: 1s;
}

.grid-line-3 {
    width: 100%;
    height: 1px;
    top: 70%;
    animation-delay: 2s;
}

.grid-line-4 {
    width: 1px;
    height: 100%;
    right: 30%;
    animation: gridScanVertical 5s linear infinite;
    animation-delay: 3s;
}

/* Floating Tech Elements */
.xs-tech-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.tech-element {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 204, 0, 0.1);
    border: 1px solid rgba(255, 204, 0, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    animation: techFloat 15s ease-in-out infinite;
}

.tech-element i {
    color: rgba(255, 204, 0, 0.8);
    font-size: 1.2rem;
}

.tech-element-1 { top: 15%; left: 10%; animation-delay: 0s; }
.tech-element-2 { top: 25%; right: 15%; animation-delay: 2s; }
.tech-element-3 { bottom: 30%; left: 20%; animation-delay: 4s; }
.tech-element-4 { top: 60%; right: 25%; animation-delay: 6s; }
.tech-element-5 { bottom: 15%; right: 10%; animation-delay: 8s; }

/* Digital Particles */
.xs-digital-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.digital-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(255, 204, 0, 0.8);
    border-radius: 50%;
    animation: particleMove 10s linear infinite;
}

.particle-1 { top: 10%; left: 15%; animation-delay: 0s; }
.particle-2 { top: 20%; right: 20%; animation-delay: 1s; }
.particle-3 { bottom: 25%; left: 30%; animation-delay: 2s; }
.particle-4 { top: 40%; right: 35%; animation-delay: 3s; }
.particle-5 { bottom: 35%; right: 15%; animation-delay: 4s; }
.particle-6 { top: 70%; left: 25%; animation-delay: 5s; }
.particle-7 { bottom: 15%; left: 40%; animation-delay: 6s; }
.particle-8 { top: 30%; left: 50%; animation-delay: 7s; }

/* Hero Badge */
.xs-online-badge {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.badge-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, rgba(255, 204, 0, 0.3), rgba(255, 215, 0, 0.2));
    border-radius: 20px;
    filter: blur(15px);
    animation: badgeGlow 3s ease-in-out infinite alternate;
}

.badge-content {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.9), rgba(255, 215, 0, 0.8));
    padding: 12px 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 204, 0, 0.4);
}

.badge-icon {
    font-size: 1.2rem;
}


/* Hero Content */
.xs-online-hero-content {
    text-align: center;
    z-index: 10;
    position: relative;
    margin-bottom: 80px;
}

.hero-subtitle {
    color: #FFCC00;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
    animation: slideInDown 1s ease-out;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    animation: titleExplosion 1.2s ease-out 0.2s both;
}

.title-main {
    color: #fff;
    display: block;
}

.title-highlight {
    background: linear-gradient(135deg, #FFCC00, #FFD700, #FFCC00);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    display: block;
}

.hero-tagline {
    margin-bottom: 30px;
}

.tagline-text {
    color: #fff !important;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 15px 30px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: inline-block;
    position: relative;
    z-index: 20;
    -webkit-text-fill-color: #fff !important;
}

.hero-description {
    color: #ccc;
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 50px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-description strong {
    color: #FFCC00;
}

/* Features Grid Modern */
.xs-online-features-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 80px;
    margin-top: 40px;
}

.feature-card {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.08), rgba(0, 0, 0, 0.3));
    border: 1px solid rgba(255, 204, 0, 0.2);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(255, 204, 0, 0.5);
    box-shadow: 0 20px 40px rgba(255, 204, 0, 0.2);
}

.feature-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 204, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover .feature-glow {
    opacity: 1;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.9), rgba(255, 215, 0, 0.7));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
}

.feature-icon i {
    font-size: 1.5rem;
    color: #000;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, #FFCC00, #FFD700);
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 10px 25px rgba(255, 204, 0, 0.3);
}

.feature-content h4 {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-content p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* CTA Section Ultra Modern */
.xs-online-cta-modern {
    position: relative;
    text-align: center;
}

.cta-background-effect {
    position: absolute;
    top: -50px;
    left: -50px;
    right: -50px;
    bottom: -50px;
    background: radial-gradient(ellipse at center, rgba(255, 204, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: ctaPulse 4s ease-in-out infinite;
}

.xs-online-mega-button {
    position: relative;
    background: linear-gradient(135deg, #FFCC00 0%, #FFD700 50%, #FFCC00 100%);
    border: none;
    border-radius: 60px;
    padding: 25px 50px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(255, 204, 0, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.btn-bg-animation {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.xs-online-mega-button:hover .btn-bg-animation {
    left: 100%;
}

.xs-online-mega-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 25px 50px rgba(255, 204, 0, 0.4);
    background: linear-gradient(135deg, #FFD700 0%, #FFCC00 50%, #FFD700 100%);
}

.btn-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 5px;
    flex-direction: column;
}

.btn-icon {
    font-size: 1.3rem;
}

.btn-text {
    font-weight: 700;
    font-size: 1.1rem;
}

.btn-subtext {
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.8;
    text-transform: none;
    letter-spacing: 0;
}

.btn-tech-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.tech-line {
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    opacity: 0;
    animation: techLineMove 2s ease-in-out infinite;
}

.tech-line-1 {
    width: 100%;
    height: 1px;
    top: 20%;
    animation-delay: 0s;
}

.tech-line-2 {
    width: 1px;
    height: 100%;
    left: 20%;
    animation-delay: 0.5s;
}

.tech-line-3 {
    width: 100%;
    height: 1px;
    bottom: 20%;
    animation-delay: 1s;
}

.tech-line-4 {
    width: 1px;
    height: 100%;
    right: 20%;
    animation-delay: 1.5s;
}

.cta-note {
    margin-top: 15px;
}

.note-text {
    color: rgba(255, 204, 0, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .xs-online-features-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .xs-online-hero {
        min-height: 80vh;
        padding: 80px 0;
    }
    
    .xs-online-hero-content {
        margin-bottom: 60px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .xs-online-features-modern {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 60px;
        margin-top: 30px;
    }
    
    .feature-card {
        padding: 25px 20px;
    }
    
    .xs-online-mega-button {
        padding: 20px 35px;
        font-size: 1rem;
    }
    
    .btn-text {
        font-size: 0.9rem;
    }
    
    .tech-element {
        width: 35px;
        height: 35px;
    }
    
    .tech-element i {
        font-size: 1rem;
    }
}

/* Área do Aluno Section Styles */
.xs-area-aluno-section {
    position: relative;
    overflow: hidden;
    background: #000;
}

/* Aluno Background Elements */
.xs-area-aluno-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.xs-aluno-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(255, 204, 0, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.95) 100%);
    animation: alunoGlow 6s ease-in-out infinite alternate;
}

.xs-aluno-shape-1, .xs-aluno-shape-2 {
    position: absolute;
    opacity: 0.08;
    background: linear-gradient(135deg, #FFCC00, #FFD700);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.xs-aluno-shape-1 {
    width: 120px;
    height: 120px;
    top: 25%;
    right: 15%;
    animation-delay: 0s;
}

.xs-aluno-shape-2 {
    width: 80px;
    height: 80px;
    bottom: 35%;
    left: 20%;
    animation-delay: 4s;
}

/* Área do Aluno Content */
.xs-area-aluno-content {
    position: relative;
    z-index: 10;
}

/* Aluno Hero */
.xs-aluno-hero {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 60px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.08) 0%, rgba(0, 0, 0, 0.3) 100%);
    border: 1px solid rgba(255, 204, 0, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.xs-aluno-hero:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 204, 0, 0.15);
    border-color: rgba(255, 204, 0, 0.4);
}

.aluno-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.9), rgba(255, 215, 0, 0.7));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 25px rgba(255, 204, 0, 0.2);
    border: 1px solid rgba(255, 204, 0, 0.4);
}

.aluno-icon i {
    font-size: 2.2rem;
    color: #000;
    opacity: 0.9;
}

.aluno-text h3 {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.aluno-text p {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

/* Aluno Features Grid */
.xs-aluno-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.aluno-feature {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 204, 0, 0.05);
    border: 1px solid rgba(255, 204, 0, 0.15);
    border-radius: 15px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.aluno-feature:hover {
    background: rgba(255, 204, 0, 0.1);
    border-color: rgba(255, 204, 0, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 204, 0, 0.1);
}

.aluno-feature .feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.8), rgba(255, 215, 0, 0.6));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.aluno-feature .feature-icon i {
    font-size: 1.3rem;
    color: #000;
    opacity: 0.9;
}

.aluno-feature:hover .feature-icon {
    background: linear-gradient(135deg, #FFCC00, #FFD700);
    transform: scale(1.1);
}

.feature-info h4 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.feature-info p {
    color: #ccc;
    font-size: 0.9rem;
    margin: 0;
}

/* Aluno Actions */
.xs-aluno-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.action-card {
    padding: 35px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.login-card {
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.08) 0%, rgba(0, 0, 0, 0.3) 100%);
    border: 1px solid rgba(255, 204, 0, 0.2);
}

.register-card {
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.12) 0%, rgba(255, 215, 0, 0.05) 100%);
    border: 1px solid rgba(255, 204, 0, 0.3);
}

.action-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(255, 204, 0, 0.2);
}

.login-card:hover {
    border-color: rgba(255, 204, 0, 0.4);
}

.register-card:hover {
    border-color: rgba(255, 204, 0, 0.5);
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.15) 0%, rgba(255, 215, 0, 0.08) 100%);
}

.action-card .card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.9), rgba(255, 215, 0, 0.7));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 8px 20px rgba(255, 204, 0, 0.2);
    transition: all 0.4s ease;
}

.action-card .card-icon i {
    font-size: 1.8rem;
    color: #000;
    opacity: 0.9;
}

.action-card:hover .card-icon {
    background: linear-gradient(135deg, #FFCC00, #FFD700);
    transform: translateY(-3px) rotate(5deg);
    box-shadow: 0 12px 30px rgba(255, 204, 0, 0.3);
}

.card-content h4 {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.card-content p {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.card-content .btn {
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-primary {
    background: transparent;
    border: 2px solid #FFCC00;
    color: #FFCC00;
}

.btn-outline-primary:hover {
    background: #FFCC00;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 204, 0, 0.3);
}

.btn-primary {
    background: linear-gradient(135deg, #FFCC00, #FFD700);
    border: none;
    color: #000;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #FFD700, #FFCC00);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 204, 0, 0.4);
    color: #000;
}

/* Responsive Design */
@media (max-width: 768px) {
    .xs-aluno-hero {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 30px 20px;
    }
    
    .aluno-icon {
        width: 60px;
        height: 60px;
    }
    
    .aluno-icon i {
        font-size: 1.8rem;
    }
    
    .aluno-text h3 {
        font-size: 1.5rem;
    }
    
    .aluno-text p {
        font-size: 1rem;
    }
    
    .xs-aluno-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .aluno-feature {
        padding: 20px;
    }
    
    .xs-aluno-actions {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .action-card {
        padding: 30px 25px;
    }
}

/* Contato Section Styles */
.xs-contato-section {
    position: relative;
}

.xs-contato-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.contato-card {
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.08) 0%, rgba(0, 0, 0, 0.4) 100%);
    border: 1px solid rgba(255, 204, 0, 0.2);
    border-radius: 25px;
    padding: 40px 35px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.contato-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(255, 204, 0, 0.2);
    border-color: rgba(255, 204, 0, 0.4);
}

.contato-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FFCC00, transparent);
    transition: left 0.6s ease;
}

.contato-card:hover::before {
    left: 100%;
}

/* Card Headers */
.card-header {
    text-align: center;
    margin-bottom: 30px;
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.9), rgba(255, 215, 0, 0.7));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 25px rgba(255, 204, 0, 0.2);
    border: 1px solid rgba(255, 204, 0, 0.4);
    transition: all 0.4s ease;
}

.card-icon i {
    font-size: 2.2rem;
    color: #000;
    opacity: 0.9;
}

.contato-card:hover .card-icon {
    background: linear-gradient(135deg, #FFCC00, #FFD700);
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 15px 35px rgba(255, 204, 0, 0.3);
}

.card-header h3 {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0;
}

/* Card Content */
.card-content h4 {
    color: #FFCC00;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

.card-content p {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 25px;
}

/* Benefits List */
.contato-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.contato-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
}

.contato-benefits li i {
    color: #FFCC00;
    font-size: 1rem;
    flex-shrink: 0;
}

/* WhatsApp Buttons */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.btn-whatsapp i {
    font-size: 1.3rem;
}

.btn-atendimento {
    background: linear-gradient(135deg, #25D366, #1aaa4f);
    color: #fff;
    border: none;
}

.btn-atendimento:hover {
    background: linear-gradient(135deg, #1aaa4f, #25D366);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
    color: #fff;
    text-decoration: none;
}

.btn-trabalhe {
    background: linear-gradient(135deg, #FFCC00, #FFD700);
    color: #000;
    border: none;
}

.btn-trabalhe:hover {
    background: linear-gradient(135deg, #FFD700, #FFCC00);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 204, 0, 0.4);
    color: #000;
    text-decoration: none;
}

/* Button Shimmer Effect */
.btn-whatsapp::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn-whatsapp:hover::before {
    left: 100%;
}

/* Card Specific Styling */
.atendimento-card {
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.08) 0%, rgba(0, 0, 0, 0.4) 100%);
    border-color: rgba(255, 204, 0, 0.2);
}

.atendimento-card:hover {
    border-color: rgba(255, 204, 0, 0.4);
}

.trabalhe-card {
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.12) 0%, rgba(0, 0, 0, 0.4) 100%);
    border-color: rgba(255, 204, 0, 0.3);
}

.trabalhe-card:hover {
    border-color: rgba(255, 204, 0, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .xs-contato-actions {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contato-card {
        padding: 30px 25px;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
    }
    
    .card-icon i {
        font-size: 1.8rem;
    }
    
    .card-header h3 {
        font-size: 1.4rem;
    }
    
    .card-content h4 {
        font-size: 1.2rem;
    }
    
    .card-content p {
        font-size: 1rem;
    }
    
    .btn-whatsapp {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* Premiare Footer Styles */
.xs-premiare-footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.xs-premiare-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FFCC00, transparent);
}

.xs-footer-top {
    padding: 60px 0 40px;
    position: relative;
}

.xs-footer-widget {
    margin-bottom: 30px;
}

.xs-footer-logo {
    margin-bottom: 25px;
}

.xs-footer-logo img {
    max-height: 60px;
    filter: brightness(1.1);
}

.footer-description {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.footer-description strong {
    color: #FFCC00;
    font-weight: 600;
}

/* Footer Contact */
.xs-footer-contact {
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: #ccc;
}

.contact-item i {
    color: #FFCC00;
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.contact-item span,
.contact-item a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #FFCC00;
    text-decoration: none;
}

/* Widget Titles */
.widget-title {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #FFCC00, #FFD700);
}

/* Footer Links */
.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.links-column {
    list-style: none;
    padding: 0;
    margin: 0;
}

.links-column li {
    margin-bottom: 10px;
}

.links-column a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    padding: 5px 0;
    position: relative;
}

.links-column a::before {
    content: '';
    width: 0;
    height: 1px;
    background: #FFCC00;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.links-column a:hover {
    color: #FFCC00;
    text-decoration: none;
    transform: translateX(5px);
}

.links-column a:hover::before {
    width: 30px;
}

/* Footer Schedule */
.footer-schedule {
    margin-bottom: 30px;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 204, 0, 0.1);
    margin-bottom: 8px;
}

.schedule-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.schedule-item .day {
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
}

.schedule-item .time {
    color: #FFCC00;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Footer Social */
.footer-social h4 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.social-link:hover::before {
    transform: translateX(100%);
}

.social-link i {
    font-size: 1.3rem;
    z-index: 2;
    position: relative;
}

.social-link.facebook {
    background: linear-gradient(135deg, #FFCC00, #FFD700);
    color: #000;
    border: 2px solid rgba(255, 204, 0, 0.3);
}

.social-link.facebook:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 204, 0, 0.4);
    border-color: rgba(255, 204, 0, 0.6);
}

.social-link.instagram {
    background: linear-gradient(135deg, #FFCC00, #FFD700);
    color: #000;
    border: 2px solid rgba(255, 204, 0, 0.3);
}

.social-link.instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 204, 0, 0.4);
    border-color: rgba(255, 204, 0, 0.6);
}

/* Footer Bottom */
.xs-footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 204, 0, 0.15);
    background: rgba(0, 0, 0, 0.3);
}

.copyright-text {
    color: #ccc;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
}

.copyright-text strong {
    color: #FFCC00;
    font-weight: 600;
}

.separator {
    color: #666;
    margin: 0 10px;
}

.back-to-top {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    padding: 8px 15px;
    border: 1px solid rgba(255, 204, 0, 0.2);
    border-radius: 25px;
}

.back-to-top:hover {
    color: #FFCC00;
    text-decoration: none;
    border-color: rgba(255, 204, 0, 0.5);
    transform: translateY(-2px);
}

.back-to-top i {
    font-size: 0.8rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .xs-footer-top {
        padding: 40px 0 30px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .xs-footer-bottom {
        text-align: center;
    }
    
    .xs-footer-bottom .row > div {
        margin-bottom: 15px;
    }
    
    .xs-footer-bottom .row > div:last-child {
        margin-bottom: 0;
    }
    
    .copyright-text {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }
    
    .back-to-top {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .xs-footer-widget {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .widget-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .schedule-item {
        text-align: center;
        flex-direction: column;
        gap: 5px;
    }
    
    .contact-item {
        justify-content: center;
        text-align: center;
    }
}

/* Área do Aluno Animation Keyframes */
@keyframes alunoGlow {
    0% { opacity: 0.8; }
    100% { opacity: 1; }
}

/* Online Section Animation Keyframes */
@keyframes digitalPulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

@keyframes gridScan {
    0% { transform: translateX(-100%); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(100%); opacity: 0; }
}

@keyframes gridScanVertical {
    0% { transform: translateY(-100%); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(100%); opacity: 0; }
}

@keyframes techFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(2deg); }
    50% { transform: translateY(-5px) rotate(-1deg); }
    75% { transform: translateY(-20px) rotate(1deg); }
}

@keyframes particleMove {
    0% { transform: translateY(0px) scale(1); opacity: 0.3; }
    50% { transform: translateY(-30px) scale(1.2); opacity: 1; }
    100% { transform: translateY(-60px) scale(0.8); opacity: 0; }
}

@keyframes badgeGlow {
    0% { opacity: 0.6; transform: scale(1); }
    100% { opacity: 0.9; transform: scale(1.05); }
}

@keyframes titleExplosion {
    0% { transform: scale(0.8) translateY(30px); opacity: 0; }
    60% { transform: scale(1.05) translateY(-5px); opacity: 0.9; }
    100% { transform: scale(1) translateY(0); opacity: 1; }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes ctaPulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.6; }
}

@keyframes techLineMove {
    0% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: scale(0); }
}

/* Animation Keyframes */
@keyframes slideInDown {
    0% { transform: translateY(-50px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes slideInUp {
    0% { transform: translateY(50px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes fadeInUp {
    0% { transform: translateY(30px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

/* Guarantee all interactive elements are above watermarks */
.btn, .btn-primary, .btn-lg {
    position: relative;
    z-index: 10;
}

/* Modal Modalidades Premiare Center */
.modal-modalidade {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  animation: fadeIn 0.3s ease;
}

.modal-modalidade.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content-modalidade {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  border: 3px solid #FFCC00;
  border-radius: 20px;
  max-width: 800px;
  width: 90vw;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(255, 204, 0, 0.3);
  animation: modalSlideIn 0.4s ease;
}

.modal-header-modalidade {
  background: linear-gradient(90deg, #FFCC00 0%, #E6B800 100%);
  color: #000;
  padding: 20px 30px;
  border-radius: 17px 17px 0 0;
  position: relative;
}

.modal-title-modalidade {
  font-size: 2rem;
  font-weight: 800;
  margin: 0;
  text-transform: uppercase;
  font-family: 'Barlow', sans-serif;
}

.modal-close-modalidade {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2.5rem;
  color: #000;
  cursor: pointer;
  line-height: 1;
  transition: transform 0.2s;
}

.modal-close-modalidade:hover {
  transform: scale(1.2);
}

.modal-body-modalidade {
  padding: 30px;
  color: #fff;
}

.modal-content-top {
  display: flex;
  gap: 25px;
  margin-bottom: 25px;
  align-items: flex-start;
}

.modal-image-modalidade {
  width: 180px;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid #FFCC00;
  flex-shrink: 0;
}

.modal-description-modalidade {
  font-size: 1.1rem;
  line-height: 1.6;
  flex: 1;
}

.modal-benefits-modalidade {
  background: rgba(255, 204, 0, 0.1);
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 25px;
}

.modal-benefits-modalidade h4 {
  color: #FFCC00;
  font-size: 1.3rem;
  margin-bottom: 15px;
  text-transform: uppercase;
  font-weight: 700;
}

.modal-benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.modal-benefits-list li {
  padding: 8px 0;
  position: relative;
  padding-left: 25px;
}

.modal-benefits-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #FFCC00;
  font-weight: bold;
  font-size: 1.2rem;
}

.modal-schedule-modalidade {
  background: rgba(255, 204, 0, 0.15);
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 25px;
}

.modal-schedule-modalidade h4 {
  color: #FFCC00;
  font-size: 1.3rem;
  margin-bottom: 15px;
  text-transform: uppercase;
  font-weight: 700;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.schedule-day {
  background: rgba(0, 0, 0, 0.3);
  padding: 12px 15px;
  border-radius: 8px;
  border-left: 4px solid #FFCC00;
}

.schedule-day-name {
  font-weight: 700;
  color: #FFCC00;
  margin-bottom: 5px;
  font-size: 0.95rem;
}

.schedule-times {
  font-size: 0.9rem;
  color: #fff;
  line-height: 1.3;
}

.modal-disclaimers {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid #FFCC00;
}

.disclaimer-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
  font-size: 0.95rem;
  line-height: 1.4;
}

.disclaimer-item:last-child {
  margin-bottom: 0;
}

.disclaimer-icon {
  color: #FFCC00;
  font-weight: bold;
  font-size: 1.1rem;
  margin-top: 2px;
}

.modal-cta-modalidade {
  text-align: center;
  padding: 20px 0;
}

.modal-btn-modalidade {
  background: linear-gradient(90deg, #FFCC00 0%, #E6B800 100%);
  color: #000;
  border: none;
  padding: 15px 40px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

.modal-btn-modalidade:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 204, 0, 0.4);
  color: #000;
  text-decoration: none;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(-50px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
  .modal-content-modalidade {
    width: 95vw;
    margin: 10px;
  }
  
  .modal-header-modalidade {
    padding: 15px 20px;
  }
  
  .modal-title-modalidade {
    font-size: 1.5rem;
  }
  
  .modal-body-modalidade {
    padding: 20px;
  }
  
  .modal-image-modalidade {
    width: 150px;
    height: 100px;
  }
  
  .modal-content-top {
    flex-direction: column;
    gap: 15px;
  }
  
  .modal-image-modalidade {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
  }
  
  .schedule-grid {
    grid-template-columns: 1fr;
  }
}
:root {
  font-size: 16px;
}

body {
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  line-height: 1.625;
  color: #666565;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Barlow", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  color: #101010;
}

h1 {
  font-size: 3.125rem;
  font-weight: 900;
}

h2 {
  font-size: 2.625rem;
  margin-bottom: 25px;
}

h3 {
  font-size: 2.25rem;
}

h4 {
  font-size: 1.875rem;
}

h5 {
  font-size: 1.5rem;
}

p:last-child {
  margin-bottom: 0px;
}

iframe {
  border: none;
}

a,
b,
div,
ul,
li {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
  -moz-outline-: none;
}

a:focus,
a:active,
input,
input:hover,
input:focus,
input:active,
textarea,
textarea:hover,
textarea:focus,
textarea:active {
  -moz-outline: none;
  outline: none;
}

img:not([draggable]),
embed,
object,
video {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  outline: 0;
}

a:active,
a:focus,
a:hover,
a:visited {
  text-decoration: none;
  outline: 0;
}

img {
  border: none;
  max-width: 100%;
}

ul, li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.xs-clear-both:before,
.xs-clear-both:after {
  display: table;
  content: "";
  clear: both;
}

button:focus {
  outline: none;
}

.xs-section-heading, .xs-section-heading2 {
  margin-bottom: 70px;
  color: #666565;
}

.xs-section-heading h2 span, .xs-section-heading2 h2 span {
  color: #FFCC00;
}

.xs-section-heading p, .xs-section-heading2 p {
  font-size: 1.125rem;
}

.xs-section-heading2 h2,
.xs-section-heading2 p {
  color: #FFFFFF;
}

.xs-colummn-heading h2, .xs-colummn-heading2 h2 {
  font-size: 2.25rem;
}

.xs-colummn-heading h2 span, .xs-colummn-heading2 h2 span {
  color: #FFCC00;
}

.xs-colummn-heading2 h2,
.xs-colummn-heading2 p {
  color: #FFFFFF;
}

.xs-bg-cover {
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.xs-shape {
  position: absolute;
  top: 70px;
  height: 300px;
  width: 120px;
  background-repeat: no-repeat;
  background-size: contain;
}

.xs-line {
  position: relative;
}

.xs-line:before {
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 45px;
  content: "";
  background-color: #FFCC00;
}

.xs-water-mark {
  position: absolute;
  font-size: 20rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 20rem;
  color: #131313;
  width: 100%;
  text-align: center;
  z-index: -1;
  pointer-events: none;
}

.xs-water-mark.medium-size {
  font-size: 21.875rem;
}

.xs-purple-bg {
  background: -webkit-gradient(linear, left top, right top, from(#FFCC00), to(#FFCC00));
  background: -webkit-linear-gradient(left, #FFCC00, #FFCC00);
  background: -o-linear-gradient(left, #FFCC00, #FFCC00);
  background: linear-gradient(to right, #FFCC00, #FFCC00);
}

/*=================================================== page element ===============================*/
/*=================================================
		1. header
=================================================*/
.megamenu_lists > li > a {
  padding: 10px;
  color: #101010;
}

.xs-container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  max-width: 1140px;
}

.xs-navbar {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  z-index: 9;
}

.xs-navbar-brand {
  text-decoration: none;
  color: #000000;
}

.xs-navbar-brand > h2 {
  margin-top: 0;
  margin-bottom: 0;
}

@media (min-width: 992px) {
  .elementskit-header .elementskit-menu-container {
    position: static;
  }
  .elementskit-megamenu-panel > li {
    display: inline-block;
    width: 25%;
    float: left;
  }
}

.modal-searchPanel .xs-search-group {
  position: relative;
}

.modal-searchPanel .xs-search-group input:not([type="submit"]) {
  height: 70px;
  background-color: transparent;
  border-radius: 50px;
  border: 2px solid #FFFFFF;
  color: #FFFFFF;
  padding: 0 30px;
  width: 100%;
}

.modal-searchPanel .xs-search-group input:not([type="submit"])::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #FFFFFF;
}

.modal-searchPanel .xs-search-group input:not([type="submit"])::-moz-placeholder {
  /* Firefox 19+ */
  color: #FFFFFF;
}

.modal-searchPanel .xs-search-group input:not([type="submit"]):-ms-input-placeholder {
  /* IE 10+ */
  color: #FFFFFF;
}

.modal-searchPanel .xs-search-group input:not([type="submit"]):-moz-placeholder {
  /* Firefox 18- */
  color: #FFFFFF;
}

.modal-searchPanel .xs-search-group .search-button {
  background-color: transparent;
  border: 0px;
  padding: 0;
  color: #FFFFFF;
  position: absolute;
  right: 0;
  cursor: pointer;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 100%;
  width: 70px;
  border-radius: 0 50px 50px 0;
}

.modal-searchPanel .xs-search-panel {
  max-width: 800px;
  margin: 1.75rem auto;
}

/* magnific pop up modal */
.mfp-bg.xs-promo-popup {
  background-color: rgba(0, 0, 0, 0.87);
  padding-bottom: 100%;
  border-radius: 100%;
  overflow: hidden;
  -webkit-animation: menu-animation .8s ease-out forwards;
  animation: menu-animation .8s ease-out forwards;
}

/* animation keyframes list */
@-webkit-keyframes menu-animation {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.04) translateY(300%);
    transform: scale(0.04) translateY(300%);
  }
  40% {
    -webkit-transform: scale(0.04) translateY(0);
    transform: scale(0.04) translateY(0);
    -webkit-transition: ease-out;
    -o-transition: ease-out;
    transition: ease-out;
  }
  40% {
    -webkit-transform: scale(0.04) translateY(0);
    transform: scale(0.04) translateY(0);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(0.02) translateY(0px);
    transform: scale(0.02) translateY(0px);
  }
  61% {
    opacity: 1;
    -webkit-transform: scale(0.04) translateY(0px);
    transform: scale(0.04) translateY(0px);
  }
  99.9% {
    opacity: 1;
    height: 0;
    padding-bottom: 100%;
    border-radius: 100%;
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(2) translateY(0px);
    transform: scale(2) translateY(0px);
    height: 100%;
    padding-bottom: 0;
    border-radius: 0;
  }
}
@keyframes menu-animation {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.04) translateY(300%);
    transform: scale(0.04) translateY(300%);
  }
  40% {
    -webkit-transform: scale(0.04) translateY(0);
    transform: scale(0.04) translateY(0);
    -webkit-transition: ease-out;
    -o-transition: ease-out;
    transition: ease-out;
  }
  40% {
    -webkit-transform: scale(0.04) translateY(0);
    transform: scale(0.04) translateY(0);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(0.02) translateY(0px);
    transform: scale(0.02) translateY(0px);
  }
  61% {
    opacity: 1;
    -webkit-transform: scale(0.04) translateY(0px);
    transform: scale(0.04) translateY(0px);
  }
  99.9% {
    opacity: 1;
    height: 0;
    padding-bottom: 100%;
    border-radius: 100%;
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(2) translateY(0px);
    transform: scale(2) translateY(0px);
    height: 100%;
    padding-bottom: 0;
    border-radius: 0;
  }
}

/* Styles for dialog window */
.xs-promo-popup .modal-content {
  background-color: transparent;
  padding: 0px;
  border: 0px;
}

.xs-promo-popup .mfp-close {
  color: #FFFFFF;
  opacity: 0;
  -webkit-transition: all 1s ease .8s;
  -o-transition: all 1s ease .8s;
  transition: all 1s ease .8s;
  -webkit-transform: translateY(-500px);
  -ms-transform: translateY(-500px);
  transform: translateY(-500px);
}

.xs-promo-popup.mfp-ready .mfp-close {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

/* at start */
.xs-promo-popup.my-mfp-slide-bottom .zoom-anim-dialog {
  opacity: 0;
  -webkit-transition: all 1s ease .8s;
  -o-transition: all 1s ease .8s;
  transition: all 1s ease .8s;
  -webkit-transform: translateY(-500px);
  -ms-transform: translateY(-500px);
  transform: translateY(-500px);
}

/* animate in */
.xs-promo-popup.my-mfp-slide-bottom.mfp-ready .zoom-anim-dialog {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.mini_cart_item {
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.xs-empty-content {
  text-align: center;
  padding: 120px 30px 30px;
}

.xs-empty-content .widget-title {
  font-size: 1.375rem;
}

.xs-empty-content .xs-title {
  margin-bottom: 20px;
  font-size: 1.125rem;
}

.xs-empty-content .woocommerce-mini-cart__empty-message {
  font-size: 1.25rem;
}

.xs-empty-content .empty-cart-icon {
  font-size: 3.125rem;
}

.sidebar-textwidget .sidebar-logo-wraper {
  margin-bottom: 25px;
}

.sidebar-textwidget > p {
  font-size: 0.9375rem;
  line-height: 1.5;
  margin-bottom: 40px;
}

.sidebar-textwidget .social-list {
  margin-bottom: 30px;
}

.sideabr-list-widget {
  margin-bottom: 25px;
}

.sideabr-list-widget li {
  margin-bottom: 6px;
}

.sideabr-list-widget li i {
  color: #FFCC00;
  margin-right: 15px;
}

.sideabr-list-widget li:last-child {
  margin-bottom: 0px;
}

.sideabr-list-widget img {
  margin-right: 15px;
  margin-top: 3px;
}

.sideabr-list-widget p, .sideabr-list-widget a {
  margin-bottom: 2px;
  color: #000000;
  margin-bottom: 8px;
  display: block;
}

.sideabr-list-widget span {
  display: block;
  font-size: 0.875rem;
  color: #1768dd;
}

.sideabr-list-widget .media-body {
  line-height: 1;
}

.subscribe-from {
  position: relative;
  margin-bottom: 40px;
}

.subscribe-from p {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1;
  color: #1768dd;
}

.subscribe-from label {
  position: absolute;
  bottom: -24px;
  left: 0px;
  margin-bottom: 0;
  line-height: 1;
}

.subscribe-from .form-control {
  border: 1px solid #f5f5f5;
  height: 50px;
  padding-left: 25px;
}

.subscribe-from .sub-btn {
  background-color: transparent;
  border: 0px;
  position: absolute;
  top: 0;
  right: 0;
  padding-right: 25px;
  cursor: pointer;
  color: #1768dd;
  height: 100%;
}

.subscribe-from .sub-btn:focus {
  outline: none;
}

.subscribe-from .form-group {
  position: relative;
  overflow: hidden;
  -webkit-box-shadow: 0px 10px 30px 0px rgba(23, 104, 221, 0.2);
  box-shadow: 0px 10px 30px 0px rgba(23, 104, 221, 0.2);
  border-radius: 25px;
  margin-bottom: 0px;
}

.xs-instra-feed .text-primary {
  color: #FFCC00 !important;
}

.xs-instra-feed ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.xs-instra-feed ul li {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33.33%;
  flex: 0 0 33.33%;
  max-width: 33.33%;
  padding: 0 3px;
}

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

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

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

.xs-sidebar-group.isActive .xs-overlay {
  opacity: .9;
  visibility: visible;
  -webkit-transition: all .8s ease-out 0s;
  -o-transition: all .8s ease-out 0s;
  transition: all .8s ease-out 0s;
  left: 0;
}

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

.sidebar-textwidget {
  padding: 40px;
  padding-top: 40px;
}

.close-side-widget {
  color: #FFCC00;
  font-size: 0.9375rem;
  display: block;
}

.close-side-widget:hover {
  color: #df2109;
}

.sidebar-widget-container {
  position: relative;
  top: 150px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .3s ease-in .3s;
  -o-transition: all .3s ease-in .3s;
  transition: all .3s ease-in .3s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

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

.xs-sidebar-image {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.xs-sidebar-image img {
  height: 235px;
}

.xs-menu-tools > li {
  display: inline-block;
  margin-left: 15px;
  margin-right: 15px;
}

.xs-menu-tools > li:last-child {
  margin-right: 0;
}

.xs-menu-tools > li > a {
  color: #101010;
  text-decoration: none;
}

.elementskit-menu-container {
  z-index: 10000;
}

.elementskit-navbar-nav {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.elementskit-navbar-nav li {
  position: relative;
}

.elementskit-navbar-nav li a {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
}

.elementskit-navbar-nav li a:hover {
  text-decoration: none;
}

.elementskit-navbar-nav li.elementskit-megamenu-has {
  position: static;
}

.elementskit-navbar-nav > li > a {
  -webkit-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: normal;
}

.elementskit-dropdown {
  border-top: 1px solid #f8f8f8;
  border-left: 1px solid #f8f8f8;
  border-bottom: 1px solid #f8f8f8;
  border-right: 1px solid #f8f8f8;
  background: white;
  background: -webkit-linear-gradient(30deg, white 0%, white 100%);
  background: -o-linear-gradient(30deg, white 0%, white 100%);
  background: linear-gradient(60deg, white 0%, white 100%);
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  border-top-right-radius: 0px;
  border-top-left-radius: 0px;
  padding-left: 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: -webkit-transform .4s ease;
  transition: -webkit-transform .4s ease;
  -o-transition: transform .4s ease;
  transition: transform .4s ease;
  transition: transform .4s ease, -webkit-transform .4s ease;
}

.elementskit-dropdown > li > .elementskit-dropdown {
  left: 100%;
  top: 0;
}

.elementskit-dropdown > li > .elementskit-dropdown.open-fromleft {
  left: auto;
  right: 100%;
}

.elementskit-submenu-panel > li > a {
  padding-top: 15px;
  padding-left: 15px;
  padding-bottom: 15px;
  padding-right: 15px;
  color: #101010;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.elementskit-navbar-nav li:hover > a,
.elementskit-navbar-nav > li > a:hover {
  color: #FFCC00;
  background: rgba(255, 255, 255, 0);
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0)));
  background: -webkit-linear-gradient(bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%);
  background: -o-linear-gradient(bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%);
}

.elementskit-submenu-panel > li:hover > a,
.elementskit-submenu-panel > li > a:hover {
  color: #FFCC00;
  background: rgba(255, 255, 255, 0.5);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.5)), to(rgba(255, 255, 255, 0.5)));
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.5) 100%);
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.5) 100%);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.5) 100%);
}

.elementskit-megamenu-panel {
  width: 100%;
  background: white;
  background: -webkit-gradient(linear, left top, right top, from(white), to(white));
  background: -webkit-linear-gradient(left, white 0%, white 100%);
  background: -o-linear-gradient(left, white 0%, white 100%);
  background: linear-gradient(90deg, white 0%, white 100%);
  border-top: 1px solid #f8f8f8;
  border-left: 1px solid #f8f8f8;
  border-right: 1px solid #f8f8f8;
  border-bottom: 1px solid #f8f8f8;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
  -webkit-box-shadow: 0px 10px 30px 0px rgba(68, 68, 68, 0.2);
  box-shadow: 0px 10px 30px 0px rgba(68, 68, 68, 0.2);
}

.elementskit-overlay {
  display: none;
}

.elementskit-nav-identity-panel {
  display: none;
}

.elementskit-menu-hamburger {
  border: 1px solid rgba(16, 16, 16, 0.2);
  float: right;
}

.elementskit-menu-hamburger .elementskit-menu-hamburger-icon {
  background-color: rgba(16, 16, 16, 0.5);
}

.elementskit-menu-hamburger,
.elementskit-menu-close {
  display: none;
  padding: 8px;
  background-color: transparent;
  border-radius: 0.25rem;
  position: relative;
  z-index: 10;
  cursor: pointer;
  width: 45px;
}

.elementskit-menu-hamburger .elementskit-menu-hamburger-icon,
.elementskit-menu-close .elementskit-menu-hamburger-icon {
  height: 1px;
  width: 100%;
  display: block;
  margin-bottom: 4px;
}

.elementskit-menu-hamburger .elementskit-menu-hamburger-icon:last-child,
.elementskit-menu-close .elementskit-menu-hamburger-icon:last-child {
  margin-bottom: 0;
}

.elementskit-menu-close {
  border: 1px solid rgba(16, 16, 16, 0.2);
  color: rgba(16, 16, 16, 0.5);
  float: right;
  margin-top: 20px;
  margin-left: 20px;
  margin-right: 20px;
  margin-bottom: 20px;
}

.elementskit-dropdown-has:hover > a::after {
  border-color: transparent #FFCC00 #FFCC00 transparent;
}

.elementskit-dropdown-has > a {
  position: relative;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.elementskit-dropdown-has > a:hover::after {
  border-color: transparent #FFCC00 #FFCC00 transparent;
}

.elementskit-dropdown-has > a::after {
  content: "";
  margin-left: 6px;
  height: 6px;
  width: 6px;
  border-style: solid;
  border-width: 0 1px 1px 0;
  border-color: transparent #101010 #101010 transparent;
  display: inline-block;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.elementskit-submenu-panel .elementskit-dropdown-has:hover > a::after {
  border-color: transparent #FFCC00 #FFCC00 transparent;
}

.elementskit-submenu-panel .elementskit-dropdown-has > a:hover::after {
  border-color: transparent #FFCC00 #FFCC00 transparent;
}

@media (min-width: 992px) {
  .elementskit-dropdown .elementskit-dropdown-has > a::after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .elementskit-menu-container {
    background: rgba(255, 255, 255, 0);
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0)));
    background: -webkit-linear-gradient(bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%);
    background: -o-linear-gradient(bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%);
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
    border-top-right-radius: 0px;
    border-top-left-radius: 0px;
    position: relative;
  }
  .elementskit-dropdown {
    min-width: 250px;
  }
  .elementskit-navbar-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 90px;
  }
  .elementskit-navbar-nav > li > a {
    font-size: 14px;
    color: #101010;
    padding-left: 20px;
    padding-right: 20px;
  }
  .elementskit-dropdown {
    -webkit-box-shadow: 0px 10px 30px 0px rgba(68, 68, 68, 0.2);
    box-shadow: 0px 10px 30px 0px rgba(68, 68, 68, 0.2);
    position: absolute;
    top: 100%;
    left: 0px;
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
    pointer-events: none;
  }
  .elementskit-dropdown-has:hover > .elementskit-dropdown {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
    pointer-events: auto;
  }
}

@media (max-width: 991px) {
  .elementskit-menu-container {
    background: white;
    background: -webkit-gradient(linear, left bottom, left top, from(white), to(white));
    background: -webkit-linear-gradient(bottom, white 0%, white 100%);
    background: -o-linear-gradient(bottom, white 0%, white 100%);
    background: linear-gradient(0deg, white 0%, white 100%);
    max-width: 350px;
    width: 100%;
    position: fixed;
    top: 0;
    left: -450px;
    height: 100%;
    -webkit-box-shadow: 0px 10px 30px 0px rgba(68, 68, 68, 0.2);
    box-shadow: 0px 10px 30px 0px rgba(68, 68, 68, 0.2);
    overflow-y: auto;
    overflow-x: hidden;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    -webkit-transition: left 600ms cubic-bezier(0.6, 0.1, 0.68, 0.53) 0ms;
    -o-transition: left 600ms cubic-bezier(0.6, 0.1, 0.68, 0.53) 0ms;
    transition: left 600ms cubic-bezier(0.6, 0.1, 0.68, 0.53) 0ms;
  }
  .elementskit-menu-container.active {
    left: 0;
  }
  .no-scroller {
    overflow: hidden;
  }
  .elementskit-menu-overlay {
    display: block;
    position: fixed;
    z-index: 5;
    top: 0;
    left: -110%;
    height: 100%;
    width: 100%;
    background-color: rgba(51, 51, 51, 0.5);
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 600ms cubic-bezier(0.6, 0.1, 0.68, 0.53) 400ms;
    -o-transition: all 600ms cubic-bezier(0.6, 0.1, 0.68, 0.53) 400ms;
    transition: all 600ms cubic-bezier(0.6, 0.1, 0.68, 0.53) 400ms;
  }
  .elementskit-menu-overlay.active {
    left: 0%;
    -webkit-transition: all 600ms cubic-bezier(0.22, 0.61, 0.24, 1) 0ms;
    -o-transition: all 600ms cubic-bezier(0.22, 0.61, 0.24, 1) 0ms;
    transition: all 600ms cubic-bezier(0.22, 0.61, 0.24, 1) 0ms;
  }
  .elementskit-menu-hamburger,
  .elementskit-menu-close {
    display: block;
  }
  .elementskit-nav-identity-panel {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    width: 100%;
  }
  .elementskit-nav-identity-panel .elementskit-site-title {
    float: left;
  }
  .elementskit-nav-identity-panel .elementskit-menu-close {
    float: right;
  }
  .elementskit-navbar-nav {
    padding-top: 100px;
  }
  .elementskit-navbar-nav > li > a {
    color: #101010;
    font-size: 13px;
    padding-top: 15px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 15px;
  }
  .elementskit-navbar-nav > li > a:hover {
    color: #FFCC00;
  }
  .elementskit-navbar-nav > li:hover > a {
    color: #FFCC00;
  }
  .elementskit-submenu-panel > li > a {
    color: #101010;
    font-size: 13px;
    padding-top: 10px;
    padding-left: 7px;
    padding-right: 7px;
    padding-bottom: 10px;
  }
  .elementskit-dropdown {
    max-height: 0;
    overflow: hidden;
    display: block;
    border: 0px;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: max-height 2s cubic-bezier(0, 1, 0, 1);
    -o-transition: max-height 2s cubic-bezier(0, 1, 0, 1);
    transition: max-height 2s cubic-bezier(0, 1, 0, 1);
  }
  .elementskit-dropdown.elementskit-dropdown-open {
    max-height: 2500px;
    opacity: 1;
    visibility: visible;
    -webkit-transition: max-height 5s ease-out;
    -o-transition: max-height 5s ease-out;
    transition: max-height 5s ease-out;
  }
  .elementskit-navbar-nav > .elementskit-dropdown-has > .elementskit-dropdown li a {
    padding-left: 15px;
  }
}

.xs-header .elementskit-submenu-panel > li:not(:last-child) {
  border-bottom: 1px solid #f8f8f8;
}

.xs-header .elementskit-submenu-panel > li > a {
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.xs-header-transparent {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 4;
  background: transparent;
}

.xs-navbar-brand a {
  display: inline-block;
}

.xs-header-dark {
  position: relative;
  background: #252525;
}

.xs-header-dark:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -3rem;
  content: "";
  width: calc(50% - 310px);
  z-index: 3;
  -webkit-transform: skew(-22deg);
  -ms-transform: skew(-22deg);
  transform: skew(-22deg);
  background-image: -moz-linear-gradient(0deg, #E6B800 0%, #FFCC00 100%);
  background-image: -webkit-linear-gradient(0deg, #E6B800 0%, #FFCC00 100%);
  background-image: -ms-linear-gradient(0deg, #E6B800 0%, #FFCC00 100%);
}

.xs-header-dark nav {
  width: calc(100% - 420px);
}

.xs-header-dark .xs-navbar-brand {
  margin-top: -48px;
  z-index: 4;
}

.xs-header-dark .xs-menu-top {
  padding: 10px 0;
  background-color: #1e1f1e;
  border-bottom: 1px solid #333333;
}

.xs-header-dark .xs-header-contact {
  margin-left: 260px;
  float: left;
  font-size: 0.875rem;
  line-height: 1.5rem;
  color: #FFFFFF;
}

.xs-header-dark .xs-header-social {
  float: right;
  color: #FFFFFF;
  margin-right: -10px;
}

.xs-header-dark .xs-header-social li {
  display: inline-block;
}

.xs-header-dark .xs-header-social li a {
  display: block;
  padding: 0 10px;
  font-size: 14px;
  color: #FFFFFF;
}

.xs-header-dark .elementskit-navbar-nav {
  height: 54px;
}

.xs-header-dark .elementskit-navbar-nav .elementskit-dropdown-has a:after {
  border-color: #8c8c8c;
}

.xs-header-dark .elementskit-navbar-nav > li > a {
  color: #8c8c8c;
}

.xs-header-dark .elementskit-navbar-nav > li > a:hover {
  color: #FFFFFF;
}

.xs-header-dark .elementskit-navbar-nav > li > a:hover:after {
  border-color: #FFFFFF;
}

.xs-header-dark .elementskit-navbar-nav .elementskit-submenu-panel > li > a {
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.xs-header-dark .xs-login-nav {
  margin-left: 30px;
  margin-right: 10px;
}

.xs-header-dark .xs-login-nav li {
  display: inline-block;
  margin-left: -4px;
}

.xs-header-dark .xs-login-nav li a {
  position: relative;
  display: block;
  padding: 16px 30px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  color: #101010;
  z-index: 1;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.xs-header-dark .xs-login-nav li a:before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  height: 100%;
  width: 100%;
  content: "";
  background: #f0f2f3;
  -webkit-transform: skew(-22deg);
  -ms-transform: skew(-22deg);
  transform: skew(-22deg);
}

.xs-header-dark .xs-login-nav li a.xs-login {
  color: #FFFFFF;
}

.xs-header-dark .xs-login-nav li a.xs-login:before {
  background: #FFCC00;
}

.xs-menu-tools li a {
  position: relative;
  font-size: 20px;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.xs-menu-tools li a:hover {
  color: #FFCC00;
}

.xs-menu-tools li a span {
  position: absolute;
  top: -4px;
  right: -8px;
  border-radius: 50%;
  font-size: 12px;
  line-height: 12px;
  text-align: center;
  color: #FFFFFF;
  background: #FFCC00;
  width: 14px;
  height: 14px;
}

.xs-onepage-header.sticky {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 55;
  background: #fff;
  -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.12);
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.12);
}

.xs-onepage-header.sticky.xs-header-dark {
  background: #252525;
}

/*=================================================
		2. banner
===============================================*/
.xs-banner {
  padding-top: 245px;
  padding-bottom: 245px;
}

.xs-banner-subtitle {
  margin-bottom: 0;
  font-size: 1.875rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #FFFFFF;
}

.xs-banner-title {
  margin-bottom: 35px;
  font-size: 7.5rem;
  line-height: 7.5rem;
  color: #FFFFFF;
  text-indent: -5px;
}

.xs-banner-title span {
  color: #FFCC00;
  text-indent: -5px;
}

.xs-banner-dark {
  padding-top: 200px;
  padding-bottom: 200px;
}

.xs-banner-dark .xs-banner-title {
  font-size: 5rem;
  line-height: 6.25rem;
  text-transform: inherit;
}

.xs-banner-dark-shape {
  top: 270px;
}

.xs-slider-light-owl .owl-item {
  visibility: hidden;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.xs-slider-light-owl .owl-item.active {
  visibility: visible;
}

.xs-slider-light-owl .owl-item.active .xs-fadeInLeft {
  -webkit-animation: fadeInLeft 0.6s ease-in-out 300ms both;
  animation: fadeInLeft 0.6s ease-in-out 300ms both;
}

.xs-slider-light-owl .owl-item.active .xs-fadeInRight {
  -webkit-animation: fadeInRight 0.6s ease-in-out 300ms both;
  animation: fadeInRight 0.6s ease-in-out 300ms both;
}

.xs-slider-light-owl .owl-item.active .xs-slideInDown {
  -webkit-animation: slideInDown 0.6s ease-in-out 300ms both;
  animation: slideInDown 0.6s ease-in-out 300ms both;
}

.xs-slider-light-owl .owl-item img {
  max-width: 100%;
  width: inherit;
}

.xs-slider-light-owl .xs-slide-inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 840px;
}

.xs-slider-light-owl .xs-slide-inner .xs-banner-title {
  margin-bottom: 55px;
  font-family: "Montserrat", sans-serif;
  font-size: 5rem;
  font-weight: 800;
  line-height: 6.25rem;
  text-transform: inherit;
  color: #101010;
}

.xs-slider-light-owl .xs-slide-inner .xs-banner-title:before {
  top: inherit;
  bottom: -30px;
}

.xs-slider-light-owl .xs-slide-inner p {
  font-size: 1.25rem;
}

.xs-slider-light-owl .xs-slide-inner .btn {
  margin-top: 20px;
}

.xs-slider-light-owl .xs-before-text,
.xs-slider-light-owl .xs-after-text {
  position: absolute;
  top: 197px;
  font-size: 15.625rem;
  line-height: 15.625rem;
  color: #ee0c08;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
}

.xs-slider-light-owl .xs-before-text::before,
.xs-slider-light-owl .xs-after-text::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.xs-slider-light-owl .xs-before-text {
  left: calc(50% - 517px);
  background-image: -webkit-linear-gradient(left, #E6B800 0%, #FFCC00 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.xs-slider-light-owl .xs-before-text::before {
  text-shadow: 4.226px 9.063px 15px rgba(0, 0, 0, 0.2);
}

.xs-slider-light-owl .xs-after-text {
  left: calc(50% + 80px);
  background-image: -webkit-linear-gradient(left, #FFCC00 0%, #ff7640 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.xs-slider-light-owl .xs-after-text::before {
  text-shadow: 8.452px 18.126px 15px rgba(0, 0, 0, 0.15);
}

.xs-slider-light-owl .xs-light-slide-img3 {
  margin-top: 130px;
}

.xs-slider-light-owl .xs-light-slide-img3 img {
  margin: 0 auto;
}

.xs-slider-light-owl .xs-light-slide1 {
  margin-top: 190px;
}

.xs-slider-light-owl .xs-light-slide2 {
  margin-top: 220px;
}

.xs-slider-light-owl .xs-light-slide-img1 {
  margin-left: -465px;
  margin-right: -65px;
  margin-top: 65px;
}

.xs-slider-light-owl .xs-light-slide-img2 {
  margin-left: -320px;
  margin-right: -140px;
  margin-top: 90px;
}

.xs-slider-light-owl .xs-water-mark {
  top: 260px;
  left: -175px;
  z-index: -1;
  font-size: 24.0625rem;
  color: #eaeaea;
}

.xs-banner-light-right {
  top: 17%;
  right: 0;
  width: 120px;
  height: 430px;
  z-index: 2;
}

.xs-banner-light-left {
  top: 25%;
  left: 0;
  height: 380px;
  width: 210px;
}

.xs-clips-wraper {
  position: absolute;
  top: 180px;
  left: 100px;
}

.xs-banner-area {
  padding-top: 130px;
  padding-bottom: 140px;
}

.xs-banner-area .xs-banner-title {
  margin: 0;
  font-size: 5rem;
  line-height: 5rem;
  text-transform: uppercase;
}

.xs-slide-inner .xs-shape {
  z-index: -1;
}

.banner_right_shape {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.banner-inner-wraper {
  position: relative;
}

/*=================================================
		3. about us
===============================================*/
.xs-about-us h3 {
  margin: 25px 0 15px;
  font-size: 1.25rem;
}

.xs-about-us i {
  font-size: 3.75rem;
  color: #FFCC00;
}

.xs-about-us-about .xs-overlay {
  background-color: rgba(0, 0, 0, 0.8);
}

.xs-about-us-about .xs-about-us,
.xs-about-us-about .xs-about-us h3 {
  color: #FFFFFF;
}

/*=================================================
		4. services intro
===============================================*/
.xs-services-intro .xs-section-heading, .xs-services-intro .xs-section-heading2 {
  margin-top: 20px;
  margin-bottom: 5px;
}

.xs-services-intro .xs-btn-wraper {
  text-align: right;
}

/*=================================================
		5. services
===============================================*/
.xs-service {
  position: relative;
  overflow: hidden;
}

.xs-service .xs-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  -webkit-transition: all 0.24s ease-in-out;
  -o-transition: all 0.24s ease-in-out;
  transition: all 0.24s ease-in-out;
}

.xs-service img {
  width: 100%;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: all 0.63s ease-in-out;
  -o-transition: all 0.63s ease-in-out;
  transition: all 0.63s ease-in-out;
}

.xs-service:hover p,
.xs-service:hover .btn-primary {
  opacity: 1;
}

.xs-service:hover .xs-service-content {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}

.xs-service:hover img {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.xs-service:hover .xs-overlay {
  background: rgba(0, 0, 0, 0.6);
}

.xs-service-content {
  padding: 0 70px;
  width: 100%;
  text-align: center;
  -webkit-transform: translate(0, 70px);
  -ms-transform: translate(0, 70px);
  transform: translate(0, 70px);
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.xs-service-content .xs-icon-wraper,
.xs-service-content h3,
.xs-service-content p {
  color: #FFFFFF;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.xs-service-content .xs-icon-wraper {
  margin: 0 auto;
  border-radius: 50%;
  font-size: 3.75rem;
  line-height: 105px;
  background-color: rgba(0, 0, 0, 0.8);
  width: 100px;
  height: 100px;
}

.xs-service-content h3 {
  margin: 30px 0 20px;
  font-size: 1.5rem;
}

.xs-service-content .btn-primary {
  margin-top: 10px;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 14px;
  line-height: 1.2;
  min-width: auto;
  height: auto;
  white-space: nowrap;
}

.xs-service-content p,
.xs-service-content .btn-primary {
  opacity: 0;
}

.xs-classes-light .xs-service {
  margin-bottom: 30px;
}

.xs-classes-light .xs-service-content {
  padding: 0 40px;
}

/*=================================================
		6. help
===============================================*/
.xs-help .xs-section-heading, .xs-help .xs-section-heading2 {
  margin-bottom: 0;
}

.xs-help h2,
.xs-help .btn {
  margin-top: 20px;
}

.xs-help .xs-video-wraper {
  position: relative;
  -webkit-box-shadow: 0px 20px 60px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 20px 60px 0px rgba(0, 0, 0, 0.2);
}

.xs-help .xs-video-shape {
  position: absolute;
  top: 50%;
  right: -50px;
  height: 200px;
  width: 45px;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  background-repeat: no-repeat;
}

.xs-help-light {
  margin-bottom: 30px;
  color: #101010;
}

.xs-help-wm {
  right: 0;
  bottom: 100px;
  z-index: -1;
  font-size: 7.5rem;
  line-height: 7.5rem;
  color: #dddada;
}

.xs-strength .xs-overlay {
  background-color: rgba(0, 0, 0, 0.1);
}

.xs-strength .xs-video-shape {
  right: inherit;
  left: -45px;
}

.xs-strength h2 {
  margin-top: 5px;
}

.xs-strength p:not(:nth-last-of-type(1)) {
  margin-bottom: 25px;
}

/*=================================================
		7. class-schedule
===============================================*/
.xs-schedule-table, .xs-schedule-table-dark, .xs-schedule-table-light {
  background: rgba(16, 16, 16, 0.9);
}

.xs-schedule-table .table, .xs-schedule-table-dark .table, .xs-schedule-table-light .table {
  margin-bottom: 0;
  width: 1110px;
}

.xs-schedule-table .table th, .xs-schedule-table-dark .table th, .xs-schedule-table-light .table th {
  padding: 0;
  border: 0;
  text-transform: uppercase;
  text-align: center;
  vertical-align: middle;
  color: #fff;
  background: #222;
}

.xs-schedule-table .table thead th, .xs-schedule-table-dark .table thead th, .xs-schedule-table-light .table thead th {
  width: 145px;
  height: 85px;
  border-bottom: 1px solid #343434;
}

.xs-schedule-table .table thead th.xs-calendar-index, .xs-schedule-table-dark .table thead th.xs-calendar-index, .xs-schedule-table-light .table thead th.xs-calendar-index {
  width: 95px;
  font-size: 30px;
  line-height: 30px;
  background-color: #FFCC00;
}

.xs-schedule-table .table thead th span, .xs-schedule-table-dark .table thead th span, .xs-schedule-table-light .table thead th span {
  display: block;
  border-right: 1px solid #434343;
}

.xs-schedule-table .table thead th:first-child span, .xs-schedule-table-dark .table thead th:first-child span, .xs-schedule-table-light .table thead th:first-child span, .xs-schedule-table .table thead th:last-child span, .xs-schedule-table-dark .table thead th:last-child span, .xs-schedule-table-light .table thead th:last-child span {
  border-right: 0;
}

.xs-schedule-table .table tbody th, .xs-schedule-table-dark .table tbody th, .xs-schedule-table-light .table tbody th {
  width: 95px;
  border-top: 1px solid #343433;
}

.xs-schedule-table .table tbody tr:last-child td, .xs-schedule-table-dark .table tbody tr:last-child td, .xs-schedule-table-light .table tbody tr:last-child td {
  border-bottom: 0;
}

.xs-schedule-table .table tbody tr td:last-child, .xs-schedule-table-dark .table tbody tr td:last-child, .xs-schedule-table-light .table tbody tr td:last-child {
  border-right: 0;
}

.xs-schedule-table .table tbody td, .xs-schedule-table-dark .table tbody td, .xs-schedule-table-light .table tbody td {
  position: relative;
  padding: 0;
  height: 99px;
  border: 1px solid #343433;
  text-transform: uppercase;
  text-align: center;
}

.xs-schedule-table .table tbody td .xs-schedule-info, .xs-schedule-table-dark .table tbody td .xs-schedule-info, .xs-schedule-table-light .table tbody td .xs-schedule-info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #fff;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.xs-schedule-table .table tbody td .xs-schedule-info h3, .xs-schedule-table-dark .table tbody td .xs-schedule-info h3, .xs-schedule-table-light .table tbody td .xs-schedule-info h3 {
  opacity: 0;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 700;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.xs-schedule-table .table tbody td .xs-schedule-info h4, .xs-schedule-table-dark .table tbody td .xs-schedule-info h4, .xs-schedule-table-light .table tbody td .xs-schedule-info h4 {
  margin-top: -20px;
  font-size: 18px;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.xs-schedule-table .table tbody td .xs-schedule-info:hover, .xs-schedule-table-dark .table tbody td .xs-schedule-info:hover, .xs-schedule-table-light .table tbody td .xs-schedule-info:hover {
  top: -23px;
  height: calc( 100% + 23px);
  z-index: 999;
  -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.08);
  background-color: #FFCC00;
}

.xs-schedule-table .table tbody td .xs-schedule-info:hover, .xs-schedule-table-dark .table tbody td .xs-schedule-info:hover, .xs-schedule-table-light .table tbody td .xs-schedule-info:hover,
.xs-schedule-table .table tbody td .xs-schedule-info:hover h3,
.xs-schedule-table-dark .table tbody td .xs-schedule-info:hover h3,
.xs-schedule-table-light .table tbody td .xs-schedule-info:hover h3,
.xs-schedule-table .table tbody td .xs-schedule-info:hover h4,
.xs-schedule-table-dark .table tbody td .xs-schedule-info:hover h4,
.xs-schedule-table-light .table tbody td .xs-schedule-info:hover h4 {
  color: #fff;
}


.xs-schedule-table .table tbody td .xs-schedule-info:hover h4,
.xs-schedule-table-dark .table tbody td .xs-schedule-info:hover h4,
.xs-schedule-table-light .table tbody td .xs-schedule-info:hover h4 {
  margin-top: 10px;
}


.xs-schedule-table .table tbody td .xs-schedule-info:hover h3,
.xs-schedule-table-dark .table tbody td .xs-schedule-info:hover h3,
.xs-schedule-table-light .table tbody td .xs-schedule-info:hover h3 {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.xs-schedule-table .table tbody td .xs-schedule-info:hover span, .xs-schedule-table-dark .table tbody td .xs-schedule-info:hover span, .xs-schedule-table-light .table tbody td .xs-schedule-info:hover span {
  color: #FFCC00;
  background-color: #fff;
}

.xs-schedule-table .table tbody td p, .xs-schedule-table-dark .table tbody td p, .xs-schedule-table-light .table tbody td p {
  margin-bottom: 10px;
  font-size: 13px;
}

.xs-schedule-table .table tbody td span, .xs-schedule-table-dark .table tbody td span, .xs-schedule-table-light .table tbody td span {
  display: block;
  width: 100%;
  background: #FFCC00;
  color: #fff;
  font-size: 13px;
  line-height: 24px;
  font-weight: 700;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.class-schedule-area {
  position: relative;
}

.class-schedule-area .xs-water-mark {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.04);
  font-display: 21.875rem;
}

.xs-schedule-table-dark .table tbody td .xs-schedule-info, .xs-schedule-table-light .table tbody td .xs-schedule-info {
  background: transparent !important;
}

.xs-schedule-table-dark .table tbody td .xs-schedule-info h3, .xs-schedule-table-light .table tbody td .xs-schedule-info h3, .xs-schedule-table-dark .table tbody td .xs-schedule-info h4, .xs-schedule-table-light .table tbody td .xs-schedule-info h4, .xs-schedule-table-dark .table tbody td .xs-schedule-info p, .xs-schedule-table-light .table tbody td .xs-schedule-info p {
  color: #fff;
}

.xs-schedule-table-dark .table tbody td .xs-schedule-info span, .xs-schedule-table-light .table tbody td .xs-schedule-info span {
  color: #FFFFFF !important;
}

.xs-schedule-table-dark .table tbody td .xs-schedule-info:hover, .xs-schedule-table-light .table tbody td .xs-schedule-info:hover {
  background: #fff !important;
}

.xs-schedule-table-dark .table tbody td .xs-schedule-info:hover h3, .xs-schedule-table-light .table tbody td .xs-schedule-info:hover h3, .xs-schedule-table-dark .table tbody td .xs-schedule-info:hover p, .xs-schedule-table-light .table tbody td .xs-schedule-info:hover p {
  color: #101010 !important;
}

.xs-schedule-table-dark .table tbody td .xs-schedule-info:hover h4, .xs-schedule-table-light .table tbody td .xs-schedule-info:hover h4 {
  color: #FFCC00 !important;
}

.xs-schedule-table-dark .table tbody td .xs-schedule-info:hover span, .xs-schedule-table-light .table tbody td .xs-schedule-info:hover span {
  background-color: #FFCC00 !important;
  color: #fff !important;
}

.xs-schedule-table-dark .table tbody td .xs-schedule-info.xs-tbg-1 span, .xs-schedule-table-light .table tbody td .xs-schedule-info.xs-tbg-1 span {
  background-color: #f2be54;
}

.xs-schedule-table-dark .table tbody td .xs-schedule-info.xs-tbg-1:hover h4, .xs-schedule-table-light .table tbody td .xs-schedule-info.xs-tbg-1:hover h4 {
  color: #f2be54 !important;
}

.xs-schedule-table-dark .table tbody td .xs-schedule-info.xs-tbg-1:hover span, .xs-schedule-table-light .table tbody td .xs-schedule-info.xs-tbg-1:hover span {
  background-color: #f2be54 !important;
  color: #fff;
}

.xs-schedule-table-dark .table tbody td .xs-schedule-info.xs-tbg-2 span, .xs-schedule-table-light .table tbody td .xs-schedule-info.xs-tbg-2 span {
  background-color: #4fb99f;
}

.xs-schedule-table-dark .table tbody td .xs-schedule-info.xs-tbg-2:hover h4, .xs-schedule-table-light .table tbody td .xs-schedule-info.xs-tbg-2:hover h4 {
  color: #4fb99f !important;
}

.xs-schedule-table-dark .table tbody td .xs-schedule-info.xs-tbg-2:hover span, .xs-schedule-table-light .table tbody td .xs-schedule-info.xs-tbg-2:hover span {
  background-color: #4fb99f !important;
  color: #fff;
}

.xs-schedule-table-dark .table tbody td .xs-schedule-info.xs-tbg-3 span, .xs-schedule-table-light .table tbody td .xs-schedule-info.xs-tbg-3 span {
  background-color: #bf8cff;
}

.xs-schedule-table-dark .table tbody td .xs-schedule-info.xs-tbg-3:hover h4, .xs-schedule-table-light .table tbody td .xs-schedule-info.xs-tbg-3:hover h4 {
  color: #bf8cff !important;
}

.xs-schedule-table-dark .table tbody td .xs-schedule-info.xs-tbg-3:hover span, .xs-schedule-table-light .table tbody td .xs-schedule-info.xs-tbg-3:hover span {
  background-color: #bf8cff !important;
  color: #fff;
}

.xs-class-schedule-light .xs-water-mark {
  color: #f2f2f2;
}

.xs-schedule-table-light {
  background: transparent;
}

.xs-schedule-table-light .table th {
  background: #f1f1f1;
  color: #101010;
}

.xs-schedule-table-light .table th.xs-calendar-index {
  background-color: #222 !important;
  color: #fff;
}

.xs-schedule-table-light .table thead th {
  border-color: #f0f0f0;
}

.xs-schedule-table-light .table thead span {
  border-color: #d8d8d8 !important;
}

.xs-schedule-table-light .table tbody th {
  border-color: #f0f0f0 !important;
}

.xs-schedule-table-light .table tbody td {
  border-color: #f0f0f0;
}

.xs-schedule-table-light .table tbody td .xs-schedule-info h3, .xs-schedule-table-light .table tbody td .xs-schedule-info h4, .xs-schedule-table-light .table tbody td .xs-schedule-info span, .xs-schedule-table-light .table tbody td .xs-schedule-info p {
  color: #101010;
}

/*=================================================
		8. trainer
===============================================*/
.xs-team-wraper {
  position: relative;
}

.xs-team-wraper .xs-team-right-shape {
  top: 210px;
  right: 0;
  height: 180px;
  width: 85px;
}

.xs-team-wraper .xs-team-shape {
  top: 43%;
}

.xs-team {
  background-color: #fff;
  -webkit-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.08);
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.xs-team h3 {
  font-size: 1.25rem;
}

.xs-team h3 a {
  color: #101010;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.xs-team p {
  margin: 0;
}

.xs-team:hover {
  -webkit-box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.08);
}

.xs-team:hover .xs-team-overlay {
  right: 0;
}

.xs-team:hover h3 a {
  color: #FFCC00;
}

.xs-team-thumb {
  position: relative;
  overflow: hidden;
}

.xs-team-thumb img {
  width: 100%;
  -webkit-transition: all 0.43s ease;
  -o-transition: all 0.43s ease;
  transition: all 0.43s ease;
}

.xs-team-thumb:hover img {
  -webkit-transform: translateX(-40px) scale(1.1);
  -ms-transform: translateX(-40px) scale(1.1);
  transform: translateX(-40px) scale(1.1);
}

.xs-team-content {
  padding: 23px 20px 25px;
  text-align: center;
}

.xs-team-overlay {
  position: absolute;
  top: 0;
  right: -100px;
  height: 100%;
  background-color: #FFCC00;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.xs-team-share {
  display: table-cell;
  vertical-align: middle;
}

.xs-team-share a {
  display: block;
  padding: 12px;
  color: #FFFFFF;
}

.xs-team-trainers .xs-team,
.xs-team-about .xs-team {
  margin-bottom: 30px;
}

.xs-trainer-shape {
  position: absolute;
  height: 200px;
  width: 100%;
  bottom: 40%;
}

.xs-team-about .xs-team-share a {
  padding: 16px 18px;
  font-size: 20px;
}

/*=================================================
		9. bmi
===============================================*/
.xs-bmi .xs-colummn-heading, .xs-bmi .xs-colummn-heading2,
.xs-bmi .xs-colummn-heading2 {
  padding-top: 40px;
}

.xs-bmi .xs-bmi-table {
  padding: 30px 40px 0 0;
}

.xs-bmi .xs-bmi-table table {
  color: #FFFFFF;
  background-color: transparent;
}

.xs-bmi .xs-bmi-table table caption {
  padding-top: 45px;
  color: #FFFFFF;
}

.xs-bmi .xs-bmi-table table thead {
  background-color: #222222;
}

.xs-bmi .xs-bmi-table table td,
.xs-bmi .xs-bmi-table table th {
  padding: 13px 40px;
  border-color: #222222;
  font-size: 1.25rem;
}

.xs-bmi .xs-bmi-table table td {
  padding: 18px 40px;
  font-size: 1rem;
}

.xs-bmi #xs-bmi-info {
  -webkit-box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.2);
}

.xs-bmi #xs-bmi-info {
  margin-top: 50px;
  overflow: hidden;
  color: #FFFFFF;
  background-color: #101010;
}

.xs-bmi #xs-bmi-info .xs-icon {
  padding: 14px 28px;
  float: left;
  font-size: 25px;
  color: #FFFFFF;
}

.xs-bmi #xs-bmi-info p {
  margin-bottom: 0;
  padding: 21px 28px;
  float: left;
}

.xs-bmi-light .xs-bmi-table table,
.xs-bmi-light .xs-bmi-table table td,
.xs-bmi-light .xs-bmi-table table caption {
  color: #666565;
}

.xs-bmi-light .xs-bmi-table table th {
  color: #FFFFFF;
}

.xs-bmi-light .xs-bmi-table table td {
  border-color: #e5e5e5;
}

/*=================================================
		10. testimonial
===============================================*/
.xs-testimonial-wraper {
  position: relative;
}

.xs-testimonial-wraper .xs-testimonial-shape {
  top: 50px;
  left: 0;
}

.xs-testimonial-grid .owl-item,
.xs-testimonial-owl .owl-item {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.xs-testimonial-grid .owl-item.active,
.xs-testimonial-owl .owl-item.active {
  opacity: 1;
  visibility: visible;
}

.xs-testimonial-grid .item,
.xs-testimonial-owl .item {
  padding-top: 20px;
  text-align: center;
}

.xs-testimonial-grid .item i,
.xs-testimonial-owl .item i {
  position: absolute;
  top: 0;
  left: calc(50% - 30px);
  z-index: -1;
  font-size: 3.75rem;
  color: #e5e5e5;
}

.xs-testimonial-grid .item p,
.xs-testimonial-owl .item p {
  position: relative;
  font-size: 1.25rem;
  font-weight: 600;
  font-style: italic;
}

.xs-testimonial-grid .item .xs-testimonial-profile,
.xs-testimonial-owl .item .xs-testimonial-profile {
  display: inline-block;
  margin: 20px 0 35px;
  text-align: center;
}

.xs-testimonial-grid .item .xs-testimonial-profile .xs-profile-thumb,
.xs-testimonial-owl .item .xs-testimonial-profile .xs-profile-thumb {
  margin-right: 20px;
  padding: 5px;
  border-radius: 50%;
  float: left;
  background-color: #ededed;
  width: 80px;
  height: 80px;
}

.xs-testimonial-grid .item .xs-testimonial-profile .xs-profile-info,
.xs-testimonial-owl .item .xs-testimonial-profile .xs-profile-info {
  margin-top: 20px;
  float: left;
  text-align: left;
}

.xs-testimonial-grid .item .xs-testimonial-profile .xs-profile-info h3,
.xs-testimonial-owl .item .xs-testimonial-profile .xs-profile-info h3 {
  margin-bottom: 5px;
  font-size: 1.125rem;
}

.xs-testimonial-grid .item .xs-testimonial-profile .xs-profile-info p,
.xs-testimonial-owl .item .xs-testimonial-profile .xs-profile-info p {
  margin: 0;
  font-size: 1rem;
  font-style: normal;
}

.xs-testimonial-grid .owl-dots .owl-dot span,
.xs-testimonial-owl .owl-dots .owl-dot span {
  height: 4px;
  width: 4px;
  margin: 4px;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  border-radius: 50%;
  background-color: rgba(246, 60, 37, 0.5);
}

.xs-testimonial-grid .owl-dots .owl-dot.active span,
.xs-testimonial-owl .owl-dots .owl-dot.active span {
  background-color: #FFCC00;
  width: 22px;
  border-radius: 2px;
}

.xs-testimonial-dark .item {
  padding-top: 20px;
}

.xs-testimonial-dark .item p {
  color: #FFFFFF;
}

.xs-testimonial-dark .item i {
  top: 0;
  color: #414141;
}

.xs-testimonial-dark .item .xs-testimonial-profile h3 {
  color: #FFFFFF;
}

.xs-testimonial-dark .owl-dots .owl-dot span {
  background-color: #878888;
}

.xs-testimonial-dark .owl-dots .owl-dot.active span, .xs-testimonial-dark .owl-dots .owl-dot:hover span {
  background-color: #FFFFFF;
}

.xs-testimonial-grid-shape {
  position: absolute;
  height: 200px;
  width: 100%;
  bottom: 25%;
}

.xs-testimonial-grid .owl-stage-outer {
  margin-top: -20px;
  padding: 20px 0 40px;
}

.xs-testimonial-grid .item {
  padding: 50px 20px 0;
  background-color: #fff;
  -webkit-box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.08);
}

.xs-testimonial-grid .item i {
  top: 28px;
  z-index: 0;
}

.xs-testimonial-grid .item p {
  font-size: 1rem;
  font-weight: 400;
  font-style: normal;
}

.xs-testimonial-grid .item .xs-testimonial-profile {
  margin-top: 10px;
}

/*=================================================
		11. pricing
===============================================*/
.xs-pricing-shape {
  top: 135px;
}

.xs-pricing {
  padding: 50px;
  margin-bottom: 35px;
  background-color: #FFFFFF;
  background-repeat: no-repeat;
  text-align: center;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.xs-pricing h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

.xs-pricing p {
  font-size: 4.5rem;
}

.xs-pricing p span {
  font-weight: 700;
  color: #FFCC00;
}

.xs-pricing p sup {
  top: -40px;
  left: 15px;
  font-size: 1.75rem;
  color: #FFCC00;
}

.xs-pricing p sub {
  bottom: 0;
  right: 10px;
  font-size: 1.25rem;
}

.xs-pricing ul li {
  padding: 8px;
}

.xs-pricing .btn-primary {
  margin-top: 35px;
  padding: 10px 40px;
  background-color: #101010;
}

.xs-pricing:hover .btn-primary:not(:disabled):not(.disabled):active,
.xs-pricing:hover .btn-primary:focus,
.xs-pricing:hover .btn-primary {
  background-color: #FFCC00;
}

.xs-pricing-white .xs-pricing .xs-line:before,
.xs-pricing-dark .xs-pricing .xs-line:before {
  top: inherit;
  bottom: -20px;
  left: calc(50% - 16px);
  height: 2px;
  width: 30px;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.xs-pricing-white .xs-pricing p,
.xs-pricing-dark .xs-pricing p {
  margin-top: 40px;
  font-size: 3.375rem;
}

.xs-pricing-white .xs-pricing p sup,
.xs-pricing-dark .xs-pricing p sup {
  top: -32px;
}

.xs-pricing-white .xs-pricing .btn-primary,
.xs-pricing-dark .xs-pricing .btn-primary {
  margin-top: 25px;
  padding: 10px 30px;
}

.xs-pricing-white [class^=col]:last-child .xs-pricing,
.xs-pricing-dark [class^=col]:last-child .xs-pricing {
  border-right: 0;
}

.xs-pricing-dark-shape {
  position: absolute;
  height: 200px;
  width: 100%;
  bottom: 25%;
}

.xs-pricing-dark .xs-pricing {
  margin-bottom: 10px;
  border-right: 1px solid #2e2e2e;
  color: #FFFFFF;
  background-color: #222222;
}

.xs-pricing-dark .xs-pricing h3,
.xs-pricing-dark .xs-pricing p span,
.xs-pricing-dark .xs-pricing sup {
  color: #FFFFFF;
}

.xs-pricing-dark .xs-pricing .btn-primary {
  background-color: #FFCC00;
}

.xs-pricing-dark .xs-pricing:hover, .xs-pricing-dark .xs-pricing.isActive {
  background-color: #FFCC00;
}

.xs-pricing-dark .xs-pricing:hover .xs-line:before,
.xs-pricing-dark .xs-pricing:hover .btn-primary:not(:disabled):not(.disabled):active,
.xs-pricing-dark .xs-pricing:hover .btn-primary:focus,
.xs-pricing-dark .xs-pricing:hover .btn-primary, .xs-pricing-dark .xs-pricing.isActive .xs-line:before,
.xs-pricing-dark .xs-pricing.isActive .btn-primary:not(:disabled):not(.disabled):active,
.xs-pricing-dark .xs-pricing.isActive .btn-primary:focus,
.xs-pricing-dark .xs-pricing.isActive .btn-primary {
  color: #101010;
  background-color: #FFFFFF;
}

.xs-pricing-white {
  -webkit-box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.08);
}

.xs-pricing-white .xs-pricing {
  margin-bottom: 0;
  border-right: 1px solid #f0f0f0;
  color: #101010;
  background-color: #FFFFFF;
}

.xs-pricing-white .xs-pricing .btn-primary, .xs-pricing-white .xs-pricing:hover {
  background-color: #FFCC00;
}

.xs-pricing-white .xs-pricing:hover,
.xs-pricing-white .xs-pricing:hover h3,
.xs-pricing-white .xs-pricing:hover p span,
.xs-pricing-white .xs-pricing:hover sup {
  color: #FFFFFF;
}

.xs-pricing-white .xs-pricing:hover .btn-primary:not(:disabled):not(.disabled):active,
.xs-pricing-white .xs-pricing:hover .btn-primary:focus,
.xs-pricing-white .xs-pricing:hover .btn-primary {
  color: #FFFFFF;
  background-color: #101010;
}

.xs-pricing-white .xs-pricing:hover .xs-line:before {
  background-color: #FFFFFF;
}

.xs-pricing-shape-wraper .xs-pricing-shape {
  top: 180px;
}

/*=================================================
		12. blog
===============================================*/
.xs-blog-shape {
  position: absolute;
  height: 200px;
  width: 100%;
  bottom: 10%;
}

.xs-blog {
  position: relative;
  margin-bottom: 10px;
  overflow: hidden;
  background-color: #fff;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.xs-blog:hover h3:after {
  background-color: #666666;
}

.xs-blog:hover .xs-share-trigger,
.xs-blog:hover p,
.xs-blog:hover a,
.xs-blog:hover a:hover,
.xs-blog:hover a:focus {
  color: #FFFFFF;
}

.xs-blog:hover .xs-blog-content {
  background-color: rgba(0, 0, 0, 0.55);
}

.xs-blog:hover .xs-blog-img {
  -webkit-transform: scale(1.4);
  -ms-transform: scale(1.4);
  transform: scale(1.4);
  opacity: 1;
}

.xs-blog .xs-blog-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: -webkit-transform 0.8s ease;
  transition: -webkit-transform 0.8s ease;
  -o-transition: transform 0.8s ease;
  transition: transform 0.8s ease;
  transition: transform 0.8s ease, -webkit-transform 0.8s ease;
}

.xs-blog .xs-blog-img img {
  width: 100%;
}

.xs-blog .xs-blog-content {
  position: relative;
  padding: 35px 25px 25px;
  overflow: hidden;
  background-color: #fff;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.xs-blog h3 {
  position: relative;
  margin: 15px 0 40px;
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 700;
  text-transform: none;
}

.xs-blog h3:after {
  position: absolute;
  left: 0;
  bottom: -22px;
  width: 30px;
  height: 2px;
  content: "";
  background-color: #e5e5e5;
}

.xs-blog h3 a {
  color: #101010;
}

.xs-blog h3 a:hover, .xs-blog h3 a:focus {
  color: #FFFFFF;
}

.xs-blog h3, .xs-blog h3:after,
.xs-blog h3 a {
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.xs-blog .xs-share-trigger {
  position: relative;
  float: right;
  font-size: 20px;
  color: #FFCC00;
  cursor: pointer;
}

.xs-blog .xs-share-trigger:hover .xs-share-content {
  visibility: visible;
  top: -38px;
  opacity: 1;
}

.xs-blog .xs-share-content {
  display: block;
  position: absolute;
  right: -20px;
  top: -100%;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  white-space: nowrap;
  padding: 0 8px;
  border-radius: 5px;
  -webkit-box-shadow: 0px 3px 15px 0px rgba(0, 0, 0, 0.09);
  box-shadow: 0px 3px 15px 0px rgba(0, 0, 0, 0.09);
  background-color: #fff;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.xs-blog .xs-share-content:before {
  position: absolute;
  right: 15px;
  bottom: -8px;
  content: '';
  border-style: solid;
  border-width: 8px 8.5px 0 8.5px;
  border-color: #ffffff transparent transparent transparent;
}

.xs-blog .xs-share-content li {
  display: inline-block;
}

.xs-blog .xs-share-content li:last-child {
  margin-right: 0px;
}

.xs-blog .xs-share-content li a {
  display: block;
  padding: 0 6px 8px;
  font-size: 12px;
  text-align: center;
}

.xs-blog .xs-share-content li a.xs-facebook, .xs-blog .xs-share-content li a.xs-facebook:hover, .xs-blog .xs-share-content li a.xs-facebook:focus {
  color: #283b8e;
}

.xs-blog .xs-share-content li a.xs-twitter, .xs-blog .xs-share-content li a.xs-twitter:hover, .xs-blog .xs-share-content li a.xs-twitter:focus {
  color: #0096ff;
}

.xs-blog .xs-share-content li a.xs-google-plus, .xs-blog .xs-share-content li a.xs-google-plus:hover, .xs-blog .xs-share-content li a.xs-google-plus:focus {
  color: #ff4621;
}

.xs-blog .xs-share-content li a.xs-instagram, .xs-blog .xs-share-content li a.xs-instagram:hover, .xs-blog .xs-share-content li a.xs-instagram:focus {
  color: #ff2975;
}

.xs-blog-admin {
  margin-top: 25px;
}

.xs-blog-admin .xs-blog-avatar {
  margin-right: 10px;
  width: 30px;
  height: 30px;
  float: left;
}

.xs-blog-admin p {
  margin-top: 4px;
  float: left;
}

.xs-blog-data a {
  color: #FFCC00;
}

.xs-blog-data a:not(:first-child) {
  margin-left: 30px;
}

/*=================================================
		13. health
===============================================*/
.xs-health {
  color: #b3b3b3;
}

.xs-health .twentytwenty-horizontal .twentytwenty-handle {
  background-image: -moz-linear-gradient(90deg, #E6B800 0%, #FFCC00 100%);
  background-image: -webkit-linear-gradient(90deg, #E6B800 0%, #FFCC00 100%);
  background-image: -ms-linear-gradient(90deg, #E6B800 0%, #FFCC00 100%);
  background: -webkit-gradient(linear, left top, right top, from(#E6B800), to(#FFCC00));
  background: -webkit-linear-gradient(left, #E6B800, #FFCC00);
  background: -o-linear-gradient(left, #E6B800, #FFCC00);
  background: linear-gradient(90deg, #E6B800, #FFCC00);
}

.xs-health .twentytwenty-horizontal .twentytwenty-handle:before {
  background-image: -moz-linear-gradient(#FFCC00, #FFDD33);
  background-image: -webkit-linear-gradient(#FFCC00, #FFDD33);
  background-image: -ms-linear-gradient(#FFCC00, #FFDD33);
  background: -webkit-gradient(linear, left top, left bottom, from(#FFCC00), to(#FFDD33));
  background: -webkit-linear-gradient(#FFCC00, #FFDD33);
  background: -o-linear-gradient(#FFCC00, #FFDD33);
  background: linear-gradient(#FFCC00, #FFDD33);
}

.xs-health .twentytwenty-horizontal .twentytwenty-handle:after {
  background-image: -moz-linear-gradient(#FFDD33, #E6B800);
  background-image: -webkit-linear-gradient(#FFDD33, #E6B800);
  background-image: -ms-linear-gradient(#FFDD33, #E6B800);
  background: -webkit-gradient(linear, left top, left bottom, from(#FFDD33), to(#E6B800));
  background: -webkit-linear-gradient(#FFDD33, #E6B800);
  background: -o-linear-gradient(#FFDD33, #E6B800);
  background: linear-gradient(#FFDD33, #E6B800);
}

/*=================================================
		14. shop
===============================================*/
.xs-shop {
  position: relative;
  margin-bottom: 75px;
  text-align: center;
}

.xs-shop .xs-shop-thumb {
  position: relative;
}

.xs-shop .xs-shop-thumb:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
  content: '';
  opacity: 0;
  visibility: hidden;
}

.xs-shop .xs-shop-inner {
  position: absolute;
  top: 50%;
  width: 100%;
}

.xs-shop .btn-primary {
  padding: 8px 28px;
  opacity: 0;
}

.xs-shop .xs-price-badge {
  display: inline-block;
  margin: 5px 0 45px 180px;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  line-height: 80px;
  background: #E6B800;
  background: -webkit-linear-gradient(299deg, #E6B800 35%, #FFCC00 100%);
  background: -o-linear-gradient(299deg, #E6B800 35%, #FFCC00 100%);
  background: linear-gradient(151deg, #E6B800 35%, #FFCC00 100%);
  -webkit-box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.43);
  box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.43);
  color: #FFFFFF;
  width: 80px;
  height: 80px;
}

.xs-shop h3 {
  font-size: 1.5rem;
}

.xs-shop h3 a {
  color: #101010;
  -webkit-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
}

.xs-shop:hover .btn-primary {
  opacity: 1;
  -webkit-animation: zoomIn 600ms ease-in-out;
  animation: zoomIn 600ms ease-in-out;
}

.xs-shop:hover .xs-shop-thumb:after {
  opacity: 1;
  visibility: visible;
  -webkit-animation: fadeIn 400ms ease-in-out;
  animation: fadeIn 400ms ease-in-out;
}

.xs-shop:hover .xs-shop-thumb img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

.xs-shop:hover h3 a {
  color: #FFCC00;
}

.xs-shop-dark .xs-shop h3 {
  color: #FFFFFF;
}

.xs-shop-dark .xs-shop h3 a {
  color: #FFFFFF;
}

.xs-shop-dark .xs-shop .xs-shop-thumb:after {
  background: rgba(16, 16, 16, 0.4);
}

.xs-shop-dark .xs-shop:hover h3 a {
  color: #FFCC00;
}

/*=================================================
		15. map about
===============================================*/
.xs-map-about {
  height: 100%;
}

.xs-contact-info {
  padding: 80px 30px 70px;
  background-color: #222222;
}

.xs-contact-info ul {
  margin-top: 35px;
}

.xs-contact-info ul li:not(:last-child) {
  border-bottom: 1px solid #393939;
}

.xs-contact-info ul li span {
  width: 145px;
  float: left;
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
}

.xs-contact-info ul li p {
  overflow: hidden;
}

.xs-contact-info ul li > a {
  padding: 10px 30px;
  color: #FFFFFF;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.xs-contact-info ul li > a.active, .xs-contact-info ul li > a:hover {
  background-color: #FFCC00;
}

/*=================================================
		16. strength
===============================================*/
.xs-health-shape {
  position: absolute;
  height: 200px;
  width: 100%;
  bottom: 25%;
}

.xs-health-service {
  position: relative;
  padding: 90px 0;
  color: #FFFFFF;
}

.xs-health-service .xs-overlay {
  background: rgba(0, 0, 0, 0.8);
}

.xs-health-service .xs-health-service-img {
  position: absolute;
  bottom: -90px;
}

.xs-health-service ul {
  padding: 5px 0 0 17px;
}

.xs-health-service ul li {
  list-style: disc;
  padding: 4px 0;
}

/*=================================================
		17. trainer details
===============================================*/
.xs-trainer-details .xs-column-heading {
  margin-bottom: 5px;
  overflow: hidden;
}

.xs-trainer-details .xs-column-heading h2 {
  line-height: 2.25rem;
}

.xs-trainer-details .xs-trainer-thumb img {
  width: 100%;
}

.xs-trainer-details ul li {
  margin-bottom: 22px;
  overflow: hidden;
}

.xs-trainer-details ul li span {
  margin-right: 15px;
  font-size: 1.125rem;
  font-weight: 800;
  text-transform: uppercase;
  float: left;
  color: #101010;
}

.xs-trainer-details ul li p {
  overflow: hidden;
  font-size: 1.125rem;
}

.xs-trainer-details ul li p > a {
  color: inherit;
}

.xs-trainer-details .xs-social-icons li {
  display: inline-block;
  padding: 5px 20px 5px 0;
}

.xs-trainer-details .xs-social-icons li a {
  display: block;
  position: relative;
  font-size: 14px;
  text-align: center;
  line-height: 35px;
  color: #FFFFFF;
  width: 35px;
  height: 35px;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.xs-trainer-details .xs-social-icons li a:after {
  position: absolute;
  top: 0;
  left: 0;
  font-family: 'iconfont' !important;
  content: "\ea87";
  speak: none;
  font-size: 34px;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 35px;
  height: 35px;
}

.xs-trainer-details .xs-social-icons li a.xs-facebook {
  color: #283b8e;
}

.xs-trainer-details .xs-social-icons li a.xs-twitter {
  color: #0096ff;
}

.xs-trainer-details .xs-social-icons li a.xs-linkedin {
  color: #3f729b;
}

.xs-trainer-details .xs-social-icons li a.xs-instagram {
  color: #ff2074;
}

.xs-trainer-details .xs-trainer-skills {
  margin-top: 55px;
  padding-top: 50px;
  border-top: 1px solid #e6e6e6;
}

.xs-trainer-details .xs-trainer-skills ul li {
  margin-bottom: 25px;
}

.xs-trainer-details .xs-trainer-skills ul li p {
  margin: 0;
}

.xs-trainer-details .xs-trainer-skills ul li p span {
  float: left;
  margin: 0;
}

.xs-trainer-details .xs-trainer-skills ul li p span.xs-skill {
  float: right;
}

.xs-trainer-details .xs-trainer-skills .progress {
  height: 6px;
  background-color: #f2f2f2;
}

.xs-trainer-details .xs-trainer-skills .progress .progress-bar {
  border-radius: 6px;
  background-image: -moz-linear-gradient(0deg, #E6B800 0%, #FFCC00 100%);
  background-image: -webkit-linear-gradient(0deg, #E6B800 0%, #FFCC00 100%);
  background-image: -ms-linear-gradient(0deg, #E6B800 0%, #FFCC00 100%);
}

/*=================================================
		18. service info
===============================================*/
/*=================================================
		19. team carousel
===============================================*/
.xs-team-grid .xs-line {
  margin: 0 0 55px;
  font-size: 36px;
}

.xs-team-grid .xs-line:before {
  top: 115px;
  height: 3px;
}

.xs-team-grid .xs-team {
  margin-top: 0;
}

.xs-team-grid .owl-stage-outer {
  padding: 12px 0 30px;
}

.xs-team-carousel .owl-nav {
  position: absolute;
  left: -270px;
  bottom: 88px;
}

.xs-team-carousel .owl-nav button.owl-next,
.xs-team-carousel .owl-nav button.owl-prev {
  display: inline-block;
  padding: 0 18px 8px !important;
  font-size: 2.5rem;
  line-height: 2.5rem;
  background-color: #f5f5f5;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.xs-team-carousel .owl-nav button.owl-next:hover,
.xs-team-carousel .owl-nav button.owl-prev:hover {
  color: #fff;
  background-color: #FFCC00;
}

.xs-team-carousel .owl-nav button.owl-next span,
.xs-team-carousel .owl-nav button.owl-prev span {
  line-height: 30px;
}

/*=================================================
		20. contact
===============================================*/
.xs-map-contact {
  height: 450px;
}

.xs-contact-list h3 {
  margin-bottom: 25px;
  font-size: 1.25rem;
}

.xs-contact-list i {
  margin-right: 5px;
  color: #ee0c08;
  background-image: -webkit-linear-gradient(-45deg, #ee0c08 0%, #fc6942 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.xs-contact-list > P > a {
  color: inherit;
  -webkit-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
}

.xs-contact-list > P > a:hover {
  color: #FFCC00;
}

.xs-contact-list ul li {
  margin-bottom: 10px;
}

.xs-contact-list ul li span,
.xs-contact-list ul li a {
  color: #101010;
}

.xs-contact-list ul li span {
  margin-right: 10px;
  float: left;
  font-size: 0.875rem;
  line-height: 1.75rem;
  font-weight: 800;
}

.xs-contact-list ul li a {
  font-size: 1rem;
  line-height: 1rem;
  overflow: hidden;
  -webkit-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
}

.xs-contact-list ul li a:hover {
  color: #FFCC00;
}

.map-tab {
  height: 100%;
}

.map-tab .tab-pane {
  height: 100%;
}

.map-tab .tab-pane > iframe {
  width: 100%;
  height: 100%;
}

.list-unstyled.nav-tabs {
  border-bottom: 0px solid #000;
}

.list-unstyled.nav-tabs > li > a {
  display: block;
}

.list-unstyled.nav-tabs > li > a > span {
  color: #ffffff;
}

/*=================================================
		21. contact form
===============================================*/
.xs-contact-form, .xs-dark-shadow {
  position: relative;
  margin-top: -80px;
  padding: 70px 100px 60px 90px;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.06);
  box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.06);
}

.xs-contact-form .xs-section-heading, .xs-dark-shadow .xs-section-heading, .xs-contact-form .xs-section-heading2, .xs-dark-shadow .xs-section-heading2 {
  margin-bottom: 0;
}

.xs-contact-form .xs-section-heading p, .xs-dark-shadow .xs-section-heading p, .xs-contact-form .xs-section-heading2 p, .xs-dark-shadow .xs-section-heading2 p {
  font-size: 1rem;
}

.xs-contact-form .xs-form, .xs-dark-shadow .xs-form {
  margin-top: 30px;
}

.xs-contact-form .xs-form .xs-form-anim, .xs-dark-shadow .xs-form .xs-form-anim {
  padding-top: 35px;
}

.xs-contact-form .xs-form .xs-message-box, .xs-dark-shadow .xs-form .xs-message-box {
  padding-top: 30px;
}

.xs-contact-form .xs-form .xs-message-box .input-label, .xs-dark-shadow .xs-form .xs-message-box .input-label {
  top: 35px;
  bottom: inherit;
}

.xs-contact-form .xs-form .xs-message-box.active .input-label, .xs-dark-shadow .xs-form .xs-message-box.active .input-label {
  top: 13px;
  bottom: inherit;
}

.xs-contact-form .xs-form .xs-message-box textarea, .xs-dark-shadow .xs-form .xs-message-box textarea {
  height: 206px;
  padding-top: 12px;
  resize: none;
}

.xs-contact-form .xs-form .btn-primary, .xs-dark-shadow .xs-form .btn-primary {
  padding: 15px 35px;
}

.xs-form .custom-control-label {
  color: #FFFFFF;
}

.xs-form .custom-control-label::before {
  background-color: #222222;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.xs-form .custom-control-label::after {
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.xs-form .custom-radio .custom-control-input:checked ~ .custom-control-label::before {
  background-color: #FFCC00;
}

.xs-form .custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.xs-form .custom-radio .custom-control-input:focus ~ .custom-control-label::before {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(246, 60, 37, 0.25);
  box-shadow: 0 0 0 0.2rem rgba(246, 60, 37, 0.25);
}

.xs-dark-shadow {
  background: #121212;
}

/*=================================================
		22. call to action
===============================================*/
.xs-cta .xs-overlay {
  background-color: rgba(255, 255, 255, 0.9);
}

.xs-cta .xs-btn-wraper {
  text-align: right;
}

.xs-cta .xs-section-heading, .xs-cta .xs-section-heading2,
.xs-cta h2 {
  margin: 0;
}

/*=================================================
		23. footer
===============================================*/
/* Footer Top */
.xs-footer-top {
  padding-top: 80px;
  padding-bottom: 60px;
  color: #FFFFFF;
  background-color: #101010;
}

.xs-footer-subscribe .widget-title {
  margin-bottom: 50px;
  text-transform: capitalize;
}

.xs-footer-subscribe .xs-subscribe-form {
  margin-top: 30px;
}

.xs-footer-subscribe .xs-subscribe-form .form-group {
  margin-bottom: 5px;
}

.xs-footer-subscribe .xs-subscribe-form .form-control {
  padding: 12px 15px;
  border: 0;
  border-radius: 0;
  font-size: 14px;
  color: #b1b2b2;
  background-color: rgba(255, 255, 255, 0.09);
}

.xs-footer-subscribe .xs-subscribe-form .form-control.error {
  border: 1px solid #FFCC00;
}

.xs-footer-subscribe .xs-subscribe-form input::-webkit-input-placeholder {
  color: #8c8d8d;
  font-size: 14px;
}

.xs-footer-subscribe .xs-subscribe-form input::-moz-placeholder {
  color: #8c8d8d;
  font-size: 14px;
}

.xs-footer-subscribe .xs-subscribe-form input::-ms-input-placeholder {
  color: #8c8d8d;
  font-size: 14px;
}

.xs-footer-subscribe .xs-subscribe-form input:-ms-input-placeholder {
  color: #8c8d8d;
  font-size: 14px;
}

.xs-footer-subscribe .xs-subscribe-form input::placeholder {
  color: #8c8d8d;
  font-size: 14px;
}

.xs-footer-subscribe .xs-subscribe-form button {
  padding: 10px 30px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 16px;
  text-transform: uppercase;
  cursor: pointer;
  color: #fff;
  background-color: transparent;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.xs-footer-subscribe .xs-subscribe-form button:hover, .xs-footer-subscribe .xs-subscribe-form button:focus {
  background-color: #FFCC00;
  border-color: #FFCC00;
}

.footer-widget ul li {
  padding: 10px 0;
}

.footer-widget ul li a {
  color: #FFFFFF;
}

.footer-widget .xs-footer-contact-info {
  margin-top: 0;
}

.footer-widget .xs-footer-contact-info li {
  padding-bottom: 15px;
}

.footer-widget .xs-footer-contact-info i {
  margin-right: 15px;
  float: left;
  font-size: 20px;
  line-height: 26px;
  color: #FFCC00;
}

.footer-widget .xs-footer-contact-info p {
  margin-bottom: 0;
  overflow: hidden;
}

.footer-widget .xs-footer-contact-info p .xs-phone-number {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.75rem;
  color: #FFFFFF;
}

.xs-footer-logo {
  margin-bottom: 30px;
}

.widget-title {
  margin: 15px 0 40px;
  font-size: 1.5rem;
  color: #FFFFFF;
}

/* Footer Bottom */
.xs-footer-bottom {
  color: #FFFFFF;
  background-color: #000;
}

.xs-footer-bottom ul li {
  display: inline-block;
  padding: 22px 10px;
}

.xs-footer-bottom ul li a {
  display: block;
  position: relative;
  font-size: 14px;
  text-align: center;
  line-height: 35px;
  color: #FFFFFF;
  width: 35px;
  height: 35px;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.xs-footer-bottom ul li a:after {
  position: absolute;
  top: 0;
  left: 0;
  font-family: 'iconfont' !important;
  content: "\ea87";
  speak: none;
  color: #808080;
  font-size: 34px;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 35px;
  height: 35px;
}

.xs-footer-bottom ul li a:hover {
  color: #FFCC00;
}

.xs-footer-bottom ul li a:hover:after {
  color: #FFCC00;
}

/*=================================================
		  inheritance element
===============================================*/
/* section padding */
.xs-section-padding {
  padding: 90px 0;
}

.xs-section-padding-lg {
  padding: 100px 0;
}

.xs-section-padding-sm {
  padding: 70px 0;
}

.xs-section-padding-xs {
  padding: 50px 0;
}

.xs-pb-sm {
  padding-bottom: 70px;
}

.xs-pt-xs {
  margin-top: 50px;
}

.btn-primary {
  padding: 15px 30px;
  border: 0;
  border-radius: 0;
  font-family: "Barlow", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5rem;
  text-transform: uppercase;
  color: #FFFFFF;
  background-color: #FFCC00;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.btn-primary span {
  margin-left: 3px;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  font-size: 13px;
  font-weight: normal;
}

.btn-primary i {
  margin-left: 0;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  border: 0;
  outline: 0;
  color: #FFFFFF;
  -webkit-box-shadow: 0 0 0 0;
  box-shadow: 0 0 0 0;
  background-color: #E6B800;
}

.btn-primary:not(:disabled):not(.disabled):active i, .btn-primary:not(:disabled):not(.disabled):active:focus i, .btn-primary:hover i, .btn-primary:focus i, .btn-primary:active i {
  margin-left: 10px;
}

.xs-video-btn {
  position: absolute;
  right: 0;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  border-radius: 50%;
  font-size: 25px;
  text-align: center;
  line-height: 75px;
  background-image: -moz-linear-gradient(-45deg, #fc6942 0%, #ee0c08 100%);
  background-image: -webkit-linear-gradient(-45deg, #fc6942 0%, #ee0c08 100%);
  background-image: -ms-linear-gradient(-45deg, #fc6942 0%, #ee0c08 100%);
  background: -webkit-linear-gradient(135deg, #fc6942 0%, #ee0c08 100%);
  background: -o-linear-gradient(135deg, #fc6942 0%, #ee0c08 100%);
  background: linear-gradient(-45deg, #fc6942 0%, #ee0c08 100%);
  -webkit-box-shadow: 0px 5px 10px 0px rgba(246, 60, 37, 0.35);
  box-shadow: 0px 5px 10px 0px rgba(246, 60, 37, 0.35);
  width: 75px;
  height: 75px;
}

.xs-video-btn:before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  content: "";
  -webkit-animation: xs-pulse-anim 1.6s cubic-bezier(0.66, 0.3, 0.2, 1) infinite;
  animation: xs-pulse-anim 1.6s cubic-bezier(0.66, 0.3, 0.2, 1) infinite;
}

.xs-video-btn, .xs-video-btn:hover, .xs-video-btn:focus {
  color: #fff;
}

.xs-video-btn i {
  margin-left: 4px;
}

@-webkit-keyframes xs-pulse-anim {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  }
  70% {
    -webkit-box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

@keyframes xs-pulse-anim {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  }
  70% {
    -webkit-box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

/* Margin */
.xs-mt-5 {
  margin-top: 5px;
}

.xs-mt-10 {
  margin-top: 10px;
}

.xs-mt-15 {
  margin-top: 15px;
}

.xs-mt-20 {
  margin-top: 20px;
}

.xs-mt-25 {
  margin-top: 25px;
}

.xs-mt-30 {
  margin-top: 30px;
}

.xs-mt-35 {
  margin-top: 35px;
}

.xs-mt-40 {
  margin-top: 40px;
}

.xs-mt-50 {
  margin-top: 50px;
}

.xs-mt-60 {
  margin-top: 60px;
}

.xs-mt-70 {
  margin-top: 70px;
}

.xs-mt-80 {
  margin-top: 80px;
}

.xs-mb-5 {
  margin-bottom: 5px;
}

.xs-mb-10 {
  margin-bottom: 10px;
}

.xs-mb-15 {
  margin-bottom: 15px;
}

.xs-mb-20 {
  margin-bottom: 20px;
}

.xs-mb-25 {
  margin-bottom: 25px;
}

.xs-mb-30 {
  margin-bottom: 30px;
}

.xs-mb-35 {
  margin-bottom: 35px;
}

.xs-mb-40 {
  margin-bottom: 40px;
}

.xs-mb-50 {
  margin-bottom: 50px;
}

.xs-mb-60 {
  margin-bottom: 60px;
}

.xs-mb-70 {
  margin-bottom: 70px;
}

.xs-mb-80 {
  margin-bottom: 80px;
}

.xs-mr-20 {
  margin-right: 20px;
}

.xs-mr-25 {
  margin-right: 25px;
}

.xs-mr-30 {
  margin-right: 30px;
}

.xs-mr-35 {
  margin-right: 35px;
}

.xs-mr-40 {
  margin-right: 40px;
}

/* Padding */
.xs-p-5 {
  padding: 5px;
}

.xs-p-10 {
  padding: 10px;
}

.xs-p-15 {
  padding: 15px;
}

.xs-p-20 {
  padding: 20px;
}

.xs-pt-5 {
  padding-top: 5px;
}

.xs-pt-10 {
  padding-top: 10px;
}

.xs-pt-15 {
  padding-top: 15px;
}

.xs-pt-20 {
  padding-top: 20px;
}

.xs-pt-25 {
  padding-top: 25px;
}

.xs-pt-30 {
  padding-top: 30px;
}

.xs-pt-40 {
  padding-top: 40px;
}

.xs-pt-50 {
  padding-top: 50px;
}

.xs-pt-60 {
  padding-top: 60px;
}

.xs-pt-70 {
  padding-top: 70px;
}

.xs-pt-80 {
  padding-top: 80px;
}

.xs-pt-90 {
  padding-top: 90px;
}

.xs-pb-5 {
  padding-bottom: 5px;
}

.xs-pb-10 {
  padding-bottom: 10px;
}

.xs-pb-15 {
  padding-bottom: 15px;
}

.xs-pb-20 {
  padding-bottom: 20px;
}

.xs-pb-25 {
  padding-bottom: 25px;
}

.xs-pb-30 {
  padding-bottom: 30px;
}

.xs-pb-40 {
  padding-bottom: 40px;
}

.xs-pb-50 {
  padding-bottom: 50px;
}

.xs-pb-60 {
  padding-bottom: 60px;
}

.xs-pb-70 {
  padding-bottom: 70px;
}

.xs-pb-80 {
  padding-bottom: 80px;
}

.xs-pb-90 {
  padding-bottom: 90px;
}

.xs-pb-100 {
  padding-bottom: 100px;
}

.xs-pl-5 {
  padding-left: 5px;
}

.xs-pl-10 {
  padding-left: 10px;
}

.xs-pl-15 {
  padding-left: 15px;
}

.xs-pr-5 {
  padding-right: 5px;
}

.xs-pr-10 {
  padding-right: 10px;
}

.xs-pr-15 {
  padding-right: 15px;
}

/* overlay list */
.xs-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.xs-fix {
  overflow: hidden;
}

/* color */
.xs-black-color {
  color: #101010;
}

/* background color */
.xs-black-bg {
  background-color: #101010;
}

/* color */
.xs-black2-color {
  color: #222222;
}

/* background color */
.xs-black2-bg {
  background-color: #222222;
}

/* color */
.xs-white-color {
  color: #FFFFFF;
}

/* background color */
.xs-white-bg {
  background-color: #FFFFFF;
}

/* color */
.xs-red-color {
  color: #FFCC00;
}

/* background color */
.xs-red-bg {
  background-color: #FFCC00;
}

/* color */
.xs-green-color {
  color: #45b33c;
}

/* background color */
.xs-green-bg {
  background-color: #45b33c;
}

/* color */
.xs-purple-color {
  color: #9d56f6;
}

/* background color */
.xs-purple-bg {
  background-color: #9d56f6;
}

/* color */
.xs-dark-red-color {
  color: #E6B800;
}

/* background color */
.xs-dark-red-bg {
  background-color: #E6B800;
}

/* color */
.xs-cyan-color {
  color: #4fb99f;
}

/* background color */
.xs-cyan-bg {
  background-color: #4fb99f;
}

/* color */
.xs-light-color {
  color: #f7f7f7;
}

/* background color */
.xs-light-bg {
  background-color: #f7f7f7;
}

/* remove from control focus box shadow */
.form-control {
  border-color: #222;
}

.form-control:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #222;
}

.xs-form {
  margin-top: 20px;
}

.xs-form .xs-form-anim {
  position: relative;
  padding-top: 25px;
  margin-bottom: 0;
}

.xs-form .xs-form-anim.active .input-label {
  bottom: 35px;
}

.xs-form .xs-form-anim.active input {
  border-color: #444;
}

.xs-form .form-control {
  margin-top: 10px;
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid #e5e5e5;
  color: #101010;
  background-color: transparent;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.xs-form .input-label {
  position: absolute;
  bottom: 13px;
  color: #666565;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.xs-form .btn-primary {
  padding: 10px 45px;
}

.xs-form-dark .form-control {
  border-bottom: 1px solid #222222;
  color: #FFFFFF;
}

.xs-form-dark .input-label {
  color: #FFFFFF;
}

/* input type number spinner turn of chrome */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* input type number spinner turn of firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.owl-carousel .owl-item img {
  width: auto;
}

.xs-brand-owl {
  cursor: e-resize;
}

/* Musculação Image Section */
.xs-musculacao-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 400px;
}

.xs-musculacao-image img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.xs-musculacao-image img:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 40px rgba(0,0,0,0.4) !important;
}

@media (max-width: 767px) {
  .xs-musculacao-image {
    min-height: 250px;
    margin-top: 30px;
  }
}

/* FREE PASS Modal */
.modal-freepass {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.modal-freepass.active {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.modal-content-freepass {
  background: #fff;
  width: 400px;
  max-width: 95%;
  height: 95vh;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.modal-header-freepass {
  background: linear-gradient(135deg, #FFCC00 0%, #E6B800 100%);
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 15px 15px 0 0;
}

.modal-title-freepass {
  color: #000;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0;
}

.modal-close-freepass {
  background: none;
  border: none;
  font-size: 2rem;
  color: #000;
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.modal-close-freepass:hover {
  background: rgba(0, 0, 0, 0.1);
  transform: scale(1.1);
}

.modal-body-freepass {
  height: calc(95vh - 80px);
  overflow: hidden;
}

.modal-body-freepass iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 767px) {
  .modal-content-freepass {
    width: 95%;
    height: 98vh;
  }
  
  .modal-header-freepass {
    padding: 15px;
  }
  
  .modal-title-freepass {
    font-size: 1.2rem;
  }
  
  .modal-body-freepass {
    height: calc(98vh - 70px);
  }
}

/* Mobile adjustments - Hide social media in header */
@media (max-width: 767px) {
  /* Fix horizontal overflow on mobile */
  html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
  }
  
  /* Prevent elements from causing horizontal scroll */
  * {
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  
  /* Exceptions for menu elements */
  .elementskit-menu-hamburger,
  .elementskit-menu-toggler,
  .elementskit-menu-hamburger-icon,
  .elementskit-navbar,
  .xs-navbar-brand {
    max-width: none !important;
    width: auto !important;
  }
  
  /* Fix common overflow culprits */
  .container, .container-fluid {
    overflow-x: hidden !important;
    max-width: 100% !important;
  }
  
  .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: 100% !important;
  }
  
  /* Fix header elements */
  .xs-menu-top, .xs-container, .elementskit-header {
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }
  
  /* Fix schedule table overflow */
  .table-responsive {
    overflow-x: auto !important;
    max-width: 100% !important;
    -webkit-overflow-scrolling: touch !important;
  }
  
  .table-responsive table {
    min-width: auto !important;
    width: 100% !important;
  }
  
  .table-responsive th,
  .table-responsive td {
    white-space: nowrap !important;
    min-width: 80px !important;
    max-width: 120px !important;
    font-size: 12px !important;
    padding: 5px !important;
  }
  
  .xs-schedule-info {
    font-size: 10px !important;
    padding: 8px !important;
  }
  
  .xs-schedule-info h3 {
    font-size: 11px !important;
    margin-bottom: 2px !important;
  }
  
  .xs-schedule-info h4 {
    font-size: 10px !important;
    margin-bottom: 2px !important;
  }
  
  .xs-schedule-info p {
    font-size: 9px !important;
    margin-bottom: 1px !important;
  }
  
  .xs-schedule-info span {
    font-size: 8px !important;
  }
  
  /* Ensure hamburger menu is visible and functional */
  .elementskit-menu-hamburger {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 999 !important;
    width: auto !important;
    height: auto !important;
    padding: 10px !important;
    background: transparent !important;
    border: none !important;
  }
  
  .elementskit-menu-hamburger-icon {
    display: block !important;
    width: 25px !important;
    height: 3px !important;
    background: #fff !important;
    margin: 4px 0 !important;
    transition: 0.3s !important;
  }
  
  /* Make sure navbar is positioned correctly */
  .elementskit-navbar {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
  }
  
  /* Center headline on mobile */
  .xs-banner-dark {
    position: relative !important;
    top: 80px !important;
    text-align: center !important;
    padding: 40px 20px !important;
  }
  
  .xs-banner-title {
    font-size: 24px !important;
    line-height: 1.3 !important;
    margin-bottom: 30px !important;
    text-align: center !important;
  }
  
  /* Center the banner container */
  .col-md-8 {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    min-height: 60vh !important;
  }
  
  /* Center the button too */
  .xs-banner-dark .btn {
    display: block !important;
    margin: 0 auto !important;
    width: fit-content !important;
  }
  .xs-menu-top .xs-header-social,
  .xs-header-dark .xs-header-social,
  .xs-header-social {
    display: none !important;
    visibility: hidden !important;
  }
  
  /* Hide social media items specifically */
  .xs-header-social li {
    display: none !important;
  }
  
  /* Adjust header contact to take full width when social is hidden */
  .xs-header-contact {
    width: 100% !important;
    text-align: center !important;
    float: none !important;
  }
  
  /* Ensure the menu top section adjusts properly */
  .xs-menu-top .container {
    justify-content: center !important;
    text-align: center !important;
  }
  
  .xs-menu-top .container .clearfix {
    text-align: center !important;
  }
  
  /* Adjust header container positioning on mobile */
  .xs-container {
    position: relative !important;
    top: 0 !important;
    margin-top: 0 !important;
  }
  
  .xs-navbar {
    position: relative !important;
    top: 0 !important;
    margin-top: 0 !important;
  }
  
  /* Adjust menu top height on mobile */
  .xs-menu-top {
    min-height: auto !important;
    height: auto !important;
    padding: 10px 0 !important;
  }
  
  /* Ensure proper spacing after hiding social media */
  .elementskit-header {
    position: relative !important;
  }
  
  /* Fix the yellow element positioning behind logo */
  .elementskit-header::before,
  .elementskit-header::after,
  .xs-container::before,
  .xs-container::after,
  .xs-navbar::before,
  .xs-navbar::after {
    top: 46px !important;
  }
  
  /* Any absolute positioned elements in header */
  .elementskit-header [style*="top: 66px"],
  .xs-container [style*="top: 66px"],
  .xs-navbar [style*="top: 66px"] {
    top: 46px !important;
  }
}

/* GIF Background Styles */
.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* WhatsApp Contact Info */
.whatsapp-info {
  margin-bottom: 20px;
}

.whatsapp-number {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #2c3e50;
  padding: 12px 20px;
  border-radius: 25px;
  margin-bottom: 15px;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.whatsapp-number i {
  margin-right: 10px;
  font-size: 1.2rem;
}

/* Free Pass Reminder */
.freepass-reminder {
  background: linear-gradient(135deg, #34495e, #2c3e50);
  border: 2px solid #FFD700;
  border-radius: 15px;
  padding: 20px;
  margin-top: 25px;
  text-align: center;
}

.reminder-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #2c3e50;
  padding: 8px 16px;
  border-radius: 20px;
  margin-bottom: 12px;
  font-weight: 700;
  font-size: 0.9rem;
  width: fit-content;
  margin: 0 auto 12px auto;
  box-shadow: 0 3px 10px rgba(255, 215, 0, 0.4);
}

.reminder-badge i {
  margin-right: 8px;
  font-size: 1.1rem;
}

.freepass-reminder p {
  color: #fff;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.freepass-reminder strong {
  color: #FFD700;
}

/* Mobile specific adjustments for full coverage */
@media (max-width: 767px) {
  .video-background {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    z-index: -1 !important;
  }
  
  #home {
    min-height: 100vh !important;
    position: relative !important;
    overflow: visible !important;
  }
  
  /* Fix overflow issues that cause internal scrolling */
  * {
    overflow-x: visible !important;
    overflow-y: visible !important;
  }
  
  /* Exception for elements that should scroll */
  .table-responsive {
    overflow-x: auto !important;
    overflow-y: visible !important;
  }
  
  /* Prevent sections from having internal scroll */
  section {
    overflow: visible !important;
    height: auto !important;
    max-height: none !important;
  }
  
  /* Ensure containers don't create scroll traps */
  .container, .container-fluid {
    overflow: visible !important;
    height: auto !important;
    max-height: none !important;
  }
  
  /* Center footer links on mobile */
  .footer-links {
    text-align: center !important;
  }
  
  .footer-links ul {
    display: block !important;
    text-align: center !important;
    margin: 0 auto !important;
  }
  
  .footer-links .links-column {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    margin-bottom: 20px !important;
  }
  
  .footer-links .links-column li {
    text-align: center !important;
    display: block !important;
    margin: 8px auto !important;
  }
  
  .footer-links .links-column li a {
    display: block !important;
    text-align: center !important;
    padding: 8px 0 !important;
  }
}

/*# sourceMappingURL=style.css.map */