body {
    font-family: 'Inter', Arial, sans-serif;
    line-height: 1.5;
    color: #333;
    position: relative;
    width: 100%;
    overflow-x: clip;
}

.mobile-menu-logo img {
    max-width: 180px;
    height: auto;
}

.shadow-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(0turn, rgba(255, 247, 5, 0) 0%, rgba(0, 0, 0, 1) 100%);
    opacity: 0.1;
}

.mobile-menu-nav a {
    display: block;
    padding: 10px 0;
    color: #000000;
    text-decoration: none;
    font-family: 'Inter', Arial, sans-serif;
    font-size: 16px;
    transition: color 0.2s ease;
}

.contacts-btn {
    background-color: #f5f5f5;
    border-radius: 12px;
    padding: 10px;
    font-family: 'Inter', Arial, sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #000000;
    border: none;
}

.contacts-btn:hover {
    background-color: #e0e0e0;
}

.social-link {
    text-decoration: none;
}

.request-btn {
    padding: 10px;
    background-color: #0A6EF7;
    border-radius: 12px;


    font-family: 'Inter', Arial, sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;

    border: none;
}

.header-top {
    background: rgba(13, 69, 146, 255);
    position: relative; /* Не фиксируем */
    z-index: 2;
}


.header-container {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: #ffffff;
    height: 72px;
}

.logoimg {
    height: 48px;
}

.comp-name {
    padding-top: 20px;
}

@media (max-width: 1430px) {
    .request-btn {
        padding: 8px;
        font-size: 12px;
    }

    .contacts-btn {
        padding: 8px;
        font-size: 12px;
    }
}

@media (max-width: 1199px) {

    .menu-btn {

        width: 48px;
        height: 48px;
    }

    .contacts-box, .social-box {
        display: none;
    }

    .logoimg {
        height: 48px;
    }
}

@media (max-width: 767px) {
    .menu-btn {
        display: block;
        position: absolute;
        left: 450px;
        top: 7px;
        width: 48px;
        height: 48px;
    }

    .comp-name {
        padding-top: 10px;
    }
}

@media (max-width: 479px) {
    .menu-btn {
        top: 10px;
        left: 340px;
    }

    .comp-name {
        text-align: left;
        font-size: 13px;
        padding-top: 15px;
        padding-left: 10px;
    }

    .logoimg {
        margin-top: 5px;
        height: 40px;
    }

    .mobile-menu-logo img {
        max-width: 120px;

    }

    .mobile-menu-nav a {
        padding: 7px 0;
    }

}

@media (max-width: 375px) {
    .menu-btn {
        top: 12px;
        left: 310px;
    }
}

@media (max-width: 345px) {
    .menu-btn {
        top: 12px;
        left: 285px;
    }
}

/*бургер*/
.mobile-menu-container {
    position: fixed;
    top: 0;
    right: -260px;
    width: 260px;
    height: 100vh;
    background-color: #ffffff;
    z-index: 1900;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    will-change: right;
}

.mobile-menu-container.open {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2;
}

.mobile-menu-close span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #000000;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.mobile-menu-close span:nth-child(1) {
    top: 10px;
    transform: rotate(135deg);
}

.mobile-menu-close span:nth-child(2) {
    top: 10px;
    transform: rotate(-135deg);
}

.mobile-menu-content {
    padding: 20px;
    height: 100%;
    overflow-y: auto;
}

.mobile-menu-logo {
    margin-bottom: 20px;
    text-align: center;
}


.mobile-menu-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-nav li {
    padding: 5px 0;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-menu-nav li:first-child {
    padding-top: 0;
}

.mobile-menu-nav li:last-child {
    border-bottom: none;
}


.mobile-menu-nav a:hover {
    color: #0A6EF7;
}

.mobile-menu-social {
    margin-top: 30px;
    text-align: center;
}

.mobile-menu-social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.mobile-menu-social-links a {
    display: block;
    width: 30px;
    height: 30px;
    transition: transform 0.2s ease;
}

.mobile-menu-social-links a:hover {
    transform: scale(1.1);
}

.mobile-menu-social-links svg {
    width: 100%;
    height: 100%;
}

.mobile-menu-footer {
    margin-top: 20px;
    text-align: center;
    font-size: 12px;
    color: #a2a2a2;
}

.mobile-menu-footer a {
    color: #a2a2a2;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.mobile-menu-footer a:hover {
    color: #00b401;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* Анимация для кнопки бургера */
.menu-btn {
    transition: transform 0.3s ease;
}

.menu-btn.active {
    transform: rotate(90deg);
}


/*hero*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* Hero Section */
.geo-hero {
    position: relative;
    min-height: 800px;
    overflow: hidden;

    display: flex;
    flex-direction: column;
    justify-content: center;
    background-image: url(../img/products/bg.png);
    background-size: cover;
}

.geo-hero__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.geo-hero__video-element {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.geo-hero__gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0) 100%);
    z-index: 2;
}

.geo-hero__content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 120px 20px 180px;
    color: #000000;
}

.geo-hero__title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    max-width: 800px;
    margin-bottom: 30px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.geo-hero__description {
    font-size: 18px;
    font-weight: 400;
    max-width: 560px;
    margin-bottom: 40px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
}

.geo-hero__buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 60px;
}

.geo-hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
    height: 56px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.geo-hero__btn--primary {
    background-color: #0A6EF7;
    color: #ffffff;
    box-shadow: 0 4px 12px rgb(0 135 228 / 30%);
}

.geo-hero__btn--primary:hover {
    background-color: #0A6EF7;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgb(0 135 228 / 30%);
}

.geo-hero__btn-video {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
    transition: transform 0.3s ease;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    border-radius: 12px;
    padding: 8px 20px 8px 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.geo-hero__btn-video:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.25);
}

.geo-hero__video-preview {
    width: 80px;
    height: 45px;
    border-radius: 6px;
    background-size: cover;
    background-position: center;
    position: relative;
    margin-right: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.geo-hero__play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 32px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.geo-hero__play-icon::after {
    content: "";
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-left: 12px solid #0A6EF7;
    border-bottom: 8px solid transparent;
    margin-left: 2px;
    transition: all 0.3s ease;
}

.geo-hero__btn-video:hover .geo-hero__play-icon {
    background-color: #fff;
    transform: translate(-50%, -50%) scale(1.1);
}

.geo-hero__video-text {
    font-size: 16px;
    font-weight: 500;
    color: black;
}

.geo-hero__features {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    width: 100%;
    margin: -80px auto 0;
    padding: 0 20px;
    display: flex;
    gap: 20px;
}

.geo-hero__feature {
    display: flex;
    align-items: center;
    background-color: #0D4592;
    border-radius: 12px;
    padding: 20px;
    color: #ffffff;
    flex: 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

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

.geo-hero__feature-icon {
    margin-right: 15px;
    font-size: 24px;
    min-width: 24px;
}

.geo-hero__feature-text {
    font-size: 16px;
    font-weight: 500;
}

/* Video Popup */
.geo-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.geo-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.geo-popup__container {
    position: relative;
    width: 90%;
    max-width: 900px;
    z-index: 2;
    animation: scaleUp 0.3s ease;
}

@keyframes scaleUp {
    from {
        transform: scale(0.95);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.geo-popup__close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 3;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.geo-popup__close:hover {
    opacity: 1;
}

.geo-popup__close svg {
    width: 24px;
    height: 24px;
}

.geo-popup__video {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.geo-popup__video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .geo-hero {
        min-height: 700px;
    }

    .geo-hero__content {
        padding: 100px 20px 150px;
    }

    .geo-hero__title {
        font-size: 46px;
        max-width: 700px;
    }

    .geo-hero__features {
        margin-top: -60px;
    }
}

@media (max-width: 992px) {
    .geo-hero {
        min-height: 600px;
    }

    .geo-hero__title {
        font-size: 40px;
        max-width: 600px;
    }

    .geo-hero__description {
        font-size: 16px;
        max-width: 500px;
    }

    .geo-hero__buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .geo-hero__features {
        flex-wrap: wrap;
        margin-top: -40px;
    }

    .geo-hero__feature {
        min-width: calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    .geo-hero {
        min-height: 500px;
    }

    .geo-hero__content {
        padding: 80px 20px 120px;
    }

    .geo-hero__title {
        font-size: 34px;
    }

    .geo-hero__btn {
        height: 50px;
        padding: 0 25px;
        font-size: 15px;
    }

    .geo-hero__video-preview {
        width: 70px;
        height: 40px;
    }

    .geo-hero__play-icon {
        width: 26px;
        height: 26px;
    }

    .geo-popup__container {
        width: 95%;
    }
}

@media (max-width: 576px) {
    .geo-hero {
        min-height: auto;
        padding-bottom: 40px;
        background: #E8E4D7;
        background-size: cover;
    }

    .geo-hero__content {
        padding: 70px 20px 1px;
    }

    .geo-hero__title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .geo-hero__description {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .geo-hero__btn {
        height: 46px;
        padding: 0 20px;
        font-size: 14px;
        width: 100%;
    }

    .geo-hero__btn-video {
        width: 100%;
        padding: 6px;
    }

    .geo-hero__video-preview {
        width: 60px;
        height: 34px;
    }

    .geo-hero__play-icon {
        width: 22px;
        height: 22px;
    }

    .geo-hero__play-icon::after {
        border-top-width: 6px;
        border-left-width: 10px;
        border-bottom-width: 6px;
    }

    .geo-hero__video-text {
        font-size: 14px;
    }

    .geo-hero__features {
        margin-top: 20px;
        gap: 12px;
        padding: 0px 4px;
    }

    .geo-hero__feature {

        padding: 10px;
    }

    .geo-hero__feature-icon {
        font-size: 20px;
        margin-right: 4px;
    }

    .geo-hero__feature-text {
        font-size: 13px;
    }

    .geo-hero__video-element {
        display: none;
    }

    .geo-hero__buttons {
        margin-bottom: 10px;
    }
}


/* Стили попапа таблицы 1-2 popup table*/
.universal-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1050;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.universal-popup-container {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    width: auto;
    animation: popup-fade 0.3s;
}

.universal-popup-content {
    position: relative;
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
}

.universal-popup-img-container {
    max-height: 80vh;
    overflow: auto;
}

.universal-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    color: white;
    border: none;
    font-size: 18px;
    line-height: 30px;
    text-align: center;
    cursor: pointer;
    z-index: 10;
}

@keyframes popup-fade {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Popup Base Styles */
.geo-form-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.geo-form-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.geo-form-popup__container {
    position: relative;
    width: 90%;
    max-width: 500px;
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 2;
    animation: slideUp 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.geo-form-popup__close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 3;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.geo-form-popup__close:hover {
    opacity: 1;
}

.geo-form-popup__close svg {
    width: 20px;
    height: 20px;
}

/* Form Styles */
.geo-form {
    margin-top: 20px;
}

.geo-form__title {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    text-align: center;
    margin-bottom: 15px;
}

.geo-form__description {
    font-size: 16px;
    color: #555;
    text-align: center;
    margin-bottom: 25px;
    line-height: 1.5;
}

.geo-form__description strong {
    color: #0A6EF7;
    font-weight: 600;
}

.geo-form__group {
    margin-bottom: 20px;
    position: relative;
}

.geo-form__label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.geo-form__input {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    border: 1px solid #e4e4e4;
    border-radius: 12px;
    background: #fff;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.geo-form__input:focus {
    border-color: #0A6EF7;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 180, 1, 0.1);
}

.geo-form__select {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    border: 1px solid #e4e4e4;
    border-radius: 12px;
    background: #fff;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
}

.geo-form__submit {
    margin-top: 30px;
}

.geo-form__submit-btn {
    width: 100%;
    padding: 16px;
    background: #0A6EF7;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.geo-form__submit-btn:hover {
    background: #0A6EF7;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgb(2 91 255 / 30%);
}

.geo-form__footer {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #999;
}

.geo-form__footer a {
    color: #999;
    text-decoration: underline;
}

.geo-form__footer a:hover {
    color: #666;
}

.phone-input__container {
    margin-bottom: 15px;
}

.phone-input__label {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: 500;
}

.phone-input__wrapper {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid #e4e4e4;
    border-radius: 12px;
}

/* Phone Input Styles */
.geo-form__phone-wrapper {
    display: flex;
    border: 1px solid #e4e4e4;
    border-radius: 12px;
    overflow: hidden;
}

.country-code__dropdown {
    position: relative;
}

.country-code__trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: #fff;
    border: none;
    border-right: 1px solid #d1d5db;
    cursor: pointer;
    font-size: 15px;
    min-width: 80px;
}

.country-code__arrow {
    font-size: 10px;
    transition: transform 0.2s;
    margin-left: auto;
}

.country-code__list {
    position: absolute;
    top: 100%;
    left: 0;
    width: 260px;
    max-height: 300px;
    overflow-y: auto;
    margin: 5px 0 0;
    padding: 0;
    list-style: none;
    background: #fff;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 100;
    display: none;
}

.country-code__item {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.country-code__item:hover {
    background-color: #f3f4f6;
}

.country-code__item--active {
    background-color: #eff6ff;
}

.country-flag {
    margin-right: 10px;
    font-size: 18px;
    flex-shrink: 0;
}

.country-dial {
    width: 45px;
    margin-right: 10px;
    font-weight: 500;
    flex-shrink: 0;
}

.country-name {
    color: #4b5563;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


.phone-input__field {
    flex: 1;
    border: none;
    padding: 14px 16px;
    font-size: 16px;

}

.phone-input__field:focus {
    border: 1px #0A6EF7 solid;
    outline: none;
}


.phone-input__error {
    color: #ef4444;
    font-size: 13px;
    margin-top: 5px;
    display: none;
}

/* Добавляем стили для изображений флагов */
.country-code__flag-img {
    width: 20px;
    height: 15px;
    margin-right: 8px;
    object-fit: cover;
    border: 1px solid #e5e7eb;
}

.country-flag-img {
    width: 20px;
    height: 15px;
    margin-right: 10px;
    object-fit: cover;
    border: 1px solid #e5e7eb;
    flex-shrink: 0;
}

/* Оптимизация для длинных названий стран */
.country-name {
    color: #4b5563;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 160px;
}

/* Открытое состояние dropdown */
.country-code__dropdown--open .country-code__list {
    display: block;
}

.country-code__dropdown--open .country-code__arrow {
    transform: rotate(180deg);
}


.geo-form__phone-prefix {
    padding: 14px 12px;
    background: #f5f5f5;
    font-size: 16px;
    border-right: 1px solid #e4e4e4;
}

.geo-form__phone-input {
    flex: 1;
    border: none;
    padding: 14px 16px;
    font-size: 16px;
}

/* Error Styles */
.geo-form__error {
    color: #e74c3c;
    font-size: 13px;
    margin-top: 5px;
    display: none;
}

.geo-form__group--error .geo-form__input,
.geo-form__group--error .geo-form__select,
.geo-form__group--error .geo-form__phone-wrapper {
    border-color: #e74c3c;
}

.geo-form__group--error .geo-form__error {
    display: block;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .geo-form-popup__container {
        padding: 30px 20px;
        max-width: 90%;
    }

    .geo-form__title {
        font-size: 20px;
    }

    .geo-form__description {
        font-size: 15px;
    }

    .geo-form__input,
    .geo-form__select,
    .phone-input__field,
    .phone-input__error,
    .geo-form__phone-input {
        padding: 12px 14px;
        font-size: 15px;
    }

    .geo-form__phone-prefix {
        padding: 12px 10px;
        font-size: 15px;
    }

    .geo-form__submit-btn {
        padding: 14px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .geo-form-popup__container {
        padding: 25px 15px;
        max-width: 95%;
    }

    .geo-form__title {
        font-size: 18px;
    }

    .geo-form__description {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .geo-form__group {
        margin-bottom: 15px;
    }

    .geo-form__input,
    .geo-form__select,
    .phone-input__field,
    .phone-input__error,
    .geo-form__phone-input {
        padding: 10px 12px;
        font-size: 14px;
    }

    .geo-form__phone-prefix {
        padding: 10px 8px;
        font-size: 14px;
    }

    .geo-form__submit-btn {
        padding: 12px;
        font-size: 14px;
    }

    .geo-form__footer {
        font-size: 13px;
    }
}


/* фильтр */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* Filter Container */
.geo-filter {
    max-width: 1200px;
    margin: 30px auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.geo-filter__title {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.geo-filter__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #0A6EF7;
}

/* Filter Tabs */
.geo-filter__tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.geo-filter__tab-group {
    width: 100%;
    margin-bottom: 15px;
}

.geo-filter__tab-group-title {
    font-size: 16px;
    font-weight: 500;
    color: #555;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.geo-filter__tab-group-title::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 16px;
    background: #0A6EF7;
    margin-right: 8px;
    border-radius: 2px;
}

.geo-filter__tab {
    padding: 5px 5px;
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #444;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    flex: 1;
    min-width: 20px;
}

.geo-filter__tab:hover {
    background: #f0f0f0;
    border-color: #d0d0d0;
}

.geo-filter__tab--active {
    background: #0A6EF7;
    color: #fff;
    border-color: #0A6EF7;
    box-shadow: 0 4px 12px #0A6EF7;
}

.geo-filter__tab--active:hover {
    background: #0A6EF7;
    border-color: #0A6EF7;
}

/* Notice */
.geo-filter__notice {
    background: #f8f8f8;
    border-left: 4px solid #0A6EF7;
    padding: 15px;
    border-radius: 0 8px 8px 0;
    font-size: 14px;
    color: #555;
    margin-top: 30px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .geo-filter {
        padding: 25px;
    }

    .geo-filter__title {
        font-size: 20px;
    }

    .geo-filter__tab {
        padding: 10px 15px;
        font-size: 14px;
        min-width: 90px;
    }
}

@media (max-width: 768px) {
    .geo-filter {
        padding: 20px;
        border-radius: 12px;
    }

    .geo-filter__tabs {
        gap: 8px;
    }

    .geo-filter__tab {
        padding: 8px 12px;
        font-size: 13px;
        min-width: 80px;
        border-radius: 8px;
    }

    .geo-filter__tab-group-title {
        font-size: 15px;
    }

    .geo-filter__notice {
        font-size: 13px;
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .geo-filter {
        padding: 15px;
        margin: 15px;
    }

    .geo-filter__title {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .geo-filter__tabs {
        gap: 6px;
    }

    .geo-filter__tab {
        padding: 5px 5px;
        font-size: 12px;
        min-width: 60px;
        border-radius: 6px;
    }

    .geo-filter__tab-group-title {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .geo-filter__notice {
        font-size: 12px;
        padding: 10px;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.product-card {
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.product-header {
    grid-column: 1 / -1;
}

.product-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.product-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.product-description {
    margin-bottom: 20px;
}

.specs-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table tr {
    border-bottom: 1px solid #e0e0e0;
}

.specs-table td {
    padding: 12px 0;
    vertical-align: top;
}

.spec-name {
    font-weight: 500;
    width: 60%;
}

.spec-value {
    color: #4f4f4f;
}

.product-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: #00b401;
    color: white;
}

.btn-primary:hover {
    background: #009a01;
}

.btn-secondary {
    background: #f0f0f0;
    color: #333;
    border: 1px solid #ddd;
}

.btn-secondary:hover {
    background: #e0e0e0;
}

.notice {
    background: #f8f8f8;
    border-left: 4px solid #00b401;
    padding: 15px;
    border-radius: 0 8px 8px 0;
    margin-top: 30px;
    grid-column: 1 / -1;
}

@media (max-width: 768px) {
    .product-title {
        font-size: 18px;
        font-weight: bold;
    }


    .product-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .product-description {
        font-size: 14px;
    }

    .specs-title {
        font-size: 14px;
        font-weight: bold;
    }

    .spec-name {
        font-weight: 500;
        width: 70%;
        font-size: 12px;
    }

    .spec-value {
        color: #4f4f4f;
        text-align: right;
        font-size: 12px;
    }
}

@media (max-width: 600px) {
    .product-card {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 0px;
    }
}

/*метрики*/
.metric-icon {
    width: 70px;
}

.metob2 {
    display: none;
}

.bgmetric {
    background-image: url(../img/bgstat.png);
    color: white;
    border-radius: 16px;
    padding-left: 20px;
    padding-right: 20px;
}

.metob {
    color: #0A6EF7;
}

.metric-card__value {
    font-size: 20px;
    text-align: center;
}

.metric-card__description {
    text-align: center;
}

@media (max-width: 480px) {
    .metric-icon {
        width: 35px;
    }

    .metob {
        display: none;
    }

    .metob2 {
        display: block;
        color: #0A6EF7;
        font-size: 15px;
    }

    .bgmetric {
        background-image: url(../img/mobilemetric.png);
        background-size: cover;
    }

    .metric-card__value {
        font-size: 17px;
        text-align: left;
    }

    .metric-card__description {
        text-align: left;
    }
}

@media (max-width: 480px) {

}


@media (max-width: 768px) {
    .metrics-block__title {
        font-size: 24px;
        margin-bottom: 30px;
    }
}

/*счетчик*/
.company-stats {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
}

.stats-header {
    position: sticky;
    top: 20px;
}

.company-stats__title {
    font-size: 28px;
    margin-bottom: 30px;
    color: #333;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-card {
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.stat-card__value {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #2c3e50;
}

.stat-card__label {
    font-size: 16px;
    color: #666;
}

.reviews-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    padding: 10px 0;
    color: #0066cc;
    text-decoration: none;
    transition: color 0.3s;
}

.reviews-link:hover {
    color: #004499;
}

.reviews-link__icon {
    transition: transform 0.3s;
}

.reviews-link:hover .reviews-link__icon {
    transform: translateX(3px);
}

/* Адаптивность */
@media (max-width: 1024px) {
    .company-stats {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stats-header {
        position: static;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        /*        grid-template-columns: 1fr;*/
    }

    .company-stats__title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .stat-card {
        padding: 15px;
    }

    .stat-card__value {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .company-stats {
        padding: 30px 15px;
    }

    .stat-card__value {
        font-size: 24px;
    }

    .stat-card__label {
        font-size: 14px;
    }

    .reviews-link {
        font-size: 14px;
    }
}


/* почему мы */
.advantages-section {


    padding: 80px 20px;
    background-color: #0A6EF7;
}

.advantages-title {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 50px;
    text-align: center;
    color: white;
}

.advantages-container {
    max-width: 1200px;
    margin: 0 auto;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.advantage-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.advantage-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.advantage-image {
    height: 200px;
    overflow: hidden;
}

.advantage-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.advantage-card:hover .advantage-image img {
    transform: scale(1.05);
}

.advantage-content {
    padding: 10px;
    color: white;
}

.advantage-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.advantage-icon i {
    font-size: 24px;
    color: white;
}

.advantage-content h3 {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.3;
    font-weight: 600;
}

.advantage-content p {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 0;
    opacity: 0.9;
}

/* Адаптивность - mobile first подход */
@media (max-width: 480px) {
    .advantages-section {
        padding: 40px 15px;
    }

    .advantages-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .advantage-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto 20px;
    }

    .advantage-icon i {
        font-size: 32px;
    }

    .advantage-content h3,
    .advantage-content p {
        text-align: center;
    }

    .advantage-card {
        backdrop-filter: none;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .advantage-image {
        height: 180px;
    }

    .advantages-title {
        font-size: 28px;
    }

    .advantage-icon {
        width: 50px;
        height: 50px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .advantages-grid {
        gap: 20px;
    }
}

/* о компании*/
.about-company {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: sans-serif;
}

/* Верхний блок */
.top-section {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.title-block {
    flex: 0 0 30%;
    padding-right: 20px;
}

.title-block h2 {
    font-size: 36px;
    line-height: 46px;
    margin: 0;
}

.description-block {
    flex: 0 0 70%;
}

.description-block h3 {
    font-size: 20px;
    line-height: 25px;
    margin: 0;
    font-weight: normal;
}

.highlight {
    color: #0A6EF7;
}

.description-block a {
    color: #0A6EF7;
    text-decoration: none;
}

/* Нижний блок */
.bottom-section {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.director-block {
    flex: 0 0 calc(33.333% - 40px);
    display: flex;
    gap: 20px;
}

.director-image {
    flex: 0 0 81px;
}

.director-image img {
    width: 100%;
    height: auto;
    border-radius: 50%;
}

.director-info h3 {
    font-size: 18px;
    line-height: 22px;
    margin: 0 0 15px 0;
}

.watch-link {
    display: flex;
    align-items: center;
    gap: 10px;
}

.watch-link img {
    width: 20px;
}

.watch-link h3 {
    font-size: 16px;
    line-height: 20px;
    margin: 0;
}

.watch-link a {
    color: inherit;
    text-decoration: none;
}

.info-block {
    flex: 0 0 calc(33.333% - 40px);
}

.divider {
    width: 100%;
    height: 1px;
    background-color: #000;
    margin-bottom: 20px;
}

.info-block h3 {
    font-size: 18px;
    line-height: 22px;
    margin: 0;
    font-weight: normal;
}

.dir2 {
    display: none;
}

/* Адаптация */
@media (max-width: 1200px) {
    .title-block,
    .description-block,
    .director-block,
    .info-block {
        flex: 0 0 100%;
    }

    .title-block {
        margin-bottom: 20px;
    }

    .director-block {
        margin-bottom: 30px;
    }

    .divider {
        width: 80%;
    }
}

@media (max-width: 768px) {
    .top-section,
    .bottom-section {
        flex-direction: column;
    }

    .director-block {
        /*    flex-direction: column;*/
    }

    .director-image {
        margin-bottom: 15px;
        width: 15%;
    }

    .description-block h3 {
        font-size: 16px;
        line-height: 20px;
    }

    .dir1 {
        display: none;
    }

    .dir2 {
        display: flex;
        margin-top: 20px;
    }

    .top-section {
        margin-bottom: 10px;
    }

    .info-block h3 {
        font-size: 13px;
    }

    .bottom-section {
        gap: 0px;
    }

    .director-info h3 {
        font-weight: bold;
        margin-bottom: 2px;
    }
}


.video-promo-section {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.video-promo-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-promo-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.video-button-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
}

.video-popup-button {
    display: inline-flex;
    align-items: center;
    background: transparent;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.video-popup-button:hover {
    transform: scale(1.05);
}

.play-icon {
    width: 48px;
    height: 48px;
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.video-popup-button:hover .play-icon {
    transform: scale(1.1);
}

/* Стили для попапа */
.video-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: none;
}

.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 900px;
    background: #000;
}

.close-popup {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Адаптивность */
@media (max-width: 1200px) {
    .video-promo-section {
        height: 500px;
    }
}

@media (max-width: 960px) {
    .video-promo-section {
        height: 400px;
    }

    .video-popup-button {
        font-size: 20px;
    }

    .play-icon {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 640px) {
    .video-promo-section {
        height: 250px;
    }

    .video-popup-button {
        flex-direction: column;
        font-size: 18px;
    }

    .play-icon {
        margin-left: 0;
        margin-top: 10px;
        width: 30px;
        height: 30px;
    }

    .popup-content {
        width: 95%;
    }
}

@media (max-width: 480px) {
    .video-popup-button {
        font-size: 16px;
    }
}

/* карусель */
.awards-section {
    padding: 80px 0;
    background-color: #fff;
    position: relative;
    background-image: url(https://static.tildacdn.com/tild3862-6264-4034-a537-646138343166/GeoSM___1_2.svg);
    background-size: 40% 40%;
    background-repeat: no-repeat;
    background-position: calc(-30%) calc(100% + 30px);
}

.awards-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}

.awards-title {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 50px;
    color: #333;
    text-align: center;
    font-weight: 700;
}

.awards-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.awards-carousel {
    width: 100%;
    overflow: hidden;
}

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

.award-item {
    flex: 0 0 280px;
    height: 400px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.award-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.award-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #f9f9f9;
}

.carousel-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    z-index: 2;
}

.prev-btn {
    transform: scaleX(-1)
}

.carousel-btn:hover {
    transform: scale(1.1);
}

.carousel-btn img {
    width: 48px;
    height: 48px;
}

/* Адаптивность */
@media (max-width: 1024px) {
    .awards-container {
        padding: 0 30px;
    }

    .award-item {
        flex: 0 0 240px;
        height: 400px;
    }
}

@media (max-width: 768px) {
    .awards-section {
        padding: 60px 0;
    }

    .awards-title {
        font-size: 30px;
        margin-bottom: 40px;
    }

    .awards-carousel-wrapper {
        gap: 15px;
    }

    .carousel-track {
        gap: 20px;
    }

    .award-item {
        flex: 0 0 200px;
        height: 140px;
    }

    .carousel-btn img {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 480px) {
    .awards-container {
        padding: 0 20px;
    }

    .awards-title {
        font-size: 26px;
    }

    .award-item {
        flex: 0 0 268px;
        height: 400px;
    }
}

/*награды 2*/

.awards-gallery-section {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.awards-gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.awards-gallery-title {
    /*text-align: center;*/
    margin-bottom: 20px;
    font-size: 36px;
    color: #333;
}

.awards-gallery-nav {
    display: flex;
    /*justify-content: center;*/
    gap: 20px;
    margin-bottom: 30px;
}

.awards-gallery-nav-btn {
    background: #fff;
    border: 1px solid black;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    font-size: 24px;
    color: #333;
}

.awards-gallery-nav-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
    color: #007bff;
}

.awards-gallery-carousel {
    width: 100%;
    overflow: hidden;
}

.awards-gallery-items {
    display: flex;
    gap: 25px;
    padding: 10px;
    scroll-behavior: smooth;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
}

.awards-gallery-items::-webkit-scrollbar {
    display: none;
}

.awards-gallery-card {
    flex: 0 0 220px; /* Уменьшил ширину для вертикальных изображений */
    scroll-snap-align: start;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    background: white;
    position: relative;
}

.awards-gallery-card:hover {
    transform: translateY(-5px);
}

.awards-gallery-image-container {
    position: relative;
    width: 100%;
    height: 300px; /* Фиксированная высота для вертикальных изображений */
    overflow: hidden;
}

.awards-gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.awards-gallery-zoom-btn {
    position: absolute;
    bottom: 15px;
    right: 30px;
    background: black;
    border: none;
    border-radius: 5px;
    width: 150px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
}

.awards-gallery-zoom-btn:hover {
    background: rgba(0, 123, 255, 0.9);
    transform: scale(1.1);
}

/* Стили попапа */
.awards-gallery-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

.awards-gallery-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.awards-gallery-popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90vh;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
}

.awards-gallery-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    z-index: 2;
}

.awards-gallery-popup-image {
    max-width: 100%;
    max-height: 80vh;
    display: block;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .awards-gallery-title {
        font-size: 28px;
    }

    .awards-gallery-card {
        flex: 0 0 180px;
    }

    .awards-gallery-image-container {
        height: 250px;
    }

    .awards-gallery-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .awards-gallery-zoom-btn {
        right: 15px;
    }
}

/*дипломы*/

.diplomas-section {
    padding: 5rem 0;
    background-color: #f8fafc;
}

.diplomas-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.diplomas-header {
    text-align: center;
    margin-bottom: 4rem;
}

.diplomas-header__icon {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1.25rem;
}

.diplomas-header__title {
    font-size: 2.25rem;
    line-height: 1.2;
    color: #1e293b;
    font-weight: 700;
    margin: 0;
}

.diplomas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.diploma-card {
    background: white;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.diploma-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.diploma-card__logo {
    height: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.diploma-card__logo img {
    max-height: 100%;
    max-width: 100%;
    height: auto;
    width: auto;
    object-fit: contain;
}

.diploma-card__description {
    margin-top: auto;
}

.diploma-card__description p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
    color: #334155;
}

/* Адаптивность */
@media (max-width: 1024px) {
    .diplomas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .diplomas-section {
        padding: 3rem 0;
    }

    .diplomas-header {
        margin-bottom: 2.5rem;
    }

    .diplomas-header__title {
        font-size: 1.75rem;
    }

    .diplomas-grid {
        grid-template-columns: 1fr 1rf;
        gap: 10px;
    }

    .diploma-card {
        padding: 1px;
    }

    .diploma-card__description {
        margin-top: 0px;
    }

    .diploma-card__description p {
        font-size: 12px;
        padding: 10px;
    }

    .diploma-card__logo {
        margin-bottom: 0px;
        margin-top: 5px;
    }
}


/* отзывы reviews */
.reviews-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.review-card {
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s;
    margin: 0 auto;
    width: 100%;
    max-width: 400px;
}

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

.review-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
}

.read-more-btn {
    background: #0d6efd;
    color: white;
    border: none;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    margin-top: 10px;
    transition: background 0.3s;
}

.read-more-btn:hover {
    background: #0b5ed7;
}

.modal-review-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    margin-bottom: 15px;
}

.reviews-title-wrapper {
    text-align: center;
    margin-bottom: 30px;
}

.reviews-nav-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.review-nav-btn {
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    color: #333;
    transition: all 0.3s;
}

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

/* Десктоп: 3 отзыва в ряд */
@media (min-width: 992px) {
    .carousel-inner .active .row {
        display: flex;
    }

    .carousel-inner .col-md-4 {
        flex: 0 0 33.333%;
        max-width: 33.333%;
        padding: 0 10px;
    }

    .review-card {
        margin: 0;
    }
}

/* Планшет: 2 отзыва в ряд */
@media (min-width: 768px) and (max-width: 991px) {
    .carousel-inner .active .row {
        display: flex;
    }

    .carousel-inner .col-md-4 {
        flex: 0 0 50%;
        max-width: 50%;
        padding: 0 10px;
    }

    .review-card {
        margin: 0;
    }
}

/* Мобильные: 1 отзыв (карусель) */
@media (max-width: 767px) {
    .carousel-inner .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0 15px;
    }

    .carousel-inner .row {
        display: block;
    }
}

.geo-sm-projects-section {
    padding: 60px 0;
    background-color: #fff;
    position: relative;
}

.geo-sm-projects-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.geo-sm-projects-main-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #333;
    font-weight: 700;
}

.geo-sm-projects-nav-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.geo-sm-projects-prev-btn,
.geo-sm-projects-next-btn {
    background: none;
    border: 2px solid #333;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #333;
}

.geo-sm-projects-prev-btn:hover,
.geo-sm-projects-next-btn:hover {
    background-color: #333;
    color: white;
}

.geo-sm-projects-carousel-wrapper {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 20px;
    scrollbar-width: none;
}

.geo-sm-projects-carousel-wrapper::-webkit-scrollbar {
    display: none;
}

.geo-sm-project-card {
    flex: 0 0 calc(25% - 15px);
    border-radius: 10px;
    overflow: hidden;
    scroll-snap-align: start;
    min-width: 280px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.geo-sm-project-card:hover {
    transform: translateY(-5px);
}

.geo-sm-project-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.geo-sm-project-details {
    padding: 20px;
    background: #fff;
}

.geo-sm-project-company {
    margin: 0 0 10px 0;
    font-size: 18px;
    color: #333;
    font-weight: 600;
}

.geo-sm-project-location {
    margin: 0 0 8px 0;
    font-size: 14px;
    color: #666;
}

.geo-sm-project-product {
    margin: 0;
    font-size: 14px;
    color: #0A6EF7;
    font-weight: 500;
}

/* Адаптивность */
@media (max-width: 1200px) {
    .geo-sm-project-card {
        flex: 0 0 calc(33.333% - 14px);
    }
}

@media (max-width: 992px) {
    .geo-sm-project-card {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    .geo-sm-projects-main-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .geo-sm-project-card {
        flex: 0 0 100%;
        min-width: 250px;
    }
}

@media (max-width: 576px) {
    .geo-sm-projects-main-title {
        font-size: 24px;
    }

    .geo-sm-projects-prev-btn,
    .geo-sm-projects-next-btn {
        width: 40px;
        height: 40px;
    }

    .geo-sm-project-image {
        height: 180px;
    }
}


/* галерея видео */
.video-gallery-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.video-gallery-title {
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.video-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.video-gallery-item {
    position: relative;
    height: 250px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.video-gallery-item:hover {
    transform: scale(1.03);
}

.video-gallery-item-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 8px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 10));
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.video-gallery-item-title {

    font-size: 18px;
}

.video-gallery-play-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 60px;
    height: 60px;
    transition: transform 0.2s;
}

.video-gallery-play-btn:hover {
    transform: scale(1.1);
}

.video-gallery-play-btn img {
    width: 40px;
    height: auto;
}

.video-gallery-footer {
    text-align: center;
}

.video-gallery-channel-btn {
    color: black;
    text-decoration: none;
    border-radius: 4px;
    margin-top: -40px;
}

/* Стили для попапа */
.video-gallery-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

.video-gallery-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.video-gallery-popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 900px;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
}

.video-gallery-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

.video-gallery-popup-iframe-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 соотношение */
    height: 0;
    overflow: hidden;
}

.video-gallery-popup-iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .video-gallery-grid {
        grid-template-columns: 1fr;
    }

    .video-gallery-popup-content {
        width: 95%;
        padding: 10px;
    }
}


/* Новости*/
.news-section {
    padding: 60px 0;
    background-color: #fff;
}

.news-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.news-header {
    position: relative;
    margin-bottom: 40px;
}

.news-title {
    text-align: start;
    font-size: 32px;
    color: #333;
    font-weight: 700
}

@media (max-width: 450px) {
    .news-section {
        padding: 10px 0;
        background-color: #fff;
    }
}


/* Сетка новостей */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Карточка новости */
.news-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.news-item-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.news-item-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-item-title {
    margin: 0 0 10px 0;
    font-size: 20px;
    color: #222;
}

.news-item-excerpt {
    margin: 0 0 5px 0;
    color: #555;
    line-height: 1.5;
    flex-grow: 1;
}

.news-read-more {
    display: inline-block;
    padding: 8px 16px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.news-read-more:hover {
    background-color: #0056b3;
}

/* Стили попапа */
.news-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

.news-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.news-popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    overflow-y: auto;
}

.news-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    z-index: 2;
}

/* Стили для текстового контента */
.news-popup-image-wrapper {
    margin-bottom: 20px;
}

.news-popup-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 4px;
}

.news-popup-title {
    margin-top: 0;
    color: #222;
    font-size: 24px;
}

.news-popup-date {
    color: #666;
    margin-bottom: 20px;
    font-size: 14px;
}

.news-popup-text {
    line-height: 1.6;
    color: #444;
}

/* Стили для видео */
.news-popup-video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    margin-bottom: 20px;
}

.news-popup-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.news-popup-video-title {
    margin-top: 0;
    color: #222;
    font-size: 24px;
}

/* Стили для PDF */
.news-popup-pdf-wrapper {
    width: 100%;
    height: 600px;
    margin-bottom: 20px;
}

.news-popup-pdf-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 1px solid #ddd;
}

.news-popup-pdf-title {
    margin-top: 0;
    color: #222;
    font-size: 24px;
}

@media (max-width: 768px) {
    .news-header-decoration {
        width: 100%;
    }

    .news-popup-content {
        width: 95%;
        padding: 20px;
    }

    .news-popup-pdf-wrapper {
        height: 400px;
    }
}

/*страны*/
.supply-countries {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.supply-countries__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.supply-countries__title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
    text-align: center;
}

.supply-countries__content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.supply-countries__map {
    flex: 1 1 50%;
    min-width: 300px;
}

.supply-countries__map-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.supply-countries__list {
    flex: 1 1 40%;
    min-width: 300px;
}

.supply-countries__item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 10px 15px;
    background-color: white;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

.supply-countries__item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.supply-countries__pin {
    width: 20px;
    height: 20px;
    margin-right: 15px;
}

.supply-countries__link {
    font-size: 18px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.supply-countries__link:hover {
    color: #0066cc;
}

@media (max-width: 768px) {
    .supply-countries__content {
        flex-direction: column;
    }

    .supply-countries__map,
    .supply-countries__list {
        flex: 1 1 100%;
        width: 100%;
    }

    .supply-countries__title {
        font-size: 28px;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .supply-countries {
        padding: 40px 0;
    }

    .supply-countries__title {
        font-size: 24px;
    }

    .supply-countries__link {
        font-size: 16px;
    }
}

/*FAQ*/
.faq-section {
    padding: 80px 0;
    background-color: #fff;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 50px;
    text-align: center;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    text-align: left;
    background: #f9f9f9;
    border: none;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f0f0f0;
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    transition: transform 0.3s ease;
    color: #0A6EF7;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #fff;
}

.faq-answer p {
    padding: 20px 25px;
    margin: 0;
    color: #555;
    line-height: 1.6;
}

.faq-item.active .faq-question {
    background: #f0f0f0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }

    .faq-title {
        font-size: 30px;
        margin-bottom: 30px;
    }

    .faq-question {
        padding: 15px 20px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 40px 0;
    }

    .faq-title {
        font-size: 26px;
    }

    .faq-answer p {
        padding: 15px 20px;
    }
}

/*contacts*/
.contact-form-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.contact-form-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    background-color: #0A6EF7;
    border-radius: 16px;
    padding: 20px;
}

.contact-form-content {
    flex: 1 1 50%;
    min-width: 300px;
}

.contact-form-image {
    flex: 1 1 40%;
    min-width: 300px;
    text-align: center;
}

.contact-form-title {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.3;
}

.contact-form-subtitle {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.6;
    opacity: 0.8;
}

.contact-form {
    max-width: 600px;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1 1 calc(50% - 20px);
    min-width: 250px;
}

.form-input,
.form-select {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background-color: #fff;
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: #4CAF50;
    box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.2);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    padding: 15px 20px !important;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background-color: #0D4592;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: #0a4cb3;
}

.form-footer {
    margin-top: 20px;
    text-align: center;
}

.privacy-text {
    font-size: 14px;
    color: white;
}

.privacy-link {
    color: #fff221;
    text-decoration: none;
}

.form-image {
    max-width: 280px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .contact-form-section {
        padding: 60px 0;
    }

    .contact-form-title {
        font-size: 30px;
    }

    .contact-form-subtitle {
        font-size: 16px;
    }

    .form-group {
        flex: 1 1 100%;
    }

    .contact-form-image {

    }

    .contact-form-container {
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .contact-form-section {
        padding: 10px 0;
    }

    .contact-form-title {
        font-size: 26px;
    }

    .form-input,
    .form-select {
        padding: 12px 15px;
        font-size: 15px;
    }

    .submit-btn {
        padding: 14px;
        font-size: 16px;
    }
}


.contacts-block-section {
    padding: 60px 0 0;
    background-color: #fff;
}

.contacts-block-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contacts-block-title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
}

.contacts-block-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.contacts-block-info {
    flex: 1 1 40%;
    min-width: 300px;
}

.contacts-block-group {
    margin-bottom: 30px;
}

.contacts-block-label {
    font-size: 18px;
    font-weight: 600;
    color: #666;
    margin-bottom: 10px;
}

.contacts-block-item {
    margin-bottom: 15px;
}

.contacts-block-phone,
.contacts-block-email {
    font-size: 24px;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.contacts-block-phone:hover,
.contacts-block-email:hover {
    color: #0A6EF7;
}

.contacts-block-social {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.contacts-block-social-icon {
    width: 50px;
    height: 50px;
    transition: transform 0.3s ease;
}

.contacts-block-social-icon:hover {
    transform: scale(1.1);
}

.contacts-block-products {
    flex: 1 1 50%;
    min-width: 300px;
}

.contacts-block-products-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
}

.contacts-block-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 20px;
}

.contacts-block-product {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
    padding: 20px;
    border-radius: 8px;
    background-color: #f9f9f9;
}

.contacts-block-product:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contacts-block-product-image-wrap {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contacts-block-product-img {
    max-width: 100%;
    max-height: 100%;
}

.contacts-block-product-name {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin: 0;
}

.contacts-block-footer {
    border-top: 1px solid #eee;
    padding: 30px 0;
}



.contacts-block-footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.contacts-block-copyright {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.contacts-block-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.contacts-block-footer-link {
    font-size: 14px;
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contacts-block-footer-link:hover {
    color: #4CAF50;
}

@media (max-width: 768px) {
    .contacts-block-title {
        font-size: 30px;
        margin-bottom: 30px;
    }

    .seo-text {
        display: none;
    }


    .contacts-block-phone,
    .contacts-block-email {
        font-size: 20px;
    }

    .contacts-block-products-title {
        font-size: 24px;
    }

    .contacts-block-products-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .contacts-block-section {
        padding: 10px 0 0;
    }

    .contacts-block-title {
        font-size: 26px;
    }

    .contacts-block-footer-content {
        flex-direction: column;
        text-align: center;
    }

    .contacts-block-footer-links {
        justify-content: center;
    }
}


.policy-privacy-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

.policy-privacy-page-content {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 40px;
}

.policy-privacy-page-main-title {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

.policy-privacy-page-text-content {
    font-size: 16px;
}

.policy-privacy-page-section-header {
    font-size: 22px;
    color: #2c3e50;
    margin: 30px 0 15px;
    font-weight: 600;
}

.policy-privacy-page-paragraph {
    margin-bottom: 15px;
}

.policy-privacy-page-bold-text {
    font-weight: 600;
}

.policy-privacy-page-unordered-list {
    margin-bottom: 15px;
    padding-left: 20px;
    list-style-type: disc;
}

.policy-privacy-page-list-item {
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .policy-privacy-page-content {
        padding: 30px 20px;
    }

    .policy-privacy-page-main-title {
        font-size: 24px;
    }

    .policy-privacy-page-section-header {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .policy-privacy-page-container {
        padding: 20px 10px;
    }

    .policy-privacy-page-content {
        padding: 80px 15px;
    }

    .policy-privacy-page-main-title {
        font-size: 22px;
    }

    .policy-privacy-page-text-content {
        font-size: 15px;
    }
}


/* Slider */

.slick-slide {
    margin: 0px 20px;
}

.slick-slide img {
    width: 100%;
}

.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
}

.slick-track:before,
.slick-track:after {
    display: table;
    content: '';
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

[dir='rtl'] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}


/*правки к галерее видео*/

.video-gallery-container {
    max-width: 1200px;
    margin: auto;
}

.glavi {
    margin-top: 8px;
}

@media (max-width: 768px) {
    .glavi {
        margin: 0;
    }
}

/*новости медиа для карусели нативной*/
@media (max-width: 600px) {
    .news-grid {
        display: flex;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding-bottom: 10px;
    }


    .news-grid::-webkit-scrollbar {
        display: none;
    }

    .news-grid {
        -ms-overflow-style: none; /* IE и Edge */
        scrollbar-width: none; /* Firefox */
    }

    .news-item {
        flex: 0 0 auto;
        scroll-snap-align: start;

        width: 80%;

    }
}