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

body {
    color: #1e1e1e;
    background-color: #fff;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 16px;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

*,
*:after,
*:before {
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
}

::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 7px;
    padding-top: 10px;
}

::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
}

.container {
    width: 100%;
    max-width: 1250px;
    padding: 0 25px;
    margin: 0 auto;
}

.--tablet {
    display: none;
}

.btn {
    transition: all linear 0.15s;
    display: inline-block;
    font-family: "Rubik", sans-serif;
    text-decoration: none;
    line-height: 1;
}

.button-secondary {
    border: 2px solid #fff;

    background-color: #fff;
    color: #1e1e1e;
}

.button-secondary:hover {
    background-color: #00be9c;
    color: #fff !important;
}

.button-primary {
    border: 2px solid #00be9c;
    background-color: #00be9c;
    color: #fff;
}

.button-primary:hover {
    border: 2px solid #2065ab;
    background-color: #2065ab;
}

.bold_text {
    font-weight: 700 !important;
}

.fw-500 {
    font-weight: 500;
}

.header__menu {
    display: none;
}

.df {
    display: flex !important;
}

.header__nav-active {
    opacity: 1 !important;
}

/* Cookies */
#cookies_notice {
    position: fixed;
    bottom: 0px;
    width: 100%;
    margin: 0;
    padding: 20px 10px;
    background: rgba(250, 250, 250, 0.9);
    font-size: 15px;
    line-height: 1;
    box-sizing: border-box;
    border-top: 1px solid #212629;
    border-bottom: 0px;
    z-index: 999;
    color: #666;
}

.uk-width-3-4 {
    width: 75%;
}

.uk-width-1-4 {
    width: 25%;
}

.uk-position-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: max-content;
    max-width: 100%;
    box-sizing: border-box;
    position: absolute !important;
}

.uk-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
}

.uk-position-relative {
    position: relative !important;
}

.uk-button-primary:focus, .uk-button-primary:hover {
    background-color: #0f7ae5;
    color: #fff;
}

.uk-button {
    margin: 0;
    border: none;
    overflow: visible;
    font: inherit;
    color: inherit;
    -webkit-appearance: none;
    border-radius: 0;
    display: inline-block;
    box-sizing: border-box;
    padding: 0 30px;
    vertical-align: middle;
    font-size: .875rem;
    line-height: 38px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: .1s ease-in-out;
    transition-property: color, background-color, border-color;
    cursor: pointer;
}

.uk-button-primary {
    background-color: #1e87f0;
    color: #fff;
    border: 1px solid transparent;
}

/* Header */

.header {
    background-color: #1e1e1e;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 0 13px;
}

.header__flex-wrapper {
    display: flex;
    align-items: center;
    gap: 36px;
}

.header__logo {
    width: 51px;
    height: 45px;
    display: block;
}

.header__nav {
    display: flex;
    gap: 17px;
    list-style: none;
}

.header__nav .menu-item {
    display: flex;
    width: 100%;
    text-wrap: nowrap;
}

.header__nav .menu-item a {
    transition: all linear 0.15s;
    text-decoration: none;
    color: #fff;
    font-size: 17px;
    padding: 5px;
    position: relative;
    width: 100%;
}

.header__nav .menu-item a:before {
    display: block;
    content: "";
    width: calc(100% - 10px);
    height: 1px;
    opacity: 0;
    background-color: #fff;
    position: absolute;
    bottom: 3px;
    left: 5px;
    transition: all linear 0.15s;
}

.header__nav .menu-item a:hover::before {
    opacity: 1;
}

.header__button-box {
    display: flex;
    gap: 6px;
}

.header__button-box__button {
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    text-transform: capitalize;
    padding: 9px 18px;
}

/* Archive page */

.pageTitle {
    padding: 30px 0;
}

.pageTitle__wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.pageTitle__text {
    color: #00BE9B;
    font-family: 'Rubik', sans-serif;
    font-size: 46px;
    font-weight: 700;
    line-height: 62px;
    text-transform: capitalize;
}

.articles__list {
    display: flex;
    gap: 18px 16px;
    flex-wrap: wrap;
    margin-bottom: 150px;
}

.articles__single {
    width: calc(33.33% - 11px);
    box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.20);
    border-radius: 15px;
}

.articles__titleWrapper {
    height: 220px;
    border-radius: 15px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    text-decoration: none;
}

.articles__title {
    backdrop-filter: blur(4px);
    padding: 10px 20px 5px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    color: #FFF;
    font-family: 'Rubik', sans-serif;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.05;
    text-decoration: none;
    transition: .3s;
}

.articles__titleWrapper:hover .articles__title {
    color: #00BE9C;
}

.articles__descriptionWrapper {
    padding: 25px 20px 17px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.articles__description {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.25em;
    height: 2.5em;
    color: #606060;
    font-family: 'Rubik', sans-serif;
    font-size: 17px;
}

.articles__metaWrapper {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.articles__date {
    color: #AFADAD;
    font-family: 'Rubik', sans-serif;
    font-size: 15px;
    line-height: normal;
}

.articles__link {
    border-radius: 1px;
    border: 1px solid #00BE9C;
    background: #F2FFFD;
    width: 100%;
    max-width: 170px;
    color: #00BE9C;
    text-align: center;
    font-family: 'Rubik', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 5px 10px;
    text-decoration: none;
    transition: .3s;
}

.articles__link:hover {
    background: #00BE9C;
    color: #ffffff;
}

.pagination {
    margin: 60px 0;
}

.pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.pagination .page-numbers {
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    line-height: 25px;
    color: #BDBDBD;
    text-align: center;
    font-family: 'Rubik', sans-serif;
    font-size: 18px;
    text-decoration: none;
    transition: .3s;
}

.pagination .next,
.pagination .prev {
    background-color: #EEEEEE;
}

.pagination .current,
.pagination a.page-numbers:hover {
    background-color: #00BE9C;
    color: #ffffff;
}

.pagination .next:hover path,
.pagination .prev:hover path {
    fill: #FFFFFF;
}

/* Single article */

.articleBanner {
    min-height: 350px;
    background-position: center;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.articleBanner:before {
    content: '';
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.60) 0%, rgba(0, 0, 0, 0.00) 100%);
    width: 100%;
    height: 80px;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.articleBanner:after {
    content: '';
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.60) 100%);;
    width: 100%;
    height: 245px;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
}

.articleBanner__wrapper {
    height: 100%;
    min-height: 350px;
    z-index: 10;
    position: relative;
    border-radius: 1px;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(4px);
    max-width: 460px;
    padding: 40px 60px 40px 0;
}

.articleBanner__wrapper:before {
    content: '';
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(4px);
    position: absolute;
    width: 50vw;
    height: 100%;
    top: 0;
    right: 100%;
}

.articleBanner__title {
    color: #FFFFFF;
    font-family: 'Rubik', sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 20px;
}

.articleBanner__description {
    margin-bottom: 45px;
    color: #FFFFFF;
    font-family: 'Rubik', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.25em;
}

.articleBanner__navigation {
    display: flex;
    align-items: center;
    gap: 12px;
}

.article__navItem {
    border-radius: 1px;
    padding: 8px 15px;
    display: block;
    color: #FFF;
    text-align: center;
    font-family: 'Rubik', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid #FFF;
    background: rgba(255, 255, 255, 0.20);
    transition: .3s;
}

.article__navItem:hover {
    color: #343434;
    background: rgba(255, 255, 255, 1);
}

.articleBanner__mobile {
    display: none;
}

.articleContent {
    padding: 25px 0;
}

.articleContent__wrapper h2 {
    color: #1E1E1E;
    font-family: 'Rubik', sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 62px;
    text-transform: capitalize;
}

.articleContent__wrapper h4 {
    color: #2065AB;
    font-family: 'Rubik', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2em;
}

.articleContent__wrapper p {
    color: #000000;
    font-family: 'Rubik', sans-serif;
    font-size: 18px;
    line-height: 1.2em;
    margin-bottom: 24px;
}

.articleContent__wrapper p a {
    color: #2065AB;
    transition: .3s;
}

.articleContent__wrapper p a:hover {
    color: #03be9c;
}

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

.articleBanner__mobile .divider,
.articleContent__wrapper .divider {
    display: flex;
    gap: 5px;
    align-items: center;
    margin: 32px 0 24px;
}

.divider__dot {
    width: 8px;
    height: 8px;
    background: #00BE9B;
    border-radius: 50%;
    flex-shrink: 0;
}

.divider__line {
    background: #636363;
    width: 100%;
    height: 1px;
    border-radius: 1px;
}

.articleOther {
    margin-bottom: 60px;
}

.articleOther .container {
    padding: 0;
    max-width: 100%;
}

.articleOther__title {
    color: #2065AB;
    font-family: 'Rubik', sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 62px;
    text-align: center;
    max-width: 90%;
    margin: 0 auto 15px;
}

.articleOther__slider {
    position: relative;
}

.articleOther__slider:before {
    content: '';
    background: linear-gradient(270deg, rgba(255, 255, 255, 0.00) 0%, #FFF 100%);
    position: absolute;
    top: 0;
    left: 0;
    height: calc(100% - 76px);
    width: 140px;
    z-index: 100;
}

.articleOther__slider:after {
    content: '';
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.00) 0%, #FFF 100%);
    position: absolute;
    top: 0;
    right: 0;
    height: calc(100% - 76px);
    width: 140px;
    z-index: 100;
}

.articleOther__slideWrapper {
    text-decoration: none !important;
    margin-top: 100%;
    display: block;
}

.articleOther__slide {
    display: flex;
    padding: 32px 36px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    align-items: flex-end;
}

.articleOther__slideTitle {
    color: #FFF;
    text-align: center;
    font-family: 'Rubik', sans-serif;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.05em;
    transition: .3s;
}

.articleOther__slideWrapper:hover .articleOther__slideTitle {
    color: #00BE9C;
}

.articleOther__navWrapper {
    display: flex;
    justify-content: center;
    margin: 35px 0 0;
}

.articleOther__nav {
    width: 63px;
    height: 41px;
    background: #00BE9C;
    border-radius: 0 20px 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .3s;
}

.articleOther__nav-prev {
    border-radius: 20px 0 0 20px;
}

.articleOther__nav:hover {
    background: #2065ab;
}

.articleOther__nav.swiper-button-disabled {
    background: #cccccc !important;
    cursor: default;
}


/* Footer */

.footer {
    background: #e8edf9;
    padding: 88px 0 35px;
    margin-top: auto;
}

.footer__inner {
    display: flex;
    gap: 50px;
}

.footer__box {
    flex: 1 0 210px;
    text-align: center;
    width: 210px;
    max-width: 220px;
}

.footer__box__image {
    display: block;
    width: 85px;
    height: 75px;
    margin: 0 auto;
}

.footer__box__socials {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 18px;
}

.footer__box__socials__item {
    text-decoration: none;
    display: block;
    width: 38px !important;
    height: 38px;
}

.footer__box__socials__item-icon {
    width: 100%;
    height: 100%;
    max-width: 100%;
    display: block;
}

.footer__box__label {
    display: flex;
    justify-content: center;
    gap: 3px;
    padding: 5px 17px;
    background: #eb704b;
    margin-top: 25px;
}

.footer__box__label-text {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
}

.footer__box__label-img {
    display: block;
    max-width: 78px;
}

.footer__content {
    width: 100%;
}

.footer__content__inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

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

.footer__content__col ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer__content__col li {
    line-height: 1.3;
}

.footer__content__col li a {
    display: inline-block;
    text-decoration: none;
    color: inherit;
    font-size: 14px;
}

.footer__content__text {
    text-align: end;
    max-width: 554px;
    font-size: 14px;
    font-weight: 400;
}

.footerGeneral {
    display: flex;
    justify-content: end;
    list-style: none;
    gap: 40px;
    margin-top: 18px;
    padding: 0;
}

.footerGeneral li a {
    text-decoration: none;
    color: #2065ab;
    font-size: 18px;
    font-weight: 700;
}

.footerGeneral li a:hover {
    text-decoration: underline;
}

@media (min-width: 1921px) {
    .articleOther__slideTitle {
        font-size: 30px;
    }
}

@media (max-width: 1290px) {

    .--desktop {
        display: none;
    }

    .--tablet {
        display: block;
    }

    /* Footer */
    .footer {
        background: #e8edf9;
        padding: 50px 0 35px;
    }

    .footer__inner {
        max-width: 900px;
        margin: 0 auto;
    }

    .footer__content__text {
        text-align: start;
        max-width: 100%;
        margin-top: 38px;
    }

    .footer__content__inner {
        max-width: 400px;
        margin-left: auto;
    }

    .footerGeneral {
        max-width: 400px;
        flex-wrap: wrap;
        gap: 10px 40px;
        margin-left: auto;
    }

    .footer__content__col {
        text-align: end;
    }

    .footer__content__col:first-child {
        order: 1;
    }

    .footer__box {
        min-height: 100%;
        display: flex;
        flex-direction: column;
    }

    .footer__box__socials {
        flex: 1 1 auto;
    }
}

@media (max-width: 1024px) {
    .articles__single {
        width: calc(50% - 8px);
    }

    .articleBanner {
        min-height: 250px;
    }

    .articleBanner__wrapper {
        min-height: 250px;
        max-width: 400px;
        padding: 25px 25px 30px 0;
    }

    .articleBanner__title {
        font-size: 27px;
        margin-bottom: 10px;
    }

    .articleBanner__description {
        margin-bottom: 15px;
        font-size: 15px;
    }

    .articleContent__wrapper h2 {
        font-size: 27px;
    }

    .divider__dot {
        width: 7px;
        height: 7px;
    }
}

@media (max-width: 1000px) {
    .container {
        padding: 0 45px;
    }

    /* Header */
    .header {
        position: relative;
        z-index: 100;
    }

    .header__nav {
        width: 172px;
        opacity: 0;
        display: none;
        flex-direction: column;
        gap: 0;
        border-radius: 10px;
        background: #1e1e1e;
        position: absolute;
        top: calc(100% + 11px);
        right: 45px;
        z-index: -100;
        padding: 18px 0;
        transition: all linear 0.15s;
    }

    .header__nav .menu-item a {
        text-align: center;
        padding: 9px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .header__nav .menu-item a:hover {
        background: #2a2a2a;
    }

    .header__nav .menu-item a:hover::before {
        opacity: 0;
    }

    .header__nav .menu-item:last-child a {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .header__button-box {
        right: 20px;
    }

    .header__menu {
        display: block;
    }

    .header__menu-icon {
        display: block;
        width: 100%;
    }
}

@media (max-width: 850px) {
    /* Header */
    .header__button-box__button {
        padding: 11px 18px;
    }
}

@media (max-width: 767px) {
    .articleBanner {
        display: flex;
        align-items: flex-end;
        background-position: 70% 50%;
    }

    .articleBanner__title {
        font-size: 22px;
        margin-bottom: 0;
    }

    .articleBanner__wrapper {
        min-height: auto;
        max-width: 100%;
        padding: 15px 0 10px;
        background: transparent;
        display: flex;
        align-items: center;
    }

    .articleBanner__description {
        display: none;
    }

    .article__navItem {
        background-image: url("../image/icons/arrows.svg");
        padding: 0;
        font-size: 0;
        border: 0;
        width: 33px;
        height: 33px;
        flex-shrink: 0;
        background-color: transparent;
        background-position: left;
        transition: 0s;
    }

    .article__navItem:hover {
        background-color: transparent;
        background-image: url("../image/icons/arrows.svg");
        background-position: right;
        transform: rotate(180deg);
    }

    .article__navItem-next {
        transform: rotate(180deg);
    }

    .article__navItem-next:hover {
        transform: rotate(0);
    }

    .articleBanner__wrapper:before {
        width: 100vw;
        height: 100%;
        top: 0;
        left: -25px;
        right: 100%;
        z-index: -1;
    }

    .articleBanner__mobile {
        display: block;
        background-color: #EEF2F5;
        padding: 15px 0;
        position: relative;
    }

    .articleBanner__mobile .divider {
        margin: 0;
        position: absolute;
        width: calc(100% - 50px);
        left: 25px;
        bottom: -3px;
    }

    .articleBanner__mobileDescription {
        color: #3A3A3A;
        font-family: 'Rubik', sans-serif;
        font-size: 15px;
        line-height: 1.25em;
    }

    .articleContent__wrapper h2 {
        font-size: 25px;
        line-height: 1.25em;
        margin-bottom: 10px;
    }

    .articleContent__wrapper .divider span:last-child,
    .articleContent__wrapper .divider span:first-child {
        display: none;
    }

}

@media (max-width: 690px) {

    /* General */
    .container {
        padding: 0 25px;
    }

    /* Header */
    .header__nav {
        right: 25px;
    }

    .header__button-box {
        display: none;
    }

    .container {
        padding: 0 25px;
    }

    /* Archive blog */
    .articles__single {
        width: 100%;
    }

    /* Footer */
    .footer__inner {
        flex-direction: column;
    }

    .footer__content__inner {
        margin: 0 auto;
    }

    .footerGeneral {
        max-width: 250px;
        justify-content: center;
        margin: 0 auto;
    }

    .footer__box {
        width: 100%;
        max-width: 100%;
        flex: none !important;

        min-height: auto;
        margin: 0 auto;
    }

    .footer__box__socials {
        flex: none !important;
    }

    .footer__box__socials__item {
        width: 57px !important;
        height: 57px !important;
    }

    .footer__box__label {
        max-width: 205px;
        margin-top: 13px;
        margin: 20px auto 0;
    }

    .footerGeneral {
        gap: 0 20px;
        margin-top: 25px;
    }
}

@media (max-width: 640px) {

    .articleOther__slider.swiper-grid-column > .swiper-wrapper {
        height: 600px;
    }

    .articleOther__slider:before,
    .articleOther__slider:after {
        width: 40px;
    }
}

@media (max-width: 390px) {
    .pagination .nav-links {
        gap: 10px;
    }
}
