/* Font */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;900&display=swap");

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    

}

body {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
   /*  background-image: linear-gradient(to right, #aefffc, rgb(140, 255, 213)) */
  

}
.single-feature{
    background-color: #6bf3c1;
}
/* h2, h1, p, h3, li{
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7) !important;
} */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    margin: 0;
    padding: 0;
}

ul,
li {
    list-style: none;
    margin-bottom: 0;
    padding: 0;
}

a:link,
a:focus,
a:hover,
a:active {
    text-decoration: none;
    margin-bottom: 0;
}

p {
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
}

/* Section Heading Styles */
.section-heading {
    padding-bottom: 14px;
    position: relative;
    display: inline-block;
}

.section-heading:before {
    position: absolute;
    content: "";
    bottom: 80px;
    width: 50px;
    margin-left: 0px;
    height: 5px;
    /* background: #ffffff; */
}

/* .seaction-heading-dark:before {
    background: #fff;
} */

.section-heading h2 {
    font-size: 44px;
    /* color: #fff; */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}

/* .seaction-heading-dark h2 {
    color: #fff;
} */

.section-heading p {
    font-size: 18px;
    /* color: #ffffff; */
    font-weight: 400;
    line-height: 1.5;
}

/* .seaction-heading-dark p {
    color: #fff;
} */

/* Header Styles */
/* Header Styles */
.header-area {
    width: 100%;
    transition: all 0.3s ease; 
}
.header-area.scrolled {
    backdrop-filter: blur(10px); /* Apply blur effect */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional: Adds depth */
}

.header-area .logo {
    margin-top: 25px;
}

.navigation {
    margin-top: 30px;
    margin-right: 30px;
}

.navigation ul li {
    display: inline-block;
}

.navigation ul li a {
    font-size: 13px;
    color: #30db8e;
    margin: 0 15px;
    font-weight: 700;
    padding: 30px 0;
    display: inline-block;
    position: relative; /* For positioning the underline */
    transition: all 0.4s ease;
    text-decoration: none; /* Remove the default underline */
}

.navigation ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 10px; /* Adjust position of underline */
    width: 0;
    height: 3px; /* Thickness of the underline */
    background-color: #6bf3c1; 
    transition: width 0.4s ease; /* Smooth transition for underline */
}

.navigation ul li a:hover::after {
    width: 100%; /* Full width underline on hover */
}

.register-btn {
    margin-left: 20px;
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

/* Styling the button with a black border */
.register-btn a {
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    background: #a602c4; /* Initial red background */
    display: inline-block;
    padding: 12px;
    /* Fine black border */
    border-radius: 10px;
    transition: all 0.4s ease;
}

/* Hover effect: changing to a variation of the red */
.register-btn a:hover {
    background: #d405fa; /* Slightly lighter red variation */
    color: #fff;
}

.btn-acheter {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ff6b6b; /* Couleur du bouton */
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.btn-acheter:hover {
    background-color: #ff3b3b; /* Couleur au survol */
}

/* mobile menu styles */
.mobile-menu-btn-wrapper {
    margin-top: 30px;
    margin-left: 20px;
    display: none;
}

.mobile-menu-btn-wrapper a {
    font-size: 35px;
    color: #30db8e;
}
.mobile-menu-wrapper {
  display: none;
  position: fixed;
  background: #fff;
  right: 0;
  top: 0;
  height: 100vh;
  width: 50%;
  transform: translateX(100%);
  transition: all 0.4s ease;
  z-index: 9999; /* High value to ensure it stays on top */
}


.mobile-menu-wrapper.active {
    transform: translateX(0);
}

.mobile-menu-wrapper ul {
    margin-top: 150px;
    margin-left: 50px;
}

.mobile-menu-wrapper ul li {
    margin-bottom: 20px;
}

.mobile-menu-wrapper ul li a {
    font-size: 16px;
    color: #111;
    font-weight: 500;
    line-height: 1.5;
    transition: all 0.4s ease;
}

.mobile-menu-wrapper ul li a:hover {
    color: #104176;
}

.mobile-menu-close-btn {
    position: absolute;
    top: 30px;
    left: 30px;
    font-size: 30px;
    color: #111;
}

/* Hero Styles */
.hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20%;
    height: 100%;
}

.form-container {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;

    width: 100%;
}

.form-container h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}



.form-container button:hover {
    background-color: #0056b3;
}

.hero-area {
    height: 100vh;
    width: 100%;
   /*  background-image: linear-gradient(to right, #aefffc, rgb(140, 255, 213)) */
}

.hero-left h2 {
    font-size: 60px;
    font-weight: 600;
    /* color: #fff; */
    line-height: 1.2;
    margin-bottom: 20px;
}


.hero-left p {
    /* color: #ffffff; */
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
}

.hero-btn-wrapper {
    margin-top: 30px;
}

.hero-btn-wrapper a {
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 500;
    /* color: #fff; */
    display: inline-block;
    padding: 12px 35px;
    border-radius: 50px;
    letter-spacing: 1px;
    border: 2px solid #fff;
    transition: all 0.4s ease;
}

.hero-btn-wrapper a:first-child {
    margin-right: 20px;
}

/* .hero-btn-wrapper a:first-child:hover {
    background-color: #fff;
    color: #111;
} */

/* .hero-btn-wrapper a:last-child {
    background: #fff;
    color: #111;
}

.hero-btn-wrapper a:last-child:hover {
    background: transparent;
    color: #fff;
} */

/* Services Styles */
.service-area {
    padding: 0px 0 110px;
   /*  background-image: linear-gradient(to right, #aefffc, rgb(140, 255, 213)) */
}

.service-area h1 {
    color: #ffffff;
}

.single-article {
    background-color: transparent; /* No background color */
    border-radius: 15px; /* Smooth rounded corners */
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2); /* Soft shadow for distinction */
    margin-bottom: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth animation on hover */
    height: 350px; /* Fixer la hauteur de chaque article */
    position: relative;
    padding-bottom: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3); /* Light border for better separation */
}

.single-article:hover {
    transform: translateY(-5px); /* Lift effect on hover */
    box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.3); /* Enhanced shadow on hover */
}

.article-image {
    width: 100%;
    height: 150px; /* Fixer la hauteur de l'image */
    object-fit: cover; /* Ajuster l'image pour remplir l'espace */
}

.article-content {
    padding: 15px;
    height: 200px; /* Fixer la hauteur du contenu */
    overflow: hidden; /* Cacher tout ce qui dépasse */
}

.article-content h5 {
    font-size: 0.875rem;
    color: #ffffff;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; /* Couper le texte avec des points de suspension */
}

.article-content h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; /* Couper le texte avec des points de suspension */
}

.article-content p {
    font-size: 0.875rem;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; /* Couper le texte avec des points de suspension */
}

/* About Styles */
.about-us {
    padding: 70px 0;
   /*  background-image: linear-gradient(to right, #aefffc, rgb(140, 255, 213)) */
}

.about-right h2 {
    font-size: 50px;
    /* color: #fff; */
    font-weight: 900;
    margin-bottom: 15px;
    line-height: 1.2;
}

.about-right p {
    font-size: 22px;
    line-height: 2;
    font-weight: 300;
    /* color: #ffffff; */
    margin-bottom: 15px;
}

.about_accordion {
    max-width: 100%; /* Ensure the accordion fits within its container */
    margin-bottom: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Add some shadow to distinguish */
}

.accordion-item {
    border: 1px solid #ddd; /* Set a border to each accordion item */
    border-radius: 5px; /* Smooth corners */
    margin-bottom: 10px; /* Space between items */
    background-color: white;
}

.accordion-item h2 {
    margin: 0;
    font-size: 1.25rem;
}

.accordion-button {
    padding: 0.7rem;
    background-color: #f8f9fa; /* Light background for accordion buttons */
    color: #000;
    border: none;
    border-radius: 5px; /* Rounded corners for buttons */
    transition: background-color 0.3s ease;
}

.accordion-button:hover {
    background-color: #e9ecef; /* Slight hover effect */
}

.accordion-button:not(.collapsed) {
    background-color: #e9ecef; /* Background for active item */
}

.accordion-button:focus {
    box-shadow: none; /* Remove focus outline */
}

.accordion-collapse {
    padding: 10px 15px;
    background-color: #fff;
}

.accordion-item:last-child .accordion-button {
    border-radius: 0 0 4px 4px;
}

/* Ensure the accordion is responsive */

/* Feature Styles */
.features-area {
    padding: 50px 0 110px;
   /*  background-image: linear-gradient(to right, #aefffc, rgb(140, 255, 213)) */
}

.single-feature {
    flex: 1;
    padding: 30px;
    box-shadow: 10px 10px 40px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #089f5b;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
}

.single-feature h3 {
    font-size: 20px;
    color: #ffffff;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.single-feature p {
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}

.features-container {
    display: flex;
    justify-content: center;
}

.features-row {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping to next line */
    gap: 50px; /* Adjust spacing between items */
}

/* Testimonial Styles */

/* FAQ Styles */
.faq-area {
    padding: 0px 0;
   /*  background-image: linear-gradient(to right, #aefffc, rgb(140, 255, 213)) */
}

.faq-area .col-xl-6,
.faq-area .col-lg-6 {
    display: flex;
    flex-direction: column;
}

.faq-area .accordion-item {
    border: 1px solid #d20a0a;
    border-radius: 0;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
   /*  background-image: linear-gradient(to right, #aefffc, rgb(140, 255, 213)) */
}

.faq-area .accordion-button {
    background: transparent;
    border: none;
    font-size: 1.2rem;
    font-weight: bold;
}

.faq-area .accordion-button:focus {
    box-shadow: none;
}

.faq-area .accordion-button:not(.collapsed) {
    border-bottom: 8px solid #104176;
}

.faq-area .accordion-button.collapsed {
    border-bottom: none;
}

.faq-area .accordion-body {
    padding: 20px;
    font-size: 1rem;
}

/* Price Styles */

/* Contact Styles */

/* Footer Styles */
.footer-area {
    padding: 50px;
    background: #111;
}

.footer-area .copyright-text {
    font-size: 16px;
    color: #fff;
    font-weight: 400;
    line-height: 1.5;
}

.footer-area .footer-social li {
    display: inline-block;
}

.footer-area .footer-social li a {
    font-size: 15px;
    color: #fff;
    background: #182df0;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    display: inline-block;
    margin: 0 10px;
    transition: all 0.4s ease;
}

.footer-area .footer-social li a:hover {
    background: #fff;
    color: #111;
}

.video-container {
    position: relative;
}

.video-container video {
    width: 100%;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    color: white;
    font-size: 3em;
    cursor: pointer;
}

.play-btn:hover {
    color: rgba(255, 255, 255, 0.7);
}

.news_container {
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(0, 350px));/* Two columns */
    gap: 20px; /* Adjust spacing between cards */
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}


.card {
    flex: 1;
    margin: 20px;
    height: 320px;
  
    position: relative;
    overflow: hidden;
    /* 圓角 */
    box-shadow: 0 0 20px rgba(64, 86, 98, 0.5); /* 外陰影 */
}
.card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0)
        linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.7) 80%); /* 圖片的灰階半透明漸層遮罩 */
    z-index: 0; /* z軸的位置 */
}
a.link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* z軸的位置 */
}
.img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 讓圖片適應容器寬高，且保持原有比例，但部分内容可能被剪切。 */
    transition: transform 3s ease; /* ease 為漸起始值較慢，中間速率加快，結尾趨 */
    position: relative;
    /* z軸的位置 */
}
.info {
    position: absolute;
    width: calc(100% - 40px);
    bottom: 0;
    padding: 20px;
    color: #ffffff;
    transition: background-color 1.5s ease;
}
h2.title {
    transition: color 1s ease;
    margin-bottom: 12px;
}
.date {
    font-size: 14px;
    margin-bottom: 10px;
    color: #ccc;
}
.detail {
    max-height: 0;
    opacity: 0;
    transition: max-height 1.5s ease, opacity 1s ease;
}
.detail p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.btn-more {
    width: 80px;
    display: block;
    background-color: black;
    border: 1px solid #fff;
    border-radius: 20px;
    color: #fff;
    font-size: 12px;
    text-align: center;
    margin-left: auto;
    padding: 6px 6px;
    margin-top: 12px;
    text-decoration: none;
}
.card:hover .img {
    transform: scale(1);
}
.card:hover .info {
    background-color: rgba(0, 0, 0, 0.6);
}
.card:hover .detail {
    max-height: 78px;
    opacity: 1;
}
.card:hover h2.title {
    color: #ffc107;
}
.subtitle {
    display: none;
}

.faq-area .row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.accordion {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin: 50px auto;
    border-radius: 10px;
   /*  background-image: linear-gradient(to right, #aefffc, rgb(140, 255, 213)) */
    
}

.tab {
    position: relative;
    flex: 1 0 20%;
    height: 400px;
    background: #000;
    color: #fff;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
    overflow: hidden;
}

.tab img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease;
    z-index: 1;
}

/* Center caption in the middle */
.caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Perfect center */
    z-index: 2;
    text-align: center;
    opacity: 0;
    color: white;
    transition: opacity 0.5s ease;
}

.caption h2 {
    margin-bottom: 5px;
    font-size: 1.6rem;
    text-transform: uppercase;
}

.caption p {
    margin: 0;
    font-family: "Open Sans", sans-serif;
    font-size: 0.9rem;
}

/* Hover Effects */
.tab:hover img {
    opacity: 0.6;
}

.tab:hover {
    flex-grow: 5;
}

.tab:hover .caption {
    opacity: 1;
}

/* Adjust other tabs during hover */
.accordion .tab:not(:hover) {
    flex-grow: 1;
    transition: flex-grow 0.5s ease-in-out;
}

/* Responsive */

/* Footer Styling */
footer {
    background-color: #1a1a1a;
    color: #f0f0f0;
    padding: 50px 0 20px;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: #fff;
    font-size: 1.2em;
    margin-bottom: 20px;
    position: relative;
}

.footer-section h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 30px;
    height: 2px;
    background-color: #089f5b;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #089f5b;
}

.footer-section ul li a i {
    margin-right: 5px;
    color: #089f5b;
}

.social-links {
    margin-bottom: 20px;
}

.social-links a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background-color: #333;
    color: #fff;
    text-align: center;
    line-height: 35px;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #089f5b;
    transform: translateY(-3px);
}

.newsletter h4 {
    margin-bottom: 15px;
}

.newsletter form {
    display: flex;
}

.newsletter input {
    flex-grow: 1;
    padding: 10px;
    border: none;
    border-radius: 3px 0 0 3px;
    outline: none;
}

.newsletter button {
    background-color: #089f5b;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 0 3px 3px 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter button:hover {
    background-color: #2980b9;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #333;
    position: relative;
}

.back-to-top {
    position: absolute;
    right: 20px;
    bottom: 20px;
    background-color: #089f5b;
    color: #fff;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.back-to-top:hover {
    background-color: #3edb94;
}

/* Responsive design */

.payment-option {
    margin-bottom: 10px;
}

.payment-logo {
    width: 50px;
    height: auto;
}

#common-fields,
#orange-fields {
    margin-top: 20px;
}

body {
    article {
        width: 100%;
        max-width: 1000px;

        header {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            width: 100%;
            min-height: 400px;
            padding: 50px;
            border-radius: 16px;
            color: #fff;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;

            .upper-header {
                display: flex;
                justify-content: space-between;
                padding-bottom: 20px;

                .mini-title {
                    font-size: 1.125rem;
                    font-weight: bold;
                    letter-spacing: 0.4rem;
                    text-transform: uppercase;
                    opacity: 0.9;
                }

                .date-since {
                    display: flex;
                    align-items: center;
                    opacity: 0.5;
                    font-size: 0.875rem;

                    .date-value {
                        display: inline-block;
                        padding-bottom: 2px;
                    }

                    svg {
                        width: 20px;
                        margin-left: 10px;
                    }
                }
            }

            .lower-header {
                padding-top: 50px;

                .tags-container {
                    display: flex;
                    align-items: center;
                    opacity: 0.75;
                    margin-bottom: 12px;

                    & > span:not(:nth-child(2))::before {
                        content: ", ";
                    }

                    svg {
                        width: 20px;
                        margin-right: 10px;
                    }

                    span {
                        font-size: 0.875rem;
                    }
                }

                .title {
                    margin: 20px 0;
                    font-size: 3rem;
                    font-weight: bold;
                    opacity: 0.9;
                }

                .subtitle {
                    width: 50%;
                    margin-top: 10px;
                    opacity: 0.75;
                    line-height: 1.75;
                }
            }
        }
    }

    .summary {
        width: 100%;
        display: flex;
        justify-content: space-between;
        margin-top: 50px;
        padding: 30px 50px;
        border-radius: 16px;
        box-shadow: 0 0 0 1px #f2f2f2;

        .summary-item {
            width: 100%;
            padding-right: 20px;

            .item-title {
                color: #999;
            }

            .item-text {
                margin-top: 12px;
                font-size: 1.5rem;
            }
        }
    }

    .main-article {
        width: 100%;
        margin-top: 50px;
        padding-bottom: 50px;
        line-height: 1.75;

        h4 {
            margin-top: 60px;
            margin-bottom: 20px;
            font-size: 1.25em;
        }

        p {
            margin-bottom: 20px;
            color: #777;
            font-size: 1.125em;
        }

        blockquote {
            position: relative;
            margin: 40px 0;
            padding: 40px;
            background-color: #f8f8f8;
            border-radius: 16px;

            &::before {
                content: url("https://icons.craftwork.design/static/media/QuotesFill.f65b03951f44e212816420b00909f4df.svg");
                position: absolute;
                top: -10px;
                left: -10px;
                transform: scale(2);
                opacity: 0.1;
            }

            &::after {
                content: url("https://icons.craftwork.design/static/media/QuotesFill.f65b03951f44e212816420b00909f4df.svg");
                position: absolute;
                bottom: -10px;
                right: -10px;
                transform: scale(2) rotate(180deg);
                opacity: 0.1;
            }
        }

        .gallery {
            display: grid;
            gap: 20px;
            grid-template-areas:
                "img1 img1 img2 img3"
                "img1 img1 img4 img5";
            min-height: 400px;
            margin-top: 40px;

            .image-item {
                min-height: 200px;
                background-color: #eee;
                background-position: center;
                background-repeat: no-repeat;
                background-size: cover;
                border-radius: 8px;
                transition: 250ms;

                &:hover {
                    opacity: 0.9;
                    cursor: pointer;
                }
            }

            .image-1 {
                grid-area: img1;
            }

            .image-2 {
                grid-area: img2;
            }

            .image-3 {
                grid-area: img3;
            }

            .image-4 {
                grid-area: img4;
            }

            .image-5 {
                grid-area: img5;
            }

            .gallery-mask {
                position: fixed;
                top: 0;
                left: 0;
                z-index: 1;
                width: 100vw;
                height: 100vh;
                padding: 40px;
                background-color: #22222288;
                transition: 500ms;

                img {
                    width: 100%;
                    height: 100%;
                    object-fit: contain;
                    transition: 500ms;
                }
            }

            .mask-off {
                visibility: hidden;
                background-color: #22222200;

                img {
                    visibility: hidden;
                    opacity: 0;
                }
            }
        }
    }
}

@media screen and (max-width: 1024px) {
}

@media screen and (max-width: 425px) {
    body article header .upper-header .date-since {
        display: none;
    }
}

@media (max-width: 768px) {
    .about-right h2 {
        font-size: 40px; /* Adjust the size of the heading on smaller screens */
    }

    .accordion-button {
        font-size: 1rem; /* Adjust font size for accordion buttons */
    }

    .navigation ul li {
        display: none;
    }


    .tab {
        flex: 1 1 45%;
        height: 200px;
    }

    .caption h2 {
        font-size: 1.4rem;
    }

    .navigation ul li:last-child {
        display: inline-block;
    }

    /* Adjust mobile menu button position */
    .mobile-menu-btn-wrapper {
        margin-right: 0;
        margin-left: auto;
    }

    .register-btn {
        display: none;
    }

    .register-btn a:last-child {
        display: inline-block;
        margin-left: auto;
    }

    .header-area {
        width: 100%; /* Ensure it takes the full width */
    }

    .row {
        padding: 10px; /* Add padding if necessary for spacing */
    }

    .logo-wrapper {
        margin-right: 0; /* Push the logo to the left */
    }

    .mobile-menu-btn-wrapper {
        margin-left: auto; /* Pushes the menu button to the far right */
    }

    .logo {
        width: 150px; /* Set a specific width for the logo */
        height: auto; /* Maintain aspect ratio */
        max-width: 100%; /* Ensure it doesn't exceed the container width */
    }
    .footer-container {
        flex-direction: column;
    }

    .footer-section {
        margin-bottom: 30px;
    }

    .back-to-top {
        right: 10px;
        bottom: 10px;
    }
    .accordion {
       display: grid;
       grid-template-columns: repeat(2, 1fr); 
       height: auto;
    }

    .tab {
        flex: 1 1 100%;
        height: 250px;
    }

    

    .tab:hover {
        flex: 1 1 100%;
    }
    .news_container {
      display:grid;
     
    }
  
    .card {
      height: 250px; /* Reduce the height for smaller screens */
      width:90%;
    }
  
    .info {
      padding: 10px;
    }
  
    .btn-more {
      width: 60px;
      font-size: 10px;
    }
 

    body article {
        header .lower-header .title {
            word-break: break-all;
        }

        .summary {
            flex-direction: column;

            .summary-item:not(:last-child) {
                padding-bottom: 30px;
            }
        }

        .main-article {
            .gallery {
                grid-template-areas:
                    "img1 img1"
                    "img1 img1"
                    "img2 img3"
                    "img4 img5";
            }
        }
    }
}

