:root {
    --primary-blue: #2a4f82;
    --primary-black: #1f1f1e;
    --primary-grey: #cccccc;
    --primary-grey-light: #F4F4F1;
    --primary-font: "Geist", sans-serif;
}

/* Set default font settings */
body {
    /* font-family: "Euclid", sans-serif; */
    font-family: "Geist", sans-serif;
    font-optical-sizing: auto;
    line-height: 1.5;
    background-color: #ffffff;
    color: #1f1f1e;
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased; /* Smoothens font on macOS and iOS */
    -moz-osx-font-smoothing: grayscale;
}

header {
    height: 140px;
    position: relative;
}
header .header-box {
    background-color: var(--primary-blue);
    position: fixed;
    width: 100%;
    z-index: 1000;
}
header .header-burger-icon {
    display: none;
}
@media screen and (max-width: 765px) {
    header {
        height: 80px;
    }
}
@media screen and (max-width: 992px) {
    header .header-burger-icon {
        display: block;
    }
}
header .header-wrap {
    color: #ffffff;
}
header .header-wrap .header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
}
header .header-wrap .header-top .header-right {
    width: calc(100% - 274px);
    display: flex;
    align-items: center;
    justify-content: end;
}
header .header-wrap .header-top .header-right .header-search-icon,
header .header-wrap .header-top .header-right .header-lang {
    display: flex;
}
@media screen and (max-width: 992px) {
    header .header-wrap .header-top .header-right .header-search-icon,
    header .header-wrap .header-top .header-right .header-lang {
        display: none;
    }
}
header .header-wrap .header-top .header-right span {
    cursor: pointer;
}
header .header-wrap .header-top .header-right .header-socials {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}
header .header-wrap .header-top .header-right .header-socials a {
    height: 36px;
    width: 36px;
}
@media screen and (max-width: 992px) {
    header .header-wrap .header-top .header-right .header-socials {
        display: none;
    }
}
header .header-wrap .header-top .header-right .header-socials a {
    transition: all 0.3s ease;
}
header .header-wrap .header-top .header-right .header-socials a:hover {
    transform: scale(1.2);
}
header .header-wrap .header-top .header-right .header-features {
    display: flex;
    align-items: center;
    padding-left: 24px;
    gap: 18px;
}
header .header-wrap .header-nav {
    height: 60px;
    display: flex;
}
header .header-wrap .header-nav .navbar {
    width: 100%;
}
header .header-wrap .header-nav .navbar .navmenu-wrapper {
    width: 100%;
}
header .header-wrap .header-nav .navbar .navmenu-list {
    z-index: 100;
}
header .header-wrap .header-nav .navbar .navmenu-list .navbar-nav .nav-link {
    padding-left: 0;
    font-family: var(--primary-font);
}
@media screen and (max-width: 992px) {
    header .header-wrap .header-nav {
        display: none;
    }
}
header .langs-desk {
    width: 45px;
}
header .langs-desk .dropdown-menu {
    min-width: unset;
    width: 70px;
}
header .langs-desk button {
    display: flex;
    gap: 4px;
    align-items: center;
    background: var(--primary-blue) !important;
    border: unset;
    /* font-family: "Unbounded", sans-serif; */
}
.btn-dark {
    position: absolute;
    right: 18px;
    top: 4px;
    border-radius: unset;
    padding: 5px 16px;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: "JetBrains Mono", monospace;
}
.header-search-wrap {
    width: 100%;
    display: flex;
}
header .langs-desk button::after {
    display: none;
}
header .langs-desk button:hover {
    color: #fff;
    background-color: unset;
    border-color: unset;
}
header .langs-desk button:focus-visible {
    box-shadow: unset;
    color: #fff;
    background-color: unset;
    border-color: unset;
}
header .mob-lang button {
    background-color: #fff !important;
    color: var(--primary-blue);
    padding: 6px 12px;
    border-radius: unset;
}
header .header-logo-wrap {
    gap: 4px;
    width: 305px;
    color: #ffffff;
    margin-left: -10px;
    cursor: pointer;
}
header .header-logo-wrap .header-logo {
    width: 92px;
    height: 39px;
}
header .header-logo-wrap .header-name {
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
}
.nav-link span:first-child {
    font-weight: 600;
}
header .modal-menu {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
header .modal-menu .mod-menu-item {
    color: #bbbbba;
    cursor: pointer;
    font-size: 28px;
    font-weight: 300;
    line-height: 33px;
    transform-origin: left;
    transition: all 0.3s ease;
    width: fit-content;
    display: flex;
    align-items: center;
    position: relative;
}
header .modal-menu .mod-menu-item .sub-menu {
    display: flex;
    position: absolute;
    top: 0;
}
header .modal-menu .mod-menu-item .sub-menu .sub-menu-wrap {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 24px;
    background-color: #ffffff;
}
header .modal-menu .mod-menu-item .sub-menu .sub-title {
    width: fit-content;
}
header .modal-menu .mod-menu-item .sub-menu li {
    color: #bbbbba;
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
}
header .modal-menu .mod-menu-item:hover .menu-item-list {
    visibility: visible;
    opacity: 1;
}
header .modal-menu .mod-menu-item:hover {
    transform: scale(1.15); /* Increases size by 15% */
    color: #ffffff;
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-left: 0;
    }

}

@media (max-width: 790px) {
    header .header-logo-wrap .header-name {
        font-weight: 500;
    }
    header .header-logo-wrap {
        gap: 0px;
    }
}
.desk-header-search {
    display: none;
    position: absolute;
    top: 45%;
    left: 27%;
    transform: translateY(-42%);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    margin-right: -21px;
    width: 70%;
    z-index: 100;
}
@media screen and (max-width: 992px) {
    .desk-header-search {
        display: none;
    }
}
.desk-header-search input {
    width: 100%;
}
.desk-header-search input:focus {
    border: 1px solid #1f1f1e;
    height: 44px;
    width: 100%;
    box-shadow: 0 0 0 4px rgba(150, 186, 241, 0.25);
}

.desk-header-search.open {
    opacity: 1;
    visibility: visible;
    display: block; /* Brings it back into view */
}

.header-search-close {
    display: none;
}

.header-search-mobile {
    position: relative;
}
.header-search-mobile span {
    position: absolute;
    right: 20px;
    top: 8px;
}

.mob-menu {
    display: flex;
    flex-direction: column;
}
.mob-nav-menu .nav-i.passive .nav-link {
    color: #bbbbba !important;
}

.mob-menu .mob-nav-menu {
    margin-top: 36px;
}
.mob-nav-menu .dropdown-item {
    color: #a5a4a4;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.mob-nav-menu .dropdown-menu {
    width: 100%;
}
.clear-filter {
    display: none;
}
.filter-dropdown button {
    width: 110px;
}
.sub-menu {
    box-shadow: unset !important;
    top: 39px !important;
}
.sub-menu .dropdown-item {
    cursor: pointer;
}

.mob-nav-menu .dropdown-item:active,
.mob-nav-menu .dropdown-item:focus,
.mob-nav-menu .dropdown-item:hover {
    color: var(--primary-blue) !important;
    background-color: white !important;
}
.mob-nav-menu .dropdown-item.active {
    color: var(--primary-blue) !important;
    background-color: #fff !important;
}

.mob-menu .navmenu-list button:hover {
    opacity: 1 !important;
}

.mob-menu .search-bar-mob {
    display: flex;
    align-items: center;
    gap: 4px;
}
.mob-menu .search-bar-mob form {
    width: 84%;
}
.mob-menu .search-bar-mob .lang-mobile {
    padding: 4px;
    background-color: #fff;
    color: var(--primary-blue);
    width: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
}
.mob-menu .address-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: #fff;
    font-size: 12px;
    font-weight: 400;
}
.mob-menu .mob-socials {
    display: flex;
    gap: 24px;
}
.mob-menu .mob-socials .mob-s-icon {
    width: 24px;
    height: 24px;
}
.mob-menu .mob-socials .mob-s-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mob-menu .mob-menu-bottom {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.mob-menu .mob-lang button {
    color: var(--primary-blue) !important;
}
.mob-menu .mob-lang .dropdown-menu {
    width: 50px;
}
footer {
    background-color: #f4f4f1;
    padding: 41px 0 0;
    position: relative;
}
.toaster {
    width: 332px;
    height: auto;
    background-color: #fff;
    position: fixed;
    bottom: 43px;
    right: 0;
    box-shadow: 0px 2px 4px 0px #0000001a;
}
.toast-cont-wrap {
    display: flex;
    align-items: center;
    padding: 22px 14px;
    gap: 12px;
    font-size: 16px;
}
.toast-prog-bar {
    width: 0%;
    height: 5px;
    background-color: inherit;
    transition: width 0.1s linear;
}
.toaster span {
    font-size: 16px;
}
.toaster.success {
    color: #5e885d;
}
.toast-prog-bar.success {
    background-color: #5e885d;
}
.toast-prog-bar.error {
    background-color: #ee4e4e;
}
.toaster.error {
    color: #ee4e4e;
}
footer .footer-top {
    display: flex;
    justify-content: space-between;
}
footer .footer-socials {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 8px;
    padding-left: 25px;
}
footer .footer-socials a {
    transition: all ease 0.3s;
}
footer .footer-socials a:hover {
    transform: scale(1.2);
}
footer .footer-name {
    display: flex;
    flex-direction: column;
    font-weight: 600;
}

@media screen and (max-width: 992px) {
    footer .footer-name {
        display: none !important;
    }
    footer .footer-socials {
        gap: 4px;
        padding-left: 12px;
    }
}
.input-error {
    border: 1px solid #fe5555 !important;
}
.input-error input,
.input-error select {
    border: 1px solid transparent !important;
}
.input-error-msg {
    color: #fe5555;
    font-size: 10px;
    margin-bottom: -24px;
}
.share-item {
    cursor: pointer;
}
footer .footer-name a {
    font-size: 16px;
    line-height: 19px;
}
footer .f-nav-col:nth-child(2) {
    width: 175px;
}
footer .f-nav-col:nth-child(3) {
    width: 340px;
}


footer .f-nav-col h4 {
    margin-bottom: 4px;
    font-family: var(--primary-font);
    font-weight: 600;
    height: 30px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
footer .f-nav-col li.active {
    color: var(--primary-blue);
}
@media screen and (max-width: 992px) {
    footer .f-nav-col ul {
        display: flex;
        flex-wrap: wrap;
        gap: 6px 8px;
        margin-bottom: 14px;
    }
    footer .f-nav-col h4 {
        margin-bottom: 2px;
        font-family: var(--primary-font);
        font-weight: 400;
        height: 20px;
    }
}
footer .f-center-up {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 57px;
}
footer .footer-c-wrapper {
    border-bottom: 1px solid #cccccc;
}
@media screen and (max-width: 992px) {
    footer .footer-c-wrapper {
        border-bottom: none;
    }
}
footer .footer-c-wrapper .footer-center {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    padding: 36px 0;
}
@media screen and (max-width: 992px) {
    footer .footer-c-wrapper .footer-center {
        grid-template-columns: repeat(1, 1fr);
        padding: 48px 0 8px;
    }
}
footer .footer-c-wrapper .footer-menu-mob {
    display: none;
}
@media screen and (max-width: 992px) {
    footer .footer-c-wrapper .footer-menu-mob {
        display: block;
    }
}
footer .contact-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px 0;
}
@media screen and (max-width: 992px) {
    footer .contact-links {
        gap: 0;
        padding: 0;
    }
}
footer .contact-links h4 {
    text-align: center;
    font-family: var(--primary-font);
}
@media screen and (max-width: 992px) {
    footer .contact-links h4 {
        text-align: unset;
    }
}
footer .contact-links ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}
@media screen and (max-width: 992px) {
    footer .contact-links ul {
        gap: 0;
        flex-direction: column;
        align-items: start;
    }
}
footer h4 {
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
}
footer ul li {
    font-size: 14px;
    font-weight: 400;
    transition: all ease 0.3s;
}
footer ul li:hover,
footer ul li.active {
    color: var(--primary-blue);
    transform: scale(1.03, 1.03);
    text-shadow: 0px 0px 0px rgba(0, 0, 0, 0.5), 0px 0px 1px rgba(0, 0, 0, 0.5);
}

footer .f-cell {
    display: flex;
    gap: 57px;
}
footer .f-cell-subs {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
footer .f-cell-subs .f-menu-subs {
    display: flex;
    gap: 57px;
}
footer .f-cell-subs .c-subscribe-box {
    width: 500px;
    height: 200px;
    background-color: greenyellow;
}
footer .footer-bottom {
    background-color: var(--primary-blue);
}
footer .footer-bottom .f-bottom-wrapper {
    display: flex;
    padding: 24px 0;
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
}
@media screen and (max-width: 992px) {
    footer .footer-bottom .f-bottom-wrapper {
        align-items: center;
        justify-content: center;
        padding: 16px 0;
    }
}
footer .footer-bottom .f-bottom-wrapper .bottom-f-left-col {
    border-right: 1px solid rgba(255, 255, 255, 0.5);
    padding-right: 24px;
}
@media screen and (max-width: 992px) {
    footer .footer-bottom .f-bottom-wrapper .bottom-f-left-col {
        border-right: none;
    }
}
footer .footer-bottom .f-bottom-wrapper .bottom-f-right-col {
    padding-left: 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 992px) {
    footer .footer-bottom .f-bottom-wrapper .bottom-f-right-col {
        display: none;
    }
}

@media screen and (max-width: 992px) {
    .footer-menu-desk {
        display: none !important;
    }
}

.navmenu-list {
    justify-content: space-between;
    width: 100%;
}
.navmenu-list .nav-link {
    color: #ffffff;
    transition: all 0.3s ease;
}
.navmenu-list button {
    background-color: transparent;
    color: #ffffff;
    border-color: transparent;
    width: 100% !important;
    border-radius: unset !important;
    display: flex;
    align-items: center;
    gap: 6px;
}
.navmenu-list button.show {
    background-color: transparent !important;
    border-color: transparent !important;
}
.navmenu-list button::after {
    display: none;
}
.navmenu-list button:hover {
    opacity: 0.8;
    background-color: unset;
    border: 1px solid transparent;
}
.navmenu-list button:focus-visible {
    box-shadow: unset !important;
}
.navmenu-list button:active {
    background-color: transparent !important;
    border-color: transparent !important;
}

.menu-modal {
    width: 100% !important;
    background-color: var(--primary-blue) !important;
}

/* Style for the nested dropdown */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    top: 40px;
    left: 25px;
    margin-top: 0;
    margin-left: 0;
}

.dropdown-menu {
    border: unset;
    border-radius: unset;
    background-color: #fff;
}
.dropdown-menu .dropdown-item:hover {
    background-color: var(--primary-blue);
    color: #fff;
}
.header-nav-contact {
    margin-left: -30px;
}

/* General rotation for all dropdown items */
.dropdown-submenu > a > span > svg {
    transition: transform 0.3s ease;
    transform: rotate(0deg); /* Default rotation */
}

/* Rotation for the specific dropdown item when it is active */
.dropdown-submenu.open > a > span > svg {
    transform: rotate(60deg); /* Rotation when the submenu is open */
}

.dropdown-item:focus,
.dropdown-item:hover {
    background-color: unset;
    color: unset;
}

.dropdown-menu .dropdown-item a {
    width: 100%;
    display: inline-block;
}

.sub-menu .dropdown-item:focus,
.sub-menu .dropdown-item:hover {
    background-color: var(--primary-blue);
    color: #fff;
}

.filter-dropdown .filter-close {
    display: none;
}
.filter-dropdown button {
    border-radius: unset;
    color: #1f1f1e;
    gap: 32px !important;
    transition: all ease 0.3s;
}
.filter-dropdown button:after {
    all: unset;
    display: flex;
}
.filter-dropdown button:active,
.filter-dropdown button:hover,
.filter-dropdown button:focus-visible,
.filter-dropdown button:focus-within {
    color: #fff !important;
    background-color: var(--primary-blue) !important;
}
.filter-dropdown button:active .f-icon,
.filter-dropdown button:hover .f-icon,
.filter-dropdown button:focus-visible .f-icon,
.filter-dropdown button:focus-within .f-icon {
    color: white !important;
}

.share-dropdown {
    margin-left: auto;
    display: flex;
    justify-content: end;
}
.share-dropdown button {
    height: 44px;
    display: flex;
    align-items: center;
}
.share-dropdown .social-share {
    margin-left: 1px !important;
}
.share-dropdown button {
    background-color: #d2dde6;
    border: 1px solid #d2dde6;
    text-transform: uppercase;
    gap: 48px !important;
    display: flex;
    width: 160px;
}
.share-dropdown button span {
    font-weight: 700;
    font-family: "JetBrains Mono", monospace;
}

.news-swiper {
    width: 100%;
    height: 559px;
    position: relative;
    z-index: 10;
}
@media screen and (max-width: 768px) {
    .news-swiper {
        height: 450px;
    }
}

.slider-news {
    height: 100%;
    position: relative;
}
.slider-news img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.slider-news .news-content {
    position: absolute;
    top: 48px;
    z-index: 100;
    left: 24px;
}
.slider-news .news-content h3 {
    font-size: 44px;
    font-weight: 300;
    line-height: 52px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    letter-spacing: -2px;
    width: 50%;
}
@media screen and (max-width: 768px) {
    .slider-news .news-content h3 {
        font-size: 34px;
        line-height: 40px;
    }
}
.slider-news .news-content span {
    font-size: 18px;
    font-weight: 400;
    line-height: 25px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.news-slider-features {
    position: absolute;
    z-index: 100;
    bottom: 42px;
    left: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.news-slider-features .slider-arrows-wrapper {
    display: flex;
    gap: 8px;
    align-items: center;
}

.news-swiper-pagination {
    margin-bottom: 8px;
}

.swiper-pagination-bullet {
    width: 90px;
    border-radius: unset;
    height: 2px;
    background: rgba(249, 242, 235, 0.4);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    margin-right: 21px;
}
@media screen and (max-width: 768px) {
    .swiper-pagination-bullet {
        width: 33px;
    }
}

.swiper-pagination-bullet-active {
    background-color: white;
}

.slider-arrows-wrapper .news-slider-prev,
.slider-arrows-wrapper .news-slider-next {
    color: #ffffff;
    transition: all ease 0.3s;
}
.slider-arrows-wrapper .news-slider-prev:hover,
.slider-arrows-wrapper .news-slider-next:hover {
    color: #bbbbba;
}
.slider-arrows-wrapper .swiper-button-disabled {
    color: #bbbbba;
}
.news-s-title{
    font-size: 36px;
    font-weight: 500;
    letter-spacing: -1px;
    padding: 24px 0;
}


.news-main-photo {
    height: 660px;
    padding-top: 18px;
}
.news-main-photo img{
    object-fit: contain!important;
}

.news-single-swiper-wrap {
    position: relative;
    overflow-x: hidden;
    margin-top:18px;
}
.news-single-swiper-wrap .swiper-button-disabled {
    opacity: 0.9;
    color: #999999 !important;
}
.news-single-swiper-wrap .news-date-slide {
    padding: 8px;
    background-color: #c9ec66;
    opacity: 0.5;
    color: #1f1f1e;
    position: absolute;
    top: 40px;
    left: 0;
    font-size: 16px;
}
.news-single-swiper-wrap .swiper-btn {
    bottom: 67px;
    position: absolute;
    z-index: 100;
    background-color: #1f1f1e;
    color: white;
    padding: 8px;
}
@media screen and (max-width: 768px) {
    .news-single-swiper-wrap .swiper-btn {
        display: none;
    }
    .news-main-photo{
        height: 340px;
        padding-top: 12px;
    }
    .news-s-title{
        font-size: 18px;
        line-height: 20px;
    }
}
.news-single-swiper-wrap .news-s-swiper-btn-next {
    right: 0;
}
.news-single-swiper-wrap .news-sing-swiper-wrap {
    height: 660px;
}

@media screen and (max-width: 768px) {
    .news-single-swiper-wrap .news-sing-swiper-wrap {
        height: 200px;
    }
}
.news-single-swiper-wrap .swiper {
    width: 100%;
    height: 100%;
}
.news-single-swiper-wrap .swiper-slide {
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.news-single-swiper-wrap .swiper-slide.swiper-slide-active img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.swiper-slide img{
    object-fit: cover;
}

.news-single-swiper-wrap .swiper-slide img

.news-single-swiper-wrap .swiper {
    width: 100%;
    height: 300px;
    margin-left: auto;
    margin-right: auto;
}
.news-single-swiper-wrap .swiper-slide {
    background-size: cover;
    background-position: center;
}
.news-single-swiper-wrap .news-single-swiper2 {
    height: 80%;
    width: 100%;
}
.news-single-swiper-wrap .news-single-swiper {
    height: 20%;
    box-sizing: border-box;
    padding: 10px 0;
}
.news-single-swiper-wrap .news-single-swiper .news-sing-sw-slide {
    height: 140px;
    cursor: pointer;
}
@media screen and (max-width: 768px) {
    .news-single-swiper-wrap .news-single-swiper .news-sing-sw-slide {
        height: 70px;
    }
}
.news-single-swiper-wrap .news-single-swiper .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.4;
}
.news-single-swiper-wrap .news-single-swiper .swiper-slide-thumb-active {
    opacity: 1;
}

.news-single-swiper-wrap .swiper-slide {
    background: transparent; /* Keep slides transparent to show overlays */
    position: relative; /* Enable `::after` positioning */
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}


.news {
    background-color: #fafafa;
    padding-bottom: 32px;
}
.news .news-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(31, 31, 30, 0.2);
    z-index: 1;
}
.pages-grid-wrapper{
    gap: 56px 88px!important;
}


.news-list-wrapper {
    display: flex;
}
@media screen and (max-width: 992px) {
    .news-list-wrapper {
        flex-direction: column;
    }
    .pages-grid-wrapper{
        gap: 36px!important;
    }
}
.news-list-wrapper .news-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px 36px;
    padding-top: 48px;
}
@media screen and (max-width: 1200px) {
    .news-list-wrapper .news-list {
        grid-template-columns: repeat(4, 1fr);
    }
    .pages-grid-wrapper{
        gap: 52px!important;
    }
}
@media screen and (max-width: 1024px) {
    .news-list-wrapper .news-list {
        gap: 24px;
        grid-template-columns: repeat(3, 1fr);
    }
}
@media screen and (max-width: 992px) {
    .news-list-wrapper .news-list {
        grid-template-columns: repeat(1, 1fr);
        gap: 16px;
        padding-top: 24px;
    }
}
.news-list-wrapper .news-list .news-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
    cursor: pointer;
    /* Ensure AOS animations work properly */
    will-change: transform, opacity;
}
.news-list-wrapper .news-list .news-card:hover .news-card-img img {
    transform: scale(1.02);
}
@media screen and (max-width: 992px) {
    .news-list-wrapper .news-list .news-card {
        gap: 12px;
    }
}
.external-links{
    width: 91%;
}
.news-list-wrapper .news-list .news-card .news-card-img {
    height: 250px;
    position: relative;
}
.logo-card-img img {
    object-fit: contain !important;
}
.news-list-wrapper .news-list .news-card .news-card-img img {
    transform: scale(1);
    transition: all ease 0.3s;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Ensure AOS animations work properly */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}
.news-list-wrapper .news-list .news-card .news-card-img .news-date {
    position: absolute;
    bottom: 0;
    padding: 8px 12px;
    background-color: rgba(0, 0, 0, 0.05);
    color: #7a7474;
    font-size: 16px;
}
.news-list-wrapper .news-list .news-card .news-card-title {
    height: calc(100% - 300px);
}
.news-list-wrapper .news-list .news-card .news-card-title h4 {
    font-size: 20px;
    font-weight: 500;
    line-height: 27px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all ease 0.3s;
}
.news-card-title h4:hover {
    transform: scale(1.02);
    color: #2a4f82;
    font-weight: 600;
}
@media screen and (max-width: 992px) {
    .news-list-wrapper .news-list .news-card .news-card-title h4 {
        -webkit-line-clamp: 2;
        font-size: 18px;
        line-height: 20px;
    }
}

.news-all-list {
    margin-bottom: 170px;
}
@media screen and (max-width: 992px) {
    .news-all-list {
        margin-bottom: 24px;
    }
}

.part-with-left-col {
    display: flex;
    gap: 24px;
}
@media screen and (max-width: 992px) {
    .part-with-left-col {
        flex-direction: column;
        gap: 0;
    }
}

.heading-mobile {
    display: none;
    padding: 39px 0;
}
@media screen and (max-width: 992px) {
    .heading-mobile {
        display: block;
        padding: 28px 0;
    }
}
.heading-mobile span {
    font-size: 14px;
    font-weight: 700;
    padding: 32px 0;
    border-bottom: 1px solid #1f1f1e;
}

.usefull-links {
    margin: 48px 0;
}
@media screen and (max-width: 992px) {
    .usefull-links {
        margin-top: 24px;
    }
}
@media screen and (max-width: 992px) {
    .usefull-links .internal-links {
        display: none;
    }
}
.usefull-links .internal-links-mob {
    display: flex;
    gap: 16px;
    flex-direction: column;
}
@media screen and (min-width: 992px) {
    .usefull-links .internal-links-mob {
        display: none;
    }
}
.usefull-links .link-wrapper .link-card {
    padding: 24px 22px;
    background-color: #6287BA;
    color: #fff;
   
}

.usefull-links .link-wrapper .link-card .link-title {
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -1px;
    border-bottom: 1px solid #cccccc;
    padding-top: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 100px;
}
@media screen and (max-width: 992px) {
    .usefull-links .link-wrapper .link-card .link-title {
        font-size: 18px;
        padding: 0px 0 16px 0;
        height: 75px;
    }
}
.usefull-links .link-wrapper .link-card .link-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 18px;
    font-size: 16px;
    color: inherit;
}
.usefull-links .link-wrapper .link-card .link-details .link-d-text {
    display: flex;
    align-items: center;
    gap: 4px;
}
.usefull-links .link-wrapper .link-card .link-details .link-d-text span {
    display: inline-block;
    max-width: 240px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
@media screen and (max-width: 992px) {
    .usefull-links .link-wrapper .link-card .link-details .link-d-text span {
        max-width: 160px;
    }
}
.usefull-links .link-wrapper .link-card .link-details .link-icon {
    width: 24px;
    height: 24px;
}
.usefull-links .link-wrapper .link-card .link-details .link-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.usefull-links .link-wrapper .link-card .link-details .link-arr svg {
    transition: ease all 0.3s;
  
}
.usefull-links .link-wrapper .link-card:hover .link-arr svg {
    transform: rotate(-23deg);
}

.gallery {
    background-color: #f4f4f1;
    padding: 0 0 100px;
    margin: 48px 0;
}
.galleries-wrapper{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
}
@media screen and (max-width: 768px) {
    .galleries-wrapper{
        grid-template-columns: repeat(1, 1fr);
    }
}
@media screen and (min-width: 768px) and (max-width: 1196px) {
    .galleries-wrapper{
        grid-template-columns: repeat(2, 1fr);
    }
}
.galleries-wrapper-container{
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.galleries-wrapper .gallery-img{
    position: relative;
    height: 282px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.galleries-wrapper .gallery-img img{
    transition: transform 0.3s ease;
}





.galleries-wrapper .gallery-img:hover{

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.1);
}

.galleries-wrapper .gallery-img:hover img{
    transform: scale(1.05);
}
.galleries-wrapper .gallery-img .gallery-img-layer{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 177px;
    background: linear-gradient(to top, rgba(42, 79, 130, 0.9) 0%, rgba(42, 79, 130, 0.6) 30%, rgba(42, 79, 130, 0.3) 60%, transparent 100%);
}

.galleries-wrapper .gallery-img h2{
    position: absolute;
    bottom: 2px;
    left: 16px;
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: -1px;
    line-height: 150%;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Gallery Modal Styles */
.gallery-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.gallery-modal-content {
    width: 798px;
    height: 712px;
    position: relative;
    cursor: default;
    display: flex;
    flex-direction: column;
    background: white;
    overflow: hidden;
}

.gallery-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 16px;
    border-bottom: 1px solid #eee;
}

.gallery-modal-title {
    margin: 0;
    font-size: 20px;
    font-weight: 500;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 140%;
    max-height: calc(1.4em * 3);
    width: 85%;
}

.gallery-modal-controls {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: auto;
}
.gallery-modal-controls a{
    width: 100px;
    margin-left: 16px;
}

.gallery-modal-link{
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-blue);
    text-decoration: none;
    padding-bottom: 2px;
    transition: all 0.3s ease;
    cursor: pointer;
   
}
.gallery-modal-link:hover{

   color: var(--primary-blue);
   opacity: 0.8;
}

.gallery-modal-link svg {
    transition: transform 0.3s ease;
}
.gallery-modal-link:hover svg {
    transform: rotate(-23deg);
}


.gallery-play-pause {
    background: none;
    border: none;
    color: #666;
    font-size: 18px;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.gallery-play-pause:hover {
    background: #f5f5f5;
}

.gallery-modal-close {
    background: none;
    border: none;
    color: #666;
    font-size: 24px;
    cursor: pointer;
    padding: 2px 4px;
}

.gallery-modal-close:hover {
    color: #333;
}

.gallery-modal-swiper {
    flex: 1;
    width: 100%;
    height: 100%;
}

.gallery-modal-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    height: 550px;
}

.gallery-modal-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.gallery-modal-counter {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 20px;
    border-top: 1px solid #eee;
}

.counter-number {
    width: 32px;
    height: 32px;

    background: white;
    color: #333;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.counter-number:hover {
    border-color: #2A4F82;
}

.counter-number.active {
    background: #2A4F82;
    color: white;
    border-color: #2A4F82;
}

@media screen and (max-width: 992px) {
    .gallery {
        margin: 24px 0;
        padding: 0 0 16px;
    }
}
.gallery .gallery-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 230px);
    gap: 40px;
    width: 100%;
    padding-top: 118px;
}
@media screen and (max-width: 1024px) {
    .gallery .gallery-wrapper {
        grid-template-columns: repeat(2, 1fr);
        padding-top: 48px;
        gap: 16px;
    }
}
@media screen and (max-width: 576px) {
    .gallery .gallery-wrapper {
        grid-template-columns: repeat(1, 1fr);
        padding-top: 48px;
        gap: 16px;
        overflow-y: hidden;
    }
}
.gallery .gallery-wrapper .gal-photo-text {
    font-size: 48px;
    font-weight: 300;
    line-height: 57px;
    letter-spacing: -2px;
    font-family: var(--primary-font);
    font-optical-sizing: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
}
@media screen and (max-width: 992px) {
    .gallery .gallery-wrapper .gal-photo-text {
        display: none;
    }
}
@media screen and (min-width: 992px) and (max-width: 1310px) {
    .gallery .gallery-wrapper .gal-photo-text {
        font-size: 28px;
    }
}
.gallery .gallery-wrapper .gal-photo-text span:nth-child(2) {
    color: #cccccc;
}

.gal-photo-see-all {
    position: relative;
}
.gal-photo-see-all .gal-see-all-desk {
    position: absolute;
    bottom: 0;
    width: 50%;
    right: 0;
}
@media screen and (max-width: 992px) {
    .gal-photo-see-all .gal-see-all-desk {
        display: none;
    }
}

.gal-see-all-mob {
    display: none !important;
}


.gal-photo {
    position: relative;
    overflow: hidden; /* Add this to contain the scaled image */
    transition: transform 0.3s ease; /* Add smooth transition */
}

.gal-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease; /* Add smooth transition */
}

.gal-photo:hover img {
    transform: scale(1.05); /* Scale up by 5% on hover */
}

@media screen and (max-width: 768px) {
    .gal-photo {
        height: 224px;
    }
}
.v-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background-color: rgba(244, 244, 241, 0.1019607843);
    position: absolute;
    top: 42%;
    left: 42%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.v-icon-wrap .video-icon {
    width: 16px;
    height: 16px;
}

.news-heading,
.page-heading {
    padding: 48px 60px;
}
@media screen and (max-width: 768px) {
    .news-heading,
    .page-heading {
        padding: 16px 0 0;
    }
}
.news-heading h1,
.news-heading h2,
.page-heading h1,
.page-heading h2 {
    font-size: 36px;
    line-height: 36px;
    letter-spacing: -1px;
    word-spacing: 4px;
    font-weight: 300;
    font-family: var(--primary-font);
    /*text-transform: uppercase;*/
    text-align: center;
}
@media screen and (max-width: 768px) {
    .news-heading h1,
    .news-heading h2,
    .page-heading h1,
    .page-heading h2 {
        font-size: 18px;
        line-height: 22px;
        letter-spacing: -1px;
    }
}

.static-page-heading {
    padding: 48px 0;
}
@media screen and (max-width: 768px) {
    .static-page-heading {
        padding: 16px 0 0;
    }
}
.static-page-heading h1,
.static-page-heading h2 {
    font-size: 48px;
    line-height: 52px;
    letter-spacing: -2px;
    font-weight: 300;
    font-family: var(--primary-font);
    text-transform: uppercase;
}
@media screen and (max-width: 768px) {
    .static-page-heading h1,
    .static-page-heading h2 {
        font-size: 18px;
    }
}

.page-heading {
    padding: 40px 0 20px;
}
@media screen and (max-width: 768px) {
    .page-heading {
        padding: 16px 0;
    }
}
.page-heading h1 {
    font-size: 36px;
}
@media screen and (max-width: 768px) {
    .page-heading h1 {
        font-size: 18px;
        line-height: 20px;
    }
}

.news-content-wrapper {
    width: 100%;
}
.news-content-wrapper .news-filter-search {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 24px;
}
@media screen and (max-width: 768px) {
    .news-content-wrapper .news-filter-search {
        flex-direction: column;
    }
}
@media screen and (max-width: 768px) {
    .news-content-wrapper .news-filter-search .news-filter {
        width: 100%;
    }
    .news-content-wrapper .news-filter-search .news-filter button {
        width: 100%;
        display: flex;
        justify-content: space-between;
    }
}
@media screen and (max-width: 768px) {
    .news-content-wrapper .news-filter-search .news-search-bar input {
        width: 100%;
    }
}
@media screen and (max-width: 768px) {
    .news-content-wrapper .news-filter-search .news-search-bar {
        width: 100%;
    }
}
.news-search .input:focus {
    width: 407px !important;
}
.news-content-wrapper .news-filter-search .news-search {
    display: flex;
    align-items: center;
}
.news-content-wrapper .news-filter-search .news-search .news-search-icon {
    margin-left: -41px;
}

.news-s-content-wrapper {
    margin: 32px 0;
}
@media screen and (max-width: 768px) {
    .news-s-content-wrapper {
        margin: 12px 0;
    }
}
.news-s-content-wrapper h1 {
    font-size: 36px;
    font-weight: 500;
    letter-spacing: -1px;
}
@media screen and (max-width: 768px) {
    .news-s-content-wrapper h1 {
        font-size: 18px;
        line-height: 20px;
    }
}
.news-s-content-wrapper .news-s-date-view {
    display: flex;
    align-items: center;
    gap: 32px;
}
.news-s-content,
.modal-content-text,
.part-s-text,
.aw-body {
    text-align: justify;
    font-family: var(--primary-font) !important;
}
.news-s-content-wrapper .news-s-date-view > div {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #626262;
    font-size: 16px;
    font-weight: 500;
}
.news-s-content-wrapper .news-s-date-view .news-s-date span:first-child {
    margin-bottom: 8px;
}
.news-s-content-wrapper .news-s-date-view .news-s-view span:first-child {
    margin-bottom: 5px;
}
.news-s-content-wrapper .news-s-content {
    margin: 24px 0 32px;
}
@media screen and (max-width: 768px) {
    .news-s-content-wrapper .news-s-content p {
        font-size: 14px;
        font-weight: 400;
        line-height: 21px;
    }
}
@media screen and (max-width: 768px) {
    .news-s-content-wrapper .news-s-content {
        margin: 12px 0;
    }
}

.links-page {
    display: flex;
    justify-content: space-between;
    gap: 110px;
}
.links-page .links-page-content {
    width: calc(100% - 430px);
    display: flex;
    flex-direction: column;
    gap: 16px;
}
@media screen and (max-width: 992px) {
    .links-page .links-page-content {
        width: 100%;
        gap: 4px;
    }
}
.links-page .links-page-content .links-p-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px;
    box-shadow: 0px 4px 4px 0px rgba(182, 182, 182, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}
@media screen and (max-width: 992px) {
    .links-page .links-page-content .links-p-card {
        padding: 12px;
    }
}
.links-page .links-page-content .links-p-card:hover {
    box-shadow: 0px 8px 16px 0px rgba(182, 182, 182, 0.25);
    transform: translateY(-4px);
    background-color: var(--primary-blue);
    color: #fff;
}
.links-page .links-page-content .links-p-card:hover span {
    color: white;
}
.links-page .links-page-content .links-p-card:hover .see-more-link {
    background-color: var(--primary-blue);
    color: #fff;
}
.links-page
    .links-page-content
    .links-p-card:hover
    .see-more-link
    .see-all-plus {
    display: none;
}
.links-page
    .links-page-content
    .links-p-card:hover
    .see-more-link
    .see-all-arrow {
    display: block;
}
.links-page .links-page-content .links-p-card .see-more-link {
    padding: 12px 0;
    gap: 16px;
    margin-top: 0;
    background-color: white;
    display: flex;
}

.page-content {
    text-align: justify;
}

.see-all span {
    text-transform: uppercase;
}
.links-page .links-page-content .links-p-card .see-more-link .see-all-plus {
    display: block;
}
.links-page .links-page-content .links-p-card .see-more-link .see-all-arrow {
    display: none;
}
.links-page .links-page-content .links-p-card .body-p {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
@media screen and (max-width: 1125px) {
    .links-page .links-page-content .links-p-card .body-p {
        flex-direction: column;
        gap: 16px;
        align-items: unset;
    }
}

@media screen and (max-width: 992px) {
    .links-page .links-page-content .links-p-card .body-p {
        gap: 12px;
    }

    .see-more-link span:first-child,
    .links-p-card h3 {
        font-size: 16px;
    }
}
.links-page .links-page-content .links-p-card h3 {
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: -1px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
@media screen and (max-width: 992px) {
    .links-page .links-page-content .links-p-card h3 {
        font-size: 18px;
        line-height: 20px;
    }
}
.links-page .links-page-content .links-p-card .date-p {
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 1px;
    color: #999999;
    font-family: "JetBrains Mono", monospace;
    font-weight: 700;
}
.links-page .links-page-right {
    margin-top: 45px;
    width: 430px;
}
.socials-icon a {
    width: 36px;
    height: 36px;
}
.links-page .links-page-right img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
@media screen and (max-width: 992px) {
    .links-page .links-page-right {
        display: none;
    }
}
.links-page .links-page-right .links-p-right-img {
    width: 387px;
    height: 247px;
}

.aweraness-info {
    margin: 48px 0;
}
@media screen and (max-width: 992px) {
    .aweraness-info {
        margin: 24px 0;
    }
}
.aweraness-info .aw-title {
    font-size: 24px;
    padding-bottom: 8px;
    border-bottom: 1px solid #c9ec66;
}
.aweraness-info .aw-body {
    margin-top: 24px;
}
@media screen and (max-width: 992px) {
    .aweraness-info .aw-title {
        font-size: 18px;
    }
}
.aweraness-info ul {
    margin: 24px 0 0 24px;
    list-style-type: disc;
}
@media screen and (max-width: 992px) {
    .aweraness-info ul {
        margin: 12px 0 0 18px;
    }
}
.aweraness-info ul li {
    font-size: 16px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    /* padding: 0; */
}

h2 {
    font-weight: 600;
    font-size: 24px;
}
@media screen and (max-width: 768px) {
    h2 {
        font-weight: 600;
        font-size: 18px;
    }
}

h3 {
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 8px;
}

.menu-block .header-underline {
    width: 60px;
    height: 2px;
    background-color: #f6d08c;
}
.menu-block ul {
    display: flex;
    gap: 24px;
}

h1 {
    font-size: 48px;
    font-weight: 300;
    line-height: 57px;
}

h2 {
    font-size: 36px;
    font-weight: 500;
    line-height: 54px;
}

h3 {
    font-size: 32px;
    font-weight: 500;
    line-height: 48px;
}

/* Ensure list items are not indented */
ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Remove underlines from anchor tags by default */
a {
    text-decoration: none;
    color: inherit; /* Optional: inherit text color */
}

/* Set media elements to be responsive */
img,
video {
    width: 100%;
    height: 100%;
    display: block;
}
/*.page-content {*/
/*   overflow: auto;*/
/*}*/

.page-content img,
.page-content video {
    width: auto; /* Fallback for older browsers */
    height: auto; /* Fallback for older browsers */
    width: revert-layer;
    height: revert-layer;
}

@media screen and (max-width: 1024px) {
    .page-content img,
    .page-content video {
        width: 100% !important;
        height: 100% !important;
    }
}
.page-content a {
    color: revert-layer; /* Reverts to earlier cascade layer or browser default */
    text-decoration: revert-layer; /* Reverts to earlier cascade layer or browser default */
}
.page-content ol,
.page-content ul {
    margin: initial; /* Fallback for older browsers */
    padding: initial;
    list-style: initial;
    padding: initial;
    margin: revert-layer; /* Modern CSS cascade support */
    padding: revert-layer;
    list-style: revert-layer;
    padding: revert;
}

.page-content-wrapper {
    margin-bottom: 40px;
    width: 100%;
}
@media screen and (max-width: 768px) {
    .page-content-wrapper {
        margin-bottom: 20px;
    }
}

.page-share {
    margin: 40px 0;
}
@media screen and (max-width: 768px) {
    .page-share {
        margin: 24px 0;
    }
}

/* Full-height layout setup for html and body */
html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
}

section {
    overflow-x: hidden;
}

/* Reset form elements */
input,
button,
textarea,
select {
    font: inherit;
    border: none;
    outline: none;
}

/* Buttons: default cursor and appearance */
button {
    cursor: pointer;
    background: none;
    padding: 0;
}
@media screen and (max-width: 992px) {
    .gal-see-all-desk{
        display: none;
    }
}

.clickable {
    cursor: pointer;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

p {
    white-space: normal;
    overflow-wrap: break-word;
}

.btn-c a {
    padding: 20px 16px;
    display: flex;
    align-items: center;
    gap: 48px;
    position: relative;
    width: 178px;
}
.btn-c .btn-arrow {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.btn-c .btn-plus {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.btn-c .btn-icon {
    position: absolute;
    right: 16px;
}
.btn-c:hover .btn-plus {
    opacity: 0;
    visibility: hidden;
}
.btn-c:hover .btn-arrow {
    opacity: 1;
    visibility: visible;
}

.btn-black {
    background-color: #1f1f1e;
    color: #ffffff;
    transition: all 0.3s ease;
}
.btn-black:hover {
    background-color: #bbbbba;
    color: #1f1f1e;
}
.btn-black:hover img {
    filter: invert(0);
}
.btn-black img {
    filter: invert(1);
}

.btn-green {
    background-color: #c9ec66;
    color: #1f1f1e;
}
.btn-green:hover {
    background-color: #b5d45c;
}
.btn-green:hover img {
    filter: invert(0);
}

.btn-white {
    background-color: #ffffff;
    color: #1f1f1e;
}
.btn-white a {
    width: 115px;
}

@media (min-width: 992px) {
    .container-lg {
        max-width: 1440px;
        padding: 0 40px;
        margin: 0 auto;
    }
}
@media (min-width: 992px) {
    .container-no-spacing {
        max-width: 1440px;
        padding: 0 40px;
        margin: 0 auto;
    }
}
.dropdown-item {
    transition: all ease 0.3s;
}
.dropdown-item:hover {
    opacity: 0.8;
}

.left-col {
    display: flex;
    flex-direction: column;
    font-family: "JetBrains Mono", monospace;
}
@media screen and (max-width: 992px) {
    .left-col {
        display: none;
    }
}

.left-col .col-name {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    text-align: left;
    border-left: 1px solid #bbbbba;
    line-height: 99px;
    padding: 0 0 32px 0;
}

.left-col .col-name,
.left-col .col-back {
    font-family: "JetBrains Mono", monospace;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.left-col .col-back {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    margin-left: 41px;
    color: #bbbbba;
}
.left-col .col-back .img-wrapper {
    margin-bottom: -6px;
}
.left-col .col-back .col-back-text {
    margin-left: 6px;
}

.see-all {
    padding: 12px 18px;
    background-color: #d2dde6;
    font-size: 16px;
    font-weight: 700;
    font-family: "JetBrains Mono", monospace;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 231px;
    margin-top: 24px;
    transition: all ease 0.3s;
    position: relative; /* Set the parent to relative */
}
.see-all .see-all-arrow,
.see-all .see-all-plus {
    position: absolute; /* Position the icons absolutely */
    right: 20px; /* Adjust based on your layout */
    top: 50%; /* Center vertically */
    transform: translateY(-50%); /* Align perfectly */
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.see-all .see-all-arrow {
    opacity: 0;
    visibility: hidden;
}
.see-all .see-all-plus {
    opacity: 1;
    visibility: visible;
}
.see-all:hover {
    background-color: var(--primary-blue);
    color: #fff !important;
}
.see-all:hover .see-all-arrow {
    opacity: 1;
    visibility: visible;
}
.see-all:hover .see-all-plus {
    opacity: 0;
    visibility: hidden;
}

.search-input {
    height: 44px;
    border-radius: unset;
    border: 1px solid #1f1f1e;
    width: 407px;
}

@media screen and (max-width: 765px) {
    .search-input {
        width: 100%;
    }
}

.form-control:focus {
    border: 1px solid #1f1f1e;
    height: 44px;
    width: 407px;
    box-shadow: 0 0 0 4px rgba(150, 186, 241, 0.25);
}

.filter button {
    background-color: #fff;
    height: 44px;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #1f1f1e;
    font-size: 16px;
    font-weight: 500;
}

.mob-back-wrap {
    display: none;
}
.mob-back-wrap .mob-back {
    display: flex;
    flex-direction: column;
}
.mob-back-wrap .mob-back span:nth-child(2) {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin: -10px 0 0 7px;
}
@media screen and (max-width: 992px) {
    .mob-back-wrap {
        display: block;
        margin: 8px 0 0;
    }
}

.pagination-block {
    margin: 48px 0;
}
@media screen and (max-width: 992px) {
    .pagination-block {
        margin: 24px 0;
    }
}
.pagination-block .pagination {
    gap: 16px;
}
.pagination-block .pagination .page-link {
    border-radius: unset;
    color: #1f1f1e;
    font-size: 16px;
    border: unset;
    padding: 6px 16px;
}
.pagination-block .pagination .page-link.active {
    background-color: #f8f8f8 !important;
    color: #1f1f1e;
    border: 1px solid #1f1f1e;
    border-radius: unset;
    font-weight: 600;
}
.pagination-block .pagination .arr-btn {
    background-color: #d2dde6;
}

.page-numbers {
    display: flex;
    gap: 4px;
}

.social-share .share-item {
    display: flex;
    align-items: center;
    gap: 12px;
}
.social-share .share-item:hover {
    background-color: var(--primary-blue);
    color: white;
}

.share-item.linkedin-share span:nth-child(2) {
   margin-bottom: -6px;
}
.social-share .linkedin-share:hover {
    background-color: #0077b5;
    color: white;
}
.part-blocks {
    display: flex;
    gap: 16px;
    flex-direction: column;
}
.part-blocks .part-block {
    max-width: 795px;
    padding: 16px;
    border: 4px solid #1f1f1e;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: ease all 0.3s;
    cursor: pointer;
    height: 100px;
}
.part-blocks .part-block p {
    color: #999999;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    transition: ease all 0.3s;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0;
}

.part-blocks .part-block h3 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    letter-spacing: -1px;
    transition: ease all 0.3s;
    margin-bottom: 0;
}
.part-blocks .part-block:hover {
    background-color: var(--primary-blue);
}
.part-blocks .part-block:hover p {
    transition: ease all 0.3s;
    color: #fff;
}
.part-blocks .part-block:hover h3 {
    transition: ease all 0.3s;
    color: #fff;
}

.gallery-body {
    width: 100%;
    margin-top: 48px;
    margin-bottom: 100px;
}
@media screen and (max-width: 1024px) {
    .gallery-body {
        margin-top: 24px;
        margin-bottom: 48px;
    }
}
.gallery-body .gallery-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 34px;
}
.internal-links-mob-header {
    margin: 0 auto 40px;
    padding: 0 12px;
}
.links-box {
    position: relative;
    z-index: 100;
}

/* .active-card {
   background-color: var(--primary-blue) !important;
   color: #fff;
} */
.active-card .link-icon svg {
    color: #fff !important;
}
.slider-links{
    width: 100%;
}
.links-wrapper {
    padding-top: 48px;
    z-index: 10;
}
@media screen and (min-width: 992px) {
    .part-blocks .part-block p {
        -webkit-line-clamp: 1;
    }
}

@media screen and (max-width: 992px) {
    .gallery-body .gallery-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .part-blocks .part-block {
        height: 154px;
    }
}

@media screen and (max-width: 576px) {
    .gallery-body .gallery-wrapper {
        grid-template-columns: repeat(1, 1fr);
        gap: 12px;
    }
}
.gallery-body .gallery-wrapper .gal-box {
    height: 282px;
    transition: ease all 0.3s;
    position: relative;
}
.gallery-body .gallery-wrapper .gal-box:hover {
    transform: scale(1.05);
}
.gallery-body .gallery-wrapper .gal-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gallery-body .gallery-filter button {
    background-color: #fff;
    color: #1f1f1e;
    border: 1px solid #1f1f1e;
    margin-bottom: 48px;
}
@media screen and (max-width: 576px) {
    .gallery-body .gallery-filter button {
        width: 100%;
        display: flex;
        justify-content: space-between;
    }
}

.static-page-heading {
    padding: 48px 0;
}

.members-body {
    margin-bottom: 60px;
    width: 100%;
}
@media screen and (max-width: 576px) {
    .members-body {
        margin-bottom: 24px;
    }
}
.members-body .members-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* grid-auto-rows: 304px; */
    gap: 21px;
    margin-top: 48px;
}
@media screen and (max-width: 1200px) {
    .members-body .members-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width: 576px) {
    .members-body .members-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
}

.member-box {
    position: relative;
    cursor: pointer;
}
.member-box img {
    object-fit: cover;
}
.nav-menu-icon {
    transition: transform 0.3s ease;
}

.nav-menu-icon.rotate {
    transform: rotate(60deg);
}
.member-box .member-info {
    position: absolute;
    bottom: 10px;
    display: flex;
    flex-direction: column;
    left: 16px;
}
.member-box .member-info .mem-name {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}
.member-box .member-info .mem-position {
    color: #bfbfbf;
    font-weight: 400;
    font-size: 20px;
}
.member-box .mem-box-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.5) 99.11%
    );
}

.members-modal-body {
    padding: 20px 40px 40px 40px;
}
@media screen and (max-width: 768px) {
    .members-modal-body {
        padding: 12px 16px 16px 16px;
    }
}
.members-modal-body .modal-cont-header {
    display: flex;
    align-items: center;
    gap: 32px;
}

.modal-members-dialog {
    max-width: 850px !important;
}
.modal-members-dialog .modal-mem-header {
    border-bottom: unset;
    padding: 40px 40px 0 40px;
}
@media screen and (max-width: 768px) {
    .modal-members-dialog .modal-mem-header {
        padding: 16px 16px 0 16px;
    }
}
.modal-members-dialog .modal-cont-header {
    margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
    .modal-members-dialog .modal-cont-header {
        flex-direction: column;
        align-items: baseline;
        margin-bottom: 20px;
    }
}
.modal-members-dialog .member-mod-img {
    width: 300px;
    height: 300px;
    pointer-events: none;
    cursor: auto;
}

.modal-members-dialog .mem-modal-title {
    font-size: 24px;
    letter-spacing: -1px;
    font-weight: 300;
    font-family: var(--primary-font);
    text-transform: uppercase;
}
@media screen and (max-width: 768px) {
    .modal-members-dialog .mem-modal-title {
        font-size: 18px;
    }
}
.modal-members-dialog .mem-modal-title span:last-child {
    color: #bbbbba;
}
.modal-members-dialog .modal-cont-name {
    display: flex;
    gap: 8px;
    flex-direction: column;
}
@media screen and (max-width: 768px) {
    .modal-members-dialog .modal-cont-name {
        gap: 2px;
    }
}
.modal-members-dialog .modal-cont-name span:first-child {
    font-size: 24px;
    letter-spacing: -1px;
    font-weight: 500;
    text-transform: uppercase;
}
@media screen and (max-width: 768px) {
    .modal-members-dialog .modal-cont-name span:first-child {
        font-size: 18px;
    }
}
.modal-members-dialog .modal-cont-name span:last-child {
    font-size: 16px;
    font-weight: 400;
}
.modal-members-dialog .modal-content-text p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #595959;
}

.accordion {
    width: 100%;
}

.faq-accord {
    margin-left: -12px;
    /* Show plus icon when collapsed */
    /* Show minus icon when expanded */
}
@media screen and (max-width: 768px) {
    .faq-accord {
        margin-left: 0;
    }
}
.faq-accord .faq-item-name {
    font-size: 20px;
    font-weight: 500;
    line-height: 26px;
}
.faq-accord .accordion-item-faq {
    border: none;
}
.faq-accord .accordion-button-faq {
    display: flex;
    justify-content: space-between;
}
.faq-accord .accordion-button-faq::after {
    display: none;
}
.faq-accord .accordion-item:first-of-type .accordion-button {
    border-top-left-radius: unset;
    border-top-right-radius: unset;
}
.faq-accord .accordion-button:not(.collapsed) {
    color: unset;
    background-color: unset;
    box-shadow: unset;
}
.faq-accord .accordion-item:last-of-type .accordion-button.collapsed {
    border-bottom-right-radius: unset;
    border-bottom-left-radius: unset;
}
.faq-accord .accordion-button:focus {
    z-index: 3;
    border-color: unset;
    outline: 0;
    box-shadow: unset;
}
.faq-accord .faq-icon {
    display: none;
    width: 16px;
    height: 16px;
}
.faq-accord .accordion-button.collapsed .icon-plus {
    display: inline-block;
}
.faq-accord .accordion-button:not(.collapsed) .icon-minus {
    display: inline-block;
}
.faq-accord .faq-accordion-body {
    padding: 0 0 0 48px;
}

.navbar-nav .nav-link.show {
    color: #fff;
}

.navmenu-list button {
    background-color: unset;
    border: 1px solid transparent;
}
.desktop-nav-menu .dropdown-item.active {
    color: #fff !important;
    background-color: var(--primary-blue) !important;
}
.desktop-nav-menu .dropdown-btn.selected {
    opacity: 0.8 !important;
}
.dropdown-btn:hover {
    transform: scale(1.06, 1.02);
}

.member-box {
    position: relative;
    overflow: hidden; /* Ensures the image doesn't overflow outside the box */
    height: 400px; /* Set your desired height */
}

.member-box img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image maintains aspect ratio while covering the box */
    transition: transform 0.3s ease; /* Smooth transition for the zoom effect */
}

.member-box:hover img {
    transform: scale(1.05); /* Scales the image to 1.2x its size on hover */
}

.desktop-nav-menu .nav-link {
    font-size: 16px;
    font-weight: 500;
}

.navmenu-list button:hover {
    opacity: 0.8;
    background-color: unset;
    border: 1px solid transparent;
}

.appo-blocks {
    display: flex;
    gap: 16px;
    flex-direction: column;
}
@media screen and (max-width: 768px) {
    .appo-block {
        flex-direction: column;
        align-items: normal !important;
        justify-content: start !important;
    }
}
.appo-blocks .appo-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 4px solid var(--primary-grey);
    padding: 16px;
}

.appo-blocks .appo-block .appo-left {
    display: flex;
    gap: 12px;
    flex-direction: column;
}
.appo-blocks .appo-block .appo-left .appo-pos-name .appo-name {
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: -1px;
}
@media screen and (max-width: 576px) {
    .appo-blocks .appo-block .appo-left .appo-pos-name {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        height: 54px;
    }
}
.appo-blocks .appo-block .appo-left .appo-days {
    color: #999999;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: -1px;
}
.appo-blocks .appo-block .appo-right {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 500;
}
.appo-blocks .appo-block .appo-right .appo-arr {
    margin-bottom: 4px;
}

.page-content-box {
    width: 100%;
    margin-bottom: 80px;
}

.page-body {
    display: flex;
    gap: 70px;
    margin: 12px 0 80px;
}
@media screen and (max-width: 1300px) {
    .page-body {
        gap: 50px;
    }
}
@media screen and (max-width: 992px) {
    .page-content-box {
        margin-bottom: 24px;
    }
    .page-body {
        margin: 12px 0 24px;
    }
}
.page-body .page-right-part {
    width: 390px;
}
.page-body .page-right-part img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width: 1024px) {
    .page-body .page-right-part {
        display: none;
    }
}
.page-body .page-right-part .p-r-img-wrap {
    background-color: var(--primary-grey-light);
    width: 100%;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;

}
.page-body .page-right-part .p-r-img {
    width: 130px;
    height: 130px;
}
.page-body .page-left-part {
    width: calc(100% - 450px);
}
@media screen and (max-width: 1300) {
    .page-body .page-left-part {
        width: calc(100% - 450px);
    }
}
@media screen and (max-width: 1024px) {
    .page-body .page-left-part {
        width: 100%;
        padding: 0 64px;
    }
}
@media screen and (max-width: 576px) {
    .page-body .page-left-part {
        width: 100%;
        padding: 0;
    }
}

.application-body .app-tabs {
    display: flex;
    gap: 16px;
    margin-top: 10px;
}
.application-body .app-tabs span {
    color: #bfbfbf;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: ease all 0.3s;
}
.application-body .app-tabs span:hover,
.application-body .app-tabs span.active {
    color: var(--primary-blue);
}

form .form-label {
    font-size: 16px;
    font-weight: 500;
}
form .form-control::placeholder {
    color: #bfbfbf;
    font-size: 16px;
}
form .form-control,
form .mob-prefix {
    height: 44px;
    border: 1px solid #1f1f1e;
    border-radius: unset;
    padding: 12px;
}
form .form-control:focus,
form .mob-prefix:focus {
    width: 100%;
    border: 1px solid var(--primary-blue);
}

.news-search-bar .search-input:active,
.news-search-bar .search-input:focus {
    width: 407px !important;
}

@media screen and (max-width: 768px) {
    .news-search-bar .search-input:active,
    .news-search-bar .search-input:focus {
        width: 100% !important;
    }
}

form .mob-prefix {
    border-top: 1px solid #1f1f1e; /* Top border */
    border-left: 1px solid #1f1f1e; /* Left border */
    border-bottom: 1px solid #1f1f1e; /* Bottom border */
    border-right: none; /* Bottom border */
}
form input[type="date"]::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
}
form .appoint-one-date-block {
    display: flex;
    gap: 24px;
}
@media screen and (max-width: 992px) {
    form .appoint-one-date-block {
        flex-direction: column;
    }
}
form .appoint-one-date-block input::placeholder {
    color: #bfbfbf;
    font-size: 16px;
    font-weight: 400;
}
form .appoint-one-date-block .datePicker-wrap input {
    color: #1f1f1e;
    font-size: 16px;
    font-weight: 400;
    padding-left: 12px;
}
form .appoint-one-date-block .appoint-o-d {
    width: 100%;
}
form .appoint-one-date-block .appoint-o-d-select-wrap {
    border: 1px solid #1f1f1e;
    padding: 4px;
    position: relative;
    height: 44px;
    display: flex;
}
form .appoint-one-date-block .appoint-o-d-select-wrap .appoint-o-d-select {
    border: none;
}
form .appoint-one-date-block .appoint-o-d-select-wrap .menu-icon {
    position: absolute;
    right: 16px;
}
form .appoint-one-date-block .appoint-o-d-select-wrap .date-picker-input {
    width: 100%;
}
form
    .appoint-one-date-block
    .appoint-o-d-select-wrap
    .appoint-o-d-select:focus {
    outline: 0;
    box-shadow: unset;
}
form .appoint-one-date-block .appoint-o-d-select-wrap:focus-within {
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25) !important;
    border-color: var(--primary-blue);
}
form .form-mob-input {
    border-left: none;
}
form .form-mob-input:focus {
    width: 75%;
}
form .mobile-input-gr {
    display: flex;
    position: relative;
}
form .mobile-input-gr .menu-icon {
    position: absolute;
    top: 6px;
    left: 56px;
}
form .mobile-input-gr .mob-prefix {
    width: 75px;
    flex: unset;
}
form .form-textarea {
    resize: none;
    height: 241px;
}
form .form-textarea:focus,
form .form-textarea:hover {
    height: 241px;
}
@media screen and (max-width: 992px) {
    form .form-btn-submit {
        width: 100%;
    }
}

select {
    appearance: none; /* Hides the default icon */
    -webkit-appearance: none !important; /* For Safari and older WebKit browsers */
    -moz-appearance: none !important; /* For Firefox */
    background: none !important; /* Optional: to remove the background */
    padding-right: 20px; /* Adjust padding to compensate for the hidden icon */
}

select:focus-visible label {
    transform: rotate(60deg);
}

@media screen and (max-width: 992px) {
    .mb-4 {
        margin-bottom: 1rem !important;
    }
}

.contact-map {
    height: 100%;
}
@media screen and (max-width: 992px) {
    .contact-map {
        height: 300px;
    }
}
.contact-map iframe {
    width: 100%;
    height: 100%;
}

.mob-cont-details {
    margin-bottom: 24px;
}
@media screen and (min-width: 992px) {
    .mob-cont-details {
        display: none !important;
    }
}

.contact-details {
    margin-top: 24px;
    display: flex;
    gap: 16px;
    flex-direction: column;
}
.contact-details .contact-detail {
    font-size: 14px;
    font-weight: 400;
    display: flex;
    flex-direction: column;
}
.contact-details .contact-detail span:first-child {
    color: var(--primary-blue);
}

.contact-links {
    /* margin-bottom: 24px; */
    display: flex;
    gap: 24px;
}
@media screen and (max-width: 992px) {
    .contact-links {
        margin-bottom: 24px;
        flex-direction: column;
    }
}
.contact-links .contact-link {
    padding: 24px;
    display: flex;
    gap: 64px;
    flex-direction: column;
    justify-content: space-between;
    width: 400px;
    background-color: #f4f4f1;
    cursor: pointer;
    transition: ease all 0.3s;
}
@media screen and (max-width: 992px) {
    .contact-links .contact-link {
        width: 100%;
        gap: 24px;
        padding: 12px;
    }
}
.contact-links .contact-link:hover {
    background-color: var(--primary-blue);
}
.contact-links .contact-link:hover .link-icon-wrap {
    color: var(--primary-blue);
    background-color: #fff;
}
.contact-links .contact-link:hover .link-text span {
    color: #fff !important;
}
.contact-links .contact-link .link-icon-wrap {
    padding: 12px;
    background-color: var(--primary-blue);
    width: 48px;
    height: 48px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-links .contact-link .link-icon-wrap .link-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 7px;
}
.contact-links .contact-link .link-text {
    display: flex;
    flex-direction: column;
}
.contact-links .contact-link .link-text span:first-child {
    font-size: 20px;
    font-weight: 500;
    font-family: var(--primary-font);
    color: #101828;
}
.contact-links .contact-link .link-text span:last-child {
    color: #475467;
    font-size: 16px;
    font-weight: 400;
}

.not-f-body {
    background: url("/assets/images/404-desk.png") no-repeat center center/cover;
}
@media screen and (max-width: 1024px) {
    .not-f-body {
        background: url("/assets/images/404-mob.png") no-repeat center
            center/cover;
    }
}
.not-f-body header {
    background-color: #000000 !important;
    width: 30%;
}
@media screen and (max-width: 992px) {
    .not-f-body header {
        width: 80%;
    }
}
.not-f-body .header-wrap .header-top {
    border-bottom: unset;
}

.not-found-content {
    letter-spacing: -1px;
    font-family: var(--primary-font);
    color: #fff;
    width: 30%;
    margin-top: 180px;
}
@media screen and (max-width: 992px) {
    .not-found-content {
        margin-top: 140px;
        width: 80%;
    }
}
.not-found-content h1 {
    font-size: 128px;
    font-weight: 600;
    line-height: 132px;
}
@media screen and (max-width: 992px) {
    .not-found-content h1 {
        font-size: 64px;
        line-height: 79px;
    }
}
.not-found-content p {
    font-size: 40px;
    font-weight: 400;
    line-height: 60px;
}
@media screen and (max-width: 992px) {
    .not-found-content p {
        font-size: 24px;
        line-height: 36px;
    }
}

.not-f-btn-submit .btn-title {
    color: #1f1f1e;
}
.not-f-btn-submit:hover .btn-title {
    color: #fff;
}

.search-main-content .search-result-count {
    color: #626262;
    font-size: 16px;
    font-weight: 500;
    margin-top: 16px;
}
.search-main-content .search-result-block-list .search-result-block {
    padding: 24px 0;
    transition: ease all 0.3s;
}
.search-main-content .search-result-block-list .search-result-block a:hover {
    opacity: 0.8;
}
.search-main-content .search-result-block-list .search-result-block h3 {
    color: var(--primary-blue);
    font-size: 24px;
    font-weight: 500;
}
.search-main-content
    .search-result-block-list
    .search-result-block:not(:last-child) {
    border-bottom: 1px solid #cccccc;
}

.part-s-wrap {
    width: 100%;
}
.part-s-wrap .part-s-img {
    margin-bottom: 24px;
    height: 560px;
}
@media screen and (max-width: 1024px) {
    .part-s-wrap .part-s-img {
        height: 400px;
    }
}
@media screen and (max-width: 768px) {
    .part-s-wrap .part-s-img {
        height: 260px;
    }
}
.part-s-wrap .part-s-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.navmenu-list .nav-link {
    font-family: var(--primary-font);
}

.mob-menu {
    /* Default State - Hidden */
    /* Show State - When dropdown is active */
    /* Optional: Adding space when dropdown is visible */
}
.mob-menu .page-menu-dropdown .dropdown-menu {
    transition: transform 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease; /* Smooth transitions for transform, opacity, and margin-top */
    transform: scaleY(0); /* Start collapsed vertically */
    opacity: 0; /* Invisible */
    transform-origin: top; /* Animation starts from the top */
    position: absolute; /* Prevent affecting layout */
    visibility: hidden; /* Prevent interaction */
    z-index: 1050; /* Ensure it's on top */
}
.mob-menu .dropdown-menu.show {
    transform: scaleY(1); /* Expand vertically */
    opacity: 1; /* Fully visible */
    visibility: visible; /* Allow interaction */
}
.mob-menu .nav-item {
    position: relative; /* For correct dropdown positioning */
    transition: margin-bottom 0.3s ease; /* Smooth spacing adjustment */
}

.share-w-pdf {
    display: flex;
    justify-content: space-between;
}
@media screen and (max-width: 768px) {
    .share-w-pdf {
        flex-direction: column;
        gap: 24px;
    }
}
.share-w-pdf .share-w-p {
    height: 48px;
}
.share-w-pdf .share-w-p button {
    padding-top: 12px;
}
.share-w-pdf .share-w-pdf-wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: var(--primary-blue);
    font-size: 16px;
}
.share-w-pdf .share-w-pdf-wrap .pdf-uploader {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn:first-child:active,
:not(.btn-check) + .btn:active {
    color: unset;
    background-color: unset;
    border-color: unset;
}

.no-result-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    margin: 24px 0 80px;
}
@media screen and (max-width: 768px) {
    .no-result-content {
        margin: 24px 0 24px;
    }
}
.no-result-content .no-result-img {
    width: 212px;
    height: 192px;
}
.no-result-content .no-result-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width: 768px) {
    .no-result-content .no-result-img {
        width: 110px;
        height: 110px;
    }
}
.no-result-content .no-result-text {
    font-size: 18px;
}

.dropdown-menu {
    box-shadow: 0px 3px 5.2px 0px rgba(125, 125, 125, 0.1019607843);
}

tbody,
td,
tfoot,
th,
thead,
tr {
    border-width: unset;
}
#archiveMenu:hover,
#yearsMenu:hover {
    background: white !important; /* Changes background to blue on hover */
    color: #000000; /* Changes text color to white on hover */
    opacity: 1 !important;
}
/* Universal scrollbar for the whole page */
html,
body {
    scrollbar-width: thin; /* For Firefox: Makes the scrollbar thin */
    scrollbar-color: var(--primary-blue) #f1f1f1; /* For Firefox: Thumb color, Track color */
}

::-webkit-scrollbar {
    width: 10px; /* Width of the vertical scrollbar */
    height: 10px; /* Height of the horizontal scrollbar */
}

::-webkit-scrollbar-thumb {
    background-color: #007bff; /* Scrollbar thumb color */
    border-radius: 5px; /* Rounded edges of the scrollbar thumb */
    border: 2px solid #f1f1f1; /* Creates space around the thumb */
}

::-webkit-scrollbar-thumb:hover {
    background-color: #0056b3; /* Darker color when hovered */
}

::-webkit-scrollbar-track {
    background-color: #f1f1f1; /* Background of the scrollbar track */
    border-radius: 5px; /* Rounded edges of the track */
}

::-webkit-scrollbar-corner {
    background-color: #e6e6e6; /* Bottom-right corner where scrollbars meet */
}
/* HOME NEWS SLIDER*/

.home-news-slider {
    position: relative;
    margin-top: 18px;
}
.home-news-slider .home-news-slider__slogan {
    position: absolute;
    z-index: 10;
    top: 47px;
    border-radius: 0px 10px 10px 0px;
    width: 450px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(62px);
    -webkit-backdrop-filter: blur(62px);
}

.image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    pointer-events: none;
}

.home-news-slider .home-news-slider__slogan p {
    color: #2a4f82; /* Replace $blue-300 */
    font-size: 28px;
    font-weight: 300;
    letter-spacing: -1px;
    line-height: 44px;
}

.home-news-slider .home-news-slider__slogan i {
    border-top: 0.5rem solid #2a4f82; /* Replace $blue-100 */
    display: block;
}
.home-news-slider .home-news-slider__slogan__item {
    padding: 24px 30px 40px 16px;
    box-sizing: border-box;
    max-height: fit-content;
    width: 100%;
}
.home-news-slider .home-news-slider__slogan__date {
    font-size: 14px;
    font-weight: 400;
    color: #bfbfbf;
}
.home-news-slider .home-news-slider__pagination {
    position: absolute;
    z-index: 10;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 -2px 22px rgba(241, 245, 248, 0.65);
    top: 30.06rem; /* calculateRem(481px) */
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem; /* calculateRem(14px) */
    color: #48555e;
}
.home-news-slider .home-news-slider__pagination__pages {
    display: flex;
    align-items: center;
}
.home-news-slider .swiper-pagination {
    width: auto;
    position: static;
}
.home-news-slider .swiper-pagination-current {
    font-weight: 700;
}
.home-news-slider .home-news-slider__pagination__next,
.home-news-slider .home-news-slider__pagination__prev {
    padding: 1.125rem 1.9375rem;
    color: #b9b9b9;
}
.home-news-slider__pagination__prev.active svg path,
.home-news-slider__pagination__next.active svg path {
    stroke: var(--primary-blue);
}

strong {
    font-weight: 600;
}

.home-news-slider .home-news-slider__image-container {
    margin-left: 44%;
    transform: translateX(-17.5rem); /* calculateRem(280px) */
    width: calc(50vw + 17.5rem); /* calculateRem(280px) */
    height: 40.625rem; /* calculateRem(650px) */
    overflow: hidden;
    position: relative;
    z-index: 0;
    display: flex;
    flex-direction: column;
}
.home-news-slider .home-news-slider__image-container img {
    object-fit: cover;
    position: absolute;
    z-index: 0;
    width: 100%;
    height: 100%;
}
.home-news-slider .home-news-slider__images {
    position: absolute;
    z-index: 0;
    width: 100%;
    height: 100%;
}
.home-news-slider .home-news-slider__images__item {
    height: 100%;
    position: relative;
}
.home-news-slider .home-news-slider__news {
    margin-top: 540px;
    display: flex;
    position: relative;
    z-index: 10;
}
.home-news-slider .home-news-slider__news__swiper {
    width: 100%;
    margin-right: 2rem;
    margin-left: 1rem;
    overflow: hidden;
}
.home-news-slider .home-news-slider__news__item {
    box-sizing: border-box;
    width: 25%;
}
.home-news-slider .home-news-slider__news__item i {
    border-top: 2px solid var(--primary-blue);
    display: block;
}
.home-news-slider .home-news-slider__news__item a {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: #fff;
    font-size: 1rem;
    padding: 0.8rem 0.5rem 1rem;
    line-height: 1.375rem;
    font-weight: 700;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 77px;
}
.home-news-slider .home-news-slider__news__item--more a {
    display: flex;
    height: 82%;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 2.9375rem;
    padding-bottom: 1.75rem;
}

/* Media Queries */
@media (max-width: 1200px) {
    .home-news-slider__news__item a {
        padding: 20px;
    }
}
@media (max-width: 992px) {
    .home-news-slider__slogan {
        font-size: 1.125rem; /* calculateRem(18px) */
        width: 15.625rem; /* calculateRem(250px) */
        top: 26px;
    }
}

/***** MOBILE HOME NEWS *******/
#home-news-slider__mob {
    position: relative;
    overflow: hidden;
}

.home-news-slider__mob__slider .swiper-wrapper {
    display: flex;
    align-items: center;
}

.home-news-slider__mob__slider .swiper-slide {
    text-align: left;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.home-news-slider__mob__slogan__item span {
    font-size: 14px;
    color: #b9b9b9;
}
.home-news-slider__mob__slogan {
    margin-left: 0;
}
.home-news-slider__mob__slogan__item p {
    font-size: 18px;
    color: var(--primary-blue);
    font-weight: 500;
    line-height: 22px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.home-news-slider__mob__images__item {
    height: 330px;
}

.home-news-slider__mob__images img {
    max-width: 100%;
    height: 100%;
    display: block;
}

/* Pagination Styling */
.home-news-slider__mob__pagination .swiper-pagination {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
}

.home-news-slider__mob__pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0 5px;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.home-news-slider__mob__pagination .swiper-pagination-bullet-active {
    background-color: #007bff; /* Highlight active bullet */
}
.structure {
    width: 100%;
}
.structure-wrapper {
    margin-top: 16px;
    margin-bottom: 48px;
}

.line-title-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}
.line-title-wrap .line-l {
    height: 1px;
    background-color: #cccccc;
    flex: 1;
}
.line-title-wrap .line-title {
    color: #cccccc;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.structure-blocks {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 24px 0 60px;
    width: 60%;
}
.structure-blocks .block {
    border: 4px solid var(--primary-grey);
    padding: 16px;
    cursor: pointer;
    letter-spacing: -1px;
    box-shadow: 0px 4px 4px 0px rgba(182, 182, 182, 0.15);
    transition: all ease 0.3s;
}

.structure-blocks .block:hover {
    box-shadow: 0px 8px 16px 0px rgba(182, 182, 182, 0.25);
    transform: translateY(-4px);
    background-color: var(--primary-blue);
    color: #fff;
}

.vacant-box {
    padding: 66px 120px;
    border: 1px solid var(--primary-grey);
}

@media screen and (max-width: 1024px) {
    .structure-blocks {
        width: 100%;
    }
}

@media screen and (max-width: 1100px) {
    .vacant-box {
        padding: 36px 60px;
    }
}

.int-links-wrapper {
    width: 91%;
}

/* Hide mobile pagination on desktop */
.mobile-pagination {
    display: none;
}

/* Show mobile, hide desktop on mobile */
@media screen and (max-width: 768px) {
    .desktop-pagination {
        display: none;
    }
    
    .mobile-pagination {
        display: flex;
    }
    
    .pagination-block .pagination {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }
    
    .pagination-block .pagination .page-link {
        font-size: 14px;
        padding: 6px 12px;
        min-width: 36px;
    }
    
    .pagination-block .pagination .page-dots .page-link {
        padding: 6px 8px;
        cursor: default;
    }
    
    .pagination-block .pagination .arr-btn {
        padding: 6px 10px;
    }
}
