:root{
    --yellow: #FED700;
    --black: #000;
    --dark: #262626;
    --dark-gray: #4F4F4F;
    --white: #fff;
    --gray: #f3f3f3;
}
* {
    padding: 0;
    margin: 0;
    border: 0;
}
*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
:focus,
:active {
    outline: none;
}
a:focus,
a:active {
    outline: none;
}
nav,
footer,
header,
aside {
    display: block;
}
html,
body {
    width: 100%;
    height: 100%;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}
h1, h2, h3, h4, h5, h6{
    margin-top: 0;
}
input,
button,
textarea {
    font-family: inherit;
    background-color: transparent;
}
input::-ms-clear {
    display: none;
}
button {
    border: none;
    cursor: pointer;
    transition: all 0.4s;
    text-transform: uppercase;
}
button::-moz-focus-inner {
    padding: 0;
    border: 0;
}
a,
a:hover,
a:active{
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}
a:visited{
    color: #f3f3f3;
}
img{
    max-width: 100%;
    vertical-align: middle;
    border-style: none;
}
body,
html{
    font-family: 'NunitoSans', sans-serif;
    color: #000;
    font-weight: 400;
    min-width: 390px;
}
body.no-scroll {
    overflow: hidden;
}
.block-set{
    font-family: 'NunitoSans', sans-serif;
    color: #000;
    font-weight: 400;
}
.block-set:not(.block-set-editor){
    display: block!important;
}
.text-yellow{
    color: #fed700;
}
.main-block{
    padding: 50px 0;
}
.main-container {
    position: relative;
    z-index: 5;
    max-width: 1240px;
    width: 100%;
    margin: auto;
    font-family: 'NunitoSans', sans-serif;
    font-size: 16px;
    line-height: 1.3;
    color: #fff;
    padding: 0 20px;
}
.main-container b{
    font-weight: 800;
}
.main-title{
    font-size: 28px!important;
    font-weight: 800!important;
    line-height: 1.25!important;
    text-transform: uppercase;
    margin-top: 0!important;
}
.main-title b{
    font-weight: 800;
}
.main-btn{
    position: relative;
    z-index: 20;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.5;
    text-align: center;
    text-decoration: none!important;
    color: #000 !important;
    background: #fed700;
    border-radius: 100px;
    cursor: pointer;
    user-select: none;
    padding: 16px;
    transition: 0.3s;
}
.main-btn:hover{
    -webkit-animation: pulse 2s infinite;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 #fed700;
    }
    70% {
        box-shadow: 0 0 0 10px rgb(218 103 68 / 0%);
    }
    100% {
        box-shadow: 0 0 0 0 rgb(218 103 68 / 0%);
    }
}
@keyframes pulseBlack {
    0% {
        box-shadow: 0 0 0 0 #000;
    }
    70% {
        box-shadow: 0 0 0 10px rgb(218 103 68 / 0%);
    }
    100% {
        box-shadow: 0 0 0 0 rgb(218 103 68 / 0%);
    }
}
@keyframes infinityMove {
    0%{
        background-position-x: 96%;
    }
    50%{
        background-position-x: 5%;
    }
    100%{
        background-position-x: 96%;
    }
}
@media screen and (max-width: 1199px) {
    .main-title{
        font-size: 26px!important;
    }
}
@media screen and (max-width: 991px) {
    .main-title{
        font-size: 24px!important;
    }
}
@media screen and (max-width: 767px) {
    .main-title{
        font-size: 22px!important;
    }
    .main-btn{
        max-width: 100%;
        width: 100%;
    }
}
@media screen and (max-width: 575px) {
    .main-title{
        font-size: 20px!important;
    }
    .main-btn{
        font-size: 16px;
    }
}
/*--------swiper navigation*/
.custom-nav{
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}
.custom-nav-btn{
    position: relative;
    overflow: hidden;
    display: block;
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    background: #fed700;
    border-radius: 50%;
}
.swiper-button-disabled{
    opacity: 0.3;
}
.custom-nav-btn:after{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.custom-nav-btn_prev:after{
    background: url("../images/arrow-left.svg") no-repeat center, #fed700;
}
.custom-nav-btn_next:after{
    background: url("../images/arrow-right.svg") no-repeat center, #fed700;
}

.custom-dots{
    /*width: 100%;*/
    /*display: flex;*/
    /*justify-content: space-between;*/
    /*gap: 15px;*/

    width: 100%;
    display: flex;
    gap: 15px;

    overflow-x: auto;
    overflow-y: hidden;

    scrollbar-width: none;
    -ms-overflow-style: none;

    scroll-behavior: smooth;
}
.custom-dots::-webkit-scrollbar{
    display: none;
}

.custom-dots .swiper-dot{
    flex-shrink: 0;
}

.custom-dots .swiper-dot{
    position: relative;
    min-width: 62px;
    height: 64px;
    background: #e9e9e9;
    border-radius: 50px;
    counter-increment: day;
    padding: 0 25px;
    transition: 0s;
}
.custom-dots .swiper-dot:before{
    content: counter(day);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    text-transform: none;
    color: #4F4F4F;
}
.custom-dots .swiper-dot.active{
    background: #fed700;
    color: #000;
    padding: 0 40px;
}
.custom-dots .swiper-dot.active:before{
    content: 'Шаг 'counter(day);
    color: #000;
}
.custom-dots-default{
    display: flex;
    align-items: center;
    gap: 10px;
}
.custom-dots-default .swiper-dot{
    width: 16px;
    height: 16px;
    background: var(--gray, #f3f3f3);
    border-radius: 2px;
}
.custom-dots-default .swiper-dot.active{
    background: var(--yellow,#fed700);
}
@media (max-width: 991px) {
    .custom-nav,
    .custom-dots{
        gap: 10px;
    }
    .custom-dots .swiper-dot:before{
        font-size: 18px;
    }
}
@media (max-width: 767px) {

    .custom-dots .swiper-dot{
        min-width: unset;
    }
}
@media (max-width: 575px) {
    .custom-nav-btn{
        width: 50px;
        height: 50px;
    }
    .custom-nav-btn:after{
        background-size: 15px;
    }
    .custom-dots{
        gap: 8px;
    }
    .custom-dots .swiper-dot{
        height: 50px;
        padding: 0 19px;
    }
    .custom-dots-default{
        gap: 8px;
    }
    .custom-dots-default .swiper-dot{
        width: 12px;
        height: 12px;
    }

    .custom-dots .swiper-dot.active{
        padding: 0 24px;
    }
}
