@font-face {
    font-family: "TTNormsPro";
    src: url("../fonts/TTNormsPro-Light.woff2") format("woff2");
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "TTNormsPro";
    src: url("../fonts/TTNormsPro-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "TTNormsPro";
    src: url("../fonts/TTNormsPro-Medium.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "circe";
    src: url("../fonts/Circe-Thin.woff2") format("woff2");
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "circe";
    src: url("../fonts/Circe-Light.woff2") format("woff2");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "circe";
    src: url("../fonts/Circe-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "circe";
    src: url("../fonts/Circe-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "circe";
    src: url("../fonts/Circe-ExtraBold.woff2") format("woff2");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

/* GLOBAL */
:root {
    --main-font: circe, Arial, Helvetica, sans-serif;
    --black: #000000;
    --white: #ffffff;
    --red: #aa1d37;
    --accent-red: #91cbea;
    --color-border: #ebebeb;
    --gray: #3d3d3d;
    --light-gray: #afafaf;
}
*,
*::before,
*::after {
    box-sizing: border-box;
}
* {
    padding: 0;
    margin: 0;
    -webkit-tap-highlight-color: transparent;
}
html,
body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
}
html {
    font-family: var(--main-font);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2;
    color: var(--black);
}
body {
    width: 100%;
    height: 100%;
    min-width: 320px;
    min-height: 100vh;
    background-color: var(--white);
}
a {
    color: inherit;
    text-decoration: none;
}
img,
video {
    max-width: 100%;
    height: auto;
    object-fit: cover;
  }
button {
    padding: 0;
    background-color: transparent;
    cursor: pointer;
}
ul,
ol {
    padding-left: 0;
    list-style: none;
}
.container {
    position: relative;
    margin: 0 auto;
    max-width: 1820px;
    padding-inline: 30px;
}
@media (max-width: 768px) {
    .container {
        padding-inline: 12px;
    }
}
.site-wrap {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 100vh;
}
main {
    flex-grow: 1;
}
.btn-link {
    position: relative;
    display: inline-block;
    margin-left: 31px;
    padding: 5px 17px 5px 41px;
    font-size: 16px;
    min-width: 82px;
    color: var(--red);
    border-radius: 100px;
    border: 1px solid var(--black);
    background-color: var(--white);
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out;
}
.btn-link::before {
    content: "";
    position: absolute;
    left: -34px;
    top: 50%;
    transform: translateY(-50%);
    width: 70px;
    height: 9px;
    background-color: var(--red);
    mask: url("../images/arrow-btn.svg") no-repeat center / 70px 9px;
    transition: background-color 0.15s ease-in-out, transform 0.15s ease-in-out;
}
@media (any-hover: hover) {
    .btn-link:hover {
        color: var(--white);
        background-color: var(--red);
    }
    .btn-link:hover::before {
        background-color: var(--black);
        transform: translateX(4px) translateY(-50%);
    }
}
.btn-link:active {
    color: var(--white);
    background-color: var(--red);
}
.btn-link:active::before {
    background-color: var(--black);
    transform: translateX(4px) translateY(-50%);
}
@media (max-width: 1024px) {
    .btn-link {
        margin-left: 61px;
    }
}
@media (max-width: 768px) {
    .btn-link {
        margin-left: 43px;
        font-size: 15px;
    }
}
.title {
    font-size: 38px;
    font-weight: 700;
    color: var(--red);
}
@media (max-width: 768px) {
    .title {
        font-size: 34px;
    }
}

.scroll-lock {
    overflow: hidden;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
}

div .bx-pagination .bx-pagination-container ul li a:hover span {
    background: none;
    color: rgba(0, 98, 147, 1);
}
div .bx-pagination .bx-pagination-container ul li span {
color: rgba(185, 185, 185, 1);
    background: none;
    border-radius: 0;
    font-size: 24px;
    padding: 0;
    width: auto;
    min-width: auto;
}
div .bx-pagination {
    margin: 70px 0 0 0;
}

div .bx-pagination .bx-pagination-container ul li.bx-active span {
    background: none;
    color: rgba(0, 98, 147, 1);
    border-bottom: 1px solid rgba(0, 98, 147, 1);
    border-radius: 0;
    font-size: 24px;
    padding: 0;
    width: auto;
    min-width: auto;
}
div .bx-pagination .bx-pagination-container ul li {
    display: inline-block;
    margin: 0 8px 5px 8px;
}
div .bx-pagination .bx-pag-next span,
div .bx-pagination .bx-pag-prev span{
    font-size: 0 !important;
    border: 0 !important;
}
div .bx-pagination .bx-pag-prev a:after {
    content: '';
    width: 59px;
    height: 16px;
    background: url(/local/templates/auqa/images/left.svg) no-repeat;
    background-size: cover;

    display: inline-flex;
}
div .bx-pagination .bx-pag-next a:after {
    content: '';
    width: 11px;
    height: 17px;
    background-size: cover;

    display: inline-flex;
    background: url(/local/templates/auqa/images/right.svg) no-repeat;
}
div #horizontal-multilevel-menu li:first-child:hover ul li a:hover {
    color: #006293!important;
}
#horizontal-multilevel-menu .menu-text {
     z-index: -1;
 }