.hg-about-section {
  width: 100%;
  padding: 70px 20px;
  background: #fff;
  overflow: hidden;
}

.hg-about-section * {
  box-sizing: border-box;
}

.hg-about-wrap {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 600px 1fr;
  gap: 80px;
  align-items: center;
}

.hg-about-media {
  position: relative;
  height: 590px;
}

.hg-about-img {
  position: absolute;
  overflow: hidden;
  background: #eee;
}

.hg-about-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hg-about-img-main {
  left: 0;
  top: 0;
  width: 390px;
  height: 570px;
  border-radius: 105px;
}

.hg-about-img-small {
  right: 0;
  bottom: 0;
  width: 345px;
  height: 455px;
  border-radius: 105px;
  border: 14px solid #fff;
  z-index: 2;
}

.hg-about-badge {
  position: absolute;
  top: 0;
  right: 0;
  width: 310px;
  min-height: 112px;
  padding: 18px 22px;
  border: 2px solid #124735;
  border-radius: 16px;
  background: #f8fffb;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 4;
}

.hg-badge-icon {
  width: 70px;
  height: 70px;
  flex: 0 0 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 46px;
}

.hg-about-badge strong {
  display: block;
  color: #285c27;
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
  white-space: nowrap;
}

.hg-about-badge p {
  margin: 8px 0 0;
  color: #285c27;
  font-size: 22px;
  line-height: 1.1;
  font-weight: 700;
}

.hg-about-content {
  padding-top: 10px;
}

.hg-about-label {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
}

.hg-about-label span {
  color: #f0522c;
  font-size: 17px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.hg-about-label i {
  display: block;
  width: 68px;
  height: 2px;
  background: #f0522c;
}

.hg-about-content h2 {
  margin: 0 0 30px;
  color: #143e2f;
  font-size: 76px;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -1.5px;
  text-transform: uppercase;
}

.hg-about-desc {
  max-width: 670px;
  margin: 0 0 28px;
  color: #687080;
  font-size: 21px;
  line-height: 1.55;
}

.hg-about-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 24px;
}

.hg-about-item-icon {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  border-radius: 50%;
  background: #eafaf3;
  color: #15846a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 800;
}

.hg-about-item h3 {
  margin: 0 0 7px;
  color: #1f2630;
  font-size: 19px;
  line-height: 1.25;
  font-weight: 900;
}

.hg-about-item p {
  margin: 0;
  color: #687080;
  font-size: 17px;
  line-height: 1.45;
}

.hg-about-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 230px;
  height: 64px;
  margin-top: 16px;
  padding: 0 34px;
  border-radius: 8px;
  background: #10513e;
  color: #fff !important;
  font-size: 20px;
  font-weight: 900;
  text-decoration: none !important;
  box-shadow: 0 8px 14px rgba(0, 0, 0, .16);
  transition: .25s ease;
}

.hg-about-btn:hover {
  background: #0c4434;
  transform: translateY(-2px);
}

.hg-about-section .hg-about-media,
.hg-about-section .hg-about-content {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}

.hg-about-section.is-visible .hg-about-media,
.hg-about-section.is-visible .hg-about-content {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1200px) {
  .hg-about-wrap {
    grid-template-columns: 560px 1fr;
    gap: 50px;
  }

  .hg-about-media {
    height: 560px;
  }

  .hg-about-img-main {
    width: 360px;
    height: 540px;
  }

  .hg-about-img-small {
    width: 320px;
    height: 430px;
  }

  .hg-about-badge {
    width: 295px;
  }

  .hg-about-content h2 {
    font-size: 64px;
  }
}

@media (max-width: 991px) {
  .hg-about-wrap {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .hg-about-media {
    width: 600px;
    max-width: 100%;
    margin: 0 auto;
  }

  .hg-about-content {
    width: 760px;
    max-width: 100%;
    margin: 0 auto;
  }
}

/* FIX RESPONSIVE ABOUT MOBILE */
@media (max-width: 768px){

  .hg-about-section{
    padding: 45px 16px !important;
    overflow: hidden !important;
  }

  .hg-about-wrap{
    display: block !important;
    max-width: 100% !important;
  }

  .hg-about-media{
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 18px !important;
    margin: 0 0 32px !important;
  }

  .hg-about-img,
  .hg-about-img-main,
  .hg-about-img-small,
  .hg-about-badge{
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .hg-about-badge{
    order: 1 !important;
    min-height: auto !important;
    padding: 16px !important;
    border-radius: 14px !important;
  }

  .hg-about-img-main{
    order: 2 !important;
    height: 360px !important;
    border-radius: 36px !important;
  }

  .hg-about-img-small{
    order: 3 !important;
    height: 300px !important;
    border: 0 !important;
    border-radius: 36px !important;
  }

  .hg-about-content{
    width: 100% !important;
    max-width: 100% !important;
    padding-top: 0 !important;
  }

  .hg-about-content h2{
    font-size: 40px !important;
    line-height: 1.12 !important;
  }

  .hg-about-desc{
    font-size: 16px !important;
  }

  .hg-about-desc br{
    display: none !important;
  }

  .hg-about-btn{
    width: 100% !important;
  }
}