﻿/* Октагон */
.octagon {
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    overflow: hidden;
}

/* Фоны и текст */
.bg-light {
    background-color: #f8f9fa !important;
}

.fs-2hx {
    font-size: 2.5rem !important;
}

.text-gray-900 {
    color: #181C32 !important;
}

.text-gray-600 {
    color: #7E8299 !important;
}

.text-muted {
    color: #A1A5B7 !important;
}

.fw-bold {
    font-weight: 600 !important;
}

.fw-semibold {
    font-weight: 500 !important;
}

/* Кнопка primary */
.btn-primary {
    background-color: #009EF7;
    border-color: #009EF7;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 0.475rem;
}

/* Карточки */
.card {
    border: none;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

.card-body {
    padding: 2rem;
}

/* Отступы */
.p-lg-17 {
    padding: 2.5rem !important;
}

.mb-10 {
    margin-bottom: 2.5rem !important;
}

.team-carousel-container {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.team-carousel-wrapper {
    display: flex;
    transition: transform 0.3s ease;
}

.team-carousel-slide {
    flex-shrink: 0;
    padding: 0 10px;
    box-sizing: border-box;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 10;
    transition: background 0.2s;
}

    .carousel-btn:hover {
        background: white;
    }

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}
.simple-carousel-container {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.simple-carousel-wrapper {
    display: flex;
    transition: transform 0.3s ease;
}

.simple-carousel-slide {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 10px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.8);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 10;
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

.carousel-btn:hover {
    background: white;
}

#kt_app_header_menu .menu-link.active {
    border-bottom: none !important;
    box-shadow: none !important;
}

    #kt_app_header_menu .menu-link.active::after {
        display: none !important;
    }

.app-header-menu .menu-link.active {
    border-bottom: 0 !important;
}

@media (min-width: 992px) {
    .d-none.d-lg-flex {
        display: flex !important;
    }
}