.h1,
h1 {
  line-height: 1.0625;
}

.h2,
h2 {
  line-height: 1.0714;
}

.h3,
h3 {
  line-height: 1.05;
}

.h4,
h4 {
  line-height: 1.0666;
}

.h5,
h5 {
  line-height: 1.25;
}

.h6,
h6 {
  line-height: 1.1428;
}

.h1,
h1 {
  font-size: 48px;
}

.h1 {
  display: block;
}

.h2,
h2 {
  font-size: 36px;
}

.h2 {
  display: block;
}

.h3,
h3 {
  font-size: 28px;
}

.h3 {
  display: block;
}

.h4,
h4 {
  font-size: 24px;
}

.h4 {
  display: block;
}

.h5,
h5 {
  font-size: 20px;
}

.h5 {
  display: block;
}

.h6,
h6 {
  font-size: 16px;
}

.h6 {
  display: block;
}

@media (max-width: 991px) {
  .h1,
  h1 {
    font-size: 36px;
  }

  .h2,
  h2 {
    font-size: 28px;
  }

  .h3,
  h3 {
    font-size: 24px;
  }

  .h4,
  h4 {
    font-size: 20px;
  }

  .h5,
  h5 {
    font-size: 18px;
  }

  .h6,
  h6 {
    font-size: 14px;
  }
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 5px 0;
  margin-bottom: 15px;
  //color: var(--main-color);
}

.sec-title {
  color: var(--title-color);
}

.sub-title {
  color: var(--title-color);
}

.sec-title > strong {
  font-weight: 600 !important;
  color: var(--title-color);
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.sec-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.sec-title {
  
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.sec-title:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.sec-title::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

h3.title,
h4.title,
h5.title,
h6.title {
  font-weight: 600 !important;
  font-size: 20px;
  color: var(--title-color);
}

h3.title strong,
h4.title strong,
h5.title strong,
h6.title strong {
  font-weight: 600 !important;
  color: var(--title-color);
}

@keyframes left-move {
  50% {
    left: 0;
    width: 12px;
    height: 12px;
  }

  100% {
    left: 0;
    border-radius: 0;
    width: 50%;
    height: 100%;
  }
}

@keyframes right-move {
  50% {
    right: 0;
    width: 12px;
    height: 12px;
  }

  100% {
    right: 0;
    border-radius: 0;
    width: 50%;
    height: 100%;
  }
}

.main-title {
  text-align: center;
  margin-bottom: 70px;
}

.image-hinter {
  position: relative;
}

.image-hinter::before {
  width: 30%;
  content: "";
  position: absolute;
  top: -25px;

  background: #424242;
  height: calc(100% + 50px);
  z-index: 0;
  right: 0;
}

.image-hinter img {
  position: relative;
  z-index: 2;
  width: 93% !important;
  display: block;
  margin: auto;
}

.main-title h2 {
  position: relative;
  padding: 5px;
  width: fit-content;
  margin: auto;
  cursor: pointer;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0 auto 10px;
  font-weight: 400;
  max-width: 85%;
  color: var(--secondary-color);
}

@media screen and (max-width: 476px) {
  .main-title h2,
  .main-title p {
    max-width: 85%;
    margin: auto;
  }
}

.main-title h2::before,
.main-title h2::after {
  content: "";
  width: 12px;
  height: 12px;
  background-color: var(--main-color);
  position: absolute;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

.main-title h2::before {
  left: -30px;
}

.main-title h2::after {
  right: -30px;
}

.main-title:hover h2::before {
  z-index: -1;
  animation: left-move 0.5s linear forwards;
}

.main-title:hover h2::after {
  z-index: -1;
  animation: right-move 0.5s linear forwards;
}

.main-title:hover h2 {
  color: #fff;
  background-color: var(--main-color);
  transition-delay: 0.5s;
  z-index: 2;
}


