  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: calibri;
        }

        .top-bar {
            background-color: crimson;
            height: 40px;
            display: flex;
            align-items: center;
            overflow: hidden;
            position: relative;
            padding: 0 20px;
        }

        .news-label {
            background-color: #000;
            color: white;
            padding: 5px 15px;
            border-radius: 4px;
            font-weight: bold;
            margin-right: 20px;
            flex-shrink: 0;
        }

        .scrolling-wrapper {
            display: flex;
            align-items: center;
            flex-grow: 1;
            overflow: hidden;
            position: relative;
            height: 100%;
        }

        .scrolling-container {
            display: flex;
            align-items: center;
            height: 100%;
            width: 100%;
        }

        .scrolling-text {
            color: white;
            font-size: 16px;
            white-space: nowrap;
            padding: 0 30px;
            animation: scrollText 25s linear infinite;
            flex-shrink: 0;
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-left: 20px;
            flex-shrink: 0;
        }

        .social-icons a {
            color: white;
            font-size: 1.3rem;
            transition: transform 0.3s;
        }

        .social-icons a:hover {
            transform: translateY(-3px);
        }

        .top-bar:hover .scrolling-text {
            animation-play-state: paused;
        }

        @keyframes scrollText {
            0% { transform: translateX(100%); }
            100% { transform: translateX(-100%); }
        }
		.dspflx{
			display:flex;
		}
        .logo-container {
            display: flex;
            align-items: center;
            padding: 5px;
            background-color: #f8f8f8;
            border-bottom: 1px solid #e1e1e1;
			justify-content: space-between;
			align-items: center;
			width: 100%;
        }

        .logo {
            height: 120px;
            margin-right: 8px;
        }

        .logo-text {
            font-size: 40px;
            font-weight: bold;
            color: #333;
			display: flex;
			align-items: center;
        }
		 .registration-box {
            background: rgba(255, 255, 255, 0.15);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            padding: 15px 20px;
            text-align: right;
            backdrop-filter: blur(5px);
        }
        
        .registration-label {
            font-size: 19px;
            opacity: 0.9;
            margin-bottom: 5px;
			font-weight: 600;
        }
        
        .registration-number {
            font-size: 18px;
            
            letter-spacing: 1px;
        }
        
        .content {
            padding: 30px;
        }
		.naev{
			margin-top: 0;
			background: #eaea64;
			padding: 10px;
			border-radius: 5px;
		}
		.right-dv{
			padding-top:0px;
		}
        nav {
            background-color: #333;
        }

        .menu {
            display: flex;
            list-style-type: none;
			font-size:18px;
        }

        .menu li a {
            display: block;
            color: white;
            text-decoration: none;
            padding: 15px 20px;
            transition: background-color 0.3s;
        }

        .menu li a:hover {
            background-color: #555;
        }
		 /* Carousel Styles - Added after existing styles */
        .carousel-container {
            position: relative;
            width: 100%;
            height: 400px;
            overflow: hidden;
        }
        
        .carousel-slide {
            position: absolute;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
        }
        
       .carousel-slide:nth-child(1) {
            background-image: linear-gradient(rgb(244 235 235 / 3%), rgb(0 0 0 / 0%)), 
			url('../images/sliders/1.jpg');
        }
        
        .carousel-slide:nth-child(2) {
            background-image: linear-gradient(rgb(244 235 235 / 3%), rgb(0 0 0 / 0%)), 
			url('../images/sliders/2.jpg');
        }
        
        
        .carousel-slide:nth-child(3) {
            background-image: linear-gradient(rgb(244 235 235 / 3%), rgb(0 0 0 / 0%)), url('../images/sliders/3.jpg');
        }
        
        .carousel-slide.active {
            opacity: 1;
        }
        
        .carousel-content {
            max-width: 800px;
            padding: 20px;
        }
        
        .carousel-content h2 {
            font-size: 3rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        
        .carousel-content p {
            font-size: 1.5rem;
            margin-bottom: 30px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
        }
        
        .carousel-btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: crimson;
            color: white;
            text-decoration: none;
            border-radius: 4px;
            font-weight: bold;
            transition: background-color 0.3s, transform 0.3s;
        }
        
        .carousel-btn:hover {
            background-color: #a00;
            transform: translateY(-3px);
        }
        
        .carousel-controls {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
            z-index: 10;
        }
        
        .carousel-controls button {
            background: rgba(0,0,0,0.5);
            color: white;
            border: none;
            padding: 15px;
            cursor: pointer;
            font-size: 1.5rem;
            transition: background 0.3s;
        }
        
        .carousel-controls button:hover {
            background: rgba(0,0,0,0.8);
        }
        
        .carousel-indicators {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
        }
        
        .carousel-indicators .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            cursor: pointer;
        }
        
        .carousel-indicators .indicator.active {
            background: white;
        }
		.events-container {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
	  margin: 20px 10px 20px 10px;
    }
	.event h4{
		font-size:22px;
	}
    .left, .right {
      padding: 20px;
      border: 1px solid #ccc;
      border-radius: 8px;
    }

    .left {
      flex: 1 1 58%;
      min-width: 300px;
    }

    .right {
      flex: 1 1 40%;
      min-width: 280px;
      max-height: 450px;
      overflow: hidden;
      position: relative;
    }

    .left h1 {
      margin-top: 0;
    }

    .team {
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
      margin-top: 20px;
    }

    .member {
      text-align: center;
      flex: 1 1 30%;
    }

    .member img {
      width: 100%;
      max-width: 100px;
      border-radius: 50%;
    }

    .scroll-wrapper {
      height: 100%;
      overflow: hidden;
      position: relative;
	  margin-top: 15px;
    }

    .scroll-content {
      animation: scrollUp 10s linear infinite;
    }

    .scroll-wrapper:hover .scroll-content {
      animation-play-state: paused;
    }

    @keyframes scrollUp {
      0% { transform: translateY(100%); }
      100% { transform: translateY(-100%); }
    }

    .event {
      padding: 10px 0;
      border-bottom: 1px solid #eee;
    }

    .event h4 {
      margin: 0 0 5px;
    }

    .read-more {
      display: inline-block;
      margin-top: 5px;
      padding: 6px 12px;
      background-color: #007BFF;
      color: white;
      text-decoration: none;
      border-radius: 4px;
    }
	.atckr{
		color:#fff;
		text-decoration:none;
	}
	.df{
		display:flex;
	}
	.dr-img{
		border: 1px solid #ccc;
		padding: 10px;
		border-radius: 5px;
	}
	.dr-msg{
		padding: 0px 20px 0px 20px;
		line-height: 1.6;
		text-align:justify;
	}
	.dr-msg2{
		line-height:1.6;
	}
    .read-more:hover {
      background-color: #0056b3;
    }
	 .footer {
      background-color: #222;
      color: #fff;
      padding: 40px 20px;
	  font-size: 17px;
    letter-spacing: 0.5px;
    }

    .footer-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      max-width: 1200px;
      margin: auto;
    }

    .footer-column {
      flex: 1 1 30%;
      margin: 10px;
    }

    .footer-column h3 {
      border-bottom: 1px solid #555;
      padding-bottom: 10px;
      margin-bottom: 15px;
	  font-family: calibri;
	  font-size: 25px;
    }
	p{
		line-height:1.5;
	}
    .footer-column ul {
      list-style: none;
      padding: 0;
    }
	.ftr-c3-li{
		margin-bottom:20px;
	}
    .footer-column  .ftr-c2-li {
      margin-bottom: 10px;
 font-family: calibri;
     letter-spacing: 0.5px;
    }

    .footer-column ul li a {
      color: #ccc;
      text-decoration: none;
    }
	
    .footer-column ul li a:hover {
      color: #fff;
    }
  /* About Page Specific Styles */
        .about-hero {
            background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1523438885200-e635ba2c371e?ixlib=rb-1.2.1&auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 120px 20px;
        }

        .about-hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            font-family: 'Playfair Display', serif;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .about-hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
        }

        .about-container {
            max-width: 1200px;
            margin: 50px auto;
            padding: 0 20px;
        }

        .about-section {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            margin-bottom: 60px;
           
        }
		
        .about-section.reverse {
            flex-direction: row-reverse;
        }

        .about-text {
            flex: 1 1 50%;
            min-width: 300px;
        }

        .about-text h2 {
            color: #e83e8c;
            margin-bottom: 20px;
            font-size: 2.2rem;
        }
		.about-text p{
			margin-bottom: 10px;
			font-family: calibri;
			font-size: 19px;
		}
        .about-image {
            flex: 1 1 40%;
            min-width: 300px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            height: 400px;
        }

        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.5s;
        }

        .about-image:hover img {
            transform: scale(1.05);
        }

        .mission-vision {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin: 60px 0;
        }
		.mission-vision p{
			margin-bottom:10px;
		}
        .mission, .vision {
            flex: 1 1 45%;
            min-width: 300px;
            padding: 30px;
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            border-top: 4px solid #e83e8c;
			line-height: 1.3;
		    text-align: justify;

        }

        .mission h2, .vision h2 {
            color: #6a1b9a;
            margin-bottom: 20px;
           
        }

        .values {
            background-color: #f5e9f9;
            padding: 60px 20px;
            text-align: center;
        }

        .values-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .values h2 {
            color: #6a1b9a;
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .values p.subtitle {
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 40px;
        }

        .values-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin-top: 40px;
        }

        .value-card {
            flex: 1 1 20%;
            min-width: 250px;
            padding: 30px 20px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            border-top: 3px solid #e83e8c;
        }

        .value-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }

        .value-icon {
            font-size: 2.5rem;
            color: #e83e8c;
            margin-bottom: 20px;
        }

        .value-card h3 {
            color: #6a1b9a;
            margin-bottom: 15px;
            font-family: 'Playfair Display', serif;
        }
		.values-grid h3{
			font-family:calibri;
			font-size:22px;
		}
		.values-grid p{
			font-family:calibri;
			font-size:17px;
		}
		  /* Contact Page Specific Styles */
        .contact-hero {
            background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1521791136064-7986c2920216?ixlib=rb-1.2.1&auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 100px 20px;
        }

        .contact-hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            font-family: 'Playfair Display', serif;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .contact-hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
        }

        .contact-container {
            max-width: 1200px;
            margin: 50px auto;
            padding: 0 20px;
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
        }

        .contact-info {
            flex: 1 1 45%;
            min-width: 300px;
        }

        .contact-info h2 {
            color: #6a1b9a;
            margin-bottom: 30px;
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            position: relative;
            padding-bottom: 15px;
        }

        .contact-info h2:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 80px;
            height: 3px;
            background-color: #e83e8c;
        }

        .contact-details {
            margin-bottom: 40px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
        }

        .contact-icon {
            background-color: #e83e8c;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            margin-right: 20px;
            flex-shrink: 0;
        }

        .contact-text h3 {
            color: #6a1b9a;
            margin-bottom: 5px;
            font-size: 1.3rem;
        }

        .contact-text p, .contact-text a {
            color: #555;
            text-decoration: none;
            transition: color 0.3s;
        }

        .contact-text a:hover {
            color: #e83e8c;
        }

        .business-hours {
            background-color: #f5e9f9;
            padding: 25px;
            border-radius: 8px;
        }

        .business-hours h3 {
            color: #6a1b9a;
            margin-bottom: 15px;
            font-family: 'Playfair Display', serif;
        }

        .hours-item {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px dashed #d1c4e9;
        }

        .hours-item:last-child {
            border-bottom: none;
        }

        .hours-day {
            font-weight: 500;
            color: #6a1b9a;
        }

        .hours-time {
            color: #555;
        }

        .map-container {
            flex: 1 1 45%;
            min-width: 300px;
            height: 500px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Contact Form Section */
        .contact-form-section {
            background-color: #f5e9f9;
            padding: 60px 20px;
        }

        .form-container {
            max-width: 1000px;
            margin: 0 auto;
            background-color: white;
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .form-container h2 {
            color: #6a1b9a;
            margin-bottom: 30px;
            font-family: 'Playfair Display', serif;
            text-align: center;
            font-size: 2.2rem;
        }

        .form-row {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 20px;
        }

        .form-group {
            flex: 1 1 45%;
            min-width: 250px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #6a1b9a;
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #d1c4e9;
            border-radius: 4px;
            font-size: 1rem;
            transition: border-color 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #e83e8c;
            outline: none;
        }

        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }

        .form-group.full-width {
            flex: 1 1 100%;
        }

        .submit-btn {
            background-color: #e83e8c;
            color: white;
            border: none;
            padding: 14px 30px;
            font-size: 1.1rem;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s;
            display: block;
            margin: 30px auto 0;
            font-weight: 500;
        }

        .submit-btn:hover {
            background-color: #6a1b9a;
        }
	.err-lbl{
		color:crimson;
	}	
	.dr-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            padding: 20px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            backdrop-filter: blur(10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
	 .left-box {
            flex: 0 0 30%;
            padding: 30px;
            background: linear-gradient(145deg, #1a2a32, #2a3b43);
            border-radius: 12px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .left-box h1 {
            font-size: 2.2rem;
            margin-bottom: 15px;
            color: #6dd5ed;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }
        
        .left-box p {
            line-height: 1.6;
            color: #cfd9db;
            margin-top: 10px;
        }
        
        .right-box {
            flex: 1;
            min-width: 300px;
            padding: 20px;
            background: linear-gradient(145deg, #1a2a32, #2a3b43);
            border-radius: 12px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .gallery-container {
            overflow: hidden;
            padding: 15px 0;
            position: relative;
        }
        
        .gallery-track {
            display: flex;
            animation: scroll 30s linear infinite;
            padding: 10px 0;
        }
        
        .gallery-item {
            flex: 0 0 auto;
            width: 250px;
            margin: 0 15px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
        }
        
        .gallery-item img {
            width: 100%;
            height: 180px;
            object-fit: contain;
            display: block;
            border-bottom: 2px solid #6dd5ed;
        }
        
        .gallery-content {
            padding: 15px;
            text-align: center;
        }
        
        .gallery-content h3 {
            font-size: 1.2rem;
            margin-bottom: 5px;
            color: #6dd5ed;
        }
        
        .gallery-content p {
            color: #a0b1b9;
            font-size: 0.9rem;
        }
        
        .controls {
            display: flex;
            justify-content: center;
            margin-top: 20px;
            gap: 10px;
        }
        
        .btn {
            padding: 8px 20px;
            background: #6dd5ed;
            color: #1a2a32;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
        }
        
        .btn:hover {
            background: #4abfd9;
            transform: translateY(-2px);
        }
        
        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(calc(-250px * 5 - 15px * 10));
            }
        }
		.ab-rgno{
			text-decoration:none;
			color:#000;
		}
		.ab-rgno:hover{
			font-weight:bold;
			 transition: all 0.3s ease;
		}
		.menu-toggle {
            display: none;
            flex-direction: column;
            justify-content: space-around;
            width: 30px;
            height: 25px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0;
            margin-right: 15px;
        }

        .menu-toggle span {
            width: 100%;
            height: 3px;
            background-color: #333;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        /* Mobile menu open state */
        .menu-toggle.open span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .menu-toggle.open span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.open span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

		 @media (max-width: 900px) {
            .left-box, .right-box {
                flex: 0 0 100%;
            }
            
            .left-box {
                padding: 20px;
            }
            
            .left-box h1 {
                font-size: 1.8rem;
            }
			.menu {
                flex-direction: column;
            }
			.menu-toggle {
                display: flex;
            }

            nav ul.menu {
                display: none;
                flex-direction: column;
                width: 100%;
                top: 100%;
                left: 0;
               
                box-shadow: 0 2px 5px rgba(0,0,0,0.2);
                z-index: 1000;
            }

            nav ul.menu.active {
                display: flex;
            }

            nav ul.menu li {
                width: 100%;
                text-align: center;
            }

            nav ul.menu li a {
                display: block;
                padding: 15px;
                border-bottom: 1px solid #eee;
            }
            
            .logo-container {
                flex-wrap: wrap;
            }
            
            .registration-box {
                margin-top: 10px;
                width: 100%;
                justify-content: center;
            }
        }
        @media (max-width: 768px) {
            .news-label {
                display: none;
            }
            
            .social-icons {
                display: none;
            }
            
            .scrolling-text {
                font-size: 1rem;
                padding: 0 15px;
                animation: scrollText 15s linear infinite;
            }
			  .carousel-container {
                height: 300px;
            }
            
            .carousel-content h2 {
                font-size: 2rem;
            }
            
            .carousel-content p {
                font-size: 1.2rem;
            }
			.events-container {
				flex-direction: column;
			}
			  .right {
				max-height: 300px;
			  }
			  .footer-column {
				flex: 1 1 100%;
			  }
			  
            .about-hero {
                padding: 80px 20px;
            }
            
            .about-hero h1 {
                font-size: 2.5rem;
            }
            
            .mission, .vision {
                flex: 1 1 100%;
            }
            
            .value-card {
                flex: 1 1 40%;
            }
			 .contact-hero h1 {
                font-size: 2.5rem;
            }
            
            .contact-info, .map-container {
                flex: 1 1 100%;
            }
            
            .map-container {
                height: 400px;
            }
		}

        @media (max-width: 600px) {
            .menu {
                flex-direction: column;
            }
			 .about-hero h1 {
                font-size: 2rem;
            }
            
            .about-image {
                height: 300px;
            }
            .value-card, .team-member {
                flex: 1 1 100%;
            }
			.contact-hero h1 {
                font-size: 2rem;
            }
            
            .form-container {
                padding: 30px 20px;
            }
            
            .form-group {
                flex: 1 1 100%;
            }
			.df{
				display:block;
				
			}
			.dr-msg{
				padding:0px;
			}
			.dr-msg2{
				line-height:1.6;
			}
			.dr-img {
				margin: auto;
				margin-bottom:10px;
				display: block;
			}
			 .gallery-item {
                width: 200px;
            }
            
            @keyframes scroll {
                0% {
                    transform: translateX(0);
                }
                100% {
                    transform: translateX(calc(-200px * 5 - 15px * 10));
                }
            }
			.logo-container{
                flex-direction: column;
                text-align: center;
                gap: 0px;
			}
        }