@import "style/nav.css";
@import "style/mySidevan.css";
@import "style/ticher.css";
@import "style/cervices.css";
@import "style/header.css";
@import "style/footer.css";
@import "style/rezult.css";
@import "style/helpers.css";
@import "style/card.css";
@import "style/marquee.css";
@import "style/form.css";
@import "style/problems.css";
@import "style/school.css";
@import "style/news.css";
* {
    box-sizing: border-box;
}

body {
    margin: 0 auto;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    max-width: 2200px;
}

.scrollTop {
    z-index: 99999999999999999;
    width: 40px;
    position: fixed;
    right: 30px;
    bottom: 30px;
}

#upbutton {
    display: none;
    transition: all .6s;
}

#menu-toggle {
    position: absolute;
    visibility: hidden;
    z-index: -100;
}

@media all and (max-width: 1100px) {
    .nav--header {
        transition: max-height .25s ease;
        overflow: hidden;
        max-height: 0;
        width: 100%;
        flex-direction: column;
    }
    .logo {
        margin-left: 20px;
    }
}

.overlay {
    height: 100vh;
    position: fixed;
    z-index: 99999999;
    display: flex;
    background-color: rgb(97, 111, 235);
    overflow-x: hidden;
    transition: 0.5s;
    flex-direction: row;
    width: 0;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.overlay-content {
    z-index: 999999999999;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.overlay a {
    font-size: 34px;
    color: #ffffff;
    display: block;
    transition: .4s;
}

.overlay .closebtn {
    position: absolute;
    width: 100%;
    height: 100vh;
}

.overlay__link {
    color: white;
    text-transform: uppercase;
    display: inline-block;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
    position: relative;
}

.overlay__link:after {
    display: block;
    content: "";
    background-color: #fff;
    height: 2px;
    width: 0%;
    right: 100%;
    left: -30%;
    position: absolute;
    transition: width .3s ease-in-out;
    transform: translateX(30%);
}

.overlay__link:hover:after,
.overlay__link:focus:after {
    width: 100%;
}

.overlay__link:before {
    display: block;
    content: "";
    background-color: #fff;
    height: 2px;
    width: 0%;
    left: 120%;
    position: absolute;
    transition: width .3s ease-in-out;
    transform: translateX(-120%);
}

.overlay__link:hover:before,
.overlay__link:focus:before {
    width: 100%;
}

.nav__contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.nav__about__img {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.nav__contact h3 {
    font-weight: 500;
}

.nav__flex__about {
    display: flex;
}

.nav__about__img {
    background-color: #fff;
    border-radius: 50%;
    margin: 10px;
}

@media all and (min-width: 730px) {
    .slideshow-container {
        display: none;
    }
}

@media all and (max-width: 400px) {
    .overlay a {
        font-size: 20px;
    }
    .nav__about__img {
        width: 34px;
    }
    .nav__contact a {
        font-size: 16px;
    }
}

@media all and (max-width: 730px) {
    .overlay a {
        font-size: 20px;
    }
    .nav__about__img {
        width: 34px;
    }
    .nav__contact a {
        font-size: 16px;
    }
    .slideshow-container {
        width: 80vw;
        position: relative;
        border-radius: 20px;
        margin: 0 auto;
    }
    .slideshow-container img {
        border-radius: 20px;
        width: 60vw;
        margin: 0 auto;
    }
    .prev {
        width: 40px;
        height: 40px;
        left: 0;
        transform: rotate(180deg);
    }
    .prev::before {
        display: block;
        content: '\279C';
        color: #000;
    }
    .prev,
    .next {
        z-index: 9999999;
        cursor: pointer;
        position: absolute;
        background-color: transparent;
        transition: 0.6s ease;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 26px;
        top: 30vw;
    }
}

.next {
    right: 0;
    width: 40px;
    height: 40px;
}

.next::before {
    display: block;
    content: '\279C';
    color: #000;
}

.text p {
    margin: 6px 0;
    color: #f2f2f2;
    font-size: 13px;
    border-radius: 20px;
    padding: 10px;
    width: 100%;
    text-align: left;
    background-color: rgb(97, 111, 235);
}

.dot {
    cursor: pointer;
    height: 6px;
    width: 18px;
    margin: 10px 0 4px;
    background-color: rgb(97, 111, 235);
    border-radius: 10px;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active,
.dot:hover {
    background-color: #000000;
}

.fade {
    animation-name: fade__img;
    animation-duration: 1.5s;
}

@keyframes fade__img {
    from {
        opacity: 0.8
    }
    to {
        opacity: 1
    }
}

.ticher {
    display: none;
}


/* .typewriter h1,
h2 {
    width: 63%;
    color: #fff;
    font-family: monospace;
    overflow: hidden;
    border-right: .06em solid orange;
    white-space: nowrap;
    letter-spacing: .16em;
    animation: typing 3s steps(30, end), blink-caret .5s step-end infinite;
}

@keyframes typing {
    from {
        width: 0
    }
    to {
        width: 63%
    }
}

@keyframes blink-caret {
    from,
    to {
        border-color: transparent
    }
    50% {
        border-color: orange
    }
} */


/* 
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #3862B4 14%, #6E5FAE 40%);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #6E5FAE 20%, #3862B4 62%);
}

::-webkit-scrollbar-track {
    background: transparent;
    border: none;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    min-width: 260px;
}

a {
    text-decoration: none;
}

li,
ul {
    list-style-type: none;
}

.logo {
    width: 50px;
}

nav {
    background-color: #6E5FAE;
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 70px;
}

.links {
    width: 90%;
    display: flex;
    justify-content: space-around;
}

@media all and (min-width: 1400px) {
    .nav__link {
        margin-right: 140px;
        color: white;
        font-size: 18px;
        text-transform: uppercase;
        display: inline-block;
        line-height: 1.2;
        text-decoration: none;
        cursor: pointer;
        position: relative;
    }
    .nav__link:after {
        display: block;
        content: "";
        background-color: #fff;
        height: 2px;
        width: 0%;
        right: 100%;
        left: -20%;
        position: absolute;
        transition: width .3s ease-in-out;
        transform: translateX(20%);
    }
    .nav__link:hover:after,
    .nav__link:focus:after {
        width: 100%;
    }
}

.nav__link {
    color: white;
    ;
}

.benefits {
    background-color: #6E5FAE;
    padding: 12.4%;
    color: #fff;
    font-size: 20px;
    cursor: default;
    user-select: none;
}

.down {
    border: 2px solid #fff;
    padding: 10px 30px 10px 30px;
    font-size: 20px;
    color: #fff;
    margin-right: 20px;
    border-radius: 10px;
    transition: all .4s;
}

.down:hover {
    box-shadow: 0px 10px 12px 4px rgba(0, 0, 0, 0.32);
}

.down__glav {
    margin-top: 18%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

.content {
    width: 80%;
    margin: 0 auto;
}

.problems {
    margin-top: 100px;
    border-radius: 10px;
    color: #fff;
    cursor: default;
}

.problems__header {
    text-transform: uppercase;
    background-color: #6E5FAE;
    padding: 4px 20px 4px 10px;
    border-radius: 10px;
    font-size: 19px;
    margin-bottom: 20px;
}

.problems__block {
    background-color: #6E5FAE;
    font-size: 17px;
    padding: 4px 20px 4px 40px;
    border-radius: 10px;
    margin-top: 6px;
    transition: all .4s;
}

.problems__block:hover {
    transform: scale(1.1);
    box-shadow: 0px 10px 45px 6px rgba(0, 0, 0, 0.31);
}

.rezult {
    color: #fff;
    cursor: default;
    margin-top: 10px;
    border-radius: 10px;
    display: flex;
    justify-content: space-around;
    flex-direction: column;
}

.rezult__header__p {
    text-transform: uppercase;
    background-color: #6E5FAE;
    padding: 4px 40px 4px 20px;
    border-radius: 10px;
    font-size: 19px;
    margin-top: 60px;
    color: #fff;
    cursor: default;
}

.rezult__header {
    margin-right: 10px;
    margin-left: 10px;
    background-color: #6E5FAE;
    padding: 4px 14px 4px 14px;
    border-radius: 10px;
    margin-top: 6px;
    transition: all .4s;
}

.rezult__header:hover {
    transform: scale(1.1);
    box-shadow: 0px 10px 45px 6px rgba(0, 0, 0, 0.31);
}

.ticher {
    margin-top: 100px;
    border-radius: 10px;
    color: #fff;
    cursor: default;
}

.ticher__header {
    text-transform: uppercase;
    background-color: #6E5FAE;
    padding: 4px 0 4px 40px;
    border-radius: 10px;
    font-size: 19px;
}

.ticher_img {
    border-radius: 10px;
    width: 200px;
}

.ticher__card {
    background-color: #6E5FAE;
    border-radius: 10px;
    padding: 20px;
    margin-top: 30px;
    transition: all .4s;
}

.ticher__card:hover {
    transform: scale(1.04);
    box-shadow: 0px 0px 50px 4px rgba(41, 41, 41, 0.41);
}

.services {
    margin-top: 100px;
    border-radius: 10px;
    color: #fff;
    cursor: default;
}

.services__header {
    text-transform: uppercase;
    background-color: #6E5FAE;
    padding: 20px 20px 20px 40px;
    border-radius: 10px;
    font-size: 19px;
}

.services__card__head h3 {
    background-color: #6E5FAE;
    border-radius: 10px;
    font-weight: 400;
    width: 96%;
    margin-left: 1%;
    padding: 10px;
}

.services__card {
    background-color: #6E5FAE;
    border-radius: 10px;
    padding: 2px 30px 2px 30px;
    width: 98%;
    margin-left: 2%;
}

.singUP {
    background-color: #6E5FAE;
    padding: 20px 20px 20px 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    margin-top: 30px;
    cursor: default;
}

.singUP h3,
p {
    color: white;
}

*:focus {
    outline: none;
}

.contact_form {
    display: flex;
    flex-direction: column;
    color: white;
}

.contact_form h2 {
    margin: 0;
    display: inline;
}

.contact_form label {
    width: 300px;
    margin-top: 3px;
    display: inline-block;
    padding: 3px;
    border-radius: 40px;
}

.contact_form input {
    border: none;
    height: 26px;
    width: 300px;
    padding: 5px 8px;
    border-radius: 30px;
}

button.submit {
    background: linear-gradient(45deg, rgb(123, 101, 219), rgb(56, 98, 180));
    border: none;
    border-radius: 30px;
    color: white;
    font-weight: 400;
    padding: 6px 20px;
    text-align: center;
    transition: all .4s ease-out;
    margin-top: 30px;
    width: 300px;
}

button.submit:hover {
    cursor: pointer;
    box-shadow: 0px 0px 6px 4px rgba(255, 255, 255, 0.21);
}

.reviews {
    background-color: #6E5FAE;
    color: #fff;
    border-radius: 10px;
    padding: 14px;
    cursor: default;
    font-size: 19px;
}

.reviews h3 {
    font-weight: 400;
}

.reviews__toogle {
    font-size: 16px;
    cursor: default;
    background: linear-gradient(45deg, rgb(123, 101, 219), rgb(56, 98, 180));
    border-radius: 10px;
    padding: 6px 20px 6px 20px;
    transition: all .2s;
    margin-top: 20px;
}

.reviews__name {
    font-size: 18px;
}

.UP {
    background-color: #6E5FAE;
    border-radius: 10px;
    padding: 20px;
    color: white;
    text-align: center;
    margin: 20px 0 20px 0;
}

.map {
    cursor: default;
    background-color: #6E5FAE;
    color: #fff;
    font-size: 19px;
    padding: 10px 10px 20px 20px;
    border-radius: 10px;
}

.map__clases a {
    display: flex;
    flex-direction: column;
    font-size: 16px;
    width: 120px;
    color: rgb(255, 255, 255);
}

.map__clases a:hover {
    color: rgb(182, 182, 182);
}

.news {
    color: #fff;
    border-radius: 10px;
    cursor: default;
    font-size: 19px;
    margin-top: 90px;
}

.news__card {
    background-color: #6E5FAE;
    border-radius: 10px;
    margin-top: 30px;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 400;
    transition: all .4s;
}

.news__card:hover {
    transform: scale(1.04);
    box-shadow: 0px 0px 50px 4px rgba(41, 41, 41, 0.41);
}

.news__card h3,
a,
p {
    font-size: 16px;
    font-weight: 400;
    margin-left: 20px;
    color: #fff;
}

.news__bar {
    background-color: #6E5FAE;
    border-radius: 10px;
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 4px 12px 4px 12px;
    transition: all .4s;
}

.jn-tooltip:hover:after {
    content: attr(data-title);
    z-index: 999;
    position: absolute;
    top: 40px;
    right: 100%;
    padding: 14px;
    font-size: 13px;
    font-weight: 300;
    color: #fff;
    background-color: #444;
    border-bottom-left-radius: 20px;
    border-top-left-radius: 20px;
}

.news__bar:hover {
    transform: scale(1.04);
    box-shadow: 0px 0px 50px 4px rgba(41, 41, 41, 0.41);
}

.about__footer__maps {
    background-color: #6E5FAE;
    border-radius: 10px;
    margin-top: 30px;
    padding: 10px;
}

.footer__about {
    margin-top: 20px;
    transition: all .4s;
    border-radius: 50%;
    margin-left: 10px;
}

.footer__about:hover {
    transform: scale(1.1);
}

.footer p,
a {
    color: black;
}

.bar1,
.bar3,
.bar5 {
    width: 28px;
    height: 3px;
    background-color: #333;
    transition: all .8s;
}

.bar2,
.bar4 {
    width: 28px;
    height: 3px;
    background-color: transparent;
}

.change .bar1 {
    transform: rotate(-585deg) translate(6px, -6px);
    background-color: #fff;
}

.change .bar2 {
    opacity: 0;
}

.change .bar3 {
    opacity: 0;
}

.change .bar4 {
    opacity: 0;
}

.change .bar5 {
    transform: rotate(585deg) translate(3px, 3px);
    background-color: #fff;
}

#menu-toggle {
    position: absolute;
    visibility: hidden;
    left: 0;
    top: 0;
    z-index: -100;
}

label[for=menu-toggle] {
    display: none;
    text-align: center;
    cursor: pointer;
}

#menu-toggle:checked~.nav--header {
    max-height: 220px;
}

@media all and (max-width: 1400px) {
    label[for=menu-toggle] {
        display: inline-block;
        margin-top: -10px;
        margin-left: -6px;
    }
    .nav--header {
        display: flex;
        flex-direction: column;
        transition: max-height .8s ease;
        overflow: hidden;
        max-height: 0;
        width: 100%;
        margin-bottom: -100%;
        margin-left: 1%;
        z-index: 9999;
        margin-left: -80px;
        margin-top: 20px;
        background-color: #6E5FAE;
    }
    nav {
        height: 60px;
        margin-left: -20px;
    }
    .nav__link {
        padding: 6px;
        margin-top: 6px;
        width: 110px;
        font-size: 13px;
        border: 2px solid#fff;
        border-radius: 10px;
        min-width: 80px;
    }
    .logo {
        margin-left: 2px;
    }
    .jn-tooltip:hover:after {
        content: attr(data-title);
        z-index: 999;
        position: absolute;
        right: 4%;
        top: -18%;
        padding: 14px;
        font-size: 13px;
        font-weight: 300;
        color: #fff;
        background-color: #444;
        border-radius: 10px;
    }
    .down__glav {
        flex-direction: column;
        justify-content: space-between;
        height: 60px;
    }
    .down {
        border: 2px solid #fff;
        padding: 2px 10px 2px 10px;
        font-size: 14px;
        color: #fff;
        border-radius: 10px;
        transition: all .4s;
    }
    .contact_form label,
    .contact_form input {
        width: 230px;
        height: 20px;
        margin-bottom: 4px;
    }
    .logo {
        width: 30px;
        margin-left: 0px;
    }
    button.submit {
        width: 230px;
    }
    .benefits h1 {
        font-size: 22px;
        font-weight: 400;
    }
    .benefits h2 {
        font-size: 16px;
        font-weight: 400;
    }
    .benefits h3 {
        font-size: 14px;
        font-weight: 400;
    }
    .problems {
        margin-top: 50px;
    }
    .problems__header {
        padding: 3px;
    }
    .problems__header p {
        font-size: 14px;
        text-transform: none;
    }
    .problems__block p {
        font-size: 12px;
    }
    .problems__block {
        padding: 4px 4px 4px 6px;
        margin-left: 6px;
        margin-right: 6px;
    }
    .rezult__header {
        padding: 3px;
    }
    .rezult__header__p p {
        margin: 0;
        text-transform: none;
        padding: 3px;
        font-size: 14px;
    }
    .rezult p {
        font-size: 12px;
        font-weight: 400;
        margin: 0;
        padding: 8px;
    }
    .rezult h3 {
        font-size: 13px;
        border-bottom: 1px solid white;
        font-weight: 400;
        padding: 8px;
    }
    .ticher__header p {
        margin: 0;
        text-transform: none;
        font-size: 14px;
        padding: 10px;
    }
    .ticher__header {
        padding: 0;
    }
    .ticher_img {
        width: 120px;
        border: 2px solid#fff;
    }
    .ticher__card {
        margin-left: 8px;
        margin-right: 8px;
    }
    .ticher__card p {
        font-size: 12px;
        margin: 0;
    }
    .ticher__card h3 {
        font-size: 13px;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .services {
        margin-top: 20px;
    }
    .services__header {
        margin: 0;
        text-transform: none;
        font-size: 14px;
    }
    .services__header {
        padding: 10px;
    }
    .services__card__head h3 {
        margin: 14px 0 4px 0;
        padding: 10px;
        text-transform: none;
        font-size: 13px;
        width: 100%;
    }
    .services__card p {
        margin: 0;
        padding: 10px;
        font-size: 12px;
    }
    .services__card {
        margin: 0 auto;
        padding: 0;
        width: 97%;
    }
    .singUP {
        padding: 10px;
    }
    .singUP h3 {
        margin: 0;
        font-size: 14px;
        font-weight: 400;
    }
    .singUP p {
        margin: 6px 0 6px 0;
        font-size: 13px;
        font-weight: 400;
    }
    .contact_form {
        font-size: 12px;
    }
    .reviews {
        margin: 0;
    }
    .reviews h3 {
        margin: 0;
        font-size: 14px;
        font-weight: 400;
    }
    .reviews__toogle {
        padding: 0;
    }
    .reviews__toogle p {
        margin: 0;
        padding: 10px;
        font-size: 12px;
    }
    .reviews__name p {
        margin: 0;
        padding: 10px;
        font-size: 13px;
    }
    .UP {
        font-size: 12px;
        padding: 8px;
        margin-top: 6px
    }
    .map {
        padding: 4px 8px 14px 2px;
    }
    .map P {
        font-size: 13px;
    }
    .map a {
        font-size: 13px;
    }
    .footer p,
    a {
        font-size: 12px;
    }
    .news__card {
        margin-top: 10px;
    }
    .news__card p {
        font-size: 12px;
    }
    .news__card h3 {
        font-size: 13px;
    }
    .ticher {
        margin-top: 30px;
    }
    .news__bar {
        padding: 10px;
    }
    .news__bar h3 {
        margin: 0;
        font-size: 14px;
        font-weight: 400;
        margin: 6px 0 6px 0;
    }
    .news__bar p {
        margin: 0;
        font-size: 12px;
    }
    .news__bar a {
        margin: 0;
        font-size: 12px;
    }
} */