@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%;
    border-radius: 50%;
}

.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-check{
    display: flex;
    align-items: center;
    margin-top: 20px;

}
.default-form-check-input{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}
.default-form-check-input input{
    width: 20px;
    height: 20px;
    margin-right: 20px;
}
.default-form-check-text{
    font-size: 12px;
    text-align: start;
}
.default-form-check-text a{
    color: #95cc55;
    font-weight: 700;
}
.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;
    padding-top: 140px !important;
}

.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%;
    height: 250px;

}

.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-link{
    color: #95cc55;
    margin: 10px 0;
}
.f-text {
    max-width: 300px;
}
.f-logo .logo{
    margin-bottom: 20px;

}
.f-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.f-row+.f-row{
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #fff;
}

.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;
}



@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;
    }
}

#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333; /* Темний фон */
    color: #fff; /* Білий текст */
    padding: 15px 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000; /* Забезпечує видимість поверх іншого контенту */
    display: none; /* Спочатку прихований, показується через jQuery */
    font-family: Arial, sans-serif;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Для мобільних пристроїв */
}

#cookie-banner p {
    margin: 5px 0;
    font-size: 14px;
    line-height: 1.4;
}

#cookie-banner a {
    color: #8cff00; /* Яскравий колір для посилання, наприклад, зелений */
    text-decoration: underline;
}

#cookie-accept-btn,
#cookie-reject-btn {
    background-color: #8cff00;
    color: #333;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
    margin-left: 20px; /* Відступ від тексту */
}

#cookie-accept-btn:hover,
#cookie-reject-btn:hover  {
    background-color: #a0ff33;
}

/* Адаптивність для менших екранів */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    #cookie-accept-btn,
    #cookie-reject-btn  {
        width: 100%;
        margin-top: 10px;
        margin-left: 0;
    }
}

/* --- Секція Контакти: Загальний стиль та вирівнювання --- */

.contact-section {
    padding: 140px 0 60px 0;
    background-color: #1a1a1a; /* Темний фон, як і в інших секціях */
    color: #ffffff;
    min-height: 100vh;
}

.contact-section .section-title {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #8cff00; /* Акцентний колір */
}

.contact-section .section-description {
    text-align: center;
    font-size: 1.1em;
    color: #ccc;
    margin-bottom: 40px;
}

/* --- Оболонка для блоків контактів (використовуємо Flexbox для розміщення в ряд) --- */
.contact-details-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 50px;
}

/* --- Стилі для окремого блоку контактів (Адреса, Комунікація, Час) --- */
.contact-block {
    flex: 1; /* Рівна ширина для всіх трьох блоків */
    padding: 25px;
    background-color: #2c2c2c;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.contact-block .block-title {
    font-size: 1.4em;
    color: #ffffff;
    border-bottom: 2px solid #8cff00; /* Розділювач акцентним кольором */
    padding-bottom: 10px;
    margin-bottom: 15px;
}

/* --- Стилі для списку деталей --- */
.contact-block ul {
    list-style: none;
    padding: 0;
    margin:
}
.default-description a{
    color: #95cc55;
}

/* --- Загальні стилі для юридичних сторінок --- */

.default-description {
    padding: 60px 0;
    padding-top: 140px !important;
    background-color: #1a1a1a; /* Темний фон */
    color: #f0f0f0; /* Світлий текст */
    line-height: 1.6;
}

/* --- Основний заголовок сторінки --- */

.impressum-title {
    font-size: 2.8em;
    color: #8cff00; /* Акцентний зелений колір */
    border-bottom: 3px solid #8cff00;
    padding-bottom: 15px;
    margin-bottom: 40px;
    text-align: left;
}

/* --- Стилі для окремих секцій Impressum --- */

.impressum-section {
    margin-bottom: 30px;
    padding: 15px 0;
}

.impressum-section .section-title {
    font-size: 1.6em;
    color: #ffffff;
    margin-bottom: 15px;
}

/* --- Стилі для параграфів та контактної інформації --- */

.impressum-section p,
.impressum-disclaimer p {
    font-size: 1em;
    margin-bottom: 5px;
}

.impressum-section p strong {
    color: #8cff00;
}

/* Стилі для посилань (E-Mail, Telefon) */
.contact-details a {
    color: #8cff00;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-details a:hover {
    color: #b3ff57;
    text-decoration: underline;
}

/* --- Розділювач --- */

hr.separator {
    border: 0;
    height: 1px;
    background-color: #333;
    margin: 40px 0;
}

/* --- Haftungsausschluss (Відмова від відповідальності) --- */

.impressum-disclaimer {
    margin-top: 40px;
    padding: 20px;
    border-left: 5
}
.data-privacy-block+.data-privacy-block{
    margin-top: 20px;
}
.agb-block+.agb-block{
    margin-top: 20px;
}
.agb-title{
    margin-bottom: 60px;
}