@font-face {
    font-family: 'TT Norms';
    font-weight: 700;
    font-style: normal;

    src: url('../fonts/TTNorms/TTNorms-Bold.woff2') format('woff2');
}

@font-face {
    font-family: 'TT Norms';
    font-weight: 700;
    font-style: italic;

    src: url('../fonts/TTNorms/TTNorms-BoldItalic.woff2') format('woff2');
}

@font-face {
    font-family: 'Montserrat';
    font-weight: 700;
    font-style: italic;

    src: url('../fonts/Montserrat-Bold.woff') format('woff');
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700;
}


/* btns start */
.btn--red {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.1875rem;
    padding: .625rem 1.875rem;
    position: relative;
    overflow: hidden;
    color: #fff;
    background-color: #861723;
}

.btn--red::before {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;

    width: 110%;
    height: 100%;

    content: '';
    transition: transform .35s ease-in-out 0s;
    transform: scaleY(0);
    transform-origin: center top;

    background-color: #052f5a;
}

.btn--red:hover {
    color: #fff;
}

.btn--red:hover::before {
    transform: scaleY(1);
    transform-origin: center bottom;
}

.btn--blue {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.1875rem;
    position: relative;
    padding: .625rem 1.875rem;
    overflow: hidden;
    color: #fff;
    background-color: #1961ac;
}

.btn--blue::before {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;

    width: 110%;
    height: 100%;

    content: '';
    transition: transform .35s ease-in-out 0s;
    transform: scaleY(0);
    transform-origin: center top;

    background-color: #052f5a;
}

.btn--blue:hover {
    color: #fff;
}

.btn--blue:hover::before {
    transform: scaleY(1);
    transform-origin: center bottom;
}

.btn__text {
    position: relative;
    z-index: 2;
}

/* btns end */

/* container start */

.container {
    box-sizing: border-box;
    width: 100%;
    max-width: 78.75rem;
    margin: 0 auto;
    padding: 0 3.75rem;
}

@media (max-width: 62rem) {
    .container {
        padding: 0 1.75rem;
    }
}

/* container end */

/* menu start */
@media (max-width: 67.5rem) {
    .menu {
        position: fixed;
        z-index: -1;
        top: 0;
        left: 0;

        visibility: hidden;
        overflow: auto;

        width: 100%;
        height: 100vh;
        padding: 9.375rem 3.75rem 3.125rem;

        transition: all .35s ease 0s;
        transform: translateX(-100%);
        pointer-events: none;

        opacity: 0;
        background-color: #fff;
    }

    .menu._active {
        visibility: visible;

        transform: translateX(0);
        pointer-events: all;

        opacity: 1;
    }
}

@media (max-width: 36rem) {
    .menu {
        padding: 9.375rem 1.75rem 3.125rem;
    }
}

.menu__list {
    display: flex;
    color: #063668;
}

@media (max-width: 67.5rem) {
    .menu__list {
        display: block;
    }
}

@media (max-width: 48rem) {
    .menu__list {
        margin-bottom: 1.875rem;
    }
}

.menu__item {
    display: inline-flex;
}

@media (max-width: 67.5rem) {
    .menu__item {
        display: block;

        text-align: center;
    }
}

.menu__item:not(:last-child) {
    margin-right: 1.5625rem;
}

@media (max-width: 73.75rem) {
    .menu__item:not(:last-child) {
        margin-right: 1.25rem;
    }
}

@media (max-width: 67.5rem) {
    .menu__item:not(:last-child) {
        margin-right: 0;
        margin-bottom: .9375rem;
    }
}

.menu__link {
    font-size: .875rem;
    font-weight: 700;
    line-height: 135.71429%;

    transition: color .35s ease 0s,
    background-size .35s ease-in-out 0s;

    color: #0d2946;
    background-image: linear-gradient(transparent calc(100% - 1px), #861723 1px);
    background-repeat: no-repeat;
    background-size: 0;
}

@media (max-width: 73.75rem) {
    .menu__link {
        font-size: .8125rem;
    }
}

@media (max-width: 67.5rem) {
    .menu__link {
        font-size: 1rem;
    }
}

.menu__link:hover {
    color: #861723;
    background-size: 100%;
}

.menu__btns {
    display: none;
}

@media (max-width: 48rem) {
    .menu__btns {
        display: flex;
        flex-direction: column;

        align-items: center;
    }
}

.menu__btn:not(:last-child) {
    margin-bottom: .625rem;
}

/* menu end */
/* search-block start */
.search-block {
    position: absolute;
    z-index: 2;
    top: 100%;
    left: 0;

    visibility: hidden;

    width: 100%;
    height: auto;

    transition: transform .45s ease-in-out 0s,
    opacity .35s ease 0s,
    visibility .35s ease 0s;
    transform: translateY(2.5rem);
    pointer-events: none;

    opacity: 0;
}

.search-block._active {
    visibility: visible;

    transform: translateY(1rem);
    pointer-events: all;

    opacity: 1;
}

.search-block-btn {
    font-size: 1rem;

    position: relative;

    display: flex;

    width: 1.9375rem;
    height: 2rem;

    transition: background-color .35s ease 0s,
    color .35s ease 0s;

    color: #000;
    background-color: rgba(5, 47, 90, 0);

    align-items: center;
    justify-content: center;
}

@media (max-width: 48rem) {
    .search-block-btn {
        font-size: 1.125rem;

        color: #063668;
    }
}

.search-block-btn:hover {
    color: #fff;
    background-color: #052f5a;
}

.search-block-btn::after,
.search-block-btn::before {
    position: absolute;
    z-index: 2;
    top: .9375rem;
    left: .1875rem;

    visibility: hidden;

    width: 1.5625rem;
    height: .125rem;

    content: '';
    transition: transform .35s ease-in-out 0s,
    opacity .35s ease 0s,
    visibility .35s ease 0s;
    transform: rotate(0deg) scale(0);

    opacity: 0;
    background-color: #fff;
}

.search-block-btn__icon {
    visibility: visible;

    transition: opacity .35s ease 0s,
    visibility .35s ease 0s;

    opacity: 1;
}

.search-block-btn._active {
    background-color: #052f5a;
}

.search-block-btn._active .search-block-btn__icon {
    visibility: hidden;

    opacity: 0;
}

.search-block-btn._active::after {
    visibility: visible;

    transform: rotate(45deg) scale(1);

    opacity: 1;
}

.search-block-btn._active::before {
    visibility: visible;

    transform: rotate(-45deg) scale(1);

    opacity: 1;
}

.search-block__block {
    position: relative;

    display: block;

    margin: 0;
    padding: 0;
}

.search-block__input {
    font-size: .8125rem;
    font-weight: 400;
    line-height: 3.75rem;
    position: relative;
    z-index: 1;
    width: 100%;
    height: 3.75rem;
    padding: 0 3.125rem 0 1.875rem !important;
    /*color: #fff;*/
    /*background-color: #31394d !important;*/
    color: #31394d;
    background-color: white !important;
}

.search-block__input::placeholder {
    color: #31394d;
}

.search-block__btn {
    font-size: 1.25rem;

    position: absolute;
    z-index: 2;
    top: 50%;
    right: 1rem;

    display: flex;

    width: 1.875rem;
    height: 1.875rem;

    transition: color .35s ease 0s;
    transform: translateY(-50%);

    /*color: #fff;*/
    color: #31394d;

    align-items: center;
    justify-content: center;
}

.search-block__btn:hover {
    color: #861723;
}

/* search-block end */

/* header start */
.header {
    position: relative;
    z-index: 6;

    background-color: #fff;
}

.header .e-lang {
    flex-shrink: 0;
}

.header .e-lang__toggle {
    display: flex;
    align-items: center;
    padding: .5rem .7rem;
    background-color: #0d2946;
    margin-right: .7rem;
    color: white;
    height: 39px;
}

.header .e-lang__drop {
    padding-top: .5rem;
}

.header .e-lang__select:hover {
    color: #d91818;
}

.header__container {
    max-width: 87rem;
}

.header__row {
    position: relative;

    display: flex;

    padding: .625rem 0 1rem;

    background-color: #fff;

    align-items: center;
    justify-content: space-between;
}

@media (max-width: 36rem) {
    .header__row {
        padding: .75rem 0;
    }
}

.header__logo {
    display: block;

    width: 100%;
    max-width: 12.5rem;
    height: auto;
    margin-right: 2.1875rem;

    transition: none;

    opacity: 1;

    flex-grow: 0;
    flex-shrink: 0;
}

@media (max-width: 77.75rem) {
    .header__logo {
        max-width: 10rem;
    }
}

@media (max-width: 73.75rem) {
    .header__logo {
        margin-right: 1.5625rem;
    }
}

@media (max-width: 67.5rem) {
    .header__container {
        padding: 0 1rem;
    }
    .header__logo {
        margin-right: auto;
    }
}

@media (max-width: 36rem) {
    .header__logo {
        max-width: 6.5625rem;
    }
}

.header__logo:hover {
    opacity: .9;
}

.header__menu {
    margin: 0 auto;
}

@media (max-width: 67.5rem) {
    .header__menu {
        margin: 0;
    }
}

.header__search-block-btn {
    margin-left: 1.625rem;

    flex-grow: 0;
    flex-shrink: 0;
}

@media (max-width: 48rem) {
    .header__search-block-btn {
        margin-left: 0;
    }
}

.header__search-block-btn:not(:last-child) {
    margin-right: .75rem;
}

@media (max-width: 48rem) {
    .header__search-block-btn:not(:last-child) {
        margin-right: .4375rem;
    }
}

.header__btns {
    display: flex;
}

@media (max-width: 67.5rem) {
    .header__btns {
        margin-right: .625rem;
    }
}

@media (max-width: 48rem) {
    .header__btns {
        display: none;
    }
}

@media (max-width: 73.75rem) {
    .header__btn {
        font-size: .875rem;

        padding: .625rem 1.25rem;
    }
}

.header__btn:not(:last-child) {
    margin-right: .6563rem;
}

.header__toggle {
    position: relative;

    display: none;

    width: 1.25rem;
    height: 1.1875rem;
}

@media (max-width: 67.5rem) {
    .header__toggle {
        display: block;
    }
}

.header__toggle span {
    position: absolute;
    left: 0;

    display: block;
    visibility: visible;

    width: 100%;
    height: .1875rem;

    transition: .35s ease;
    transform: rotate(0deg);

    opacity: 1;
    border-radius: .125rem;
    background-color: #063668;
}

.header__toggle span:nth-child(1) {
    top: 0;
}

.header__toggle span:nth-child(2) {
    top: .5rem;
}

.header__toggle span:nth-child(3) {
    top: 1rem;
}

.header__toggle._active span {
    top: .5rem;
}

.header__toggle._active span:nth-child(1) {
    transform: rotate(45deg);
}

.header__toggle._active span:nth-child(2) {
    left: 50%;

    visibility: hidden;

    width: 0;

    opacity: 0;
}

.header__toggle._active span:nth-child(3) {
    transform: rotate(-45deg);
}

/* header end */

/* footer start */
.footer {
    position: relative;
    z-index: 2;

    padding: 1.25rem 0 1.3125rem;

    background: rgba(255, 255, 255, .5);

    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

@media (max-width: 48rem) {
    .footer {
        padding: 0;

        background-color: #fff;

        -webkit-backdrop-filter: none;
        backdrop-filter: none;
    }
}

.footer__row {
    display: flex;

    align-items: center;
    justify-content: space-between;
}

@media (max-width: 48rem) {
    .footer__row {
        flex-direction: column;

        padding: .625rem 0 .8125rem;

        text-align: center;

        border-top: 1px solid rgba(116, 123, 141, .5);
    }
}

.footer__link {
    font-size: .75rem;
    line-height: 1.2;

    margin-right: 2.1875rem;

    transition: color .35s ease 0s;
    text-transform: uppercase;

    color: #063668;
}

@media (max-width: 48rem) {
    .footer__link {
        font-size: .625rem;

        margin-right: 0;
        margin-bottom: .625rem;
    }
}

.footer__link:hover {
    text-decoration: underline;

    color: #063668;
}

.footer__copyright {
    font-size: .75rem;
    line-height: 1.2;

    margin-left: auto;

    transition: none;
    text-transform: uppercase;

    color: #063668;
}

@media (max-width: 48rem) {
    .footer__copyright {
        font-size: .625rem;

        max-width: 11.75rem;
        margin-left: 0;
    }
}

.footer__copyright a {
    color: #063668;
}

.footer__copyright a:hover {
    text-decoration: underline;

    color: #063668;
}

/* footer end */

/* icons start */
@font-face {
    font-family: 'icons';
    font-weight: normal;
    font-style: normal;

    src: url('../fonts/icons.ttf?obpn46') format('truetype'), url('../fonts/icons.woff?obpn46') format('woff');
    font-display: block;
}

[class^='_icn-'],
[class*=' _icn-'] {
    font-family: 'icons' !important;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 1;

    text-transform: none;

    speak: never;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

._icn-arrow-more:before {
    content: '\e900';
}

._icn-arrow-right:before {
    content: '\e901';
}

._icn-arrow-slider:before {
    content: '\e902';
}

._icn-clock:before {
    content: '\e903';
}

._icn-printer:before {
    content: '\e904';
}

._icn-search:before {
    content: '\e905';
}

._icn-arrow-dropdown:before {
    content: '\e906';
}


/* icons end */
