.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.poppins-thin-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.poppins-extralight-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.poppins-light-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.poppins-black-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: italic;
}

body {
  font-family: "Poppins", sans-serif;
}

body.custom-body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  background-color: white;
}

:root {
  --primary-color: #1b4b61;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

header.header-top {
  position: fixed !important;
  z-index: 10010;
  width: 100vw;
  max-width: 100%;
  left: 0px;
  top: 0px;
  bottom: auto;
  background: #fff;
}

.top-bar {
  background-color: white;
  border-bottom: 1px solid #e5e7eb;
  color: #374151;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}

.top-bar .phone {
  font-weight: 700;
  display: flex;
  gap: 8px;
  padding: 0.35rem 0;
}

.top-bar .phone a {
  color: var(--primary-color);
}

.top-bar .phone a:hover {
  color: black;
}

.navbar-custom {
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
  z-index: 20;
  position: relative;
}

.navbar-custom-color {
  background-color: var(--primary-color);
}

.navbar-custom .logo img {
  height: auto;
  width: 100px;
  object-fit: contain;
}

.navbar-custom .nav-links {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
  font-weight: 700;
  font-size: 14px;
  color: white;
  align-items: center;
}

.navbar-custom .nav-links li {
  cursor: pointer;
  position: relative;
}

.navbar-custom .nav-links li a {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* .navbar-custom .nav-links li a:hover,
.navbar-custom .nav-links li a:focus {
  text-decoration: underline;
} */

.navbar-custom .nav-links .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--primary-color);
  border-radius: 0 0 0.375rem 0.375rem;
  min-width: 160px;
  display: none;
  flex-direction: column;
  padding: 0.5rem 0;
  z-index: 1000;
}

.navbar-custom .nav-links li:hover>.dropdown-menu,
.navbar-custom .nav-links li:focus-within>.dropdown-menu {
  display: flex;
}

.navbar-custom .nav-links .dropdown-menu a {
  padding: 0.5rem 1rem;
  color: white;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
}

.navbar-custom .nav-links .dropdown-menu a:hover,
.navbar-custom .nav-links .dropdown-menu a:focus {
  background-color: #a6acaf;
}

.navbar-custom .nav-links .dropdown-icon {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.navbar-custom .btn-offert {
  display: none;
  background-color: white;
  color: #1b3d82;
  font-weight: 700;
  font-size: 14px;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}

.navbar-custom .btn-offert:hover {
  background-color: #f3f4f6;
}

/* Content */

#content {
  margin-top: 149px;
}

@media (min-width: 768px) {
  .navbar-custom .nav-links {
    display: flex;
  }

  .navbar-custom .btn-offert {
    display: inline-block;
  }
}

/* Hero with video background */
.hero-section {
  position: relative;
  color: white;
  padding: 5rem 1.5rem 5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  min-height: 75vh;
}

@media (min-width: 768px) {
  .hero-section {
    flex-direction: row;
    padding: 5rem 4rem 5rem 4rem;
  }
}

@media (max-width: 500px) {
  .hero-section {
    padding: 3rem .25rem;
  }
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.45);
}

.hero-content {
  position: relative;
  z-index: 10;
  /* width: 54%; */
}

.hero-left h1 {
  font-weight: 800;
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .hero-left h1 {
    font-size: 60px;
  }
}

.hero-left p {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 1.5rem;
  /* max-width: 320px; */
}

@media (min-width: 768px) {
  .hero-left p {
    font-size: 16px;
  }
}

.review-box {
  display: flex;
  background-color: white;
  border-radius: 0.375rem;
  box-shadow: 0 1px 3px rgb(0 0 0 / 0.1);
  color: #111827;
  font-size: 14px;
  font-weight: 400;
  max-width: 100%;
  overflow: hidden;
  padding: 5px 0;
}

.review-section {
  flex: 1;
  /* padding: 0.75rem 1rem; */
  border-right: 1px solid #d1d5db;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.review-section-2 {
  flex-direction: row !important;
  align-items: center;
  gap: 0.5re;
}

.review-section:last-child {
  border-right: none;
}

.review-section .label {
  font-size: 14px;
  margin-bottom: 0.25rem;
  color: #6b7280;
}

.review-section .value {
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

.review-section .value img {
  height: auto;
  width: 22px;
}

.review-section .value span {
  font-weight: 700;
}

.review-section .value .subtext {
  font-weight: 400;
  font-size: 14px;
}

.review-section .trust-bar {
  display: flex;
  gap: 0.25rem;
  margin-right: 0.5rem;
}

.trust-bar-segment {
  width: 16px;
  height: 12px;
  border-radius: 2px;
  background-color: #00c800;
}

.review-section .trust-text {
  font-weight: 700;
  font-size: 14px;
  margin-right: 0.5rem;
}

.review-section .reco-logo {
  height: 20px;
  width: 50px;
  object-fit: contain;
  margin-right: 0.25rem;
}

.review-section .info-icon {
  color: #9ca3af;
  font-size: 14px;
}

.hero-right {
  margin-top: 2.5rem;
  /* max-width: 400px; */
  color: white;
  position: relative;
  z-index: 10;
}

/* @media (min-width: 768px) {
  .hero-right {
    margin-top: 0;
    margin-left: 3rem;
  }
} */

.hero-right h2 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-control-custom {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: none;
  font-size: 14px;
  color: #111827;
  background-color: #eeeeee;
}

.form-control-custom::placeholder {
  color: #6b7280;
}

.form-control-custom:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(27, 61, 130, 0.5);
}

.btn-submit {
  background-color: var(--primary-color);
  color: white;
  font-weight: 700;
  font-size: 14px;
  padding: 0.5rem 1.25rem;
  border-radius: 0.375rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}

.btn-submit:hover {
  background-color: white;
  color: black;
}

/* service */
.services-section {
  padding: 5rem 1.5rem;
  background: #f0f5ff;
}

/* .services-section__content {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
} */

.services-section__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 3rem;
}

.services-section__left h2 {
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 1.1;
  color: #1f2937;
  margin-bottom: 1rem;
}

.services-section__left p {
  font-size: 0.875rem;
  color: #4b5563;
  margin-bottom: 1.5rem;
  max-width: 320px;
}

.services-section__left button {
  font-weight: 600;
  font-size: 0.875rem;
  color: #1e3a8a;
  background: transparent;
  border: 1px solid #1e3a8a;
  border-radius: 0.375rem;
  padding: 0.5rem 1.25rem;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  width: max-content;
}

.services-section__left button:hover {
  background-color: var(--primary-color);
  color: white;
}

.services-section__cards {
  gap: 2rem;
}

.services-section__card {
  background-color: white;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgb(0 0 0 / 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-width: 100%;
  height: 100%;
}

.services-section__card img {
  width: 100%;
  height: 14rem;
  object-fit: cover;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}

.services-section__card-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.services-section__card-content h3 {
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

.services-section__card-content p {
  width: 100%;
  font-size: 0.75rem;
  color: #4b5563;
  margin-bottom: 1rem;
  flex-grow: 1;
  line-height: 1.4;
  max-height: 90px;
  min-height: 40px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.services-section__card-content button {
  font-weight: 600;
  font-size: 0.75rem;
  color: white;
  background-color: var(--primary-color);
  border: none;
  border-radius: 0.375rem;
  padding: 0.25rem 0.75rem;
  cursor: pointer;
  align-self: flex-start;
  transition: background-color 0.3s ease;
  border: 1px solid var(--primary-color);
}

.services-section__card-content button:hover {
  background-color: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.flyttservice-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  /* gap: 3rem; */
  justify-content: space-between;
  padding: 3.5rem 0;
}

.flyttservice-image {
  flex: 1 1 300px;
  max-width: 600px;
  border-radius: 1.5rem;
  overflow: hidden;
}

.flyttservice-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1.5rem;
  object-fit: cover;
}

.flyttservice-content {
  flex: 1 1 300px;
  max-width: 640px;
  background-color: var(--primary-color);
  border-radius: 2rem;
  padding: 2.5rem 3rem;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.flyttservice-content h1 {
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.flyttservice-content ul {
  list-style-type: disc;
  padding-left: 1.25rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  font-size: 0.875rem;
}

.flyttservice-content ul li {
  margin-bottom: 0.25rem;
}

.flyttservice-content p {
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 2rem;
  max-width: 320px;
}

.flyttservice-content button {
  font-weight: 600;
  font-size: 0.875rem;
  color: white;
  background: transparent;
  border: 1.5px solid white;
  border-radius: 0.5rem;
  padding: 0.5rem 1.25rem;
  width: max-content;
  cursor: pointer;
  transition: all 0.3s ease;
}

.flyttservice-content button:hover {
  background-color: white;
  color: #1e3a8a;
}

@media (max-width: 767.98px) {
  .flyttservice-container {
    flex-direction: column;
    align-items: center;
  }

  .flyttservice-content,
  .flyttservice-image {
    max-width: 100%;
  }

  .flyttservice-content p {
    max-width: 100%;
  }
}

.faq-section {
  padding: 3rem 0;
  /* max-width: 1200px; */
  /* margin: 0 auto; */
}

.faq-header {
  max-width: 600px;
  margin-bottom: 3rem;
}

.faq-header__title {
  font-weight: 800;
  font-size: 2rem;
  line-height: 1.2;
  color: #2a2a2a;
  margin: 0 0 0.5rem 0;
}

.faq-header__subtitle {
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1.3;
  color: #4f4f4f;
  margin: 0;
}

.faq-cards {
  gap: 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.faq-card {
  background-color: var(--primary-color);
  color: white;
  padding: 1.5rem;
  border-radius: 1.5rem 1.5rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
}

/* Custom border radius for each card */
.faq-card--1 {
  border-radius: 30px 100px 30px 30px;
  padding: 50px 30px 50px 30px;
}

.faq-card--2 {
  border-radius: 30px 30px 30px 100px;
  padding: 50px 30px 50px 30px;
}

.faq-card--3 {
  border-radius: 100px 30px 30px 30px;
  padding: 50px 30px 50px 30px;
}

.faq-card--4 {
  border-radius: 30px 30px 100px 30px;
  padding: 50px 30px 50px 30px;
}

.faq-card__title {
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.faq-card__text {
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1.5;
  margin: 0;
}

@media (min-width: 576px) {
  .faq-header__title {
    font-size: 2.25rem;
  }

  .faq-header__subtitle {
    font-size: 0.875rem;
  }

  .faq-card__title {
    font-size: 1.125rem;
  }

  .faq-card__text {
    font-size: 0.875rem;
  }
}

.section-container {
  background-color: var(--primary-color);
  padding: 4rem 1.5rem;
  color: white;
}

.section-container .content h1 {
  font-weight: 800;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.section-container .content p {
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 2.5rem;
}

.section-container .content button {
  border: 1px solid white;
  border-radius: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  background-color: transparent;
  color: white;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.section-container .content button:hover {
  background-color: white;
  color: #1b3b82;
  cursor: pointer;
}

.section-container .image img {
  border-radius: 1.5rem;
  width: 100%;
  height: auto;

  object-fit: cover;
}

@media (min-width: 768px) {
  .section-container .content h1 {
    font-size: 3rem;
  }
}

.instagram-section {
  border-top: 1px solid #1e40af;
  /* blue-800 */
  border-bottom: 1px solid #1e40af;
  padding: 5.5rem 0;
}

.instagram-section .container>.row>.instagram-text h2 {
  font-weight: 800;
  color: #1f2937;
  /* gray-900 */
  font-size: 36px;
  /* text-lg */
  line-height: 1.25rem;
  /* leading-tight */
  margin: 0;
}

.instagram-section .container>.row>.instagram-link a {
  font-weight: 800;
  color: var(--primary-color);
  /* blue-800 */
  font-size: 36px;
  /* text-lg */
  line-height: 1.25rem;
  /* leading-tight */
  text-decoration: none;
}

/* .instagram-section .container > .row > .instagram-link a:hover {
  text-decoration: underline;
} */
/* footer */
footer {
  background-color: var(--primary-color);
}

.footer-container {
  color: white;
  padding: 4rem 0;
}

.footer-container .footer-title {
  font-weight: 800;
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-container .footer-title span {
  color: white;
}

.footer-contact,
.footer-services {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.footer-contact a,
.footer-services a {
  color: white;
  text-decoration: underline;
  font-size: 0.875rem;
  display: block;
  margin-bottom: 1rem;
  max-width: max-content;
}

.footer-contact a.instagram-link {
  background-color: #fff;
  padding: 0.5rem;
  border-radius: 0.375rem;
  width: fit-content;
  /* margin-bottom: 2.5rem; */
}

.footer-contact a.instagram-link i {
  color: var(--primary-color);
  font-size: 20px;
}

.footer-office-hours {
  font-weight: 700;
  font-size: 0.875rem;
}

.footer-office-hours p {
  margin-bottom: 0.25rem;
}

.footer-map iframe {
  border-radius: 0.375rem;
  width: 100%;
  max-width: 300px;
  height: 400px;
  border: 0;
}

.footer-bottom {
  background-color: white;
  color: var(--primary-color);
  text-align: center;
  padding: 1rem 0;
  font-size: 0.875rem;
  font-weight: 600;
}

/* .footer-bottom .heart {
  color: #dc2626;
  font-weight: 700;
} */
@media (min-width: 768px) {

  .footer-contact,
  .footer-services {
    margin-bottom: 0;
  }
}

.footer-bottom p {
  margin: 5px 0;
}

.footer-bottom a {
  color: var(--primary-color);
}

/* FORM */
.flex-heading {
  display: flex;
  align-items: center;
  gap: 4px;
}

.progress-step-circle {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  border-radius: 50px;
  color: white;
  font-size: 11px;
  border: 1px solid white;
}

.bg-color {
  background: #f0f5ff;
}

.progress-step-circle.bg-light {
  background-color: #e9ecef;
  color: #6c757d;
}

.invalid-feedback {
  display: none;
  color: red;
}

input.is-invalid,
select.is-invalid {
  border-color: #dc3545;
}

.form-section button {
  background: var(--primary-color);
}

.form-section button:hover {
  background: var(--primary-color);
}

.form-section button:hover {
  background: white;
  color: black;
  border-color: var(--bs-black);
}

@media (max-width: 980px) {
  .faq-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .instagram-section {
    padding: 3rem 0;
  }

  .instagram-section .container>.row>.instagram-text h2,
  .instagram-section .container>.row>.instagram-link,
  .instagram-section .container>.row>.instagram-link a {
    font-size: 20px;
    text-align: left !Important;
  }

  .instagram-section .container>.row>.instagram-link {
    margin-top: 1rem;
    text-align: left !Important;
  }
}

@media (max-width: 767px) {
  .top-bar {
    padding: 0 !important;
  }

  .top-bar .phone {
    justify-content: center !important;
  }

  .top-bar .phone:first-child {
    background-color: #2D3133;
  }

  .top-bar .phone:first-child a,
  .top-bar .phone:first-child i {
    color: #fff;
  }

  .et_pb_menu .et_mobile_nav_menu {
    float: none;
    margin: 0 6px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .et_pb_menu .et_mobile_menu {
    top: 100%;
    padding: 5%;
  }

  .et_pb_menu .et_mobile_menu,
  .et_pb_menu .et_mobile_menu ul {
    list-style: none !important;
    text-align: left;
  }

  .et_pb_menu .et_mobile_menu ul {
    padding: 0;
  }

  .et_pb_menu .et_pb_mobile_menu_upwards .et_mobile_menu {
    top: auto;
    bottom: 100%;
  }

  #content {
    margin-top: 180px;
  }

}

@media (max-width: 576px) {
  .navbar-custom .logo img {
    width: 80px;
  }

  .mobile_menu_bar {
    font-size: 40px;
  }
  
      #content {
        margin-top: 160px;
    }

  .mobile_menu_bar .fa-bars:before {
    width: 40px;
  }

  .faq-cards {
    grid-template-columns: repeat(1, 1fr);
  }

  .footer-container {
    padding: 4rem 2rem;
  }
}