.ht-container {
  width: 100%;
  margin: 0 auto;
}

.ht-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 10px 20px;
  border: 1px solid currentColor;
  color: inherit;
  background: transparent;
  text-decoration: none !important;
  text-transform: uppercase;
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 2px;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}

.ht-btn:hover,
.ht-btn:focus {
  background: currentColor;
  text-decoration: none !important;
}

.ht-btn:hover span,
.ht-btn:focus span {
  color: #fff;
}

.ht-btn--white {
  color: #fff;
}

.ht-btn--white:hover,
.ht-btn--white:focus {
  background: #fff;
  border-color: #fff;
}

.ht-btn--white:hover span,
.ht-btn--white:focus span {
  color: #1a1c67;
}

.ht-btn--dark {
  color: #111;
}

.ht-btn--dark:hover,
.ht-btn--dark:focus {
  background: #111;
  border-color: #111;
}

.ht-btn--dark:hover span,
.ht-btn--dark:focus span {
  color: #fff;
}

/* Hero */
.ht-hero {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background-image: url('/images/2023/09/17/hybrid-bg.jpg');
  background-size: cover;
  background-position: center top;
}

.ht-hero__inner {
  width: min(850px, calc(100% - 32px));
  margin: 0 auto;
  padding-top: 20px;
}

.ht-hero h1 {
  margin: 0 0 26px;
  color: #fff;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.12;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: clamp(6px, .5vw, 10px);
}

.ht-hero p {
  max-width: 640px;
  margin: 0 auto 28px;
  color: #fff;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 400;
}

/* Intro */
.ht-intro {
  padding: 54px 0 62px;
  text-align: center;
}

.ht-intro__lead {
  max-width: 1200px;
  margin: 0 auto 54px;
  color: #1a1c67;
  font-size: 21px;
  line-height: 1.65;
}

.ht-intro__lead p {
  margin: 0;
}

.ht-options-title {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 800;
}

.ht-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 30px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 18px;
  color: #000000;
}

.ht-options li {
  position: relative;
}

.ht-options li + li::before {
  content: '•';
  position: absolute;
  left: -12px;
  color: #000;
}

/* Feature sections */
.ht-features {
  padding: 0 0 80px;
}

.ht-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 56px;
  margin-bottom: 92px;
}

.ht-feature:last-child {
  margin-bottom: 0;
}

.ht-feature__copy {
  text-align: center;
  padding: 0 15px;
}

.ht-feature__icon {
  display: block;
  width: 118px;
  max-width: 32vw;
  height: auto;
  margin: 0 auto 26px;
}

.ht-feature__svgicon svg {
  display: block;
  width: 100%;
  height: auto;
}

.ht-feature h2 {
  margin: 0 0 32px;
  color: #050505;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.18;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: clamp(6px, .5vw, 10px);
}

.ht-feature p {
  max-width: 580px;
  margin: 0 auto 34px;
  color: #252525;
  font-size: 16px;
  line-height: 1.55;
}

.ht-feature__media {
  margin: 0;
}

.ht-feature__media img {
  display: block;
  width: 100%;
  height: auto;
}

.ht-feature--image-left .ht-feature__media {
  order: 1;
}

.ht-feature--image-left .ht-feature__copy {
  order: 2;
}

/* FAQ */
.ht-faq {
  padding: 0 0 84px;
}

.ht-faq h2 {
  margin: 0 0 34px;
  text-align: center;
  color: #060606;
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: 1px;
}

.ht-accordion {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid #d9d9d9;
}

.ht-accordion details {
  border-bottom: 1px solid #d9d9d9;
}

.ht-accordion summary {
  position: relative;
  display: block;
  padding: 18px 38px 18px 0;
  cursor: pointer;
  color: #111;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 800;
  list-style: none;
}

.ht-accordion summary::-webkit-details-marker {
  display: none;
}

.ht-accordion summary::after {
  content: '›';
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  color: #aaa;
  font-size: 24px;
  font-weight: 300;
  transition: transform .2s ease;
}

.ht-accordion details[open] summary::after {
  transform: translateY(-50%) rotate(90deg);
}

.ht-accordion__body {
  padding: 0 58px 22px 0;
}

.ht-accordion__body p {
  margin: 0;
  color: #444;
  font-size: 16px;
  line-height: 1.55;
}

/* CTA */
.ht-contact {
  padding: 64px 0 72px;
  background: #1a1c67;
  color: #fff;
}

.ht-contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 44%) minmax(0, 56%);
  align-items: center;
  gap: 50px;
}

.ht-contact__image img {
  display: block;
  width: 100%;
  height: auto;
  padding-left: 50px;
}

.ht-contact__content {
  text-align: center;
}

.ht-contact h2 {
  margin: 0 0 28px;
  color: #fff;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.25;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: clamp(6px, .5vw, 10px);
}

.ht-contact p {
  max-width: 620px;
  margin: 0 auto 18px;
  color: #fff;
  font-size: 16px;
  line-height: 1.55;
}

.ht-contact .ht-btn {
  margin-top: 12px;
}

@media (max-width: 991px) {
  .ht-hero {
    min-height: 430px;
  }

  .ht-intro {
    padding: 42px 10px 48px;
  }

  .ht-feature {
    gap: 32px;
    margin-bottom: 72px;
  }

  .ht-contact__grid {
    gap: 44px;
  }
}@media (min-width: 992px) {}@media (min-width: 768px) and (max-width: 991px) {}@media (max-width: 767px) {@media (max-width: 767px) {
  .ht-container {
    width: 100%;
  }

  .ht-hero {
    min-height: 520px;
    background-image: url('/images/2023/09/17/hybridbg-mb.jpg');
    background-position: center top;
  }

  .ht-hero__inner {
    padding-top: 40px;
  }

  .ht-hero h1 {
    margin-bottom: 18px;
  }

  .ht-hero p {
    font-size: 16px;
    max-width: 330px;
  }

  .ht-intro__lead {
    margin-bottom: 38px;
    font-size: 16px;
    line-height: 1.55;
  }

  .ht-options {
    font-size: 14px;
    line-height: 1.9;
	padding: 0px 10px;
  }

  .ht-options li::before {
    content: '• ';
  }

  .ht-feature,
  .ht-contact__grid {
    grid-template-columns: 1fr;
  }

  .ht-feature {
    gap: 24px;
    margin-bottom: 58px;
  }

  .ht-feature--image-left .ht-feature__media,
  .ht-feature--image-left .ht-feature__copy,
  .ht-feature__copy,
  .ht-feature__media {
    order: initial;
  }

  .ht-feature--image-left .ht-feature__copy {
    order: 1;
  }

  .ht-feature--image-left .ht-feature__media {
    order: 2;
  }

  .ht-feature h2 {
    margin-bottom: 22px;
  }

  .ht-feature p {
    font-size: 16px;
    margin-bottom: 26px;
  }

  .ht-feature__icon {
    width: 92px;
    margin-bottom: 18px;
  }
.ht-accordion {
    padding: 0px 15px;
}
  .ht-faq {
    padding-bottom: 58px;
  }

  .ht-accordion summary {
    font-size: 16px;
    padding-right: 28px;
  }

  .ht-accordion__body {
    padding-right: 0;
  }

  .ht-contact {
    padding: 50px 15px 50px;
  }

  .ht-contact__grid {
    gap: 30px;
  }

.ht-contact__image img {
    padding-left: 0px;
}

  .ht-contact__image {
    order: 1;
  }

  .ht-contact__content {
    order: 2;
  }

  .ht-contact p {
    font-size: 16px;
  }
}

@media (max-width: 420px) {
  .ht-btn {
    min-height: 36px;
    padding: 9px 16px;
    font-size: 16px;
    letter-spacing: 1.6px;
  }

  .ht-hero {
    min-height: 470px;
  }

  .ht-feature h2,
  .ht-contact h2 {
    letter-spacing: 5px;
  }
}}#retrina_grand_information_14_1_0_grand_1{position:relative;  padding-left:0px !important ;padding-right:0px !important ;padding-top:0px !important ;padding-bottom:0px !important ;  padding-right: calc(1.5rem * 0.5);padding-left: calc(1.5rem * 0.5);max-width:initial; width:calc(100vw); left: calc(50%); right: calc(50%); margin-left:calc(-50vw); margin-right:calc(-50vw); } #retrina_grand_information_14_1_0_grand_1:after{width:100vw;height:100%;position:absolute;top:0;left:50%;right:50%;margin-left:-50vw;margin-right:-50vw;z-index:-1;} 