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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #000;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    position: relative;
}

.logo img {
    height: 50px;
    width: auto;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #000;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
    background-color: #70c2bd;
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
    background-color: #70c2bd;
}

.navigation ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.navigation a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    transition: color 0.3s;
    padding: 10px 15px;
    border-radius: 5px;
}

.navigation a:hover {
    color: #70c2bd;
    background-color: rgba(112, 194, 189, 0.1);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    position: relative;
}

.carousel {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    background: linear-gradient(135deg, rgba(112, 194, 189, 0.8), rgba(0, 0, 0, 0.6));
    padding: 40px 50px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    max-width: 90%;
    animation: slideIn 1s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translate(-50%, -60%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.slide-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #70c2bd;
}

.slide-content p {
    font-size: 1.2rem;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.carousel-nav button {
    background: rgba(112, 194, 189, 0.8);
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: background 0.3s;
}

.carousel-nav button:hover {
    background: #70c2bd;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

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

.dot.active {
    background: #70c2bd;
}

/* Products Section */
.products {
    padding: 80px 0;
    background-color: #70c2bd;
}

.products h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #fff;
}

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

.product-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.product-card img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 20px;
}

.product-card h3 {
    font-size: 1.3rem;
    color: #000;
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(112, 194, 189, 0.05) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -20px) rotate(1deg); }
    50% { transform: translate(-10px, 10px) rotate(-1deg); }
    75% { transform: translate(10px, -10px) rotate(1deg); }
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.about-header h2 {
    font-size: 2.8rem;
    color: #70c2bd;
    margin-bottom: 15px;
    font-weight: 700;
}

.about-subtitle {
    font-size: 1.3rem;
    color: #747574;
    font-weight: 300;
    font-style: italic;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.about-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(112, 194, 189, 0.1);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(112, 194, 189, 0.1), transparent);
    transition: left 0.6s ease;
}

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

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(112, 194, 189, 0.15);
    border-color: #70c2bd;
}

.card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 3px 6px rgba(112, 194, 189, 0.2));
    transition: all 0.3s ease;
}

.card-icon svg {
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
}

.about-card:hover .card-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 5px 10px rgba(112, 194, 189, 0.4));
}

.about-card:hover .card-icon svg {
    stroke: #5ab0aa;
}

.about-card h3 {
    font-size: 1.4rem;
    color: #000;
    margin-bottom: 15px;
    font-weight: 600;
}

.about-card p {
    color: #747574;
    line-height: 1.6;
    font-size: 0.95rem;
}

.about-cta {
    background: linear-gradient(135deg, #70c2bd, #5ab0aa);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(112, 194, 189, 0.3);
}

.cta-content h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 0;
    font-weight: 300;
}

/* Advantages Section */
.advantages {
    padding: 100px 0;
    background: linear-gradient(135deg, #70c2bd 0%, #5ab0aa 100%);
    position: relative;
    overflow: hidden;
}

.advantages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.advantages-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
}

.advantages-header h2 {
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.advantages-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    font-style: italic;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.advantage-item {
    position: relative;
}

.advantage-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #70c2bd, #5ab0aa, #70c2bd);
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.advantage-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 1);
}

.advantage-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #70c2bd, #5ab0aa);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(112, 194, 189, 0.4);
}

.advantage-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 3px 6px rgba(112, 194, 189, 0.2));
    transition: all 0.3s ease;
}

.advantage-icon svg {
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
}

.advantage-card:hover .advantage-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 5px 10px rgba(112, 194, 189, 0.4));
}

.advantage-card:hover .advantage-icon svg {
    stroke: #5ab0aa;
}

.advantage-card h3 {
    font-size: 1.4rem;
    color: #000;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.3;
}

.advantage-card p {
    color: #747574;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

.advantages-cta {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 15px 40px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.cta-badge:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.05);
}

.badge-text {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.cta-badge:hover .badge-text {
    color: #70c2bd;
}

/* Footer */
.footer {
    background-color: #000;
    color: #fff;
    padding: 50px 0 20px;
}

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

.footer-info h3 {
    color: #70c2bd;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.footer-info p {
    color: #747574;
}

.contact-info h4 {
    color: #70c2bd;
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 10px;
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #747574;
    padding-top: 20px;
    text-align: center;
    color: #747574;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .navigation {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        transition: left 0.3s ease;
        z-index: 999;
    }
    
    .navigation.active {
        left: 0;
    }
    
    .navigation ul {
        flex-direction: column;
        gap: 0;
        padding: 40px 20px;
        height: 100%;
        justify-content: flex-start;
    }
    
    .navigation li {
        width: 100%;
        border-bottom: 1px solid rgba(112, 194, 189, 0.2);
    }
    
    .navigation a {
        display: block;
        padding: 20px 15px;
        font-size: 1.2rem;
        color: #000;
        border-radius: 0;
        transition: all 0.3s ease;
    }
    
    .navigation a:hover {
        background-color: #70c2bd;
        color: #fff;
        transform: translateX(10px);
    }
    
    .hero {
        margin-top: 80px;
    }
    
    .carousel {
        height: 400px;
    }
    
    .slide-content {
        padding: 25px 30px;
        max-width: 95%;
    }
    
    .slide-content h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .slide-content p {
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    .carousel-nav {
        padding: 0 10px;
    }
    
    .carousel-nav button {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .products {
        padding: 60px 0;
    }
    
    .products h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }
    
    .product-card {
        padding: 20px 15px;
    }
    
    .product-card img {
        width: 100px;
        height: 100px;
        margin-bottom: 15px;
    }
    
    .product-card h3 {
        font-size: 1.1rem;
    }
    
    .about {
        padding: 60px 0;
    }
    
    .about-header h2 {
        font-size: 2.2rem;
        margin-bottom: 10px;
    }
    
    .about-subtitle {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 40px;
    }
    
    .about-card {
        padding: 30px 20px;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .about-card h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .about-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .about-cta {
        padding: 30px 20px;
    }
    
    .cta-content h3 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .advantages {
        padding: 60px 0;
    }
    
    .advantages-header h2 {
        font-size: 2.2rem;
        margin-bottom: 10px;
    }
    
    .advantages-subtitle {
        font-size: 1.1rem;
        margin-bottom: 50px;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
        margin-bottom: 50px;
    }
    
    .advantage-card {
        padding: 30px 25px;
    }
    
    .advantage-number {
        width: 35px;
        height: 35px;
        top: 15px;
        right: 15px;
        font-size: 1rem;
    }
    
    .advantage-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .advantage-card h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .advantage-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .cta-badge {
        padding: 12px 30px;
    }
    
    .badge-text {
        font-size: 1.1rem;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .footer-info h3 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .carousel {
        height: 300px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .product-card {
        padding: 15px 10px;
    }
    
    .product-card img {
        width: 80px;
        height: 80px;
        margin-bottom: 10px;
    }
    
    .product-card h3 {
        font-size: 0.95rem;
    }
    
    .about-header h2 {
        font-size: 1.9rem;
    }
    
    .about-subtitle {
        font-size: 1rem;
    }
    
    .about-grid {
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .about-card {
        padding: 25px 15px;
    }
    
    .card-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 12px;
    }
    
    .about-card h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .about-card p {
        font-size: 0.85rem;
    }
    
    .about-cta {
        padding: 25px 15px;
    }
    
    .cta-content h3 {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }
    
    .cta-content p {
        font-size: 0.9rem;
    }
    
    .advantages-header h2 {
        font-size: 1.9rem;
    }
    
    .advantages-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .advantage-card {
        padding: 25px 20px;
    }
    
    .advantage-number {
        width: 32px;
        height: 32px;
        top: 12px;
        right: 12px;
        font-size: 0.9rem;
    }
    
    .advantage-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 12px;
    }
    
    .advantage-card h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .advantage-card p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .cta-badge {
        padding: 10px 25px;
    }
    
    .badge-text {
        font-size: 1rem;
    }
    
    .nav-wrapper {
        padding: 12px 0;
    }
    
    .logo img {
        height: 40px;
    }
}

/* Store Selection Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

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

.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 40px;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-content h2 {
    text-align: center;
    color: #70c2bd;
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    color: #747574;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
}

.close:hover,
.close:focus {
    color: #70c2bd;
    background: rgba(112, 194, 189, 0.1);
    transform: rotate(90deg);
}

.store-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.store-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.store-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(112, 194, 189, 0.1), transparent);
    transition: left 0.5s ease;
}

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

.store-card:hover {
    transform: translateY(-5px);
    border-color: #70c2bd;
    box-shadow: 0 10px 30px rgba(112, 194, 189, 0.2);
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
}

.store-card h3 {
    color: #000;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.store-card p {
    color: #747574;
    font-size: 1rem;
    margin-bottom: 20px;
}

.store-btn {
    background: linear-gradient(135deg, #70c2bd, #5ab0aa);
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(112, 194, 189, 0.3);
}

.store-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(112, 194, 189, 0.4);
}

@media (max-width: 768px) {
    .modal-content {
        margin: 20% auto;
        padding: 30px 20px;
        width: 95%;
    }

    .modal-content h2 {
        font-size: 1.6rem;
        margin-bottom: 25px;
    }

    .store-options {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .store-card {
        padding: 25px 15px;
    }

    .store-card h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .store-card p {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }

    .store-btn {
        padding: 10px 25px;
        font-size: 0.95rem;
    }

    .close {
        right: 15px;
        top: 15px;
        font-size: 28px;
        width: 35px;
        height: 35px;
    }
}
/* Screen reader only class for Accessibility/SEO */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
