/*----------------------------------------*/
/*  - Hero
/*----------------------------------------*/
.hero-section {
  position: relative;
}
.hero-container {
  width: 100%;
  max-width: 1250px;
  margin: auto;
  padding: 0 15px;
  margin-bottom: 0;
  margin-top: 0px;
}
.hero-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 20px -15px 0;
  gap: 30px 0;
}
@media only screen and (max-width: 767px) {
  .hero-row {
    flex-direction: column;
    align-items: flex-start;
    margin: 80px -15px 0;
  }
}
@media only screen and (max-width: 575px) {
  .hero-row {
    flex-direction: column;
    align-items: flex-start;
    margin: 100px -15px 0;
  }
}
.hero-row > .col {
  padding: 0 15px;
  flex: 1 0 50%;
  max-width: 50%;
}

@media (min-width: 1200px) {
  .hero-row > .text-col {
    max-width: 42%;
  }
  .hero-row > .image-col {
    max-width: 62%;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .hero-row > .text-col {
    max-width: 58%;
  }
  .hero-row > .image-col { 
    max-width: 42%;
  }
}
@media only screen and (max-width: 767px) {
  .hero-row > .col {
    flex: 1 0 100%;
    max-width: 100%;
  }
}
@media only screen and (max-width: 991px), only screen and (max-width: 767px) {
  .hero-row > .col:nth-child(2) {
    align-self: flex-end;
  }
}
@media only screen and (min-width: 1550px) {
  .hero-content {
    margin-left: -20px;
  }
}
@media only screen and (max-width: 991px), only screen and (max-width: 767px) {
  .hero-content {
    padding-top: 30px;
  }
}
.hero-row.row-reverse {
  flex-direction: row-reverse;
}
.hero-row.row-reverse .hero-image img {
  margin-right: auto;
}
.hero-content > h1 {
  margin-bottom: 35px;
  color: var(--light-color);
}
@media only screen and (min-width: 1200px) and (max-width: 1549px) {
  .hero-content > h1 {
    font-size: 56px !important;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-content > h1 {
    font-size: 46px !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
  .hero-content > h1 {
    font-size: 36px !important;
    letter-spacing: 2px;
    margin-bottom: 20px;
  }
}
.hero-content > p {
  margin-bottom: 34px;
  color: var(--light-color);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-content > p {
    font-size: 14px !important;
  }
}
@media only screen and (max-width: 767px) {
  .hero-content > p {
    font-size: 17px !important;
  }
}
.hero-image {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-image {
    width: 75%;
    margin-left: auto;
    margin-right: auto; 
  }
}
.hero-image img {
  margin-left: auto;
  display: block;
}
.hero-button {
  display: flex;
  gap: 0 10px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-button {
    gap: 0;
  }
}
@media only screen and (max-width: 767px) {
  .hero-button .btn {
    padding: 10px 25px;
  }
}
.hero-bg {
  background: linear-gradient(90deg, #1236D7 0%, #10209F 100%);
  background-position: bottom;
  background-repeat: no-repeat;
  height: 870px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-bg {
    height: 710px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-bg {
    height: 550px;
  }
}
@media only screen and (max-width: 991px), only screen and (max-width: 767px) {
  .hero-bg {
    height: auto;
  }
}
.hero-bg-line {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 991px), only screen and (max-width: 767px) {
  .hero-bg-line {
    background: linear-gradient(90deg, #1236D7 0%, #10209F 100%);
    position: relative;
  }
}

.play-btn-text {
  color: var(--light-color);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .play-btn-text {
    font-size: 14px;
  }
}





