/*!**********************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/styles.scss ***!
  \**********************************************************************************************************/
.container {
  width: 100%;
}
@media (max-width: 767px) {
  .container {
    width: 80%;
  }
}
@media (max-width: 1024px) {
  .container {
    width: 90%;
  }
}

body {
  background-color: hsl(210, 17%, 98%);
  color: #424242;
  /*font-family: Montserrat;*/
  font-family: var(--default-font);
}

h1, h2, h3, h4, h5, h6 {
  /*color: var(--heading-color);*/
  font-family: var(--heading-font);
}

:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway", sans-serif;
  --nav-font: "Roboto", sans-serif;
}

.navbar {
  background-color: #ffffff;
  border-bottom: 1px solid #dee2e6;
}

.navbar-brand {
  color: #000;
}

.navbar-brand:hover {
  color: #0056b3;
}

@media (max-width: 767px) {
  .navbar-collapse {
    margin-top: 20px;
  }
}

.nav-link {
  color: #000;
  text-decoration: underline;
}
@media (max-width: 767px) {
  .nav-link {
    border-bottom: 1px solid #daf0ff;
    text-decoration: none;
  }
}

.nav-link:hover {
  color: #0056b3;
}

.btn-outline-light {
  color: #424242;
  border-color: #424242;
}

.btn-outline-light:hover {
  background-color: #424242;
  color: #ffffff;
}

.btn-danger {
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-danger:hover {
  background-color: #c82333;
  border-color: #bd2130;
}

@media (max-width: 767px) {
  .login-sec {
    width: 100%;
    margin: 10px 0;
  }
  .login-sec .btn {
    width: 100%;
  }
}

.be-logo {
  width: 250px;
  height: auto;
}
@media (max-width: 767px) {
  .be-logo {
    height: auto;
  }
}

.hero {
  background: #003076; /*  url('./assets/images/hero-background.jpg') no-repeat center center; */
  background-size: cover;
  color: #212529;
  padding: 0;
  /*  padding: 100px 0; */
  text-align: center;
}
@media (max-width: 767px) {
  .hero {
    padding: 0 0;
  }
}
.hero .head {
  padding-top: 50px;
  font-size: 1.7em;
}
@media (max-width: 767px) {
  .hero .head {
    padding-top: 20px;
  }
}

.hero-img {
  background: #003076 url(../images/herio-pick-v4.png) no-repeat center center;
  min-height: 355px;
}

.insurance-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  background-color: #003076;
  padding: 5px;
  padding-bottom: 50px;
}

.insurance-item {
  background: white;
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  width: 135px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.insurance-item:hover {
  background: #e3fbff;
}
.insurance-item:hover img {
  animation-delay: 0.1s;
  transform: rotate(-15deg);
  transform: scale(1.2);
}
.insurance-item i {
  font-size: 24px;
  margin-bottom: 15px;
  display: block;
}
.insurance-item i img {
  width: 32px;
  height: auto;
}
.insurance-item b {
  background: #dc3545;
  position: absolute;
  top: -10px;
  width: 100px;
  font-size: 12px;
  color: #fff;
  left: 20px;
  border-radius: 5px;
}

li.insurance-item {
  position: relative;
}
li.insurance-item a {
  color: #000;
  text-decoration: none;
}
li.insurance-item a:hover {
  color: #0d6efd;
}
li.insurance-item p {
  margin-bottom: 5px;
  font-size: 15px;
  line-height: 16px;
}

.icon-card {
  text-align: center;
  border: none;
}

.icon-card img {
  height: auto;
  margin-bottom: 15px;
  margin-left: 50px;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .icon-card img {
    margin-left: 0;
    width: 50px;
  }
}

.faq .btn-link {
  text-decoration: none;
}

.testimonial {
  text-align: center;
  background: #ffffff;
  padding: 40px 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
@media (max-width: 767px) {
  .testimonial {
    margin-bottom: 20px;
  }
}

/* Container for the logo scroller */
.logo-scroller-container {
  width: 100%; /* Full width of the container */
  overflow: hidden; /* Hide the logos that are outside the visible area */
  margin: 20px 0; /* Spacing above and below */
}

/* Scrolling track of logos */
.logo-scroller {
  display: flex;
  animation: scroll 50s linear infinite; /* Animation for scrolling */
}

/* Style for each logo */
.logo {
  flex: 0 0 auto; /* Prevent logos from shrinking or stretching */
  margin-right: 50px; /* Space between logos */
  padding: 10px; /* Padding around the logos */
  height: 76px; /* Fixed height */
  border: 1px solid #e5e5e5;
}

/* Keyframes to animate the logo scroller */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-200%); /* Move logos to the left */
  }
}
/* Optional: Add responsiveness for mobile screens */
@media (max-width: 768px) {
  .logo {
    height: 50px; /* Smaller logos on mobile */
  }
}
footer {
  background: #014198 url(../images/footer-bg.png) no-repeat center top;
  background-size: 100%;
  color: #212529;
  padding: 20px 0;
  padding-top: 270px;
  height: 460px;
}
@media (max-width: 767px) {
  footer {
    padding-top: 100px;
  }
}
footer .f-link {
  color: #c4e2ff;
}
@media (max-width: 767px) {
  footer .f-link {
    margin-bottom: 15px;
  }
}
footer a {
  color: #c4e2ff;
  text-decoration: none;
}
footer a:hover {
  color: #9cc5eb;
}
footer .custom-footer {
  justify-content: space-between;
  display: flex;
}
@media (max-width: 767px) {
  footer .custom-footer {
    display: block;
  }
}
footer .custom-footer.footer-logo img {
  opacity: 0.5;
}
footer .custom-footer.footer-logo img:hover {
  opacity: 1;
}
footer .social {
  display: flex;
  justify-content: center;
}
footer .social span {
  margin: 0 5px;
}
footer .social span img {
  height: 15px;
}

footer p {
  color: #c4e2ff;
}

footer .border-bottom {
  border-bottom: 1px solid #1d6fc7 !important;
}

.prod-sec {
  position: relative;
}

.prod-sec-box {
  position: relative;
  top: -40px;
}

.box-blue {
  background-color: #014198;
}
.box-blue:hover {
  background-color: #01347a;
}

.box-red {
  background-color: #da1934;
}
.box-red:hover {
  background-color: #bd051e;
}

.box {
  padding: 10px 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
}
@media (max-width: 767px) {
  .box {
    margin-bottom: 10px;
    padding: 0;
  }
}
.box span {
  font-weight: 100;
}
.box h5 {
  color: #ffffff;
}
.box a {
  color: #ffffff;
  text-decoration: none;
}

.insurers h2 {
  font-size: 1.8rem;
  font-weight: 400;
  color: #000;
}
.insurers h2 b {
  color: #dc3545;
}
.insurers .more_comp {
  background-image: url(../images/se-all.png);
  width: 22px;
  height: 22px;
  display: inline-block;
  margin-left: 5px;
}
.insurers .insurers-items img {
  border: 1px solid #efeff1;
}
@media (max-width: 767px) {
  .insurers .insurers-items div {
    width: 50%;
    margin-bottom: 5px;
  }
}
.insurers a {
  color: #da1936;
  text-decoration: underline;
}

.bg-grey {
  background-color: #fcfaff !important;
}

.why-being-box {
  padding: 20px;
  background-image: linear-gradient(#f8e3ea, #f4f1fa);
  text-align: left;
}
@media (max-width: 767px) {
  .why-being-box {
    margin-bottom: 20px;
  }
}
.why-being-box h5 {
  color: #da1934;
}
.why-being-box p {
  color: #093d91;
}
.why-being-box a {
  font-weight: 700;
  color: #093d91;
}
.why-being-box .link-arrow {
  background-image: url(../images/arrow.png);
  width: 15px;
  height: 10px;
  display: inline-block;
  background-repeat: no-repeat;
}

.hero-heading {
  font-weight: bold;
  font-size: 26px; /* Adjust size as needed */
  color: #004a9a; /* Matching the blue color */
  text-align: center; /* Center the text */
  position: relative;
  margin: 20px 0;
}

.hero-heading::after {
  content: "";
  display: block;
  width: 90px; /* Adjust the line width */
  height: 3px; /* Adjust the line height */
  background-color: #da1934; /* Matching the red color */
  margin: 8px auto 0;
}

.faq {
  background-color: #fff7f5 !important;
}

.faq-pic {
  background-image: url(../images/faq.png);
  background-repeat: no-repeat;
  display: inline-block;
  width: 100%;
  max-width: 436px;
  height: 300px;
  background-position: center;
}

.accordion-button:focus {
  border-color: #ffeef8;
  box-shadow: 2px 2px 2px #ffeef8;
}

.accordion-button:not(.collapsed) {
  background-color: #ffeef8;
}

.modal-body {
  color: #0056b3;
}

.modal-title {
  color: #bd2130;
}

.carousel img {
  width: 70px;
  max-height: 70px;
  border-radius: 50%;
  margin-right: 1rem;
  overflow: hidden;
}

.carousel-inner {
  padding: 1em;
}

@media screen and (min-width: 576px) {
  .carousel-inner {
    display: flex;
    width: 90%;
    margin-inline: auto;
    padding: 1em 0;
    overflow: hidden;
  }
  .carousel-item {
    display: block;
    margin-right: 0;
    flex: 0 0 50%;
  }
}
@media screen and (min-width: 768px) {
  .carousel-item {
    display: block;
    margin-right: 0;
    flex: 0 0 33.3333333333%;
  }
}
.carousel .card {
  margin: 0 0.5em;
  border: 0;
}

.carousel-control-prev,
.carousel-control-next {
  width: 3rem;
  height: 3rem;
  background-color: grey;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

.card-title, .text-secondary, .card-text {
  color: #004a9a !important;
}

.card-body {
  background-color: #f1f8ff;
}

.carousel-control-prev {
  left: -20px;
}

.carousel-control-next {
  right: -20px;
}
/*!***********************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_mixins.scss ***!
  \***********************************************************************************************************/

