/***** HOME PAGE STYLES *****/
/*** Home Page Header Styles ***/
.home-page-header {
  margin: 0 auto 16px;
}
.home-page-header.large-container .options-btn-wrapper {
  justify-content: flex-start;
  margin: 0;
  margin-top: 60px;
  text-align: center;
}
.bundle-options-link-icons {
  height: 40px;
  text-align: center;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-225px * 12));
  }
}
.slider {
  height: 100px;
  overflow: hidden;
  width: 85%;
}
.slide-track {
  animation: scroll 40s linear infinite;
  display: flex;
  width: calc(225px * 24);
}
.carrier-wrapper {
  width: 225px;
  text-align: center;
}
.slide {
  height: 50px;
}
.insurance-logos {
  max-width: 100%;
  margin-top: 100px;
}
.recent-articles-container.container-with-background {
  margin-bottom: 0;
}
@media only screen and (max-width: 991px) {
  .home-page-header {
    padding-top: 48px;
  }
  .home-page-header-text-container {
    max-width: 520px;
    padding: 16px;
  }
  .home-page-header-text.header-text {
    font-size: 38px;
  }
  .slider {
    height: 100px;
    overflow: hidden;
    width: 65%;
  }
}
@media only screen and (max-width: 1200px) {
  .slider {
    height: 100px;
    overflow: hidden;
    width: 65%;
  }
}
@media only screen and (max-width: 600px) {
  .home-page-header {
    padding-top: 0;
  }
  .home-page-header-text.header-text {
    font-size: 29px;
    line-height: 1.2;
  }
  .insurance-logos {
    margin-top: 258px;
    max-width: calc(100vw - 56px);
    width: calc(100vw - 56px);
  }
  .slider {
    width: 100%;
    margin-top: 24px;
    overflow: auto;
  }
  #articles-wrapper {
    flex-direction: column;
    gap: 24px;
    grid-template-columns: 1fr;
  }
  .article-card-content {
    margin-left: 0;
  }
}
/*** Background Shape STYLES ***/
.background-shape {
  position: absolute;
  top: -80px;
  margin-left: -40px;
  z-index: -1;
}
@media only screen and (max-width: 991px) {
  .background-shape {
    top: -24px;
  }
}
/*** Side Tab Styles ***/
.side-tab-container {
  display: flex;
  justify-content: flex-end;
  position: relative;
  margin-top: -248px;
  margin-bottom: 56px;
  pointer-events: none;
}
.side-tab {
  background: #0033ff;
  border-radius: 12px 0 0 12px;
  bottom: -24px;
  height: 620px;
  position: absolute;
  right: -40px;
  width: 270px;
  z-index: -1;
}
.side-tab-image {
  height: 354px;
  display: flex;
  position: relative;
}
.side-tab-image > img {
  height: 100%;
}
.side-tab-image-animation {
  bottom: -100px;
  height: 504px;
  overflow: hidden;
  position: absolute;
  right: 0;
  width: 230px;
}
.side-tab-image-animation img {
  position: absolute;
  height: 100%;
  bottom: 0;
  right: -96px;
}
@media only screen and (max-width: 991px) {
  .side-tab-container {
    top: -80px;
    margin-top: -344px;
  }
  .side-tab {
    bottom: -24px;
    height: 470px;
    position: absolute;
    right: -24px;
    width: 140px;
  }
  .side-tab-image {
    height: 212px;
  }
  .side-tab-image-animation {
    bottom: 0;
    height: 200px;
    right: -32px;
    width: 200px;
  }
}
@media only screen and (max-width: 600px) {
  .side-tab-container {
    margin: -200px 0 0 0;
    top: -184px;
  }
  .side-tab {
    height: 200px;
    right: -24px;
    width: 100px;
  }
  .side-tab-image {
    height: 152px;
  }
  .side-tab-image-animation {
    bottom: 0;
    height: 158px;
    right: -24px;
    width: 120px;
  }
}
/*** Features Styles ***/
.features {
  margin: 80px auto 120px;
}
.features-cards {
  display: grid;
  grid-gap: 16px;
  grid-template-columns: repeat(3, calc(33% - 8px));
  justify-items: center;
}
.feature-card {
  align-items: center;
  background: #fff;
  box-shadow: 0 2px 24px 0 #dadff6, 0 2px 40px 0 #f9fafc;
  border-radius: 3px;
  display: flex;
  flex: 1;
  flex-direction: column;
  height: 420px;
  margin: 0 8px;
  max-width: 100%;
  padding: 40px 24px;
  width: 300px;
}
.feature-card img {
  margin-bottom: 40px;
}
@media only screen and (max-width: 991px) {
  .features {
    margin: 80px auto;
  }
  .feature-card {
    padding: 40px 16px;
  }
  .feature-card:nth-child(1) img {
    height: 100px;
  }
  .feature-card:nth-child(2) img {
    height: 110px;
  }
  .feature-card:nth-child(3) img {
    height: 120px;
  }
}
@media only screen and (max-width: 600px) {
  .features {
    margin-top: 24px;
  }
  .features-cards {
    grid-template-columns: 1fr;
    grid-gap: 40px;
  }
  .feature-card {
    height: 360px;
  }
  .feature-card img {
    margin-bottom: 0;
  }
}
/*** Five Steps Styles ***/
.five-steps {
  max-width: 736px;
  margin: 0 auto;
}
.five-steps-step {
  display: flex;
  align-items: center;
  margin-top: 40px;
}
@media only screen and (max-width: 600px) {
  .five-steps-step {
    align-items: flex-start;
  }
  /* .step img {
    height: 48px;
    width: 48px;
  } */
}
/*** Extra Help Styles ***/
.extra-help img {
  margin-right: 128px;
}
@media only screen and (max-width: 991px) {
  .extra-help img {
    height: 328px;
    margin-right: 48px;
  }
}
@media only screen and (max-width: 600px) {
  .extra-help img {
    display: block;
    margin: 0 auto 40px;
    width: 200px;
  }
}
/*** Expectations Styles ***/
.expectations {
  margin: 120px auto 80px auto;
  max-width: 880px;
}
@media only screen and (max-width: 600px) {
  .expectations {
    margin: 80px auto 0;
  }
}
/* Expectation Styles */
.expectation {
  display: flex;
  justify-content: flex-end;
  margin-top: 40px;
  max-width: 100%;
  position: relative;
}
.expectation-background-shape {
  background: #0033ff;
  border-radius: 24px;
  height: 200px;
  max-width: 100%;
  position: absolute;
  width: 420px;
  z-index: -1;
}
.expectation-card {
  background: #ffffff;
  box-shadow: 0 2px 32px 0 rgba(0, 0, 0, 0.08), 0 2px 24px 0 rgba(0, 0, 0, 0.12);
  min-height: 200px;
  margin-top: 40px;
  max-width: 100%;
  padding: 40px;
  width: 620px;
}
/* Expectation Left Styles */
.expectation-left {
  display: flex;
}
.expectation-background-shape-left {
  left: -80px;
}
/* Expectation Right Styles */
.expectation-right {
  display: flex;
  justify-content: flex-end;
}
.expectation-background-shape-right {
  right: -80px;
}
@media only screen and (max-width: 991px) {
  /* Expectation Left Styles */
  .expectation-left .expectation-card {
    margin-left: 80px;
  }
  .expectation-background-shape-left {
    left: 0;
  }
  /* Expectation Right Styles */
  .expectation-right .expectation-card {
    margin-right: 80px;
  }
  .expectation-background-shape-right {
    right: 0;
  }
}
@media only screen and (max-width: 600px) {
  .expectation-cards {
    background: #0033ff;
    margin: 0 -24px;
    padding: 16px 16px 40px;
  }
  .expectation {
    margin-top: 24px;
  }
  .expectation-card {
    border-radius: 24px;
    margin-top: 0;
    min-height: unset;
    padding: 20px;
    width: calc(100vw - 56px);
  }
  .expectation-background-shape-right,
  .expectation-background-shape-left {
    display: none;
  }
}
/*** Our Reputation Styles ***/
@media only screen and (max-width: 600px) {
  #our-reputation {
    margin: 0 -24px 40px;
  }
}

/***** ABOUT US PAGE STYLES *****/
/*** Our Point Styles ***/
.our-point:nth-child(even) {
  flex-direction: row-reverse;
  margin-top: 80px;
}
.our-point-text {
  padding-bottom: 32px;
  width: 594px;
  max-width: 100%;
}
@media only screen and (max-width: 600px) {
  .our-point {
    flex-direction: column;
  }
  .our-point:nth-child(even) {
    flex-direction: column;
    margin-top: 32px;
  }
  .our-point-img {
    display: none;
  }
  .our-point-text {
    padding-bottom: 0;
  }
}
/*** Our Features Styles ***/
.our-features {
  display: flex;
  flex-direction: column;
  max-width: 920px;
  margin: 0 auto 120px;
}
.our-features-card {
  display: flex;
  align-items: center;
  padding: 40px;
  margin-bottom: 24px;
  width: 880px;
  max-width: 100%;
  border-radius: 12px;
  background-color: #fff;
  box-shadow: 0 2px 24px 0 #dadff6, 0 2px 40px 0 #f9fafc;
  min-height: 240px;
}
.our-features-card:nth-child(odd) {
  align-self: flex-end;
}
.our-features-card-img {
  min-width: 140px;
  width: 140px;
  margin-right: 40px;
}
@media only screen and (max-width: 600px) {
  .our-features-card {
    flex-direction: column;
    text-align: center;
    max-width: calc(100% - 32px);
    padding: 32px 24px;
    align-self: center;
  }
  .our-features-card:nth-child(odd) {
    align-self: center;
  }
  .our-features-card-img {
    margin: 0 0 16px 0;
  }
  .our-features-card-img img {
    height: 64px;
  }
  .our-features-card-title + p {
    text-align: left;
  }
}
/*** Our Technology Styles ***/
.technology-card {
  align-items: center;
  justify-content: space-between;
  margin-bottom: 80px;
}
.technology-card:nth-child(even) {
  flex-direction: row-reverse;
}
.technology-img {
  width: 400px;
  min-width: 400px;
  max-width: 100%;
  margin-right: 80px;
}
.technology-card:nth-child(even) .technology-img {
  margin-left: 80px;
  margin-right: 0;
}
@media only screen and (max-width: 600px) {
  .technology-card,
  .technology-card:nth-child(even) {
    flex-direction: column;
  }
  .technology-img {
    display: block;
    margin: 0 auto 40px;
    width: 200px;
    min-width: unset;
  }
  .technology-card:nth-child(even) .technology-img {
    margin-left: 0;
  }
}
/*** Our Team Styles ***/
.team-img {
  position: relative;
  margin-right: 80px;
  width: 400px;
  min-width: 400px;
  max-width: 100%;
}
.team-img img {
  position: sticky;
  top: 50%;
  left: 0;
}
@media only screen and (max-width: 600px) {
  .team-img {
    display: none;
  }
}
/*** Our Leadership Styles ***/
.leadership-img {
  margin-right: 64px;
  width: 240px;
  min-width: 240px;
}
@media only screen and (max-width: 600px) {
  .leadership-img {
    margin-right: 0;
    height: 80px;
    margin-bottom: 16px;
    width: auto;
    min-width: auto;
    margin-right: 24px;
  }
  .leadership-img img {
    height: 100%;
  }
}

/***** FAQ PAGE STYLES *****/
.faqs-container {
  max-width: 840px;
  margin: 0 auto;
}
/*** FAQ Sidebar Menu ***/
.faq-menu-scroll-wrapper {
  position: relative;
  margin-right: 80px;
  min-width: 296px;
  width: 296px;
  position: sticky;
  top: 152px;
}
@media only screen and (max-width: 600px) {
  .faq-menu-scroll-wrapper {
    display: none;
  }
}
.faq-menu {
  list-style-type: none;
  overflow: auto;
  /* Below creates a double scroll*/
  /* max-height: calc(100vh - 344px); */
  width: 100%;
  padding-right: 16px;
}
.faq-menu-section {
  margin-bottom: 16px;
}
.faq-menu-section-title {
  display: flex;
  color: #0066ff;
  font-weight: 600;
  margin-bottom: 16px;
  cursor: pointer;
  transition: opacity 300ms linear;
}
.faq-menu-section-title:hover {
  opacity: 0.8;
}
.faq-menu-section-title span {
  color: #8d98c2;
  margin-right: 16px;
}
.faq-menu-subsection {
  list-style-type: none;
  padding-left: 40px;
}
.faq-menu-subsection-title {
  font-size: 14px;
  font-weight: 500;
  color: #8d98c2;
  margin-bottom: 4px;
  cursor: pointer;
  transition: opacity 300ms linear;
}
.faq-menu-subsection-title:hover {
  opacity: 0.5;
}
.faq-menu-subsection {
  display: none;
}
.faq-menu-section.open .faq-menu-subsection {
  display: block;
}
.faq-menu-section .show-less,
.faq-menu-section.open .show-more {
  display: none;
}
.faq-menu-section.open .show-less {
  display: block;
}
/* FAQ Menu Scroll Styles ***/
.faq-menu::-webkit-scrollbar {
  width: 0.4em;
}
.faq-menu::-webkit-scrollbar,
.faq-menu::-webkit-scrollbar-thumb {
  overflow: visible;
  border-radius: 4px;
}
.faq-menu::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
}
.scrollbar-cover {
  position: absolute;
  background: #fff;
  height: 100%;
  top: 0;
  right: 0;
  width: 0.4em;
  transition: all 0.5s;
  opacity: 1;
}
.faq-menu-scroll-wrapper:hover .scrollbar-cover {
  opacity: 0;
  transition: all 0.5s;
}
@media only screen and (max-width: 991px) {
  .faq-menu-scroll-wrapper {
    width: 216px;
    min-width: 216px;
    margin-right: 40px;
  }
}
/*** FAQ Styles ***/
.faq-section:target:before {
  content: "";
  display: block;
  height: 152px; /* sticky header height*/
  margin: -152px 0 0; /* negative sticky header height */
}
.faq-category-title {
  margin-bottom: 40px;
  font-size: 32px;
  font-weight: 300;
  line-height: 1.2;
}
.faq {
  margin-bottom: 40px;
}
.faq:target:before {
  content: "";
  display: block;
  height: 152px; /* sticky header height*/
  margin: -152px 0 0; /* negative sticky header height */
}
.faq-question {
  margin-bottom: 8px;
}
@media only screen and (max-width: 991px) {
  .faq-category-title {
    font-size: 24px;
    margin-bottom: 24px;
    line-height: 1.3;
  }
}
@media only screen and (max-width: 600px) {
  .faqs {
    margin: 0 auto 40px;
  }
  .faq-category-title {
    font-size: 20px;
    margin-bottom: 16px;
  }
}

/***** BUNDLE PAGE STYLES *****/
.bundle-page-main {
  position: relative;
  margin-left: -40px;
  margin-right: -40px;
  padding-bottom: 60px;
  min-height: calc(100vh - 108px);
  box-sizing: border-box;
  overflow: hidden;
}
.bundle-page-main .header-text {
  max-width: 800px;
  margin: 0 auto 16px;
}
.bundle-page-subtitle {
  width: 552px;
  margin: 0 auto;
  position: relative;
}
.bundle-page-subtitle span {
  background: black;
  color: #fff;
  height: 64px;
  width: 64px;
  position: absolute;
  display: block;
  font-size: 11px;
  font-weight: 500;
  border-radius: 100%;
  line-height: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(15deg);
  right: -176px;
  top: -16px;
}
.options-btn-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 15px;
}
.other-ins-button-wrapper {
  margin-bottom: 55px;
}
.options-btn-wrapper .mobile-wrapper {
  display: contents;
}
.options-link {
  color: #002679;
  padding: 32px 0;
  height: 126px;
  width: 196px;
  border-radius: 3px;
  background-color: #ffffff;
  box-shadow: 0 2px 24px 0 #dadff6, 0 2px 40px 0 #f9fafc;
  font-size: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  transition: all 300ms linear;
  box-shadow: 0 2px 24px 0 #dadff6, 0 2px 40px 0 #f9fafc;
}
.other-ins-button {
  color: #002679;
  padding: 16px 8px;
  height: 104px;
  width: 100%;
  border-radius: 3px;
  background-color: #ffffff;
  box-shadow: 0 2px 24px 0 #dadff6, 0 2px 40px 0 #f9fafc;
  font-size: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  box-sizing: border-box;
  transition: all 300ms linear;
  box-shadow: 0 2px 24px 0 #dadff6, 0 2px 40px 0 #f9fafc;
}
@media only screen and (max-width: 600px) {
  .other-ins-button:nth-of-type(4) {
    gap: 3px;
  }
}
a.other-ins-button:hover {
  cursor: pointer;
  transform: scale(1.15);
}
a.other-ins-button {
  text-decoration: none;
}
#bundle-link {
  width: 243px;
}
a.options-link:not(.disabled):hover {
  cursor: pointer;
  transform: scale(1.11);
}
a.options-link {
  text-decoration: none;
}
.material-symbols-outlined {
  font-variation-settings: "FILL" 123, "wght" 400, "GRAD" 0, "opsz" 48;
}
@media only screen and (max-width: 991px) {
  .faq-menu-scroll-wrapper {
    width: 216px;
    min-width: 216px;
    margin-right: 40px;
  }
}
.carriers-display {
  padding-top: 55px;
}
.agency-logos {
  width: 50%;
  margin: auto;
  margin-top: 45px;
}
.agency-logos .slider {
  width: 100%;
}
@media only screen and (max-width: 991px) {
  .agency-logos {
    position: inherit;
    width: 100%;
    margin-top: 40px !important;
  }
  .agency-logos .slider {
    width: 100%;
  }
}
@media only screen and (max-width: 600px) {
  .agency-logos .slider {
    margin-top: 40px;
  }
}
.bottom-imgs {
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(100vw - (100vw - 100%));
}
.bottom-img-left {
  position: absolute;
  bottom: -24px;
  left: 0;
  height: 352px;
}
.bottom-img-right {
  position: absolute;
  right: 0;
  bottom: -24px;
  height: 352px;
}
.powered-by {
  background-color: #ffffff;
  box-shadow: 0 2px 24px 0 #dadff6, 0 2px 40px 0 #f9fafc;
  padding: 6px;
  height: 101px;
  width: 105px;
  position: fixed;
  bottom: 120px;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  gap: 6px;
  margin-top: 3px;
  font-size: 10px;
  border-radius: 3px;
}
.powered-by img {
  margin-bottom: 9px;
}

#powered-by-text {
  color: black;
}
.powered-by a {
  text-decoration: none;
  color: #fff;
}
.powered-by a:hover {
  opacity: 0.7;
}
@media only screen and (max-width: 991px) {
  .bundle-page header {
    align-items: center;
  }
  .bundle-page .logo-container {
    height: 32px;
  }
  .bundle-page .menu a {
    font-size: 14px;
    font-weight: 400;
  }
  .bundle-page-main .header-text {
    max-width: 640px;
  }
  .bundle-page-subtitle span {
    right: -64px;
  }
  .options-btn-wrapper {
    margin-bottom: 40px;
  }
  .bottom-img-right {
    right: 0;
  }
}
@media only screen and (max-width: 600px) {
  .bundle-page {
    padding: 0;
  }
  .bundle-page header {
    padding: 16px;
  }
  .bundle-page-main {
    margin-left: 0px;
    margin-right: 0px;
    width: auto;
    bottom: -24px;
    padding: 16px 16px 56px 16px;
  }
  .bundle-page-main .header-text {
    font-size: 28px;
  }
  .options-btn-wrapper {
    flex-direction: column;
    margin: 0;
  }
  .other-ins-button-wrapper {
    margin-top: 15px;
  }
  .options-btn-wrapper .mobile-wrapper {
    display: flex;
    gap: 20px;
    width: 100%;
  }
  .options-btn,
  .options-link {
    width: 100%;
    gap: 8px;
    align-items: center;
    justify-content: center;
  }
  .other-ins-button {
    width: 100%;
    flex-direction: row;
    gap: 16px;
    align-items: center;
    justify-content: center;
    height: 53px;
  }
  #bundle-link {
    width: 100%;
  }
  .logo-wrapper-small {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
  }
  .bundle-page-subtitle {
    max-width: 100%;
  }
  .bundle-page-subtitle span {
    display: none;
  }
  .bottom-imgs {
    margin: -24px -24px 0;
    width: calc(100vw - (100vw - 100%));
  }
  .bottom-img-left {
    height: 120px;
  }
  .bottom-img-right {
    height: 120px;
  }
  .powered-by {
    bottom: 80px;
    right: -24px;
  }
}

/***** AGENCY ABOUT US STYLES *****/
.agency-name {
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 64px;
}
.agency-bio {
  display: flex;
  gap: 112px;
  max-width: 920px;
  margin: 0 auto;
}
.agency-img-container {
  position: relative;
  margin-bottom: 184px;
}
.agency-img-container-background-shape {
  width: 344px;
  height: 360px;
  border-radius: 12px;
}
.agency-img-container img {
  width: 344px;
  height: 360px;
  border-radius: 12px;
  box-shadow: 0 2px 24px 0 rgb(164 165 167 / 43%);
  position: relative;
  top: 40px;
  left: 40px;
  background: white;
  position: absolute;
  object-fit: cover;
}
.placeholder {
  padding: 64px;
}
@media only screen and (max-width: 991px) {
  .agency-about-page {
    padding: 48px 24px 56px;
  }
  .agency-bio {
    flex-direction: column;
    gap: 32px;
    align-items: center;
    max-width: 720px;
  }
  .agency-img-container {
    margin-bottom: 0;
    left: -24px;
  }
  .agency-img-container-background-shape {
    width: 208px;
    height: 216px;
  }
  .agency-img-container img {
    width: 208px;
    height: 216px;
    top: 24px;
    left: 24px;
    object-fit: cover;
  }
  .placeholder {
    padding: 24px;
  }
}
@media only screen and (max-width: 600px) {
  .agency-name {
    font-size: 24px;
    margin-bottom: 40px;
  }
}
