* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #fff;
}

/* HEADER */

header {
    width: 100%;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

nav {
    width: 90%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

/* LOGO */

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo a img {
    width: 60px;
    height: 60px;
}

.logo a h1 {
    font-size: 22px;
    color: #333;
}

.logo a span {
    color: #007bff;
}

/* NAV LINKS */

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links li a {
    text-decoration: none;
    color: #007bff;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    transition: 0.3s;
}

/* Hover animation */

.nav-links li a::after {
    content: "";
    width: 0;
    height: 2px;
    background: #007bff;
    position: absolute;
    left: 0;
    bottom: -5px;
    transition: 0.3s;
}

.nav-links li a:hover::after {
    width: 100%;
}

.nav-links li .active {
    border-bottom: 2px solid #007bff;
}

/* MENU BUTTON */

.menu-btn {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* Hero section start */

.hero {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
}

/* SLIDES */

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* OVERLAY */

.slide::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

/* TEXT CONTENT */

.slide-content {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    color: white;
    z-index: 2;
    max-width: 550px;
    /* controls text width */
}

.slide-content .hash {
    font-size: 16px;
    margin-bottom: 10px;
    color: #e2a216;
    font-weight: bold;
}

.slide-content .title {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.slide-content p {
    font-size: 18px;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    margin-right: 10px;
    transition: 0.3s;
}

.slide-content .btn-secondary {
    background: transparent;
    border: 2px solid white;
}

.btn:hover {
    background: #0056d2;
}

.btn-secondary:hover {
    background: white;
    color: black;
}

/* ARROWS */

.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 30px;
    padding: 10px 18px;
    cursor: pointer;
    z-index: 3;
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.prev:hover,
.next:hover {
    background: #007bff;
}

/* hero section end */

/* Feature section start */

.features {
    padding: 80px 5%;
    background: #f5f7fb;
}

.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

/* CARD */

.feature-card {
    padding: 40px 25px;
    text-align: center;
    border-radius: 10px;
    color: white;
    transition: 0.4s;
    cursor: pointer;
}

/* ICON */

.feature-card i {
    font-size: 40px;
    margin-bottom: 15px;
}

/* TITLE */

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

/* PARAGRAPH */

.feature-card p {
    font-size: 15px;
    line-height: 1.5;
}

/* DIFFERENT COLORS */

.card1 {
    background: #007bff;
}

.card2 {
    background: #ff6b6b;
}

.card3 {
    background: #20c997;
}

.card4 {
    background: #6610f2;
}

/* HOVER EFFECT */

.feature-card:hover {
    background: #222;
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Feature section end */

/* Campus Facilities section start */

.campus {
    padding: 80px 8%;
    background: #f5f7fb;
}

.section-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #222;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 60px;
    font-size: 18px;
}

.facility {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}

.reverse {
    flex-direction: row-reverse;
}

/* IMAGE */

.facility-img {
    flex: 1;
}

.facility-img img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-top-left-radius: 80px;
    border-bottom-right-radius: 80px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* CONTENT */

.facility-content {
    flex: 1;
}

.facility-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #333;
}

.facility-content p {
    font-size: 17px;
    line-height: 1.6;
    color: #555;
}

/* Campus Facilities section end */

/* Testimonial section start */

.testimonial {
    padding: 80px 5%;
    background: #f5f7fb;
    text-align: center;
}

.small-heading {
    color: #007bff;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 10px;
}

.testimonial-title {
    font-size: 36px;
    margin-bottom: 50px;
}

.testimonial-container {
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
}

.testimonial-slider {
    display: flex;
    gap: 30px;
    transition: 0.6s ease;
}

.testimonial-card {
    min-width: calc(33.33% - 20px);
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: 0.4s;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.testimonial-card img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.role {
    color: #777;
    font-size: 14px;
    margin-bottom: 10px;
}

.testimonial-card p {
    font-size: 15px;
    line-height: 1.6;
}

/* About page start */

/* HERO */

.about-hero {
    height: 350px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(image/slider_image2.png);
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero-content h1 {
    font-size: 50px;
    margin-bottom: 10px;
}

/* ABOUT */

.about-school {
    padding: 80px 8%;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: .4s;
}

.about-image img:hover {
    transform: scale(1.05);
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.about-text p {
    font-size: 17px;
    line-height: 1.6;
    color: #555;
}

.about-text .btn {
    padding: 12px 25px;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    margin-top: 10px;
}

/* COUNTERS */

.counter {
    background: #f5f7fb;
    padding: 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    text-align: center;
    gap: 20px;
}

.counter-box {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: .4s;
}

.counter-box:hover {
    transform: translateY(-10px);
}

.counter-box h2 {
    font-size: 40px;
    color: #007bff;
    margin-bottom: 10px;
}

/* MISSION */

.mission-vision {
    padding: 80px 8%;
    text-align: center;
}

.mission-container {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.mission-card {
    width: 300px;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: .4s;
}

.mission-card:hover {
    transform: translateY(-10px);
}

.mission-card h3 {
    font-size: 24px;
    color: #007bff;
    margin-bottom: 15px;
}

.mission-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

/* PRINCIPAL */

.principal {
    padding: 80px 8%;
}

.principal-container {
    display: flex;
    gap: 50px;
    align-items: center;
}

.principal-container .principal-text h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.principal-container .principal-text p {
    font-size: 17px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 10px;
}

.principal-img img {
    width: 300px;
    height: 350px;
    border-radius: 12px;
}

/* TEACHERS */

.teachers {
    padding: 80px 8%;
    text-align: center;
}

.teacher-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.teacher-card {
    width: 250px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: .4s;
}

.teacher-card:hover {
    transform: translateY(-10px);
}

.teacher-card img {
    width: 100%;
    height: 250px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.teacher-card h3 {
    color: #007bff;
    margin-bottom: 5px;
}

.teacher-card p {
    color: #777;
    font-size: 14px;
}

/* WHY */

.why {
    padding: 80px 8%;
    background: #f5f7fb;
    text-align: center;
}

.why-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.why-box {
    width: 260px;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.why-box h3 {
    font-size: 24px;
    color: #007bff;
    margin-bottom: 15px;
}

.why-box p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

/* CTA */

.cta {
    background: #007bff;
    color: white;
    text-align: center;
    padding: 60px;
}

.cta h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta p {
    font-size: 18px;
    margin-bottom: 20px;
}

.cta-btn {
    background: white;
    color: #007bff;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 25px;
    margin-top: 10px;
    display: inline-block;
}


/* About page end */


/* Admission page start */


/* HERO */

.admission-hero {
    height: 350px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(image/admission.jpg);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 50px;
    margin-bottom: 10px;
    animation: fadeDown 1s;
}

.hero-content p {
    margin-bottom: 20px;
    animation: fadeUp 1s;
}

.hero-btn {
    background: #007bff;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 25px;
    transition: .3s;
}

.hero-btn:hover {
    background: #0056d2;
}

/* SECTION TITLE */

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
}

/* INFO */

.admission-info {
    padding: 80px 8%;
}

.info-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.info-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: .4s;
}

.info-box:hover {
    transform: translateY(-10px);
}

.info-box h3 {
    font-size: 24px;
    color: #007bff;
    margin-bottom: 15px;
}

.info-box p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

/* STEPS */

.steps {
    padding: 80px 8%;
    background: #f5f7fb;
    text-align: center;
}

.steps-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.step {
    width: 200px;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: .4s;
}

.step:hover {
    transform: scale(1.1);
}

.step h3 {
    font-size: 40px;
    color: #007bff;
    margin-bottom: 10px;
}

.step p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

/* FORM */

.admission-form {
    padding: 80px 8%;
}

form {
    max-width: 800px;
    margin: auto;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

input,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    transition: all 0.3s ease-in-out;
}

textarea {
    height: 120px;
    margin-bottom: 20px;
}

input:focus,
textarea:focus {
    border-color: #007bff;
    outline: none;
}

input:hover,
textarea:hover {
    border-color: #007bff;
}

.submit-btn {
    background: #007bff;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: .3s;
}

.submit-btn:hover {
    background: #0056d2;
}

/* ANIMATION */

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Admission page send */


/* Classes Page start */

/* HERO */

.classes-hero {
    height: 320px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(image/classes.jpg);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 10px;
    animation: fadeDown 1s;
}

.hero-content p {
    animation: fadeUp 1s;
}

/* SECTION */

.section-title {
    text-align: center;
    font-size: 36px;
    margin: 60px 0 40px;
}

/* CLASSES */

.classes-section {
    padding: 0 8%;
}

.classes-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.class-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: .4s;
}

.class-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.class-card h3 {
    font-size: 24px;
    color: #007bff;
    margin-bottom: 15px;
}

.class-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

/* SUBJECTS */

.subjects {
    padding: 80px 8%;
    background: #f5f7fb;
}

.subjects-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.subject-box {
    background: white;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: .3s;
}

.subject-box:hover {
    background: #007bff;
    color: white;
    transform: scale(1.05);
}

/* FEATURES */

.features {
    padding: 80px 8%;
    text-align: center;
}

.features-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-box {
    width: 260px;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: .4s;
}

.feature-box:hover {
    transform: translateY(-10px);
}

.feature-box h3 {
    font-size: 24px;
    color: #007bff;
    margin-bottom: 15px;
}

.feature-box p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

/* ANIMATIONS */

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Classes Page end */

/* Contact Page Start */

/* HERO */

.contact-hero {
    height: 300px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(image/contact.jpg);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 10px;
    animation: fadeDown 1s;
}

.hero-content p {
    animation: fadeUp 1s;
}

/* SECTION TITLE */

.section-title {
    text-align: center;
    font-size: 36px;
    margin: 60px 0 40px;
}

/* CONTACT INFO */

.contact-info {
    padding: 0 8%;
}

.info-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.info-card {
    background: white;
    padding: 40px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: .4s;
}

.info-card i {
    font-size: 30px;
    color: #007bff;
    margin-bottom: 15px;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.info-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

/* CONTACT FORM */

.contact-form {
    padding: 80px 8%;
}

.form-container {
    max-width: 900px;
    margin: auto;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

input,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

textarea {
    height: 120px;
    margin-bottom: 20px;
}

.submit-btn {
    background: #007bff;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: .3s;
}

.submit-btn:hover {
    background: #0056d2;
}

/* MAP */

.map {
    margin-top: 40px;
    padding: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);

}

/* ANIMATION */

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Contact Page End */


/* Footer start*/


.footer {
    background: #0d1b2a;
    color: white;
    padding-top: 60px;
}

.footer-container {
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
}

.footer-box h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

.footer-logo {
    color: #00b4ff;
    margin-bottom: 15px;
}

.contact-box p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #ccc;
    font-size: 14px;
}

.contact-box i {
    color: #00b4ff;
    font-size: 16px;
}


.footer-box ul {
    list-style: none;
}

.footer-box ul li {
    margin-bottom: 10px;
}

.footer-box ul li a {
    text-decoration: none;
    color: #ccc;
    transition: 0.3s;
}

.footer-box ul li a:hover {
    color: #00b4ff;
    padding-left: 6px;
}

/* SOCIAL ICONS */

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1b263b;
    border-radius: 50%;
    color: white;
    transition: 0.4s;
}

.social-icons a:hover {
    background: #00b4ff;
    transform: translateY(-5px);
}

/* BOTTOM */

.footer-bottom {
    text-align: center;
    padding: 15px;
    background: #08121c;
    font-size: 14px;
    color: #aaa;
}

/* Footer end*/

/* Responsive */

@media(max-width:900px) {

    .testimonial-card {
        min-width: calc(50% - 20px);
    }

    .about-container,
    .principal-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 36px;
    }

}

@media(max-width:600px) {

    .testimonial-card {
        min-width: 100%;
    }

}

/* Testimonial section end */

/* MOBILE */

@media (max-width:768px) {

    .nav-links {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 20px 0;
        display: none;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .menu-btn {
        display: block;
    }

    .hero {
        height: 75vh;
    }

    .slide-content {
        left: 5%;
        max-width: 90%;
    }

    .title {
        font-size: 30px;
    }

    .slide-content p {
        font-size: 16px;
    }

    .hash {
        font-size: 14px;
    }

    .prev,
    .next {
        font-size: 22px;
        padding: 8px 14px;
    }

    .facility {
        flex-direction: column;
        text-align: center;
    }

    .reverse {
        flex-direction: column;
    }

    .facility-img img {
        height: 250px;
    }

    .testimonial-title {
        font-size: 28px;
    }



    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .features-container {
        flex-direction: column;
        align-items: center;
    }

    .form-container {
        padding: 10px;
    }

    form {
        padding: 10px;
    }

    .form-row {
        flex-direction: column;
    }

    .hero-content h1 {
        font-size: 36px;
    }

}

@media (max-width:480px) {

    .hero {
        height: 70vh;
    }

    .title {
        font-size: 24px;
    }

    .slide-content p {
        font-size: 14px;
    }

    .btn {
        display: block;
        margin-bottom: 10px;
        width: 180px;
        text-align: center;
    }

}
