:root {
    --cherry-50: #fef2f2;
    --cherry-100: #fee2e2;
    --cherry-200: #fecaca;
    --cherry-300: #fca5a5;
    --cherry-400: #f87171;
    --cherry-500: #ef4444;
    --cherry-600: #dc2626;
    --cherry-700: #b91c1c;
    --cherry-800: #991b1b;
    --cherry-900: #7f1d1d;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--cherry-900);
    background-color: var(--cherry-50);
}
.navbar {
    background-color: var(--cherry-800);
}
.navbar-brand, .nav-link {
    color: var(--cherry-50) !important;
}
.nav-link:hover {
    color: var(--cherry-200) !important;
}
.hero-slider {
    background: linear-gradient(135deg, var(--cherry-700), var(--cherry-900));
    color: var(--cherry-50);
    position: relative;
}
.hero-slider .carousel-item {
    height: 100vh;
}
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
    color: white;
}
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.section-title {
    color: var(--cherry-800);
    border-bottom: 2px solid var(--cherry-400);
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: 30px;
}
.advantage-icon {
    color: var(--cherry-600);
    font-size: 3rem;
    margin-bottom: 1rem;
    transition: transform 0.3s ease-in-out;
}
.advantage-icon:hover {
    transform: scale(1.2);
}
.portfolio-item {
    transition: transform 0.3s ease-in-out;
}
.portfolio-item:hover {
    transform: scale(1.05);
}
.portfolio-item img {
    transition: transform 0.3s ease-in-out;
}
.portfolio-item:hover img {
    transform: scale(1.1);
}
.contact-form {
    background-color: var(--cherry-100);
    padding: 30px;
    border-radius: 10px;
}
.btn-cherry {
    background-color: var(--cherry-600);
    color: var(--cherry-50);
    border: none;
}
.btn-cherry:hover {
    background-color: var(--cherry-700);
    color: var(--cherry-50);
}
footer {
    background-color: var(--cherry-800);
    color: var(--cherry-50);
}
#logo {
    width: 50px;
    height: 50px;
    margin-right: 10px;
}
.slick-prev:before, .slick-next:before {
    color: var(--cherry-600);
}
.video-background {
    position: relative;
    width: 100%;
    height: 100vh; /* или другой размер вашей карусели */
    overflow: hidden;
}

.video-background iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.logo-wrap {
    width:50px;
    height:50px;
    display: inline-table;
    overflow: hidden;
}

.logo-wrap img {
    scale: 1.45;
}
#carousel-control-prev, #carousel-control-next {
    display: none;
}

.image-wrap {
    height:17rem;
    overflow:hidden;
    margin-bottom: 20px;
}
h3.image-title {
    height: 5rem;
}
.portfolio-slider-frameworks .slick-list {
    background-color: lightsteelblue;
}
.portfolio-slider-frameworks .slick-track {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.portfolio-slider-frameworks .slick-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-slider-frameworks .slick-prev, .portfolio-slider-frameworks .slick-next{
    display:none!important;
}
.check-icon {
    display: inline-flex;
    color: green !important;
    transform: scale(2.2);
}
.check-icon svg {
    stroke-width: 4;
}