* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: visible;
  font-size: 62.5%;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.3em;
  overflow-x: hidden;
  background-color: var(--color-white);
  color: var(--accent-color);
  position: relative;
}

html,
body,
.wrapper {
  height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  font-family: var(--heading-font);
  letter-spacing: 0;
  margin-bottom: 1rem;
  color: var(--black-alt);
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 3rem;
}

h3 {
  font-size: 2.5rem;
}

h4 {
  font-size: 2rem;
}

h5 {
  font-size: 1.5rem;
}

h6 {
  font-size: 1rem;
}

:root {
  --heading-font: "Plus Jakarta Sans", sans-serif;
  --accent-font: "Plus Jakarta Sans", sans-serif;
  --main-color: #d90429;
  --color-red: #d90429;
  --color-white: #fff;
  --color-000: #000;
  --black-alt: #232323;
  --accent-color: #575757;
  --light-grey: #fafafa;
  --icon-font: "bootstrap-icons";
}

img {
  border: none;
  outline: none;
  max-width: 100%;
}

label {
  display: inline-block;
  font-weight: normal;
  margin-bottom: 5px;
  width: 100%;
}

.input-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

input,
select,
textarea {
  width: 100%;
  background-color: #fafafa;
  padding: 1.5rem 2rem;
  padding-left: 4rem;
  border: 1px solid #ddd;
  outline: none;
  position: relative;
  font-size: 1.4rem;
  color: var(--accent-color);
  font-weight: 400;
  font-family: var(--accent-font);
  border-radius: 5rem;

  &:focus {
    border: 1px solid var(--color-red);
  }
}

textarea {
  border-radius: 1rem;
  max-height: 10rem;
}

.field-icon {
  position: absolute;
  top: 0;
  right: 0;
  color: var(--color-white);
  font-size: 2rem;
  background-color: var(--main-color);
  height: 100%;
  width: 5rem;
  display: grid;
  place-content: center;
  cursor: pointer;
  outline: none;
  border-top-right-radius: 5rem;
  border-bottom-right-radius: 5rem;
  border: 1px solid var(--main-color);
}

.text-inherit {
  color: inherit;
}

a,
.btn,
button {
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  outline: medium none;
}

a,
img,
iframe {
  border: none;
  text-decoration: none !important;
}

p {
  font-family: var(--accent-font);
  color: var(--accent-color);
  margin: 0 0 1.5rem;
  text-transform: none;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 2.8rem;
}

hr {
  margin-top: 0;
  margin-bottom: 0;
  border: 0;
  border-top: 1px solid #eee;
}

ul {
  margin: 0;
  list-style-type: none;
  padding: 0;
}

a:active,
a:focus,
a:hover {
  outline: none;
  text-decoration: none;
}

.bg-gray {
  background-color: var(--light-grey);
}

.bg-light {
  background-color: var(--color-white);
}

.bg-theme {
  background-color: var(--main-color);
}

.default-padding,
.default-padding-top,
.default-padding-bottom,
.default-padding-mx {
  position: relative;
  z-index: 1;
}

.default-padding {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.default-padding-sm {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.default-padding-mx {
  padding-top: 10rem;
  padding-bottom: 10rem;
}

.default-padding-top {
  padding-top: 8rem;
}

.default-padding-bottom {
  padding-bottom: 8rem;
}

.padding-xl {
  padding-top: 15rem;
  padding-bottom: 15rem;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: -1;
}

.mb-40 {
  margin-bottom: 4rem;
}

.top-border {
  border-top: 1px solid var(--accent-color);
}

.align-center {
  align-items: center;
}

/******** primary btn **********/
.btn-primary {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 0;
  background-color: var(--main-color);
  padding: 1.5rem 3rem;
  border-radius: 0.5rem;
  color: var(--color-white);
  font-weight: 500;
  font-family: var(--heading-font);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  outline: none;
  text-decoration: none;
  transition: all 500ms ease-in;
}

.btn-primary::before {
  content: "";
  position: absolute;
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  transform: scale(0);
  -webkit-transition: 0.3s ease-in;
  transition: all 500ms ease-in;
  background: #111010;
  z-index: -1;
}

.btn-primary:hover {
  color: var(--color-white);
}

.btn-primary:hover::before {
  transform: scale(3);
}

.btn-primary.with-outline {
  background-color: #111010;

  &::before {
    background-color: var(--main-color);
  }
}

.swiper-container {
  overflow: hidden;
  position: relative;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;

  h2 {
    position: relative;
    color: var(--color-000);
    font-size: 3rem;
    font-weight: 600;
    text-transform: capitalize;
  }
}

/* =================Navbar start===================== */

.navbar.fixed {
  position: fixed;
  top: 0;
  width: 100%;
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.05);
}

.navbar {
  background-color: var(--color-white);
  width: 100%;
  z-index: 9999;
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.05);
  transition: background 0.3s, box-shadow 0.3s;

  .navbar-brand {
    img {
      max-width: 20rem;
    }
  }

  .navbar-nav {
    gap: 1.5rem;

    .nav-link,
    .dropdown-item {
      position: relative;
      font-size: 1.6rem;
      font-weight: 600;
      color: var(--accent-color);
      transition: color 300ms ease-in, border-bottom 200ms linear;
      border-bottom: 2px solid var(--color-white);

      &.active {
        color: var(--color-red);
        border-bottom: 2px solid var(--color-red);
      }

      &:hover {
        color: var(--color-red);
        border-bottom: 2px solid var(--color-red);
      }
    }

    .dropdown {
      &:hover {
        .dropdown-menu {
          opacity: 1;
          visibility: visible;
          transform: translateY(0px);
        }

        .dropdown-toggle::after {
          transform: rotate(180deg);
        }
      }
    }

    .dropdown-item.active,
    .dropdown-item:active {
      background-color: var(--light-grey);
      color: var(--color-red);
    }

    .dropdown-menu {
      padding: 0;
      border: 0;
      border-radius: 0;
      border-top: 2px solid var(--light-grey);
      box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
      transform: translateY(20px);
      display: block;
      opacity: 0;
      visibility: hidden;
      transition: opacity 200ms, transform 250ms linear;

      .dropdown-item {
        padding: 1.5rem 2rem;
        border-bottom: 2px solid var(--light-grey);

        &:hover {
          border-bottom: 2px solid var(--color-red);
        }
      }

      .sub-dropdown-menu {
        position: relative;

        .sub-dropdown-menu-li {
          box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
          transform: translateY(20px);
          display: block;
          opacity: 0;
          visibility: hidden;
          transition: opacity 200ms, transform 250ms linear;
          background-color: var(--color-white);
          position: absolute;
          top: 0;
          left: 100%;

          &.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0px);

            .dropdown-toggle::after {
              transform: rotate(180deg);
            }
          }
        }

        &:hover {
          .sub-dropdown-menu-li {
            opacity: 1;
            visibility: visible;
            transform: translateY(0px);
          }

          .dropdown-toggle::after {
            transform: rotate(180deg);
          }
        }
      }

      &.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0px);

        .dropdown-toggle::after {
          transform: rotate(180deg);
        }

        &::after {
          transform: rotate(180deg);
        }
      }
    }
  }
}

.hero_banner {
  padding: 18rem 0 12rem 0;
  background-image: url("./assests/banners/OFS-HeroImage-01-scaled-banner.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 0;

  .hero_content {
    h1 {
      font-size: 5rem;
      color: var(--color-white);
    }

    p {
      color: var(--color-white);
      font-size: 18px;
    }
  }

  &::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: rgba(0, 0, 0, 0.45);
    z-index: -1;
  }
}

/* ===============ABOUT US PAGE START============= */
.title-area .sub-title {
  display: inline-block;
  color: var(--color-red);
  font-size: 14px;
  font-weight: 700;
  font-family: var(--heading-font);
  position: relative;
  margin-bottom: 1.5rem;
  padding-left: 4rem;
  text-transform: uppercase;
  word-spacing: 2px;
}

.title-area .sub-title.yellow {
  color: var(--main-color);
}

.title-area .sub-title:before {
  position: absolute;
  content: "";
  background-color: var(--color-red);
  left: 0px;
  width: 30px;
  top: 1.2rem;
  bottom: 10px;
  height: 2px;
}

.title-area .sub-title:after {
  position: absolute;
  content: "";
  background-color: var(--color-red);
  top: 0.7rem;
  width: 20px;
  left: 10px;
  height: 2px;
}

.title-area .sec-title {
  font-size: 3.5rem;
  color: var(--color-000);
  font-weight: 700;
  line-height: 1.2em;
  margin-bottom: 2rem;
}

.title-area.text-white .sec-title {
  color: var(--color-white);
}

.title-area.text-center {
  .sub-title {
    display: block;
    text-align: center;
    margin: auto;
    width: max-content;
  }

  .sec-title {
    text-align: center;
  }
}

.title-area.dark-text {
  .sec-title {
    color: var(--color-000) !important;
  }
}

.checklist ul {
  padding-left: 0;
  list-style: none;
  text-align: left;
  margin-bottom: 1rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 35px;
  -moz-column-gap: 35px;
  column-gap: 35px;
}

.checklist li {
  color: var(--black-alt);
  margin-bottom: 1.5rem;
  font-weight: 500;
  position: relative;
  padding-left: 28px;
}

.checklist li:first-child {
  margin-top: 0;
}

.checklist li:before {
  content: "\F270";
  font-weight: 900;
  font-family: "bootstrap-icons";
  color: var(--color-red);
  position: absolute;
  font-size: 2rem;
  left: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.about-author-wrap {
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  row-gap: 20px;
  -webkit-column-gap: 35px;
  -moz-column-gap: 35px;
  column-gap: 35px;
}

.about-author {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
}

.about-author_name {
  font-size: 2rem;
  color: var(--color-000);
  font-weight: 700;
}

.img-box-2 .img1 {
  margin-left: auto;
  max-width: 90%;
}

.img-box-2 .img2 {
  max-width: 25rem;
  margin-top: -100px;
  -webkit-animation: jumpAni 7s linear infinite;
  animation: jumpAni 7s linear infinite;
}

.img-box-2 .img3 {
  max-width: 30rem;
  position: absolute;
  bottom: 9rem;
  right: 12.7rem;
  -webkit-animation: movingX 8s linear infinite;
  animation: movingX 8s linear infinite;
}

@keyframes jumpAni {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes movingX {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  50% {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.our-process {
  width: 26rem;
  height: 26rem;
  position: relative;
  background: white;
  border-radius: 50%;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 4rem;
  z-index: 1;
  transition: background-color 300ms ease-in;

  .process-icon {
    width: 8rem;
    height: 8rem;
    position: absolute;
    right: 1.5rem;
    top: 1rem;
    background-color: var(--color-red);
    padding: 1.8rem;
    overflow: hidden;
    border-radius: 50%;
    text-align: center;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;

    img {
      filter: brightness(100);
      -webkit-filter: brightness(100);
      /* Safari */
      -moz-filter: brightness(100);
      /* Firefox */
      -ms-filter: brightness(100);
      /* Internet Explorer */
      -o-filter: brightness(100);
      /* Opera */
      transition: filter 100ms ease-in;
      -webkit-transition: -webkit-filter 100ms ease-in;
      /* Safari */
    }
  }

  .process-info {
    margin-top: 3rem;
    text-align: center;

    h3 {
      font-size: 2rem;
      font-weight: 700;
      color: var(--color-000);
    }
  }

  .process-count {
    position: absolute;
    top: 10%;

    h2 {
      margin-top: 3rem;
      font-size: 3rem;
      color: #ddd;
      font-weight: 900;
    }
  }

  .circle-badge {
    width: 90%;
    height: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 5px dashed #ddd;
    z-index: -1;
  }

  &:hover {
    background-color: var(--color-red);

    .process-icon {
      background-color: var(--color-white);

      img {
        filter: none;
      }
    }

    .process-info {
      h3,
      p {
        color: var(--color-white);
      }
    }

    .process-count h2 {
      color: var(--color-white);
    }
  }

  &::after {
    position: absolute;
    content: "";
    top: 20%;
    right: -8rem;
    width: 8rem;
    height: 5rem;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("assests/banners/arrow.svg");
  }
}

.process-arrow {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background-image: url("assests/banners/process-arrow.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.our-process-container {
  &.samll {
    .our-process {
      width: 25rem;
      height: 25rem;
    }
  }
}

.our-process-container .col-md-6:nth-child(odd) .our-process {
  margin-top: 5rem;

  &::after {
    transform: rotateX(180deg);
    top: 55%;
  }
}

.our-process-container .col-md-6:last-child .our-process {
  &::after {
    display: none;
  }
}

.counter-box {
  .icon-box {
    background-color: var(--color-white);
    border-radius: 1rem;
    padding: 2rem 3rem;
    margin-bottom: 2rem;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 2px dashed #dddd;

    .counter {
      display: flex;
      align-items: center;
      gap: 1rem;

      img {
        max-width: 6rem;
        margin-bottom: 1.5rem;
      }

      h1 {
        font-size: 3.5rem;
      }

      span {
        color: var(--accent-color);
        font-weight: 300;
      }
    }

    .icon-body {
      width: 100%;
      flex: 1 1;

      h2 {
        color: var(--black-alt);
      }

      p {
        margin: 0;
      }
    }
  }
}

.obzonik_info {
  overflow: hidden;
  border-radius: 1.5rem;
  min-height: 50rem;
  position: relative;
  z-index: 0;
  margin-bottom: 2.5rem;

  img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    transition: all 300ms linear !important;
  }

  .obzonik_info_content {
    padding: 2.5rem;
    position: absolute;
    left: 0;
    bottom: 0;
    padding-top: 5rem;

    h2,
    p {
      color: var(--color-white);
      letter-spacing: inherit;
      word-spacing: 1.5px;
    }

    p {
      margin: 0;
    }
  }

  .obzonik_info_content.first_child {
    top: 55%;
  }

  &::after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(
      180deg,
      transparent 45.19%,
      rgba(0, 0, 0, 0.8) 78.24%
    );
    z-index: -1;
  }

  &:hover {
    img {
      transform: scale(1.2);
    }
  }
}

.image {
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  overflow: hidden;
  background-color: var(--color-white);

  img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

.cta {
  position: relative;
  background-image: url("assests/banners/texture-bg.png");

  &::after,
  &::before {
    width: 25%;
    height: 27rem;
    position: absolute;
    content: "";
    top: 25%;
    /* left: 50%; */
    /* transform: translate(-50%, -50%); */
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 1;
  }

  &::after {
    background-image: url("assests/icons/car-1.svg");
    left: 0;
  }

  &::before {
    background-image: url("assests/icons/car-2.svg");
    right: 0;
  }

  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    background-image: linear-gradient(180deg, #111010 0%, #111010cf 100%);
  }

  h4 {
    color: var(--color-white);
    font-size: 2.5rem;

    span {
      color: var(--main-color);
    }
  }

  h1 {
    font-size: 4rem;
    color: var(--color-white);
    font-weight: 700;
  }

  .ph-number {
    color: var(--main-color);
    font-size: 2rem;
    font-weight: 600;
    font-family: var(--heading-font);
  }
}

/* ==============CTA SECTION END=============== */

.input-wrapper {
  label {
    width: 100%;
  }

  .input-icon {
    width: 4rem;
    height: 100%;
    display: grid;
    place-content: center;
    padding: 1rem;
    position: absolute;
    top: 0;
    left: 0;
    background-color: transparent;
    z-index: 5;

    i {
      font-size: 2rem;
      margin-top: 1.4rem;
      color: var(--accent-color);
    }
  }
}

.booking-form {
  width: 100%;
  height: 100%;
  background-color: var(--color-white);
  padding: 1.5rem 2rem;
  border-radius: 1rem;

  .car-price {
    position: absolute;
    top: -1.5rem;
    left: 1rem;
    background-color: var(--color-red);
    border-radius: 5rem;
    padding: 0 2rem;

    h3 {
      color: var(--color-white);
      line-height: 3rem;
      margin: 0;
    }
  }
}

.popup_container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 300ms ease;

  .popup_header {
    padding: 1.5rem 0;
    border-bottom: 1px solid #ddd;
    margin-bottom: 2rem;

    h2 {
      color: var(--color-000);
      font-size: 2.3rem;
      font-weight: 600;
      margin: 0;
      text-align: center;
    }
  }

  .popop_wrapper {
    display: flex;
    max-width: 55rem;
    max-height: 80vh;
    overflow: hidden;
    overflow-y: scroll;
    background-color: var(--color-white);
    padding: 2.5rem;
    padding-top: 0;
    position: relative;

    .closepopup {
      position: absolute;
      top: 0;
      left: 0;
      width: 4rem;
      height: 4rem;
      display: grid;
      place-content: center;
      background-color: var(--main-color);
      cursor: pointer;

      i {
        line-height: 0;
        font-size: 20px;
        color: var(--color-white);
      }
    }
  }

  &.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

/* CATEPAGE  */

.breadcumbs {
  position: relative;
  padding: 15rem 0;
  background: url("assests/banners/breadcums.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;

  h1 {
    font-size: 3.5rem;
    color: var(--color-white);
    font-weight: 700;
    text-align: center;
  }

  &::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
  }
}

.product_wrapper_container {
  background-color: var(--color-white);

  .product_wrapper {
    background-color: var(--light-grey);
    border: 1px solid #ddd;
    border-radius: 2.5rem;
    padding: 2.5rem;
    text-align: center;
    transition: all 300ms linear;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;

    img {
      border-radius: 1.5rem;
    }

    h3 {
      margin: 1.5rem 0;
      text-transform: capitalize;
    }

    .product_btn_wrapper {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 2.5rem;
    }

    &:hover {
      transform: scale(1.05);
    }
  }
}

.whatsapp_btn {
  position: fixed;
  bottom: 3rem;
  right: 3rem;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  z-index: 9999;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;

  img {
    max-width: 100%;
  }
}

.footer_icon {
  flex-wrap: wrap;
  gap: 1rem;
  row-gap: 1rem;

  h4 {
    width: 100%;
  }

  a {
    border-radius: 50%;
    background-color: var(--main-color);
    display: inline-grid;
    place-content: center;
    font-size: 2rem;
    width: 40px;
    height: 40px;

    i {
      line-height: 0;
      color: var(--color-white);
      font-size: 1.8rem;
    }

    &:last-child {
      margin-top: 1rem;
    }
  }
}

.product_image {
  position: relative;
  overflow: hidden;
  transition: all 300ms linear;
  box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;

  img {
    width: 100%;
    height: auto;
    transition: all 300ms linear;
  }

  &:hover {
    img {
      transform: scale(1.3);
    }

    &::after {
      opacity: 1;
    }
  }
}

.single_product_description {
  h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
  }

  .box1 {
    padding: 2.5rem;
    background-color: var(--light-grey);
    margin-bottom: 2.5rem;
    border-radius: 1rem;

    h4 {
      margin-bottom: 2rem;
    }
  }

  ul li {
    color: var(--black-alt);
    margin-bottom: 1.5rem;
    font-weight: 500;
    position: relative;
    padding-left: 28px;
  }

  ul li:first-child {
    margin-top: 0;
  }

  ul li:before {
    content: "\F270";
    font-weight: 900;
    font-family: "bootstrap-icons";
    color: var(--color-red);
    position: absolute;
    font-size: 2rem;
    left: 0;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .image_box {
    padding: 2.5rem;
    background-color: var(--light-grey);
    margin-bottom: 2.5rem;
    border-radius: 1rem;
    h4 {
      margin-bottom: 15px;
    }
    img {
      max-width: 40%;
      text-align: center;
    }
  }
}

.sell-your-car {
  .booking-form {
    width: 100%;
    background-color: var(--color-white);
    border-radius: 1rem;
    padding: 3rem 2rem;

    h2 {
      font-size: 2rem;
      color: var(--color-000);
      font-weight: 700;
      margin-bottom: 2rem;
    }
  }
}

.icon-box {
  background-color: var(--color-white);
  border-radius: 1rem;
  padding: 2rem 3rem;
  margin-bottom: 2rem;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  display: flex;
  gap: 1.5rem;

  .icon {
    background-color: #ffebea;
    padding: 1rem;
    width: 6rem;
    height: 6rem;
    display: grid;
    place-content: center;
    border-radius: 0.7rem;
    box-shadow: #a6231f 0 0 0 0;

    i {
      font-size: 3rem;
      color: var(--color-red);
    }
  }

  .icon-body {
    flex: 1 1 60%;

    h2 {
      font-size: 2rem;
      color: var(--color-000);
      font-weight: 600;
    }

    a {
      color: var(--accent-color);
      margin-bottom: 0.5rem;
      display: block;
    }
  }

  &.image-box {
    flex-direction: column;
    text-align: center;
    align-items: center;
    min-height: 100%;
    padding-bottom: 0;

    .icon {
      width: 15rem;
      height: 15rem;
      background: url("assests/icons/blob.svg") no-repeat center/contain;
      padding: 0;

      img {
        max-width: 5rem;
      }
    }
  }
}

.thank_you {
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
  align-items: center;
  justify-content: center;

  img {
    max-width: 50%;
  }
}

.single-blog {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  margin-bottom: 2.5rem;
  background-color: var(--color-white);
  overflow: hidden;
  border-radius: 1rem;

  .featured-img {
    overflow: hidden;
    width: 100%;
    max-height: 25rem;
    min-height: 25rem;
    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }

  .blog-content {
    padding: 2rem;

    .recent-post-meta {
      padding-bottom: 1rem;
      display: flex;
      gap: 1rem;

      a {
        margin-right: 1rem;
        padding-right: 1.5rem;
        border-right: 1px solid #ddd;
        color: var(--accent-color);
        font-size: 1.6rem;

        i {
          padding-right: 0.5rem;
        }

        &:last-child {
          border: 0;
        }
      }
    }

    .post-tittle {
      font-size: 2.3rem;
      font-weight: 700;
      margin: 1rem 0;
    }

    .blog-summery {
      font-size: 1.6rem;
      overflow: hidden;
      text-overflow: ellipsis;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
    }
  }
}

.sidebar-area {
  position: relative;
  padding-left: 5rem;

  .widget-wrapper {
    position: relative;
    padding: 3rem;
    background-color: var(--color-white);
    border-radius: 1rem;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;

    &::after {
      position: absolute;
      content: "";
      left: 0;
      top: 3.3rem;
      width: 0.5rem;
      height: 2.5rem;
      background-color: var(--color-red);
    }

    .widget_title {
      font-size: 2.5rem;
      color: var(--color-000);
      font-weight: 700;
      margin-bottom: 2rem;
    }

    ul li {
      display: block;
      position: relative;

      a {
        font-size: 1.8rem;
        color: var(--accent-color);
        font-weight: 600;
        padding: 1.5rem 0;
        padding-left: 2.5rem;
        line-height: 1.3;
        background-color: transparent;
        display: block;
        border-top: 1px solid #ddd;
        -webkit-transition: all ease 0.4s;
        transition: all ease 0.4s;

        &::before {
          content: "\F280";
          font-family: var(--icon-font);
          font-size: 1.6rem;
          position: absolute;
          top: 50%;
          left: 0;
          -webkit-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
          transform: translateY(-50%);
          -webkit-transition: all ease 0.4s;
          transition: all ease 0.4s;
        }

        &:hover {
          background-color: var(--color-red);
          color: var(--color-white);
          border-top: 1px solid transparent;
          padding-left: 4rem;

          &::before {
            margin-left: 1.5rem;
            color: var(--color-white);
          }
        }
      }
    }

    .recent-post {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      margin-bottom: 2rem;
      padding-bottom: 2rem;
      border-bottom: 1px solid #ddd;
      flex-wrap: nowrap;

      .media-img {
        flex: 1 1 30%;
        max-width: 30%;
        overflow: hidden;

        img {
          width: 100%;
          height: 100%;
          object-fit: cover;
        }
      }

      .media-body {
        flex: 1 1 70%;
        max-width: 70%;

        .post-title {
          font-size: 1.8rem;
          color: var(--black-alt);
          font-weight: 600;

          a {
            color: inherit;
            overflow: hidden;
            text-overflow: ellipsis;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            display: -webkit-box;
          }
        }
      }
    }
  }
}

.single-blog-post {
  .featured-img {
    width: 100%;
    max-height: 100%;
  }
  .blog_of_content {
    padding: 20px 25px;
  }
}

.hide_btn {
  .with-outline {
    display: none;
  }
}

.image_full_width {
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
}

.image_wrapper {
  width: auto;
  height: 100%;
}

.image_wrapper img {
  width: auto;
  height: 100vh;
  object-fit: cover;
}
