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;*/
}
*,
*:before,
*:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
body {
    font-family: Verdana, sans-serif;
    font-size: 16px;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    flex: auto;
    color: #000;
    position: relative;
    width: 100%;
    overflow-x: hidden;
    font-weight: 400;
}
/*Обводка*/
a.active.focus,
a.active:focus,
a.focus,
a:active.focus,
a:active:focus,
a:focus,
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;
}
/*color*/
.text-d3 {
    color: #3D3D3C;
}
.text-blue {
    color: #33A9E0;
}
.text-shadow {
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.text-green {
    color: #A9E136;
}
.text-error {
    color: #FED4F0;
}
.text-gray {
    color: #D9D9D9;
}
.text-purpur {
    color: #E136A9;
}
/*border*/
.br-5 {
    border-radius: 5px;
}
.br-10 {
    border-radius: 10px;
}
.brb-10 {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
.brt-5 {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.brs-5 {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}
.bre-5 {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}
.br-beg {
    border: 2px solid #FFF1B8;
}
.br-beg:hover {
    border-color: #FFE100;
}
.br-green-dark {
    border: 2px solid #D7EDAB;
}
.br-green-dark:hover {
    border-color: #A9E136;
}
.br-purpur-light {
    border: 2px solid #FED4F0;
}
.br-purpur-light:hover {
    border-color: #E136A9;
}
.br-cian-light {
    border: 2px solid #B9E9FF;
}
.br-cian-light:hover {
    border-color: #33A9E0;
}
.br-gray {
    border: 1px solid #d9d9d9;
}
/*BG*/
.bg-cian {
    background: linear-gradient(180deg, #33a9e0 0%, #2c86d8 100%);
}
.bg-cyan {
    background-color: #33A9E0;
}
.bg-green {
    background-color: #A9E136;
}
.bg-green-gradient {
    background: linear-gradient(180deg, #d7edab 0%, #a9e136 100%);
}
.bg-green-dark {
    background-color: #D7EDAB;
}
.bg-beg {
    background-color: #FFF1B8;
}
.bg-purpur {
    background-color: #E136A9;
}
.bg-purpur-gradient {
    background: linear-gradient(180deg, #e136a9 0%, #bb32bd 100%);
}
.bg-purpur-light {
    background-color: #FED4F0;
}
.bg-d3 {
    background-color: #3D3D3C;
}
.bg-gray {
    background-color: #EDEDED;
}
.bg-gray-dark {
    background-color: #D9D9D9;
}
.bg-cian-light {
    background-color: #B9E9FF;
}
.bg-error {
    background-color: rgba(254, 212, 240, 0.5);
}
.bg-success {
    background-color: rgba(169, 225, 54, 0.2) !important;
}
.bg-subject {
    border-radius: 10px;
    background: #EDEDED;
}
.bg-subject:hover {
    color: #33A9E0;
}
.bg-blue-light {
    background-color: #D2F1FF;
}
/*font*/
.bold {
    font-weight: 700;
}
.fs-14 {
    font-size: 14px;
}
.fs-big {
    font-size: 2.75rem;
}
.fs-3x {
    font-size: 3.5rem;
}
/*Form*/
input.form-control {
    color: #000;
    padding: 0.5rem 1rem;
    background-color: #EDEDED;
    border: none;
    border-radius: 0;
}
input.form-control:focus {
    background-color: #EDEDED;
}
input.form-control::placeholder {
    color: #3D3D3C;
}
.btn-blue, .btn-green, .btn-error, .btn-purpur {
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    background: linear-gradient(180deg, #33a9e0 0%, #006da0 100%);
    color: #fff;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border: none !important;
    border-radius: 5px;
    transition: all 10ms linear;
}
.btn-blue:hover, .btn-green:hover, .btn-error:hover, .btn-purpur:hover {
    color: #fff;
    transform: translate(1px, 1px);
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.25);
}
.btn-green {
    background: linear-gradient(180deg, #d7edab 0%, #a9e136 100%);
}
.btn-error {
    background: linear-gradient(180deg, #FED4F0 0%, #E136A9 100%);
}
.btn-purpur {
    background: linear-gradient(180deg, #e136a9 0%, #bb32bd 100%);
}
label {
    height: 0;
    position: relative;
    display: flex;
}
label:after {
    content: attr(data-after);
    position: absolute;
    top: 0;
    left: 0.5rem;
    /*transform: translateY(100%);*/
    color: red;
    font-size: 14px;
}
/*LINK*/
.lnk-underline-none {
    text-decoration: none;
}
/*Modal*/
.modal {
    --bs-modal-border-radius: 5px;
    --bs-modal-border-width: 0;
    --bs-modal-header-border-width: 0;
    --bs-modal-footer-border-width: 0;
}
#Message .modal-body {
    min-height: 50px;
}
#Message .btn-green, #Message .btn-error {
    box-shadow: none;
}
.modal-dialog .btn-close {
    width: 20px;
    height: 20px;
    --bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23000'%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.414z'/%3e%3c/svg%3e");
}
#Message .modal-content, #Error .modal-content {
    border: 1px solid #D9D9D9;
}
#Message .modal-footer, #Error .modal-footer {
    padding: 1rem 1rem 2rem 1rem;
}
/*Parallax*/
#Scene>* {
    position: absolute !important;
}
.text-parallax {
    top: 40px !important;
    left: 20px !important;
}
.text-parallax>i, .text-parallax3>i {
    position: absolute;
    display: inline-block;
    transform: rotate(-10deg);
}
.text-parallax2 {
    top: 80px !important;
    left: 140px !important;
}
.text-parallax2>i {
    position: absolute;
    display: inline-block;
    transform: rotate(3deg);
}
.circle-parallax2 {
    top: 200px !important;
    left: 120px !important;
}
.circle-parallax3 {
    top: 140px !important;
    left: 140px !important;
}
.text-parallax3 {
    top: 150px !important;
    left: 100px !important;
}
.circle-parallax4 {
    top: auto !important;
    bottom: 0 !important;
    left: 0 !important;
}
.text-parallax4 {
    top: auto !important;
    bottom: 100px !important;
    left: 0 !important;
}
.text-parallax4>i {
    position: absolute;
    display: inline-block;
    transform: rotate(-22deg);
}
.circle-parallax5 {
    top: auto !important;
    bottom: 60px !important;
    left: 200px !important;
}
.text-parallax5 {
    top: auto !important;
    bottom: 20px !important;
    left: 200px !important;
}
.text-parallax5>i {
    position: absolute;
    display: inline-block;
    transform: rotate(7deg);
}
.logo {
    max-width: 195px;
}
.logo-footer {
    max-width: 300px;
}
/*teenager-page*/
ul.page3>li>.rounded-circle {
    width: 40px;
    height: 40px;
    border: 1px solid #fff;
}
ul.page3>li:hover>.rounded-circle {
    border-color: #A9E136;
}
ul.page3>li:hover>div:last-child {
    font-weight: 700;
}
.w-100px {
    max-width: 100px;
}
.page3-text {
    left: 18%;
}
/*profi-page*/
.box-shadow {
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.page4-online {
    top: -1px;
}
.profi>* {
    transition: transform 500ms linear;
}
.profi>*:hover {
    color: #E136A9;
    transform: scale(1.05);
}
/*contact+img*/
#Ymap {
    height: 480px;
}
.map-marker {
    width: 30px;
    height: 30px;
    position: relative;
    top: -40px;
    left: -10px;
    cursor: pointer;
    transition: 500ms;
}
.pointer {
    cursor: pointer;
}
/*SplideJS*/
.splide-img .splide__slide {
    /*padding: 0 0.75rem;*/
    aspect-ratio: 16/9;
}
.splide-sert .splide__slide {
    height: 300px;
    flex-shrink: unset;
}
.splide-img .splide__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.splide-sert .splide__slide img {
    height: 100%;
    width: auto;
}
.splide__arrows {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 2;
    display: flex;
    justify-content: space-between;
    width: 100%;
    pointer-events: none;
}
.splide__arrows button.btn:active, .splide__arrows button.btn:disabled {
    border-color: transparent !important;
    opacity: 1;
}
.splide__arrows button.btn {
    padding: 0;
    pointer-events: auto;
}
.splide-sert .splide__arrow--prev {
    transform: translateX(-120%);
}
.splide-sert .splide__arrow--next {
    transform: translateX(120%);
}
footer .address-br {
    display: none;
}
.cookies-alert {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    border-radius: 0;
}
.img-fluid {
    width: 100%;
}
.pointer-event-none {
    pointer-events: none;
}
/*VUZ-PAGE*/
