@font-face {
    font-family: 'Kanit-Regular';
    src: url('/fonts/kanit-regular-webfont.woff2') format('woff2'), url('/fonts/kanit-regular-webfont.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Kanit-Bold';
    src: url('/fonts/kanit-extrabold-webfont.woff2') format('woff2'), url('/fonts/kanit-extrabold-webfont.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}
html {
    min-height: 100%;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    /*overflow-x: hidden;*/
    /*flex-grow: 1;*/
    /*height: -webkit-fill-available;*/
}
html.active {
    overflow: hidden;
}
@supports(height: 100dvh) {
    html.active {
        /*height: 100dvh;*/
    }
}
*,
*:before,
*:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
body {
    font-size: 16px;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    flex: auto;
    color: #0c4da2;
    position: relative;
    width: 100%;
    overflow-x: hidden;
    font-weight:400;
    font-family: Kanit-Regular;
}
/*Обводка*/
a.active.focus,
a.active:focus,
a.focus,
a:active.focus,
a:active:focus,
a:focus,
button,
button.active.focus,
button.active:focus,
button.focus,
button:active.focus,
button:active:focus,
button:focus,
input.active.focus,
input.active:focus,
input.focus,
input:active.focus,
input:active:focus,
input:focus,
.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn:active:focus,
.btn:focus,
textarea:active,
textarea:focus
{
    outline: 0!important;
    outline-color: transparent!important;
    outline-width: 0!important;
    outline-style: none!important;
    box-shadow: 0 0 0 0 rgba(0,123,255,0)!important;
    outline-offset: 0 !important;
}
button::-moz-focus-inner {
    border: 0 !important;
}
.noselect {
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.vh-100-my {
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    min-height: var(--min);
    /*min-height: max-content;*/
}
.mobile {
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    min-height: min-content;
    /*transition: opacity 300ms linear;*/
    /*opacity: 0;*/
}
@supports(height: 100dvh) {
    .vh-100-my, .mobile {
        height: 100svh;
    }
    .mobile {
        height: 100dvh;
    }
}
img {
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
/*BG*/
.start-page {
    background: url("/img/page1.webp") #BC0F06 center center;
    background-size: 150%;
}
.bg-deep-blue {
    background-color: #0C4DA2;
}
.bg-light-blue {
    background-color: #AEE8FC;
}
.bg-blue01 {
    background-color: #75D3F7;
}
.bg-blue03 {
    background-color: #36A9E1;
}
.bg-red {
    background-color: #DB3F28;
}
.bg-red01 {
    background-color: #BC0F06;
}
/*COLOR*/
.deep-blue {
    color: #0C4DA2;
}
.light-blue {
    color: #AEE8FC;
}
/*FONT*/
.bold {
    font-family: Kanit-Bold;
    font-weight: 700;
}
.medium {
    font-weight: 500;
}
.extra-bold {
    font-family: Kanit-Bold;
    font-weight: 800;
}
.light {
    font-weight: 200;
}
.fs-72 {
    font-size: 4.5rem;
}
.fs-100 {
    font-size: 6.5rem;
}
.fs-64 {
    font-size: 3.5rem;
}
.fs-128 {
    font-size: 8rem;
}
/*LINE*/
@keyframes scroll-left {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-50%); }
}
.marquee {
    height: 72px !important;
}
.marquee.marquee2 {
    height: 128px !important;
}
.marquee.marquee3 {
    height: 104px !important;
    top: 35%;
}
.marquee.marquee3.headliner5 {
    top: auto;
    bottom: -35%;
}
.marquee_line {
    width: fit-content;
    animation: scroll-left 20s linear infinite;
    -webkit-transform-style: preserve-3d; /* Фикс возможного глюка с морганием в Сафари */
}
.marquee_line.reverse {
    animation-direction: reverse;
}
.marquee_line>* {
    white-space: nowrap;
    display: flex;
    -webkit-backface-visibility: hidden; /* Фикс возможного глюка с морганием в Сафари */
}
.marquee_line>img {
    width: 38px;
    height: 38px;
    margin: 0 2rem;
}
/*HEADER*/
.logo-start {
    width: 210px;
}
.btn-buy {
    padding-left: 1rem;
    padding-right: 1rem;
    border: 0;
    transition: all 0.3s cubic-bezier(0.02, 0.01, 0.47, 1);
}
.btn-buy.bg-deep-blue:hover, .btn-buy.bg-deep-blue:active {
    background-color: #0C4DA2;
}
.btn-buy.bg-red:hover, .btn-buy.bg-red:active {
    background-color: #DB3F28;
}
.btn-buy.bg-red01:hover, .btn-buy.bg-red01:active {
    background-color: #BC0F06;
}
.btn-buy.bg-light-blue:hover, .btn-buy.bg-light-blue:active {
    background-color: #AEE8FC;
}
.btn-buy.bg-blue03:hover, .btn-buy.bg-blue03:active {
    background-color: #36A9E1;
}
.btn-buy:hover, .btn-buy.anime {
    animation: rotateBTN 0.7s ease-in-out both;
}
/*.head-anime>div:hover>img, */
/*.head-anime>div:hover>div:first-child,*/
.head-anime>div:hover>span
{
    animation: rotateBTN 0.7s ease-in-out both;
}
.head-anime>div:hover>div {
    animation: stormBTN 0.7s ease-in-out both;
    animation-delay: 0.06s;
}
.btn-buy:hover span, .btn-buy.anime span {
    animation: stormBTN 0.7s ease-in-out both;
    animation-delay: 0.06s;
}
@keyframes rotateBTN {
    0% {
        transform: rotate(0deg) translate3d(0, 0, 0);
    }
    25% {
        transform: rotate(3deg) translate3d(0, 0, 0);
    }
    50% {
        transform: rotate(-3deg) translate3d(0, 0, 0);
    }
    75% {
        transform: rotate(1deg) translate3d(0, 0, 0);
    }
    100% {
        transform: rotate(0deg) translate3d(0, 0, 0);
    }
}
@keyframes stormBTN {
    0% {
        transform: translate3d(0, 0, 0) translateZ(0);
    }
    25% {
        transform: translate3d(4px, 0, 0) translateZ(0);
    }
    50% {
        transform: translate3d(-3px, 0, 0) translateZ(0);
    }
    75% {
        transform: translate3d(2px, 0, 0) translateZ(0);
    }
    100% {
        transform: translate3d(0, 0, 0) translateZ(0);
    }
}
.fixed-menu.bg-deep-blue .btn-buy {
    padding-top: 0.2rem;
    padding-bottom: 0.2rem;
}
.fixed-menu {
    transform: translateY(-101%);
    transition: transform linear 100ms;
}
.navbar-nav .nav-link {
    padding: 0 !important;
    color: white;
    text-decoration: none;
    position: relative;
}
.nav-link:before {
    content: "";
    position: absolute;
    transition: transform 500ms ease;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #fff;
    transform: scaleX(0);
}
.nav-link:hover:before, .nav-link.active:before {
    transform: scaleX(1);
}
.navbar-nav .nav-link.active {
    color: white;
    /*text-decoration: underline;*/
}
.nav-link:hover {
    /*text-decoration: underline;*/
}
.navbar-nav {
    column-gap: 2rem;
}
.h-1px {
    height: 1px;
}
.border-1white {
    border: 1px solid #fff;
}
header .lang>* {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in, visibility 0s linear 0.3s;
}
/*header .lang:hover>*, */
header .lang.active>* {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease-in, visibility 0s linear 0s;
}
header .lang>*:first-child {
    opacity: 1;
    visibility: visible;
}
header .social img, .social.position-absolute img {
    width: 35px;
}
header .lang>a:hover {
    background-color: #fff;
    color: #BC0F06;
}
.social img {
    transition: all 300ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.social img:hover {
    transform: scale(1.2) translateX(-5px);
}
footer .social img:hover {
    transform: scale(1.2) translateY(-5px);
}
/*BURGER*/
.burger {
    width: 22px;
    height: 22px;
}
.burger:first-child:active, .btn-collapse:first-child:active {
    background-color: transparent;
    border-color: transparent;
}
.mobile {
    /*transform: translateY(-101%);*/
    display: none;
    transition: all linear 500ms;
}
.mobile.open {
    transform: translateY(0);
}
.pointer {
    cursor: pointer;
}
.lang>* {
    display: flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    padding-top: 2px;
}
.lang>*.active {
    color: #BC0F06;
    background-color: #fff;
}
.mobile .navbar-nav {
    row-gap: 2rem;
}
/*MIR*/
.gap-2x {
    row-gap: 4rem;
    column-gap: 4rem;
}
.mir-blue {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-25%, -50%) rotate(15deg);
    width: 26%;
}
/*.mir-blue>img {*/
/*    transform: ;*/
/*}*/
/*STICK*/
.logo-stick {
    width: 76px;
}
.fixed-menu {
    /*max-width: 100vw;*/
}
/*HEADLINER*/
.headliner {
    border-radius: 40px;
}
.headliner-col-20 {
    transform: translateX(-36%);
}
.headliner-col20 {
    transform: translateX(36%);
}
.headliner-col-30 {
    transform: translateX(-46%);
}
.headliner-col-10 {
    transform: translate(-5%, 10%);
}
.headliner-row-5 {
    transform: translateY(-5%);
}
.headliner-col30 {
    transform: translateX(26%);
}
.headliner10 {
    transform: rotate(-10deg);
}
.headliner5 {
    transform: rotate(4deg);
}
.marquee-2deg {
    transform: rotate(-2deg);
}
.marquee2deg {
    transform: rotate(2deg);
}
.mx-n {
    margin-left: -1rem;
    margin-right: -1rem;
}
.head-anime span {
    width: 305px;
}
/*COLLAPSE*/
.btn-collapse {
    border-radius: 0;
    padding: 0.25rem 0;
    position: relative;
    padding-right: 30px;
}
.collapse .card {
    background-color: transparent !important;
}
.border-bottom-075w {
    border-bottom: 0.75px solid #fff !important;
}
.btn-collapse::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    transform: translateY(46%);
    display:inline-block;
    width: 26px;
    height: 26px;
    /*background: */
    /*        linear-gradient(#fff,#fff),*/
    /*        linear-gradient(#fff,#fff),*/
    /*        #AEE8FC;*/
    background-color:
            /*linear-gradient(#fff,#fff),*/
            /*linear-gradient(#fff,#fff),*/
            #AEE8FC;
    background-image: url('data:image/svg+xml,%3C%3Fxml version="1.0" standalone="no"%3F%3E%3Csvg width="14" height="14" version="1.1" xmlns="http://www.w3.org/2000/svg"%3E%3Cline x1="7" x2="7" y1="0" y2="14" stroke="%23fff" fill="transparent" stroke-width="2"/%3E%3Cline x1="0" x2="14" y1="7" y2="7" stroke="%23fff" fill="transparent" stroke-width="2"/%3E%3C/svg%3E');
    background-position:center;
    /*background-size: 50% 1.5px, 1.5px 50%; !*thickness = 2px, length = 50% (25px)*!*/
    background-repeat:no-repeat;
    border-radius:50%;
    transition: .2s ease;
}
.btn-collapse:not(.collapsed)::after,
.btn-collapse.red:not(.collapsed)::after,
.btn-collapse.red01:not(.collapsed)::after,
.btn-collapse.blue03:not(.collapsed)::after {
    /*background-size: 50% 1.5px, 0px 50%;*/
    transform: translateY(46%) rotate(45deg);
}
.btn-collapse.red::after {
    background-color:
            /*linear-gradient(#fff,#fff),*/
            /*linear-gradient(#fff,#fff),*/
            #DB3F28;
    /*background-position:center;*/
    /*background-size: 50% 1.5px, 1.5px 50%; !*thickness = 2px, length = 50% (25px)*!*/
    /*background-repeat:no-repeat;*/
}
.btn-collapse.red01::after {
    background-color:
            /*linear-gradient(#fff,#fff),*/
            /*linear-gradient(#fff,#fff),*/
            #BC0F06;
    /*background-position:center;*/
    /*background-size: 50% 1.5px, 1.5px 50%; !*thickness = 2px, length = 50% (25px)*!*/
    /*background-repeat:no-repeat;*/
}
.btn-collapse.blue03::after {
    background-color:
            /*linear-gradient(#fff,#fff),*/
            /*linear-gradient(#fff,#fff),*/
            #36A9E1;
    /*background-position:center;*/
    /*background-size: 50% 1.5px, 1.5px 50%; !*thickness = 2px, length = 50% (25px)*!*/
    /*background-repeat:no-repeat;*/
}
/*FOOTER*/
.border-bottom-2black {
    border-bottom: 2px solid #000;
}
footer .nav-link:before {
    background-color: #000;
}
footer .social img {
    height: 38px;
}
.partner-gap {
    gap: 8rem;
}
/*исправления*/
.align-items-end>.light.col-4.col-sm-3 {
    padding-bottom: 1px;
}
/*flip-clock*/
.clock-round.partner {
    transform: rotate(15deg);
}
.mir-blue.clock-round {
    left: 100%;
    top: 0;
    /*bottom: 100%;*/
    transform: translate(0, -50%) rotate(15deg);
    width: 180px;
}
.flipclock {
    display: flex;
    justify-content: center;
    padding: 40px;
    box-sizing: border-box;
}

.flipclock * {
    box-sizing: inherit;
}

.leaf {
    display: flex;
    flex-direction: column;
    margin: 0 4px;
    perspective: 300px;
}

.leaf::after {
    content: attr(data-label);
    position: absolute;
    /*top: 100%;*/
    bottom: 100%;
    left: 50%;
    /*margin-top: $labelMarginTop;*/
    margin-bottom: 8px;
    transform: translateX(-50%);
    color: #f2f2f2;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    /* opacity: 0.5;*/
    opacity: 0.9;
}

.top,
.bottom,
.leaf-front,
.leaf-back {
    position: relative;
    display: block;
    height: 64px;
    width: 120px;
    background-color: #f2f2f2;
    color: #DB3F28;
    overflow: hidden;
    border-color: #fff;
}
.top span,
.bottom span,
.leaf-front span,
.leaf-back span {
    position: absolute;
    left: 50%;
    width: 100%;
    height: 128px;
    text-align: center;
    font-family: "Impact", sans serif;
    font-size: 80px;
    line-height: 128px;
    transform: translateX(-50%);
}

.leaf._3-digits .top,
.leaf._3-digits .bottom,
.leaf._3-digits .leaf-front,
.leaf._3-digits .leaf-back {
    width: 148px;
}

.top,
.leaf-front {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    margin-bottom: 0;
    border-bottom-style: solid;
    border-bottom-width: 0;
}
.top span,
.leaf-front span {
    top: 0;
}

.leaf-front {
    position: absolute;
    z-index: 10;
}

.bottom,
.leaf-back {
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    border-top-style: solid;
    border-top-width: 0;
}
.bottom span,
.leaf-back span {
    bottom: 0;
}

.leaf-back {
    position: absolute;
    top: 64px;
    z-index: 10;
}
.leaf-front {
    transform-origin: bottom center;
    transform: rotateX(0deg);
    transform-style: preserve-3d;
    transition-delay: 0.3s;
}

.leaf-back {
    transform-origin: top center;
    transform: rotateX(90deg);
    transform-style: preserve-3d;
    transition-delay: 0s;
}

.bottom::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: black;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    filter: blur(10px);
}

.flip .leaf-front {
    transform: rotateX(-90deg);
    transition: transform 0.3s ease-in, background-color 0.3s ease-in, color 0.3s ease-in;
    transition-delay: 0s;
    color: black;
    background-color: #737373;
}
.flip .leaf-back {
    transform: rotateX(0deg);
    transition: transform 0.3s ease-in, background-color 0.3s ease-in, color 0.3s ease-in;
    transition-delay: 0.3s;
}
.flip .bottom::before {
    transition: height 0.3s ease-in-out;
    transition-delay: 0.15s;
    height: 100%;
}
/*Modal*/
.modal-content {
    border-radius : 60px;
    border-color: transparent;
}
.modal-backdrop {
    background-color: #0c4da2;
}
.modal {
    backdrop-filter: blur(5px);
}
.modal-title {
    font-size: 4rem;
    /*color: #0c4da2;*/
    line-height: .8;
    text-align: center;
    width: 100%;
}
.modal-content {
    color: #0c4da2;
}
.modal-header {
    align-items: start;
    border-bottom: none;
}
.modal-footer {
    border-top: none;
    justify-content: center;
    gap: 1.25rem;
}
.modal .btn-close {
    --bs-btn-close-bg: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" fill="%230c4da2"%3E%3Cpath d="M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414"/%3E%3C/svg%3E');
}
.modal-footer .btn {
    border-radius: 60px;
    margin: 0;
    height: 70px;
    width: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff !important;
    border-color: #0c4da2 !important;
}
.modal-footer .btn:hover {
    background-color: #AEE8FC !important;
    border-color: #AEE8FC !important;
}