/* =====================================================
   CONTENT BLOCKS - Universal CMS Blocks Styles
   Transfort Template Extension
   ===================================================== */

/* ==============================================
   1. HERO BLOCK - Приветственный баннер
   ============================================== */
.hero-block {
  position: relative;
  padding: 100px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(46, 46, 60, 0.9) 0%, rgba(215, 0, 6, 0.7) 100%);
  z-index: 1;
}

.hero-block .auto-container {
  position: relative;
  z-index: 2;
}

.hero-block .hero-content {
  max-width: 700px;
}

.hero-block .hero-content.text-center {
  max-width: 900px;
  margin: 0 auto;
}

.hero-block .sub-title {
  display: inline-block;
  color: var(--theme-color2);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.hero-block h1 {
  color: #fff;
  font-size: 56px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-block .hero-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.hero-block .btn-box {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-block .btn-box.justify-center {
  justify-content: center;
}

/* Hero Style 2 - With gradient overlay */
.hero-block.style-two::before {
  background: linear-gradient(to right, rgba(46, 46, 60, 0.95) 0%, rgba(46, 46, 60, 0.3) 100%);
}

/* Hero Style 3 - Light version */
.hero-block.style-light::before {
  background: rgba(255, 255, 255, 0.9);
}

.hero-block.style-light h1 {
  color: var(--theme-color3);
}

.hero-block.style-light .hero-text {
  color: var(--text-color);
}

@media (max-width: 991px) {
  .hero-block h1 {
    font-size: 42px;
  }
}

@media (max-width: 575px) {
  .hero-block {
    padding: 60px 0;
  }
  .hero-block h1 {
    font-size: 32px;
  }
}

/* ==============================================
   2. FEATURES BLOCK - Преимущества / Ключевые факты
   ============================================== */
.features-block-section {
  padding: var(--container-pt) 0;
}

.features-block-section.bg-gray {
  background-color: var(--theme-color4);
}

.feature-card {
  position: relative;
  padding: 40px 30px;
  background: #fff;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 30px;
  transition: all 0.4s ease;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-card .icon-box {
  width: 90px;
  height: 90px;
  line-height: 90px;
  background: var(--theme-color4);
  border-radius: 50%;
  margin: 0 auto 25px;
  transition: all 0.4s ease;
}

.feature-card:hover .icon-box {
  background: var(--theme-color1);
}

.feature-card .icon-box i {
  font-size: 42px;
  color: var(--theme-color1);
  transition: all 0.4s ease;
}

.feature-card:hover .icon-box i {
  color: #fff;
}

.feature-card h4 {
  font-size: 20px;
  margin-bottom: 15px;
}

.feature-card .text {
  color: var(--text-color);
  margin-bottom: 0;
}

/* Feature Card Style 2 - With border */
.feature-card.style-two {
  border: 2px solid var(--theme-color4);
  box-shadow: none;
}

.feature-card.style-two:hover {
  border-color: var(--theme-color1);
}

/* Feature Card Style 3 - Icon left */
.feature-card.style-three {
  display: flex;
  text-align: left;
  gap: 25px;
  align-items: flex-start;
}

.feature-card.style-three .icon-box {
  flex-shrink: 0;
  margin: 0;
  width: 70px;
  height: 70px;
  line-height: 70px;
}

.feature-card.style-three .icon-box i {
  font-size: 32px;
}

/* ==============================================
   3. ABOUT BLOCK - О компании
   ============================================== */
.about-block-section {
  padding: var(--container-pt) 0;
  position: relative;
}

.about-block-section .image-column .inner-column {
  position: relative;
  padding-right: 40px;
}

.about-block-section .image-column .image {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.about-block-section .image-column .image img {
  width: 100%;
  border-radius: 10px;
}

.about-block-section .image-column .experience-box {
  position: absolute;
  right: 0;
  bottom: 30px;
  background: var(--theme-color1);
  color: #fff;
  padding: 30px 35px;
  border-radius: 10px;
}

.about-block-section .image-column .experience-box .count {
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 5px;
}

.about-block-section .image-column .experience-box .label {
  font-size: 16px;
  font-weight: 600;
}

.about-block-section .content-column .inner-column {
  padding-left: 40px;
}

.about-block-section .about-list {
  margin: 25px 0;
}

.about-block-section .about-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-weight: 500;
}

.about-block-section .about-list li i {
  position: absolute;
  left: 0;
  top: 5px;
  color: var(--theme-color1);
}

.about-block-section .author-info {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #e5e5e5;
}

.about-block-section .author-info .thumb {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
}

.about-block-section .author-info .name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 2px;
}

.about-block-section .author-info .designation {
  color: var(--text-color);
  font-size: 14px;
}

.about-block-section .author-info .signature {
  margin-left: auto;
}

@media (max-width: 991px) {
  .about-block-section .image-column .inner-column {
    padding-right: 0;
    margin-bottom: 50px;
  }
  .about-block-section .content-column .inner-column {
    padding-left: 0;
  }
}

/* ==============================================
   4. SERVICES BLOCK - Услуги / Направления
   ============================================== */
.services-block-section {
  padding: var(--container-pt) 0;
}

.service-card {
  position: relative;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
}

.service-card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.service-card .image-box {
  position: relative;
  overflow: hidden;
}

.service-card .image-box img {
  width: 100%;
  transition: transform 0.5s ease;
}

.service-card:hover .image-box img {
  transform: scale(1.1);
}

.service-card .icon-box {
  position: absolute;
  right: 20px;
  bottom: -35px;
  width: 70px;
  height: 70px;
  background: var(--theme-color1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.service-card .icon-box i {
  color: #fff;
  font-size: 32px;
}

.service-card .content-box {
  padding: 35px 25px 25px;
}

.service-card .content-box h4 {
  margin-bottom: 12px;
}

.service-card .content-box h4 a {
  color: var(--theme-color3);
  transition: color 0.3s ease;
}

.service-card .content-box h4 a:hover {
  color: var(--theme-color1);
}

.service-card .content-box .text {
  margin-bottom: 15px;
}

.service-card .content-box .read-more {
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--theme-color1);
}

.service-card .content-box .read-more i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.service-card:hover .content-box .read-more i {
  transform: translateX(5px);
}

/* Service Card Style 2 - No image */
.service-card.style-two {
  padding: 35px 30px;
  text-align: center;
}

.service-card.style-two .icon-box {
  position: relative;
  right: auto;
  bottom: auto;
  margin: 0 auto 25px;
}

/* ==============================================
   5. PROCESS BLOCK - Этапы / Процесс
   ============================================== */
.process-block-section {
  padding: var(--container-pt) 0;
  background: var(--theme-color4);
  position: relative;
}

.process-card {
  position: relative;
  text-align: center;
  padding: 0 20px;
  margin-bottom: 30px;
}

.process-card .step-number {
  width: 100px;
  height: 100px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.process-card .step-number span {
  font-size: 36px;
  font-weight: 800;
  color: var(--theme-color1);
}

.process-card .step-number::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: var(--theme-color2);
  top: 50%;
  left: 100%;
  display: none;
}

.process-card:not(:last-child) .step-number::after {
  display: block;
}

.process-card .icon-box {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  background: var(--theme-color2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-card .icon-box i {
  color: var(--theme-color3);
  font-size: 22px;
}

.process-card h4 {
  margin-bottom: 12px;
}

.process-card .text {
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .process-card .step-number::after {
    display: none !important;
  }
}

/* Process Style 2 - Vertical timeline */
.process-block-section.style-vertical .process-card {
  display: flex;
  text-align: left;
  gap: 30px;
  padding: 0;
  margin-bottom: 40px;
}

.process-block-section.style-vertical .process-card .step-number {
  flex-shrink: 0;
  margin: 0;
  width: 80px;
  height: 80px;
}

.process-block-section.style-vertical .process-card .step-number span {
  font-size: 28px;
}

.process-block-section.style-vertical .process-card .step-number::after {
  width: 2px;
  height: 100%;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}

/* ==============================================
   6. PROJECTS/CASES BLOCK - Кейсы / Проекты
   ============================================== */
.projects-block-section {
  padding: var(--container-pt) 0;
}

.project-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
}

.project-card .image-box {
  position: relative;
  overflow: hidden;
}

.project-card .image-box img {
  width: 100%;
  transition: transform 0.5s ease;
}

.project-card:hover .image-box img {
  transform: scale(1.1);
}

.project-card .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(46, 46, 60, 0.95) 0%, transparent 60%);
  opacity: 0;
  transition: all 0.4s ease;
}

.project-card:hover .overlay {
  opacity: 1;
}

.project-card .content-box {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease;
}

.project-card:hover .content-box {
  transform: translateY(0);
  opacity: 1;
}

.project-card .content-box .category {
  color: var(--theme-color2);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.project-card .content-box h4 {
  margin-bottom: 15px;
}

.project-card .content-box h4 a {
  color: #fff;
}

.project-card .content-box h4 a:hover {
  color: var(--theme-color2);
}

.project-card .content-box .text {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 15px;
}

.project-card .content-box .read-more {
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
}

.project-card .content-box .read-more i {
  margin-left: 8px;
}

/* Project Card Style 2 - With visible content */
.project-card.style-two .overlay {
  opacity: 1;
  background: linear-gradient(to top, rgba(46, 46, 60, 0.9) 0%, transparent 70%);
}

.project-card.style-two .content-box {
  transform: translateY(0);
  opacity: 1;
}

/* ==============================================
   7. TESTIMONIALS BLOCK - Отзывы
   ============================================== */
.testimonials-block-section {
  padding: var(--container-pt) 0;
  background: var(--theme-color4);
}

.testimonial-card {
  background: #fff;
  border-radius: 10px;
  padding: 40px 35px;
  margin-bottom: 30px;
  position: relative;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}

.testimonial-card .quote-icon {
  position: absolute;
  top: 30px;
  right: 35px;
  font-size: 60px;
  color: var(--theme-color4);
  line-height: 1;
}

.testimonial-card .rating {
  margin-bottom: 20px;
}

.testimonial-card .rating i {
  color: var(--theme-color2);
  font-size: 16px;
  margin-right: 3px;
}

.testimonial-card .text {
  font-size: 17px;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.testimonial-card .author-box {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-card .author-box .thumb {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.testimonial-card .author-box .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-card .author-box .name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 2px;
}

.testimonial-card .author-box .designation {
  font-size: 14px;
  color: var(--text-color);
}

/* Testimonial Carousel */
.testimonials-carousel .owl-nav {
  margin-top: 30px;
  text-align: center;
}

.testimonials-carousel .owl-nav button {
  width: 50px;
  height: 50px;
  background: var(--theme-color1) !important;
  border-radius: 50%;
  color: #fff !important;
  font-size: 18px !important;
  margin: 0 5px;
  transition: all 0.3s ease;
}

.testimonials-carousel .owl-nav button:hover {
  background: var(--theme-color3) !important;
}

/* ==============================================
   8. CONTENT TEXT BLOCK - Контентный блок (РАСШИРЕННЫЙ)
   ============================================== */
.content-block-section {
  padding: var(--container-pt) 0;
}

.content-block-section .content-wrapper {
  /* max-width: 900px; */
  margin: 0 auto;
}

/* Заголовки */
.content-block-section h2 {
  margin-bottom: 25px;
}

.content-block-section h3 {
  margin-top: 35px;
  margin-bottom: 20px;
  font-size: 28px;
}

.content-block-section h4 {
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 22px;
}

.content-block-section h5 {
  margin-top: 25px;
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 700;
}

/* Параграфы */
.content-block-section p {
  margin-bottom: 20px;
  line-height: 1.8;
}

/* Усиленный параграф */
.content-block-section p.lead {
  font-size: 20px;
  font-weight: 500;
  color: var(--theme-color3);
  margin-bottom: 30px;
}

/* Текстовые выделения */
.content-block-section strong {
  font-weight: 700;
  color: var(--theme-color3);
}

.content-block-section em {
  font-style: italic;
}

.content-block-section mark {
  background: var(--theme-color2);
  color: var(--theme-color3);
  padding: 2px 6px;
  border-radius: 3px;
}

.content-block-section .text-primary {
  color: var(--theme-color1);
  font-weight: 600;
}

/* Сноски и мелкий текст */
.content-block-section small,
.content-block-section .footnote {
  font-size: 13px;
  color: #777;
  display: block;
  margin-top: 5px;
  font-style: italic;
}

/* Стандартные списки */
.content-block-section ul,
.content-block-section ol {
  margin-bottom: 25px;
  padding-left: 20px;
}

.content-block-section ul li,
.content-block-section ol li {
  margin-bottom: 10px;
  line-height: 1.7;
}

/* Маркированный список (стандартный) */
.content-block-section ul:not(.icon-list):not(.nested-list) {
  list-style: none;
  padding-left: 0;
}

.content-block-section ul:not(.icon-list):not(.nested-list) li {
  position: relative;
  padding-left: 25px;
}

.content-block-section ul:not(.icon-list):not(.nested-list) li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Pro';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--theme-color1);
  font-size: 14px;
}

/* Нумерованный список */
.content-block-section ol {
  counter-reset: item;
  list-style: none;
  padding-left: 0;
}

.content-block-section ol li {
  position: relative;
  padding-left: 35px;
}

.content-block-section ol li::before {
  content: counter(item);
  counter-increment: item;
  position: absolute;
  left: 0;
  top: 0;
  width: 25px;
  height: 25px;
  background: var(--theme-color1);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
}

/* Список с иконками */
.content-block-section .icon-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.content-block-section .icon-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
  padding-left: 0;
}

.content-block-section .icon-list li::before {
  display: none;
}

.content-block-section .icon-list li i {
  flex-shrink: 0;
  font-size: 20px;
  color: var(--theme-color1);
  margin-top: 2px;
}

.content-block-section .icon-list li span {
  flex: 1;
}

/* Вложенные списки */
.content-block-section .nested-list {
  list-style: none;
  padding-left: 0;
}

.content-block-section .nested-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 8px;
}

.content-block-section .nested-list li::before {
  content: '\f105';
  font-family: 'Font Awesome 6 Pro';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--theme-color1);
}

.content-block-section .nested-list ul {
  margin-top: 8px;
  margin-bottom: 8px;
  padding-left: 25px;
}

.content-block-section .nested-list ul li::before {
  content: '\f061';
  font-size: 12px;
}

/* Цитата */
.content-block-section blockquote {
  background: var(--theme-color4);
  border-left: 4px solid var(--theme-color1);
  padding: 30px 35px;
  margin: 30px 0;
  border-radius: 0 10px 10px 0;
}

.content-block-section blockquote p {
  font-size: 18px;
  font-style: italic;
  margin-bottom: 15px;
}

.content-block-section blockquote cite {
  font-weight: 700;
  color: var(--theme-color3);
  font-style: normal;
}

.content-block-section blockquote cite::before {
  content: '— ';
}

/* Информационные боксы */
.content-block-section .info-box {
  display: flex;
  gap: 20px;
  padding: 20px 25px;
  border-radius: 8px;
  margin: 25px 0;
  border-left: 4px solid;
}

.content-block-section .info-box i {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.content-block-section .info-box .content {
  flex: 1;
  line-height: 1.7;
}

.content-block-section .info-box.info {
  background: #e7f3ff;
  border-color: #2196F3;
  color: #0d47a1;
}

.content-block-section .info-box.info i {
  color: #2196F3;
}

.content-block-section .info-box.success {
  background: #e8f5e9;
  border-color: #4CAF50;
  color: #1b5e20;
}

.content-block-section .info-box.success i {
  color: #4CAF50;
}

.content-block-section .info-box.warning {
  background: #fff3e0;
  border-color: #FF9800;
  color: #e65100;
}

.content-block-section .info-box.warning i {
  color: #FF9800;
}

.content-block-section .info-box.note {
  background: #f3e5f5;
  border-color: #9C27B0;
  color: #4a148c;
}

.content-block-section .info-box.note i {
  color: #9C27B0;
}

/* Нумерованные шаги */
.content-block-section .step-list {
  margin: 30px 0;
}

.content-block-section .step-item {
  display: flex;
  gap: 25px;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #e5e5e5;
}

.content-block-section .step-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.content-block-section .step-number {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: var(--theme-color1);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  box-shadow: 0 5px 20px rgba(215, 0, 6, 0.3);
}

.content-block-section .step-content h5 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 20px;
}

.content-block-section .step-content p {
  margin-bottom: 0;
}

/* Врезка Key-point */
.content-block-section .key-point {
  background: linear-gradient(135deg, var(--theme-color1) 0%, #a00005 100%);
  color: #fff;
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  margin: 40px 0;
}

.content-block-section .key-point .key-number {
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 15px;
  color: var(--theme-color2);
}

.content-block-section .key-point .key-label {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
}

/* Мини-карточки */
.content-block-section .mini-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin: 30px 0;
}

.content-block-section .mini-card {
  background: #fff;
  border: 2px solid var(--theme-color4);
  border-radius: 10px;
  padding: 25px 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.content-block-section .mini-card:hover {
  border-color: var(--theme-color1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.content-block-section .mini-card i {
  font-size: 40px;
  color: var(--theme-color1);
  margin-bottom: 15px;
}

.content-block-section .mini-card h5 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 18px;
}

.content-block-section .mini-card p {
  margin-bottom: 0;
  font-size: 14px;
}

/* Таблицы */
.content-block-section .table-responsive {
  overflow-x: auto;
  margin: 30px 0;
}

.content-block-section .content-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.content-block-section .content-table thead {
  background: var(--theme-color3);
  color: #fff;
}

.content-block-section .content-table thead th {
  padding: 15px 20px;
  text-align: left;
  font-weight: 700;
  font-size: 15px;
}

.content-block-section .content-table tbody tr {
  border-bottom: 1px solid #e5e5e5;
}

.content-block-section .content-table tbody tr:last-child {
  border-bottom: none;
}

.content-block-section .content-table tbody tr:hover {
  background: var(--theme-color4);
}

.content-block-section .content-table tbody td {
  padding: 15px 20px;
  font-size: 14px;
}

/* Бейджи в таблицах */
.content-block-section .badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.content-block-section .badge.success {
  background: #4CAF50;
  color: #fff;
}

.content-block-section .badge.warning {
  background: #FF9800;
  color: #fff;
}

.content-block-section .badge.info {
  background: #2196F3;
  color: #fff;
}

/* Список определений */
.content-block-section .definition-list {
  margin: 30px 0;
}

.content-block-section .definition-list dt {
  font-size: 18px;
  font-weight: 700;
  color: var(--theme-color3);
  margin-bottom: 8px;
  margin-top: 20px;
}

.content-block-section .definition-list dt:first-child {
  margin-top: 0;
}

.content-block-section .definition-list dd {
  margin-left: 0;
  padding-left: 20px;
  border-left: 3px solid var(--theme-color1);
  margin-bottom: 15px;
  line-height: 1.7;
  color: var(--text-color);
}

/* Текст с иконками в строку */
.content-block-section .inline-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin: 25px 0;
}

.content-block-section .inline-icon-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.content-block-section .inline-icon-item i {
  color: var(--theme-color1);
  font-size: 16px;
}

/* Изображения в контенте */
.content-block-section .content-image {
  margin: 30px 0;
  border-radius: 8px;
  overflow: hidden;
}

.content-block-section .content-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.content-block-section .content-image figcaption {
  font-size: 14px;
  color: #777;
  font-style: italic;
  text-align: center;
  margin-top: 10px;
}

/* Изображение по центру */
.content-block-section .content-image.center {
  text-align: center;
}

.content-block-section .content-image.center img {
  max-width: 100%;
  margin: 0 auto;
}

/* Изображение слева с обтеканием */
.content-block-section .content-image.left {
  float: left;
  margin-right: 25px;
  margin-bottom: 20px;
  max-width: 350px;
}

/* Изображение справа с обтеканием */
.content-block-section .content-image.right {
  float: right;
  margin-left: 25px;
  margin-bottom: 20px;
  max-width: 350px;
}

/* Широкое изображение */
.content-block-section .content-image.wide {
  margin-left: -50px;
  margin-right: -50px;
  max-width: calc(100% + 100px);
}

/* Видео embed */
.content-block-section .video-embed {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 соотношение */
  height: 0;
  overflow: hidden;
  margin: 30px 0;
  border-radius: 10px;
}

.content-block-section .video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

/* Разделители */
.content-block-section .content-divider {
  height: 1px;
  background: #e5e5e5;
  border: none;
  margin: 40px 0;
}

.content-block-section .content-divider.with-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  gap: 20px;
  height: auto;
}

.content-block-section .content-divider.with-icon::before,
.content-block-section .content-divider.with-icon::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e5e5e5;
}

.content-block-section .content-divider.with-icon i {
  color: var(--theme-color1);
  font-size: 20px;
}

/* Clearfix для обтекания */
.content-block-section .clearfix {
  clear: both;
}

/* Две колонки */
.content-block-section .two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 30px 0;
}

/* Три колонки */
.content-block-section .three-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 30px 0;
}

/* ============================================
   АДАПТИВНОСТЬ
   ============================================ */

@media (max-width: 991px) {
  .content-block-section .mini-cards {
    grid-template-columns: 1fr;
  }

  .content-block-section .three-columns {
    grid-template-columns: 1fr;
  }

  .content-block-section .content-image.wide {
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
  }

  .content-block-section .inline-icons {
    gap: 15px;
  }
}

@media (max-width: 767px) {
  .content-block-section .two-columns {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .content-block-section .content-image.left,
  .content-block-section .content-image.right {
    float: none;
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
  }

  .content-block-section .step-item {
    flex-direction: column;
    gap: 15px;
  }

  .content-block-section .step-number {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .content-block-section .key-point .key-number {
    font-size: 48px;
  }

  .content-block-section .key-point .key-label {
    font-size: 18px;
  }

  .content-block-section .inline-icons {
    flex-direction: column;
    gap: 10px;
  }

  .content-block-section .info-box {
    flex-direction: column;
    gap: 15px;
  }

  .content-block-section h3 {
    font-size: 24px;
  }

  .content-block-section h4 {
    font-size: 20px;
  }

  .content-block-section .content-table thead th,
  .content-block-section .content-table tbody td {
    padding: 10px 12px;
    font-size: 13px;
  }
}

@media (max-width: 575px) {
  .content-block-section .key-point {
    padding: 30px 20px;
  }

  .content-block-section .mini-card {
    padding: 20px 15px;
  }
}

/* ==============================================
   9. FAQ BLOCK - Вопрос-ответ
   ============================================== */
.faq-block-section {
  padding: var(--container-pt) 0;
}

.faq-accordion .accordion-item {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 10px !important;
  margin-bottom: 15px;
  overflow: hidden;
}

.faq-accordion .accordion-header {
  margin: 0;
}

.faq-accordion .accordion-button {
  padding: 20px 25px;
  font-size: 18px;
  font-weight: 700;
  color: var(--theme-color3);
  background: #fff;
  box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: var(--theme-color1);
  color: #fff;
}

.faq-accordion .accordion-button::after {
  background: none;
  content: '\f107';
  font-family: 'Font Awesome 6 Pro';
  font-weight: 900;
  font-size: 16px;
  width: auto;
  height: auto;
  transition: transform 0.3s ease;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
  color: #fff;
}

.faq-accordion .accordion-body {
  padding: 20px 25px 25px;
  line-height: 1.8;
}

/* FAQ with image */
.faq-block-section .faq-image {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.faq-block-section .faq-image img {
  width: 100%;
  border-radius: 10px;
}

/* ==============================================
   10. GALLERY BLOCK - Галерея
   ============================================== */
.gallery-block-section {
  padding: var(--container-pt) 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(215, 0, 6, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

.gallery-item .overlay i {
  color: #fff;
  font-size: 32px;
}

/* Gallery with different sizes */
.gallery-grid.masonry .gallery-item:nth-child(3n+1) {
  grid-row: span 2;
}

.gallery-grid.masonry .gallery-item:nth-child(3n+1) img {
  height: 515px;
}

@media (max-width: 991px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery-grid.masonry .gallery-item:nth-child(3n+1) img {
    height: 250px;
  }
  .gallery-grid.masonry .gallery-item:nth-child(3n+1) {
    grid-row: auto;
  }
}

@media (max-width: 575px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item img {
    height: 180px;
  }
}

/* ==============================================
   11. CTA BLOCK - Призыв к действию
   ============================================== */
.cta-block-section {
  padding: 80px 0;
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.cta-block-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--theme-color1) 0%, #a00005 100%);
  opacity: 0.95;
}

.cta-block-section .auto-container {
  position: relative;
  z-index: 2;
}

.cta-block-section .cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-block-section .cta-content h2 {
  color: #fff;
  font-size: 42px;
  margin-bottom: 20px;
}

.cta-block-section .cta-content .text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin-bottom: 30px;
}

.cta-block-section .btn-box {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-block-section .theme-btn.btn-style-two {
  background: #fff;
  color: var(--theme-color1);
}

.cta-block-section .theme-btn.btn-style-two:hover {
  background: var(--theme-color3);
  color: #fff;
}

/* CTA Style 2 - With phone */
.cta-block-section.style-two .cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
  text-align: left;
}

.cta-block-section.style-two .cta-content h2 {
  margin-bottom: 0;
}

.cta-block-section.style-two .phone-box {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #fff;
}

.cta-block-section.style-two .phone-box i {
  font-size: 40px;
  color: var(--theme-color2);
}

.cta-block-section.style-two .phone-box .label {
  font-size: 14px;
  opacity: 0.8;
}

.cta-block-section.style-two .phone-box .number {
  font-size: 24px;
  font-weight: 700;
}

@media (max-width: 991px) {
  .cta-block-section.style-two .cta-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
}

@media (max-width: 575px) {
  .cta-block-section .cta-content h2 {
    font-size: 32px;
  }
}

/* ==============================================
   12. CONTACT BLOCK - Контакты
   ============================================== */
.contact-block-section {
  padding: var(--container-pt) 0;
}

.contact-info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.contact-info-card {
  background: #fff;
  border-radius: 10px;
  padding: 35px 30px;
  text-align: center;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.contact-info-card .icon {
  width: 80px;
  height: 80px;
  background: var(--theme-color4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.4s ease;
}

.contact-info-card:hover .icon {
  background: var(--theme-color1);
}

.contact-info-card .icon i {
  font-size: 32px;
  color: var(--theme-color1);
  transition: all 0.4s ease;
}

.contact-info-card:hover .icon i {
  color: #fff;
}

.contact-info-card h4 {
  margin-bottom: 10px;
}

.contact-info-card .info-text {
  color: var(--text-color);
  margin-bottom: 0;
}

.contact-info-card .info-text a {
  color: var(--text-color);
}

.contact-info-card .info-text a:hover {
  color: var(--theme-color1);
}

@media (max-width: 991px) {
  .contact-info-cards {
    grid-template-columns: 1fr;
  }
}

/* Contact Form */
.contact-form-box {
  background: var(--theme-color4);
  border-radius: 10px;
  padding: 50px;
}

.contact-form-box .form-group {
  margin-bottom: 25px;
}

.contact-form-box .form-control {
  height: 55px;
  background: #fff;
  border: none;
  padding: 15px 25px;
  border-radius: 5px;
}

.contact-form-box textarea.form-control {
  height: 150px;
  resize: none;
}

/* Map */
.contact-map {
  height: 450px;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 50px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 767px) {
  .contact-form-box {
    padding: 30px 25px;
  }
}

/* ==============================================
   13. PARTNERS/LOGOS BLOCK - Партнёры
   ============================================== */
.partners-block-section {
  padding: 80px 0;
  background: var(--theme-color4);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  align-items: center;
}

.partner-item {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: all 0.4s ease;
}

.partner-item:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.partner-item img {
  max-width: 120px;
  height: auto;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.4s ease;
}

.partner-item:hover img {
  filter: grayscale(0);
  opacity: 1;
}

/* Partners Carousel */
.partners-carousel .partner-item {
  margin: 0 15px;
}

@media (max-width: 991px) {
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 575px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .partner-item {
    padding: 20px 15px;
  }
}

/* ==============================================
   14. TABLE BLOCK - Табличный блок
   ============================================== */
.table-block-section {
  padding: var(--container-pt) 0;
}

.styled-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}

.styled-table thead {
  background: var(--theme-color1);
  color: #fff;
}

.styled-table thead th {
  padding: 20px 25px;
  text-align: left;
  font-weight: 700;
  font-size: 16px;
}

.styled-table tbody tr {
  border-bottom: 1px solid #e5e5e5;
  transition: background 0.3s ease;
}

.styled-table tbody tr:last-child {
  border-bottom: none;
}

.styled-table tbody tr:hover {
  background: var(--theme-color4);
}

.styled-table tbody td {
  padding: 20px 25px;
  font-size: 15px;
}

.styled-table tbody td.highlight {
  font-weight: 700;
  color: var(--theme-color3);
}

/* Table Responsive */
.table-responsive {
  overflow-x: auto;
}

/* Comparison Table */
.comparison-table {
  text-align: center;
}

.comparison-table thead th:first-child {
  text-align: left;
}

.comparison-table tbody td:first-child {
  text-align: left;
  font-weight: 600;
}

.comparison-table .check-icon {
  color: #28a745;
  font-size: 18px;
}

.comparison-table .cross-icon {
  color: #dc3545;
  font-size: 18px;
}

/* Pricing Table */
.pricing-table thead th {
  text-align: center;
}

.pricing-table thead th:first-child {
  text-align: left;
}

.pricing-table .price-cell {
  font-size: 24px;
  font-weight: 800;
  color: var(--theme-color1);
}

.pricing-table .price-cell small {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-color);
}

/* ==============================================
   15. TEAM BLOCK - Команда
   ============================================== */
.team-block-section {
  padding: var(--container-pt) 0;
}

.team-card {
  position: relative;
  margin-bottom: 30px;
  text-align: center;
}

.team-card .image-box {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}

.team-card .image-box img {
  width: 100%;
  transition: transform 0.5s ease;
}

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

.team-card .social-links {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  opacity: 0;
  transition: all 0.4s ease;
}

.team-card:hover .social-links {
  bottom: 20px;
  opacity: 1;
}

.team-card .social-links a {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--theme-color3);
  transition: all 0.3s ease;
}

.team-card .social-links a:hover {
  background: var(--theme-color1);
  color: #fff;
}

.team-card .content-box h4 {
  margin-bottom: 5px;
}

.team-card .content-box h4 a {
  color: var(--theme-color3);
}

.team-card .content-box h4 a:hover {
  color: var(--theme-color1);
}

.team-card .content-box .designation {
  color: var(--theme-color1);
  font-size: 14px;
  font-weight: 600;
}

/* ==============================================
   16. STATS/COUNTER BLOCK - Статистика
   ============================================== */
.stats-block-section {
  padding: 80px 0;
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.stats-block-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(46, 46, 60, 0.9);
}

.stats-block-section .auto-container {
  position: relative;
  z-index: 2;
}

.stat-card {
  text-align: center;
  padding: 20px;
}

.stat-card .icon {
  font-size: 50px;
  color: var(--theme-color2);
  margin-bottom: 15px;
}

.stat-card .count-box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.stat-card .count {
  font-size: 56px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.stat-card .count-suffix {
  font-size: 36px;
  font-weight: 800;
  color: var(--theme-color1);
}

.stat-card .label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  font-weight: 500;
}

/* ==============================================
   17. VIDEO BLOCK - Видео блок
   ============================================== */
.video-block-section {
  position: relative;
  padding: 150px 0;
  background-size: cover;
  background-position: center;
}

.video-block-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.video-block-section .auto-container {
  position: relative;
  z-index: 2;
}

.video-block-section .video-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.video-block-section .play-btn {
  width: 100px;
  height: 100px;
  background: var(--theme-color1);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  position: relative;
  transition: all 0.4s ease;
}

.video-block-section .play-btn::before {
  content: '';
  position: absolute;
  width: 130px;
  height: 130px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

.video-block-section .play-btn i {
  color: #fff;
  font-size: 36px;
  margin-left: 5px;
}

.video-block-section .play-btn:hover {
  background: #fff;
}

.video-block-section .play-btn:hover i {
  color: var(--theme-color1);
}

.video-block-section h2 {
  color: #fff;
  margin-bottom: 15px;
}

.video-block-section .text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
}

/* ==============================================
   18. NEWS/BLOG BLOCK - Новости
   ============================================== */
.news-block-section {
  padding: var(--container-pt) 0;
}

.news-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
}

.news-card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.news-card .image-box {
  position: relative;
  overflow: hidden;
}

.news-card .image-box img {
  width: 100%;
  transition: transform 0.5s ease;
}

.news-card:hover .image-box img {
  transform: scale(1.1);
}

.news-card .date-box {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--theme-color1);
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-align: center;
}

.news-card .date-box .day {
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  display: block;
}

.news-card .date-box .month {
  font-size: 12px;
  text-transform: uppercase;
}

.news-card .content-box {
  padding: 25px;
}

.news-card .meta-info {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.news-card .meta-info span {
  font-size: 13px;
  color: var(--text-color);
}

.news-card .meta-info span i {
  color: var(--theme-color1);
  margin-right: 6px;
}

.news-card .content-box h4 {
  margin-bottom: 12px;
  line-height: 1.4;
}

.news-card .content-box h4 a {
  color: var(--theme-color3);
}

.news-card .content-box h4 a:hover {
  color: var(--theme-color1);
}

.news-card .content-box .text {
  margin-bottom: 15px;
}

.news-card .read-more {
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--theme-color1);
}

.news-card .read-more i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.news-card:hover .read-more i {
  transform: translateX(5px);
}

/* ==============================================
   19. TABS BLOCK - Табы
   ============================================== */
.tabs-block-section {
  padding: var(--container-pt) 0;
}

.custom-tabs .nav-tabs {
  border: none;
  gap: 10px;
  margin-bottom: 30px;
}

.custom-tabs .nav-tabs .nav-link {
  background: var(--theme-color4);
  border: none;
  border-radius: 5px;
  padding: 15px 30px;
  font-weight: 700;
  color: var(--theme-color3);
  transition: all 0.3s ease;
}

.custom-tabs .nav-tabs .nav-link:hover {
  background: var(--theme-color1);
  color: #fff;
}

.custom-tabs .nav-tabs .nav-link.active {
  background: var(--theme-color1);
  color: #fff;
}

.custom-tabs .tab-content {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}

/* Vertical Tabs */
.custom-tabs.vertical-tabs .row {
  display: flex;
}

.custom-tabs.vertical-tabs .nav-tabs {
  flex-direction: column;
  gap: 10px;
}

.custom-tabs.vertical-tabs .nav-tabs .nav-link {
  text-align: left;
}

/* ==============================================
   20. DIVIDER / SEPARATOR
   ============================================== */
.section-divider {
  height: 1px;
  background: #e5e5e5;
  margin: 0;
}

.section-divider.with-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  gap: 30px;
}

.section-divider.with-icon::before,
.section-divider.with-icon::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e5e5e5;
}

.section-divider.with-icon i {
  color: var(--theme-color1);
  font-size: 24px;
}

/* Spacer */
.spacer {
  height: 50px;
}

.spacer.sm {
  height: 30px;
}

.spacer.lg {
  height: 80px;
}

.spacer.xl {
  height: 120px;
}

/* ==============================================
   UTILITY CLASSES
   ============================================== */
.bg-gray {
  background-color: var(--theme-color4);
}

.bg-dark {
  background-color: var(--theme-color3);
}

.text-theme {
  color: var(--theme-color1);
}

.text-white {
  color: #fff;
}

.mb-0 {
  margin-bottom: 0 !important;
}

/* Button Light Style */
.theme-btn.btn-style-light {
  background: #fff;
  color: var(--theme-color1);
}

.theme-btn.btn-style-light:hover {
  background: var(--theme-color3);
  color: #fff;
}

/* Button Outline Style */
.theme-btn.btn-style-outline {
  background: transparent;
  border: 2px solid var(--theme-color1);
  color: var(--theme-color1);
}

.theme-btn.btn-style-outline:hover {
  background: var(--theme-color1);
  color: #fff;
}

.theme-btn.btn-style-outline.light {
  border-color: #fff;
  color: #fff;
}

.theme-btn.btn-style-outline.light:hover {
  background: #fff;
  color: var(--theme-color1);
}

