* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style-type: none;
    scroll-behavior: smooth; /*плавный скрол*/
    font-family: "Commissioner", sans-serif;
}

/*--------------------------header----------------------------*/
header {
    background: #477cac;
    background: radial-gradient(circle farthest-corner at center center, #477cac 0%, #042848 80%);
    background: -webkit-radial-gradient(circle farthest-corner at center center, #477cac 0%, #042848 80%);
    background: -moz-radial-gradient(circle farthest-corner at center center, #477cac 0%, #042848 80%);
    width: 100%;
    height: 53px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    box-shadow: 0 4px 5px 0 rgba(0,0,0,0.75);
    background-position: top;
}
.standard_header { /*контейнер для меню та лого соцсетів та телефону*/
    width: 880px;
    height: 53px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 0;
}
.standard_header>img:first-of-type {
    margin-top: 35px;
    width: 90px;
    height: 100px;
}
.standard_header>nav {
    display: flex;
    justify-content: center;
    align-items: center;
    /*margin: 0 44px 0 44px;*/

}
.standard_header>nav>ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;

}
.standard_header>nav>ul>li {
    position: relative;
    display: flex;
    align-items: center;
}
.standard_header>nav>ul>li:hover > a {
    color: rgb(0, 1, 23);
    font-weight: 500;
}


.standard_header>nav>ul>li:not(:last-child) {
    position: relative;
    padding-right: 15px; /* Отступ от текста */
}

.standard_header>nav>ul>li>a {
    font-size: 13px;
    font-family: "Commissioner", sans-serif;
    font-optical-sizing: auto;
    color: rgba(247, 247, 247, 1);
    padding: 18px 0;
    transform: scaleY(1.2); /* Увеличивает высоту букв на 20% */
    display: inline-block;
}

.standard_header>nav>ul>li::after{
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background: rgb(0, 1, 23);
    position: absolute;
    bottom: 9px;
    left: 15%;
    transition: width 0.3s ease;
}
/*.standard_header>nav>ul>li:hover::after {*/
/*    width: 60%;*/
/*}*/

.dropdown {  /*випадаюче меню*/
    width: 175px;
    height: 125px;
    background: #477cac;
    background: radial-gradient(circle farthest-corner at center center, #477cac 0%, #042848 80%);
    background: -webkit-radial-gradient(circle farthest-corner at center center, #477cac 0%, #042848 80%);
    background: -moz-radial-gradient(circle farthest-corner at center center, #477cac 0%, #042848 80%);
    position: absolute;
    left: -15px;
    top: 54px;
    padding: 0 3px 4px 3px;
    display: none;
    box-shadow: 4px 6px 5px 0px rgba(0,0,0,0.75);
}
.dropdown>li{
    text-align: left;
    margin-top: 1px;


}
.dropdown>li>a { /*посилання у випадаючему меню*/
    font-size: 13px;
    margin-bottom: 7px;
    font-family: "Commissioner", sans-serif;
    font-optical-sizing: auto;
    color: rgba(247, 247, 247, 1);
    padding: 4px 0 4px 30px;
    background-color:  #3c6c98;
    transform: scaleY(1.2); /* Увеличивает высоту букв на 20% */
    display: block;
}
.dropdown>li>a:hover { /*міняє колір при наведенні*/
    font-weight: 500;
    color: rgb(0, 1, 23);
}
.standard_header>nav>ul>li:hover .dropdown { /*відкривається при наведенні*/
    display: block;
}
.contacts_box { /*внутрішній контейнер для іконок та телефону*/
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    }
.icons_burger {
    display: none;
}
.i-menu { /*меню для мобилок*/
    display: none;
}
.contacts_box a:last-of-type {
    font-size: 14px;
    font-family: "Commissioner", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    color: rgba(247, 247, 247, 1);
}
.contacts_box a:first-of-type {
    width: 27px;
    height: 27px;
}
.contacts_box a:nth-of-type(2) {
    width: 27px;
    height: 27px;
}

.contacts_box>img {
    width: 27px;
    height: 27px;
}
.contacts_box>a>img {
    width: 27px;
    height: 27px;
}
/*-------------------------приховане меню--------------------*/
.icons_burger>a{
    display: none;
}
.menu-icon {
    display: none;
}
.menu {
    display: none;
}
/*-------------------------- main ---------------------------*/
.main_laptop {
    background: #477cac;
    background: radial-gradient(circle farthest-corner at center center, #477cac 0%, #042848 80%);
    background: -webkit-radial-gradient(circle farthest-corner at center center, #477cac 0%, #042848 80%);
    background: -moz-radial-gradient(circle farthest-corner at center center, #477cac 0%, #042848 80%);
    height: 540px;
    display: flex;
    justify-content: center;
    align-items: start;
    margin-top: 53px;
    }
.standard_main { /*контейнер шириною 880*/
    width: 880px;
    height: 540px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    margin-top: 30px;
}
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
.standard_main>h3 {
    font-family: "Commissioner", sans-serif;
    font-optical-sizing: auto;
    margin-top: 10px;
    margin-bottom: 0;
    font-size: 45px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    background: #4fb5e2;
    background: radial-gradient(ellipse farthest-corner at bottom left, #4fb5e2 0%, #ffffff 80%);
    background: -webkit-radial-gradient(ellipse farthest-corner at bottom left, #4fb5e2 0%, #ffffff 80%);
    background: -moz-radial-gradient(ellipse farthest-corner at bottom left, #4fb5e2 0%, #ffffff 80%);
    background-size: 400% 400%;
    background-repeat: no-repeat;
    /* Градиент как текст */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #4fb5e2; /* fallback */
    /* 🔁 Анимация */
    animation: gradientShift 6s ease infinite;
    animation-delay: 0s;
}
.standard_main>h1 {
    font-family: "Commissioner", sans-serif;
    font-optical-sizing: auto;
    width: 880px;
    font-size: 127px;
    font-weight: 800;
    text-align: center;
    display: block;
    letter-spacing: 6px;
    line-height: 1;
    margin-top:  -15px;
    background: #4fb5e2;
    background: radial-gradient(ellipse farthest-corner at bottom left, #4fb5e2 0%, #ffffff 80%);
    background: -webkit-radial-gradient(ellipse farthest-corner at bottom left, #4fb5e2 0%, #ffffff 80%);
    background: -moz-radial-gradient(ellipse farthest-corner at bottom left, #4fb5e2 0%, #ffffff 80%);
    background-size: 400% 400%;
    background-repeat: no-repeat;
    /* Градиент как текст */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #4fb5e2; /* fallback */
    /* 🔁 Анимация */
    animation: gradientShift 6s ease infinite;
    animation-delay: 3s;

}
.advertising_box { /*контейнер для тез та головної картинки*/
    width: 880px;
    height: 400px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}
.advertising_box_mobile {
    display: flex;
}
.advertising_box_mobile>img {
    display: none;
}
/*.form-group>img{*/
/*    */
/*}*/
.form-group-img-top{
    display: none;
}
.form-group>h2{
    display: none;
}
.general_ul {
    display: none;
}
.advertising_box>img {
    width: 620px;
    position: absolute;
    left: 150px;
    bottom: 55px;
    z-index: 9;

}
.left_ul { /*стилізація лівих тез*/
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 42px;
}
.left_ul>li {
    font-size: 14px;
    font-family: "Commissioner", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    color: rgba(255, 255, 255, 1);
    position: relative;
    padding-left: 25px;

}
.left_ul>li::before {
    content: url("img/icon_ul.svg");
    position: absolute;
    left: 0;
    top: 3px;
}
.right_ul {   /*стилізація правих тез*/
    display: flex;
    flex-direction: column;
    /*gap: 50px;*/
    margin-top: 42px;
}
.right_ul>li {
    font-size: 14px;
    font-family: "Commissioner", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    color: rgba(255, 255, 255, 1);
    position: relative;
    padding-right: 25px;
    text-align: right;
}
.right_ul>li::before {
    content: url("img/icon_ul.svg");
    position: absolute;
    right: 0;
    top: 3px
}
.right_ul>li:first-of-type {
    margin-bottom: 35px;
}
.right_ul>li:last-of-type {
    margin-top: 50px;
}
/*---------------------------- Форма зворотнього зв'язку-------------------------*/

.containerForm {
    width: 500px;
    height: 130px;
    background-image: url("img/forma.png");
    padding-top: 15px;
    margin: 0 auto;
    text-align: center;
    border-radius: 12px;
    position: absolute;
    bottom: -50px;
    right: 190px;
    z-index: 10;

    box-shadow: inset 8px 9px 7px 0 rgba(255, 255, 255, 0.25);
    -webkit-box-shadow: inset 8px 9px 7px 0 rgba(255, 255, 255, 0.25);
    -moz-box-shadow: inset 8px 8px 9px 0 rgba(255, 255, 255, 0.25);
}
.form-group > h2 {
   display: none;
}
.containerForm > h4{
    /*margin-top: 10px;*/
    margin-bottom: 10px;
    font-size: 14px;

    font-family: "Commissioner", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    color: rgba(247, 247, 247, 1);
}

.containerForm>p{
    font-size: 12px;
    margin-top: 12px;
    margin-left: 30px;
    font-family: "Commissioner", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    /*color: rgba(255, 255, 255, 1);*/
    color: #477cac;
    text-align: left;
}
.form-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;

}
.form-group>input[type="text"] {
    width: 210px;
    height: 40px;
    border-radius: 8px;
    border: none;
    padding: 10px;
    font-size: 16px;
    font-family: "Commissioner", sans-serif;
    font-optical-sizing: auto;
    box-shadow:
    0 4px 5px 0 rgba(0, 0, 0, 0.75);
}
.form-group>input::placeholder {
    font-size: 14px;
    color: #888; /
    font-family: "Commissioner", sans-serif;
    font-optical-sizing: auto;
    text-align: center;
}
.form-group>input:focus {
    outline: none;
}

.form-group>button {
    width: 210px;
    height: 40px;
    display: inline-block;
    border-radius: 8px;
    background: #f5f197;
    background: radial-gradient(circle farthest-corner at center center, #f5f197 0%, #e1d10f 80%);
    background: -webkit-radial-gradient(circle farthest-corner at center center, #f5f197 0%, #e1d10f 80%);
    background: -moz-radial-gradient(circle farthest-corner at center center, #f5f197 0%, #e1d10f 80%);
    /*border: none;*/
    font-weight: 600;
    cursor: pointer;
    font-size: 12px;
    font-family: "Commissioner", sans-serif;
    font-optical-sizing: auto;
    color: rgb(126, 91, 2);
    box-shadow:
    0 4px 5px 0 rgba(0, 0, 0, 0.75); /* Внешняя тень */
    border: 2px solid #b38b00;
}
.form-group>button:hover {
    background: #f5f197;
    background: radial-gradient(ellipse farthest-corner at center center, #f5f197 0%, #e1d10f 80%);
    background: -webkit-radial-gradient(ellipse farthest-corner at center center, #f5f197 0%, #e1d10f 80%);
    background: -moz-radial-gradient(ellipse farthest-corner at center center, #f5f197 0%, #e1d10f 80%);, 6, 0.25);
    transform: scale(1.025);
}
.form-group>button:active {
    transform: scale(0.95);
    box-shadow: 0 0 3px 4px rgba(0,0,0,0.65);
}
.notification {
    margin-top: 5px;
    color: #022902;
    display: none;
    font-family: "Commissioner", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-size: 12px;
    width: 210px;
    height: 40px;
    border-radius: 5px;
    position: absolute;
    left: 260px;
    bottom: 48px;
    /*top: 0;*/
    padding-top: 15px;
    box-shadow: inset 4px 4px 7px 0 rgba(255, 255, 255, 0.25), /* Внутрішня тінь */
    0 4px 5px 0 rgba(0, 0, 0, 0.75); /* Зовнішня тінь */
    background: #055a11;
    background: linear-gradient(333deg,#055a11 0%, #0da218 80%);
    background: -webkit-linear-gradient(333deg,#055a11 0%, #0da218 80%);
    background: -moz-linear-gradient(333deg,#055a11 0%, #0da218 80%);
}

/*--------------------------------- -ПРО НАС-----------------------------------------*/

.pronas_block {
    position: relative;
    height: 850px;
    margin-top: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.animated-gradient-text { /*анімірований бекграунд заголовку секції*/
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-size: 42px;
    line-height: 1;
    display: inline-block;
    background: linear-gradient(90deg, #081524 0%, #2c76b6 50%, #081524 100%);
    background-size: 200% 200%;
    background-repeat: no-repeat;
    background-clip: text;
    -webkit-background-clip: text;
    -ms-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #2c76b6; /* fallback */
    /* Анимация */
    animation: gradientFlow 6s ease infinite;
}
.long {
    text-align: center;
}

.pronas_block>p {
    font-family: "Commissioner", sans-serif;
    font-optical-sizing: auto;
    font-size: 20px;
    color: #032b53;
    margin-top: 7px;
    margin-bottom: 32px;
}

.card_box {
    width: 880px;
    height: 580px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 20px 25px;
    justify-content: center;
}

.card {
    width: 198px;
    height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    border: 3px solid #356691;
    border-radius: 9px;
}
.card>img {
    height: 120px;
    margin-bottom: 7px;
}
.card>h5 {
    font-family: "Commissioner", sans-serif;
    font-optical-sizing: auto;
    font-size: 16px;
    color: #023b66;
    margin-bottom: 7px;
}
.card>p {
    font-family: "Commissioner", sans-serif;
    font-optical-sizing: auto;
    font-size: 12px;
    text-align: center;

}
.read-more_pronas { /*Детальніше (посилання)*/
    font-family: "Commissioner", sans-serif;
    font-optical-sizing: auto;
    font-size: 14px;
    color: #023b66;
    font-weight: 500;
}
.read-more_pronas span { /*стрілки*/
    color: #09131f;
    transition: transform 0.3s ease, color 0.3s ease;
    display: inline-block;
    font-weight: 500;

}
.read-more_pronas:hover span {
    transform: translateX(3px);
    color: #1f4a6f;
}
.citata1 {
    height: 100px;
    width: 650px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    font-family: "Commissioner", sans-serif;
    font-optical-sizing: auto;
    font-size: 16px;
    color: #2e2e2e;
    text-align: center;

    background: #fefefe;
    background: radial-gradient(circle farthest-corner at center center, #fefefe 0%, #d8dcd8 80%);
    background: -webkit-radial-gradient(circle farthest-corner at center center, #fefefe 0%, #d8dcd8 80%);
    background: -moz-radial-gradient(circle farthest-corner at center center, #fefefe 0%, #d8dcd8 80%);

    box-shadow: 2px 22px 5px -18px rgba(0,0,0,0.75);
    -webkit-box-shadow: 2px 22px 5px -18px rgba(0,0,0,0.75);
    -moz-box-shadow: 2px 22px 5px -18px rgba(0,0,0,0.75);
}
.filosofiya{
    margin-top: 30px;
}
.dostizheniya{
    margin-top: 30px;
}
.dopVoz{
    margin-top: 30px;
}
.vzroslye{
    margin-top: 55px;
}
.zadacha_new{
    margin-top: 42px;
}
.missia{
    margin-top: 15px;
}
.dostizheniya_img{
    height: 115px;
    margin-top: 5px;
}
.dopVoz_img{
    height: 115px;
    margin-top: 5px;
}
.vzroslye_img{
    height: 115px;
    margin-top: 5px;
}
.zadacha_img{
   height: 113px;
    margin-top: 7px;
}
.missia_img{
    height: 115px;
    margin-top: 5px;
}
/*--------------------------Модально вікно та хрестик--------------------*/
.modal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.5);
    z-index: 10; /* выше карточек, но не перекрывает хэдер */
}
.modal_content {
    width: 875px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 24px 20px;
    background: #ffffff;
    border: 5px solid #356691;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: fadeInModal 0.4s ease-out;
    transition: box-shadow 0.3s ease;
}

/* Анимация появления модального окна */
@keyframes fadeInModal {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 🖱️ Скрываем скролл по умолчанию, показываем плавно при необходимости */
.modal_content::-webkit-scrollbar {
    width: 0;
    transition: width 0.3s ease;
}
.modal_content:hover::-webkit-scrollbar {
    width: 8px;
}
.modal_content::-webkit-scrollbar-thumb {
    background-color: #356691;
    border-radius: 4px;
}

/* Для Firefox */
.modal_content {
    scrollbar-width: thin;
    scrollbar-color: #356691 transparent;
}
.modal_close {
    width: 32px;
    height: 32px;
    background: #356691;
    color: white;
    font-size: 25px;
    /*text-align: center;*/
    /*line-height: 32px;*/
    border-radius: 50%;
    position: absolute;
    top: 12px;
    right: 12px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 3px;
}
.modal_close:hover {
  background-color: #ef0606;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);

}
/* Анимации */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal_zagolovok{
    color: #023b66;
    font-family: "Commissioner", sans-serif;
    font-optical-sizing: auto;
}
.modal_content>p{
    font-family: "Commissioner", sans-serif;
    font-optical-sizing: auto;
    text-align: justify;
}
.citata2{
    font-family: "Commissioner", sans-serif;
    width: 98%;
    height: 60px;
    background: #fefefe;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    margin: auto;
    color: #3c3a3a;
    background: radial-gradient(circle farthest-corner at center center, #fefefe 0%, #d8dcd8 80%);
    background: -webkit-radial-gradient(circle farthest-corner at center center, #fefefe 0%, #d8dcd8 80%);
    background: -moz-radial-gradient(circle farthest-corner at center center, #fefefe 0%, #d8dcd8 80%);

    box-shadow: 2px 22px 5px -18px rgba(0,0,0,0.75);
    -webkit-box-shadow: 2px 22px 5px -18px rgba(0,0,0,0.75);
    -moz-box-shadow: 2px 22px 5px -18px rgba(0,0,0,0.75););

}
.citata_dop_voz{
    font-family: "Commissioner", sans-serif;
    width: 98%;
    height: 60px;
    background: #fefefe;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    margin: auto;
    color: #3c3a3a;
    background: radial-gradient(circle farthest-corner at center center, #fefefe 0%, #d8dcd8 80%);
    background: -webkit-radial-gradient(circle farthest-corner at center center, #fefefe 0%, #d8dcd8 80%);
    background: -moz-radial-gradient(circle farthest-corner at center center, #fefefe 0%, #d8dcd8 80%);

    box-shadow: 2px 22px 5px -18px rgba(0,0,0,0.75);
    -webkit-box-shadow: 2px 22px 5px -18px rgba(0,0,0,0.75);
    -moz-box-shadow: 2px 22px 5px -18px rgba(0,0,0,0.75);
}
/*----------------------------ТРЕНЕРСЬКИЙ СКЛАД---------------------*/
.trenery_section {
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    align-items: center;

}

/* === Слайдер === */
.slider-coach,
.slider-container-coach {
    position: relative;
    width: 315px;
    height: 580px;
    margin: 40px auto 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    }

/* === Слайди=== */
.slide-coach {
    position: absolute;
    width: 100%;
    height: auto;
    transition: all 0.9s ease-in-out;
    opacity: 0;
    display: none;
   }

.slide-coach.slide-active-coach {
    opacity: 1;
    display: block;
    z-index: 2;
    border-radius: 8px;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

/* === Соседние слайды === */
.slide-coach.slide-prev-coach,
.slide-coach.slide-next-coach {
    opacity: 0.3;
    display: block;
    transform: scale(0.8);
}

.slide-coach.slide-prev-coach {
    left: -280px;
    top: 40px;
}

.slide-coach.slide-next-coach {
    right: -280px;
    top: 40px;
}

.slide-coach.slide-hidden-coach {
    display: none;
}

/* === Кнопки навігації === */
.slider-button-coach {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 3;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.slider-button-coach.left-coach { left: -70px; }
.slider-button-coach.right-coach { right: -70px; }

/* === Точки навигации === */
.dots-container-coach {
    position: absolute;
    bottom: 30px;
    display: flex;
    justify-content: center;
    width: 100%;
    z-index: 10;
    gap: 4px;
   }

.dot-coach {
    width: 8px;
    height: 4px;
    border-radius: 4px;
    background: #b3b0b0;
    /*box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);*/
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.dot-coach.dot-active-coach {
    background: #f40707;
    transform: scale(1.1);
}

/* === Картки тренера === */
.card_trener {
    background: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    width: 315px;
    height: 100%;
    box-sizing: border-box;

}

.card_trener img.trener {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* === Блок с регалиями === */
.regalia_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    height: 230px;
    padding: 0 15px;
    background: radial-gradient(circle farthest-corner at center center, #fefefe 0%, #d8dcd8 80%);
    background: -webkit-radial-gradient(circle farthest-corner at center center, #fefefe 0%, #d8dcd8 80%);
    background: -moz-radial-gradient(circle farthest-corner at center center, #fefefe 0%, #d8dcd8 80%);

}

.img_trenerName {
    width: 80%;
    height: auto;
    margin-bottom: 10px;
    box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.75);
    border-radius: 4px;
}

.regalia_box > h5 {
    margin: 10px 0 5px;
    font-size: 13px;
    color: #333;
    font-weight: 500;
}

.regalia_box > p {
    font-size: 13px;
    color: #555;
    line-height: 1.4;
}
/*------------------------------МАПА ТРЕНУВАЛЬНИХ ЗАЛІВ--------------------------*/
.locations_section{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: #477cac;
    background: radial-gradient(circle farthest-corner at center center, #477cac 0%, #042848 80%);
    background: -webkit-radial-gradient(circle farthest-corner at center center, #477cac 0%, #042848 80%);
    background: -moz-radial-gradient(circle farthest-corner at center center, #477cac 0%, #042848 80%);
    padding: 30px 0 70px 0;
}
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.animated-gradient-text2{
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-size: 42px;
    line-height: 1;
    text-align: center;
    background: #4fb5e2;
    background: radial-gradient(ellipse farthest-corner at bottom left, #4fb5e2 0%, #ffffff 80%);
    background: -webkit-radial-gradient(ellipse farthest-corner at bottom left, #4fb5e2 0%, #ffffff 80%);
    background: -moz-radial-gradient(ellipse farthest-corner at bottom left, #4fb5e2 0%, #ffffff 80%);
    background-size: 400% 400%;
    background-repeat: no-repeat;
    /* Градиент как текст */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #4fb5e2; /* fallback */
    /* 🔁 Анимация */
    animation: gradientShift 6s ease infinite;
    animation-delay: 0s;
}
.map-traning{
    width: 875px;
    margin-top: 30px;
    border-radius: 8px;
}
.address-button{
    margin-top: 15px;
    width: 210px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #f5f197;
    background: radial-gradient(circle farthest-corner at center center, #f5f197 0%, #e1d10f 80%);
    background: -webkit-radial-gradient(circle farthest-corner at center center, #f5f197 0%, #e1d10f 80%);
    background: -moz-radial-gradient(circle farthest-corner at center center, #f5f197 0%, #e1d10f 80%);
    /*border: none;*/
    font-weight: 600;
    cursor: pointer;
    font-size: 12px;
    font-family: "Commissioner", sans-serif;
    font-optical-sizing: auto;
    color: rgb(126, 91, 2);
    box-shadow:
    0 4px 5px 0 rgba(0, 0, 0, 0.75); /* Внешняя тень */
    border: 2px solid #b38b00;
}
.address-button:hover {
    transform: scale(1.025);
    background: #f5f197;
    background: radial-gradient(ellipse farthest-corner at center center, #f5f197 0%, #e1d10f 80%);
    background: -webkit-radial-gradient(ellipse farthest-corner at center center, #f5f197 0%, #e1d10f 80%);
    background: -moz-radial-gradient(ellipse farthest-corner at center center, #f5f197 0%, #e1d10f 80%);, 6, 0.25);
}
.address-button:active {
    transform: scale(0.975);
    box-shadow: 0 0 3px 4px rgba(0,0,0,0.65);
}

.details-text {
    cursor: pointer;
    text-decoration: none;
    /*font-weight: 500;*/
    font-size: 12px;
    font-family: "Commissioner", sans-serif;
    font-optical-sizing: auto;
    color: rgb(129, 94, 5);
    font-weight: bold;
}
#overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.45); /* напівпрозора тінь */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 999;
}
.popup {
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 30px;
    z-index: 1000;
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 0;
    visibility: hidden;
    position: fixed;
    width: 875px;
    height: 410px;
    border: 3px solid #356691; /* Бортики */
    top: 50%;
    left: 50%;
    overflow: auto;
    border-radius: 10px; /* Закругленные углы */
    font-size: 16px;
}
.popup.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
    /*box-shadow: -5px -1px 0px 200px rgba(0,0,0,0.32);*/
}
.popup.active,
#overlay.active {
    opacity: 1;
    visibility: visible;
}
.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 12px;
    /*font-weight: bold;*/
    width: 30px;
    height: 30px;
    background-color: #356691;
    color: white;
    /*border: solid 3px red;*/
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

}
.close-btn:hover{
    background-color: white;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    background-color:  #ef0606;
}

/*----------------------------------ВІДГУКИ----------------------------------------*/
.vidguky_section{
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
/* === Слайдер === */
.slider-vidguky,
.slider-container-vidguky {
    position: relative;
    width: 600px;
    height: 580px;
    margin: 30px auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
/* === Слайди === */
.slide-vidguk {
    position: absolute;
    width: 100%;
    height: auto;
    transition: all 0.9s ease-in-out;
    opacity: 0;
    display: none;
}

.slide-vidguk.slide-active-vidguk {
    opacity: 1;
    display: block;
    z-index: 2;
    border-radius: 8px;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}
/* === Соседние слайды === */
.slide-vidguk.slide-prev-vidguk,
.slide-vidguk.slide-next-vidguk {
    opacity: 0.3;
    display: block;
    transform: scale(0.8);
}

.slide-vidguk.slide-prev-vidguk {
    left: -280px;
    top: 40px;
}

.slide-vidguk.slide-next-vidguk {
    right: -280px;
    top: 40px;
}

.slide-vidguk.slide-hidden-vidguk {
    display: none;
}
/* === Кнопки навігації === */
.slider-button-vidguky {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 3;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.slider-button-vidguky.left-vidguk { left: -70px; }
.slider-button-vidguky.right-vidguk { right: -70px; }

/* === Точки навигации === */
.dots-container-vidguky {
    position: absolute;
    bottom: 30px;
    display: flex;
    justify-content: center;
    width: 100%;
    z-index: 10;
    gap: 8px;
}

.dot-vidguky {
    width: 17px;
    height: 8px;
    border-radius: 4px;
    background: #b3b0b0;
    /*box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);*/
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.dot-vidguky.dot-active-vidguky {
    background: #f40707;
    transform: scale(1.1);
}
/* === Картки тренера === */
.card-vidguk {
    background: radial-gradient(circle farthest-corner at center center, #fefefe 0%, #d8dcd8 80%);
    background: -webkit-radial-gradient(circle farthest-corner at center center, #fefefe 0%, #d8dcd8 80%);
    background: -moz-radial-gradient(circle farthest-corner at center center, #fefefe 0%, #d8dcd8 80%);

    border-radius: 8px;
    /*box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);*/
    box-shadow: 1px 22px 5px -18px rgba(0,0,0,0.75);
    -webkit-box-shadow: 1px 22px 5px -18px rgba(0,0,0,0.75);
    -moz-box-shadow: 1px 22px 5px -18px rgba(0,0,0,0.75);
    width: 580px;
    height: 580px;
    box-sizing: border-box;
    padding: 40px;
    scrollbar-gutter: stable;
    overflow-y: auto;
}
.top-card-box{
    display: flex;
    gap: 30px;
}
.top-card-box>img{
    width: 200px;
    height: 200px;
    /*border: 2px solid grey;*/
    border-radius: 50%;
    flex-shrink: 0;
}
.right-top-card-box{
    display: flex;
    flex-direction: column;
}
.right-top-card-box>h3{
    color: #032b53;
    /*color: #1e1d1d;*/
    font-size: 20px;
    display: inline-block;
    transform: scaleY(1.3);
    transform-origin: bottom;
}
.specialty {
    display: inline-block;
    align-self: flex-start;
    margin-top: 7px;
    padding: 8px 15px;
    border-radius: 5px;
    background-color: #f5f5f5;
    font-size: 12px;
    font-weight: 500;
    color: #474545;
    box-shadow: -19px 20px 20px -25px rgba(105, 102, 102, 0.8) inset; /* внутренняя тень */
}
.bottom-card-box{
    display: flex;
    padding-top: 20px;
    gap: 10px;
}
.left-bottom-card-box>span{
    display: inline-flex;
    align-items: flex-start;
    justify-content: flex-start;
    font-size: 84px;
    font-family: serif;
    background: black;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
    margin: 0;
    padding: 0;
    line-height: 1;
}
.right-bottom-card-box{
    padding-top: 8px;
    text-align: left;
    color: #474545;
    font-size: 15px;
    line-height: 1.6;
    font-family: "Segoe UI", sans-serif;
}



/*--------------------------------------FOOTER------------------------------------------*/
.footer-background-box{
    background-color: #e8e8e8;
}
.footer-container{
    width: 1080px;
    height: 600px;
    background-image: url("img/footer-loptop.png");
    background-size: contain;         /* Масштабирует изображение, чтобы покрыть весь блок */
    background-position: center;    /* Центрирует изображение */
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding-left: 108px;
    position: relative;
    margin: 0 auto;
}
.footer-child-01{
    display: none;
}
.footer-h4{
    font-family: "Mozilla Text", sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-align: right;
    margin: 8px 12px;
    color: #838181;
    transform: scaleY(1.2); /* увеличивает высоту на 50% */
    display: inline-block; /* важно для transform */
}
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
.footer-h3{
    font-family: "Commissioner", sans-serif;
    font-optical-sizing: auto;
    margin-top: 80px;
    margin-bottom: 0;
    font-size: 45px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    /* 🎨 Градиентный фон */
    background: radial-gradient(circle farthest-corner at center center, grey 0%, #aaa8a8 80%);
    background-size: 400% 400%;
    background-repeat: no-repeat;
    /* ✂️ Градиент как текст */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #fefefe; /* fallback */
    /* 🔁 Анимация */
    animation: gradientShift 6s ease infinite;
}
.footer-h2{
    font-family: "Commissioner", sans-serif;
    font-optical-sizing: auto;
    font-size: 65px;
    font-weight: 800;
    /*text-align: center;*/
    display: block;
    letter-spacing: 1px;
    line-height: 1;
    margin-top:  -5px;

    /* 🎨 Градиентный фон */
    background: radial-gradient(circle farthest-corner at center center, grey 0%, #aaa8a8 80%);
    background-size: 400% 400%;
    background-repeat: no-repeat;
    /* ✂️ Градиент как текст */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #fefefe; /* fallback */
    /* 🔁 Анимация */
    animation: gradientShift 6s ease infinite;
}
.footer-ul { /*стилізація лівих тез*/
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 42px;
    padding-left: 8px;
}
.footer-ul>li {
    font-size: 15px;
    font-family: "Commissioner", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    color: #838181;
    position: relative;
    padding-left: 25px;
}
ul.footer-ul > li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 10px; /* размер иконки */
    height: 10px;
    mask-image: url("img/icon_ul.svg");
    mask-repeat: no-repeat;
    mask-size: contain;
    background-color: gray; /* ← вот тут задаётся цвет */
}
/*--------------------------------Форма зворотнього зв'язку------------------------------*/
.footerForm{
    width: 320px;
    height: auto;
    background-image: none;
    padding-top: 0;
    margin: 0 auto;
    text-align: center;
    position: absolute;
    bottom: 70px;
    left: -340px;
    z-index: 10;
    border-radius: 8px;
    box-shadow: none;
}
.footerForm-group{
  flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
}

.footerForm>p{
    color: #555353;
    margin-top: 8px;
}
#phoneInput-footer{
    width: 80%;
    height: 30px;
    border-radius: 7px;
    border: 1px solid #555353;
}
.footerForm-group>button{
    width: 100%;
    height: 50px;
    font-size: 15px;
}
.footer-tel{
    display: none;
}
.notification-footer {
    margin-top: 5px;
    color: #022902;
    display: none;
    font-family: "Commissioner", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    width: 100%;
    height: 50px;
    font-size: 15px;
    border-radius: 5px;
    position: absolute;
    left: 0;
    bottom: 23px;
    /*top: 0;*/
    padding-top: 15px;
    box-shadow: inset 4px 4px 7px 0 rgba(255, 255, 255, 0.25), /* Внутрішня тінь */ 0 4px 5px 0 rgba(0, 0, 0, 0.75); /* Зовнішня тінь */
    background: #055a11;
    background: linear-gradient(333deg, #055a11 0%, #0da218 80%);
    background: -webkit-linear-gradient(333deg, #055a11 0%, #0da218 80%);
    background: -moz-linear-gradient(333deg, #055a11 0%, #0da218 80%);
}

/*-------------------------ТРЕНУВАЛЬНІ ЗАЛИ ЦЕНТРУ--------------------------*/

/*------------------------Секція з доджанамі---------------------*/
.section-dodjangs{
    width: 880px;
    margin: 20px auto 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
/*-------------------------Київ-----------------------------------*/
.kiev-dodjangs{
    width: 880px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 50px auto 20px auto;
}
.card-dodjang{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 198px;
    height: 474px;
    border-radius: 5px;
}
.card-dodjang>img{
    width: 198px;
    /*height: 150px;*/
    border-radius: 5px;
}
.card-dodjang>h3{
    margin-top: 25px;
    /*margin-bottom: 15px;*/
    font-size: 16px;
    font-weight: 500;
    color: #333;
}


.card-dodjang>p{
    color: #333;
    font-size: 13px;
    text-align: center;
    margin-bottom: 35px;
}
.stiker{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 30px;
    border-radius: 3px;
    background: #fefefe;
    background: radial-gradient(circle farthest-corner at center center, #fefefe 0%, #d8dcd8 80%);
    background: -webkit-radial-gradient(circle farthest-corner at center center, #fefefe 0%, #d8dcd8 80%);
    background: -moz-radial-gradient(circle farthest-corner at center center, #fefefe 0%, #d8dcd8 80%);
    font-size: 11px;
    color: #555353;
    box-shadow: -2px 11px 2px -10px rgba(0,0,0,0.65);
    margin-bottom: 25px;
}
.dj-button{
    width: 198px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: #f5f197;
    background: radial-gradient(circle farthest-corner at center center, #f5f197 0%, #e1d10f 80%);
    background: -webkit-radial-gradient(circle farthest-corner at center center, #f5f197 0%, #e1d10f 80%);
    background: -moz-radial-gradient(circle farthest-corner at center center, #f5f197 0%, #e1d10f 80%);
    border: 2px solid #b38b00;
    font-weight: 600;
    cursor: pointer;
    font-size: 12px;
    font-family: "Commissioner", sans-serif;
    font-optical-sizing: auto;
    color: rgb(126, 91, 2);
    box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.75); /* Внешняя тень */
}
.dj-button:hover{
    transform: scale(1.025);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.dj-button:active {
    transform: scale(0.95);
    box-shadow: 0 0 3px 4px rgba(0,0,0,0.65);
}
/*--------------------------------Зали київській області-------------------------*/
.region-dodjangs{
    width: 680px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin: 50px auto 50px auto;
}
.address-region-h3{
    text-align: center;
}
/*-----------------------------Онлайн тхеквондо----------------------------------*/
.online-dodjangs{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 50px auto 70px auto;
}
.card-online{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
}
.card-online>img{
    width: 198px;
    border-radius: 5px;
}
.online-text>h3{
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 500;
    color: #333;
}
.online-text>p{
    color: #333;
    font-size: 14px;
    text-align: center;
    margin-bottom: 22px;
}
.online-text{
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
/*--------------------Меню спортзалів-------------------*/
.nav-dodjangs{
    display: flex;
    width: 875px;
    margin-bottom: 50px;
    gap: 7px;
}
.nav-dodjangs>p{
    color: #032b53;
    font-size: 15px;
    transform: scaleY(1.2);
    font-family: "Commissioner", sans-serif;
    font-optical-sizing: auto;
}
.nav-dodjangs>a{
    font-size: 15px;
    font-family: "Commissioner", sans-serif;
    font-optical-sizing: auto;
    color: #333;
    font-weight: 500;
    transform: scaleY(1.2);
}
/*---------------------------ЩО ЦЕ------------------------------*/
.main-tkd{
    background: #477cac;
    background: radial-gradient(circle farthest-corner at center center, #477cac 0%, #042848 80%);
    background: -webkit-radial-gradient(circle farthest-corner at center center, #477cac 0%, #042848 80%);
    background: -moz-radial-gradient(circle farthest-corner at center center, #477cac 0%, #042848 80%);
    height: 450px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 53px;
    flex-direction: column;
}
.h1-tkd{
    margin-top: 42px;
    font-size: 55px ;
    font-family: "Commissioner", sans-serif;
    font-optical-sizing: auto;
    /*margin-bottom: 20px;*/
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    background: #4fb5e2;
    background: radial-gradient(ellipse farthest-corner at bottom left, #4fb5e2 0%, #ffffff 80%);
    background: -webkit-radial-gradient(ellipse farthest-corner at bottom left, #4fb5e2 0%, #ffffff 80%);
    background: -moz-radial-gradient(ellipse farthest-corner at bottom left, #4fb5e2 0%, #ffffff 80%);
    background-size: 400% 400%;
    background-repeat: no-repeat;
    /* Градиент как текст */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #4fb5e2; /* fallback */
    /* 🔁 Анимация */
    animation: gradientShift 6s ease infinite;
    animation-delay: 0s;
}
.tkd-top-box{
    width: 880px;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.tkd_img_dojang_heder{
   height: 350px;
}
.foto-box-dvoynaya{
    display: flex;
    width: 436px;
    height: auto;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 7px;
}
.foto-box-dvoynaya img{
    width: 205px;
    height: 150px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2),
    0 4px 8px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
  }
.box-shadow-img{
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2),
    0 4px 8px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
}
/*----------------------ДОВІДНИК ТХКВОНДО----------------------------------*/
.dovidnyk-menyu-box{
    display: flex;
    width: 480px;
    margin: 20px auto;
    opacity: 0;
    transform: scale(0.9);
    filter: brightness(2);
    animation: flashAppear 1s ease-out forwards;
}
@keyframes flashAppear {
     0% {
         opacity: 0;
         transform: scale(0.9);
         filter: brightness(2);
     }
     40% {
         opacity: 1;
         transform: scale(1.05);
         filter: brightness(1.7);
     }
     70% {
         transform: scale(1.02);
         filter: brightness(1.3);
     }
     100% {
         opacity: 1;
         transform: scale(1);
         filter: brightness(1);
     }
 }


.dovidnyk-menyu{
    display: flex;
    width: 240px;
    flex-wrap: wrap;
}
.dovidnyk-menyu-rozdil{
    width: 120px;
    height: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 2px #3c3a3a;
    border-radius: 2px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    color: #3c3a3a;
    background: radial-gradient(circle farthest-corner at center center, #fefefe 0%, #d8dcd8 80%);
    background: -webkit-radial-gradient(circle farthest-corner at center center, #fefefe 0%, #d8dcd8 80%);
    background: -moz-radial-gradient(circle farthest-corner at center center, #fefefe 0%, #d8dcd8 80%);
}
.dovidnyk-menyu-rozdil:hover{
    transform: scale(0.97);
    box-shadow: 0 0 0 1px #3c3a3a;
    background: gray;
    color: black;
}
.title{
    font-size: 12px;
}
.subtitle{
    font-size: 11px;
    margin-top: -3px;
}
.dovidnyk-menyu-rozdil.natysnuta-button{
    background: white;
    box-shadow: none;
    color: #032b53;
    border-radius: 2px;
    transform: scale(0.97, 0.88);
}
.dovidnyk-menyu-rozdil.natysnuta-button span{
    font-size: 13px;
    font-weight: 500;
    margin-top: -3px;
}
.dovinyk-central-section{
    width: 880px;
    height: auto;
    display: flex;
    gap: 40px;
    margin: 0 auto;
}
.kolonka-dovidnyka {
    width: 420px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: justify;
}
.animated-gradient-text-dovidnyk{
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-size: 42px;
    line-height: 1;
    /*display: inline-block;*/
    background: linear-gradient(90deg, #081524 0%, #2c76b6 50%, #081524 100%);
    background-size: 200% 200%;
    background-repeat: no-repeat;
    background-clip: text;
    -webkit-background-clip: text;
    -ms-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #2c76b6; /* fallback */
    /* Анимация */
    animation: gradientFlow 6s ease infinite;
    display: block;
    width: max-content;
    margin: 30px auto 0 auto;
}
.utochnyuyuchiy-text-dovidnyk{
    font-family: "Commissioner", sans-serif;
    font-optical-sizing: auto;
    font-size: 20px;
    color: #032b53;
    display: block;
    width: max-content;
    margin: 5px auto 20px auto;
}
.nav-nagoru{

    margin: 35px 10% 0 0;
    height: 30px;
    display: flex;
    justify-content: flex-end;
}
.nav-nagoru a{
    font-family: "Commissioner", sans-serif;
    font-optical-sizing: auto;
    color: #333;
    font-weight: 500;
    font-size: 14px;
    transform: scaleY(1.2);
    /*color: #032b53;*/
}
/*---------------KIBON----------------*/
.dovinyk-rozdil-menyu-box{
    width: 880px;
    height: auto;
    display: flex;
    justify-content: center;
    margin: 40px auto 25px auto;
    opacity: 0;
    transform: scale(0.9);
    filter: brightness(2);
    animation: flashAppear 1s ease-out forwards;
    animation-delay: 1s;
}
.dovinyk-rozdil-menyu-box-poomsae{
    width: 750px;
    height: auto;
    display: flex;
    justify-content: center;
    margin: 40px auto 25px auto;
    opacity: 0;
    transform: scale(0.9);
    filter: brightness(2);
    animation: flashAppear 1s ease-out forwards;
    animation-delay: 1s;
}
@keyframes flashAppear {
    0% {
        opacity: 0;
        transform: scale(0.9);
        filter: brightness(2);
    }
    40% {
        opacity: 1;
        transform: scale(1.05);
        filter: brightness(1.7);
    }
    70% {
        transform: scale(1.02);
        filter: brightness(1.3);
    }
    100% {
        opacity: 1;
        transform: scale(1);
        filter: brightness(1);
    }
}
.kibon-menyu-rozdil{
    width: 200px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    /*border-radius: 2px;*/
    box-shadow: 0 0 0 2px darkred;
    background: #f35555;
    background: radial-gradient(circle farthest-corner at center center, #f35555 0%, #cb1212 80%);
    background: -webkit-radial-gradient(circle farthest-corner at center center, #f35555 0%, #cb1212 80%);
    background: -moz-radial-gradient(circle farthest-corner at center center, #f35555 0%, #cb1212 80%);
    font-weight: 400;
    text-decoration: none;
    color: white;
}
.kibon-menyu-rozdil-poomsae{
    width: 250px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    /*border-radius: 2px;*/
    box-shadow: 0 0 0 2px darkred;
    background: #f35555;
    background: radial-gradient(circle farthest-corner at center center, #f35555 0%, #cb1212 80%);
    background: -webkit-radial-gradient(circle farthest-corner at center center, #f35555 0%, #cb1212 80%);
    background: -moz-radial-gradient(circle farthest-corner at center center, #f35555 0%, #cb1212 80%);
    font-weight: 400;
    text-decoration: none;
    color: white;
}
.kibon-menyu-rozdil:hover{
    width: 200px;
    height: 50px;
    background: white;
    color: #d80404;
    font-weight: 500;
    box-shadow: 0 2px 0 0 darkred;
    font-size: 18px;
}
.kibon-menyu-rozdil-poomsae:hover{
    width: 250px;
    height: 50px;
    background: white;
    color: #d80404;
    font-weight: 500;
    box-shadow: 0 2px 0 0 darkred;
    font-size: 18px;
}
.kibon-menyu-rozdil.natysnuta-v-kibon{
    width: 200px;
    height: 50px;
    background: white;
    color: #d80404;
    font-weight: 500;
    box-shadow: 0 2px 0 0 darkred;
    font-size: 18px;
}
.kibon-menyu-rozdil.natysnuta-v-kibon-poomsae{
    width: 350px;
    height: 50px;
    background: white;
    color: #d80404;
    font-weight: 500;
    box-shadow: 0 2px 0 0 darkred;
    font-size: 18px;
}

/*---------------tehnika--------------*/
.nav-dodjangs.nav-dop-tehnik{
    margin: 15px 10px 30px 17%;
}
.book-section{
    width: 95vw;
    border-radius: 4px;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: auto;
    gap: 0;
}

.nazva-tehniky-ramka{
    width: 840px;
    height: 30px;
    box-shadow:
            -4px 0 4px -2px rgba(0, 0, 0, 0.3),  /* тінь зліва */
            0 4px 4px -2px rgba(0, 0, 0, 0.3);   /* тінь знизу */
    border-radius: 4px;
    margin-top: 30px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    padding-left: 10px;
}
.nazva-tehniky-ramka>h4{
    display: inline-block;
    transform: scaleY(1.2);
    transform-origin: bottom;

}
.box-photo-poyasnennya{
    width: 840px;
    height: 301px;
    display: flex;
    justify-content: space-between;
    padding: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
}
.photo-tehnik{
    width: auto;
    height: 281px;
    /*border: 2px solid rebeccapurple;*/
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2),
    0 4px 8px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
}
.poyasnennya-tehnik{
    width: 550px;
    height: 281px;
    /*border: 2px solid orangered;*/
}
.movement{
    width: 550px;
    height: 140px;
    /*border: 2px solid #022902;*/
}
.deduction-fectors{
    width: 550px;
    height: 140px;
    /*border: 2px solid #2f4fb6;*/
}
.ramka-movement{
    width: 550px;
    height: 35px;
    background: #055505;
    border: 4px solid #107310;
    border-radius: 2px;
    padding: 5px 5px 5px 20px;
    display: flex;
    align-items: center;
    color: white;
}
.text-opysu-tehnik{
    width: 550px;
    height: 105px;
    display: flex;
    flex-direction: column;
    padding: 7px 7px 7px 30px;
}
.ramka-deduction-fectors{
    width: 550px;
    height: 35px;
    border: 5px solid #ea0606;
    border-radius: 2px;
    padding: 5px 5px 5px 20px;
    display: flex;
    align-items: center;
    color: #ea0606;
    font-weight: 700;
}
/*-----------------------SLYDER-TEHNIKA-----------------*/

.kartochka{
    display: flex;
    flex-direction: column;
    /*border: 2px solid red;*/
}
.slider-tehnik{
    display: flex;
    flex-direction: column;
}
/*---------------------------Kartochka_video---------------------*/
.box-photo-poyasnennya-with-video{
    /*border: 2px solid green;*/
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    height: 570px;
    width: 840px;
    display: flex;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
}


.video-mobil{
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2),
    0 4px 8px rgba(0, 0, 0, 0.15);
}
.box-with-video-01{
    height: 300px;
    width: 840px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    /*border: 2px solid blueviolet;*/
}
.box-with-video{
    height: 300px;
    width: 840px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    /*border: 2px solid blueviolet;*/
}
.photo-tehnik-with-video{
    width: auto;
    height: 281px;
    /*border: 2px solid rebeccapurple;*/
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2),
    0 4px 8px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
}
.poyasnennya-with-video{
    width: 840px;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    /*border: 2px solid orange;*/
    margin-top: 10px;
}
.movement-with-video{
    width: 390px;
    height: 235px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
   }

.ramka-movement-with-video{
    width: 390px;
    height: 35px;
    background: #055505;
    border: 4px solid #107310;
    border-radius: 4px;
    padding: 5px 5px 5px 20px;
    display: flex;
    align-items: center;
    color: white;
}
.text-with-video{
    width: 390px;
    height: 195px;
    display: flex;
    flex-direction: column;
    padding: 7px 7px 7px 30px;
    /*border: 2px solid magenta;*/
}
.text-with-video-01{
    width: 390px;
    height: 195px;
    display: flex;
    flex-direction: column;
    padding: 7px 7px 7px 30px;
    /*border: 2px solid magenta;*/
}
.deduction-fectors-with-video{
    width: 390px;
    height: 235px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.ramka-deduction-fectors-with-video{
    height: 35px;
    width: 390px;
    border: 5px solid #005bb5;
    background: #023b66;
    border-radius: 4px;
    padding: 5px 5px 5px 20px;
    display: flex;
    align-items: center;
    color: white;
    font-weight: 700;
}
/*-----------------ПРИХОВАНЕ-ПОМИЛКИ-ВИКОНАННЯ ТЕХНІКИ-----------------*/
.read-more_tehnek { /*Детальніше (посилання)*/
    font-family: "Commissioner", sans-serif;
    font-optical-sizing: auto;
    font-size: 14px;
    color: #ea0606;
    font-weight: 500;
    margin-top: 7px;
}
.read-more_tehnek span { /*стрілки*/
    color: #ea0606;
    transition: transform 0.3s ease, color 0.3s ease;
    display: inline-block;
    font-weight: 500;

}
.read-more_tehnek:hover span {
    transform: translateX(3px);
    color: #8e0404;
}
/*------------------ВІКНА-----------------*/
.modal-overlay-pomylky {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    animation: fadeIn-pomylky 0.3s ease;
}

.modal-box-pomylky {
    background: #fff;
    /*border: 5px solid #082e4f;*/
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
    width: 840px;
    max-width: 95%;
    margin-top: 20px;
    padding: 30px 50px;
    position: relative;
    animation: slideDown-pomylky 0.3s ease;
}

.modal-box-pomylky h3 {
    color: #082e4f;
    margin-top: 0;
    font-weight: 500;
}

.modal-close-pomylky {
    position: absolute;
    top: 10px;
    right: 10px;
    background: gray;
    color: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 16px;
    text-align: center;
    line-height: 30px;
    cursor: pointer;
}
@keyframes fadeIn-pomylky {
    from {opacity: 0;}
    to {opacity: 1;}
}

@keyframes slideDown-pomylky {
    from {transform: translateY(-20px); opacity: 0;}
    to {transform: translateY(0); opacity: 1;}
}
/*------------------------MAKKI------------------------*/


.menyu-rozdily-tehnik{
    display: flex;
    width: 420px;
    height: 46px;
    border-radius: 4px;
    /*border: 3px solid #555353;*/
    /*background-color: #555353;*/
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-left: 28px;
}
.button-menyu-rozdily-tehnik{
    width: 130px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    border: 2px solid #b38b00;
    background: #f5f197;
    background: radial-gradient(circle farthest-corner at center center, #f5f197 0%, #e1d10f 80%);
    background: -webkit-radial-gradient(circle farthest-corner at center center, #f5f197 0%, #e1d10f 80%);
    background: -moz-radial-gradient(circle farthest-corner at center center, #f5f197 0%, #e1d10f 80%);
}
.button-last-menyu-rozdily-tehnik{
    width: 130px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #b38b00;
    border-radius: 3px;
    background: #f5f197;
    background: radial-gradient(circle farthest-corner at center center, #f5f197 0%, #e1d10f 80%);
    background: -webkit-radial-gradient(circle farthest-corner at center center, #f5f197 0%, #e1d10f 80%);
    background: -moz-radial-gradient(circle farthest-corner at center center, #f5f197 0%, #e1d10f 80%);
}
.button-last-menyu-rozdily-tehnik:hover{
    width: 129px;
    height: 21px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);

}

.button-menyu-rozdily-tehnik:hover{
     width: 129px;
     height: 21px;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
 }
.button-last-menyu-rozdily-tehnik:active {
    transform: scale(0.95);
    box-shadow: 0 0 3px 4px rgba(0,0,0,0.65);
}

.button-menyu-rozdily-tehnik:active {
    transform: scale(0.95);
    box-shadow: 0 0 3px 4px rgba(0,0,0,0.65);
}
.dovinyk-central-section a{
    font-size: 12px;
    font-family: "Commissioner", sans-serif;
    font-optical-sizing: auto;
    color: #937302;
    font-weight: 500;
    transform: scaleY(1.2);
}
.natisnuta-button-makki{
    width: 130px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    border: 2px solid #454444;
    background-color: #7e7b7b;
    font-size: 12px;
    color: white;
}
.natisnuta-last-button-makki{
    width: 130px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    border: 2px solid #454444;
    background-color: #7e7b7b;
    font-size: 12px;
    color: white;
}
/*--------------------------УДАРНА ПОВЕРХНЯ---------------------------*/
.img_tehnika{
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2),
    0 4px 8px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    width: 400px;
    margin: 10px auto;
}
.nav-tehnika{
        display: flex;
        justify-content: center;
        width: 875px;
        margin-bottom: 50px;
        padding: 10px;
        gap: 7px;
        margin-top: 20px;
        background: radial-gradient(circle farthest-corner at center center, #fefefe 0%, #d8dcd8 80%);
        background: -webkit-radial-gradient(circle farthest-corner at center center, #fefefe 0%, #d8dcd8 80%);
        background: -moz-radial-gradient(circle farthest-corner at center center, #fefefe 0%, #d8dcd8 80%);
    }
.nav-tehnika>a{
    font-size: 15px;
    font-family: "Commissioner", sans-serif;
    font-optical-sizing: auto;
    color: #333;
    font-weight: 500;
    transform: scaleY(1.2);
}


.nav-tehnika>p{
    color: #032b53;
    font-size: 15px;
    transform: scaleY(1.2);
    font-family: "Commissioner", sans-serif;
    font-optical-sizing: auto;
}

.left-mobile{
    text-indent: 20px;
}
/*---------------------POOMSAE-TAEGEUK-----------------------*/

.dovidnyk-menyu-box-taegeuk{
    display: flex;
    width: 490px;
    margin: 20px auto;
    opacity: 0;
    transform: scale(0.9);
    filter: brightness(2);
    animation: flashAppear 1s ease-out forwards;

    gap: 10px;
}
.dovidnyk-menyu-taegeuk {
    display: flex;
    width: 240px;
    flex-wrap: wrap;
}
.dovidnyk-menyu-rozdil-taegeuk{

    width: 120px;
    height: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 2px #b38b00;
    border-radius: 2px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    color: #675002;
    background: #f5f197;
    background: radial-gradient(circle farthest-corner at center center, #f5f197 0%, #e1d10f 80%);
    background: -webkit-radial-gradient(circle farthest-corner at center center, #f5f197 0%, #e1d10f 80%);
    background: -moz-radial-gradient(circle farthest-corner at center center, #f5f197 0%, #e1d10f 80%);

}
    .dovidnyk-menyu-rozdil-taegeuk:hover{
        transform: scale(0.99);
        /*box-shadow: 0 0 0 1px #b38b00;*/
        background: #f5f197;
        background: radial-gradient(ellipse farthest-corner at center center, #f5f197 0%, #e1d10f 80%);
        background: -webkit-radial-gradient(ellipse farthest-corner at center center, #f5f197 0%, #e1d10f 80%);
        background: -moz-radial-gradient(ellipse farthest-corner at center center, #f5f197 0%, #e1d10f 80%);, 6, 0.25);

    }

.title{
    font-size: 12px;
}
.subtitle{
    font-size: 11px;
    margin-top: -3px;
}
/*---------------------------------TAEGEUK-1-DJANG----------------------*/

.nav-poomsae{
    width: 100vw;
    height: 30px;
    display: flex;
    justify-content: start;
    align-items: center;
    background-color: white;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    background-position: top;

}
.nav-poomsae>a{
    font-family: "Commissioner", sans-serif;
    font-optical-sizing: auto;
    color: #333;
    font-weight: 500;
    transform: scaleY(1.2);
    font-size: 12px;
    margin-left: 17vw;
}
.simpol-poomsae-box{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 70px auto 0 auto;
    gap: 25px;
}
.simpol-poomsae {
    width: 400px;
    height: 218px;
    border-radius: 25px;
    /*box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2),*/
    /*0 4px 8px rgba(0, 0, 0, 0.15);*/

}
.video-poomsae{
    margin: 20px auto 0 auto;
    width: 900px;
    height: 506px;
    border-radius: 15px;

    box-shadow:
            0 10px 20px rgba(0, 0, 0, 0.25),
            0 6px 6px rgba(0, 0, 0, 0.22);
}
.poosae-slaider-name-tehnik{
    width: 315px;
    height: 40px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 2px;

}
.poosae-slaider-name-tehnik>span{
    width: 50px;
    height: 50px;
    background-color: #FF9B51;
    border-radius: 7px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
            0 10px 20px rgba(0, 0, 0, 0.25),
            0 6px 6px rgba(0, 0, 0, 0.22);
    font-weight: 500;
    color: white;
    line-height: 150%;
}




.poomsae-name-tehnik-box{
    width: 265px;
    height: 50px;
    background-color:  #25343F;

    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow:
            0 10px 20px rgba(0, 0, 0, 0.25),
            0 6px 6px rgba(0, 0, 0, 0.22);

}
.poomsae-name-tehnik-box>h5{
    color: white;
    font-weight: 500;
}
.shemaRuhu-box{
    display: flex;
    justify-content: center;
    align-items: start;
    gap: 55px;
    margin-top: 10px;
    /*border: 2px solid red;*/
}
.photoRuhiv-box{
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    /*border: 2px solid yellow;*/

    }


.poyasnenyzRuhiv-ramka{
         display: block;
         width: 505px;
         height: auto;
         border: 5px solid #a7b7ec;
         border-radius: 3px;
         padding: 7px 5px 7px 10px;
         margin: 20px auto 40px auto;
     }
.utocnyuvalna-ramka-01{
    width: 840px;
    height: auto;
    border: 5px solid #a7b7ec;
    border-radius: 3px;
    padding: 7px 5px 7px 10px;
}
.utocnyuvalna-ramka-02{
    width: 840px;
    height: auto;
    border: 5px solid #a7b7ec;
    border-radius: 3px;
    padding: 7px 5px 7px 10px;
}



.photoRuhiv-box>img{
    box-shadow:
            0 10px 20px rgba(0, 0, 0, 0.25),
            0 6px 6px rgba(0, 0, 0, 0.22);
    border-radius: 7px;
}
.photoRuhiv-box>h5{
    margin: 10px 0;
}

.poyasnenyzRuhiv-ramka-chervona{
    display: block;
    width: 505px;
    height: auto;
    /*border: 5px solid #ff0404;*/
    border-radius: 3px;
    padding: 7px 5px 7px 10px;
    margin: 20px auto 40px auto;
}
.tablycyaRuhiv-box{
    margin: 20px 0;
    box-shadow:
            0 10px 20px rgba(0, 0, 0, 0.25),
            0 6px 6px rgba(0, 0, 0, 0.22);
    padding: 15px;
}
.tablycyaRuhiv{
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 7px;

}
.stroka-tablycyaRuhiv-01{
    width: 480px;
    height: 45px;
    /*border: 2px solid blue;*/
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #BFC9D1;
    border-radius: 5px;
}
.stroka-tablycyaRuhiv-02{
    width: 480px;
    height: 45px;
    /*border: 2px solid blue;*/
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #EAEFEF;
    border-radius: 5px;
}
.yacheykaSmall-tablycyaRuhiv{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 45px;
    height: 45px;
    border: 1px solid white;
    border-radius: 5px;
}
.yacheykaSmallMidl-tablycyaRuhiv{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 65px;
    height: 45px;
    border: 1px solid white;
    border-radius: 5px;
    font-size: 14px;
    padding: 5px;
}
.yacheykaMidl-tablycyaRuhiv>p{
    font-size: 13px;
}
.yacheykaMidl-tablycyaRuhiv{
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    width: 170px;
    height: 45px;
    border: 1px solid white;
    border-radius: 5px;
    padding: 5px 5px 5px 12px;
}
.yacheykaBig-tablycyaRuhiv{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 230px;
    height: 45px;
    border: 1px solid white;
    border-radius: 5px;
    padding: 5px 5px 5px 12px;
}
.yacheykaBig-tablycyaRuhiv>p{
    font-size: 13px;
}
.taegeuk-footer{
    width: 880px;
    height: 60px;
    margin: 0 auto 10px auto;
    display: flex;
    align-items: start;
    justify-content: start;
    }
.taegeuk-footer>img{
    width: 250px;
    border-radius: 5px;
    box-shadow:
            0 10px 20px rgba(0, 0, 0, 0.25),
            0 6px 6px rgba(0, 0, 0, 0.22);
    margin-left: 10px;

}

