@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Cairo", sans-serif;
    background-color: #FFFDF7;
    max-width: 100vw;
    overflow: hidden auto;
    direction: rtl;
}

.container {
    margin-right: auto;
    margin-left: auto;
    padding-right: 1rem;
    padding-left: 1rem;
}

a {
    text-decoration: none;
}

/* sm: ≥640px */
@media (min-width: 640px) {
    .container {
        max-width: 640px;
    }
}

/* md: ≥768px */
@media (min-width: 768px) {
    .container {
        max-width: 768px;
    }
}

/* lg: ≥1024px */
@media (min-width: 1024px) {
    .container {
        max-width: 1024px;
    }
}

/* xl: ≥1280px */
@media (min-width: 1280px) {
    .container {
        max-width: 1280px;
    }
}

/* 2xl: ≥1536px */
@media (min-width: 1536px) {
    .container {
        max-width: 1536px;
    }
}

.button-secondary {
    padding: .75rem 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .5rem;
    color: #FFFDF7;
    background-color: #1C2E40;
    border: none;
    font-size: 1rem;
    border-radius: .5rem;
    line-height: 1.5rem;
    transition: all .3s ease-in-out;
}

.button-secondary:hover {
    background-color: #cf2025;
}

@media (max-width: 1280px) {
    .button-secondary {
        padding: .5rem 1rem;
        font-size: .8rem;
    }
}

.button-secondary img {
    width: 1.5rem;
    height: 1.5rem;
}

@media (max-width: 1536px) {
    .button-secondary img {
        width: 1.25rem;
        height: 1.25rem;
    }
}

.search-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: start;
    z-index: 9999;
    padding: 2rem;
}

.search-overlay.show {
    display: flex;
}

.search-overlay-content {
    background: #fff;
    padding: 1rem;
    border-radius: 8px;
    max-width: 1300px;
    margin-top: 2rem;
    width: 90%;
    text-align: center;
}

.search-form {
    display: flex;
    gap: 1rem;
}

.search-form input {
    padding: 0.5rem;
    margin-left: 0.5rem;
    padding: 12px;
    background: #FDFBF4;
    border: 1.2px solid #F1F1F1;
    border-radius: 4px;
    color: #1B1B1B;
    width: 100%;
}

.search-form input:focus {
    box-shadow: none;
    outline: none;
    border: 1px solid #1C2E40;
}

.close-search {
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 2rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

.section-header {
    padding: 7rem 0;
    position: relative;
}

@media (max-width: 1536px) {
    .section-header {
        padding: 6.25rem 0;
    }
}

@media (max-width: 1280px) {
    .section-header {
        padding: 6.5rem 0;
    }
}

@media (max-width: 1024px) {
    .section-header {
        padding: 5rem 0;
    }
}

@media (max-width: 768px) {
    .section-header {
        padding: 4rem 0;
    }
}

@media (max-width: 640px) {
    .section-header {
        padding: 3rem 0;
    }
}

.section-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
}

.section-header::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #000;
    background: linear-gradient(-270deg, rgba(0, 0, 0, 0) 0%, black 100%);
    z-index: 2;
}

.section-header .container {
    position: relative;
    z-index: 3;
}

.section-header .container h1 {
    font-weight: 700;
    font-size: 2.25rem;
    line-height: 160%;
    color: #FFFFFF;
}

@media (max-width: 1536px) {
    .section-header .container h1 {
        font-size: 2.15rem;
    }
}

@media (max-width: 1280px) {
    .section-header .container h1 {
        font-size: 2rem;
    }
}

@media (max-width: 1024px) {
    .section-header .container h1 {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .section-header .container h1 {
        font-size: 1.5rem;
    }
}

.section-header .container p {
    font-weight: 500;
    font-size: 1rem;
    line-height: 18px;
    color: #EBEBEB;
}

@media (max-width: 1280px) {
    .section-header .container p {
        font-size: .9rem;
    }
}

@media (max-width: 1024px) {
    .section-header .container p {
        font-size: .8rem;
    }
}

.top-header {
    background-color: #cf2025;
    padding: .5rem 0;
}

.top-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-header .container .social {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.top-header .container .social a {
    font-size: 1rem;
    width: 2rem;
    height: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #C4960E;
    color: #FFFDF7;
    border-radius: 50%;
    text-decoration: none;
}

.top-header .container .options-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.top-header .container .options-group .cart-button {
    width: 2rem;
    height: 2rem;
    color: #1B1B1B;
    position: relative;
}

.top-header .container .options-group .cart-button .total-count {
    position: absolute;
    top: 0;
    right: 0;
    color: #FFFDF7;
    background-color: #1C2E40;
    font-size: .75rem;
    width: 1rem;
    height: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.top-header .container .options-group .account-button {
    font-size: 1rem;
    padding: 0 1rem;
    display: flex;
    gap: .5rem;
    align-items: center;
    justify-content: center;
    color: #1B1B1B;
    text-decoration: none;
    border-left: 1px solid #8c690046;
    border-right: 1px solid #8c690046;
    max-height: max-content;
}

.top-header .container .options-group .account-button img {
    width: 1.5rem;
    height: 1.5rem;
}

.top-header .container .options-group .switch-lang-button {
    cursor: pointer;
    background-color: transparent;
    border: none;
    display: flex;
    gap: .5rem;
    align-items: center;
    justify-content: center;
    color: #1B1B1B;
    position: relative;
}

.top-header .container .options-group .switch-lang-button img {
    width: 1.5rem;
}

.top-header .container .options-group .switch-lang-button .options {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #FFFDF7;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    display: none;
    z-index: 10000;
}

.top-header .container .options-group .switch-lang-button .options.show {
    display: flex;
}

.top-header .container .options-group .switch-lang-button .options a {
    color: #1B1B1B;
    text-align: right;
    text-decoration: none;
    transition: .3s ease-in-out all;
    padding: .5rem;
}

.top-header .container .options-group .switch-lang-button .options a:hover {
    background-color: #cf2025;
    color: #FFFDF7;
}

.top-header .container .options-group .my-account-button {
    cursor: pointer;
    background-color: transparent;
    border: none;
    display: flex;
    gap: .5rem;
    align-items: center;
    justify-content: center;
    color: #1B1B1B;
    position: relative;
    border-left: 1px solid #8c690046;
    border-right: 1px solid #8c690046;
    padding: 0 1rem;
}

.top-header .container .options-group .my-account-button img {
    width: 1.5rem;
}

.top-header .container .options-group .my-account-button .options {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #FFFDF7;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    display: none;
    z-index: 10000;
}

.top-header .container .options-group .my-account-button .options.show {
    display: flex;
}

.top-header .container .options-group .my-account-button .options a {
    color: #1B1B1B;
    text-align: right;
    text-decoration: none;
    transition: .3s ease-in-out all;
    padding: .5rem;
}

.top-header .container .options-group .my-account-button .options a:hover {
    background-color: #cf2025;
    color: #FFFDF7;
}

@media (max-width: 1024px) {
    .top-header {
        display: none;
    }
}

.main-header {
    background-color: #F9F6EFF2;
    padding: .75rem 0;
}

@media (max-width: 1280px) {
    .main-header {
        padding: .5rem 0;
    }
}

@media (max-width: 1024px) {
    .main-header {
        border-top: 4px solid #cf2025;
    }
}

.main-header .container {
    display: grid;
    grid-template-columns: 18rem 1fr 18rem;
    gap: 2rem;
    align-items: center;
}

@media (max-width: 1536px) {
    .main-header .container {
        grid-template-columns: 15rem 1fr 15rem;
    }
}

@media (max-width: 1280px) {
    .main-header .container {
        grid-template-columns: 12rem 1fr 12rem;
        gap: .5rem;
    }
}

@media (max-width: 1024px) {
    .main-header .container {
        display: flex;
        justify-content: space-between;
    }
}

.main-header .container .logo {
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 1024px) {
    .main-header .container .logo {
        width: 14rem;
    }
}

.main-header .container .logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-header .container .toggle-menu {
    display: none;
}

@media (max-width: 1024px) {
    .main-header .container .toggle-menu {
        display: block;
        border: none;
        padding: .25rem .5rem;
        border-radius: .5rem;
        background: #8080802b;
        transition: all .3s ease;
        cursor: pointer;
    }

    .main-header .container .toggle-menu:hover {
        background: #8080804b;
    }

    .main-header .container .toggle-menu svg {
        width: 1.75rem;
        height: 1.75rem;
        stroke-width: 1.7px;
    }
}

.main-header .container .nav-menu {
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 1024px) {
    .main-header .container .nav-menu {
        display: none;
    }
}

.main-header .container .nav-menu .nav-link {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1B1B1B;
    text-decoration: none;
    transition: color 0.2s ease;
    position: relative;
    padding: .5rem 1rem;
    display: block;
}

@media (max-width: 1536px) {
    .main-header .container .nav-menu .nav-link {
        font-size: 1rem;
    }
}

@media (max-width: 1280px) {
    .main-header .container .nav-menu .nav-link {
        font-size: .9rem;
        padding: .5rem;
    }
}

.main-header .container .nav-menu .nav-link:hover,
.main-header .container .nav-menu .nav-link.active {
    color: #cf2025;
}

.main-header .container .nav-menu .dropdown-link {
    position: relative;
}

.main-header .container .nav-menu .dropdown-link .nav-link {
    padding-left: 2.25rem;
}

.main-header .container .nav-menu .dropdown-link::after {
    content: "";
    position: absolute;
    left: .5rem;
    top: 55%;
    transform: translateY(-50%);
    width: 1.5rem;
    height: 1.5rem;
    background-image: url("./../icons/chervron-down.svg");
    background-size: contain;
    background-position: bottom;
}

.main-header .container .nav-menu .dropdown-link:hover::after {
    background-image: url("./../icons/chervron-down-active.svg");
}

.main-header .container .nav-menu .dropdown-link .dropdown-list {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #FFFDF7;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    display: none;
}

.main-header .container .nav-menu .dropdown-link .dropdown-list a {
    color: #1B1B1B;
    text-align: right;
    text-decoration: none;
    transition: .3s ease-in-out all;
    padding: .5rem;
}

.main-header .container .nav-menu .dropdown-link .dropdown-list a:hover {
    background-color: #cf2025;
    color: #FFFDF7;
}

.main-header .container .actions-group {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 2rem;
}

@media (max-width: 1024px) {
    .main-header .container .actions-group {
        display: none;
    }
}

.main-header .container .actions-group .search-button {
    background-color: transparent;
    border: none;
}

.main-header .container .actions-group .search-button img {
    width: 2rem;
    height: 2rem;
}

@media (max-width: 1536px) {
    .main-header .container .actions-group .search-button img {
        width: 1.75rem;
        height: 1.75rem;
    }
}

.main-header .container .actions-group .button-secondary {
    font-weight: 600;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(27, 27, 27, 0.8);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background-color: #FFFDF7;
    z-index: 1001;
    transition: left 0.3s ease;
    overflow-y: auto;
    box-shadow: 5px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 99999999;
    /* Mobile Menu Header */
    /* Top Header Items in Mobile */
    /* Navigation Menu */
    /* Dropdown */
    /* Action Buttons */
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu .mobile-menu-header {
    background-color: #1C2E40;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu .mobile-menu-header .mobile-menu-logo img {
    height: 40px;
    filter: brightness(0) invert(1);
}

.mobile-menu .mobile-menu-header .close-menu {
    background: none;
    border: none;
    color: #FFFDF7;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.mobile-menu .mobile-menu-header .close-menu:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.mobile-menu .mobile-top-section {
    background-color: #cf2025;
    padding: .75rem 1.5rem;
    display: flex;
    justify-content: space-between;
}

.mobile-menu .mobile-top-section .mobile-user-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.mobile-menu .mobile-top-section .mobile-user-actions .account-button {
    font-size: 1rem;
    display: flex;
    gap: .5rem;
    align-items: center;
    justify-content: center;
    color: #1B1B1B;
    text-decoration: none;
    max-height: max-content;
    color: #1B1B1B;
    text-decoration: none;
}

.mobile-menu .mobile-top-section .mobile-user-actions .account-button img {
    width: 1.5rem;
    height: 1.5rem;
}

.mobile-menu .mobile-top-section .mobile-user-actions .cart-button {
    width: 2rem;
    height: 2rem;
    color: #1B1B1B;
    position: relative;
}

.mobile-menu .mobile-top-section .mobile-user-actions .cart-button .total-count {
    position: absolute;
    top: 0;
    right: 0;
    color: #FFFDF7;
    background-color: #1C2E40;
    font-size: .75rem;
    width: 1rem;
    height: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.mobile-menu .mobile-top-section .social {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.mobile-menu .mobile-top-section .social a {
    font-size: 1rem;
    width: 2rem;
    height: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #C4960E;
    color: #FFFDF7;
    border-radius: 50%;
    text-decoration: none;
}

.mobile-menu .mobile-nav .mobile-nav-item {
    border-bottom: 1px solid rgba(75, 75, 75, 0.1);
}

.mobile-menu .mobile-nav .mobile-nav-item .mobile-nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    color: #1B1B1B;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-menu .mobile-nav .mobile-nav-item .mobile-nav-link:hover,
.mobile-menu .mobile-nav .mobile-nav-item .mobile-nav-link.active {
    background-color: rgba(207, 32, 37, 0.1);
    color: #1C2E40;
}

.mobile-menu .mobile-nav .mobile-nav-item .mobile-nav-link.active {
    border-left: 4px solid #cf2025;
}

.mobile-menu .mobile-nav .mobile-nav-item .mobile-language-switcher {
    padding: 1rem 1.5rem;
}

.mobile-menu .mobile-nav .mobile-nav-item .mobile-language-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.875rem;
}

.mobile-menu .mobile-nav .mobile-nav-item .mobile-language-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #9A9A9A;
}

.mobile-menu .mobile-nav .mobile-nav-item .mobile-language-current {
    color: #1C2E40;
    font-weight: 700;
}

.mobile-menu .mobile-nav .mobile-nav-item .mobile-language-options {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
}

.mobile-menu .mobile-nav .mobile-nav-item .mobile-language-option {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 2.75rem;
    padding: 0.65rem 0.5rem;
    border: 1px solid rgba(28, 46, 64, 0.12);
    border-radius: 999px;
    background-color: #FFFDF7;
    color: #1B1B1B;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.mobile-menu .mobile-nav .mobile-nav-item .mobile-language-option:hover,
.mobile-menu .mobile-nav .mobile-nav-item .mobile-language-option.active {
    background-color: #1C2E40;
    border-color: #1C2E40;
    color: #FFFDF7;
}

.mobile-menu .mobile-dropdown {
    position: relative;
}

.mobile-menu .mobile-dropdown.active .mobile-dropdown-icon {
    transform: rotate(-180deg);
}

.mobile-menu .mobile-dropdown.active .mobile-dropdown-content {
    max-height: 300px;
}

.mobile-menu .mobile-dropdown .mobile-dropdown-toggle {
    cursor: pointer;
}

.mobile-menu .mobile-dropdown .mobile-dropdown-icon {
    transition: transform 0.3s ease;
    color: #9A9A9A;
}

.mobile-menu .mobile-dropdown .mobile-dropdown-content {
    max-height: 0;
    overflow: hidden;
    background-color: rgba(28, 46, 64, 0.05);
    transition: max-height 0.3s ease;
}

.mobile-menu .mobile-dropdown .mobile-dropdown-item {
    display: block;
    padding: 0.75rem 2.5rem;
    color: #4B4B4B;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(75, 75, 75, 0.05);
}

.mobile-menu .mobile-dropdown .mobile-dropdown-item:hover {
    background-color: rgba(207, 32, 37, 0.1);
    color: #1C2E40;
}

.mobile-menu .mobile-actions {
    padding: 1.5rem;
    border-top: 1px solid rgba(75, 75, 75, 0.1);
}

.mobile-menu .mobile-actions .mobile-search,
.mobile-menu .mobile-actions .support-us-button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    margin-bottom: 0.75rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-menu .mobile-actions .mobile-search i,
.mobile-menu .mobile-actions .support-us-button i {
    font-size: 1.1rem;
}

.mobile-menu .mobile-actions .mobile-search {
    background-color: rgba(28, 46, 64, 0.1);
    color: #1C2E40;
}

.mobile-menu .mobile-actions .mobile-search:hover {
    background-color: rgba(28, 46, 64, 0.2);
}

.mobile-menu .mobile-actions .support-us-button {
    color: #FFFDF7;
    background-color: #1C2E40;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all .3s ease-in-out;
    width: 100%;
}

.mobile-menu .mobile-actions .support-us-button:hover {
    background-color: #cf2025;
}

.mobile-menu .mobile-actions .support-us-button img {
    width: 1.5rem;
    height: 1.5rem;
}

.hero {
    min-height: calc(100vh - 8rem);
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url("./../imgs/hero-bg.png");
    background-size: cover;
    background-size: 100%;
    background-repeat: no-repeat;
    position: relative;
    border-bottom: 1px solid #1c2e4015;
}

@media (max-width: 1024px) {
    .hero {
        min-height: auto;
        padding: 3rem 0;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 2rem 0;
    }
}

.hero::after {
    content: "";
    position: absolute;
    bottom: 3rem;
    left: 3rem;
    width: 8rem;
    height: 8rem;
    background-image: url("./../imgs/hero-after.png");
    background-size: contain;
    background-repeat: no-repeat;
}

@media (max-width: 1536px) {
    .hero::after {
        width: 7rem;
        height: 7rem;
        bottom: 2.75rem;
        left: 2.75rem;
    }
}

@media (max-width: 1024px) {
    .hero::after {
        display: none;
    }
}

.hero .container {
    display: grid;
    grid-template-columns: 4fr 6fr;
    gap: 6rem;
}

@media (max-width: 1536px) {
    .hero .container {
        gap: 4rem;
    }
}

@media (max-width: 1280px) {
    .hero .container {
        gap: 3rem;
    }
}

@media (max-width: 1024px) {
    .hero .container {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .hero .container {
        gap: 1rem;
        grid-template-columns: 1fr;
    }
}

.hero .container .img {
    width: 100%;
}

@media (max-width: 768px) {
    .hero .container .img {
        max-width: 18rem;
        margin-right: auto;
        margin-bottom: -5rem;
    }
}

@media (max-width: 640px) {
    .hero .container .img {
        margin-bottom: 0;
        margin-left: auto;
    }
}

.hero .container .img img {
    width: 100%;
}

.hero .container .content h1 {
    font-weight: 700;
    font-size: 4rem;
    color: #1B1B1B;
    line-height: 140%;
    margin-bottom: 2rem;
}

@media (max-width: 1536px) {
    .hero .container .content h1 {
        font-size: 3.25rem;
    }
}

@media (max-width: 1280px) {
    .hero .container .content h1 {
        font-size: 2.75rem;
        margin-bottom: 1.25rem;
    }
}

@media (max-width: 1024px) {
    .hero .container .content h1 {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .hero .container .content h1 {
        font-size: 1.75rem;
        margin-bottom: .75rem;
    }
}

.hero .container .content h1 span {
    color: #cf2025;
}

.hero .container .content p {
    font-weight: 400;
    font-size: 1.25rem;
    color: #4B4B4B;
    margin-bottom: 2rem;
}

@media (max-width: 1536px) {
    .hero .container .content p {
        font-size: 1.2rem;
    }
}

@media (max-width: 1280px) {
    .hero .container .content p {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }
}

@media (max-width: 1024px) {
    .hero .container .content p {
        font-size: .8rem;
        margin-bottom: 1rem;
    }
}

.preserving-coptic-heritage {
    padding: 5rem 0;
}

@media (max-width: 1280px) {
    .preserving-coptic-heritage {
        padding: 3.5rem 0;
    }
}

@media (max-width: 1024px) {
    .preserving-coptic-heritage {
        padding: 2.5rem 0;
    }
}

.preserving-coptic-heritage .container h1 {
    font-weight: 700;
    font-size: 2.25rem;
    text-align: center;
    color: #1C1C1C;
    margin-bottom: 1.5rem;
}

@media (max-width: 1536px) {
    .preserving-coptic-heritage .container h1 {
        font-size: 2.1rem;
        margin-bottom: 1.25rem;
    }
}

@media (max-width: 1280px) {
    .preserving-coptic-heritage .container h1 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
}

@media (max-wdidth: 1024px) {
    .preserving-coptic-heritage .container h1 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .preserving-coptic-heritage .container h1 {
        font-size: 1.5rem;
        margin-bottom: .25rem;
    }
}

@media (max-width: 640px) {
    .preserving-coptic-heritage .container h1 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        line-height: 130%;
    }
}

.preserving-coptic-heritage .container>p {
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 2rem;
    text-align: center;
    color: #4B4B4B;
    max-width: 75%;
    margin: auto;
    margin-bottom: 5rem;
}

@media (max-width: 1536px) {
    .preserving-coptic-heritage .container>p {
        margin-bottom: 4.5rem;
    }
}

@media (max-width: 1280px) {
    .preserving-coptic-heritage .container>p {
        margin-bottom: 4rem;
        font-size: 1rem;
    }
}

@media (max-width: 1024px) {
    .preserving-coptic-heritage .container>p {
        margin-bottom: 4rem;
        font-size: 1rem;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .preserving-coptic-heritage .container>p {
        margin-bottom: 3.5rem;
        font-size: .9rem;
        max-width: 100%;
        line-height: 140%;
    }
}

@media (max-width: 640px) {
    .preserving-coptic-heritage .container>p {
        margin-bottom: 2.5rem;
        font-size: .8rem;
        max-width: 100%;
        line-height: 160%;
    }
}

.preserving-coptic-heritage .container .steps-group {
    padding: 0 4rem;
    gap: 4rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1536px) {
    .preserving-coptic-heritage .container .steps-group {
        padding: 0 3rem;
        gap: 3rem;
    }
}

@media (max-width: 1280px) {
    .preserving-coptic-heritage .container .steps-group {
        padding: 0;
        gap: 1rem;
    }
}

@media (max-width: 1024px) {
    .preserving-coptic-heritage .container .steps-group {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 1rem;
        padding: 0 4rem;
    }
}

@media (max-width: 768px) {
    .preserving-coptic-heritage .container .steps-group {
        padding: 0 1rem;
    }
}

@media (max-width: 640px) {
    .preserving-coptic-heritage .container .steps-group {
        padding: 0;
    }
}

.preserving-coptic-heritage .container .steps-group .step-wrapper {
    padding: 0 1rem;
}

@media (max-width: 640px) {
    .preserving-coptic-heritage .container .steps-group .step-wrapper {
        padding: 0;
    }
}

.preserving-coptic-heritage .container .steps-group .step-wrapper img {
    display: block;
    width: 6rem;
    margin: auto;
    margin-bottom: 1.2rem;
}

@media (max-width: 1536px) {
    .preserving-coptic-heritage .container .steps-group .step-wrapper img {
        width: 5.5rem;
    }
}

@media (max-width: 1280px) {
    .preserving-coptic-heritage .container .steps-group .step-wrapper img {
        width: 4.5rem;
    }
}

@media (max-width: 640px) {
    .preserving-coptic-heritage .container .steps-group .step-wrapper img {
        width: 3.5rem;
    }
}

.preserving-coptic-heritage .container .steps-group .step-wrapper h2 {
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 150%;
    text-align: center;
    color: #000000;
    margin-bottom: 1rem;
}

@media (max-width: 1280px) {
    .preserving-coptic-heritage .container .steps-group .step-wrapper h2 {
        font-size: 1.25rem;
    }
}

@media (max-width: 1024px) {
    .preserving-coptic-heritage .container .steps-group .step-wrapper h2 {
        margin: .5rem;
    }
}

@media (max-width: 640px) {
    .preserving-coptic-heritage .container .steps-group .step-wrapper h2 {
        margin: .5rem;
        font-size: 1rem;
    }
}

.preserving-coptic-heritage .container .steps-group .step-wrapper p {
    font-weight: 400;
    font-size: 1rem;
    line-height: 200%;
    text-align: center;
    color: #000000;
}

@media (max-width: 1280px) {
    .preserving-coptic-heritage .container .steps-group .step-wrapper p {
        font-size: .8rem;
    }
}

@media (max-width: 1024px) {
    .preserving-coptic-heritage .container .steps-group .step-wrapper p {
        font-size: .8rem;
        line-height: 150%;
        max-width: 200px;
        margin: auto;
    }
}

@media (max-width: 768px) {
    .preserving-coptic-heritage .container .steps-group .step-wrapper p {
        max-width: auto;
    }
}

@media (max-width: 640px) {
    .preserving-coptic-heritage .container .steps-group .step-wrapper p {
        font-size: .7rem;
    }
}

.discover-the-soul {
    height: 50rem;
    max-height: 80vh;
    background-image: url("../imgs/video.png");
    background-size: cover;
    background-repeat: no-repeat;
    padding: 4rem 0;
    position: relative;
}

.discover-the-soul::after {
    content: "";
    background: linear-gradient(-180deg, rgba(0, 0, 0, 0) 0%, black 100%);
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 50%;
    z-index: 1;
}

@media (max-width: 1024px) {
    .discover-the-soul {
        max-height: 500px;
    }
}

@media (max-width: 768px) {
    .discover-the-soul {
        max-height: 450px;
        padding: 2rem 0;
    }
}

@media (max-width: 640px) {
    .discover-the-soul {
        max-height: 400px;
    }
}

.discover-the-soul .container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.discover-the-soul .container>span {
    display: block;
    height: 2rem;
}

@media (max-width: 1024px) {
    .discover-the-soul .container>span {
        height: 1rem;
    }
}

.discover-the-soul .container .play-icon {
    width: 8rem;
    height: 8rem;
    background-color: #FFFDF7;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: #cf2025;
    position: relative;
    cursor: pointer;
}

@media (max-width: 1536px) {
    .discover-the-soul .container .play-icon {
        width: 7rem;
        height: 7rem;
    }
}

@media (max-width: 1280px) {
    .discover-the-soul .container .play-icon {
        width: 6rem;
        height: 6rem;
    }
}

@media (max-width: 640px) {
    .discover-the-soul .container .play-icon {
        width: 4rem;
        height: 4rem;
        font-size: 1rem;
    }
}

.discover-the-soul .container .play-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    width: calc(100% + 2.5rem);
    height: calc(100% + 2.5rem);
    border-radius: 50%;
    background-color: #FFFDF7;
    opacity: .3;
    z-index: 2;
}

@media (max-width: 1536px) {
    .discover-the-soul .container .play-icon::after {
        width: calc(100% + 2rem);
        height: calc(100% + 2rem);
    }
}

@media (max-width: 640px) {
    .discover-the-soul .container .play-icon::after {
        width: calc(100% + 1rem);
        height: calc(100% + 1rem);
    }
}

.discover-the-soul .container .play-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    width: calc(100% + 6rem);
    height: calc(100% + 6rem);
    border-radius: 50%;
    background-color: #FFFDF7;
    opacity: .1;
}

@media (max-width: 1536px) {
    .discover-the-soul .container .play-icon::before {
        width: calc(100% + 5rem);
        height: calc(100% + 5rem);
    }
}

@media (max-width: 640px) {
    .discover-the-soul .container .play-icon::before {
        width: calc(100% + 3rem);
        height: calc(100% + 3rem);
    }
}

.discover-the-soul .container .play-icon i {
    z-index: 3;
}

.discover-the-soul .container .content h1 {
    font-style: normal;
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 160%;
    text-align: center;
    color: #FFFDF7;
    margin-bottom: 1rem;
}

@media (max-width: 1536px) {
    .discover-the-soul .container .content h1 {
        font-size: 2.25rem;
    }
}

@media (max-width: 1280px) {
    .discover-the-soul .container .content h1 {
        font-size: 2rem;
    }
}

@media (max-width: 1024px) {
    .discover-the-soul .container .content h1 {
        font-size: 1.6rem;
        margin-bottom: .5rem;
    }
}

@media (max-width: 640px) {
    .discover-the-soul .container .content h1 {
        font-size: 1.25rem;
        margin-bottom: .5rem;
    }
}

.discover-the-soul .container .content p {
    font-style: normal;
    font-weight: 400;
    font-size: 1.3rem;
    line-height: 150%;
    text-align: center;
    color: #FFFDF7;
}

@media (max-wdith: 1536px) {
    .discover-the-soul .container .content p {
        font-size: 1.2rem;
    }
}

@media (max-width: 1280px) {
    .discover-the-soul .container .content p {
        font-size: 1.15rem;
    }
}

@media (max-width: 1024px) {
    .discover-the-soul .container .content p {
        font-size: 1rem;
        max-width: 540px;
        margin: auto;
    }
}

@media (max-width: 640px) {
    .discover-the-soul .container .content p {
        font-size: .8rem;
        max-width: 540px;
        margin: auto;
    }
}

.thumbnail-video {
    position: relative;
    margin-bottom: 1.5rem;
}

@media (max-width: 1536px) {
    .thumbnail-video {
        margin-bottom: 1rem;
    }
}

.thumbnail-video img {
    margin: 0 !important;
}

.thumbnail-video .play-icon {
    width: 8rem;
    height: 8rem;
    background-color: #FFFDF7;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: #cf2025;
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%) !important;
    cursor: pointer;
}

@media (max-width: 1536px) {
    .thumbnail-video .play-icon {
        width: 7rem;
        height: 7rem;
    }
}

@media (max-width: 1280px) {
    .thumbnail-video .play-icon {
        width: 6rem;
        height: 6rem;
    }
}

@media (max-width: 640px) {
    .thumbnail-video .play-icon {
        width: 4rem;
        height: 4rem;
        font-size: 1rem;
    }
}

.thumbnail-video .play-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    width: calc(100% + 2.5rem);
    height: calc(100% + 2.5rem);
    border-radius: 50%;
    background-color: #FFFDF7;
    opacity: .3;
    z-index: 2;
}

@media (max-width: 1536px) {
    .thumbnail-video .play-icon::after {
        width: calc(100% + 2rem);
        height: calc(100% + 2rem);
    }
}

@media (max-width: 640px) {
    .thumbnail-video .play-icon::after {
        width: calc(100% + 1rem);
        height: calc(100% + 1rem);
    }
}

.thumbnail-video .play-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    width: calc(100% + 6rem);
    height: calc(100% + 6rem);
    border-radius: 50%;
    background-color: #FFFDF7;
    opacity: .1;
}

@media (max-width: 1536px) {
    .thumbnail-video .play-icon::before {
        width: calc(100% + 5rem);
        height: calc(100% + 5rem);
    }
}

@media (max-width: 640px) {
    .thumbnail-video .play-icon::before {
        width: calc(100% + 3rem);
        height: calc(100% + 3rem);
    }
}

.thumbnail-video .play-icon i {
    z-index: 3;
}

/* Video Popup Modal */
.video-popup {
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(27, 27, 27, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999999999999999999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.video-popup.active {
    opacity: 1;
    visibility: visible;
}

.video-popup.active .popup-content {
    transform: scale(1);
}

.video-popup .popup-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    background-color: #FFFDF7;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .video-popup .popup-content {
        max-width: calc(100vw - 2rem);
    }
}

.video-popup .popup-content .popup-header {
    background-color: #FFFDF7;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-wdth: 768px) {
    .video-popup .popup-content .popup-header {
        padding: 1rem;
        gap: 1rem;
    }
}

.video-popup .popup-content .popup-header .popup-title {
    color: #1B1B1B;
    font-size: 1.5rem;
    font-weight: bold;
}

@media (max-width: 768px) {
    .video-popup .popup-content .popup-header .popup-title {
        font-size: 1rem;
        line-height: 120%;
    }
}

.video-popup .popup-content .popup-header .close-btn {
    background: none;
    border: none;
    color: #cf2025;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-popup .popup-content .popup-header .close-btn:hover {
    background-color: #cf2025;
    color: #1C2E40;
}

.video-popup .popup-content .video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
}

.video-popup .popup-content .video-container iframe,
.video-popup .popup-content .video-container video {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-popup .popup-content .video-container video {
    background-color: #1B1B1B;
}

.video-popup .popup-content .popup-description {
    padding: 20px;
    background-color: #FFFDF7;
    color: #4B4B4B;
    border-top: 2px solid #cf2025;
}

@media (max-width: 768px) {
    .video-popup .popup-content .popup-description {
        padding: 1rem;
    }
}

.video-popup .popup-content .popup-description h3 {
    color: #1C2E40;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

@media (max-width: 768px) {
    .video-popup .popup-content .popup-description h3 {
        font-size: 1rem;
        margin-bottom: .25rem;
    }
}

.video-popup .popup-content .popup-description p {
    line-height: 1.6;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .video-popup .popup-content .popup-description p {
        font-size: .75rem;
        line-height: 140%;
    }
}

.statistics .statistics-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 3rem;
    gap: .75rem;
    width: max-content;
    margin: auto;
    background: #FFFDF7;
    box-shadow: 0px 55px 70px rgba(0, 0, 0, 0.03), 0px 55px 90px rgba(0, 0, 0, 0.03);
    border-radius: 0px 0px 1.5rem 1.5rem;
}

@media (max-width: 1536px) {
    .statistics .statistics-wrapper {
        padding: 1rem 2.5rem;
    }
}

@media (max-width: 1024px) {
    .statistics .statistics-wrapper {
        padding: 1rem;
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 80%;
    }
}

@media (max-width: 768px) {
    .statistics .statistics-wrapper {
        width: 100%;
    }
}

.statistics .statistics-wrapper .state-card {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 0 1rem;
}

.statistics .statistics-wrapper .state-card:not(.statistics .statistics-wrapper .state-card:last-child) {
    border-left: 1px solid #A6AAAC33;
}

@media (max-width: 1024px) {
    .statistics .statistics-wrapper .state-card {
        justify-content: start;
    }

    .statistics .statistics-wrapper .state-card:nth-child(2) {
        border-left: none !important;
    }
}

@media (max-width: 640px) {
    .statistics .statistics-wrapper .state-card {
        border-left: none !important;
        align-items: start;
        padding: 0;
    }

    .statistics .statistics-wrapper .state-card:nth-child(2),
    .statistics .statistics-wrapper .state-card:first-child {
        border-bottom: 1px solid #A6AAAC33;
        padding-bottom: 1rem;
        margin-bottom: .25rem;
    }
}

.statistics .statistics-wrapper .state-card img {
    width: 2.5rem;
}

@media (max-width: 1280px) {
    .statistics .statistics-wrapper .state-card img {
        width: 2.25rem;
    }
}

@media (max-width: 640px) {
    .statistics .statistics-wrapper .state-card img {
        width: 2rem;
    }
}

.statistics .statistics-wrapper .state-card .text h1 {
    font-weight: 700;
    font-size: 1.75rem;
    color: #1B1B1B;
    line-height: 100%;
    margin-bottom: .2rem;
}

@media (max-width: 1280px) {
    .statistics .statistics-wrapper .state-card .text h1 {
        font-weight: 700;
        font-size: 1.5rem;
        color: #1B1B1B;
        line-height: 100%;
        margin-bottom: .2rem;
    }
}

@media (max-width: 640px) {
    .statistics .statistics-wrapper .state-card .text h1 {
        font-size: 1.25rem;
    }
}

.statistics .statistics-wrapper .state-card .text p {
    font-weight: 400;
    font-size: 1rem;
    color: #4B4B4B;
}

@media (max-width: 1280px) {
    .statistics .statistics-wrapper .state-card .text p {
        font-size: .8rem;
    }
}

@media (max-width: 640px) {
    .statistics .statistics-wrapper .state-card .text p {
        line-height: 130%;
    }
}

.our-latest-publications {
    padding: 5rem 0;
}

@media (max-width: 1280px) {
    .our-latest-publications {
        padding: 3.5rem 0;
    }
}

@media (max-width: 1024px) {
    .our-latest-publications {
        padding: 2.5rem 0;
    }
}

.our-latest-publications .container h1 {
    font-weight: 700;
    font-size: 2.25rem;
    text-align: center;
    color: #1C1C1C;
    margin-bottom: 1.5rem;
}

@media (max-width: 1536px) {
    .our-latest-publications .container h1 {
        font-size: 2.1rem;
        margin-bottom: 1.25rem;
    }
}

@media (max-width: 1280px) {
    .our-latest-publications .container h1 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
}

@media (max-wdidth: 1024px) {
    .our-latest-publications .container h1 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .our-latest-publications .container h1 {
        font-size: 1.5rem;
        margin-bottom: .25rem;
    }
}

@media (max-width: 640px) {
    .our-latest-publications .container h1 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        line-height: 130%;
    }
}

.our-latest-publications .container>p {
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 2rem;
    text-align: center;
    color: #4B4B4B;
    max-width: 75%;
    margin: auto;
    margin-bottom: 5rem;
}

@media (max-width: 1536px) {
    .our-latest-publications .container>p {
        margin-bottom: 4.5rem;
    }
}

@media (max-width: 1280px) {
    .our-latest-publications .container>p {
        margin-bottom: 4rem;
        font-size: 1rem;
    }
}

@media (max-width: 1024px) {
    .our-latest-publications .container>p {
        margin-bottom: 4rem;
        font-size: 1rem;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .our-latest-publications .container>p {
        margin-bottom: 3.5rem;
        font-size: .9rem;
        max-width: 100%;
        line-height: 140%;
    }
}

@media (max-width: 640px) {
    .our-latest-publications .container>p {
        margin-bottom: 2.5rem;
        font-size: .8rem;
        max-width: 100%;
        line-height: 160%;
    }
}

.our-latest-publications .container .button-secondary {
    width: 250px;
    margin: auto;
    margin-top: 3rem;
}

@media (max-width: 640px) {
    .our-latest-publications .container .button-secondary {
        margin-top: 2rem;
        margin-bottom: 1rem;
    }
}

.research {
    padding: 5rem 0;
    padding-top: 0 !important;
}

@media (max-width: 1280px) {
    .research {
        padding: 3.5rem 0;
    }
}

@media (max-width: 1024px) {
    .research {
        padding: 2.5rem 0;
    }
}

.research .container h1 {
    font-weight: 700;
    font-size: 2.25rem;
    text-align: center;
    color: #1C1C1C;
    margin-bottom: 1.5rem;
}

@media (max-width: 1536px) {
    .research .container h1 {
        font-size: 2.1rem;
        margin-bottom: 1.25rem;
    }
}

@media (max-width: 1280px) {
    .research .container h1 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
}

@media (max-wdidth: 1024px) {
    .research .container h1 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .research .container h1 {
        font-size: 1.5rem;
        margin-bottom: .25rem;
    }
}

@media (max-width: 640px) {
    .research .container h1 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        line-height: 130%;
    }
}

.research .container>p {
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 2rem;
    text-align: center;
    color: #4B4B4B;
    max-width: 75%;
    margin: auto;
    margin-bottom: 5rem;
}

@media (max-width: 1536px) {
    .research .container>p {
        margin-bottom: 4.5rem;
    }
}

@media (max-width: 1280px) {
    .research .container>p {
        margin-bottom: 4rem;
        font-size: 1rem;
    }
}

@media (max-width: 1024px) {
    .research .container>p {
        margin-bottom: 4rem;
        font-size: 1rem;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .research .container>p {
        margin-bottom: 3.5rem;
        font-size: .9rem;
        max-width: 100%;
        line-height: 140%;
    }
}

@media (max-width: 640px) {
    .research .container>p {
        margin-bottom: 2.5rem;
        font-size: .8rem;
        max-width: 100%;
        line-height: 160%;
    }
}

.research-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 300px 300px;
    gap: 1rem;
}

@media (max-width: 1536px) {
    .research-wrapper {
        grid-template-rows: 270px 270px;
    }
}

@media (max-width: 1280px) {
    .research-wrapper {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 300px 250px 250px;
    }
}

@media (max-width: 1024px) {
    .research-wrapper {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 220px 200px 200px;
    }
}

@media (max-width: 640px) {
    .research-wrapper {
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: none;
    }
}

.research-wrapper .research-card {
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
    border-radius: 6px;
    overflow: hidden;
}

.research-wrapper .research-card:first-child {
    grid-column: 1/span 2;
    grid-row: 1/span 2;
}

@media (max-width: 1280px) {
    .research-wrapper .research-card:first-child {
        grid-row: 1/span 1;
    }
}

@media (max-width: 640px) {
    .research-wrapper .research-card:first-child {
        grid-column: span 1;
        grid-row: span 1;
    }
}

.research-wrapper .research-card:last-child {
    grid-column: span 2;
}

@media (max-width: 640px) {
    .research-wrapper .research-card:last-child {
        grid-column: span 1;
    }
}

@media (max-width: 1536px) {
    .research-wrapper .research-card {
        padding: 1.5rem;
    }
}

@media (max-width: 1024px) {
    .research-wrapper .research-card {
        padding: 1rem;
    }
}

@media (max-width: 640px) {
    .research-wrapper .research-card {
        height: 250px;
    }
}

.research-wrapper .research-card img {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.research-wrapper .research-card::after {
    content: "";
    background: linear-gradient(-180deg, rgba(0, 0, 0, 0) 0%, black 100%);
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 70%;
    z-index: 2;
}

.research-wrapper .research-card .text {
    position: relative;
    z-index: 3;
}

.research-wrapper .research-card .text .date {
    font-weight: 400;
    font-size: 1rem;
    line-height: 100.9%;
    color: #FFFFFF;
    margin-bottom: .5rem;
}

.research-wrapper .research-card .text .title {
    font-style: normal;
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 150%;
    letter-spacing: -0.01em;
    color: #FFFFFF;
}

@media (max-width: 1024px) {
    .research-wrapper .research-card .text .title {
        font-weight: 600;
        font-size: 1rem;
    }
}

@media (min-width: 640px) {
    .research-wrapper .research-card:not(.research-wrapper .research-card:last-child, .research-wrapper .research-card:first-child) .text .date {
        font-size: .8rem;
    }

    .research-wrapper .research-card:not(.research-wrapper .research-card:last-child, .research-wrapper .research-card:first-child) .text .title {
        font-size: .9rem;
    }
}

.events-and-discoveries {
    padding: 5rem 0;
    padding-top: 0 !important;
}

@media (max-width: 1280px) {
    .events-and-discoveries {
        padding: 3.5rem 0;
    }
}

@media (max-width: 1024px) {
    .events-and-discoveries {
        padding: 2.5rem 0;
    }
}

.events-and-discoveries .container h1 {
    font-weight: 700;
    font-size: 2.25rem;
    text-align: center;
    color: #1C1C1C;
    margin-bottom: 1.5rem;
}

@media (max-width: 1536px) {
    .events-and-discoveries .container h1 {
        font-size: 2.1rem;
        margin-bottom: 1.25rem;
    }
}

@media (max-width: 1280px) {
    .events-and-discoveries .container h1 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
}

@media (max-wdidth: 1024px) {
    .events-and-discoveries .container h1 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .events-and-discoveries .container h1 {
        font-size: 1.5rem;
        margin-bottom: .25rem;
    }
}

@media (max-width: 640px) {
    .events-and-discoveries .container h1 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        line-height: 130%;
    }
}

.events-and-discoveries .container>p {
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 2rem;
    text-align: center;
    color: #4B4B4B;
    max-width: 75%;
    margin: auto;
    margin-bottom: 5rem;
}

@media (max-width: 1536px) {
    .events-and-discoveries .container>p {
        margin-bottom: 4.5rem;
    }
}

@media (max-width: 1280px) {
    .events-and-discoveries .container>p {
        margin-bottom: 4rem;
        font-size: 1rem;
    }
}

@media (max-width: 1024px) {
    .events-and-discoveries .container>p {
        margin-bottom: 4rem;
        font-size: 1rem;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .events-and-discoveries .container>p {
        margin-bottom: 3.5rem;
        font-size: .9rem;
        max-width: 100%;
        line-height: 140%;
    }
}

@media (max-width: 640px) {
    .events-and-discoveries .container>p {
        margin-bottom: 2.5rem;
        font-size: .8rem;
        max-width: 100%;
        line-height: 160%;
    }
}

.events-and-discoveries .container .button-secondary {
    width: 300px;
    margin: auto;
    margin-top: 3rem;
}

@media (max-width: 640px) {
    .events-and-discoveries .container .button-secondary {
        margin-top: 2rem;
        margin-bottom: 1rem;
    }
}

.articles-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

@media (max-width: 1024px) {
    .articles-wrapper {
        grid-template-columns: 1fr;
    }
}

.articles-wrapper .article-card {
    background: #FFFDF7;
    border: 0.2px solid #D9D9D9;
    border-radius: 6px;
    overflow: hidden;
}

.articles-wrapper .article-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

@media (max-width: 1280px) {
    .articles-wrapper .article-card img {
        height: 200px;
    }
}

.articles-wrapper .article-card .text {
    padding: 1.25rem;
}

@media (max-width: 1280px) {
    .articles-wrapper .article-card .text {
        padding: 1rem;
    }
}

.articles-wrapper .article-card .text .title {
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 150%;
    letter-spacing: -0.01em;
    color: #1C2E40;
}

@media (max-width: 1280px) {
    .articles-wrapper .article-card .text .title {
        font-size: 1.1rem;
    }
}

.articles-wrapper .article-card .text .date {
    font-weight: 500;
    font-size: 1rem;
    line-height: 150%;
    /* identical to box height, or 30px */
    letter-spacing: -0.01em;
    color: #6E6E6E;
}

@media (max-width: 1280px) {
    .articles-wrapper .article-card .text .date {
        font-size: .9rem;
    }
}

.articles-wrapper .article-card .text .desc {
    font-weight: 400;
    font-size: 1rem;
    line-height: 150%;
    color: #4B4B4B;
}

@media (max-width: 1280px) {
    .articles-wrapper .article-card .text .desc {
        font-size: .9rem;
    }
}

.articles-wrapper .article-card .info {
    padding: 0 1.25rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 1280px) {
    .articles-wrapper .article-card .info {
        padding: 0 1.1rem 1rem;
    }
}

.articles-wrapper .article-card .info .price {
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 150%;
    letter-spacing: -0.01em;
    color: #cf2025;
}

@media (max-width: 1280px) {
    .articles-wrapper .article-card .info .price {
        font-size: 1.15rem;
    }
}

.articles-wrapper .article-card .info .more {
    font-weight: 500;
    font-size: 1rem;
    line-height: 100%;
    letter-spacing: 0.5px;
    color: #cf2025;
    text-decoration: none;
    font-weight: bold;
}

.timeless {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 0 0 3rem;
}

.timeless.timless-about {
    padding: 4rem 0 3rem;
}

@media (max-width: 640px) {
    .timeless {
        padding: 2rem 0;
    }
}

.timeless .container {
    display: grid;
    grid-template-columns: 3.5fr 6.5fr;
    gap: 6rem;
}

@media (max-width: 1536px) {
    .timeless .container {
        gap: 4rem;
    }
}

@media (max-width: 1280px) {
    .timeless .container {
        gap: 3rem;
    }
}

@media (max-width: 1024px) {
    .timeless .container {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .timeless .container {
        gap: 1rem;
        grid-template-columns: 1fr;
    }
}

.timeless .container .img {
    width: 100%;
}

@media (max-width: 768px) {
    .timeless .container .img {
        max-width: 18rem;
        margin-right: auto;
    }
}

@media (max-width: 640px) {
    .timeless .container .img {
        margin-bottom: 0;
        margin-left: auto;
    }
}

.timeless .container .img img {
    width: 100%;
}

.timeless .container .content h1 {
    font-weight: 700;
    font-size: 4rem;
    color: #1B1B1B;
    line-height: 130%;
    margin-bottom: 2rem;
}

@media (max-width: 1536px) {
    .timeless .container .content h1 {
        font-size: 3.25rem;
    }
}

@media (max-width: 1280px) {
    .timeless .container .content h1 {
        font-size: 2.75rem;
        margin-bottom: 1.25rem;
    }
}

@media (max-width: 1024px) {
    .timeless .container .content h1 {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .timeless .container .content h1 {
        font-size: 1.75rem;
        margin-bottom: .75rem;
    }
}

.timeless .container .content h1 span {
    color: #cf2025;
}

.timeless .container .content p {
    font-weight: 400;
    font-size: 1.15rem;
    color: #4B4B4B;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

@media (max-width: 1536px) {
    .timeless .container .content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 1280px) {
    .timeless .container .content p {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }
}

@media (max-width: 1024px) {
    .timeless .container .content p {
        font-size: .8rem;
        margin-bottom: 1rem;
    }
}

.FAQ {
    padding: 5rem 0;
}

@media (max-width: 1280px) {
    .FAQ {
        padding: 3.5rem 0;
    }
}

@media (max-width: 1024px) {
    .FAQ {
        padding: 2.5rem 0;
        padding-top: 0 !important;
    }
}

.FAQ .container {
    display: grid;
    grid-template-columns: 3.5fr 6.5fr;
    gap: 6rem;
}

@media (max-width: 1536px) {
    .FAQ .container {
        gap: 4rem;
    }
}

@media (max-width: 1280px) {
    .FAQ .container {
        gap: 3rem;
    }
}

@media (max-width: 1024px) {
    .FAQ .container {
        gap: 3rem;
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .FAQ .container {
        gap: 1rem;
        grid-template-columns: 1fr;
    }
}

.FAQ .container .img {
    border-radius: 6px;
    overflow: hidden;
    height: 700px;
}

@media (max-width: 1280px) {
    .FAQ .container .img {
        height: 600px;
    }
}

@media (max-width: 1024px) {
    .FAQ .container .img {
        display: none;
    }
}

.FAQ .container .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.FAQ .container .questions-wrapper {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.FAQ .container .questions-wrapper .question {
    background: #FFFDF7;
    border: 0.4px solid #D9D9D9;
    border-radius: 8px;
    padding: 1rem;
}

@media (max-width: 1280px) {
    .FAQ .container .questions-wrapper .question * {
        font-size: .8rem !important;
    }
}

.FAQ .container .questions-wrapper .question .header {
    position: relative;
    padding-left: 1.5rem;
    cursor: pointer;
}

.FAQ .container .questions-wrapper .question .header::after {
    content: "\f078";
    /* Unicode for fa-chevron-down */
    font-family: "Font Awesome 5 Free";
    /* Or "Font Awesome 6 Free" depending on version */
    font-weight: 900;
    /* Solid style */
    display: inline-block;
    margin-right: 0.5em;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    font-size: .75rem;
    color: #4B4B4B;
    /* space before the icon */
}

.FAQ .container .questions-wrapper .question .body,
.FAQ .container .questions-wrapper .question .footer {
    max-height: 0;
    overflow: hidden;
    padding-top: 0;
    margin-top: 0;
    transition: max-height 0.4s ease, padding-top 0.4s ease, margin-top 0.4s ease;
}

.FAQ .container .questions-wrapper .question.active .header::after {
    transform: translateY(-50%) rotate(-180deg);
    /* Rotate icon */
}

.FAQ .container .questions-wrapper .question.active .body,
.FAQ .container .questions-wrapper .question.active .footer {
    max-height: 500px;
    /* big enough to fit content */
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 1px solid #D9D9D9;
}

.FAQ .container .questions-wrapper .question.active .footer {
    border-top-style: dashed;
}

.media-libarary {
    padding: 5rem 0;
    padding-top: 0 !important;
}

@media (max-width: 1280px) {
    .media-libarary {
        padding: 3.5rem 0;
    }
}

@media (max-width: 1024px) {
    .media-libarary {
        padding: 2.5rem 0;
    }
}

.media-libarary .container h1 {
    font-weight: 700;
    font-size: 2.25rem;
    text-align: center;
    color: #1C1C1C;
    margin-bottom: 1.5rem;
}

@media (max-width: 1536px) {
    .media-libarary .container h1 {
        font-size: 2.1rem;
        margin-bottom: 1.25rem;
    }
}

@media (max-width: 1280px) {
    .media-libarary .container h1 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
}

@media (max-wdidth: 1024px) {
    .media-libarary .container h1 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .media-libarary .container h1 {
        font-size: 1.5rem;
        margin-bottom: .25rem;
    }
}

@media (max-width: 640px) {
    .media-libarary .container h1 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        line-height: 130%;
    }
}

.media-libarary .container>p {
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 2rem;
    text-align: center;
    color: #4B4B4B;
    max-width: 75%;
    margin: auto;
    margin-bottom: 5rem;
}

@media (max-width: 1536px) {
    .media-libarary .container>p {
        margin-bottom: 4.5rem;
    }
}

@media (max-width: 1280px) {
    .media-libarary .container>p {
        margin-bottom: 4rem;
        font-size: 1rem;
    }
}

@media (max-width: 1024px) {
    .media-libarary .container>p {
        margin-bottom: 4rem;
        font-size: 1rem;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .media-libarary .container>p {
        margin-bottom: 3.5rem;
        font-size: .9rem;
        max-width: 100%;
        line-height: 140%;
    }
}

@media (max-width: 640px) {
    .media-libarary .container>p {
        margin-bottom: 2.5rem;
        font-size: .8rem;
        max-width: 100%;
        line-height: 160%;
    }
}

.media-wrapper {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 768px) {
    .media-wrapper {
        grid-template-columns: 1fr;
    }
}

.media-wrapper .media-card {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    height: 600px;
}

@media (max-width: 1536px) {
    .media-wrapper .media-card {
        height: 500px;
    }
}

@media (max-width: 1280px) {
    .media-wrapper .media-card {
        height: 450px;
    }
}

@media (max-width: 1280px) {
    .media-wrapper .media-card {
        height: 300px;
        padding: 1rem;
    }
}

.media-wrapper .media-card img {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.media-wrapper .media-card::after {
    content: "";
    background: linear-gradient(-180deg, rgba(0, 0, 0, 0) 0%, black 100%);
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 70%;
    z-index: 2;
}

.media-wrapper .media-card .title {
    z-index: 3;
    position: relative;
    font-style: normal;
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 150%;
    letter-spacing: -0.01em;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

@media (max-width: 1024px) {
    .media-wrapper .media-card .title {
        font-weight: 600;
        font-size: 1rem;
    }
}

.media-wrapper .media-card p {
    z-index: 3;
    position: relative;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    color: #9A9A9A;
    text-align: right;
}

.media-wrapper .media-card p span {
    font-weight: bold;
    color: #cf2025;
}

.our-team {
    padding: 5rem 0;
    padding-top: 0 !important;
}

@media (max-width: 1280px) {
    .our-team {
        padding: 3.5rem 0;
    }
}

@media (max-width: 1024px) {
    .our-team {
        padding: 2.5rem 0;
    }
}

.our-team .container h1 {
    font-weight: 700;
    font-size: 2.25rem;
    text-align: center;
    color: #1C1C1C;
    margin-bottom: 1.5rem;
}

@media (max-width: 1536px) {
    .our-team .container h1 {
        font-size: 2.1rem;
        margin-bottom: 1.25rem;
    }
}

@media (max-width: 1280px) {
    .our-team .container h1 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
}

@media (max-wdidth: 1024px) {
    .our-team .container h1 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .our-team .container h1 {
        font-size: 1.5rem;
        margin-bottom: .25rem;
    }
}

@media (max-width: 640px) {
    .our-team .container h1 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        line-height: 130%;
    }
}

.our-team .container>p {
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 2rem;
    text-align: center;
    color: #4B4B4B;
    max-width: 75%;
    margin: auto;
    margin-bottom: 5rem;
}

@media (max-width: 1536px) {
    .our-team .container>p {
        margin-bottom: 4.5rem;
    }
}

@media (max-width: 1280px) {
    .our-team .container>p {
        margin-bottom: 4rem;
        font-size: 1rem;
    }
}

@media (max-width: 1024px) {
    .our-team .container>p {
        margin-bottom: 4rem;
        font-size: 1rem;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .our-team .container>p {
        margin-bottom: 3.5rem;
        font-size: .9rem;
        max-width: 100%;
        line-height: 140%;
    }
}

@media (max-width: 640px) {
    .our-team .container>p {
        margin-bottom: 2.5rem;
        font-size: .8rem;
        max-width: 100%;
        line-height: 160%;
    }
}

.members-wrapper {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 768px) {
    .members-wrapper {
        grid-template-columns: 1fr;
    }
}

.members-wrapper .member-card {
    padding: 2rem 3rem;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    height: 600px;
}

@media (max-width: 1536px) {
    .members-wrapper .member-card {
        height: 500px;
        padding: 2rem;
    }
}

@media (max-width: 1280px) {
    .members-wrapper .member-card {
        height: 450px;
    }
}

@media (max-width: 1280px) {
    .members-wrapper .member-card {
        height: 300px;
        padding: 1rem;
    }
}

.members-wrapper .member-card img {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.members-wrapper .member-card::after {
    content: "";
    background: linear-gradient(-180deg, rgba(0, 0, 0, 0) 0%, black 100%);
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 70%;
    z-index: 2;
}

.members-wrapper .member-card .text {
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0px 4px 60px rgba(0, 0, 0, 0.04);
    border-radius: 15px;
    padding: 1.5rem;
    position: relative;
    z-index: 3;
}

@media (max-width: 1280px) {
    .members-wrapper .member-card .text {
        padding: 1rem;
    }
}

@media (max-width: 1024px) {
    .members-wrapper .member-card .text {
        padding: .5rem .2rem;
    }
}

.members-wrapper .member-card .text .name {
    font-weight: 700;
    font-size: 1.75rem;
    line-height: 150%;
    text-align: center;
    color: #000000;
}

@media (max-width: 1536px) {
    .members-wrapper .member-card .text .name {
        font-size: 1.4rem;
    }
}

@media (max-width: 1280px) {
    .members-wrapper .member-card .text .name {
        font-size: 1.2rem;
    }
}

@media (max-width: 1024px) {
    .members-wrapper .member-card .text .name {
        font-size: 1rem;
    }
}

.members-wrapper .member-card .text .desc {
    font-weight: 400;
    font-size: 1.2rem;
    line-height: 200%;
    text-align: center;
    color: #000000;
}

@media (max-width: 1536px) {
    .members-wrapper .member-card .text .desc {
        font-size: 1rem;
    }
}

@media (max-width: 1280px) {
    .members-wrapper .member-card .text .desc {
        font-size: .9rem;
    }
}

@media (max-width: 1024px) {
    .members-wrapper .member-card .text .desc {
        font-size: .9rem;
        line-height: 120%;
    }
}

.our-parteners {
    padding: 5rem 0;
    padding-top: 0 !important;
    position: relative;
}

@media (max-width: 1280px) {
    .our-parteners {
        padding: 3.5rem 0;
    }
}

@media (max-width: 1024px) {
    .our-parteners {
        padding: 2.5rem 0;
    }
}

.our-parteners::after {
    content: "";
    position: absolute;
    top: 1rem;
    right: 2.5rem;
    width: 12rem;
    height: 12rem;
    background-image: url("./../imgs/qoute-left.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

@media (max-width: 1536px) {
    .our-parteners::after {
        width: 10rem;
        height: 10rem;
    }
}

@media (max-width: 1280px) {
    .our-parteners::after {
        width: 8rem;
        height: 8rem;
    }
}

@media (max-width: 768px) {
    .our-parteners::after {
        width: 5rem;
        height: 5rem;
        right: 1rem;
    }
}

.our-parteners::before {
    content: "";
    position: absolute;
    bottom: 1rem;
    left: 2.5rem;
    width: 12rem;
    height: 12rem;
    background-image: url("./../imgs/qoute-right.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

@media (max-width: 1536px) {
    .our-parteners::before {
        width: 10rem;
        height: 10rem;
    }
}

@media (max-width: 1280px) {
    .our-parteners::before {
        width: 8rem;
        height: 8rem;
    }
}

@media (max-width: 768px) {
    .our-parteners::before {
        width: 5rem;
        height: 5rem;
        left: 1rem;
    }
}

.our-parteners .container h1 {
    font-weight: 700;
    font-size: 2.25rem;
    text-align: center;
    color: #1C1C1C;
    margin-bottom: 1.5rem;
}

@media (max-width: 1536px) {
    .our-parteners .container h1 {
        font-size: 2.1rem;
        margin-bottom: 1.25rem;
    }
}

@media (max-width: 1280px) {
    .our-parteners .container h1 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
}

@media (max-wdidth: 1024px) {
    .our-parteners .container h1 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .our-parteners .container h1 {
        font-size: 1.5rem;
        margin-bottom: .25rem;
    }
}

@media (max-width: 640px) {
    .our-parteners .container h1 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        line-height: 130%;
    }
}

.our-parteners .container>p {
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 2rem;
    text-align: center;
    color: #000929;
    max-width: 50%;
    margin: auto;
    margin-bottom: 4rem;
    font-weight: 500;
}

@media (max-width: 1536px) {
    .our-parteners .container>p {
        margin-bottom: 3.5rem;
        max-width: 60%;
    }
}

@media (max-width: 1280px) {
    .our-parteners .container>p {
        margin-bottom: 3rem;
        font-size: 1rem;
    }
}

@media (max-width: 1024px) {
    .our-parteners .container>p {
        margin-bottom: 3rem;
        font-size: 1rem;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .our-parteners .container>p {
        margin-bottom: 2.5rem;
        font-size: .9rem;
        max-width: 100%;
        line-height: 140%;
    }
}

@media (max-width: 640px) {
    .our-parteners .container>p {
        margin-bottom: 2.5rem;
        font-size: .8rem;
        max-width: 100%;
        line-height: 160%;
    }
}

.our-parteners .container .sub-title {
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 150%;
    text-align: center;
    color: #000929;
}

@media (max-width: 768px) {
    .our-parteners .container .sub-title {
        font-size: 1rem;
    }
}

.our-parteners .container .sub-title span {
    font-weight: 400;
    color: #6C727F;
}

.our-parteners .container .stars {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .5rem;
    font-size: 1rem;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .our-parteners .container .stars {
        font-size: .75rem;
    }
}

.our-parteners .container .stars i {
    color: #EFEEEE;
}

.our-parteners .container .stars i.active {
    color: #cf2025;
}

.our-parteners .container .parterners-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3.15rem;
}

@media (max-width: 768px) {
    .our-parteners .container .parterners-wrapper {
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    .our-parteners .container .parterners-wrapper {
        gap: .75rem;
    }
}

.our-parteners .container .parterners-wrapper .partner-card {
    width: 4.6rem;
    height: 4.6rem;
}

@media (max-width: 1536px) {
    .our-parteners .container .parterners-wrapper .partner-card {
        width: 4.25rem;
        height: 4.25rem;
    }
}

@media (max-width: 1280px) {
    .our-parteners .container .parterners-wrapper .partner-card {
        width: 4rem;
        height: 4rem;
    }
}

@media (max-width: 768px) {
    .our-parteners .container .parterners-wrapper .partner-card {
        width: 3.5rem;
        height: 3.5rem;
    }
}

@media (max-width: 640px) {
    .our-parteners .container .parterners-wrapper .partner-card {
        width: 3rem;
        height: 3rem;
    }
}

.our-parteners .container .parterners-wrapper .partner-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

footer {
    background-color: #1B1B1B;
    color: #e5e5e5;
    padding: 3rem 0 1rem;
    position: relative;
}

footer::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url("./../imgs/footer-bg.png");
    background-size: cover;
    background-size: 100%;
    background-repeat: no-repeat;
}

footer * {
    position: relative;
    z-index: 2;
}

footer .logo {
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 18rem;
}

@media (max-width: 1024px) {
    footer .logo {
        width: 14rem;
    }
}

footer .logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

footer .footer-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 2rem;
}

footer .footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

footer .footer-brand .brand-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

footer .footer-brand .brand-text h2 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

footer .footer-brand .brand-text .arabic {
    font-size: 0.95rem;
    color: #b0b0b0;
    font-weight: 400;
}

footer .footer-brand .mission-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #b0b0b0;
    margin-bottom: 1.5rem;
}

footer .footer-brand .social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

footer .footer-brand .social-links a {
    color: #b0b0b0;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

footer .footer-brand .social-links a:hover {
    color: #cf2025;
}

footer .footer-brand .contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #b0b0b0;
}

footer .footer-brand .contact-info span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

footer .footer-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

footer .footer-links .link-column h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

footer .footer-links .link-column ul {
    list-style: none;
}

footer .footer-links .link-column ul li {
    margin-bottom: 0.75rem;
}

footer .footer-links .link-column ul li a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

footer .footer-links .link-column ul li a:hover {
    color: #ffffff;
}

footer .footer-bottom {
    border-top: 1px solid #404040;
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

footer .footer-bottom .footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

footer .footer-bottom .footer-legal a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

footer .footer-bottom .footer-legal a:hover {
    color: #ffffff;
}

footer .footer-bottom .copyright {
    font-size: 0.85rem;
    color: #888;
}

@media (min-width: 768px) {
    footer .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    footer .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    footer .footer-brand .brand-header {
        flex-direction: row;
    }

    footer .footer-brand .contact-info {
        flex-direction: row;
        gap: 2rem;
    }

    footer .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: right;
    }
}

@media (min-width: 1024px) {
    footer .footer-main {
        grid-template-columns: 2fr 3fr;
        gap: 4rem;
    }

    footer .footer-links {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 3rem;
    }

    footer .footer-brand .mission-text {
        max-width: 400px;
    }

    footer .footer-brand .social-links {
        margin-bottom: 1.5rem;
    }
}

.contact-us {
    padding: 5rem 0;
}

@media (max-width: 1280px) {
    .contact-us {
        padding: 3.5rem 0;
    }
}

@media (max-width: 1024px) {
    .contact-us {
        padding: 2.5rem 0;
    }
}

.contact-us .container {
    display: grid;
    grid-template-columns: 4fr 6fr;
    gap: 2rem;
}

@media (max-width: 1280px) {
    .contact-us .container {
        gap: 1.5rem;
    }
}

@media (max-width: 1024px) {
    .contact-us .container {
        grid-template-columns: 1fr;
    }
}

.contact-us .container .header {
    margin-bottom: 2rem;
}

@media (max-width: 1280px) {
    .contact-us .container .header {
        margin-bottom: 1.75rem;
    }
}

.contact-us .container .header h1 {
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 120%;
    color: #1B1B1B;
    margin-bottom: .5rem;
}

@media (max-width: 1536px) {
    .contact-us .container .header h1 {
        font-size: 2.15rem;
    }
}

@media (max-width: 1280px) {
    .contact-us .container .header h1 {
        font-size: 1.75rem;
        margin-bottom: .2rem;
    }
}

@media (max-width: 640px) {
    .contact-us .container .header h1 {
        font-size: 1.5rem;
        margin-bottom: 0;
    }
}

.contact-us .container .header p {
    font-weight: 400;
    font-size: 1rem;
    line-height: 150%;
    color: #4B4B4B;
}

@media (max-width: 1280px) {
    .contact-us .container .header p {
        font-size: .9rem;
        line-height: 140%;
    }
}

.contact-us .container .contact-information {
    padding: 1.5rem;
    background: #FCFAF3;
    border: 1px solid #F1F1F1;
    border-radius: 6px;
}

@media (max-width: 1280px) {
    .contact-us .container .contact-information {
        padding: 1.25rem;
    }
}

.contact-us .container .contact-information .body {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-us .container .contact-information .body .contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-us .container .contact-information .body .contact-item .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    background: #cf2025;
    border-radius: 10px;
}

@media (max-width: 1280px) {
    .contact-us .container .contact-information .body .contact-item .icon {
        width: 2.5rem;
        height: 2.5rem;
    }
}

.contact-us .container .contact-information .body .contact-item .icon i {
    font-size: 1.5rem;
    color: #FFFDF7;
}

@media (max-width: 1536px) {
    .contact-us .container .contact-information .body .contact-item .icon i {
        font-size: 1.25rem;
    }
}

@media (max-width: 1280px) {
    .contact-us .container .contact-information .body .contact-item .icon i {
        font-size: 1rem;
    }
}

.contact-us .container .contact-information .body .contact-item .text h2 {
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 26px;
    color: #1B1B1B;
}

@media (max-width: 1536px) {
    .contact-us .container .contact-information .body .contact-item .text h2 {
        font-size: 1.15rem;
    }
}

@media (max-width: 1280px) {
    .contact-us .container .contact-information .body .contact-item .text h2 {
        font-size: 1rem;
    }
}

.contact-us .container .contact-information .body .contact-item .text p {
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    color: #1B1B1B;
}

@media (max-width: 1536px) {
    .contact-us .container .contact-information .body .contact-item .text p {
        font-size: 1rem;
    }
}

@media (max-width: 1280px) {
    .contact-us .container .contact-information .body .contact-item .text p {
        font-size: .8rem;
    }
}

.contact-us .container .contact-form {
    padding: 1.5rem;
    background: #FCFAF3;
    border: 1px solid #F1F1F1;
    border-radius: 6px;
}

@media (max-width: 1280px) {
    .contact-us .container .contact-form {
        padding: 1.25rem;
    }
}

.contact-us .container .contact-form form .form-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

@media (max-width: 1280px) {
    .contact-us .container .contact-form form .form-row {
        margin-bottom: 1.5rem;
        gap: 1rem;
    }
}

@media (max-width: 640px) {
    .contact-us .container .contact-form form .form-row {
        flex-direction: column;
    }
}

.contact-us .container .contact-form form .form-row .form-group {
    flex: 1;
}

@media (max-width: 640px) {
    .contact-us .container .contact-form form .form-row .form-group {
        width: 100%;
    }
}

.contact-us .container .contact-form form .form-row .form-group label {
    font-weight: 500;
    font-size: 1rem;
    line-height: 17px;
    color: #011B3B;
    display: block;
    margin-bottom: .75rem;
}

.contact-us .container .contact-form form .form-row .form-group input,
.contact-us .container .contact-form form .form-row .form-group textarea,
.contact-us .container .contact-form form .form-row .form-group select {
    padding: 12px;
    background: #FDFBF4;
    border: 1.2px solid #F1F1F1;
    border-radius: 4px;
    color: #1B1B1B;
    width: 100%;
}

.contact-us .container .contact-form form .form-row .form-group input:focus,
.contact-us .container .contact-form form .form-row .form-group textarea:focus,
.contact-us .container .contact-form form .form-row .form-group select:focus {
    box-shadow: none;
    outline: none;
    border: 1px solid #1C2E40;
}

.contact-us .container .contact-form form .form-row .form-group textarea {
    resize: none;
    height: 100px;
}

.contact-us .container .contact-form form .form-row button {
    width: 100%;
    flex: 1;
}

.map {
    padding: 5rem 0;
    padding-top: 0 !important;
}

@media (max-width: 1280px) {
    .map {
        padding: 3.5rem 0;
    }
}

@media (max-width: 1024px) {
    .map {
        padding: 2.5rem 0;
    }
}

.map iframe {
    width: 100%;
    height: 400px;
}

@media (max-width: 1280px) {
    .map iframe {
        height: 330px;
    }
}

@media (max-width: 640px) {
    .map iframe {
        height: 200px;
    }
}

.login-wrapper {
    position: relative;
}

.login-wrapper>img {
    width: 50%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    right: 0;
}

@media (max-width: 1024px) {
    .login-wrapper>img {
        display: none;
    }
}

.login-wrapper .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 5rem 1rem;
}

@media (max-width: 1024px) {
    .login-wrapper .container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1280px) {
    .login-wrapper .container {
        padding: 3.5rem 1rem;
    }
}

@media (max-width: 1024px) {
    .login-wrapper .container {
        padding: 2.5rem 1rem;
    }
}

.login-wrapper .container .login-form-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    grid-column: 2;
}

@media (max-width: 1024px) {
    .login-wrapper .container .login-form-wrapper {
        grid-column: 1;
    }
}

.login-wrapper .container .login-form-wrapper .header {
    margin-bottom: 2rem;
}

@media (max-width: 1280px) {
    .login-wrapper .container .login-form-wrapper .header {
        margin-bottom: 1.75rem;
    }
}

.login-wrapper .container .login-form-wrapper .header h1 {
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 120%;
    color: #1B1B1B;
    margin-bottom: .5rem;
}

@media (max-width: 1536px) {
    .login-wrapper .container .login-form-wrapper .header h1 {
        font-size: 2.15rem;
    }
}

@media (max-width: 1280px) {
    .login-wrapper .container .login-form-wrapper .header h1 {
        font-size: 1.75rem;
        margin-bottom: .2rem;
    }
}

@media (max-width: 640px) {
    .login-wrapper .container .login-form-wrapper .header h1 {
        font-size: 1.5rem;
        margin-bottom: 0;
    }
}

.login-wrapper .container .login-form-wrapper .header p {
    font-weight: 400;
    font-size: 1rem;
    line-height: 150%;
    color: #4B4B4B;
}

@media (max-width: 1280px) {
    .login-wrapper .container .login-form-wrapper .header p {
        font-size: .9rem;
        line-height: 140%;
    }
}

.login-wrapper .container .login-form-wrapper .login-form {
    padding: 1.5rem;
    background: #FCFAF3;
    border: 1px solid #F1F1F1;
    border-radius: 6px;
    width: 100%;
}

@media (max-width: 1280px) {
    .login-wrapper .container .login-form-wrapper .login-form {
        padding: 1.25rem;
    }
}

.login-wrapper .container .login-form-wrapper .login-form form .form-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

@media (max-width: 1280px) {
    .login-wrapper .container .login-form-wrapper .login-form form .form-row {
        margin-bottom: 1.5rem;
        gap: 1rem;
    }
}

@media (max-width: 640px) {
    .login-wrapper .container .login-form-wrapper .login-form form .form-row {
        flex-direction: column;
    }
}

.login-wrapper .container .login-form-wrapper .login-form form .form-row a {
    font-weight: 600;
    font-size: 14px;
    line-height: 140%;
    color: #cf2025;
    text-decoration: none;
}

.login-wrapper .container .login-form-wrapper .login-form form .form-row .form-group {
    flex: 1;
}

@media (max-width: 640px) {
    .login-wrapper .container .login-form-wrapper .login-form form .form-row .form-group {
        width: 100%;
    }
}

.login-wrapper .container .login-form-wrapper .login-form form .form-row .form-group label {
    font-weight: 500;
    font-size: 1rem;
    line-height: 17px;
    color: #011B3B;
    display: block;
    margin-bottom: .75rem;
}

.login-wrapper .container .login-form-wrapper .login-form form .form-row .form-group input,
.login-wrapper .container .login-form-wrapper .login-form form .form-row .form-group textarea,
.login-wrapper .container .login-form-wrapper .login-form form .form-row .form-group select {
    padding: 12px;
    background: #FDFBF4;
    border: 1.2px solid #F1F1F1;
    border-radius: 4px;
    color: #1B1B1B;
    width: 100%;
}

.login-wrapper .container .login-form-wrapper .login-form form .form-row .form-group input:focus,
.login-wrapper .container .login-form-wrapper .login-form form .form-row .form-group textarea:focus,
.login-wrapper .container .login-form-wrapper .login-form form .form-row .form-group select:focus {
    box-shadow: none;
    outline: none;
    border: 1px solid #1C2E40;
}

.login-wrapper .container .login-form-wrapper .login-form form .form-row .form-group textarea {
    resize: none;
    height: 100px;
}

.login-wrapper .container .login-form-wrapper .login-form form .form-row .form-check {
    display: flex;
    gap: 1rem;
    align-items: center;
    white-space: nowrap;
}

.login-wrapper .container .login-form-wrapper .login-form form .form-row .form-check input {
    width: auto;
}

.login-wrapper .container .login-form-wrapper .login-form form .form-row .form-check label {
    margin: 0;
}

.login-wrapper .container .login-form-wrapper .login-form form .form-row button {
    width: 100%;
    flex: 1;
}

.login-wrapper .container .login-form-wrapper .login-form>a {
    font-weight: 500;
    font-size: 14px;
    line-height: 140%;
    text-align: center;
    display: block;
    width: 100%;
    color: #1C2E40;
    text-decoration: none;
}

.login-wrapper .container .login-form-wrapper .login-form>a span {
    color: #cf2025;
}

.signup-wrapper .container {
    padding: 5rem 1rem;
}

@media (max-width: 1024px) {
    .signup-wrapper .container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1280px) {
    .signup-wrapper .container {
        padding: 3.5rem 1rem;
    }
}

@media (max-width: 1024px) {
    .signup-wrapper .container {
        padding: 2.5rem 1rem;
    }
}

.signup-wrapper .container .signup-form-wrapper {
    width: 100%;
    max-width: 800px;
    height: 100%;
    display: flex;
    justify-content: center;
    margin: auto;
}

.signup-wrapper .container .signup-form-wrapper .header {
    margin-bottom: 2rem;
    text-align: center;
}

@media (max-width: 1280px) {
    .signup-wrapper .container .signup-form-wrapper .header {
        margin-bottom: 1.75rem;
    }
}

.signup-wrapper .container .signup-form-wrapper .header h1 {
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 120%;
    color: #1B1B1B;
    margin-bottom: .5rem;
}

@media (max-width: 1536px) {
    .signup-wrapper .container .signup-form-wrapper .header h1 {
        font-size: 2.15rem;
    }
}

@media (max-width: 1280px) {
    .signup-wrapper .container .signup-form-wrapper .header h1 {
        font-size: 1.75rem;
        margin-bottom: .2rem;
    }
}

@media (max-width: 640px) {
    .signup-wrapper .container .signup-form-wrapper .header h1 {
        font-size: 1.5rem;
        margin-bottom: 0;
    }
}

.signup-wrapper .container .signup-form-wrapper .header p {
    font-weight: 400;
    font-size: 1rem;
    line-height: 150%;
    color: #4B4B4B;
}

@media (max-width: 1280px) {
    .signup-wrapper .container .signup-form-wrapper .header p {
        font-size: .9rem;
        line-height: 140%;
    }
}

.signup-wrapper .container .signup-form-wrapper .signup-form {
    padding: 1.5rem;
    background: #FCFAF3;
    border: 1px solid #F1F1F1;
    border-radius: 6px;
    width: 100%;
}

@media (max-width: 1280px) {
    .signup-wrapper .container .signup-form-wrapper .signup-form {
        padding: 1.25rem;
    }
}

.signup-wrapper .container .signup-form-wrapper .signup-form form .form-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

@media (max-width: 1280px) {
    .signup-wrapper .container .signup-form-wrapper .signup-form form .form-row {
        margin-bottom: 1.5rem;
        gap: 1rem;
    }
}

@media (max-width: 640px) {
    .signup-wrapper .container .signup-form-wrapper .signup-form form .form-row {
        flex-direction: column;
    }
}

.signup-wrapper .container .signup-form-wrapper .signup-form form .form-row a {
    font-weight: 600;
    font-size: 14px;
    line-height: 140%;
    color: #cf2025;
    text-decoration: none;
}

.signup-wrapper .container .signup-form-wrapper .signup-form form .form-row .form-group {
    flex: 1;
}

@media (max-width: 640px) {
    .signup-wrapper .container .signup-form-wrapper .signup-form form .form-row .form-group {
        width: 100%;
    }
}

.signup-wrapper .container .signup-form-wrapper .signup-form form .form-row .form-group label {
    font-weight: 500;
    font-size: 1rem;
    line-height: 17px;
    color: #011B3B;
    display: block;
    margin-bottom: .75rem;
}

.signup-wrapper .container .signup-form-wrapper .signup-form form .form-row .form-group input,
.signup-wrapper .container .signup-form-wrapper .signup-form form .form-row .form-group textarea,
.signup-wrapper .container .signup-form-wrapper .signup-form form .form-row .form-group select {
    padding: 12px;
    background: #FDFBF4;
    border: 1.2px solid #F1F1F1;
    border-radius: 4px;
    color: #1B1B1B;
    width: 100%;
}

.signup-wrapper .container .signup-form-wrapper .signup-form form .form-row .form-group input:focus,
.signup-wrapper .container .signup-form-wrapper .signup-form form .form-row .form-group textarea:focus,
.signup-wrapper .container .signup-form-wrapper .signup-form form .form-row .form-group select:focus {
    box-shadow: none;
    outline: none;
    border: 1px solid #1C2E40;
}

.signup-wrapper .container .signup-form-wrapper .signup-form form .form-row .form-group textarea {
    resize: none;
    height: 100px;
}

.signup-wrapper .container .signup-form-wrapper .signup-form form .form-row .form-check {
    display: flex;
    gap: 1rem;
    align-items: center;
    white-space: nowrap;
}

.signup-wrapper .container .signup-form-wrapper .signup-form form .form-row .form-check input {
    width: auto;
}

.signup-wrapper .container .signup-form-wrapper .signup-form form .form-row .form-check label {
    margin: 0;
}

.signup-wrapper .container .signup-form-wrapper .signup-form form .form-row button {
    width: 100%;
    flex: 1;
}

.signup-wrapper .container .signup-form-wrapper .signup-form>a {
    font-weight: 500;
    font-size: 14px;
    line-height: 140%;
    text-align: center;
    display: block;
    width: 100%;
    color: #1C2E40;
    text-decoration: none;
}

.signup-wrapper .container .signup-form-wrapper .signup-form>a span {
    color: #cf2025;
}

.edit-profile-wrapper .container {
    padding: 5rem 1rem;
}

@media (max-width: 1024px) {
    .edit-profile-wrapper .container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1280px) {
    .edit-profile-wrapper .container {
        padding: 3.5rem 1rem;
    }
}

@media (max-width: 1024px) {
    .edit-profile-wrapper .container {
        padding: 2.5rem 1rem;
    }
}

.edit-profile-wrapper .container .edit-profile-form-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    max-width: 800px;
    justify-content: center;
    margin: auto;
}

.edit-profile-wrapper .container .edit-profile-form-wrapper .header {
    margin-bottom: 2rem;
    text-align: center;
}

@media (max-width: 1280px) {
    .edit-profile-wrapper .container .edit-profile-form-wrapper .header {
        margin-bottom: 1.75rem;
    }
}

.edit-profile-wrapper .container .edit-profile-form-wrapper .header h1 {
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 120%;
    color: #1B1B1B;
    margin-bottom: .5rem;
}

@media (max-width: 1536px) {
    .edit-profile-wrapper .container .edit-profile-form-wrapper .header h1 {
        font-size: 2.15rem;
    }
}

@media (max-width: 1280px) {
    .edit-profile-wrapper .container .edit-profile-form-wrapper .header h1 {
        font-size: 1.75rem;
        margin-bottom: .2rem;
    }
}

@media (max-width: 640px) {
    .edit-profile-wrapper .container .edit-profile-form-wrapper .header h1 {
        font-size: 1.5rem;
        margin-bottom: 0;
    }
}

.edit-profile-wrapper .container .edit-profile-form-wrapper .header h2 {
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 120%;
    text-align: right;
    color: #1B1B1B;
    margin-bottom: .5rem;
}

@media (max-width: 1280px) {
    .edit-profile-wrapper .container .edit-profile-form-wrapper .header h2 {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .edit-profile-wrapper .container .edit-profile-form-wrapper .header h2 {
        font-size: 1.15rem;
    }
}

@media (max-width: 640px) {
    .edit-profile-wrapper .container .edit-profile-form-wrapper .header h2 {
        font-size: 1rem;
    }
}

.edit-profile-wrapper .container .edit-profile-form-wrapper .header p {
    font-weight: 400;
    font-size: 1rem;
    line-height: 150%;
    text-align: right;
    color: #4B4B4B;
}

@media (max-width: 1280px) {
    .edit-profile-wrapper .container .edit-profile-form-wrapper .header p {
        font-size: .9rem;
        line-height: 140%;
    }
}

.edit-profile-wrapper .container .edit-profile-form-wrapper .header .info {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.edit-profile-wrapper .container .edit-profile-form-wrapper .header .info .price {
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 150%;
    letter-spacing: -0.01em;
    color: #cf2025;
}

.edit-profile-wrapper .container .edit-profile-form-wrapper .edit-profile-form {
    padding: 1.5rem;
    background: #FCFAF3;
    border: 1px solid #F1F1F1;
    border-radius: 6px;
    width: 100%;
}

@media (max-width: 1280px) {
    .edit-profile-wrapper .container .edit-profile-form-wrapper .edit-profile-form {
        padding: 1.25rem;
    }
}

.edit-profile-wrapper .container .edit-profile-form-wrapper .edit-profile-form form .form-row,
.edit-profile-wrapper .container .edit-profile-form-wrapper .edit-profile-form .form-part .form-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

@media (max-width: 1280px) {

    .edit-profile-wrapper .container .edit-profile-form-wrapper .edit-profile-form form .form-row,
    .edit-profile-wrapper .container .edit-profile-form-wrapper .edit-profile-form .form-part .form-row {
        margin-bottom: 1.5rem;
        gap: 1rem;
    }
}

@media (max-width: 640px) {

    .edit-profile-wrapper .container .edit-profile-form-wrapper .edit-profile-form form .form-row,
    .edit-profile-wrapper .container .edit-profile-form-wrapper .edit-profile-form .form-part .form-row {
        flex-direction: column;
    }
}

.edit-profile-wrapper .container .edit-profile-form-wrapper .edit-profile-form form .form-row .photo,
.edit-profile-wrapper .container .edit-profile-form-wrapper .edit-profile-form .form-part .form-row .photo {
    position: relative;
    width: max-content !important;
    display: block;
    margin: auto;
}

.edit-profile-wrapper .container .edit-profile-form-wrapper .edit-profile-form form .form-row .photo img,
.edit-profile-wrapper .container .edit-profile-form-wrapper .edit-profile-form .form-part .form-row .photo img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}

@media (max-width: 640px) {

    .edit-profile-wrapper .container .edit-profile-form-wrapper .edit-profile-form form .form-row .photo img,
    .edit-profile-wrapper .container .edit-profile-form-wrapper .edit-profile-form .form-part .form-row .photo img {
        width: 120px;
        height: 120px;
    }
}

.edit-profile-wrapper .container .edit-profile-form-wrapper .edit-profile-form form .form-row .photo input,
.edit-profile-wrapper .container .edit-profile-form-wrapper .edit-profile-form .form-part .form-row .photo input {
    display: none;
}

.edit-profile-wrapper .container .edit-profile-form-wrapper .edit-profile-form form .form-row .photo i,
.edit-profile-wrapper .container .edit-profile-form-wrapper .edit-profile-form .form-part .form-row .photo i {
    color: #cf2025;
    position: absolute;
    bottom: 10px;
    left: 20px;
    font-size: 1.5rem;
}

@media (max-width: 640px) {

    .edit-profile-wrapper .container .edit-profile-form-wrapper .edit-profile-form form .form-row .photo i,
    .edit-profile-wrapper .container .edit-profile-form-wrapper .edit-profile-form .form-part .form-row .photo i {
        bottom: 10px;
        left: 10px;
    }
}

.edit-profile-wrapper .container .edit-profile-form-wrapper .edit-profile-form form .form-row a,
.edit-profile-wrapper .container .edit-profile-form-wrapper .edit-profile-form .form-part .form-row a {
    font-weight: 600;
    font-size: 14px;
    line-height: 140%;
    color: #cf2025;
    text-decoration: none;
}

.edit-profile-wrapper .container .edit-profile-form-wrapper .edit-profile-form form .form-row .form-group,
.edit-profile-wrapper .container .edit-profile-form-wrapper .edit-profile-form .form-part .form-row .form-group {
    flex: 1;
}

@media (max-width: 640px) {

    .edit-profile-wrapper .container .edit-profile-form-wrapper .edit-profile-form form .form-row .form-group,
    .edit-profile-wrapper .container .edit-profile-form-wrapper .edit-profile-form .form-part .form-row .form-group {
        width: 100%;
    }
}

.edit-profile-wrapper .container .edit-profile-form-wrapper .edit-profile-form form .form-row .form-group label,
.edit-profile-wrapper .container .edit-profile-form-wrapper .edit-profile-form .form-part .form-row .form-group label {
    font-weight: 500;
    font-size: 1rem;
    line-height: 17px;
    color: #011B3B;
    display: block;
    margin-bottom: .75rem;
}

.edit-profile-wrapper .container .edit-profile-form-wrapper .edit-profile-form form .form-row .form-group input,
.edit-profile-wrapper .container .edit-profile-form-wrapper .edit-profile-form form .form-row .form-group textarea,
.edit-profile-wrapper .container .edit-profile-form-wrapper .edit-profile-form form .form-row .form-group select,
.edit-profile-wrapper .container .edit-profile-form-wrapper .edit-profile-form .form-part .form-row .form-group input,
.edit-profile-wrapper .container .edit-profile-form-wrapper .edit-profile-form .form-part .form-row .form-group textarea,
.edit-profile-wrapper .container .edit-profile-form-wrapper .edit-profile-form .form-part .form-row .form-group select {
    padding: 12px;
    background: #FDFBF4;
    border: 1.2px solid #F1F1F1;
    border-radius: 4px;
    color: #1B1B1B;
    width: 100%;
}

.edit-profile-wrapper .container .edit-profile-form-wrapper .edit-profile-form form .form-row .form-group input:focus,
.edit-profile-wrapper .container .edit-profile-form-wrapper .edit-profile-form form .form-row .form-group textarea:focus,
.edit-profile-wrapper .container .edit-profile-form-wrapper .edit-profile-form form .form-row .form-group select:focus,
.edit-profile-wrapper .container .edit-profile-form-wrapper .edit-profile-form .form-part .form-row .form-group input:focus,
.edit-profile-wrapper .container .edit-profile-form-wrapper .edit-profile-form .form-part .form-row .form-group textarea:focus,
.edit-profile-wrapper .container .edit-profile-form-wrapper .edit-profile-form .form-part .form-row .form-group select:focus {
    box-shadow: none;
    outline: none;
    border: 1px solid #1C2E40;
}

.edit-profile-wrapper .container .edit-profile-form-wrapper .edit-profile-form form .form-row .form-group textarea,
.edit-profile-wrapper .container .edit-profile-form-wrapper .edit-profile-form .form-part .form-row .form-group textarea {
    resize: none;
    height: 100px;
}

.edit-profile-wrapper .container .edit-profile-form-wrapper .edit-profile-form form .form-row .form-check,
.edit-profile-wrapper .container .edit-profile-form-wrapper .edit-profile-form .form-part .form-row .form-check {
    display: flex;
    gap: 1rem;
    align-items: center;
    white-space: nowrap;
}

.edit-profile-wrapper .container .edit-profile-form-wrapper .edit-profile-form form .form-row .form-check input,
.edit-profile-wrapper .container .edit-profile-form-wrapper .edit-profile-form .form-part .form-row .form-check input {
    width: auto;
}

.edit-profile-wrapper .container .edit-profile-form-wrapper .edit-profile-form form .form-row .form-check label,
.edit-profile-wrapper .container .edit-profile-form-wrapper .edit-profile-form .form-part .form-row .form-check label {
    margin: 0;
}

.edit-profile-wrapper .container .edit-profile-form-wrapper .edit-profile-form form .form-row button,
.edit-profile-wrapper .container .edit-profile-form-wrapper .edit-profile-form .form-part .form-row button {
    width: 100%;
    flex: 1;
}

.edit-profile-wrapper .container .edit-profile-form-wrapper .edit-profile-form>a {
    font-weight: 500;
    font-size: 14px;
    line-height: 140%;
    text-align: center;
    display: block;
    width: 100%;
    color: #1C2E40;
    text-decoration: none;
}

.edit-profile-wrapper .container .edit-profile-form-wrapper .edit-profile-form>a span {
    color: #cf2025;
}

.page-filter.not-first-section .container {
    padding-top: 0rem !important;
}

.page-filter .container {
    padding: 5rem 1rem;
}

@media (max-width: 1280px) {
    .page-filter .container {
        padding: 3.5rem 1rem;
    }
}

@media (max-width: 1024px) {
    .page-filter .container {
        padding: 2.5rem 1rem;
    }
}

.page-filter .container .search-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.page-filter .container .search-wrapper .input-group {
    position: relative;
    flex: 1;
}

.page-filter .container .search-wrapper .input-group i {
    font-size: 1rem;
    top: 50%;
    right: .5rem;
    transform: translateY(-50%);
    position: absolute;
}

.page-filter .container .search-wrapper .input-group input {
    padding: 12px;
    background: #FDFBF4;
    border: 1.2px solid #F1F1F1;
    border-radius: 6px;
    font-size: 1rem;
    color: #1B1B1B;
    width: 100%;
    padding-right: 2.5rem;
    width: 100%;
}

.page-filter .container .search-wrapper .input-group input:focus {
    box-shadow: none;
    outline: none;
    border: 1px solid #1C2E40;
}

.page-filter .container .filter-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.page-filter .container .filter-options .filter {
    display: flex;
    align-items: center;
    gap: 1rem;
}

@media (max-width: 640px) {
    .page-filter .container .filter-options .filter {
        justify-content: space-between;
    }
}

.page-filter .container .filter-options .filter .filter-dropdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    padding: 12px 15px;
    border: 1px solid #F1F1F1;
    border-radius: 6px;
    background-color: transparent;
    position: relative;
}

.page-filter .container .filter-options .filter .filter-dropdown .options {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #FFFDF7;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    display: none;
    z-index: 10000;
}

.page-filter .container .filter-options .filter .filter-dropdown .options.show {
    display: flex;
}

.page-filter .container .filter-options .filter .filter-dropdown .options a {
    color: #1B1B1B;
    text-align: right;
    text-decoration: none;
    transition: .3s ease-in-out all;
    padding: .5rem;
}

.page-filter .container .filter-options .filter .filter-dropdown .options a:hover {
    background-color: #cf2025;
    color: #FFFDF7;
}

.page-filter .container .filter-options .filter .filter-dropdown svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 1280px) {
    .page-filter .container .filter-options .filter .filter-dropdown {
        padding: 10px 12px;
        font-size: 12px;
    }

    .page-filter .container .filter-options .filter .filter-dropdown svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 640px) {
    .page-filter .container .filter-options .filter .filter-dropdown {
        width: 100%;
    }
}

.page-filter .container .filter-options .filter .grid-options {
    display: flex;
    align-items: center;
    gap: .75rem;
}

@media (max-width: 640px) {
    .page-filter .container .filter-options .filter .grid-options {
        display: none;
    }
}

.page-filter .container .filter-options .filter .grid-options button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    padding: 12px 15px;
    border: 1px solid #F1F1F1;
    border-radius: 6px;
    background-color: transparent;
}

.page-filter .container .filter-options .filter .grid-options button svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 1280px) {
    .page-filter .container .filter-options .filter .grid-options button {
        padding: 10px 12px;
        font-size: 12px;
    }

    .page-filter .container .filter-options .filter .grid-options button svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 1280px) {
    .page-filter .container .filter-options .filter .grid-options button {
        padding: 10px 12px;
        font-size: 12px;
    }

    .page-filter .container .filter-options .filter .grid-options button svg {
        width: 20px;
        height: 20px;
    }
}

.page-filter .container .filter-options .filter .grid-options button.active {
    background-color: #cf2025;
}

.page-filter .container .filter-options .filter .grid-options button.active svg {
    stroke: #FFFDF7;
}

.page-filter .container .filter-options .info {
    font-weight: 500;
    font-size: 17px;
    line-height: 17px;
    text-align: left;
    color: #011B3B;
}

@media (max-width: 1280px) {
    .page-filter .container .filter-options .info {
        font-size: 1rem;
    }
}

@media (max-width: 640px) {
    .page-filter .container .filter-options .info {
        text-align: center;
        font-size: 12px;
        width: max-content;
        white-space: nowrap;
    }
}

.publication-list {
    padding-bottom: 5rem;
}

@media (max-width: 1280px) {
    .publication-list {
        padding-bottom: 3.5rem;
    }
}

@media (max-width: 1024px) {
    .publication-list {
        padding-bottom: 2.5rem;
    }
}

.pagination {
    padding-bottom: 5rem;
}

@media (max-width: 1280px) {
    .pagination {
        padding-bottom: 3.5rem;
    }
}

@media (max-width: 1024px) {
    .pagination {
        padding-bottom: 2.5rem;
    }
}

.pagination .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .25rem;
}

.pagination .container button {
    width: 3rem;
    height: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-weight: 500;
    font-size: 21.2px;
    line-height: 30px;
    color: #011B3B;
    border-radius: 12.1143px;
    background-color: transparent;
    border: none;
    transition: .3s ease-in background-color;
}

@media (max-width: 768px) {
    .pagination .container button {
        width: 2rem;
        height: 2rem;
        font-size: 14px;
        border-radius: 5px;
    }
}

.pagination .container button.disabled {
    opacity: .5;
}

.pagination .container button.active,
.pagination .container button:hover {
    background: rgba(207, 32, 37, 0.16);
    border: 1.51429px solid #cf2025;
    color: #cf2025;
}

.event-list {
    padding-bottom: 5rem;
}

@media (max-width: 1280px) {
    .event-list {
        padding-bottom: 3.5rem;
    }
}

@media (max-width: 1024px) {
    .event-list {
        padding-bottom: 2.5rem;
    }
}

.event-list .articles-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

@media (max-width: 1024px) {
    .event-list .articles-wrapper {
        grid-template-columns: 1fr;
    }
}

.event-list .articles-wrapper .article-card {
    background: #FFFDF7;
    border: 0.2px solid #D9D9D9;
    border-radius: 6px;
    overflow: hidden;
}

.event-list .articles-wrapper .article-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

@media (max-width: 1280px) {
    .event-list .articles-wrapper .article-card img {
        height: 200px;
    }
}

.event-list .articles-wrapper .article-card .text {
    padding: 1.25rem;
}

@media (max-width: 1280px) {
    .event-list .articles-wrapper .article-card .text {
        padding: 1rem;
    }
}

.event-list .articles-wrapper .article-card .text .title {
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 150%;
    letter-spacing: -0.01em;
    color: #1C2E40;
}

@media (max-width: 1280px) {
    .event-list .articles-wrapper .article-card .text .title {
        font-size: 1.1rem;
    }
}

.event-list .articles-wrapper .article-card .text .date {
    font-weight: 500;
    font-size: 1rem;
    line-height: 150%;
    /* identical to box height, or 30px */
    letter-spacing: -0.01em;
    color: #6E6E6E;
}

@media (max-width: 1280px) {
    .event-list .articles-wrapper .article-card .text .date {
        font-size: .9rem;
    }
}

.event-list .articles-wrapper .article-card .text .desc {
    font-weight: 400;
    font-size: 1rem;
    line-height: 150%;
    color: #4B4B4B;
}

@media (max-width: 1280px) {
    .event-list .articles-wrapper .article-card .text .desc {
        font-size: .9rem;
    }
}

.event-list .articles-wrapper .article-card .info {
    padding: 0 1.25rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 1280px) {
    .event-list .articles-wrapper .article-card .info {
        padding: 0 1.1rem 1rem;
    }
}

.event-list .articles-wrapper .article-card .info .price {
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 150%;
    letter-spacing: -0.01em;
    color: #cf2025;
}

@media (max-width: 1280px) {
    .event-list .articles-wrapper .article-card .info .price {
        font-size: 1.15rem;
    }
}

.event-list .articles-wrapper .article-card .info .more {
    font-weight: 500;
    font-size: 1rem;
    line-height: 100%;
    letter-spacing: 0.5px;
    color: #cf2025;
    text-decoration: none;
    font-weight: bold;
}

.team-list {
    padding: 5rem 0;
}

@media (max-width: 1280px) {
    .team-list {
        padding: 3.5rem 0;
    }
}

@media (max-width: 1024px) {
    .team-list {
        padding: 2.5rem 0;
    }
}

.team-list .members-wrapper {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 768px) {
    .team-list .members-wrapper {
        grid-template-columns: 1fr;
    }
}

.team-list .members-wrapper .member-card {
    padding: 2rem 3rem;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    height: 600px;
}

@media (max-width: 1536px) {
    .team-list .members-wrapper .member-card {
        height: 500px;
        padding: 2rem;
    }
}

@media (max-width: 1280px) {
    .team-list .members-wrapper .member-card {
        height: 450px;
    }
}

@media (max-width: 1280px) {
    .team-list .members-wrapper .member-card {
        height: 300px;
        padding: 1rem;
    }
}

.team-list .members-wrapper .member-card img {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.team-list .members-wrapper .member-card::after {
    content: "";
    background: linear-gradient(-180deg, rgba(0, 0, 0, 0) 0%, black 100%);
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 70%;
    z-index: 2;
}

.team-list .members-wrapper .member-card .text {
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0px 4px 60px rgba(0, 0, 0, 0.04);
    border-radius: 15px;
    padding: 1.5rem;
    position: relative;
    z-index: 3;
}

@media (max-width: 1280px) {
    .team-list .members-wrapper .member-card .text {
        padding: 1rem;
    }
}

@media (max-width: 1024px) {
    .team-list .members-wrapper .member-card .text {
        padding: .5rem .2rem;
    }
}

.team-list .members-wrapper .member-card .text .name {
    font-weight: 700;
    font-size: 1.75rem;
    line-height: 150%;
    text-align: center;
    color: #000000;
}

@media (max-width: 1536px) {
    .team-list .members-wrapper .member-card .text .name {
        font-size: 1.4rem;
    }
}

@media (max-width: 1280px) {
    .team-list .members-wrapper .member-card .text .name {
        font-size: 1.2rem;
    }
}

@media (max-width: 1024px) {
    .team-list .members-wrapper .member-card .text .name {
        font-size: 1rem;
    }
}

.team-list .members-wrapper .member-card .text .desc {
    font-weight: 400;
    font-size: 1.2rem;
    line-height: 200%;
    text-align: center;
    color: #000000;
}

@media (max-width: 1536px) {
    .team-list .members-wrapper .member-card .text .desc {
        font-size: 1rem;
    }
}

@media (max-width: 1280px) {
    .team-list .members-wrapper .member-card .text .desc {
        font-size: .9rem;
    }
}

@media (max-width: 1024px) {
    .team-list .members-wrapper .member-card .text .desc {
        font-size: .9rem;
        line-height: 120%;
    }
}

.news-list,
.viedo-list,
.research-list {
    padding-bottom: 5rem;
}

@media (max-width: 1280px) {

    .news-list,
    .viedo-list,
    .research-list {
        padding-bottom: 3.5rem;
    }
}

@media (max-width: 1024px) {

    .news-list,
    .viedo-list,
    .research-list {
        padding-bottom: 2.5rem;
    }
}

.download-history-list,
.publication-history-list,
.order-details,
.event-history-list,
.community-guidelines,
.saved-addresses {
    padding: 5rem 0;
}

@media (max-width: 1280px) {

    .download-history-list,
    .publication-history-list,
    .order-details,
    .event-history-list,
    .community-guidelines,
    .saved-addresses {
        padding: 3.5rem 0;
    }
}

@media (max-width: 1024px) {

    .download-history-list,
    .publication-history-list,
    .order-details,
    .event-history-list,
    .community-guidelines,
    .saved-addresses {
        padding: 2.5rem 0;
    }
}

.news-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(370px, 1fr));
    gap: 1.25rem;
}

@media (max-width: 640px) {
    .news-wrapper {
        grid-template-columns: 1fr;
    }
}

.news-wrapper .news-card {
    padding: 0px 0px 25px;
    background: #FCFAF3;
    border: 0.2px solid #F1F1F1;
    border-radius: 6px;
    overflow: hidden;
}

.news-wrapper .news-card .video-thumbnail {
    position: relative;
}

.news-wrapper .news-card .video-thumbnail .play-icon {
    position: absolute;
    top: 50%;
    right: 50%;
    width: 6rem;
    height: 6rem;
    background-color: #FFFDF7;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: #cf2025;
    cursor: pointer;
    transform-origin: center center;
    transform: translate(50%, -50%);
}

@media (max-width: 1536px) {
    .news-wrapper .news-card .video-thumbnail .play-icon {
        width: 5rem;
        height: 5rem;
    }
}

@media (max-width: 1280px) {
    .news-wrapper .news-card .video-thumbnail .play-icon {
        width: 4rem;
        height: 4rem;
    }
}

@media (max-width: 640px) {
    .news-wrapper .news-card .video-thumbnail .play-icon {
        width: 3rem;
        height: 3rem;
        font-size: 1rem;
    }
}

.news-wrapper .news-card .video-thumbnail .play-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    width: calc(100% + 2.2rem);
    height: calc(100% + 2.2rem);
    border-radius: 50%;
    background-color: #FFFDF7;
    opacity: .3;
    z-index: 2;
}

@media (max-width: 1536px) {
    .news-wrapper .news-card .video-thumbnail .play-icon::after {
        width: calc(100% + 1.75rem);
        height: calc(100% + 1.75rem);
    }
}

@media (max-width: 640px) {
    .news-wrapper .news-card .video-thumbnail .play-icon::after {
        width: calc(100% + .7rem);
        height: calc(100% + .7rem);
    }
}

.news-wrapper .news-card .video-thumbnail .play-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    width: calc(100% + 4rem);
    height: calc(100% + 4rem);
    border-radius: 50%;
    background-color: #FFFDF7;
    opacity: .1;
}

@media (max-width: 1536px) {
    .news-wrapper .news-card .video-thumbnail .play-icon::before {
        width: calc(100% + 3rem);
        height: calc(100% + 3rem);
    }
}

@media (max-width: 640px) {
    .news-wrapper .news-card .video-thumbnail .play-icon::before {
        width: calc(100% + 1.5rem);
        height: calc(100% + 1.5rem);
    }
}

.news-wrapper .news-card .video-thumbnail .play-icon i {
    z-index: 3;
}

@media (max-width: 1536px) {
    .news-wrapper .news-card {
        padding: 0;
    }
}

@media (max-width: 1280px) {
    .news-wrapper .news-card {
        display: flex;
    }
}

@media (max-width: 1024px) {
    .news-wrapper .news-card {
        flex-direction: column;
    }
}

.news-wrapper .news-card img {
    width: 100%;
    height: 20rem;
    object-fit: cover;
}

@media (max-width: 1536px) {
    .news-wrapper .news-card img {
        height: 18rem;
    }
}

@media (max-width: 1280px) {
    .news-wrapper .news-card img {
        height: 100%;
    }
}

.news-wrapper .news-card .text {
    padding: 1.25rem;
}

@media (max-width: 1536px) {
    .news-wrapper .news-card .text {
        padding: 1rem;
    }
}

.news-wrapper .news-card .text h2 {
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 150%;
    letter-spacing: -0.01em;
    color: #1C2E40;
    margin-bottom: .25rem;
}

@media (max-width: 1536px) {
    .news-wrapper .news-card .text h2 {
        font-size: 1.35rem;
        line-height: 140%;
    }
}

.news-wrapper .news-card .text p.author {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: -0.01em;
    /* gray-text */
    color: #4B4B4B;
}

.news-wrapper .news-card .text p.author span {
    color: #cf2025;
}

.news-wrapper .news-card .text p {
    font-weight: 400;
    font-size: 18.6238px;
    line-height: 150%;
    color: #808494;
    margin-bottom: 1rem;
}

@media (max-width: 1536px) {
    .news-wrapper .news-card .text p {
        font-size: 1rem;
    }
}

.news-wrapper.list .play-icon {
    width: 4rem !important;
    height: 4rem !important;
    font-size: 1rem !important;
}

.news-wrapper.list .play-icon::after {
    width: calc(100% + .7rem);
    height: calc(100% + .7rem);
}

.news-wrapper.list .play-icon::before {
    width: calc(100% + 1.5rem);
    height: calc(100% + 1.5rem);
}

@media (min-width: 1024px) {
    .news-wrapper.list {
        grid-template-columns: 1fr;
    }

    .news-wrapper.list .news-card {
        display: flex;
        gap: 1rem;
    }

    .news-wrapper.list .news-card img {
        width: 200px;
        height: 200px;
    }

    .news-wrapper.list .news-card .text {
        flex: 1;
        display: grid;
        grid-template-rows: max-content max-content 1fr;
    }

    .news-wrapper.list .news-card .info {
        flex-direction: row;
        justify-content: space-between;
        margin-top: auto;
    }

    .news-wrapper.list .news-card .info .add-to-cart-btn {
        width: max-content;
    }
}

.publication {
    padding: 5rem 0;
}

@media (max-width: 1280px) {
    .publication {
        padding: 3.5rem 0;
    }
}

@media (max-width: 1024px) {
    .publication {
        padding: 2.5rem 0;
    }
}

.publication .container {
    display: grid;
    grid-template-columns: 4fr 6fr;
    gap: 3.5rem;
}

@media (max-width: 1280px) {
    .publication .container {
        gap: 2.5rem;
    }
}

@media (max-width: 1024px) {
    .publication .container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .publication .container {
        gap: 1.5rem;
    }
}

.publication .container .img-slider .main-img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 6px;
}

@media (max-width: 1536px) {
    .publication .container .img-slider .main-img {
        height: 480px;
    }
}

@media (max-width: 1280px) {
    .publication .container .img-slider .main-img {
        height: 440px;
    }
}

@media (max-width: 1024px) {
    .publication .container .img-slider .main-img {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .publication .container .img-slider .main-img {
        height: 300px;
    }
}

@media (max-width: 640px) {
    .publication .container .img-slider .main-img {
        height: 220px;
    }
}

.publication .container .img-slider .imgs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: .75rem;
}

.publication .container .img-slider .imgs img {
    width: 100%;
    height: 110px;
    object-fit: cover;
    border-radius: 6px;
}

@media (max-width: 1536px) {
    .publication .container .img-slider .imgs img {
        height: 90px;
    }
}

@media (max-width: 640px) {
    .publication .container .img-slider .imgs img {
        height: 50px;
    }
}

.publication .container .text h1 {
    font-weight: 700;
    font-size: 3.5rem;
    line-height: 120%;
    color: #1B1B1B;
    margin-bottom: 2rem;
}

@media (max-width: 1536px) {
    .publication .container .text h1 {
        font-size: 3rem;
        margin-bottom: 1.75rem;
    }
}

@media (max-width: 1280px) {
    .publication .container .text h1 {
        font-size: 2.5rem;
        margin-bottom: 1.25rem;
    }
}

@media (max-width: 1024px) {
    .publication .container .text h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 640px) {
    .publication .container .text h1 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
}

.publication .container .text .info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.publication .container .text .info .date {
    font-weight: 600;
    font-size: 17px;
    line-height: 120%;
    color: #FFFFFF;
    background-color: #cf2025;
    padding: .75rem;
    border-radius: 6px;
}

@media (max-width: 1536px) {
    .publication .container .text .info .date {
        font-size: 15px;
        padding: .5rem;
    }
}

@media (max-width: 640px) {
    .publication .container .text .info .date {
        font-size: 12px;
    }
}

.publication .container .text .info .price {
    font-weight: 700;
    font-size: 40px;
    line-height: 150%;
    letter-spacing: -0.01em;
    color: #cf2025;
}

@media (max-width: 1536px) {
    .publication .container .text .info .price {
        font-size: 32px;
    }
}

@media (max-width: 1280px) {
    .publication .container .text .info .price {
        font-size: 28px;
    }
}

@media (max-width: 640px) {
    .publication .container .text .info .price {
        font-size: 22px;
    }
}

.publication .container .text .info .price span {
    font-weight: 400;
    font-size: 22px;
    line-height: 150%;
    letter-spacing: -0.01em;
    text-decoration-line: line-through;
    color: #BCBCBC;
}

@media (max-width: 1280px) {
    .publication .container .text .info .price span {
        font-size: 18px;
    }
}

@media (max-width: 640px) {
    .publication .container .text .info .price span {
        font-size: 16px;
    }
}

.publication .container .text .desc {
    font-weight: 400;
    font-size: 19px;
    line-height: 36px;
    color: #4B4B4B;
    margin-top: 1rem;
}

@media (max-width: 1536px) {
    .publication .container .text .desc {
        font-size: 17px;
        line-height: 28px;
    }
}

@media (max-width: 1280px) {
    .publication .container .text .desc {
        font-size: 15px;
        line-height: 24px;
    }
}

@media (max-width: 640px) {
    .publication .container .text .desc {
        font-size: 14px;
        line-height: 22px;
    }
}

.publication .container .text h2 {
    font-weight: 600;
    font-size: 20px;
    line-height: 120%;
    color: #1B1B1B;
    margin: 1rem 0 2rem;
}

@media (max-width: 1280px) {
    .publication .container .text h2 {
        font-size: 18px;
        margin: .75rem 0 1.5rem;
    }
}

@media (max-width: 640px) {
    .publication .container .text h2 {
        font-size: 14px;
    }
}

.publication .container .text h2 span {
    color: #cf2025;
}

.publication .container .text button {
    width: 100%;
    padding: 1rem 0;
}

@media (max-width: 768px) {
    .publication .container .text button {
        padding: .7rem 0;
    }
}

.member {
    padding: 5rem 0;
}

@media (max-width: 1280px) {
    .member {
        padding: 3.5rem 0;
    }
}

@media (max-width: 1024px) {
    .member {
        padding: 2.5rem 0;
    }
}

.member .container {
    display: grid;
    grid-template-columns: 4fr 6fr;
    gap: 3.5rem;
}

@media (max-width: 1280px) {
    .member .container {
        gap: 2.5rem;
    }
}

@media (max-width: 1024px) {
    .member .container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .member .container {
        gap: 1.5rem;
    }
}

.member .container .img img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 6px;
}

@media (max-width: 1536px) {
    .member .container .img img {
        height: 500px;
    }
}

@media (max-width: 1280px) {
    .member .container .img img {
        height: 440px;
    }
}

@media (max-width: 1024px) {
    .member .container .img img {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .member .container .img img {
        height: 300px;
    }
}

@media (max-width: 640px) {
    .member .container .img img {
        height: 220px;
    }
}

.member .container .text h1 {
    font-weight: 700;
    font-size: 3.5rem;
    line-height: 120%;
    color: #1B1B1B;
    margin-bottom: 2rem;
}

@media (max-width: 1536px) {
    .member .container .text h1 {
        font-size: 3rem;
        margin-bottom: 1.75rem;
    }
}

@media (max-width: 1280px) {
    .member .container .text h1 {
        font-size: 2.5rem;
        margin-bottom: 1.25rem;
    }
}

@media (max-width: 1024px) {
    .member .container .text h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 640px) {
    .member .container .text h1 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
}

.member .container .text .info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.member .container .text .info .date {
    font-weight: 600;
    font-size: 17px;
    line-height: 120%;
    color: #FFFFFF;
    background-color: #cf2025;
    padding: .75rem;
    border-radius: 6px;
}

@media (max-width: 1536px) {
    .member .container .text .info .date {
        font-size: 15px;
        padding: .5rem;
    }
}

@media (max-width: 640px) {
    .member .container .text .info .date {
        font-size: 12px;
    }
}

.member .container .text .info .price {
    font-weight: 700;
    font-size: 40px;
    line-height: 150%;
    letter-spacing: -0.01em;
    color: #cf2025;
}

@media (max-width: 1536px) {
    .member .container .text .info .price {
        font-size: 32px;
    }
}

@media (max-width: 1280px) {
    .member .container .text .info .price {
        font-size: 28px;
    }
}

@media (max-width: 640px) {
    .member .container .text .info .price {
        font-size: 22px;
    }
}

.member .container .text .info .price span {
    font-weight: 400;
    font-size: 22px;
    line-height: 150%;
    letter-spacing: -0.01em;
    text-decoration-line: line-through;
    color: #BCBCBC;
}

@media (max-width: 1280px) {
    .member .container .text .info .price span {
        font-size: 18px;
    }
}

@media (max-width: 640px) {
    .member .container .text .info .price span {
        font-size: 16px;
    }
}

.member .container .text .desc {
    font-weight: 400;
    font-size: 18px;
    line-height: 36px;
    color: #4B4B4B;
    margin-top: 1rem;
}

@media (max-width: 1536px) {
    .member .container .text .desc {
        font-size: 16px;
        line-height: 28px;
    }
}

@media (max-width: 1280px) {
    .member .container .text .desc {
        font-size: 15px;
        line-height: 24px;
    }
}

@media (max-width: 640px) {
    .member .container .text .desc {
        font-size: 14px;
        line-height: 22px;
    }
}

.member .container .text h2 {
    font-weight: 600;
    font-size: 20px;
    line-height: 120%;
    color: #1B1B1B;
    margin: 1rem 0 2rem;
}

@media (max-width: 1280px) {
    .member .container .text h2 {
        font-size: 18px;
        margin: .75rem 0 1.5rem;
    }
}

@media (max-width: 640px) {
    .member .container .text h2 {
        font-size: 14px;
    }
}

.member .container .text h2 span {
    color: #cf2025;
}

.member .container .text button {
    width: 100%;
    padding: 1rem 0;
}

@media (max-width: 768px) {
    .member .container .text button {
        padding: .7rem 0;
    }
}

.article-data .content-group {
    margin-bottom: 2.5rem;
}

.article-data .content-group img {
    max-height: 400px;
    width: 100%;
    border-radius: 6px;
    object-fit: cover;
    margin-bottom: .75rem;
}

@media (max-width: 1536px) {
    .article-data .content-group img {
        max-height: 350px;
    }
}

@media (max-width: 1280px) {
    .article-data .content-group img {
        max-height: 300px;
    }
}

@media (max-width: 640px) {
    .article-data .content-group img {
        max-height: 250px;
    }
}

.article-data .content-group.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: min-content;
    gap: 1.25rem;
}

@media (max-width: 640px) {
    .article-data .content-group.grid-2 {
        grid-template-columns: 1fr;
    }
}

.article-data .content-group.grid-2 p {
    font-size: 16px;
    line-height: 150%;
}

.article-data .content-group.grid-2 img {
    width: 100%;
    height: 400px;
    border-radius: 6px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .article-data .content-group {
        margin-bottom: 2rem;
    }
}

.article-data h2 {
    font-weight: 700;
    font-size: 2.25rem;
    line-height: 120%;
    color: #1B1B1B;
    margin-bottom: 1rem;
}

@media (max-width: 1536px) {
    .article-data h2 {
        font-size: 2rem;
    }
}

@media (max-width: 1280px) {
    .article-data h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .article-data h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 640px) {
    .article-data h2 {
        font-size: 1.25rem;
    }
}

.article-data h2 span {
    color: #cf2025;
}

.article-data p,
.article-data ul {
    font-weight: 400;
    font-size: 18px;
    line-height: 34px;
    color: #4B4B4B;
}

@media (max-width: 1536px) {

    .article-data p,
    .article-data ul {
        font-size: 17px;
        line-height: 30px;
    }
}

@media (max-width: 1280px) {

    .article-data p,
    .article-data ul {
        font-size: 16px;
        line-height: 28px;
    }
}

@media (max-width: 768px) {

    .article-data p,
    .article-data ul {
        font-size: 15px;
        line-height: 26px;
    }
}

@media (max-width: 640px) {

    .article-data p,
    .article-data ul {
        font-size: 14px;
        line-height: 22px;
    }
}

.article-data ul {
    margin-right: 1.5rem;
}

@media (max-width: 1280px) {
    .article-data ul {
        margin-right: 1.25rem;
    }
}

.publications-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

@media (max-width: 1280px) {
    .publications-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .publications-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
}

.publications-wrapper .publication-card {
    padding: 0px 0px 25px;
    background: #FCFAF3;
    border: 0.2px solid #F1F1F1;
    border-radius: 6px;
    overflow: hidden;
}

@media (max-width: 1536px) {
    .publications-wrapper .publication-card {
        padding: 0;
    }
}

@media (max-width: 1280px) {
    .publications-wrapper .publication-card {
        display: flex;
    }
}

@media (max-width: 1024px) {
    .publications-wrapper .publication-card {
        flex-direction: column;
    }
}

.publications-wrapper .publication-card img {
    width: 100%;
    height: 25rem;
    object-fit: cover;
}

@media (max-width: 1536px) {
    .publications-wrapper .publication-card img {
        height: 22rem;
    }
}

@media (max-width: 1280px) {
    .publications-wrapper .publication-card img {
        height: 100%;
    }
}

@media (max-width: 640px) {
    .publications-wrapper .publication-card img {
        height: 300px;
    }
}

.publications-wrapper .publication-card .text {
    padding: 1.25rem;
}

@media (max-width: 1536px) {
    .publications-wrapper .publication-card .text {
        padding: 1rem;
    }
}

.publications-wrapper .publication-card .text h2 {
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 150%;
    letter-spacing: -0.01em;
    color: #1C2E40;
    margin-bottom: .25rem;
}

@media (max-width: 1536px) {
    .publications-wrapper .publication-card .text h2 {
        font-size: 1.35rem;
        line-height: 140%;
    }
}

.publications-wrapper .publication-card .text p {
    font-weight: 400;
    font-size: 18.6238px;
    line-height: 150%;
    color: #808494;
    margin-bottom: 1rem;
}

@media (max-width: 1536px) {
    .publications-wrapper .publication-card .text p {
        font-size: 1rem;
    }
}

.publications-wrapper .publication-card .info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 1536px) {
    .publications-wrapper .publication-card .info {
        flex-direction: column;
        gap: .75rem;
    }
}

@media (max-width: 640px) {
    .publications-wrapper .publication-card .info {
        flex-direction: row;
    }
}

.publications-wrapper .publication-card .info .price {
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 150%;
    letter-spacing: -0.01em;
    color: #cf2025;
}

@media (max-width: 640px) {
    .publications-wrapper .publication-card .info .price {
        font-size: 1.25rem;
    }
}

.publications-wrapper .publication-card .info .price span {
    color: #BCBCBC;
    font-weight: 400;
    text-decoration: line-through;
}

.publications-wrapper .publication-card .info .add-to-cart-btn {
    padding: .75rem 1.5rem;
    border-radius: 6px;
    border: 1.5px solid #1C2E40;
    background-color: transparent;
    color: #1C2E40;
    font-size: 1rem;
}

@media (max-width: 1536px) {
    .publications-wrapper .publication-card .info .add-to-cart-btn {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .publications-wrapper .publication-card .info .add-to-cart-btn {
        width: max-content;
        padding: .5rem 1rem;
    }
}

@media (min-width: 1024px) {
    .publications-wrapper.list {
        grid-template-columns: 1fr;
    }

    .publications-wrapper.list .publication-card {
        display: flex;
        gap: 1rem;
        padding: 0;
    }

    .publications-wrapper.list .publication-card img {
        width: 200px;
        height: 200px;
    }

    .publications-wrapper.list .publication-card .text {
        flex: 1;
        display: grid;
        grid-template-rows: max-content max-content 1fr;
    }

    .publications-wrapper.list .publication-card .info {
        flex-direction: row;
        justify-content: space-between;
        margin-top: auto;
    }

    .publications-wrapper.list .publication-card .info .add-to-cart-btn {
        width: max-content;
    }
}

.address-card {
    background: #FCFAF3;
    border: 0.2px solid #F1F1F1;
    border-radius: 6px;
    width: 100%;
    overflow: hidden;
    display: flex;
    gap: 1rem;
    padding: .75rem !important;
    flex-direction: column;
    position: relative;
    /* Hide browser default */
    /* Inner circle when checked */
}

@media (max-width: 768px) {
    .address-card {
        gap: 0;
    }
}

.address-card .btns {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    gap: 1rem;
}

@media (max-width: 768px) {
    .address-card .btns {
        top: 10px;
        left: 10px;
    }
}

.address-card .btns a {
    color: #1B1B1B;
    font-size: 16px;
}

@media (max-width: 768px) {
    .address-card .btns a {
        font-size: 14px;
    }
}

.address-card .btns a.delete {
    color: #B30000;
}

.address-card label {
    font-weight: 600;
    font-size: 20px;
    line-height: 37px;
    color: #000000;
    display: flex;
    align-items: center;
    gap: .5rem;
}

@media (max-width: 768px) {
    .address-card label {
        font-size: 16px;
    }
}

.address-card input[type="radio"] {
    appearance: none;
    /* or -webkit-appearance: none; for Safari */
    -webkit-appearance: none;
    background-color: #fff;
    margin: 0;
    /* Create the outer circle */
    width: 25px;
    height: 25px;
    border: 2px solid #cf2025;
    /* border color */
    border-radius: 50%;
    display: inline-block;
    position: relative;
    cursor: pointer;
}

@media (max-width: 640px) {
    .address-card input[type="radio"] {
        width: 20px;
        height: 20px;
    }
}

.address-card input[type="radio"]:checked::before {
    content: "";
    width: 10px;
    height: 10px;
    background-color: #cf2025;
    /* inner circle color */
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
}

.address-card p {
    font-weight: 400;
    font-size: 18.6238px;
    line-height: 150%;
    color: #808494;
    margin-bottom: 1rem;
}

@media (max-width: 1536px) {
    .address-card p {
        font-size: 1rem;
    }
}

@media (max-width: 1280px) {
    .address-card p {
        font-size: 14px;
        line-height: 18px;
    }
}

@media (max-width: 640px) {
    .address-card p {
        font-size: 12px;
        line-height: 15px;
    }
}

.download-history-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.download-history-wrapper .download-history-card {
    background: #FCFAF3;
    border: 0.2px solid #F1F1F1;
    border-radius: 6px;
    width: 100%;
    overflow: hidden;
    display: flex;
    gap: 1rem;
    padding: .75rem !important;
}

@media (max-width: 1280px) {
    .download-history-wrapper .download-history-card {
        display: flex;
    }
}

@media (max-width: 1024px) {
    .download-history-wrapper .download-history-card {
        flex-direction: column;
    }
}

.download-history-wrapper .download-history-card img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    object-position: center 30%;
    border-radius: 10px;
}

@media (max-width: 1280px) {
    .download-history-wrapper .download-history-card img {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 1024px) {
    .download-history-wrapper .download-history-card img {
        width: 100%;
        height: 190px;
    }
}

@media (max-width: 640px) {
    .download-history-wrapper .download-history-card img {
        height: 150px;
        border-radius: 10px;
    }
}

.download-history-wrapper .download-history-card .text {
    padding: 1.25rem;
    flex: 1;
    display: grid;
    grid-template-rows: max-content max-content 1fr;
    padding-bottom: 0 !important;
}

@media (max-width: 1536px) {
    .download-history-wrapper .download-history-card .text {
        padding: 1rem;
    }
}

@media (max-width: 640px) {
    .download-history-wrapper .download-history-card .text {
        padding: 0 !important;
    }
}

.download-history-wrapper .download-history-card .text h2 {
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 150%;
    letter-spacing: -0.01em;
    color: #1C2E40;
    margin-bottom: .25rem;
}

@media (max-width: 1536px) {
    .download-history-wrapper .download-history-card .text h2 {
        font-size: 1.35rem;
        line-height: 140%;
    }
}

@media (max-width: 1280px) {
    .download-history-wrapper .download-history-card .text h2 {
        font-size: 1.2rem;
    }
}

@media (max-width: 640px) {
    .download-history-wrapper .download-history-card .text h2 {
        font-size: 1rem;
    }
}

.download-history-wrapper .download-history-card .text p {
    font-weight: 400;
    font-size: 18.6238px;
    line-height: 150%;
    color: #808494;
    margin-bottom: 1rem;
}

@media (max-width: 1536px) {
    .download-history-wrapper .download-history-card .text p {
        font-size: 1rem;
    }
}

@media (max-width: 1280px) {
    .download-history-wrapper .download-history-card .text p {
        font-size: 14px;
        line-height: 18px;
    }
}

@media (max-width: 640px) {
    .download-history-wrapper .download-history-card .text p {
        font-size: 12px;
        line-height: 15px;
    }
}

.download-history-wrapper .download-history-card .text p.author {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: -0.01em;
    display: block !important;
    margin-top: .25rem;
    /* gray-text */
    color: #4B4B4B;
}

@media (max-width: 1280px) {
    .download-history-wrapper .download-history-card .text p.author {
        font-size: 14px;
    }
}

@media (max-width: 640px) {
    .download-history-wrapper .download-history-card .text p.author {
        font-size: 10px;
        margin-bottom: .5rem;
    }
}

.download-history-wrapper .download-history-card .text p.author span {
    color: #cf2025;
}

.download-history-wrapper .download-history-card .info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    margin-top: auto;
    margin-top: .5rem;
}

@media (max-width: 640px) {
    .download-history-wrapper .download-history-card .info {
        margin-top: 0.5rem;
        flex-direction: column;
        align-items: start;
        gap: 1rem;
    }
}

.download-history-wrapper .download-history-card .info .price {
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 150%;
    letter-spacing: -0.01em;
    color: #cf2025;
}

@media (max-width: 1280px) {
    .download-history-wrapper .download-history-card .info .price {
        font-size: 1.25rem;
    }
}

@media (max-width: 640px) {
    .download-history-wrapper .download-history-card .info .price {
        font-size: 1rem;
    }
}

.download-history-wrapper .download-history-card .info .price span {
    color: #BCBCBC;
    font-weight: 400;
    text-decoration: line-through;
}

.download-history-wrapper .download-history-card .info .btns {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    width: 400px;
}

@media (max-width: 640px) {
    .download-history-wrapper .download-history-card .info .btns {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
}

.download-history-wrapper .download-history-card .info button {
    padding: .75rem 1.5rem;
    border-radius: 6px;
    border: 1.5px solid #1C2E40;
    background-color: transparent;
    color: #1C2E40;
    font-size: 1rem;
    width: max-content;
}

@media (max-width: 1536px) {
    .download-history-wrapper .download-history-card .info button {
        width: 100%;
    }
}

@media (max-width: 1280px) {
    .download-history-wrapper .download-history-card .info button {
        padding: .6rem;
        font-size: 14px;
    }
}

@media (max-width: 640px) {
    .download-history-wrapper .download-history-card .info button {
        width: 100%;
        padding: 0.5rem 1rem;
        font-size: 10px;
    }
}

.download-history-wrapper .download-history-card .info button.download-btn {
    background-color: #1C2E40;
    color: #fff;
}

.event-history-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.event-history-wrapper .event-history-card {
    background: #FCFAF3;
    border: 0.2px solid #F1F1F1;
    border-radius: 6px;
    width: 100%;
    overflow: hidden;
    display: flex;
    gap: 1rem;
    padding: .75rem !important;
}

@media (max-width: 1280px) {
    .event-history-wrapper .event-history-card {
        display: flex;
    }
}

@media (max-width: 1024px) {
    .event-history-wrapper .event-history-card {
        flex-direction: column;
    }
}

.event-history-wrapper .event-history-card img {
    width: auto;
    height: 200px;
    object-fit: cover;
    object-position: center 30%;
    border-radius: 10px;
}

@media (max-width: 1280px) {
    .event-history-wrapper .event-history-card img {
        width: auto;
        height: 180px;
    }
}

@media (max-width: 1024px) {
    .event-history-wrapper .event-history-card img {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 640px) {
    .event-history-wrapper .event-history-card img {
        height: auto;
        border-radius: 10px;
    }
}

.event-history-wrapper .event-history-card .text {
    padding: 1.25rem;
    flex: 1;
    display: grid;
    grid-template-rows: max-content max-content 1fr;
    padding-bottom: 0 !important;
}

@media (max-width: 1536px) {
    .event-history-wrapper .event-history-card .text {
        padding: 1rem;
    }
}

@media (max-width: 640px) {
    .event-history-wrapper .event-history-card .text {
        padding: 0 !important;
    }
}

.event-history-wrapper .event-history-card .text h2 {
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 150%;
    letter-spacing: -0.01em;
    color: #1C2E40;
    margin-bottom: .25rem;
}

@media (max-width: 1536px) {
    .event-history-wrapper .event-history-card .text h2 {
        font-size: 1.35rem;
        line-height: 140%;
    }
}

@media (max-width: 1280px) {
    .event-history-wrapper .event-history-card .text h2 {
        font-size: 1.2rem;
    }
}

@media (max-width: 640px) {
    .event-history-wrapper .event-history-card .text h2 {
        font-size: 1rem;
    }
}

.event-history-wrapper .event-history-card .text p {
    font-weight: 400;
    font-size: 18.6238px;
    line-height: 150%;
    color: #808494;
    margin-bottom: 1rem;
}

@media (max-width: 1536px) {
    .event-history-wrapper .event-history-card .text p {
        font-size: 1rem;
    }
}

@media (max-width: 1280px) {
    .event-history-wrapper .event-history-card .text p {
        font-size: 14px;
        line-height: 18px;
    }
}

@media (max-width: 640px) {
    .event-history-wrapper .event-history-card .text p {
        font-size: 12px;
        line-height: 15px;
    }
}

.event-history-wrapper .event-history-card .text p.date {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: -0.01em;
    display: block !important;
    margin-top: .25rem;
    /* gray-text */
    color: #4B4B4B;
}

@media (max-width: 1280px) {
    .event-history-wrapper .event-history-card .text p.date {
        font-size: 14px;
    }
}

@media (max-width: 640px) {
    .event-history-wrapper .event-history-card .text p.date {
        font-size: 10px;
        margin-bottom: .5rem;
    }
}

.event-history-wrapper .event-history-card .text p.date span {
    color: #cf2025;
}

.event-history-wrapper .event-history-card .info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    margin-top: auto;
    margin-top: .5rem;
}

@media (max-width: 640px) {
    .event-history-wrapper .event-history-card .info {
        margin-top: 0.5rem;
        flex-direction: column;
        align-items: start;
        gap: 1rem;
    }
}

.event-history-wrapper .event-history-card .info .price {
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 150%;
    letter-spacing: -0.01em;
    color: #cf2025;
}

@media (max-width: 1280px) {
    .event-history-wrapper .event-history-card .info .price {
        font-size: 1.25rem;
    }
}

@media (max-width: 640px) {
    .event-history-wrapper .event-history-card .info .price {
        font-size: 1rem;
    }
}

.event-history-wrapper .event-history-card .info .price span {
    color: #BCBCBC;
    font-weight: 400;
    text-decoration: line-through;
}

.event-history-wrapper .event-history-card .info .btns {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    width: 400px;
}

@media (max-width: 640px) {
    .event-history-wrapper .event-history-card .info .btns {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

.event-history-wrapper .event-history-card .info button {
    padding: .75rem 1.5rem;
    border-radius: 6px;
    border: 1.5px solid #1C2E40;
    background-color: transparent;
    color: #1C2E40;
    font-size: 1rem;
    width: max-content;
}

@media (max-width: 1536px) {
    .event-history-wrapper .event-history-card .info button {
        width: 100%;
    }
}

@media (max-width: 1280px) {
    .event-history-wrapper .event-history-card .info button {
        padding: .6rem;
        font-size: 14px;
    }
}

@media (max-width: 640px) {
    .event-history-wrapper .event-history-card .info button {
        width: 100%;
        padding: 0.5rem 1rem;
        font-size: 10px;
    }
}

.event-history-wrapper .event-history-card .info button.view-btn {
    background-color: #1C2E40;
    color: #fff;
}

.order-details {
    padding-right: 1rem;
    padding-left: 1rem;
}

@media (max-width: 768px) {
    .order-details {
        padding-right: 0rem;
        padding-left: 0rem;
    }
}

.order-details .container>h2 {
    font-weight: 700;
    font-size: 2.25rem;
    line-height: 120%;
    color: #1B1B1B;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

@media (max-width: 1536px) {
    .order-details .container>h2 {
        font-size: 2rem;
    }
}

@media (max-width: 1280px) {
    .order-details .container>h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .order-details .container>h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 640px) {
    .order-details .container>h2 {
        font-size: 1.25rem;
    }
}

.order-details .container>h2 span {
    color: #cf2025;
}

.order-items-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.order-items-wrapper .order-item {
    background: #FCFAF3;
    border: 0.2px solid #F1F1F1;
    border-radius: 6px;
    width: 100%;
    overflow: hidden;
    display: flex;
    gap: 1rem;
    padding: .75rem !important;
}

@media (max-width: 1280px) {
    .order-items-wrapper .order-item {
        display: flex;
    }
}

@media (max-width: 1024px) {
    .order-items-wrapper .order-item {
        flex-direction: column;
    }
}

.order-items-wrapper .order-item img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    object-position: center 30%;
    border-radius: 10px;
}

@media (max-width: 1280px) {
    .order-items-wrapper .order-item img {
        width: 160px;
        height: 160px;
    }
}

@media (max-width: 1024px) {
    .order-items-wrapper .order-item img {
        width: 100%;
        height: 190px;
    }
}

@media (max-width: 640px) {
    .order-items-wrapper .order-item img {
        height: 150px;
        border-radius: 10px;
    }
}

.order-items-wrapper .order-item .text {
    padding: 1.25rem;
    flex: 1;
    display: grid;
    grid-template-rows: max-content max-content 1fr;
    padding-bottom: 0 !important;
}

@media (max-width: 1536px) {
    .order-items-wrapper .order-item .text {
        padding: 1rem;
    }
}

@media (max-width: 640px) {
    .order-items-wrapper .order-item .text {
        padding: 0 !important;
    }
}

.order-items-wrapper .order-item .text h2 {
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 150%;
    letter-spacing: -0.01em;
    color: #1C2E40;
    margin-bottom: .25rem;
}

@media (max-width: 1536px) {
    .order-items-wrapper .order-item .text h2 {
        font-size: 1.35rem;
        line-height: 140%;
    }
}

@media (max-width: 1280px) {
    .order-items-wrapper .order-item .text h2 {
        font-size: 1.2rem;
    }
}

@media (max-width: 640px) {
    .order-items-wrapper .order-item .text h2 {
        font-size: 1rem;
    }
}

.order-items-wrapper .order-item .text p {
    font-weight: 400;
    font-size: 18.6238px;
    line-height: 150%;
    color: #808494;
    margin-bottom: 1rem;
}

@media (max-width: 1536px) {
    .order-items-wrapper .order-item .text p {
        font-size: 1rem;
    }
}

@media (max-width: 1280px) {
    .order-items-wrapper .order-item .text p {
        font-size: 14px;
        line-height: 18px;
    }
}

@media (max-width: 640px) {
    .order-items-wrapper .order-item .text p {
        font-size: 12px;
        line-height: 15px;
    }
}

.order-items-wrapper .order-item .text p.author {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: -0.01em;
    display: block !important;
    margin-top: .25rem;
    /* gray-text */
    color: #4B4B4B;
}

@media (max-width: 1280px) {
    .order-items-wrapper .order-item .text p.author {
        font-size: 14px;
    }
}

@media (max-width: 640px) {
    .order-items-wrapper .order-item .text p.author {
        font-size: 10px;
        margin-bottom: .5rem;
    }
}

.order-items-wrapper .order-item .text p.author span {
    color: #cf2025;
}

.order-items-wrapper .order-item .info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    margin-top: auto;
    margin-top: .5rem;
}

@media (max-width: 640px) {
    .order-items-wrapper .order-item .info {
        margin-top: 0.5rem;
        flex-direction: column;
        align-items: start;
        gap: 1rem;
    }
}

.order-items-wrapper .order-item .info .price {
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 150%;
    letter-spacing: -0.01em;
    color: #cf2025;
}

@media (max-width: 1280px) {
    .order-items-wrapper .order-item .info .price {
        font-size: 1.25rem;
    }
}

@media (max-width: 640px) {
    .order-items-wrapper .order-item .info .price {
        font-size: 1rem;
    }
}

.order-items-wrapper .order-item .info .price span {
    color: #BCBCBC;
    font-weight: 400;
    text-decoration: line-through;
}

.order-items-wrapper .order-item .info .btns {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    width: 400px;
}

@media (max-width: 640px) {
    .order-items-wrapper .order-item .info .btns {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
}

.order-items-wrapper .order-item .info button {
    padding: .75rem 1.5rem;
    border-radius: 6px;
    border: 1.5px solid #1C2E40;
    background-color: transparent;
    color: #1C2E40;
    font-size: 1rem;
    width: max-content;
}

@media (max-width: 1536px) {
    .order-items-wrapper .order-item .info button {
        width: 100%;
    }
}

@media (max-width: 1280px) {
    .order-items-wrapper .order-item .info button {
        padding: .6rem;
        font-size: 14px;
    }
}

@media (max-width: 640px) {
    .order-items-wrapper .order-item .info button {
        width: 100%;
        padding: 0.5rem 1rem;
        font-size: 10px;
    }
}

.order-items-wrapper .order-item .info button.download-btn {
    background-color: #1C2E40;
    color: #fff;
}

.publication-history-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.publication-history-wrapper .publication-history-card {
    background: #FCFAF3;
    border: 0.2px solid #F1F1F1;
    border-radius: 6px;
    width: 100%;
    overflow: hidden;
    display: flex;
    gap: 1rem;
    padding: .75rem !important;
    width: 100%;
}

@media (max-width: 1280px) {
    .publication-history-wrapper .publication-history-card {
        display: flex;
    }
}

@media (max-width: 1024px) {
    .publication-history-wrapper .publication-history-card {
        flex-direction: column;
    }
}

.publication-history-wrapper .publication-history-card img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    object-position: center 30%;
    border-radius: 10px;
}

@media (max-width: 1280px) {
    .publication-history-wrapper .publication-history-card img {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 1024px) {
    .publication-history-wrapper .publication-history-card img {
        width: 100%;
        height: 190px;
    }
}

@media (max-width: 640px) {
    .publication-history-wrapper .publication-history-card img {
        height: 150px;
        border-radius: 10px;
    }
}

.publication-history-wrapper .publication-history-card .text {
    padding: 1.25rem;
    flex: 1;
    display: grid;
    grid-template-rows: max-content max-content 1fr;
    padding-bottom: 0 !important;
}

@media (max-width: 1536px) {
    .publication-history-wrapper .publication-history-card .text {
        padding: 1rem;
    }
}

@media (max-width: 640px) {
    .publication-history-wrapper .publication-history-card .text {
        padding: 0 !important;
    }
}

.publication-history-wrapper .publication-history-card .text h2 {
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 150%;
    letter-spacing: -0.01em;
    color: #1C2E40;
    margin-bottom: .25rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

@media (max-width: 1536px) {
    .publication-history-wrapper .publication-history-card .text h2 {
        font-size: 1.35rem;
        line-height: 140%;
    }
}

@media (max-width: 1280px) {
    .publication-history-wrapper .publication-history-card .text h2 {
        font-size: 1.2rem;
    }
}

@media (max-width: 640px) {
    .publication-history-wrapper .publication-history-card .text h2 {
        font-size: 1rem;
    }
}

.publication-history-wrapper .publication-history-card .text h2 span {
    padding: .5rem;
    color: #fff;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 400;
    display: block;
    height: auto;
    width: 100px;
    text-align: center;
}

.publication-history-wrapper .publication-history-card .text h2 span.success {
    background-color: #34A970;
}

.publication-history-wrapper .publication-history-card .text h2 span.fail {
    background-color: #B30000;
}

@media (max-width: 768px) {
    .publication-history-wrapper .publication-history-card .text h2 span {
        font-size: 12px;
        padding: .25rem;
        width: 70px;
    }
}

.publication-history-wrapper .publication-history-card .text p {
    font-weight: 400;
    font-size: 18.6238px;
    line-height: 150%;
    color: #808494;
    margin-bottom: 1rem;
}

@media (max-width: 1536px) {
    .publication-history-wrapper .publication-history-card .text p {
        font-size: 1rem;
    }
}

@media (max-width: 1280px) {
    .publication-history-wrapper .publication-history-card .text p {
        font-size: 14px;
        line-height: 18px;
    }
}

@media (max-width: 640px) {
    .publication-history-wrapper .publication-history-card .text p {
        font-size: 12px;
        line-height: 15px;
    }
}

.publication-history-wrapper .publication-history-card .text p.date-info {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: -0.01em;
    display: block !important;
    margin-top: .25rem;
    /* gray-text */
    color: #4B4B4B;
}

@media (max-width: 1280px) {
    .publication-history-wrapper .publication-history-card .text p.date-info {
        font-size: 14px;
    }
}

@media (max-width: 640px) {
    .publication-history-wrapper .publication-history-card .text p.date-info {
        font-size: 10px;
        margin-bottom: .5rem;
    }
}

.publication-history-wrapper .publication-history-card .text p.date-info span {
    color: #cf2025;
}

.publication-history-wrapper .publication-history-card .info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    margin-top: auto;
    margin-top: .5rem;
}

@media (max-width: 640px) {
    .publication-history-wrapper .publication-history-card .info {
        margin-top: 0.5rem;
        flex-direction: column;
        align-items: start;
        gap: 1rem;
    }
}

.publication-history-wrapper .publication-history-card .info .price {
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 150%;
    letter-spacing: -0.01em;
    color: #cf2025;
}

@media (max-width: 1280px) {
    .publication-history-wrapper .publication-history-card .info .price {
        font-size: 1.25rem;
    }
}

@media (max-width: 640px) {
    .publication-history-wrapper .publication-history-card .info .price {
        font-size: 1rem;
    }
}

.publication-history-wrapper .publication-history-card .info .price span {
    color: #BCBCBC;
    font-weight: 400;
    text-decoration: line-through;
}

.publication-history-wrapper .publication-history-card .info .btns {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    width: 400px;
}

@media (max-width: 640px) {
    .publication-history-wrapper .publication-history-card .info .btns {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

.publication-history-wrapper .publication-history-card .info button {
    padding: .75rem 1.5rem;
    border-radius: 6px;
    border: 1.5px solid #1C2E40;
    background-color: transparent;
    color: #1C2E40;
    font-size: 1rem;
    width: max-content;
}

@media (max-width: 1536px) {
    .publication-history-wrapper .publication-history-card .info button {
        width: 100%;
    }
}

@media (max-width: 1280px) {
    .publication-history-wrapper .publication-history-card .info button {
        padding: .6rem;
        font-size: 14px;
    }
}

@media (max-width: 640px) {
    .publication-history-wrapper .publication-history-card .info button {
        width: 100%;
        padding: 0.5rem 1rem;
        font-size: 10px;
    }
}

.publication-history-wrapper .publication-history-card .info button.download-btn {
    background-color: #1C2E40;
    color: #fff;
}

.event {
    padding: 5rem 0;
}

@media (max-width: 1280px) {
    .event {
        padding: 3.5rem 0;
    }
}

@media (max-width: 1024px) {
    .event {
        padding: 2.5rem 0;
    }
}

.event .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (max-width: 1280px) {
    .event .container {
        gap: 2rem;
    }
}

@media (max-width: 1024px) {
    .event .container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .event .container {
        gap: 1.5rem;
    }
}

.event .container img {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
    border-radius: 6px;
}

.event .container .text h1 {
    font-weight: 700;
    font-size: 2.8rem;
    line-height: 120%;
    color: #1B1B1B;
    margin-bottom: 2rem;
}

@media (max-width: 1536px) {
    .event .container .text h1 {
        font-size: 2.5rem;
        margin-bottom: 1.75rem;
    }
}

@media (max-width: 1280px) {
    .event .container .text h1 {
        font-size: 2.5rem;
        margin-bottom: 1.25rem;
    }
}

@media (max-width: 1024px) {
    .event .container .text h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 640px) {
    .event .container .text h1 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
}

.event .container .text .info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
}

.event .container .text .info .date {
    font-weight: 600;
    font-size: 17px;
    line-height: 120%;
    color: #FFFFFF;
    background-color: #cf2025;
    padding: .75rem;
    border-radius: 6px;
}

@media (max-width: 1536px) {
    .event .container .text .info .date {
        font-size: 15px;
        padding: .5rem;
    }
}

@media (max-width: 640px) {
    .event .container .text .info .date {
        font-size: 12px;
    }
}

.event .container .text .info .price {
    font-weight: 700;
    font-size: 40px;
    line-height: 150%;
    letter-spacing: -0.01em;
    color: #cf2025;
}

@media (max-width: 1536px) {
    .event .container .text .info .price {
        font-size: 32px;
    }
}

@media (max-width: 1280px) {
    .event .container .text .info .price {
        font-size: 28px;
    }
}

@media (max-width: 640px) {
    .event .container .text .info .price {
        font-size: 22px;
    }
}

.event .container .text .info .price span {
    font-weight: 400;
    font-size: 22px;
    line-height: 150%;
    letter-spacing: -0.01em;
    text-decoration-line: line-through;
    color: #BCBCBC;
}

@media (max-width: 1280px) {
    .event .container .text .info .price span {
        font-size: 18px;
    }
}

@media (max-width: 640px) {
    .event .container .text .info .price span {
        font-size: 16px;
    }
}

.event .container .text .desc {
    font-weight: 400;
    font-size: 19px;
    line-height: 36px;
    color: #4B4B4B;
    margin-top: 1rem;
}

@media (max-width: 1536px) {
    .event .container .text .desc {
        font-size: 17px;
        line-height: 28px;
    }
}

@media (max-width: 1280px) {
    .event .container .text .desc {
        font-size: 15px;
        line-height: 24px;
    }
}

@media (max-width: 640px) {
    .event .container .text .desc {
        font-size: 14px;
        line-height: 22px;
    }
}

.event .container .text h2 {
    font-weight: 600;
    font-size: 20px;
    line-height: 120%;
    color: #1B1B1B;
    margin: 1rem 0 2rem;
}

@media (max-width: 1280px) {
    .event .container .text h2 {
        font-size: 18px;
        margin: .75rem 0 1.5rem;
    }
}

@media (max-width: 640px) {
    .event .container .text h2 {
        font-size: 14px;
    }
}

.event .container .text h2 span {
    color: #cf2025;
}

.event .container .text button {
    width: 100%;
    padding: 1rem 0;
}

@media (max-width: 768px) {
    .event .container .text button {
        padding: .7rem 0;
    }
}

.form {
    padding: 0 0 5rem;
}

@media (max-width: 1280px) {
    .form {
        padding: 0 0 3.5rem;
    }
}

@media (max-width: 1024px) {
    .form {
        padding: 0 0 2.5rem;
    }
}

.form .form-wrapper {
    padding: 1.5rem;
    background: #FCFAF3;
    border: 1px solid #F1F1F1;
    border-radius: 6px;
    width: 100%;
}

@media (max-width: 1280px) {
    .form .form-wrapper {
        padding: 1.25rem;
    }
}

.form .form-wrapper .header {
    margin-bottom: 2rem;
}

@media (max-width: 1280px) {
    .form .form-wrapper .header {
        margin-bottom: 1.75rem;
    }
}

.form .form-wrapper .header h1 {
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 120%;
    color: #1B1B1B;
    margin-bottom: .5rem;
    text-align: center;
}

@media (max-width: 1536px) {
    .form .form-wrapper .header h1 {
        font-size: 2.15rem;
    }
}

@media (max-width: 1280px) {
    .form .form-wrapper .header h1 {
        font-size: 1.75rem;
        margin-bottom: .2rem;
    }
}

@media (max-width: 640px) {
    .form .form-wrapper .header h1 {
        font-size: 1.5rem;
        margin-bottom: 0;
    }
}

.form .form-wrapper .header p {
    font-weight: 400;
    font-size: 1rem;
    line-height: 150%;
    color: #4B4B4B;
    text-align: center;
}

@media (max-width: 1280px) {
    .form .form-wrapper .header p {
        font-size: .9rem;
        line-height: 140%;
    }
}

.form .form-wrapper form .form-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

@media (max-width: 1280px) {
    .form .form-wrapper form .form-row {
        margin-bottom: 1.5rem;
        gap: 1rem;
    }
}

@media (max-width: 640px) {
    .form .form-wrapper form .form-row {
        flex-direction: column;
    }
}

.form .form-wrapper form .form-row a {
    font-weight: 600;
    font-size: 14px;
    line-height: 140%;
    color: #cf2025;
    text-decoration: none;
}

.form .form-wrapper form .form-row .form-group {
    flex: 1;
}

@media (max-width: 640px) {
    .form .form-wrapper form .form-row .form-group {
        width: 100%;
    }
}

.form .form-wrapper form .form-row .form-group label {
    font-weight: 500;
    font-size: 1rem;
    line-height: 17px;
    color: #011B3B;
    display: block;
    margin-bottom: .75rem;
}

.form .form-wrapper form .form-row .form-group input,
.form .form-wrapper form .form-row .form-group textarea,
.form .form-wrapper form .form-row .form-group select {
    padding: 12px;
    background: #FDFBF4;
    border: 1.2px solid #F1F1F1;
    border-radius: 4px;
    color: #1B1B1B;
    width: 100%;
}

.form .form-wrapper form .form-row .form-group input:focus,
.form .form-wrapper form .form-row .form-group textarea:focus,
.form .form-wrapper form .form-row .form-group select:focus {
    box-shadow: none;
    outline: none;
    border: 1px solid #1C2E40;
}

.form .form-wrapper form .form-row .form-group textarea {
    resize: none;
    height: 100px;
}

.form .form-wrapper form .form-row .form-check {
    display: flex;
    gap: 1rem;
    align-items: center;
    white-space: nowrap;
}

.form .form-wrapper form .form-row .form-check input {
    width: auto;
}

.form .form-wrapper form .form-row .form-check label {
    margin: 0;
}

.form .form-wrapper form .form-row button {
    width: 100%;
    flex: 1;
}

.form .form-wrapper>a {
    font-weight: 500;
    font-size: 14px;
    line-height: 140%;
    text-align: center;
    display: block;
    width: 100%;
    color: #1C2E40;
    text-decoration: none;
}

.form .form-wrapper>a span {
    color: #cf2025;
}

.news-page {
    padding: 5rem 0 3rem;
}

@media (max-width: 1280px) {
    .news-page {
        padding: 3.5rem 0 2rem;
    }
}

@media (max-width: 1024px) {
    .news-page {
        padding: 2.5rem 0 1.5rem;
    }
}

.news-page .container {
    display: grid;
    grid-template-columns: 7fr 3fr;
    gap: 2rem;
}

@media (max-width: 1024px) {
    .news-page .container {
        grid-template-columns: 1fr;
    }
}

.news-page .container .thumbnail {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 1.5rem;
}

@media (max-height: 1536px) {
    .news-page .container .thumbnail {
        max-height: 500px;
    }
}

@media (max-height: 1280px) {
    .news-page .container .thumbnail {
        max-height: 400px;
    }
}

.side-content {
    width: 100%;
}

.side-content .header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #F9F6EF;
    margin-bottom: 1rem;
}

@media (max-width: 640px) {
    .side-content .header {
        padding-bottom: .5rem;
        margin-bottom: .75rem;
    }
}

.side-content .header h2 {
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 120%;
    color: #1B1B1B;
}

@media (max-width: 1280px) {
    .side-content .header h2 {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .side-content .header h2 {
        font-size: 1.15rem;
    }
}

@media (max-width: 640px) {
    .side-content .header h2 {
        font-size: 1rem;
    }
}

.side-content .header a {
    font-weight: 600;
    font-size: 17px;
    line-height: 34px;
    color: #393939;
}

@media (max-width: 768px) {
    .side-content .header a {
        font-size: 14px;
    }
}

.side-content .ad {
    margin: 1rem 0;
    width: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.side-content .categories {
    padding: 2rem 1.25rem;
    gap: 10px;
    background: #FCFAF3;
    border: 1px solid #F1F1F1;
    border-radius: 15px;
}

@media (max-width: 640px) {
    .side-content .categories {
        padding: 1rem;
        border-radius: 10px;
    }
}

.side-content .categories .category {
    display: flex;
    justify-content: space-between;
    font-weight: 400;
    font-size: 17px;
    color: #1B1B1B;
    transition: all .3s ease-in;
}

@media (max-width: 1536px) {
    .side-content .categories .category {
        font-size: 16px;
    }
}

@media (max-width: 1280px) {
    .side-content .categories .category {
        font-size: 15px;
    }
}

@media (max-width: 640px) {
    .side-content .categories .category {
        font-size: 14px;
    }
}

.side-content .categories .category:hover {
    color: #cf2025;
}

.side-content .categories .category:not(:last-child) {
    margin-bottom: 1rem;
}

.side-content .categories .category span {
    font-weight: 600;
}

.side-content .categories .category span:last-child {
    color: #cf2025;
}

.side-content .social-media {
    padding: 2rem 1.25rem;
    background: #FCFAF3;
    border: 1px solid #F1F1F1;
    border-radius: 15px;
}

@media (max-width: 640px) {
    .side-content .social-media {
        padding: 1rem;
        border-radius: 10px;
    }
}

.side-content .social-media h2 {
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 120%;
    color: #1B1B1B;
}

@media (max-width: 1280px) {
    .side-content .social-media h2 {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .side-content .social-media h2 {
        font-size: 1.15rem;
    }
}

@media (max-width: 640px) {
    .side-content .social-media h2 {
        font-size: 1rem;
    }
}

.side-content .social-media .social-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.side-content .social-media .social-wrapper img {
    width: 100%;
}

.side-content .newslater {
    padding: 2rem 1.25rem;
    background: #FCFAF3;
    border: 1px solid #F1F1F1;
    border-radius: 15px;
    margin-top: 1rem;
}

@media (max-width: 640px) {
    .side-content .newslater {
        padding: 1rem;
        border-radius: 10px;
    }
}

.side-content .newslater h2 {
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 120%;
    color: #1B1B1B;
}

@media (max-width: 1280px) {
    .side-content .newslater h2 {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .side-content .newslater h2 {
        font-size: 1.15rem;
    }
}

@media (max-width: 640px) {
    .side-content .newslater h2 {
        font-size: 1rem;
    }
}

.side-content .newslater p {
    font-size: 16px;
    line-height: 120%;
    color: #6E6E6E;
    margin: .5rem 0 1rem;
}

.side-content .newslater .sub-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.side-content .newslater .sub-wrapper .input-group {
    position: relative;
    flex: 1;
}

.side-content .newslater .sub-wrapper .input-group i {
    font-size: 1rem;
    top: 50%;
    right: .5rem;
    transform: translateY(-50%);
    position: absolute;
}

.side-content .newslater .sub-wrapper .input-group input {
    padding: 12px;
    background: #FDFBF4;
    border: 1.2px solid #F1F1F1;
    border-radius: 6px;
    font-size: 1rem;
    color: #1B1B1B;
    width: 100%;
    padding-right: 2.5rem;
    width: 100%;
}

.side-content .newslater .sub-wrapper .input-group input:focus {
    box-shadow: none;
    outline: none;
    border: 1px solid #1C2E40;
}

.most-recent {
    padding: 3rem 0 3rem;
}

@media (max-width: 1280px) {
    .most-recent {
        padding: 2rem 0 2rem;
    }
}

@media (max-width: 1024px) {
    .most-recent {
        padding: 1.5rem 0 1.5rem;
    }
}

.hint {
    margin-bottom: 1.25rem;
    margin-top: -1.25rem;
    width: 100%;
    font-size: 14px;
    color: #6C727F;
    display: block;
}

.side-articles .header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #F9F6EF;
    margin-bottom: 1rem;
}

@media (max-width: 640px) {
    .side-articles .header {
        padding-bottom: .5rem;
        margin-bottom: .75rem;
    }
}

.side-articles .header h2 {
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 120%;
    color: #1B1B1B;
}

@media (max-width: 1280px) {
    .side-articles .header h2 {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .side-articles .header h2 {
        font-size: 1.15rem;
    }
}

@media (max-width: 640px) {
    .side-articles .header h2 {
        font-size: 1rem;
    }
}

.side-articles .header a {
    font-weight: 600;
    font-size: 17px;
    line-height: 34px;
    color: #393939;
}

@media (max-width: 768px) {
    .side-articles .header a {
        font-size: 14px;
    }
}

.side-articles .side-article-wrapper {
    padding: 2rem 1.25rem;
    gap: 10px;
    background: #FCFAF3;
    border: 1px solid #F1F1F1;
    border-radius: 15px;
}

@media (max-width: 640px) {
    .side-articles .side-article-wrapper {
        padding: 1rem;
        border-radius: 10px;
    }
}

.side-articles .side-article-wrapper .side-article {
    display: flex;
    gap: 1rem;
}

@media (max-width: 1280px) {
    .side-articles .side-article-wrapper .side-article {
        flex-direction: column;
    }
}

@media (max-width: 1024px) {
    .side-articles .side-article-wrapper .side-article {
        flex-direction: row;
    }
}

.side-articles .side-article-wrapper .side-article:not(:last-child) {
    padding-bottom: 1rem;
    border-bottom: 1px solid #F9F6EF;
    margin-bottom: 1rem;
}

.side-articles .side-article-wrapper .side-article img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 6px;
}

@media (max-width: 1536px) {
    .side-articles .side-article-wrapper .side-article img {
        width: 90px;
        height: 90px;
    }
}

@media (max-width: 1280px) {
    .side-articles .side-article-wrapper .side-article img {
        width: 100%;
        height: 100px;
    }
}

@media (max-width: 1024px) {
    .side-articles .side-article-wrapper .side-article img {
        width: 90px;
        height: 90px;
    }
}

.side-articles .side-article-wrapper .side-article .text p {
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    margin-bottom: .5rem;
    color: #4B4B4B;
}

@media (max-width: 1536px) {
    .side-articles .side-article-wrapper .side-article .text p {
        font-size: 14px;
        line-height: 20px;
    }
}

@media (max-width: 640px) {
    .side-articles .side-article-wrapper .side-article .text p {
        font-size: 12px;
        margin-bottom: 0rem;
        line-height: 18px;
    }
}

.side-articles .side-article-wrapper .side-article .text .author {
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: -0.01em;
    /* gray-text */
    color: #4B4B4B;
}

@media (max-width: 640px) {
    .side-articles .side-article-wrapper .side-article .text .author {
        font-size: 12px;
    }
}

.side-articles .side-article-wrapper .side-article .text .author span {
    color: #cf2025;
}

.recomended-news .container {
    display: grid;
    grid-template-columns: 7fr 3fr;
    gap: 2rem;
}

@media (max-width: 1024px) {
    .recomended-news .container {
        grid-template-columns: 1fr;
    }
}

.recomended-news .container .recomended-wrapper .header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #F9F6EF;
    margin-bottom: 1rem;
}

@media (max-width: 640px) {
    .recomended-news .container .recomended-wrapper .header {
        flex-direction: column;
        align-items: start;
        gap: 1rem;
        padding-bottom: .5rem;
        margin-bottom: .75rem;
    }
}

.recomended-news .container .recomended-wrapper .header h2 {
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 120%;
    color: #1B1B1B;
}

@media (max-width: 1280px) {
    .recomended-news .container .recomended-wrapper .header h2 {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .recomended-news .container .recomended-wrapper .header h2 {
        font-size: 1.15rem;
    }
}

@media (max-width: 640px) {
    .recomended-news .container .recomended-wrapper .header h2 {
        font-size: 1rem;
    }
}

.recomended-news .container .recomended-wrapper .header .categories-items {
    display: flex;
    gap: .75rem;
}

.recomended-news .container .recomended-wrapper .header a,
.recomended-news .container .recomended-wrapper .header select {
    background-color: transparent;
    border: none;
    font-family: "Cairo", sans-serif;
    font-weight: 600;
    font-size: 17px;
    line-height: 34px;
    color: #393939;
}

.recomended-news .container .recomended-wrapper .header a.active,
.recomended-news .container .recomended-wrapper .header select.active {
    color: #cf2025;
}

@media (max-width: 768px) {

    .recomended-news .container .recomended-wrapper .header a,
    .recomended-news .container .recomended-wrapper .header select {
        font-size: 14px;
    }
}

.latest-news {
    padding: 5rem 0;
}

@media (max-width: 1280px) {
    .latest-news {
        padding: 3.5rem 0;
    }
}

@media (max-width: 1024px) {
    .latest-news {
        padding: 2.5rem 0;
    }
}

.latest-news .container .header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #F9F6EF;
    margin-bottom: 1rem;
}

@media (max-width: 640px) {
    .latest-news .container .header {
        padding-bottom: .5rem;
        margin-bottom: .75rem;
    }
}

.latest-news .container .header h2 {
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 120%;
    color: #1B1B1B;
}

@media (max-width: 1280px) {
    .latest-news .container .header h2 {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .latest-news .container .header h2 {
        font-size: 1.15rem;
    }
}

@media (max-width: 640px) {
    .latest-news .container .header h2 {
        font-size: 1rem;
    }
}

.latest-news .container .header .categories-items {
    display: flex;
    gap: .75rem;
}

.latest-news .container .header a,
.latest-news .container .header select {
    background-color: transparent;
    border: none;
    font-family: "Cairo", sans-serif;
    font-weight: 600;
    font-size: 17px;
    line-height: 34px;
    color: #393939;
}

.latest-news .container .header a.active,
.latest-news .container .header select.active {
    color: #cf2025;
}

@media (max-width: 768px) {

    .latest-news .container .header a,
    .latest-news .container .header select {
        font-size: 14px;
    }
}

.main-news-card {
    padding: 2rem;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    height: 550px;
    margin: 2rem 0;
}

.main-news-card:first-child {
    grid-column: 1/span 2;
    grid-row: 1/span 2;
}

@media (max-width: 1280px) {
    .main-news-card:first-child {
        grid-row: 1/span 1;
    }
}

@media (max-width: 640px) {
    .main-news-card:first-child {
        grid-column: span 1;
        grid-row: span 1;
    }
}

.main-news-card:last-child {
    grid-column: span 2;
}

@media (max-width: 640px) {
    .main-news-card:last-child {
        grid-column: span 1;
    }
}

@media (max-width: 1536px) {
    .main-news-card {
        padding: 1.5rem;
        height: 450px;
    }
}

@media (max-width: 1024px) {
    .main-news-card {
        padding: 1rem;
        height: 400px;
    }
}

@media (max-width: 640px) {
    .main-news-card {
        height: 250px;
    }
}

.main-news-card img {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.main-news-card::after {
    content: "";
    background: linear-gradient(-180deg, rgba(0, 0, 0, 0) 0%, black 100%);
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 70%;
    z-index: 2;
}

.main-news-card .text {
    position: relative;
    z-index: 3;
}

.main-news-card .text .date {
    font-weight: 400;
    font-size: 1rem;
    line-height: 100.9%;
    color: #FFFFFF;
    margin-bottom: .5rem;
}

.main-news-card .text .title {
    font-style: normal;
    font-weight: 700;
    font-size: 1.15rem;
    line-height: 150%;
    letter-spacing: -0.01em;
    color: #FFFFFF;
}

@media (max-width: 1024px) {
    .main-news-card .text .title {
        font-weight: 600;
        font-size: 1rem;
    }
}

.latest-video-news {
    padding-bottom: 5rem;
}

@media (max-width: 1280px) {
    .latest-video-news {
        padding-bottom: 3.5rem;
    }
}

@media (max-width: 1024px) {
    .latest-video-news {
        padding-bottom: 2.5rem;
    }
}

.latest-video-news .container {
    display: grid;
    grid-template-columns: 7fr 3fr;
    gap: 2rem;
}

@media (max-width: 1024px) {
    .latest-video-news .container {
        grid-template-columns: 1fr;
    }
}

.latest-video-news .container .videos-wrapper .header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #F9F6EF;
    margin-bottom: 1rem;
}

@media (max-width: 640px) {
    .latest-video-news .container .videos-wrapper .header {
        flex-direction: column;
        align-items: start;
        gap: 1rem;
        padding-bottom: .5rem;
        margin-bottom: .75rem;
    }
}

.latest-video-news .container .videos-wrapper .header h2 {
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 120%;
    color: #1B1B1B;
}

@media (max-width: 1280px) {
    .latest-video-news .container .videos-wrapper .header h2 {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .latest-video-news .container .videos-wrapper .header h2 {
        font-size: 1.15rem;
    }
}

@media (max-width: 640px) {
    .latest-video-news .container .videos-wrapper .header h2 {
        font-size: 1rem;
    }
}

.latest-video-news .container .videos-wrapper .header .categories-items {
    display: flex;
    gap: .75rem;
}

.latest-video-news .container .videos-wrapper .header a,
.latest-video-news .container .videos-wrapper .header select {
    background-color: transparent;
    border: none;
    font-family: "Cairo", sans-serif;
    font-weight: 600;
    font-size: 17px;
    line-height: 34px;
    color: #393939;
}

.latest-video-news .container .videos-wrapper .header a.active,
.latest-video-news .container .videos-wrapper .header select.active {
    color: #cf2025;
}

@media (max-width: 768px) {

    .latest-video-news .container .videos-wrapper .header a,
    .latest-video-news .container .videos-wrapper .header select {
        font-size: 14px;
    }
}

.cart {
    padding: 5rem 0;
}

@media (max-width: 1280px) {
    .cart {
        padding: 3.5rem 0;
    }
}

@media (max-width: 1024px) {
    .cart {
        padding: 2.5rem 0;
    }
}

.cart .container h2 {
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 120%;
    color: #1B1B1B;
    margin-bottom: 1.5rem;
}

@media (max-width: 1280px) {
    .cart .container h2 {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .cart .container h2 {
        font-size: 1.15rem;
    }
}

@media (max-width: 640px) {
    .cart .container h2 {
        font-size: 1rem;
    }
}

.cart .container .cart-wrapper {
    display: grid;
    grid-template-columns: 6fr 4fr;
    gap: 2rem;
}

@media (max-width: 1280px) {
    .cart .container .cart-wrapper {
        grid-template-columns: 1fr;
    }
}

.cart .container .cart-wrapper .items-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cart .container .cart-wrapper .items-wrapper .cart-item {
    padding: 20px;
    gap: 1.5rem;
    background: #FCFAF3;
    border: 1px solid #F1F1F1;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.25rem;
}

@media (max-width: 640px) {
    .cart .container .cart-wrapper .items-wrapper .cart-item {
        flex-direction: column;
    }
}

.cart .container .cart-wrapper .items-wrapper .cart-item img {
    width: 220px;
    height: 250px;
    object-fit: cover;
    border-radius: 6px;
}

@media (max-width: 640px) {
    .cart .container .cart-wrapper .items-wrapper .cart-item img {
        width: 100%;
        height: 180px;
    }
}

@media (max-width: 640px) {
    .cart .container .cart-wrapper .items-wrapper .cart-item .desc {
        font-size: 14px !important;
        line-height: 140%;
    }
}

.cart .container .cart-wrapper .items-wrapper .cart-item .text .info {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
}

.cart .container .cart-wrapper .items-wrapper .cart-item .text .info>div {
    display: flex;
    gap: .5rem;
    align-items: center;
}

.cart .container .cart-wrapper .items-wrapper .cart-item .text .info>div .delete-btn {
    font-size: 1.5rem;
    color: #da2c2c;
    background-color: transparent;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .3s ease-in-out;
}

.cart .container .cart-wrapper .items-wrapper .cart-item .text .price {
    font-weight: 700;
    font-size: 32px;
    line-height: 150%;
    letter-spacing: -0.01em;
    color: #cf2025;
}

@media (max-width: 1536px) {
    .cart .container .cart-wrapper .items-wrapper .cart-item .text .price {
        font-size: 28px;
    }
}

@media (max-width: 1280px) {
    .cart .container .cart-wrapper .items-wrapper .cart-item .text .price {
        font-size: 22px;
    }
}

@media (max-width: 640px) {
    .cart .container .cart-wrapper .items-wrapper .cart-item .text .price {
        font-size: 20px;
    }
}

.cart .container .cart-wrapper .items-wrapper .cart-item .text .price span {
    font-weight: 400;
    font-size: 22px;
    line-height: 150%;
    letter-spacing: -0.01em;
    text-decoration-line: line-through;
    color: #BCBCBC;
}

@media (max-width: 1280px) {
    .cart .container .cart-wrapper .items-wrapper .cart-item .text .price span {
        font-size: 18px;
    }
}

@media (max-width: 640px) {
    .cart .container .cart-wrapper .items-wrapper .cart-item .text .price span {
        font-size: 16px;
    }
}

.cart .container .cart-wrapper .items-wrapper .cart-item .text .quatinty-mang {
    padding: .3rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-width: 120px;
    background-color: #1C2E40;
    color: white;
}

.cart .container .cart-wrapper .items-wrapper .cart-item .text .quatinty-mang button {
    font-size: 1rem;
    color: white;
    background-color: transparent;
    border: none;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cart .container .cart-wrapper .items-wrapper .cart-item .text .quatinty-mang button.inc {
    background-color: #cf2025;
    border-radius: 50%;
}

.cart .container .cart-amount {
    padding: 2rem 1.25rem;
    gap: 10px;
    background: #FCFAF3;
    border: 1px solid #F1F1F1;
    border-radius: 6px;
}

@media (max-width: 640px) {
    .cart .container .cart-amount {
        padding: 1rem;
    }
}

.cart .container .cart-amount p {
    font-size: 18px;
    line-height: 180%;
    text-align: left;
    color: #4B4B4B;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.cart .container .cart-amount p:not(.cart .container .cart-amount p:last-child) {
    margin-bottom: 1.25rem;
}

.cart .container .cart-amount p span:last-child {
    color: #1B1B1B;
}

.cart .container .cart-amount p.bolder {
    font-weight: bold;
}

.cart .container .cart-amount p.bolder span:last-child {
    color: #cf2025;
}

.cart .container .cart-amount .seperater {
    margin: 2rem 0;
    border-bottom: 1px dashed #4B4B4B;
    width: 100%;
}

.cart .container .promo-code {
    padding: 2rem 1.25rem;
    background: #FCFAF3;
    border: 1px solid #F1F1F1;
    border-radius: 6px;
    margin-top: 1rem;
}

@media (max-width: 640px) {
    .cart .container .promo-code {
        padding: 1rem;
    }
}

.cart .container .promo-code h2 {
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 120%;
    color: #1B1B1B;
}

@media (max-width: 1280px) {
    .cart .container .promo-code h2 {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .cart .container .promo-code h2 {
        font-size: 1.15rem;
    }
}

@media (max-width: 640px) {
    .cart .container .promo-code h2 {
        font-size: 1rem;
    }
}

.cart .container .promo-code p {
    font-size: 16px;
    line-height: 120%;
    color: #6E6E6E;
    margin: .5rem 0 1rem;
}

.cart .container .promo-code .sub-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.cart .container .promo-code .sub-wrapper .input-group {
    position: relative;
    flex: 1;
}

.cart .container .promo-code .sub-wrapper .input-group i {
    font-size: 1rem;
    top: 50%;
    right: .5rem;
    transform: translateY(-50%);
    position: absolute;
}

.cart .container .promo-code .sub-wrapper .input-group input {
    padding: 12px;
    background: #FDFBF4;
    border: 1.2px solid #F1F1F1;
    border-radius: 6px;
    font-size: 1rem;
    color: #1B1B1B;
    width: 100%;
    padding-right: 2.5rem;
    width: 100%;
}

.cart .container .promo-code .sub-wrapper .input-group input:focus {
    box-shadow: none;
    outline: none;
    border: 1px solid #1C2E40;
}

.cart .container .Purchase-btn {
    width: 100%;
    margin-top: 2rem;
}

.donate-link {
    color: #1B1B1B !important;
}

.donate-link span {
    color: #cf2025 !important;
}

.donate-header {
    width: 100% !important;
}

.donate-header h2 {
    text-align: right !important;
}

.radion-curr label {
    display: block;
    width: 100%;
    padding: 1rem;
    border-radius: 6px;
    color: #1B1B1B;
    transition: all .3s ease-in;
    text-align: center !important;
    font-weight: 600;
}

.radion-curr input {
    display: none;
}

.radion-curr input:checked+label {
    background-color: #cf2025;
}

.edit-profile-form-wrapper-column {
    flex-direction: column;
    gap: 2rem;
}

.message {
    width: 100%;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    justify-content: center;
    padding: 1.5rem;
    background: #FCFAF3;
    border: 1px solid #F1F1F1;
    border-radius: 6px;
    margin: 5rem auto;
}

@media (max-width: 768px) {
    .message {
        padding: 1rem;
    }
}

.message img {
    width: 150px;
    height: 150px;
}

@media (max-width: 768px) {
    .message img {
        width: 110px;
        height: 110px;
    }
}

.message .svg {
    width: 200px;
    height: 200px;
}

@media (max-width: 768px) {
    .message .svg {
        width: 150px;
        height: 150px;
    }
}

.message h2 {
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 37px;
    text-align: center;
    color: #000000;
}

@media (max-width: 768px) {
    .message h2 {
        font-size: 18px;
    }
}

.message button {
    margin-top: 1rem;
}

.message p {
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    text-align: center;
    letter-spacing: -0.01em;
    color: #4B4B4B;
}

@media (max-width: 768px) {
    .message p {
        font-size: 13px;
    }
}

.search-types {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 3rem 0;
}

@media (max-width: 1280px) {
    .search-types {
        padding: 2rem 0;
    }
}

@media (max-width: 1024px) {
    .search-types {
        padding: 1.5rem 0;
    }
}

.search-types button {
    padding: .75rem 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .5rem;
    background-color: transparent;
    color: #94A3B8;
    border: none;
    font-size: 1rem;
    border-radius: .5rem;
    line-height: 1.5rem;
    transition: all .3s ease-in-out;
}

.search-types button.active,
.search-types button:hover {
    color: #FFFDF7;
    background-color: #1C2E40;
}

@media (max-width: 1280px) {
    .search-types button {
        padding: .5rem 1rem;
        font-size: .8rem;
    }
}

.search-types button img {
    width: 1.5rem;
    height: 1.5rem;
}

@media (max-width: 1536px) {
    .search-types button img {
        width: 1.25rem;
        height: 1.25rem;
    }
}

.unlock-your-full-plan {
    padding: 5rem 0;
}

@media (max-width: 1280px) {
    .unlock-your-full-plan {
        padding: 3.5rem 0;
    }
}

@media (max-width: 1024px) {
    .unlock-your-full-plan {
        padding: 2.5rem 0;
    }
}

.unlock-your-full-plan .container {
    display: grid;
    grid-template-columns: 7fr 3fr;
    gap: 2.5rem;
}

@media (max-width: 1536px) {
    .unlock-your-full-plan .container {
        gap: 2rem;
        grid-template-columns: 6.5fr 3.5fr;
    }
}

@media (max-width: 1024px) {
    .unlock-your-full-plan .container {
        grid-template-columns: 1fr;
    }
}

.unlock-your-full-plan .container .text h1 {
    font-weight: 700;
    font-size: 4rem;
    color: #1B1B1B;
    line-height: 130%;
    margin-bottom: 2rem;
}

@media (max-width: 1536px) {
    .unlock-your-full-plan .container .text h1 {
        font-size: 3.25rem;
    }
}

@media (max-width: 1280px) {
    .unlock-your-full-plan .container .text h1 {
        font-size: 2.75rem;
        margin-bottom: 1.25rem;
    }
}

@media (max-width: 1024px) {
    .unlock-your-full-plan .container .text h1 {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .unlock-your-full-plan .container .text h1 {
        font-size: 1.75rem;
        margin-bottom: .75rem;
    }
}

.unlock-your-full-plan .container .text h1 span {
    color: #cf2025;
}

.unlock-your-full-plan .container .text p {
    font-weight: 400;
    font-size: 1.15rem;
    color: #4B4B4B;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

@media (max-width: 1536px) {
    .unlock-your-full-plan .container .text p {
        font-size: 1.1rem;
    }
}

@media (max-width: 1280px) {
    .unlock-your-full-plan .container .text p {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }
}

@media (max-width: 1024px) {
    .unlock-your-full-plan .container .text p {
        font-size: .8rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 640px) {
    .unlock-your-full-plan .container .text p {
        font-size: 12px;
        margin-bottom: 1rem;
    }
}

.unlock-your-full-plan .container .text a {
    width: max-content;
}

.unlock-your-full-plan .container .feature-cards-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    height: max-content;
}

@media (max-width: 1024px) {
    .unlock-your-full-plan .container .feature-cards-wrapper {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .unlock-your-full-plan .container .feature-cards-wrapper {
        grid-template-columns: 1fr 1fr;
    }
}

.unlock-your-full-plan .container .feature-cards-wrapper .card {
    background: #FCFAF3;
    border: 0.2px solid #F1F1F1;
    border-radius: 6px;
    width: 100%;
    overflow: hidden;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.unlock-your-full-plan .container .feature-cards-wrapper .card:nth-child(2n + 2) {
    transform: translateY(2rem);
}

@media (max-width: 1024px) {
    .unlock-your-full-plan .container .feature-cards-wrapper .card:nth-child(2n + 2) {
        transform: none;
    }
}

.unlock-your-full-plan .container .feature-cards-wrapper .card img {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
}

.unlock-your-full-plan .container .feature-cards-wrapper .card h2 {
    font-size: 25px;
    line-height: 36px;
    text-align: center;
    color: #111827;
}

@media (max-width: 1024px) {
    .unlock-your-full-plan .container .feature-cards-wrapper .card h2 {
        font-size: 22px;
        line-height: 28px;
    }
}

.unlock-your-full-plan .container .feature-cards-wrapper .card p {
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #111827;
}

@media (max-width: 1024px) {
    .unlock-your-full-plan .container .feature-cards-wrapper .card p {
        font-size: 14px;
    }
}

.plans {
    padding-bottom: 5rem;
    position: relative;
}

@media (max-width: 1280px) {
    .plans {
        padding-bottom: 3.5rem;
    }
}

@media (max-width: 1024px) {
    .plans {
        padding-bottom: 2.5rem;
    }
}

.plans .after {
    position: absolute;
    right: 0;
    top: -100px;
    width: 250px;
    z-index: -1;
}

@media (max-width: 768px) {
    .plans .after {
        width: 120px;
        top: -60px;
    }
}

.plans .before {
    position: absolute;
    left: 0;
    z-index: -1;
    bottom: -200px;
    width: 250px;
}

@media (max-width: 768px) {
    .plans .before {
        width: 120px;
        bottom: -130px;
    }
}

.plans .container h1 {
    font-weight: 700;
    font-size: 2.25rem;
    text-align: center;
    color: #1C1C1C;
    margin-bottom: 1.5rem;
}

@media (max-width: 1536px) {
    .plans .container h1 {
        font-size: 2.1rem;
        margin-bottom: 1.25rem;
    }
}

@media (max-width: 1280px) {
    .plans .container h1 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
}

@media (max-wdidth: 1024px) {
    .plans .container h1 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .plans .container h1 {
        font-size: 1.5rem;
        margin-bottom: .25rem;
    }
}

@media (max-width: 640px) {
    .plans .container h1 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        line-height: 130%;
    }
}

.plans .container>p {
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 2rem;
    text-align: center;
    color: #4B4B4B;
    max-width: 75%;
    margin: auto;
    margin-bottom: 5rem;
}

@media (max-width: 1536px) {
    .plans .container>p {
        margin-bottom: 4.5rem;
    }
}

@media (max-width: 1280px) {
    .plans .container>p {
        margin-bottom: 4rem;
        font-size: 1rem;
    }
}

@media (max-width: 1024px) {
    .plans .container>p {
        margin-bottom: 4rem;
        font-size: 1rem;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .plans .container>p {
        margin-bottom: 3.5rem;
        font-size: .9rem;
        max-width: 100%;
        line-height: 140%;
    }
}

@media (max-width: 640px) {
    .plans .container>p {
        margin-bottom: 2.5rem;
        font-size: .8rem;
        max-width: 100%;
        line-height: 160%;
    }
}

.plans .plans-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.25rem;
}

@media (max-width: 1024px) {
    .plans .plans-wrapper {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .plans .plans-wrapper {
        grid-template-columns: 1fr;
    }
}

.plans .plans-wrapper .plan-card {
    padding: 1.5rem;
    background: #FCFAF3;
    border: 1px solid #F1F1F1;
    border-radius: 6px;
}

@media (max-width: 1280px) {
    .plans .plans-wrapper .plan-card {
        padding: 1rem;
    }
}

.plans .plans-wrapper .plan-card .header {
    height: 50px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.plans .plans-wrapper .plan-card .header .img {
    width: 50px;
    height: 50px;
    padding: 10px;
}

.plans .plans-wrapper .plan-card .header .img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.plans .plans-wrapper .plan-card .header .label {
    font-size: 14px;
    color: #6B7280;
    padding: 10px 1.5rem;
    border-radius: 50px;
    border: 1px solid #E5E7EB;
}

.plans .plans-wrapper .plan-card .content h2 {
    font-size: 24px;
    color: #1B1B1B;
}

@media (max-width: 1280px) {
    .plans .plans-wrapper .plan-card .content h2 {
        font-size: 22px;
    }
}

.plans .plans-wrapper .plan-card .content p,
.plans .plans-wrapper .plan-card .content ul {
    font-size: 18px;
    color: #6B7280;
}

@media (max-width: 1536px) {

    .plans .plans-wrapper .plan-card .content p,
    .plans .plans-wrapper .plan-card .content ul {
        font-size: 16px;
    }
}

@media (max-width: 1280px) {

    .plans .plans-wrapper .plan-card .content p,
    .plans .plans-wrapper .plan-card .content ul {
        font-size: 14px;
    }
}

.plans .plans-wrapper .plan-card .content p {
    margin-bottom: 1rem;
}

.plans .plans-wrapper .plan-card .content .price {
    font-size: 35px;
    color: #1B1B1B;
}

@media (max-width: 1280px) {
    .plans .plans-wrapper .plan-card .content .price {
        font-size: 30px;
    }
}

.plans .plans-wrapper .plan-card .content .price span {
    font-size: 18px;
    color: #6B7280;
}

@media (max-width: 1280px) {
    .plans .plans-wrapper .plan-card .content .price span {
        font-size: 16px;
    }
}

.plans .plans-wrapper .plan-card .content button {
    padding: 16px;
    background: #cf2025;
    border-radius: 50px;
    font-size: 18px;
    color: #FFFFFF;
    border: none;
    transition: all .3s ease-in;
    margin: 1rem 0 2rem;
    width: 100%;
}

@media (max-width: 1280px) {
    .plans .plans-wrapper .plan-card .content button {
        font-size: 16px;
        padding: 14px;
        margin: .75rem 0 1.5rem;
    }
}

.plans .plans-wrapper .plan-card .content button:hover {
    background-color: #1C2E40;
}

.plans .plans-wrapper .plan-card .content .features h2 {
    font-size: 18px;
    color: #1B1B1B;
    margin-bottom: 1rem;
    font-weight: 400;
}

.plans .plans-wrapper .plan-card .content .features ul {
    list-style: none;
    line-height: 180%;
}

.plans .plans-wrapper .plan-card .content .features ul li {
    display: flex;
}

@media (max-width: 1280px) {
    .plans .plans-wrapper .plan-card .content .features ul li {
        line-height: 22px;
        margin-bottom: .25rem;
    }
}

.plans .plans-wrapper .plan-card .content .features ul li::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f058";
    /* The icon code */
    display: inline-block;
    margin-right: 0.5em;
    /* space before icon */
    color: #1C2E40;
    /* optional color */
    margin-left: .75rem;
}

.plans .plans-wrapper .plan-card.active {
    background-color: #cf2025;
    border-color: #cf2025;
}

.plans .plans-wrapper .plan-card.active .header .img {
    background-color: #D3A828;
    border-radius: 4px;
}

.plans .plans-wrapper .plan-card.active .content h2 {
    color: #FFFFFF;
}

.plans .plans-wrapper .plan-card.active .content p {
    color: #FFFFFF;
}

.plans .plans-wrapper .plan-card.active .content .price {
    color: #FFFFFF;
}

.plans .plans-wrapper .plan-card.active .content .price span {
    color: #fff;
}

.plans .plans-wrapper .plan-card.active .content ul {
    color: #FFFFFF;
}

.plans .plans-wrapper .plan-card.active .content ul li::before {
    color: #fff;
}

.plans .plans-wrapper .plan-card.active .content .features h2 {
    color: #FFFFFF;
}

.plans .plans-wrapper .plan-card.active .content button {
    background-color: #FFFFFF;
    color: #1B1B1B;
}

.plans .plans-wrapper.my-plan-wrapper .plan-card {
    grid-column: 2;
}

@media (max-width: 768px) {
    .plans .plans-wrapper.my-plan-wrapper .plan-card {
        grid-column: 1;
    }
}

.questions {
    padding-bottom: 5rem;
}

@media (max-width: 1280px) {
    .questions {
        padding-bottom: 3.5rem;
    }
}

@media (max-width: 1024px) {
    .questions {
        padding-bottom: 2.5rem;
    }
}

.questions.margin-top {
    padding-top: 5rem;
}

@media (max-width: 1280px) {
    .questions.margin-top {
        padding-top: 3.5rem;
    }
}

@media (max-width: 1024px) {
    .questions.margin-top {
        padding-top: 2.5rem;
    }
}

.questions .container h1 {
    font-weight: 700;
    font-size: 2.25rem;
    text-align: center;
    color: #1C1C1C;
    margin-bottom: 1.5rem;
}

@media (max-width: 1536px) {
    .questions .container h1 {
        font-size: 2.1rem;
        margin-bottom: 1.25rem;
    }
}

@media (max-width: 1280px) {
    .questions .container h1 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
}

@media (max-wdidth: 1024px) {
    .questions .container h1 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .questions .container h1 {
        font-size: 1.5rem;
        margin-bottom: .25rem;
    }
}

@media (max-width: 640px) {
    .questions .container h1 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        line-height: 130%;
    }
}

.questions .container>p {
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 2rem;
    text-align: center;
    color: #4B4B4B;
    max-width: 75%;
    margin: auto;
    margin-bottom: 5rem;
}

@media (max-width: 1536px) {
    .questions .container>p {
        margin-bottom: 4.5rem;
    }
}

@media (max-width: 1280px) {
    .questions .container>p {
        margin-bottom: 4rem;
        font-size: 1rem;
    }
}

@media (max-width: 1024px) {
    .questions .container>p {
        margin-bottom: 4rem;
        font-size: 1rem;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .questions .container>p {
        margin-bottom: 3.5rem;
        font-size: .9rem;
        max-width: 100%;
        line-height: 140%;
    }
}

@media (max-width: 640px) {
    .questions .container>p {
        margin-bottom: 2.5rem;
        font-size: .8rem;
        max-width: 100%;
        line-height: 160%;
    }
}

.questions .container .questions-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

.questions .container .questions-wrapper .question {
    background: #FFFDF7;
    border: 0.4px solid #D9D9D9;
    border-radius: 8px;
    padding: 1rem;
    width: calc(50% - .25rem);
    height: max-content;
}

@media (max-width: 1280px) {
    .questions .container .questions-wrapper .question * {
        font-size: .8rem !important;
    }
}

@media (max-width: 768px) {
    .questions .container .questions-wrapper .question {
        width: 100%;
    }
}

.questions .container .questions-wrapper .question .header {
    position: relative;
    padding-left: 1.5rem;
    cursor: pointer;
}

.questions .container .questions-wrapper .question .header::after {
    content: "\f078";
    /* Unicode for fa-chevron-down */
    font-family: "Font Awesome 5 Free";
    /* Or "Font Awesome 6 Free" depending on version */
    font-weight: 900;
    /* Solid style */
    display: inline-block;
    margin-right: 0.5em;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    font-size: .75rem;
    color: #4B4B4B;
    /* space before the icon */
}

.questions .container .questions-wrapper .question .body,
.questions .container .questions-wrapper .question .footer {
    max-height: 0;
    overflow: hidden;
    padding-top: 0;
    margin-top: 0;
    transition: max-height 0.4s ease, padding-top 0.4s ease, margin-top 0.4s ease;
}

.questions .container .questions-wrapper .question.active .header::after {
    transform: translateY(-50%) rotate(-180deg);
    /* Rotate icon */
}

.questions .container .questions-wrapper .question.active .body,
.questions .container .questions-wrapper .question.active .footer {
    max-height: 500px;
    /* big enough to fit content */
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 1px solid #D9D9D9;
}

.questions .container .questions-wrapper .question.active .footer {
    border-top-style: dashed;
}

.saved-addresses .container>h2 {
    font-weight: 700;
    font-size: 2.25rem;
    line-height: 120%;
    color: #1B1B1B;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

@media (max-width: 1536px) {
    .saved-addresses .container>h2 {
        font-size: 2rem;
    }
}

@media (max-width: 1280px) {
    .saved-addresses .container>h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .saved-addresses .container>h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 640px) {
    .saved-addresses .container>h2 {
        font-size: 1.25rem;
    }
}

.saved-addresses .container>h2 span {
    color: #cf2025;
}

.saved-addresses .container .addresses-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 1.25rem;
}

@media (max-width: 768px) {
    .saved-addresses .container .addresses-wrapper {
        grid-template-columns: 1fr;
    }
}

.cart-wrapper .items-wrapper .add-address-btn {
    margin-bottom: 1.5rem;
}

.cart-wrapper .items-wrapper .order-item img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    object-position: center 30%;
    border-radius: 10px;
}

@media (max-width: 1280px) {
    .cart-wrapper .items-wrapper .order-item img {
        width: 140px;
        height: 140px;
    }
}

@media (max-width: 1024px) {
    .cart-wrapper .items-wrapper .order-item img {
        width: 100%;
        height: 190px;
    }
}

@media (max-width: 640px) {
    .cart-wrapper .items-wrapper .order-item img {
        height: 150px;
        border-radius: 10px;
    }
}

.cart-wrapper .items-wrapper .order-item .text {
    padding: 1rem;
    flex: 1;
    display: grid;
    grid-template-rows: max-content max-content 1fr;
    padding-bottom: 0 !important;
}

@media (max-width: 1536px) {
    .cart-wrapper .items-wrapper .order-item .text {
        padding: .75rem;
    }
}

@media (max-width: 640px) {
    .cart-wrapper .items-wrapper .order-item .text {
        padding: 0 !important;
    }
}

.cart-wrapper .items-wrapper .order-item .text h2 {
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 150%;
    letter-spacing: -0.01em;
    color: #1C2E40;
    margin-bottom: .25rem;
}

@media (max-width: 1536px) {
    .cart-wrapper .items-wrapper .order-item .text h2 {
        font-size: 1.15rem;
        line-height: 140%;
    }
}

@media (max-width: 1280px) {
    .cart-wrapper .items-wrapper .order-item .text h2 {
        font-size: 1rem;
    }
}

@media (max-width: 640px) {
    .cart-wrapper .items-wrapper .order-item .text h2 {
        font-size: 1rem;
    }
}

.cart-wrapper .items-wrapper .order-item .text p {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #808494;
    margin-bottom: 1rem;
}

@media (max-width: 1536px) {
    .cart-wrapper .items-wrapper .order-item .text p {
        font-size: 14px;
    }
}

@media (max-width: 1280px) {
    .cart-wrapper .items-wrapper .order-item .text p {
        font-size: 14px;
        line-height: 18px;
    }
}

@media (max-width: 640px) {
    .cart-wrapper .items-wrapper .order-item .text p {
        font-size: 12px;
        line-height: 15px;
    }
}

.cart-wrapper .items-wrapper .order-item .text p.author {
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: -0.01em;
    display: block !important;
    margin-top: .25rem;
    /* gray-text */
    color: #4B4B4B;
}

@media (max-width: 1280px) {
    .cart-wrapper .items-wrapper .order-item .text p.author {
        font-size: 14px;
    }
}

@media (max-width: 640px) {
    .cart-wrapper .items-wrapper .order-item .text p.author {
        font-size: 10px;
        margin-bottom: .5rem;
    }
}

.cart-wrapper .items-wrapper .order-item .text p.author span {
    color: #cf2025;
}

.cart-wrapper .items-wrapper .order-item .info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    margin-top: auto;
    margin-top: .5rem;
}

@media (max-width: 640px) {
    .cart-wrapper .items-wrapper .order-item .info {
        margin-top: 0.5rem;
        flex-direction: column;
        align-items: start;
        gap: 1rem;
    }
}

.cart-wrapper .items-wrapper .order-item .info .price {
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 150%;
    letter-spacing: -0.01em;
    color: #cf2025;
}

@media (max-width: 1280px) {
    .cart-wrapper .items-wrapper .order-item .info .price {
        font-size: 1.25rem;
    }
}

@media (max-width: 640px) {
    .cart-wrapper .items-wrapper .order-item .info .price {
        font-size: 1rem;
    }
}

.cart-wrapper .items-wrapper .order-item .info .price span {
    color: #BCBCBC;
    font-weight: 400;
    text-decoration: line-through;
}

.cart-wrapper .items-wrapper .order-item .info .btns {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    width: 400px;
}

@media (max-width: 640px) {
    .cart-wrapper .items-wrapper .order-item .info .btns {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
}

.cart-wrapper .items-wrapper .order-item .info button {
    padding: .75rem 1.5rem;
    border-radius: 6px;
    border: 1.5px solid #1C2E40;
    background-color: transparent;
    color: #1C2E40;
    font-size: 1rem;
    width: max-content;
}

@media (max-width: 1536px) {
    .cart-wrapper .items-wrapper .order-item .info button {
        width: 100%;
    }
}

@media (max-width: 1280px) {
    .cart-wrapper .items-wrapper .order-item .info button {
        padding: .6rem;
        font-size: 14px;
    }
}

@media (max-width: 640px) {
    .cart-wrapper .items-wrapper .order-item .info button {
        width: 100%;
        padding: 0.5rem 1rem;
        font-size: 10px;
    }
}

.cart-wrapper .items-wrapper .order-item .info button.download-btn {
    background-color: #1C2E40;
    color: #fff;
}



