:root {
  --brand: #0259ab;
  --deepYellow: #fccc03;
  --yellow: #fdce03;
  --red: #ec1955;
  --dark: #000;
  --dark-light: #272727;
  --grey: #707070;
  --body-text-color: #333;
  --white: #ffffff;
  --body-font: "Source Sans Pro", sans-serif;
  --heading-font: "Oswald", sans-serif;
  --transition: all 0.3s ease-in-out;
}

.h2 {
  color: #262934;
}

@media (min-width: 992px) {
  .pl-lg-3 {
    padding-left: 3rem !important;
  }
}

.btn {
  font-family: var(--heading-font);
  font-size: 24px;
  font-weight: 500;
  min-height: 64px;
  min-width: 194px;
}
.btn-primary {
  background-color: var(--deepYellow);
  color: var(--white);
  border: 1px solid var(--deepYellow);
  border-radius: 5px;
  padding: 10px;
  transition: all 0.3s ease-in-out;
}

.padding_block {
  padding-block: clamp(50px, 5vw, 80px);
}

.padding_block_90 {
  padding-block: clamp(40px, 5vw, 90px);
}

label.error {
  font-size: 12px;
  position: relative;
  top: -10px;
  color: var(--red);
}

/* _____________________________maincss__________________________ */
/* header */
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.site_header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  transition: 0.3s ease-in-out;
}
.site_header.fixed-header {
  background-color: #00162a;
  animation: slideDown 0.3s ease-in-out;
  position: fixed;
  z-index: 999;
}
.logo {
  background: #fff;
  padding: 10px 10px;
  height: 80px;
  border-radius: 0 0 6px 6px;
}
.site_header.fixed-header .logo {
  border-radius: 0;
}
.header_holder {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
.header_links ul {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
}
.header_links ul li a {
  transition: 0.3s ease-in-out;
  font-family: var(--heading-font);
  color: var(--white);
}
.header_links ul li span {
  transition: 0.3s ease-in-out;
}
.header_links ul li a:hover span {
  color: var(--deepYellow) !important;
}
.header_links ul li.phone_link a {
  padding: 10px 15px;
  border: 1.5px solid var(--deepYellow);
  border-radius: 6px;
}
.header_links ul li.phone_link a:hover {
  background: var(--deepYellow);
}
.header_links ul li.phone_link a:hover span {
  color: var(--white) !important;
}
/* banner */
.hero_banner {
  padding-top: 140px;
  padding-bottom: 90px;
  background-image: url(/images/home/desktopBannerImg.webp);
  background-size: cover;
  background-position: 0 0;
  background-repeat: no-repeat;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero_banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(0, 22, 42, 1),
    rgba(0, 22, 42, 0.89) 21.13%,
    rgba(4, 89, 171, 0.68)
  );
}
.banner_holder {
  position: relative;
  z-index: 1;
}
.banner_holder {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.banner_title {
  font-size: clamp(35px, 5vw, 68px);
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
}
.banner_text {
  font-size: clamp(14px, 5vw, 22px);
  font-weight: 400;
  letter-spacing: -2%;
  line-height: 1.2;
  margin: 0;
}
.banner_text strong {
  font-weight: 700;
  color: var(--deepYellow);
  font-size: 26px;
}
.left_banner {
  gap: 20px;
}
.certificates {
  gap: 80px;
}
.client_review img {
  width: 100%;
}
.title_mark {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -2%;
  line-height: 1.2;
}
.title_form {
  font-size: 34px;
  font-weight: 500;
  color: var(--brand);
  line-height: 1.2;
}
.form_banner {
  padding-top: 40px;
  padding-bottom: 60px;
  padding-inline: 50px;
  background: #fff;
  border-radius: 8px;
}
.form_banner .form-control {
  background: #edf1fc;
  margin-bottom: 10px;
  min-height: 50px;
  padding-inline: 15px;
  font-size: 16px;
  border-radius: 6px;
  border: 0;
}
.form_banner textarea.form-control {
  min-height: 140px;
}
.form_banner p {
  color: #53555c;
  font-size: 18px;
}
.right_banner {
  margin-inline-start: 60px;
}

/* video */
.title_hding {
  font-size: clamp(20px, 5vw, 50px);
  line-height: 1.1;
  color: #262934;
  font-weight: 500;
  letter-spacing: -2%;
  max-width: 810px;
  text-align: center;
  margin: 0 auto;
}
.heading_holder {
  margin-bottom: 50px;
}
section {
  padding-top: 90px;
  padding-bottom: 90px;
}
.video-btn {
  position: absolute;
  top: 50%;
  z-index: 1;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 0;
  width: 90px;
  height: 90px;
  background: #8c8c8c;
  border-radius: 100%;
  padding-inline-start: 5px;
}
.video-btn img {
  max-width: 25px;
}

.counter-container {
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(180px, 1fr) minmax(180px, 1fr) minmax(180px, 1fr)
  );
}
.counter_bx {
  display: grid;
  padding-inline-start: 20px;
}
.counter_bx:not(:last-child) {
  border-inline-end: 1px solid #d5d6da;
}
.counter_bx h3 {
  margin: 0;
  font-weight: 500;
  font-size: 44px;
  color: #262934;
  line-height: 1.2;
}
.counter_text {
  grid-column-start: 2;
  grid-column-end: 5;
}
.counter_bx .counter_icon {
  margin-top: 12px;
}
.hding-subtitle {
  font-size: clamp(12px, 5vw, 18px);
  font-weight: 400;
  max-width: 70%;
  margin: 0 auto;
  margin-top: clamp(12px, 5vw, 18px);
  text-align: center;
}
.logo_slider {
  background: #edf1fc;
}
.logo-slider .item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
}
.logo-slider .item img {
  max-width: 200px;
  max-height: 80px;
  object-fit: contain;
}
.logo-slider {
  padding-inline: 40px;
  position: relative;
}
.logo-slider .owl-nav {
  display: flex;
  justify-content: space-between;
  position: absolute;
  width: 102%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.logo-slider .owl-nav button i {
  background: transparent;
  width: 40px;
  height: 40px;
  color: #262934;
  border: 1px solid var(--deepYellow);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}
.logo-slider .owl-nav button i:hover {
  background: var(--deepYellow);
  color: var(--white);
}
/* testimonials */
.seamless_slider {
  background: var(--brand);
}
.title_hding.text-start {
  max-width: inherit;
}
.heading_holder.text-start {
  padding-inline-end: 96px;
}

.testi_bx {
  background: #0766bf;
  padding: clamp(10px, 4vw, 45px);
  border-radius: 10px;
  padding-top: 0;
  border: 1px solid #0c76da;
  margin-top: 40px;
}
.rating_holder ul {
  display: flex;
  gap: 10px;
  color: #fccc03;
}
.testi_bx img.testi_img {
  width: 96px !important;
  height: 96px;
  border-radius: 100%;
  box-shadow: 0 0 0 8px var(--deepYellow);
}
.testi_bx p {
  min-height: 270px;
  font-weight: 400;
  font-size: 16px;
}
.testi_bx figure {
  top: -42px !important;
  position: relative;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  width: fit-content;
  border-radius: 100%;
}
.seamless_slider_holder .owl-item {
  padding-top: 50px;
}
.seamless_slider_holder .owl-nav,
.services_slider .owl-nav {
  display: flex;
  justify-content: flex-end;
  max-width: 1230px;
  top: -20%;
  width: 100%;
  padding: 0 10px;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0%);
  gap: 10px;
}
.testi_bx:hover {
  background: #fff;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
.testi_bx:hover p {
  color: #262934 !important;
}
.testi_bx:hover .title_name {
  color: #262934 !important;
}
.seamless_slider_holder,
.services_slider {
  display: flex;
  flex-direction: column-reverse;
}
.seamless_slider_holder .owl-nav button i,
.services_slider .owl-nav button i {
  background: transparent;
  width: 40px;
  height: 40px;
  color: var(--white);
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}
.seamless_slider_holder .owl-nav button:hover i,
.services_slider .owl-nav button:hover i {
  background: var(--deepYellow);
  color: var(--white);
  border-color: var(--deepYellow);
}
/* meet the team */
.team_img img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.team_img {
  /* margin-inline-end: 50px; */
  position: relative;
}
.team-content {
  padding-inline: clamp(20px, 5vw, 90px) 0;
}
.team_img::after {
  position: absolute;
  content: "";
  left: -20px;
  top: 20px;
  background: var(--deepYellow);
  width: 100%;
  height: 100%;
  z-index: -1;
  border-radius: 10px;
}
.team_section {
  padding-block-end: 100px;
  padding-block-start: 90px;
}
.light_bg {
  background: #edf1fc;
}

/* services */

.services_slider .owl-nav button i {
  border-color: var(--deepYellow);
  color: #262934;
}
.services_slider .owl-nav {
  top: -90px;
}
.services_slider .owl-item {
  padding-block: 20px 50px;
}
.service_bx figure img {
  height: 203px;
  border-radius: 10px;
  object-fit: cover;
}
.service_bx figure {
  margin-inline: -20px;
}
.service_bx {
  background: #fff;
  padding: 35px;
  padding-top: 15px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: 0.3s ease-in-out;
}
.service_icon img {
  width: 34px;
  height: 34px;
  transition: 0.3s ease-in-out;
}
.service_bx p.service_text {
  font-size: 17px;
  font-weight: 400;
  min-height: 153px;
}
.service_icon {
  width: 75px;
  height: 75px;
  justify-content: center;
  box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 100%;
  margin-top: -40px;
  z-index: 1;
  transition: 0.3s ease-in-out;
  position: relative;
  margin-bottom: 10px;
}
.service_title {
  font-size: 21px;
}
.service_bx:hover {
  box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.12);
}
.service_bx:hover .service_icon {
  background-color: #0259ab;
}
.service_bx:hover .service_icon img {
  filter: invert(1) brightness(100);
}
.steps_holder {
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(200px, 1fr) minmax(200px, 1fr)
  );
  row-gap: 20px;
}
.steps_box figure {
  width: 116px;
  height: 116px;
  border-radius: 100%;
  background: var(--brand);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.steps_box figure::after {
  position: absolute;
  content: "";
  width: calc(100% + 12px);
  height: calc(100% + 12px);
  border-radius: 100%;
  border: 2px dashed var(--brand);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  z-index: -1;
}
.steps_box figure img {
  width: 40px;
  height: 40px;
}
.steps_box .step_title {
  font-size: 24px;
}
.steps_box ul li:last-child {
  border: none;
}
.steps_box ul li {
  color: #53555c;
  background: url(/images/home/check.svg) no-repeat 0 20px;
  background-size: 20px;
  min-height: 110px;
  padding-left: 2rem;
  line-height: 1.3;
  padding-block: 20px;
  border-bottom: 1px solid #cacdcf;
  position: relative;
  font-size: 18px;
}
.steps_box .step {
  color: #53555c;
  font-weight: 600;
}
.steps_box {
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
}
.steps_box:not(:last-child) {
  padding-inline-end: 50px;
}
.steps_box:not(:last-child)::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  top: 55px;
  left: 0;
  border-bottom: 2px dashed var(--brand);
  z-index: -1;
}
.steps_box:not(:last-child)::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  top: 45px;
  left: 65%;
  background: url(/images/check.svg) no-repeat center;
  background-size: 20px;
}
.cta_holder {
  background: url(/images/holds-notepad-with-document.png) no-repeat 0 0;
  background-size: cover;
  padding: 50px;
  border-radius: 20px;
}
.cta_holder > div {
  display: grid;
  grid-template-columns: auto 1fr;
  z-index: 1;
}
.cta_holder::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #00162a, #00162a82 60%, transparent);
  border-radius: 20px;
  top: 0;
  left: 0;
}
.certified_holder.heading_holder.text-start {
  padding-inline-end: 60px;
}
.certified_img::after {
  right: -20px;
  left: inherit;
}
.certified_section .team-content {
  padding-inline: 0 clamp(20px, 5vw, 90px);
}
.certified_section {
  padding-block-start: 90px;
  padding-block-end: 120px;
}
.testi_bx figure {
  top: -42px !important;
  position: relative;
}
.seamless_slider_holder .owl-item {
  padding-top: 50px;
}
/* footer section start */
.footer_sec {
  width: 100%;
  background: var(--brand);
  font-family: var(--heading-font);
}
.footer_sec .footer_inner {
  width: 100%;
  padding-block: 60px;
  display: flex;
  /* align-items: center; */
  /* display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); */
  row-gap: 30px;
}
.footer_sec .footer_inner .logo_foot {
  width: auto;
  display: flex;
  align-self: center;
}
.footer_sec .footer_inner .logo_foot img {
  max-width: 240px;
  border-radius: 4px;
}
.footer_sec .footer_inner .footer_menu {
  display: flex;
  width: 28%;
  /* flex-direction: column; */
  padding-inline: 20px;
  gap: 20px;
}
.footer_sec .footer_inner .footer_menu.ph {
  flex-direction: row;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 0;
  width: 33%;
}
.footer_sec .footer_inner .footer_menu .link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-transform: none;
}
.footer_sec .footer_inner .footer_menu.ph .link {
  font-size: 16px;
}
.footer_sec .footer_inner .footer_menu .link i {
  color: #fff;
}
.footer_sec .footer_inner .footer_menu .link:hover {
  text-decoration: underline;
}
.footer_sec .footer_inner .footer_menu:not(:last-child) {
  border-inline-end: 1px solid #0e70cc;
}
.copy_right {
  background: #025099;
  padding-block: 20px;
}
.copy_right .copy_right_inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  font-family: var(--body-font);
  color: #ffffff72;
}
.social_links {
  width: auto;
}
.social_links ul {
  display: flex;
  gap: 10px;
}
.social_links ul li {
  margin: 0;
}
.social_links ul li a {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #ffffff42;
  color: #fff;
  transition: 0.3 ease-in-out;
}
.social_links ul li a:hover {
  background: var(--deepYellow);
}
.social_links ul li a i {
  padding: 0;
  margin: 0;
  color: #fff;
}
/* footer section end */

/* office_location start */
.office_location {
  width: 100%;
}
.office_location .inner_office_location {
  width: 100%;
}
.office_location .inner_office_location .loaction_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px;
}
.office_location .inner_office_location .loaction_grid .loaction_grid_bx {
  width: 100%;
  background: #edf1fc;
  padding: 12px;
  border-radius: 20px;
}
.office_location
  .inner_office_location
  .loaction_grid
  .loaction_grid_bx
  .loaction_img {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  overflow: hidden;
}
.office_location
  .inner_office_location
  .loaction_grid
  .loaction_grid_bx
  .loaction_img
  iframe {
  width: 100%;
  height: 315px;
}
.office_location
  .inner_office_location
  .loaction_grid
  .loaction_grid_bx
  .loaction_text {
  width: 100%;
  margin-block-start: 16px;
}

/* office_location end */

/* cta_btn */
.cta_btn {
  width: 100%;
  padding-block-start: clamp(50px, 5vw, 80px);
}
.cta_inner {
  width: 100%;
  background: url("../images/CTA/CTA.webp") no-repeat center center;
  background-size: cover;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 40px;
  padding-inline: clamp(20px, 5vw, 80px);
}
.cta_inner .cta_title {
  color: #fff;
  font-size: 36px;
  font-weight: 500;
  max-width: 540px;
  margin: 0;
}
/* cta_btn */

/* chossing_us */
.chossing_us {
  width: 100%;
  background: #edf1fc;
}

.chossing_us .inner_chossing_us {
  width: 100%;
}
.chossing_us .inner_chossing_us .chossing_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-block-start: 40px;
}
.chossing_us .inner_chossing_us .chossing_grid .chossing_grid_bx {
  width: 100%;
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
  position: relative;
  isolation: isolate;
}
.chossing_us .inner_chossing_us .chossing_grid .chossing_grid_bx .big_image {
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: -1;
}
.chossing_us .inner_chossing_us .chossing_grid .chossing_grid_bx .loaction_img {
  width: 76px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
}
.chossing_us
  .inner_chossing_us
  .chossing_grid
  .chossing_grid_bx
  .loaction_text {
  width: 100%;
  margin-block-start: 16px;
}

.chossing_us
  .inner_chossing_us
  .chossing_grid
  .chossing_grid_bx
  .loaction_text
  .sub_text {
  margin-block-start: 8px;
}

.chossing_us .inner_chossing_us .chossing_grid .chossing_grid_bx:hover {
  background: #0259ab;
}
.chossing_us
  .inner_chossing_us
  .chossing_grid
  .chossing_grid_bx:hover
  .loaction_img {
  background: #fccc03;
}
.chossing_us
  .inner_chossing_us
  .chossing_grid
  .chossing_grid_bx:hover
  .loaction_img
  img {
  filter: brightness(0) invert(1);
}
.chossing_us
  .inner_chossing_us
  .chossing_grid
  .chossing_grid_bx:hover
  .loaction_text
  > * {
  color: #fff;
}

.hide {
  display: none;
}
.form_banner_modal {
  position: relative;
  max-width: 554px;
  margin: 20px auto;
  z-index: 12346;
  padding: 0;
  background: #d9ecff;
  border-radius: 10px;
}
.form_banner_modal .form_holder {
  padding-inline: 45px;
  padding-block: 45px;
}

.form_banner_modal .form_hding {
  background: var(--brand) url(/images/modalobject.png) no-repeat center;
  position: relative;
  padding-inline: 50px;
  padding-block: 30px;
  background-size: cover;
  border-radius: 10px;
}
.close_modal {
  position: absolute;
  width: 27px;
  height: 27px;
  border-radius: 100%;
  border: 0;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  right: 12px;
  top: 12px;
  transition: 0.3s ease-in-out;
}

.close_modal i {
  font-size: 14px;
  transition: 0.3s ease-in-out;
  color: #1b1d24;
}
.close_modal:hover {
  background: var(--deepYellow);
}
.close_modal:hover i {
  color: #fff;
}
.form_banner_modal .form_hding .title_form {
  font-size: 27px;
}
.overdrop {
  position: fixed;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  z-index: 12345;
  background: rgba(0, 0, 0, 0.8);
}
.form_modal_holder {
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  padding-inline: 10px;
  z-index: 12345;
  left: 0;
  overflow: hidden;
  overflow-y: auto;
}
/* width */
.form_modal_holder::-webkit-scrollbar {
  width: 8px;
}

/* inner_hero_banner */
.hero_banner.inner_hero_banner {
  padding-top: 140px;
  padding-bottom: 0px;
  background-image: none;
  background-color: #eaf5ff;
  background-size: cover;
  background-position: 0 0;
  background-repeat: no-repeat;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  position: relative;
}

.hero_banner.inner_hero_banner .left_banner {
  padding-block-end: clamp(30px, 5vw, 50px);
}
.hero_banner.inner_hero_banner .right_banner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero_banner.inner_hero_banner .right_banner img {
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  margin-inline: auto;
}

.inner_hero_banner .top_text {
  font-size: clamp(20px, 5vw, 24px);
  font-weight: 600;
  color: var(--brand);
}

.hero_banner.inner_hero_banner::after {
  display: none;
}

.hero_banner.inner_hero_banner .banner_title {
  color: var(--brand);
}
.inner_hero_banner .banner_text strong {
  color: var(--brand);
}

/* inner_hero_banner */

/* step */
.process__card {
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  border: 1px solid #d8d8d8;
  border-radius: 1.25rem;
}
.process__card .num {
  font-size: 5rem;
  top: 1rem;
  right: 1rem;
  opacity: 0.05;
  line-height: 0.7;
}
/* step */

/* better_service_sec */
.better_service_sec {
  background: #edf1fc;
}
.better_list_wrapper {
  width: 100%;
}
.better_list {
  width: min(100%, 800px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.better_list .better_list_item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
}

.better_list .icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background: var(--deepYellow);
}

.better_list .icon i {
  display: flex;
  font-size: 12px;
  color: var(--white);
}

.better_list .text {
  margin: 0;
  flex: 1;
}
/* better_service_sec */

/* quick_look_sec */
.quick_look_sec {
  width: 100%;
}
.quick_look_wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 30px;
}
.quick_look_item {
  width: 100%;
  box-shadow: 0px 2px 8px 0px rgba(158, 158, 158, 0.5);
  border: 1px solid #e8e8e8;
  border-radius: 0.5rem;
  overflow: hidden;
}
.quick_look_img {
  width: 100%;
  height: 280px;
  overflow: hidden;
}
.quick_look_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .quick_look_wrapper {
    grid-template-columns: 1fr;
  }
}

/* quick_look_sec */

/* why_chose_sec */
.why_chose_sec {
  width: 100%;
}

.why_chose_wrapper {
  width: min(100%, 800px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 20px;
}

.why_chose_wrapper .why_chose_item {
  width: 100%;
  box-shadow: 0px 2px 8px 0px rgba(158, 158, 158, 0.5);
  border: 1px solid #e8e8e8;
  border-radius: 0.5rem;
  overflow: hidden;
}

.why_chose_wrapper .card-body {
  padding: 0;
}

.why_chose_wrapper .head_title {
  font-size: 20px;
  font-weight: 600;
  background: var(--yellow);
  color: var(--white);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  margin: 0;
}

.why_chose_wrapper .head_title.blue_bg {
  background: var(--dark);
  color: var(--white);
}

.list_why_chose {
  width: 100%;
  padding: 14px 20px 20px;
}

.list_why_chose ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list_why_chose ul li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.list_why_chose ul li .icon {
  position: relative;
  top: 12px;
  font-size: 14px;
}

.list_why_chose ul li .text {
  padding-block: 10px;
  margin: 0;
  flex: 1;
  border-bottom: 1px solid #272727;
}

.list_why_chose ul li:last-child .text {
  border-bottom: none;
}

.heading_holder2 {
  text-align: center;
  margin-block-start: 40px;
}

/* why_chose_sec */
