.hc-container {
  width: 100%;
  margin: 0 auto;
}

.hc-container--narrow {
  width: min(1200px, calc(100% - 32px));
}

.hc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 25px;
  border: 1px solid currentColor;
  color: inherit;
  background: transparent;
  text-decoration: none !important;
  text-transform: uppercase;
  font-size: 18px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 2px;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}

.hc-btn:hover,
.hc-btn:focus {
  background: currentColor;
  text-decoration: none !important;
}

.hc-btn:hover span,
.hc-btn:focus span {
  color: #fff;
}

.hc-btn--white {
  color: #fff;
}

.hc-btn--white:hover,
.hc-btn--white:focus {
  background: #fff;
  border-color: #fff;
}

.hc-btn--white:hover span,
.hc-btn--white:focus span {
  color: #000;
}

.hc-btn--dark {
  color: #111;
}

.hc-btn--dark:hover,
.hc-btn--dark:focus {
  background: #111;
  border-color: #111;
}

.hc-btn--dark:hover span,
.hc-btn--dark:focus span {
  color: #fff;
}

/* Hero comparison slider */
.hc-compare-hero {
  --hc-position: 50%;
  position: relative;
  min-height: 800px;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  background: #203c72;
}

.hc-compare-hero__layer {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  pointer-events: none;
}

.hc-compare-hero__layer--red {
  background-image: url('/images/redbg.jpeg');
  z-index: 0;
}

.hc-compare-hero__layer--blue {
  background-image: url('/images/bluebg.jpeg');
  z-index: 1;
  clip-path: inset(0 0 0 var(--hc-position));
}

.hc-compare-hero__content {
  position: relative;
  z-index: 4;
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 84px 0 76px;
  pointer-events: none;
}

.hc-compare-hero__icon {
  width: 120px;
  max-width: 24vw;
  height: auto;
  margin: 0 auto 20px;
  display: block;
  pointer-events: none;
}

.hc-compare-hero h1 {
  max-width: 980px;
  margin: 0 0 54px;
  color: #fff;
  font-size: clamp(30px, 4.6vw, 54px);
  line-height: 1.12;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: clamp(5px, .5vw, 10px);
}

.hc-compare-hero p {
  max-width: 1200px;
  margin: 0 auto 56px;
  color: #fff;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;
}

.hc-compare-hero .hc-btn {
  pointer-events: auto;
}

.hc-compare-hero__label {
  position: absolute;
  z-index: 5;
  top: 50px;
  padding: 10px 18px;
  color: #fff;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.4);
  font-size: 16px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  pointer-events: none;
}

.hc-compare-hero__label--left {
  left: 18px;
}

.hc-compare-hero__label--right {
  right: 18px;
}

.hc-compare-hero__divider {
  position: absolute;
  z-index: 6;
  top: 0;
  bottom: 0;
  left: var(--hc-position);
  width: 2px;
  background: rgba(255,255,255,.76);
  transform: translateX(-1px);
  pointer-events: none;
}

.hc-compare-hero__divider::before {
  content: none;
}

.hc-compare-hero__handle {
  position: absolute;
  z-index: 10;
  top: calc(20% - 92px);
  left: var(--hc-position);
  min-width: 66px;
  min-height: 48px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
  text-align: center;
  letter-spacing: 4px;
  text-shadow: 0 2px 8px rgba(0,0,0,.25);
  cursor: ew-resize;
  transform: translate(-50%, -50%);
  touch-action: none;
  user-select: none;
}

.hc-compare-hero__handle span {
  display: block;
  pointer-events: none;
}

.hc-compare-hero__handle:focus {
  outline: 2px solid rgba(255,255,255,.9);
  outline-offset: 4px;
}

.hc-compare-hero__handle.is-dragging {
  cursor: grabbing;
}

/* Intro */
.hc-intro {
  padding: 70px 0 110px;
  text-align: center;
}

.hc-intro p {
  max-width: 1100px;
  margin: 0 auto;
  color: #000;
  font-size: 16px;
  line-height: 1.65;
}

.hc-intro p + p {
  margin-top: 26px;
}

/* Feature */
.hc-feature {
  padding: 0 0 112px;
}

.hc-feature__grid {
  display: grid;
  grid-template-columns: minmax(0, 46%) minmax(0, 54%);
  align-items: center;
  gap: 50px;
}

.hc-feature__media {
  margin: 0;
  text-align: center;
}

.hc-feature__media img {
  display: block;
  width: 100%;
  max-width: 650px;
  height: auto;
  margin: 0 0 auto 0;
}

.hc-feature__copy {
  text-align: center;
  padding: 0 50px 0 0;
}

.hc-feature h2 {
  margin: 0 0 34px;
  color: #050505;
  font-size: clamp(34px, 4.4vw, 54px);
  line-height: 1.18;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: clamp(6px, .5vw, 10px);
}

.hc-feature p {
  max-width: 720px;
  margin: 0 auto 24px;
  color: #222;
  font-size: 16px;
  line-height: 1.6;
}

.hc-feature p + p {
  margin-top: 0;
}

.hc-feature .hc-btn {
  margin-top: 20px;
}

/* FAQ */
.hc-faq {
  padding: 0 0 92px;
}

.hc-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;
}

.hc-accordion {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid #d9d9d9;
}

.hc-accordion details {
  border-bottom: 1px solid #d9d9d9;
}

.hc-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;
}

.hc-accordion summary::-webkit-details-marker {
  display: none;
}

.hc-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;
}

.hc-accordion details[open] summary::after {
  transform: translateY(-50%) rotate(90deg);
}

.hc-accordion__body {
  padding: 0 58px 22px 0;
}

.hc-accordion__body p {
    margin: 0;
    color: #444;
    font-size: 16px;
    line-height: 1.55;
}

/* CTA */
.hc-contact {
  padding: 64px 0 72px;
  background: #1a1c67;
  color: #fff;
}

.hc-contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 44%) minmax(0, 56%);
  align-items: center;
  gap: 50px;
}

.hc-contact__image img {
  display: block;
  width: 100%;
  height: auto;
  padding-left: 50px;
}

.hc-contact__content {
  text-align: center;
}

.hc-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);
}

.hc-contact p {
  max-width: 620px;
  margin: 0 auto 18px;
  color: #fff;
  font-size: 16px;
  line-height: 1.55;
}

.hc-contact .hc-btn {
  margin-top: 12px;
}

@media (max-width: 1199px) {
.hc-intro {
    padding: 50px 15px 75px;
    text-align: center;
}
.hc-accordion {
    padding: 0px 25px;
}
.hc-contact__image img {
    padding-left: 20px;
}
.hc-contact__content {
    text-align: center;
    padding: 0px 25px;
}
}

@media (max-width: 991px) {
  .hc-compare-hero,
  .hc-compare-hero__content {
    min-height: 600px;
  }
  .hc-compare-hero__layer--red {
    background-image: url('/images/2023/09/16/bluered-bg-mb.jpg');
    z-index: 0;
}
.hc-compare-hero__layer--blue {
    background-image: url('/images/2023/09/16/bluered-bg-mb.jpg');
    z-index: 1;
    clip-path: inset(0 0 0 var(--hc-position));
}
.hc-compare-hero__handle,
.hc-compare-hero__divider {
    display: none;
}
  .hc-feature__grid {
    gap: 42px;
  }

  .hc-contact__grid {
    gap: 44px;
  }
}

@media (max-width: 767px) {
  .hc-container,
  .hc-container--narrow {
    width: min(100% - 24px, 540px);
  }
.hc-compare-hero {
    margin-top: 0px;
}
  .hc-compare-hero,
  .hc-compare-hero__content {
    min-height: 620px;
  }

  .hc-compare-hero__content {
    padding: 82px 0 64px;
    justify-content: center;
  }

  .hc-compare-hero__icon {
    width: 82px;
    margin-bottom: 16px;
  }

  .hc-compare-hero h1 {
    margin-bottom: 28px;
    font-size: clamp(28px, 8vw, 38px);
    letter-spacing: 5px;
  }

  .hc-compare-hero p {
    margin-bottom: 34px;
    font-size: 16px;
    line-height: 1.55;
    font-weight: 500;
  }

  .hc-compare-hero__label {
    top: 12px;
    padding: 8px 10px;
    font-size: 11px;
  }

  .hc-compare-hero__label--left {
    left: 12px;
  }

  .hc-compare-hero__label--right {
    right: 12px;
  }

  .hc-compare-hero__divider::before {
    top: calc(50% - 108px);
    font-size: 26px;
  }

  .hc-intro {
    padding: 50px 15px 50px;
  }

  .hc-intro p {
    font-size: 16px;
  }

  .hc-feature {
    padding-bottom: 75px;
  }

  .hc-feature__grid,
  .hc-contact__grid {
    grid-template-columns: 1fr;
  }

  .hc-feature__grid {
    gap: 34px;
  }

  .hc-feature__media {
    order: 1;
  }

  .hc-feature__copy {
    order: 2;
	padding: 0 15px;
  }

  .hc-feature h2 {
    margin-bottom: 22px;
    font-size: clamp(28px, 8vw, 38px);
    letter-spacing: 5px;
  }

  .hc-feature p {
    font-size: 16px;
  }

  .hc-faq {
    padding-bottom: 68px;
  }

  .hc-accordion {
    padding: 0 15px;
}
  .hc-accordion__body {
    padding-right: 24px;
  }

  .hc-contact {
    padding: 46px 0 52px;
  }

  .hc-contact__grid {
    gap: 32px;
  }
  
.hc-contact__image img {
    padding: 0px 15px !important;
}

  .hc-contact__image {
    order: 1;
  }

  .hc-contact__content {
    order: 2;
	padding: 0px 15px;
  }

  .hc-contact p {
    font-size: 16px;
  }
}

@media (max-width: 420px) {
  .hc-btn {
    min-height: 36px;
    padding: 9px 16px;
    font-size: 16px;
    letter-spacing: 1.6px;
  }

  .hc-compare-hero,
  .hc-compare-hero__content {
    min-height: 560px;
  }

  .hc-contact h2 {
    letter-spacing: 5px;
  }
}@media (min-width: 992px) {}@media (min-width: 768px) and (max-width: 991px) {}@media (max-width: 767px) {}#retrina_grand_information_16_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_16_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;} 