.btn-share {
  padding: 16px 32px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  color: #000;
  background: none;
  border: none;
  outline: none;
  overflow: hidden;
  cursor: pointer;
  filter: drop-shadow(0 2px 8px rgba(39, 94, 254, 0.32));
  transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  display: flex;
}

.btn-share::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: var(--btn-color);
  border-radius: 24px;
  transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.btn-share .btn-text,
.btn-share .btn-icon {
  display: inline-flex;
  vertical-align: middle;
  transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.btn-share .btn-text {
  transition-delay: 0.05s;
}

.btn-share .btn-icon {
  margin-left: 8px;
  transition-delay: 0.1s;
}

.btn-share .social-icons {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  margin: 0;
  padding: 0;
  list-style-type: none;
  transform: translateY(-50%);
}

.btn-share .social-icons li {
  flex: 1;
}

.btn-share .social-icons li a {
  display: inline-flex;
  vertical-align: middle;
  transform: translateY(55px);
  transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.btn-share .social-icons li a:hover {
  opacity: 0.5;
}

.btn-share:hover::before {
  transform: scale(1.2);
}

.btn-share:hover .btn-text,
.btn-share:hover .btn-icon {
  transform: translateY(-55px);
  color: #000;
}

.btn-share:hover .social-icons li a {
  transform: translateY(0);
}

.btn-share:hover .social-icons li:nth-child(1) a {
  transition-delay: 0.15s;
}

.btn-share:hover .social-icons li:nth-child(2) a {
  transition-delay: 0.2s;
}

.btn-share:hover .social-icons li:nth-child(3) a {
  transition-delay: 0.25s;
}

.btn-share:hover .social-icons li:nth-child(4) a {
  transition-delay: 0.3s;
}



/* Basic styling for the dropdown */
.anchor-tagging-nav {
  left: 0;
  right: 0;
  border-bottom: solid 1px rgba(0, 0, 0, 0.1);
  border-top: solid 1px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  transition: all 0.3s ease;
}

.anchor-tagging-nav.sticky {
  position: sticky;
  z-index: 9999;
  background-color: var(--White);
  top: 0;
  width: 100%;
  left: 0;
}

.anchor-tagging-nav.sticky.scroll-up {
  top: 150px;
}

.anchor-tagging-nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.anchor-tagging-nav .container .share-btn {
  color: #000;
  font-size: 16px;
  line-height: 1;
  display: block;
  background-image: url(../../assets/images/share-icn.svg);
  background-repeat: no-repeat;
  background-position: right center;
  padding: 5px 50px 5px 0px;
}

.anchor_nav {
  position: relative;
  display: flex;
  width: 100%;
  height: 30px;
  z-index: 100;
  margin: 0;
  padding: 0;
  list-style-type: none;
  gap: 16px;
}

.anchor_nav li a {
  color: var(--black);
  padding: 2px;
  display: block;
  text-decoration: none;
  font-size: var(--fs-16);
  font-weight: var(--font-weight-500);
}

.anchor_nav li a.active,
.anchor_nav li a:hover {
  color: var(--red);
}

.select-trigger,
.custom-options {
  display: none;
}

/* Mobile View */
/* @media (max-width: 767px) {

} */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  .anchor_nav {
    display: none !important;
  }

  .select-trigger {
    display: block !important;
    background: #fff url(../components/anchor-tagging-nav/images/red-bottom-dropdown-arrow.svg) no-repeat 96% center;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 10px;
    cursor: pointer;
    position: relative;
    z-index: 10;
    font-weight: var(--font-weight-500);
    font-size: var(--fs-16);
    border-radius: 8px;
  }

  .select-trigger.active {
    color: var(--red);
  }

  .custom-options {
    display: none;
    position: absolute;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    width: 93%;
    z-index: 9;
    max-height: 300px;
    overflow-y: auto;
    font-size: var(--fs-16);
    margin: 0px;
    padding: 0px;
    list-style-type: none;
    font-weight: var(--font-weight-500);
    background-color: #F2F2F2;
    padding-bottom: 10px;
  }

  .custom-options li {
    padding: 6px 15px;
    cursor: pointer;
  }

  .custom-options li a {
    color: var(--black);
    font-size: var(--fs-14);
  }

  .custom-options li a.active {
    color: var(--red);
  }

  .custom-options li:hover {
    background: #eee;
  }
}

@media (min-width: 320px) and (max-width: 767px) {
  .anchor_nav {
    display: none !important;
  }

  .select-trigger {
    display: block !important;
    background: #fff url(../components/anchor-tagging-nav/images/red-bottom-dropdown-arrow.svg) no-repeat 96% center;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 10px;
    cursor: pointer;
    position: relative;
    z-index: 10;
    font-weight: var(--font-weight-500);
    font-size: var(--fs-16);
    border-radius: 8px;
  }

  .select-trigger.active {
    color: var(--red);
  }

  .custom-options {
    display: none;
    position: absolute;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    width: 93%;
    z-index: 9;
    max-height: 300px;
    overflow-y: auto;
    font-size: var(--fs-16);
    margin: 0px;
    padding: 0px;
    list-style-type: none;
    font-weight: var(--font-weight-500);
    background-color: #F2F2F2;
    padding-bottom: 10px;
  }

  .custom-options li {
    padding: 6px 15px;
    cursor: pointer;
  }

  .custom-options li a {
    color: var(--black);
    font-size: var(--fs-14);
  }

  .custom-options li a.active {
    color: var(--red);
  }

  .custom-options li:hover {
    background: #eee;
  }
}

/* Delete this */
#header {
  height: 150px;
  background-color: brown;
  position: fixed;
  width: 100%;
  top: 0px;
  left: 0px;
  z-index: 9998;
}

#header.nav-up {
  transition: 0.5s;
  top: -170px;
}

#header.nav-down {
  transition: 0.5s;
  top: 0px;
}

.breadcrumb-container {
  padding: 20px 0px;
  border-bottom: 1px solid #eee;
}

.breadcrumb-container .breadcrumbs {
  font-size: 14px;
  color: #888;
}

.breadcrumb-container .breadcrumbs .current {
  color: var(--black);
}

.breadcrumb-container .breadcrumbs a {
  text-decoration: none;
  color: #888;
  margin-right: 5px;
}

.breadcrumb-container .breadcrumbs a span {
  margin: 0 5px;
  color: #ccc;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .breadcrumb-container .breadcrumbs {
    font-size: var(--fs-14);
  }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  .breadcrumb-container .breadcrumbs {
    font-size: 12px;
  }
}

@media (min-width: 320px) and (max-width: 767px) {
  .breadcrumb-container {
    display: block;
  }

  .breadcrumb-container .breadcrumbs {
    font-size: 11px;
  }
}

#inner-Product-banner {
  position: relative;
  height: auto;
  overflow: hidden;
  line-height: 0px;
  border-radius: 16px;
  width: 90%;
  margin: auto;
  margin-top: 170px;
  transition: 1s;
}

#inner-Product-banner .container {
  position: absolute;
  margin: auto;
  left: 0px;
  right: 0px;
  top: 0px;
  height: 100%;
  display: flex;
  align-items: end;
  padding-bottom: 60px;
}

#inner-Product-banner .container .bannerText {
  width: 640px;
  max-width: 100%;
}

#inner-Product-banner .container .bannerText h1 {
  font-size: var(--fs-72);
  color: var(--White);
  line-height: 1;
  margin: 0px;
  font-weight: var(--font-weight-500);
  margin-bottom: 20px;
}

#inner-Product-banner .container .bannerText .bannerDesc {
  font-size: var(--fs-24);
  color: var(--White);
  margin: 0px;
  line-height: 1.2;
  font-weight: var(--font-weight-500);
}

#inner-Product-banner.banner_active {
  width: 98%;
}

/* res */
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  #inner-Product-banner .container .bannerText {
    width: 580px;
    padding: 0px 40px;
  }

  #inner-Product-banner .container .bannerText h1 {
    font-size: var(--fs-56);
  }

  #inner-Product-banner .container .bannerText .bannerDesc {
    font-size: var(--fs-18);
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  #inner-Product-banner .container .bannerText {
    width: 500px;
  }

  #inner-Product-banner .container .bannerText h1 {
    font-size: var(--fs-56);
  }

  #inner-Product-banner .container .bannerText .bannerDesc {
    font-size: var(--fs-18);
  }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  #inner-Product-banner .container {
    padding-bottom: 20px;
  }

  #inner-Product-banner .container .bannerText h1 {
    font-size: var(--fs-46);
  }

  #inner-Product-banner .container .bannerText .bannerDesc {
    font-size: var(--fs-16);
  }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  #inner-Product-banner .container {
    padding-bottom: 20px;
  }

  #inner-Product-banner .container .bannerText h1 {
    font-size: var(--fs-46);
  }

  #inner-Product-banner .container .bannerText .bannerDesc {
    font-size: var(--fs-16);
  }
}

@media (min-width: 320px) and (max-width: 767px) {
  #inner-Product-banner .container {
    padding-bottom: 20px;
  }

  #inner-Product-banner .container .bannerText h1 {
    font-size: var(--fs-46);
  }

  #inner-Product-banner .container .bannerText .bannerDesc {
    font-size: var(--fs-16);
  }
}

.inner_intro_text_wrp {
  padding: 60px 0px;
}

.inner_intro_text_wrp .container .inner_intro_lhs .common_tile {
  font-size: 32px;
  line-height: 1.3;
}

.inner_intro_text_wrp .container .inner_intro_rhs {
  padding-left: 45px;
}

.inner_intro_text_wrp .container .inner_intro_rhs p {
  font-size: 16px;
  line-height: 24px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .inner_intro_text_wrp .container .inner_intro_lhs .common_tile {
    font-size: 28px;
  }

  .inner_intro_text_wrp .container .inner_intro_rhs {
    padding-left: 16px;
  }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  .inner_intro_text_wrp {
    padding: 40px 0px;
  }

  .inner_intro_text_wrp .container .inner_intro_rhs {
    padding-left: 0px;
  }

  .inner_intro_text_wrp .container .inner_intro_lhs .common_tile {
    font-size: 24px;
    line-height: 1.3;
  }

  .inner_intro_text_wrp .container .inner_intro_rhs p {
    font-size: 14px;
    line-height: 20px;
  }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  .inner_intro_text_wrp {
    padding: 40px 0px;
  }

  .inner_intro_text_wrp .container .inner_intro_rhs {
    padding-left: 0px;
  }

  .inner_intro_text_wrp .container .inner_intro_lhs .common_tile {
    font-size: 22px;
    line-height: 1.3;
  }

  .inner_intro_text_wrp .container .inner_intro_rhs p {
    font-size: 14px;
    line-height: 20px;
  }
}

@media (min-width: 320px) and (max-width: 767px) {
  .inner_intro_text_wrp {
    padding: 40px 0px;
  }

  .inner_intro_text_wrp .container .inner_intro_rhs {
    padding-left: 0px;
  }

  .inner_intro_text_wrp .container .inner_intro_lhs .common_tile {
    font-size: 22px;
    line-height: 1.3;
  }

  .inner_intro_text_wrp .container .inner_intro_rhs p {
    font-size: 14px;
    line-height: 20px;
  }
}

.info_numb_col4_wrp .container .infoNos {
  border-radius: 0px;
  border: none;
  padding: 0px;
  position: relative;
  display: block;
  height: auto;
  flex-direction: inherit;
  justify-content: inherit;
}

.info_numb_col4_wrp .container .infoNos:hover {
  box-shadow: none !important;
}

.info_numb_col4_wrp .container .infoNos h3 {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  letter-spacing: -0.2rem;
  font-size: 70px;
}

.info_numb_col4_wrp .container .infoNos p {
  font-size: var(--fs-20);
  line-height: 1.3;
  font-weight: var(--font-weight-500);
  color: var(--black);
  margin: 10px 0px 0px;
  letter-spacing: -0.02rem;
}

@media (min-width: 1600px) and (max-width: 1919px) {
  .info_numb_col4_wrp .container .infoNos h3 {
    font-size: 65px;
  }

  .info_numb_col4_wrp .container .infoNos p {
    font-size: 18px;
  }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .info_numb_col4_wrp .container .infoNos h3 {
    font-size: 65px;
  }

  .info_numb_col4_wrp .container .infoNos p {
    font-size: 18px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .info_numb_col4_wrp .container .infoNos h3 {
    font-size: 60px;
  }

  .info_numb_col4_wrp .container .infoNos p {
    font-size: 18px;
  }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  .pt-50 {
    padding-top: 30px;
  }

  .pb-50 {
    padding-bottom: 30px;
  }

  .info_numb_col4_wrp .container .infoNos h3 {
    font-size: 50px;
  }

  .info_numb_col4_wrp .container .infoNos p {
    font-size: 15px;
  }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  .pt-50 {
    padding-top: 30px;
  }

  .pb-50 {
    padding-bottom: 30px;
  }

  .info_numb_col4_wrp .container .infoNos {
    margin-top: 20px;
  }

  .info_numb_col4_wrp .container .infoNos h3 {
    font-size: 50px;
  }

  .info_numb_col4_wrp .container .infoNos p {
    font-size: 15px;
  }
}

@media (min-width: 320px) and (max-width: 767px) {
  .pt-50 {
    padding-top: 30px;
  }

  .pb-50 {
    padding-bottom: 30px;
  }

  .info_numb_col4_wrp .container .infoNos {
    margin-top: 20px;
  }

  .info_numb_col4_wrp .container .infoNos h3 {
    font-size: 40px;
  }

  .info_numb_col4_wrp .container .infoNos p {
    font-size: 15px;
  }
}

/*  */