header {
  background: #242424;
}

header .header {
  padding-top: 75px;
  padding-bottom: 147px;
}

header .header .header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .header .header-top .header-top_contact {
  color: #ffff;
  background: #ff6e86;
  font-family: Inter;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 10px;
  border-radius: 10px;
}

header .header .header-top .header-top_logo {
  margin-bottom: 51px;
}

header .header .header-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

header .header .header-content .header-content_left {
  padding-top: 81px;
  padding-right: 100px;
}

header .header .header-content .header-content_left .header-left_title {
  color: #fff;
  font-family: Inter;
  font-size: 100px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 17px;
}

header .header .header-content .header-content_left .header-left_title span {
  color: #ff6e86;
}

header .header .header-content .header-content_left .header-left_text {
  color: #fff;
  font-family: Inter;
  font-size: 30px;
  font-weight: 600;
  line-height: 36px;
  letter-spacing: 0em;
  text-align: justified;
  display: block;
}

header .header .header-content .header-content_left .header-left_btn {
  align-items: center;
  margin-top: 75px;
}

header .header .header-content .header-content_left .header-left_btn .start {
  border-radius: 10px;
  background: #757575;
  color: #fff;
  font-family: Inter;
  font-size: 50px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 10px 20px;
  margin-right: 24px;
}

header .header .header-content .header-content_right .header-right_image {
  width: 768px;
  height: 626px;
}

.header-left_btn.header-left_btn_mobile {
  display: none;
}

.static-txt {
  color: #fff;
  font-family: Inter;
  font-size: 100px;
  font-weight: 700;
  line-height: 97px;
  letter-spacing: 0em;
  text-align: left;
}

.dynamic-txts {
  height: 90px;
  line-height: 90px;
  overflow: hidden;
}

.dynamic-txts li {
  list-style: none;
  color: #fc6d6d;
  font-size: 52px;
  font-weight: 500;
  position: relative;
  top: 0;
  animation: slide 12s steps(4) infinite;
}

@keyframes slide {
  100% {
    top: -360px;
  }
}

.dynamic-txts li span {
  position: relative;
  margin: 5px 0;
  line-height: 90px;
  font-weight: 700;
}

.dynamic-txts li span::after {
  content: "";
  position: absolute;
  left: 0;
  height: 120%;
  width: 100%;
  background: #242424;
  border-left: 2px solid #fc6d6d;
  animation: typing 3s steps(10) infinite;
}

@keyframes typing {
  40%,
  60% {
    left: calc(100% + 30px);
  }
  100% {
    left: 0;
  }
}
