@font-face {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 400;
    font-display: optional;
    src: local("Roboto-Regular"),
        url("../fonts/Roboto/Roboto-Regular.woff") format("woff");
}

@font-face {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 600;
    font-display: optional;
    src: local("Roboto-Bold"),
        url("../fonts/Roboto/roboto-bold-webfont.woff2") format("woff2"),
        url("../fonts/Roboto/roboto-bold-webfont.woff") format("woff");
}

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

html,
body {
    width: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
}

body {
    background: #fff;
    color: #303d4a;
    font-family: "Roboto", Arial, sans-serif;
    font-size: 17px;
    font-weight: 400;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: #221f1f;
}

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.container {
    width: 100%;
    margin: 0 auto;
    padding-right: 12px;
    padding-left: 12px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -12px;
    margin-left: -12px;
}

.row > * {
    width: 100%;
    max-width: 100%;
    padding-right: 12px;
    padding-left: 12px;
}

@media (min-width: 576px) {
    .container { max-width: 540px; }
}

@media (min-width: 768px) {
    .container { max-width: 720px; }
    .col-md-4 { width: 33.333333%; }
    .col-md-6 { width: 50%; }
}

@media (min-width: 992px) {
    .container { max-width: 960px; }
    .col-lg-6 { width: 50%; }
}

@media (min-width: 1200px) {
    .container { max-width: 1140px; }
}

@media (min-width: 1400px) {
    .container { max-width: 1584px; }
}

.topbar-wrapper {
    position: relative;
    z-index: 100;
    background: #fff;
}

.topbar {
    height: 84px;
    border-bottom: 1px solid #e5e5e5;
}

.topbar .container,
.topbar .topbar-container,
.topbar .topbar-navigation {
    height: 100%;
}

.topbar .topbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar .topbar-brand {
    min-width: 0;
}

.topbar .topbar-brand img {
    width: min(338px, 70vw);
    height: auto;
}

.topbar-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 46px;
    height: 46px;
    padding: 10px;
    border: 0;
    border-radius: 6px;
    background: transparent;
    cursor: pointer;
}

.topbar-toggle:hover,
.topbar-toggle:focus-visible {
    background: #f1f6fb;
    outline: 2px solid #0094da;
    outline-offset: 2px;
}

.topbar-toggle-line {
    display: block;
    width: 100%;
    height: 3px;
    border-radius: 2px;
    background: #034ea1;
    transition: transform .2s ease, opacity .2s ease;
}

.topbar-toggle.is-open .topbar-toggle-line:nth-child(2) {
    transform: translateY(8px) rotate(45deg);
}

.topbar-toggle.is-open .topbar-toggle-line:nth-child(3) {
    opacity: 0;
}

.topbar-toggle.is-open .topbar-toggle-line:nth-child(4) {
    transform: translateY(-8px) rotate(-45deg);
}

.topbar-menu,
.topbar-submenu,
.topbar-contact-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.topbar-menu {
    display: none;
    height: 100%;
}

.topbar-menu > li {
    position: relative;
    display: flex;
    align-items: center;
    margin-right: 30px;
}

.topbar-menu > li:last-child {
    margin-right: 0;
}

.topbar-menu > li > a {
    display: flex;
    align-items: center;
    height: 100%;
    color: #506070;
    font-size: 16px;
    text-decoration: none;
    transition: color .2s ease;
}

.topbar-menu > li > a:hover,
.topbar-menu > li > a:focus-visible {
    color: #3374c3;
}

.topbar-menu > li.valuation a {
    height: auto;
    padding: 12px 18px;
    border-radius: 12px;
    background: #034ea1;
    color: #fff;
    font-weight: 600;
}

.topbar-submenu {
    display: none;
    position: fixed;
    top: 83px;
    left: 0;
    z-index: 10;
    align-items: center;
    width: 100%;
    height: 194px;
    padding: 12px;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    background: #fff;
    overflow-x: auto;
}

.topbar-menu > li:hover .topbar-submenu,
.topbar-menu > li:focus-within .topbar-submenu {
    display: flex;
}

.topbar-submenu > li {
    flex-shrink: 0;
    width: 140px;
    margin: 0 5px;
    text-align: center;
}

.topbar-submenu .topbar-submenu-el {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #221f1f;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.topbar-submenu-el-img {
    height: 66px;
    margin-bottom: 25px;
}

.topbar-submenu-el-img img {
    height: 100%;
    width: auto;
}

.topbar-contact {
    display: none;
    color: #221f1f;
    font-size: 15px;
    font-weight: 600;
}

.topbar-contact-list li:not(:last-child) {
    margin-bottom: 8px;
}

@media (min-width: 1200px) {
    .topbar-toggle { display: none; }
    .topbar-menu { display: flex; }
}

@media (min-width: 1400px) {
    .topbar-contact { display: block; }
}

@media (max-width: 1432px) and (min-width: 1200px) {
    .topbar-menu > li { margin-right: 15px; }
}

@media (max-width: 1199px) {
    .navigation-open { overflow: hidden; }

    .topbar-navigation {
        display: none;
        position: absolute;
        top: 84px;
        left: 0;
        width: 100%;
        height: calc(100vh - 84px) !important;
        height: calc(100dvh - 84px) !important;
        padding: 18px 20px 30px;
        background: #fff;
        box-shadow: 0 14px 30px rgba(34, 31, 31, .14);
        overflow-y: auto;
    }

    .topbar-navigation.is-open { display: block; }

    .topbar-navigation .topbar-menu {
        display: flex;
        flex-direction: column;
        height: auto;
    }

    .topbar-menu > li {
        display: block;
        width: 100%;
        margin: 0;
        border-bottom: 1px solid #e5e5e5;
    }

    .topbar-menu > li > a {
        min-height: 52px;
        padding: 12px 8px;
        font-size: 17px;
    }

    .topbar-menu > li.valuation {
        padding-top: 18px;
        border-bottom: 0;
    }

    .topbar-menu > li.valuation a {
        justify-content: center;
        min-height: 48px;
    }

    .topbar-submenu,
    .topbar-menu > li:hover .topbar-submenu,
    .topbar-menu > li:focus-within .topbar-submenu {
        display: none;
    }
}

.footer {
    margin-top: 50px;
    padding-top: 36px;
    border-top: 12px solid #0094da;
    background: #221f1f;
    color: #a0a0a0;
    font-size: 13px;
}

.footer-title {
    position: relative;
    margin: 0 0 21px;
    padding-bottom: 14px;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 1.5px;
}

.footer-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #0094da;
}

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

.footer-list > li {
    margin-bottom: 6px;
}

.footer-list a {
    display: block;
    color: #a0a0a0;
    text-decoration: none;
}

.footer-list a:hover,
.footer-list a:focus-visible {
    color: #0094da;
}

.footer-contact-title {
    margin: 0 0 14px;
    color: #fff;
    font-size: 15px;
    font-weight: 400;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding: 15px 0;
    border-top: 1px solid #2d2a2a;
}

.footer-bottom p {
    margin: 0;
}

@media (max-width: 767px) {
    .footer .col-md-4 + .col-md-4 {
        margin-top: 28px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}
