/* Фон */
:root {
  --background-color: #46454e;
  --default-color: #f1f5f9;
  --heading-color: #f1f5f9;
  --accent-color: #71c55d;
  --title-color: #5278D4;
  --surface-color: #56545E;
  --contrast-color: #ffffff;
}

/* Шрифты */
:root {
  --default-font: -apple-system, BlinkMacSystemFont, Calibri, Tahoma, sans-serif;
  --heading-font: Calibri, Tahoma, sans-serif;
  --nav-font: Calibri, Tahoma, sans-serif;
}


/* Цвета меню навигации */
:root {
  --nav-color: #f1f5f9;
  --nav-hover-color: #71c55d;
  --nav-mobile-background-color: #212529;
  --nav-dropdown-background-color: #46454e;
  --nav-dropdown-color: #f1f5f9;
  --nav-dropdown-hover-color: #71c55d;
}


.light-background {
  --background-color: #56545E;
  /*--surface-color: #ffffff;*/
}

.dark-background {
  --background-color: #46454e;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Плавная прокрутка */
:root {
  scroll-behavior: smooth;
}




/*--------------------------------------------------------------
# Общая секция Section
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}




/*--------------------------------------------------------------
# Общий стиль
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  font-size: 16px;
  /*font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Inter, sans-serif;*/
  text-decoration: none;
}

a {
  color: var(--accent-color);
  text-decoration: none !important;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 0%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}




/*--------------------------------------------------------------
# Общие настройки заголовков страницы
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}





/*--------------------------------------------------------------
# Заголовки секции
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 50px;
  position: relative;
}

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 500;
  padding: 8px 20px;
  margin: 0;
  background: color-mix(in srgb, var(--title-color), transparent 0%);
  color: var(--default-color);
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
  font-family: var(--default-font);
  box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.1);
}

.section-title div {
  color: var(--heading-color);
  margin: 10px 0 0 0;
  font-size: 32px;
  font-weight: 300;
  font-family: var(--heading-font);
}

.section-title div .description-title {
  color: var(--accent-color);
}



/*--------------------------------------------------------------
# Главное меню
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 32px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .logo h1 span {
  color: var(--accent-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Меню навигации
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 18px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}



/*--------------------------------------------------------------
# Предзагрузка
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--accent-color);
  border-top-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Прокрутка кнопки верхнего меню
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}



/*--------------------------------------------------------------
# Отключение анимации аоs на моб. устройствах
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}


/*--------------------------------------------------------------
# Карусель
--------------------------------------------------------------*/

.carousel-section {
  background: var(--background-color);
  padding: 30px 0;
}

#heroCarousel .carousel-inner img {
  width: 90%;
  max-width: 1100px;
  height: auto;
  margin-bottom: 50px;
  box-shadow: 0 20px 20px rgba(0, 0, 0, 0.3);
}

#heroCarousel .carousel-indicators {
  bottom: 0px;
}

#heroCarousel .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 5px;
}

@media (max-width: 768px) {
  #heroCarousel .carousel-inner img {
    width: 95%;
  }
}



/*--------------------------------------------------------------
# Обложка сайта (первый крупный блок на странице)
--------------------------------------------------------------*/
.hero {
  width: 100%;
  position: relative;
  padding: 30px 0 0 0;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h2 {
  font-size: 48px;
  font-weight: 100;
  margin-bottom: 20px;
}

.hero h2 .accent {
  color: var(--accent-color);
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 400;
  margin-bottom: 30px;
}



@media (max-width: 640px) {
  .hero h2 {
    font-size: 36px;
  }
}

.hero .icon-boxes {
  padding-bottom: 60px;
  z-index: 4;
}

.hero .icon-box {
  background: var(--surface-color);
  padding: 60px 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 29px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
  height: 100%;
  width: 100%;
  text-align: center;
}

.hero .icon-box .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.hero .icon-box .title a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.hero .icon-box .icon {
  margin-bottom: 20px;
  padding-top: 10px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  font-size: 48px;
  line-height: 1;
  color: var(--accent-color);
}

.hero .icon-box:hover {
  background-color: var(--accent-color);
}

.hero .icon-box:hover .title a,
.hero .icon-box:hover .icon {
  color: var(--contrast-color);
}


.hero .stats-item {
  padding: 10px;
  width: 100%;
}

.hero .stats-item span {
  font-size: 40px;
  display: block;
  font-weight: 400;
  margin-bottom: 15px;
  padding-bottom: 15px;
  position: relative;
}

.hero .stats-item span:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.hero .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 20px;
  font-weight: 400;
}



/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content .who-we-are {
  text-transform: uppercase;
  margin-bottom: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.about .content h3 {
  font-size: 2rem;
  font-weight: 200;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-bottom: 10px;
}

.about .content ul i {
  font-size: 1.25rem;
  margin-right: 4px;
  color: var(--accent-color);
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .content .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  padding-right: 19px;
}

.about .content .read-more:hover i {
  margin-left: 10px;
}



/*--------------------------------------------------------------
# Функциональные возможности
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 5px 90px 0px rgba(200, 200, 200, 0.2);
  padding: 60px 30px;
  transition: all ease-in-out 0.3s;
  border-radius: 18px;
  border-bottom: 5px solid var(--surface-color);
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:linear-gradient(180deg, var(--surface-color), #4D4C55);
}

.services .service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px
    /*rgba(99, 102, 241, 0.2)*/
    #D0CACA;
  border-color: 
    /*rgba(99, 102, 241, 0.3)*/
    #444444;
}

.services .service-item img {
  margin-bottom: 20px;
  transition: transform 0.4s ease;
  width: 100%;
  height: auto;
  min-height: 150px;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.05);
}


.services .service-item:hover img {
  transform: scale(1.07);
}

.services .service-item .icon {
  color: var(--contrast-color);
  background: var(--accent-color);
  margin: 0;
  width: 64px;
  height: 64px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
  color: #70A9F9;
}

.services .service-item p {
  line-height: 24px;
  font-size: 15px;
  margin-bottom: 0;
}

.services i {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background-color: var(--background-color);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  border: 2px solid color-mix(in srgb, #fff, transparent 85%);
  transition: all 0.3s ease-in-out;
  font-size: 40px;
  color: #C8C6C6;
}

@media (min-width: 1365px) {
  .services .service-item:hover {
    transform: translateY(-10px);
    /*border-color: var(--accent-color);*/
    box-shadow: 0 20px 50px
      /*rgba(99, 102, 241, 0.2)*/
      #D0CACA;
    border-color:
      /*rgba(99, 102, 241, 0.3)*/
      #444444;
  }

  .services .service-item:hover h3 {
    color: var(--accent-color);
  }
}

/*--------------------------------------------------------------
# Базовые особенности
--------------------------------------------------------------*/
.features .container {
  position: relative;
  z-index: 3;
}

.features .feature-box {
  background-color: var(--background-color);
  padding: 14px 10px;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.3);
  transition: 0.3s;
  height: 100%;
  border-radius: 10px;
  gap: 10px;
}

.features .feature-box h3 {
  font-size: 18px;
  font-weight: 200;
  margin: 0;
  color: var(--heading-color);
}

.features .feature-box i {
  color: var(--accent-color);
}

.features p {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background-color: var(--background-color);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border: 2px solid color-mix(in srgb, #fff
      /*var(--accent-color)*/
      , transparent 85%);
  transition: all 0.3s ease-in-out;
  font-size: 40px;
  color: #C8C6C6;
}


@media (max-width: 1100px) {
  .features img {
    width: 50%;
    max-width: 50%;
    padding-top: 50px;
  }
}

@media (max-width: 600px) {
  .features img {
    width: 50%;
    max-width: 50%;
    padding-top: 50px;
  }
}



/*--------------------------------------------------------------
# Адаптация под объект размещения
--------------------------------------------------------------*/
.adapt .adapt-item {
  background-color: var(--surface-color);
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.3);
  padding: 40px 20px;
  text-align: center;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
  height: 100%;
  background:linear-gradient(180deg, var(--surface-color), #55545E);
}


@media (min-width: 1200px) {
  .adapt .adapt-item:hover {
    transform: scale(1.1);
  }
}

.adapt h3 {
  font-weight: 200;
  font-size: 20px;
  margin-bottom: 15px;
}

.adapt .title {
  font-size: 30px;
  color: var(--heading-color);
  font-weight: 600;
  font-family: var(--heading-font);
}


.adapt .title span {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  font-weight: 300;
}

.adapt .icon {
  padding: 20px 0;
}

.adapt .icon i {
  font-size: 48px;
}

.adapt ul {
  padding: 0;
  list-style: none;
  color: var(--default-color);
  text-align: center;
  line-height: 26px;
  font-size: 16px;
  margin-bottom: 0px;
}

.adapt ul li {
  padding-bottom: 10px;
}


.adapt .featured {
  width: 200px;
  position: absolute;
  top: 18px;
  left: -68px;
  transform: rotate(-45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
}



/*--------------------------------------------------------------
# Модули Заголовок
--------------------------------------------------------------*/
.modules .modules-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.2);
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
  height: 100%;
}

@media (min-width: 1200px) {
  .modules .modules-item:hover {
    transform: scale(1.1);
  }
}


.modules h3 {
  font-weight: 200;
  font-size: 20px;
  margin-bottom: 15px;
}

.modules h4 {
  font-size: 28px;
  font-weight: 100;
  padding: 20px 0 0 0;
  margin-bottom: -50px;
  color: #f1f5f9;
}


.modules i {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background-color: var(--background-color);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border: 2px solid color-mix(in srgb, #fff
      /*var(--accent-color)*/
      , transparent 85%);
  transition: all 0.3s ease-in-out;
  font-size: 40px;
  color: #C8C6C6;
}



/*--------------------------------------------------------------
# Модули Список
--------------------------------------------------------------*/
.module .module-wrapper {
  position: relative;
  padding: 20px 0;
}

.module .module-wrapper::before {
  content: "";
  position: absolute;
  width: 2px;
  background-color: color-mix(in srgb, var(--background-color), transparent 85%);
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.module .module-item {
  margin-bottom: 50px;
  width: 100%;
  position: relative;
}

.module .module-item:last-child {
  margin-bottom: 0;
}

.module .module-item:nth-child(even) .module-content {
  flex-direction: row-reverse;
}

.module .module-content {
  display: flex;
  align-items: center;
  gap: 30px;
}


.module .module-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background-color: var(--surface-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  border: 2px solid color-mix(in srgb, #fff
      /*var(--accent-color)*/
      , transparent 85%);
  transition: all 0.3s ease-in-out;
}


.module .module-icon-a {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background-color: var(--surface-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  border: 2px solid color-mix(in srgb, #fff
      /*var(--accent-color)*/
      , transparent 85%);
  transition: all 0.3s ease-in-out;
}


.module .module-icon i {
  font-size: 32px;
  color: var(--accent-color);
  transition: transform 0.3s ease-in-out;
}

.module .module-icon-a i {
  font-size: 32px;
  color: #70A9F9;
  transition: transform 0.3s ease-in-out;
}

.module .module-info {
  flex: 1;
  background-color: var(--surface-color);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease-in-out;
}


.module .module-info:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px
    /*rgba(99, 102, 241, 0.2)*/
    #AAA8A8;
  border-color:
    /*rgba(99, 102, 241, 0.3)*/
    #444444;
}

.module h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 400;
  color: #57CC3B;
}


.module p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .module .module-wrapper::before {
    left: 25px;
  }

  .module .module-item .module-content {
    flex-direction: row !important;
  }

  .module .module-icon {
    width: 60px;
    height: 60px;
  }

  .module .module-icon i {
    font-size: 24px;
  }

  .module .module-info {
    padding: 20px;
  }

  .module h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 767px) {
  .module .module-content {
    gap: 20px;
  }

  .module .module-icon {
    width: 50px;
    height: 50px;
  }

  .module .module-icon i {
    font-size: 20px;
  }

  .module .module-info {
    padding: 15px;
  }

  .module h3 {
    font-size: 1.2rem;
  }

  .module p {
    font-size: 0.95rem;
  }
}






/*--------------------------------------------------------------
# Цены
--------------------------------------------------------------*/
.price .price-item {
  background-color: var(--surface-color);
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.3);
  padding: 40px 20px;
  text-align: center;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
  height: 100%;
  background:linear-gradient(180deg, var(--surface-color), #55545E);
}


@media (min-width: 1200px) {
  .price .price-item:hover {
    transform: scale(1.1);
  }
}

.price h3 {
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 15px;
}

.price .title {
  font-size: 30px;
  color: var(--heading-color);
  font-weight: 600;
  font-family: var(--heading-font);
}

.price .title sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.price .title span {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  font-weight: 300;
}

.price .icon {
  padding: 20px 0;
}

.price .icon i {
  font-size: 48px;
}

.price ul {
  padding: 0;
  list-style: none;
  color: var(--default-color);
  text-align: center;
  line-height: 26px;
  font-size: 16px;
  margin-bottom: 20px;
}

.price ul li {
  padding-bottom: 10px;
  display: flex;
  gap: 10px;
}

.price ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
  text-decoration: line-through;
}


.price .price-item ul li i.bi-check-circle-fill {
  color: var(--accent-color);
}

.price .price-item ul li.disabled {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.price .price-item ul li i.bi-x-circle-fill {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}



.price .price-item .btn-buy {
  display: inline-block;
  width: 100%;
  padding: 12px 32px;
  background-color: color-mix(in srgb, var(--background-color), transparent 0%);
  color: var(--default-color);
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s;
}

.price .price-item .btn-buy:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 0%);
}

.price .featured {
  width: 200px;
  position: absolute;
  top: 18px;
  left: -68px;
  transform: rotate(-45deg);
  z-index: 1;
  font-size: 15px;
  padding: 1px 0 3px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
}




/*--------------------------------------------------------------
# Отправить E-mail
--------------------------------------------------------------*/
.contact .contact-item {
  background-color: var(--surface-color);
  box-shadow: 10px 0 30px rgba(0, 0, 0, 0.3);
  padding: 40px 20px;
  text-align: center;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
  height: 100%;
}

.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info-item:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.contact .php-email-form {
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 8px;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 0%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--title-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
  font-weight: 400;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  border: 1px solid color-mix(in srgb, #191919, transparent 30%);
  color:#272727;
  font-weight: 400;
}


.contact .contact-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background-color: var(--background-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border: 2px solid color-mix(in srgb, #fff
      /*var(--accent-color)*/
      , transparent 85%);
  transition: all 0.3s ease-in-out;
  font-size: 40px;
  color: #C8C6C6;
}






/*--------------------------------------------------------------
# ЧАВО
--------------------------------------------------------------*/
.faq .content h3 {
  font-weight: 300;
  font-size: 34px;
}

.faq .content p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.faq .faq-container .faq-item {
  background-color: var(--background-color);
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  border-radius: 10px;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}




/*--------------------------------------------------------------
# Наш E-mail
--------------------------------------------------------------*/
.contacts .contacts-info-box {
  background-color: var(--surface-color);
  border-radius: 10px;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.3);
  padding: 25px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contacts .contacts-info-box:hover {
  transform: translateY(-15px);
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.3);
}

.contacts .contacts-info-box .icon-box {
  background-color: color-mix(in srgb, var(--background-color), transparent 90%);
  color: var(--accent-color);
  box-shadow: 0 0px 25px rgba(0, 0, 0, 0.2);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contacts .contacts-info-box .icon-box i {
  font-size: 24px;
}

.contacts .contacts-info-box .info-content h4 {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 10px;
}

.contacts .contacts-info-box .info-content p {
  margin-bottom: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 15px;
  line-height: 1.5;
}

.contacts .contacts-info-box .info-content p:last-child {
  margin-bottom: 0;
}


.contacts h3 {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background-color: var(--background-color);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  border: 2px solid color-mix(in srgb, #fff, transparent 85%);
  transition: all 0.3s ease-in-out;
  font-size: 40px;
  color: #C8C6C6;
}




/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding: 40px 0;
  position: relative;
  justify-content: center;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.footer .copyright h1 {
  margin-bottom: 0;
  font-size: 32px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.footer .social-links {
  margin-top: 20px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin: 0 5px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}