







/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
.sidebar-one {
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transform-origin: right center;
    transform-origin: right center;
    -webkit-transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
    transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
    transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
    transition: transform 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  }
  .sidebar-one.active {
    opacity: 1;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    visibility: visible;
    -webkit-transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
    transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
    transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
    transition: transform 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  }
  .sidebar-one__overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--floens-black, #000000);
    opacity: 0.5;
    cursor: url(../images/close.png), auto;
  }
  .sidebar-one__content {
    width: 300px;
    background-color: var(--floens-black2, #2B1E16);
    z-index: 10;
    position: relative;
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    overflow-y: auto;
    padding-top: 40px;
    padding-bottom: 30px;
    padding-left: 24px;
    padding-right: 24px;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
    transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
    transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
    transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
    /* hide scrollbar but allow scrolling */
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
  }
  .sidebar-one__content::-webkit-scrollbar {
    display: none;
    /* for Chrome, Safari, and Opera */
  }
  .sidebar-one.active .sidebar-one__content {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
    transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
    transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms;
    transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  }
  .sidebar-one__close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: var(--floens-white, #ffffff);
    cursor: pointer;
    transition: all 400ms ease;
  }
  .sidebar-one__close:hover {
    color: var(--floens-base, #C7844F);
  }
  .sidebar-one__item:not(:last-child) {
    margin-bottom: 40px;
  }
  .sidebar-one__title {
    font-size: 22px;
    color: var(--floens-white, #ffffff);
    line-height: 1.5;
    margin-bottom: 15px;
  }
  .sidebar-one__about__text {
    color: var(--floens-white2, #F2EEEA);
    margin-bottom: 0;
  }
  .sidebar-one__info__list {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .sidebar-one__info__list li {
    display: flex;
    font-size: 15px;
    color: var(--floens-gray, #DED8D3);
    font-weight: 500;
    line-height: 18px;
  }
  .sidebar-one__info__list li + li {
    margin-top: 20px;
  }
  .sidebar-one__info__list li span {
    position: relative;
    top: -1px;
    font-size: 18px;
    color: var(--floens-base, #C7844F);
    margin-right: 15px;
  }
  .sidebar-one__info__list li span.icon-location-2 {
    position: relative;
    top: 4px;
  }
  .sidebar-one__info__list li address {
    color: inherit;
    line-height: 1.866;
    text-transform: capitalize;
    margin: 0;
  }
  .sidebar-one__info__list li a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
  }
  .sidebar-one__info__list li a:hover {
    background-size: 100% 1px;
  }
  .sidebar-one__info__list li a:hover {
    color: var(--floens-base, #C7844F);
  }
  .sidebar-one .floens-social a {
    color: var(--floens-gray, #DED8D3);
    border-color: RGBA(var(--floens-white-rgb, 255, 255, 255), 0.1);
  }
  .sidebar-one .floens-social a:hover {
    color: var(--floens-white, #ffffff);
  }
  .sidebar-one__newsletter__inner {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .sidebar-one__newsletter__input {
    border: none;
    outline: none;
    font-family: var(--floens-font, "DM Sans", sans-serif);
    font-size: 14px;
    color: var(--floens-text, #7A736A);
    line-height: 1;
    color: var(--floens-gray, #DED8D3);
    width: calc(100% - 50px);
    height: 50px;
    padding-left: 15px;
    background-color: rgba(var(--floens-white-rgb, 255, 255, 255), 0.09);
  }
  .sidebar-one__newsletter__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    outline: none;
    background-color: transparent;
    width: 50px;
    height: 50px;
    background-color: var(--floens-base, #C7844F);
    transition: all 400ms ease;
  }
  .sidebar-one__newsletter__btn:hover {
    background-color: var(--floens-base2, #8A5133);
  }
  .sidebar-one__newsletter__btn span {
    position: relative;
    top: 0px;
    font-size: 20px;
    color: var(--floens-white, #ffffff);
    transition: all 400ms ease;
  }
  
  .sidebar__single {
    background-color: var(--floens-white2, #F2EEEA);
    padding: 30px;
  }
  @media (max-width: 1199px) {
    .sidebar__single {
      padding: 30px 25px;
    }
  }
  .sidebar__single + .sidebar__single {
    margin-top: 30px;
  }
  .sidebar__title {
    text-transform: capitalize;
    margin: 0;
    font-size: 20px;
    line-height: 16px;
    margin-bottom: 30px;
  }
  .sidebar__form__title {
    margin-bottom: 25px;
  }
  .sidebar__search {
    display: flex;
    align-items: center;
    position: relative;
    height: 59px;
  }
  .sidebar__search input[type=search],
  .sidebar__search input[type=text] {
    padding-left: 20px;
    padding-right: 40px;
    outline: none;
    border: 0;
    font-size: 16px;
    line-height: 1;
    color: var(--floens-text, #7A736A);
    font-weight: 400;
    border: 1px solid var(--floens-border-color, #DED8D3);
    width: 100%;
    height: 100%;
    background-color: var(--floens-white, #ffffff);
    transition: all 500ms ease;
  }
  .sidebar__search input[type=search]:focus,
  .sidebar__search input[type=text]:focus {
    color: var(--floens-black2, #2B1E16);
    border-color: var(--floens-base, #C7844F);
  }
  .sidebar__search button[type=submit] {
    padding: 0;
    border: none;
    outline: none;
    background-color: transparent;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: auto;
    font-size: 20px;
    color: var(--floens-base, #C7844F);
    z-index: 11;
  }
  .sidebar__posts {
    margin-bottom: 0;
  }
  .sidebar__posts-title {
    margin-bottom: 30px;
  }
  .sidebar__posts__item {
    display: flex;
    gap: 15px;
  }
  .sidebar__posts__item:not(:last-of-type) {
    margin-bottom: 30px;
  }
  .sidebar__posts__image {
    width: 80px;
    flex-shrink: 0;
  }
  .sidebar__posts__image img {
    width: 100%;
    display: block;
  }
  .sidebar__posts__content {
    position: relative;
    top: 2px;
    right: -1px;
    width: calc(100% - 80px);
  }
  .sidebar__posts__meta {
    margin: 0;
    display: flex;
    align-items: center;
    margin-bottom: 11px;
  }
  .sidebar__posts__meta a {
    display: inline-flex;
    align-items: center;
    color: var(--floens-text, #7A736A);
    font-size: 12px;
    font-weight: 700;
    line-height: 16px;
    transition: all 500ms ease;
  }
  .sidebar__posts__meta a:hover {
    color: var(--floens-base, #C7844F);
  }
  .sidebar__posts__meta a span {
    font-size: 12px;
    color: var(--floens-base, #C7844F);
    margin-right: 11px;
  }
  .sidebar__posts__title {
    margin: 0;
    text-transform: capitalize;
    color: var(--floens-black2, #2B1E16);
    font-size: 18px;
    line-height: 1.555;
  }
  .sidebar__posts__title:hover {
    color: var(--floens-base, #C7844F);
  }
  @media (max-width: 1199px) {
    .sidebar__posts__title {
      font-size: 15px;
    }
  }
  @media (max-width: 991px) {
    .sidebar__posts__title {
      font-size: 18px;
    }
  }
  @media (max-width: 412px) {
    .sidebar__posts__title {
      font-size: 16px;
    }
  }
  @media (max-width: 359px) {
    .sidebar__posts__title {
      font-size: 14px;
    }
  }
  .sidebar__posts__title a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
  }
  .sidebar__posts__title a:hover {
    background-size: 100% 1px;
  }
  .sidebar__categories {
    margin-top: -12px;
    margin-bottom: -12px;
  }
  .sidebar__categories li:not(:last-child) {
    margin-bottom: 6px;
  }
  .sidebar__categories li a {
    position: relative;
    font-size: 16px;
    color: var(--floens-black2, #2B1E16);
    text-transform: capitalize;
    font-weight: 500;
    line-height: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 500ms ease;
    padding: 12px 0;
    z-index: 1;
  }
  .sidebar__categories li a::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    z-index: -1;
    background-color: var(--floens-base, #C7844F);
    transition: all 500ms ease;
  }
  .sidebar__categories li a span {
    color: var(--floens-text, #7A736A);
    font-weight: 400;
    transition: all 500ms ease;
  }
  .sidebar__categories li a:hover {
    padding: 12px 12px;
    color: var(--floens-white, #ffffff);
    text-shadow: 0 0 1px currentColor;
  }
  .sidebar__categories li a:hover::after {
    left: 0;
    width: 100%;
  }
  .sidebar__categories li a:hover span {
    color: var(--floens-white, #ffffff);
  }
  .sidebar__tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
  }
  .sidebar__tags a {
    position: relative;
    overflow: hidden;
    display: inline-block;
    background-color: var(--floens-white, #ffffff);
    font-size: 12px;
    color: var(--floens-text, #7A736A);
    line-height: 16px;
    text-transform: capitalize;
    font-weight: 400;
    transition: all 500ms ease;
    padding: 1px 5.5px;
    z-index: 1;
  }
  .sidebar__tags a::after {
    content: "";
    z-index: -1;
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 150%;
    background-color: var(--floens-base, #C7844F);
    transition-duration: 1000ms;
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  }
  .sidebar__tags a:hover {
    color: var(--floens-white, #ffffff);
    text-shadow: 0 0 1px currentColor;
  }
  .sidebar__tags a:hover::after {
    bottom: -50%;
  }
  .sidebar__comments {
    padding-top: 2px;
    margin-bottom: 0px;
  }
  .sidebar__comments li {
    display: flex;
    align-items: center;
    gap: 21px;
  }
  .sidebar__comments li:not(:last-of-type) {
    margin-bottom: 31px;
  }
  .sidebar__comments__icon {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--floens-white, #ffffff);
    font-size: 24px;
    color: var(--floens-base, #C7844F);
    border-radius: 50%;
    transition: all 500ms ease;
  }
  .sidebar__comments__icon::after {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transform: scale(0);
    opacity: 0;
    transition: transform 400ms ease, opacity 400ms ease;
    background-color: var(--floens-base, #C7844F);
  }
  li:hover .sidebar__comments__icon {
    color: var(--floens-white, #ffffff);
  }
  li:hover .sidebar__comments__icon::after {
    transform: scale(1);
    opacity: 1;
  }
  .sidebar__comments__title {
    margin: 0;
    font-size: 16px;
    line-height: 1.562;
    font-weight: 400;
    color: var(--floens-text, #7A736A);
    text-transform: capitalize;
    transition: all 500ms ease;
  }
  .sidebar__comments__title a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
  }
  .sidebar__comments__title a:hover {
    background-size: 100% 1px;
  }
  .sidebar__comments__title a:hover {
    color: var(--floens-base, #C7844F);
  }
  
  .service-sidebar__single + .service-sidebar__single {
    margin-top: 30px;
  }
  .service-sidebar__info {
    padding: 30px;
    background-color:#aa0502;
  }
  @media (max-width: 412px) {
    .service-sidebar__info {
      padding: 25px;
    }
  }
  .service-sidebar__nav {
    margin: 0;
  }
  .service-sidebar__nav li + li {
    margin-top: 20px;
  }
  .service-sidebar__nav li a {
    position: relative;
    display: block;
    padding: 19px 40px;
    font-size: 24px;
    color: #aa0502;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.72px;
    text-transform: capitalize;
    background-color: #fff;
    transition: all 500ms ease;
    z-index: 1;
  }
  @media (max-width: 1599px) {
    .service-sidebar__nav li a {
      font-size: 20px;
      padding-left: 30px;
      padding-right: 30px;
    }
  }
  @media (max-width: 1199px) {
    .service-sidebar__nav li a {
      font-size: 16px;
      padding-left: 25px;
      padding-right: 25px;
    }
  }
  .service-sidebar__nav li a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0px;
    transform: translateY(-50%);
    width: 4px;
    height: calc(100% - 48px);
    background-color: #aa0502;
  }
  @media (max-width: 1599px) {
    .service-sidebar__nav li a::before {
      height: calc(100% - 46px);
    }
  }
  @media (max-width: 1199px) {
    .service-sidebar__nav li a::before {
      height: calc(100% - 42px);
    }
  }
  .service-sidebar__nav li a::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    z-index: -1;
    background-color: #aa0502;
    transition: all 500ms ease;
  }
  .service-sidebar__nav li.current a {
    color: var(--floens-white, #ffffff);
    background-color: #aa0502;
  }
  .service-sidebar__nav li:hover a {
    color: var(--floens-white, #ffffff);
  }
  .service-sidebar__nav li:hover a::after {
    left: 0;
    width: 100%;
  }
  .service-sidebar__contact {
    position: relative;
    margin-top: 40px;
    text-align: center;
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    overflow: hidden;
  }
  .service-sidebar__contact__bg {
    position: relative;
    position: absolute;
    bottom: -3px;
    left: 0;
    width: calc(100% + 5px);
    height: calc(100% - 153px);
    clip-path: polygon(0 35%, 100% 0%, 100% 99%, 0% 100%);
    background-color: var(--floens-base, #C7844F);
    z-index: 1;
  }
  @media (max-width: 1199px) {
    .service-sidebar__contact__bg {
      height: calc(100% - 135px);
    }
  }
  .service-sidebar__contact__bg__inner {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    opacity: 0.15;
  }
  .service-sidebar__contact__inner {
    padding: 156px 30px 59px;
    position: relative;
    z-index: 11;
  }
  @media (max-width: 1199px) {
    .service-sidebar__contact__inner {
      padding: 135px 25px 49px;
    }
  }
  .service-sidebar__contact__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background-color: var(--floens-white, #ffffff);
    border-radius: 50%;
    margin: 0 auto 22px;
    overflow: hidden;
    z-index: 1;
    transition: all 400ms ease;
  }
  .service-sidebar__contact__icon::after {
    content: "";
    z-index: -1;
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 150%;
    background-color: var(--floens-black2, #2B1E16);
    transition-duration: 800ms;
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    border-radius: 50%;
  }
  .service-sidebar__contact__icon span {
    font-size: 36px;
    color: var(--floens-base, #C7844F);
    transition: all 400ms ease;
  }
  @media (max-width: 1199px) {
    .service-sidebar__contact__icon {
      width: 60px;
      height: 60px;
    }
    .service-sidebar__contact__icon span {
      font-size: 28px;
    }
  }
  .service-sidebar__contact:hover .service-sidebar__contact__icon::after {
    bottom: -50%;
  }
  .service-sidebar__contact:hover .service-sidebar__contact__icon span {
    color: var(--floens-white, #ffffff);
  }
  .service-sidebar__contact__time {
    font-size: 16px;
    color: var(--floens-white, #ffffff);
    line-height: 1.875;
    letter-spacing: -0.48px;
    text-transform: capitalize;
    margin-bottom: 21px;
  }
  .service-sidebar__contact__number {
    font-size: 30px;
    color: var(--floens-white, #ffffff);
    line-height: 1.2%;
    letter-spacing: -0.9px;
    text-transform: uppercase;
    margin-bottom: 0;
  }
  @media (max-width: 1599px) {
    .service-sidebar__contact__number {
      font-size: 24px;
    }
  }
  @media (max-width: 1199px) {
    .service-sidebar__contact__number {
      font-size: 20px;
    }
  }
  .service-sidebar__contact__number:hover {
    color: var(--floens-black2, #2B1E16);
  }
  .service-sidebar__contact__number a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
  }
  .service-sidebar__contact__number a:hover {
    background-size: 100% 1px;
  }
  .service-sidebar__company + .service-sidebar__company {
    margin-top: 20px;
  }
  .service-sidebar__company {
    display: flex;
    align-items: center;
    gap: 30px;
    background-color: var(--floens-white2, #F2EEEA);
    padding-right: 30px;
  }
  @media (max-width: 1199px) {
    .service-sidebar__company {
      gap: 20px;
      padding-right: 25px;
    }
  }
  .service-sidebar__company__btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 59px;
    height: 59px;
    background-color: var(--floens-base, #C7844F);
    transition: all 400ms ease;
  }
  .service-sidebar__company__btn::after {
    content: "";
    z-index: -1;
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 150%;
    background-color: var(--floens-black2, #2B1E16);
    transition-duration: 800ms;
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  }
  .service-sidebar__company__btn span {
    font-size: 20px;
    color: var(--floens-white, #ffffff);
    transition: all 400ms ease;
  }
  @media (max-width: 1199px) {
    .service-sidebar__company__btn {
      width: 50px;
      height: 50px;
    }
    .service-sidebar__company__btn span {
      font-size: 18px;
    }
  }
  .service-sidebar__company__btn:hover::after {
    bottom: -50%;
  }
  .service-sidebar__company__btn:hover span {
    color: var(--floens-white, #ffffff);
  }
  .service-sidebar__company__title {
    font-size: 20px;
    line-height: normal;
    text-transform: capitalize;
    margin-bottom: 0;
  }
  @media (max-width: 1599px) {
    .service-sidebar__company__title {
      font-size: 18px;
    }
  }
  @media (max-width: 1199px) {
    .service-sidebar__company__title {
      font-size: 16px;
    }
  }

  
  /*--------------------------------------------------------------
# Service Details
--------------------------------------------------------------*/
.service-details{
    margin-top:100px;
}

.service-details__inner {
    margin-bottom: 36px;
  }
  .service-details__thumbnail {
    margin-bottom: 22px;
  }
  .service-details__thumbnail img {
    width: 100%;
    display: block;
  }
  .service-details__title {
    font-size: 30px;
    line-height: 1.2;
    letter-spacing: -0.9px;
    text-transform: capitalize;
    margin-bottom: 11px;
  }
  @media (max-width: 767px) {
    .service-details__title {
      font-size: 28px;
    }
  }
  @media (max-width: 575px) {
    .service-details__title {
      font-size: 26px;
    }
  }
  @media (max-width: 425px) {
    .service-details__title {
      font-size: 24px;
    }
  }
  .service-details__sub-title {
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: -0.72px;
    text-transform: capitalize;
    margin-bottom: 13px;
    font-weight: 600;
    
  }
  @media (max-width: 575px) {
    .service-details__sub-title {
      font-size: 22px;
    }
  }
  @media (max-width: 425px) {
    .service-details__sub-title {
      font-size: 20px;
    }
  }
  .service-details__text {
    margin: 0;
    text-transform: capitalize;
    font-weight: normal;
    line-height: 1.875;
    text-align: justify;
  }
  .service-details__inner-two {
    margin-bottom: 31px;
  }
  .service-details__text-two {
    font-weight: 500;
    text-transform: capitalize;
    line-height: 1.875;
    margin-bottom: 26px;
    text-align: justify;
  }
  .service-details__info {
    position: relative;
    padding: 40px;
    background-color: mediumseagreen;
    overflow: hidden;
    margin-bottom: 31px;
  }
  @media (max-width: 1199px) {
    .service-details__info {
      padding: 30px;
    }
  }
  @media (max-width: 575px) {
    .service-details__info {
      padding: 25px;
    }
  }
  .service-details__info__image {
    position: absolute;
    top: 0;
    right: 0;
    clip-path: polygon(41% 0, 100% 0, 100% 100%, 0% 100%);
  }
  @media (max-width: 1199px) {
    .service-details__info__image {
      right: -130px;
    }
  }
  @media (max-width: 991px) {
    .service-details__info__image {
      right: -100px;
    }
  }
  @media (max-width: 767px) {
    .service-details__info__image {
      display: none;
    }
  }
  .service-details__list {
    margin-bottom: 0;
    width: 100%;
    max-width: 380px;
  }
  @media (max-width: 991px) {
    .service-details__list {
      max-width: 420px;
    }
  }
  @media (max-width: 767px) {
    .service-details__list {
      max-width: 100%;
    }
  }
  .service-details__list li {
    position: relative;
    font-size: 17px;
    color: #000;
    line-height: normal;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    gap: 11px;
    font-weight: 600;
  }
  @media (max-width: 575px) {
    .service-details__list li {
      font-size: 14px;
    }
  }
  .service-details__list li + li {
    margin-top: 20px;
  }
  .service-details__list li > span {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    font-size: 16px;
    color: var(--floens-base, #aa0502);
    background-color: var(--floens-white, #ffffff);
    border-radius: 50%;
    transition: all 400ms ease;
  }
  @media (max-width: 575px) {
    .service-details__list li > span {
      width: 30px;
      height: 30px;
      font-size: 13px;
    }
  }
  .service-details__list li:hover > span {
    color: var(--floens-white, #ffffff);
    background-color: var(--floens-base, #aa0502);
  }
  .service-details__faq__title {
    margin-bottom: 22px;
  }
  .service-details .faq-accordion .accordion {
    border: 1px solid var(--floens-border-color, #DED8D3);
  }
  .service-details .faq-accordion .accordion-title h4::after {
    top: calc(100% + 12px);
    left: 0;
  }
  .service-details .faq-accordion .active .accordion-title h4::after {
    width: calc(100% + 30px);
  }

  .breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 0;
    margin: 0;
    margin-bottom: 0;
  }
  .breadcrumb li {
    font-size: 15px;
    color: var(--floens-white, #ffffff);
    font-weight: 700;
    line-height: 16px;
    letter-spacing: -0.3px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
  }
  .breadcrumb li:not(:first-of-type) {
    color: #aa0502;
  }
  .breadcrumb li:not(:last-of-type)::after {
    content: ">";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 18px;
    color:#fff;
    position: relative;
    top: 0px;
    margin-left: 11px;
    margin-right: 11px;
  }
  .breadcrumb li i {
    position: relative;
    top: 0px;
    margin-right: 9px;
    font-size: 14px;
    color:#aa0502;
  }
  .breadcrumb li span,
  .breadcrumb li a {
    color: inherit;
    display: inline-flex;
    color:#fad105;
  }
  .breadcrumb li a {
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
  }
  .breadcrumb li a:hover {
    background-size: 100% 1px;
  }
  .breadcrumb li a:hover {
    color: #aa0502;
  }