

/* Start:/bitrix/templates/.default/components/bitrix/news.list/landing_news/style.css?17635003934476*/
/* Стили для секции "Новости" */
.news-section {
    width: 100%;
    background: #F2F3F7;
    padding: 80px 5%;
}

.news-container {
    max-width: 1400px;
    margin: 0 auto;
}

.news-title-main {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 60px;
    line-height: 1.1;
    text-align: left;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.news-item {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.news-image {
    width: 35%;
}

.news-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.news-content {
    width: 65%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.news-date {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #000000;
}

.news-title {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #000000;
    text-transform: uppercase;
    line-height: 1.2;
}

.news-excerpt {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #000000;
    line-height: 1.5;
    /*width: 35%;*/
}

.news-read-more {
    background: #FF5D5D;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    border: none;
    padding: 12px 30px;
    cursor: pointer;
    transition: background 0.3s;
    width: 35%;
}

.news-read-more:hover {
    background: #e05555;
}

/* Стили для модального окна с анимацией */
.news-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    overflow-y: auto;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.news-modal.active {
    display: block;
    opacity: 1;
}

.modal-content {
    position: relative;
    background: #FFFFFF;
    margin: 5% auto;
    padding: 40px;
    width: 80%;
    max-width: 1200px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transform: translateY(-50px);
    opacity: 0;
    transition: all 0.4s ease;
}

.news-modal.active .modal-content {
    transform: translateY(0);
    opacity: 1;
}

.modal-date {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 15px;
}

.modal-title {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: #000000;
    text-transform: uppercase;
    margin-bottom: 30px;
    line-height: 1.2;
}

.modal-full-text {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 40px;
}

.modal-close {
    background: #FF5D5D;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    border: none;
    padding: 12px 30px;
    cursor: pointer;
    transition: background 0.3s;
}

.modal-close:hover {
    background: #e05555;
}

/* Адаптивность для секции "Новости" */
@media (max-width: 1199px) {
    .news-title-main {
        font-size: 42px;
    }
}

@media (max-width: 991px) {
    .news-title-main {
        font-size: 36px;
    }
    
    .news-item {
        flex-direction: column;
    }
    
    .news-image, .news-content {
        width: 100%;
    }
    
    .news-excerpt, .news-read-more {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .news-section {
        padding: 60px 20px;
    }
    
    .news-title-main {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .news-title {
        font-size: 20px;
    }
    
    .news-excerpt {
        font-size: 18px;
    }
    
    .modal-content {
        padding: 30px;
        width: 90%;
    }
    
    .modal-title {
        font-size: 24px;
    }
    
    .modal-full-text {
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .news-section {
        padding: 40px 15px;
    }
    
    .news-title-main {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .news-title {
        font-size: 18px;
    }
    
    .news-excerpt {
        font-size: 16px;
    }
    
    .modal-content {
        padding: 20px;
        width: 95%;
    }
    
    .modal-title {
        font-size: 20px;
    }
    
    .modal-full-text {
        font-size: 14px;
    }
}
/* End */


/* Start:/bitrix/templates/.default/components/bitrix/news.list/landing_gall/style.css?17635003346857*/
/* Стили для секции "Галерея" */
.gallery-section {
    width: 100%;
    background: #FFFFFF;
    padding: 80px 5%;
    position: relative;
    overflow: hidden;
}

.gallery-container {
    display: flex;
    width: 100%;
    position: relative;
}

.gallery-title-vertical {
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    margin-right: 40px;
}

.gallery-title-vertical h2 {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #FF5D5D;
    text-transform: uppercase;
    line-height: 1.2;
    margin: 0;
}

.gallery-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 80px;
}



/* Адаптивность для секции "Галерея" */
@media (max-width: 1199px) {
    .gallery-title-vertical {
        width: 60px;
        margin-right: 30px;
    }
    
    .gallery-title-vertical h2 {
        font-size: 20px;
    }
    
   
}

@media (max-width: 991px) {
    .gallery-container {
        flex-direction: column;
    }
    
    .gallery-title-vertical {
        width: 100%;
        writing-mode: horizontal-tb;
        transform: none;
        margin-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }
    
   
}

@media (max-width: 767px) {
    .gallery-section {
        padding: 60px 20px;
    }
    
    .gallery-title-vertical h2 {
        font-size: 18px;
    }
    
   
}

@media (max-width: 575px) {
    .gallery-section {
        padding: 40px 15px;
    }
    
    .gallery-title-vertical h2 {
        font-size: 16px;
    }
    
    
}

  .gallery {
            width: 100%;
            overflow: hidden;
            position: relative;
            padding: 0 15px;
        }

        .carousel-container {
            position: relative;
            max-width: 85vw;
            margin: 0 auto;
        }

        .carousel {
            display: flex;
            transition: transform 0.5s ease;
            gap: 20px;
            padding: 0 10px;
        }

        .carousel-item {
            flex: 0 0 auto;
            cursor: pointer;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }

        .carousel-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Адаптивные стили для разных экранов */
        @media (min-width: 1920px) {
            .carousel-item {
                width: 950px;
                height: 650px;
            }
            .carousel {
                padding: 0 0px;
            }
        }

        @media (min-width: 1200px) and (max-width: 1919px) {
            .carousel-item {
                width: calc(50vw - 60px);
                height: calc((50vw - 60px) * 0.53);
                max-width: 950px;
                max-height: 500px;
            }
            .carousel {
                padding: 0 0;
            }
        }

        @media (min-width: 768px) and (max-width: 1199px) {
            .carousel-item {
                width: calc(50vw - 40px);
                height: calc((50vw - 40px) * 0.6);
            }
            .carousel {
                padding: 0 0;
            }
        }

        @media (max-width: 767px) {
            .carousel-item {
                width: calc(100vw - 60px);
                height: calc((100vw - 60px) * 0.75);
            }
            .carousel {
                padding: 0 0;
                gap: 15px;
            }
            
            .nav-btn {
                padding: 15px 10px !important;
                font-size: 18px !important;
            }
        }

        @media (max-width: 480px) {
            .gallery {
                padding: 0 10px;
            }
            .carousel-item {
                width: calc(100vw - 40px);
                height: calc((100vw - 40px) * 0.75);
            }
            .carousel {
                padding: 0 0;
                gap: 10px;
            }
        }

        /* Модальное окно */
        .modal {
            display: none;
            position: fixed;
            z-index: 5000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.95);
            touch-action: pan-y pinch-zoom;
        }

        .modal-content1 {
            margin: auto;
            display: block;
            max-width: 95%;
            max-height: 95%;
            object-fit: contain;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .close {
            position: absolute;
            top: 20px;
            right: 30px;
            color: #fff;
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
            z-index: 1001;
            background: rgba(0,0,0,0.5);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0,0,0,0.7);
            color: white;
            border: none;
            padding: 25px 15px;
            cursor: pointer;
            font-size: 28px;
            z-index: 10;
            border-radius: 5px;
            transition: background-color 0.3s ease;
        }

        .nav-btn:hover {
            background: rgba(0,0,0,0.9);
        }

        .prev { left: 20px; }
        .next { right: 20px; }

        /* Индикатор загрузки */
        .loading {
            display: none;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-size: 18px;
        }

        /* Свайп для мобильных */
        .carousel {
            touch-action: pan-y pinch-zoom;
        }

        /* Улучшения для доступности */
        .nav-btn:focus,
        .close:focus {
            outline: 2px solid #fff;
            outline-offset: 2px;
        }

        @media (max-width: 767px) {
            .close {
                top: 10px;
                right: 15px;
                font-size: 30px;
                width: 40px;
                height: 40px;
            }
            
            .nav-btn {
                padding: 20px 10px;
                font-size: 20px;
            }
            
            .prev { left: 10px; }
            .next { right: 10px; }
        }

/* End */


/* Start:/bitrix/components/bitrix/map.yandex.system/templates/.default/style.css?1762959797666*/
div.bx-yandex-map {color: black; font-size: 11px;}
div.bx-yandex-map div.YMaps-b-balloon-content {color: black; font-size: 11px;}
div.bx-popup-form div.bx-yandex-map div.YMaps-b-balloon-point div.YMaps-b-balloon div.YMaps-b-balloon-wrap table.YMaps-b-balloon-frame td {
	padding: 0px !important;
}


div.bx-popup-form div.bx-yandex-map div.YMaps-b-balloon-point div.YMaps-b-balloon div.YMaps-b-balloon-wrap table.YMaps-b-balloon-frame td textarea{
	font-size: 11px;
}


div.bx-popup-form div.bx-yandex-map div.YMaps-b-balloon-point div.YMaps-b-balloon div.YMaps-b-balloon-wrap table.YMaps-b-balloon-frame td.YMaps-b-balloon-b {
	background-image: none !important;
}

/* End */


/* Start:/bitrix/templates/main/styles.css?1762962230548*/
img {border:0 none;}

h1, h2, h3, h4, h5, h6
{
	font-family: Arial, Helvetica,sans-serif; 
	margin:1.3em 0 1em;
	font-weight:normal;
	line-height:1.2;
}

h1 { font-size:200%; margin:0 0 1em; }
h2 { font-size:160%; }
h3 { font-size:140%; }
h4 { font-size:140%; }
h5 { font-size:120%; }
h6 { font-size:100%; }

hr, .hr 
{
	border-top:1px solid;
	display:block;
	font-size:1px;
	height:1px;
	line-height:1px;
	margin:12px 0;
	overflow:hidden;
	padding:0;
}

#workarea ol li, #workarea ul li { margin: 0.6em 0; }
#workarea ul { list-style-type: disc; }
/* End */


/* Start:/bitrix/templates/main/template_styles.css?176350201954522*/
        :root {
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            overflow-x: hidden;
            height: 100vh;
        }
        .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.overlay.active {
    opacity: 1;
    visibility: visible;
    z-index: 1001;
}

        .header {
            height: 110px;
            background: #FFFFFF;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 5%;
            position: relative;
            transition: all 0.3s ease;
            z-index: 1002;
        }

        /* Градиентная тень */
        .header::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(180deg, 
                rgba(0,0,0,0.1) 0%, 
                rgba(0,0,0,0.05) 50%, 
                transparent 100%);
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 15px;
            flex-shrink: 0;
        }

        .logo {
            width: 80px;
            height: 80px;
            flex-shrink: 0;
        }

        .company-name {
            font-family: 'Inter', sans-serif;
            font-size: 12px;
            font-weight: 400;
            color: #38383A;
            line-height: 1.1;
            letter-spacing: -0.3px;
            text-transform: uppercase;
            max-width: 200px;
        }


        .up_str{
              width: 25px;
              height: 25px;
              border-top: 3px solid #FF5D5D;
              border-left: 3px solid #FF5D5D;
              rotate: 45deg;
              position: relative;
              top: 10px;
              left: 5px;
        }
        .up_roll{
            display: none;
            font-size: 28px;
              position: fixed;
              bottom: 150px;
              right: 50px;
              opacity: 0.8;
              /*border-left: 5px solid #FF5D5D;
              border-top: 5px solid #FF5D5D;*/
              padding: 10px 10px;
              cursor: pointer;
              color: #FF5D5D;
              z-index: 1500;
              /*background: #fff;*/
              width: 60px;
              height: 60px;
              /*rotate:45deg;*/
              border: 3px solid #FF5D5D;
              border-radius: 30px;
              background: #fff;


        }

        .up_roll.active
        {
            display: block;
        }

        .up_roll:hover{
          
             
            
             
          transform: scale(1.3) ;

          transition: 0.3s;

        }


        .nav-menu {
            display: flex;
            gap: 40px;
            align-items: center;
        }

        .nav-menu a {
            font-family: 'Inter', sans-serif;
            font-size: 16px;
            font-weight: 400;
            color: #38383A;
            text-decoration: none;
            text-transform: uppercase;
            transition: opacity 0.3s;
            white-space: nowrap;
            transition: var(--transition);
 
        }

        .nav-menu a:hover {
            opacity: 0.7;
        }



        .mobile-menu {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 3rem;
            cursor: pointer;
            z-index: 1250;
        }

        .mobile-nav {
            display: flex;
            flex-direction: column;
            justify-content: end;
            position: fixed;
            top: 0;
            right: -100%;
            width: 300px;
            height: 95vh;
            background: #FFFFFF;
            z-index: 1003;
            transition: var(--transition);
            padding: 80px 2rem 4rem;
            box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        }

        .mobile-nav.active {
            right: 0;
        }

        .mobile-menu.active{
            display: none;
        }

        .mobile-nav-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .mobile-nav-links li {
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .mobile-nav-links a {
            display: block;
            color: var(--white);
            text-decoration: none;
            padding: 1rem 0;
            font-size: 2rem;
            font-weight: 500;
            transition: var(--transition);
            text-transform: uppercase;
        }

        .mobile-nav-links a:hover {
            color: var(--accent-red);
            padding-left: 10px;
        }

        .mobile-close {
            position: absolute;
            bottom: 30px;
            right: 15px;
            background: none;
            border: none;
            color: var(--white);
            font-size: 3rem;
            cursor: pointer;
        }
        .contact-section {
            display: flex;
            align-items: center;
            gap: 35px;
            flex-shrink: 0;
        }

        .phone-link {
            display: flex;
            align-items: center;
            gap: 20px;
            text-decoration: none;
        }

        .phone-icon {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
        }

        .phone-number {
            font-family: 'Inter', sans-serif;
            font-size: 16px;
            color: #38383A;
            text-transform: uppercase;
            white-space: nowrap;
        }

        .request-btn {
            background: #FF5D5D;
            color: #FFFFFF;
            font-family: 'Inter', sans-serif;
            font-size: 20px;
            border: none;
            padding: 12px 34px;
            cursor: pointer;
            transition: background 0.3s;
            white-space: nowrap;
        }

        .request-btn:hover {
            background: #e05555;
        }

        /* Гамбургер-меню */
        .menu-toggle {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 21px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0;
        }

        .menu-toggle span {
            display: block;
            height: 3px;
            width: 100%;
            background: #38383A;
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        /* Стили для слайдера баннеров */
        .banner-slider {
            position: relative;
            height: calc(100vh - 110px);
            overflow: hidden;
        }

        .slides {
            display: flex;
            width: 500%;
            height: 100%;
            transition: transform 0.5s ease-in-out;
        }

        .slide {
            position: relative;
            width: 20%;
            height: 100%;
            display: flex;
            align-items: center;
            background: linear-gradient(to bottom, #FFFFFF, #E1E3EC);
        }

        .slide-content {
            display: flex;
            width: 100%;
            height: 100%;
            padding: 0 5%;
            align-items: center;
            position: relative;
        }

        .text-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 30px;
            z-index: 3;
            position: relative;
        }

        .banner-title {
            font-family: 'Inter', sans-serif;
            font-size: 60px;
            font-weight: 600;
            color: #FF5D5D;
            text-transform: uppercase;
            line-height: 1.1;
        }

        .banner-subtitle {
            font-family: 'Inter', sans-serif;
            font-size: 60px;
            font-weight: 600;
            color: #000000;
            line-height: 1.1;
        }

        .banner-description {
            font-family: 'Inter', sans-serif;
            font-size: 32px;
            font-weight: 400;
            color: #000000;
            line-height: 1.3;
            max-width: 80%;
        }

        .banner-btn {
            background: #FF5D5D;
            color: #FFFFFF;
            font-family: 'Inter', sans-serif;
            font-size: 20px;
            text-transform: uppercase;
            border: none;
            padding: 15px 40px;
            cursor: pointer;
            transition: background 0.3s;
            width: fit-content;
        }

        .banner-btn:hover {
            background: #e05555;
        }

        .image-content {
            position: absolute;
            right: 0;
            bottom: 0;
            height: 90%;
            z-index: 2;
            display: flex;
            align-items: flex-end;
            justify-content: flex-end;
        }

        .banner-image {
            height: 100%;
            width: auto;
            max-width: 100%;
            object-fit: contain;
            object-position: right bottom;
        }

        /* Навигация слайдера */
        .slider-nav {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            border: 2px solid #FF5D5D;
            cursor: pointer;
            transition: background 0.3s;
        }

        .slider-dot.active {
            background: #FF5D5D;
        }

        /* Новый блок features */
        .features {
            min-height: 66.67vh; /* 2/3 экрана */
            background: #FFFFFF;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 60px 5%;
            text-align: center;
        }

        .features-title {
            font-family: 'Inter', sans-serif;
            font-size: 32px;
            font-weight: 600;
            color: #000000;
            margin-bottom: 30px;
            max-width: 800px;
            text-transform: uppercase;
        }

        .features-description {
            font-family: 'Inter', sans-serif;
            font-size: 20px;
            font-weight: 400;
            color: #000000;
            line-height: 1.6;
            margin-bottom: 50px;
            max-width: 800px;
        }

        .features-grid {
            display: flex;
            justify-content: center;
            gap: 40px;
            max-width: 1200px;
            width: 100%;
        }

        .feature-item {
            display: flex;
/*            flex-direction: column;*/
            align-items: center;
            gap: 20px;
            padding: 30px 20px;
            border-radius: 10px;
            transition: transform 0.3s;
        }

        .feature-item:hover {
            transform: translateY(-5px);
        }

        .feature-icon {
            width: 72px;
            height: 72px;
            border-radius: 10px;
            object-fit: cover;
        }

        .feature-text {
            text-align: left;
        }

        .feature-item-title {
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            font-weight: 600;
            color: #000000;
            margin-bottom: 10px;
            text-transform: uppercase;
        }

        .feature-item-description {
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            font-weight: 400;
            color: #787A80;
            line-height: 1.5;
        }

      #soc_seti a{
                margin-right: 15px;
                margin-left: 15px;
            }  

      .b24-form-wrapper.b24-form-shadow
      {
        box-shadow: none;
  display: flex;
  width: 75%;
  max-width: 95%;
  margin-bottom: 45px;
  margin-top: 45px;
      }      

      .b24-form-content .b24-form-padding-side
      {
        max-width: 50%;
      }

      .b24-form-header-title
      {
        text-align: left;
        font-family: 'Inter', sans-serif;
        font-size: 48px !important;
      line-height: 1.5 !important;

      }
      .b24-form-header-description
      {
        text-align: left;
        font-size: 28px !important;
        line-height: 1.2 !important;

        
      }
      .b24-form-header
      {
        border-bottom: none !important;
      }



        /* Адаптивность */

        /* Большие ноутбуки (1200px - 1439px) */
        @media (max-width: 1439px) {
            .header {
                height: 100px;
                padding: 0 4%;
            }
            
            .banner-slider {
                height: calc(100vh - 100px);
            }
            
            .nav-menu {
                gap: 30px;
            }
            
            .nav-menu a {
                font-size: 15px;
            }
            
            .request-btn {
                font-size: 20px;
                padding: 10px 20px;
            }

            .banner-title,
            .banner-subtitle {
                font-size: 50px;
            }

            .banner-description {
                font-size: 28px;
            }
             .features-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 30px;
            }
        }

        /* Ноутбуки (992px - 1199px) */
        @media (max-width: 1199px) {
            .header {
                height: 90px;
                padding: 0 3%;
            }
            
            .banner-slider {
                height: calc(100vh - 90px);
            }
            
            .logo {
                width: 70px;
                height: 70px;
            }
            
            .company-name {
                font-size: 11px;
                max-width: 180px;
            }
            
            .nav-menu {
                gap: 25px;
            }
            
            .nav-menu a {
                font-size: 14px;
            }
            
            .phone-number {
                font-size: 14px;
            }
            
            .request-btn {
                font-size: 20px;
                padding: 8px 16px;
            }

            .banner-title,
            .banner-subtitle {
                font-size: 45px;
            }

            .banner-description {
                font-size: 24px;
            }
            .features-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 25px;
            }
            .b24-form-wrapper.b24-form-shadow
      {
        box-shadow: none;
          display: block;
          width: 95%;
          max-width: 95%;

      }      

      .b24-form-content .b24-form-padding-side
      {
        max-width: 100%;
      }

      .b24-form-header-title
      {
        text-align: center;
        font-family: 'Inter', sans-serif;
        font-size: 48px;

      }
      .b24-form-header-description
      {
        text-align: center;
        
      }
        }

        /* Планшеты (768px - 991px) */
        @media (max-width: 991px) {
            .header {
                height: 80px;
                padding: 0 20px;
            }
            
            .banner-slider {
                height: calc(100vh - 80px);
            }
            
            .nav-menu {
                gap: 20px;
            }
            
            .nav-menu a {
                font-size: 13px;
            }
            
            .phone-number {
                display: none;
            }
               .phone-icon {
                width: 25px;
                height: 25px;
            }
            
            .request-btn {
                font-size: 20px;
                padding: 8px 14px;
            }
            
            .company-name {
                font-size: 10px;
                max-width: 160px;
            }

            .banner-title,
            .banner-subtitle {
                font-size: 40px;
            }

            .banner-description {
                font-size: 22px;
                max-width: 90%;
            }
             .features-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }
         #soc_seti a{
                margin-right: 12px;
                margin-left: 12px;
            }  
        }

        /* Большие телефоны (576px - 767px) */
        @media (max-width: 767px) {
            .header {
                height: 70px;
                padding: 0 15px;
            }
            
            .banner-slider {
                height: calc(100vh - 70px);
            }
            
            .nav-menu {
                display: none;
            }
            
            .mobile-menu {
                display: flex;
                color:#000;
                position: fixed;
                right: 15px;
                bottom: 30px;
                font-size: 3rem;
                justify-content: end;
            }
            #up_roll
            {
                display: none;
            }
            
            .company-name {
                display: none;
            }
            
            .phone-number {
                display: none;
            }
               .phone-icon {
                width: 25px;
                height: 25px;
            }
            #soc_seti a{
                margin-right: 10px;
                margin-left: 10px;
            }    
            
            .request-btn {
                font-size: 20px;
                padding: 6px 12px;
            }
            
            .logo {
                width: 60px;
                height: 60px;
            }

            /* Адаптация баннеров для мобильных */
            .slide-content {
                flex-direction: column;
                justify-content: center;
                text-align: center;
                padding: 0 20px;
            }

            .text-content {
                align-items: center;
                gap: 20px;
                justify-content:start ;
                margin-top: 7.5%;
            }

            .banner-title,
            .banner-subtitle {
                font-size: 32px;
            }

            .banner-description {
                font-size: 18px;
                max-width: 100%;
            }

            .image-content {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                /*justify-content: center;
                align-items: center;*/
                opacity: 0.9;
                z-index: 1;
            }

            .banner-image {
                height: 75%;
                width: auto;
                object-fit: cover;
            }

            .banner-btn {
                font-size: 16px;
                padding: 12px 30px;
                width: 100vw;
  position: absolute;
  bottom: 0px;
            }

            .features {
                height: auto;
                padding: 40px 15px;
            }

            .features-title {
                font-size: 28px;
                margin-bottom: 20px;
            }

            .features-description {
                font-size: 18px;
                margin-bottom: 40px;
            }

            .features-grid {
                grid-template-columns: 1fr;
                gap: 25px;
                max-width: 400px;
            }

            .feature-item {
                padding: 25px 15px;
            }

            .slider-nav
            {
                bottom: 60px;
            }
             .banner-slider
            {
                height: calc(100vh - 15vh);
            }


        }

        /* Телефоны (до 575px) */
        @media (max-width: 575px) {
            .header {
                height: 60px;
                padding: 0 10px;
            }
            
            .banner-slider {
                height: calc(100vh - 60px);
            }
            
            .contact-section {
                gap: 10px;
            }
            
            .request-btn {
                font-size: 20px;
                padding: 5px 10px;
            }
            
            .phone-icon {
                width: 25px;
                height: 25px;
            }

               #up_roll
            {
                display: none;
            }
            
            .logo {
                width: 45px;
                height: 45px;
            }

            .banner-title,
            .banner-subtitle {
                font-size: 28px;
            }

            .banner-description {
                font-size: 16px;
            }

            .banner-btn {
                font-size: 14px;
                padding: 10px 25px;
                width: 100vw;
                position: absolute;
                bottom: 0px;
            }
             .features {
                padding: 30px 10px;
            }

            .features-title {
                font-size: 24px;
            }

            .features-description {
                font-size: 14px;
            }
            .banner-slider
            {
                height: calc(100vh - 15vh);
            }
        }

        /* Мобильное меню */
        

/* Стили для  секции Транспорт */
.TransportTwoColumnSection {
/*    height: 100vh;*/
    display: flex;
    width: 100%;
}

.TransportLeftColumn {
    width: 58%;
    background: #F2F3F7;
    padding: 80px 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.TransportLeftTitle {
    font-family: 'Inter', sans-serif;
    font-size: 62px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 30px;
    line-height: 1.1;
}

.TransportLeftDescription {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 60px;
    line-height: 1.5;
}

.TransportFeaturesList {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.TransportFeatureBlock {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.TransportFeatureTitle {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: #000000;
    line-height: 1.1;
    text-align: left;
}

.TransportFeatureDesc {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #000000;
    line-height: 1.3;
    text-align: left;
}

.TransportRightColumn {
    width: 42%;
    background: #6A97FF;
    position: relative;
/*    overflow: hidden;*/
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
}

.TransportRightBackgroundImage {
    position: absolute;
/*    top: 0;*/
    right: 0;
    width: 110%;
    height: 110%;
    background-image: url('/upload/barzha.png'); /* Замените на путь к вашему изображению */
    background-size: contain;
    background-position: top right;
    background-repeat: no-repeat;
}

.TransportWhiteCard {
    background: #FFFFFF;
    padding: 30px;
    /*border-radius: 10px;*/
    margin-bottom: 20px;
    z-index: 2;
    position: relative;
}

.TransportCardTitle {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: #6A97FF;
    margin-bottom: 15px;
    line-height: 1.1;
}

.TransportCardDescription {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #000000;
    line-height: 1.3;
}

.TransportTransparentBlock {
    background: transparent;
    padding: 20px 0;
    z-index: 2;
    position: relative;
    text-align: right;
}

.TransportTransparentText {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1.1;
}

/* Адаптивность для новой секции */
@media (max-width: 1199px) {
    .TransportLeftTitle {
        font-size: 50px;
    }
    
    .TransportFeatureTitle {
        font-size: 28px;
    }
    
    .TransportCardTitle,
    .TransportTransparentText {
        font-size: 28px;
    }
}

@media (max-width: 991px) {
    .TransportTwoColumnSection {
        flex-direction: column;
        height: auto;
    }
    
    .TransportLeftColumn,
    .TransportRightColumn {
        width: 100%;
    }
    
    .TransportLeftColumn {
        padding: 60px 5%;
    }
    
    .TransportRightColumn {
        height: 500px;
    }
    
    .TransportLeftTitle {
        font-size: 42px;
    }
}

@media (max-width: 767px) {
    .TransportLeftTitle {
        font-size: 36px;
    }
    
    .TransportLeftDescription {
        font-size: 18px;
    }
    
    .TransportFeatureTitle {
        font-size: 24px;
    }
    
    .TransportFeatureDesc {
        font-size: 18px;
    }
    
    .TransportCardTitle,
    .TransportTransparentText {
        font-size: 24px;
    }
    
    .TransportCardDescription {
        font-size: 18px;
    }
    
    .TransportRightColumn {
        padding: 20px;
        height: 400px;
    }
    
    .TransportWhiteCard {
        padding: 20px;
    }
}

@media (max-width: 575px) {
    .TransportLeftTitle {
        font-size: 32px;
    }
    
    .TransportLeftDescription {
        font-size: 16px;
    }
    
    .TransportFeatureTitle {
        font-size: 20px;
    }
    
    .TransportFeatureDesc {
        font-size: 16px;
    }
    
    .TransportCardTitle,
    .TransportTransparentText {
        font-size: 20px;
    }
    
    .TransportCardDescription {
        font-size: 16px;
    }
    
    .TransportFeaturesList {
        gap: 30px;
    }
}

/* Стили для секции Технические возможности */
.tech_section {
    background: #FFFFFF;
    padding: 80px 5% 0px 5%;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.tech_container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    align-self: end;
}

.tech_title {
    font-family: 'Inter', sans-serif;
    font-size: 64px;
    font-weight: 600;
    color: #000000;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.1;
}

.tech_description {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #000000;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
    line-height: 1.5;
}

.tech_main_block {
    position: relative;
}

.tech_main_title {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 600;
    color: #000000;
    text-align: center;
    /*margin-bottom: 60px;*/
    line-height: 1.1;
}

.tech_columns_wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    /*gap: 40px;*/
}

.tech_left_column,
.tech_right_column {
    display: flex;
    flex-direction: column;
    gap: 30px;
    flex: 1;
    max-width: 300px;
}

.tech_feature_item {
    border: 1px solid #FFD53E;
    border-radius: 3px;
    padding: 20px;
    background: #FFFFFF;
}

.tech_feature_text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    line-height: 1.4;
    margin: 0;
}

.tech_background_image {
    width: 40%;
    height: 600px;
    background-image: url('/upload/tech_background_image.png'); 
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    flex-shrink: 0;
    background-position-y: bottom;
}

/* Адаптивность для секции Технические возможности */
@media (max-width: 1199px) {
    .tech_title {
        font-size: 56px;
    }
    
    .tech_main_title {
        font-size: 42px;
    }
    
    .tech_left_column,
    .tech_right_column {
        max-width: 280px;
    }
}

@media (max-width: 991px) {
    .tech_title {
        font-size: 48px;
    }
    
    .tech_main_title {
        font-size: 36px;
    }
    
    .tech_columns_wrapper {
        flex-direction: column;
        gap: 30px;
    }
    
    .tech_background_image {
        width: 95%;
        height: 300px;
        order: 1;
    }
    
    .tech_left_column {
        order: 2;
        max-width: 100%;
    }
    
    .tech_right_column {
        order: 3;
        max-width: 100%;
    }
    
    .tech_left_column,
    .tech_right_column {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .tech_feature_item {
        flex: 1;
        min-width: 250px;
        max-width: 300px;
    }
}

@media (max-width: 767px) {
    .tech_section {
        padding: 60px 20px 0px 20px;
    }
    
    .tech_title {
        font-size: 36px;
    }
    
    .tech_description {
        font-size: 18px;
        margin-bottom: 40px;
    }
    
    .tech_main_title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .tech_background_image {
        height: 250px;
    }
    
    .tech_left_column,
    .tech_right_column {
        gap: 20px;
    }
    
    .tech_feature_item {
        padding: 15px;
    }
    
    .tech_feature_text {
        font-size: 15px;
    }
}

@media (max-width: 575px) {
    .tech_section {
        padding: 40px 15px 0px 15px;
    }
    
    .tech_title {
        font-size: 28px;
    }
    
    .tech_description {
        font-size: 16px;
    }
    
    .tech_main_title {
        font-size: 24px;
    }
    
    .tech_background_image {
        height: 200px;
    }
    
    .tech_feature_item {
        min-width: 100%;
    }
    
    .tech_feature_text {
        font-size: 14px;
    }
}

/* Стили для секции Услуги порта */
.services_section {
    background: #F2F3F7;
    width: 100%;
/*    min-height: 100vh;*/
    position: relative;
/*    overflow: hidden;*/
}

.services_container {
    display: flex;
    max-width: 100%;
    margin: 0;
    justify-content: end;
}

.services_content {
    flex: 1;
    padding: 80px 5%;
    /*max-width: 100%;*/
}

.services_title {
    font-family: 'Inter', sans-serif;
    font-size: 62px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 60px;
    line-height: 1.1;
}

.services_accordion {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.services_item {
    border: 1px solid #C6CBD6;
    border-bottom: none;
/*    background: #f2f3f7;*/
    transition: all 0.3s ease;
    z-index: 1;
}

.services_item:last-child {
    border-bottom: 1px solid #C6CBD6;
}

.services_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 60px 60px 60px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.services_item_title {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: #000000;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.1;
}

.services_icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.services_icon svg {
    width: 50px;
    height: 50px;
    transition: all 0.3s ease;
}

.services_content_inner {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 0 40px;
}

.services_content_inner li
{
    text-transform: uppercase;
    font-weight: bold;
    line-height: 150%;
    font-size: 24px;
}
.services_content_inner ul

{
    list-style: none;
    list-style-position: outside;
}

.services_content_inner li::before {
  content: url(/bitrix/templates/main/upload/li.png);
  position: relative;
  left: 0;
  top: 5px;
  color: blue;
  margin-right: 7px;
 list-style-position: outside;
}

.services_item.active .services_content_inner {
    max-height: 1100px;
    padding: 0 60px 40px;
}

.services_subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: #000000;
    text-transform: uppercase;
    margin: 0 0 20px 0;
    line-height: 1.1;
}

.services_description {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #000000;
    line-height: 1.5;
    margin: 0;
    width: 85%;
}


.services_description_ban
{
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin: 50px 0px 50px 0px;
}
.services_description_ban_item
{
    
    border: 1px solid #B8B9BF;
    margin: 5px;
    padding: 25px;
    text-align: center;
    /*margin-top: 30px;
    margin-bottom: 30px;*/
}
.services_description_ban_item h1
{
text-transform: uppercase;
font-size: 24px;
font-weight: 400;
color:#B8B9BF ;
}
.services_description_ban_item p
{
font-size: 120px;
font-weight: 300;
color: #B8B9BF;
}

/* Активное состояние */
.services_item.active {
/*    background: #f2f3f7;*/
z-index: 1;
}

.services_item.active .services_icon {
    color: #6A97FF;
}

.services_item.active .services_icon svg {
    transform: rotate(180deg);
}

.services_item.active .services_header {
    padding-bottom: 20px;
}

/* Правая картинка */
.services_image {
   width: calc(100vw/5);
   position: relative;
   z-index: 0;
}

.services_image img {
    position: absolute;
    top: 0;
    right: 0;
/*    height: 120%;*/
    width: 100%;
    object-fit: contain;
    object-position: top right;
}

/* Адаптивность для секции Услуги порта */
@media (max-width: 1439px) {
    .services_title {
        font-size: 56px;
    }
    
    .services_item_title,
    .services_subtitle {
        font-size: 28px;
    }
    
    .services_description {
        font-size: 18px;
    }
}

@media (max-width: 1199px) {
    .services_title {
        font-size: 48px;
    }
    
    .services_item_title,
    .services_subtitle {
        font-size: 24px;
    }
    
    .services_header {
        padding: 25px 30px;
    }
    
    .services_content_inner {
        padding: 0 30px;
    }
    
    .services_item.active .services_content_inner {
        padding: 0 30px 30px;
    }
}

@media (max-width: 991px) {
    .services_container {
        flex-direction: column;
    }
    
    .services_content {
        max-width: 100%;
        padding: 60px 5%;
    }
    
    .services_image {
        width: 100%;
        height: 400px;
        display: none;
    }
    
    .services_image img {
        position: relative;
        width: 100%;
        height: 100%;
        object-position: center;
    }
    
    .services_title {
        font-size: 42px;
        margin-bottom: 40px;
    }
    .services_description_ban_item
    {
        width: 85%;
    }
    .services_description_ban_item h1
{

font-size: 22px;

}
.services_description_ban_item p
{
font-size: 100px;

}
}

@media (max-width: 767px) {
    .services_content {
        padding: 40px 20px;
    }
    
    .services_title {
        font-size: 36px;
    }
    
    .services_item_title,
    .services_subtitle {
        font-size: 20px;
    }
    
    .services_description {
        font-size: 16px;
    }

    .services_content_inner li
{
    text-transform: uppercase;
    font-weight: bold;
    line-height: 150%;
    font-size: 16px;
}
    .services_content_inner li::before {
  content: url(/bitrix/templates/main/upload/li.png);
  position: relative;
  width: 18px;
  height: 18px;
  left: 0;
  top: 5px;
  color: blue;
  margin-right: 7px;
}
    .services_header {
        padding: 20px;
    }
    
    .services_content_inner {
        padding: 0 20px;
    }
    
    .services_item.active .services_content_inner {
        padding: 0 20px 20px;
    }
    
    .services_icon {
        width: 32px;
        height: 32px;
    }
    
    .services_icon svg {
        width: 20px;
        height: 20px;
    }

        .services_description_ban_item h1
{

font-size: 18px;

}
.services_description_ban_item p
{
font-size: 80px;

}


}

@media (max-width: 575px) {
    .services_content {
        padding: 30px 15px;
    }
    
    .services_title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .services_item_title,
    .services_subtitle {
        font-size: 18px;
    }
    
    .services_description {
        font-size: 14px;
    }

    .services_content_inner li
{
    text-transform: uppercase;
    font-weight: bold;
    line-height: 150%;
    font-size: 14px;
}
   .services_content_inner li::before {
  content: url(/bitrix/templates/main/upload/li.png);
  position: relative;
  width: 10px;
  height: 10px;
  left: 0;
  top: 7px;
  color: blue;
  margin-right: 7px;
}
    
    .services_header {
        padding: 15px;
    }
    
    .services_content_inner {
        padding: 0 15px;
    }
    
    .services_item.active .services_content_inner {
        padding: 0 15px 15px;
    }
    
    .services_image {
       display: none;
    }
            .services_description_ban_item h1
{

font-size: 16px;

}
.services_description_ban_item p
{
font-size: 60px;

}





}

/* Стили для секции Судоремонт */
.ship_repair_section {
    margin-top: 150px;
    width: 100%;
    background: #FFFFFF;
}

.ship_repair_container {
    display: flex;
    width: 100%;
}

.ship_repair_left {
    width: 40%;
    padding: 80px 5%;
    background: #FFFFFF;
}

.ship_repair_title {
    font-family: 'Inter', sans-serif;
    font-size: 64px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 30px;
    line-height: 1.1;
    text-transform: uppercase;
}

.ship_repair_description {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 50px;
    line-height: 1.5;
}

.ship_repair_ban {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: 50px 0;
}

.ship_repair_ban_item {
    border: 1px solid #B8B9BF;
    margin: 5px;
    padding: 25px;
    text-align: center;
    min-width: 200px;
}

.ship_repair_ban_item h1 {
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 400;
    color: #B8B9BF;
    margin-bottom: 10px;
}

.ship_repair_ban_item p {
    font-size: 32px;
    font-weight: 300;
    color: #000000;
}

.ship_repair_ban_item p span {
    font-size: 16px;
}

.ship_repair_pdf_link {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    text-decoration: underline;
    text-decoration-style: dashed;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    transition: opacity 0.3s;
}

.ship_repair_pdf_link:hover {
    opacity: 0.7;
}

.ship_repair_right {
    width: 60%;
    padding: 80px 5%;
    background: #F2F3F7;
}

.ship_repair_right_title {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 30px;
    line-height: 1.1;
}

.ship_repair_list {
    list-style: none;
    column-count: 2;
    column-gap: 40px;
}

.ship_repair_list li {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    line-height: 1.5;
    margin-bottom: 20px;
    text-transform: uppercase;
    break-inside: avoid;
    width: 50%;
}
.ship_repair_list li::before
{
    content: url(/bitrix/templates/main/upload/li.png);
  position: relative;
  left: 0;
  top: 5px;
  color: blue;
  margin-right: 7px;
 list-style-position: outside;
}  
}

/* Адаптивность для секции Судоремонт */



@media (min-width: 1600px) {
    .ship_repair_title {
        font-size: 60px;
    }
}

/* Затем средние */
@media (min-width: 1200px) and (max-width: 1599px) {
    .ship_repair_title {
        font-size: 48px;
    }
}

/* И наконец маленькие */
@media (max-width: 1199px) {
    .ship_repair_title {
        font-size: 36px;
    }
}

@media (max-width: 991px) {
    .ship_repair_container {
        flex-direction: column;
    }
    
    .ship_repair_left,
    .ship_repair_right {
        width: 100%;
    }
    
    .ship_repair_title {
        font-size: 30px;
    }
    
    .ship_repair_list {
        column-count: 1;
        width: 100%;
    }
    .ship_repair_list li
    {
      width: 100%;  
    }
}

@media (max-width: 767px) {
    .ship_repair_section {
        margin-top: 100px;
    }
    
    .ship_repair_title {
        font-size: 28px;
    }
    
    .ship_repair_description {
        font-size: 18px;
    }
    
    .ship_repair_ban {
        justify-content: center;
    }
    
    .ship_repair_ban_item {
        width: 100%;
        max-width: 300px;
    }
    
    .ship_repair_ban_item h1 {
        font-size: 14px;
    }
    
    .ship_repair_ban_item p {
        font-size: 28px;
    }
    
    .ship_repair_right_title {
        font-size: 20px;
    }
    
    .ship_repair_list li {
        font-size: 14px;
        width: 100%;
    }
}

@media (max-width: 575px) {
    .ship_repair_section {
        margin-top: 80px;
    }
    
    .ship_repair_left,
    .ship_repair_right {
        padding: 60px 20px;
    }
    
    .ship_repair_title {
        font-size: 28px;
    }
    
    .ship_repair_description {
        font-size: 16px;
    }
    
    .ship_repair_ban_item {
        padding: 20px;
    }
    
    .ship_repair_ban_item h1 {
        font-size: 12px;
    }
    
    .ship_repair_ban_item p {
        font-size: 24px;
    }
    
    .ship_repair_pdf_link {
        font-size: 14px;
    }
    
    .ship_repair_right_title {
        font-size: 18px;
    }
    
    .ship_repair_list li {
        font-size: 13px;
        width: 100%;
    }
}

/* Подключение шрифта Lato */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap');

/* Стили для секции "Мы работаем для:" */
.clients-section {
    width: 100%;
    background: #FF5D5D;
    padding: 80px 0;
    margin-top: 0;
}

.clients-container {
    /*max-width: 1400px;*/
    /*margin: 0 auto;*/
    /*padding: 0 5%;*/
    text-align: center;
}

.clients-title {
    font-family: 'Inter', sans-serif;
    font-size: 64px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 30px;
    line-height: 1.1;
}

.clients-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 60px;
    line-height: 1.1;
}

.clients-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.client-item {
    width: 27%;
    background: #FFFFFF;
    /*border-radius: 10px;*/
    padding: 30px;
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.client-bg-image1 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 90%;
    height: 90%;
    background-image: url('/upload/bg_i1.png'); /* Замените на ваше изображение */
    background-size: contain;
    background-position: bottom right;
    background-repeat: no-repeat;
    opacity: 0.9;
    z-index: 0;
}
.client-bg-image3 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 90%;
    height: 90%;
    background-image: url('/upload/bg_i3.png'); /* Замените на ваше изображение */
    background-size: contain;
    background-position: bottom right;
    background-repeat: no-repeat;
    opacity: 0.9;
    z-index: 0;
}
.client-bg-image5 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 90%;
    height: 90%;
    background-image: url('/upload/bg_i5.png'); /* Замените на ваше изображение */
    background-size: contain;
    background-position: bottom right;
    background-repeat: no-repeat;
    opacity: 0.9;
    z-index: 0;
}
.client-item-title {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #000000;
    text-transform: uppercase;
    text-align: left;
    margin-bottom: 20px;
    line-height: 1.2;
    padding-right: 10px;
    z-index: 1;
}

.client-content {
    display: flex;
    align-items: center;
    gap: 15px;
    height: 15%;
    z-index: 1;
}

.client-icon {
    width: 11%;
    flex-shrink: 0;
}

.client-description {
    font-family: 'Lato', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    line-height: 1.3;
    text-align: left;
    flex: 1;
}

/* Адаптивность для секции "Мы работаем для:" */
@media (max-width: 1199px) {
    .clients-title {
        font-size: 56px;
    }
    
    .clients-subtitle {
        font-size: 42px;
    }
    
    .client-item {
        width: 40%;
    }
}

@media (max-width: 991px) {
    .clients-title {
        font-size: 48px;
    }
    
    .clients-subtitle {
        font-size: 36px;
    }
    
    .client-item {
        width: 42%;
    }
    
    .client-description {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .clients-section {
        padding: 60px 0;
    }
    
    .clients-title {
        font-size: 36px;
    }
    
    .clients-subtitle {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .client-item {
        width: 100%;
        max-width: 400px;
        min-height: 200px;
    }
    
    .client-item-title {
        font-size: 20px;
    }
    
    .client-description {
        font-size: 16px;
    }
    
    .clients-grid {
        gap: 25px;
    }
}

@media (max-width: 575px) {
    .clients-section {
        padding: 40px 0;
    }
    
    .clients-container {
        padding: 0 15px;
    }
    
    .clients-title {
        font-size: 28px;
    }
    
    .clients-subtitle {
        font-size: 22px;
        margin-bottom: 30px;
    }
    
    .client-item {
        padding: 20px;
        min-height: 180px;
    }
    
    .client-item-title {
        font-size: 18px;
    }
    
    .client-description {
        font-size: 14px;
    }
    
    .client-content {
        gap: 10px;
    }
}

/* Стили для секции Преимущества */
.advantages-section {
    width: 100%;
    background: #F2F3F7;
    padding: 80px 5%;
}

.advantages-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.advantages-title {
    font-family: 'Inter', sans-serif;
    font-size: 64px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 30px;
    line-height: 1.1;
}

.advantages-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 60px;
    line-height: 1.3;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.advantages-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.advantage-item {
    width: 27%;
    background: transparent;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    aspect-ratio: 4/3;
}

.advantage-icon {
    max-width: 270px;
    max-height: 161px;
    width: auto;
    height: auto;
    margin-bottom: 30px;
}

.advantage-title {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #000000;
    text-transform: uppercase;
    margin-bottom: 15px;
    text-align: center;
    line-height: 1.2;
}

.advantage-description {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 300;
    color: #7A7A7C;
    text-align: center;
    line-height: 1.4;
}

/* Адаптивность для секции Преимущества */
@media (max-width: 1199px) {
    .advantages-title {
        font-size: 56px;
    }
    
    .advantages-subtitle {
        font-size: 28px;
    }
    
    .advantage-item {
        width: 40%;
    }
}

@media (max-width: 991px) {
    .advantages-title {
        font-size: 48px;
    }
    
    .advantages-subtitle {
        font-size: 26px;
    }
    
    .advantage-item {
        width: 40%;
    }
    
    .advantage-title {
        font-size: 22px;
    }
    
    .advantage-description {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .advantages-section {
        padding: 60px 20px;
    }
    
    .advantages-title {
        font-size: 36px;
    }
    
    .advantages-subtitle {
        font-size: 22px;
    }
    
    .advantage-item {
        width: 100%;
        max-width: 400px;
        aspect-ratio: unset;
        padding: 30px 15px;
    }
    
    .advantage-title {
        font-size: 20px;
    }
    
    .advantage-description {
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .advantages-section {
        padding: 40px 15px;
    }
    
    .advantages-title {
        font-size: 28px;
    }
    
    .advantages-subtitle {
        font-size: 18px;
    }
    
    .advantage-item {
        padding: 20px 15px;
    }
    
    .advantage-title {
        font-size: 18px;
    }
    
    .advantage-description {
        font-size: 14px;
    }
    
    .advantage-icon {
        max-width: 200px;
        max-height: 120px;
        margin-bottom: 20px;
    }
}

/* Стили для секции "Часто запрашиваемые услуги" */
.frequently-requested-services {
    width: 100%;
    background: #FFFFFF;
    padding: 80px 5%;
}

.frs-container {
    display: flex;
    width: 100%;
}

.frs-left-column {
    width: 60%;
    padding-right: 5%;
}

.frs-title {
    font-family: 'Inter', sans-serif;
    font-size: 64px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 60px;
    line-height: 1.1;
    text-align: left;
}

.frs-list {
    list-style: none;
    column-count: 2;
    column-gap: 40px;
}

.frs-list li {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    line-height: 1.5;
    margin-bottom: 20px;
    text-transform: uppercase;
    break-inside: avoid;
    width: 50%;
}

.frs-list li::before {
    content: url(/bitrix/templates/main/upload/li.png);
    position: relative;
    left: 0;
    top: 5px;
    color: blue;
    margin-right: 7px;
    list-style-position: outside;
}

.frs-right-column {
    width: 40%;
    background: #F2F3F7;
    /* Можно добавить фоновое изображение или другой контент */
}


.frs-right-column-img {
    height: 100%;
}

/* Адаптивность для секции "Часто запрашиваемые услуги" */
@media (max-width: 1199px) {
    .frs-title {
        font-size: 56px;
    }
}

@media (max-width: 991px) {
    .frs-container {
        flex-direction: column;
    }
    
    .frs-left-column,
    .frs-right-column {
        width: 100%;
    }
    
    .frs-title {
        font-size: 42px;
    }
    
    .frs-list {
        column-count: 1;
        width: 100%;
    }
    
    .frs-list li {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .frequently-requested-services {
        padding: 60px 20px;
    }
    
    .frs-title {
        font-size: 36px;
    }
    
    .frs-list li {
        font-size: 14px;
        width: 100%;
    }
}

@media (max-width: 575px) {
    .frequently-requested-services {
        padding: 40px 15px;
    }
    
    .frs-title {
        font-size: 28px;
    }
    
    .frs-list li {
        font-size: 13px;
        width: 100%;
    }
}



/* End */
/* /bitrix/templates/.default/components/bitrix/news.list/landing_news/style.css?17635003934476 */
/* /bitrix/templates/.default/components/bitrix/news.list/landing_gall/style.css?17635003346857 */
/* /bitrix/components/bitrix/map.yandex.system/templates/.default/style.css?1762959797666 */
/* /bitrix/templates/main/styles.css?1762962230548 */
/* /bitrix/templates/main/template_styles.css?176350201954522 */
