@charset "UTF-8";

.p-5{min-height:5px;padding-top: 5px;}.p-10{min-height:10px;padding-top: 10px;}.p-15{min-height:15px;padding-top: 15px;}.p-20{min-height:20px;padding-top: 20px;}.p-25{min-height:25px;padding-top: 25px;}.p-30{min-height:30px;padding-top: 30px;}.p-35{min-height:35px;padding-top: 35px;}.p-40{min-height:40px;padding-top: 40px;}.p-45{min-height:45px;padding-top: 45px;}.p-50{min-height:50px;padding-top: 50px;}.p-55{min-height:55px;padding-top: 55px;}.p-60{min-height:60px;padding-top: 60px;}.p-65{min-height:65px;padding-top: 65px;}.p-70{min-height:70px;padding-top: 70px;}.p-75{min-height:75px;padding-top: 75px;}.p-80{min-height:80px;padding-top: 80px;}.p-85{min-height:85px;padding-top: 85px;}.p-90{min-height:90px;padding-top: 90px;}.p-95{min-height:95px;padding-top: 95px;}.p-100{min-height:100px;padding-top: 100px;}.p-105{min-height:105px;padding-top: 105px;}.p-110{min-height:110px;padding-top: 110px;}.p-115{min-height:115px;padding-top: 115px;}.p-120{min-height:120px;padding-top: 120px;}.p-125{min-height:125px;padding-top: 125px;}.p-130{min-height:130px;padding-top: 130px;}.p-135{min-height:135px;padding-top: 135px;}.p-140{min-height:140px;padding-top: 140px;}.p-145{min-height:145px;padding-top: 145px;}.p-150{min-height:150px;padding-top: 150px;}.p-155{min-height:155px;padding-top: 155px;}


body {
    background: white;
    font-family: 'TikTok Sans', 'Montserrat', sans-serif;
    min-height: 100vh;
}

/* Единый темный фон для всей страницы */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Анимации появления */
@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translateY(-100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Новые стили для современного хедера */
.new-header {
    z-index: 1000;
    display: flex;
    width: 100%;
    position: fixed;
    justify-content: center;
    padding: 20px;
    margin-bottom: -20px;
    animation: slideInFromTop 0.8s ease-out;
}

.header-container {
    width: 100%;
    max-width: 1200px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    overflow: visible;
    border: 1px solid rgb(0 0 0 / 30%);
}

.header-top {
    background: white;
    padding: 20px 30px;
    border-radius: 15px 15px 0px 0px;
}

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

.header-brand {
    display: flex;
    align-items: center;
    animation: fadeInLeft 0.8s ease-out 0.2s both;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-image {
    width: 170px;
    height: 40px;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: 'TikTok Sans', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #0066CC;
    margin: 0;
    line-height: 1.2;
}

.brand-tagline {
    font-family: 'TikTok Sans', sans-serif;
    font-size: 14px;
    color: #666;
    margin: 0;
    font-weight: 400;
}


.location-label {
    font-family: 'TikTok Sans', sans-serif;
    font-size: 12px;
    color: #999;
    margin: 0;
    text-transform: uppercase;
    font-weight: 500;
}

.location-city {
    font-family: 'TikTok Sans', sans-serif;
    font-size: 18px;
    color: #333;
    margin: 0;
    font-weight: 600;
}

.header-contacts {
    display: flex;
    align-items: center;
    gap: 20px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.contact-email {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-email a {
    font-family: 'TikTok Sans', sans-serif;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.contact-messengers {
    display: flex;
    gap: 10px;
}

.messenger-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f5f5f5;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
}

.messenger-btn img {
    width: 20px;
    height: 20px;
    display: block;
}

.messenger-btn .icon-telegram-blue {
    display: block !important;
    position: absolute;
}

.messenger-btn .icon-telegram-white {
    display: none !important;
    position: absolute;
}

.messenger-btn:hover .icon-telegram-blue {
    display: none !important;
}

.messenger-btn:hover .icon-telegram-white {
    display: block !important;
}

.messenger-btn.telegram-white-only .icon-telegram-blue,
.messenger-btn.telegram-white-only:hover .icon-telegram-blue {
    display: none !important;
}

.messenger-btn.telegram-white-only .icon-telegram-white,
.messenger-btn.telegram-white-only:hover .icon-telegram-white {
    display: block !important;
}

.messenger-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.messenger-btn.Telegram:hover {
    background: #2AABEE;
}

.messenger-btn.telegram:hover {
    background: #2AABEE;
}



.work-hours {
    font-family: 'TikTok Sans', sans-serif;
    font-size: 12px;
    color: #666;
    margin: 0;
    font-weight: 400;
}

.phone-number {
    font-family: 'TikTok Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.phone-number a {
    color: #333;
    text-decoration: none;
}

.header-action {
    display: flex;
    align-items: center;
    animation: fadeInRight 0.8s ease-out 0.6s both;
}

.cta-button {
    font-family: 'TikTok Sans', sans-serif;
    background: #2160FE;
    color: white !important;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background: #1a4fd4;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(33, 96, 254, 0.3);
}

.header-bottom {
    background: rgb(0 0 0 / 58%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 0 0 15px 15px;
    height: 48px;
    display: flex;
    width: 100%;
    padding: 0px 30px;
    border-radius: 0 0 15px 15px;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
}

.header-nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-family: 'TikTok Sans', sans-serif;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
    position: relative;
}

.nav-link:hover {
    color: #97B4FF;
    background: rgba(151, 180, 255, 0.1);
    transform: translateY(-2px);
}

.nav-link:active,
.nav-link.active {
    color: #97B4FF;
    background: rgba(151, 180, 255, 0.1);
}

/* Убираем нижнее подчеркивание и исправляем цвета для всех ссылок в хедере */
.header-container a,
.header-container a:visited,
.header-container a:active,
.header-container a:focus {
    color: inherit !important;
    text-decoration: none !important;
}

.header-container a:hover {
    color: #97B4FF !important;
    text-decoration: none !important;
}

/* Специально для навигационных ссылок */
.header-nav a,
.header-nav a:visited,
.header-nav a:active,
.header-nav a:focus {
    color: #ffffff !important;
    text-decoration: none !important;
}

.header-nav a:hover {
    color: #97B4FF !important;
    text-decoration: none !important;
}

/* Для ссылок в дропдаунах */
.dropdown-menu a,
.dropdown-menu a:visited,
.dropdown-menu a:active,
.dropdown-menu a:focus {
    color: #1a1a1a !important;
    text-decoration: none !important;
}

.dropdown-menu a:hover {
    color: #97B4FF !important;
    text-decoration: none !important;
}

/* Для кнопок в хедере - исключаем CTA кнопку */
.header-container button:not(.cta-button),
.header-container button:not(.cta-button):visited,
.header-container button:not(.cta-button):active,
.header-container button:not(.cta-button):focus {
    color: inherit !important;
    text-decoration: none !important;
}

.header-container button:not(.cta-button):hover {
    color: inherit !important;
    text-decoration: none !important;
}

/* Специально для кнопки CTA в хедере */
.cta-button,
.cta-button:visited,
.cta-button:active,
.cta-button:focus,
.cta-button:hover,
button.cta-button,
button.cta-button:visited,
button.cta-button:active,
button.cta-button:focus,
button.cta-button:hover {
    color: white !important;
    text-decoration: none !important;
    background: #2160FE !important;
}

.cta-button:hover,
button.cta-button:hover {
    background: #1a4fd4 !important;
    color: white !important;
}

/* Стили для стрелок в дропдаунах */
.dropdown-toggle svg {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown:hover .dropdown-toggle svg {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    min-width: 220px;
    padding: 8px 0;
    margin-top: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
}

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

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    font-family: 'TikTok Sans', sans-serif;
    color: #1a1a1a;
    text-decoration: none;
    padding: 12px 20px;
    display: block;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
    margin: 0 8px;
}

.dropdown-menu a:hover {
    background: rgba(151, 180, 255, 0.1);
    color: #97B4FF;
    transform: translateX(4px);
}

/* Адаптивность для нового хедера */
@media (max-width: 1200px) {
    .new-header {
        padding: 15px;
    }
    
    .header-container {
        max-width: 100%;
    }
    
    .header-content {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .header-nav {
        gap: 20px;
    }
}

/* Мобильный хедер-топ */
.mobile-header-top {
    display: none;
    background: white;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.mobile-header-left {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.mobile-phone-icon {
    width: 32px;
    height: 32px;
    background: white;
    border: 1px solid #E0E7FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-phone-icon a {
    color: #2160FE;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.mobile-phone-icon a:hover {
    color: #2160FE;
}

.mobile-header-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.mobile-logo {
    height: 32px;
    width: auto;
}

.mobile-header-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

/* Мобильное меню */
.new-header .mobile-menu-toggle {
    display: none;
}

/* Скрываем мобильный сайдбар на десктопе */
body .mobile-sidebar {
    display: none !important;
}

.mobile-menu-btn {
    width: 32px;
    height: 32px;
    background: white;
    border: 1px solid #E0E7FF;
    border-radius: 50%;
    cursor: pointer;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
}

.mobile-menu-btn span {
    width: 16px;
    height: 2px;
    background: #2160FE;
    border-radius: 1px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

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

/* Мобильный сайдбар */
.mobile-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    z-index: 9999;
    transition: left 0.3s ease;
}

.mobile-sidebar.active {
    left: 0;
}

.mobile-sidebar-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.mobile-sidebar-content {
    position: relative;
    width: 320px;
    height: 100vh;
    height: 100dvh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    box-sizing: border-box;
}

.mobile-sidebar-header {
    padding: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-sidebar-logo {
    width: 188px;
    height: auto;
}

.mobile-sidebar-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: #333;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-sidebar-close:hover {
    background: rgba(0, 0, 0, 0.1);
}

.mobile-sidebar-nav {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    min-height: 0;
}

.mobile-nav-section {
    margin-bottom: 30px;
}

.mobile-nav-section h3 {
    font-family: 'TikTok Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.mobile-nav-section li {
    margin-bottom: 8px;
}

.mobile-nav-section a {
    font-family: 'TikTok Sans', sans-serif;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 0;
    display: block;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.mobile-nav-section a:hover {
    color: #2160FE;
    background: rgba(33, 96, 254, 0.1);
    padding-left: 8px;
}

.mobile-sidebar-footer {
    padding: 20px;
    padding-bottom: calc(20px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(33, 96, 254, 0.05);
    flex-shrink: 0;
}

.mobile-contact-info {
    margin-bottom: 20px;
}

.mobile-contact-info p {
    font-family: 'TikTok Sans', sans-serif;
    color: #333;
    margin: 0 0 8px 0;
    font-size: 14px;
}

.mobile-phone {
    font-weight: 700;
    color: #2160FE !important;
}

.mobile-cta-button {
    width: 100%;
    background: #2160FE;
    color: white !important;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-family: 'TikTok Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-cta-button:hover {
    background: #1a4fd4;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(33, 96, 254, 0.3);
}

@media (max-width: 768px) {
    .new-header {
        padding: 0;
    }
    
    .header-top {
        display: none !important; /* Скрываем десктопный хедер-топ */
    }
    
    .mobile-header-top {
        display: block !important; /* Показываем мобильный хедер-топ */
    }
    
    .header-bottom {
        padding: 10px 20px;
        display: none !important; /* Скрываем десктопную навигацию */
    }
    
    body .mobile-sidebar {
        display: block !important;
    }
    
    .header-container {
        position: relative;
    }
}

@media (max-width: 480px) {
    .new-header {
        padding: 0;
    }
    
    .header-container {
        position: relative;
        background: #ffffff47;
        margin: 1rem;
    }
    
    .mobile-header-top {
        /* padding: 12px 15px; */
        background: #ffffffbd;
        border-radius: 16px;
        /* margin: 2rem; */
        border: 0;
    }
    
    .mobile-header-content {
        gap: 10px;
    }
    
    
    .mobile-logo {
        height: 45px;
    }
    
    /* Мобильный сайдбар для маленьких экранов */
    .mobile-sidebar-content {
        width: 100%;
        height: 100vh;
        height: 100dvh;
        max-height: 100vh;
        max-height: 100dvh;
    }

    .mobile-sidebar-header {
        padding: 15px;
    }

    .mobile-sidebar-nav {
        padding: 15px;
        min-height: 0;
        overflow-y: auto;
    }

    .mobile-sidebar-footer {
        padding: 15px;
        padding-bottom: calc(15px + env(safe-area-inset-bottom));
    }
    
    .mobile-nav-section {
        margin-bottom: 25px;
    }
    
    .mobile-nav-section h3 {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .mobile-nav-section a {
        font-size: 13px;
        padding: 6px 0;
    }
    
    body .mobile-sidebar {
        display: block !important;
    }
}

.btn, .team_col img {
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}

.mainNav li > a {
    line-height: 29px!important;
}


.navbar {
    min-height: 60px;
    transition: all .3s ease;
}

.navbar.out {
    transform: translateY(-100%);
}

.navbar-brand {
    height: 60px;
}

.navPhone {
    width: 30px;
}

.navbar-toggle {
    margin-top: 13px;
    margin-bottom: 13px;
}


.navLogo {
    width: 200px;
    position: absolute;
    left: 50%;
    display: block;
    margin-left: -100px;
    top: 11px;
}

.navLogo a img {
    width: 100%;
}


.navLogo a {
    width: 100%;
    float: left;
}

.mainNavLogo {
    width: 200px;
    position: relative;
    display: block;
    float: left;
    padding: 10px 0px;
    margin-right: 30px;
}

.mainNavLogo a img {
    width: 100%;
}


.mainNavLogo a {
    width: 100%;
    float: left;
}




@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-500%, 0, 0);
    transform: translate3d(-500%, 0, 0);
    visibility: visible;
  }

  40% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
  }
}

@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-500%, 0, 0);
    transform: translate3d(-500%, 0, 0);
    visibility: visible;
  }

  40% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
  }
}


.anim-btn {
  position: relative;
  overflow: hidden;
}


.anim-btn:after {
  content: '';
    width: 207px;
    height: 90px;
  position: absolute;
  opacity: 0.8;
  top: 0px;
    right: -207px;
  background: url(../img/blick.png);
    background-size: cover;
  -webkit-animation-duration: 3s!important;
  animation-duration: 3s!important;
  -webkit-animation-fill-mode: both!important;
  animation-fill-mode: both!important;
  -webkit-animation-iteration-count: infinite!important;
  animation-iteration-count: infinite!important;
  -webkit-animation-delay: 2s!important;
  animation-delay: 2s!important;
  -webkit-animation-name: slideInLeft!important;
  animation-name: slideInLeft!important;
}




@media (prefers-reduced-motion) {
  .anim-btn:after {
    -webkit-animation: unset !important;
    animation: unset !important;
    -webkit-transition: none !important;
    transition: none !important;
  }
}



.row1 {
    overflow: hidden;
    position: relative;
    padding-bottom: 50px;
}

.btn {
    outline: none!important;
}

.cl {
    clear: both;
}

.no-pad {
    padding-left: 0px;
    padding-right: 0px;
}

.cont1 {
    padding-top: 20px;
    padding-bottom: 20px;
    position: relative;
}

.logo {
    width: 154px;
    height: 66.86px;
    float: left;
}

.top_desc {
     font-size: 12px;
    text-transform: uppercase;
    font-weight: 400;
    width: 335px;
    float: left;
    margin-left: 32px;
    border-left: 1px solid #ebebeb;
    padding: 8px 0px 8px 32px;
    margin-bottom: 0px;
}

.top_desc.p1 {
    width: 160px;
    text-align: center;
}

.top_desc.p2 {
    width: 230px;
}

.top_desc span {
    font-weight: 600;
}

.top_mail {
    font-weight: 600;
    font-size: 15px;
    color: #333!important;
    padding: 6px 0px 6px 60px;
    float: left;
}

.mailLink {
    position: relative;
    color: #333!important;
    text-decoration: none;
    padding-left: 24px;
    float: left;
    padding-bottom: 5px;
    padding-top: 5px;
}

.mailLink img {
    position: absolute;
    left: 0px;
    top: 50%;
    width: 14px;
    height: 14px;
    margin-top: -7px;
}

.TelegramLink {
    position: relative;
    color: #333!important;
    text-decoration: none;
    padding-left: 24px;
    float: left;
    padding-bottom: 5px;
    padding-top: 5px;
}

.TelegramLink img {
    position: absolute;
    left: 0px;
    top: 50%;
    width: 14px;
    height: 14px;
    margin-top: -7px;
}

.top_phone {
    width: 245px;
    float: right;
    text-align: center;
}

.phone_online {
font-size: 13px;
font-weight: 300;
color: #333;
margin-bottom: 0px;
}

.phone_online span {
    color: #41e664!important;
}

.phone_number {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: -3px;
}

.phone_number a {
    color: #333!important;
}

.phone_perezvon {
    color: #333;
    font-size: 16px;
    margin-bottom: 0px;
    background: url(../img/dashed.png) bottom left repeat-x;
    width: 180px;
    margin: 0px auto;
    padding-bottom: 0px;
    cursor: pointer;
    font-weight: 500;
}



.serviceMenu {
    width: 100%;
    height: 40px;
    background: #292a2d;
}

.serviceMenuDropdown {
    float: left;
    width: 20%;
    text-align: center;
}
.smLink {
    width: 20%;
    float: left;
    text-align: center;
    line-height: 40px;
    color: #fff!important;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
}


.serviceMenuDropdown a {
    width: 100%;
}

.dropdown-menu > li > a {
    padding: 13px 20px!important;
    font-weight: 600!important;
}

/* Новые стили для TikTok Sans */
h1, h2, h3, h4, h5, h6 {
    font-family: 'TikTok Sans', 'Montserrat', sans-serif;
}

.btn, .btn_top {
    font-family: 'TikTok Sans', 'Montserrat', sans-serif;
}

.navbar-nav > li > a {
    font-family: 'TikTok Sans', 'Montserrat', sans-serif;
}

.smLink {
    font-family: 'TikTok Sans', 'Montserrat', sans-serif;
}

.top_desc, .phone_online, .phone_number, .phone_perezvon {
    font-family: 'TikTok Sans', 'Montserrat', sans-serif;
}

.mailLink, .TelegramLink {
    font-family: 'TikTok Sans', 'Montserrat', sans-serif;
}

/* Адаптивные стили для мобильных устройств */
@media (max-width: 1200px) {
.top_desc {
    display: none;
}

.top_mail {
    padding: 6px 0px 6px 30px;
}

.cont1_1:before {
    left: 630px;
}

.ne_nashli {
    padding: 20px 10px;
}

.ne_nashli_btn {
    padding: 9px 30px;
}

#kuz img {
    margin-left: -70px;
    width: 440px;
}

h1 {
    font-size: 35px;
}


.first_desc {
    font-size: 17px;
}


h2 {
    font-size: 28px;
}

.care_p1 {
    font-size: 20px;
}


.more_info1 {
    width: 100%;
}

.s_block p {
    font-size: 14px;
}

.article-preview p {
    min-height: 120px;
    font-size: 16px;
}
.sp-left {
    height: 595px;
}

.sp .sign {
    position: absolute;
    right: 70px;
    bottom: 137px;
    width: 150px;
}


.sp .btn_top {
    margin-top: 60px;
}


.tagNavItem {
    font-size: 13px;
}


.gr {
    height: 198px;
}


.featDesc {
    text-align: left;
    padding: 0px;
}

.pathItem {
    height: 175px;
}



.rowCompare {
    overflow-x: hidden;
}

}

@media (max-width: 992px) {

.top_desc {
    display: none;
}

.cont1_1:before {
    display: none;
}

.glav_sert {
    display: none;
}

.phone_online, .phone_number a, .phone_perezvon {
    color: #333!important;
}

.open_img {
    display: none;
}

.more_info1 {
    padding: 25px 10px;
}

.more_info1 h3 {
    margin-top: 0px;
}

.ne_nashli {
    padding: 20px 20px;
}

.ne_nashli_form {
    padding-left: 0px;
    padding-right: 0px;
}


.nn_btn_cont {
    margin-top: 15px;
    min-height: 45px;
}

.ne_nashli_btn {
    width: 100%;
}

.ne_nashli:before {
    opacity: 0.5;
}

.c2_h {
    margin-top: 36px;
}

.team_col img {
    width: 80%;
}

.team_p1, .team_p2 {
    font-size: 12px;
}

.speech {
    text-align: center;
    margin-top: 50px;
}




.modal-body-img {
    background-image: url(../img/price_left_tr.png);
}

.modal-body {
    text-align: center;
}

#modalPrice .modal-body {
    text-align: left;
}

.modal_input {
    float: none;
}

.modal-body .btn_top {
    float: none;
    margin: 20px auto 0px;
    width: 300px;
}



#kuz {
    display: none;
}

.row3 {
    padding: 50px 0px 50px;
}



.sp h3 {
    margin-top: 0px;
    font-size: 24px;
}




.tagNavItem {
    width: 50%;
    margin-bottom: -2px;
    font-size: 15px;
}

.grH {
    font-size: 14px;
}

.piDesc {
    font-size: 14px;
}

.compareLeft {
    width: 80%;
    margin: 20px 10% 0px;
}


.compareRight {
    width: 80%;
    margin: 190px 10% 0px;
}

.howLeft {
    margin: 60px auto 0px;
    float: none;
    display: block;
}


.howRight {
    margin-top: 40px;
    font-size: 14px;
    width: 100%
}


.hrcH {
    font-size: 17px;
    font-weight: 600;
}

}

@media (max-width: 768px) {


.serviceMenu {
    display: none;
}

.top_mail {
    display: none;
}

h1 {
    padding-right: 0px;
    text-align: center;
}

.first_desc {
    text-align: center;
}

.utp {
    text-align: center;
}


.btn_top {
    float: none;
    margin-left: auto;
    margin-right: auto;
    display: block;
}


.more_info1 {
    text-align: center;
}

.more_info1 .col-sm-4 {
    width: 50%;
    float: left;
}

.more_info1 .btn_top {
    float: none;
    margin-right: auto;
    margin-left: auto;
}

.btn_transparent {
    float: none;
}

.ne_nashli {
    max-width: 410px;
    text-align: center;
    margin: 0px auto;
}

.search_cont {
    max-width: 410px;
    text-align: center;
    margin: 0px auto;
}

.row3 {
    text-align: center;
}

.row3 h2 {
    text-align: center;
}

.team_col {
    margin-bottom: 20px;
}

.footer_item {
    margin-bottom: 40px;
}

.article-preview {
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
}

.team-slider .slider_cont:before {
    display: none;
}

.teamName {
    background: rgba(0, 0, 0, 0.32)
}


.sp-left {
    width: 100%;
    height: 530px;
}
.sp {
    float: right;
    width: 100%;
}


.sp .btn_top {
    margin-top: 90px;
}


.tagNavItem {
    width: 100%;
    height: auto;
    margin-bottom: -2px;
    font-size: 14px;
    padding: 16px 10px;
}

.tcItem {
    padding: 14px 12px;
    float: left;
    width: 100%;
    font-size: 14px;
    font-weight: 500;
}


.tciName {
    width: 60%;
    float: left;
}

.tciPrice {
    width: 38%;
    float: left;
    margin-left: 2%;
}


h2 {
    font-size: 24px;
}


.gr {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 6px 20px #1e1e300f;
    padding: 22px 16px;
    margin-top: 20px;
    position: relative;
    height: 168px;
}

.grImg {
    height: 48px;
    position: absolute;
    top: 24px;
}

.grH {
    padding-left: 65px;
    font-weight: bold;
    height: 62px;
    padding-top: 6px;
    font-size: 14px;
    padding-right: 10px;
}

.grDesc {
    font-size: 13px;
    opacity: 0.8;
}

.grh1line {
    padding-top: 17px;
}



.pathItem {
    height: auto;
    padding: 46px 30px 23px;
    margin-top: 60px;
}
.piH {
    font-size: 18px;
    font-weight: 600;
}

.piDesc {
    font-size: 14px;
}



.compareLeft {
    width: 100%;
    margin: 140px 0px 0px;
}

.compareItem {
    border-radius: 10px;
    padding: 10px 14px 10px 30px!important;
    margin-bottom: 8px;
    height: auto;
    font-size: 14px;
}

.ciIcon {
    left: -14px;
    height: 28px;
    width: 28px;
    line-height: 28px;
    border-radius: 32px;
    margin-top: -14px;
}

.ciIcon img {
    width: 10px;
    height: 10px;
}

.clDanger2 {
    font-size: 16px;
    left: -41px;
    top: -60px;
}

.clDanger {
    font-size: 14px;
    right: -40px;
    left: unset;
    top: -50px;
}


.compareRight {
    width: 100%;
    margin: 140px 0px 0px;
}

.clGood {
    font-size: 14px;
    left: -50px;
    right: unset;
    top: -60px;
}

.clGood2 {
    font-size: 18px;
    right: -30px;
    top: -70px;
}

.compareRight .ciIcon {
    right: unset;
    left: -18px;
}


.hlItem {
    width: 80px;
    height: 80px;
    text-align: center;
    line-height: 80px;
    margin-right: 10px;
    margin-left: 10px;
    margin-bottom: 10px;
}

.howLeft {
    margin: 60px auto 0px;
    float: left;
    display: block;
    width: 100%;
}

.hlItem img {
    width: 28px;
}

.hrcH {
    font-size: 14px;
}

}

@media (max-width: 570px) {
    
.logo {
    width: 124px;
    height: 60px;
}

.top_mail {
    display: block;
}

.top_mail br {
    display: none;   
}
    
.mailLink {
    display: block;
    width: 190px;
    margin: 0px auto;
    float: none;
}

.TelegramLink {
    display: block;
    width: 210px;
    margin: 0px auto;
    float: none;
}

.team-slider .swiper-slide img {
    height: 250px;
}

  .container {
    width: 420px;
    padding: 0px 10px;
  }

.download {
    font-size: 14px;
}


.cont1:before {
    display: none;
}

.logo {
    float: none;
    margin: 10px auto;
    display: block;
}

.top_desc{
    display: none;
}

.top_mail {
    width: 100%;
    padding: 0px;
    text-align: center;
}


.top_phone {
    width: 100%;
    text-align: center;
    margin: 10px auto 0px;
}



h1 {
    font-size: 25px;
    text-align: center;
    padding-right: 0px;
}

.first_desc {
    font-size: 16px;
    text-align: center;
}

.utp {
    display: inline-block;
    width: 100%;
}

.utp img {
    display: inline-block;
}

.utp_text {
    font-size: 14px;
    display: inline-block;
    vertical-align: middle;
    padding-left: 10px;
    width: 250px;
    text-align: left;
}

.utp_text br {
    display: none;
}

.btn_top {
        width: 100%;
    font-size: 15px;
    padding: 20px 10px;
}

.glav_sert {
    width: 90%;
    margin: 30px 5%;
}

.more_info1 h3 {
    font-size: 25px;
}


.ne_nashli_p1 {
    font-size: 19px;
}


.ne_nashli_btn {
    margin: 12px auto;
    display: block;
}

.c2_h {
    font-size: 17px;
    margin-top: 40px;
}

.search_input {
    font-size: 14px;
    padding: 20px 50px 20px 20px;
}


.search_btn {
    height: 60px;
    width: 60px;
    margin-left: -60px;
    background-size: 25px;
}


#kuz {
    display: none;
}

.row3 h2 {
    text-align: center;
}

.row3 {
    padding: 50px 0px 40px;
    background-size: cover;
}

.speech h3 {
    margin-top: 40px;
    font-size: 20px;
}


.ne_nashli_btn:hover, .ne_nashli_btn:focus, .ne_nashli_btn:active, .ne_nashli_btn:visited {
    margin-top: 15px;
}

.faq_btn {
    padding-left: 55px;
    width: 270px;
    letter-spacing: 5px;
}

.faq_btn span {
    font-size: 16px;
}




.phone_perezvon {
    margin-top: 10px;
}

.modal_input {
    width: 100%;
}

.modal-body .btn_top {
    width: 100%;
}

.modal-body>div {
    padding-left: 0;
    padding-right: 0;
}

.team_col img {
    width: 110px;
    margin-top: 20px;
}

.sp-left {
    width: 100%;
    height: 310px;
}

.sp {

    padding: 20px 10px;
}

.sp h3 {
    font-size: 20px;
}

}

@media (max-width: 456px) {


  .container {
    width: 320px;
    padding: 0px 10px;
  }


.more_info1 div {
 width: 100%!important;
}

.row-team h2 {
    margin-bottom: 20px;
}

.team_col {
    margin-bottom: 10px;
    width: 100%!important;
    margin-left: 0px;
    margin-right: 0px;
}

.article-preview {
    max-width: 100%;
}

}

/* Новый Hero элемент */
.hero-section {
    position: relative;
    padding-top: 20rem;
    padding-bottom: 10rem;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    overflow: hidden;
    background: transparent;
    animation: fadeInUp 1s ease-out 0.8s both;
}

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

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}

/* Отдельное изображение сертификатов */
.hero-certs-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}

.hero-certs-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.3));
    position: relative;
    z-index: 0;
}


.hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    flex-direction: column;
}



.hero-main {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

.hero-text {
    color: white;
    max-width: 60%;
    animation: fadeInLeft 0.8s ease-out 1.2s both;
}

.hero-title {
    font-family: 'TikTok Sans', sans-serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 24px;
    text-transform: none;
}

.hero-title span {
    font-weight: 700;
}

.hero-description {
    font-family: 'TikTok Sans', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 32px;
    opacity: 0.9;
}

.hero-description span {
    font-weight: 600;
}

.hero-features {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 16px;
    font-weight: 500;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #0066CC;
    color: white;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.hero-cta-button {
    font-family: 'TikTok Sans', sans-serif;
    background: #2160FE;
    color: white;
    border: none;
    padding: 20px 40px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    max-width: 50rem;
    width: 100%;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 24px rgba(33, 96, 254, 0.3);
    animation: fadeInUp 0.8s ease-out 1.8s both;
}

.hero-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(33, 96, 254, 0.4);
}


.cert-documents {
    position: relative;
    z-index: 2;
}

.cert-image {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.3));
    opacity: 0.8;
}


/* Адаптивность для Hero */
@media (max-width: 1200px) {
    
    .hero-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding-top: 10rem;
        padding-bottom: 10rem;
        min-height: auto;
    }
    
    .hero-content {
        flex-direction: column-reverse;
    }
    
    .hero-main {
        gap: 0;
    }
    
    .hero-certs-overlay {
        display: none;
    }
    
    
    .hero-text {
        max-width: 100%;
        margin-bottom: 30px;
        padding-bottom: 0;
    }
    
    
    .hero-certs-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 300px;
        z-index: 1;
    }
    
    .hero-certs-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .hero-title {
        font-size: 32px;
        line-height: 1.1;
        margin-bottom: 20px;
        padding: 0;
    }
    
    .hero-description {
        font-size: 18px;
        line-height: 1.3;
        margin-bottom: 25px;
    }
    
    .hero-cta-button {
        padding: 16px 32px;
        font-size: 16px;
        max-width: 100%;
        width: 100%;
    }
    
}

@media (max-width: 480px) {
    .hero-section {
        padding-top: 10rem;
        padding-bottom: 10rem;
    }
    
    
    
    .hero-certs-overlay {
        height: 250px;
    }
    
    .hero-title {
        font-size: 28px;
        line-height: 1.1;
        margin-bottom: 15px;
    }
    
    .hero-description {
        font-size: 16px;
        line-height: 1.3;
        margin-bottom: 20px;
    }
    
    .hero-text {
        padding-bottom: 0; /* Отступ для изображения сертификатов */
    }
    
    .hero-cta-button {
        padding: 14px 28px;
        font-size: 14px;
        width: 100%;
    }
    
}

/* Дополнительная адаптация для очень маленьких экранов */
@media (max-width: 360px) {
    .hero-section {
        padding-top: 10rem;
        padding-bottom: 10rem;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .hero-cta-button {
        padding: 12px 20px;
        font-size: 13px;
    }
    
    .hero-certs-overlay {
        height: 200px;
    }
    
    .hero-text {
        padding-bottom: 0; /* Отступ для изображения сертификатов */
    }
    
    .rating-badge {
        max-width: 100%;
    }
    
    .rating-badge .rating-content {
        gap: 8px;
    }
    
    .rating-badge .rating-score {
        font-size: 20px;
    }
    
    .rating-badge .rating-stars {
        font-size: 12px;
    }
    
    .rating-badge .rating-count {
        font-size: 10px;
    }
}

/* Дополнительные стили для нового дизайна */
.cont1_1 {
    position: relative;
    padding-top: 40px;
    margin-top: 20px;
}

/* Стили для основного контента с новым хедером */
.row1 {
    display: none; /* Скрываем старый хедер */
}

/* Обновленные стили для заголовков */
h1 {
    font-family: 'TikTok Sans', sans-serif;
    font-size: 40px;
    font-weight: 400;
    margin-top: 25px;
    text-transform: uppercase;
    padding-right: 50px;
    color: #ffffff;
}

h1 span {
    font-weight: 700;
}

.first_desc {
    font-family: 'TikTok Sans', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #ffffff;
}

/* Стили для кнопок */
.btn_top {
    font-family: 'TikTok Sans', sans-serif;
    background: linear-gradient(0deg, rgba(110,152,243,1) 0%, rgba(134,172,255,1) 100%);
    font-size: 21px;
    font-weight: 500;
    color: #fff;
    padding: 28px 55px;
    border-radius: 10px;
    border: none;
    border-bottom: 4px solid #5f83d1;
    margin-top: 24px;
    box-shadow: 0px 6px 14px rgba(110, 152, 243, 0.22);
    transition: all 0.3s ease;
}

.btn_top:hover, .btn_top:focus, .btn_top:active, .btn_top:visited {
    background: linear-gradient(0deg, rgba(110,152,243,1) 0%, rgba(134,172,255,1) 100%);
    color: #fff!important;
    border-bottom: 0px solid #14629e;
    margin-top: 28px;
    box-shadow: 0px 0px 21px rgba(20, 98, 158, 0.68);
    transform: translateY(-2px);
}

/* Партнеры и особенности секция */
.partners-features-section {
    position: relative;
    background: #ffffff;
    padding-top: 9rem;
}

/* Блок партнеров */
.partners-block {
    position: relative;
    z-index: 10;
    margin-top: -150px;
    margin-bottom: 40px;
}

.partners-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 30px;
    border-radius: 15px;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.partners-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.partners-text-section {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.partners-text {
    font-family: 'TikTok Sans', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #333;
    margin: 0;
}

.partners-text strong {
    font-weight: 700;
    color: #0066CC;
}

/* Стили для анимированных счетчиков */
.counter {
    display: inline-block;
    font-weight: 700;
    color: #0066CC;
    font-size: 1.1em;
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateY(0);
    min-width: 4ch; /* Фиксированная минимальная ширина для 4 символов */
    text-align: center;
    font-variant-numeric: tabular-nums; /* Моноширинные цифры */
}

.counter.counter-animated {
    opacity: 1;
    transform: translateY(0);
    animation: counterPulse 0.6s ease-out;
}

@keyframes counterPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.partners-logos-section {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.partner-logo {
    height: 50px;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.partner-logo:hover {
    opacity: 1;
}

/* Блок особенностей */
.features-block {
    position: relative;
    background: #ffffff;
    padding: 80px 0 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
    background: #f8f9fb;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: #f0f4ff;
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.1);
}

.feature-card .feature-icon {
    width: 60px;
    height: 60px;
    background: #e8f0ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-card .feature-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.feature-title {
    font-family: 'TikTok Sans', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

.feature-description {
    font-family: 'TikTok Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
}

/* Адаптивность */
@media (max-width: 768px) {
    .partners-content {
        padding: 30px 20px;
        margin-top: -40px;
    }
    
    .partners-wrapper {
        flex-direction: column;
        gap: 25px;
    }
    
    .partners-text {
        font-size: 20px;
    }
    
    .counter {
        min-width: 3ch; /* Уменьшаем для планшетов */
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .features-block {
        padding: 60px 0 40px;
    }
}

@media (max-width: 480px) {
    .partners-content {
        padding: 20px 15px;
        margin-top: -30px;
    }
    
    .partners-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    
    .partners-text {
        font-size: 18px;
    }
    
    .counter {
        min-width: 2.5ch; /* Еще меньше для мобильных */
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .features-block {
        padding: 40px 0 30px;
    }
}


/* ������� � ����� ������ */
.row-fluid.rowTags {
    background: #f5f5f5;
    padding: 80px 0 60px;
    margin-top: 0;
}
