:root {
    --brand-red: #c42c2d;
    --brand-blue: #008dd2;
    --brand-grey: #efefef;
    --text-grey: #656565;
    --btn-grey: #858585;
    --border-grey: #d9d9d9;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Fira Sans Extra Condensed', sans-serif;
    color: #333;
    background: #fff;
    letter-spacing: 1px;
}

a {
    text-decoration: none;
    transition: 0.2s;
    color: var(--brand-red);
}

.container-custom {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 15px;
}


.block-top-menu {
    background-color: var(--brand-grey);
    padding: 0px 0;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1050;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.nav-item a,
.mod-menu__toggle-sub,
#desktopMenuContainer .mod-menu.nav .nav-link,
#desktopMenuContainer .mod-menu.nav .separator {
    font-weight: normal;
    color: #333;
    padding: 0px 2px;
    font-family: 'Fira Sans', sans-serif;
    font-size: 18px;
    line-height: 34px;
    display: block;
    text-decoration: none;
    background: 0 0;
    border: 0;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    letter-spacing: 0px;
}

.mod-menu li.active>a,
.mod-menu a:hover {
    color: var(--brand-red);
}

.top-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Fira Sans', sans-serif;
    font-size: 12px;
}

.top-actions .eye-link {
    display: flex;
    align-items: center;
    color: #333;
    font-weight: 500;
}

.top-actions .eye-link:hover {
    color: var(--brand-red);
}

.top-actions .eye-img {
    height: 24px;
    margin-left: 22px;
}

#language-switcher img {
    height: 16px;
    cursor: pointer;
    width: auto;
    width: auto;
    opacity: 1;
    margin: 0px 6px;
}

.navbar-toggler-custom {
    border: none;
    padding: 2px 8px;
    font-size: 28px;
    color: #333;
    background: transparent;
    border-radius: 4px;
    /* border: 1px solid #ccc; */
    background: rgba(0, 0, 0, 0.05);
}

.navbar-toggler-custom:focus {
    box-shadow: none;
    background: rgba(0, 0, 0, 0.05);
}


@media (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
        animation: fadeIn 0.2s ease-in-out;
    }

    .block-top-menu .dropdown-menu {
        border: none;
        border-radius: 0 0 8px 8px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        padding: 10px 0;
        background: #fff;
        margin-top: 6px;
    }

    .block-top-menu .dropdown-item {
        font-family: 'Fira Sans', sans-serif;
        font-size: 16px;
        padding: 8px 20px;
        color: #333;
    }

    .block-top-menu .dropdown-item:hover {
        background: var(--brand-grey);
        color: var(--brand-red);
    }

    .dropdown-toggle::after {
        vertical-align: middle;
        margin-left: 6px;
        border-top-color: #333;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.block-header {
    background-color: #fff;
    padding: 28px 0;
    width: 100%;
}

.header-inner {
    padding-left: 2%;
    padding-right: 7%;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 25px;
}

.logo-wrapper img {
    height: 106px;
}

.header-brand-text {
    display: flex;
    flex-direction: column;
}

.header-brand-text .sub-company {
    font-family: 'Fira Sans', sans-serif;
    font-size: 18px;
    color: var(--text-grey);
    margin-bottom: 0px;
}

.header-brand-text h1 {
    font-family: 'Fira Sans', sans-serif;
    font-weight: 600;
    color: var(--brand-red);
    margin: 0;
    line-height: 1.2;
    font-size: 56px;
    letter-spacing: 0px;
    padding: 0px;
}

.header-brand-text .slogan {
    font-family: 'Fira Sans', sans-serif;
    font-size: 18px;
    color: var(--text-grey);
    display: block;
    margin-top: -10px;
    text-align: right;
}

.header-contacts {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-family: 'Fira Sans', sans-serif;
}

.header-contacts .hotline {
    font-size: 14px;
    color: #555;
    margin-bottom: 2px;
}

.header-contacts .phone {
    font-weight: 700;
    font-size: 20px;
    color: #000;
}

.header-contacts .social {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 5px;
    font-size: 14px;
}

.header-contacts .social img {
    height: 24px;
}

.block-search {
    background-color: var(--brand-grey);
    padding: 6px 0;
    width: 100%;
}

.search-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Fira Sans', sans-serif;
    font-size: 13px;
    color: #333;
    margin-left: -133px;
}

.search-wrapper span {
    color: #656565;
}

.search-group {
    position: relative;
    display: flex;
    align-items: center;
}

.search-group input {
    position: relative;
    z-index: 2;
    height: 34px;
    padding: 0 20px;
    border: none;
    background: #fff;
    width: 650px;
    font-size: 14px;
    border-radius: 50px;
    outline: none;
}

.search-group .btn-search {
    position: absolute;
    right: -82px;
    z-index: 1;
    height: 34px;
    border: none;
    background: var(--btn-grey);
    color: #fff;
    padding: 0 25px 0 45px;
    text-transform: uppercase;
    font-size: 14px;
    cursor: pointer;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
}


.hero-slider-wrapper {
    width: 100%;
    position: relative;
}

.hero-slide {
    height: 520px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero-slide-info {
    position: absolute;
    top: 49px;
    left: 0;
    color: #fff;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 90%;
}

.hero-slide-caption {
    background-color: #4c4c4c;
    padding: 4px 90px 4px 105px;
    font-family: 'Fira Sans Extra Condensed', sans-serif;
    font-size: 36px;
    text-transform: uppercase;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    letter-spacing: 1.6px;
    display: inline-block;
}

.hero-slide-text {
    margin-top: 20px;
    background-color: #4c4c4cd4;
    padding: 14px 90px 14px 105px;
    display: inline-block;
    max-width: 50%;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
}

.hero-slide-text p {
    margin-bottom: 0px;
}

.hero-slider-wrapper .splide__pagination {
    bottom: 20px;
}

.hero-slider-wrapper .splide__pagination__page {
    background: #fff !important;
    border-radius: 50px !important;
    width: 38px !important;
    height: 18px !important;
    margin: 0 5px !important;
    opacity: 0.6 !important;
    transform: none !important;
}

.hero-slider-wrapper .splide__pagination__page.is-active {
    opacity: 1 !important;
}

.splide__arrow {
    background: rgba(0, 0, 0, 0.3) !important;
    opacity: 0.7 !important;
}

.content-section {
    padding: 36px 0;
}

.section-title {
    font-family: 'Fira Sans Extra Condensed', sans-serif;
    font-weight: normal;
    text-transform: uppercase;
    color: #222;
    margin-bottom: 20px;
    font-size: 36px;
    letter-spacing: 1.6px;
}

.text-link-more {
    color: #000000;
    font-size: 16px;
}

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

.text-muted-custom {
    color: #4a4a4a;
    font-size: 14px;
    letter-spacing: 1.1px;
    line-height: 18px;
}

.news-featured {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-featured img {
    width: 100%;
    height: 505px;
    object-fit: cover;
    border-radius: 15px;
}

.news-featured-body {
    padding: 20px 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-featured-body h5 {
    font-family: 'Fira Sans Extra Condensed', sans-serif;
    font-size: 26px;
    letter-spacing: 1.6px;
    margin-bottom: 3px;
    color: #000;
}

.news-right-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.news-right-item {
    padding-bottom: 15px;
    border-bottom: 5px solid var(--border-grey);
}

.item-content .news-right-item {
    height: 100%;
}

.news-right-item:last-child {}

.news-right-item img {
    width: 100%;
    height: 229px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 20px;
}

.news-right-item h6 {
    font-family: 'Fira Sans Extra Condensed', sans-serif;
    font-size: 16px;
    margin-bottom: 12px;
    letter-spacing: 1.6px;
    color: #000;
}

.meta-date {
    font-size: 14px;
    color: #4a4a4a;
    display: block;
    margin-top: 8px;
    font-family: 'Fira Sans', sans-serif;
}


.notify-box {
    background-color: #ed1c24;
    color: white;
    padding: 13px 28px;
    border-radius: 15px;
    font-family: 'Fira Sans Extra Condensed', sans-serif;
    font-size: 16px;
    width: 100%;
    max-width: 454px;
    line-height: 18px;
    margin-bottom: 8px;
}

.notify-box strong {
    font-weight: 100;
}

.notify-box p {
    margin: 0px;
}

.news-list-wrapper {


    padding: 0px 15px;
}

.news-ribbon-item {
    padding: 18px 50px;
    border-bottom: 5px solid var(--border-grey);
}

.news-ribbon-item:last-child {}

.news-ribbon-title {

    color: #000000;
    font-size: 18px;
    font-family: 'Fira Sans Extra Condensed', sans-serif;
    letter-spacing: 0.8px;
    margin-bottom: 2px;
}

.news-ribbon-date {
    font-size: 16px;
    color: #4a4a4a;
    display: block;
    margin-bottom: 0px;
    font-family: 'Fira Sans', sans-serif;
}

.news-ribbon-text {
    font-size: 16px;
    color: #555;
    font-family: 'Fira Sans', sans-serif;
    line-height: 18px;
}


.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 220px;
    display: block;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.resources-slider .splide__slide {
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.resources-slider .splide__slide a {
    display: flex;
    width: auto;
    height: 110px;
    align-items: center;
}

.resources-slider .splide__slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;

}


#scrollTopBtn {
    display: none;
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 999;
    width: 80px;
    height: 80px;
    background: #f1f1f1;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

#scrollTopBtn:hover {
    background: #e0e0e0;
    transform: translateY(-3px);
}

#scrollTopBtn i {
    font-size: 30px;
    color: #ed1c24;
    margin-bottom: 2px;
}

#scrollTopBtn span {
    font-family: 'Fira Sans Extra Condensed', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #000;
    text-transform: uppercase;
}


.block-footer {
    background-color: var(--brand-blue);
    color: white;
    padding: 50px 0 20px;
    width: 100%;
}

.block-footer a {
    color: rgba(255, 255, 255, 0.85);
    transition: 0.2s;
}

.block-footer a:hover {
    color: #fff;
    text-decoration: underline;
}

.block-footer h5 {
    font-family: 'Fira Sans', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.block-footer p,
.block-footer li {
    font-family: 'Fira Sans', sans-serif;
    font-size: 15px;
    margin-bottom: 6px;
    opacity: 0.9;
}

.footer-logo-white {
    height: 100px;
    filter: brightness(0) invert(1);
    display: block;
    margin-bottom: 15px;
}

.footer-brand-title {
    font-family: 'Fira Sans Extra Condensed', sans-serif;
    font-size: 26px;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    text-transform: uppercase;
}

.footer-brand-sub {
    font-size: 14px;
    opacity: 0.8;
    display: block;
    margin-top: 5px;
}

.footer-policies {
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    display: flex;
    gap: 30px;
    font-size: 14px;
    flex-wrap: wrap;
}


@media (max-width: 1200px) {
    .search-group input {
        width: 350px;
    }

    .search-group .btn-search {
        right: -50px;
    }
}



#desktopMenuContainer .mod-menu.nav {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

#desktopMenuContainer .mod-menu.nav .nav-item {
    position: relative;
    margin: 0;
    padding: 6px 9px;
}

#desktopMenuContainer .mod-menu.nav .nav-link,
#desktopMenuContainer .mod-menu.nav .separator {}

#desktopMenuContainer .mod-menu.nav .nav-link:hover,
#desktopMenuContainer .mod-menu.nav .nav-item.active>.nav-link,
#desktopMenuContainer .mod-menu.nav .nav-item.current>.nav-link {
    color: var(--brand-red);
}


#desktopMenuContainer .mod-menu__toggle-sub {}


@media (min-width: 992px) {
    #desktopMenuContainer .mod-menu.nav .deeper:hover>.mod-menu__sub {
        display: block;
        animation: fadeIn 0.2s ease-in-out;
    }

    #desktopMenuContainer .mod-menu__sub {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 370px;
        background-color: var(--brand-grey);
        border: none;
        border-radius: 0 0 8px 8px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        padding: 0px 0;
        margin: 0;
        list-style: none;
        z-index: 1000;
    }

    #desktopMenuContainer .mod-menu__sub .nav-item {
        width: 100%;
    }

    #desktopMenuContainer .mod-menu__sub .nav-link,
    #desktopMenuContainer .mod-menu__sub .separator {
        font-size: 16px;
        padding: 8px 20px;
        color: #333;
        font-family: 'Fira Sans', sans-serif;
        display: block;
        text-decoration: none;
    }

    #desktopMenuContainer .mod-menu__sub .nav-link:hover {
        background: var(--brand-grey);
        color: var(--brand-red);
    }

    #desktopMenuContainer .deeper>.nav-link::after,
    #desktopMenuContainer .deeper>.separator::after {
        content: '';
        display: inline-block;
        vertical-align: middle;
        margin-left: 6px;
        border-top: 5px solid #333;
        border-right: 5px solid transparent;
        border-left: 5px solid transparent;
    }

    #desktopMenuContainer .mod-menu__sub .mod-menu__sub {
        left: 100%;
        top: 0px;
    }
}

.icon-chevron-down::after {
    display: inline-block;
    margin-left: 0px;
    vertical-align: 0.255em;
    content: "";
    border-top: .25em solid;
    border-right: 0.25em solid transparent;
    border-bottom: 0;
    border-left: 0.25em solid transparent;
}

.icon-chevron-down {
    display: flex;
    align-items: center;
    position: absolute;
    top: 22px;
    right: 0px;

}

#desktopMenuContainer ul ul {}

#desktopMenuContainer .mod-menu.nav ul .nav-item {
    padding: 0px 0px;
}

#desktopMenuContainer ul ul li a,
#desktopMenuContainer .mod-menu.nav ul li .separator {
    font-size: 16px;
    padding: 8px 15px;
    line-height: 18px;
}

#desktopMenuContainer .mod-menu.nav .nav-item.parent {
    margin-right: 10px;
}

.newsCompany {
    padding-top: 74px;
}

.contentWrapper {
    padding-bottom: 30px;
}

#opennagish-widget .anid-trigger {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    z-index: -1 !important;
}

.tableRow {
    width: 100%;
    vertical-align: middle;
    border: 1px solid black;
    border-collapse: collapse;
}

.tableRow th {
    background: var(--brand-red);
    border: 1px solid #adadad;
    color: #fff;
    font-weight: 400;
    padding: 10px 12px;
    text-align: center;
}

.tableRow tr {
    background-color: rgba(214, 233, 241, 0.3);
}

.tableRow td {
    color: #000000;
    font-size: 100%;
    padding: 5px 10px 5px 10px;
    text-align: left;
    border: 1px solid #adadad;
    border-collapse: collapse;
}

.page-link {
    color: var(--brand-red);
}

.active>.page-link,
.page-link.active {
    z-index: 3;
    color: #fff;
    background-color: var(--brand-red);
    border-color: var(--brand-red);
}

h1 {
    padding-bottom: 20px;
    margin: 0px;
}