
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
     overflow-x: hidden;
}

/* Navbar styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
}

.logo {
    height: 50px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 17pt;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ff4d4d;
}

.nav-btn {
    padding: 0.8rem 1.5rem;
    background: #ff4d4d;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.nav-btn:hover {
    background: #ff3333;
}

/* Slider styles */
.slider {
    height: 100vh;
    width: 100vw;
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1593784991095-a205069470b6?ixlib=rb-4.0.3');
    background-size: cover;
    background-position: center;
    animation: slideChange 20s infinite;
}

.slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 90%;
    max-width: 800px;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: #ff4d4d;
    color: white;
}

.btn-secondary {
    background: #3498db;
    color: white;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: white;
    transition: 0.3s ease;
}

@keyframes slideChange {
    0%, 20% {
        background-image: url('../assets/images/slide1.jpg');
    }
    33%, 53% {
        background-image: url('../assets/images/slide4.jpg');
    }
    66%, 86% {
        background-image: url('../assets/images/slide3.jpg');
    }
    100% {
        background-image: url('../assets/images/slide2.jpg');
    }
}

/* Carousel Section */
.carousel-section {
    background: #111;
    padding: 4rem 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.carousel-section h2 {
    text-align: center;
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.section-description {
    text-align: center;
    color: #ff6b6b;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    gap: 1rem;
    transition: transform 0.5s ease;
}

.carousel-item {
    flex: 0 0 calc(20% - 0.8rem);
    border: 2px solid #ff4d4d;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.carousel-item:hover {
    transform: scale(1.05);
}

.carousel-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.carousel-button {
    background: rgba(255, 77, 77, 0.8);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: background 0.3s ease;
    z-index: 2;
}

.carousel-button:hover {
    background: rgba(255, 77, 77, 1);
}

.carousel-button i {
    font-size: 1.2rem;
}

/* Channels Grid Section */
.channels-grid {
    background: #0a0a0a;
    padding: 4rem 0;
    overflow: hidden;
}

.channels-grid h2 {
    text-align: center;
    color: white;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: bold;
}

.channels-carousel-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.channels-row {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 1rem 0;
}

.channels-track {
    display: flex;
    gap: 2rem;
    animation: slideLeft 30s linear infinite;
}

.channels-row.reverse .channels-track {
    animation: slideRight 30s linear infinite;
}

.channel-item {
    flex: 0 0 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.channel-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.channel-item img {
    max-width: 100%;
    height: auto;
    filter: brightness(0.9);
    transition: filter 0.3s ease;
}

.channel-item:hover img {
    filter: brightness(1);
}

@keyframes slideLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% / 2));
    }
}

@keyframes slideRight {
    0% {
        transform: translateX(calc(-100% / 2));
    }
    100% {
        transform: translateX(0);
    }
}

/* Pricing Section */
.pricing-section {
    background: #0a0a0a;
    padding: 6rem 0;
}

.pricing-section h2 {
    text-align: center;
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.pricing-notice {
    text-align: center;
    color: #ff4d4d;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 0 1rem;
}

.pricing-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.pricing-card.popular {
    border: 2px solid #ff4d4d;
}

.popular-ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    background: #ff4d4d;
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.card-header {
    background: #f8f9fa;
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.card-header h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    color: #333;
    font-size: 2.5rem;
    font-weight: bold;
}

.currency {
    font-size: 1.5rem;
    vertical-align: super;
}

.cents {
    font-size: 1.5rem;
}

.card-body {
    padding: 2rem;
}

.features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.features li {
    color: #666;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.features li i {
    color: #ff4d4d;
    margin-right: 0.5rem;
}

.btn-pricing {
    width: 100%;
    padding: 1rem;
    background: #ff4d4d;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-pricing:hover {
    background: #ff3333;
}

/* Reviews Section */
/* Reviews Section */
.reviews-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 6rem 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 77, 77, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.section-subtitle {
    color: #ff6b6b;
    font-size: 1.2rem;
    opacity: 0.9;
}

.reviews-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
    overflow: hidden;
}

.reviews-container {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
}

.review-item {
    width: calc((100% - 4rem) / 3); /* Show 3 items on desktop */
    flex: 0 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.review-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.quote-icon {
    color: #ff6b6b;
    font-size: 2rem;
    opacity: 0.3;
    margin-bottom: 1rem;
}

.review-content {
    margin-bottom: 2rem;
}

.review-text {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.rating {
    color: #ffd700;
    font-size: 1rem;
    display: flex;
    gap: 0.3rem;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.reviewer-info h4 {
    margin: 0;
    font-size: 1.1rem;
    color: white;
}

.reviewer-info p {
    margin: 0.2rem 0 0;
    font-size: 0.9rem;
    color: #ff6b6b;
}

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.nav-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.nav-arrow.prev {
    left: 0;
}

.nav-arrow.next {
    right: 0;
}

.reviews-nav {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.nav-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.nav-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active {
    background: #ff4d4d;
    transform: scale(1.2);
}

@media (max-width: 1024px) {
    .review-item {
        width: calc((100% - 2rem) / 2); /* Show 2 items on tablet */
    }
    
    .reviews-wrapper {
        padding: 0 3rem;
    }
}

@media (max-width: 768px) {
    .reviews-wrapper {
        padding: 0 2rem;
    }
    
    .review-item {
        width: calc(100% - 2rem); /* Show 1 item on mobile */
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .reviews-wrapper {
        padding: 0 1rem;
    }
    
    .review-item {
        padding: 1rem;
    }
}

/* Responsive Design */
@media (max-width: 1400px) {
    .reviews-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .reviews-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-header h2 {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .reviews-wrapper {
        padding: 0 2rem;
    }
    
    .review-item {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .reviews-container {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .reviews-wrapper {
        padding: 0 1rem;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .reviews-carousel {
        padding: 0 1rem;
    }

    .review-card {
        padding: 1rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        padding: 20px;
        text-align: center;
        gap: 1rem;
    }

    .nav-links.active {
        display: flex;
    }
    
    .hamburger {
        display: flex;
        z-index: 1001;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .nav-btn {
        display: none;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .carousel-section {
        padding: 2rem 0;
    }

    .carousel-section h2 {
        font-size: 2rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .carousel-item {
        flex: 0 0 calc(50% - 0.5rem);
    }

    .carousel-item img {
        height: 250px;
    }

    .carousel-button {
        width: 35px;
        height: 35px;
    }

    .channels-grid {
        padding: 2rem 0;
    }

    .channels-grid h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .channels-carousel-container {
        gap: 1rem;
    }

    .channels-track {
        gap: 1rem;
    }

    .channel-item {
        flex: 0 0 150px;
        padding: 1rem;
    }
}

/* Responsive Design for Pricing */
@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 3rem 0;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-section h2 {
        font-size: 2rem;
    }

    .pricing-notice {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .card-header {
        padding: 1.5rem;
    }

    .card-body {
        padding: 1.5rem;
    }

    .features li {
        font-size: 0.9rem;
    }
}

/* Responsive Design for Reviews */
@media (max-width: 1200px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .reviews-section {
        padding: 3rem 0;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .reviews-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .reviews-section h2 {
        font-size: 2rem;
    }

    .reviews-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .review-card {
        padding: 1.5rem;
    }

    .reviewer-avatar {
        width: 50px;
        height: 50px;
    }

    .stat-item {
        padding: 0.5rem;
    }

    .stat-item i {
        font-size: 2rem;
    }

    .stat-item h3 {
        font-size: 1.5rem;
    }
}

/* Pause animation on hover */
.channels-row:hover .channels-track {
    animation-play-state: paused;
}

/* Fixed Buttons */
.whatsapp-btn {
    position: fixed;
    left: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-btn i {
    font-size: 32px;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    background-color: #128C7E;
}

.scroll-top-btn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff0000, #ff6b6b);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/*Faq*/

.faq {
   
    background-color: #000;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.faq-container {
    padding: 10px;
}
.faq-container h2{
    text-align: center;
    font-size: 2.5rem;
}
.faq-item {
    background: #111;
    border-radius: 5px;
    margin: 10px 0;
    padding: 15px;
    cursor: pointer;
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
}
.faq-answer {
    display: none;
    margin-top: 10px;
    font-size: 16px;
    color: #ccc;
}
.faq-item.active .faq-answer {
    display: block;
}
.faq .icon {
    transition: transform 0.3s;
}
.faq-item.active .icon {
    transform: rotate(180deg);
}

/*contact*/
.contact-section {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 50px 20px;
}

.contact-content {
    max-width: 600px;
    margin: auto;
}

.contact-section .icon i {
    font-size: 40px;
    margin-bottom: 15px;
}

.contact-section h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
}

.contact-section p {
    font-size: 16px;
    margin-bottom: 20px;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    background-color: #25D366;
    color: #fff;
    padding: 12px 20px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 25px;
    transition: background-color 0.3s;
}

.whatsapp-button i {
    margin-right: 10px;
    font-size: 20px;
}

.whatsapp-button:hover {
    background-color: #1da851;
}

@media (max-width: 768px) {
    .contact-section h2 {
        font-size: 24px;
    }
    .contact-sectionp {
        font-size: 14px;
    }
    .whatsapp-button {
        font-size: 16px;
        padding: 10px 18px;
    }
}
/* Footer Styles */
.footer {
    background-color: #0a0a0a;
    color: #fff;
    padding: 4rem 2rem 1rem;
    margin-top: 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-section h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.5rem;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #ff0000, #ff6b6b);
}

.footer-section p {
    color: #999;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #fff;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: linear-gradient(90deg, #ff0000, #ff6b6b);
    transform: translateY(-3px);
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #999;
}

.contact-info li i {
    color: #ff6b6b;
}

.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #999;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #fff;
}

/* Responsive Footer */
@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 1rem;
    }
}
.fixed-buttons {
  position: fixed;
  left: 20px;
  top: 40%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.fixed-buttons .btn {
  padding: 10px 20px;
  border-radius: 25px;
  color: white;
  font-weight: bold;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s;
}

.fixed-buttons .btn:hover {
  transform: scale(1.05);
}

.fixed-buttons .buy-now {
  background-color: #25D366; /* WhatsApp vert */
}

.fixed-buttons .back {
  background-color: #0057FF; /* Bleu */
}
