*, 
*:before, 
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

h1, h2, h3, h4, h5 {
    margin: 0 0 20px 0;

    line-height: 1.2;
    color: var(--color-black);
}

h1 {
    font-size: 64px;
    line-height: 1;
    font-weight: 500;
}

h2 {
    font-size: 44px;
    line-height: 1.1;
    font-weight: 500;
}

h3 {  
    font-size: 31px;
    font-weight: 500;
}

h4 {
    font-size: 26px;
    font-weight: 500;
}

h5 {
    font-size: 21px;
    font-weight: 600;
}


a {
    color:var(--color-black);
    text-decoration: none;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 400;
    -webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, opacity 0.2s ease-in-out;
    -o-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, opacity 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, opacity 0.2s ease-in-out;
}

a:hover,
a:active{
    opacity: .5;
}

ul {
    margin: 15px 0;
    padding-left: 20px;
}

ul > li:not(:last-child) {
    margin-bottom: 10px;
}

.head-page-title h1 {
    padding: 15px 0;
    margin: 0;
}


/*
*   A L E R T S
*/
.alert {
    position: relative;
    padding: .75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.alert-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
}


/*
*   S P E C I A L
*/
.align-center {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.d-flex,
.flex-wrp,
.flex-cc,
.flex-column,
.flex-sb {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.flex-cc {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.flex-column {
    flex-direction: column;
}

.flex-sb {
    justify-content: space-between;
}

.g-10{
    gap:10px;
}
.g-15{
    gap:15px;
}
.g-20 {
    gap: 20px;
}
.g-30{
    gap:30px;
}
.g-40{
    gap: 40px;
}

.flex-wrp {
    flex-wrap: wrap;
}

.hidden {
    display: none !important;
}

.maxwidth-theme {
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 1440px;
    width: 100%;
    position: relative;
    padding: 0 20px;
}


/* 
*  S E C T I O N 
*/
section.white{
    margin:0 20px;
    background-color: var(--color-white);
    border-radius: var(--border-lg-radius);
    padding: 80px 20px;
}

.section-pt {
    padding-top: 80px;
}

.section-pt2 {
    padding-top: 50px;
}

.section-pb {
    padding-bottom: 80px;
}

.section-pb2 {
    padding-bottom: 50px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 50px;
    max-width: 100%;
}

.section-header > div {
    max-width: 100%;
}

.section-header-title {
    margin-bottom: 0;
    font-size: 44px;
    line-height: 1.1;
    font-weight: 500;
}

.section-header-title > span {
    display: block;
    opacity: .4;
}

.section-header-desc {
    margin-top: 20px;
    font-size: 21px;
}

.section-uppertitle {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7px 10px;
    gap: 10px;
    width: max-content;
    max-width: 100%;

    font-size: 18px;
    line-height: 1;
    font-weight: 700;
    text-align: left;

    border: var(--border3);
    border-radius: var(--border-radius);
}

.section-uppertitle .svg {
    width: 35px;
    height: 35px;
}

.section-header-btn {
    display: block;
    padding: var(--padding-sm);
    height: 44px;
}

.section-header-btn .svg use{
    stroke: none;
    fill: rgba(71, 76, 102, 0.5);
}

.section-el {
    padding: 10px;
    border-radius: var(--border-md-radius);
    border: var(--border2);
    background-color: var(--color-white);
}


/* 
*  B L O C K   S H A D O W 
*/
.block-shadow-rb,
.block-shadow-rt,
.block-shadow-lb {
    position: relative;
}

.block-shadow-rb:after,
.block-shadow-rt:after,
.block-shadow-lb:before,
.block-shadow-lt:before {
    content: '';
    display: block;
    width: 200px; 
    height: 200px;

    background: #884DFF; 
    box-shadow: 400px 400px 400px; 
    border-radius: 50%; 
    filter: blur(200px);

    position: absolute;
    z-index: -1;
}

.block-shadow-rb:after {
    bottom: 0;
    right: 0;
}

.block-shadow-rt:after {
    top: 0;
    right: 0;
}

.block-shadow-lb:before {
    bottom: 0;
    left: 0;
}

.block-shadow-lt:before {
    top: 0;
    left: 0;
}



/*swiper*/
.swiper-container{
    overflow: hidden;
}

.swiper-horizontal .swiper-pagination .swiper-pagination-bullet{
    width: 16px;
    height: 2px;
    background-color: var(--color-black);
    border-radius: 3px;
    opacity: .1;
    -webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, width 0.5s ease-in-out;
    -o-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, width 0.5s ease-in-out;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, width 0.5s ease-in-out;

}

.swiper-horizontal .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
    background-color: var(--color-black);
    opacity: 1;
    width: 32px;
}

/* end swiper */

.img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.img-contain {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.no-image {
    position: relative;
}

.no-image > img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.no-user-select {
    -webkit-user-select: none;  /* Chrome, Safari, Opera */
    -moz-user-select: none;     /* Firefox */
    -ms-user-select: none;      /* Internet Explorer/Edge */
    user-select: none;          /* Standard syntax */

    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-tap-highlight-color: transparent; /* Убирает подсветку при тапе на мобильных */

    cursor: default;
}

.pointer-none {
    pointer-events: none;
    -webkit-pointer-events: none; /* Safari */
    -moz-pointer-events: none; /* Firefox */
    -ms-pointer-events: none; /* IE 10-11 */
}




/*
*   L O A D E R S
*/

.t-loading{
    color: transparent !important;
    position: relative;
    pointer-events: none;
    -webkit-animation: fadeInBig .3s ease-in-out;
    animation: fadeInBig .3s ease-in-out
}

.t-loading *{
    opacity: 0;
}

.t-loading::before{
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg fill='%23884DFF' stroke='%23884DFF' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Ccircle stroke-width='15' r='15' cx='40' cy='100'%3E%3Canimate attributeName='opacity' calcMode='spline' dur='2' values='1;0;1;' keySplines='.5 0 .5 1;.5 0 .5 1' repeatCount='indefinite' begin='-.4'%3E%3C/animate%3E%3C/circle%3E%3Ccircle stroke-width='15' r='15' cx='100' cy='100'%3E%3Canimate attributeName='opacity' calcMode='spline' dur='2' values='1;0;1;' keySplines='.5 0 .5 1;.5 0 .5 1' repeatCount='indefinite' begin='-.2'%3E%3C/animate%3E%3C/circle%3E%3Ccircle stroke-width='15' r='15' cx='160' cy='100'%3E%3Canimate attributeName='opacity' calcMode='spline' dur='2' values='1;0;1;' keySplines='.5 0 .5 1;.5 0 .5 1' repeatCount='indefinite' begin='0'%3E%3C/animate%3E%3C/circle%3E%3C/svg%3E");
    display: block;
    position: absolute;
    width: 40px;
    height: 100%;
    top: 50%;
    left: 50%;
    z-index: 3;
    transform: translate(-50%, -50%);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .2s ease;
}

.t-loading.colored::before{
    background-image:url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><circle fill="%23884DFF" stroke="%23884DFF" stroke-width="15" r="15" cx="40" cy="100"><animate attributeName="opacity" calcMode="spline" dur="2" values="1;0;1;" keySplines=".5 0 .5 1;.5 0 .5 1" repeatCount="indefinite" begin="-.4"></animate></circle><circle fill="%23884DFF" stroke="%23884DFF" stroke-width="15" r="15" cx="100" cy="100"><animate attributeName="opacity" calcMode="spline" dur="2" values="1;0;1;" keySplines=".5 0 .5 1;.5 0 .5 1" repeatCount="indefinite" begin="-.2"></animate></circle><circle fill="%23884DFF" stroke="%23884DFF" stroke-width="15" r="15" cx="160" cy="100"><animate attributeName="opacity" calcMode="spline" dur="2" values="1;0;1;" keySplines=".5 0 .5 1;.5 0 .5 1" repeatCount="indefinite" begin="0"></animate></circle></svg>');
}

.b-loading{
    position: relative;
    min-height: 200px;
    display: block;
    overflow: hidden;
}

.b-loading::after{
    content: '';
    display: block;
    position: absolute;
    background-color: var(--color-white);
    width: 100%;
    height: 100%;
    z-index: 115;
    top: 0;
    left: 0;
}

.b-loading::before{
    content: '';
    display: block;
    position: absolute;
    background-image:url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><radialGradient id="a12" cx=".66" fx=".66" cy=".3125" fy=".3125" gradientTransform="scale(1.5)"><stop offset="0" stop-color="%23884DFF"></stop><stop offset=".3" stop-color="%23884DFF" stop-opacity=".9"></stop><stop offset=".6" stop-color="%23884DFF" stop-opacity=".6"></stop><stop offset=".8" stop-color="%23884DFF" stop-opacity=".3"></stop><stop offset="1" stop-color="%23884DFF" stop-opacity="0"></stop></radialGradient><circle transform-origin="center" fill="none" stroke="url(%23a12)" stroke-width="15" stroke-linecap="round" stroke-dasharray="200 1000" stroke-dashoffset="0" cx="100" cy="100" r="70"><animateTransform type="rotate" attributeName="transform" calcMode="spline" dur="2" values="360;0" keyTimes="0;1" keySplines="0 0 1 1" repeatCount="indefinite"></animateTransform></circle><circle transform-origin="center" fill="none" opacity=".2" stroke="%23884DFF" stroke-width="15" stroke-linecap="round" cx="100" cy="100" r="70"></circle></svg>');
    width: 80px;
    height: 100%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .2s ease;
    z-index: 120;
}


/*
*   B U T T O N S
*/

.btn{
    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    padding: 22.5px 30px;

    font-family: var(--font-family);
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    color: var(--color-black);
    text-align: center;

    background-image: none;
    background-color: var(--color-white);
    border: var(--border);
    border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    -webkit-border-radius: var(--border-radius);
    cursor: pointer;
    transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    vertical-align: middle;
    box-shadow: var(--box-shadow2);
}


.btn:not(:disabled):not(.disabled) {
    cursor: pointer;
}

.btn:hover,
.btn:active,
.btn:focus {
    color: var(--color-white);
    outline: 0;
    border-color: var(--color-black);
    background-color: var(--color-black);
    opacity: 1;
}

.btn.colored {
    color: var(--color-white);
    outline: 0;
    border: none;
    background: linear-gradient(180deg, #BB99FF 0%, #884DFF 100%); 
    box-shadow: var(--box-shadow); 
}

.btn.colored:hover{
    opacity: 0.8;
}

.btn-small{
    padding: 12.5px 20px;
}

.btn.btn-lg{
    width: 100%;
}

.btn .svg{
    width: 14px;
    height: 14px;
}

.btn .svg use{
    stroke: none;
    fill:var(--color-black);
    transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    -webkit-transition: all .3s ease;

}

.btn:hover .svg use{
    fill:#fff;
}


/*
*   C H E C K B O X
*/

.form-group input[type="checkbox"],
.form-group input[type="radio"] {
    width: 0;
    height: 1px;
    opacity: 0;
    position: absolute;
}

.form-group input[type="checkbox"] + label,
.form-group input[type="radio"] + label {
    cursor: pointer;
    display: inline-block;
    line-height: 16px;
    margin-bottom: 4px;
    font-size: 13px;
    font-weight: normal;
    text-align: left;
    margin: 0;
    outline: none;
    padding-left: 23px;
    position: relative;
    top: -4px;
    vertical-align: middle;
    zoom: 1;
    z-index: 100;
}

.form-group input[type="checkbox"] + label a,
.form-group input[type="radio"] + label a{
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
    color: var(--color-main3);
}

.form-group input[type="checkbox"] + label:before,
.form-group input[type="radio"] + label:before {
    font-size: 0;
    content: ".";
    display: none;
    height: 16px;
    width: 16px;
    position: absolute;
    left: 0px;
    top: 0px;
    background: var(--color-black);
    z-index: -1;
    border-radius: 0px;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
}

.form-group input[type="radio"] + label:before {
    border-radius: 50%;
}

.form-group input[type="checkbox"] + label:after,
.form-group input[type="radio"] + label:after {
    font-size: 0;
    content: ".";
    display: block;
    height: 16px;
    width: 16px;
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 2;
    border-radius: 0px;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    box-shadow: 0px 0px 0px 1px #cccccc inset;
    -moz-box-shadow: 0px 0px 0px 1px #cccccc inset;
    -webkit-box-shadow: 0px 0px 0px 1px #cccccc inset;
    background: #fff;
}

.form-group input[type="radio"] + label:after {
    border-radius: 50%;
}

.form-group input[type="checkbox"]:checked + label:before,
.form-group input[type="checkbox"] + label:hover:before,
.form-group input[type="radio"]:checked + label:before,
.form-group input[type="radio"] + label:hover:before {
    display: inline-block;
    z-index: 3;
}

.form-group input[type="checkbox"] + label:before,
.form-group input[type="radio"] + label:before {
    display: block;
}

.form-group input[type="checkbox"]:checked + label:after,
.form-group input[type="radio"]:checked + label:after {
    box-shadow: none;
    background: url("../img/checkbox.svg") 0px 0px no-repeat;
}

.form-group input[type="checkbox"] + label:hover:after,
.form-group input[type="radio"] + label:hover:after {
    box-shadow: none;
    background: url("../img/checkbox.svg") 0px 0px no-repeat;
    z-index: 2;
}

.form-group input[type="checkbox"]:checked + label:before,
.form-group input[type="checkbox"] + label:hover:before,
.form-group input[type="radio"]:checked + label:before,
.form-group input[type="radio"] + label:hover:before {
    display: inline-block;
    z-index: 3;
}

.form-group input[type="checkbox"]:checked + label:before,
.form-group input[type="checkbox"]:checked + label:hover:before,
.form-group input[type="radio"]:checked + label:before,
.form-group input[type="radio"]:checked + label:hover:before {
    z-index: -1;
}

.iacept{
    position: relative;
}

.alarm-message {
    background: navajowhite;
    position: absolute;
    padding: 10px 15px;
    z-index: 311;
    border-radius: 6px;
    top: -60px;
    left: -10px;
    font-size: 14px;
    max-width: 350px;
    color: var(--color-black);
}

.alarm-message:before {
    content: "";
    display: block;
    height: 10px;
    position: absolute;
    bottom: -10px;
    width: 30px;
    border: 10px solid transparent;
    border-left: 21px solid navajowhite;
    border-top: 0px;
}



/*  M O D A L */
[data-js-entity="popup"]{
    cursor: pointer;
}

.main.popup-open{
    display: block;
    overflow: hidden;
    position: absolute;
    max-height: 100%;
    width: 100%;
}

.infograd-popup{
    position: relative;
    margin: 5% auto;
    background-color: #fff;
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .15);
    box-shadow: 0 5px 15px rgba(0, 0, 0, .15);
    border-radius: var(--border-radius);
    padding: 32px 24px;
    z-index: 100;
    max-width: 360px;
    min-width: 290px;
    height: auto;
    min-height: 100px;
    width: 100%;
    margin-bottom: 6px;
    text-align: left;  
    opacity: 0;
    z-index: 9999;
}
.infograd-popup.in{
    opacity: 1;
    -webkit-animation:.3s fadeInSlideDown ease-in-out;
    animation:.3s fadeInSlideDown ease-in-out
}

.infograd-popup .popup-title,
.infograd-popup .news-detail > h3 {
    margin-right: 20px;
}

.infograd-popup .popup-title {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 20px;
}

.main-black__cover-popup,
.main-black__cover{
    background-color: rgba(0,0,0,0.5);
    z-index: 100;
    position: fixed;
    width: 0%;
    height: 0%;
    opacity: 0;
}

.main-black__cover-popup.in,
.main-black__cover.in {
    width: 100%;
    height: 100%;
    opacity: 1;
    -webkit-animation: fadeInBig .3s ease-in-out;
    animation: fadeInBig .3s ease-in-out
}

.main-black__cover-popup.out,
.main-black__cover.out {
    -webkit-animation: fadeOutBig .3s ease-in-out;
    animation: fadeOutBig .3s ease-in-out;
    width: 100%;
    height: 100%;
    opacity:0;
}


/*  SVG  **/
.svg{
    width: 24px;
    height: 24px;
    display: flex;
    flex-shrink: 0;
}

.svg svg{
    width: 100%;
    height: 100%;
}

.svg svg use {
    fill: var(--color-black);
    stroke: none;
}

.svg-copy {
    display: block;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.svg-copy .check-icon {
    padding: 2px;
    display: none;
}

.svg-copy .check-icon use {
    stroke: #4caf50;
}

.svg-copy use {
    stroke: var(--color-white);
}



/* ANIMATIONS*/
@-webkit-keyframes fadeInBig {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

@keyframes fadeInBig {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

@-webkit-keyframes fadeOutBig {
    0% {
        opacity: 1
    }
    100% {
        opacity: 0
    }
}

@keyframes fadeOutBig {
    0% {
        opacity: 1
    }
    100% {
        opacity: 0
    }
}


@-webkit-keyframes fadeInSlideDown {
    0% {
        opacity: 0;
        top:-20px;
    }
    100% {
        opacity: 1;
        top:0px;
    }
}

@keyframes fadeInSlideDown {
    0% {
        opacity: 0;
        top:-20px;
    }
    100% {
        opacity: 1;
        top:0px;
    }
}


@media (max-width: 1199px) {
    section.white {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

@media (max-width: 991px) {
    .section-pt {
        padding-top: 50px;
    }

    .section-pb {
        padding-bottom: 50px;
    }

    section.white {
        padding: 30px 10px;
    }

    .section-header {
        margin-bottom: 30px;
    }

    .section-header-title > span > br {
        display: none;
    }

    .block-shadow-rb:after {
        bottom: 0;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 767px) {
    h1 {
        font-size: 45px;
    }
    
    h2,
    .section-header-title {
        font-size: 37px;
    }

    h3 {
        font-size: 26px;
    }

    section.white {
        padding-bottom: 10px;
    }

    .section-header:not(.section-header_btn-arrow) {
        flex-direction: column;
    }
    
    .block-shadow-rt:after {
        right: auto;
    }

    .block-shadow-lt:before,
    .block-shadow-rt:after,
    .block-shadow-lb:before {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 575px) {
    .section-uppertitle {
        line-height: 1.3;
    }

    .section-header {
        align-items: center;
        text-align: center;
    }

    .section-header_btn-arrow .section-header-btn {
        display: none;
    }

    .section-header-title > br {
        display: none;
    }

    .section-uppertitle {
        font-size: 15px;
    }
}