/*** Animate.css Helper Classes ***/
.animate-delay-250 {
  animation-delay: 250ms;
}

.animate-delay-350 {
  animation-delay: 350ms;
}

.animate-delay-500 {
  animation-delay: 500ms;
}

.animate-delay-700 {
  animation-delay: 700ms;
}

/*** Font Weight Styles ***/
.fw-300 {
  font-weight: 300;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

@media (max-width: 600px) {
  .mobile-fw-500 {
    font-weight: 500;
  }
}

/*** Font Size Styles ***/
.xs-text {
  font-size: 12px;
}

.small-text {
  font-size: 14px;
}
@media (max-width: 600px) {
  .small-text {
    font-size: 13px;
  }
}

.medium-text {
  font-size: 18px;
}

.large-text {
  font-size: 20px;
}

.xl-text {
  font-size: 24px;
}

.xxl-text {
  font-size: 32px;
}

@media only screen and (max-width: 600px) {
  .large-text.mobile-regular-text {
    font-size: 14px;
  }
  .medium-text.mobile-regular-text {
    font-size: 14px;
  }
  .mobile-medium-text {
    font-size: 16px;
  }
  .xl-text {
    font-size: 18px;
  }
  .xxl-text {
    font-size: 24px;
  }
}
/*** Text Alignment Styles ***/
.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

@media only screen and (max-width: 600px) {
  .mobile-text-center {
    text-align: center;
  }
}
/*** Color Styles ***/
.light-text {
  color: #fff;
}

.accent-text {
  color: #8d98c2;
}

/*** Link Text Styles ***/
.link-text {
  color: #0033ff;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 300ms linear;
}

.link-text:hover {
  opacity: 0.5;
}

/*** Header Text Styles ***/
.header-text {
  font-size: 48px;
  font-weight: 300;
  line-height: 64px;
}

@media only screen and (max-width: 991px) {
  .header-text {
    font-size: 32px;
    line-height: 48px;
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 600px) {
  .header-text {
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 16px;
  }
  .header-text.mobile-mb-32 {
    margin-bottom: 32px;
  }
}
/*** Text Transform Styles ***/
.uppercase-text {
  text-transform: uppercase;
}

.btn {
  height: 48px;
  border-radius: 3px;
  padding: 0 24px;
  border: 1px solid transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 300ms linear;
  cursor: pointer;
  display: inline-block;
  line-height: 48px;
  text-decoration: none;
  font-family: Montserrat;
}

.btn-primary {
  background-color: #0033ff;
  color: #fff;
}

.btn-primary:hover {
  color: #0033ff;
  background-color: #fff;
  border: 1px solid #0033ff;
}

.card {
  box-shadow: 0 2px 24px 0 #dadff6, 0 2px 40px 0 #f9fafc;
  border-radius: 3px;
  background: #fff;
}

.mobile-menu {
  position: fixed;
  height: 100vh;
  width: 0;
  top: 0;
  right: -100vw;
  z-index: 1;
  transition: all 500ms ease-out;
  padding: 16px;
  width: 100vw;
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu-header {
  color: #fff;
  height: 48px;
  display: flex;
  align-items: center;
}

.mobile-menu ul {
  list-style: none;
  text-align: center;
  overflow: auto;
  max-height: calc(100vh - 112px);
}

.mobile-menu > ul > li {
  margin: 64px 0;
}

.mobile-menu a {
  color: #fff;
  font-size: 24px;
  text-decoration: none;
  transition: opacity 300ms linear;
  display: block;
  line-height: 1.25;
}

.mobile-menu a:hover {
  opacity: 0.5;
}

/* Mobile Menu - FAQ Menu Styles */
.mobile-menu-faq .show-less,
.mobile-menu-faq .show-more {
  color: #ffffff;
}

.mobile-menu-faq .show-less,
.mobile-menu-faq.open .show-more {
  display: none;
}

.mobile-menu-faq.open .show-less {
  display: block;
}

.mobile-menu-faq .mobile-menu-faq-menu {
  opacity: 0;
  height: 0;
  max-width: 200px;
  margin: 0 auto;
  text-align: left;
  color: #ffffff;
  visibility: hidden;
  transition: all 300ms linear;
}

.mobile-menu-faq.open .mobile-menu-faq-menu {
  opacity: 1;
  height: auto;
  visibility: visible;
  margin-top: 16px;
}

.footer-top-bar {
  background: #002679;
  height: 468px;
  margin: 0 -40px;
  padding: 72px 40px;
  position: relative;
}
.footer-top-bar > img {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
}
@media (max-width: 991px) {
  .footer-top-bar {
    height: unset;
    padding: 56px 40px 32px;
  }
}
@media (max-width: 600px) {
  .footer-top-bar {
    margin: 0 -24px;
    padding: 64px 24px;
    height: unset;
  }
}

.footer-top-bar-content {
  max-width: 100%;
  width: 1048px;
  max-width: 100%;
  margin: 0 auto;
  color: #fff;
}
.footer-top-bar-content > div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
@media (max-width: 600px) {
  .footer-top-bar-content > div {
    flex-direction: column;
  }
  .footer-top-bar-content > div > div > img {
    height: 64px;
    margin: 0 auto;
    display: block;
    margin-bottom: 72px;
  }
}
@media (max-width: 991px) {
  .footer-top-bar-content > div > div {
    width: 100%;
  }
}
.footer-top-bar-content .social-icons {
  margin-left: -8px;
}
@media (max-width: 600px) {
  .footer-top-bar-content .social-icons {
    margin: 0 auto;
  }
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
  margin-bottom: 40px;
}
.footer-links-grid + div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
@media (max-width: 991px) {
  .footer-links-grid + div {
    align-items: flex-end;
  }
}
@media (max-width: 991px) {
  .footer-links-grid {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 80px;
  }
  .footer-links-grid .medium-text.fw-600.mb-48 {
    font-size: 16px;
    margin-bottom: 16px;
  }
  .footer-links-grid .medium-text.fw-500.mb-16 {
    font-size: 14px;
    margin-bottom: 8px;
  }
}
@media (max-width: 600px) {
  .footer-links-grid {
    display: grid;
    grid-template-columns: repeat(2, calc(50% - 28px));
    gap: 56px;
  }
  .footer-links-grid .medium-text.fw-600.mb-48 {
    margin-bottom: 8px;
    font-weight: bold;
  }
}

.footer-links-grid a {
  color: inherit;
  text-decoration: none;
  transition: opacity 300ms linear;
}
.footer-links-grid a:hover {
  opacity: 0.5;
}

.footer-bottom-bar {
  padding: 24px 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
@media (max-width: 991px) {
  .footer-bottom-bar {
    padding: 24px 0;
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-bottom-bar .small-text {
    font-size: 12px;
  }
  .footer-bottom-bar .text-right {
    text-align: left;
  }
}

/***** OLD FOOTER STYLES *****/
.footer-content {
  display: flex;
  justify-content: space-between;
  margin: 0 -40px;
  padding: 48px 56px;
}

@media only screen and (max-width: 991px) {
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media only screen and (max-width: 600px) {
  .footer-content {
    flex-direction: column;
    width: 100vw;
    padding: 34px;
    margin: 0;
    flex-direction: column;
    justify-content: center;
  }
  .main-footer .footer-content {
    margin-left: -24px;
  }
}
.footer-section {
  margin-right: 80px;
}

.social-icons {
  display: flex;
  align-items: center;
  height: 32px;
  margin-right: 0;
  gap: 24px;
}

.main-footer .social-icons {
  margin: 16px 0;
}

.bundle-page .social-icons {
  justify-content: center;
  margin-top: 32px;
}

.social-icons a {
  display: block;
  transition: opacity 300ms linear;
}

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

.options-footer-bottom-bar {
  margin: 0 -40px;
  padding: 24px 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.options-footer-bottom-bar img {
  height: 32px;
}

@media only screen and (max-width: 991px) {
  footer img {
    height: 48px;
    margin-top: 0;
  }
  .footer-section {
    margin-right: 40px;
  }
  .footer-section:nth-child(2) {
    margin: 16px 0;
  }
  .footer-section:last-child {
    margin-right: 0;
  }
}
@media only screen and (max-width: 600px) {
  footer img {
    height: 40px;
    margin-bottom: 24px;
  }
  .footer-section:nth-child(2) {
    width: 100%;
    margin-bottom: 16px;
  }
  .options-footer-bottom-bar {
    width: 100%;
    margin: 0;
    padding: 34px;
    flex-direction: column;
  }
  .mobile-bottom-img-left {
    position: relative;
    left: -24px;
    margin-bottom: 48px;
  }
  .mobile-bottom-img-left svg {
    height: 256px;
    left: -48px;
    position: relative;
    border-bottom: 1.5px solid;
  }
}
header {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  transition: all 500ms ease-out;
  padding: 32px 40px 12px;
  margin: 0 -40px;
  max-width: 100vw;
}
@media (max-width: 991px) {
  header {
    width: 100vw;
    margin: 0 -40px;
    padding: 24px;
  }
}
@media (max-width: 600px) {
  header {
    width: 100vw;
    margin: 0 -24px;
    padding: 16px 24px;
    align-items: center;
  }
}

@media (max-width: 600px) {
  header#options-header {
    margin: 0;
  }
}

header.collapsed {
  padding: 16px 40px;
  box-shadow: 0 2px 32px 0 rgba(0, 0, 0, 0.08), 0 2px 24px 0 rgba(0, 0, 0, 0.12);
  z-index: 3;
}
@media (max-width: 991px) {
  header.collapsed {
    width: 100vw;
    padding: 16px 24px;
    align-items: center;
  }
}

/*** Logo Styles ***/
header .logo-container {
  height: 64px;
  transition: height 300ms ease-in-out;
}
header .logo-container > img {
  height: 100%;
}
@media (max-width: 991px) {
  header .logo-container {
    height: 48px;
  }
}
@media (max-width: 600px) {
  header .logo-container {
    height: 44px;
  }
}

header .logo {
  height: 100%;
  width: auto;
}

header.collapsed .logo-container {
  height: 48px;
}
header.collapsed .logo-container img {
  height: 100% !important;
}
@media (max-width: 991px) {
  header.collapsed .logo-container {
    height: 36px;
  }
}
@media (max-width: 600px) {
  header.collapsed .logo-container {
    height: 32px;
  }
}

header.collapsed .options-logo-container {
  height: 48px;
}
header.collapsed .options-logo-container img {
  height: 100% !important;
}

/*** Menu Styles ***/
.menu {
  align-items: center;
  display: flex;
  list-style-type: none;
}

.menu a {
  color: inherit;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 300ms linear;
  padding-bottom: 8px;
}
@media (max-width: 991px) {
  .menu a {
    font-size: 16px;
    padding-bottom: 0;
  }
}

.menu a.active {
  opacity: 0.5;
  border-bottom: 1.5px solid rgba(0, 0, 0, 0.5);
}

.menu a:hover {
  opacity: 0.5;
}

/* Dropdown Styles */
.menu-dropdown-container {
  position: relative;
}

.menu-dropdown {
  border-radius: 3px;
  background-color: #ffffff;
  box-shadow: 2px 0 12px 0 #eff1fb;
  position: absolute;
  top: 24px;
  right: 0;
  padding: 12px 16px;
  min-width: 152px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 300ms linear;
}

.menu-dropdown-container:hover .menu-dropdown,
.menu-dropdown.open {
  opacity: 1;
  visibility: visible;
}

.menu-dropdown li {
  list-style: none;
  margin-left: 0;
}

.menu-dropdown li:nth-child(even) {
  padding: 12px 0;
  margin: 12px 0;
  border-top: 1px solid #eff1fb;
  border-bottom: 1px solid #eff1fb;
}

.menu-dropdown a {
  font-size: 14px;
  color: inherit;
  text-decoration: none;
}

/*** Body Styles ***/
body {
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  padding: 0 40px;
}
@media (max-width: 600px) {
  body {
    padding: 0 24px;
  }
}

/*** Main Styles ***/
main {
  padding-top: 80px;
}

@media only screen and (max-width: 991px) {
  main {
    padding-top: 32px;
  }
}
/*** Layout Styles ***/
.container {
  margin: 0 auto 80px;
  max-width: 720px;
  width: 100%;
}

.large-container {
  max-width: 1040px;
  margin: 0 auto 120px;
}
@media (max-width: 991px) {
  .large-container {
    margin: 0 auto 96px;
  }
}

.container-with-background {
  background: #f9fafc;
  margin: 80px -40px;
  padding: 40px;
}

.container-with-background .container {
  margin: 0 auto;
}

.full-width {
  width: 100%;
}

img {
  max-width: 100%;
}

@media only screen and (max-width: 991px) {
  .container-with-background {
    margin: 80px -24px;
  }
}
@media only screen and (max-width: 600px) {
  .container {
    margin: 0 auto 24px;
  }
  .large-container {
    margin: 0 auto 80px;
  }
  .container-with-background {
    margin: 40px -16px 80px;
    padding: 40px 32px;
  }
}
/*** Responsive Styles ***/
@media only screen and (min-width: 992px) {
  .desktop-hidden {
    display: none !important;
  }
  .desktop-btn {
    min-width: 150px;
  }
}
@media only screen and (min-width: 601px) and (max-width: 991px) {
  .tablet-hidden {
    display: none !important;
  }
}
@media only screen and (max-width: 600px) {
  .mobile-hidden {
    display: none !important;
  }
}
/*** Flex Styles ***/
.flex {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

.flex-align-center {
  align-items: center;
}

.flex-justify-space {
  justify-content: space-between;
}

.flex-justify-center {
  justify-content: center;
}

@media only screen and (max-width: 991px) {
  .flex.tablet-block {
    display: block;
  }
}
@media screen and (max-width: 600px) {
  .flex.mobile-block {
    display: block;
  }
  .mobile-flex {
    display: flex;
  }
}
/*** Display Styles ***/
.block {
  display: block;
}

/*** Position Styles ***/
.relative {
  position: relative;
}

/*** Pointer Styles ***/
.pointer {
  cursor: pointer;
}

.mb-8 {
  margin-bottom: 8px;
}

.ml-8 {
  margin-left: 8px;
}

.mt-16 {
  margin-top: 16px;
}

.mr-16 {
  margin-right: 16px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mt-24 {
  margin-top: 24px;
}

.mb-24 {
  margin-bottom: 24px;
}

.ml-24 {
  margin-left: 24px;
}

.mt-32 {
  margin-top: 32px;
}

.mb-32 {
  margin-bottom: 32px;
}

.ml-32 {
  margin-left: 32px;
}

.mt-40 {
  margin-top: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

.ml-40 {
  margin-left: 40px;
}

.mr-48 {
  margin-right: 48px;
}

.mb-48 {
  margin-bottom: 48px;
}

.mb-56 {
  margin-bottom: 56px;
}

.mb-64 {
  margin-bottom: 64px;
}

.mb-72 {
  margin-bottom: 72px;
}

.mt-80 {
  margin-top: 80px;
}

.mr-80 {
  margin-right: 80px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-88 {
  margin-bottom: 88px;
}

.mt-104 {
  margin-top: 104px;
}

.mr-128 {
  margin-right: 128px;
}

.mt-212 {
  margin-top: 212px;
}

@media only screen and (max-width: 600px) {
  .mobile-mb-40 {
    margin-bottom: 40px;
  }
  .mobile-mb-32 {
    margin-bottom: 32px;
  }
  .mobile-mb-16 {
    margin-bottom: 16px;
  }
  .mobile-mb-8 {
    margin-bottom: 8px;
  }
  .mobile-mt-0 {
    margin-top: 0;
  }
  .mobile-mr-0 {
    margin-right: 0;
  }
  .mobile-mb-0 {
    margin-bottom: 0;
  }
}
@media (max-width: 600px) {
  .additional-services-page {
    padding: 24px;
  }
}

.additional-services-title {
  margin-top: 20px;
  margin-bottom: 72px;
  text-align: center;
  font-size: 32px;
  font-weight: 300;
}
@media (max-width: 600px) {
  .additional-services-title {
    margin-top: 10px;
    margin-bottom: 60px;
  }
}

.additional-services-form-container {
  width: 960px;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  padding-bottom: 96px;
}

@media (max-width: 600px) {
  .additional-services-form-title {
    text-align: center;
  }
}

.additional-services-form {
  width: 600px;
  max-width: 100%;
  margin: 0 auto;
}
.additional-services-form button {
  color: #fff;
}

.additional-services-form-section {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.additional-services-form-section-title {
  text-transform: capitalize;
}

.additional-services-items {
  gap: 16px;
  flex-wrap: wrap;
}

.additional-services-item input {
  display: none;
}
.additional-services-item img {
  margin: auto;
  height: -webkit-fill-available;
  max-width: 120px;
}

.additional-services-item-text-label {
  font-size: 13px;
  font-weight: 500;
}

.additional-services-item-details {
  color: #8d98c2;
}
.additional-services-item-details .material-icons {
  font-size: 18px;
  transition: opacity 300ms linear;
  margin-left: 8px;
}
.additional-services-item-details .material-icons:hover {
  opacity: 0.5;
}

.modal {
  position: fixed;
  width: 100vw;
  height: 100vh;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2000;
}
.modal.open {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}
.modal-bg {
  position: absolute;
  background: teal;
  width: 100%;
  height: 100%;
}
.modal-container {
  padding: 20px 40px;
  width: 720px;
  border-radius: 3px;
  background-color: #ffffff;
  box-shadow: 0 2px 32px 0 rgba(0, 0, 0, 0.08), 0 2px 24px 0 rgba(0, 0, 0, 0.12);
  max-height: 80%;
}
.modal-close {
  position: absolute;
  right: 15px;
  top: 15px;
  outline: none;
  appearance: none;
  color: red;
  background: none;
  border: 0px;
  font-weight: bold;
  cursor: pointer;
}
.modal .modal-text {
  max-height: 300px;
  overflow-y: scroll;
}

.additional-services-item-label {
  width: 150px;
  max-width: 100%;
  border-radius: 3px;
  padding: 10px;
  border: 1px solid #cdd2e9;
  display: flex;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
  color: #8d98c2;
  gap: 4px;
  height: 65px;
}

.additional-services-personal-info > .flex {
  gap: 24px;
}
.additional-services-personal-info input {
  border: 1px solid #cdd2e9;
  border-radius: 3px;
  height: 48px;
  width: 100%;
  padding: 0 12px;
  margin-bottom: 24px;
  font-family: Rubik;
  font-size: 16px;
  transition: all 300ms linear;
}
.additional-services-personal-info textarea {
  border: 1px solid #cdd2e9;
  border-radius: 3px;
  height: 120px;
  width: 100%;
  padding: 12px;
  margin-bottom: 24px;
  font-family: Rubik;
  font-size: 16px;
  resize: none;
  transition: all 300ms linear;
}

.additional-services-contact-info .radio {
  font-weight: 500;
}
.additional-services-contact-info .radio .label {
  position: relative;
  display: block;
  float: left;
  margin-right: 12px;
  width: 20px;
  height: 20px;
  border: 2px solid #c8ccd4;
  border-radius: 100%;
  -webkit-tap-highlight-color: transparent;
}
.additional-services-contact-info .radio .label:after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  transform: scale(0);
  transition: all 0.2s ease;
  opacity: 0.08;
  pointer-events: none;
}
.additional-services-contact-info .radio:hover .label:after {
  transform: scale(3.6);
}
.additional-services-contact-info input[type="radio"]:checked + .label:after {
  transform: scale(1);
  transition: all 0.2s cubic-bezier(0.35, 0.9, 0.4, 0.9);
  opacity: 1;
}
.additional-services-contact-info .cntr {
  position: absolute;
  top: calc(50% - 10px);
  left: 0;
  width: 100%;
  text-align: center;
}
.additional-services-contact-info .hidden {
  display: none;
}

#continue-btn:disabled {
  opacity: 0.5;
}

.additional-services-contact-form {
  margin: 0 auto;
  width: 600px;
}
.additional-services-contact-form .contact-form-info {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
}
@media (max-width: 768px) {
  .additional-services-contact-form .contact-form-info {
    flex-wrap: wrap-reverse;
    gap: 32px;
  }
}
.additional-services-contact-form .contact-form-info #contact-form {
  width: 100%;
}
.additional-services-contact-form .contact-form-info input[type="text"] {
  padding: 12px;
  box-sizing: border-box;
  height: 48px;
  width: 100%;
  border: 1px solid #8d98c2;
  border-radius: 3px;
  background-color: #ffffff;
}
.additional-services-contact-form .contact-form-info .error.form_field {
  border: 1px solid red;
}
.additional-services-contact-form .contact-form-info .flex {
  display: flex;
  gap: 16px;
  width: 100%;
  justify-content: space-between;
}
.additional-services-contact-form .contact-form-info .contact-option {
  display: flex;
  height: 32px;
  gap: 8px;
  align-items: baseline;
}
.additional-services-contact-form .contact-form-info .button {
  height: 48px;
  width: 180px;
  border-radius: 3px;
  border: none;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
  line-height: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.additional-services-contact-form .contact-form-info .button:hover {
  cursor: pointer;
  opacity: 0.7;
}
.additional-services-contact-form .contact-form-paper {
  padding: 48px;
  width: 700px;
  max-width: 100%;
  border-radius: 12px;
  background-color: #ffffff;
  box-shadow: 0 2px 40px 0 rgba(224, 224, 224, 0.16),
    0 2px 20px 0 rgba(244, 220, 203, 0.6);
}
.additional-services-contact-form .contact-form-img {
  padding-top: 22px;
  max-width: 100%;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
}
.additional-services-contact-form .contact-form-img img {
  width: 100%;
}
.additional-services-contact-form .form_group {
  position: relative;
  padding: 15px 0 0;
  margin-top: 10px;
  width: 100%;
}
.additional-services-contact-form .form_group .error {
  color: red;
}
.additional-services-contact-form .form_field {
  font-family: inherit;
  width: 100%;
  border: 0;
  border-bottom: 1px solid #d2d2d2;
  outline: 0;
  font-size: 16px;
  color: #212121;
  padding: 7px 0;
  background: transparent;
  transition: border-color 0.2s;
}
.additional-services-contact-form .form_field::placeholder {
  color: transparent;
}
.additional-services-contact-form .form_field:placeholder-shown ~ .form_label {
  font-size: 16px;
  cursor: text;
  top: 26px;
  left: 16px;
}
.additional-services-contact-form label,
.additional-services-contact-form .form_field:focus ~ .form_label {
  position: absolute;
  top: 0;
  display: block;
  transition: 0.2s;
  font-size: 12px;
  color: #8d98c2;
  background: #fff;
  left: 16px;
  padding-left: 4px;
  padding-right: 4px;
  padding-bottom: 0;
  margin-bottom: 0;
  line-height: 1.5;
}
#insurance-type {
  padding: 10px 40px 10px 12px;
}
.mui-select {
  margin: 20px 0;
}

.mui-select label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: #6b6b6b;
  z-index: 999;
  font-size: 16px !important;
}

.select-container {
  position: relative;
  width: 100%;
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  padding: 10px 40px 10px 12px;
  font-size: 16px;
  color: #333;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  cursor: pointer;
  box-sizing: border-box;
  height: 48px;
  background-color: #fff;
  border: 1px solid #8d98c2;
  border-radius: 3px;
  background-color: #ffffff;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="10" viewBox="0 0 10 10"><polygon points="0,0 10,0 5,7" fill="#333"/></svg>');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 10px 10px;
}

select option {
  padding: 10px 12px;
  font-size: 16px;
  background-color: #fff !important;
  color: #333;
}

select option:hover {
  background-color: #f5f5f5; /* Light gray hover effect */
}
select:focus option {
  background-color: #f5f5f5; /* Ensures hover effect is maintained when focused */
}
select:focus {
  outline: none;
  border-color: #4a90e2;
  box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.3);
}

.arrow {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: #333;
  pointer-events: none;
}

.select-container:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 35px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #333;
  transform: translateY(-50%);
  pointer-events: none;
}
.additional-services-contact-form .form_field:focus ~ .form_label {
  color: #8d98c2;
  background: #fff;
  padding: 4px 10px;
  padding-bottom: 0;
  margin-bottom: 0;
  line-height: 1.5;
}
.additional-services-contact-form .form_field:focus {
  padding-bottom: 6px;
  border-bottom: 2px solid #8d98c2;
}
.additional-services-contact-form .form_label {
  pointer-events: none;
}
.additional-services-contact-form button#form-submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.additional-services-contact-form #message_field {
  height: 151px;
  border: 1px solid #8d98c2;
  resize: none;
  padding: 12px;
  box-sizing: border-box;
}

/*** Header ***/
.bundle-now {
  font-family: Lato;
  color: #3f51b5;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 300ms linear;
}
.bundle-now:hover {
  opacity: 0.5;
}

/*** Extra Help Section ***/
.extra-help-section {
  background: #fbfcfd;
  margin: 0 -40px 184px;
  position: relative;
  padding: 160px 40px;
}
.extra-help-section > img:first-child {
  position: absolute;
  top: -88px;
  left: 0;
}
.extra-help-section > img:nth-child(2) {
  position: absolute;
  bottom: -88px;
  right: 0;
}
@media (max-width: 991px) {
  .extra-help-section {
    background: #fff;
    padding: 0;
    margin: 0 0 72px;
    display: flex;
    align-items: flex-start;
    gap: 48px;
  }
  .extra-help-section > img {
    margin-right: -40px;
  }
}
@media (max-width: 600px) {
  .extra-help-section {
    flex-direction: column;
    background: #fbfcfd;
    margin: 0 -24px 56px;
    padding: 0 24px 72px;
    gap: 40px;
  }
  .extra-help-section > img {
    margin-top: -88px;
    align-self: flex-end;
    margin-right: -24px;
  }
}

.extra-help-title {
  font-weight: 600;
  font-size: 35px;
  line-height: 38px;
  color: #002679;
  max-width: 504px;
  margin: 0 auto 72px;
}
@media (max-width: 991px) {
  .extra-help-title {
    max-width: unset;
    font-size: 30px;
    margin-bottom: 24px;
  }
}
@media (max-width: 600px) {
  .extra-help-title {
    color: #000;
    font-size: 26px;
  }
}

.extra-help-text {
  margin: 0 auto;
  max-width: 504px;
  font-size: 23px;
  line-height: 25px;
}
.extra-help-text.mb-48 {
  margin-bottom: 48px;
}
@media (max-width: 991px) {
  .extra-help-text.mb-48 {
    margin-bottom: 24px;
  }
}
@media (max-width: 991px) {
  .extra-help-text {
    max-width: unset;
    font-size: 20px;
    line-height: 28px;
  }
}
@media (max-width: 991px) {
  .extra-help-text {
    font-size: 16px;
    line-height: 26px;
  }
}

/*** Floating Text ***/
.floating-text.bundled-floating-text {
  margin: 120px 0 174px;
}
.floating-text.bundled-floating-text h2 {
  width: 600px;
  max-width: 100%;
}
@media (max-width: 991px) {
  .floating-text.bundled-floating-text h2 {
    width: 400px;
    font-size: 35px;
    margin-bottom: 24px;
  }
}
.floating-text.bundled-floating-text h3 {
  width: 600px;
  max-width: 100%;
}
@media (max-width: 991px) {
  .floating-text.bundled-floating-text h3 {
    width: 400px;
    font-size: 20px;
  }
}
.floating-text.bundled-floating-text img {
  position: absolute;
  top: 48px;
  left: -40px;
}
@media (max-width: 991px) {
  .floating-text.bundled-floating-text img {
    top: 160px;
  }
}
@media (max-width: 600px) {
  .floating-text.bundled-floating-text img {
    left: -24px;
  }
}
@media (max-width: 991px) {
  .floating-text.bundled-floating-text {
    margin: 88px 0 136px;
  }
}

/*** Steps Section ***/
.bundle-steps-section.steps-section > img:first-child {
  top: -144px;
  right: -40px;
  left: unset;
}
@media (max-width: 991px) {
  .bundle-steps-section.steps-section > img:first-child {
    right: 0;
  }
}
.bundle-steps-section.steps-section > img:nth-child(2) {
  right: -16px;
  position: absolute;
  top: -208px;
}
.bundle-steps-section.steps-section > img:nth-child(3) {
  top: -208px;
  right: 0;
  position: absolute;
}
.bundle-steps-section.steps-section > img:last-child {
  bottom: -204px;
  left: -40px;
  right: unset;
  z-index: 1;
}
@media (max-width: 600px) {
  .bundle-steps-section.steps-section > img:last-child {
    left: -24px;
  }
}
.bundle-steps-section.steps-section .steps {
  width: 528px;
  margin-bottom: 136px;
}
@media (max-width: 991px) {
  .bundle-steps-section.steps-section .steps {
    width: 508px;
    margin-bottom: 96px;
  }
}
@media (max-width: 600px) {
  .bundle-steps-section.steps-section .steps {
    width: 236px;
    margin-bottom: 24px;
  }
}
@media (max-width: 991px) {
  .bundle-steps-section.steps-section .step-no {
    width: 68px;
    min-width: 68px;
    height: 68px;
    font-size: 40px;
  }
}
@media (max-width: 600px) {
  .bundle-steps-section.steps-section .step-no {
    width: 32px;
    min-width: 32px;
    height: 32px;
    font-size: 21px;
    position: relative;
  }
}
.bundle-steps-section.steps-section .step-title {
  font-size: 32px;
}
@media (max-width: 600px) {
  .bundle-steps-section.steps-section .step-title {
    font-size: 18px;
  }
}
.bundle-steps-section.steps-section .step-description {
  font-size: 23px;
}
@media (max-width: 600px) {
  .bundle-steps-section.steps-section .step-description {
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  .bundle-steps-section.steps-section {
    margin: 0 -24px;
  }
}
@media (max-width: 600px) {
  .bundle-steps-section.steps-section {
    background: #f9fafc;
    padding: 56px 24px;
    margin: 0 -24px;
  }
}

.bundle-steps-section-title {
  position: relative;
  width: 284px;
  margin: 0 auto 40px;
}
.bundle-steps-section-title > p {
  font-size: 27px;
  font-weight: 600;
  text-align: center;
}
.bundle-steps-section-title img {
  position: absolute;
  top: -8px;
}

/*** Two Column Grid Section ***/
.bundle-two-column-grid-section.two-column-grid-section {
  background: #fbfcfd;
  width: calc(100% + 80px);
  max-width: unset;
  margin: 0 -40px;
  padding: 204px 40px 136px;
  position: relative;
}
.bundle-two-column-grid-section.two-column-grid-section
  > img.mobile-hidden.tablet-hidden {
  position: absolute;
  top: 54px;
  right: 0;
}
.bundle-two-column-grid-section.two-column-grid-section
  > img.desktop-hidden.mobile-hidden {
  position: absolute;
  top: -32px;
  right: 0;
}
.bundle-two-column-grid-section.two-column-grid-section
  > img.desktop-hidden.tablet-hidden {
  position: absolute;
  top: 56px;
  left: -24px;
}
.bundle-two-column-grid-section.two-column-grid-section .two-column-grid {
  width: 1160px;
  max-width: 100%;
  margin: 0 auto;
}
.bundle-two-column-grid-section.two-column-grid-section
  .two-column-grid
  > div:nth-child(5) {
  border-bottom: none;
}
@media (max-width: 991px) {
  .bundle-two-column-grid-section.two-column-grid-section {
    background: #fff;
    padding: 0 40px 126px;
  }
}
@media (max-width: 600px) {
  .bundle-two-column-grid-section.two-column-grid-section {
    margin: 0 -24px;
    padding: 440px 24px 0;
    width: calc(100% + 32px);
  }
}

.bundle-two-column-grid-header {
  width: 1080px;
  max-width: 100%;
  margin: 0 auto 152px;
}
.bundle-two-column-grid-header > p:first-child {
  font-size: 52px;
  line-height: 63px;
  width: 600px;
  max-width: 100%;
  font-weight: 500;
}
@media (max-width: 991px) {
  .bundle-two-column-grid-header > p:first-child {
    font-size: 34px;
    line-height: 1.25;
    width: 400px;
  }
}
@media (max-width: 600px) {
  .bundle-two-column-grid-header > p:first-child {
    font-size: 26px;
    font-weight: 600px;
    line-height: 36px;
  }
}
.bundle-two-column-grid-header > p:last-child {
  font-size: 23px;
  width: 564px;
  max-width: 100%;
}
@media (max-width: 991px) {
  .bundle-two-column-grid-header > p:last-child {
    font-size: 20px;
    width: 400px;
  }
}
@media (max-width: 600px) {
  .bundle-two-column-grid-header > p:last-child {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .bundle-two-column-grid-header {
    margin: 0 auto 126px;
  }
}
@media (max-width: 600px) {
  .bundle-two-column-grid-header {
    margin: 0 auto 48px;
  }
}
.bundle-two-column-grid-header h3 {
  width: 85%;
}
@media (max-width: 1199px) {
  .bundle-two-column-grid-header h3 {
    width: 55%;
  }
}
@media (max-width: 991px) {
  .bundle-two-column-grid-header h3 {
    width: 100%;
  }
}

/*** Why Section ***/
.why-bundle-section {
  position: relative;
  padding-top: 164px;
  display: grid;
  row-gap: 112px;
  grid-template-columns: 614px 1fr;
  margin-bottom: 112px;
}
@media (max-width: 991px) {
  .why-bundle-section {
    grid-template-columns: 100%;
    row-gap: 152px;
    padding-top: 0;
    margin-bottom: 64px;
  }
}
@media (max-width: 600px) {
  .why-bundle-section {
    grid-template-columns: 100%;
    background: #f9fafc;
    margin: 88px -24px 0;
    padding: 264px 24px 100px;
    overflow: visible;
  }
}

.background-imgs {
  display: contents;
}

.full-background-img {
  position: absolute;
  left: 0;
  top: 44px;
  z-index: -1;
}

.full-background-right-img {
  position: absolute;
  right: -40px;
  top: 44px;
  z-index: 1;
}
@media (max-width: 991px) {
  .full-background-right-img {
    right: -24px;
  }
}

.left-background-img {
  position: absolute;
  left: -40px;
  top: 190px;
}
@media (max-width: 600px) {
  .left-background-img {
    left: -24px;
  }
}

.right-background-img {
  position: absolute;
  right: -40px;
  top: -136px;
}

.right-background-img-tablet {
  position: absolute;
  right: -40px;
  top: 12px;
}

.left-background-img-tablet {
  position: absolute;
  left: -40px;
  top: 332px;
  z-index: -1;
}

.right-background-img-mobile {
  position: absolute;
  top: -70px;
  right: 0;
}

.why-bundle-section-header {
  width: 530px;
  max-width: 100%;
  position: relative;
  justify-self: flex-end;
  padding-right: 24px;
  box-sizing: border-box;
}
.why-bundle-section-header p:first-child {
  font-size: 46px;
  font-weight: 500;
  margin-bottom: 56px;
  width: 506px;
  max-width: 100%;
}
@media (max-width: 991px) {
  .why-bundle-section-header p:first-child {
    font-size: 34px;
    margin-bottom: 16px;
    width: 400px;
  }
}
@media (max-width: 600px) {
  .why-bundle-section-header p:first-child {
    font-size: 27px;
  }
}
.why-bundle-section-header p:last-child {
  font-size: 26px;
  width: 494px;
  max-width: 100%;
}
@media (max-width: 991px) {
  .why-bundle-section-header p:last-child {
    font-size: 20px;
    width: 400px;
  }
}
@media (max-width: 600px) {
  .why-bundle-section-header p:last-child {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .why-bundle-section-header {
    justify-self: flex-start;
    width: 100%;
    padding-right: 0;
  }
}

.why-bundle-section-content > div {
  border-top: 1px solid #cdd2e9;
  margin-right: 20px;
  position: relative;
  padding: 64px 72px;
}
.why-bundle-section-content > div:first-child {
  border-top: none;
}
.why-bundle-section-content > div > img {
  width: 160px;
}
.why-bundle-section-content > div > div p:first-child {
  font-size: 25px;
}
.why-bundle-section-content > div p:last-child {
  font-size: 21px;
}
@media (max-width: 600px) {
  .why-bundle-section-content > div p:last-child {
    font-size: 13px;
    color: #8d98c2;
  }
}
@media (max-width: 600px) {
  .why-bundle-section-content > div p.fw-600.mt-40 {
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 8px;
    text-transform: uppercase;
  }
}
@media (max-width: 991px) {
  .why-bundle-section-content > div {
    display: grid;
    grid-template-columns: 140px 1fr;
    border-top: none;
    gap: 64px;
    margin-bottom: 72px;
    padding: 0;
    margin-right: 0;
  }
  .why-bundle-section-content > div > img {
    width: 120px;
  }
  .why-bundle-section-content > div:first-child > img,
  .why-bundle-section-content > div:last-child > img {
    width: 140px;
  }
  .why-bundle-section-content > div > div p.mt-40 {
    margin-top: 0;
  }
}
@media (max-width: 600px) {
  .why-bundle-section-content > div {
    display: flex;
    gap: 24px;
  }
}

.why-bundle-section-content .icon-container {
  width: 40px;
  min-width: 40px;
  height: 40px;
  border: 1px solid #3f3d56;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-bundle-section-content .icon-container .icon-background {
  background: #e6e6e6;
  border-radius: 100%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-bundle-section-content .icon-container .icon-background img {
  width: 16px;
  color: #0033ff;
}
.why-bundle-section-content .icon-container .icon-background .material-icons {
  font-size: 16px;
  color: #0033ff;
}

/*** Multi Car Discount Section ***/
.multi-car-discount-section {
  width: 1280px;
  max-width: 100%;
  display: flex;
  margin-left: -40px;
  margin-bottom: 80px;
  justify-content: space-around;
  gap: 104px;
  align-items: flex-end;
}
.multi-car-discount-section p:first-child {
  font-size: 52px;
  font-weight: 600;
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .multi-car-discount-section p:first-child {
    font-size: 35px;
  }
}
@media (max-width: 600px) {
  .multi-car-discount-section p:first-child {
    font-size: 27px;
  }
}
.multi-car-discount-section p:last-child {
  font-size: 28px;
  min-height: 204px;
}
@media (max-width: 991px) {
  .multi-car-discount-section p:last-child {
    font-size: 24px;
  }
}
@media (max-width: 600px) {
  .multi-car-discount-section p:last-child {
    font-size: 16px;
    min-height: unset;
  }
}
@media (max-width: 991px) {
  .multi-car-discount-section {
    justify-content: space-between;
    width: calc(100% + 40px);
    max-width: unset;
    gap: 56px;
    margin-bottom: 192px;
  }
}
@media (max-width: 600px) {
  .multi-car-discount-section {
    flex-direction: column;
    margin-left: 0;
    gap: 48px;
    width: 100%;
    margin-bottom: 72px;
  }
  .multi-car-discount-section img {
    align-self: flex-start;
    margin-top: -24px;
    margin-left: -24px;
    z-index: 1;
  }
}

/*** Bundle FAQs ***/
.bundle-faqs {
  margin: 80px 0 120px;
  position: relative;
}
.bundle-faqs .background-img {
  position: absolute;
  right: -40px;
  top: 0;
}
@media (max-width: 991px) {
  .bundle-faqs .background-img {
    right: -24px;
    margin: 80px 0;
  }
}
.bundle-faqs .logo-img {
  margin: 0 auto 56px;
  display: block;
}
@media (max-width: 991px) {
  .bundle-faqs .logo-img {
    height: 46px;
    margin: 0 auto 44px;
  }
}
@media (max-width: 600px) {
  .bundle-faqs .logo-img {
    margin: 0 auto 32px;
  }
}
@media (max-width: 991px) {
  .bundle-faqs .medium-text.text-center {
    margin-bottom: 8px;
  }
}
@media (max-width: 600px) {
  .bundle-faqs .medium-text.text-center {
    text-transform: uppercase;
  }
}
.bundle-faqs ul {
  list-style: none;
  width: 736px;
  max-width: 100%;
  margin: 0 auto;
}
@media (max-width: 600px) {
  .bundle-faqs ul {
    box-shadow: 0 2px 24px 0 #dadff6, 0 2px 40px 0 #f9fafc;
    border-radius: 9px;
    background: #fff;
    padding: 12px 24px;
  }
}

.bundle-faqs-title {
  font-size: 43px;
  margin-bottom: 48px;
  text-align: center;
}
@media (max-width: 991px) {
  .bundle-faqs-title {
    font-size: 35px;
  }
}
@media (max-width: 600px) {
  .bundle-faqs-title {
    font-size: 28px;
    font-weight: 300;
  }
}

.bundle-faq {
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 2px 24px 0 #dadff6, 0 2px 40px 0 #f9fafc;
  padding: 20px 24px;
  margin-bottom: 20px;
}
@media (max-width: 600px) {
  .bundle-faq {
    box-shadow: none;
    border-bottom: 1px solid #cdd2e9;
    border-radius: 0;
    padding: 20px 0;
  }
  .bundle-faq:last-child {
    border-bottom: none;
    margin-bottom: 0;
  }
}

.bundle-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
@media (max-width: 600px) {
  .bundle-faq-question .material-icons {
    color: #0033ff;
    margin-left: 8px;
  }
}

.bundle-faq-answer {
  display: none;
  font-size: 18px;
  margin-top: 20px;
}

.bundle-faq.open .bundle-faq-answer {
  display: block;
}

.bundle-faq .show-less,
.bundle-faq.open .show-more {
  display: none;
}

.bundle-faq.open .show-less {
  display: block;
}

.agency-contact-wrapper .contact-form {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
}
@media (max-width: 768px) {
  .agency-contact-wrapper .contact-form {
    flex-wrap: wrap-reverse;
    gap: 32px;
  }
}
.agency-contact-wrapper .contact-form input[type="text"] {
  padding: 12px;
  box-sizing: border-box;
  height: 48px;
  width: 100%;
  border: 1px solid #8d98c2;
  border-radius: 3px;
  background-color: #ffffff;
}
.agency-contact-wrapper .contact-form .error.form_field {
  border: 1px solid red;
}
.agency-contact-wrapper .contact-form .flex {
  display: flex;
  gap: 16px;
  width: 100%;
  justify-content: space-between;
}
.agency-contact-wrapper .contact-form .contact-option {
  display: flex;
  height: 32px;
  gap: 8px;
  align-items: baseline;
}
.agency-contact-wrapper .contact-form .button {
  height: 48px;
  width: 180px;
  border-radius: 3px;
  border: none;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
  line-height: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.agency-contact-wrapper .contact-form .button:hover {
  cursor: pointer;
  opacity: 0.7;
}
.agency-contact-wrapper .contact-form-paper {
  padding: 48px;
  width: 700px;
  max-width: 100%;
  border-radius: 12px;
  background-color: #ffffff;
  box-shadow: 0 2px 40px 0 rgba(224, 224, 224, 0.16),
    0 2px 20px 0 rgba(244, 220, 203, 0.6);
}
.agency-contact-wrapper .contact-form-img {
  padding-top: 22px;
  max-width: 100%;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
}
.agency-contact-wrapper .contact-form-img img {
  width: 100%;
}
.agency-contact-wrapper .form_group {
  position: relative;
  padding: 15px 0 0;
  margin-top: 10px;
  width: 100%;
}
.agency-contact-wrapper .form_group .error {
  color: red;
}
.agency-contact-wrapper .form_field {
  font-family: inherit;
  width: 100%;
  border: 0;
  border-bottom: 1px solid #d2d2d2;
  outline: 0;
  font-size: 16px;
  color: #212121;
  padding: 7px 0;
  background: transparent;
  transition: border-color 0.2s;
}
.agency-contact-wrapper .form_field::placeholder {
  color: transparent;
}
.agency-contact-wrapper .form_field:placeholder-shown ~ .form_label {
  font-size: 16px;
  cursor: text;
  top: 26px;
  left: 16px;
}
.agency-contact-wrapper label,
.agency-contact-wrapper .form_field:focus ~ .form_label {
  position: absolute;
  top: 0;
  display: block;
  transition: 0.2s;
  font-size: 12px;
  color: #8d98c2;
  background: #fff;
  left: 16px;
  padding-left: 4px;
  padding-right: 4px;
  padding-bottom: 0;
  margin-bottom: 0;
  line-height: 1.5;
}
.agency-contact-wrapper .form_field:focus ~ .form_label {
  color: #8d98c2;
  background: #fff;
  padding: 4px 10px;
  padding-bottom: 0;
  margin-bottom: 0;
  line-height: 1.5;
}
.agency-contact-wrapper .form_field:focus {
  padding-bottom: 6px;
  border-bottom: 2px solid #8d98c2;
}
.agency-contact-wrapper .form_label {
  pointer-events: none;
}
.agency-contact-wrapper button#form-submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.agency-contact-wrapper #message_field {
  height: 151px;
  border: 1px solid #8d98c2;
  resize: none;
  padding: 12px;
  box-sizing: border-box;
}

.thank-you-state {
  display: grid;
  font-family: Montserrat;
  grid-template-columns: 1fr 1px 1fr;
  justify-items: center;
  margin-bottom: 120px;
}
@media (max-width: 922px) {
  .thank-you-state {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .thank-you-state .line {
    display: none;
  }
  .thank-you-state .reach-out {
    max-width: 320px;
  }
  .thank-you-state .thank-you-panel {
    padding-top: 60px;
  }
}
.thank-you-state .thank-you-panel {
  text-align: center;
  padding-top: 60px;
}
.thank-you-state .thank-you-panel img {
  margin-top: 40px;
}
.thank-you-state .we-received,
.thank-you-state .ins-offer {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 24px;
}
.thank-you-state .we-received {
  margin: 20px;
}
.thank-you-state .ins-offer {
  width: 327px;
  margin: auto;
  margin-bottom: 30px;
}
.thank-you-state .reach-out {
  height: 52px;
  width: 374px;
  margin: auto;
}
.thank-you-state .options-btn-wrapper .confirm-wrapper {
  display: flex;
  gap: 16px;
}
.thank-you-state .options-btn-wrapper {
  flex-direction: column;
}
.thank-you-state .options-btn-wrapper a.options-link.bundle-btn {
  min-width: 100%;
}
.thank-you-state .options-btn-wrapper a.options-link {
  height: 111px;
  width: 155px;
}
.thank-you-state #bundle-link {
  width: 322px;
}
.thank-you-state .line {
  background-color: grey;
  color: grey;
  height: 436px;
  width: 1px;
}

.thank-you-state .coverages-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 16px;
}

.thank-you-state .coverages-grid > div:first-child {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 16px;
}

.thank-you-state .coverages-grid > div:nth-child(2) {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 16px;
}

.thank-you-state .coverages-grid > div:nth-child(2) > a {
  width: 100%;
}

.thank-you-state .coming-soon {
  opacity: 0.4;
  font-size: 14px;
}

/*** Three Cards Grid ***/
.home-landing-three-cards-grid.three-cards-grid {
  gap: 44px;
  justify-content: center;
}
.home-landing-three-cards-grid.three-cards-grid .card {
  width: 320px;
}
@media (max-width: 600px) {
  .home-landing-three-cards-grid.three-cards-grid .card {
    width: unset;
  }
}
.home-landing-three-cards-grid.three-cards-grid .card-title {
  height: unset;
}
@media (max-width: 991px) {
  .home-landing-three-cards-grid.three-cards-grid {
    gap: 24px;
  }
}
@media (max-width: 600px) {
  .home-landing-three-cards-grid.three-cards-grid {
    gap: 44px;
  }
}

/*** Best Way Section ***/
.best-way {
  position: relative;
  margin-bottom: 148px;
}
.best-way > img:first-child {
  position: absolute;
  left: -40px;
  top: -224px;
  z-index: -1;
}
.best-way > img:nth-child(2) {
  position: absolute;
  right: -40px;
  top: 144px;
}
@media (max-width: 991px) {
  .best-way > img:nth-child(2) {
    height: 613px;
  }
}
@media (max-width: 991px) {
  .best-way {
    margin-bottom: 112px;
  }
}
@media (max-width: 600px) {
  .best-way {
    margin: 56px 0 96px;
  }
  .best-way > img {
    margin-left: -40px;
  }
}

.best-way-title {
  font-size: 32px;
  font-weight: 600;
  width: 1048px;
  max-width: 100%;
  margin: 0 auto 96px;
}
@media (max-width: 991px) {
  .best-way-title {
    font-size: 24px;
    color: #002679;
    margin-bottom: 40px;
  }
}

.best-way-title-mobile {
  margin: 56px 0 64px;
}
.best-way-title-mobile img {
  margin: 0 auto;
  display: block;
}
.best-way-title-mobile hr {
  width: 1px;
  height: 24px;
  margin: 12px auto;
  background: #a9b0cd;
}
.best-way-title-mobile p {
  font-size: 20px;
  text-align: center;
}

.best-way-content {
  width: 1048px;
  max-width: 100%;
  margin: 0 auto;
}
.best-way-content > div {
  max-width: 528px;
}
@media (max-width: 991px) {
  .best-way-content > div {
    max-width: 336px;
    margin-bottom: 48px;
  }
}
@media (max-width: 600px) {
  .best-way-content > div {
    max-width: 100%;
    margin-bottom: 32px;
  }
}

.best-way-section-title {
  font-size: 28px;
  margin-bottom: 28px;
}
@media (max-width: 991px) {
  .best-way-section-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
  }
  .best-way-section-title + .medium-text {
    font-size: 16px;
  }
}
@media (max-width: 600px) {
  .best-way-section-title {
    font-size: 18px;
  }
  .best-way-section-title + .medium-text {
    color: #8d98c2;
    font-size: 13px;
  }
}

/*** Two Column Grid Wrapper ***/
.two-column-grid-section-wrapper {
  background: #f9fafc;
  margin: 0 -40px;
  padding: 96px 40px 72px;
}
.two-column-grid-section-wrapper .two-column-grid-title {
  max-width: 814px;
}
@media (max-width: 600px) {
  .two-column-grid-section-wrapper .two-column-grid-title {
    font-weight: 600;
  }
}
.two-column-grid-section-wrapper .two-column-grid > div:nth-child(5) {
  border-bottom: none;
}
.two-column-grid-section-wrapper .two-column-grid-section-mobile-img {
  display: flex;
  justify-content: flex-end;
  margin-right: -24px;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .two-column-grid-section-wrapper {
    background: #fff;
    padding: 0 40px;
  }
}
@media (max-width: 600px) {
  .two-column-grid-section-wrapper {
    margin: 0 -24px;
    padding: 0 24px;
  }
}

/*** Coverage ***/
.coverage-section {
  margin: 168px 0 120px;
  position: relative;
}
.coverage-section > img {
  position: absolute;
  left: -40px;
  top: 56px;
}
@media (max-width: 600px) {
  .coverage-section > img {
    position: unset;
    margin-left: -24px;
    margin-bottom: 64px;
  }
}
@media (max-width: 991px) {
  .coverage-section {
    margin-top: 104px;
    margin-bottom: 96px;
  }
}

.coverage-section-content {
  max-width: 1112px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 56px;
}
@media (max-width: 991px) {
  .coverage-section-content {
    flex-direction: column;
    gap: 80px;
  }
}

.coverage-section-title {
  font-size: 58px;
  font-weight: 500;
  width: 438px;
  max-width: 100%;
}
@media (max-width: 991px) {
  .coverage-section-title {
    font-size: 34px;
    text-align: center;
    width: 100%;
  }
}

.coverages .flex {
  align-items: flex-start;
  border-bottom: 1px solid #cdd2e9;
  padding: 44px 40px;
}
.coverages .flex:first-child {
  border-top: 1px solid #cdd2e9;
}
@media (max-width: 991px) {
  .coverages .flex:first-child {
    border-top: none;
    padding-top: 0;
  }
}
@media (max-width: 991px) {
  .coverages .flex {
    border-bottom: none;
    padding: 96px 0 0 16px;
    gap: 40px;
  }
}
@media (max-width: 600px) {
  .coverages .flex {
    gap: 0;
    padding: 32px 0 0 0;
  }
  .coverages .flex .large-text {
    font-size: 18px;
    text-transform: uppercase;
  }
  .coverages .flex .large-text + p {
    font-size: 13px;
    color: #8a94ba;
  }
}
.coverages img {
  width: 84px;
  min-width: 84px;
}
@media (max-width: 991px) {
  .coverages img {
    width: 96px;
    min-width: 96px;
  }
}
.coverages .icon-container {
  height: 40px;
  width: 40px;
  min-width: 40px;
  border: 1px solid #3f3d56;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.coverages .icon-container .icon-background {
  background: #e6e6e6;
  border-radius: 100%;
  height: 32px;
  width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.coverages .icon-container .icon-background .icon {
  font-size: 22px;
  color: #0033ff;
}

/*** Other Coverage ***/
.other-coverage-section {
  background: #f9fafc;
  margin: 0 -40px;
  padding: 64px 40px 96px;
}
@media (max-width: 600px) {
  .other-coverage-section {
    margin: 0 -24px;
    padding: 64px 24px 96px;
  }
}

.other-coverage-section-content {
  width: 1024px;
  max-width: 100%;
  margin: 0 auto;
}
.other-coverage-section-content > .flex {
  gap: 56px;
}
@media (max-width: 991px) {
  .other-coverage-section-content > .flex {
    gap: 24px;
  }
}
@media (max-width: 600px) {
  .other-coverage-section-content > .flex {
    flex-direction: column;
    gap: 32px;
  }
}
.other-coverage-section-content .card {
  padding: 32px 48px;
  width: 100%;
  font-size: 15px;
}

@media (max-width: 991px) {
  .other-coverage-section-content .xxl-text {
    font-size: 34px;
    font-weight: 500;
    text-align: center;
  }
}
@media (max-width: 600px) {
  .other-coverage-section-content .xxl-text {
    font-size: 26px;
    font-weight: 300;
  }
}

.other-coverage-section-content .card .flex {
  align-items: flex-start;
}
@media (max-width: 991px) {
  .other-coverage-section-content .card .flex {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
  }
  .other-coverage-section-content .card .flex > img.mr-48 {
    margin-right: 0;
  }
  .other-coverage-section-content .card .flex .fw-700 {
    font-size: 20px;
  }
  .other-coverage-section-content .card .flex p:last-child {
    font-size: 16px;
  }
}
@media (max-width: 600px) {
  .other-coverage-section-content .card .flex > img {
    width: 48px;
  }
  .other-coverage-section-content .card .flex .fw-700 {
    font-size: 18px;
  }
  .other-coverage-section-content .card .flex p:last-child {
    font-size: 15px;
  }
}

/*** Steps Section ***/
.home-landing-steps-section.steps-section {
  padding-top: 88px;
}
.home-landing-steps-section.steps-section > img:first-child {
  top: -32px;
  z-index: -1;
}
@media (max-width: 991px) {
  .home-landing-steps-section.steps-section > img:nth-child(2) {
    position: absolute;
    top: 120px;
    left: -40px;
    z-index: -1;
  }
}
.home-landing-steps-section.steps-section .steps {
  margin-bottom: 112px;
}
@media (max-width: 991px) {
  .home-landing-steps-section.steps-section .steps {
    margin-bottom: 80px;
  }
}
.home-landing-steps-section.steps-section
  .steps-section-tablet-background-right {
  bottom: 64px;
}

/*** Why Section ***/
.why-section {
  position: relative;
  padding: 208px 0 184px;
}
.why-section img {
  position: absolute;
  right: -40px;
  top: 0;
}
@media (max-width: 991px) {
  .why-section img {
    height: 358px;
  }
}
@media (max-width: 600px) {
  .why-section img {
    position: unset;
    margin-left: -24px;
    margin-top: -180px;
    height: auto;
  }
}
.why-section p:first-child {
  font-size: 28px;
  margin-bottom: 16px;
}
@media (max-width: 991px) {
  .why-section p:first-child {
    font-size: 24px;
  }
}
@media (max-width: 600px) {
  .why-section p:first-child {
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    margin: 64px 0 16px;
  }
}
.why-section p:last-child {
  font-size: 52px;
  font-weight: 600;
}
@media (max-width: 991px) {
  .why-section p:last-child {
    font-size: 41px;
    color: #002679;
  }
}
@media (max-width: 600px) {
  .why-section p:last-child {
    font-size: 27px;
    color: #000;
    text-align: center;
  }
}
@media (max-width: 991px) {
  .why-section {
    padding: 120px 0 104px;
  }
  .why-section .large-container {
    margin-bottom: 0;
  }
}
@media (max-width: 600px) {
  .why-section {
    background: #f9fafc;
    padding: 0 24px 64px;
    margin: 260px -24px 64px;
  }
}

/*** Best Section ***/
.best-section {
  position: relative;
  margin-top: 64px;
}
.best-section > img:first-child {
  position: absolute;
  left: -40px;
  z-index: -1;
  margin-top: -64px;
}
@media (max-width: 991px) {
  .best-section {
    margin-bottom: 120px;
  }
}
@media (max-width: 600px) {
  .best-section {
    margin-bottom: 80px;
  }
}

.best-section-content {
  width: 984px;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
}
@media (max-width: 600px) {
  .best-section-content {
    flex-direction: column;
  }
}

.best-section-content-left {
  position: relative;
  top: -24px;
  min-width: 624px;
  font-size: 25px;
}
.best-section-content-left > div {
  width: 408px;
  max-width: 100%;
  position: absolute;
  bottom: 104px;
  left: 80px;
}
@media (max-width: 991px) {
  .best-section-content-left > div {
    bottom: 88px;
  }
}
@media (max-width: 600px) {
  .best-section-content-left > div {
    position: unset;
  }
}
@media (max-width: 991px) {
  .best-section-content-left {
    left: -40px;
    font-size: 24px;
  }
  .best-section-content-left p.fw-600 {
    width: 246px;
  }
  .best-section-content-left p.fw-600 + p {
    font-size: 16px;
    width: 246px;
  }
}
@media (max-width: 600px) {
  .best-section-content-left {
    min-width: unset;
    position: unset;
  }
  .best-section-content-left p.fw-600 {
    width: unset;
    font-size: 16px;
    font-weight: 500;
  }
}

.best-section-content-right {
  position: relative;
  margin-left: -124px;
  min-width: 456px;
}
.best-section-content-right > div {
  position: absolute;
}
.best-section-content-right > div:nth-child(1) {
  top: 64px;
}
.best-section-content-right > div:nth-child(1) > div {
  position: absolute;
  width: 320px;
  top: 104px;
  left: 80px;
}
@media (max-width: 991px) {
  .best-section-content-right > div:nth-child(1) > div {
    width: 220px;
    top: 96px;
  }
  .best-section-content-right > div:nth-child(1) > div p.fw-700 {
    font-size: 20px;
    margin-bottom: 16px;
  }
  .best-section-content-right > div:nth-child(1) > div p.fw-600 {
    font-weight: 400;
  }
}
@media (max-width: 600px) {
  .best-section-content-right > div:nth-child(1) > div {
    position: unset;
    width: 250px;
    margin-bottom: 32px;
  }
}
.best-section-content-right > div:nth-child(2) {
  bottom: 152px;
}
.best-section-content-right > div:nth-child(2) > div {
  position: absolute;
  top: 128px;
  width: 320px;
  left: 80px;
}
@media (max-width: 991px) {
  .best-section-content-right > div:nth-child(2) > div {
    width: 220px;
    top: 108px;
  }
}
@media (max-width: 600px) {
  .best-section-content-right > div:nth-child(2) > div {
    position: unset;
    width: auto;
    margin-bottom: 32px;
  }
}
@media (max-width: 991px) {
  .best-section-content-right > div:nth-child(2) {
    bottom: 112px;
  }
}
.best-section-content-right > div:nth-child(3) {
  bottom: -96px;
  z-index: 1;
}
.best-section-content-right > div:nth-child(3) > div {
  position: absolute;
  top: 136px;
  width: 320px;
  left: 80px;
}
@media (max-width: 991px) {
  .best-section-content-right > div:nth-child(3) > div {
    width: 220px;
    top: 80px;
  }
}
@media (max-width: 600px) {
  .best-section-content-right > div:nth-child(3) > div {
    position: unset;
    width: auto;
  }
}
@media (max-width: 991px) {
  .best-section-content-right > div:nth-child(3) {
    bottom: -40px;
  }
}
@media (max-width: 991px) {
  .best-section-content-right > div p.fw-700 {
    font-size: 20px;
    margin-bottom: 16px;
  }
  .best-section-content-right > div p.fw-600 {
    font-weight: 400;
  }
}
@media (max-width: 600px) {
  .best-section-content-right > div {
    position: unset;
  }
  .best-section-content-right > div p.fw-700 {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
    text-transform: uppercase;
  }
  .best-section-content-right > div p.fw-600 {
    font-size: 13px;
    color: #8a94ba;
    font-weight: 500;
  }
}
.best-section-content-right > img {
  position: absolute;
  top: -180px;
  right: -24px;
}
@media (max-width: 991px) {
  .best-section-content-right {
    margin-left: -288px;
    min-width: 392px;
  }
}
@media (max-width: 600px) {
  .best-section-content-right {
    min-width: unset;
    margin-left: 0;
    margin-top: 80px;
  }
}

.best-five {
  position: absolute;
  right: -40px;
  bottom: 0;
}

/*** Extra Help ***/
.extra-help-home-section {
  margin: 140px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 1112px;
  max-width: 100%;
}
@media (max-width: 991px) {
  .extra-help-home-section {
    margin: 96px auto 40px;
  }
  .extra-help-home-section > img {
    margin-left: -40px;
  }
}
@media (max-width: 600px) {
  .extra-help-home-section {
    flex-direction: column;
    gap: 64px;
    margin-bottom: 72px;
    align-items: flex-start;
  }
  .extra-help-home-section > img {
    margin-left: -24px;
  }
}

.extra-help-home-title {
  font-size: 35px;
}
@media (max-width: 991px) {
  .extra-help-home-title {
    font-size: 30px;
    font-weight: 600;
    color: #002679;
    margin-bottom: 24px;
  }
}
@media (max-width: 600px) {
  .extra-help-home-title {
    font-size: 25px;
    color: #000;
  }
  .extra-help-home-title + .large-text {
    font-size: 16px;
    line-height: 26px;
  }
}

/*** Header Section Styles ***/
.landing-page-header-section {
  margin: 88px auto 0;
  padding-bottom: 96px;
  position: relative;
}
.landing-page-header-section > img {
  position: absolute;
  z-index: -1;
}
.landing-page-header-section .landing-page-header-img-left > img {
  position: absolute;
}
.landing-page-header-section .landing-page-header-img-left > img:nth-child(1) {
  left: -40px;
  top: 160px;
  z-index: 1;
}
.landing-page-header-section .landing-page-header-img-left > img:nth-child(2) {
  left: -40px;
  top: 0;
}
.landing-page-header-section .landing-page-header-img-left > img:nth-child(3) {
  left: 144px;
  top: 106px;
}
.landing-page-header-section .landing-page-header-img-left > img:nth-child(4) {
  left: 32px;
  bottom: 112px;
}
.landing-page-header-section .landing-page-header-img-right > img {
  position: absolute;
}
.landing-page-header-section .landing-page-header-img-right > img:nth-child(1) {
  right: -40px;
  bottom: -124px;
}
.landing-page-header-section .landing-page-header-img-right > img:nth-child(2) {
  right: -40px;
  top: 80px;
}
.landing-page-header-section .landing-page-header-img-right > img:nth-child(3) {
  right: 64px;
  top: 4px;
}
.landing-page-header-section .landing-page-header-img-right > img:nth-child(4) {
  right: 80px;
  top: 116px;
}
.landing-page-header-section .landing-page-header-img-right > img:nth-child(5) {
  right: 80px;
  bottom: 112px;
}
.landing-page-header-section .landing-page-header-text {
  max-width: 720px;
  font-size: 40px;
  margin: 0 auto;
  text-align: center;
  font-weight: 500;
  position: relative;
  z-index: 1;
}
.landing-page-header-section .landing-page-header-text > img {
  position: absolute;
  right: 0;
  --animate-delay: 500ms;
}
@media (max-width: 991px) {
  .landing-page-header-section .landing-page-header-text > img {
    right: -24px;
  }
}
@media (max-width: 991px) {
  .landing-page-header-section .landing-page-header-text {
    font-size: 30px;
    width: 548px;
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .landing-page-header-section .landing-page-header-text {
    font-size: 26px;
    text-align: left;
  }
  .landing-page-header-section .landing-page-header-text h1 {
    font-weight: 300;
  }
}
.landing-page-header-section .landing-page-subheader-text {
  width: 516px;
  max-width: 100%;
  margin: 16px auto 48px;
  text-align: center;
}
@media (max-width: 991px) {
  .landing-page-header-section .landing-page-subheader-text {
    font-size: 14px;
    line-height: 24px;
  }
}
@media (max-width: 600px) {
  .landing-page-header-section .landing-page-subheader-text {
    font-size: 13px;
    line-height: 22px;
    text-align: left;
  }
}
@media (max-width: 600px) {
  .landing-page-header-section {
    margin: 48px 0 auto;
    padding-bottom: 56px;
  }
}

.landing-page-insurance-options {
  flex-direction: column;
  gap: 16px;
  width: 584px;
  max-width: 100%;
  margin: 0 auto;
}
.landing-page-insurance-options > div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
}
.landing-page-insurance-options > div:nth-child(1) > .options-link {
  width: 33%;
}
.landing-page-insurance-options > div:nth-child(2) > .options-link {
  width: 50%;
}
@media (max-width: 600px) {
  .landing-page-insurance-options > div {
    gap: 12px;
  }
}
.landing-page-insurance-options .options-link {
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  text-decoration: none;
}
.landing-page-insurance-options .options-link .best-value {
  background: #eff1fb;
  border-radius: 2px;
  color: #0033ff;
  font-size: 8px;
  text-transform: uppercase;
  margin-top: -8px;
  margin-bottom: 8px;
  letter-spacing: 2.29px;
  padding: 4px 12px;
}
@media (max-width: 600px) {
  .landing-page-insurance-options .options-link .best-value {
    background: transparent;
    margin-top: 12px;
    margin-bottom: 0;
    letter-spacing: 1.5px;
  }
}
.landing-page-insurance-options .options-link .coming-soon {
  border-radius: 2px;
  color: #0033ff;
  font-size: 8px;
  text-transform: uppercase;
  margin-top: -8px;
  margin-bottom: 8px;
  letter-spacing: 2.29px;
  padding: 4px 12px;
}
@media (max-width: 600px) {
  .landing-page-insurance-options .options-link .coming-soon {
    margin-top: 12px;
    margin-bottom: 0;
  }
}
.landing-page-insurance-options .options-link .options-link-title {
  font-weight: 500;
  font-size: 19px;
  text-align: center;
  color: #000000;
  line-height: 19px;
}
.landing-page-insurance-options .options-link .options-link-title span {
  display: block;
  font-size: 14px;
}
@media (max-width: 600px) {
  .landing-page-insurance-options .options-link .options-link-title span {
    font-size: 12px;
  }
}
@media (max-width: 600px) {
  .landing-page-insurance-options .options-link .options-link-title {
    font-size: 14px;
    line-height: 14px;
  }
}
@media (max-width: 600px) {
  .landing-page-insurance-options .options-link {
    flex-direction: column;
    padding: 16px 4px;
    gap: 0;
  }
  .landing-page-insurance-options .options-link.bundle-btn {
    flex-direction: column-reverse;
  }
}
.landing-page-insurance-options .disabled {
  cursor: not-allowed;
}
.landing-page-insurance-options .disabled .bundle-options-link-icons {
  opacity: 0.2;
}
.landing-page-insurance-options .disabled .options-link-title {
  color: #dadff6;
}
.landing-page-insurance-options .material-icons {
  color: #0033ff;
  margin-bottom: 12px;
}
@media (max-width: 991px) {
  .landing-page-insurance-options {
    width: 456px;
    gap: 12px;
  }
}

/*** Full Width Banner Styles ***/
.landing-page-full-width-banner.full-width-banner {
  height: 464px;
  text-align: center;
}
.landing-page-full-width-banner.full-width-banner > img {
  height: 100%;
}
@media (max-width: 991px) {
  .landing-page-full-width-banner.full-width-banner {
    height: 416px;
  }
}
@media (max-width: 600px) {
  .landing-page-full-width-banner.full-width-banner {
    height: auto;
    padding: 64px 24px;
  }
}

/*** Three Cards Grid Section ***/
.three-cards-grid-container {
  margin: 104px auto 232px;
}
.three-cards-grid-container > .flex {
  gap: 48px;
  justify-content: center;
  margin-bottom: 64px;
}
.three-cards-grid-container > .flex img {
  margin-left: -40px;
}
@media (max-width: 991px) {
  .three-cards-grid-container > .flex .text-center {
    text-align: left;
  }
}
@media (max-width: 991px) {
  .three-cards-grid-container > .flex {
    margin-bottom: 48px;
  }
}
.three-cards-grid-container .three-cards-grid {
  margin: 0 auto;
  gap: 48px;
}
.three-cards-grid-container .three-cards-grid .card {
  width: 33.3%;
  height: auto;
  padding-bottom: 56px;
}
@media (max-width: 991px) {
  .three-cards-grid-container .three-cards-grid .card .icon-container {
    width: 56px;
    min-width: 56px;
    height: 56px;
    margin: 0;
  }
}
@media (max-width: 991px) {
  .three-cards-grid-container .three-cards-grid .card .icon-container {
    width: 40px;
    min-width: 40px;
    height: 40px;
  }
}
@media (max-width: 991px) {
  .three-cards-grid-container
    .three-cards-grid
    .card
    .icon-container
    .icon-background {
    height: 34px;
    width: 34px;
  }
}
.three-cards-grid-container .three-cards-grid .card .card-title {
  font-weight: 600;
}
@media (max-width: 991px) {
  .three-cards-grid-container .three-cards-grid .card .card-title {
    text-align: left;
    font-size: 23px;
    height: auto;
    margin-bottom: 16px;
  }
}
@media (max-width: 600px) {
  .three-cards-grid-container .three-cards-grid .card .card-title {
    font-size: 18px;
    margin-bottom: 8px;
  }
}
@media (max-width: 600px) {
  .three-cards-grid-container .three-cards-grid .card .card-description {
    color: #8d98c2;
    font-size: 13px;
    font-weight: 500;
  }
}
@media (max-width: 991px) {
  .three-cards-grid-container .three-cards-grid .card {
    box-shadow: none;
    padding: 0;
    display: flex;
    width: 560px;
    margin: 0 auto;
    max-width: 100%;
    gap: 32px;
  }
}
@media (max-width: 991px) {
  .three-cards-grid-container .three-cards-grid {
    flex-direction: column;
  }
}
@media (max-width: 600px) {
  .three-cards-grid-container .three-cards-grid {
    background: transparent;
    padding: 0;
  }
}
@media (max-width: 991px) {
  .three-cards-grid-container {
    margin-bottom: 96px;
  }
}
@media (max-width: 600px) {
  .three-cards-grid-container {
    margin-top: 88px;
    margin-bottom: 56px;
  }
}

/*** Carousel Section Styles ***/
.landing-page-carousel {
  margin: 0 -40px;
}
.landing-page-carousel .slider {
  width: 100vw;
  height: auto;
}
@media (max-width: 600px) {
  .landing-page-carousel .slider .carrier-wrapper {
    width: 152px;
  }
  .landing-page-carousel .slider .carrier-wrapper img {
    height: 28px;
  }
}
@media (max-width: 600px) {
  .landing-page-carousel {
    margin: 0 -24px;
  }
}

/*** Steps Section Styles ***/
.landing-page-steps-section.steps-section {
  margin-top: 212px;
}
.landing-page-steps-section.steps-section .steps {
  width: 688px;
  margin: 0 auto 104px;
}
@media (max-width: 991px) {
  .landing-page-steps-section.steps-section .steps {
    width: 564px;
  }
}
@media (max-width: 600px) {
  .landing-page-steps-section.steps-section .steps {
    margin-bottom: 0;
  }
}
.landing-page-steps-section.steps-section .step {
  position: relative;
}
.landing-page-steps-section.steps-section .step-one img {
  position: absolute;
  left: 0;
  top: 96px;
}
.landing-page-steps-section.steps-section .final-step > div > img {
  position: absolute;
  top: -24px;
  left: 32px;
  height: 220px;
}
.landing-page-steps-section.steps-section .step-no {
  width: 64px;
  min-width: 64px;
  height: 64px;
}
@media (max-width: 991px) {
  .landing-page-steps-section.steps-section .step-no {
    width: 56px;
    min-width: 56px;
    height: 56px;
  }
}
@media (max-width: 600px) {
  .landing-page-steps-section.steps-section .step-no {
    width: 40px;
    min-width: 40px;
    height: 40px;
  }
}
.landing-page-steps-section.steps-section > img:last-child {
  z-index: 1;
  bottom: -240px;
}
@media (max-width: 991px) {
  .landing-page-steps-section.steps-section > img:last-child {
    height: 355px;
  }
}
@media (max-width: 600px) {
  .landing-page-steps-section.steps-section > img:last-child {
    right: -24px;
  }
}
@media (max-width: 600px) {
  .landing-page-steps-section.steps-section {
    background: #f9fafc;
    margin: 56px -24px 0;
    padding: 64px 24px 132px;
  }
}

.landing-page-steps-section-img-left img {
  position: absolute;
}
.landing-page-steps-section-img-left img:nth-child(1) {
  top: -12px;
  z-index: 1;
  left: 16px;
}
.landing-page-steps-section-img-left img:nth-child(2) {
  left: -40px;
}
.landing-page-steps-section-img-left img:nth-child(3) {
  top: 100px;
  z-index: -1;
  left: -40px;
}

.landing-page-steps-section-title {
  width: 564px;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}
.landing-page-steps-section-title h2 {
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 12px;
  text-align: center;
}
@media (max-width: 600px) {
  .landing-page-steps-section-title h2 {
    font-size: 27px;
    text-align: left;
  }
}
.landing-page-steps-section-title img {
  position: absolute;
  left: -24px;
  top: 8px;
}
@media (max-width: 600px) {
  .landing-page-steps-section-title {
    margin-bottom: 48px;
  }
}

.landing-page-steps-section-img-right {
  top: -280px;
}
.landing-page-steps-section-img-right img {
  position: absolute;
}
.landing-page-steps-section-img-right img:nth-child(1) {
  top: -80px;
  right: -40px;
}
.landing-page-steps-section-img-right img:nth-child(2) {
  right: -40px;
}
.landing-page-steps-section-img-right img:nth-child(3) {
  top: 80px;
  right: 200px;
}

.landing-page-steps-section-mobile-img {
  position: absolute;
  right: 0;
  bottom: -176px;
}

/*** Two Column Grid Section Styles ***/
@media (max-width: 991px) {
  .landing-page-two-column-grid-section {
    padding-top: 112px;
  }
}

.landing-page-two-column-grid-section .two-column-grid-title {
  font-size: 40px;
  margin: 0;
  font-weight: 500;
}
@media (max-width: 991px) {
  .landing-page-two-column-grid-section .two-column-grid-title {
    font-weight: 400;
    font-size: 34px;
    line-height: 48px;
    margin-bottom: 16px;
  }
}
@media (max-width: 600px) {
  .landing-page-two-column-grid-section .two-column-grid-title {
    font-weight: 600;
    font-size: 26px;
    line-height: 36px;
  }
}
.landing-page-two-column-grid-section .two-column-grid-subtitle {
  margin-top: 16px;
  margin-bottom: 88px;
}
@media (max-width: 991px) {
  .landing-page-two-column-grid-section .two-column-grid-subtitle {
    color: #000;
    width: 520px;
    max-width: 100%;
    font-size: 20px;
  }
}
@media (max-width: 600px) {
  .landing-page-two-column-grid-section .two-column-grid-subtitle {
    font-size: 16px;
    margin-bottom: 56px;
  }
}
.landing-page-two-column-grid-section .two-column-grid {
  margin-bottom: 24px;
}
.landing-page-two-column-grid-section .two-column-grid > div:nth-child(odd) {
  padding-left: 0;
}
.landing-page-two-column-grid-section .two-column-grid > div:nth-child(even) {
  padding-right: 0;
}
.landing-page-two-column-grid-section .two-column-grid > div:nth-child(1),
.landing-page-two-column-grid-section .two-column-grid > div:nth-child(2) {
  padding-top: 0;
}
@media (max-width: 600px) {
  .landing-page-two-column-grid-section .two-column-grid {
    margin-bottom: 0;
  }
}

/*** Testimonials Section Styles ***/
.testimonials-wrapper {
  padding-top: 72px;
}

/*** Knowledge Center Styles ***/
.knowledge-center {
  background: #f9fafc;
  padding: 96px 40px;
  margin: 0 -40px;
  overflow: hidden;
}
.knowledge-center > .flex {
  width: 1160px;
  max-width: 100%;
  margin: 0 auto;
  justify-content: space-between;
  gap: 72px;
}
@media (max-width: 600px) {
  .knowledge-center > .flex {
    display: block;
  }
}
@media (max-width: 600px) {
  .knowledge-center {
    margin: 0 -24px;
    padding: 72px 24px;
    background: transparent;
  }
  .knowledge-center h2.mb-64 {
    margin-bottom: 32px;
    font-size: 26px;
    font-weight: 600;
  }
}

.knowledge-center-column-titles {
  display: flex;
  gap: 144px;
}
.knowledge-center-column-titles > div {
  flex: 1;
  transition: all 300ms linear;
  border-bottom: 3px solid transparent;
}
@media (max-width: 991px) {
  .knowledge-center-column-titles > div > .mb-32 {
    margin-bottom: 16px;
  }
}
@media (max-width: 991px) {
  .knowledge-center-column-titles .active {
    color: #0033ff;
    border-bottom: 3px solid #0033ff;
  }
}
@media (max-width: 991px) {
  .knowledge-center-column-titles {
    border-bottom: 1px solid #cdd2e9;
    margin: 0 -40px 56px;
    padding: 0 40px;
    gap: 32px;
  }
}
@media (max-width: 600px) {
  .knowledge-center-column-titles {
    margin: 0 -24px 56px;
    padding: 0;
    gap: 0;
  }
  .knowledge-center-column-titles .medium-text {
    font-size: 14px;
  }
}

.knowledge-center-column {
  flex: 1;
}
.knowledge-center-column:first-child {
  padding-right: 72px;
  border-right: 1px solid #cdd2e9;
}
@media (max-width: 991px) {
  .knowledge-center-column:first-child {
    padding-right: 0;
    border-right: none;
  }
}
@media (max-width: 991px) {
  .knowledge-center-column:last-child {
    display: none;
  }
}

.knowledge-center-article {
  display: flex;
  gap: 32px;
  align-items: center;
}
.knowledge-center-article:not(:last-child) {
  margin-bottom: 48px;
}
.knowledge-center-article img {
  height: 160px;
  width: 160px;
  min-width: 160px;
  object-fit: cover;
}
@media (max-width: 600px) {
  .knowledge-center-article img {
    height: 132px;
    width: 132px;
    min-width: 132px;
  }
}
.knowledge-center-article .knowledge-center-article-title {
  font-size: 23px;
  font-weight: 500;
  margin-bottom: 16px;
}
@media (max-width: 600px) {
  .knowledge-center-article .knowledge-center-article-title {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .knowledge-center-article {
    width: 472px;
    max-width: 100%;
    margin: 0 auto;
  }
}

/*** Header ***/
.landing-page-header-background-img-left {
  top: 276px;
  left: 0;
  position: absolute;
  z-index: -1;
}

.landing-page-header-background-img-right {
  top: 136px;
  right: 0;
  position: absolute;
  z-index: -1;
}
@media (max-width: 991px) {
  .landing-page-header-background-img-right {
    height: 360px;
    top: 102px;
  }
}

.landing-page-header {
  margin: 144px auto 184px;
  max-width: 1200px;
  position: relative;
}
@media (max-width: 991px) {
  .landing-page-header {
    margin: 64px auto 24px;
  }
}
@media (max-width: 600px) {
  .landing-page-header {
    margin: 48px auto 64px;
  }
}

.landing-page-header-text {
  font-size: 41px;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 8px;
}
@media (max-width: 991px) {
  .landing-page-header-text {
    font-size: 30px;
  }
}
@media (max-width: 600px) {
  .landing-page-header-text {
    font-size: 27px;
  }
  .landing-page-header-text span {
    font-weight: 500;
  }
}

.landing-page-header-mobile-img {
  margin: 0 -24px;
  width: calc(100% + 48px);
  max-width: 420px;
  margin-top: 56px;
}

.insurance-partners {
  margin-top: 88px;
}
.insurance-partners .flex {
  gap: 48px;
  overflow: auto;
}
@media (max-width: 991px) {
  .insurance-partners .flex img:nth-child(1) {
    height: 20px;
    width: auto;
  }
  .insurance-partners .flex img:nth-child(2) {
    height: 40px;
    width: auto;
  }
  .insurance-partners .flex img:nth-child(3) {
    height: 56px;
    width: auto;
  }
  .insurance-partners .flex img:nth-child(4) {
    height: 50px;
    width: auto;
  }
}
@media (max-width: 600px) {
  .insurance-partners .flex {
    gap: 32px;
  }
  .insurance-partners .flex > img {
    max-width: 96px;
    height: auto !important;
  }
}
@media (max-width: 600px) {
  .insurance-partners {
    margin-top: 32px;
  }
}

/*** Full Width Banner Section ***/
.full-width-banner {
  background: #0033ff;
  padding: 80px 96px 72px 160px;
  margin: 0 -40px;
  height: 392px;
  position: relative;
}
.full-width-banner > img {
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 991px) {
  .full-width-banner > img {
    height: 100%;
  }
}
@media (max-width: 991px) {
  .full-width-banner {
    height: unset;
    padding: 56px 40px;
  }
}
@media (max-width: 600px) {
  .full-width-banner {
    margin: 0 -24px;
    padding: 48px 24px;
    height: auto;
  }
  .full-width-banner::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 99.9%;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid #0033ff;
  }
}

.full-width-banner-content {
  max-width: 1016px;
  margin: 0 auto;
  display: flex;
  gap: 64px;
}
@media (max-width: 991px) {
  .full-width-banner-content {
    gap: 68px;
  }
  .full-width-banner-content img {
    height: 50px;
  }
  .full-width-banner-content .small-text {
    font-size: 12px;
  }
  .full-width-banner-content .xxl-text {
    font-size: 27px;
  }
  .full-width-banner-content .fw-500 {
    font-weight: 400;
  }
}
@media (max-width: 600px) {
  .full-width-banner-content {
    flex-direction: column;
    align-items: center;
    gap: 28px;
  }
  .full-width-banner-content img {
    height: 44px;
  }
  .full-width-banner-content span {
    font-weight: 600;
  }
}

.full-width-banner-mobile-section {
  margin: 72px 0;
}
.full-width-banner-mobile-section p:last-child {
  width: 190px;
}

/*** Floating Text Section ***/
.floating-text {
  margin: 180px 0 180px;
  position: relative;
}
.floating-text h2 {
  font-size: 46px;
  font-weight: 600;
  margin: 0 auto 32px;
  line-height: 50px;
  width: 388px;
}
@media (max-width: 991px) {
  .floating-text h2 {
    font-size: 30px;
    width: unset;
    margin-top: 48px;
  }
}
@media (max-width: 600px) {
  .floating-text h2 {
    font-size: 28px;
    line-height: 38px;
    margin-bottom: 16px;
    margin-top: 0;
  }
}
.floating-text h3 {
  font-size: 21px;
  font-weight: 600;
  color: #8d98c2;
  width: 388px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .floating-text h3 {
    font-size: 20px;
    width: unset;
  }
}
@media (max-width: 600px) {
  .floating-text h3 {
    width: 192px;
    font-size: 16px;
    margin: 0;
    font-weight: 400;
    color: #000;
  }
}
@media (max-width: 991px) {
  .floating-text {
    margin: 80px 0 44px;
    display: flex;
    gap: 44px;
  }
  .floating-text > img {
    margin-left: -40px;
  }
}
@media (max-width: 600px) {
  .floating-text {
    margin: 72px 0 64px;
    display: block;
  }
  .floating-text > img {
    position: absolute;
    right: -24px;
    bottom: -104px;
  }
}

.floating-text-backgrounds img:nth-child(1) {
  position: absolute;
  right: -40px;
  top: -180px;
}
.floating-text-backgrounds img:nth-child(2) {
  position: absolute;
  left: -40px;
  top: -112px;
}
.floating-text-backgrounds img:nth-child(3) {
  position: absolute;
  right: -40px;
  bottom: -280px;
}

/*** Three Cards Grid Section ***/
.three-cards-grid {
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin: 104px auto;
  max-width: 1140px;
  position: relative;
}
.three-cards-grid .card {
  padding: 32px;
  height: 414px;
  background: #fff;
}
@media (max-width: 991px) {
  .three-cards-grid .card {
    padding: 24px;
    height: unset;
  }
}
@media (max-width: 600px) {
  .three-cards-grid .card {
    box-shadow: none;
    background: transparent;
    display: flex;
    padding: 0;
    gap: 24px;
  }
}
.three-cards-grid .card img {
  margin: 0 -32px 32px;
  width: calc(100% + 64px);
  max-width: unset;
}
@media (max-width: 991px) {
  .three-cards-grid .card img {
    width: calc(100% + 48px);
    margin: 0 -24px 16px;
  }
}
.three-cards-grid .card .icon-container {
  width: 88px;
  height: 88px;
  border: 1px solid #3f3d56;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 22px auto 44px;
}
.three-cards-grid .card .icon-container .icon-background {
  background: #e6e6e6;
  border-radius: 100%;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .three-cards-grid .card .icon-container .icon-background {
    height: 40px;
    width: 40px;
  }
}
@media (max-width: 991px) {
  .three-cards-grid .card .icon-container .icon-background {
    height: 32px;
    width: 32px;
  }
}
.three-cards-grid .card .icon-container .icon-background .icon {
  font-size: 48px;
  color: #0033ff;
}
@media (max-width: 991px) {
  .three-cards-grid .card .icon-container .icon-background .icon {
    font-size: 26px;
  }
}
@media (max-width: 600px) {
  .three-cards-grid .card .icon-container .icon-background .icon {
    font-size: 22px;
  }
}
@media (max-width: 991px) {
  .three-cards-grid .card .icon-container {
    margin: 8px auto 32px;
    width: 48px;
    height: 48px;
  }
}
@media (max-width: 600px) {
  .three-cards-grid .card .icon-container {
    height: 40px;
    width: 40px;
    min-width: 40px;
  }
}
.three-cards-grid .card .card-title {
  font-size: 22px;
  font-weight: bold;
  height: 48px;
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .three-cards-grid .card .card-title {
    font-size: 16px;
    text-align: center;
  }
}
@media (max-width: 600px) {
  .three-cards-grid .card .card-title {
    text-align: left;
    text-transform: uppercase;
    height: unset;
    margin-bottom: 8px;
  }
}
@media (max-width: 991px) {
  .three-cards-grid .card .card-description {
    font-size: 15px;
  }
}
@media (max-width: 991px) {
  .three-cards-grid {
    margin: 48px 0 80px;
  }
}
@media (max-width: 600px) {
  .three-cards-grid {
    flex-direction: column;
    background: #f9fafc;
    margin: 0 -24px;
    padding: 80px 24px 64px;
    gap: 40px;
  }
}

/*** Steps Section ***/
.steps-section {
  position: relative;
}
.steps-section > img:first-child {
  position: absolute;
  top: -96px;
  left: -40px;
  z-index: -1;
}
@media (max-width: 991px) {
  .steps-section > img:first-child {
    height: 352px;
    top: 224px;
  }
}
.steps-section > img:last-child {
  position: absolute;
  bottom: -24px;
  right: -40px;
  z-index: -1;
}
@media (max-width: 991px) {
  .steps-section.mt-212 {
    margin-top: 80px;
  }
}

.steps-section-title {
  max-width: 728px;
  margin: 0 auto 104px;
  position: relative;
}
.steps-section-title .accent-text {
  font-size: 21px;
}
@media (max-width: 991px) {
  .steps-section-title .accent-text {
    font-size: 18px;
    margin-bottom: 4px;
  }
}
@media (max-width: 600px) {
  .steps-section-title .accent-text {
    font-size: 16px;
    font-weight: 400;
    color: #000;
  }
}
.steps-section-title h2 {
  font-size: 46px;
}
@media (max-width: 991px) {
  .steps-section-title h2 {
    font-size: 41px;
    margin-bottom: 8px;
  }
}
@media (max-width: 600px) {
  .steps-section-title h2 {
    font-size: 27px;
    margin-bottom: 40px;
    position: relative;
  }
  .steps-section-title h2:after {
    content: "";
    height: 24px;
    width: 1px;
    background: #8a94ba;
    position: absolute;
    bottom: -32px;
    left: 50%;
  }
}
@media (max-width: 991px) {
  .steps-section-title {
    text-align: center;
    margin: 0 auto 64px;
  }
}
@media (max-width: 600px) {
  .steps-section-title {
    margin: 0 auto 48px;
  }
  .steps-section-title > img {
    position: absolute;
    top: 48px;
    left: 24px;
  }
  .steps-section-title p:last-child {
    color: #8a94ba;
    font-size: 13px;
    width: 176px;
    margin: 0 auto;
  }
}

.steps {
  width: 760px;
  max-width: 100%;
  margin: 0 auto 208px;
}
.steps .step {
  margin-top: 64px;
  gap: 64px;
  align-items: flex-start;
  display: flex;
}
@media (max-width: 991px) {
  .steps .step {
    gap: 32px;
  }
}
@media (max-width: 600px) {
  .steps .step {
    gap: 24px;
    margin-top: 32px;
  }
}
@media (max-width: 991px) {
  .steps {
    width: 584px;
    margin: 0 auto 112px;
  }
}
@media (max-width: 600px) {
  .steps {
    margin: 0 auto 160px;
  }
}

@media (max-width: 991px) {
  .step-title {
    font-size: 20px;
  }
}
@media (max-width: 600px) {
  .step-title {
    font-size: 18px;
  }
}

@media (max-width: 600px) {
  .step-description {
    font-size: 13px;
    color: #8a94ba;
  }
}

.step-no {
  width: 72px;
  height: 72px;
  min-width: 72px;
  background: #0033ff;
  border-radius: 100%;
  font-size: 40px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}
@media (max-width: 991px) {
  .step-no {
    width: 48px;
    min-width: 48px;
    height: 48px;
    font-size: 28px;
  }
}
@media (max-width: 600px) {
  .step-no {
    width: 32px;
    min-width: 32px;
    height: 32px;
    font-size: 23px;
  }
}

.steps-section-tablet-background-right {
  position: absolute;
  bottom: -8px;
  right: -40px;
}

/* Final Step */
.final-step img {
  position: absolute;
  z-index: -1;
  left: -44px;
  top: -44px;
}
@media (max-width: 600px) {
  .final-step img {
    height: 80px;
    left: -16px;
    top: -8px;
    z-index: unset;
  }
}
.final-step .step-no {
  background: #ffcc00;
  position: relative;
}
.final-step .step-no .material-icons {
  font-size: 32px;
}
@media (max-width: 600px) {
  .final-step .step-no .material-icons {
    font-size: 24px;
  }
}

/* Mobile Background Shapes */
.step-two > img {
  position: absolute;
}
.step-two > img:nth-child(1) {
  top: -24px;
  left: -8px;
}
.step-two > img:nth-child(2) {
  top: -8px;
  right: 0;
}
.step-two > img:nth-child(3) {
  bottom: -16px;
  right: 16px;
}

.step-four > img {
  position: absolute;
}
.step-four > img:nth-child(1) {
  top: 56px;
  left: 16px;
}
.step-four > img:nth-child(2) {
  top: 24px;
  right: 0;
}

.step-five > img {
  position: absolute;
}
.step-five > img:nth-child(1) {
  top: 104px;
  left: 0;
  height: auto;
}
.step-five > img:nth-child(2) {
  top: 32px;
  right: 8px;
  left: auto;
  height: auto;
}

/*** Two Column Grid ***/
.two-column-grid-section {
  width: 1160px;
  max-width: 100%;
  margin: 0 auto;
}

.two-column-grid-title {
  font-size: 58px;
  line-height: 64px;
  max-width: 720px;
  margin: 0 auto 56px;
}
@media (max-width: 991px) {
  .two-column-grid-title {
    font-size: 34px;
    line-height: 40px;
  }
}
@media (max-width: 600px) {
  .two-column-grid-title {
    font-size: 26px;
    line-height: 36px;
    font-weight: 300;
  }
}

.two-column-grid {
  display: grid;
  grid-template-columns: 50% 50%;
  margin-bottom: 120px;
}
.two-column-grid > div {
  padding: 56px;
  border-bottom: 1px solid #cdd2e9;
}
@media (max-width: 991px) {
  .two-column-grid > div {
    padding: 40px;
  }
}
@media (max-width: 600px) {
  .two-column-grid > div {
    display: flex;
    gap: 24px;
    border-bottom: none;
    padding: 0;
    margin-bottom: 32px;
  }
}
.two-column-grid > div:nth-child(odd) {
  border-right: 0.5px solid #cdd2e9;
  padding-right: 64px;
}
@media (max-width: 991px) {
  .two-column-grid > div:nth-child(odd) {
    padding-left: 0;
    padding-right: 40px;
  }
}
@media (max-width: 600px) {
  .two-column-grid > div:nth-child(odd) {
    border-right: none;
    padding-right: 0;
  }
}
.two-column-grid > div:nth-child(even) {
  padding-left: 64px;
}
@media (max-width: 991px) {
  .two-column-grid > div:nth-child(even) {
    padding-right: 0;
    padding-left: 40px;
  }
}
@media (max-width: 600px) {
  .two-column-grid > div:nth-child(even) {
    padding-left: 0;
  }
}
.two-column-grid > div:nth-child(7),
.two-column-grid > div:nth-child(8) {
  border-bottom: none;
}
@media (max-width: 600px) {
  .two-column-grid > div > div p.large-text.mt-40 {
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 8px;
    text-transform: uppercase;
  }
  .two-column-grid > div > div p:last-child {
    font-size: 13px;
    color: #8d98c2;
  }
}
.two-column-grid .icon-container {
  width: 40px;
  min-width: 40px;
  height: 40px;
  border: 1px solid #3f3d56;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.two-column-grid .icon-container .icon-background {
  background: #e6e6e6;
  border-radius: 100%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.two-column-grid .icon-container .icon-background img {
  width: 16px;
  color: #0033ff;
}
.two-column-grid .icon-container .icon-background .icon {
  font-size: 16px;
  color: #0033ff;
}
@media (max-width: 991px) {
  .two-column-grid {
    margin-bottom: 104px;
  }
}
@media (max-width: 600px) {
  .two-column-grid {
    grid-template-columns: 1fr;
    margin-bottom: 48px;
  }
}

/*** Zip Input Section ***/
.zip-input-section {
  background: #0000cc;
  width: 1064px;
  max-width: 100%;
  margin: 0 auto 80px;
  border-radius: 48px;
  padding-top: 112px;
  padding-bottom: 120px;
  position: relative;
}
.zip-input-section > img {
  position: absolute;
  bottom: 0;
  left: 0;
  pointer-events: none;
  height: 100%;
}
@media (max-width: 991px) {
  .zip-input-section {
    padding: 64px;
  }
}
@media (max-width: 600px) {
  .zip-input-section {
    border-radius: 20px;
    padding: 40px;
  }
}

.zip-input-section-title {
  font-size: 26px;
}
@media (max-width: 600px) {
  .zip-input-section-title {
    font-size: 18px;
  }
}

.zip-input-section .button {
  height: 56px;
  z-index: 1;
  width: 280px;
  border-radius: 3px;
  align-items: center;
  background: #0033ff;
  color: #fff;
  cursor: pointer;
  display: flex;
  font-size: 14px;
  justify-content: center;
  transition: opacity 300ms linear;
  font-weight: 500;
  white-space: nowrap;
  text-decoration: none;
}

.zip-input-section .button:hover {
  opacity: 0.7;
}

#mobile-btn {
  height: 48px;
  position: relative;
  z-index: 1;
  margin-top: 12px;
}

/*** Testimonials ***/
.testimonials {
  margin-bottom: 96px;
  position: relative;
  padding-top: 24px;
}
.testimonials > img:first-child {
  position: absolute;
  top: 0;
  left: -40px;
  z-index: -1;
}
@media (max-width: 600px) {
  .testimonials > img:first-child {
    left: -24px;
  }
}
.testimonials > img:nth-child(2) {
  position: absolute;
  bottom: -148px;
  right: -40px;
  z-index: -1;
}
@media (max-width: 991px) {
  .testimonials > img:nth-child(2) {
    right: -24px;
  }
}
@media (max-width: 600px) {
  .testimonials {
    background: #f9fafc;
    margin: 0 -24px;
    padding: 64px 24px 88px;
  }
}

.five-stars {
  display: flex;
  justify-content: center;
  gap: 24px;
}
.five-stars .material-icons {
  color: #ffcc00;
  font-size: 44px;
}
@media (max-width: 600px) {
  .five-stars .material-icons {
    font-size: 28px;
  }
}
@media (max-width: 600px) {
  .five-stars {
    gap: 16px;
  }
}

.testimonials-title {
  font-size: 48px;
  font-weight: 300;
  text-align: center;
}
@media (max-width: 600px) {
  .testimonials-title {
    font-size: 28px;
    margin-top: 24px;
    margin-bottom: 8px;
  }
  .testimonials-title + .large-text {
    font-size: 13px;
    font-weight: 500;
    color: #8a94ba;
    margin-bottom: 24px;
  }
}

.testimonial-cards {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 88px;
}
@media (max-width: 600px) {
  .testimonial-cards {
    flex-direction: column;
    align-items: center;
  }
}

.testimonial {
  box-shadow: 0 2px 24px 0 #dadff6, 0 2px 40px 0 #f9fafc;
  border-radius: 3px;
  padding: 32px 48px;
  background: #fff;
  width: 272px;
}
.testimonial > img {
  margin: -80px auto 24px;
  display: block;
}
@media (max-width: 991px) {
  .testimonial > img {
    height: 80px;
    margin-top: -64px;
  }
}
@media (max-width: 991px) {
  .testimonial {
    max-width: 212px;
    width: 100%;
    height: 100%;
    padding: 24px 24px 32px 24px;
  }
}
@media (max-width: 600px) {
  .testimonial {
    max-width: unset;
  }
}

/* Mobile Carousel */
@media only screen and (max-width: 600px) {
  .carouselContainer {
    position: relative;
    top: 24px;
    min-height: 280px;
    margin-top: 0;
  }
  .carouselImgs {
    width: 100%;
    height: 100%;
    animation: fade 1.5s;
    display: none;
    padding: 20px;
    text-align: center;
    align-items: center;
    justify-items: center;
    justify-content: center;
  }
  .prev,
  .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    box-shadow: 0 2px 24px 0 #dadff6, 0 2px 40px 0 #f9fafc;
    border-radius: 100%;
    background: #fff;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .prev {
    left: 0;
  }
  .next {
    right: 0;
  }
  @keyframes fade {
    from {
      opacity: 0.5;
    }
    to {
      opacity: 1;
    }
  }
}
/*** Availability ***/
.availability {
  margin-bottom: 80px;
}
.availability > img {
  margin: 0 auto;
  display: block;
}
@media (max-width: 600px) {
  .availability {
    margin-top: 56px;
  }
}

.availability-title {
  font-size: 48px;
  font-weight: 300;
  text-align: center;
}
@media (max-width: 600px) {
  .availability-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 8px;
  }
  .availability-title + .large-text {
    font-size: 16px;
  }
}

.map-container {
  max-width: 896px;
  margin: 24px auto 0;
}

.map-key {
  display: flex;
  gap: 80px;
  margin-top: 16px;
  justify-content: center;
}
.map-key .key {
  height: 16px;
  width: 16px;
  margin-right: 8px;
}
.map-key .available-key {
  background-color: #0033ff;
}
.map-key .unavailable-key {
  background-color: #f9fafc;
}

/*** Full Width Img Banner Section ***/
.full-width-img-banner {
  background: url("/images/landingPages/full-width-img-banner-background.jpg");
  background-size: cover;
  padding: 80px;
  margin: 0 -40px 136px;
  height: 560px;
  position: relative;
  display: flex;
  gap: 56px;
  justify-content: center;
  align-items: flex-start;
}
.full-width-img-banner > div:first-child {
  width: 536px;
  max-width: 100%;
}
@media (max-width: 991px) {
  .full-width-img-banner {
    margin: 0 -40px 64px;
    height: unset;
    flex-direction: row-reverse;
    padding: 56px 40px;
    gap: 48px;
  }
  .full-width-img-banner .xxl-text {
    font-weight: 400;
  }
  .full-width-img-banner .medium-text {
    font-size: 18px;
    line-height: 22px;
    font-weight: 300;
  }
}
@media (max-width: 600px) {
  .full-width-img-banner {
    margin: 0 -24px 80px;
    flex-direction: column-reverse;
    justify-content: flex-end;
    background-size: cover;
    padding: 0 24px 88px;
  }
  .full-width-img-banner .xxl-text {
    font-weight: 300;
    font-size: 27px;
    margin-bottom: 20px;
  }
  .full-width-img-banner .medium-text {
    font-size: 16px;
    line-height: 26px;
  }
}

.reliance-logo-card {
  position: relative;
  background: #fff;
  box-shadow: 0 5px 29px 14px rgba(23, 34, 95, 0.14);
  border-radius: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-self: flex-end;
  height: 368px;
  width: 552px;
  bottom: -144px;
}
.reliance-logo-card .watermark {
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 991px) {
  .reliance-logo-card .watermark {
    width: 186px;
  }
}
@media (max-width: 600px) {
  .reliance-logo-card .watermark {
    width: 220px;
  }
}
@media (max-width: 991px) {
  .reliance-logo-card {
    height: unset;
    padding: 40px 24px 32px;
    border-radius: 24px;
    bottom: unset;
    top: -96px;
    align-self: flex-start;
    width: 258px;
    min-width: 258px;
    height: 172px;
  }
  .reliance-logo-card img:nth-child(2) {
    width: 200px;
  }
  .reliance-logo-card .large-text.mt-40 {
    margin-top: 16px;
    font-size: 10px;
  }
}
@media (max-width: 600px) {
  .reliance-logo-card {
    height: 160px;
    width: 100%;
    bottom: 0;
    margin-top: -40px;
    border-radius: 24px;
    padding: 40px 24px 8px;
    overflow: hidden;
    top: 0;
  }
  .reliance-logo-card .large-text.mt-40 {
    font-weight: 500;
  }
}

/*** Insurance Tech Combo Section ***/
.insurance-tech-combo-section {
  position: relative;
  border-bottom: 1px solid #dadff6;
  margin: 0 -40px 72px;
  padding: 0 40px 88px;
}
.insurance-tech-combo-section > img {
  position: absolute;
  top: -136px;
  right: 0;
  z-index: -1;
}
@media (max-width: 991px) {
  .insurance-tech-combo-section > img {
    top: -64px;
    right: -16px;
  }
}
@media (max-width: 600px) {
  .insurance-tech-combo-section > img {
    top: -80px;
    right: 0;
  }
}
@media (max-width: 991px) {
  .insurance-tech-combo-section {
    margin: 0 -24px 0;
    border-bottom: none;
    padding: 0 40px 88px;
  }
}
@media (max-width: 600px) {
  .insurance-tech-combo-section {
    padding: 0 24px 88px;
  }
}

.insurance-tech-combo-title {
  font-size: 36px;
  font-weight: 600;
  max-width: 1060px;
  margin: 0 auto 32px;
}
@media (max-width: 991px) {
  .insurance-tech-combo-title {
    font-size: 20px;
    text-align: center;
  }
}
@media (max-width: 600px) {
  .insurance-tech-combo-title {
    font-size: 27px;
    margin: 32px 0 20px;
    text-align: left;
  }
}

.insurance-tech-combo-content {
  display: flex;
  justify-content: space-between;
  width: 1060px;
  max-width: 100%;
  margin: 0 auto;
  gap: 96px;
}
.insurance-tech-combo-content > div:first-child {
  flex: 1;
}
@media (max-width: 600px) {
  .insurance-tech-combo-content .large-text {
    font-size: 16px;
  }
}

.insurance-tech-combo-icons {
  display: flex;
  gap: 16px;
  align-items: center;
}
.insurance-tech-combo-icons > div {
  box-shadow: 0 2px 24px 0 #dadff6, 0 2px 40px 0 #f9fafc;
  background: #fff;
  height: 120px;
  width: 120px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .insurance-tech-combo-icons > div {
    height: 84px;
    width: 84px;
  }
  .insurance-tech-combo-icons > div:nth-child(1) img {
    width: 40px;
  }
  .insurance-tech-combo-icons > div:nth-child(3) img {
    width: 28px;
  }
}
@media (max-width: 600px) {
  .insurance-tech-combo-icons > div {
    height: 112px;
    width: 112px;
    min-width: 112px;
  }
}
.insurance-tech-combo-icons > div:nth-child(2) {
  width: 40px;
  height: 40px;
}
@media (max-width: 991px) {
  .insurance-tech-combo-icons > div:nth-child(2) {
    height: 28px;
    width: 28px;
  }
  .insurance-tech-combo-icons > div:nth-child(2) .material-icons {
    font-size: 14px;
  }
}
@media (max-width: 600px) {
  .insurance-tech-combo-icons > div:nth-child(2) {
    min-width: 18px;
    height: 18px;
    width: 18px;
    background: transparent;
    box-shadow: none;
  }
  .insurance-tech-combo-icons > div:nth-child(2) .material-icons {
    font-size: 28px;
    font-weight: bold;
  }
}
@media (max-width: 991px) {
  .insurance-tech-combo-icons {
    justify-content: center;
    margin-bottom: 40px;
  }
}
@media (max-width: 600px) {
  .insurance-tech-combo-icons {
    justify-content: space-between;
  }
}

/*** Recent Articles ***/
@media (max-width: 600px) {
  .recent-articles {
    background: #f9fafc;
    padding: 68px 24px 80px;
    margin: 0 -24px;
  }
  .recent-articles .large-container {
    margin-bottom: 0;
  }
}

@media (max-width: 991px) {
  .recent-articles-title {
    font-size: 20px;
    margin-bottom: 48px;
  }
}
@media (max-width: 600px) {
  .recent-articles-title {
    font-size: 27px;
    font-weight: 300;
    margin-left: 0;
    margin-bottom: 0;
  }
}

.articles-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: space-between;
  gap: 56px;
}
.articles-wrapper a {
  text-decoration: none;
  color: #000;
}
@media (max-width: 991px) {
  .articles-wrapper {
    gap: 16px;
  }
}

.article-card {
  border-radius: 3px;
  box-shadow: 0 2px 24px 0 #dadff6, 0 2px 40px 0 #f9fafc;
  background: #fff;
  height: 100%;
  padding-bottom: 16px;
  transition: opacity 300ms linear;
}
.article-card:hover {
  opacity: 0.6;
}

.article-card-img {
  background-size: cover;
  width: 100%;
  height: 256px;
  border-radius: 3px 3px 0 0;
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .article-card-img {
    height: 192px;
  }
}

.article-card-title {
  padding: 0 32px;
}

/* Mobile Carousel */
.ra-carouselImgs {
  width: 100%;
  height: 100%;
  animation: fade 1.5s;
  display: none;
  padding: 20px;
  text-align: center;
  align-items: center;
  justify-items: center;
  justify-content: center;
}

.client-center-wrapper {
  width: 960px;
  max-width: 100%;
  margin: 0 auto;
}
.client-center-wrapper .cards-wrapper {
  width: 50%;
  border-right: 1px solid #eff1fb;
  padding-right: 64px;
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.client-center-wrapper .cards-wrapper .card {
  align-items: center;
  background: #fff;
  box-shadow: 0 2px 24px 0 #dadff6, 0 2px 40px 0 #f9fafc;
  border-radius: 3px;
  display: flex;
  padding: 16px 32px;
  display: flex;
  gap: 24px;
  margin-right: 72px;
  margin-bottom: 17px;
  width: 100%;
}
.client-center-wrapper .cards-wrapper .card .material-icons {
  padding: 12px;
  background: blue;
  border-radius: 100%;
  color: white;
  margin-bottom: 16px;
}
.client-center-wrapper .cards-wrapper .card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}
.client-center-wrapper .cards-wrapper .card h5 {
  font-size: 16px;
  font-weight: 500;
}
.client-center-wrapper .cards-wrapper .card a {
  text-decoration: none;
  color: blue;
  text-transform: uppercase;
  cursor: pointer;
}
.client-center-wrapper .cards-wrapper .card .accent-text {
  font-size: 14px;
  color: #222;
}
.client-center-wrapper .cards-wrapper .card:last-child {
  margin-bottom: 0;
}
@media (max-width: 600px) {
  .client-center-wrapper .cards-wrapper {
    width: 100%;
    margin-bottom: 56px;
    padding-right: 0;
  }
}
.client-center-wrapper .content-wrapper {
  height: 550px;
}
@media (max-width: 600px) {
  .client-center-wrapper .content-wrapper {
    height: auto;
  }
}
.client-center-wrapper .iframe-container {
  width: 50%;
  margin-left: 64px;
  border-bottom: lightgray 1px solid;
}
@media (max-width: 600px) {
  .client-center-wrapper .iframe-container {
    width: 100%;
    min-height: 384px;
    border-bottom: none;
    margin-left: 0px;
    height: 550px;
  }
}
.client-center-wrapper iframe {
  width: 100%;
  height: 100%;
}
@media (max-width: 600px) {
  .client-center-wrapper iframe {
    min-height: 384px;
  }
}
@media (max-width: 600px) {
  .client-center-wrapper {
    max-width: calc(100vw - 32px);
    padding: 0 16px;
  }
}

.reli-info {
  background: #f3f5fa;
  padding: 24px 40px;
  margin: 56px 0 96px 0;
}
.reli-info hr {
  border-top: none;
  border-right: 2px solid #fff;
  height: 72px;
  margin: 0 40px;
}
@media (max-width: 600px) {
  .reli-info hr {
    border-top: 2px solid #fff;
    border-right: 0;
    height: 2px;
    margin: 32px 0 24px;
  }
}

.reli-contact-title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 12px;
}

.reli-contact a {
  color: #0033ff;
  font-weight: 500;
  text-decoration: none;
}

.agency-home-page .options-btn-wrapper {
  width: 800px;
  max-width: 100%;
  margin: 16px auto;
}
@media (max-width: 600px) {
  .agency-home-page .options-btn-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
.agency-home-page .disabled {
  cursor: not-allowed;
}
.agency-home-page .disabled .bundle-options-link-icons {
  opacity: 0.2;
}
.agency-home-page .disabled .options-link-title {
  color: #dadff6 !important;
}
.agency-home-page .coming-soon {
  border-radius: 2px;
  font-size: 8px;
  text-transform: uppercase;
  margin-top: -4px;
  margin-bottom: 8px;
  letter-spacing: 2.29px;
  padding: 4px 12px;
}
@media (max-width: 600px) {
  .agency-home-page .coming-soon {
    margin-bottom: -72px;
    position: absolute;
  }
}

/* Not sure why this was needed, probably just for caching issue, could probably be removed */
.bundle-page-header-text-container .options-btn-wrapper {
  width: 800px;
  max-width: 100%;
  margin: 16px auto;
}
@media (max-width: 600px) {
  .bundle-page-header-text-container .options-btn-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

.additional-services-button {
  width: 800px;
  max-width: 100%;
  margin: auto;
  display: flex;
  flex-direction: row-reverse;
}
@media (max-width: 600px) {
  .additional-services-button {
    flex-direction: inherit;
  }
}

/*# sourceMappingURL=style.css.map */
