.hero-section {
  color: #fff;
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  border-radius: 0px 0px 12px 12px;
  background: #1A131A;
}
@media (max-width: 767px) {
  .hero-section {
    padding: 50px 0;
    padding-bottom: 430px;
  }
}
.hero-section .hero-image {
  position: absolute;
  right: 80px;
  z-index: 0;
  height: 100%;
  width: 100%;
  bottom: -1px;
  max-width: 45%;
}
@media (max-width: 1200px) {
  .hero-section .hero-image {
    bottom: 250px;
    right: 0;
  }
}
@media (max-width: 767px) {
  .hero-section .hero-image {
    max-width: 400px;
    bottom: -1px;
  }
}
.hero-section .hero-image img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
  width: 100%;
  -o-object-position: bottom;
     object-position: bottom;
}
.hero-section .hero-wrapper .hero-left h1 {
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 25px;
  line-height: 1.1;
  position: relative;
  max-width: 15ch;
}
@media (min-width: 992px) {
  .hero-section .hero-wrapper .hero-left h1 {
    font-size: 50px;
    margin-bottom: 40px;
  }
}
@media (min-width: 1600px) {
  .hero-section .hero-wrapper .hero-left h1 {
    font-size: 80px;
  }
}
.hero-section .hero-wrapper .hero-left h1:after {
  position: absolute;
  content: "";
  background-image: url(../../images/textline.svg);
  width: 38%;
  height: 40px;
  background-size: contain;
  top: 35px;
  right: 130px;
  background-repeat: no-repeat;
}
@media (min-width: 992px) {
  .hero-section .hero-wrapper .hero-left h1:after {
    top: 50px;
  }
}
@media (min-width: 1600px) {
  .hero-section .hero-wrapper .hero-left h1:after {
    top: 70px;
  }
}
.hero-section .hero-wrapper .hero-left p {
  font-size: 17px;
}
.hero-section .hero-wrapper .hero-left .btn {
  min-width: 180px;
  margin-bottom: 15px;
}
.btn-primary {
  padding: 0px 6px;
 
}
.hero-section .hero-wrapper .hero-left .btnswrap {
  display: block;
  padding: 15px 0;
  gap: 80px;
}
@media (min-width: 768px) {
  .hero-section .hero-wrapper .hero-left .btnswrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (min-width: 1600px) {
  .hero-section .hero-wrapper .hero-left .btnswrap {
    padding: 35px 0 70px;
  }
}
.hero-section .features {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
}
.hero-section .features .feature-box {
  padding: 20px 10px;
  margin-top: 30px;
  background-color: #977897;
  border-radius: 10px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(33.33% - 16.66px);
          flex: 0 0 calc(33.33% - 16.66px);
  max-width: calc(33.33% - 16.66px);
}
@media (min-width: 768px) {
  .hero-section .features .feature-box {
    padding: 10px 25px;
  }
}
.hero-section .features .feature-box img {
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .hero-section .features .feature-box img {
    padding-top: 30px;
    margin-bottom: 0;
  }
}
.hero-section .features .feature-box h2 {
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 12px;
}
@media (min-width: 992px) {
  .hero-section .features .feature-box h2 {
    font-size: 50px;
    margin-bottom: 8px;
  }
}
@media (min-width: 1600px) {
  .hero-section .features .feature-box h2 {
    font-size: 80px;
  }
}
.hero-section .features .feature-box span {
  font-size: 15px;
  line-height: 1.2;
  display: block;
}
@media (min-width: 768px) {
  .hero-section .features .feature-box span {
    font-size: 17px;
  }
}

.floatingbox {
  position: fixed;
  right: 40px;
  bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 60px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  z-index: 3;
}
@media (max-width: 991.98px) {
  .floatingbox {
    right: 15px;
    max-width: 50px;
    gap: 10px;
  }
}
.floatingbox a {
  display: block;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media (hover: hover) {
  .floatingbox a:hover {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}