@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');

* {
    box-sizing: border-box;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    padding: 0;
    margin: 0;
}

p {
    line-height: 1.8;
}

a {
    text-decoration: none !important;
    transition: 0.3s;
}

input,
textarea,
button,
.slick-slide {
    outline: none !important;
    border: none;
}

body {
    color: #1E1E1E;
    font-size: 16px;
    font-family: "Roboto Mono", sans-serif;

}

section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}


.loader {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 2000;
    background: rgb(251, 250, 243);
}

.loader-block {
    display: flex;
    align-items: center;
}

.loader-block-item {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #95cc55;
}

.loader-block-item+.loader-block-item {
    margin-left: 10px;
}

.loader-block-item:nth-child(1n) {
    animation: loaderBottom 1s infinite;
}

@keyframes loaderTop {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }

    0% {
        transform: translateY(0);
    }
}

.loader-block-item:nth-child(2n) {
    animation: loaderTop 1s infinite;
}

@keyframes loaderBottom {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }

    0% {
        transform: translateY(0);
    }
}

@keyframes show {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.up-btn {
    width: 40px;
    height: 40px;
    cursor: pointer;
    border-radius: 50%;
    background: #95cc55;
    border: 1px solid #fff;
    position: fixed;
    right: 20px;
    bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: 0.3s;
}

.up-btn:hover {
    border-color: #95cc55;
}

.up-btn img {
    max-width: 80%;
    max-height: 80%;
    transition: 0.3s;
    animation: up 1s infinite;
}

.tab-content-item+.tab-content-item {
    display: none;
}

@keyframes up {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }

    0% {
        transform: translateY(0);
    }
}

.container {
    max-width: 1430px;
}

.h-modal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10;
    padding-top: 5vh;
    display: none;
}

.h-modal-content {
    width: 600px;
    padding: 40px 20px;
    box-shadow: 0px 2px 2px 0px #00000040;
    border-radius: 5px;
    margin: auto;
    position: relative;
    max-width: calc(100% - 30px);
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    color: #fff;
    overflow: hidden;

}

.h-modal-content-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #95cc55;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
    transition: 0.3s;
    z-index: 1;

}

.h-modal-content-close:hover {
    transform: scale(1.1);
}

.h-modal-content-close img {
    width: 80%;
    height: 80%;
}

.h-btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 4px 10px;
    background: #95cc55;
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    border: 1px solid #fff;
    transition: 0.3s;
}

.h-btn:hover {
    background: #fff;
    color: #95cc55;
    border-color: #95cc55;
    transform: scale(1.1);
}

h1.title {
    font-size: 40px;
}

.title {
    font-size: 35px;
    text-transform: uppercase;
    font-weight: 700;
    position: relative;
}

.title:after {
    content: "";
    display: block;
    width: 50%;
    height: 2px;
    background: #95cc55;
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 60px;
}

.default-text-block {
    margin-bottom: 40px;
}

.slogan {
    max-width: 700px;
    line-height: 1.8;
    margin-top: 20px;
}

.average-title {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
}

.default-text {
    font-size: 14px;
    line-height: 1.8;
}

.default-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.default-bg:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.5);
}

.default-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.default-content {
    position: relative;
    z-index: 1;
}

.header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 5;
    transition: 0.3s;
}

.header.active {
    background: rgba(0, 0, 0, 0.8);
    padding: 5px 0;
}

.header.menu-open {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
}

.header-row {
    display: flex;
    align-items: center;
}

.header-bars {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid #95cc55;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}

.header-bars.active {
    transform: rotate(90deg);
}

.header-bars img {
    width: 80%;
    height: 80%;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    width: 60px;
    height: 60px;
    transition: 0.3s;
}

.logo-img img {
    width: 100%;
    height: 100%;
}

.logo-title {
    margin-left: 10px;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
    transition: 0.3s;
}

.logo:hover {
    opacity: 0.5;
}

.header-menu {
    margin-left: auto;
}

.menu {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

.menu-item {
    display: block;
}

.menu-link {
    display: block;
    padding: 5px 10px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 12px;
    color: #fff;
    letter-spacing: 0.05em;
    overflow: hidden;
    position: relative;
}

.menu-link:after {
    content: "";
    display: block;
    width: 50%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
    background: #95cc55;
    transition: 0.3s;
    transform: translateX(-110%);
}

.menu-link:hover {
    color: #95cc55;
}

.menu-link:hover:after {
    transform: translateX(0);
}

.header-btn {
    margin-left: 40px;
}


.mob-menu {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 100vh;
    display: none;
}

.mob-menu-shadow {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
}

.mob-menu-item {
    background: rgba(0, 0, 0, 0.8);
    position: absolute;
    left: 0;
    top: 0px;
    height: 100%;
    width: 320px;
    z-index: 1;
    padding: 20px 0;
    border-top: 1px solid #95cc55;
}

.mob-menu .menu {
    display: block;
}

.mob-menu .menu-link {
    padding: 15px 10px;
}

.mob-menu-btn {
    margin-top: 20px;
    text-align: center;
}


.head {
    padding: 0;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.head-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.head-bg:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.5);
}

.head-bg video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.head .default-content {

    display: flex;
    align-items: center;
    justify-content: center;
}

.head-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.head-row-item {
    width: 49%;
}

.head-inner {

    padding: 60px 40px;
    backdrop-filter: blur(20px);
    color: #fff;
    border-radius: 4px 40px;
    background: rgba(0, 0, 0, 0.1);
}

.head-slogan {
    font-size: 20px;
    min-height: 75px;
    margin: 40px 0;
    max-width: 100%;
}

.head-block {
    color: #fff;
    backdrop-filter: blur(20px);
    color: #fff;
    border-radius: 4px 40px;
    background: rgba(0, 0, 0, 0.1);
    padding: 60px 40px;
    text-align: center;
}

.head-block .title {
    display: inline-block;
}

.head-block-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0;
}

.head-block-timer-item {
    padding: 0 5px;
    font-size: 20px;
    width: 80px;
    text-align: center;
    position: relative;
}

.head-block-timer-item+.head-block-timer-item:before {
    content: ":";
    display: block;
    font-size: 20px;
    font-weight: 700;
    position: absolute;
    left: -5px;
    top: 0;

}

.head-block-timer-item-val {
    font-weight: 700;
    display: block;
}

.head-block-btn {
    margin-top: 40px;
}

.head-block-form {
    max-width: 400px;
    margin: 0 auto;
    display: none;
}

.default-form {
    position: relative;
}

.default-form-item {
    display: block;
    padding: 0;
    margin: 0;
}

.default-form-item+.default-form-item {
    margin-top: 20px;
}

.default-form-item-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.default-form-item-input {
    position: relative;
}

.default-form-item-input input {
    width: 100%;
    background: transparent;
    border-bottom: 1px solid #fff;
    padding: 0 12px;
    color: #fff;
    height: 40px;
    transition: 0.3s;
}

.default-form-item-input input:focus {
    border-color: #95cc55;
}

.default-form-sub {
    margin-top: 40px;
}

.default-form-radio {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}

.default-form-radio-item {
    position: relative;
    width: 33%;
    height: 100%;
    opacity: 0.5;
    border: 1px solid transparent;
    border-radius: 4px;
    overflow: hidden;
    transition: 0.3s;
    cursor: pointer;
}


.default-form-radio-item:hover {
    opacity: 1;
}

.default-form-radio-item input {
    position: absolute;
    opacity: 0;
    z-index: -10;
}

.default-form-radio-item.active {
    opacity: 1;
    border-color: #95cc55;
}

.default-form-radio-item.active:after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    background: #95cc55;
    border-radius: 50%;
    position: absolute;
    left: 5px;
    bottom: 5px;
    transition: 0.3s;
}

.default-form-radio-item-img img {
    width: 100%;
    height: 100px;
    object-fit: cover;
}

.h-modal-accept {
    text-align: center;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
}

.h-modal-accept.active {
    display: flex;
    animation: show 0.3s;
}


.head-block-form-accept {
    display: none;
}

.head-block-form-accept-icon {
    margin-top: 20px;
}



.about {
    position: relative;
}

.about .circle {
    left: 0;
    top: 0;
}

.about-object {
    position: absolute;
    right: 0;
    bottom: 40px;
    width: 60%;
    height: 80%;
    z-index: -1;
}

.about-object img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.about-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.about-row-item {
    width: 31%;
    margin: 1%;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.75);
    border-radius: 0 0 15px 4px;
    border: 1px solid #95cc55;
    background: #fff;
}

.about-row-item:hover .about-row-item-img img {
    transform: scale(1.1);
}

.about-row-item-img {
    overflow: hidden;
    height: 200px;
}

.about-row-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.about-row-item-footer {
    padding: 30px 15px;
    background: #fff;
    border-top: 4px solid #95cc55;
}

.about-row-item-title {
    margin-bottom: 20px;
}

.services {
    color: #fff;
}

.services-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.services-row-item {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 50%;
    padding: 20px;
}

.services-row-item:hover .services-row-item-img-item img {
    transform: scale(1.3);
}

.services-row-item-inner-title {
    margin-bottom: 20px;
}

.services-row-item-img {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 400px;
    justify-content: center;
}

.services-row-item-img-item {
    width: 100%;
    height: 150px;
}

.services-row-item-img-item img {
    width: 50%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    transition: 0.3s;
}

.services-row-item-img-item:last-child {
    text-align: right;
}


.courses .circle {
    top: 0;
    right: 0;
}

.courses-object {
    position: absolute;
    left: -20px;
    top: 0;
    z-index: -1;
    transform: rotate(-10deg);
    width: 300px;
    height: 100%;
}

.courses-object img {
    width: 100%;
    height: 100%;

}

.courses .default-text-block {
    text-align: center;
}

.courses .title {
    display: inline-block;
}

.courses .slogan {
    margin-left: auto;
    margin-right: auto;
}

.courses-tab .tab-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
}

.courses-tab .tab-btn-item {
    padding: 5px 10px;
    background: #95cc55;
    border-radius: 4px;
    cursor: pointer;
}

.courses-tab .tab-btn-item.active {
    opacity: 0.5;
}

.courses-tab .tab-btn-item+.tab-btn-item {
    margin-left: 4px;
}

.courses-tab-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.courses-tab-inner-img {
    border-radius: 4px 15px;
    margin: 30px 0;
    overflow: hidden;
    position: relative;
    max-height: 350px;
    box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.75);
}

.courses-tab-inner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.courses-tab-inner-img:hover img {
    transform: scale(1.2);
    filter: grayscale(100%);
}

.courses-tab-inner-btn {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 48%;
    color: transparent;
    padding: 5px 10px;
    border: 1px solid transparent;
    border-radius: 4px 10px;
}


.courses-tab-inner-img:hover .courses-tab-inner-btn {
    color: #95cc55;
    border-color: #95cc55;
    background: #fff;
}



.gallery {}

.gallery .circle {
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
}

.gallery .default-text-block {
    text-align: center;
}

.gallery .title {
    display: inline-block;
}

.gallery .slogan {
    margin-left: auto;
    margin-right: auto;
}

.gallery-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.gallery-row-item {
    width: 25%;
    position: relative;
}

.gallery-row-item-img {
    height: 14vw;
    overflow: hidden;
}

.gallery-row-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.gallery-row-item-btn {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.8);
    transition: 0.3s;
    cursor: pointer;
    opacity: 0;
    z-index: -1;
}

.gallery-row-item-btn img {
    width: 50px;
    height: 50px;
    transition: 0.3s;
}

.gallery-row-item:hover .gallery-row-item-btn {
    z-index: 1;
    opacity: 1;
}

.lb-data .lb-close {
    background: url('../dist/lightbox/images/close.png') top right no-repeat;
}

.lb-nav a.lb-next {
    background: url('../dist/lightbox/images/next.png') right 48% no-repeat;
}

.lb-nav a.lb-prev {
    background: url('../dist/lightbox/images/prev.png') left 48% no-repeat;
}

.lb-loader {
    background: url('../dist/lightbox/images/loading.gif') no-repeat center center;
}


.pricing {
    color: #fff;
}

.pricing-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.pricing-row-item {
    width: 32%;
    padding: 40px 20px 80px 20px;
    box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.75);
    border-radius: 4px 20px;
    transition: 0.3s;
    position: relative;
    backdrop-filter: blur(20px);
    color: #fff;
    text-align: center;
}

.pricing-row-item:hover {
    box-shadow: 0px 0px 18px 0px #95cc55;
    z-index: 1;
}

.pricing-row-item-title {
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.1em;
    position: relative;
    display: inline-block;
}

.pricing-row-item-title:after {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    position: absolute;
    left: -30px;
    top: 10px;
    animation: puls 1s infinite;
}

@keyframes puls {
    0% {
        transform: scale(1.0);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1.0);
    }
}

.pricing-standart .pricing-row-item-title:after {
    background: #16C60C;
}

.pricing-premium .pricing-row-item-title:after {
    background: #0078D7;
}

.pricing-vip .pricing-row-item-title:after {
    background: #FFF100;
}

.pricing-row-item-price {
    font-size: 20px;
    font-weight: 800;
    margin: 20px 0;
}

.pricing-row-item-list {
    border-top: 1px solid #95cc55;
    text-align: start;

}

.pricing-row-item-list-item {
    display: flex;
    padding: 10px 0;
    border-bottom: 1px solid #95cc55;
}

.pricing-row-item-list-item-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.pricing-row-item-list-item-icon img {
    width: 100%;
    height: 100%;
}

.pricing-row-item-btn {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 20px;
}

.circle {
    position: absolute;
}

.blog {
    position: relative;
}

.blog .circle.first {
    right: 0;
    top: 0;
}

.blog .circle.second {
    left: 0;
    bottom: 0;
}

.blog-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1%;
    justify-content: center;
}

.blog-row-item {
    width: 32.6%;
    margin-top: 20px;
}

.blog-row-item:nth-child(4n) {
    width: 100%;

    .blog-inner-img {
        height: 300px;
    }

}

.blog-inner {
    display: block;
    position: relative;
    overflow: hidden;
    transition: 0.3s;
    box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.75);
    border-radius: 4px 10px;
    color: #222;

}

.blog-inner:hover {
    transform: translateY(-10px);

    .blog-inner-date {
        transform: translateX(12px);
    }

    .blog-inner-content {
        border-color: #95cc55;
    }

}

.blog-inner-date {
    position: absolute;
    right: 0;
    top: 20px;
    padding: 4px 20px 4px 10px;
    background: #95cc55;
    transition: 0.3s;
    border-radius: 4px 0 0 4px;
    color: #222;
}

.blog-inner-img {
    height: 200px;
}

.blog-inner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-inner-content {
    padding: 30px 15px;
    border-top: 4px solid transparent;
    transition: 0.3s;


}

.blog-inner-title {
    font-weight: 700;
    line-height: 1.4;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-inner-text {
    font-size: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;

}

.history {
    color: #fff;
}

.history-row {
    display: flex;
    align-items: center;
}

.history-timeline {
    width: 50%;
    position: relative;
    padding: 40px 20px;

}

.history-timeline:before {
    content: "";
    display: block;
    height: 100%;
    width: 4px;
    border-radius: 10px;
    background: #95cc55;
    position: absolute;
    left: 0;
    top: 0;
}

.history-timeline-item+.history-timeline-item {
    margin-top: 20px;
}

.history-timeline-item {
    position: relative;
    padding-left: 50px;
}

.history-timeline-item:hover {
    .history-timeline-item-date {
        background: transparent;
        color: #fff;
    }

    .history-timeline-item-title {
        color: #95cc55;
    }
}

.history-timeline-item-date {
    width: 50px;
    height: 50px;
    border-radius: 0 50% 50% 0;
    background: #95cc55;
    border: 1px solid #95cc55;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: -20px;
    transition: 0.3s;
    color: #222;
}

.history-timeline-item-title {
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    transition: 0.3s;
}

.history-timeline-item-text {
    font-size: 14px;
}

.history-img {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    border-radius: 4px 10px;
    overflow: hidden;
}

.history-img img {
    width: 100%;
    object-fit: cover;
    max-height: 100%;

}

.history-img-item {
    width: 50%;
    transition: 0.3s;
}

.history-img-item:hover {
    opacity: 0.5;
}

.footer {
    background: rgba(0, 0, 0, 0.8);
    padding: 40px 0;
    color: #fff;
}

.f-text {
    max-width: 300px;
}

.f-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.f-title {
    font-weight: 700;
    margin-bottom: 20px;
}

.f-inner {
    display: flex;
    align-items: center;
}

.f-inner-item+.f-inner-item {
    margin-left: 20px;
}

.f-inner-item-title {
    font-size: 14px;
    font-weight: 700;
}

.f-inner-item-slogan {
    font-size: 14px;
}

.f-soc {
    display: flex;
    align-items: center;
}

.f-soc-item+.f-soc-item {
    margin-left: 10px;
}

.f-soc-item {
    display: block;
    width: 40px;
    height: 40px;
    border: 1px solid #95cc55;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.f-soc-item:hover {
    background: #fff;
}

.f-soc-item img {
    width: 70%;
    height: 70%;
}


.h-modal {
    text-align: center;
}

.h-modal .title {
    display: inline-block;
    margin-bottom: 50px;
}

.h-modal .default-form {
    max-width: 400px;
    margin: 0 auto;
}

.h-modal-content-item {
    display: none;
}

@media screen and (max-width: 1200px) {
    .title {
        font-size: 26px;
    }

    .header-btn {
        margin-left: 20px;
    }

    .head {
        padding: 110px 0 80px 0;
    }

    .history-img-item {
        width: 100%;
        height: 170px;
    }

    .history-img-item+.history-img-item {
        border-top: 4px solid #95cc55;
    }
}

@media screen and (max-width:992px) {
    .header-menu {
        display: none;
    }

    .header-bars {
        display: flex;
    }

    .header-btn {
        margin: 0 40px 0 auto;
    }

    .head-row {
        display: block;
    }

    .head-row-item {
        width: 620px;
        max-width: 100%;
        margin: 0 auto;

    }

    .head-row-item+.head-row-item {
        margin-top: 20px;
    }

    .head-inner {
        text-align: center;
    }

    .head-inner .title {
        display: inline-block;
    }

    .about-row {
        flex-wrap: wrap;
        justify-content: center;
    }

    .about-row-item {
        width: 48%;
    }

    .services-row-item {
        width: 100%;
    }

    .pricing-row-item {
        width: 100%;
    }

    .pricing-row-item+.pricing-row-item {
        margin-top: 20px;
    }

    .pricing-row-item-list-item {
        justify-content: center;
    }

    .gallery-row-item {
        width: 33%;
    }

    .gallery-row-item-img {
        height: 30vw;
    }

    .f-row {
        flex-wrap: wrap;
        justify-content: center;
    }

    .f-row-item {
        width: 100%;
    }

    .f-row-item+.f-row-item {
        margin-top: 40px;
    }

    .history-row {
        display: block;
    }

    .history-timeline {
        width: 100%;
    }

    .history-img {
        width: 100%;
        margin-top: 20px;
    }

    .history-img-item {
        width: 50%;
        height: auto;
    }

    .history-img-item+.history-img-item {
        border: none;
    }
}

@media screen and (max-width:768px) {
    .about-row-item {
        width: 100%;
        margin: 0;
    }

    .about-row-item+.about-row-item {
        margin-top: 40px;
    }

    .courses-tab-inner-img {
        max-height: 260px;
    }

    .blog-row-item {
        width: 48%;
    }

    .blog-row-item:nth-child(4n) {
        width: 48%;
    }

    .blog-row-item:nth-child(4n) {
        .blog-inner-img {
            height: 200px;
        }
    }

}

@media screen and (max-width:574px) {
    .header-btn {
        display: none;
    }

    .header-bars {
        margin-left: auto;
    }

    .title:after {
        left: -5px;
        top: 0;
        width: 2px;
        height: 100%;
    }

    .f-inner {
        flex-wrap: wrap;
    }

    .f-inner-item {
        width: 100%;
    }

    .f-inner-item+.f-inner-item {
        margin: 20px 0 0 0;
    }

    .footer {
        text-align: center;
    }

    .footer .logo {
        justify-content: center;
    }

    .f-soc {
        justify-content: center;
    }

    .f-text {
        max-width: 100%;
    }

    .tab-btn {
        flex-wrap: wrap;
    }

    .courses-tab .tab-btn-item {
        margin: 4px;
    }

    .services-row-item {
        display: block;
        padding: 10px 0;
    }


    .services-row-item-img {
        margin-top: 20px;
        margin-left: auto;
    }

    section {
        padding: 60px 0;
    }

    .courses-object {
        display: none;
    }

    .head-slogan {
        font-size: 14px;
    }

    .title {
        font-size: 20px;
    }
    .blog-row-item {
        width: 100% !important;
    }
}

@media screen and (max-height: 460px) {
    .mob-menu .menu-link {
        padding: 7px 10px;
    }
}

/*body{
    font-size: 15px;
}
.container{
    max-width: 1040px;
}
.head-slogan{
    font-size: 18px;
}
.title{
    font-size: 28px;
}*/