:root {
    --primary: #00c6ff;    /* Modern blue */
    --secondary: #0072ff;  /* Darker blue */
    --accent: #ff4d4d;     /* Vibrant red */
    --dark: #1a1a2e;
    --light: #f8f9fa;
    --text: #333333;
    --text-light: #6c757d;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--light);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
}

p {
    color: var(--text-light);
    margin-bottom: 15px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 5px 15px rgba(0, 198, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 198, 255, 0.4);
}

/* Header */
.parallax-header {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.1)), url('../images/Follow.jpeg') no-repeat center center/cover;
    color: white;
    background-attachment: fixed;
    padding: 180px 0 120px;
    position: relative;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 198, 255, 0.2), rgba(0, 114, 255, 0.2));
}

.header-content {
    position: relative;
    z-index: 2;
    flex-direction: column;
    text-align: center;
    width: 100%;
}

.blur-bg {
    background: rgba(255, 255, 255, 0.2); /* semi-transparent for blur visibility */
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 8px 12px;
    border-radius: 8px;
    display: inline-block;
    color: #fff;
  }
  
  .typing {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 8px 12px;
    border-radius: 8px;
    display: inline-block;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    font-size: 1rem;
    transition: all 0.3s ease;
  }
  
  /* Responsive tweaks */
@media (max-width: 768px) {
    .typing {
      padding: 6px 10px;
      font-size: 0.9rem;
      max-width: 90vw;
    }
  }
  
  @media (max-width: 480px) {
    .typing {
      padding: 5px 8px;
      font-size: 0.85rem;
      max-width: 95vw;
    }
  }
  
.logo {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(to right, white, #f0f0f0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.tagline {
    font-size: 1.8rem;
    margin-bottom: 40px;
    opacity: 0.9;
    font-weight: 300;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    z-index: 1000;
    transition: var(--transition);
    padding: 20px 0;
}

nav.scrolled {
    background-color: rgba(26, 26, 46, 0.95);
    padding: 15px 0;
    box-shadow: var(--shadow);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo img {
    height: 100px;
    padding: 5px 0;
    transition: var(--transition);
}

nav.scrolled .nav-logo img {
    height: 70px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.nav-links a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: var(--transition);
}

.nav-links a:hover:after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: white;
    z-index: 1001;
}

/* Sections */
section {
    padding: 100px 0;
}

.bg-light {
    background-color: #f8f9fa;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
    color: var(--dark);
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    margin: 20px auto 0;
    border-radius: 2px;
}

/* About */
.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--dark);
}

.about-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.about-image:hover img {
    transform: scale(1.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

    /* Sections */
    section {
        padding: 80px 0;
    }
    
    .section-title {
        text-align: center;
        margin-bottom: 50px;
        font-size: 2.2rem;
        color: var(--primary);
        position: relative;
    }
    
    .section-title:after {
        content: '';
        display: block;
        width: 80px;
        height: 4px;
        background: linear-gradient(to right, var(--secondary), var(--accent));
        margin: 15px auto 0;
        border-radius: 2px;
    }
    
    /* About */
    .about-content {
        display: flex;
        align-items: center;
        gap: 50px;
    }
    
    .about-text {
        flex: 1;
    }
    
    .about-text h3 {
        font-size: 1.8rem;
        margin-bottom: 20px;
        color: var(--primary);
    }
    
    .about-image {
        flex: 1;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }
    
    .about-image img {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.5s;
    }
    
    .about-image:hover img {
        transform: scale(1.05);
    }
    
 
/* Services Section */
.services-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    color: #222;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #00c6ff, #0072ff);
    margin: 15px auto 0;
}

/* Services Filter */
.services-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 20px;
    border-radius: 30px;
    border: none;
    background: #f0f0f0;
    color: #555;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active, .filter-btn:hover {
    background: linear-gradient(to right, #00c6ff, #0072ff);
    color: white;
    box-shadow: 0 5px 15px rgba(0, 198, 255, 0.3);
}

/* 3D Slider Styles */
.services-grid {
    display: flex;
    padding: 80px 0;
    perspective: 1200px;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: grab;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Hide scrollbar for Firefox */
    -ms-overflow-style: none; /* Hide scrollbar for IE/Edge */
}

.services-grid::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome/Safari */
}

.services-grid.grabbing {
    cursor: grabbing;
}

.service-card {
    flex: 0 0 320px;
    margin: 0 15px;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.20);
    transition: all 0.6s ease, opacity 0.4s ease;
    transform-origin: center bottom;
    opacity: 1;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
}

.service-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.service-content {
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: calc(100% - 220px);
}

.service-content h3 {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: 10px;
    color: #222;
    position: relative;
    padding-bottom: 10px;
    flex-shrink: 0;
}

.service-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, #00c6ff, #0072ff);
}

.service-content p {
    color: #666;
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.read-more-btn {
    padding: 8px 16px;
    background: linear-gradient(to right, #00c6ff, #0072ff);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    align-self: center;
    margin-top: auto;
    margin-bottom: 10px;
    text-decoration: none;
}

.read-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Scroll buttons */
.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.scroll-btn.left {
    left: 10px;
    margin: 5rem 0rem;
}

.scroll-btn.right {
    right: 10px;
    margin: 5rem 0rem;
}

/* Animasi */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

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

/* Responsive */
@media (max-width: 1200px) {
    .service-card {
        flex: 0 0 280px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }
    
    .services-grid {
        padding: 60px 0;
        perspective: 800px;
    }
    
    .service-card {
        flex: 0 0 85vw;
        margin: 0 10px;
    }
    
    .service-img {
        height: 180px;
    }
    
    .service-content {
        padding: 15px;
    }
    
    .filter-btn {
        padding: 8px 15px;
        font-size: 0.85rem;
    }
    
    .scroll-btn {
        display: none;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .services-filter {
        gap: 8px;
        margin-bottom: 30px;
    }
    
    .service-img {
        height: 150px;
    }
    
    .service-content h3 {
        font-size: 1.1rem;
    }
    
    .service-content p {
        -webkit-line-clamp: 3;
    }
}
    /* Portfolio */
    .portfolio-filter {
        display: flex;
        justify-content: center;
        margin-bottom: 40px;
        flex-wrap: wrap;
    }
    
    .filter-btn {
        background: none;
        border: none;
        padding: 8px 20px;
        margin: 0 10px;
        cursor: pointer;
        font-weight: 500;
        color: var(--dark);
        transition: all 0.3s;
        border-radius: 30px;
    }
    
    .filter-btn.active, .filter-btn:hover {
        background: linear-gradient(to right, var(--secondary), var(--accent));
        color: white;
    }
    
    .portfolio-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
        gap: 30px;
    }
    
    .portfolio-item {
        position: relative;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .portfolio-img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        display: block;
    }
    
    .portfolio-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(21, 186, 216, 0.9);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        opacity: 0;
        transition: opacity 0.3s;
        padding: 20px;
        text-align: center;
        color: white;
    }
    
    .portfolio-item:hover .portfolio-overlay {
        opacity: 1;
    }
    
    .portfolio-title {
        font-size: 1.5rem;
        margin-bottom: 10px;
        transform: translateY(20px);
        transition: transform 0.3s;
    }
    
    .portfolio-desc {
        transform: translateY(20px);
        transition: transform 0.3s 0.1s;
        opacity: 0.9;
    }
    
    .portfolio-item:hover .portfolio-title,
    .portfolio-item:hover .portfolio-desc {
        transform: translateY(0);
    }
    
  /* Team Section Styling - Responsive */
.team-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 60px 0;
}

.team-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 15px;
}

.team-grid {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.slide {
    flex: 0 0 100%;
    display: flex;
    padding: 0 5px;
    box-sizing: border-box;
}

.team-member {
    flex: 0 0 calc(100% - 20px);
    margin: 0 10px;
    box-sizing: border-box; 
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.team-member.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.team-member.delay-1 {
    transition-delay: 0.2s;
}

.team-member.delay-2 {
    transition-delay: 0.4s;
}

.member-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: transform 0.4s ease;
}

.team-member:hover .member-img {
    transform: scale(1.05);
}

.member-info {
    padding: 20px;
    text-align: center;
}

.member-name {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: #222;
    font-weight: 600;
}

.member-role {
    color: #00c6ff;
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.social-links a {
    color: #666;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-links a:hover {
    color: #0072ff;
    transform: translateY(-2px);
}

.slider-controls {
    position: relative;
    z-index: 10;
    padding: 30px 0 10px;
    display: flex;
    justify-content: center;
}

.slider-dots {
    display: flex;
    justify-content: center;
    padding: 20px 0;
    gap: 10px;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots .dot.active {
    background: #00c6ff;
    transform: scale(1.2);
}

/* Navigation arrows */
.slider-btn {
    background: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0.8;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.slider-btn:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.slider-btn#prevBtn {
    left: 10px;
}

.slider-btn#nextBtn {
    right: 10px;
}

/* Tablet: 2 per slide */
@media (min-width: 768px) {
    .team-member {
        flex: 0 0 calc(50% - 20px);
    }
}

/* Desktop: 3 per slide */
@media (min-width: 1024px) {
    .team-member {
        flex: 0 0 calc(33.333% - 20px);
    }
}

/* Hide scrollbar */
.team-grid::-webkit-scrollbar {
    display: none;
}
  
    /* Contact */
    .contact-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 50px;
    }
    
    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .contact-item {
        display: flex;
        align-items: flex-start;
        gap: 15px;
    }
    
    .contact-icon {
        background: linear-gradient(135deg, var(--secondary), var(--accent));
        color: white;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        flex-shrink: 0;
    }
    
    .contact-text h3 {
        margin-bottom: 5px;
        color: var(--primary);
    }
    
    .contact-form {
        background: white;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-control {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid #ddd;
        border-radius: 5px;
        font-size: 1rem;
        transition: border-color 0.3s;
    }
    
    .form-control:focus {
        outline: none;
        border-color: var(--secondary);
    }
    
    textarea.form-control {
        min-height: 150px;
        resize: vertical;
    }
    
    .submit-btn {
        background: linear-gradient(to right, var(--secondary), var(--accent));
        color: white;
        border: none;
        padding: 12px 30px;
        border-radius: 30px;
        cursor: pointer;
        font-weight: 500;
        font-size: 1rem;
        transition: transform 0.3s, box-shadow 0.3s;
    }
    
    .submit-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(236, 25, 128, 0.4);
    }

    
    /* Footer */
    footer {
        background: var(--dark);
        color: white;
        padding: 60px 0 20px;
    }
    
    .footer-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 40px;
        margin-bottom: 40px;
    }
    
    .footer-col h3 {
        font-size: 1.3rem;
        margin-bottom: 20px;
        position: relative;
        padding-bottom: 10px;
    }
    
    .footer-col h3:after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 50px;
        height: 2px;
        background: linear-gradient(to right, var(--secondary), var(--accent));
    }
    
    .footer-col p {
        margin-bottom: 15px;
        opacity: 0.8;
    }
    
    .footer-links {
        list-style: none;
    }
    
    .footer-links li {
        margin-bottom: 10px;
    }
    
    .footer-links a {
        color: white;
        opacity: 0.8;
        text-decoration: none;
        transition: opacity 0.3s;
    }
    
    .footer-links a:hover {
        opacity: 1;
    }
    
    .footer-bottom {
        text-align: center;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        opacity: 0.7;
        font-size: 0.9rem;
    }
    
    /* Animations */
    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    .fade-in {
        animation: fadeIn 1s ease forwards;
    }
    
    .delay-1 { animation-delay: 0.2s; }
    .delay-2 { animation-delay: 0.4s; }
    .delay-3 { animation-delay: 0.6s; }
    
    /* Responsive */
    @media (max-width: 992px) {
        .about-content {
            flex-direction: column;
        }
        
        .about-text, .about-image {
            flex: none;
            width: 100%;
        }
    }
    
    @media (max-width: 768px) {

        .nav-logo img {
            height: 50px;
        }
        .nav-links {
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            background: white;
            flex-direction: column;
            align-items: center;
            padding: 20px 0;
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
            transform: translateY(-150%);
            transition: transform 0.3s;
        }
        
        .nav-links.active {
            transform: translateY(0);
        }
        
        .nav-links li {
            margin: 10px 0;
        }
        
        .mobile-menu-btn {
            display: block;
        }
        
        section {
            padding: 60px 0;
        }
        
        .section-title {
            font-size: 1.8rem;
            margin-bottom: 40px;
        }
    }
    
    @media (max-width: 576px) {
        .logo {
            font-size: 2rem;
        }
        
        .tagline {
            font-size: 1.2rem;
        }
        
        .portfolio-grid {
            grid-template-columns: 1fr;
        }
        
        .filter-btn {
            margin: 5px;
            padding: 6px 15px;
            font-size: 0.9rem;
        }
    }

/* Responsive */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }
    
    .about-text, .about-image {
        flex: none;
        width: 100%;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--dark);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .logo {
        font-size: 3rem;
    }
    
    .tagline {
        font-size: 1.4rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .logo {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
}