@charset "UTF-8";
/*
Start
 */
.section {
  padding: 50px 15px;
}
@media all and (max-width: 772px) {
  .section {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 468px) {
  .section {
    padding-top: 25px;
    padding-bottom: 25px;
  }
}
.section + .section {
  border-top: 2px solid #eee;
}

.section_start {
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
  z-index: 1;
  background: #3e6387;
  color: #fff;
}
@media (max-width: 468px) {
  .section_start {
    padding-top: 22px;
    padding-bottom: 25px;
  }
}

.block-start {
  display: flex;
  gap: 20px;
}

.block-start-left {
  flex: 1 0;
}

.block-start-right {
  flex: none;
  width: 300px;
}

.block-start-image {
  width: 100%;
  height: 0;
  padding: 100% 0 0 0;
  position: relative;
  background: no-repeat 0 0 url(../images/landing/graph1.svg);
  background-size: 100% 100%;
}

.block-start-image::after {
  width: 21px;
  height: 21px;
  content: " ";
  display: block;
  position: absolute;
  right: 27px;
  top: 24px;
  background: #28c76f;
  border-radius: 50%;
  animation: anim-start-blink 2s infinite;
}

@keyframes anim-start-blink {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@media (max-width: 992px) {
  .block-start-right {
    width: 200px;
  }
  .block-start-image::after {
    width: 16px;
    height: 16px;
    right: 17px;
    top: 15px;
  }
}
@media (max-width: 768px) {
  .block-start {
    flex-direction: column;
  }
  .block-start-right {
    order: -1;
    width: 100px;
    margin-bottom: -126px;
  }
  .block-start-image::after {
    width: 7px;
    height: 7px;
    right: 9px;
    top: 8px;
  }
  .block-start-title {
    padding-left: 110px;
  }
}
@media (max-width: 468px) {
  .block-start-right {
    display: none;
  }
  .block-start-title {
    padding-left: 0;
    font-size: 1.5rem;
  }
}
.block-start-controls {
  display: flex;
  justify-content: flex-start;
}

.block-start-controls-inner {
  padding: 20px 0 0 0;
  margin: 20px 0 0 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  border-top: 1px solid #eee;
}

@media all and (max-width: 400px) {
  .block-start-controls-inner {
    justify-content: center;
  }
  .block-start-controls-inner .btn-lg {
    padding: 10px 12px;
    font-size: 14px;
  }
}
.section_advantages {
  background: #f4fcff;
}

.advantages-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  position: relative;
  z-index: 1;
}

@media all and (max-width: 772px) {
  .advantages-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.advantages-item-body {
  display: flex;
  gap: 16px;
}

.advantages-item-icon {
  flex: none;
}

.advantages-item-icon svg.feather {
  width: 60px;
  height: 60px;
}

@media all and (max-width: 400px) {
  .advantages-item-icon svg.feather {
    width: 40px;
    height: 40px;
  }
}
.advantages-item-content {
  flex: 1 0;
}

.section_faq {
  background: #ecf6ff;
}

.section_callback {
  position: relative;
  z-index: 1;
}

.section_callback::after {
  width: auto;
  height: auto;
  content: " ";
  display: block;
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: repeating-linear-gradient(45deg, #6caff1, #cfe5fc 10px, #6caff1 10px, #cae2fa 20px);
  opacity: 0.1;
}

.block-callback-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.content-homepage .alert {
  margin: 0;
  text-align: center;
  border-radius: 0;
}

/*
Наши услуги
 */
.section_services {
  background: #f6fff6;
}

.services-block {
  max-width: 800px;
  margin: 0 auto;
}

.services-list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
@media all and (max-width: 662px) {
  .services-list {
    gap: 16px;
  }
}
@media all and (max-width: 572px) {
  .services-list {
    grid-template-columns: 1fr;
  }
}
.services-list-item {
  padding: 0;
  margin: 0;
  list-style: none;
}
.services-list-link {
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  background: #fff;
  box-shadow: 0 4px 25px 0 rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  transition: transform 0.3s ease;
}
.services-list-link img {
  flex: none;
  width: 50px;
  height: auto;
  background: #fff;
  box-shadow: 0 0 0 5px #fff;
  border-radius: 50%;
}
.services-list-link-content {
  flex: 1 0;
  display: flex;
  flex-direction: column;
}
.services-list-link-title {
  font-weight: bold;
  font-size: 20px;
}
.services-list-link-qty {
  font-size: 12px;
  opacity: 0.8;
}
.services-list-link[data-category-name=Telegram] {
  color: #fff;
  background: #41b4e0;
}
.services-list-link[data-category-name=Telegram]:hover {
  color: #fff;
  transform: scale(1.05);
}
.services-list-link[data-category-name=Instagram] {
  color: #fff;
  background: #c13785;
}
.services-list-link[data-category-name=Instagram]:hover {
  color: #fff;
  transform: scale(1.05);
}
.services-list-link[data-category-name=TikTok] {
  color: #fff;
  background: #030303;
}
.services-list-link[data-category-name=TikTok]:hover {
  color: #fff;
  transform: scale(1.05);
}
.services-list-link[data-category-name=ВКонтакте] {
  color: #fff;
  background: #4e77a2;
}
.services-list-link[data-category-name=ВКонтакте]:hover {
  color: #fff;
  transform: scale(1.05);
}

/*# sourceMappingURL=landing.css.map */
