@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    transition: .3s;
}

a {
    cursor: pointer;
}

@font-face {
    font-family: "myFirstFont";
    src: url(../icons/GeneralSans_Complete/Fonts/OTF/GeneralSans-Medium.otf);
}

p,
span,
li,
a,
div,
button,
.btn-select-doc {
    font-family: "myFirstFont";
}

h1,
h2,
h3,
h4,
h5,
h6,
strong {
    font-family: "Poppins", sans-serif;
}

:root {
    --sceondary-color: rgba(255, 0, 0, 1);
    --primary-color: ;
    --secondary-font: "myFirstFont";
    --white-color: white;
    --black-color: black;
    --primary-font: "Poppins", sans-serif;
    --header-height: 80px;
    /* Common Breakpoints */
    --small: 600px;
    --medium: 768px;
    --large: 992px;
    --x-large: 1200px;
}

.HideFilter {
    cursor: pointer;
}

.ShowHideFilterName {
    padding: 0px !important;
}

.dropdown_names {
    font-weight: 700;
    font-size: 17px;
    line-height: 35px;
}

.dropbtn {
    background-color: #3498DB;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    overflow: auto;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    margin-top: 15px;
    border: 1px solid #F00;
    border-radius: 10px;
    z-index: 9999;
}

.dropdown-content a {
    color: black;
    padding: 10px 15px 10px 15px;
    text-decoration: none;
    display: block;
}

.dropdown-content button {
    border: none;
    box-sizing: border-box;
    color: black;
    display: block;
    padding: 10px 15px 10px 15px;
    text-align: left;
    text-decoration: none;
    white-space: nowrap;
    width: 100%;
}

.pointer {
    cursor: pointer;
}

.dropdown-content2 {
    display: none;
    position: absolute;
    top: 40px;
    right: 40px;
    background-color: #f1f1f1;
    min-width: 160px;
    overflow: auto;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    margin-top: 15px;
    border: 1px solid #F00;
    border-radius: 10px;
}

.dropdown-content2 a {
    color: black;
    padding: 10px 15px 10px 15px;
    text-decoration: none;
    display: block;
}

.dropdown-item {
    cursor: pointer;
    padding: 0.5rem 1rem;
}

.dropdown-item:hover {
    background: #bababa;
}

.categorydropdown a {
    color: black;
    padding: 5px 15px 10px 15px !important;
    text-decoration: none;
    display: block !important;
}

.sortbydropdown a {
    color: black;
    padding: 0px 15px 0px 15px !important;
    text-decoration: none;
    display: block;
}

.dropdown a:hover {
    background-color: #ddd;
}

.show {
    display: block;
}

.container {
    max-width: 1728px;
    margin: auto;
    padding: 50px 30px;
}

.filter_btn_div {
    padding: 0px 30px !important;

}

.filter-options {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    width: 100%;
}

.filter-option-btn {
    margin: 16px 0px;
}

.filter_option_div {
    padding: 40px 30px 0px 30px;
}

.main-heading .doc_sub-heading {
    font-family: Poppins;
    font-weight: 500;
    font-size: 24px;
    line-height: 36px;
    width: 70%;
}

.filter_community_option {
    background: rgba(224, 224, 224, 1);
    border: none !important;
}

.container-fluid {
    max-width: 1728px !important;
    margin: auto !important;
    padding: 10px 30px;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.d-flex {
    display: flex !important;
    gap: 10px;
}

.d-flex .modal-section-1,
.d-flex .modal-section-2 {
    width: 50%;
}

.align-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-end {
    justify-content: end;
}

.col-1 {
    flex: 1;
}

.col-2 {
    flex: 2;
}

.col-3 {
    flex: 3;
}

.col-4 {
    flex: 4;
}

.col-5 {
    flex: 5;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.center {
    text-align: center;
}

/* CODE FOR HEADER */
header .container-fluid {
    padding: 0px 30px !important;
    margin-bottom: 50px;
}

header.mobile .container-fluid .row {
    gap: 50px;
}

header .logo img {
    max-width: 240px;
    height: 100%;
}

header .search-input {
    background-color: rgba(240, 240, 240, 1);
    padding: 15px 20px 15px 16px;
    border-radius: 30px;
    width: 70% !important;

}

.box input[type="text"]::placeholder {
    color: black;
    /* Change this color as needed */
    opacity: 1;
    /* Ensures the color is fully opaque */
}

header.mobile .container-fluid .row .box:nth-child(2) {
    width: 90%;
}

#searchForm {
    width: 100%;
}

header .search-input input {
    border: none;
    background-color: transparent;
    font-size: 18px;
    width: 100%;
    outline: none;
    font-weight: 700;
    font-family: var(--secondary-font);
}

header .nav-menu {
    font-size: 18px;
    font-weight: 500;
    line-height: 5.3px;
    color: var(--black-color);
    margin-left: 5px;
    padding: 18px 15px 18px 15px;
    border-radius: 30px 30px 30px 30px;
}

header .nav-menu:hover {
    background-color: red;
    color: var(--white-color) !important;
}

header .nav-menu:hover,
header .nav-menu.active {
    color: rgb(120, 120, 120);
}

header .row .box:nth-child(1) {
    gap: 10px;
}

header.mobile .row .box:nth-child(2),
header.mobile .row .box:nth-child(3),
header.mobile .row .box:nth-child(4) {
    margin-top: 10px;
}

/* CODE FOR MOBILE MENU */
/* The Overlay (background) */
.overlay {
    /* Height & width depends on how you want to reveal the overlay (see JS below) */
    height: 100%;
    width: 0;
    position: fixed;
    /* Stay in place */
    z-index: 1;
    /* Sit on top */
    left: 0;
    top: 0;
    background-color: rgb(0, 0, 0);
    /* Black fallback color */
    background-color: rgba(0, 0, 0, 0.9);
    /* Black w/opacity */
    overflow-x: hidden;
    /* Disable horizontal scroll */
    transition: 0.5s;
    /* 0.5 second transition effect to slide in or slide down the overlay (height or width, depending on reveal) */
}

/* Position the content inside the overlay */
.overlay-content {
    position: relative;
    top: 25%;
    /* 25% from the top */
    width: 100%;
    /* 100% width */
    text-align: center;
    /* Centered text/links */
    margin-top: 30px;
    /* 30px top margin to avoid conflict with the close button on smaller screens */
}

/* The navigation links inside the overlay */
.overlay a {
    padding: 8px;
    text-decoration: none;
    font-size: 26px;
    letter-spacing: 3px;
    color: #818181;
    display: block;
    /* Display block instead of inline */
    transition: 0.3s;
    /* Transition effects on hover (color) */
    font-weight: 100 !important;
}

/* When you mouse over the navigation links, change their color */
.overlay a:hover,
.overlay a:focus {
    color: #f1f1f1;
}

/* Position the close button (top right corner) */
.overlay .closebtn {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
}

/* When the height of the screen is less than 450 pixels, change the font-size of the links and position the close button again, so they don't overlap */
@media screen and (max-height: 450px) {
    .overlay a {
        font-size: 20px
    }

    .overlay .closebtn {
        font-size: 40px;
        top: 15px;
        right: 35px;
    }
}

.overlay .mobile-search {
    padding: 8px 10px 8px 10px;
    background-color: rgb(69, 69, 69);
    display: inline-block;
    border-radius: 30px;
    width: 230px;
    margin-top: 10px;

}

.overlay .mobile-search input {
    border: none;
    background-color: transparent;
    font-size: 14px;
    outline: none;
    font-weight: 700;
    font-family: var(--secondary-font);
    color: var(--white-color);
    margin-left: 10px;
}

.overlay .mobile-search i {
    color: var(--white-color);
}

header span i {
    font-size: 18px;
    cursor: pointer;
}

header .profile {
    position: relative;
    display: inline-block;
    gap: 20px;
    width: 100px;
    max-width: 100px;
}

header .profile i {
    color: var(--black-color);
    font-size: 28px;
}

.site-content {
    padding-top: var(--header-height);
}

.sticky-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 100 !important;
    background: white !important;
    border-bottom: 1px solid #ddd !important;
}

.search-box {
    margin-top: 0 !important;
}

header.pc .bg-gray {
    background-color: rgba(237, 237, 237, 1);
    border-radius: 8.59px;
    padding: 16px 20px;
}

header.pc .logo img {
    width: 42px;
    margin-top: 0px !important;
}

header.pc .bg-gray .underline {
    width: 21.48px;
    height: 3px;
    background-color: var(--black-color);
}

header.pc .bg-gray .underline:nth-child(1) {
    margin-bottom: 5px;
}

header.pc .col-1:nth-child(3) {
    display: flex;
    align-items: center;
    justify-content: end;
}

header.pc .col-1:nth-child(3) img {
    max-width: 42px;
    max-width: 42px;
}

header.pc .bg-gray .box {
    position: relative;
    display: inline-block;
}

header.pc .col-1 .box i {
    color: var(--black-color);
}

header.pc .bg-gray .box input[type="text"] {
    display: none;
    position: absolute;
    top: 40px;
    /* Adjust as needed */
    left: -60px;
    z-index: 10;
    width: 300px;
    /* Adjust width as needed */
    padding: 10px 10px;
    border-radius: 3px;
    background-color: rgba(237, 237, 237, 1);
}

header.pc .bg-gray .box input[type="text"].show {
    display: block;
}

/* CODE FOR HOME PAGE CONTENT */
.contributors {
    background-color: rgba(238, 238, 238, 1);
}

.main-heading {
    margin-bottom: 50px;
}

.main-heading h1 {
    max-width: 593px;
    font-family: Poppins;
    font-size: 58px;
    font-weight: 600;
    line-height: 58px;
    text-align: left;
    margin-bottom: 20px;

}

.main-heading .btn a,
.main-heading .btn button {
    padding: 10px 30px;
    border: 1px solid var(--black-color);
    display: inline-block;
    color: var(--black-color);
    border-radius: 100px;
    width: max-content;
    margin: auto;
}

.contributors .row {
    flex-wrap: wrap;
    justify-content: center;
}

.contributors .row .col-1 {
    width: 258px !important;
    max-width: 258px !important;
    background-color: var(--white-color);
    padding: 15px;
    border-radius: 14px;
    /* box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px; */
    flex-basis: 200px;
    flex-grow: 1;
}

.contributors .row .col-1 h4 {
    font-family: var(--secondary-font);
    font-size: 22px;
    font-weight: 400;
    line-height: 29.7px;
    text-align: left;
    margin: 13px 0px;
    font-family: 'General Sans' !important;
}

h4 a.font-general {
    font-weight: 700;
    font-family: 'General Sans' !important;
}

h6 a.font-general {
    font-weight: 400;
    font-family: 'General Sans' !important;
    font-size: 16px;
}

.contributors .row .col-1 p {
    font-size: 16px;
    font-weight: 400;
    line-height: 20.14px;
    font-family: var(--primary-font);

}

/* CODE FOR HERO SECTION AND PROFILE SECTION  */
.hero-section {
    padding: 0px 30px;
    margin-bottom: 50px;
}

.hero-section .container-fluid {
    /* background: url(../images-new/home-updated.svg) no-repeat center center/cover; */
    width: 100%;
    height: 550px;
    margin-top: 20px !important;
    border-radius: 15px;
    padding: 17px 27px;
    background-size: contain;
    background-position: 100% 0%;
}

.hero-section-other .container-fluid {
    background: url(../images-new/home-updated.svg) no-repeat center center/cover;
    width: 100%;
    height: 550px;
    margin-top: 20px !important;
    border-radius: 15px;
    padding: 17px 27px;
    background-size: contain;
    background-position: 100% 0%;
}

.background-section {
    background: url(../images-new/home-updated.svg) no-repeat center center/cover;
}

.hero-section.profile .container-fluid {
    /* background: url(../images-new/home-updated.svg) no-repeat center center/cover; */
    height: 550px;
    width: 100% !important;
    max-width: 100%;
    margin-top: 50px !important;
    border-radius: 15px;
    padding: 17px 0px;
    max-height: 100%;
    background-size: contain;
    background-position: 100% 0%;
}

.hero-section .container-fluid .row,
.hero-section-other .container-fluid .row {
    height: 100%;
    min-height: 100%;
    border: 1px solid #ddd;
    border-radius: 15px;
}

.hero-section .col-12,
.hero-section-other .col-12 {
    /* background: linear-gradient(90deg, #000000 30%, rgba(0, 0, 0, 0) 100%); */
    width: 100%;
    height: 100%;
    min-height: 100%;
    border-radius: 15px;
    border: 1px solid #000;
    padding: 40px 40px;
    flex-direction: column;
    display: flex;
    justify-content: end;

}

.hero-section.profile .col-12,
.hero-section-other.profile .col-12 {
    /* background: linear-gradient(90deg, #000000 30%, rgba(0, 0, 0, 0) 100%); */
    width: 100%;
    height: 100%;
    min-height: 100%;
    border-radius: 15px;
    padding: 40px 40px;
    flex-direction: column !important;
    justify-content: space-between;

}

.hero-section.profile .col-6,
.hero-section-other.profile .col-6 {
    /* background: linear-gradient(90deg, #000000 30%, rgba(0, 0, 0, 0) 100%); */
    width: 100%;
    height: 100%;
    min-height: 100%;
    border-radius: 15px;
    padding: 40px 40px;
    flex-direction: column !important;
    justify-content: space-between;

}

.hero-section.profile .btn a,
.hero-section-other.profile .btn a {
    padding: 10px 30px;
    border: 1px solid var(--black-color);
    color: var(--black-color);
    border-radius: 30px;
    display: inline-block;
}

.hero-section.profile .btn a:hover,
.hero-section-other.profile .btn a:hover {
    background-color: var(--white-color);
    color: var(--black-color);
}

.hero-section .col-12 h1,
.hero-section .col-6 h1,
.hero-section-other .col-12 h1,
.hero-section-other .col-6 h1 {
    max-width: 653px !important;
    color: var(--black-color);
    font-family: Poppins;
    font-size: 58px;
    font-weight: 600;
    line-height: 69.6px;
    margin-bottom: 20px;


}

.hero-section .col-12 p,
.hero-section .col-6 p,
.hero-section .col-12 .log-btn,
.hero-section .col-6 .log-btn,
.hero-section-other .col-12 p,
.hero-section-other .col-6 p,
.hero-section-other .col-12 .log-btn,
.hero-section-other .col-6 .log-btn {
    font-family: var(--secondary-font);
    font-size: 20px;
    font-weight: 500;
    line-height: 27px;
    color: var(--black-color);
}

.hero-section .col-12 .log-btn,
.hero-section .col-6 .log-btn,
.hero-section-other .col-12 .log-btn,
.hero-section-other .col-6 .log-btn {
    text-decoration: underline;
}

.hero-section .col-12 .log-btn:hover,
.hero-section .col-6 .log-btn:hover,
.hero-section-other .col-12 .log-btn:hover,
.hero-section-other .col-6 .log-btn:hover {
    text-decoration: none !important;
}

.hero-section .col-6 .box p,
.hero-section-other .col-6 .box p {
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
    color: var(--black-color);
    margin-bottom: 20px;

}

/* hero section document page */
.hero-section-doc {
    padding: 0px 30px;
    margin-bottom: 50px;
}

.hero-section-doc .container-fluid {
    width: 100%;
    height: 692px;
    margin-top: 20px !important;
    border-radius: 15px;
    padding: 0px;
}

.hero-section-doc.profile .container-fluid {
    height: 550px;
    width: 100% !important;
    max-width: 100%;
    margin-top: 50px !important;
    border-radius: 15px;
    padding: 0px;
    max-height: 100%;
}

.hero-section-doc .container-fluid .row {
    height: 100%;
    min-height: 100%;
}

.hero-section-doc .col-12 {
    background: rgba(217, 217, 217, 1);
    width: 100%;
    height: 100%;
    min-height: 100%;
    border-radius: 15px;
    padding: 40px 40px;
    flex-direction: column;
    display: flex;
    justify-content: end;

}

.hero-section-doc.profile .col-12 {
    width: 100%;
    height: 100%;
    min-height: 100%;
    border-radius: 15px;
    padding: 40px 40px;
    flex-direction: column !important;
    justify-content: space-between;

}

.hero-section-doc.profile .btn a {
    padding: 10px 30px;
    border: 1px solid var(--white-color);
    color: var(--black-color);
    border-radius: 30px;
    display: inline-block;
    background-color: var(--white-color);
}

.hero-section-doc.profile .btn a:hover {
    color: var(--black-color);
}

.hero-section-doc .col-12 h1 {
    max-width: 653px !important;
    color: var(--black-color);
    font-family: Poppins;
    font-size: 58px;
    font-weight: 600;
    line-height: 69.6px;
    margin-bottom: 20px;


}

.hero-section-doc .col-12 p,
.hero-section-doc .col-12 .log-btn {
    font-family: var(--secondary-font);
    font-size: 20px;
    font-weight: 500;
    line-height: 27px;
    color: var(--white-color);

}

.hero-section-doc .col-12 .log-btn {
    text-decoration: underline;
}

.hero-section-doc .col-12 .log-btn:hover {
    text-decoration: none !important;
}

.hero-section-doc .col-12 .box p {
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
    color: var(--black-color);
    margin-bottom: 20px;

}

.hero-section-doc .col-12 .box p {
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
    color: var(--black-color);
    margin-bottom: 20px;
    width: 50%;
}

.hero-section .btn-hero,
.hero-section-other .btn-hero {
    margin-top: 40px;
}

.hero-section .btn-hero .btn a,
.hero-section-other .btn-hero .btn a {
    border: 1px solid var(--black-color);
    padding: 12px 30px;
    border-radius: 30px;
    color: var(--black-color);
}

.hero-section .btn-hero .btn a:hover,
.hero-section-other .btn-hero .btn a:hover {
    color: var(--black-color);
    background-color: var(--white-color);
}

.hero-section .btn-hero .btn.whitebtn a,
.hero-section-other .btn-hero .btn.whitebtn a {
    color: var(--black-color);
    background-color: var(--white-color);
    border: 1px solid #000;
}

.hero-section .btn-hero .btn.whitebtn a:hover,
.hero-section-other .btn-hero .btn.whitebtn a:hover {
    background-color: black;
    color: var(--white-color);
}

/*  */
.hero-section-doc .btn-hero {
    margin-top: 40px;
}

.hero-section-doc .btn-hero .btn a {
    border: 1px solid var(--white-color);
    padding: 12px 30px;
    border-radius: 30px;
    color: var(--white-color);
}

.hero-section-doc .btn-hero .btn a:hover {
    color: var(--black-color);
    background-color: var(--white-color);
}

.hero-section-doc .btn-hero .btn.whitebtn a {
    color: var(--black-color);
    background-color: var(--white-color);
}

.hero-section-doc .btn-hero .btn.whitebtn a:hover {
    background-color: transparent;
    color: var(--white-color);
}

.adantages-swiper {
    margin-bottom: 100px !important;
}

.adantages-swiper .swiper {
    width: 100%;
    height: 100%;
}

.adantages-swiper .swiper-slide {
    font-size: 18px;
    color: var(--black-color);
    width: 210px;
    height: 300px;
    border-radius: 10px;
    object-fit: cover;
    cursor: pointer;
}

.adantages-swiper .swiper-slide:nth-child(1) {
    background: url(../images-new/business.svg) no-repeat center center/cover;
}

.adantages-swiper .swiper-slide:nth-child(2) {
    background: url(../images-new/community.svg) no-repeat center center/cover;
}

.adantages-swiper .swiper-slide:nth-child(3) {
    background: url(../images-new/creative.svg) no-repeat center center/cover;
}

.adantages-swiper .swiper-slide:nth-child(4) {
    background: url(../images-new/education.svg) no-repeat center center/cover;
}

.adantages-swiper .swiper-slide:nth-child(5) {
    background: url(../images-new/entertainment.svg) no-repeat center center/cover;
}

.adantages-swiper .swiper-slide:nth-child(6) {
    background: url(../images-new/government.svg) no-repeat center center/cover;
}

.adantages-swiper .swiper-slide:nth-child(7) {
    background: url(../images-new/news.svg) no-repeat center center/cover;
}

.adantages-swiper .swiper-slide:nth-child(8) {
    background: url(../images-new/opinion.svg) no-repeat center center/cover;
}

/* Custom arrow button styles */
.adantages-swiper .swiper-button-prev,
.adantages-swiper .swiper-button-next,
.adantages-swiper .swiper-button-prev2,
.adantages-swiper .swiper-button-next2 {
    position: relative;
    width: 50px;
    height: 50px;
    line-height: 50px;
    position: relative;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(0, 0, 0, 1);
}

.adantages-swiper .swiper-button-prev {
    right: 130px !important;
    top: 27px;
    left: 0px;
}

.adantages-swiper .swiper-button-next,
.adantages-swiper .swiper-button-next2 {
    position: relative;
    /* top: -25px; */
    right: -70px !important;
}

.adantages-swiper .swiper-button-prev::after,
.adantages-swiper .swiper-button-next::after,
.adantages-swiper .swiper-button-prev2::after,
.adantages-swiper .swiper-button-next2::after {
    position: relative;
    color: var(--black-color);
    top: -3px;
}

.adantages-swiper .swiper-button-prev::after {
    content: "";
    font-size: 32px !important;
}

.adantages-swiper .swiper-button-next::after,
.adantages-swiper .swiper-button-next2::after {
    content: "";
    /* font-size: 32px !important; */
}


.adantages-swiper .swiper-slide::after {
    content: "";
    /* background: linear-gradient(360deg, #000000 0%, rgba(0, 0, 0, 0) 100%); */
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 2;
    border-radius: 10px 10px 10px 10px;
    opacity: 0.6;
    border: 1px solid #000;
}



.adantages-swiper .swiper-slide p {
    height: 100%;
    /* background: linear-gradient(360deg, #000000 0%, rgba(0, 0, 0, 0) 100%); */
    width: 153px;
    border-radius: 10px;
    display: flex;
    align-items: end;
    justify-content: start;
    padding: 0px 0px 20px 20px;
    position: relative;
    z-index: 99 !important;
}

.adantages-swiper .box-arrows {
    margin-top: 50px !important;
}


/* CODE FOR DOCOMENT SECTION  */
.documents .box {
    background-color: rgba(244, 244, 244, 1);
    border-radius: 15px;
}

.documents .row {
    flex-wrap: wrap;
    justify-content: center;
}

.documents .row .col-1 {
    flex-grow: 1;
    flex-basis: 250px;
    max-width: 397px;
}

.documents .box .box-content {
    padding: 10px 15px 20px 15px;
}

.documents .box-content h6 {
    color: rgba(92, 92, 92, 1);
    font-family: var(--secondary-font);
    font-size: 16px;
    font-weight: 600;
    line-height: 21.6px;
    margin-bottom: 10px;

}

.documents .box-content h1 {
    font-family: var(--secondary-font);
    font-size: 24px;
    font-weight: 600;
    line-height: 31.2px;
    color: var(--black-color);
    margin-bottom: 15px;
    min-height: 62px;
    height: 65px;
}

.documents .box .box-content .pre-box {
    gap: 5px;
    margin-bottom: 20px;
    color: #000;
}

.box-content .sub-box img {
    width: 49px;
}

.documents .box .box-content hr {
    margin-bottom: 20px;
}

.documents .box .box-content .para-btn,
.documents .box .box-content .arrow-btn {
    color: var(--black-color);
}

.documents .box .box-content .para-btn {
    font-family: var(--secondary-font);
    font-size: 16px;
    font-weight: 600;
    line-height: 21.6px;

}

.documents .box:hover .box-content .arrow-btn {
    animation: left-right .6s 1 ease-in-out;
}

@keyframes left-right {
    0% {
        transform: translateX(-50px);
    }

    100% {
        transform: translateX(0px);
    }
}

/* CODE FOR JONUARY SECTION  */
.journey .row {
    flex-wrap: wrap;
}

.journey .col-1 {
    flex: 300px;
    width: 536px;
    max-width: 536px;
    height: 503px;
    border-radius: 10px;
}

.journey .col-1:nth-child(1) {
    background: url(../images-new/explore.svg) no-repeat center center/cover;
    background-size: auto;
}

.journey .col-1:nth-child(2) {
    background: url(../images-new/discover.svg) no-repeat center center/cover;
    background-size: auto;
}

.journey .col-1:nth-child(3) {
    background: url(../images-new/become-a-contributor-updated.svg) no-repeat center center/cover;
    background-size: cover;
}

.journey .col-1 .btn-arrow {
    height: 100%;
    position: relative;
    padding: 20px;
    align-items: end;
    justify-content: space-between;

}

.journey .col-1 .btn-arrow::after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0;
    right: 0px;
    bottom: 0px;
    /* background: linear-gradient(360deg, #fff 0%, rgba(0, 0, 0, 0) 100%); */
    opacity: 0.6;
    border-radius: 10px;
    border: 1px solid #000;
}

.journey .col-1 .btn-arrow p {
    position: relative;
    z-index: 9;
    max-width: 220px;
    font-family: var(--primary-font);
    font-size: 30px;
    font-weight: 500;
    line-height: 40px;
    color: var(--black-color);
    background: #fff;
    border-radius: 10px;
}

.journey .col-1 .btn-arrow i {
    position: relative;
    z-index: 9;
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    line-height: 50px;
    border-radius: 50%;
    border: 2px solid var(--black-color);
    color: var(--black-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.journey .col-1 .btn-arrow i:hover {
    background-color: var(--black-color);
    color: var(--white-color);
    cursor: pointer;
}

#mc_embed_signup input[type="submit"] {
    background-color: #fff;
    color: #000;
    border-radius: 0px 10px 10px 0px !important;
}

#mc_embed_signup #mc-embedded-subscribe-form input.mce_inline_error {
    background-color: #D3D3D3;
}

#mc-embedded-subscribe {
    margin: 1em 0 1em 0% !important;
}

#mc_embed_signup input {
    border: 1px solid #ABB0B2;
    background-color: #D3D3D3;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 10px 0px 0px 10px !important;
}

#mc_embed_signup input::placeholder {
    color: #000;
}

#mce-success-response {
    width: 100% !important;
}

















































/* CODE FOR FOOTER */
footer {
    background-color: var(--black-color) !important;
}

footer .logo img {
    width: 240px;
}

footer .row {
    flex-wrap: wrap;
    gap: 40px;
}

footer .row .col-1 {
    flex-basis: 160px;
}

footer .col-2 {
    flex-basis: 350px;
    position: relative;
}

footer .container .row:nth-child(4) {
    margin-top: 50px;
}

footer .container .row:nth-child(2) {
    padding: 0px 0px 50px 0px !important;
}

footer .container {
    padding: 50px 30px 30px 30px !important;
}

footer p,
footer a {
    color: var(--white-color);
    display: block !important;
}

footer .col-2 .box p {
    max-width: 459px;
    font-size: 24px;
    font-weight: 500;
    line-height: 32.4px;
    margin-top: 20px;
    margin-bottom: 20px;

}

footer .col-2 p.bottom-para {
    position: absolute;
    bottom: 0px;
    font-size: 18px !important;
    font-weight: 500;
    line-height: 27px;

}

@media screen and (max-width: 836.00px) {

    footer .col-2 p.bottom-para {
        position: relative;
        bottom: 0px;

    }
}

footer .col-2 .footer-search {
    width: 97%;
    gap: 0px;
}

footer .col-2 .footer-search input {
    padding: 15px 10px 15px 16px;
    background-color: transparent;
    font-size: 14px;
    font-weight: 700;
    line-height: 27px;
    border: none;
    outline: none;
    width: 100%;
    background-color: var(--white-color);
    border-radius: 10px 0px 0px 10px;
}

footer .col-2 .footer-search .btn a,
footer .col-2 .footer-search .btn .input_submit {
    width: 130px;
    padding: 15px 35px;
    border-radius: 0px 10px 10px 0px;
    text-align: center;
    background-color: rgba(115, 115, 115, 1);
    color: #ffff;
}

.clear a {
    background-color: #fff !important;
}

footer .col-1 h3 {
    font-family: General Sans;
    font-size: 28px;
    font-weight: 600;
    line-height: 37.8px;
    font-family: var(--secondary-font) !important;
    color: var(--white-color);
    margin-bottom: 20px;
}

footer .col-1 a {
    color: rgba(174, 174, 174, 1);
    font-size: 20px;
    font-weight: 500;
    line-height: 40px;
    letter-spacing: -0.02em;

}

footer .col-1 a:hover {
    color: var(--white-color);
}

@media screen and (min-width: 929.00px) and (max-width: 1200px) {
    header .search-input {
        width: 400px;

    }

    header .container-fluid {
        padding: 10px 30px !important;
    }

    header .nav-menu {
        font-size: 13px;
    }

    .contributors .row .col-1 {
        flex-basis: 200px;
    }

    header.mobile .container-fluid .row {
        gap: 20px;
    }
}

@media screen and (min-width: 928.99px) {
    .pc {
        display: none !important;
    }
}

@media screen and (max-width: 928.98px) {
    .mobile {
        display: none !important;
    }
}

.container-arrow {
    padding: 0px 20px;
}

@media screen and (max-width: 768.98px) {
    .container {
        padding: 50px 10px;
    }

    .doc_hero_small {
        padding-top: 50px !important;
        padding-bottom: 10px !important;
    }

    .filter-options {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        width: 100% !important;
    }

    .main-heading .doc_sub-heading {
        font-family: Poppins;
        font-weight: 500;
        font-size: 24px;
        line-height: 36px;
        width: 100% !important;
    }

    .filter_btn_div {
        padding: 0px 10px !important;

    }

    .filter_option_div {
        padding: 50px 10px 0px 10px;
    }

    .container-fluid {
        padding: 10px;
    }

    header .container-fluid {
        padding: 10px 10px !important;
    }

    header .logo img {
        height: 50px;
        max-width: 150px;
    }

    header .profile {
        width: 45px;
        gap: 5px;
    }

    footer .container {
        padding: 50px 10px 30px 10px !important;
    }

    .hero-section .col-12,
    .hero-section .col-6,
    .hero-section-other .col-12,
    .hero-section-other .col-6 {
        padding: 40px 18px;
    }

    .hero-section,
    .hero-section-other {
        padding: 10px;
    }

    .adantages-swiper .swiper-button-next::after,
    .adantages-swiper .swiper-button-next2::after {
        content: "\2192";
        /* Right arrow Unicode */
        font-size: 32px !important;
    }

    .documents .row .col-1 {
        width: 100% !important;
        max-width: 100% !important;
    }

    .documents .row img {
        width: 100%;
    }

}

@media screen and (max-width: 468.98px) {
    footer .col-2 .footer-search input {
        padding: 15px 7px 15px 12px;
    }

    footer .col-2 .footer-search .btn .input_submit {
        padding: 15px 15px;
    }

    footer .col-2 .footer-search .btn a {
        width: 90px;
        padding: 11.6px 15px;
        font-size: 14px;
    }

    footer .col-2 .box p {
        font-size: 20px;

    }

    footer .col-1 h3 {
        font-size: 24px !important;
    }

    footer .col-1 a {
        font-size: 16px !important;
    }

    footer .col-2 p.bottom-para {
        font-size: 14px;
    }

    .main-heading h1 {
        font-size: 45px !important;
        line-height: 50px !important;
    }

    .contributors .row .col-1 {
        max-width: 100% !important;
        width: 100% !important;
    }

    .hero-section,
    .hero-section-other {
        padding: 0px 10px;
    }

    .adantages-swiper .swiper-button-prev::after,
    .adantages-swiper .swiper-button-next::after,
    .swiper-section .swiper-button-next::after,
    .swiper-section .swiper-button-prev::after,
    .adantages-swiper .swiper-button-prev2::after,
    .adantages-swiper .swiper-button-next2::after,
    .swiper-section .swiper-button-next2::after,
    .swiper-section .swiper-button-prev2::after {
        font-size: 32px !important;
        top: -3px;
    }

    .hero-section .btn-hero .hero-section-other .btn-hero {
        flex-direction: column;
        gap: 30px;
        justify-content: start;
        align-items: start;
    }

    .hero-section.profile .col-12,
    .hero-section-other.profile .col-12 {
        padding: 20px 10px;
    }

    .hero-section.profile .col-6,
    .hero-section-other.profile .col-6 {
        padding: 20px 10px;
    }

    .hero-section .col-12 h1,
    .hero-section .col-6 h1,
    .hero-section-other .col-12 h1,
    .hero-section-other .col-6 h1 {
        font-size: 38px;
        line-height: 55px;
    }

    .hero-section .col-12 .box p,
    .hero-section .col-6 .box p,
    .hero-section-other .col-12 .box p,
    .hero-section-other .col-6 .box p {
        font-size: 20px;
    }

    .hero-section-doc .col-12 .box p {
        font-size: 20px;
    }
}







/*=============================================================== 
Profile Page 
=============================================================== */


/* -------- profile hero section ----------- */

.profile_hero_section {
    padding: 60px 0 90px;
}

.custom_container {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
}

.profile_hero_section>.custom_container {
    display: grid;
    grid-template-columns: 40% 40%;
    align-items: center;
    justify-content: space-between;
}

.profile_hero_section h2 {
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    /* 57.6px */
}

.profile_hero_section h4 {
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    /* 33.6px */
    padding: 10px 0 30px;
}

.profile_hero_section .txt {
    font-size: 18.036px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.profile_hero_section h5 {
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
    padding: 15px 0 42px;
}

.profile_hero_section .insight {
    display: flex;
    align-items: center;
    gap: 10px 30px;
    padding-top: 19px;
    flex-wrap: wrap;
}

.profile_hero_section .insight li {
    font-size: 16px;
    font-weight: 500;
}

.profile_hero_section .more {
    display: inline-block;
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-decoration-line: underline;
    margin: 37px 0 34px;
    transition: 200ms;
}

.profile_hero_section .more:hover {
    color: #3b3b3b;
}

.profile_hero_section .btn_group {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 19px;
}

.button {
    padding: 10px 30px;
    display: inline-block;
    border-radius: 100px;
    background: #000;
    color: #FFF;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    transition: 200ms;
}

.button:hover {
    background: #3b3b3b;
}

.button_outline {
    border: 1px solid #000;
    color: #000;
    background: transparent;
}

.button_outline:hover {
    color: #fff;
    background: #000;
}

.share_btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #D9D9D9;
    transition: 200ms;
}

.share_btn:hover {
    background: #000;
}

.share_btn:hover img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(127deg) brightness(98%) contrast(106%);
}


.profile_hero_img {
    display: block;
    margin-left: auto;
    width: 532px;
    max-width: 100%;
    height: 500px;
    object-fit: scale-down;
    border-radius: 20px;
}


/* profiel hero section responsive code */

@media (min-width: 1400px) {
    .custom_container {
        max-width: 1368px;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .custom_container {
        max-width: 1160px;
    }

    .profile_hero_section>.custom_container {
        grid-template-columns: 46% 47%;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .custom_container {
        max-width: 940px;
    }

    .profile_hero_section>.custom_container {
        grid-template-columns: 48% 48%;
    }

    .button {
        font-size: 15px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .custom_container {
        max-width: 720px;
    }
}

@media(max-width: 991px) {
    .profile_hero_section>.custom_container {
        grid-template-columns: 1fr;
    }

    .profile_hero_section>.custom_container>div:nth-child(1) {
        order: 2;
    }

    .profile_hero_section>.custom_container>div:nth-child(2) {
        order: 1;
    }

    .profile_hero_img {
        margin-left: unset;
        margin-bottom: 40px;
        width: 100%;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .custom_container {
        max-width: 540px;
    }
}

@media(max-width: 575px) {
    .profile_hero_section {
        padding: 50px 0 80px;
    }

    .custom_container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .profile_hero_img {
        height: auto;
    }

    .profile_hero_section h2 {
        font-size: 40px;
    }

    .profile_hero_section h4 {
        font-size: 25px;
    }

    .profile_hero_section .btn_group {
        gap: 10px;
    }

    .profile_hero_section h5 {
        padding-bottom: 26px;
    }

    .profile_hero_section .button {
        padding: 10px 20px;
        font-size: 12px;
    }

    .share_btn {
        width: 41px;
        height: 41px;
    }
}







/* ------------------ profile user section ---------------- */

.profile_user_section {
    padding-bottom: 100px;
}


.profile_user_filter {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
    padding-bottom: 32px;
}

.profile_user_filter .sort_select {
    margin-left: auto;
}

.select_box {
    height: 44px;
    padding: 0 43px 0 15px;
    border-radius: 100px;
    background-color: #ECECEC;
    background-image: url(../images/arrow-down.svg);
    background-repeat: no-repeat;
    background-position: calc(100% - 15px) center;
    border: none;
    color: #000;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    -webkit-appearance: none;
}

.select_box:focus {
    outline: 1px solid #F00;
}

.select_box option {
    color: #000;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.profile_user_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 79px;
}

.user_card .user_card_inner {
    display: block;
    border-radius: 20px;
    border: 2px solid #000;
    background: #F4F4F4;
    padding: 28px 20px 22px 20px;
}

.user_card .badge {
    display: inline-block;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    border-radius: 100px;
    background: #000;
    padding: 4px 12px 5px 12px;
    font-family: Poppins;
}

.user_card .date {
    color: #000;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    padding-top: 187px;
}

.user_card .title {
    color: #000;
    font-family: Poppins;
    font-size: 25px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    padding: 15px 0 20px;
}

.user_card .edit_btn {
    display: inline-block;
    color: #000;
    text-align: center;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    border-radius: 100px;
    border: 1px solid #000;
    padding: 10px 15px;
}

.user_card .edit_btn:hover {
    background: #000;
    color: #fff;
}

.user_card .user_info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 39px;
}

.user_card .user_info img {
    width: 49px;
    height: 49px;
    border-radius: 10px;
    flex-shrink: 0;
}

.user_card .user_info h5 {
    color: #5C5C5C;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.user_card_insight ul {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px 20px;
    flex-wrap: wrap;
}

.user_card_insight ul li {
    color: #000;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.user_card_insight .bookmark_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #DADADA;
    width: 51px;
    height: 51px;
    border-radius: 50%;
}

.user_card_insight .bookmarked_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    color: #fff;
    width: 51px;
    height: 51px;
    border-radius: 50%;
}

.user_card_insight .bookmark_btn:hover {
    background: #000;
}

.user_card_insight .bookmark_btn:hover img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(127deg) brightness(98%) contrast(106%);
}

.user_card_insight .bookmarked_btn img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(127deg) brightness(98%) contrast(106%);
}


@media (max-width: 1399px) {
    .profile_user_grid {
        gap: 50px;
    }
}

@media (max-width: 1199px) {
    .profile_user_grid {
        gap: 20px;
    }

    .user_card .title {
        font-size: 20px;
    }

    .user_card .date {
        padding-top: 150px;
    }
}

@media (max-width: 991px) {
    .profile_user_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .user_card .title {
        font-size: 25px;
    }
}

@media (max-width: 767px) {
    .profile_user_filter {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .profile_user_filter .select_box {
        width: 100%;
    }

    .profile_user_filter .select_box.sort_select {
        grid-column: 1 / -1;
    }

    .profile_user_grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .user_card .title {
        font-size: 25px;
    }
}

.document-detail .category-btn {
    padding: 10px 30px;
    border: 1px solid var(--black-color);
    display: inline-block;
    background-color: var(--black-color);
    color: var(--white-color);
    border-radius: 100px;
    cursor: pointer;
}

.document-detail .topic-btn {
    padding: 10px 30px;
    border: 1px solid rgba(206, 206, 206, 1);
    display: inline-block;
    background-color: rgba(206, 206, 206, 1);
    color: var(--black-color);
    border-radius: 100px;
    cursor: pointer;
}

.doc-main-heading h1 {
    max-width: 100% !important;
    font-family: Poppins;
    font-size: 54px;
    font-weight: 600;
    line-height: 60.6px;
    text-align: left;
    margin-bottom: 20px;
    margin-top: 30px;
}

.detail-text {
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
    font-family: var(--primary-font);
}

.document-detail {
    padding: 80px 140px;
    max-width: 1728px !important;
    margin: auto;
}

.doc-btn {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

.doc-btn button {
    font-family: Poppins;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
}

.doc-about {
    display: flex;
    justify-content: flex-start;
    gap: 15px;
    margin-top: 30px
}

.doc-about div {
    font-family: Poppins;
    font-weight: 600;
    font-size: 24px;
    line-height: 36px;
    color: rgba(0, 0, 0, 1);
}

.doc-auth {
    color: rgba(144, 144, 144, 1);
    text-decoration: underline;
}

.rating {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    align-items: center;
    margin-top: 30px
}

.rating .total-reviews,
.rating .point {
    font-family: Poppins;
    font-weight: 600;
    font-size: 24px;
    line-height: 36px;
    color: rgba(0, 0, 0, 1);
}

.section-pdf {
    max-width: 1728px !important;
    margin: auto;
}

.section-pdf-inner {
    margin: 50px 0px;
    border-radius: 20px;
}

.section-upload-main {
    height: 60px;
    max-width: 1728px !important;
    margin: auto;
}

.sub-container {
    max-width: 1728px !important;
    margin: auto;
}

.section-upload {
    margin: 30px 140px;
    font-family: Poppins;
    font-weight: 500;
    font-size: 18.05px;
    background: #FF0000;
    padding: 15px 20px;
    border-radius: 15px;
    cursor: pointer;
    color: #fff;
}

.section-upload-inner {
    margin: 30px 0px 30px 0px;
    font-family: Poppins;
    font-weight: 500;
    font-size: 18.05px;
    background: rgba(226, 226, 226, 1);
    padding: 15px 20px;
    border-radius: 15px;
}

.res-sec {
    display: flex;
    border: 1px solid #000;
    border-radius: 20px;
}

.res-sec .profile {
    width: 60%;
}

.res-sec .file-sec {
    width: 40%;
    display: flex;
    gap: 20px;
}

.profile .profile-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
}

.profile .profile-name {
    font-family: Poppins;
    font-weight: 600;
    font-size: 24px;
    line-height: 31.2px;
    margin-top: 8px;
}

.profile .profile-intro {
    font-family: Poppins;
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
    margin-top: 8px;
    width: 90%;
}

.profile .profile-date {
    font-family: Poppins;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    margin-top: 8px;
}

.file-sec .file-image {
    border: 1px solid var(--black-color);
    height: 225px;
}

.file-sec .file-title {
    font-weight: 600;
    font-size: 18px;
    line-height: 23.4px;
}

.res-sec {
    padding: 40px;
}

.pagination-main {
    width: 100%;
}

.pagination {
    display: flex;
    width: 50%;
    margin: auto;
    justify-content: center;
    gap: 40px;
    align-items: center;
    margin-bottom: 20px;
}

.mt-3 {
    margin-top: 50px;
}

.pages {
    display: flex;
    gap: 15px;
}

.pages span {
    cursor: pointer;
}

.pagination .prev {
    color: #5C5C5C;
    font-weight: 800;
    font-family: Poppins;
}

.pagination span {
    border: none;
}

.pagination .nxt {
    color: #000;
    font-weight: 800;
    font-family: Poppins;
}

.pages {
    color: #000;
    font-weight: 800;
    font-family: Poppins;
}

.pages .first_page {
    text-decoration: underline;
    border: none;
}

.pages a {
    border: none;
}

.section-card {
    height: auto;
    border: 1px solid #000;
    border-radius: 20px;
    width: 24%;
    padding: 15px;
}

.section-card .category {
    font-family: Poppins;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    background-color: #000;
    color: #fff;
    border-radius: 20px;
    padding: 5px 10px;
}

.section-card .card-date {
    margin-top: 30px;
    font-family: Poppins;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
}

.section-card .card-date2 {
    font-family: Poppins;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
}

.section-card .card-title {
    margin-top: 20px;
    font-family: Poppins;
    font-weight: 600;
    font-size: 25px;
    line-height: 32.5px;
    color: #000;
}

.section-card .card-contributor {
    margin-top: 20px;
    font-family: Poppins;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: rgba(92, 92, 92, 1);
}

/* 3rd page */
.section-card-list {
    height: 300px;
    border: 1px solid #000;
    border-radius: 20px;
    width: 100%;
    padding: 15px;
    display: flex;

}

.section-card-list .category {
    font-family: Poppins;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    background-color: #000;
    color: #fff;
    border-radius: 20px;
    padding: 5px 10px;
}

.section-card-list .card-date {
    margin-top: 30px;
    font-family: Poppins;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
}

.section-card-list .card-date2 {
    font-family: Poppins;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
}

.section-card-list .card-title {
    margin-top: 10px;
    font-family: Poppins;
    font-weight: 600;
    font-size: 25px;
    line-height: 32.5px;
}

.section-card-list .card-contributor {
    margin-top: 20px;
    font-family: Poppins;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: rgba(92, 92, 92, 1);
}

.section-like {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    padding: 15px 0px;
    justify-content: flex-start;
}

.grid-list .section-like {
    width: 100%;
    flex-direction: column;
}

.list-content .description {
    width: 100%;
    margin: 10px 0px;
}

.card-view-doc {
    font-family: Poppins;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    margin-top: 20px;
}

.contributor_sec img {
    width: 49px;
    height: 49px;
    border-radius: 10px;
}

.contributor_sec {
    display: flex;
    align-items: end;
    gap: 10px;
}

.modal-sections {
    flex-grow: 1;
}

@media screen and (max-width : 1800px) {
    .sub-container {
        margin: 50px 40px;
    }
}

@media screen and (max-width : 1200px) {
    .document-detail {
        padding: 80px 80px;
    }

    .section-pdf,
    .section-upload,
    .sub-container {
        margin: 50px 50px;
    }

    .main-heading h1 {
        font-size: 48px !important;
        line-height: 48px !important;
    }

    .section-card {
        width: 30%;
    }

    .section-card-contributor {
        width: 32%;
    }

    .section-like {
        flex-wrap: wrap;
        justify-content: start;
    }

    .section-like-contributor {
        gap: 5px !important;
        justify-content: center !important;
    }

    .hero-section-doc .col-12 h1 {
        font-size: 48px;
    }

    .section-card2 .card-title {
        font-size: 20px;
    }

    .section-card2 .card-contributor {
        font-size: 14px;
    }

    .section-pdf-inner {
        margin: 50px 0px;
    }

    .filter_pro {
        flex-wrap: wrap;
        justify-content: end;

    }

    .custom-select .select-box {
        padding: 15px 20px;
    }

    .custom-select .fas,
    .selected,
    .option,
    .sub_category_option {
        font-size: 14.04px;
    }

    #upload-form .form-control {
        padding: 15px 20px;
        font-size: 14.04px;
    }

    .modal-upload-box svg {
        height: 40px;
        width: 40px;
    }

    .modal-upload-text,
    .modal-upload-info {
        font-size: 14px;
    }

    .modal-sections {
        flex-direction: column;
    }

    .modal-sections .modal-section-1,
    .modal-sections .modal-section-2 {
        width: 100%;
    }

    .modal-upload-box {
        width: 100%;
    }
}

@media screen and (max-width : 992px) {
    .doc-main-heading h1 {
        font-size: 38px;
    }

    .document-detail {
        padding: 70px 60px;
    }

    .section-pdf,
    .section-upload,
    .sub-container {
        margin: 50px 50px;
    }

    .res-sec {
        flex-direction: column;
    }

    .res-sec .profile {
        width: 100%;
    }

    .res-sec .file-sec {
        width: 100%;
        margin-top: 20px;
    }

    .section-card .card-title {
        font-size: 20px;
    }

    .hero-section-doc .col-12 h1 {
        font-size: 38px;
        line-height: 48.6px;
    }

    .hero-section-doc.profile .col-12 {
        justify-content: center;
    }

    .list-content .description {
        width: 100%;
        margin-top: 10px;
    }

    .tags {
        padding: 0px 20px 10px 0px;
    }

    .modal-sections .modal-section-1,
    .modal-sections .modal-section-2 {
        width: 100%;
    }

    .modal-upload-box {
        height: 100% !important;
    }

    .modal-section-1 canvas {
        height: 200px !important;
        border-radius: 15px;
        object-fit: contain !important;
    }
}

@media screen and (max-width : 768px) {
    .doc-main-heading h1 {
        font-size: 35px;
    }

    .detail-text {
        font-size: 18px;
    }

    .doc-about div {
        font-size: 15px;
    }

    .rating .total-reviews,
    .rating .point {
        font-size: 16px;
    }

    .stars svg {
        height: 18px;
        width: 20px;
    }

    .section-card {
        width: 47%;
    }

    .main-heading h1 {
        font-size: 40px !important;
    }

    .main_section {
        flex-direction: column;
    }

    .filters {
        width: 100% !important;
    }

    .grid {
        width: 100% !important;
    }

    .section-card2_filter {
        width: 45% !important;
    }

    .filter-hero_section {
        padding-top: 50px !important;
        padding-bottom: 0px !important;
    }

    .card-view-doc {
        margin-top: 10px;
    }

    .section-card-list .card-title {
        font-size: 17px;
        margin-top: 5px;
    }

    .list-content .description {
        width: 100%;
        margin-top: 3px;
    }
}

@media screen and (max-width : 600px) {
    .document-detail {
        padding: 35px 35px;
    }

    .doc-about {
        gap: 10px;
    }

    .doc-about div {
        font-size: 13px;
    }

    .rating .total-reviews,
    .rating .point {
        font-size: 14px;
    }

    .section-pdf,
    .section-upload,
    .sub-container {
        margin: 30px 30px;
    }

    .hero-section-doc .col-12 .box p {
        width: 100%;
    }

    .section-card-list div .section-file {
        width: 130px !important;
    }

    .section-card-list .card-title {
        font-size: 14px;
    }

    .list-content .description {
        font-size: 15px;
    }

    .section-card2 {
        /* height: 470px; */
    }

}

@media screen and (max-width : 500px) {
    .doc-main-heading h1 {
        font-size: 30px;
        line-height: 38.6px;
    }

    .modal-body {
        padding: 0px 15px !important;
    }

    .modal-footer {
        text-align: right;
        margin-bottom: 0.5rem;
        display: flex;
        flex-wrap: wrap-reverse;
    }

    .upload-heading {
        font-size: 25px !important;
    }

    .upload-form {
        margin-top: 10px !important;
    }

    .doc-about {
        flex-wrap: wrap;
    }

    .res-sec {
        padding: 25px;
    }

    .section-card {
        width: 80%;
    }

    .main-heading h1 {
        font-size: 30px !important;
        line-height: 30px !important;
    }

    .hero-section-doc.profile .col-12 {
        padding: 20px 20px;
    }

    .section-card2 {
        width: 90% !important;
    }

    .section-card2_filter {
        width: 90% !important;
    }

    .profile_user_grid .user_card .section-card2_filter {
        width: 100% !important;
    }

    .section-card-list {
        flex-direction: column;
        height: 450px;
    }

    .list-content .description {
        font-size: 13px;
    }

    .section-like {
        justify-content: center;
    }

    .res-sec .file-sec {
        flex-direction: column;
    }
}

.main-heading .sub-heading {
    font-family: 'General Sans', sans-serif;
    font-weight: 500;
    font-size: 28px;
    line-height: 28px;
}

.filters_name {
    font-family: Poppins;
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
    cursor: pointer;
}

.main-heading .doc_sub-heading {
    font-family: Poppins;
    font-weight: 500;
    font-size: 24px;
    line-height: 36px;
    width: 70%;
}

.filter-hero_section {
    padding-top: 100px;
    padding-bottom: 50px;
}

.filter-hero {
    padding-top: 100px;
    padding-bottom: 100px;
}

.doc-hero {
    padding-top: 100px;
    padding-bottom: 10px;
}

.filter-section {
    display: flex;
    justify-content: space-between;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 0px;
    padding-bottom: 50px;
}

@media screen and (max-width: 768px) {
    .filter-section {
        padding-left: 10px;
        padding-right: 10px;
        padding-top: 20px;
    }
}

.filter-btn span,
.filter-btn a {
    width: 258px;
    height: 66px;
    border-radius: 100px;
    background-color: #000;
    color: #FFF;
    padding: 15px 30px;
    cursor: pointer;
}

.filter-option-btn a {
    width: 258px;
    height: 66px;
    border-radius: 100px;
    border: 1px solid rgba(0, 0, 0, 1);
    color: rgba(0, 0, 0, 1);
    padding: 15px 30px;
}

.filter-option-btn .optionspan {
    width: 258px;
    height: 66px;
    border-radius: 100px;
    border: 1px solid rgba(0, 0, 0, 1);
    color: rgba(0, 0, 0, 1);
    padding: 15px 30px;
    cursor: pointer;
}

/* The outer switch wrapper */
.switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 24px;
    margin-bottom: 0;
}

/* Hide the real checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The pill track */
.slider {
    position: absolute;
    inset: 0;
    /* top/right/bottom/left: 0 */
    background-color: #000;
    /* black pill */
    border-radius: 999px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

/* The round knob */
.slider::before {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: #fff;
    top: 50%;
    left: 3px;
    transform: translateY(-50%);
    transition: transform 0.2s ease;
}

/* When checked: move knob to the right */
.switch input:checked+.slider::before {
    /* 48px width - 18px knob - 3px padding on each side = 24px travel */
    transform: translate(24px, -50%);
}

.switch input:checked+.slider {
    background-color: #000;
}

.slider.round {
    border-radius: 999px;
}

.filter-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.d-none {
    display: none !important;
}

/* end switch */
.main_section {
    display: flex;
    justify-content: space-between;
    padding: 16px 20px;
}

.filters {
    width: 30%;
}

.grid {
    width: 100%;
    display: flex;
    gap: 10px;
}

.grid .user_card {
    width: 33%;
}

.grid-list {
    width: 100%;
    display: flex;
    gap: 10px;
}

.grid-list .user_card {
    width: 33%;
}

.tags {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    padding: 0px 20px 10px 20px;
}

.tags .tag {
    background: rgba(236, 236, 236, 1);
    padding: 13px 10px;
    border-radius: 20px;
    display: flex;
    gap: 5px;
    align-items: center;
    margin-bottom: 10px;
}

.tag svg {
    cursor: pointer;
}

.tag p {
    font-weight: 700;
    font-family: Poppins;
    font-size: 14px;
    line-height: 12px;
}

.clear_filter {
    font-family: Poppins;
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    padding: 10px 20px;
    color: #000;
}

.clear_filter_div {
    margin-top: 20px;
}

.clear-filter-wrapper {
    margin-top: 15px;
}

.clear-filter-wrapper hr {
    margin-top: 20px;
}

.clear-filter {
    font-family: Poppins;
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    color: black;
    cursor: pointer;
    text-decoration: underline;
}

.sort_by {
    padding: 10px 20px;
    margin-top: 20px;
}

.sort_by p {
    font-family: Poppins;
    font-weight: 700;
    font-size: 24px;
    line-height: 36px;
}

.radio_filter {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    align-items: center;
    margin-top: 15px;
}

.input-group {
    display: flex;
    flex-direction: column;
}

label {
    font-weight: 450;
    font-family: Poppins;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 0.25em;
}

.radio_filter label {
    font-weight: 700;
    font-family: Poppins;
    font-size: 16px;
    line-height: 24px;
}

.radio_filter input {
    accent-color: #000;
}

.category_filter {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
    margin-top: 15px;
    padding-right: 30px;
}

.category_filter label {
    font-weight: 700;
    font-family: Poppins;
    font-size: 16px;
    line-height: 24px;
}

.category_filter input {
    accent-color: #000;
}

.sort_by p.line {
    border: 1px solid #000;
    margin: 10px 0px;
}

.card_empty_div {
    height: 260px;
}

/* Upload Modal Box */
.modal,
.modal2 {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: visibility 0s, opacity 0s;
    z-index: 9999;
}

.modal-content,
.modal-content2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #d9d9d9;
    border-radius: 0.5rem;
    width: 80%;
    height: fit-content;
    margin: 10px 0px;
}

.modal-header {
    padding: 15px 30px;
}

.modal-body {
    padding: 0px 75px;
    height: 90%;
}

.filtermodelbody {
    padding: 0px 15px !important;
}

@media screen and (max-width: 1199px) {

    .modal-content,
    .modal-content2 {
        width: 50em;
    }
}

@media screen and (max-width: 992px) {

    .modal-content,
    .modal-content {
        width: 40em;
    }
}

@media screen and (max-width: 778px) {

    .modal-content,
    .modal-content {
        width: 90%;
    }

}

#PDFPreview {
    height: 100%;
    overflow: auto;
}

#PDFPreview img {
    height: auto;
}

#PDFPreview.landscape {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
}

#PDFPreview:not(.landscape) canvas {
    width: auto !important;
    height: 100% !important;
    margin: auto !important;
}

/* if the viewport HEIGHT is less than 1000px */
@media screen and (max-height: 1000px) {

    .form-control,
    .select-box {
        padding: 15px 20px !important;
    }

    #upload-form {
        gap: 0;
    }

    #upload-form *,
    #upload-form button {
        font-size: 16px !important;
    }
}

@media screen and (max-height: 800px) {

    .modal-content,
    .modal-content2 {
        height: 100vh;
        overflow-y: scroll;
    }

    .form-control,
    .select-box {
        padding: 7.5px 10px !important;
        margin-bottom: 2px !important;
    }

    .modal-header {
        padding-top: 5px;
    }

    #upload-form {
        gap: 10px;
    }

    #upload-form *,
    #upload-form button {
        font-size: 14px !important;
    }
}


.close-button {
    float: right;
    width: 1.5rem;
    font-size: 1.2em;
    line-height: 1;
    padding: 0 .2em .15em;
    text-align: center;
    cursor: pointer;
    border-radius: 0.25rem;
    background-color: var(--clr-neutral);
    color: var(--clr-dark);
    transition: color 0.12s ease-in-out;
}

.close-button:hover {
    color: var(--clr-main);
}

.show-modal,
.show-modal2 {
    opacity: 1;
    visibility: visible;
    transform: scale(1.0);
    transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
}

.trigger-upload-modal {
    cursor: pointer;
}

.upload-heading {
    font-weight: 600;
    font-size: 36px;
    line-height: 36px;
}

.upload-description {
    font-family: Poppins;
    font-size: 18px;
    font-weight: 500;
    line-height: 27.05px;
}

.upload-form {
    flex-grow: 1;
}

.custom-select-wrapper {
    position: relative;
    width: 100%;
    margin: 0px auto;
}

.custom-select-wrapper.state_container {
    position: relative;
    overflow: visible;
}

.custom-select-wrapper.state_container .options-container.state {
    position: absolute;
    top: 80%;
    left: 0;
    right: 0;
    max-height: 250px;
    overflow-y: auto;
    z-index: 9999;
}

.custom-select .select-box {
    background-color: #f0f0f0;
    border-radius: 15px;
    padding: 20px 30px;
    cursor: pointer;
    position: relative;
}

.select-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}



.custom-select .fas,
.selected,
.option,
.sub_category_option {
    font-family: Poppins;
    font-size: 18.04px;
    font-weight: 500;
    line-height: 27.05px;
    text-align: left;
}

.options-container {
    position: absolute;
    background-color: #f0f0f0;
    border-radius: 8px;
    display: none;
    width: 100%;
    z-index: 100;
    border-top: none;
    box-shadow: 6px 9px 8px rgba(0, 0, 0, 0.1);
    left: 0px;
    top: 55px;
}

/* if the viewport HEIGHT is less than 1000px */
@media screen and (max-height: 1000px) {
    .options-container {
        top: 40px;
    }

    .modal-content,
    .modal-content2 {
        height: 85vh;
        overflow: auto;
        margin-top: 0px !important;
    }
}

@media screen and (max-height: 800px) {
    .error-msg {
        margin: 0 !important;
    }

    .options-container {
        top: 30px;
        max-height: fit-content;
        overflow: auto;
    }

    .options-container.state {
        max-height: 100px;
    }
}

.option,
.sub_category_option {
    padding: 10px 30px;
    cursor: pointer;
}

.option:hover,
.sub_category_option:hover {
    background-color: #e0e0e0;
}

.custom-select.active .options-container {
    display: block;
}

.form-control {
    background-color: #f0f0f0;
    width: 100%;
    padding: 20px 30px;
    border-radius: 15px;
    font-family: Poppins;
    font-size: 18.04px;
    font-weight: 500;
    line-height: 27.05px;
    text-align: left;
    border: none;
    margin-bottom: 10px;
}

.form-control:focus,
.form-control:active {
    outline: 0px;
    border: none;
}

.search-input-mobile,
.search-btn {
    padding: 10px 20px;
    border-radius: 20px;
}

.upload_a_response {
    height: 200px;
    margin-bottom: 100px;
}

.upload_btn_cancel {
    background: #C3C2C2;
    border-radius: 75px;
    padding: 15px 45px;
    color: #000000;
    cursor: pointer;
    border: 0px;
}

.upload_btn_respond {
    background: #000000;
    border-radius: 75px;
    padding: 15px 45px;
    color: #fff;
    cursor: pointer;
    border: 0px;
}

.btns-section {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.btn-upload-section {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-top: 10px;
}

.response-area,
.response-area:focus {
    width: 100%;
    border-radius: 20px;
    background-color: rgba(226, 226, 226, 1);
    padding: 10px 10px;
    font-size: 18px;
    border: none;
    outline: none;
}

.section-file {
    border-radius: 20px;
}

.px-20-py-10 {
    padding: 10px 20px;
}

.section-card2_filter {
    width: 24%;
    margin-bottom: 0px;
}

.section-like {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    padding: 15px 0px;
    width: 100%;
}

.section-card2 div img:not(.card-avatar) {
    width: 100%;
    height: 270px;
    border-radius: 20px;
    object-fit: cover;
    object-position: top;
}

.user-profile {
    width: 49px !important;
    height: 49px !important;
    border-radius: 5px !important;
}

.header-avatar-wrapper {
    align-content: center;
    border-radius: 10px;
    width: 40px;
    height: 40px;
}

.header-avatar {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.card-avatar-wrapper {
    align-content: center;
    border-radius: 10px;
    width: 50px;
    height: 50px;
}

.card-avatar {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.contributor-list-avatar-wrapper {
    align-content: center;
    align-self: center;
    width: 145px;
    height: 145px;
    margin: 10px 20px;
}

.contributor-list-avatar {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.featured-avatar-wrapper {
    align-content: center;
    align-self: center;
    width: 120px;
    height: 120px;
    margin: 10px 0px;
}

.featured-avatar {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.section-card2 .card-contributor {
    margin-top: 20px;
    font-family: Poppins;
    font-weight: 600;
    font-size: 16px;
    line-height: 21px;
    color: rgba(92, 92, 92, 1);
}

.section-card2 .card-title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    line-height: 1.25;
    min-height: calc(1.25em * 2);
    max-height: calc(1.25em * 2);
    white-space: normal;
    word-break: break-word;
    font-weight: 600;
    font-size: 24px;
    color: black;
    font-family: Poppins;
}

.mt-10 {
    margin-top: 10px;
}

.sub-box h4 {
    max-width: 250px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    font-size: larger;
    overflow: hidden;
    line-height: 1.3;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    color: #5C5C5C;
    font-family: Poppins;
    font-weight: 600;
}

.section-card2 .card-contributor {
    margin-top: 20px;
    font-family: Poppins;
    font-weight: 600;
    font-size: 16px;
    line-height: 21px;
    color: rgba(92, 92, 92, 1);
}

.card-detail {
    padding: 5px 20px 20px 20px;
    border-radius: 0px 0px 20px 20px;
}

.bg-gray {
    background: #F4F4F4;
}

.btn-select-doc {
    background: #fff;
    border-radius: 75px;
    padding: 15px 45px;
    color: #000;
    cursor: pointer;
    border: 0px;
}

.submit-btn {
    background: #000000;
    border-radius: 75px;
    padding: 15px 45px;
    color: #fff;
    cursor: pointer;
    border: 0px;
}

.modal-footer {
    text-align: right;
    margin-bottom: 0.5rem;
}

.text-dark {
    color: #000 !important;
}

.text-grey {
    color: #5C5C5C !important;
}

#filename {
    margin-right: 10px !important;
}

.contributor-pic-home {
    height: 150px;
    width: auto;
    max-width: 150px;
    border-radius: 20px;
    object-fit: scale-down;
}

.pb-40 {
    padding-bottom: 40px !important;
}

.pt-0 {
    padding-top: 0px !important;
}

.toggle-btns {
    padding: 10px 30px;
    border: 1px solid var(--black-color);
    display: inline-block;
    background-color: var(--black-color);
    color: var(--white-color);
    border-radius: 100px;
    cursor: pointer;
}

.text-56287e {
    color: #56287e !important;
}

.bg-none {
    background: none;
}

.justify-content-start {
    justify-content: start !important;
}

.activeMenu {
    background-color: red;
    color: var(--white-color) !important;
}

.text-red {
    color: red;
}

.text-capitalize {
    text-transform: uppercase;
}

.header_logo {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    font-size: 23px;
    gap: 10px;
    font-weight: bold;
    font-family: General Sans;
}

.view-type-grid,
.view-type-list {
    font-size: 18px;
    font-weight: bold;
    font-family: 'General Sans';
}

.flag-category {
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.flag-category h5 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.flag-category ul li {
    padding: 5px 0;
}

.mb-3o {
    margin-bottom: 10px;
}

.custom-filter {
    width: 150px;
    padding: 10px;
    border-radius: 8px;
}

.action-btn {
    font-size: 10px;
    height: 30px;
    padding: 5px 7px;
    border-radius: 6px;
    width: max-content;
}

.justify-content-between {
    justify-content: space-between;
}

.ribbon {
    position: absolute;
    top: 0px;
    right: 0px;
    background-color: #f50909;
    color: #fff;
    font-family: Poppins, sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 5px 15px;
    transform: rotate(360deg);
    z-index: 10;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    clip-path: polygon(0 0,
            /* Top left corner */
            calc(100% - 10px) 0,
            /* Top right corner, leaving space for the tail */
            100% 0%,
            /* Middle of the right edge */
            calc(100% - 0px) 100%,
            /* Bottom right corner, leaving space for the tail */
            0 100%,
            /* Bottom left corner */
            10px 50%
            /* Create a triangle tail */
        )
}

button.swal2-confirm,
button.swal2-deny,
button.swal2-cancel {
    border-radius: 100px;
    padding: 13px 20px;
}

.swal2-actions {
    display: block;
}

.swal2-title,
.swal2-html-container,
button.swal2-confirm,
button.swal2-deny {
    font-family: Poppins, sans-serif !important;
}

button.swal2-confirm {
    background: #f50909 !important;
}

button.swal2-cancel {
    background: #000 !important;
}

.arrow-anchor {
    background-color: #fff;
    border-radius: 40%;
}

.flex-column {
    flex-direction: column;
}

.email-verify-section {
    max-width: 550px;
    text-align: center;
    margin: auto;
    padding: 100px;
}

.email-icon {
    max-width: 150px;
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
}

/* universal button styles */
.btn-black {
    padding: 15px 45px !important;
    border: 1px solid var(--black-color) !important;
    display: inline-block;
    color: var(--white-color) !important;
    border-radius: 100px !important;
    width: max-content !important;
    margin: auto !important;
    background-color: #000 !important;
    text-transform: capitalize !important;
    font-size: 20px;
}

.btn-black-medium {
    padding: 8px 40px !important;
    border: 1px solid var(--black-color) !important;
    display: inline-block;
    color: var(--white-color) !important;
    border-radius: 100px !important;
    width: max-content !important;
    background-color: #000 !important;
    font-size: 16px;
}

.btn-black:hover,
.btn-black-medium:hover {
    background-color: #ff0000 !important;
    color: #fff !important;
    border: 1px solid #fff !important;
}

.btn-white {
    padding: 15px 45px !important;
    border: 1px solid var(--black-color) !important;
    display: inline-block;
    color: #000 !important;
    border-radius: 100px !important;
    width: max-content !important;
    margin: auto !important;
    background-color: #fff !important;
    font-size: 20px !important;
}

.btn-white-medium {
    padding: 8px 40px !important;
    /* border: 1px solid var(--black-color) !important; */
    display: inline-block;
    color: #000 !important;
    border-radius: 100px !important;
    width: max-content !important;
    background-color: #fff !important;
    font-size: 16px !important;
}

.btn-white:hover,
.btn-white-medium:hover {
    background-color: #000 !important;
    color: #fff !important;
    border: 1px solid var(--white-color) !important;
}

.btn-grey {
    padding: 15px 45px !important;
    border: 1px solid var(--black-color) !important;
    display: inline-block;
    color: #000 !important;
    border-radius: 100px !important;
    width: max-content !important;
    margin: auto !important;
    background-color: #eeeeee !important;
    font-size: 20px !important;
}

.btn-red {
    color: #fff !important;
    border-radius: 100px !important;
    background-color: #FF0000 !important;
    font-size: 20px !important;
}

/* .btn-red:hover{
    color: #FF0000 !important;
    border-radius: 100px !important;
    background-color: #fff !important;
    font-size: 20px !important;
    outline: 1px solid #000;
} */
.btn-grey:hover {
    background-color: #000 !important;
    color: #fff !important;
}

@media screen and (max-width : 500px) {

    .btn-black,
    .btn-white,
    .btn-black-medium,
    .btn-white-medium,
    .btn-grey {
        font-size: 15px !important;
        padding: 10px 30px !important;
    }
}

.d-disabled .custom-select,
.d-disabled .custom-select .select-box {
    background-color: #c1c1c1 !important;
    border-radius: 15px;
}

.options-container {
    overflow-y: scroll;
}

.rotate_180 {
    rotate: 180deg;
}

input.form-control:focus {
    outline: 1px solid #000;
}

textarea.form-control:focus {
    outline: 1px solid #000;
}

.modal-upload-box {
    border: 2px dashed #ccc;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 430px;
    justify-content: center;
    background: #F0F0F0;
    border-radius: 15px;
}

.browse-file-button {
    background-color: white;
    border: 1px solid black;
    border-radius: 100px;
    color: black;
    cursor: pointer;
    font-size: 16px;
    padding: 8px 40px;
    width: max-content;
}

.browse-file-button:hover {
    background-color: black;
    color: white;
}

.modal-upload-icon {
    width: 40px;
    margin-bottom: 10px;
}

.modal-upload-text {
    font-size: 16px;
    margin-bottom: 5px;
    color: #555;
    font-family: Poppins;
}

.modal-upload-info {
    font-size: 16px;
    color: #888;
    font-family: Poppins;
}

.modal-section-2 {
    display: flex;
    flex-direction: column;
}

.modal-section-1 canvas {
    height: 430px;
    border-radius: 15px;
}

.swal2-container {
    z-index: 99999999999;
}

.w-50 {
    width: 50%;
}

.arrow-style {
    /* background-color: #fff; */
    /* border-radius: 61%; */
    /* border: 2px solid; */
    /* padding: 15px 17px; */
    position: relative;
    z-index: 9;
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    line-height: 50px;
    border-radius: 50%;
    border: 2px solid var(--black-color);
    color: var(--black-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.glide__arrow .arrow-style {
    color: var(--black-color);
    transition: background-color 0.2s ease, color 0.2s ease;
}

.glide__arrow:not(.glide__arrow--disabled) .arrow-style:hover {
    background-color: var(--black-color);
    color: var(--white-color);
}

.glide__arrow--disabled {
    pointer-events: none;
}

.glide__arrow--disabled .arrow-style {
    background-color: transparent;
    color: lightgray;
    border: 2px solid lightgray;
    cursor: default;
}

.swiper-button-prev,
.swiper-button-next {
    position: relative;
    z-index: 9;
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    line-height: 50px;
    border-radius: 50%;
    border: 2px solid var(--black-color);
    color: var(--black-color) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.swiper-button-prev:not(.glide__arrow--disabled):hover,
.swiper-button-next:not(.glide__arrow--disabled):hover {
    background-color: var(--black-color);
    color: var(--white-color) !important;
}

.slider__right:disabled a,
.slider__left:disabled a {
    opacity: .35;
    cursor: not-allowed;
    /* background-color: #ddd; */
    pointer-events: none;
    color: #999;
}

.slider__left,
.slider__right {
    z-index: 99999;
}

.contributor_card:hover {
    box-shadow: rgba(149, 157, 165, 1.2) 0px 8px 24px;
}

.fa-solid.fa-arrow-right,
.fa-solid.fa-arrow-left {
    color: inherit;
}

.pl-0 {
    padding-left: 0px !important;
}

.pr-0 {
    padding-right: 0px !important;
}

.w-100 {
    width: 100%;
}

.h-100 {
    height: 100%;
}

.error-msg {
    font-size: 16px;
    margin: -13px 0 10px 10px;
    display: none;
}

.modal-section-1.form-error .error-msg {
    margin-top: 5px;
}

.modal-section-1.form-error .modal-upload-box {}

.modal-section-1 .modal-upload-box,
.input-group .custom-select .select-box,
.input-group textarea,
.input-group input {
    border: 1px solid transparent;
}

.modal-section-1.form-error .modal-upload-box,
.input-group.form-error .custom-select .select-box,
.input-group.form-error textarea,
.input-group.form-error input {
    border: 1px solid red !important;
    background-color: #ff8f8f1c !important;
}

.error-msg {
    display: none;
}

.input-group.form-error label,
.error-msg,
.form-error svg {
    color: red;
}

.form-error .error-msg {
    display: block;
}

.about-container {
    width: 70%;
    margin: 50px auto;
}

.about-container p,
.about-container li {
    line-height: 1.5;
    font-size: 20px;
}

.about-container h1 {
    font-size: 45px;
    margin-bottom: 20px;
}

.about-container h2 {
    font-size: 30px;
    margin: 10px 0px;
}

.about-container hr {
    margin: 20px 0px;
}

p.stylized {
    text-align: center;
    margin: 10px;
    width: 100%;
}

p.stylized span {
    display: block;
    text-align: right;
}

.content p {
    margin: 10px 0px;
}

ul {
    list-style-type: disc;
    padding-left: 20px;
}

ul li {
    margin-bottom: 10px;
    list-style-position: inside;
    list-style-type: disc;
}

.bold {
    font-weight: bold;
}

.about-container a,
span.trigger-upload-modal {
    color: blue;
    text-decoration: underline;
    cursor: pointer;
}

.terms-container {
    width: 70%;
    margin: 50px auto;
}

.terms-container p,
.terms-container li {
    line-height: 1.5;
}

.terms-container h1 {
    font-size: 45px;
    text-align: center;
    margin-bottom: 20px;
}

.terms-container h2 {
    font-size: 30px;
    margin: 10px 0px;
}

.terms-container h3 {
    font-size: 25px;
    margin: 10px 0px;
}

.terms-container hr {
    margin: 20px 0px;
}

.form {
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1rem;
    margin-bottom: 1rem;
}

.input-group {
    position: relative;
    width: 100%;
    text-align: left;
}

.input-label {
    font-family: 'General Sans';
    color: #363030;
    font-size: 20px;
    font-weight: 500;
    line-height: 27px;
}

.input-field {
    margin-top: 7px;
    width: 100%;
    padding: 10px;
    border-radius: 0.5rem;
    border: 1px solid #000;
    color: #000;
    font-size: 20px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.input-field:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

.reset-button {
    font-weight: bold;
    font-size: 18px;
    padding: 10px;
    background-color: #000;
    color: #fff !important;
    border-radius: 0.375rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: opacity 0.3s, box-shadow 0.3s;
    border: none;
    cursor: pointer;
    text-align: center;
}

.logo-section {
    font-size: 44px;
    font-family: 'General Sans';
}

.logo-icon svg {
    width: 70px !important;
}

.page-title-section {
    font-size: 36px;
    font-family: 'General Sans';
    margin-bottom: 20px;
}

.login-button {
    font-weight: bold;
    font-size: 18px;
    padding: 10px;
    color: #000 !important;
    border-radius: 0.375rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: opacity 0.3s, box-shadow 0.3s;
    border: none;
    cursor: pointer;
    border: 1px solid #000;
}

.flex-column {
    flex-direction: column;
}

.gap-0 {
    gap: 0;
}

.font-semibold-title {
    font-weight: 600;
    font-family: 'General Sans' !important;
    font-size: 28px;
}

.font-semibold {
    font-weight: 500;
    font-family: 'General Sans' !important;
    font-size: 20px;
}

.email-verify-section-main {
    max-width: 550px;
    text-align: center;
    margin: 40px auto;
    padding: 40px !important;
}

.email-verify-section-mail {
    max-width: 550px;
    text-align: center;
    margin: 0px auto 40px auto;
    padding: 40px 80px 80px 80px !important;
}

.page-title {
    font-size: 28px;
    font-family: 'General Sans' !important;
    font-weight: 600;
}

.page-title-section-mail {
    margin-top: 80px;
}

.form-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 540px;
    width: 100%;
}

.main-heading h1 {
    font-family: 'General Sans', sans-serif !important;
    font-weight: 600;
    font-size: 30px;
    line-height: 48.6px;
    color: #000;
}

.login-title {
    font-size: 2.875rem;
    margin-bottom: 1.5rem;
    color: #333;
    width: 100%;
    max-width: 500px;
    padding: 0px 0px 0px 0px;
}

.login-form {
    width: 100%;
    max-width: 540px;
    display: flex;
    flex-direction: column;
    gap: 0rem;
}

.input-group {
    position: relative;
    width: 100%;
}

.input-label {
    font-family: 'General Sans';
    color: #363030;
    font-size: 20px;
    font-weight: 500;
    line-height: 27px;
}

.input-field {
    margin-top: 7px;
    width: 100%;
    padding: 10px;
    border-radius: 0.5rem;
    outline: 1px solid #363030 !important;
    color: #000;
    font-size: 20px;
    transition: border-color 0.3s, box-shadow 0.3s;
    border: none;
}

.input-field:focus {
    border-color: #000;
    box-shadow: 0 0 0 2px #363030;
}

.input-field:focus-visible {
    outline: 1px solid #363030 !important;
    border: none;
}

.password-icon {
    position: absolute;
    top: 50%;
    right: 0.75rem;
    transform: translateY(-50%);
    color: #6b7280;
}

.error-text {
    color: #F00;
    font-style: italic;
}

.login-button {
    font-weight: bold;
    font-size: 18px;
    background-color: #000;
    color: #fff !important;
    border-radius: 0.375rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: opacity 0.3s, box-shadow 0.3s;
    border: none;
    cursor: pointer;
    text-align: center;
}

.google-logo svg {
    height: 20px;
}

.google-button {
    gap: 0px;
    font-weight: bold;
    font-size: 18px;
    background-color: #fff;
    color: #000;
    border-radius: 0.375rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: opacity 0.3s, box-shadow 0.3s;
    border: none;
    cursor: pointer;
    border: 1px solid #000;
    justify-content: center;
    text-align: center;
}

.login-button:hover {
    /* box-shadow: 0 8px 10px rgba(0, 0, 0, 0.2); */
}

.google-button:hover {
    /* box-shadow: 0 8px 10px rgba(0, 0, 0, 0.2); */
}

.login-button:focus,
.login-button:active {
    opacity: 0.85;
}

.google-button:focus,
.google-button:active {
    opacity: 0.85;
}

.google-login {
    width: 100%;
    max-width: 500px;
    border-width: 2px;
    padding: 0.5rem;
    border-radius: 0.375rem;
}

.forgot-password {
    font-size: 1rem;
    color: #374151;
    text-align: center;
    margin: 20px 0px 25px 0px;
}

.reset-link {
    color: #000;
    font-weight: 600;
    font-family: 'General Sans';
    text-decoration: underline;
}

.reset-link:hover {
    text-decoration: underline;
}

.signup-link {
    font-size: 1rem;
    color: #4b5563;
    text-align: center;
    margin-top: 0.5rem;
}

.signup-link-text {
    color: #000;
    font-weight: 600;
    font-family: 'General Sans';
    text-decoration: underline;
}

.signup-link-text:hover {
    text-decoration: underline;
}

#signupform,
#loginForm {
    max-width: 540px;
    margin: auto;
    padding: 0px 40px 40px 40px;
}

#signupform .input-group,
#loginForm .input-group {
    margin-top: 15px;
}

.terms_label {
    font-size: 20px;
    line-height: 27px;
    font-family: 'General Sans';
}

.w-upto2 {
    margin-top: 20px;
}

.terms_label a {
    color: #000;
    font-weight: 600;
}

.label_account {
    font-size: 20px;
    line-height: 27px;
    font-family: 'General Sans';
    margin: 10px 0px
}

.label_account a {
    color: #000;
    font-weight: 600;
}

.flex-column {
    flex-direction: column;
}

.gap-0 {
    gap: 0;
}

/* Upload Modal V2 */

body:has(.show-upload-modal) {
    overflow: hidden !important;
}

.show-upload-modal {
    opacity: 1 !important;
    visibility: visible !important;
    overflow: auto !important;
}

.upload-modal-backdrop {
    background: rgba(0, 0, 0, .5);
    display: grid;
    inset: 0;
    opacity: 0;
    place-items: center;
    position: fixed;
    visibility: hidden;
    z-index: 999;
}

.upload-modal {
    /* Size */
    height: min(1000px, 85%);
    width: min(1400px, 80%);

    /* Layout: header & footer fixed, body scrolls */
    display: grid;
    grid-template-rows: auto 1fr auto;

    /* Visuals */
    background-color: #d9d9d9;
    border-radius: 0.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
    overflow: hidden;
}

.upload-modal-header {
    border-bottom: 1px solid black;
    display: flex;
    justify-content: space-between;
    /* padding: 1.5rem 2rem; */
    padding: 1rem 1.25rem;
}

.upload-modal-body {
    display: flex;
    overflow: hidden;
    padding: 0.5rem 1.25rem;
}

.upload-document-form {
    display: flex;
    flex-grow: 1;
}

.upload-modal-sections {
    display: flex;
    flex-grow: 1;
    gap: 10px;
    width: 100%;
}

.upload-modal-sections .form-control {
    font-size: 16px !important;
}

.upload-modal-section {
    width: 100%;
}

#filename {
    display: none;
}

@media screen and (max-width: 1200px) {
    .upload-modal-body {
        overflow: auto;
    }

    .upload-modal-sections {
        flex-direction: column;
    }

    .upload-modal-sections .form-control {
        font-size: 14px !important;
    }
}

.upload-modal-footer {
    border-top: 1px solid black;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
}

.footer-section1 {
    align-self: flex-end;
    text-align: start;
}

.modal-header-close {
    cursor: pointer;
}

.upload-modal-error {
    align-self: last baseline;
    min-height: 1.25rem;
    display: none;
    color: red;
}

.upload-modal-error.is-visible {
    display: block;
}

.clear-button {
    background-color: transparent;
    border: none;
}
