.hero-sec {
  position: relative;
  height: 675px;
  width: 100%;
  display: flex;
}
.hero-sec .hero-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--white);
  opacity: 0;
  z-index: 1;
  visibility: hidden;
  transform: translateY(100%);
  transition: all 0.3s ease-in-out;
}
.hero-sec .hero-iframe.active {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}
.hero-sec .hero-iframe .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 118px;
}
.hero-sec .hero-iframe-wrap {
  width: 100%;
  height: calc(100% - 118px);
}
.hero-sec .hero-iframe-wrap iframe {
  width: 100%;
  height: 100%;
}
.hero-sec .left-sec,
.hero-sec .right-sec {
  width: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: all .3s ease-in-out;
}
.hero-sec picture {
  height: 100%;
  display: flex;
  width: 100%;
}
.hero-sec picture img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}
.hero-sec .left-sec .btnbox {
  position: absolute;
  left: 140px;
  bottom: 107px;
}
.hero-sec .left-sec .btnbox:hover .btntag {
  margin-left: 45px;
} 
.hero-sec .right-sec .btnbox {
  position: absolute;
  right: 140px;
  bottom: 107px;
}
.hero-sec .btnbox {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-sec .btnbox .btntag {
  margin-left: 25px;
  margin-bottom: -15px;
  z-index: 1;
  font-weight: bold;
  transition: all .3s ease-in-out;
}
.hero-sec .btnbox a {
  font-size: 54px;
  padding: 0 58px 0 47px;
  border: 2px solid var(--white);
  font-weight: bold;
  letter-spacing: normal;
}
.hero-sec .btnbox a:hover {
  padding: 0 170px 0 97px;
}
.hero-sec .btnbox a::after {
  position: absolute;
  width: 35px;
  height: 35px;
  right: 39px;
}
.hero-sec .right-sec .btnbox {
  align-items: flex-end;
}
.hero-sec .right-sec .btnbox .btntag {
  margin: 0 65px -15px 0;
}
.hero-sec .right-sec .btnbox a:hover {
  padding: 0 106px 0 132px;
}
.hero-sec .right-sec .btnbox a::after {
  position: absolute;
  width: 35px;
  height: 35px;
  left: 39px;
  right: auto;
  transform: rotate(180deg);
}

@media (min-width: 1800px) {
}

@media (min-width: 1600px) and (max-width: 1699px) {
}

@media (min-width: 1231px) and (max-width: 1599px) {
  .hero-sec .btnbox a {
    font-size: 44px;
  }
  .hero-sec .btnbox a:hover {
    padding: 0 90px 0 70px;
  }

  .hero-sec .left-sec .btnbox {
    bottom: 60px;
  }

  .hero-sec .right-sec .btnbox {
    bottom: 60px;
  }
}

@media (min-width: 992px) and (max-width: 1230px) {
  .hero-sec .right-sec .btnbox {
    right: 40px;
  }
  .hero-sec .left-sec .btnbox {
    left: 40px;
  }
  .hero-sec .btnbox a {
    font-size: 44px;
  }
  .hero-sec .btnbox a:hover {
    padding: 0 70px 0;
  }

}

@media (max-width: 991px) {
  .hero-sec {
    height: auto;
    flex-direction: column;
  }
  .hero-sec .left-sec, .hero-sec .right-sec {
    width: 100%;
  }
  .hero-sec .btnbox a::after {
    right: 22px;
  }
  .hero-sec .right-sec {
    height: 550px;
  }
  .hero-sec .btnbox {
    bottom: 48px;
    align-items: center;
  }
  .hero-sec .right-sec .btnbox {
    align-items: center;
  }
  .hero-sec .right-sec .btnbox .btntag {
    margin: 0;
  }
  .hero-sec .right-sec.active .btnbox a {
    background-color: var(--theme-color-secondary);
    padding: 0 58px 0 47px;
    width: auto;
    min-width: 351px;
  } 
  .hero-sec .left-sec.active .btnbox a {
    background-color: var(--theme-color-primary);
    padding: 0 58px 0 47px;
    width: auto;
    min-width: 351px;
  }
  .hero-sec .btnbox a {
    font-size: 30px;
    height: 68px;
    min-width: 0;
    background-color: #A8A8A8;
    width: calc(100% - 70px);
    margin: 0 auto;
    padding: 0;
    transition: all .3s ease-in-out;
  }
  .hero-sec .left-sec.active .btnbox a::after {
    opacity: 1;
    visibility: visible;
  }
  .hero-sec .right-sec.active .btnbox a::after {
    opacity: 1;
    visibility: visible;
  }
  .hero-sec .btnbox a::after {
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease-in-out;
  }
  .hero-sec .btnbox a:hover {
    padding: 0 62px;
  }
  .hero-sec .btnbox a:after:hover {
    display: none;
  }
  .hero-sec .right-sec .btnbox {
    bottom: 0;
    top: 25px;
    right: 0;
    width: 100%;
  }
  .hero-sec .left-sec.active .btnbox .btntag {
    opacity: 1;
    visibility: visible;
  }
  .hero-sec .right-sec.active .btnbox .btntag {
    opacity: 1;
    visibility: visible;
  }
  .hero-sec .btnbox .btntag {
    font-size: 18px;
    height: 32px;
    padding: 0 28px;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease-in-out;
  }
  .hero-sec .left-sec {
    height: 550px;
    background-position: -240px center;
  }
  .hero-sec .left-sec .btnbox {
    left: 0;
    width: 100%;
  }
  .hero-sec .left-sec.active picture, 
  .hero-sec .right-sec.active picture {
    padding: 0;
    border-radius: 0;
  }
  .hero-sec picture {
    padding: 20px;
    border-radius: 15px;
    overflow: hidden;
    transition: all .3s ease-in-out;
  }
  .hero-sec .left-sec .btnbox a:hover ,
  .hero-sec .right-sec .btnbox a:hover {
    padding: 0;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .hero-sec .left-sec {
    background-position: center;
  }
  .image-text-sec {
    padding: 60px 0;
  }
  .image-text-sec-wrap {
    gap: 20px;
  }
  
  .hero-sec .btnbox a::after {
    right: 19px;
  }
}

@media (max-width: 767px) {

}

@media (max-width: 499px) {
}
