html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
}


@font-face {
    font-family: 'Inter';
    src: url('Inter/Inter-Italic-VariableFont_opsz,wght.ttf') format('truetype-variations');
    src: url('Inter/Inter-VariableFont_opsz,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-stretch: 75% 125%;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lora';
    src: url('Lora/Lora-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-stretch: 75% 125%;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lora';
    src: url('Lora/Lora-Italic-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-stretch: 75% 125%;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Lora';
    src: url('Lora/static/Lora-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lora';
    src: url('Lora/static/Lora-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Lora';
    src: url('Lora/static/Lora-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lora';
    src: url('Lora/static/Lora-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

.lineHeadr{
    height: 50px;
    width: 100%;
    background: #F3F3F3;
}

.main{
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    z-index: 3;
}

header{

    display: flex;
    justify-content: center;
    flex-direction: row;
}
.head{
    padding: 40px 0px 10px 0px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 6rem;
}
.imgRectangle{
    position: absolute;
    top: -40px;
    left: 40px;
}
.imgBludo{
    position: absolute;
    top: 6px;
    left: 80px;
}
nav{
    display: flex;
    flex-direction: row;
    gap: 30px;
}

nav a {
    font-family: "Lora",sans-serif;
    font-size: 17px;
    text-decoration: none;
    color: #1A3853;
    font-weight: 500;
}

.linksHeader{
	width: 200px;
    height: 45px;
    align-items: center;
    background: #50667E;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    color: #FFFFFF;
    text-decoration: none;
    font-family: "Inter",sans-serif;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s ease-in-out;
}
.linksHeader:hover{
    background: #1A3853;
    transition: 0.3s ease-in-out;
}

.mainSection {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Видео фон */
.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Заполняет всю область без искажений */
}

/* Затемнение для лучшей читаемости текста */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.4) 0%,
            rgba(0, 0, 0, 0.3) 50%,
            rgba(0, 0, 0, 0.4) 100%
    );
    z-index: 2;
}

.menuHamburger{
    display: flex;
    flex-direction: row;
}
.hamburger {
    position: relative;
    width: 24px;
    height: 18px;
    cursor: pointer;
}


.hamburgerLine {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(215, 232, 255, 1);
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.hamburgerLine::before,
.hamburgerLine::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(215, 232, 255, 1);
    transition: all 0.3s ease;
}

.hamburgerLine::before {
    top: -6px;
}

.hamburgerLine::after {
    bottom: -6px;
}


/* Анимация хамбургера при открытии */
.hamburger.active .hamburgerLine {
    background: transparent;
}

.hamburger.active .hamburgerLine::before {
    top: 0;
    transform: rotate(45deg);
    background: #333;
}

.hamburger.active .hamburgerLine::after {
    bottom: 0;
    transform: rotate(-45deg);
    background: #333;
}

/* Мобильное меню */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -120%;
    width: 20%;
    height: 39vh;
    background: #002B70;
    z-index: 1000;
    transition: right 0.4s ease;
    padding: 20px;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
}

.mobile-menu.active {
    right: 0;
}

/* Шапка меню с кнопкой закрытия */
.menu-header {
    display: flex;
    justify-content: flex-end;
    padding: 20px 0;
    margin-bottom: 40px;
}

.close-menu {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.close-menu:hover {
    background: #f5f5f5;
}

.close-icon {
    position: relative;
    width: 20px;
    height: 20px;
}

.close-icon::before,
.close-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 2px;
    background: white;
    border-radius: 1px;
}

.close-icon::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.close-icon::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}
.mainTextMob{
    display: flex;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 30px;
}



.mobileMenu{
    display: none;
}


/* Стили для гамбургера */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 999;
    position: relative;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #1A3853;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Анимация гамбургера при активном состоянии */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Оверлей для затемнения фона */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-nav-overlay.active {
    display: block;
    opacity: 1;
}

/* Мобильное меню сбоку */
.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: white;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
}

.mobile-nav.active {
    transform: translateX(0);
}

/* Заголовок мобильного меню */
.mobile-nav-header {
    display: flex;
    justify-content: flex-end;
    padding: 20px;
    position: absolute;
    top: 0;
    right: 0;

}

.close-menu {
    background: none;
    border: none;
    font-size: 30px;
    color: #1A3853;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.close-menu:hover {
    background-color: #f0f0f0;
}

/* Контент мобильного меню */
.mobile-nav-content {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-nav-content a {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    text-decoration: none;
    color: #1A3853;
    font-size: 16px;
    transition: color 0.3s ease;
}

.mobile-nav-content a:hover {
    color: #2a5a83;
}

.mobile-nav-content a:last-child {
    border-bottom: none;
}

.mobile-order-btn {
    background: #1A3853;
    color: white !important;
    padding: 15px 20px !important;
    border-radius: 8px;
    text-align: center;
    margin-top: 20px;
    border: none !important;
    transition: background-color 0.3s ease;
}

.mobile-order-btn:hover {
    background: #2a5a83 !important;
}

/* Адаптивность */
@media (max-width: 768px) {
    .desktop-nav,
    .linksHeader {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

/* Для десктопа скрываем мобильное меню */
@media (min-width: 769px) {
    .mobile-nav,
    .mobile-nav-overlay {
        display: none !important;
    }
}

/* Дропдаун в мобильном меню */
.mobile-nav .dropdown {
    position: relative;
}

.mobile-nav .dropdown-menu {
    display: none;
    position: static;
    background: #f8f9fa;
    border: none;
    box-shadow: none;
    padding-left: 15px;
    margin-top: 10px;
}

.mobile-nav .dropdown.active .dropdown-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

h1{
    font-family: "Lora",sans-serif;
    font-size: 70px;
    color: #FFFFFF;
    text-align: center;
    padding-top: 191px;
    align-items: center;
    padding-bottom: 31px;
}
.mainText{
    display: flex;
    justify-content: center;
}
.mainSectionTitle{
    font-family: "Lora",sans-serif;
    font-size: 40px;
    color: #FFFFFF;
    text-align: center;
    font-weight: 500;
}
.developerText{
    font-family: "Lora",sans-serif;
    font-size: 30px;
    color: #FFFFFF;
    text-align: center;
    font-weight: 500;
    padding-top: 60px;
    padding-bottom: 30px;
}

.dropdown {
    position: relative;
    z-index: 10000;
}

.dropdown-toggle {
    position: relative;
    padding-right: 15px;
}

.dropdown-toggle::after {
    content: '▼';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    transition: transform 0.3s ease;
}

/* Если нужно, чтобы стрелочка поворачивалась при наведении */
.dropdown:hover .dropdown-toggle::after {
    transform: translateY(-50%) rotate(180deg);
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 20px;
    background: transparent;
    z-index: 10002;
}
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    background: white; /* Непрозрачный фон */
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    gap: 30px;
    align-items: center;
    padding: 15px 0;
}
.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    border-bottom: 1px solid #f0f0f0;
    color: #333;
    font-size: 14px;
    transition: all 0.3s ease;
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background: #f8f9fa;
    color: #007bff;
    padding-left: 25px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


.btnMainSection{
    display: flex;
    justify-content: center;
}



.btnMainSectionOne{
    width: 305px;
    height: 60px;
    align-items: center;
    display: flex;
    justify-content: center;
    gap: 10px;
    background: #50667E;
    border-radius: 4px;
    font-family: "Inter",sans-serif;
    font-size: 16px;
    text-decoration: none;
    color: #FFFFFF;
    transition: 0.3s ease;
}
.btnMainSectionOne:hover{
    background: #1A3853;
    gap: 20px;
    transition: 0.3s ease;
}

.btnMainSectionTwo{
    width: 305px;
    height: 60px;
    align-items: center;
    display: flex;
    justify-content: center;
    gap: 10px;
    background: #FFFFFF;
    border-radius: 4px;
    font-family: "Inter",sans-serif;
    font-size: 16px;
    text-decoration: none;
    color: #50667E;
    transition: 0.3s ease;
}
.btnMainSectionTwo:hover{
    background: #1A3853;
    color: #FFFFFF;
    transition: 0.3s ease;
}

.btnMainOne{
    display: flex;
    flex-direction: row;
    gap: 20px;
    flex-wrap: wrap;
    padding-bottom: 60px;
}
.company{
    background: #F3F3F3;
    padding-top: 50px;
}
.blockCompanyMainTextTitel{
    font-family: "Lora",sans-serif;
    font-size: 30px;
    color: #1A3853;
    text-align: center;
    font-weight: 400;
}
.blockCompany{
    background: #FFFFFF;
    border-radius: 6px;
}
.blockCompanyMainText{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding-top: 120px;
    padding-bottom: 50px;
}
.blockCompanyMainTextDescription{
    font-family: "Inter",sans-serif;
    font-size: 20px;
    color: #1A3853;
    text-align: center;
    font-weight: 300;
    padding-bottom: 50px;
}

.blockCompanyCard{
    display: flex;
    flex-direction: row;
    height: 204px;
    align-items: center;
}

.blockCompanyCards{
    width: 300px;
    height: 204px;
    align-items: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    border-right:1px solid #C8D0F6;

}


.blockCompanyCards:hover .blockCompanyCardsNumber{
    scale: 1.4;
    transition: 0.3s ease;
}

.blockCompanyCards:last-child{
    border-right:none;
}




.blockCompanyCardsTitle{
    font-family: "Lora",sans-serif;
    font-size: 16px;
    color: #1A3853;
    text-align: center;
    font-weight: 200;

}
.blockCompanyCardsNumber{
    font-family: "Lora",sans-serif;
    font-size: 70px;
    color: #AAC0D8;
    text-align: center;
    font-weight: 400;
    transition: 0.3s ease;
}

.moreCompany{
    background: #50667E;
    width: 305px;
    height: 60px;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    color: #FFFFFF;
    text-decoration: none;
    font-family: "Inter",sans-serif;
    font-size: 16px;
    font-weight: 500;
    gap: 10px;
    align-items: center;
    transition: 0.3s ease;
}
.moreCompany:hover{
    gap: 20px;
    background: #1A3853;
    transition: 0.3s ease;
}

.moreCompanyAling{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    padding-top: 50px;
    padding-bottom: 50px;
}
.whyWe{
    background: #F3F3F3;
}
.whyWeCars{
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
}
.whyWeCard{
    width: 305px;
    height: 219px;
    background: #FFFFFF;
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    border-radius: 4px;
    transition: 0.3s ease;
}
.whyWeCard:hover {
    box-shadow: 0 10px 30px rgba(26, 56, 83, 0.15);
    transform: translateY(-5px);
    transition: all 0.3s ease;
}


.whyWeCardTItle{
    font-family: "Lora",sans-serif;
    font-size: 20px;
    color: #1A3853;
    text-align: center;
    font-weight: 700;
}
.whyWeCardAbout{
    font-family: "Lora",sans-serif;
    font-size: 16px;
    color: #1A3853;
    text-align: center;
    font-weight: 200;
}
.whyWeCard img {
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.whyWeCard:hover img{
    transform: scale(1.2);
}
.services{
    background: #F3F3F3;
}
.servicesCards{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}
.servicesCard{
    background: #FFFFFF;
    padding: 20px 35px 28px 16px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.servicesCard:hover{
    box-shadow: 0 10px 30px rgba(26, 56, 83, 0.15);
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.servicesCardTitle{
    font-family: "Lora",sans-serif;
    font-size: 25px;
    color: #1A3853;
    text-align: center;
    font-weight: 500;
    padding-bottom: 20px;
}
.imgServicesMain{
    position: absolute;
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.imgServices{
    height: 477px;
    width: 360px;
    display: flex;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 4px;
}
.imgServicesText{
    display: flex;
    justify-content: end;
    border-radius: 6px;
    align-items: end;
}
.imgServicesTextTitle{
    font-family: "Inter",sans-serif;
    font-size: 17px;
    color: #FFFFFF;
     padding: 20px 15px;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    z-index: 2;
}

.imgServices:hover .imgServicesTextTitle {
    transform: translateY(80px) scale(0.8); /* Уезжает вниз и уменьшается */
    opacity: 0;
}


.priceSevices{
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    margin-top: 20px;
}
.priceSevicesTitle{
    font-family: "Inter",sans-serif;
    font-size: 20px;
    color: #50667E;
    font-weight: 400;
}
.priceSevicesAbout{
    font-family: "Lora",sans-serif;
    font-size: 22px;
    color: #DB532B;
    text-align: center;
    font-weight: 400;
}
.servicesLinks{
    width: 359px;
    height: 50px;
    align-items: center;
    justify-content: center;
    display: flex;
    border: 1.5px solid #50667E;
    border-radius: 4px;
    margin-top: 20px;
    transition: 0.3s ease;
}



.servicesLinksText{
    align-items: center;
    display: flex;
    justify-content: center;
    font-family: "Inter",sans-serif;
    font-size: 16px;
    color: #50667E;
    font-weight: 500;
    text-decoration: none;
}
.servicesLinks:hover{
    background: #1A3853;
    color: #fff;
    transition: 0.3s ease;
}
.moreServices{
    background: #FFFFFF;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    margin-top: 20px;
    gap: 50px;
}

.moreServicesText{
    font-family: "Lora",sans-serif;
    font-size: 30px;
    color: #50667E;
    text-align: center;
    font-weight: 200;
}
.moreServicesLinks{
    width: 305px;
    height: 60px;
    border: 2px solid #018D33;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-family: "Inter",sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #018D33;
    text-decoration: none;
    transition: 0.3s ease;
}
.moreServicesLinks:hover {
    background: #018D33;
    color: white;
    transition: 0.3s ease;
}

.moreServicesLinks .icon-hover {
    display: none;
}

.moreServicesLinks .icon-default {
    display: block;
}

.moreServicesLinks:hover .icon-default {
    display: none;
}

.moreServicesLinks:hover .icon-hover {
    display: block;
}



.price{
    background: #F3F3F3;
    padding-bottom: 70px;
}

.priceCards{
    display: flex;
    flex-direction:column;
    gap: 20px;

}
.priceCard{
    display: flex;
    flex-direction: row;
    background: #FFFFFF;
    justify-content: space-between;
    padding: 20px;
    border-radius: 4px;
    transition: all 0.3s ease;
}
.priceCard:hover{
    box-shadow: 0 10px 30px rgba(26, 56, 83, 0.15);
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.textCardPrice{
display: flex;
    flex-direction: column;
    padding: 20px;
    align-items: center;
    width: 100%;
    gap: 30px;
}

.textCardPrice ul li {
    font-family: "Lora",sans-serif;
    font-size: 20px;
    color: #1A3853;
    font-weight: 200;
   padding: 10px 0;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}
.textCardPrice ul {
    list-style: none;
    padding-left: 0;
}
.textCardPrice ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.textCardPrice ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #000;
    border-radius: 50%;
    transition: all 0.3s ease;
}
.textCardPrice ul li:hover::before {
    background: #ff6b00;
    transform: translateY(-50%) scale(1.2);
}
.textCardPrice ul li:hover {
    padding-left: 25px;
}

.textCardPriceTitle{
    font-family: "Lora",sans-serif;
    font-size: 30px;
    color: #1A3853;
    text-align: center;
    font-weight: 500;
}
.priceCard img {
    border-radius: 4px;
}
.textPrice{
    font-family: "Lora",sans-serif;
    font-size: 22px;
    color: #1A3853;
    text-align: center;
    font-weight: 100;
    padding-top: 30px;
}
.btnPrice{
    display: flex;
    justify-content: center;
    gap: 20px;
    padding-top: 30px;
}
.btnPriceOne{
    width: 305px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1.5px solid #50667E;
    border-radius: 4px;
    font-family: "Lora",sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #50667E;
    text-decoration: none;
    transition: 0.3s ease;
}
.btnPriceOne:hover{
    background: #1A3853 ;
    color: white;
    transition: 0.3s ease;
}

.clients{
    background: #F3F3F3;
    padding-bottom: 40px;
}

.clientsMainText{
    font-family: "Lora",sans-serif;
    font-size: 22px;
    color: #1A3853;
    text-align: center;
    font-weight: 500;
    padding-bottom: 40px;
}


.image-comparison-different {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #FFFFFF;
    width: 301px;
    height: 120px;
    border-radius: 4px;
    overflow: hidden;
}

.static-gray {
    filter: grayscale(100%);
    width: 80%;
    height: auto;
    max-height: 80%;
    object-fit: contain;
    display: block;
    transition: opacity 0.5s ease;
}

.hover-color {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: auto;
    max-height: 80%;
    opacity: 0;
    transition: opacity 0.5s ease;
    object-fit: contain;
}

.image-comparison-different:hover .hover-color {
    opacity: 1;
}

.image-comparison-different:hover .static-gray {
    opacity: 0;
}

.clientsLogos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 20px;
    flex-wrap: wrap;
}

.work{
    background: #F3F3F3;
}

.workCadrs{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}
.imgCard {
    position: relative;
    max-width: 800px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.imgCard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Уровень затемнения */
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.imgCard:hover {
    transform: translateY(-5px);
}

.imgCard:hover::before {
    opacity: 1;
}

.imgWork {
    object-fit: cover; /* Заполняет область без искажений */
    display: block;
}
.imgCardTwo{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.alingWorkText {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 20px 15px 15px;
}

.work-date {
    font-size: 14px;
    margin-bottom: 8px;
    opacity: 0.9;
}

.work-title {
    font-size: 16px;
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.reviews{
    background: #F3F3F3;
}

.reviews-slider-container {
    position: relative;
    width: 99vw; /* Ширина во весь экран */
    left: 50%; /* Сдвигаем в центр */
    right: 50%; /* Сдвигаем в центр */
    margin-left: -50vw; /* Компенсируем сдвиг */
    margin-right: -50vw; /* Компенсируем сдвиг */
    overflow: hidden;
    padding: 40px 0;
}

.reviews-slider {
    display: flex;
    gap: 10px;
    transition: transform 0.3s ease;
    width: max-content;
    padding: 0 calc(50vw - 640px); /* Центрируем контент относительно main (1280px / 2) */
    justify-content: center;
}

.reviewCadr {
    width: 413px;
    flex-shrink: 0;
    border-radius: 12px;
    padding: 20px;
    transition: transform 0.3s ease;
}

.reviewCadr:hover {
    transform: translateY(-5px);
}

/* Стили для стрелок */
.slider-arrow {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    color: #1A3853;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow-prev {
    left: 20px;
}

.slider-arrow-next {
    right: 20px;
}

/* Остальные стили остаются без изменений */
.video-container {
    position: relative;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
}

.video-container video {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.play-pause-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.7);
    border: none;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 1;
    text-align: center;
    align-items: center;
    display: flex;
    justify-content: center;
}

.play-pause-btn:hover {
    background: rgba(0,0,0,0.9);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-pause-btn.playing {
    opacity: 0;
}

.play-pause-btn.playing:hover {
    opacity: 1;
}

.reviewCadr h2 {
    font-family: "Lora",sans-serif;
    font-size: 20px;
    margin-bottom: 10px;
    color: #1A3853;
    font-weight: 500;
}

.reviewCadrText {
    color: #666;
}

.reviewCadrText p {
    font-family: "Inter",sans-serif;
    font-size: 20px;
    color: #1A3853;
    font-weight: 300;
    margin: 5px 0;
}
/* Скрываем скроллбар но оставляем функциональность */
.reviews-slider-container::-webkit-scrollbar {
    height: 8px;
}

.reviews-slider-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.reviews-slider-container::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

.reviews-slider-container::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}


.zakaz{
    background: #F3F3F3;
    padding-bottom: 60px;
}
.zakazTitielText{
    font-family: "Lora",sans-serif;
    font-size: 22px;
    color: #1A3853;
    text-align: center;
    font-weight: 500;
    padding-bottom: 30px;
}
.forms{
    display: flex;
    flex-direction: row;
    background: #FFFFFF;
    border-radius: 4px;
}
form{
    display: flex;
    flex-direction: column;
    margin: 20px;
    gap: 20px;
}
form label{
    font-family: "Lora",sans-serif;
    font-size: 22px;
    color: #1A3853;
    font-weight: 500;
    display: flex;
    flex-direction: column;
}
input{
    width: 500px;
    height: 40px;
    padding: 10px 20px;
    font-family: "Lora",sans-serif;
    font-size: 22px;
    color: #000000;
    font-weight: 500;
    border: 1px solid #A6A6A6;
    background: rgba(0, 0, 0, 0.07);
    border-radius: 4px;
    transition: 0.3s ease;
}
input::placeholder{
    font-family: "Lora",sans-serif;
    font-size: 22px;
    color: rgba(0, 0, 0, 0.22);
    font-weight: 400;

}
input:focus{
    outline: none;
    background: white ;
    transition: 0.3s ease;
}
textarea::placeholder{
    opacity: 1;
    font-family: "Lora",sans-serif;
    font-size: 22px;
    color: rgba(0, 0, 0, 0.22);
    font-weight: 400;
}
textarea{
    height: 150px;
    font-family: "Lora",sans-serif;
    font-size: 22px;
    color: #000000;
    font-weight: 500;
    padding: 10px 20px;
    transition: 0.3s ease;
    background: rgba(0, 0, 0, 0.07);
}
textarea:focus{
    outline: none;
    background: white;
    transition: 0.3s ease;
}
.imgForm{
    background: #F4F4F4;
    margin: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
}
.btnSubmit{
    background: #50667E;
    border: none;
    border-radius: 4px;
    padding: 20px;
    width: 100%;
    transition: 0.3s ease;
}
.btnSubmit:hover{
    background: #1A3853 ;
    transition: 0.3s ease;
}

.btnSubmit a {
    font-family: "Lora",sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #FFFFFF;
    text-decoration: none;
}
footer{
    background: #000;
}
.blocksFooter{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-top: 50px;
}
.blockFooter{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.blockFooterText{
    font-family: "Lora",sans-serif;
    font-size: 19px;
    color: #FFFFFF;
    font-weight: 500;
}
.blockFooterContact{
    display: flex;
    flex-direction: row;
    gap: 70px;
    padding-top: 40px;
}
.linksFooter{
    display: flex;
    flex-direction: row;
    gap: 15px;
    padding-top: 40px;
}
.linksFooter img:hover{
    opacity: 1;
    transform: scale(1.3);
}
.blockFooterTextTitle{
    font-family: "Lora",sans-serif;
    font-size: 30px;
    color: #DB532B;
    font-weight: 500;
    text-align: center;
}
.linksFooterAbout ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none; /* Убираем стандартные точки */
    padding-left: 0;
}

.linksFooterAbout ul li {
    position: relative;
    font-family: "Lora", sans-serif;
    font-size: 20px;
    color: #FFFFFF;
    padding-left: 25px; /* Место для точки */
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Создаем кастомные точки */
.linksFooterAbout ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #FFFFFF; /* Белый цвет по умолчанию */
    border-radius: 50%;
    transition: all 0.3s ease;
}

/* При наведении - отступ и оранжевая точка */
.linksFooterAbout ul li:hover {
    padding-left: 35px; /* Отъезжает вбок */
}

.linksFooterAbout ul li:hover::before {
    background: #ffa500; /* Оранжевая точка */
    transform: translateY(-50%) scale(1.3); /* Немного увеличиваем */
}
.contactsFooter{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    text-align: center;

}
.linksFooterAbout{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.contactsFooterText{
    font-family: "Lora",sans-serif;
    font-size: 20px;
    color: #FFFFFF;
    font-weight: 500;

}
.downBlock{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-top: 60px;
    padding-bottom: 30px;
}
.downBlockText{
    font-family: "Lora",sans-serif;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.47);
    font-weight: 500;

}
a {
    text-decoration: none;
}