@import url('variables.css');
@import url('base.css');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css");

.container-fluid{padding:0;margin:0;}

/* FLEX */
.flex-wrapper {
    display: flex;
    flex: 1
}

.fw-row {
    flex-direction: row
}

.fw-column {
    flex-direction: column
}

.fw-j-sb {
    justify-content: space-between
}

.fw-j-center {
    justify-content: center
}

.fw-j-end {
    justify-content: flex-end;
}

.fw-a-center {
    align-items: center
}

.fw-a-end {
    align-items: flex-end
}

/* SEARCH MENU */
.search-drawer {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 101, 150, .975);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 99;
    transition: 700ms opacity cubic-bezier(0.075, 0.82, 0.165, 1), 700ms visibility cubic-bezier(0.075, 0.82, 0.165, 1);
}

    .search-drawer.visible {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }

.drawer-header {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
    padding: 1.875rem 0;
}

.drawer-body {
    position: relative;
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

    .drawer-body .search-wrapper {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

        .drawer-body .search-wrapper .search-input {
            border: none;
            background-color: transparent;
            outline: none;
            color: rgba(255, 255, 255, .9);
            font-weight: 600;
            font-size: 3vw;
        }

            .drawer-body .search-wrapper .search-input::placeholder {
                color: rgba(255, 255, 255, .3)
            }

            .drawer-body .search-wrapper .search-input:not(:placeholder-shown) ~ .search-action-button {
                opacity: 1;
                visibility: visible;
                pointer-events: all;
            }

        .drawer-body .search-wrapper .search-action-button {
            width: fit-content;
            margin-top: 1.5rem;
            font-size: 1rem;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: 150ms opacity ease, 150ms visibility ease;
        }

/* MOBILE MENU */
.mobile-drawer {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--primary-dark);
    transition: .75s transform cubic-bezier(0.23, 1, 0.32, 1);
    transform: translate3d(0, -100%, 0);
    overflow: hidden;
    z-index: 99;
}

    .mobile-drawer.visible {
        transform: translate3d(0, 0, 0);
    }

    .mobile-drawer .mobile-drawer-main {
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        bottom: 1.56vw;
        display: flex;
        flex: 1;
        flex-direction: column;
        background-color: var(--primary);
        padding: 1.5rem;
        overflow-y: auto;
        transition: 1s transform cubic-bezier(0.23, 1, 0.32, 1);
        transition-delay: .05s;
        transform: translate3d(0, -100%, 0);
    }

    .mobile-drawer.visible .mobile-drawer-main {
        transform: translate3d(0, 0, 0);
    }

        .mobile-drawer.visible .mobile-drawer-main .drawer-header {
            padding-bottom: 1.5rem;
            margin-bottom: 1.5rem;
            border-bottom: 1px solid rgba(244, 234, 239, .15);
        }

    .mobile-drawer .mobile-drawer-main .drawer-header .drawer-title {
        font-size: 1.625rem;
        font-weight: 500;
        color: var(--white-secondary);
    }

    .mobile-drawer .mobile-drawer-main .drawer-header .btn-mobile-drawer-close {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 3rem;
        height: 3rem;
        border-radius: 50%;
        background-color: var(--primary-dark);
        font-size: 1.625rem;
        color: var(--light-300);
        transition: .15s background-color ease, .15s color ease;
    }

        .mobile-drawer .mobile-drawer-main .drawer-header .btn-mobile-drawer-close:hover {
            color: var(--light-100)
        }

    .mobile-drawer .mobile-drawer-main .drawer-body .mobile-nav {
        display: flex;
        flex: 1;
        flex-direction: column;
        width: 100%;
    }

    .mobile-drawer .mobile-drawer-main .drawer-body .routes .route {
        padding: 1rem .625rem;
        border-bottom: 1px solid rgba(244, 234, 239, .09);
        color: var(--white-secondary);
        background-color: transparent;
    }

        .mobile-drawer .mobile-drawer-main .drawer-body .routes .route.active {
            background-color: var(--primary-dark);
            color: var(--white-secondary);
            font-weight: 500;
        }

        .mobile-drawer .mobile-drawer-main .drawer-body .routes .route a {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

    .mobile-drawer .mobile-drawer-main .drawer-body .routes .collapse-route a {
        font-size: 14px
    }

    .mobile-drawer .mobile-drawer-main .drawer-body .routes .route a .collapse-arrow {
        transition: .15s transform ease;
    }

    .mobile-drawer .mobile-drawer-main .drawer-body .routes .route a[aria-expanded="true"] .collapse-arrow {
        transform: rotate(180deg);
    }

    .mobile-drawer .mobile-drawer-main .drawer-body .routes .route .collapse-menu {
        margin-top: 1rem;
        background-color: var(--primary-dark);
    }

    .mobile-drawer .mobile-drawer-main .drawer-body .routes .route .collapse .route:last-child {
        border-bottom: 0;
    }

    .mobile-drawer .mobile-drawer-main .drawer-body .mobile-search {
        position: relative;
        display: flex;
        width: 100%;
        margin-bottom: 1rem;
    }

        .mobile-drawer .mobile-drawer-main .drawer-body .mobile-search .mobile-search-input {
            display: flex;
            padding: .875rem 4rem .875rem 1rem;
            width: 100%;
            background-color: rgba(255, 255, 255, .07);
            color: #fff;
        }

        .mobile-drawer .mobile-drawer-main .drawer-body .mobile-search .mobile-search-submit {
            position: absolute;
            right: 0;
            top: 0;
            bottom: 0;
            width: 60px;
            background-color: rgba(255, 255, 255, .09);
            color: #fff;
        }

/*
  -----------
  | APP CSS |
  -----------
*/
#app, #app .page {
    display: block;
    min-height: 100%;
}

/* HEADER */
.page-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 120px;
    background-color: #fff;
    padding: 1rem 0;
    box-shadow: 0 4px 18px rgba(0, 8, 16, .1);
    z-index: 10;
    transition: 150ms height ease, 150ms padding ease;
}

    .page-header.sticky {
        height: 80px;
        padding: .5rem 0;
        overflow: hidden;
    }

.app-logo {
    display: flex;
    height: 100px;
    transition: 150ms transform ease, 150ms height ease;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.page-header.sticky .app-logo {
    height: 70px;
    transform: translateY(-18px)
}

.page-header .mobile-menu-open {
    display: none;
}

.header-main {
    position: relative;
    display: flex;
    flex-direction: column;
    margin-left: 5rem;
    transition: 150ms transform ease;
}

.page-header.sticky .header-main {
    transform: translateY(-40%);
}

.header-top {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-lighter);
    padding-bottom: .5rem;
    font-size: 14px;
    transition: 150ms border-color ease, 150ms visibility ease;
}

.page-header.sticky .header-top {
    visibility: hidden
}

.header-left,
.header-right {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
}

.social-media-icons, .app-language {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    margin-left: 1.5rem;
    gap: 10px;
}

    .social-media-icons > li, .app-language > li {
        margin-right: .375rem;
    }

.app-nav > ul {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
}

    .app-nav > ul > li {
        display: flex;
        margin: 0 1.5rem;
    }

.app-nav ul > li:first-child {
    margin-left: 0;
}

.app-nav ul > li:last-child {
    margin-right: 0;
}

.app-nav > ul > li > a {
    display: flex;
    align-items: center;
    padding: .5rem 0;
    font: normal 500 15px/1.6667 'Inter', sans-serif;
    color: #595A5C;
    transition: 150ms color ease;
}

    .app-nav > ul > li > a:hover {
        color: #898A8C
    }

    .app-nav > ul > li > a.active {
        color: var(--primary)
    }

.user-actions {
    display: flex;
}

    .user-actions .button:first-child {
        margin-right: .5rem;
    }



.page-home{
    margin-top:120px;
}

.hero-slider {
    width: 100%;
    height: calc(100vh - 300px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    z-index: 0;
    padding: 0 5%;
}


@media (max-width: 991px) {
    .hero-slider {
        height: 600px;
    }
}

@media (max-width: 767px) {
    .hero-slider {
        height: 500px;
    }
}

.hero-slider .swiper-slide {
    overflow: hidden;
    color: #fff;
}

.hero-slider .swiper-container {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.hero-slider .slide-inner {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
}

.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next {
    background: transparent;
    width: 55px;
    height: 55px;
    line-height: 53px;
    margin-top: -30px;
    text-align: center;
    border: 2px solid #d4d3d3;
    border-radius: 55px;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
}

.hero-slider:hover .swiper-button-prev,
.hero-slider:hover .swiper-button-next {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

@media (max-width: 767px) {
    .hero-slider .swiper-button-prev,
    .hero-slider .swiper-button-next {
        display: none;
    }
}

.hero-slider .swiper-button-prev {
    left: 25px;
    transform: translateX(50px);
}

    .hero-slider .swiper-button-prev:before {
        font-family: "Font Awesome 5 Free";
        content: "\f060";
        font-size: 15px;
        color: #d4d3d3;
        font-style: normal;
        display: inline-block vertical-align: middle;
        font-weight: 900;
    }

.hero-slider .swiper-button-next {
    right: 25px;
    transform: translateX(-50px);
}

    .hero-slider .swiper-button-next:before {
        font-family: "Font Awesome 5 Free";
        content: "\f061";
        font-size: 15px;
        color: #d4d3d3;
        font-style: normal;
        display: inline-block vertical-align: middle;
        font-weight: 900;
    }

.hero-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    text-align: left;
    line-height: 12px;
    font-size: 12px;
    color: #000;
    opacity: 0.3;
    background: #fff;
    transition: all .2s ease;
}

.hero-slider .swiper-pagination-bullet-active {
    opacity: 1;
}

.hero-slider .swiper-container-horizontal > .swiper-pagination-bullets,
.hero-slider .swiper-pagination-custom,
.hero-slider .swiper-pagination-fraction {
    bottom: 30px;
}

@media screen and (min-width: 992px) {
    .hero-slider .swiper-container-horizontal > .swiper-pagination-bullets,
    .hero-slider .swiper-pagination-custom,
    .hero-slider .swiper-pagination-fraction {
        /*     display: none; */
    }
}

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

.hero-slider .swiper-container-horizontal > .swiper-pagination-bullets {
    text-align: center;
    bottom: 50px;
    max-width: 1200px;
    x; */
    padding: 0 15px;
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%);
}

}

@media (min-width: 767px) {
    .hero-slider .swiper-container-horizontal > .swiper-pagination-bullets {
        bottom: 30px;
    }
}
/*--------------------------------------------------------------
	#hero-style
--------------------------------------------------------------*/
.hero-style {
    height: calc(100vh - 300px);
    transition: all .4s ease;
    min-height: 600px;
}

@media (max-width: 991px) {
    .hero-style {
        height: 600px;
    }
}

@media (max-width: 767px) {
    .hero-style {
        height: 500px;
    }
}

@media screen and (min-width: 992px) {
    .hero-style .container {
        padding-top: 95px;
    }
}

.hero-style .slide-title,
.hero-style .slide-text,
.hero-style .slide-btns {
    max-width: 690px;
}

    .hero-style .slide-title h2 {
        font-size: 50px;
        font-weight: 600;
        line-height: 1.2;
        color: #ffffff;
        margin: 0 0 50px;
        text-transform: capitalize;
        transition: all .4s ease;
        text-shadow: 0px 1px 11px #000000;
        font-family: 'Oswald',sans-serif;
    }

@media (max-width: 1199px) {
    .hero-style .slide-title h2 {
        font-size: 75px;
    }
}

@media (max-width: 991px) {
    .hero-style .slide-title h2 {
        font-size: 50px;
        margin: 0 0 35px;
    }
}

@media (max-width: 767px) {
    .hero-style .slide-title h2 {
        font-size: 35px;
        margin: 0 0 30px;
    }
}

.hero-style .slide-text p {
    opacity: 0.8;
    font-family: Rajdhani;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: normal;
    color: #ffffff;
    margin: 0 0 40px;
    transition: all .4s ease;
}

@media (max-width: 767px) {
    .hero-style .slide-text p {
        font-size: 16px;
        font-size: 1rem;
        font-weight: normal;
        margin: 0 0 30px;
    }
}

.hero-style .slide-btns > a:first-child {
    margin-right: 10px;
}


/*--------------------------------------------------------------
	#button-style
--------------------------------------------------------------*/
.theme-btn, .theme-btn-s2 {
    background-color: #ffffff;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
    color: #2b3b95;
    padding: 9px 32px;
    border: 0;
    border-radius: 3px;
    text-transform: uppercase;
    display: inline-block;
    line-height: initial;
    transition: all .4s ease;
}

a {
    text-decoration: none;
    transition: all 0.2s ease;
}

.theme-btn-s2 {
    background-color: rgba(255, 255, 255, 0.9);
    color: #131e4a;
}

    .theme-btn:hover, .theme-btn-s2:hover, .theme-btn:focus, .theme-btn-s2:focus, .theme-btn:active, .theme-btn-s2:active {
        background-color: var(--primary);
        color: #fff;
    }

.theme-btn-s3 {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    color: #ffffff;
    text-transform: uppercase;
}

i.fa-chevron-circle-right {
    height: 22px;
    width: 22px;
}

a:hover {
    text-decoration: none;
}

@media (max-width: 991px) {
    .theme-btn, .theme-btn-s2, .theme-btn-s3 {
        font-size: 13px;
        padding: 15px 25px;
    }
}

@media (max-width: 767px) {
    .theme-btn, .theme-btn-s2 {
        padding: 13px 20px;
        font-size: 13px;
    }
}


.page-home section.section-about {
    padding: 150px 0 100px 0;
}

    .page-home section.section-about .section-header {
        font-size: 26px;
        font-weight: 400;
        padding-bottom: 15px;
        display: none;
    }

    .page-home section.section-about .section-body {
        font-size: 18px;
    }

        .page-home section.section-about .section-body p {
            padding-bottom: 20px;
        }

section.latest-news {
    margin: 80px auto 100px auto;
}

    section.latest-news .hTitle {
        font-size: 24px;
        color: #2b375f;
        font-weight: bold;
        margin-bottom: 30px;
    }

    section.latest-news .image img {
        max-height: 250px;
        width: 100%;
        object-fit: cover;
    }

    section.latest-news .date {
        font-size: 14px;
        margin: 10px 0;
    }

    section.latest-news .title {
        font-size: 20px;
        font-weight: 600;
        margin: 10px 0;
        Color: #2b375f;
    }

    section.latest-news .text {
        height: 83px;
        overflow: hidden;
    }

    section.latest-news .detail {
        margin: 20px 0;
        text-align: center;
    }

        section.latest-news .detail a {
            padding: 5px 19px;
            color: inherit;
            text-decoration: none;
            -webkit-transition: background-color .3s ease-out;
            -moz-transition: background-color .3s ease-out;
            -o-transition: background-color .3s ease-out;
            transition: background-color .3s ease-out;
            display: inline-block;
            font-weight: 400;
            border: 1px solid #bdbdbd;
            border-radius: 3px;
        }

            section.latest-news .detail a:hover {
                background: #434343;
                color: #FFF;
                -webkit-transition: background-color .3s ease-out;
                -moz-transition: background-color .3s ease-out;
                -o-transition: background-color .3s ease-out;
                transition: background-color .3s ease-out;
            }

section.container-fluid.quicklinks {
    background: #eee;
}

    section.container-fluid.quicklinks .wrapper {
        display: flex;
    }

        section.container-fluid.quicklinks .wrapper .item {
            width: calc(100% / 3);
            padding: 40px;
            display: flex;
            flex-direction: column;
        }

            section.container-fluid.quicklinks .wrapper .item:hover {
                background: #4cc6e4;
                cursor: pointer;
            }

                section.container-fluid.quicklinks .wrapper .item:hover .title, section.container-fluid.quicklinks .wrapper .item:hover .text {
                    color: #fff;
                }

            section.container-fluid.quicklinks .wrapper .item .icon {
                align-self: center;
                padding: 20px;
                text-align: center;
            }

                section.container-fluid.quicklinks .wrapper .item .icon img {
                    max-height: 100px;
                    opacity: 0.3;
                }

            section.container-fluid.quicklinks .wrapper .item .title {
                font-size: 36px;
                text-align: center;
                text-transform: uppercase;
            }

            section.container-fluid.quicklinks .wrapper .item .text {
                font-size: 16px;
                text-align: center;
            }

.page.container {
    padding: 50px 0;
}

    .page.container .content {
        padding-left: 50px;
    }

.page h1 {
    font-size: 30px;
    font-weight: 400;
    
    margin-bottom: 20px;
    text-transform: uppercase;
}

.banner {
    width: 100%;
    padding-top: 120px;
    /* padding-bottom: 50px; */
}

    .banner img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        object-position: center center;
    }


.page section.banner .image {
    width: 100%;
    /* height: 235px; */
}

    .page section.banner .image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.page section.banner .container-fluid {
    position: relative;
}

.page section.banner .overlay {
    position: absolute;
    background: #00000045;
    width: 100%;
    height: 100%;
    top: 0;
    /* left: 5%; */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 36px;
    color: #E1E6E9;
    text-transform: uppercase;
    font-family: 'Work Sans', sans-serif;
    font-weight: 800;
}

.accordion {
    border-radius: 6px;
    overflow: auto;
}

.accordion-item:first-of-type .accordion-button {
    border-radius: 0;
}

.accordion-item .accordion-button:not(.collapsed) {
    color: #fff;
    background-color: var(--primary);
}

    .accordion-item .accordion-button:not(.collapsed)::after {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    }

.accordion-item .accordion-button, .accordion-item2 .accordion-button {
    color: var(--dark-700);
    /* text-transform: uppercase; */
    letter-spacing: .0125rem;
    font-size: 16px;
    font-weight: 600;
}

    .accordion-item .accordion-button:focus {
        border-color: rgba(0,0,0,.125);
        box-shadow: none;
    }

    .accordion-item .accordion-button::after {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2300aeff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    }

.accordion-item .accordion-body {
    padding: 0
}

.accordion-item .accordion-routes li:not(:last-child) {
    border-bottom: 1px solid var(--border-lighter);
}

.accordion-item .accordion-route {
    display: flex;
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
    font-size: 14px;
    /* text-transform: uppercase; */
    letter-spacing: .0125rem;
    padding: .875rem 1.25rem .875rem 1.5rem;
    color: var(--dark-600);
    -webkit-transition: .15s background-color ease, .15s color ease;
    -moz-transition: .15s background-color ease, .15s color ease;
    -o-transition: .15s background-color ease, .15s color ease;
    transition: .15s background-color ease, .15s color ease;
}

    .accordion-item .accordion-route:hover {
        background-color: var(--white-secondary);
    }

.accordion-item .accordion-routes li.active > .accordion-route {
    background-color: #e2e2e2;
    color: var(--dark-100);
}

.accordion-item .accordion-route:not(.collapse-route) {
    font-weight: 600;
}

.accordion-item .accordion-route.active {
    background: #eeeeee;
}


.accordion-item, .accordion-item2 {
    color: var(--bs-accordion-color);
    background-color: var(--bs-accordion-bg);
    border: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
}

    .accordion-item2.active {
        color: #fff;
        background-color: var(--primary);
    }

    .accordion-item2 .accordion-button {
        position: relative;
        display: flex;
        align-items: center;
        width: 100%;
        padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
        /* font-size: 1rem; */
        /* color: var(--bs-accordion-btn-color); */
        text-align: left;
        background-color: var(--bs-accordion-btn-bg);
        border: 0;
        border-radius: 0;
        overflow-anchor: none;
        transition: var(--bs-accordion-transition);
    }

        .accordion-item2 .accordion-button::after {
            content: '';
            background: none;
            width: auto;
            height: auto;
        }



.filter-button button {
    padding: 6px 12px;
    background-color: var(--sky-blue);
    border-color: var(--sky-blue);
    font-size: 21px;
}

button.btn.left-menu-close-cta {
    font-size: 26px;
}

.left-menu {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 35vw;
    height: 100vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    background-color: #fff;
    /* box-shadow: 4px 0 12px rgba(0, 0, 0, .17); */
    z-index: 1001;
    transform: translate3d(-100%, 0, 0);
    -webkit-transition: .35s transform ease;
    -moz-transition: .35s transform ease;
    -o-transition: .35s transform ease;
    transition: .35s transform ease;
}

    .left-menu.visible {
        transform: translate3d(0, 0, 0)
    }

.left-menu {
    width: 100% !important
}

    .left-menu::-webkit-scrollbar {
        width: 6px;
    }

    .left-menu::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

    .left-menu::-webkit-scrollbar-thumb {
        background: #b0b0b0;
        border-radius: 6px;
    }

        .left-menu::-webkit-scrollbar-thumb:hover {
            background: #999;
        }


    .left-menu .left-menu-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-bottom: 3rem;
    }

        .left-menu .left-menu-header .left-menu-title {
            font-size: 1.625rem;
            font-weight: 600;
            color: #181a1b;
        }

        .left-menu .left-menu-header .left-menu-close {
            font-size: 1.375rem
        }




.page-contact .contact-info {
    display: flex;
    flex-direction: row;
    margin-bottom: 50px;
    color: #222;
    font-size: 18px;
}

    .page-contact .contact-info h2 {
        font-size: 20px;
        font-weight: bold;
        color: var(--primary);
    }

    .page-contact .contact-info .left {
        width: 40%;
    }

    .page-contact .contact-info .right {
        width: 57%;
        margin-left: 3%;
    }

    .page-contact .contact-info .title {
        color: var(--primary);
        font-weight: bold;
    }

    .page-contact .contact-info a {
        display: block;
        margin-bottom: 5px;
    }

        .page-contact .contact-info a:hover {
            color: var(--primary);
        }

.page-contact .contact-form-wrapper {
    background: #fff;
    padding: 50px;
    box-shadow: 0px 0px 12px 2px rgba(143,143,143,0.45);
    -webkit-box-shadow: 0px 0px 12px 2px rgba(143,143,143,0.45);
    -moz-box-shadow: 0px 0px 12px 2px rgba(143,143,143,0.45);
    margin-bottom: 50px;
}

    .page-contact .contact-form-wrapper h2 {
        font-size: 20px;
        font-weight: bold;
        color: var(--primary);
        margin-bottom: 20px;
    }

    .page-contact .contact-form-wrapper .contact-form {
        margin-top: 30px
    }

.page-contact .contact-form .row div {
    margin-bottom: 20px;
}

.page-contact .contact-form .row input[type=text], .page-contact .contact-form .row textarea {
    background: #f5f5f5;
    border-radius: 0;
}

    .page-contact .contact-form .row input[type=text]::placeholder, e-contact .contact-form .row textarea::placeholder {
        font-size: 14px;
    }

.page-contact .contact-form .btn {
    background-color: var(--primary) !important;
    border: none;
    border-radius: 0;
    color: #fff !important;
    display: block !important;
    margin-left: auto;
    padding: 10px 100px;
}


.page-news section.news-list {
    padding: 50px 0;
}

    .page-news section.news-list .container {
        display: flex;
        gap: 30px;
        flex-wrap: wrap;
    }

        .page-news section.news-list .container .wrapper {
            width: calc((100% - 60px) /3);
        }

            .page-news section.news-list .container .wrapper .image {
                height: 250px;
                width: 100%;
                margin-bottom: 20px
            }

                .page-news section.news-list .container .wrapper .image img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }

            .page-news section.news-list .container .wrapper .title {
                font-family: 'Work Sans',sans-serif;
                font-size: 18px;
                font-weight: 700;
                overflow: hidden;
                text-overflow: ellipsis;
                display: -webkit-box;
                -webkit-box-orient: vertical;
                -webkit-line-clamp: 2; /* number of lines to show */
                line-height: 24px; /* fallback */
                max-height: 48px; /* fallback */
            }

            .page-news section.news-list .container .wrapper .text {
                font-size: 17px;
                overflow: hidden;
                text-overflow: ellipsis;
                display: -webkit-box;
                -webkit-box-orient: vertical;
                -webkit-line-clamp: 3; /* number of lines to show */
                line-height: 24px; /* fallback */
                max-height: 72px; /* fallback */
                margin-top: 15px;
            }



.page-news section.news-detail ul li {
    list-style-type: disc;
    list-style-position: inside;
    padding-bottom: 20px;
}

.page-news section.news-detail ol, .page-news section.news-detail ul {
    margin-left: 30px;
}

    .page-news section.news-detail ol li {
        list-style-type: decimal;
        list-style-position: inside;
        padding-bottom: 20px;
    }

    .page-news section.news-detail ul ul, .page-news section.news-detail ol ul {
        list-style-type: circle;
        list-style-position: inside;
        margin-left: 15px;
    }

    .page-news section.news-detail ol ol, .page-news section.news-detail ul ol {
        list-style-type: lower-latin;
        list-style-position: inside;
        margin-left: 15px;
    }

.page-news section.news-detail {
    padding: 50px 0;
}

    .page-news section.news-detail .nextprev-container {
        display: flex;
        gap: 20px;
        flex-wrap: nowrap;
        justify-content: space-evenly;
        margin-top: 30px;
    }

        .page-news section.news-detail .nextprev-container > a {
            background: #3f3f3f;
            width: Calc((100% - 20px)/2);
            padding: 10px 20px;
            color: #FFF;
            display: flex;
            justify-content: flex-start;
            position: relative;
            align-items: center;
        }

            .page-news section.news-detail .nextprev-container > a:last-child {
                background: #3f3f3f;
                width: Calc((100% - 20px)/2);
                padding: 10px 20px;
                color: #FFF;
                display: flex;
                justify-content: flex-end;
                position: relative;
                align-items: center;
            }

        .page-news section.news-detail .nextprev-container a i.bi.bi-chevron-left {
            font-weight: bold;
            margin-right: 10px;
        }

        .page-news section.news-detail .nextprev-container a i.bi.bi-chevron-right {
            font-weight: bold;
            margin-left: 10px;
            float: right;
        }

        .page-news section.news-detail .nextprev-container a small {
            visibility: hidden;
            opacity: 0;
            transition: visibility 0s .3s, opacity .3s linear;
            position: absolute;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            width: 85%;
            font-size: inherit;
        }

        .page-news section.news-detail .nextprev-container a label {
            visibility: visible;
            opacity: 1;
            transition: opacity .3s linear;
        }

        .page-news section.news-detail .nextprev-container a:hover > small {
            visibility: visible;
            opacity: 1;
            transition: opacity .3s linear;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            width: 85%;
        }

        .page-news section.news-detail .nextprev-container a:hover > label {
            visibility: hidden;
            opacity: 0;
            transition: visibility 0s .3s, opacity .3s linear;
        }

    .page-news section.news-detail .text span {
        font-size: 20px !important;
        font-family: 'Karla' !important;
    }

    .page-news section.news-detail .text img {
        text-align: right;
        width: 50%;
        float: right;
        padding-left: 40px;
        padding-bottom: 20px;
    }

    .page-news section.news-detail .text h1 {
        font-family: 'Oswald',sans-serif;
        font-size: 30px;
        padding-bottom: 30px;
    }

    .page-news section.news-detail .text .date {
        font-weight: 700;
        color: var(--sky-blue);
    }

    .page-news section.news-detail .text p, .page-news section.news-detail .text div {
        padding-bottom: 30px;
    }

.page-news section.other-news {
    padding: 50px 0 100px;
}

    .page-news section.other-news h2 {
        font-family: 'Oswald', sans-serif;
        padding-bottom: 30px;
        font-size: 26px;
    }

    .page-news section.other-news .container .wrapper .image {
        height: 250px;
        width: 100%;
        margin-bottom: 20px
    }

        .page-news section.other-news .container .wrapper .image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    .page-news section.other-news .container .wrapper .title {
        font-family: 'Work Sans',sans-serif;
        font-size: 18px;
        font-weight: 700;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2; /* number of lines to show */
        line-height: 24px; /* fallback */
        max-height: 48px; /* fallback */
    }

    .page-news section.other-news .container .wrapper .text {
        font-size: 17px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3; /* number of lines to show */
        line-height: 24px; /* fallback */
        max-height: 72px; /* fallback */
        margin-top: 15px;
    }

footer .wrapper {
    display: flex;
    gap: 50px;
    padding: 30px 0;
    justify-content: space-between;
    border-top: 1px solid #cfcfcf;
}

footer .item .title {
    font-size: 24px;
    font-weight: 500;
    padding-bottom: 13px;
}

    footer .wrapper .item .logo {
        width: 20vw;
    }

        footer .wrapper .item .logo img {
            width: 100%;
        }

    footer .wrapper .item ul.social-media {
        display: flex;
        gap: 20px;
    }

        footer .wrapper .item ul.social-media i {
            font-size: 26px;
        }

    footer .wrapper .item ul.links a {
        font-size: 19px;
    }

.footer-bottom {
    border-top: 1px solid #cfcfcf;
    display: flex;
    padding: 10px 0;
    justify-content: space-between;
    align-items: center;
}

.lizbon {
    height: 14px;
    display: inline-block;
}

    .lizbon img {
        height: 100%;
        display: flex;
    }