@charset "UTF-8";
html {
  background-color: #202122;
  color: #FFF;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  cursor: pointer;
  color: #177bd1;
}
a:active {
  color: #F33;
}

/* Сетка преимуществ */
.benefits-grid {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.benefit-card {
  background: white;
  padding: 40px 25px;
  border-radius: 15px;
  text-align: center;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  border: 1px solid #f8f9fa;
}

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

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.benefit-title {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #2c3e50;
}

.benefit-text {
  color: #7f8c8d;
  line-height: 1.6;
}

/* Форма обратной связи */
.contact-form-wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 50px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.form-content {
  padding-right: 30px;
}

.form-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.form-features {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}

.form-feature {
  font-size: 1rem;
  opacity: 0.9;
}

.form-container {
  background: rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 15px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.simple-contact-form .form-group {
  margin-bottom: 20px;
}

.simple-contact-form input,
.simple-contact-form textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-size: 1rem;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.simple-contact-form input::-webkit-input-placeholder, .simple-contact-form textarea::-webkit-input-placeholder {
  color: #bdc3c7;
}

.simple-contact-form input::-moz-placeholder, .simple-contact-form textarea::-moz-placeholder {
  color: #bdc3c7;
}

.simple-contact-form input:-ms-input-placeholder, .simple-contact-form textarea:-ms-input-placeholder {
  color: #bdc3c7;
}

.simple-contact-form input::-ms-input-placeholder, .simple-contact-form textarea::-ms-input-placeholder {
  color: #bdc3c7;
}

.simple-contact-form input::placeholder, .simple-contact-form textarea::placeholder {
  color: #bdc3c7;
}

.simple-contact-form input:focus,
.simple-contact-form textarea:focus {
  border-color: #e74c3c;
  outline: none;
}

.btn-block {
  width: 100%;
}

/* Этапы работы */
.stages-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.stages-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #e74c3c;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.stage-item {
  margin-bottom: 50px;
  position: relative;
}

.stage-item.left {
  text-align: right;
  padding-right: 50%;
}

.stage-item.right {
  text-align: left;
  padding-left: 50%;
}

.stage-content {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 15px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stage-item.left .stage-content {
  margin-right: 30px;
}

.stage-item.right .stage-content {
  margin-left: 30px;
}

.stage-number {
  position: absolute;
  top: -20px;
  width: 40px;
  height: 40px;
  background: #e74c3c;
  color: white;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: bold;
}

.stage-item.left .stage-number {
  right: -20px;
}

.stage-item.right .stage-number {
  left: -20px;
}

.stage-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: white;
}

.stage-description {
  color: #bdc3c7;
}

/* Блок: Презентация опыта */
.experience-presentation {
  margin: 60px 0;
  padding: 80px 1rem;
}

.experience-content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 60px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.experience-stats {
  text-align: center;
}

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

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: bold;
  color: #e74c3c;
  margin-bottom: 10px;
  font-family: "Arial", sans-serif;
}

.stat-label {
  font-size: 1rem;
  color: #bdc3c7;
  line-height: 1.4;
}

.experience-cta {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px auto;
  grid-template-columns: 1fr auto;
  gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 20px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.cta-content h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: white;
}

.cta-content p {
  margin-bottom: 25px;
  color: #bdc3c7;
  line-height: 1.6;
}

.cta-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  color: white;
}

.btn-primary:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
          box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: #2c3e50;
}

.expert-photo {
  position: relative;
  text-align: center;
}

.expert-photo img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 5px solid rgba(255, 255, 255, 0.2);
}

.photo-label {
  margin-top: 15px;
  font-size: 0.9rem;
  color: #bdc3c7;
}

@media (max-width: 1200px) {
  .experience-content {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-form-wrapper {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .form-content {
    padding-right: 0;
    text-align: center;
  }
}
/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
}

.faq-question {
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.15);
}

.faq-question h3 {
  margin: 0;
  font-size: 1.1rem;
  color: white;
}

.faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  color: #e74c3c;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

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

.faq-answer {
  padding: 0 20px;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

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

.faq-answer p {
  color: #bdc3c7;
  line-height: 1.6;
}

.answer__faq {
  padding: 15px 10px;
  background-color: #999;
  color: #222;
  border: 1px solid #999;
  border-radius: 0.5rem;
  visibility: visible;
  line-height: 1.25rem;
}

.answer__faq.hidden {
  display: none;
}

.question__faq {
  font-weight: 700;
  font-size: 1.1rem;
  padding: 10px 50px 10px 10px;
  margin: 10px auto;
  color: #fAfAfA;
  position: relative;
  background-color: #999;
  border: 1px solid transparent;
  border-radius: 5px;
}

.question__faq:hover {
  cursor: pointer;
}

.question__faq:before {
  content: "";
  border-style: solid;
  border-color: #999;
  border-width: 0 3px 3px 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  height: 15px;
  position: absolute;
  right: 20px;
  top: 10px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: -webkit-transform 0.75s ease-in-out;
  transition: -webkit-transform 0.75s ease-in-out;
  transition: transform 0.75s ease-in-out;
  transition: transform 0.75s ease-in-out, -webkit-transform 0.75s ease-in-out;
  width: 15px;
}

/* Клиенты */
.clients-grid {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.client-logo {
  background: white;
  padding: 25px;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.client-logo:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.client-logo img {
  max-width: 100%;
  height: auto;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  -webkit-transition: -webkit-filter 0.3s ease;
  transition: -webkit-filter 0.3s ease;
  transition: filter 0.3s ease;
  transition: filter 0.3s ease, -webkit-filter 0.3s ease;
}

.client-logo:hover img {
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  padding: 20px;
  overflow-y: auto;
}

.modal-content {
  background: white;
  margin: 5% auto;
  padding: 30px;
  border-radius: 15px;
  width: 90%;
  max-width: 500px;
  position: relative;
  -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
          box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.close-modal {
  position: absolute;
  right: 15px;
  top: 15px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  color: #7f8c8d;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.close-modal:hover {
  color: #e74c3c;
}

/* Отзывы */
.reviews-slider {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.review-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid #f8f9fa;
}

.review-header {
  margin-bottom: 20px;
}

.review-rating {
  font-size: 1.2rem;
}

.review-text {
  font-style: italic;
  color: #7f8c8d;
  line-height: 1.6;
  margin-bottom: 20px;
}

.review-author {
  border-top: 1px solid #ecf0f1;
  padding-top: 15px;
}

.review-author strong {
  display: block;
  color: #2c3e50;
}

.review-author span {
  color: #95a5a6;
  font-size: 0.9rem;
}

/* Похожие услуги */
.related-services-grid {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.related-service-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  overflow: hidden;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.related-service-card:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

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

.related-service-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

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

.related-service-content {
  padding: 25px;
}

.related-service-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: white;
}

.related-service-excerpt {
  color: #bdc3c7;
  margin-bottom: 15px;
  line-height: 1.5;
}

.related-service-link {
  color: #e74c3c;
  text-decoration: none;
  font-weight: bold;
}

/* Портфолио */
.portfolio-grid {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.portfolio-card {
  background: white;
  border-radius: 15px;
  padding: 1rem;
  overflow: hidden;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

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

.portfolio-image {
  position: relative;
  height: 250px;
  overflow: hidden;
  border-radius: 12px;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.portfolio-card:hover .portfolio-image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(231, 76, 60, 0.9);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

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

.portfolio-view-btn {
  background: white;
  color: #e74c3c;
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
}

.portfolio-content {
  padding: 25px;
}

.portfolio-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #2c3e50;
}

.portfolio-description {
  color: #7f8c8d;
  margin-bottom: 15px;
}

.portfolio-link {
  color: #3498db;
  text-decoration: none;
  font-weight: bold;
}

/* Уникальные преимущества */
.unique-advantages-grid {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.unique-advantage-card {
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 15px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.unique-advantage-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.unique-advantage-title {
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.unique-advantage-text {
  opacity: 0.9;
  line-height: 1.6;
}

/* SEO текст */
.seo-section {
  background: #f8f9fa;
  padding: 50px;
  border-radius: 15px;
  margin-bottom: 60px;
}

.seo-content h2 {
  color: #2c3e50;
  margin-bottom: 20px;
}

.seo-content p {
  line-height: 1.7;
  color: #7f8c8d;
  margin-bottom: 15px;
}

.service-banner {
  position: relative;
  height: 60vh;
  min-height: 500px;
  max-height: 800px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 40px;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(45, 45, 45, 0.6) 100%);
}

.banner-content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.banner-title {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.banner-utp {
  font-size: 1.3rem;
  margin-bottom: 30px;
  opacity: 0.95;
}

.banner-cta {
  font-size: 1.1rem;
  padding: 15px 40px;
}

@media (max-width: 768px) {
  .banner-title {
    font-size: 2.5rem;
  }
  .service-banner {
    height: 50vh;
    min-height: 400px;
  }
  .benefits-grid,
  .portfolio-grid,
  .unique-advantages-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .stats-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .experience-cta {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    text-align: center;
  }
  .cta-buttons {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .stages-timeline::before {
    left: 20px;
  }
  .stage-item.left,
  .stage-item.right {
    text-align: left;
    padding-left: 50px;
    padding-right: 0;
  }
  .stage-item.left .stage-content, .stage-item.right .stage-content {
    margin-left: 30px;
    margin-right: 0;
  }
  .stage-item.left .stage-number, .stage-item.right .stage-number {
    left: -10px;
    right: auto;
  }
}
@media (max-width: 480px) {
  .banner-title {
    font-size: 2rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .benefit-card,
  .portfolio-card,
  .review-card {
    padding: 25px 15px;
  }
  .seo-section {
    padding: 30px 20p;
  }
  .stat-number {
    font-size: 2.5rem;
  }
}
/* Темные секции */
.dark-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: white;
  margin: 60px 0;
  padding: 80px 1rem;
}

.dark-section .section-title {
  color: white;
}

.dark-section .section-title::after {
  background: #e74c3c;
}

/* Основной layout */
.service-layout {
  margin-bottom: 60px;
}

/* Общие стили секций */
.section-title {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 50px;
  color: #DEDEDE;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #e74c3c;
}