@import "../fonts/stylesheet.css";
@import "reset.css";
@import "grid.css";
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

* {
    font-family: "Visby CF", sans-serif;
    font-weight: 500;
}

body {
    font-family: "Visby CF", sans-serif;
}

.iett-container {
    max-width: 1540px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.iett-container--middle {
    max-width: 1380px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.iett-entry-container {
    padding-bottom: 75px;
    margin-top: 45px;
}

.layout-one {
    display: flex;
    align-items: flex-start;
    padding-top: 100px;
}

    .layout-one > .left {
        width: 345px;
        flex: 0 0 345px;
    }

    .layout-one > .right {
        flex: 1;
        padding-left: 115px;
    }

    .layout-one > .center {
        flex: 1;
    }

@media screen and (max-width: 1140px) {
    .layout-one {
        flex-direction: column;
    }

        .layout-one > .left {
            width: 100%;
        }

        .layout-one > .right {
            padding-left: 0;
        }
}

.default-title {
    font-size: 25px;
    color: #525252;
    font-weight: 600;
    font-family: "Visby CF", sans-serif;
    margin-bottom: 25px;
}

.breadcrumb {
    height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    z-index: 2;
    margin-bottom: 5px;
}

    .breadcrumb.news-detail-page {
        height: 445px !important;
    }

    .breadcrumb h1 {
        font-size: 37px;
        font-weight: 900;
        color: white;
        margin-top: 5px;
        max-width: 75%;
        padding: 0 20px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .breadcrumb ol {
        display: flex;
        align-items: center;
        color: white;
        font-size: 11px;
        font-weight: 400;
    }

        .breadcrumb ol li {
            display: flex;
            align-items: center;
        }

            .breadcrumb ol li a {
                font-size: inherit;
                color: inherit;
            }

            .breadcrumb ol li:nth-of-type(1):before {
                display: none;
            }

            .breadcrumb ol li:before {
                content: "/";
                margin: 0 7px;
            }

.breadcrumb-container {
    position: relative;
    background: no-repeat center center;
    background-size: cover;
}

    .breadcrumb-container:after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.72);
        z-index: 1;
    }

.social-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 12px;
    border-bottom: 1px solid #E6E6E6;
}

    .social-header h2 {
        font-family: "Visby CF", sans-serif;
        font-size: 25px;
        color: #ED2933;
        font-weight: 800;
    }

.social-buttons {
    display: flex;
    align-items: center;
}

    .social-buttons button {
        border: none;
        outline: none;
        border-radius: 8px;
        font-size: 9px;
        text-transform: uppercase;
        width: 67px;
        margin-right: 3px;
        padding: 5px 0;
        transition: 0.33s;
        cursor: pointer;
        background-color: #1D428A;
        color: white;
    }

        .social-buttons button:last-child {
            margin-right: 0;
        }

        .social-buttons button:hover {
            background-color: #ED2933;
        }

.news-sort {
    display: flex;
}

    .news-sort span {
        font-size: 12px;
        line-height: 21px;
        font-weight: 400;
        color: #959595;
    }

.news-sort-item {
    cursor: pointer;
}

    .news-sort-item:nth-of-type(1) {
        margin: 0 20px;
    }

    .news-sort-item .icon-active {
        display: none;
    }

    .news-sort-item.active .icon-active {
        display: block;
    }

    .news-sort-item.active .icon-passive {
        display: none;
    }

.sidebar {
    max-width: 345px;
    width: 100%;
}

.sidebar-title {
    font-size: 25px;
    font-weight: 800;
    color: #ED2933;
    margin-bottom: 12px;
    position: relative;
    font-family: "Visby CF", sans-serif;
}

    .sidebar-title img {
        display: none;
    }

    .sidebar-title .mobil-side-navigation {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        cursor: pointer;
        display: none;
    }

.sidebar-navigation li {
    list-style: none;
    min-height: 45px;
    background-color: white;
    font-size: 14px;
    font-weight: 800;
    color: #7D7D7D;
    padding-left: 20px;
}

    .sidebar-navigation li.sidebar-navigation__has-sublist {
        cursor: pointer;
        position: relative;
    }

        .sidebar-navigation li.sidebar-navigation__has-sublist > img {
            position: absolute;
            top: 0;
            right: 0;
            width: 45px;
            height: 45px;
            padding: 15px;
            transition: 0.33s;
        }

            .sidebar-navigation li.sidebar-navigation__has-sublist > img:hover {
                background-color: #f1f1f1;
            }

    .sidebar-navigation li a {
        color: inherit;
        display: flex;
        align-items: center;
        min-height: inherit;
        justify-content: space-between;
    }

    .sidebar-navigation li.active {
        color: #000;
    }

    .sidebar-navigation li:nth-of-type(odd) {
        background-color: #F5F5F5;
    }

    .sidebar-navigation li ul {
        display: none;
        margin-left: -20px;
    }

        .sidebar-navigation li ul li {
            padding-left: 40px;
        }

.image-text {
    display: flex;
    align-items: stretch;
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    line-height: 30px;
    font-family: "Visby CF", sans-serif;
}

    .image-text b,
    .image-text strong {
        font-size: 14px;
        font-weight: 600;
        color: black;
    }

.image-text-container + .text-container {
    margin-top: 40px;
}

.image-text img {
    width: calc(100%/3);
    flex: 0 0 calc(100%/3);
    object-fit: contain;
}

.image-text .text {
    width: calc(100%/3*2);
    flex: 0 0 calc(100%/3*2);
    padding-left: 40px;
}

.text-container {
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    line-height: 30px;
    font-family: "Visby CF", sans-serif;
}

    .text-container img {
        border: 10px solid transparent;
    }

    .text-container b,
    .text-container strong {
        font-size: 14px;
        font-weight: 600;
        color: black;
        display: block;
    }

.text-info-row {
    display: flex;
    align-items: center;
    font-size: 12px;
    margin-bottom: 10px;
}

.text-info-list {
    margin-top: 30px;
}

.text-info-item {
    margin-bottom: 20px;
}

    .text-info-item > b {
        font-size: 15px;
        font-weight: 700;
        color: #000000;
        display: block;
        margin-bottom: 10px;
    }

    .text-info-item small {
        font-size: 10px;
        line-height: 1;
        font-weight: 700;
        color: #000000;
        display: block;
        margin-bottom: 10px;
    }

.news-menu {
    max-width: 345px;
    width: 100%;
}

.news-menu-title {
    font-size: 16px;
    font-weight: 700;
    color: #ED2933;
    margin-bottom: 50px;
}

    .news-menu-title img {
        margin-left: 20px;
        display: none;
    }

.news-menu-list li {
    margin-bottom: 30px;
}

    .news-menu-list li a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-weight: 700;
    }

        .news-menu-list li a span {
            transition: 0.33s;
        }

            .news-menu-list li a span:first-child {
                font-size: 14px;
                color: #7D7D7D;
            }

            .news-menu-list li a span:last-child {
                width: 45px;
                height: 20px;
                display: flex;
                align-items: center;
                justify-content: center;
                border: 1px solid #1D428A;
                color: #1D428A;
                font-size: 13px;
                border-radius: 9.5px;
            }

    .news-menu-list li.active a span:first-child, .news-menu-list li:hover a span:first-child {
        color: #000000;
    }

    .news-menu-list li.active a span:last-child, .news-menu-list li:hover a span:last-child {
        color: #ED2933;
        border-color: #ED2933;
    }

.weather-widget {
    display: flex;
    align-items: center;
    text-align: right;
    color: white;
}

    .weather-widget.v-hidden {
        visibility: hidden;
    }

    .weather-widget .left {
        margin-right: 30px;
    }

        .weather-widget .left img {
            width: 50px;
            object-fit: contain;
        }

    .weather-widget .right {
        font-size: 14px;
        font-weight: 400;
        margin-left: auto;
    }

        .weather-widget .right div {
            max-width: 150px;
            display: flex;
            align-items: center;
            margin-top: 5px;
        }

        .weather-widget .right b {
            font-size: 24px;
            margin-right: 9px;
            line-height: 30px;
        }

.social-links {
    display: flex;
    align-items: center;
    transition: 0.33s;
}

    .social-links a {
        margin-right: 12px;
    }

        .social-links a img {
            width: 20px;
            height: 20px;
            object-fit: contain;
        }

        .social-links a:last-child {
            margin-right: 0;
            padding-right: 20px;
            border-right: 1px solid white;
        }

    .social-links.passive {
        opacity: 0;
    }

.menu-text-area {
    display: flex;
    align-items: center;
}

.menu-text-area-icon {
    margin-left: 10px;
}

    .menu-text-area-icon img {
        width: 50px;
    }

.menu-text-area-quote {
    font-size: 13px;
    color: white;
    display: block;
}

.menu-text-area-signature {
    text-align: right;
    display: block;
}

    .menu-text-area-signature img {
        height: 35px;
        margin-top: 3px;
    }

.menu-desktop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    max-width: 1830px;
    padding: 15px 60px 0 60px;
    margin-left: auto;
    margin-right: auto;
}

.menu-desktop-left {
    display: flex;
    align-items: center;
}

    .menu-desktop-left .menu-lang {
        font-weight: 100;
        margin-left: 0;
        padding-left: 6.5px;
        border-left: 1px solid white;
    }

    .menu-desktop-left .menu-search input {
        height: 38px;
        border-width: 2px;
        border-radius: 31px;
    }

    .menu-desktop-left .menu-search.active .menu-search--close {
        left: -20px;
        top: 13.5px;
    }

    .menu-desktop-left .menu-search.active input {
        transform: translateX(-6.5px) translateY(-8px);
    }

    .menu-desktop-left .menu-search--open img {
        height: 14.5px;
    }

.menu-desktop-right {
    display: flex;
    align-items: center;
}

    .menu-desktop-right .menu-search {
        width: initial;
        margin-left: 0;
        flex: 1;
    }

        .menu-desktop-right .menu-search input {
            position: initial;
            width: 100%;
        }

.menu-desktop-box {
    position: relative;
}

    .menu-desktop-box:after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 245px;
        background-image: linear-gradient(to bottom, #1D428A, transparent);
        z-index: 1;
    }

.menu-desktop .navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

    .menu-desktop .navigation a {
        color: inherit;
        font-size: 13px;
        font-weight: 500;
        margin-right: 30px;
    }

        .menu-desktop .navigation a:last-child {
            margin-right: 0;
        }

.menu-search {
    cursor: pointer;
    margin-left: 10px;
    position: relative;
    border: 1px solid transparent;
    transition: 0.33s;
    width: 25px;
    height: 25px;
    overflow: hidden;
}

.menu-search--close {
    display: none;
}

.menu-search input {
    transform: translateX(100%);
    width: 200px;
    background-color: transparent;
    border: 1px solid white;
    border-radius: 12px;
    height: 25px;
    outline: none;
    position: absolute;
    right: 0;
    top: -1px;
    color: white;
    font-size: 14px;
    text-indent: 12px;
}

    .menu-search input::placeholder {
        color: white;
    }

.menu-search.active {
    overflow: initial;
}

    .menu-search.active input {
        transform: translateX(0);
    }

    .menu-search.active .menu-search--open {
        display: none;
    }

    .menu-search.active .menu-search--close {
        display: block;
        left: -10px;
        top: 15px;
    }

        .menu-search.active .menu-search--close img {
            height: 15px;
            width: 15px;
        }

.menu-search--close {
    width: 20px;
}

    .menu-search--close img {
        width: 20px;
        height: 20px;
        object-fit: contain;
    }

.menu-search button {
    outline: none;
    border: none;
    background-color: transparent;
    cursor: pointer;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 22;
    padding: 2px;
}

.menu-lang {
    color: white;
    margin-left: 12px;
    font-size: 13px;
    font-weight: 700;
}

.hero {
    position: relative;
    z-index: 3333;
}

.hero-box {
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

    .hero-box video {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.hero-tab {
    width: 780px;
    max-width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 34px;
    padding: 45px 50px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 35;
}

.hero-tab-box {
    height: calc(100vh - 183px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
    position: relative;
    z-index: 34 !important;
}

.hero-tab-btn-list {
    width: 195px;
    border-right: 1px solid white;
    margin-right: 30px;
}

.hero-tab-btn-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    cursor: pointer;
}

.hero-tab-btn-item--circle {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 3px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1D428A;
    margin-right: 15px;
    transition: 0.33s;
}

    .hero-tab-btn-item--circle img {
        width: 26px;
        object-fit: contain;
        filter: brightness(0) invert(1);
    }

.hero-tab-btn-item span {
    font-size: 14px;
    font-weight: 600;
    color: white;
}

.hero-tab-btn-item.active .hero-tab-btn-item--circle {
    background-color: #ED2933;
}

.hero-tab-content-list {
    flex: 1;
}

.hero-tab-content-item {
    display: none;
}

    .hero-tab-content-item.active {
        display: block;
    }

    .hero-tab-content-item h3 {
        font-size: 29px;
        font-weight: 700;
        margin-bottom: 6px;
        color: white;
    }

        .hero-tab-content-item h3 small {
            font-size: 29px;
            font-weight: 300;
        }

.hero-mobi {
    background-color: #ED2933;
    border-radius: 0 17px 17px 0;
    padding: 10px;
    color: white;
    max-height: 165px;
    position: absolute;
    left: 0;
    bottom: 65px;
    z-index: 33;
    width: 500px;
    max-width: 90%;
    zoom: 0.8;
}

    .hero-mobi span {
        position: absolute;
        top: 50%;
        right: 0;
        transform: translate(50%, -50%);
        background-color: #FFFFFF;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        border-radius: 50%;
    }

    .hero-mobi > img {
        position: absolute;
        left: 40px;
        bottom: -40px;
        object-fit: contain;
    }

.hero-mobi-right {
    padding-left: 175px;
}

.hero-mobi b {
    font-size: clamp(18px,3vw,32px);
    margin-bottom: 4px;
    display: block;
    font-weight: 700;
}

.hero-mobi p {
    font-size: clamp(16px,3vw,18px);
    font-weight: 400;
    line-height: 1.7;
}

.tab-button {
    background-color: #ED2933;
    border: 1px solid #ED2933;
    color: white;
    text-align: center;
    min-width: 180px;
    border-radius: 13px;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 0;
    transition: 0.33s;
    cursor: pointer;
    margin-top: 15px;
}

    .tab-button:hover {
        background-color: transparent;
        color: #ED2933;
    }

.tab-input-box {
    background-color: white;
    position: relative;
    border-radius: 13px;
}

    .tab-input-box + .tab-input-box {
        margin-top: 10px;
    }

    .tab-input-box img {
        position: absolute;
        left: 23px;
        top: 50%;
        transform: translateY(-50%);
        width: 13px;
        object-fit: contain;
        z-index: 4;
    }

    .tab-input-box input {
        text-indent: 50px;
        color: #939393;
        font-size: 15px;
        font-weight: 500;
        width: 100%;
        border: none;
        outline: none;
        height: 41px;
        border-radius: inherit;
        position: relative;
        z-index: 3;
    }

        .tab-input-box input::placeholder {
            color: #939393;
        }

    .tab-input-box .line-list {
        box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
        border-radius: 12px;
        background-color: white;
        padding: 30px 10px 20px 10px;
        transform: translateY(-20px);
        margin: 0;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        z-index: 2;
        max-height: 150px;
        overflow: auto;
    }

        .tab-input-box .line-list::-webkit-scrollbar {
            width: 5px;
        }

        .tab-input-box .line-list::-webkit-scrollbar-thumb {
            background-color: #FDD233;
        }

        .tab-input-box .line-list .line-item {
            margin-bottom: 2px;
            background-color: #F7F7F7;
            overflow: hidden;
            cursor: pointer;
            transition: 0.33s;
        }

            .tab-input-box .line-list .line-item:hover {
                background-color: #FDD233;
            }

            .tab-input-box .line-list .line-item .content span {
                font-size: 14px;
                width: 42px;
                height: 42px;
                flex: 0 0 42px;
                border-radius: 5px;
            }

            .tab-input-box .line-list .line-item .content p {
                height: 35px;
                font-size: 14px;
                line-height: 1.5;
                padding-left: 45px;
                background-color: transparent;
            }

.mega-menu {
    background-color: rgba(255, 255, 255, 0.96);
    padding-bottom: 40px;
}

    .mega-menu .menu-text-area-quote {
        color: #1D428A;
    }

    .mega-menu .menu-text-area-signature img {
        filter: invert(1);
    }

.mega-menu-opener {
    cursor: pointer;
}

.mega-menu-box {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    opacity: 0;
    height: 0;
    transition: 0.33s;
    overflow: hidden;
    z-index: 9999;
}

    .mega-menu-box.active {
        opacity: 1;
        height: 80vh;
    }

.mega-menu .menu-lang {
    border-color: #1D428A;
}

    .mega-menu .menu-lang a {
        color: #1D428A !important;
    }

.mega-menu .menu-search input {
    border-color: #1D428A;
    color: #1D428A;
}

    .mega-menu .menu-search input::placeholder {
        color: #1D428A;
    }

.mega-menu .menu-lang {
    color: #1D428A;
}

.mega-menu .weather-widget {
    color: #1D428A;
}

.mega-menu .navigation {
    color: #1D428A;
}

.mega-menu-columns {
    margin-top: 28px;
    display: flex;
    align-items: stretch;
    max-width: 1490px;
    max-height: calc(100vh - 300px);
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    font-family: "Visby CF", sans-serif;
}

.mega-menu-column {
    border-right: 1px solid #1D428A;
    flex: 1;
    padding-left: 2%;
    padding-right: 2%;
    overflow-y: auto;
}

    .mega-menu-column::-webkit-scrollbar-track {
        -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.3);
        background-color: #F5F5F5;
    }

    .mega-menu-column::-webkit-scrollbar {
        width: 4px;
        background-color: #F5F5F5;
    }

    .mega-menu-column::-webkit-scrollbar-thumb {
        background-color: #1D428A;
    }

    .mega-menu-column:last-child {
        border-right: none;
    }

    .mega-menu-column a {
        display: block;
        font-size: 15px;
        font-weight: 500;
        font-style: normal;
        color: #565656;
        margin-bottom: 10px;
    }

        .mega-menu-column a:hover {
            color: #1c4289;
        }

.mega-menu--title {
    font-size: 25px;
    color: #1D428A;
    margin-bottom: 25px;
}

.mobil-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    cursor: pointer;
}

.mobil-menu-closer {
    position: absolute;
    right: 30px;
    top: 30px;
    cursor: pointer;
}

    .mobil-menu-closer img {
        height: 20px;
        object-fit: contain;
    }

.mobil-menu-lang {
    margin-bottom: 40px;
    font-size: 25px;
    color: white;
}

    .mobil-menu-lang b {
        margin: 0 5px;
    }

    .mobil-menu-lang span {
        font-size: 25px;
        font-weight: 300;
        color: white;
    }

        .mobil-menu-lang span.current {
            font-weight: 700;
        }

.mobil-menu-search {
    position: relative;
    margin-bottom: 40px;
}

    .mobil-menu-search input {
        width: 100%;
        background-color: transparent;
        border: 2px solid white;
        border-radius: 30px;
        outline: none;
        height: 60px;
        text-indent: 25px;
        font-size: 16px;
        font-weight: 400;
        color: white;
    }

        .mobil-menu-search input::placeholder {
            color: white;
        }

.mobil-menu-search-btn {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

    .mobil-menu-search-btn img {
        height: 30px;
    }

.mobil-menu-links > a {
    font-size: 25px;
    color: white;
    display: block;
    margin-bottom: 25px;
}

.mobil-menu-corporate {
    display: flex !important;
    align-items: center;
}

    .mobil-menu-corporate > img {
        margin-left: 10px;
    }

.mobil-menu-corporate--links {
    display: none;
}

    .mobil-menu-corporate--links li {
        margin-bottom: 15px;
    }

    .mobil-menu-corporate--links a {
        font-size: 22px;
        color: white;
        font-weight: 300;
    }

.mobil-menu-corporate img {
    height: 10px;
}

.mobil-menu-navigation {
    display: flex;
    flex-direction: column;
    position: fixed;
    right: 0;
    top: 0;
    max-width: 400px;
    width: 100%;
    height: 100vh;
    transform: translateX(100%);
    background-color: rgba(26, 57, 118, 0.95);
    padding: 50px;
    transition: 0.33s;
    z-index: 9999;
}

    .mobil-menu-navigation.active {
        transform: translateX(0);
    }

.mobil-menu .navigation img {
    height: 75px;
}

.mobil-menu-right {
    cursor: pointer;
}

.mobil-menu-footer {
    margin-top: auto;
}

    .mobil-menu-footer .iett-logo img {
        height: 75px;
        margin-bottom: 15px;
    }

    .mobil-menu-footer span {
        font-size: 16px;
        font-weight: 300;
        color: white;
        display: block;
        margin-bottom: 15px;
    }

    .mobil-menu-footer .social-links a:last-child {
        border-right: none;
    }

.mobil-menu-icon {
    width: 30px;
    margin-left: 10px;
}

    .mobil-menu-icon span {
        height: 2px;
        border-radius: 2px;
        background-color: white;
        display: block;
    }

        .mobil-menu-icon span:nth-of-type(1) {
            width: 15px;
        }

        .mobil-menu-icon span:nth-of-type(2) {
            width: 30px;
            margin: 5px 0;
        }

        .mobil-menu-icon span:nth-of-type(3) {
            width: 20px;
            margin-left: 10px;
        }

.mobil-menu-right {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 400;
    color: white;
}

    .mobil-menu-right.deactive {
        visibility: hidden;
    }

.mobil-menu > * {
    position: relative;
    z-index: 2;
}

.mobil-menu .weather-widget .left {
    margin-right: 10px;
}

.mobil-menu-box {
    display: none;
    position: relative;
    z-index: 35;
}

    .mobil-menu-box:after {
        display: none !important;
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 150px;
        background-image: linear-gradient(to bottom, #1D428A, transparent);
        z-index: 0;
    }

.hero-bottom {
    display: flex;
    align-items: center;
    height: 57px;
    margin-bottom: 50px;
    position: relative;
    background: white;
}

.hero-bottom-social {
    display: flex;
    align-items: center;
    color: white;
    font-size: 13px;
}

    .hero-bottom-social > span {
        white-space: nowrap;
    }

    .hero-bottom-social .social-links {
        margin-left: 12px;
    }

        .hero-bottom-social .social-links a:last-child {
            border-right: none;
        }

.hero-bottom > span {
    font-size: 13px;
    font-weight: 500;
}

.hero-bottom .left {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    flex: 0 0 40%;
    font-size: 15px;
    color: #3A3C50;
    padding: 0 25px;
}

    .hero-bottom .left b {
        font-weight: 600;
    }

    .hero-bottom .left a {
        background-color: #ED2933;
        color: white;
        padding: 7px 15px;
        border-radius: 15px;
        white-space: nowrap;
    }

.hero-bottom .right {
    flex: 1;
    background-color: #1D428A;
    height: inherit;
    display: flex;
    align-items: center;
    position: relative;
    padding-right: 150px;
    padding-left: 20px;
}

    .hero-bottom .right > img {
        position: absolute;
        right: 0;
        bottom: 0;
        z-index: 22;
        width: 100px;
    }

    .hero-bottom .right .swiper {
        height: 57px;
        margin-right: auto;
        margin-left: initial;
    }

    .hero-bottom .right .swiper-slide {
        height: 57px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        color: white;
    }

        .hero-bottom .right .swiper-slide span {
            font-size: 17px;
            font-weight: 500;
            display: block;
            padding: 0 10px;
        }

        .hero-bottom .right .swiper-slide small {
            color: rgba(255, 255, 255, 0.33);
        }

.title.type-2 {
    margin-bottom: 20px;
    font-size: 40px;
    color: #25262B;
    font-family: "Visby CF", sans-serif;
    font-weight: 700;
}

    .title.type-2 span {
        font-weight: 300;
        margin-right: 6px;
    }

.other-sites {
    background-repeat: no-repeat;
    background-position: left -15% bottom;
}

    .other-sites .iett-container {
        display: flex;
        align-items: stretch;
        background-size: 70% 110%;
        background-position: left -50% top;
        background-repeat: no-repeat;
        margin-top: 100px;
    }

        .other-sites .iett-container > .left {
            width: 300px;
            flex: 0 0 300px;
            background-color: blue;
        }

        .other-sites .iett-container > .right {
            width: 100%;
            flex: 0 0 100%;
        }

            .other-sites .iett-container > .right .right-container {
                display: flex;
                gap: 23px;
                align-items: stretch;
            }

.other-sites__instagram {
    background-color: blue;
    width: 320px;
    flex: 0 0 320px;
}

.other-sites__twitter {
    width: 340px;
    flex: 0 0 340px;
}

.other-sites-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.other-sites-item {
    width: 50%;
    flex: 0 0 50%;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 7px solid white;
    height: 225px;
}

    .other-sites-item > img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .other-sites-item:first-child {
        width: 100%;
        flex: 0 0 100%;
    }

    .other-sites-item .info {
        right: 20px;
        top: 10px;
        text-align: right;
    }

        .other-sites-item .info img {
            max-height: 150px;
            object-fit: contain;
            position: absolute;
            top: 25px;
            right: 20px;
        }

        .other-sites-item .info div {
            position: absolute;
            bottom: 25px;
            right: 20px;
        }

        .other-sites-item .info b {
            display: block;
            font-size: 21px;
            color: black;
            margin-top: 10px;
            font-weight: 700;
        }

        .other-sites-item .info a {
            font-size: 15px;
            color: #ED2933;
        }

.transportation-guide {
    margin-top: 100px;
    padding: 45px 0;
    text-align: center;
    background: linear-gradient(180deg, #F8F8F8 70%, white 60%);
}

.transportation-card {
    background-color: white;
    border-radius: 6px;
    box-shadow: 12px 6px 40px rgba(0, 72, 102, 0.1);
    text-align: center;
    font-size: 20px;
    padding: 45px 0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .transportation-card > img {
        height: 52px;
        object-fit: contain;
        margin-bottom: 25px;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .transportation-card span {
        font-weight: 400;
    }

    .transportation-card b {
        font-weight: 700;
        display: block;
        text-align: center;
        margin-bottom: 15px;
        padding: 0 10px;
    }

        .transportation-card b span {
            display: block;
        }

    .transportation-card a {
        border-radius: 5px;
        background-color: #1D428A;
        font-size: 13px;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        max-width: 70%;
        margin-left: 15%;
        padding: 7px;
        height: 30px;
        gap: 5px;
        margin-top: auto;
    }

        .transportation-card a img {
            width: 10px;
            transform: rotate(-90deg);
            transition: 0.33s;
        }

        .transportation-card a:hover img {
            transform: rotate(-90deg) translateY(5px);
        }

.services {
    margin: 135px 0;
}

.services-card {
    border: 1px solid #E0E0E0;
    position: relative;
    box-shadow: 12px 6px 40px rgba(0, 72, 102, 0.1);
    border-radius: 6px;
    height: 265px;
    font-family: "Visby CF", sans-serif;
}

    .services-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .services-card .info {
        position: absolute;
        right: 30px;
        top: 50%;
        transform: translateY(-50%);
        text-align: right;
    }

        .services-card .info h3 {
            font-size: clamp(22px,3vw,34px);
            font-weight: 700;
            margin-bottom: 5px;
        }

            .services-card .info h3 img {
                max-height: 100px;
                object-fit: contain;
            }

        .services-card .info a {
            font-size: clamp(15px,3vw,21px);
            font-weight: 600;
            color: #EF6866;
        }

#newsgallery .light-box img {
    max-height: 350px;
    height: 350px;
    object-fit: cover;
}

.home-news .title {
    margin-bottom: 40px;
}

.home-news-all {
    background-color: #ED2933;
    color: white;
    width: 235px;
    padding: 12px;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    margin: 45px auto 0 auto;
    display: block;
    border-radius: 22px;
    border: 1px solid #ED2933;
    transition: 0.33s;
}

    .home-news-all:hover {
        background-color: transparent;
        color: #ED2933;
    }

.news-box {
    font-family: "Visby CF", sans-serif;
}

    .news-box.list {
        display: flex !important;
        width: 100%;
    }

        .news-box.list .news-body {
            padding-left: 20px;
        }

    .news-box.type-1 {
        text-align: center;
        padding: 5px;
    }

        .news-box.type-1 .news-header img {
            border-radius: 10px;
            max-height: 224px;
        }

        .news-box.type-1 .news-body {
            margin-top: 20px;
        }

            .news-box.type-1 .news-body h3 {
                font-size: 24px;
                color: #3B3B3B;
                margin-bottom: 15px;
                margin-top: 0;
                font-weight: 500;
            }

            .news-box.type-1 .news-body p {
                font-size: 14px;
                font-weight: 400;
                color: #2D2D2D;
            }

    .news-box.type-2 {
        padding: 5px;
        display: block;
    }

        .news-box.type-2 .news-header img {
            max-height: 180px;
            object-fit: cover;
        }

        .news-box.type-2 .news-body {
            margin-top: 16px;
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
        }

        .news-box.type-2 h3 {
            font-size: clamp(14px,2vw,16px);
            font-weight: 700;
            color: #3B3B3B;
            height: 47px;
            overflow: hidden;
        }

        .news-box.type-2 a {
            background-color: #ED2933;
            color: white;
            width: 140px;
            height: 45px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            font-weight: 400;
            padding: 0 15px;
            white-space: nowrap;
        }

    .news-box.type-3 {
        padding: 5px;
        display: block;
    }

        .news-box.type-3 .news-header img {
            width: 100%;
            object-fit: cover;
        }

        .news-box.type-3 .news-body h3 {
            font-size: 23px;
            line-height: 1.6;
            font-weight: 700;
            color: #3B3B3B;
            margin: 15px 0 5px 0;
        }

        .news-box.type-3 .news-body p {
            font-size: 13px;
            line-height: 1.8;
            font-weight: 400;
            color: #2D2D2D;
        }

.news-header img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.news-detail {
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    font-family: "Visby CF", sans-serif;
    line-height: 19px;
    margin-top: -45px;
}

.news-detail-entry img {
    padding: 10px;
}

.news-detail-date {
    font-size: 16px;
    text-align: right;
    color: #959595;
}

.news-detail p {
    margin: 20px 0;
}

.news-detail img {
    margin: 20px 0;
}

.light-box img {
    object-fit: cover;
}

.light-box a {
    display: block;
}

.mobiett {
    text-align: center;
    position: relative;
}

    .mobiett .col-12 {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .mobiett:after {
        content: "";
        position: absolute;
        left: 0;
        background-color: #F5F5F5;
        top: 15%;
        height: 70%;
        width: 100%;
        z-index: -1;
    }

    .mobiett h2 {
        font-size: 56px;
        font-weight: 700;
        color: #000;
        margin: 0;
    }

    .mobiett p {
        font-size: 24px;
        font-weight: 300;
        color: #000000;
    }

.mobiett-logos {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 450px;
}

    .mobiett-logos a {
        display: block;
        border: 5px solid transparent;
        flex: 0 0 50%;
        transition: 0.33s;
    }

        .mobiett-logos a:hover {
            transform: translateY(-5px);
        }

        .mobiett-logos a img {
            height: 105px;
            object-fit: contain;
        }
		.mobiett-small-text {
			font-size: 12px;
		}

.sub-menu {
    display: flex;
    align-items: stretch;
    height: 80px;
}

.sub-menu-box {
    background-color: #1D428A;
}

    .sub-menu-box + .mega-menu-box {
        top: 80px;
    }

        .sub-menu-box + .mega-menu-box .mega-menu-columns {
            margin-top: 0;
            padding-top: 30px;
        }

.sub-menu-left {
    background-color: #ED2933;
    height: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 250px;
    width: 100%;
    flex: 0 0 250px;
    padding: 10px;
}

    .sub-menu-left a:first-child {
        border-right: 1px solid white;
        padding-right: 20px;
        margin-right: 20px;
    }

    .sub-menu-left img {
        height: 60px;
    }

.sub-menu-middle {
    display: flex;
    align-items: center;
    margin-right: auto;
    margin-left: 20px;
}

    .sub-menu-middle a {
        color: white;
        font-size: 13px;
        font-weight: 400;
        margin: 0 20px;
    }

.sub-menu-right {
    display: flex;
    align-items: center;
    padding-right: 30px;
}

.sub-menu .mobil-menu {
    padding-right: 0;
}

.download-file-row {
    font-family: "Visby CF", sans-serif;
    margin-bottom: 40px;
}

    .download-file-row p {
        font-size: 14px;
        font-weight: 400;
        color: #000000;
        margin-bottom: 15px;
    }

    .download-file-row a {
        font-size: 14px;
        font-weight: 400;
        color: #007FFF;
        display: block;
        margin-top: 10px;
    }

.download-file-open {
    border: 1px solid #E3E3E3;
    font-size: 14px;
    font-weight: 400;
}

    .download-file-open p {
        color: #000000;
    }

    .download-file-open a {
        color: #007FFF;
    }

.download-file-group:nth-of-type(1) {
    margin-top: 40px;
}

.download-file-group a {
    font-size: 14px;
    font-weight: 400;
    color: #007FFF;
    cursor: pointer;
    margin-bottom: 15px;
    display: block;
}

.download-file-group ul {
    padding-left: 40px;
    display: none;
    margin-bottom: 20px;
}

    .download-file-group ul li {
        list-style: none;
    }

        .download-file-group ul li a {
            color: #000000;
            margin-bottom: 10px;
        }

.link-group {
    margin-top: 45px;
}

    .link-group a {
        font-size: 14px;
        font-weight: 400;
        color: #007FFF;
        display: block;
        margin-bottom: 15px;
    }

.link-group--download {
    width: 70px;
    border-radius: 17px;
    height: 23px;
    background-color: #1D428A;
    color: white !important;
    margin-top: -10px;
    margin-bottom: 10px;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.link-group--title {
    font-size: 14px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
}

.link-group-2 a {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #007FFF;
    margin-bottom: 25px;
}

.mini-news-row {
    padding-bottom: 25px;
    margin-top: 25px;
    display: flex;
    align-items: flex-start;
    border-bottom: 1px solid #E6E6E6;
    font-family: "Visby CF", sans-serif;
}

    .mini-news-row .date {
        flex: 0 0 130px;
        width: 130px;
        max-width: 130px;
        height: 60px;
        background-color: #F2F2F2;
        margin-right: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 7px;
        font-size: 14px;
        font-weight: 700;
        color: #000000;
        text-align: center;
        white-space: nowrap;
    }

    .mini-news-row b {
        font-size: 14px;
        font-weight: 700;
        color: #000000;
        line-height: 18px;
        margin-bottom: 7px;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
    }

    .mini-news-row small {
        font-size: 10px;
        font-weight: 400;
        color: #000000;
    }

        .mini-news-row small b,
        .mini-news-row small strong {
            font-weight: 700;
        }

    .mini-news-row.icon b {
        color: #1D428A;
    }

.only-image-box img {
    width: 100%;
    object-fit: contain;
}

.management {
    font-family: "Visby CF", sans-serif;
    padding-bottom: 100px;
}

    .management .after-line {
        position: relative;
    }

        .management .after-line:after {
            content: "";
            position: absolute;
            left: 12.5%;
            top: -25px;
            width: 75%;
            border-top: 1px solid #E6E6E6;
        }

    .management .after-line-1 {
        position: relative;
    }

        .management .after-line-1:after {
            position: absolute;
            content: "";
            left: 16.7%;
            bottom: 100%;
            transform: translateY(-25px);
            width: 66.7%;
            border-top: 1px solid #E6E6E6;
        }

        .management .after-line-1 > .col-md-4:after {
            position: absolute;
            content: "";
            left: 50%;
            bottom: 100%;
            border-right: 1px solid #E6E6E6;
            height: 20px;
            transform: translateY(-5px);
        }

    .management .after-line .row > .col-3:after {
        position: absolute;
        content: "";
        height: 20px;
        bottom: 100%;
        transform: translateY(-5px);
        width: 1px;
        background-color: #E6E6E6;
        left: 50%;
    }

.management-title {
    background-color: #ED2933;
    color: white;
    margin-bottom: 30px;
    padding: 18px 20px;
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    border-radius: 8px;
}

.management-person {
    text-align: center;
}

    .management-person img {
        width: 166px;
        height: 166px;
        border-radius: 50%;
        margin-bottom: 12px;
        border: 1px solid #E3E3E3;
        object-fit: cover;
    }

    .management-person small {
        font-size: 14px;
        line-height: 24px;
        display: block;
        text-transform: uppercase;
        overflow: hidden;
        height: 72px;
    }

    .management-person b {
        font-size: 19px;
        font-weight: 700;
        line-height: 24px;
        display: block;
        margin-bottom: 12px;
    }

    .management-person a {
        font-size: 9px;
        font-weight: 400;
        line-height: 14px;
        display: block;
        color: #000;
    }

@media screen and (max-width: 1190px) {
    .management-title {
        font-size: 15px;
        white-space: nowrap;
    }

    .management-person img {
        width: 140px;
        height: 140px;
    }
}

@media screen and (max-width: 1020px) {
    .management-person img {
        width: 100px;
        height: 100px;
    }
}

@media screen and (max-width: 768px) {
    .management-title {
        white-space: initial;
        padding: 5px;
    }

    .management-person small {
        font-size: 12px;
        white-space: initial;
        line-height: 1.2;
        height: 45px;
    }

    .management-person b {
        font-size: 14px;
        line-height: 1.3;
    }

    .management-person img {
        width: 50px;
        height: 50px;
    }

    .management-person a {
        word-break: break-word;
        white-space: initial;
    }

    .management .after-line-1:after {
        left: 25%;
        width: 50.1%;
    }

    .management .after-line-1 .col-md-4:nth-of-type(2) {
        display: none;
    }
}

.footer {
    padding: 35px 20px 20px 20px;
    background-color: #3A3C50;
    text-align: center;
}

.footer-header {
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-left: none;
    border-right: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 10px 0 0 0;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 25px;
    max-width: 1020px;
}

    .footer-header a {
        font-size: 15px;
        color: white;
        font-weight: 500;
        margin: 0 13px 10px 13px;
    }

.footer-links {
    max-width: 778px;
    margin-left: auto;
    margin-right: auto;
}

.footer-links-title {
    text-align: center;
    color: white;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
}

.footer-links a {
    color: #BBBBBB;
    font-size: 13px;
    font-weight: 400;
    display: block;
    margin-bottom: 10px;
    text-align: center;
}

.footer-bottom {
    background-color: #232537;
    text-align: center;
    padding: 25px 20px;
    color: #BBBBBB;
    font-weight: 400;
}

    .footer-bottom img {
        height: 25px;
        object-fit: contain;
        margin: 0 5px;
    }

.cv-page-row {
    display: flex;
    align-items: flex-start;
    margin: 30px 0;
    font-size: 14px;
}

    .cv-page-row:nth-of-type(1) {
        padding-bottom: 30px;
        border-bottom: 1px solid #E6E6E6;
    }

    .cv-page-row > .left {
        width: 200px;
        flex: 0 0 200px;
    }

        .cv-page-row > .left img {
            max-width: 175px;
            object-fit: contain;
        }

    .cv-page-row > .right {
        width: 100%;
    }

        .cv-page-row > .right .cv-row {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
            width: 100%;
        }

            .cv-page-row > .right .cv-row b {
                font-weight: 700;
                color: #000000;
            }

                .cv-page-row > .right .cv-row b:first-child {
                    width: 150px;
                    flex: 0 0 150px;
                    display: flex;
                    align-items: center;
                }

                    .cv-page-row > .right .cv-row b:first-child small {
                        margin-left: auto;
                    }

                .cv-page-row > .right .cv-row b:nth-of-type(2) {
                    padding-left: 15px;
                }

                .cv-page-row > .right .cv-row b:nth-of-type(3) {
                    margin-left: auto;
                }

            .cv-page-row > .right .cv-row span {
                padding-left: 15px;
            }

                .cv-page-row > .right .cv-row span:nth-of-type(2) {
                    margin-left: auto;
                }

        .cv-page-row > .right .cv-row__table {
            width: 100%;
            font-size: 14px;
        }

            .cv-page-row > .right .cv-row__table b {
                font-weight: 600;
            }

            .cv-page-row > .right .cv-row__table thead th {
                padding-bottom: 20px;
            }

.biography.cv-row {
    display: block !important;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Lato", sans-serif;
    width: 100%;
}

    .pagination button {
        background-color: transparent;
        outline: none;
        border: none;
        cursor: pointer;
    }

        .pagination button.passive {
            cursor: initial;
            opacity: 0.4;
        }

.pagination-pager {
    display: flex;
    align-items: center;
    padding-left: 0;
    margin: 0 30px;
}

    .pagination-pager li {
        margin: 0 7px;
    }

        .pagination-pager li a {
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: transparent;
            font-size: 13px;
            font-weight: 400;
            color: #959595;
            border-radius: 50%;
        }

        .pagination-pager li.active a {
            background-color: #ED2933;
            color: white;
        }

.person-info-box {
    display: flex;
    align-items: flex-start;
    font-family: "Visby CF", sans-serif !important;
    color: #000000;
    margin-bottom: 20px;
}

.person-info-img {
    width: 90px;
    flex: 0 0 90px;
    margin-right: 20px;
}

    .person-info-img img {
        width: 100%;
        height: 120px;
        object-fit: cover;
    }

.person-info-text b,
.person-info-text span {
    font-size: 14px;
    font-weight: 700;
    display: block;
}

.person-info-text span {
    margin: 7px 0;
}

.person-info-text p {
    font-size: 14px;
    line-height: 30px;
    font-weight: 400;
}

.iett-ads-box {
    display: flex;
    align-items: stretch;
    font-family: "Visby CF", sans-serif !important;
    margin-bottom: 40px;
}

.iett-ads-img {
    width: 195px;
    height: 140px;
    margin-right: 10px;
}

    .iett-ads-img img {
        width: inherit;
        height: inherit;
        object-fit: cover;
    }

.iett-ads-info {
    color: #000000;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .iett-ads-info > * {
        border-bottom: 1px solid #E6E6E6;
    }

    .iett-ads-info h3 {
        font-size: 20px;
        line-height: 30px;
        color: #1D428A;
        margin-top: 0;
        padding-bottom: 10px;
    }

    .iett-ads-info p {
        font-size: 15px;
        padding-bottom: 15px;
    }

    .iett-ads-info b {
        width: 250px;
        font-weight: 700;
    }

    .iett-ads-info span {
        font-weight: 400;
    }

.cost-form-box {
    margin-top: 75px;
    background-color: #F5F5F5;
    border-radius: 16px;
    padding: 0 35px 55px 35px;
    font-family: "Visby CF", sans-serif;
}

    .cost-form-box .caphta-box {
        margin: 20px 0;
        text-align: left;
    }

    .cost-form-box button {
        background-color: #1D428A;
        color: white;
        width: 170px;
        border-radius: 13px;
        text-align: center;
        font-size: 14px;
        font-weight: 400;
        padding: 10px;
        margin-right: auto;
        outline: none;
        border: 1px solid #1D428A;
        cursor: pointer;
        transition: 0.33s;
    }

        .cost-form-box button:hover {
            background-color: transparent;
            color: #1D428A;
        }

.cost-form {
    overflow: auto;
}

.cost-form--title {
    margin-top: 55px;
    font-size: 23px;
    font-weight: 800;
    color: #1D428A;
    padding-bottom: 15px;
    border-bottom: 1px solid #E6E6E6;
    margin-bottom: 30px;
}

.cost-form-row {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

    .cost-form-row label {
        flex: 0 0 300px;
        width: 300px;
        font-size: 17px;
        font-weight: 700;
        color: #000000;
    }

.cost-form-input {
    flex: 1;
    position: relative;
}

    .cost-form-input input,
    .cost-form-input select,
    .cost-form-input textarea {
        width: 100%;
        height: 38px;
        background-color: white;
        border: 1px solid #C3C3C3;
        appearance: none;
        border-radius: 13px;
        outline: none;
        text-indent: 10px;
        font-family: "Visby CF", sans-serif;
        transition: 0.33s;
    }

        .cost-form-input input:focus,
        .cost-form-input select:focus,
        .cost-form-input textarea:focus {
            border-color: #1D428A;
        }

    .cost-form-input textarea {
        height: 125px;
        padding-top: 10px;
    }

    .cost-form-input img {
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        width: 13px;
        object-fit: contain;
    }

.cost-form-info-box {
    position: absolute;
    right: 5px;
    top: 5px;
    height: 28px;
    width: 28px;
    border-radius: 9px;
    text-align: center;
    line-height: 28px;
    font-size: 14px;
    color: white;
    font-weight: 500;
    z-index: 2;
    background-color: #1D428A;
}

.cost-form-box.type-2 label {
    width: 100px;
    flex: 0 0 100px;
    margin-right: 15px;
}

.cost-form-box.type-2 h3 {
    text-align: center;
}

.cost-form-box.type-2 .cost-form--group {
    margin: auto;
    width: 100%;
    max-width: 520px;
}

.cost-form-box.type-2 button {
    margin-left: 120px;
}

.text-center {
    text-align: center;
}

.input-radio-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.input-radio-group--item input {
    display: none;
}

.input-radio-group--item label {
    cursor: pointer;
}

    .input-radio-group--item label span {
        display: block;
        font-size: 14px;
        font-weight: 400;
    }

        .input-radio-group--item label span:before {
            content: "";
            margin-right: 10px;
            width: 15px;
            height: 15px;
            border-radius: 50%;
            border: 1px solid #C3C3C3;
            background-color: white;
            display: inline-block;
        }

    .input-radio-group--item label input:checked + span:before {
        background-color: #1D428A;
        border-color: #1D428A;
    }

.e-card-box {
    margin-bottom: 20px !important;
}

.e-card-header {
    max-height: 310px;
    overflow: hidden;
}

    .e-card-header img {
        width: 100%;
        object-fit: cover;
    }

.e-card-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
}

    .e-card-body h3 {
        font-size: 23px;
        font-weight: 700 !important;
        color: #3B3B3B;
    }

    .e-card-body button,
    .e-card-body a {
        background-color: #1D428A;
        color: white;
        font-size: 13px;
        font-weight: 500 !important;
        border: 1px solid #1D428A !important;
        transition: 0.33s;
        border-radius: 8px;
        padding: 8px 25px !important;
        cursor: pointer;
    }

        .e-card-body button:hover,
        .e-card-body a:hover {
            background-color: white;
            color: #1D428A;
        }

.publications {
    font-family: "Visby CF", sans-serif;
}

.publications__container {
    font-family: "Visby CF", sans-serif;
}

    .publications__container h2 {
        font-size: 23px;
        font-weight: 700;
        color: #3B3B3B;
        margin: 20px 0;
    }

.publications__img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.publications__item {
    display: flex;
    align-items: flex-start;
    padding-bottom: 20px;
    margin-bottom: 30px;
    border-bottom: 1px solid #E6E6E6;
}

    .publications__item img {
        width: 100px;
        height: 60px;
        object-fit: cover;
        margin-right: 30px;
        flex: 0 0 30px;
    }

.publications__info h5 {
    font-size: 14px;
    font-weight: 700;
    color: #0480FA;
    margin-bottom: 7px;
}

.publications__info p {
    font-size: 10px;
    font-weight: 400;
    color: #000000;
    line-height: 15px;
}

.line-search {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 33;
    padding: 60px 0;
}

.line-search-box {
    display: flex;
    align-items: center;
    width: 100%;
}

.line-search input {
    flex: 1;
    background-color: white;
    height: 72px;
    border-radius: 16px;
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    outline: none;
    border: 1px solid #DEDEDE;
    text-indent: 25px;
    position: relative;
    z-index: 4;
}

    .line-search input:focus {
        border-color: #FDD233;
    }

        .line-search input:focus + .search-autocomplete-before {
            visibility: visible;
            opacity: 1;
            transform: translateY(0);
        }

    .line-search input::placeholder {
        color: #00000050;
        font-size: 20px;
        font-weight: 700;
        font-family: "Visby CF", sans-serif;
    }

.line-search button {
    background-color: #FDD233;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    width: 72px;
    height: 72px;
    margin-left: 10px;
    border: none;
    cursor: pointer;
    transition: 0.33s;
}

    .line-search button:hover {
        transform: translateY(-10px);
    }

.search-autocomplete-before {
    background-color: #F0F0F0;
    border-radius: 0 0 16px 16px;
    box-shadow: 10px 20px 20px rgba(0, 0, 0, 0.22);
    padding: 45px 30px 15px 30px;
    font-size: 22px;
    font-weight: 400;
    color: #000000;
    position: absolute;
    top: 100%;
    margin-top: -95px;
    left: 0;
    width: calc(100% - 82px);
    z-index: -1;
    transform: translateY(-100%);
    visibility: hidden;
    opacity: 0;
    transition: 0.33s;
}

.search-autocomplete-after {
    background-color: white;
    border-radius: 0 0 16px 16px;
    position: absolute;
    top: 100%;
    margin-top: -95px;
    width: calc(100% - 82px);
    z-index: 1;
    box-shadow: 10px 20px 20px rgba(0, 0, 0, 0.22);
    visibility: hidden;
    opacity: 0;
    transition: 0.33s;
}

    .search-autocomplete-after.block {
        visibility: visible;
        opacity: 1;
    }

    .search-autocomplete-after .line-item {
        margin-left: 15px;
        margin-bottom: 5px;
    }

        .search-autocomplete-after .line-item span {
            height: 68px;
            width: 68px;
            flex: 0 0 68px;
        }

        .search-autocomplete-after .line-item p {
            height: 68px;
            font-size: 18px;
        }

    .search-autocomplete-after .line-list {
        margin: 50px 0 20px 0;
    }

        .search-autocomplete-after .line-list .line-item:nth-of-type(even) p {
            background-color: white;
        }

.line-list {
    margin: 75px 0;
}

.line-item {
    margin-bottom: 30px;
}

    .line-item a,
    .line-item .content {
        display: flex;
        align-items: center;
        width: 100%;
    }

        .line-item a span,
        .line-item .content span {
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #FDD233;
            font-size: 22px;
            font-weight: 700;
            color: #000000;
            border-radius: 16px;
            width: 70px;
            height: 70px;
            flex: 0 0 70px;
            z-index: 2;
            transition: 0.33s;
        }

        .line-item a p,
        .line-item .content p {
            flex: 1;
            height: 70px;
            background-color: #F7F7F7;
            font-size: 20px;
            font-weight: 700;
            text-transform: uppercase;
            color: #000000;
            padding-left: 65px;
            transform: translateX(-20px);
            line-height: 70px;
            border-radius: 16px;
            display: flex;
            align-items: center;
        }

            .line-item a p small,
            .line-item .content p small {
                margin-left: auto;
                padding-right: 5%;
                font-size: 22px;
                font-weight: 400;
                color: #000000;
                text-transform: capitalize;
            }

            .line-item a p b,
            .line-item .content p b {
                font-size: 20px;
                font-weight: 700;
                color: #ED2933;
                padding-right: 5%;
                margin-left: auto;
                text-transform: lowercase;
            }

            .line-item .content p b {
                white-space: nowrap;
            }

        .line-item a:hover span:nth-of-type(2), .line-item .content:hover span:nth-of-type(2) {
            transform: translateX(-9px);
        }

    .line-item .content-header p {
        transform: none;
    }

.line-table {
    width: 100%;
    font-family: "Visby CF", sans-serif;
}

    .line-table thead tr {
        background-color: #F5F5F5;
        color: rgba(0, 0, 0, 0.55);
    }

        .line-table thead tr th {
            padding: 10px;
            font-weight: 700;
            width: calc(100% / 3);
        }

        .line-table thead tr:first-child {
            background-color: #FDD233;
        }

            .line-table thead tr:first-child th {
                color: #000000;
                font-weight: 700;
                height: 60px;
                line-height: 60px;
                padding: 0;
            }

        .line-table thead tr:nth-of-type(2) th:nth-of-type(2) {
            background-color: #ECEFF2;
            color: #000000;
            padding: 0;
            height: 60px;
            line-height: 60px;
            border: 2px solid #DDDDDD;
            border-top: none;
        }

    .line-table tbody tr td {
        border: 1px solid #F5F5F5;
        text-align: center;
        padding: 0;
        line-height: 60px;
        height: 60px;
        color: #000000;
        font-weight: 700;
    }

    .line-table tbody tr:hover {
        background-color: #F5F5F5;
    }

.departure-times-header {
    background-color: #F7F7F7;
    border-radius: 16px;
    text-align: center;
    padding: 30px;
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    color: #000000;
    margin: 50px 0;
}

    .departure-times-header b {
        font-weight: 700;
    }

.line-pass {
    font-family: "Visby CF", sans-serif;
    margin-top: 20px;
}

    .line-pass .col-md-6 {
        margin-top: 30px;
    }

.line-pass-header {
    background-color: #FDD233;
    color: #000000;
    padding: 0 15px;
    height: 60px;
    line-height: 60px;
    font-weight: 700;
    text-align: left;
    pointer-events: none;
}

.line-pass-body {
    position: relative;
}

.line-pass-item {
    margin-top: 30px;
}

    .line-pass-item p {
        background-color: #F7F7F7;
        color: #000000;
        padding: 20px;
        padding-left: 5%;
        position: relative;
        font-size: 20px;
        font-weight: 700;
        border-radius: 16px;
        margin-left: 40px;
        background-image: url(data:image/svg+xml;base64,PHN2ZyBpZD0ibm91bi1hcnJvdy0xNTY5OTE5IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS4wMTciIGhlaWdodD0iMTQuNzE2IiB2aWV3Qm94PSIwIDAgMjUuMDE3IDE0LjcxNiI+DQogIDxwYXRoIGlkPSJQYXRoXzc1NCIgZGF0YS1uYW1lPSJQYXRoIDc1NCIgZD0iTTE4NC42MTYsMTc1LjM1N2ExLjIzNywxLjIzNywwLDAsMC0uMy0uNzU5bC01Ljg4Ny02LjI1NWExLjI2NCwxLjI2NCwwLDAsMC0xLjYxLS4wOTIsMS4xNSwxLjE1LDAsMCwwLC4wMTEsMS42MWw0LjEzOSw0LjM5MkgxNjAuN2ExLjEsMS4xLDAsMSwwLDAsMi4yMDhoMjAuMjY5bC00LjEzOSw0LjM5MmExLjIxNiwxLjIxNiwwLDAsMC0uMDExLDEuNjEsMS4yNDgsMS4yNDgsMCwwLDAsMS42MS0uMDkybDUuODg3LTYuMjU1YTEuMDYyLDEuMDYyLDAsMCwwLC4zLS43NTlaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMTU5LjU5OCAtMTY4LjAwMSkiLz4NCjwvc3ZnPg0K);
        background-repeat: no-repeat;
        background-position: right 10px center;
        padding-right: 40px;
    }

        .line-pass-item p:after {
            content: "";
            width: 17px;
            height: 17px;
            border-radius: 50%;
            background-color: #FDD233;
            display: block;
            position: absolute;
            left: -40px;
            top: 50%;
            transform: translateY(-50%);
        }

        .line-pass-item p:before {
            content: "";
            left: -32px;
            height: calc(100% + 30px);
            border-right: 1px solid #FDD233;
            position: absolute;
            top: 50%;
        }

    .line-pass-item:last-child p:before {
        display: none;
    }

@media screen and (max-width: 768px) {
    .line-pass-header {
        background-image: url('../img/icons/noun-compare-arrows.svg');
        /*background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAA7AAAAOwBeShxvQAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAE5SURBVFiF7ZcxTsMwFIa/AmeAgVv0GJS1IxNUFRFwhlyhUhSpqrrAhnoPFqQu5QgsbFwgYfAfxYlIYgeXyb9k+dl5L++zJUvvQb/ugW/NvrpW7GxELAALoABKzY+e8ali0z6nk57ka2Ci9QRYjYAY1G8AiZIDfLTmlb4fDWABZLKfgJ3sHbCUnRHwJmyAO+qTP1gglTbaB3MTt6EB5lbyvMM/tyDmHT5eOrPsG+AS2A/E5MAb8Bka4EvDRUOQzup6hv+mCBABIkAEiAARIAKEArgApo6+U+A8NMAz8M5wxZzI7yU0wKvmrAcioS50K/9GSfYXbTGHWSvJaet7u9zfuv44xaG9spRg2rgCOCj2YO15NzW+ANDsKatRUJfzDR3jGW4wXVSpdYm59naj46QZpsW+GhHr1Nr/AH66Q96JDx3CAAAAAElFTkSuQmCC");*/
        background-repeat: no-repeat;
        background-position: right 10px center;
        pointer-events: initial;
        cursor: pointer;
        background-size: 36px;
    }

    .line-table thead tr:first-child th {
        background-image: url('../img/icons/noun-compare-arrows.svg');
        background-repeat: no-repeat;
        background-position: right 10px center;
        pointer-events: initial;
        cursor: pointer;
        background-size: 36px;
    }
}

.line-map {
    border-radius: 16px;
    overflow: hidden;
    height: 70vh;
    max-height: 650px;
    min-height: 450px;
}

.tab-line-content {
    margin-bottom: 50px;
    display: none;
    margin-top: 40px;
}

    .tab-line-content#route, .tab-line-content#depar {
        margin-bottom: 250px;
    }

    .tab-line-content > div:first-child {
        margin-top: 0 !important;
    }

    .tab-line-content.active {
        display: block;
    }

.tab-line-contents {
    overflow: initial;
}

.tab-line-header {
    display: flex;
    flex-wrap: wrap;
    font-family: "Visby CF", sans-serif;
    margin: 0 -15px;
}

.tab-line-header--item {
    background-color: #F7F7F7;
    border-radius: 35px;
    border: 15px solid white;
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    color: #000000;
    padding: 20px;
    transition: 0.33s;
    flex: 1;
    cursor: pointer;
}

    .tab-line-header--item:hover {
        color: #FDD233;
    }

    .tab-line-header--item.active {
        background-color: #FDD233;
        color: #000000 !important;
    }

.express-table {
    width: 100%;
}

    .express-table thead {
        font-size: 17px;
        font-weight: 700;
        color: #000000;
        padding: 20px 0;
        text-align: left;
    }

        .express-table thead th {
            padding: 20px 0;
        }

    .express-table tbody tr {
        border-bottom: 1px solid #E6E6E6;
    }

        .express-table tbody tr td {
            padding: 20px 0;
            padding-bottom: 30px;
            font-size: 17px;
            font-weight: 400;
            color: #000000;
        }

            .express-table tbody tr td:first-child {
                width: 75px;
            }

            .express-table tbody tr td:nth-of-type(2) {
                width: 125px;
            }

            .express-table tbody tr td a {
                font-weight: 700;
                color: #0782FF;
                margin-top: 5px;
                display: block;
            }

.express-title {
    font-size: 17px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 10px;
}

.transport-table {
    width: 100%;
    margin-bottom: 40px;
}

    .transport-table thead tr td:nth-of-type(1),
    .transport-table thead tr th:nth-of-type(1),
    .transport-table tbody tr td:nth-of-type(1),
    .transport-table tbody tr th:nth-of-type(1),
    .transport-table tfoot tr td:nth-of-type(1),
    .transport-table tfoot tr th:nth-of-type(1) {
        width: 55%;
    }

    .transport-table thead tr td:nth-of-type(2),
    .transport-table thead tr th:nth-of-type(2),
    .transport-table tbody tr td:nth-of-type(2),
    .transport-table tbody tr th:nth-of-type(2),
    .transport-table tfoot tr td:nth-of-type(2),
    .transport-table tfoot tr th:nth-of-type(2) {
        width: 25%;
    }

    .transport-table thead tr td:nth-of-type(3),
    .transport-table thead tr th:nth-of-type(3),
    .transport-table tbody tr td:nth-of-type(3),
    .transport-table tbody tr th:nth-of-type(3),
    .transport-table tfoot tr td:nth-of-type(3),
    .transport-table tfoot tr th:nth-of-type(3) {
        width: 20%;
    }

    .transport-table thead,
    .transport-table tfoot {
        font-size: clamp(14px,2vw,22px);
        font-weight: 700;
        color: #000000;
        text-align: left;
    }

        .transport-table thead th,
        .transport-table thead td,
        .transport-table tfoot th,
        .transport-table tfoot td {
            padding-bottom: 30px;
        }

        .transport-table tfoot td {
            padding-top: 30px;
        }

    .transport-table tbody {
        font-size: clamp(13px,2vw,17px);
        font-weight: 400;
        color: #000000;
    }

        .transport-table tbody b {
            font-weight: 700;
        }

        .transport-table tbody tr td {
            padding: 10px 0;
        }

            .transport-table tbody tr td:nth-of-type(3) {
                width: 100px;
            }

.tender-component {
    margin-bottom: 75px;
}

.tender-title {
    font-size: 20px;
    font-weight: 700;
    color: #1D428A;
    text-align: left;
}

.tender-row {
    padding: 15px 0;
    border-bottom: 1px solid #E6E6E6;
    display: flex;
    align-items: center;
}

    .tender-row b,
    .tender-row strong {
        font-size: 15px;
        font-weight: 700;
        color: #000000;
    }

    .tender-row b {
        width: 250px;
        flex: 0 0 250px;
    }

        .tender-row b a {
            color: #007FFF;
        }

    .tender-row span {
        font-size: 15px;
        font-weight: 400;
        color: #000000;
    }

.tender p {
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    line-height: 30px;
}

.station-items {
    display: flex;
    width: 100%;
    margin-bottom: 30px;
}

    .station-items .station-item:first-child {
        border-right: 1px solid #707070;
    }

        .station-items .station-item:first-child b {
            border-radius: 16px 0 0 0;
        }

        .station-items .station-item:first-child p {
            border-radius: 0 0 0 16px;
        }

    .station-items .station-item:last-child b {
        border-radius: 0 16px 0 0;
    }

    .station-items .station-item:last-child p {
        border-radius: 0 0 16px 0;
    }

.station-item {
    flex: 1;
}

    .station-item b {
        background-color: #FDD233;
        color: #000000;
        font-size: 20px;
        font-weight: 700;
        padding: 20px;
        display: block;
        text-align: center;
    }

    .station-item p {
        background-color: #F7F7F7;
        font-size: 20px;
        font-weight: 700;
        color: #000000;
        padding: 40px;
        text-align: center;
    }

.custom-bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 44;
}

.custom-box {
    position: relative;
    font-family: "Visby CF", sans-serif;
}

.custom-select {
    border: 1px solid #CBC9C9;
    height: 72px;
    border-radius: 16px;
    width: 100%;
    padding: 0 2.5%;
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    z-index: 46;
    background-color: white;
}

.custom-select-result {
    font-size: 25px;
    font-weight: 700;
    color: #000000;
    margin-top: 30px;
}

.custom-select-result-item {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

    .custom-select-result-item span {
        display: flex;
        margin: 0 10px;
    }

.custom-select-box {
    position: relative;
    max-width: 90%;
    width: 715px;
}

.custom-select img {
    margin-left: auto;
}

.custom-option {
    position: absolute;
    z-index: 45;
    top: 100%;
    height: 0;
    overflow: auto;
    max-height: 250px;
    border: 1px solid #CBC9C9;
    border-radius: 16px;
    padding: 0 1.5%;
    font-size: 22px;
    font-weight: 400;
    color: #000000;
    transition: 0.33s;
    padding-top: 40px;
    margin-top: -20px;
    width: 100%;
    visibility: hidden;
    opacity: 0;
    background-color: white;
}

    .custom-option.active {
        height: 250px;
        visibility: visible;
        opacity: 1;
    }

.custom-option-item {
    margin-bottom: 12px;
    text-transform: uppercase;
    cursor: pointer;
}

.custom-option::-webkit-scrollbar {
    width: 2px;
    background-color: rgba(0, 0, 0, 0.32);
}

.custom-option::-webkit-scrollbar-thumb {
    background-color: #000000;
}

.error-page {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-image: linear-gradient(to bottom right, #ec202a35 5%, #ec202a55 25%, #ec202a85 45%, #ec202a86 85%), url(../../assets/images/bg.jpg);
}

.error-page__container {
    max-width: 90%;
    width: 900px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    text-align: center;
    padding: 30px;
}

.error-page__title {
    text-shadow: 11px 9px 2px rgba(255, 255, 255, 0.5);
    font-size: clamp(75px,25vw,275px);
    border-bottom: 5px solid rgba(255, 255, 255, 0.5);
    margin-bottom: 2rem;
    color: #ED2933;
}

.error-page__content h1 {
    margin-bottom: 1.5rem;
    font-size: clamp(22px,3vw,30px);
    text-align: center;
    display: block;
}

.error-page__content span {
    display: block;
    margin: 20px 0;
    font-size: 17px;
    font-weight: 400;
    color: white;
    line-height: 1.7;
}

.error-page__content b {
    font-size: 18px;
    font-weight: 700;
    color: white;
    display: block;
    line-height: 1.7;
}

    .error-page__content b a {
        color: #ED2933;
    }

.error-container {
    text-align: center;
    padding: 103px 0 93px 0;
}

    .error-container h1 {
        font-size: clamp(35px,3vw,49px);
        font-weight: 800;
        color: #1D428A;
    }

    .error-container > img {
        max-height: 595px;
        object-fit: contain;
        display: block;
        margin: 33px auto 31px auto;
    }

    .error-container h2 {
        font-size: clamp(28px,3vw,34px);
        color: #1D428A;
        font-weight: 800;
    }

    .error-container p {
        font-size: clamp(20px,3vw,22px);
        color: black;
        font-weight: 700;
        margin: 13px 0 32px 0;
    }

    .error-container a {
        border-radius: 13px;
        display: inline-flex;
        align-items: center;
        gap: 23px;
        padding: 20px 35px;
        font-size: clamp(20px,3vw,25px);
        color: white;
        font-weight: 500;
        background-color: #1D428A;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

.schema {
    width: 1675px;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    white-space: nowrap;
}

.schema-item {
    color: #000000;
    border-radius: 25px;
    border: 1px solid #707070;
    text-align: center;
    padding: 0 10px;
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.schema-item--light {
    background-color: #CCCCCC;
}

.schema-item small {
    font-size: 8px;
    font-weight: 400;
    display: block;
}

    .schema-item small:nth-of-type(1) {
        font-size: 15px;
        font-weight: 400;
        text-transform: capitalize;
        white-space: initial;
        margin-bottom: 4px;
    }

    .schema-item small:nth-of-type(2), .schema-item small:nth-of-type(3) {
        display: none;
    }

.schema-item b {
    font-size: 16px;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}

.schema-item--red {
    color: white;
    background-color: #E40F18;
    border: 1px solid #707070;
    border-radius: 25px;
    text-align: center;
    padding: 15px 0;
    max-width: 265px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

    .schema-item--red:after {
        content: "";
        height: 41px;
        width: 2px;
        border-right: 2px solid #707070;
        position: absolute;
        right: 50%;
        top: 100%;
        margin-right: 1px;
    }

    .schema-item--red small {
        font-size: 11px;
        font-weight: 400;
        display: block;
    }

        .schema-item--red small:nth-of-type(1) {
            font-size: 14px;
            font-weight: 400;
        }

        .schema-item--red small:nth-of-type(2), .schema-item--red small:nth-of-type(3) {
            display: none;
        }

    .schema-item--red b {
        font-weight: 700;
        font-size: 17px;
        display: block;
        margin-bottom: 7px;
    }

.schema-item--blue {
    background-color: #1D428A;
    border-radius: 25px;
    border: 1px solid #707070;
    color: white;
    text-align: center;
    padding: 15px 0;
}

    .schema-item--blue small {
        font-weight: 400;
        display: block;
        margin-bottom: 5px;
    }

        .schema-item--blue small:nth-of-type(1) {
            font-size: 13px;
        }

        .schema-item--blue small:nth-of-type(2), .schema-item--blue small:nth-of-type(3) {
            display: none;
        }

    .schema-item--blue b {
        font-weight: 700;
        display: block;
        margin-bottom: 5px;
    }

.schema-item--gray {
    color: white;
    background-color: #5D5D5D;
    border: 1px solid #707070;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px 35px;
    margin-bottom: 23px;
}

    .schema-item--gray small {
        display: block;
    }

.schema-item--gray-info {
    text-align: center;
}

    .schema-item--gray-info small {
        font-size: 18px;
        font-weight: 400;
    }

    .schema-item--gray-info b {
        font-size: 23px;
        font-weight: 700;
    }

.schema-item--gray-mail {
    font-size: 14px;
    font-weight: 400;
    text-align: right;
    padding-left: 20px;
    display: none;
}

.schema-item__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.schema-item--six {
    display: grid;
    /*grid-template-columns: repeat(5, 1fr);*/
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    max-width: 1070px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 54px;
    margin-bottom: 47px;
}

.schema-item--four {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    max-width: 1070px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 54px;
    margin-bottom: 47px;
}

.schema-item--two {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 17px;
    border: 1px solid #707070;
    border-radius: 42px;
    padding: 25px;
}

.schema-item--box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    align-self: flex-start;
    gap: 17px;
}

.no-table-css table {
    width: initial !important;
}

    .no-table-css table * {
        width: initial !important;
    }

.ntc-cv-section-title {
    white-space: nowrap;
}

@media screen and (min-width: 1145px) {
    .news-menu-list {
        display: block !important;
    }

    .hero-mobi {
        display: none;
    }

    .sidebar-navigation {
        margin-bottom: 75px;
    }
}

@media screen and (max-height: 785px) {
    .mobil-menu-lang {
        font-size: 16px;
        color: white;
        margin-bottom: 30px;
    }

        .mobil-menu-lang span {
            font-size: 16px;
        }

    .mobil-menu-search input {
        height: 40px;
    }

    .mobil-menu-search-btn img {
        height: 20px;
    }

    .mobil-menu-links > a {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .mobil-menu-corporate--links a {
        font-size: 18px;
    }
}

@media screen and (max-width: 1750px) {
    .schema-item {
        border-radius: 18.75px;
        height: 60px;
        padding: 0 7.5px;
    }

    .schema-item__grid {
        gap: 15px;
    }

    .schema-item small:nth-of-type(1) {
        font-size: 11.25px;
        margin-bottom: 3px;
    }

    .schema-item b {
        font-size: 12px;
        margin-bottom: 3.75px;
    }

    .schema-item--red {
        padding: 11.25px;
        max-width: 198.75px;
    }

        .schema-item--red:after {
            height: 30.75px;
        }

        .schema-item--red small:nth-of-type(1) {
            font-size: 10.5px;
        }

        .schema-item--red b {
            font-size: 12.75px;
            margin-bottom: 5.25px;
        }

    .schema-item--six {
        gap: 8px;
        max-width: 910px;
        margin-top: 40.5px;
        margin-bottom: 22.09px;
    }

    .schema-item--four {
        gap: 9px;
        max-width: 802.5px;
        margin-top: 40.5px;
        margin-bottom: 22.09px;
    }

    .schema-item--blue {
        border-radius: 18.75px;
        padding: 11.25px 0;
    }

        .schema-item--blue small:nth-of-type(1) {
            font-size: 9.75px;
            margin-bottom: 3.75px;
        }

        .schema-item--blue b {
            font-size: 12px;
        }

    .schema-item--gray {
        border-radius: 18.75px;
        padding: 18.75px 26.25px;
        margin-bottom: 17.25px;
    }

    .schema-item--gray-info small {
        font-size: 13.5px;
    }

    .schema-item--gray-info b {
        font-size: 17.25px;
    }

    .schema-item--two {
        gap: 12.75px;
        border-radius: 31.5px;
        padding: 18.75px;
    }

    .schema-item--box {
        gap: 12.75px;
    }
}

@media screen and (max-width: 1450px) {
    .schema-item {
        border-radius: 16.25px;
        height: 52px;
        padding: 0 6.5px;
    }

    .schema-item__grid {
        gap: 13px;
    }

    .schema-item small:nth-of-type(1) {
        font-size: 9.75px;
        margin-bottom: 2.6px;
    }

    .schema-item b {
        font-size: 10.4px;
        margin-bottom: 3.25px;
    }

    .schema-item--red {
        padding: 9.75px;
        max-width: 172.25px;
    }

        .schema-item--red:after {
            height: 26.65px;
        }

        .schema-item--red small:nth-of-type(1) {
            font-size: 9.1px;
        }

        .schema-item--red b {
            font-size: 11.05px;
            margin-bottom: 4.55px;
        }

    .schema-item--six {
        gap: 7px;
        max-width: 800px;
        margin-top: 35px;
        margin-bottom: 30px;
    }

    .schema-item--four {
        gap: 7.8px;
        max-width: 695.5px;
        margin-top: 35.1px;
        margin-bottom: 30.55px;
    }

    .schema-item--blue {
        border-radius: 16.25px;
        padding: 9.75px 0;
    }

        .schema-item--blue small:nth-of-type(1) {
            font-size: 8.45px;
            margin-bottom: 3.25px;
        }

        .schema-item--blue b {
            font-size: 10.4px;
        }

    .schema-item--gray {
        border-radius: 16.25px;
        padding: 18.75px 22.75px;
        margin-bottom: 14.95px;
    }

    .schema-item--gray-info small {
        font-size: 11.7px;
    }

    .schema-item--gray-info b {
        font-size: 14.95px;
    }

    .schema-item--two {
        gap: 11.05px;
        border-radius: 27.3px;
        padding: 16.25px;
    }

    .schema-item--box {
        gap: 11.05px;
    }
}

@media screen and (max-width: 992px) {
    .schema-item {
        border-radius: 10.75px;
        height: 34.4px;
        padding: 0 4.3px;
    }

    .schema-item__grid {
        gap: 8.6px;
    }

    .schema-item small:nth-of-type(1) {
        font-size: 6.45px;
        margin-bottom: 1.72px;
    }

    .schema-item b {
        font-size: 6.88px;
        margin-bottom: 2.15px;
    }

    .schema-item--red {
        padding: 6.45px;
        max-width: 113.95px;
    }

        .schema-item--red:after {
            height: 17.63px;
        }

        .schema-item--red small:nth-of-type(1) {
            font-size: 6.02px;
        }

        .schema-item--red b {
            font-size: 7.31px;
            margin-bottom: 3.01px;
        }

    .schema-item--six {
        gap: 5px;
        max-width: 650px;
        margin-top: 23.22px;
        margin-bottom: 20.21px;
    }

    .schema-item--four {
        gap: 5.16px;
        max-width: 460.1px;
        margin-top: 23.22px;
        margin-bottom: 20.21px;
    }

    .schema-item--blue {
        border-radius: 10.75px;
        padding: 6.45px 0;
    }

        .schema-item--blue small:nth-of-type(1) {
            font-size: 5.59px;
            margin-bottom: 2.15px;
        }

        .schema-item--blue b {
            font-size: 6.88px;
        }

    .schema-item--gray {
        border-radius: 10.75px;
        padding: 10.75px 15.05px;
        margin-bottom: 9.89px;
    }

    .schema-item--gray-info small {
        font-size: 7.74px;
    }

    .schema-item--gray-info b {
        font-size: 9.89px;
    }

    .schema-item--two {
        gap: 7.31px;
        border-radius: 18.06px;
        padding: 10.75px;
    }

    .schema-item--box {
        gap: 7.31px;
    }

    .mobiett .col-12 img {
        transform: translateX(4%);
    }

    .other-sites .right > .right-container {
        flex-wrap: wrap;
        justify-content: center;
    }

    .other-sites__instagram {
        order: 1;
        min-height: 250px;
    }

    .other-sites__twitter {
        order: 2;
        min-height: 250px;
    }
}

@media screen and (max-width: 676px) {
    .schema-item {
        border-radius: 8.25px;
        height: 26.4px;
        padding: 0 3.3px;
    }

    .schema-item__grid {
        gap: 6.6px;
    }

    .schema-item small:nth-of-type(1) {
        font-size: 4.95px;
        margin-bottom: 1.32px;
    }

    .schema-item b {
        font-size: 5.28px;
        margin-bottom: 1.65px;
    }

    .schema-item--red {
        padding: 4.95px;
        max-width: 87.45px;
    }

        .schema-item--red:after {
            height: 13.53px;
        }

        .schema-item--red small:nth-of-type(1) {
            font-size: 4.62px;
        }

        .schema-item--red b {
            font-size: 5.61px;
            margin-bottom: 2.31px;
        }

    .schema-item--six {
        gap: 3.96px;
        max-width: 525px;
        margin-top: 17.82px;
        margin-bottom: 15.51px;
    }

    .schema-item--four {
        gap: 3.96px;
        max-width: 353.1px;
        margin-top: 17.82px;
        margin-bottom: 15.51px;
    }

    .schema-item--blue {
        border-radius: 8.25px;
        padding: 4.95px 0;
    }

        .schema-item--blue small:nth-of-type(1) {
            font-size: 4.29px;
            margin-bottom: 1.65px;
        }

        .schema-item--blue b {
            font-size: 5.28px;
        }

    .schema-item--gray {
        border-radius: 8.25px;
        padding: 8.25px 11.55px;
        margin-bottom: 7.59px;
    }

    .schema-item--gray-info small {
        font-size: 5.94px;
    }

    .schema-item--gray-info b {
        font-size: 7.59px;
    }

    .schema-item--two {
        gap: 5.61px;
        border-radius: 13.86px;
        padding: 8.25px;
    }

    .schema-item--box {
        gap: 5.61px;
    }

    .social-links a {
        margin-right: 7px;
        font-size: 11px;
    }

        .social-links a img {
            width: 15px;
            height: 15px;
        }

    .services .col-6 {
        padding-right: 5px !important;
        padding-left: 5px !important;
    }

    .services-card {
        height: 175px;
    }

        .services-card .info {
            right: 10px;
        }

            .services-card .info h3 img {
                height: 50px;
            }
}

@media screen and (max-width: 476px) {
    .schema-item {
        border-radius: 5px;
        height: 16px;
        padding: 0 2px;
    }

    .schema-item__grid {
        gap: 4px;
    }

    .schema-item small:nth-of-type(1) {
        font-size: 3px;
        margin-bottom: 0.8px;
    }

    .schema-item b {
        font-size: 3.2px;
        margin-bottom: 1px;
    }

    .schema-item--red {
        padding: 3px;
        max-width: 53px;
    }

        .schema-item--red:after {
            height: 8.2px;
        }

        .schema-item--red small:nth-of-type(1) {
            font-size: 2.8px;
        }

        .schema-item--red b {
            font-size: 3.4px;
            margin-bottom: 1.4px;
        }

    .schema-item--six {
        gap: 2.4px;
        max-width: 400px;
        margin-top: 10.8px;
        margin-bottom: 9.4px;
    }

    .schema-item--four {
        gap: 2.4px;
        max-width: 214px;
        margin-top: 10.8px;
        margin-bottom: 9.4px;
    }

    .schema-item--blue {
        border-radius: 5px;
        padding: 3px 0;
    }

        .schema-item--blue small:nth-of-type(1) {
            font-size: 2.6px;
            margin-bottom: 1px;
        }

        .schema-item--blue b {
            font-size: 3.2px;
        }

    .schema-item--gray {
        border-radius: 5px;
        padding: 5px 7px;
        margin-bottom: 4.6px;
    }

    .schema-item--gray-info small {
        font-size: 3.6px;
    }

    .schema-item--gray-info b {
        font-size: 4.6px;
    }

    .schema-item--two {
        gap: 3.4px;
        border-radius: 8.4px;
        padding: 5px;
    }

    .schema-item--box {
        gap: 3.4px;
    }
}

@media screen and (max-width: 1280px) {
    .hero-bottom .right {
        padding-left: 15px;
    }

        .hero-bottom .right > img {
            width: 90px !important;
        }

        .hero-bottom .right .swiper {
            display: none;
        }

    .weather-widget .left {
        margin-right: 15px;
    }

    .menu-desktop {
        padding-left: 30px;
        padding-right: 30px;
    }

        .menu-desktop .navigation a {
            margin-right: 20px;
        }
}

@media screen and (max-width: 1145px) {
    .sub-menu-box .mobil-menu-right {
        position: relative;
    }

        .sub-menu-box .mobil-menu-right:before {
            content: "";
            border-left: 1px solid white;
            height: 15px;
            left: -10px;
            position: relative;
        }

    .hero-tab {
        transform: translateY(-50%);
    }

    .hero-tab-box {
        height: calc(100vh - 165px);
    }

    .menu-desktop-box {
        display: none;
    }

    .mobil-menu-box {
        display: block;
    }

    .sub-menu-right {
        margin-left: auto;
        padding-right: 10px;
    }

        .sub-menu-right > .social-links {
            display: none;
        }

    .sub-menu-middle {
        display: none;
    }

    .breadcrumb {
        margin-bottom: 0;
    }

        .breadcrumb h1 {
            font-size: 20px;
        }

    .layout-one {
        padding-top: 0;
    }

        .layout-one > .left {
            flex: initial;
        }

        .layout-one > .right {
            width: 100%;
        }

    .sidebar,
    .news-menu {
        width: initial;
        max-width: initial;
        position: relative;
        margin-left: -20px;
        margin-right: -20px;
    }

    .sidebar-list,
    .news-menu-list {
        display: none;
        position: absolute;
        left: 0;
        top: 100%;
        padding: 0 20px;
        width: 100%;
        background-color: white;
        z-index: 222;
    }

        .sidebar-list li:first-child,
        .news-menu-list li:first-child {
            padding-top: 20px;
        }

    .sidebar-title,
    .news-menu-title {
        text-align: center;
        color: #1D428A;
        font-size: 35px;
        background-color: #F8F8F8;
        padding: 25px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

        .sidebar-title.active img,
        .news-menu-title.active img {
            transform: rotate(180deg);
        }

        .sidebar-title img,
        .news-menu-title img {
            display: block;
            margin-left: 20px;
            transition: 0.33s;
        }

        .sidebar-title .mobil-side-navigation,
        .news-menu-title .mobil-side-navigation {
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            display: block;
            z-index: 22;
        }

    .sidebar-navigation,
    .news-menu-navigation {
        position: absolute;
        left: 0;
        top: 100%;
        width: 100%;
        z-index: 999;
        display: none;
        background-color: rgba(29, 66, 138, 0.97);
        padding: 20px 20px;
    }

        .sidebar-navigation li,
        .news-menu-navigation li {
            padding-left: unset;
            background-color: transparent !important;
            min-height: 32px;
            text-align: center;
            line-height: 18px;
        }

            .sidebar-navigation li a,
            .news-menu-navigation li a {
                justify-content: center;
                font-weight: 300;
                padding-top: 9px;
                padding-bottom: 9px;
                color: white !important;
            }

            .sidebar-navigation li.active a,
            .news-menu-navigation li.active a {
                font-weight: 600;
            }

    .news-box.list .news-header img {
        height: 120px;
        width: 150px;
    }

    .news-header img {
        /*    height: 175px;*/
    }

    .news-box.type-1 .news-body {
        margin-top: 5px;
    }

    .news-body h3 {
        font-size: 16px !important;
        margin-bottom: 5px !important;
    }

    .news-body p {
        font-size: 13px !important;
    }

    .services {
        margin-top: 60px;
        margin-bottom: 60px;
    }

    .social-header {
        margin-top: 50px;
    }
}

@media screen and (max-width: 992px) {
    .other-sites {
        background-image: none !important;
    }

        .other-sites > .left {
            display: none;
        }

    .hero-bottom > .left {
        display: none;
    }

    .hero-mobi-right {
        padding-left: 145px;
        padding-right: 30px;
    }

    .hero-mobi span {
        width: 35px;
        height: 35px;
    }

        .hero-mobi span img {
            max-height: 50%;
        }

    .hero-mobi > img {
        width: 100px;
    }

    .footer {
        margin-top: 75px;
    }

    .breadcrumb {
        height: 175px;
        margin-bottom: 0;
    }

    .layout-one {
        padding-top: 0;
    }

    .cost-form-row {
        flex-direction: column;
        align-items: flex-start;
    }

        .cost-form-row label {
            flex: 1;
            margin-bottom: 10px;
            width: 100%;
        }

        .cost-form-row input,
        .cost-form-row select {
            width: 100%;
            flex: 1;
        }

    .cost-form-input {
        width: 100%;
    }

    .cost-form-box.type-2 label {
        flex: 1;
        width: initial;
    }

    .line-item a p {
        font-size: 15px;
        line-height: 1.2;
        padding-left: 40px;
        display: flex;
        align-items: center;
    }

    .tab-line-header {
        flex-wrap: wrap;
        margin-bottom: 20px;
    }

    .tab-line-header--item {
        flex: 0 0 50%;
        width: 50%;
    }

    .transportation-guide .col-lg-2.col-md-4.col-6.mb-3 {
        padding: 0 5px !important;
    }

    .transportation-card {
        font-size: 14px;
    }

        .transportation-card b {
            padding: 0 5px;
        }
}

@media screen and (max-width: 867px) {
    .other-sites .iett-container > .left {
        display: none;
    }

    .other-sites .iett-container > .right {
        width: 100%;
        flex: 1;
    }

    .hero-mobi {
        bottom: 30px;
    }

        .hero-mobi > img {
            bottom: -20px;
        }
}

@media screen and (max-width: 767px) {
    .hero-tab {
        flex-direction: column;
    }

    .hero-tab-content-list {
        width: 100%;
    }

    .hero-tab-btn-list {
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-right: none;
        border-bottom: 1px solid white;
        padding-bottom: 30px;
        margin-bottom: 25px;
        width: 100%;
    }

    .image-text {
        display: block;
        text-align: center;
    }

        .image-text img {
            margin-bottom: 10px;
        }

        .image-text .text {
            flex: 100%;
            width: 100%;
            padding: 0;
            text-align: left;
        }

    .social-header {
        display: block;
        border-bottom: none;
        margin-top: 50px;
    }

        .social-header h2 {
            border-bottom: 1px solid #E6E6E6;
            padding-bottom: 10px;
            margin-bottom: 25px;
            font-size: 20px;
        }

    .cv-page-row {
        flex-direction: column;
        font-size: 14px;
    }

        .cv-page-row > .left {
            flex: 1;
            width: 100%;
            text-align: center;
        }

            .cv-page-row > .left img {
                margin: 0 auto 30px auto;
            }

        .cv-page-row > .right .cv-row b:first-child {
            flex: 0 0 100px;
            width: 100px;
        }

    .news-detail img {
        width: 100% !important;
        /*max-height: 300px;*/
        object-fit: cover;
        float: none;
    }

    .breadcrumb.news-detail-page {
        height: 200px !important;
    }

    .breadcrumb h1 {
        font-size: 16px;
        max-width: 90%;
    }

    .iett-ads-box {
        flex-direction: column;
    }

    .iett-ads-info > * {
        margin-top: 15px !important;
    }

    .tender-row b {
        width: 125px;
        flex: 0 0 125px;
    }

    .line-search input {
        height: 45px;
        font-size: 16px;
    }

        .line-search input::placeholder {
            font-size: 16px;
        }

    .line-search button {
        flex: 0 0 45px;
        height: 45px;
    }

        .line-search button img {
            width: 25px;
        }

    .search-autocomplete-after {
        width: calc(100% - 55px);
        margin-top: -85px;
    }

        .search-autocomplete-after .line-list {
            margin: 40px 0 20px 0;
        }

        .search-autocomplete-after .line-item span {
            height: 45px;
            width: 45px;
            flex: 0 0 45px;
            font-size: 13px;
        }

        .search-autocomplete-after .line-item p {
            height: 45px;
            font-size: 14px;
        }

    .custom-select {
        height: 45px;
    }

    .custom-select-box {
        max-width: 100%;
    }

    .custom-select-result-item {
        font-size: 18px;
    }

    .line-item a span,
    .line-item .content span {
        width: 50px;
        height: 50px;
        flex: 0 0 50px;
        font-size: 14px;
    }

        .line-item a span img,
        .line-item .content span img {
            height: 20px;
        }

    .line-item a p,
    .line-item .content p {
        font-size: 14px;
        height: 50px;
        padding-left: 30px;
        transform: translateX(-10px);
    }

    .line-item .content p {
        line-height: 1.2;
        font-weight: 500;
        font-size: 15px;
    }

        .line-item .content p small,
        .line-item .content p b {
            font-size: 14px;
            font-weight: 500;
        }

    .line-pass-header {
        font-size: 14px;
        padding-right: 40px;
    }

    .line-pass-item p {
        font-size: 14px;
    }

    .tab-line-content #route {
        margin-bottom: 175px;
    }

    .transport-table thead th,
    .transport-table thead td,
    .transport-table tfoot th,
    .transport-table tfoot td {
        padding-bottom: 10px;
    }

    .transport-table tbody tr td:empty {
        padding: 0px;
    }
}

@media screen and (max-width: 676px) {
    .hero-tab {
        padding: 30px 20px;
        transform-origin: center;
        zoom: 0.7;
    }

    .hero-tab-box {
        padding: 0 10px;
    }

    .hero-tab-btn-item--circle {
        flex: 0 0 35px;
        width: 35px;
        height: 35px;
        margin-right: 5px;
    }

        .hero-tab-btn-item--circle img {
            width: 14px;
        }

    .hero-tab-btn-list {
        margin-right: 0;
        padding-bottom: 20px;
    }

    .hero-tab-content-item h3 {
        margin-bottom: 10px;
        font-size: 24px;
    }

    .hero-bottom .right {
        padding-right: 100px;
    }

        .hero-bottom .right > img {
            width: 125px;
        }

    .other-sites-item {
        width: 100%;
        flex: 0 0 100%;
    }

    .sub-menu {
        height: 60px;
    }

    .sub-menu-left {
        width: 150px;
        flex: 0 0 150px;
    }

        .sub-menu-left img {
            height: 40px;
        }

    .mobil-menu-left {
        zoom: 0.75;
        transform-origin: left center;
        max-width: 137px;
        word-break: break-word;
    }

    .services {
        margin-top: 20px;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 576px) {
    .menu-search.active {
        top: 50px;
        z-index: 22;
        left: 50%;
        transform: translateX(-50%);
    }

    .mobil-menu .weather-widget--responsive .right div {
        font-size: 0;
    }

    .mobil-menu .left img {
        width: 35px;
    }

    .mobil-menu .right {
        font-size: 12px;
    }

        .mobil-menu .right b {
            font-size: 20px;
        }

    .person-info-box {
        display: block;
        clear: both;
        padding-top: 20px;
    }

        .person-info-box:first-child {
            padding-top: 0px;
        }

    .person-info-img {
        float: left;
        margin-right: 10px;
    }

    .cost-form-box .input-radio-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .tab-line-header--item {
        font-size: 11px;
        border-width: 7px;
        padding-top: 10px;
        padding-bottom: 10px;
        border-radius: 16px;
        min-height: 64px;
    }

    .station-item b {
        padding: 10px;
        font-size: 16px;
    }

    .station-item p {
        padding: 35px 10px;
        font-size: 16px;
    }

    .hero-mobi {
        transform: scale(0.75);
        transform-origin: left bottom;
    }

    .hero-bottom {
        margin-bottom: 30px;
    }

    .footer .iett-container {
        padding: 0;
    }

    .footer-header {
        padding: 15px 0;
    }

        .footer-header a {
            font-size: 11px;
            margin: 5px;
        }

    .footer-links a {
        font-size: 10px;
    }

    .footer-links-title {
        margin-bottom: 20px;
    }

    .publications__item img {
        flex: initial;
        width: initial;
    }

    .departure-times-header {
        font-size: 15px;
    }

    .sidebar-title,
    .news-menu-title {
        font-size: 17px;
        padding: 15px;
    }

    .title.type-2 {
        font-size: 20px;
    }

    .services {
        margin: 40px 0;
    }

    .transportation-guide {
        padding-bottom: 0;
        margin-top: 40px;
    }

    .other-sites .iett-container {
        margin-top: 0;
    }

    .other-sites .info b {
        font-size: 15px;
    }

    .home-news .title.type-2 {
        margin-bottom: 10px;
    }

    .mobiett h2 {
        font-size: 40px;
    }

    .mobiett p {
        font-size: 15px;
    }

    .news-box.type-2 a {
        border-radius: 50px;
    }

    .cv-page-row > .right .cv-row__table thead th {
        padding-bottom: 12px;
    }
}

@keyframes leftRight {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0);
    }
}


.onlySlider {
    width: 100%;
    height: 600px;
    max-height: 50vh;
    margin-bottom: 60px;
}

    .onlySlider .swiper-slide {
        position: relative;
    }

    .onlySlider .swiper-pagination {
        bottom: 50px;
    }

    .onlySlider .swiper-pagination-bullet {
        width: 7px;
        height: 7px;
        background-color: white;
        opacity: 1;
        transition: 0.33s;
    }

        .onlySlider .swiper-pagination-bullet:after {
            border: 1px solid transparent;
        }

    .onlySlider .swiper-pagination-bullet-active {
        width: 7px;
        height: 7px;
        background-color: #53A8DA;
        opacity: 1;
        position: relative;
    }

        .onlySlider .swiper-pagination-bullet-active:after {
            content: "";
            border-radius: 50%;
            position: absolute;
            left: -4px;
            top: -4px;
            width: 13px;
            height: 13px;
            border-color: #53A8DA;
        }

@media screen and (max-width: 768px) {
    .onlySlider {
        height: 300px;
    }
}

.only-slider {
    background-color: #377FFF;
    height: 100%;
    border-radius: 5px;
    overflow: hidden;
    text-align: center;
}

    .only-slider img {
        height: 100%;
        width: 100%;
        object-fit: contain;
        object-position: center;
    }

.only-slider__button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

    .only-slider__button:after {
        color: #182C69;
        font-size: 20px;
    }

.only-slider:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    top: 0;
    z-index: 2;
    background-image: linear-gradient(to bottom, #00000000, #000000);
}

.only-slider h3 {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(12px,3vw,32px);
    text-transform: uppercase;
    color: white;
    z-index: 22;
    font-family: "Averta-Bold", sans-serif;
}

.only-slider__content {
    color: white;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 22;
    padding: 0 0 40px 55px;
}

    .only-slider__content h4 {
        font-size: 32px;
        font-family: "Averta-Bold", sans-serif;
        margin-bottom: 8px;
    }

    .only-slider__content p {
        font-size: 18px;
        font-family: "Averta-Regular", sans-serif;
        text-align: left;
    }


/*# sourceMappingURL=style.css.map */
