body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}

a {
    text-decoration: none;
}

/* INDEX PAGE START */
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}

a {
    text-decoration: none;
}

/* header-section */
/* navbar-section */
.navbar-section {
    padding: 0px 50px;
    display: flex;
    margin: 0;
    gap: 50px;
}


.navbar-left {
    width: 35%;
    margin: 0;
    display: flex;
    gap: 30px;
}

.navbar-mid {
    width: 40%;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.navbar-right {
    width: 25%;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

.index-logo {
    width: 100px;
    height: auto;
}

.dropdown-list {
    width: 100%;
    margin: 0;
    display: none;
    align-items: center;
    justify-content: space-between;
    font-family: 'Times New Roman', Times, serif;

}

.index-navbar-mid-option {
    font-size: 16px;
    color: #000000;
    margin: 0;
    font-weight: 500;
}

.index-navbar-mid-option a {
    color: #000000;
}




.search {
    width: 15px;
    height: auto;
}


.hashtag-white {
    width: 20px;
    height: 20px;
    background-color: #87122E;
    border-radius: 100%;
    padding: 5px;
}

.nav-donate {
    border: 2px solid white;
    color: white;
    margin: 0;
    padding: 5px 10px;
    border-radius: 5px;
    background-color: #87122E;
}

.nav-donate a {
    color: white;
}

.menu {
    width: 20px;
    height: auto;
    display: none;

}

.index-toggle {
    display: flex;
    border: 1px solid #e6e6e6;
    border-radius: 50px;
}

.index-toggle-left {
    margin: 0;
    background-color: #E0E0E0;
    border-radius: 50px;
    padding: 5px 10px;

}

.index-toggle-right {
    margin: 0;
    padding: 5px 10px;
}



/* Sidebar Styles */
.sidebar {
    position: fixed;
    top: 0;
    right: -300px;
    /* Start offscreen */
    width: 280px;
    height: 100%;
    background-color: white;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease-in-out;
    z-index: 1000;
    overflow-y: auto;
}

.sidebar.active {
    right: 0;
    /* Move into view */
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
}

.sidebar-overlay.active {
    display: block;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #e6e6e6;
}

.sidebar-logo {
    width: 80px;
    height: auto;
}

.close-sidebar {
    font-size: 28px;
    cursor: pointer;
    color: #333;
}

.sidebar-content {
    padding: 20px;
}

.sidebar-menu-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.sidebar-menu-list li {
    margin-bottom: 15px;
}

.sidebar-menu-list li a {
    color: #000000;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    display: block;
    padding: 5px 0;
    transition: color 0.2s;
}

.sidebar-menu-list li a:hover {
    color: #87122E;
}

.sidebar-footer {
    margin-top: 40px;
    border-top: 1px solid #e6e6e6;
    padding-top: 20px;
}

.sidebar-language {
    margin-bottom: 20px;
}

.sidebar-language span {
    cursor: pointer;
    padding: 5px;
}

.sidebar-language span.active {
    font-weight: bold;
    color: #87122E;
}

.sidebar-donate a {
    display: inline-block;
    background-color: #87122E;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
}

/* index-body-section */
.index-body-section {
    padding: 0px 50px;
}

.two-banner-section {
    display: flex;
    margin-top: 80px;
}

.two-banner-left {
    width: 50%;
    background-image: url(./images/257_bloch_fr_couv_fond-814x620.jpg);
    object-fit: cover;
    height: 80vh;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;

}

.two-banner-right {
    width: 50%;
    background-image: url(./images/enquete-terrorisme_2024_couv_fond-003-1527x1080.webp);
    object-fit: cover;
    height: 80vh;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.banner-grid-content {
    background-color: #303869;
    padding: 50px 30px;
    width: 350px;
    height: auto;
}

.banner-grid-content-right {
    background-color: #898989;
    padding: 50px 30px;
    width: 350px;
    height: auto;
}

.banner-grid-head {
    display: flex;
    justify-content: flex-start;
    gap: 30px;
}

.banner-head {
    font-size: 12px;
    margin: 0;
    color: white;
    text-transform: uppercase;
}

.banner-content {
    font-size: 32px;
    margin: 0;
    font-family: 'Times New Roman', Times, serif;
    color: white;
    padding-top: 20px;
}

/* news-grid-section */
.news-grid-section {
    display: flex;
    gap: 20px;
    padding-top: 50px;
}

.news-grid-left {
    width: 50%;
}

.news-grid-mid {
    width: 25%;
}

.news-grid-right {
    width: 25%;
}

.vertical-line {
    width: 1px;
    height: auto;
    background-color: #d4d4d4;
}

.vertical-line-one {
    width: 1px;
    height: auto;
    background-color: #d4d4d4;
}

.news-grid-img {
    width: 100%;
    height: auto;
    padding-bottom: 10px;
}

.news-grid-img-logo {
    width: 20%;
    height: auto;
    padding-bottom: 10px;
}

.news-grid-minihead {
    text-transform: uppercase;
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    color: #999;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 5px;
    padding: 10px 0px;
}

.study-r {
    color: #87122e;
}

.news-grid-img-head {
    color: #000000;
    margin: 0;
    font-size: 32px;
    font-family: 'Times New Roman', Times, serif;
    line-height: 32px;
    padding-top: 0px;
}

.news-grid-img-head-mid {
    color: #000000;
    margin: 0;
    font-size: 24px;
    font-family: 'Times New Roman', Times, serif;
    line-height: 26px;

}

.news-box {
    margin-bottom: 20px;
}

.ad-grid {
    background-image: url(./images/data-fondapol.jpg);
    width: auto;
    height: auto;
    padding: 50px 30px;
    margin-bottom: 50px;
}

.ad-grid-left {
    background-image: url(./images/soutenir-fondation.jpg);
    width: auto;
    height: auto;
    padding: 50px 30px;
    margin-bottom: 50px;
}

.ad-head {
    font-size: 30px;
    margin: 0;
    color: white;
    font-family: 'Times New Roman', Times, serif;
}

.ad-content {
    margin: 0;
    color: white;
    font-size: 16px;
    padding: 20px 0px;
    line-height: 22px;
}

.ad-btn {
    color: #87122E;
    background-color: white;
    width: auto;
    padding: 20px 10px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
}

.news-grid-left-division {
    display: flex;
    margin-top: 30px;
    gap: 20px;
}

.division {
    width: 50%;
}

/* bottom-section */
.bottom-section {
    display: flex;
    gap: 50px;
    align-items: center;
}

.bottom-study {
    font-size: 16px;
    margin: 0;
    color: #87122e;
    text-transform: uppercase;
    font-weight: 600;
}

.bottom-minihead {
    font-size: 16px;
    margin: 0;
    text-transform: uppercase;
    font-weight: 500;
}

.bottom-section-left {
    width: 50%;
}

.bottom-section-right {
    width: 50%;
    background-image: url(./images/lamp-statue.jpg);
}

.bottom-head {
    margin: 0;
    font-size: 75px;
    font-family: 'Times New Roman', Times, serif;
    padding: 20px 0px;
    line-height: 75px;
}

.readmore-btn {
    font-size: 16px;
    margin: 0;
    font-weight: 600;
    background-color: #87122E;
    color: white;
    padding: 10px 20px;
    text-align: center;
    border-radius: 10px;
}

.all {
    color: #87122E;
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    text-decoration: underline;
}

/* INDEX PAGE END */
/* DETAIL PAGE START */

/* header-section */
.header-section {
    margin: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0)),
        url(./images/enquete-terrorisme_2024_couv_fond-003-1527x1080.webp);
    background-size: cover;
    background-position: center;
    width: 100%;
    height: auto;
    padding-bottom: 80px;
}

/* navbar-section */
.navbar-section {
    padding: 0px 50px;
    display: flex;
    margin: 0;
    gap: 50px;
}


.navbar-left {
    width: 35%;
    margin: 0;
    display: flex;
    gap: 30px;
}

.navbar-mid {
    width: 40%;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.navbar-right {
    width: 25%;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

.logo {
    width: 135px;
    height: auto;
}

.navbar-mid-option {
    font-size: 16px;
    color: white;
    margin: 0;
    font-weight: 500;
}

.navbar-mid-option a {
    color: white;
}

.hashtag {
    width: 20px;
    height: 20px;
    background-color: white;
    border-radius: 100%;
    padding: 5px;
}

.toggle {
    display: none;
}


.search {
    width: 15px;
    height: auto;
}

.donate {
    border: 2px solid white;
    color: white;
    margin: 0;
    padding: 5px 10px;
    border-radius: 5px;
}

.donate a {
    color: white;
}

/* header-section-content */
.header-section-content {
    padding: 0px 0px;
    display: flex;
    padding-top: 200px;
    gap: 150px;
}

.logo-content {
    font-size: 19px;
    color: white;
    margin: 0;
    align-items: center;
    display: flex;
}

.header-body-left {
    width: 70%;
}

.header-body-right {
    width: 25%;
    background-color: white;
    padding-bottom: 10px;
}

.content-left-head {
    display: flex;
    gap: 20px;
    padding-top: 50px;
}

.study {
    margin: 0;
    color: white;
    text-transform: uppercase;
    background-color: #898989;
    padding: 5px 20px;
}

.dominique {
    margin: 0;
    color: white;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

.head {
    font-family: 'Times New Roman', Times, serif;
    margin: 0;
    font-size: 85px;
    padding-left: 50px;
    padding-top: 30px;
    color: white;
    font-weight: 500;
}

.head a {
    color: white;
}

.edition {
    font-size: 18px;
    color: white;
    margin: 0;
    font-weight: 500;
    padding-left: 50px;
    padding-top: 40px;
}

.overlap-division {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    padding-left: 50px;
    line-height: 25px;
}

.red-dot {
    width: 5px;
    height: 5px;
    background-color: #898989;
    border-radius: 50%;
    margin: 0px 8px;
}

.overlap-option {
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    color: #898989;
}

.overlap-option a {
    color: #898989;
}

.overlap-banner {
    height: auto;
    width: 250px;
    margin: -3rem auto 0 auto;
    display: flex;
    padding-left: 0px;
    box-shadow: 0px 0px 0px rgba(137, 137, 137, 0.3),
        0px 0px 0px rgba(137, 137, 137, 0.3),
        0px 15px 20px rgba(137, 137, 137, 0.3);
}


.globe {
    width: 20px;
    height: 20px;
    padding-right: 10px;
}

.language {
    margin: 0;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0px;
    color: #898989;
}

.option-round {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.round {
    width: 18px;
    height: auto;
    padding: 10px 8px;
    border-radius: 100%;
    background-color: #888787;
}


.display-section {
    display: none;
}

/* Carousel Section */
.carousel-section {
    border-top: 1px solid #D6D6D6;
    border-bottom: 1px solid #D6D6D6;
    margin: 30px 50px;
    padding: 70px 0px;
    display: flex;
    gap: 30px;
}

.carousel-section-left {
    width: 10%;
    padding-top: 30px;
}

.carousel-section-right {
    width: 90%;
    position: relative;
    overflow: hidden;
}

.related {
    margin: 0;
    font-size: 30px;
    text-align: center;
    font-weight: 500;
    font-family: 'Times New Roman', Times, serif;
}

.navigation {
    display: flex;
    gap: 20px;
    justify-content: center;
    padding: 30px 0px;
    width: 50%;
    justify-content: flex-end;
}

.arrow {
    cursor: pointer;
    transition: transform 0.3s ease, stroke 0.3s ease;
    width: 30px;
    /* You can adjust the size */
    height: 30px;
}

.arrow:hover {
    transform: scale(1.2);
}

.carousel-navigation {
    display: flex;
    justify-content: space-between;
    width: 100%;
    /* Or a specific width depending on your layout */
    padding: 10px;
}





/* .arrow {
    height: 30px;
    width: auto;
    cursor: pointer;
} */

/* Carousel Content */
.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.top-carousel-item {
    gap: 30px;
    width: 70%;
    padding-right: 0px;
    box-sizing: border-box;
    flex-shrink: 0;
    display: flex;
}

.carousel-text {
    width: 65%;
}

.carousel-box {
    display: flex;
    gap: 20px;
}

.carousel-img {
    width: 150px;
    height: auto;
}

.studies {
    font-size: 16px;
    color: #888787;
    margin: 0;
    text-transform: uppercase;
    font-weight: 600;
}

.carousel-box-head {
    margin: 0;
    font-size: 28px;
    font-weight: 400;
    font-family: 'Times New Roman', Times, serif;
}

.carousel-box-head a {
    color: #000000;
}

/* credit-section */
.credit-section {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%),
        url(./images/credit.png) no-repeat center center;
    background-size: cover;
    background-position: center;
    height: auto;
    width: 100%;
    margin: 60px 0 0px;
}

.credit-section-content {
    padding: 0px 250px;
}

.credit-section-content-top {
    display: flex;
    justify-content: flex-start;
    gap: 50px;
}

.credit-section-minihead {
    font-size: 16px;
    margin: 0;
    color: #898989;
    padding: 20px 0px;
    font-weight: 600;
}

.credit-section-summary {
    font-size: 16px;
    line-height: 22px;
    margin: 0;
    color: #1A1713;
}

.credit-section-grid {
    width: 35%;
    padding-bottom: 20px;
}

/* content-section */
.content-section {
    padding: 50px 80px;
    display: flex;
    gap: 80px;
}

.content-section-left {
    width: 20%;
    height: 250px;
    overflow-y: auto;
    position: sticky;
    top: 0;

}

.notes-container {
    width: 100%;
}

.notes-title {
    font-weight: bold;
    margin-bottom: 8px;
}

.note {
    color: #888;
    display: flex;
    align-items: center;
    /* Vertically center the content */
    gap: 10px;
    /* Add some spacing between the content and the toggle button */
}

.toggle-button {
    cursor: pointer;
    font-weight: bold;
    font-size: 18px;
    color: #000;
}

.note-content.collapsed {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    display: inline-block;
    font-size: 14px;
    text-align: start;
}

.content-section-right {
    width: 80%;
}

.lesson {
    font-family: 'Times New Roman', Times, serif;
    font-size: 67px;
    margin: 0;
    font-weight: 500;
    color: #898989;
    text-align: center;
}

.lesson a {
    color: #898989;
}

.pin {
    width: 15px;
    height: auto;
    padding-right: 10px;
}

.share {
    margin: 0;
    font-weight: 400;
    text-decoration: underline;
    padding: 20px 0px;
    text-align: center;
}

.gid-box {
    display: flex;
    gap: 50px;
    padding-top: 50px;
}

.gid-box-left {
    width: 15%;
}

.gid-box-right {
    width: 85%;
}

.number {
    font-family: 'Times New Roman', Times, serif;
    font-size: 60px;
    margin: 0;
    font-weight: 500;
    text-align: right;
}

.gid-box-right-content {
    font-weight: bold;
    color: #000000;
    margin: 0;
    font-size: 20px;
    width: 90%;
    line-height: 28px;
    padding: 20px 0px;
}

.gid-box-right-content a {
    color: #000000;
}

.gid-box-right-content-head {
    font-weight: bold;
    color: #000000;
    margin: 0;
    font-size: 20px;
    width: 100%;
    text-align: center;
    line-height: 28px;
}

.list {
    padding: 30px 0px;
    line-height: 30px;
    font-size: 20px;
    margin-left: 20px;
}

.gid-box-img {
    width: 100%;
    padding: 20px 0px;
}

.copyright {
    font-size: 14px;
    margin: 0;
    color: #898989;
    padding-bottom: 5px;
    line-height: 20px;
}

.share-img {
    margin: 0;
    font-weight: 400;
    text-decoration: underline;
    padding: 20px 0px;
}

.paragraph {
    font-size: 18px;
    margin: 0;
    padding-top: 10px;
    line-height: 30px;
    text-align: justify;
}

.box-paragraph {
    font-size: 18px;
    margin: 0;
    border: 1px solid;
    padding: 20px;
    line-height: 30px;
    margin: 30px 0px;
    text-align: justify;
}

.content-section-right-division {
    padding-bottom: 50px;
}

.paragraph-bold {
    font-weight: 700;
}

.section-container {
    position: relative;
    text-align: center;
}

.letter-i {
    color: #dedede;
    font-size: 100px;
    font-weight: bold;
    font-family: "Times New Roman", Times, serif;
    line-height: 0.8;
    position: relative;
    z-index: 1;
}

.section-text {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18px;
    font-weight: 600;
    color: #666;
    z-index: 2;
}

.notes {
    font-size: 16px;
    margin: 0;
    padding: 10px 0px;
    color: #000000;
}

.notessummary {
    padding: 5px 0px;
    margin: 0;
    color: #898989;
    font-size: 15px;
}

.sticky-grid {
    width: 100%;
}

/* bottom-curosel */
.bottom-curosel {
    padding: 30px 60px;
}

.bottom-curosel-head {
    display: flex;
    justify-content: flex-start;
    gap: 50px;
}

.select {
    font-size: 32px;
    font-weight: 500;
    margin: 0;
    font-family: 'Times New Roman', Times, serif;
}

.unselect {
    font-size: 32px;
    font-weight: 500;
    margin: 0;
    color: #c0c0c0;
    font-family: 'Times New Roman', Times, serif;
}


.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
}

.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 20px;
    margin-top: 20px;
}

.carousel-item {
    flex: 0 0 25%;
    position: relative;
    height: auto;
}

.publication {
    width: auto;
    height: 400px;
    object-fit: cover;
    display: block;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: white;
    color: #333;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-button-prev {
    left: 20px;
}

.carousel-button-next {
    right: 20px;
}

.carousel-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

.dot.active {
    background-color: white;
}


/* Footer container */
.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 50px 60px;
    margin: 0 auto;
    gap: 30px;
}

/* Logo section */
.logo-section {
    margin-right: 0px;
}

.logo-section img {
    max-width: 180px;
}

.logo-text {
    color: #8B0000;
    font-family: serif;
    font-weight: bold;
    margin: 0;
}

.logo-text .fondation {
    font-size: 18px;
    text-transform: uppercase;
}

.logo-text .innovation {
    font-size: 24px;
    text-transform: uppercase;
}

.logo-text .politique {
    font-size: 24px;
    text-transform: uppercase;
}

.website-url {
    font-style: italic;
    font-size: 16px;
    color: #333;
    margin-top: 5px;
}

/* Newsletter section */
.newsletter-section {
    flex-grow: 1;
    max-width: auto;
    margin: 0 20px;
}

.newsletter-title {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: normal;
}

.email-input {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    margin-bottom: 15px;
}

.consent-checkbox {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.consent-checkbox input {
    margin-right: 10px;
    margin-top: 3px;
}

.consent-text {
    font-size: 14px;
    color: #333;
}

.confirm-button {
    background-color: #8B0000;
    color: white;
    border: none;
    padding: 10px 25px;
    font-size: 16px;
    cursor: pointer;
    text-transform: uppercase;
}

/* Right navigation and social section */
.right-section {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.nav-links {
    display: flex;
    margin-bottom: 20px;
}

.nav-links a {
    margin-left: 20px;
    text-decoration: none;
    color: #333;
}

.language-selector {
    display: flex;
    margin-left: 20px;
}

.language-selector a {
    padding: 5px 10px;
    text-decoration: none;
    color: #333;
    border-radius: 5px;
    margin-left: 5px;
}

.language-selector .active {
    background-color: #eee;
}

.social-icons {
    display: flex;
}

.social-icons a {
    margin-left: 15px;
}

.social-icons img {
    width: 30px;
    height: 30px;
}

/* DETAIL PAGE END */

/* CATEAGORY PAGE START */
/* cateagory-header-section */
.cateagory-header-section {
    margin: 0;
    background: url(./images/pawel-czerwinski-photo-1557264351-1de591f88634-900x600.jpeg);
    background-size: cover;
    background-position: center;
    width: 100%;
    height: auto;
    padding-bottom: 10px;
}

.cateagory-head {
    font-family: 'Times New Roman', Times, serif;
    margin: 0;
    font-size: 85px;
    text-align: center;
    padding: 80px 0px;
    color: white;
    font-weight: 500;
}

.cateagory-head a {
    color: white;
}

.line-w {
    color: white;
}

.cateagory {
    margin: 0;
    display: flex;
    justify-content: space-between;
    padding: 0px 50px;
}

.cateagory-option {
    margin: 0;
    padding: 20px 0px;
    color: white;
    font-weight: 500;
}

.cateagory-option a {
    color: white;
}

.cateagory-body-section {
    margin: 0;
    padding: 50px;
}

.cateagory-body-section-head {
    margin: 0;
    font-size: 70px;
    font-family: 'Times New Roman', Times, serif;
    color: #87122e;
    font-weight: 500;
}

.cateagory-body-section-head a {
    color: #87122e;
}

.cateagory-content {
    padding: 50px;
}

.quote-container {
    max-width: 800px;
    position: relative;
    padding: 40px 20px;
    text-align: center;
    display: flex;
    margin: 0 auto;
}

.quote-text {
    font-size: 36px;
    line-height: 1.3;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0;
    font-family: 'Times New Roman', Times, serif;
}

.quote-text a {
    color: #1a1a1a;
}

.quote-marks {
    font-size: 120px;
    color: rgba(221, 204, 204, 0.7);
    font-family: Georgia, serif;
    position: absolute;
    line-height: 1;
}

.quote-open {
    top: 0;
    left: 0;
    transform: translate(-50%, -30%);
}

.quote-close {
    bottom: 0;
    right: 0;
    transform: translate(50%, 30%);
}

.quote-content {
    display: flex;
    gap: 50px;
}

.quote-content-grid {
    width: 50%;
}

/* the-team-section */
.the-team-section {
    margin: 0;
    display: flex;
    gap: 50px;
}

.the-team-section-left {
    width: 70%;
    padding-left: 50px;
}

.the-team-section-right {
    width: 30%;
}

.right-side-image {
    width: 100%;
    height: 100%;
}

.inside-grid {
    display: flex;
    gap: 20px;
    margin-top: 50px;
}

.team-box {
    width: 50%;
}

.team-box-head {
    margin: 0;
    font-weight: 600;
    font-size: 20px;
    padding-bottom: 5px;
}

.team-box-head a {
    color: #000000;
}

.team-box-minihead {
    margin: 0;
    font-weight: 500;
    font-size: 16px;
    color: #999;
}

.team-box-content {
    padding-bottom: 30px;
}

.the-team-section-mid {
    margin: 0;
    font-size: 60px;
    font-family: 'Times New Roman', Times, serif;
    color: #000000;
    font-weight: 300;
    padding-bottom: 30px;
}

.team-box-paragraph {
    font-size: 16px;
    margin: 0;
    padding-top: 10px;
    line-height: 20px;
    text-align: justify;
}

/* supervisory-section */
.supervisory-section {
    margin: 0;
    padding: 50px;
}

.supervisory-section-head {
    margin: 0;
    font-size: 70px;
    font-family: 'Times New Roman', Times, serif;
    color: #87122e;
    font-weight: 500;
    width: 37%;
}

.foundation {
    margin: 0;
    font-size: 18px;
    color: #87122e;
    font-weight: 700;
    padding-top: 20px;
}

.supervisory-section-grid {
    display: flex;
    gap: 50px;
    padding-left: 120px;
    padding-top: 50px;
}

.supervisory-section-grid-box {
    width: 50%;
    height: auto;
    border-bottom: 1px solid #e1e1e1;
}

.supervisory-section-grid-box-name {
    font-size: 20px;
    margin: 0;
    font-weight: 600;
    padding-bottom: 20px;
}

.gid-box-name-span {
    margin: 0;
    color: #999;
    font-size: 16px;
    font-weight: 500;
    float: right;
}

.team-box-paragraph-minihead {
    margin: 0;
    font-weight: 500;
    font-size: 15px;
    color: #999;
    padding-top: 20px;
    padding-bottom: 10px;
}

.full-image {
    width: 100%;
    height: auto;
}

/* auditing-section */
.auditing-section {
    padding: 50px;
    background-color: #87122E;
    display: flex;
    gap: 30px;
}

.auditing-section-grid {
    max-width: 100%;
}

.auditing-section-head {
    margin: 0;
    font-size: 70px;
    font-family: 'Times New Roman', Times, serif;
    color: white;
    padding-top: 50px;
    font-weight: 500;
}

.auditing-section-minihead {
    margin: 0;
    font-size: 18px;
    color: white;
    font-weight: 700;
    padding-top: 20px;
}

.white-grid {
    background-color: white;
    padding: 60px 60px;
    margin-top: 80px;
}

.white-grid-one {
    background-color: white;
    padding: 60px 60px;
}

.white-grid-head {
    font-size: 20px;
    margin: 0;
    font-weight: 600;
    padding-bottom: 20px;
    text-align: center;
}

/* ethics-section */
.ethics-section {
    display: flex;
    gap: 50px;
    padding: 80px 0px;
    padding-bottom: 0px;
}

.ethics-section-left {
    width: 40%;
}

.ethics-section-right {
    width: 60%;
    padding: 0px 50px;
}

.ethics-header-section {
    padding-left: 50px;
}

.ethic-left-side-image {
    width: 100%;
    height: auto;
    padding-top: 50px;
}

.ethics-section-grid-box {
    width: 100%;
    height: auto;
    border-bottom: 1px solid #e1e1e1;
    margin-bottom: 50px;
}

/* CATEAGORY PAGE END */




@media (max-width: 767px) {

    /* INDEX PAGE START */
    /* header-section */
    /* navbar-section */
    .index-logo {
        width: 80px;
        height: auto;
    }

    .hashtag-white {
        display: none;
    }

    .index-toggle {
        display: none;
    }

    .nav-donate {
        display: none;
    }

    .menu {
        width: 18px;
        height: auto;
        display: flex;
    }


    /* index-body-section */
    .index-body-section {
        padding: 0px 10px;
    }

    .two-banner-section {
        margin-top: 20px;
        display: block;
    }

    .two-banner-left {
        width: 100%;
    }

    .two-banner-right {
        width: 100%;
    }

    /* news-grid-section */
    .news-grid-section {
        display: block;
        padding-top: 30px;
    }

    .vertical-line {
        display: none;
    }

    .vertical-line-one {
        display: none;
    }

    .news-grid-left {
        width: 100%;
    }

    .news-grid-mid {
        width: 100%;
    }

    .news-grid-right {
        width: 100%;
    }

    /* bottom-section */
    .bottom-section-left {
        width: 100%;
    }

    .bottom-section-right {
        width: 100%;
    }

    /* INDEX PAGE END */
    /* DETAIL PAGE START */

    /* navbar-section */
    .navbar-section {
        padding: 0px 10px;
    }

    .navbar-left {
        width: 25%;
    }

    .navbar-mid {
        display: none;
    }

    .navbar-right {
        width: 75%;
        gap: 10px;
    }

    .logo {
        width: 50px;
    }

    .hashtag {
        display: none;
    }

    .toggle-left {
        font-size: 6px;
    }

    .toggle-right {
        font-size: 6px;
    }

    .search {
        width: 15px;
        height: auto;
    }

    .donate {
        border: 1px solid white;
        font-size: 10px;
        padding: 2px 5px;
        border-radius: 5px;
    }

    /* header-section-content */

    .header-section-content {
        padding: 0px 10px;
        display: block;
        padding-top: 40px;
        gap: 50px;
    }

    .logo-content {
        display: none;
    }

    .header-body-left {
        width: 100%;
    }

    .header-body-right {
        display: none;
    }

    .overlap-division {
        display: none;
    }

    .overlap-division-one {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }

    .overlap-option {
        font-size: 16px;
        color: #87122e;

    }

    .overlap-option a {
        color: #87122e;
    }

    .red-dot {
        width: 5px;
        height: 5px;
        background-color: #87122e;
    }

    .content-left-head {
        display: block;
    }

    .study {
        font-size: 14px;
        width: 25%;
        margin-bottom: 10px;
    }

    .dominique {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .head {
        font-size: 40px;
        padding-left: 0px;
        padding-top: 20px;
    }

    .edition {
        font-size: 15px;
        padding-top: 20px;
        padding-left: 0;
    }

    .display-section {
        display: flex;
        flex-direction: column;
        padding: 0px 10px;
        gap: 20px;
    }

    .overlap-section-right {
        order: -1;
        display: flex;
        width: 100%;
        gap: 20px;
        align-items: center;
        justify-content: space-between;
        padding-bottom: 20px;
        border-bottom: 1px solid #898989;
    }

    .overlap-section-left {
        order: 1;
        width: 100%;
        padding-bottom: 20px;
    }

    .header-body-right {
        width: 30%;
        background-color: white;
        padding-bottom: 10px;
    }

    .overlap-banner {
        height: auto;
        width: 100px;
        margin: 0;
        margin-top: -2rem;
    }


    /* Carousel Section */
    .carousel-section {
        border-top: 1px solid #D6D6D6;
        border-bottom: 1px solid #D6D6D6;
        margin: 100px 10px;
        margin-top: 0px;
        padding: 50px 0px;
        padding-top: 0;
        display: block;
        gap: 0px;
        margin-bottom: 20px;
    }

    .carousel-section-left {
        width: 100%;
        padding-top: 30px;
        display: flex;
    }

    .carousel-section-right {
        width: 100%;
        overflow-x: auto;
    }

    .related {
        align-items: center;
        display: flex;
        width: 50%;
    }

    .carousel-box {
        width: 100%;
        gap: 10px;
    }


    .carousel-track {
        display: flex;
        width: max-content;
        padding: 10px 0;
    }

    .top-carousel-item {
        width: auto;
        padding-right: 20px;

    }

    .carousel-text {
        width: 100%;
    }

    .carousel-box-head {
        font-size: 22px;
    }

    .carousel-img {
        width: 120px;
    }

    /* credit-section */
    .credit-section {
        height: auto;
        width: 100%;
        margin: 30px 0 0px;
    }

    .credit-section-content {
        padding: 0px 10px;
    }

    .credit-section-content-top {
        display: block;
        gap: 50px;
    }

    .credit-section-grid {
        width: 100%;
        padding-bottom: 20px;
    }

    /* content-section */
    .content-section {
        padding: 20px 10px;
        display: flex;
        flex-direction: column-reverse;
        gap: 0px;
    }

    .content-section-left {
        width: 100%;
        margin-top: 30px;
    }

    .content-section-right {
        width: 100%;
    }

    .header-section {
        margin: 0;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0)), url(./images/enquete-terrorisme_2024_couv_fond-003-1527x1080.webp);
        background-size: cover;
        background-position: center;
        width: 100%;
        height: auto;
        padding-bottom: 50px;
    }

    .sticky-grid {
        position: relative;
    }

    .content-section-right-division {
        padding-bottom: 0px;
    }

    .lesson {
        font-size: 50px;
        line-height: 45px;
    }

    .gid-box {
        padding-top: 20px;
        gap: 20px;
    }

    .gid-box-left {
        width: 20%;
    }

    .gid-box-right {
        width: 80%;
    }

    .gid-box-right-content {
        font-weight: 500;
        color: #000000;
        margin: 0;
        font-size: 18px;
        width: 100%;
        line-height: 28px;
        padding: 0px 0px;
    }

    .list {
        padding: 10px 0px;
        line-height: 28px;
        font-size: 16px;
    }

    .paragraph {
        font-size: 16px;
        line-height: 25px;
    }

    .box-paragraph {
        font-size: 16px;
        line-height: 25px;
    }

    /* bottom-curosel */
    .bottom-curosel {
        padding: 10px 10px;
    }

    .bottom-curosel-head {
        gap: 20px;
    }

    .select {
        font-size: 25px;
    }

    .unselect {
        font-size: 25px;
    }

    .carousel-item {
        flex: 0 0 60%;
    }

    .publication {
        height: 300px;
    }

    /* Footer container */
    .footer-container {
        display: block;
        padding: 30px 10px;
        margin: 0 auto;
    }

    .footer-logo {
        margin: 0 auto;
        display: flex;
    }

    .logo-section {
        margin-right: 0px;
    }

    /* Newsletter section */
    .newsletter-section {
        flex-grow: 1;
        width: auto;
        margin: 0 20px;
    }

    .right-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
        gap: 0px;
        margin-top: 30px;
    }

    .nav-links a,
    .language-selector a {
        margin: 5px 0;
    }

    .social-icons a {
        margin: 5px;
    }

    .nav-links {
        display: flex;
        margin-bottom: 0px;
    }

    /* DETAIL PAGE END */
    /* CATEAGORY PAGE START */
    /* header-section */
    .cateagory-head {
        font-size: 55px;
        padding: 50px 0px;
    }

    .cateagory {
        padding: 0px 10px;
        flex-wrap: wrap;
    }

    .cateagory-option {
        font-size: 16px;
        padding: 5px 0px;
    }

    /* cateagory-body-section */
    .cateagory-body-section {
        margin: 0;
        padding: 10px;
    }

    .cateagory-body-section-head {
        padding: 20px 0px;
        font-size: 40px;
        text-align: center;
    }

    .cateagory-content {
        padding: 10px;
    }

    .quote-container {
        width: 100%;
        padding: 40px 0px;
    }

    .quote-marks {
        font-size: 60px;
    }

    .quote-text {
        font-size: 26px;
    }

    .quote-content {
        display: block;
        gap: 50px;
    }

    .quote-content-grid {
        width: 100%;
    }

    /* the-team-section */
    .the-team-section {
        display: block;
    }

    .the-team-section-left {
        width: 100%;
        padding: 0;
    }

    .the-team-section-right {
        width: 100%;
    }

    .inside-grid {
        display: block;
        gap: 20px;
        margin-top: 20px;
    }

    .team-box {
        width: 100%;
    }

    .the-team-section-mid {
        margin: 0;
        font-size: 40px;
        text-align: center;
        padding-bottom: 10px;
    }

    .right-side-image {
        width: 100%;
        height: auto;
    }

    .team-box-content {
        text-align: center;
    }

    .team-box-minihead {
        text-align: center;
    }

    .team-box-paragraph {
        padding: 10px 20px;
    }

    /* supervisory-section */
    .supervisory-section {
        margin: 0;
        padding: 20px;
    }

    .supervisory-section-head {
        margin: 0;
        font-size: 40px;
        width: 100%;
    }

    .foundation {
        font-size: 16px;
        font-weight: 600;
        padding-top: 10px;
    }

    .supervisory-section-grid {
        display: block;
        padding-left: 0px;
        padding-top: 10px;
    }

    .supervisory-section-grid-box {
        width: 100%;
        height: auto;
        border-bottom: 1px solid #e1e1e1;
        margin-bottom: 20px;
    }

    /* auditing-section */
    .auditing-section {
        padding: 20px;
        background-color: #87122E;
        display: block;

    }

    .auditing-section-head {
        font-size: 39px;
        padding-top: 20px;
    }

    .auditing-section-minihead {
        font-size: 24px;
        padding-top: 10px;
    }

    .white-grid {
        margin-bottom: 30px;
        padding: 30px;
        margin-top: 20px;
    }

    /* ethics-section */
    .ethics-section {
        display: block;
        padding: 20px 20px;
    }

    .ethics-section-left {
        width: 100%;
    }

    .ethics-section-right {
        width: 100%;
        padding: 0px 0px;
    }

    .ethics-header-section {
        padding-left: 0px;
    }

    .ethic-left-side-image {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    /* CATEAGORY PAGE END */
}


@media (min-width: 768px) and (max-width: 991.98px) {

    /* INDEX PAGE START */
    /* header-section */
    /* navbar-section */
    .index-logo {
        width: 80px;
        height: auto;
    }

    .hashtag-white {
        display: none;
    }

    .index-toggle {
        display: none;
    }

    .nav-donate {
        display: none;
    }

    .menu {
        width: 18px;
        height: auto;
        display: flex;
    }

    /* index-body-section */
    .index-body-section {
        padding: 0px 30px;
    }

    .banner-grid-content {
        width: auto;
        height: 200px;
    }

    .banner-grid-content-right {
        width: auto;
        height: 200px;
    }

    /* news-grid-section */
    .news-grid-section {
        display: block;
        padding-top: 30px;
    }

    .vertical-line {
        display: none;
    }

    .vertical-line-one {
        display: none;
    }

    .news-grid-left {
        width: 100%;
    }

    .news-grid-mid {
        width: 100%;
    }

    .news-grid-right {
        width: 100%;
    }

    /* INDEX PAGE END */
    /* DETAIL PAGE START */

    /* navbar-section */
    .navbar-section {
        padding: 0px 30px;
    }

    .navbar-left {
        width: 40%;
    }

    .navbar-right {
        width: 5%;
        gap: 10px;
    }

    .header-section {
        margin: 0;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0)), url(./images/enquete-terrorisme_2024_couv_fond-003-1527x1080.webp);
        background-size: cover;
        background-position: center;
        width: 100%;
        height: auto;
        padding-bottom: 50px;
    }


    .navbar-mid {
        display: none;
    }

    .navbar-right {
        width: 60%;
        gap: 10px;
    }

    .logo {
        width: 100px;
    }

    .hashtag {
        display: none;
    }

    .toggle-left {
        font-size: 6px;
    }

    .toggle-right {
        font-size: 6px;
    }

    .search {
        width: 20px;
        height: auto;
    }

    .donate {
        border: 1px solid white;
        font-size: 16px;
        padding: 2px 5px;
        border-radius: 5px;
    }

    /* header-section-content */
    .header-section-content {
        padding: 0px 30px;
        display: block;
        padding-top: 40px;
        gap: 50px;
    }

    .logo-content {
        display: none;
    }

    .header-body-left {
        width: 100%;
    }

    .header-body-right {
        display: none;
    }

    .overlap-division {
        display: none;
    }

    .overlap-division-one {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }

    .overlap-option {
        font-size: 16px;
        color: #87122e;

    }

    .overlap-option a {
        color: #87122e;
    }

    .red-dot {
        width: 5px;
        height: 5px;
        background-color: #87122e;
    }

    .content-left-head {
        display: flex;
        flex-wrap: wrap;
    }

    .study {
        font-size: 16px;
        width: 15%;
        margin-bottom: 10px;
    }

    .dominique {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .head {
        font-size: 50px;
        padding-left: 0px;
        padding-top: 20px;
    }

    .edition {
        font-size: 18px;
        padding-top: 20px;
        padding-left: 0;
    }

    .display-section {
        display: flex;
        flex-direction: column;
        padding: 0px 30px;
        gap: 20px;
    }

    /* .overlap-section-right {
        order: -1; 
        display: flex;
        width: 100%;
        gap: 20px;
    } */

    .overlap-section-left {
        order: 1;
        width: 100%;
        padding-top: 20px;
    }


    .overlap-banner {
        height: auto;
        width: 120px;
        margin: 0;
        margin-top: -2rem;
    }

    .display-section {
        display: flex;
        flex-direction: column;
        gap: 0px;
        margin-top: 0px;
    }


    .overlap-section-right {
        order: -1;
        display: flex;
        width: 100%;
        gap: 20px;
        align-items: center;
        justify-content: space-between;
        padding-bottom: 20px;
        border-bottom: 1px solid #898989;
    }

    .language {
        margin: 0;
        font-size: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px 0px;
        color: #898989;
    }

    .option-round {
        display: flex;
        margin-left: auto;
        /* This pushes the element to the right */
        gap: 10px;
        /* Optional: adds space between your icons */
    }


    /* Carousel Section */
    .carousel-section {
        border-top: 1px solid #D6D6D6;
        border-bottom: 1px solid #D6D6D6;
        margin: 20px 30px;
        padding: 0px 0px;
        display: block;
        gap: 0px;
        margin-bottom: 20px;
    }

    .carousel-section-left {
        width: 100%;
        padding-top: 30px;
        display: flex;
    }

    .carousel-section-right {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 20px;
    }

    .related {
        align-items: center;
        display: flex;
        width: 50%;
    }

    .carousel-box {
        width: 100%;
        gap: 10px;
    }


    .carousel-track {
        display: flex;
        width: max-content;
        padding: 10px 0;
    }

    .top-carousel-item {
        width: 750px;
        padding-right: 20px;

    }

    .carousel-text {
        width: 100%;
    }

    .carousel-box-head {
        font-size: 22px;
    }

    .carousel-img {
        width: 120px;
    }

    /* credit-section */
    .credit-section {
        height: auto;
        width: 100%;
        margin: 30px 0 0px;
    }

    .credit-section-content {
        padding: 0px 30px;
    }

    .credit-section-content-top {
        gap: 50px;
    }

    .credit-section-grid {
        width: 100%;
        padding-bottom: 20px;
    }

    /* content-section */
    .content-section {
        padding: 20px 30px;
        display: flex;
        flex-direction: column-reverse;
        gap: 0px;
    }

    .content-section-left {
        width: 100%;
        margin-top: 30px;
    }

    .content-section-right {
        width: 100%;
    }

    .sticky-grid {
        position: relative;
    }

    .content-section-right-division {
        padding-bottom: 0px;
    }

    .lesson {
        font-size: 50px;
        line-height: 45px;
    }

    .gid-box {
        padding-top: 20px;
        gap: 20px;
    }

    .gid-box-left {
        width: 20%;
    }

    .gid-box-right {
        width: 80%;
    }

    .gid-box-right-content {
        font-weight: 600;
        color: #000000;
        margin: 0;
        font-size: 22px;
        width: 100%;
        line-height: 30px;
        padding: 0px 0px;
    }

    .list {
        padding: 10px 0px;
        line-height: 28px;
        font-size: 18px;
    }

    .paragraph {
        font-size: 18px;
        line-height: 25px;
    }

    .box-paragraph {
        font-size: 18px;
        line-height: 25px;
    }

    /* bottom-curosel */
    .bottom-curosel {
        padding: 10px 30px;
    }

    .bottom-curosel-head {
        gap: 20px;
    }

    .select {
        font-size: 25px;
    }

    .unselect {
        font-size: 25px;
    }

    .carousel-item {
        flex: 0 0 30%;
    }

    .publication {
        height: 300px;
    }

    /* Footer container */
    .footer-container {
        padding: 30px 20px;
        margin: 0 auto;
        flex-wrap: nowrap;
        padding-top: 0px;
    }

    .footer-logo {
        margin: 0 auto;
        display: flex;
        padding: 20px 0px;
    }

    .logo-section {
        margin-right: 0px;
        padding: 10px;
    }

    /* Newsletter section */
    .newsletter-section {
        flex-grow: 1;
        width: auto;
        margin: 0 auto;
        padding: 10px;
    }

    .right-section {
        display: flex;
        padding: 10px;
    }

    .nav-links a,
    .language-selector a {
        margin: 5px 0;
    }

    .social-icons a {
        margin: 5px;
    }

    .nav-links {
        display: flex;
        margin-bottom: 0px;
    }

    /* DETAIL PAGE END */
    /* CATEAGORY PAGE START */
    /* header-section */
    .cateagory-head {
        font-size: 85px;
        padding: 50px 0px;
    }

    .cateagory {
        padding: 0px 30px;
        flex-wrap: wrap;
    }

    .cateagory-option {
        font-size: 16px;
        padding: 5px 0px;
    }

    /* cateagory-body-section */
    .cateagory-body-section {
        margin: 0;
        padding: 30px;
    }

    .cateagory-body-section-head {
        padding: 20px 0px;
        font-size: 60px;
        text-align: center;
    }

    .cateagory-content {
        padding: 20px;
    }

    /* the-team-section */
    .the-team-section {
        display: block;
        padding: 30px;
    }

    .the-team-section-left {
        width: 100%;
        padding: 0;
    }

    .the-team-section-right {
        width: 100%;
        margin-top: 30px;
    }

    .inside-grid {
        gap: 20px;
        margin-top: 0px;
    }

    .team-box-content {
        text-align: center;
    }

    .the-team-section-mid {
        margin: 0;
        font-size: 40px;
        text-align: center;
        padding-bottom: 10px;
    }

    .team-box-paragraph {
        font-size: 12px;
        padding-top: 10px;
        line-height: 18px;
    }

    /* supervisory-section */
    .supervisory-section {
        margin: 0;
        padding: 30px;
    }

    .supervisory-section-head {
        margin: 0;
        font-size: 40px;
        text-align: center;
        width: 100%;
    }

    .foundation {
        font-size: 20px;
        font-weight: 500;
        text-align: center;
    }

    .supervisory-section-grid {
        padding-left: 0px;
        padding-top: 30px;
    }

    /* auditing-section */
    .auditing-section {
        padding: 30px;
    }

    .auditing-section-head {
        font-size: 40px;
        padding-top: 20px;
    }

    .auditing-section-minihead {
        font-size: 20px;
        font-weight: 400;
    }

    .white-grid {
        margin: 0;
        padding: 50px;
    }

    .white-grid-one {
        margin: 0;
        padding: 50px;
        ;
    }

    /* ethics-section */
    .ethics-section {
        gap: 10px;
        padding: 30px;
    }

    .ethics-header-section {
        padding-left: 0px;
    }

    /* CATEAGORY PAGE END */
}

@media (min-width: 992px) and (max-width: 1200px) {
    /* INDEX PAGE START */
    /* index-body-section */

    .two-banner-left {
        width: 100%;
        height: 50vh;
    }

    .two-banner-right {
        width: 100%;
        height: 50vh;
    }

    /* INDEX PAGE END */
    /* DETAIL PAGE START */


    /* header-section-content */
    .header-section-content {
        padding: 0px 30px;
        display: block;
        padding-top: 40px;
        gap: 50px;
    }

    .header-body-left {
        width: 100%;
    }

    .header-body-right {
        display: none;
    }

    .overlap-division {
        display: none;
    }

    .overlap-division-one {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }

    .overlap-option {
        font-size: 20px;
        color: #87122e;

    }

    .overlap-option a {
        color: #87122e;
    }

    .red-dot {
        width: 5px;
        height: 5px;
        background-color: #87122e;
    }

    .content-left-head {
        display: flex;
        flex-wrap: wrap;
    }

    .study {
        font-size: 16px;
        width: 15%;
        margin-bottom: 10px;
    }

    .dominique {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .head {
        font-size: 50px;
        padding-left: 0px;
        padding-top: 20px;
    }

    .edition {
        font-size: 18px;
        padding-top: 20px;
        padding-left: 0;
    }

    .display-section {
        display: flex;
        flex-direction: column;
        padding: 0px 30px;
        gap: 20px;
    }

    /* .overlap-section-right {
    order: -1; 
    display: flex;
    width: 100%;
    gap: 20px;
} */

    .overlap-section-left {
        order: 1;
        width: 100%;
        padding-top: 20px;
    }


    .overlap-banner {
        height: auto;
        width: 120px;
        margin: 0;
        margin-top: -2rem;
    }

    .display-section {
        display: flex;
        flex-direction: column;
        gap: 0px;
        margin-top: 0px;
    }


    .overlap-section-right {
        order: -1;
        display: flex;
        width: 100%;
        gap: 20px;
        align-items: center;
        justify-content: space-between;
        padding-bottom: 20px;
        border-bottom: 1px solid #898989;
    }

    .language {
        margin: 0;
        font-size: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px 0px;
        color: #898989;
    }

    .option-round {
        display: flex;
        margin-left: auto;
        gap: 10px;
    }


    .notes {
        font-size: 18px;
    }

    .notessummary {
        font-size: 16px;
    }

    .navigation {
        display: flex;
        margin: 0 auto;
    }

    .carousel-item {
        flex: 0 0 30%;
        position: relative;
        height: auto;
    }


    .footer-container {
        padding: 40px;
        padding-top: 0px;
        margin: 0 auto;
        flex-wrap: nowrap;
    }

    .logo-section {
        margin-right: 0px;
        padding: 10px;
    }

    /* Newsletter section */
    .newsletter-section {
        flex-grow: 1;
        width: auto;
        margin: 0 auto;
        padding: 10px;
    }

    .right-section {
        display: flex;
        padding: 10px;
    }

    .footer-logo {
        margin: 0 auto;
        display: flex;
        padding: 20px 0px;
    }

    /* DETAIL PAGE END */
    /* CATEAGORY PAGE START */
    /* the-team-section */
    .the-team-section {
        display: block;
        padding: 50px;
    }

    .the-team-section-left {
        width: 100%;
        padding: 0;
    }

    .the-team-section-right {
        width: 100%;
        margin-top: 30px;
    }

    .team-box-paragraph {
        font-size: 18px;
        padding-top: 10px;
        line-height: 26px;
    }

    /* supervisory-section */

    .supervisory-section-head {
        margin: 0;
        width: 100%;
    }

    .supervisory-section-grid {
        padding-left: 0px;
        padding-top: 20px;
    }

    /* supervisory-section */
    .white-grid {
        margin: 0;
        padding: 20px 30px;
    }

    .white-grid-one {
        margin: 0;
        padding: 20px 30px;
    }

    .auditing-section-head {
        padding-top: 0px;
        font-size: 50px;
    }

    /* ethics-section */
    .ethics-section {
        gap: 50px;
        padding: 50px;
    }

    .ethics-section-right {
        padding: 50px 0px;
    }

    .ethics-header-section {
        padding-left: 0px;
    }

    /* CATEAGORY PAGE END */
}

@media (min-width: 1201px) and (max-width: 1400px) {

    /* INDEX PAGE START */
    /* INDEX PAGE END */
    /* DETAIL PAGE START */
    .header-section-content {
        gap: 100px;
    }

    .logo-content {
        color: white;
        margin: 0;
        align-items: center;
        display: flex;
    }

    .head {
        font-size: 80px;
        padding-left: 50px;
        padding-top: 20px;
    }

    .overlap-option {
        font-size: 13px;
    }

    .red-dot {
        width: 5px;
        height: 5px;
        margin: 0px 8px;
    }

    .study {
        font-size: 15px;
    }

    .content-left-head {
        display: flex;
        justify-content: flex-start;
        gap: 20px;
    }

    .navbar-left {
        width: 35%;
    }

    .navbar-mid {
        width: 40%;
    }

    .navbar-right {
        width: 25%;
    }


    .dominique {
        font-size: 15px;
    }

    .header-body-right {
        width: 25%;
    }

    .overlap-banner {
        height: auto;
        width: 220px;
        margin: -3rem auto 0 auto;
    }

    .top-carousel-item {
        width: 65%;
    }

    .navigation {
        display: flex;
        margin: 0 auto;
    }

    .carousel-item {
        flex: 0 0 25%;
        position: relative;
        height: auto;
    }

    /* DETAIL PAGE END */
    /* CATEAGORY PAGE START */
    /* CATEAGORY PAGE END */
}