@import url("https://fonts.googleapis.com/css2?family=Khand:wght@300;400;500;600;700&family=Public+Sans:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --primary-color: #d00506;
  --primary-rgb-05: rgba(223, 115, 61, 0.10);
  --secondary-color: #0C193E;
  --white-color: #FFFFFF;
  --black-color: #000000;
  --text-color: #4D4633;
  --body-color: #E6E2DA;
  --footer-color: #111821;
  --border-color-one: #F3F3F3;
  --border-color-two: #D3D3D3;
  --border-radius-one: 5px;
  --border-radius-two: 10px;
  --border-radius-three: 24px;
  --border-radius-four: 100px;
  --title-fonts: "Khand", sans-serif;
  --body-fonts: "Public Sans", sans-serif;
  --transition: all 0.5s ease-in-out;
  --box-shadow: 0 14px 28px -20px rgba(16, 24, 40, .24);
  --gradient-one: linear-gradient(180deg, #0C193E 0%, #020612 100%);
  --gradient-two: linear-gradient(180deg, #020612 0%, #0C193E 100%);
  --background-one: #F9F9FF;
  --background-two: #E6E2DA;
  --extra-color: #E6E2DA;
  --extra-color-one: #f7f7f7;
  --extra-color-two: #DFFAFF;
  --extra-color-three: #FFFAEB;
}

::-moz-selection {
  text-shadow: none;
  background: #d00506;
  color: var(--white-color);
}

::-moz-selection {
  text-shadow: none;
  background: #d00506;
  color: var(--white-color);
}

::selection {
  text-shadow: none;
  background: #d00506;
  color: var(--white-color);
}

html {
  overflow-x: hidden;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  height: 100%;
  margin: 0;
}

body {
  background: var(--body-color);
  font-family: var(--body-fonts);
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 1.6em;
  color: var(--text-color);
}
@media (max-width: 991px) {
  body {
    font-size: 15px;
    line-height: 1.4rem;
  }
}

iframe {
  border: 0;
  width: 100%;
}

.page-wrapper {
  position: relative;
  width: 100%;
}

p {
  position: relative;
  font-size: 16px;
  line-height: 1.6rem;
  color: inherit;
  margin-bottom: 14px;
}
@media (max-width: 991px) {
  p {
    font-size: 15px;
    line-height: 1.4rem;
  }
}

a:focus,
a:hover {
  text-decoration: none;
  outline: none !important;
  color: inherit;
}

a {
  color: inherit;
  outline: none !important;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}

a:not([href]):not([class]),
a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

blockquote {
  background-color: #d00506;
  color: var(--white-color);
  border-radius: var(--border-radius-three);
}
@media (max-width: 1199px) {
  blockquote {
    border-radius: 20px;
  }
}
blockquote {
  position: relative;
  padding: 30px;
  margin-bottom: 20px;
}
blockquote strong {
  font-family: var(--title-fonts);
  color: var(--white-color);
  font-style: italic;
  font-weight: 600;
  display: block;
  padding-top: 15px;
}

strong {
  font-weight: bold;
}

em,
dfn {
  font-style: italic;
}

dfn {
  font-weight: bold;
}

sup,
sub {
  line-height: 0;
}

abbr,
acronym {
  border-bottom: 1px dotted var(--border-color-one);
}

address {
  margin: 0 0 1.5em;
  font-style: italic;
}

del {
  color: var(--text-color);
}

pre {
  margin: 1.5em 0;
  white-space: pre;
}

pre,
code,
tt {
  font-family: var(--body-fonts);
  line-height: 1.5;
}

button {
  text-decoration: none;
  outline: none !important;
  color: inherit;
  border: none;
}

figure {
  margin: 0;
  position: relative;
  overflow: hidden;
}

img {
  max-width: 100%;
}

pre {
  background: var(--white-color);
  padding: 15px;
  border: 1px solid var(--extra-color-one);
}

hr {
  margin: 0;
  padding: 0px;
  border-bottom: 1px solid var(--extra-color-one);
  border-top: 0px;
}

b,
strong {
  font-weight: 600;
}

section {
  position: relative;
  z-index: 1;
}

li ul,
li ol {
  margin: 0;
}

ul,
ol {
  margin: 0;
}

ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

ol {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: decimal;
}

dl {
  margin: 0;
}

dl dt {
  font-weight: bold;
}

dd {
  margin-left: 1.5em;
}

ol li {
  list-style: decimal;
}

ol ol {
  padding-left: 25px;
}

ul li {
  list-style-type: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  margin-bottom: 0 !important;
}

th {
  font-weight: 500;
}

th,
td,
caption {
  padding: 4px 0;
}

tfoot {
  font-style: italic;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--secondary-color);
  font-family: var(--title-fonts);
  font-weight: 600;
  margin: 0;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  color: inherit;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  display: inline;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(0, currentColor), to(currentColor));
  background-image: linear-gradient(to right, currentColor 0, currentColor 100%);
  background-position: 0 90%;
  background-repeat: no-repeat;
  background-size: 0 1px;
  -webkit-transition: all 0.3s, background-size 0.8s;
  transition: all 0.3s, background-size 0.8s;
}
h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover {
  color: #d00506;
  background-size: 100% 1px;
}
h1.is-white a, h2.is-white a, h3.is-white a, h4.is-white a, h5.is-white a, h6.is-white a {
  background-image: linear-gradient(var(--white-color), var(--white-color)), linear-gradient(var(--white-color), var(--white-color));
  padding: 0 0 3px 0;
}
h1.is-white a:hover, h2.is-white a:hover, h3.is-white a:hover, h4.is-white a:hover, h5.is-white a:hover, h6.is-white a:hover {
  color: var(--white-color);
}

h1 img,
h2 img,
h3 img,
h4 img,
h5 img,
h6 img {
  margin: 0;
}

h1 {
  font-size: 68px;
  line-height: 1.4;
}
@media (max-width: 1400px) {
  h1 {
    font-size: 52px;
  }
}
@media (max-width: 991px) {
  h1 {
    font-size: 48px;
    line-height: 1.2;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 34px;
  }
}

h2 {
  font-size: 46px;
  line-height: 1.2;
}
@media (max-width: 991px) {
  h2 {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  h2 {
    font-size: 26px;
  }
  .car-items .car-content h2{
	font-size: 22px!important;
  }
}

h3 {
  font-size: 22px;
  line-height: 1.4em;
}
@media (max-width: 767px) {
  h3 {
    font-size: 20px;
  }
}

h4 {
  font-size: 1.728rem;
}

h5 {
  font-size: 1.44rem;
}

h6 {
  font-size: 1.2rem;
}

/***home-page***/

.car-category-box,
.car-category-box * {
    box-sizing: border-box;
}

.car-category-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
    margin: 25px 0;
    padding: 24px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(15, 23, 42, 0.06);
    font-family: inherit;
}

.car-category-box__heading {
    display: flex;
    align-items: center;
    gap: 14px;
}

.car-category-box__icon {
    display: grid;
    place-items: center;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    color: #172438;
    background: #f0f3f7;
    border-radius: 12px;
}

.car-category-box__icon svg {
    width: 27px;
    height: 27px;
}

.car-category-box__title {
    margin: 0 0 5px;
    color: #172438;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.3;
}

.car-category-box__text {
    margin: 0;
    color: #667085;
    font-size: 14px;
    line-height: 1.5;
}

.car-category-box__field {
    position: relative;
    flex: 0 1 320px;
    min-width: 220px;
}

.car-category-box__select {
    display: block;
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    min-height: 54px;
    margin: 0;
    padding: 14px 48px 14px 18px;
    border: 1px solid #cfd6df;
    border-radius: 10px;
    background: #fafbfc;
    color: #172438;
    font-family: inherit;
    font-size: 16px;
    line-height: 1.5;
    cursor: pointer;
    box-shadow: none;
}

.car-category-box__select:hover {
    border-color: #64748b;
}

.car-category-box__select:focus-visible {
    outline: 3px solid #b9d5ff;
    outline-offset: 3px;
    border-color: #244b80;
}

.car-category-box__arrow {
    position: absolute;
    right: 18px;
    top: 50%;
    width: 18px;
    height: 18px;
    color: #475467;
    transform: translateY(-50%);
    pointer-events: none;
}

@media (max-width: 640px) {
    .car-category-box {
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
        padding: 20px;
        border-radius: 14px;
    }

    .car-category-box__field {
        flex: auto;
        min-width: 0;
        width: 100%;
    }

    .car-category-box__title {
        font-size: 19px;
    }
}

/* Car Categories */
.car-categories {
    --category-navy: #14243b;
    --category-gold: #d6a64e;

    padding: 45px 0 55px;
    background: #f6f8fb !important;
}

.car-categories .section-title {
    margin-bottom: 28px;
}

.car-categories .section-title h2 {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0 0 14px;
    color: var(--category-navy);
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.5px;
    border: 0;
}

.car-categories .section-title h2::before {
    display: none;
}

.car-categories .section-title h2::after {
    content: "";
    position: absolute;
    inset: auto auto 0 50%;
    width: 48px;
    height: 4px;
    background: var(--category-gold);
    border: 0;
    border-radius: 10px;
    transform: translateX(-50%);
}

.car-categories .partners-slider {
    padding: 10px 0 20px;
}

.car-categories .swiper-slide {
    height: auto;
}

.car-categories .partners-item,
.car-categories .partners-image,
.car-categories figure,
.car-categories figure span {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    filter: none;
    transform: none;
}

.car-categories figure {
    overflow: visible;
}

.car-categories figure a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 94px;
    padding: 24px;
    overflow: hidden;

    background: #fff;
    border: 1px solid #e2e7ee;
    border-radius: 16px;
    box-shadow: 0 5px 14px rgba(20, 36, 59, 0.04);

    color: var(--category-navy);
    font-size: 19px;
    font-weight: 600;
    line-height: 1.4;
    text-decoration: none;

    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.car-categories figure a::before {
    content: "";
    position: absolute;
    inset: 25% auto 25% 0;
    width: 4px;
    background: var(--category-gold);
    border-radius: 0 4px 4px 0;
}

.car-categories figure a::after {
    content: "\2197";
    display: grid;
    place-items: center;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    background: #f0f3f7;
    border-radius: 50%;
    color: var(--category-navy);
    font-size: 20px;
    font-weight: 400;
    transition: background-color 0.25s ease;
}

@media (hover: hover) {
    .car-categories figure a:hover {
        background: var(--category-navy);
        border-color: var(--category-navy);
        color: #fff;
        box-shadow: 0 10px 20px rgba(20, 36, 59, 0.16);
        transform: translateY(-4px);
    }

    .car-categories figure a:hover::after {
        background: var(--category-gold);
    }
}

.car-categories figure a:focus-visible {
    outline: 3px solid var(--category-gold);
    outline-offset: -5px;
}

@media (max-width: 767px) {
    .car-categories {
        padding: 30px 0 35px;
    }

    .car-categories .section-title {
        margin-bottom: 20px;
    }

    .car-categories figure a {
        min-height: 80px;
        padding: 18px;
        border-radius: 12px;
        font-size: 17px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .car-categories figure a,
    .car-categories figure a::after {
        transition: none;
        transform: none;
    }
}
/***home-page***/

.reshu-topbar,
.reshu-topbar * {
    box-sizing: border-box;
}

.reshu-topbar {
    width: 100%;
    background: #c90000;
    color: #fff;
}

.reshu-topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 48px;
    padding: 2px clamp(16px, 3.3vw, 64px);
}

.reshu-topbar .reshu-topbar__phone {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 44px;
    color: #fff;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    white-space: nowrap;
}

.reshu-topbar__phone svg {
    flex-shrink: 0;
    width: 17px;
    height: 17px;
}

.reshu-topbar__social {
    display: flex;
    align-items: center;
    gap: 4px;
}

.reshu-topbar .reshu-topbar__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: transparent;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.reshu-topbar__social svg {
    display: block;
    width: 19px;
    height: 19px;
}

.reshu-topbar .reshu-topbar__social a:hover {
    background: rgba(255, 255, 255, 0.18);
}

.reshu-topbar__phone:hover span {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.reshu-topbar a:focus-visible {
    outline: 2px solid #fff;
    outline-offset: -2px;
}

@media (max-width: 575px) {
    .reshu-topbar__inner {
        padding-inline: 12px;
        gap: 8px;
    }

    .reshu-topbar .reshu-topbar__phone {
        gap: 7px;
        font-size: 14px;
    }

    .reshu-topbar__social {
        gap: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .reshu-topbar .reshu-topbar__social a {
        transition: none;
    }
}

.form-group {
  margin-bottom: 15px;
}
.form-group .field-inner {
  position: relative;
}
.form-group .field-inner label {
  margin-bottom: 5px;
  font-size: 15px;
}
.form-group .field-inner .form-control.error-border {
  border-color: red;
}
.form-group .field-inner textarea {
  overflow: hidden;
  resize: none;
  height: 150px;
  float: none;
  outline: none;
}
.form-group .field-inner.checkbox {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  gap: 10px;
}
.form-group .field-inner.checkbox input {
  border: 1px solid #d00506;
  background-color: var(--white-color);
  border-radius: 5px !important;
  width: 20px;
  height: 20px;
  margin: 0;
  padding: 0;
}
.form-group .field-inner.checkbox input:checked {
  background-color: #d00506;
  border-color: #d00506;
}
.form-group .field-inner.checkbox input:focus {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}
.form-group .field-inner.checkbox label {
  margin-bottom: 0;
  line-height: normal;
  flex: 1;
}
.form-group .field-inner .error {
  color: red !important;
  font-size: 13px;
}

input,
.form-control,
.form-select {
  float: none;
  width: 100%;
  height: 52px;
  padding: 10px 15px;
  outline: none;
  background-color: var(--white-color);
  color: var(--black-color);
  border: 1px solid var(--border-color-two);
  border-radius: var(--border-radius-two);
}
@media (max-width: 767px) {
  input,
  .form-control,
  .form-select {
    border-radius: var(--border-radius-one);
  }
}
input.white-field,
.form-control.white-field,
.form-select.white-field {
  background-color: transparent;
  border-color: var(--border-color-two);
  color: var(--black-color);
}

input:focus,
input:hover,
textarea:hover,
textarea:focus,
textarea:hover,
.form-control:hover,
.form-control:focus,
.form-select:focus,
.form-select:hover {
  outline: none;
  background-color: var(--white-color);
  border-color: #d00506;
  color: var(--black-color);
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}
input:focus.white-field,
input:hover.white-field,
textarea:hover.white-field,
textarea:focus.white-field,
textarea:hover.white-field,
.form-control:hover.white-field,
.form-control:focus.white-field,
.form-select:focus.white-field,
.form-select:hover.white-field {
  background-color: transparent;
  color: var(--black-color);
}

input[type=radio],
input[type=checkbox] {
  width: auto;
  height: auto;
  float: none;
  margin-right: 5px;
}

.form-check-input:checked {
  background-color: #d00506;
  border-color: #d00506;
}

.form-check-input:focus {
  border-color: #d00506;
  box-shadow: 0 0 0 0.25rem rgba(223, 115, 61, 0.25);
}

.ajax-response.success {
  background-color: rgba(0, 128, 0, 0.1);
  color: green;
  border-radius: var(--border-radius-two);
  padding: 15px;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .ajax-response.success {
    border-radius: var(--border-radius-one);
  }
}
.ajax-response.error {
  background-color: rgba(255, 0, 0, 0.1);
  color: red;
  border-radius: var(--border-radius-two);
  padding: 15px;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .ajax-response.error {
    border-radius: var(--border-radius-one);
  }
}

.accordion .accordion-item {
  margin-bottom: 13px;
  background-color: var(--white-color);
  border: none;
  overflow: hidden;
  border-radius: var(--border-radius-two);
  -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.05);
  -o-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.05);
}
.accordion .accordion-item .accordion-header {
  color: var(--black-color);
}
.accordion .accordion-item .accordion-header .accordion-button {
    background: transparent;
    border: none;
    margin-bottom: 0;
    color: var(--black-color);
    padding: 15px 60px 12px 15px;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.6rem;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}
@media (max-width: 767px) {
  .accordion .accordion-item .accordion-header .accordion-button {
    font-size: 18px;
  }
}
.accordion .accordion-item .accordion-header .accordion-button::after {
  content: "\f070";
  position: absolute;
  height: 45px;
  width: 45px;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
  background-image: none;
  font-family: "Font Awesome 6 Free";
  font-size: 18px;
  font-weight: 600;
  z-index: 2;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  color: var(--black-color);
}
.accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  background: var(--secondary-color);
  color: var(--white-color);
}
.accordion .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  content: "\f06e";
  color: var(--white-color);
}
.accordion .accordion-item .accordion-collapse {
  border-top: 1px solid var(--border-color-one);
}
.accordion .accordion-item .accordion-collapse .accordion-body {
  background-color: var(--secondary-color);
}
.accordion .accordion-item .accordion-collapse .accordion-body p {
  margin-bottom: 0;
  color: var(--white-color);
  font-weight: 300;
}
.accordion .accordion-item:nth-last-child(1) {
  margin-bottom: 0;
}

.breadcrumb-section {
    background: var(--gradient-one);
    padding-top: 50px;
    padding-bottom: 50px;
    background-repeat: no-repeat;
    background-size: cover;
}
@media (max-width: 991px) {
  .breadcrumb-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media (max-width: 576px) {
  .breadcrumb-section {
     padding-top: 20px;
     padding-bottom: 30px;
  }
}
.breadcrumb-section::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background: #000000b3;
  bottom: 0;
}
@media (max-width: 576px) {
  .breadcrumb-section::after {
    /*height: 20px;*/
  }
}
.breadcrumb-section .breadcrumb-content {
  position: relative;
  z-index: 2;
}
.breadcrumb-section .breadcrumb-content .breadcrumb-title h1 {
  display: inline-block;
  text-transform: capitalize;
  color: var(--white-color);
  font-size: 38px;
  line-height: normal;
  font-weight: bold;
}
@media (max-width: 1499px) {
  .breadcrumb-section .breadcrumb-content .breadcrumb-title h1 {
    font-size: 62px;
  }
}
@media (max-width: 767px) {
  .breadcrumb-section .breadcrumb-content .breadcrumb-title h1 {
	font-size: 25px;
	font-weight: 600;
	display: block;
	text-align: center;
  }
  .breadcrumb-section .breadcrumb-content nav .breadcrumb{
	  display: none;
  }
  .header .logo-box .logo a figure img{
	  width: 180px;
  }
}
.breadcrumb-section .breadcrumb-content nav .breadcrumb {
  margin-bottom: 0;
}
.breadcrumb-section .breadcrumb-content nav .breadcrumb .breadcrumb-item {
  padding-left: 10px;
  list-style: none;
  font-size: 16px;
  font-weight: 500;
}
.breadcrumb-section .breadcrumb-content nav .breadcrumb .breadcrumb-item:not(:nth-child(1))::before {
    content: "\f105";
    color: var(--white-color);
    font-family: "Font Awesome 6 Free";
    font-weight: 700;
    font-size: 12px;
    padding-right: 8px;
    top: 1px;
    position: relative;
}
.breadcrumb-section .breadcrumb-content nav .breadcrumb .breadcrumb-item:nth-child(1) {
  padding-left: 0;
}
.breadcrumb-section .breadcrumb-content nav .breadcrumb .breadcrumb-item.active {
  color: var(--white-color);
}
.breadcrumb-section .breadcrumb-content nav .breadcrumb .breadcrumb-item a {
  color: var(--white-color);
  text-transform: capitalize;
}
@media (max-width: 767px) {
  .breadcrumb-section .breadcrumb-content nav .breadcrumb .breadcrumb-item a {
    font-size: 14px;
  }
}
.breadcrumb-section .breadcrumb-bottom-image {
  position: absolute;
  text-align: center;
  z-index: 1;
  max-width: 750px;
  right: 10%;
  bottom: 0;
}
@media (max-width: 1199px) {
  .breadcrumb-section .breadcrumb-bottom-image {
    max-width: 650px;
  }
}
@media (max-width: 991px) {
  .breadcrumb-section .breadcrumb-bottom-image {
    max-width: 480px;
  }
}
@media (max-width: 767px) {
  .breadcrumb-section .breadcrumb-bottom-image {
    max-width: 350px;
    right: 0;
  }
}
@media (max-width: 576px) {
  .breadcrumb-section .breadcrumb-bottom-image {
    max-width: 250px;
  }
}
@media (max-width: 480px) {
  .breadcrumb-section .breadcrumb-bottom-image {
    max-width: 180px;
  }
}

.theme-button {
    position: relative;
    overflow: hidden;
    /* height: 52px; */
    line-height: 2;
    font-size: 16px;
    padding: 6px 16px 6px 17px;
    border: 1px solid transparent;
    vertical-align: middle;
    text-transform: capitalize;
    border-radius: var(--border-radius-four);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-transition: 500ms all ease;
    -moz-transition: 500ms all ease;
    -ms-transition: 500ms all ease;
    -o-transition: 500ms all ease;
    transition: 500ms all ease;
    gap: 10px;
}
.theme-button span {
  position: relative;
  display: inline-block;
  padding: 0;
  -webkit-transition: transform 0.5s;
  -moz-transition: transform 0.5s;
  -ms-transition: transform 0.5s;
  -o-transition: transform 0.5s;
  transition: transform 0.5s;
  -webkit-transform-origin: 50% 0;
  -moz-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  -o-transform-origin: 50% 0;
  transform-origin: 50% 0;
  transform-style: preserve-3d;
}
.theme-button span::before {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  content: attr(data-text);
  text-align: center;
  -webkit-transition: color 0.5s;
  -moz-transition: color 0.5s;
  -ms-transition: color 0.5s;
  -o-transition: color 0.5s;
  transition: color 0.5s;
  -webkit-transform: rotateX(-90deg);
  -moz-transform: rotateX(-90deg);
  -ms-transform: rotateX(-90deg);
  -o-transform: rotateX(-90deg);
  transform: rotateX(-90deg);
  -webkit-transform-origin: 50% 0;
  -moz-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  -o-transform-origin: 50% 0;
  transform-origin: 50% 0;
}
.theme-button i {
  height: 35px;
  width: 35px;
  background: var(--white-color);
  border-radius: 100px;
  color: var(--black-color);
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transition: transform 0.5s;
  -moz-transition: transform 0.5s;
  -ms-transition: transform 0.5s;
  -o-transition: transform 0.5s;
  transition: transform 0.5s;
}
.theme-button svg {
  -webkit-transition: 500ms all ease;
  -moz-transition: 500ms all ease;
  -ms-transition: 500ms all ease;
  -o-transition: 500ms all ease;
  transition: 500ms all ease;
}
@media (max-width: 767px) {
  .theme-button {
    font-size: 14px;
  }
  .pricing-section .pricing-heading .pricing-vector{
	  display: none;
  }
}
.theme-button.style-1 {
  background-color: #d00506;
  color: var(--white-color);
}
.theme-button.style-1 span::before {
  color: var(--white-color);
}
.theme-button.style-1 i {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.theme-button.style-1:hover {
  background-color: var(--black-color);
  color: var(--white-color);
}
.theme-button.style-1:hover span {
  -webkit-transform: rotateX(90deg) translateY(-12px);
  -moz-transform: rotateX(90deg) translateY(-12px);
  -ms-transform: rotateX(90deg) translateY(-12px);
  -o-transform: rotateX(90deg) translateY(-12px);
  transform: rotateX(90deg) translateY(-12px);
}
.theme-button.style-1:hover i {
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -ms-transform: rotate(0);
  -o-transform: rotate(0);
  transform: rotate(0);
}
.theme-button.style-2 {
  border-color: var(--black-color);
  color: var(--black-color);
}
.theme-button.style-2 span::before {
  color: var(--white-color);
}
.theme-button.style-2 i {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.theme-button.style-2:hover {
  color: var(--white-color);
  background-color: #d00506;
  border-color: #d00506;
}
.theme-button.style-2:hover span {
  -webkit-transform: rotateX(90deg) translateY(-12px);
  -moz-transform: rotateX(90deg) translateY(-12px);
  -ms-transform: rotateX(90deg) translateY(-12px);
  -o-transform: rotateX(90deg) translateY(-12px);
  transform: rotateX(90deg) translateY(-12px);
}
.theme-button.style-2:hover i {
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -ms-transform: rotate(0);
  -o-transform: rotate(0);
  transform: rotate(0);
}
.theme-button.style-3 {
  background-color: #d00506;
  color: var(--white-color);
}
.theme-button.style-3 i {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.theme-button.style-3:hover span {
  -webkit-transform: rotateX(90deg) translateY(-12px);
  -moz-transform: rotateX(90deg) translateY(-12px);
  -ms-transform: rotateX(90deg) translateY(-12px);
  -o-transform: rotateX(90deg) translateY(-12px);
  transform: rotateX(90deg) translateY(-12px);
}
.theme-button.style-3:hover i {
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -ms-transform: rotate(0);
  -o-transform: rotate(0);
  transform: rotate(0);
}
.theme-button.style-4 {
  background-color: var(--white-color);
  color: var(--black-color);
}
.theme-button.style-4 i {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  background-color: var(--black-color);
  color: var(--white-color);
}
.theme-button.style-4:hover span {
  -webkit-transform: rotateX(90deg) translateY(-12px);
  -moz-transform: rotateX(90deg) translateY(-12px);
  -ms-transform: rotateX(90deg) translateY(-12px);
  -o-transform: rotateX(90deg) translateY(-12px);
  transform: rotateX(90deg) translateY(-12px);
}
.theme-button.style-4:hover i {
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -ms-transform: rotate(0);
  -o-transform: rotate(0);
  transform: rotate(0);
}
.theme-button.style-5 {
  color: var(--white-color);
  border: 1px solid var(--white-color);
}
.theme-button.style-5 i {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.theme-button.style-5:hover {
  color: var(--black-color);
  background-color: var(--white-color);
}
.theme-button.style-5:hover span {
  -webkit-transform: rotateX(90deg) translateY(-12px);
  -moz-transform: rotateX(90deg) translateY(-12px);
  -ms-transform: rotateX(90deg) translateY(-12px);
  -o-transform: rotateX(90deg) translateY(-12px);
  transform: rotateX(90deg) translateY(-12px);
}
.theme-button.style-5:hover span::before {
  color: var(--black-color);
}
.theme-button.style-5:hover i {
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -ms-transform: rotate(0);
  -o-transform: rotate(0);
  transform: rotate(0);
  background-color: var(--black-color);
  color: var(--white-color);
}

.read-more-btn {
    position: relative;
    color: var(--secondary-color);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.8em;
    text-transform: capitalize;
    display: inline-block;
    padding-right: 40px;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.read-more-btn::before {
  content: "\f061";
  position: absolute;
  right: 0;
  top: 50%;
  font-family: "Font Awesome 6 Free";
  font-size: 14px;
  line-height: normal;
  color: var(--white-color);
  width: 30px;
  height: 30px;
  background-color: var(--secondary-color);
  background-position: center center;
  border-radius: 50%;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transform: translate(-3px, -50%);
  -moz-transform: translate(-3px, -50%);
  -ms-transform: translate(-3px, -50%);
  -o-transform: translate(-3px, -50%);
  transform: translate(-3px, -50%);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.read-more-btn:hover {
  color: #d00506;
}
.read-more-btn:hover::before {
  background-color: #d00506;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

button:focus {
  text-decoration: none;
  outline: none;
}

.offcanvas {
  border: none;
}
.offcanvas .offcanvas-header .offcanvas-close {
  width: 24px;
  height: 24px;
  position: absolute;
  right: 15px;
  top: 15px;
  font-size: 24px;
  text-align: center;
  color: var(--black-color);
  z-index: 10;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transform: translateY(-50px);
  -moz-transform: translateY(-50px);
  -ms-transform: translateY(-50px);
  -o-transform: translateY(-50px);
  transform: translateY(-50px);
}
.offcanvas .offcanvas-body .widget {
  background: transparent;
  padding: 0;
  border: none;
}
.offcanvas .offcanvas-body .offcanvas-about {
  margin-bottom: 50px;
}
.offcanvas .offcanvas-body .offcanvas-about p {
  color: var(--text-color);
  font-weight: normal;
  margin-bottom: 0;
}
.offcanvas .offcanvas-body .offcanvas-contact {
  display: inline-block;
  width: 100%;
  margin-bottom: 50px;
}
.offcanvas .offcanvas-body .offcanvas-contact .widget-contact .offcanvas-cta-item .offcanvas-cta-list {
  margin-bottom: 20px;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  gap: 20px;
}
.offcanvas .offcanvas-body .offcanvas-contact .widget-contact .offcanvas-cta-item .offcanvas-cta-list:last-of-type {
  margin-bottom: 0;
}
.offcanvas .offcanvas-body .offcanvas-contact .widget-contact .offcanvas-cta-item .offcanvas-cta-list .offcanvas-cta-icon {
  position: relative;
  color: #d00506;
  height: 24px;
  width: 24px;
  border-radius: 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.offcanvas .offcanvas-body .offcanvas-contact .widget-contact .offcanvas-cta-item .offcanvas-cta-list .offcanvas-cta-content {
  flex: 1;
}
.offcanvas .offcanvas-body .offcanvas-contact .widget-contact .offcanvas-cta-item .offcanvas-cta-list .offcanvas-cta-content a,
.offcanvas .offcanvas-body .offcanvas-contact .widget-contact .offcanvas-cta-item .offcanvas-cta-list .offcanvas-cta-content p {
  color: var(--text-color);
  font-size: 16px;
  font-weight: normal;
  margin-bottom: 0;
}
.offcanvas .offcanvas-body .offcanvas-contact .widget-contact .offcanvas-cta-item .offcanvas-cta-list .offcanvas-cta-content a:hover,
.offcanvas .offcanvas-body .offcanvas-contact .widget-contact .offcanvas-cta-item .offcanvas-cta-list .offcanvas-cta-content p:hover {
  color: #d00506;
}
.offcanvas .offcanvas-body .offcanvas-button-wapper {
  display: inline-block;
  width: 100%;
  margin-bottom: 50px;
}
.offcanvas .offcanvas-body .offcanvas-button-wapper a {
  width: 100%;
}
.offcanvas .offcanvas-body .offcanvas-social {
  margin-bottom: 30px;
}
.offcanvas.show .offcanvas-close {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 200ms;
  -moz-transition-delay: 200ms;
  -ms-transition-delay: 200ms;
  -o-transition-delay: 200ms;
  transition-delay: 200ms;
}

.widget-sidebar {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  flex-direction: column;
  gap: 30px;
  position: sticky;
  top: 120px;
}

.widget {
  padding: 30px;
  border-radius: var(--border-radius-three);
}
@media (max-width: 1199px) {
  .widget {
    border-radius: 20px;
    padding: 20px;
  }
}
.widget {
  background-color: var(--white-color);
}
.widget .widget-title .widget-title-text,
.widget .widget-title h3 {
  position: relative;
  font-size: 26px;
  padding-bottom: 10px;
  margin-bottom: 25px;
  display: inline-block;
  color: var(--secondary-color);
  font-family: var(--title-fonts);
  font-weight: 600;
}
.widget .widget-title .widget-title-text:after,
.widget .widget-title h3:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background: var(--black-color);
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.widget.widget-search form .form-group .field-inner input {
  padding-right: 60px;
  margin-bottom: 0;
  background-color: var(--white-color);
  border: 1px solid var(--border-color-one);
  border-radius: var(--border-radius-two);
}
.widget.widget-search form .form-group .field-inner button {
  width: 58px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background: #d00506;
  color: var(--white-color);
  -webkit-transition: 500ms all ease;
  -moz-transition: 500ms all ease;
  -ms-transition: 500ms all ease;
  -o-transition: 500ms all ease;
  transition: 500ms all ease;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  border-radius: 0 var(--border-radius-two) var(--border-radius-two) 0;
}
.widget.widget-search form .form-group .field-inner button:hover {
  background: #d00506;
}
.widget.widget-categories-list .widget-content .category-list li {
  margin: 0 0 15px 0;
}
.widget.widget-categories-list .widget-content .category-list li a {
  position: relative;
  text-transform: capitalize;
  width: 100%;
  padding: 18px 15px;
  background-color: var(--extra-color-one);
  border-radius: var(--border-radius-two);
  color: var(--black-color);
  -webkit-transition: var(--transition);
  -moz-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
}
.widget.widget-categories-list .widget-content .category-list li a.active, .widget.widget-categories-list .widget-content .category-list li a:hover {
  background-color: #d00506;
  color: var(--white-color);
}
.widget.widget-categories-list .widget-content .category-list li:nth-last-child(1) {
  margin-bottom: 0;
}
.widget.widget-recent-post .recent-post-item {
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding-bottom: 20px;
}
.widget.widget-recent-post .recent-post-item:last-child {
  margin-bottom: 0;
  border: none;
  padding: 0;
}
.widget.widget-recent-post .recent-post-item .recent-post-image figure {
  display: block;
  overflow: hidden;
  border-radius: var(--border-radius-two);
}
.widget.widget-recent-post .recent-post-item .recent-post-image figure img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  -webkit-transition: var(--transition);
  -moz-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}
@media (max-width: 991px) {
  .widget.widget-recent-post .recent-post-item .recent-post-image figure img {
    width: 80px;
    height: 80px;
  }
}
.widget.widget-recent-post .recent-post-item .recent-post-content {
  align-self: center;
}
.widget.widget-recent-post .recent-post-item .recent-post-content h4 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--black-color);
}
.widget.widget-recent-post .recent-post-item .recent-post-content h4:hover {
  color: #d00506;
}
.widget.widget-recent-post .recent-post-item .recent-post-content .post-date {
  font-size: 14px;
  color: var(--text-color);
  margin-bottom: 0;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  gap: 5px;
}
.widget.widget-recent-post .recent-post-item .recent-post-content .post-date svg,
.widget.widget-recent-post .recent-post-item .recent-post-content .post-date i {
  color: #d00506;
}
.widget.widget-recent-post .recent-post-item:hover .recent-post-image img {
  -webkit-transform: rotate(-3deg) scale(1.1);
  -moz-transform: rotate(-3deg) scale(1.1);
  -ms-transform: rotate(-3deg) scale(1.1);
  -o-transform: rotate(-3deg) scale(1.1);
  transform: rotate(-3deg) scale(1.1);
}
.widget.widget-tag .widget-content .widget-tag-box a {
  position: relative;
  padding: 10px 20px;
  display: inline-block;
  background-color: var(--extra-color-one);
  border-radius: var(--border-radius-three);
  color: var(--black-color);
}
.widget.widget-tag .widget-content .widget-tag-box a:hover {
  background-color: #d00506;
  color: var(--white-color);
}
.widget.widget-cta .service-cta-item {
  padding-top: 10px;
}
.widget.widget-cta .service-cta-item .service-cta-list {
  margin-bottom: 20px;
}
.widget.widget-cta .service-cta-item .service-cta-list:last-of-type {
  margin-bottom: 0;
}
.widget.widget-cta .service-cta-item .service-cta-list .service-cta-icon {
  position: relative;
  background-color: var(--extra-color-one);
  color: #d00506;
  height: 52px;
  width: 52px;
  font-size: 22px;
  font-weight: 600;
  border-radius: 100%;
}
.widget.widget-cta .service-cta-item .service-cta-list .service-cta-icon::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  content: "";
  position: absolute;
  background: #d00506;
  border-radius: inherit;
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 1;
}
.widget.widget-cta .service-cta-item .service-cta-list .service-cta-icon svg {
  position: relative;
  z-index: 1;
}
.widget.widget-cta .service-cta-item .service-cta-list .service-cta-content p {
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: normal;
}
.widget.widget-cta .service-cta-item .service-cta-list .service-cta-content a {
  color: var(--black-color);
  font-family: var(--title-fonts);
  font-size: 18px;
  font-weight: 600;
}
@media (max-width: 575px) {
  .widget.widget-cta .service-cta-item .service-cta-list .service-cta-content a {
    font-size: 16px;
  }
}
.widget.widget-cta .service-cta-item .service-cta-list:hover .service-cta-icon {
  color: var(--white-color);
}
.widget.widget-cta .service-cta-item .service-cta-list:hover .service-cta-icon i {
  position: relative;
  z-index: 1;
}
.widget.widget-cta .service-cta-item .service-cta-list:hover .service-cta-icon::before {
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.widget.widget-cta .service-cta-item .service-cta-list:hover .service-cta-content a {
  color: #d00506;
}
.widget.widget-project-info .project-info-list li {
  margin-bottom: 20px;
  position: relative;
  padding: 14px;
  background-color: var(--white-color);
  border-radius: var(--border-radius-two);
  color: var(--black-color);
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  gap: 15px;
}
@media (max-width: 767px) {
  .widget.widget-project-info .project-info-list li {
    border-radius: var(--border-radius-one);
  }
}
.widget.widget-project-info .project-info-list li:nth-last-child(1) {
  margin-bottom: 0;
}
.widget.widget-project-info .project-info-list li .project-info-icon {
  position: relative;
  height: 52px;
  width: 52px;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  flex-direction: column;
  background-color: var(--extra-color);
  color: #d00506;
  border-radius: 100px;
}
.widget.widget-project-info .project-info-list li .project-info-icon::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  content: "";
  position: absolute;
  background: #d00506;
  border-radius: inherit;
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 1;
}
.widget.widget-project-info .project-info-list li .project-info-icon i {
  position: relative;
  z-index: 1;
}
.widget.widget-project-info .project-info-list li .project-info-content {
  flex: 1;
}
.widget.widget-project-info .project-info-list li .project-info-content span {
  font-weight: bold;
}
.widget.widget-project-info .project-info-list li .project-info-content p {
  margin-bottom: 0;
}
.widget.widget-project-info .project-info-list li:hover .project-info-icon::before {
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.widget.widget-project-info .project-info-list li:hover .project-info-icon i {
  color: var(--white-color);
}
.widget.widget-company-profile .company-profile-list li {
  margin-bottom: 20px;
}
.widget.widget-company-profile .company-profile-list li:nth-last-child(1) {
  margin-bottom: 0;
}
.widget.widget-company-profile .company-profile-list li a {
  position: relative;
  padding: 14px;
  background-color: var(--extra-color-one);
  border-radius: var(--border-radius-two);
  color: var(--black-color);
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  gap: 20px;
}
@media (max-width: 767px) {
  .widget.widget-company-profile .company-profile-list li a {
    border-radius: var(--border-radius-one);
  }
}
.widget.widget-company-profile .company-profile-list li a .company-profile-icon {
  position: relative;
  color: #d00506;
  background-color: var(--extra-color);
  border-radius: 100%;
  height: 52px;
  width: 52px;
}
.widget.widget-company-profile .company-profile-list li a .company-profile-icon::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  content: "";
  position: absolute;
  background: #d00506;
  border-radius: inherit;
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 1;
}
.widget.widget-company-profile .company-profile-list li a .company-profile-icon i {
  position: relative;
  z-index: 1;
}
.widget.widget-company-profile .company-profile-list li a .download-content i {
  width: 25px;
  font-size: 24px;
  margin-right: 10px;
  color: var(--black-color);
}
.widget.widget-company-profile .company-profile-list li a:hover .company-profile-icon {
  color: var(--white-color);
}
.widget.widget-company-profile .company-profile-list li a:hover .company-profile-icon::before {
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.widget.widget-vehicle .widget-content ul {
  position: relative;
  max-height: 180px;
  overflow-y: auto;
  padding-left: 4px;
  height: auto;
}
.widget.widget-vehicle .widget-content ul li {
  margin-bottom: 15px;
}
.widget.widget-vehicle .widget-content ul li:nth-last-child(1) {
  margin-bottom: 0;
}
.widget.widget-vehicle .widget-content ul li .form-group .field-inner {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  gap: 10px;
}
.widget.widget-vehicle .widget-content ul li .form-group .field-inner label {
  font-size: 16px;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  gap: 5px;
}
.widget.widget-vehicle .widget-content ul li .form-group .field-inner label input {
  margin-right: 5px;
}
.widget.widget-vehicle .widget-content ul li .form-group .field-inner .checkbox-price {
  font-family: var(--title-fonts);
  color: #d00506;
}
.widget.widget-order-summary .car-info {
  padding: 15px;
  background-color: var(--extra-color-one);
  border-radius: 24px;
  position: relative;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}
@media (max-width: 460px) {
  .widget.widget-order-summary .car-info {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    flex-direction: column;
  }
}
.widget.widget-order-summary .car-info .car-image {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  background-color: var(--white-color);
  overflow: hidden;
  -webkit-transition: var(--transition);
  -moz-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
  margin: 0;
  max-width: 126px;
  border-radius: 10px;
}
.widget.widget-order-summary .car-info .car-image figure {
  height: 100%;
  width: 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.widget.widget-order-summary .car-info .car-image figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.widget.widget-order-summary .car-info .car-content .cart-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--secondary-color);
  margin: 0;
  line-height: 1.2rem;
  margin-bottom: 5px;
  font-family: var(--title-fonts);
}
.widget.widget-order-summary .car-info .car-content .car-desc {
  font-size: 14px;
  line-height: normal;
  margin-bottom: 10px;
}
.widget.widget-order-summary .car-info .car-content .car-edit {
  font-size: 14px;
  line-height: normal;
  margin: 0;
}
.widget.widget-order-summary .total-box {
  padding: 20px;
  background-color: var(--extra-color-one);
  border-radius: 10px;
}
.widget.widget-order-summary .total-box .total-table tbody tr td:nth-child(2) {
  text-align: end;
}
.widget.widget-order-summary .payment-platform p {
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  margin: 10px 0;
}
.widget.widget-order-summary .payment-platform ul {
  padding: 0;
  margin: 0;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
  row-gap: 10px;
}
.widget.widget-order-summary .payment-platform ul li {
  background-color: var(--extra-color-one);
  padding: 5px 10px;
  border-radius: 10px;
  min-width: 40px;
  -webkit-transition: var(--transition);
  -moz-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}
.widget.widget-booking .booking-form .form-control {
  background-color: var(--white-color);
}
.widget.widget-booking .booking-form .services-total {
  position: relative;
  margin-bottom: 30px;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
}
.widget.widget-booking .booking-form .services-total span {
  color: var(--black-color);
}
.widget.widget-booking .booking-form .services-total p {
  margin-bottom: 0;
  font-family: var(--title-fonts);
  font-size: 28px;
  line-height: 1.4em;
  color: #d00506;
  font-weight: 500;
}
@media (max-width: 767px) {
  .widget.widget-booking .booking-form .services-total p {
    font-size: 24px;
    line-height: 1.4em;
  }
}
.widget.widget-booking .booking-form .choose-wrapper {
  /*display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  flex-direction: column;
  gap: 20px;*/
}
.widget.widget-booking .booking-form .choose-wrapper .booking-wrap {
  background: var(--extra-color-one);
  border-radius: 8px;
}
@media (max-width: 1199px) {
  .widget.widget-booking .booking-form .choose-wrapper .booking-wrap {
    border-radius: 20px;
  }
}
.form-check .form-check-input{
    width: 100%;
    float: none;
    margin-left: 0;
    padding: 20px;
    border-radius: 5px;
}
.form-check{
    padding-left: 0;
	margin-bottom: 10px;
}
.form-check textarea{
    height: 100%;
}
.widget.widget-booking .booking-form .choose-wrapper .booking-wrap {
  padding: 15px;
  position: relative;
}
.widget.widget-booking .booking-form .choose-wrapper .booking-wrap .booking-price {
  font-size: 26px;
  font-weight: 600;
  font-family: var(--title-fonts);
  position: absolute;
  right: 20px;
  color: #d00506;
}
.widget.widget-booking .booking-form .choose-wrapper .booking-wrap .radio-area .form-check .form-check-input[type=radio] {
  width: 24px;
  height: 24px;
  padding: 0;
  margin-top: 0;
  margin-right: 12px;
}
.widget.widget-booking .booking-form .choose-wrapper .booking-wrap .radio-area .form-check .form-check-label {
  color: var(--secondary-color);
  font-size: 26px;
  font-weight: 600;
  font-family: var(--title-fonts);
}
.widget.widget-booking .booking-form .choose-wrapper .booking-wrap .radio-area p {
  font-size: 14px;
  margin-left: 35px;
  margin-top: 10px;
  margin-bottom: 0;
}
.widget.widget-faqs-catagery .widget-content .catagery-list li {
  margin: 0 0 15px 0;
}
.widget.widget-faqs-catagery .widget-content .catagery-list li a {
  position: relative;
  text-transform: capitalize;
  width: 100%;
  padding: 15px;
  background-color: var(--extra-color-one);
  color: var(--black-color);
  border-radius: 100px;
  -webkit-transition: var(--transition);
  -moz-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
}
.widget.widget-faqs-catagery .widget-content .catagery-list li a.active, .widget.widget-faqs-catagery .widget-content .catagery-list li a:hover {
  background-color: #d00506;
  color: var(--white-color);
}
.widget.widget-faqs-catagery .widget-content .catagery-list li:nth-last-child(1) {
  margin-bottom: 0;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    -moz-transform: translate3d(0, -100%, 0);
    -ms-transform: translate3d(0, -100%, 0);
    -o-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes move-bottom {
  0% {
    -webkit-transform: translateY(-25px);
    -moz-transform: translateY(-25px);
    -ms-transform: translateY(-25px);
    -o-transform: translateY(-25px);
    transform: translateY(-25px);
  }
  50% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-25px);
    -moz-transform: translateY(-25px);
    -ms-transform: translateY(-25px);
    -o-transform: translateY(-25px);
    transform: translateY(-25px);
  }
}
@keyframes move-left {
  0% {
    -webkit-transform: translateX(-25px);
    -moz-transform: translateX(-25px);
    -ms-transform: translateX(-25px);
    -o-transform: translateX(-25px);
    transform: translateX(-25px);
  }
  50% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-25px);
    -moz-transform: translateX(-25px);
    -ms-transform: translateX(-25px);
    -o-transform: translateX(-25px);
    transform: translateX(-25px);
  }
}
@keyframes move-right {
  0% {
    -webkit-transform: translateX(-25px);
    -moz-transform: translateX(-25px);
    -ms-transform: translateX(-25px);
    -o-transform: translateX(-25px);
    transform: translateX(-25px);
  }
  50% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-25px);
    -moz-transform: translateX(-25px);
    -ms-transform: translateX(-25px);
    -o-transform: translateX(-25px);
    transform: translateX(-25px);
  }
}
@keyframes scroll {
  from {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(calc(-100% - 40px));
    -moz-transform: translateX(calc(-100% - 40px));
    -ms-transform: translateX(calc(-100% - 40px));
    -o-transform: translateX(calc(-100% - 40px));
    transform: translateX(calc(-100% - 40px));
  }
}
@keyframes infiniterotate {
  from {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes imageanime {
  100% {
    left: 125%;
  }
}
@keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    -moz-transform: rotateZ(360deg);
    -ms-transform: rotateZ(360deg);
    -o-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}
@keyframes spineer2 {
  from {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.99);
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.99);
    -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.99);
    -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.99);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.99);
  }
  to {
    -webkit-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0.01);
    -moz-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0.01);
    -ms-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0.01);
    -o-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0.01);
    box-shadow: 0 0 0 45px rgba(255, 255, 255, 0.01);
  }
}
@keyframes spineer3 {
  from {
    -webkit-box-shadow: 0 0 0 0 rgba(3, 94, 88, 0.9);
    -moz-box-shadow: 0 0 0 0 rgba(3, 94, 88, 0.9);
    -ms-box-shadow: 0 0 0 0 rgba(3, 94, 88, 0.9);
    -o-box-shadow: 0 0 0 0 rgba(3, 94, 88, 0.9);
    box-shadow: 0 0 0 0 rgba(3, 94, 88, 0.9);
  }
  to {
    -webkit-box-shadow: 0 0 0 15px rgba(3, 94, 88, 0.01);
    -moz-box-shadow: 0 0 0 15px rgba(3, 94, 88, 0.01);
    -ms-box-shadow: 0 0 0 15px rgba(3, 94, 88, 0.01);
    -o-box-shadow: 0 0 0 15px rgba(3, 94, 88, 0.01);
    box-shadow: 0 0 0 15px rgba(3, 94, 88, 0.01);
  }
}
@keyframes zoom {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  to {
    -webkit-transform: scale(1.25);
    -moz-transform: scale(1.25);
    -ms-transform: scale(1.25);
    -o-transform: scale(1.25);
    transform: scale(1.25);
  }
}
@keyframes rotate {
  0% {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes fadeinone {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.section-title-area {
    display: -webkit-flex;
    display: -moz-flex;
    display: block;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 40px;
    text-align: center;
}
@media (max-width: 991px) {
  .section-title-area {
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
  }
}
.section-title-area .section-title {
  position: relative;
  /*max-width: 620px;*/
  margin-bottom: 0;
  /*width: 50%;*/
}
@media (max-width: 991px) {
  .section-title-area .section-title {
    width: 100%;
  }
}
.section-title-area .section-title .sub-title {
  margin: 0;
}
.section-title-area .section-title-content {
  /*display: -webkit-flex;
  display: -moz-flex;
  display: flex;*/
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  flex: 1;
  /*width: 50%;*/
}
@media (max-width: 991px) {
  .section-title-area .section-title-content {
    width: 100%;
  }
}
.section-title-area .section-title-content p {
  margin-bottom: 0;
}

.section-title {
  position: relative;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  flex-direction: column;
  /*gap: 5px;*/
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .section-title {
    gap: 5px;
    margin-bottom: 0;
  }
}
.section-title.text-center {
  margin-left: auto;
  margin-right: auto;
  /*max-width: 640px;*/
}
.section-title.text-center .sub-title {
  margin: 0 auto 10px;
}
.section-title .sub-title {
    display: inline-block;
    width: max-content;
    border-radius: var(--border-radius-three);
    background-color: var(--primary-rgb-05);
    color: #d00506;
    padding: 8px 15px 8px 31px;
    position: relative;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4em;
    letter-spacing: 0.2px;
    text-transform: capitalize;
    margin-bottom: 12px;
}
@media (max-width: 767px) {
  .section-title .sub-title {
     font-size: 15px;
     padding: 8px 15px 8px 40px;
     margin-bottom: 0 !important;
  }
}
.section-title .sub-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 15px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #d00506;
  border-radius: 100px;
  width: 8px;
  height: 8px;
}
.section-title h2 {
	position: relative;
    z-index: 2;
    margin-bottom: 10px;
    font-size: 35px;
    line-height: 1.2em;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: capitalize;
}
@media (max-width: 1199px) {
  .section-title h2 {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .section-title h2 {
	font-size: 30px;
	margin-bottom: 9px;
  }
  .about-section .about-right .about-content h3{
	  font-size: 27px!important;
  }
  .about-section .about-right .about-content h4{
	  font-size: 23px!important;
  }
}
.section-title h2 span {
  color: #d00506;
}
.section-title p {
  margin-bottom: 0;
}

.pagination nav .page-list {
  padding-left: 0;
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  gap: 10px;
}
.pagination nav .page-list li .page-numbers {
  position: relative;
  display: block;
  padding: 0 15px;
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  background-color: var(--white-color);
  color: var(--black-color);
  border-radius: var(--border-radius-four);
}
.pagination nav .page-list li .page-numbers.current {
  background: var(--gradient-one);
  color: var(--white-color);
}
.pagination nav .page-list li .page-numbers.prev {
  width: auto;
}
.pagination nav .page-list li .page-numbers.next {
  width: auto;
}
.pagination nav .page-list li .page-numbers:hover {
  background: var(--gradient-one);
  color: var(--white-color);
  text-decoration: none;
  z-index: 2;
}

.check-list ul li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 11px;
}
.check-list ul li:nth-last-child(1) {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .check-list ul li {
    font-size: 14px;
    line-height: 1.4em;
  }
}
.check-list ul li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
  font-size: 20px;
  color: #d00506;
  display: inline-block;
  line-height: normal;
  position: absolute;
  top: 3px;
  left: 0;
}
.check-list-two-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 15px 30px;
}
.check-list-two-col ul li {
  padding-left: 30px;
  position: relative;
  width: calc(50% - 15px);
  margin-bottom: 0;
}
.check-list-two-col ul li:nth-last-child(1) {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .check-list-two-col ul li {
    width: 100%;
  }
}
.check-list-two-col ul li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
  font-size: 20px;
  color: #d00506;
  display: inline-block;
  line-height: normal;
  position: absolute;
  top: 3px;
  left: 0;
}

.social-icon {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  gap: 10px;
}
.social-icon li span {
  font-size: 16px;
  font-weight: 400;
}
.social-icon li a {
  position: relative;
  color: var(--secondary-color);
  background-color: var(--background-two);
  height: 50px;
  width: 50px;
  line-height: 50px;
  font-size: 16px;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  border-radius: 100px;
}
.social-icon li a::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  content: "";
  position: absolute;
  background: #d00506;
  border-radius: inherit;
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 1;
}
.social-icon li a:hover {
  color: var(--white-color);
}
.social-icon li a:hover::before {
  opacity: 1;
  -webkit-transform: scale(1.02);
  -moz-transform: scale(1.02);
  -ms-transform: scale(1.02);
  -o-transform: scale(1.02);
  transform: scale(1.02);
}
.social-icon li a i {
  position: relative;
  z-index: 2;
}
.social-icon.social-vertical {
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  flex-direction: column;
}

.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  width: 40px;
  height: 40px;
  right: 20px;
  bottom: 0;
  z-index: 5;
  background-color: #d00506;
  color: var(--white-color);
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  -moz-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  -ms-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  -o-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  border-radius: var(--border-radius-one);
  -webkit-transition: var(--transition);
  -moz-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.back-to-top.show {
  visibility: visible;
  opacity: 1;
  bottom: 20px;
}
.back-to-top:hover {
  background-color: var(--secondary-color);
  color: var(--white-color);
}

.swiper-actions {
  position: relative;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 142px;
  margin-top: 25px;
}
@media (max-width: 576px) {
  .swiper-actions {
    gap: 30px;
  }
}
.swiper-actions .swiper-button-prev {
  padding: 25px 55px !important;
  margin: 0 !important;
  background: var(--gradient-one);
  position: relative;
  border-radius: 60px;
  -webkit-transition: var(--transition);
  -moz-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
  display: inline-block;
  cursor: pointer;
}
.swiper-actions .swiper-button-prev:hover {
  background: var(--gradient-two);
}
.swiper-actions .swiper-button-prev:before {
  content: "";
  width: 22px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg width='22' height='24' viewBox='0 0 22 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath opacity='0.4' d='M9.55355 0.333328C9.00521 0.333328 8.55021 0.776661 8.55021 1.33666V22.675C8.55021 23.2233 8.99355 23.6783 9.55355 23.6783C16.4252 23.6783 21.2202 18.8833 21.2202 12.0117C21.2202 5.14 16.4135 0.333328 9.55355 0.333328Z' fill='white'/%3E%3Cpath d='M1.03664 11.4633L4.34997 8.13833C4.68831 7.8 5.24831 7.8 5.58664 8.13833C5.92497 8.47667 5.92497 9.03667 5.58664 9.375L3.76664 11.195H14.9316C15.41 11.195 15.8066 11.5917 15.8066 12.07C15.8066 12.5483 15.41 12.945 14.9316 12.945H3.76664L5.58664 14.765C5.92497 15.1033 5.92497 15.6633 5.58664 16.0017C5.41164 16.1767 5.18997 16.2583 4.96831 16.2583C4.74664 16.2583 4.52497 16.1767 4.34997 16.0017L1.03664 12.6767C0.698305 12.35 0.698305 11.8017 1.03664 11.4633Z' fill='white'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.swiper-actions .swiper-button-prev::after {
  display: none;
}
.swiper-actions .swiper-button-next {
  padding: 25px 55px !important;
  margin: 0 !important;
  background: var(--gradient-one);
  position: relative;
  border-radius: 60px;
  -webkit-transition: var(--transition);
  -moz-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
  display: inline-block;
  cursor: pointer;
}
.swiper-actions .swiper-button-next:hover {
  background: var(--gradient-two);
}
.swiper-actions .swiper-button-next::before {
  content: "";
  width: 22px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg width='22' height='24' viewBox='0 0 22 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath opacity='0.4' d='M12.4465 0.333328C12.9948 0.333328 13.4498 0.776661 13.4498 1.33666V22.675C13.4498 23.2233 13.0065 23.6783 12.4465 23.6783C5.57479 23.6783 0.779785 18.8833 0.779785 12.0117C0.779785 5.14 5.58645 0.333328 12.4465 0.333328Z' fill='white'/%3E%3Cpath d='M20.9634 11.4633L17.65 8.13833C17.3117 7.8 16.7517 7.8 16.4134 8.13833C16.075 8.47667 16.075 9.03667 16.4134 9.375L18.2334 11.195H7.06836C6.59003 11.195 6.19336 11.5917 6.19336 12.07C6.19336 12.5483 6.59003 12.945 7.06836 12.945H18.2334L16.4134 14.765C16.075 15.1033 16.075 15.6633 16.4134 16.0017C16.5884 16.1767 16.81 16.2583 17.0317 16.2583C17.2534 16.2583 17.475 16.1767 17.65 16.0017L20.9634 12.6767C21.3017 12.35 21.3017 11.8017 20.9634 11.4633Z' fill='white'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.swiper-actions .swiper-button-next::after {
  display: none;
}
.swiper-actions .dot .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  -webkit-transition: 0.6s;
  -moz-transition: 0.6s;
  -ms-transition: 0.6s;
  -o-transition: 0.6s;
  transition: 0.6s;
  background: var(--secondary-color);
  opacity: 1;
  border-radius: 7px;
  margin-right: 15px;
}
.swiper-actions .dot .swiper-pagination-bullet-active {
  -webkit-transition: 0.6s;
  -moz-transition: 0.6s;
  -ms-transition: 0.6s;
  -o-transition: 0.6s;
  transition: 0.6s;
  position: relative;
}
.swiper-actions .dot .swiper-pagination-bullet-active::before {
  position: absolute;
  width: 20px;
  height: 20px;
  line-height: 20px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid var(--secondary-color);
  content: "";
}

.custome-radio [type=radio].checked, .custome-radio [type=radio]:not(.checked) {
  position: absolute;
  left: -9999px;
}
.custome-radio [type=radio]:checked + label, .custome-radio [type=radio]:not(:checked) + label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
  color: var(--text-color);
}
.custome-radio [type=radio]:checked + label:before, .custome-radio [type=radio]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  background: var(--white-color);
  border: 1px solid var(--black-color);
  border-radius: 100%;
}
.custome-radio [type=radio]:checked + label:before {
  border-color: #d00506;
}
.custome-radio [type=radio]:checked + label:after, .custome-radio [type=radio]:not(:checked) + label:after {
  content: "";
  width: 14px;
  height: 14px;
  background: #d00506;
  position: absolute;
  top: 3px;
  left: 3px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.custome-radio [type=radio]:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
}
.custome-radio [type=radio]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

.comment-wapper .comment-list li {
  margin-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 30px;
}
.comment-wapper .comment-list li:first-of-type {
  margin-top: 0;
  border-top: none;
  padding-top: 0;
}
.comment-wapper .comment-list li .comment-list-item {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
}
@media (max-width: 767px) {
  .comment-wapper .comment-list li .comment-list-item {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    flex-direction: column;
  }
}
.comment-wapper .comment-list li .comment-list-item .comment-user-profile {
  flex: 0 0 auto;
  margin-right: 25px;
}
@media (max-width: 767px) {
  .comment-wapper .comment-list li .comment-list-item .comment-user-profile {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
.comment-wapper .comment-list li .comment-list-item .comment-user-profile figure {
  display: inline-block;
  overflow: hidden;
  border-radius: 20px;
}
.comment-wapper .comment-list li .comment-list-item .comment-user-profile figure img {
  width: 100px;
  height: 100px;
  object-fit: cover;
}
.comment-wapper .comment-list li .comment-list-item .comment-content {
  position: relative;
  min-height: 115px;
}
.comment-wapper .comment-list li .comment-list-item .comment-content .comment-meta {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.comment-wapper .comment-list li .comment-list-item .comment-content .comment-meta .comment-author {
  margin-top: 0;
  margin-bottom: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  color: var(--text-color);
  font-weight: 500;
}
@media (max-width: 767px) {
  .comment-wapper .comment-list li .comment-list-item .comment-content .comment-meta .comment-author {
    font-size: 14px;
  }
}
.comment-wapper .comment-list li .comment-list-item .comment-content .comment-meta .comment-author .comment-author-name {
  margin: 0 5px;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--black-color);
}
.comment-wapper .comment-list li .comment-list-item .comment-content .comment-meta .comment-date {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  gap: 5px;
  font-size: 16px;
  margin: 0 0 0 30px;
  font-weight: 400;
  color: var(--text-color);
  position: relative;
}
@media (max-width: 767px) {
  .comment-wapper .comment-list li .comment-list-item .comment-content .comment-meta .comment-date {
    font-size: 14px;
  }
}
.comment-wapper .comment-list li .comment-list-item .comment-content .comment-meta .comment-date::before {
  position: absolute;
  content: "";
  left: -22px;
  height: 1px;
  top: 50%;
  width: 8px;
  background-color: var(--text-color);
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.comment-wapper .comment-list li .comment-list-item .comment-content .comment-meta .comment-date i {
  color: #d00506;
}
.comment-wapper .comment-list li .comment-list-item .comment-content p {
  margin-bottom: 15px;
}
.comment-wapper .comment-list li .comment-list-item .comment-content .comment-reply i {
  margin-right: 5px;
}
.comment-wapper .comment-list li .comment-list-item .comment-content .comment-reply:hover {
  color: #d00506;
}
.comment-wapper .comment-list li .comment-list-item.comment-nesting {
  padding-left: 130px;
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
@media (max-width: 767px) {
  .comment-wapper .comment-list li .comment-list-item.comment-nesting {
    padding-left: 30px;
  }
}
.comment-wapper .comment-list li:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
}

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 5px #d00506;
  -moz-box-shadow: inset 0 0 5px #d00506;
  -ms-box-shadow: inset 0 0 5px #d00506;
  -o-box-shadow: inset 0 0 5px #d00506;
  box-shadow: inset 0 0 5px #d00506;
  border-radius: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #d00506;
  border-radius: 10px;
}

.transformation-image {
  border-radius: var(--border-radius-three);
}
@media (max-width: 1199px) {
  .transformation-image {
    border-radius: 20px;
  }
}

.quantity-content {
  display: inline-block;
  position: relative;
}
.quantity-content button {
  position: absolute;
  background-color: transparent;
  height: 100%;
  width: 52px;
}
.quantity-content button.qty-btn-minus {
  left: 0;
}
.quantity-content button.qty-btn-plus {
  right: 0;
}
.quantity-content .input-qty {
  width: 160px;
  text-align: center;
}
.quantity-content:hover .input-qty {
  border-color: #d00506;
}

.mouse-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
}
.mouse-cursor.cursor-inner {
  width: 6px;
  height: 6px;
  z-index: 10000001;
  background-color: #d00506;
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
.mouse-cursor.cursor-inner.cursor-hover {
  margin-left: -35px;
  margin-top: -35px;
  width: 70px;
  height: 70px;
  background-color: #d00506;
  opacity: 0.3;
}
.mouse-cursor.cursor-outer {
  margin-left: -12px;
  margin-top: -12px;
  width: 30px;
  height: 30px;
  border: 1px solid #d00506;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 10000000;
  opacity: 0.5;
  -webkit-transition: all 0.08s ease-out;
  -moz-transition: all 0.08s ease-out;
  -ms-transition: all 0.08s ease-out;
  -o-transition: all 0.08s ease-out;
  transition: all 0.08s ease-out;
}
.mouse-cursor.cursor-outer.cursor-hover {
  opacity: 0;
}

.user-listing {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.user-listing ul {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding-left: 0;
  margin-right: 12px;
}
.user-listing ul li {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: var(--white-color);
  padding: 3px;
  margin-left: -1rem;
}
.user-listing ul li:nth-child(1) {
  margin-left: 0;
}
.user-listing ul li img {
  border-radius: 50%;
}
.user-listing p {
  line-height: normal;
  font-weight: 600;
  margin: 0;
}

.preloader {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 999;
  background-color: var(--body-color);
  position: fixed;
}
.preloader .preloader-icon {
  position: relative;
}
.preloader .preloader-icon img {
  width: 100px;
  height: 100px;
}
.preloader .preloader-text {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
}
.preloader .preloader-text p {
  font-family: var(--title-fonts);
  color: var(--secondary-color);
  margin-bottom: 0;
  font-size: 46px;
  line-height: 1.1em;
  font-weight: 700;
  text-transform: capitalize;
  -webkit-animation: fadeinone 3s ease-in-out infinite;
  -moz-animation: fadeinone 3s ease-in-out infinite;
  -o-animation: fadeinone 3s ease-in-out infinite;
  animation: fadeinone 3s ease-in-out infinite;
}
@media (max-width: 991px) {
  .preloader .preloader-text p {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .preloader .preloader-text p {
    font-size: 26px;
  }
}
.preloader .preloader-text p:nth-child(1) {
  -webkit-animation-delay: 0.2s;
  -moz-animation-delay: 0.2s;
  -o-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
.preloader .preloader-text p:nth-child(2) {
  -webkit-animation-delay: 0.3s;
  -moz-animation-delay: 0.3s;
  -o-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.preloader .preloader-text p:nth-child(3) {
  -webkit-animation-delay: 0.4s;
  -moz-animation-delay: 0.4s;
  -o-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
.preloader .preloader-text p:nth-child(4) {
  -webkit-animation-delay: 0.5s;
  -moz-animation-delay: 0.5s;
  -o-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
.preloader .preloader-text p:nth-child(5) {
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  -o-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
.preloader .preloader-text p:nth-child(6) {
  -webkit-animation-delay: 0.7s;
  -moz-animation-delay: 0.7s;
  -o-animation-delay: 0.7s;
  animation-delay: 0.7s;
}
.preloader .preloader-text p:nth-child(7) {
  -webkit-animation-delay: 0.8s;
  -moz-animation-delay: 0.8s;
  -o-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.pt-10 {
  padding-top: 10px !important;
}
.pt-15 {
  padding-top: 15px !important;
}
.pt-20 {
  padding-top: 20px !important;
}
.pt-25 {
  padding-top: 25px !important;
}
.pt-30 {
  padding-top: 30px !important;
}
.pt-35 {
  padding-top: 35px !important;
}
.pt-40 {
  padding-top: 40px !important;
}
.pt-45 {
  padding-top: 45px !important;
}
.pt-50 {
  padding-top: 50px !important;
}
.pt-55 {
  padding-top: 55px !important;
}
.pt-60 {
  padding-top: 60px !important;
}
.pt-65 {
  padding-top: 65px !important;
}
.pt-70 {
  padding-top: 70px !important;
}
.pt-75 {
  padding-top: 75px !important;
}
.pt-80 {
  padding-top: 80px !important;
}
.pt-85 {
  padding-top: 85px !important;
}
.pt-90 {
  padding-top: 90px !important;
}
.pt-95 {
  padding-top: 95px !important;
}
.pt-100 {
  padding-top: 100px !important;
}
.pt-105 {
  padding-top: 105px !important;
}
.pt-110 {
  padding-top: 110px !important;
}
.pt-115 {
  padding-top: 115px !important;
}
.pt-120 {
  padding-top: 120px !important;
}
.pt-125 {
  padding-top: 125px !important;
}
.pt-130 {
  padding-top: 130px !important;
}
.pt-135 {
  padding-top: 135px !important;
}
.pt-140 {
  padding-top: 140px !important;
}
.pt-145 {
  padding-top: 145px !important;
}
.pt-150 {
  padding-top: 150px !important;
}
.pt-155 {
  padding-top: 155px !important;
}
.pt-160 {
  padding-top: 160px !important;
}
.pt-165 {
  padding-top: 165px !important;
}
.pt-170 {
  padding-top: 170px !important;
}
.pt-175 {
  padding-top: 175px !important;
}
.pt-180 {
  padding-top: 180px !important;
}
.pt-185 {
  padding-top: 185px !important;
}
.pt-190 {
  padding-top: 190px !important;
}
.pt-195 {
  padding-top: 195px !important;
}
.pt-200 {
  padding-top: 200px !important;
}

.pb-10 {
  padding-bottom: 10px !important;
}
.pb-15 {
  padding-bottom: 15px !important;
}
.pb-20 {
  padding-bottom: 20px !important;
}
.pb-25 {
  padding-bottom: 25px !important;
}
.pb-30 {
  padding-bottom: 30px !important;
}
.pb-35 {
  padding-bottom: 35px !important;
}
.pb-40 {
  padding-bottom: 40px !important;
}
.pb-45 {
  padding-bottom: 45px !important;
}
.pb-50 {
  padding-bottom: 50px !important;
}
.pb-55 {
  padding-bottom: 55px !important;
}
.pb-60 {
  padding-bottom: 60px !important;
}
.pb-65 {
  padding-bottom: 65px !important;
}
.pb-70 {
  padding-bottom: 70px !important;
}
.pb-75 {
  padding-bottom: 75px !important;
}
.pb-80 {
  padding-bottom: 80px !important;
}
.pb-85 {
  padding-bottom: 85px !important;
}
.pb-90 {
  padding-bottom: 90px !important;
}
.pb-95 {
  padding-bottom: 95px !important;
}
.pb-100 {
  padding-bottom: 100px !important;
}
.pb-105 {
  padding-bottom: 105px !important;
}
.pb-110 {
  padding-bottom: 110px !important;
}
.pb-115 {
  padding-bottom: 115px !important;
}
.pb-120 {
  padding-bottom: 120px !important;
}
.pb-125 {
  padding-bottom: 125px !important;
}
.pb-130 {
  padding-bottom: 130px !important;
}
.pb-135 {
  padding-bottom: 135px !important;
}
.pb-140 {
  padding-bottom: 140px !important;
}
.pb-145 {
  padding-bottom: 145px !important;
}
.pb-150 {
  padding-bottom: 150px !important;
}
.pb-155 {
  padding-bottom: 155px !important;
}
.pb-160 {
  padding-bottom: 160px !important;
}
.pb-165 {
  padding-bottom: 165px !important;
}
.pb-170 {
  padding-bottom: 170px !important;
}
.pb-175 {
  padding-bottom: 175px !important;
}
.pb-180 {
  padding-bottom: 180px !important;
}
.pb-185 {
  padding-bottom: 185px !important;
}
.pb-190 {
  padding-bottom: 190px !important;
}
.pb-195 {
  padding-bottom: 195px !important;
}
.pb-200 {
  padding-bottom: 200px !important;
}

.pl-10 {
  padding-left: 10px !important;
}
.pl-15 {
  padding-left: 15px !important;
}
.pl-20 {
  padding-left: 20px !important;
}
.pl-25 {
  padding-left: 25px !important;
}
.pl-30 {
  padding-left: 30px !important;
}
.pl-35 {
  padding-left: 35px !important;
}
.pl-40 {
  padding-left: 40px !important;
}
.pl-45 {
  padding-left: 45px !important;
}
.pl-50 {
  padding-left: 50px !important;
}
.pl-55 {
  padding-left: 55px !important;
}
.pl-60 {
  padding-left: 60px !important;
}
.pl-65 {
  padding-left: 65px !important;
}
.pl-70 {
  padding-left: 70px !important;
}
.pl-75 {
  padding-left: 75px !important;
}
.pl-80 {
  padding-left: 80px !important;
}
.pl-85 {
  padding-left: 85px !important;
}
.pl-90 {
  padding-left: 90px !important;
}
.pl-95 {
  padding-left: 95px !important;
}
.pl-100 {
  padding-left: 100px !important;
}
.pl-105 {
  padding-left: 105px !important;
}
.pl-110 {
  padding-left: 110px !important;
}
.pl-115 {
  padding-left: 115px !important;
}
.pl-120 {
  padding-left: 120px !important;
}
.pl-125 {
  padding-left: 125px !important;
}
.pl-130 {
  padding-left: 130px !important;
}
.pl-135 {
  padding-left: 135px !important;
}
.pl-140 {
  padding-left: 140px !important;
}
.pl-145 {
  padding-left: 145px !important;
}
.pl-150 {
  padding-left: 150px !important;
}
.pl-155 {
  padding-left: 155px !important;
}
.pl-160 {
  padding-left: 160px !important;
}
.pl-165 {
  padding-left: 165px !important;
}
.pl-170 {
  padding-left: 170px !important;
}
.pl-175 {
  padding-left: 175px !important;
}
.pl-180 {
  padding-left: 180px !important;
}
.pl-185 {
  padding-left: 185px !important;
}
.pl-190 {
  padding-left: 190px !important;
}
.pl-195 {
  padding-left: 195px !important;
}
.pl-200 {
  padding-left: 200px !important;
}

.pr-10 {
  padding-right: 10px !important;
}
.pr-15 {
  padding-right: 15px !important;
}
.pr-20 {
  padding-right: 20px !important;
}
.pr-25 {
  padding-right: 25px !important;
}
.pr-30 {
  padding-right: 30px !important;
}
.pr-35 {
  padding-right: 35px !important;
}
.pr-40 {
  padding-right: 40px !important;
}
.pr-45 {
  padding-right: 45px !important;
}
.pr-50 {
  padding-right: 50px !important;
}
.pr-55 {
  padding-right: 55px !important;
}
.pr-60 {
  padding-right: 60px !important;
}
.pr-65 {
  padding-right: 65px !important;
}
.pr-70 {
  padding-right: 70px !important;
}
.pr-75 {
  padding-right: 75px !important;
}
.pr-80 {
  padding-right: 80px !important;
}
.pr-85 {
  padding-right: 85px !important;
}
.pr-90 {
  padding-right: 90px !important;
}
.pr-95 {
  padding-right: 95px !important;
}
.pr-100 {
  padding-right: 100px !important;
}
.pr-105 {
  padding-right: 105px !important;
}
.pr-110 {
  padding-right: 110px !important;
}
.pr-115 {
  padding-right: 115px !important;
}
.pr-120 {
  padding-right: 120px !important;
}
.pr-125 {
  padding-right: 125px !important;
}
.pr-130 {
  padding-right: 130px !important;
}
.pr-135 {
  padding-right: 135px !important;
}
.pr-140 {
  padding-right: 140px !important;
}
.pr-145 {
  padding-right: 145px !important;
}
.pr-150 {
  padding-right: 150px !important;
}
.pr-155 {
  padding-right: 155px !important;
}
.pr-160 {
  padding-right: 160px !important;
}
.pr-165 {
  padding-right: 165px !important;
}
.pr-170 {
  padding-right: 170px !important;
}
.pr-175 {
  padding-right: 175px !important;
}
.pr-180 {
  padding-right: 180px !important;
}
.pr-185 {
  padding-right: 185px !important;
}
.pr-190 {
  padding-right: 190px !important;
}
.pr-195 {
  padding-right: 195px !important;
}
.pr-200 {
  padding-right: 200px !important;
}

.mt-10 {
  margin-top: 10px !important;
}
.mt-15 {
  margin-top: 15px !important;
}
.mt-20 {
  margin-top: 20px !important;
}
.mt-25 {
  margin-top: 25px !important;
}
.mt-30 {
  margin-top: 30px !important;
}
.mt-35 {
  margin-top: 35px !important;
}
.mt-40 {
  margin-top: 40px !important;
}
.mt-45 {
  margin-top: 45px !important;
}
.mt-50 {
  margin-top: 50px !important;
}
.mt-55 {
  margin-top: 55px !important;
}
.mt-60 {
  margin-top: 60px !important;
}
.mt-65 {
  margin-top: 65px !important;
}
.mt-70 {
  margin-top: 70px !important;
}
.mt-75 {
  margin-top: 75px !important;
}
.mt-80 {
  margin-top: 80px !important;
}
.mt-85 {
  margin-top: 85px !important;
}
.mt-90 {
  margin-top: 90px !important;
}
.mt-95 {
  margin-top: 95px !important;
}
.mt-100 {
  margin-top: 100px !important;
}
.mt-105 {
  margin-top: 105px !important;
}
.mt-110 {
  margin-top: 110px !important;
}
.mt-115 {
  margin-top: 115px !important;
}
.mt-120 {
  margin-top: 120px !important;
}
.mt-125 {
  margin-top: 125px !important;
}
.mt-130 {
  margin-top: 130px !important;
}
.mt-135 {
  margin-top: 135px !important;
}
.mt-140 {
  margin-top: 140px !important;
}
.mt-145 {
  margin-top: 145px !important;
}
.mt-150 {
  margin-top: 150px !important;
}
.mt-155 {
  margin-top: 155px !important;
}
.mt-160 {
  margin-top: 160px !important;
}
.mt-165 {
  margin-top: 165px !important;
}
.mt-170 {
  margin-top: 170px !important;
}
.mt-175 {
  margin-top: 175px !important;
}
.mt-180 {
  margin-top: 180px !important;
}
.mt-185 {
  margin-top: 185px !important;
}
.mt-190 {
  margin-top: 190px !important;
}
.mt-195 {
  margin-top: 195px !important;
}
.mt-200 {
  margin-top: 200px !important;
}

.mt--100 {
  margin-top: -100px;
}
.mt--150 {
  margin-top: -150px;
}
.mt--200 {
  margin-top: -200px;
}

.mb-10 {
  margin-bottom: 10px !important;
}
.mb-15 {
  margin-bottom: 15px !important;
}
.mb-20 {
  margin-bottom: 20px !important;
}
.mb-25 {
  margin-bottom: 25px !important;
}
.mb-30 {
  margin-bottom: 30px !important;
}
.mb-35 {
  margin-bottom: 35px !important;
}
.mb-40 {
  margin-bottom: 40px !important;
}
.mb-45 {
  margin-bottom: 45px !important;
}
.mb-50 {
  margin-bottom: 50px !important;
}
.mb-55 {
  margin-bottom: 55px !important;
}
.mb-60 {
  margin-bottom: 60px !important;
}
.mb-65 {
  margin-bottom: 65px !important;
}
.mb-70 {
  margin-bottom: 70px !important;
}
.mb-75 {
  margin-bottom: 75px !important;
}
.mb-80 {
  margin-bottom: 80px !important;
}
.mb-85 {
  margin-bottom: 85px !important;
}
.mb-90 {
  margin-bottom: 90px !important;
}
.mb-95 {
  margin-bottom: 95px !important;
}
.mb-100 {
  margin-bottom: 100px !important;
}
.mb-105 {
  margin-bottom: 105px !important;
}
.mb-110 {
  margin-bottom: 110px !important;
}
.mb-115 {
  margin-bottom: 115px !important;
}
.mb-120 {
  margin-bottom: 120px !important;
}
.mb-125 {
  margin-bottom: 125px !important;
}
.mb-130 {
  margin-bottom: 130px !important;
}
.mb-135 {
  margin-bottom: 135px !important;
}
.mb-140 {
  margin-bottom: 140px !important;
}
.mb-145 {
  margin-bottom: 145px !important;
}
.mb-150 {
  margin-bottom: 150px !important;
}
.mb-155 {
  margin-bottom: 155px !important;
}
.mb-160 {
  margin-bottom: 160px !important;
}
.mb-165 {
  margin-bottom: 165px !important;
}
.mb-170 {
  margin-bottom: 170px !important;
}
.mb-175 {
  margin-bottom: 175px !important;
}
.mb-180 {
  margin-bottom: 180px !important;
}
.mb-185 {
  margin-bottom: 185px !important;
}
.mb-190 {
  margin-bottom: 190px !important;
}
.mb-195 {
  margin-bottom: 195px !important;
}
.mb-200 {
  margin-bottom: 200px !important;
}

.ml-10 {
  margin-left: 10px !important;
}
.ml-15 {
  margin-left: 15px !important;
}
.ml-20 {
  margin-left: 20px !important;
}
.ml-25 {
  margin-left: 25px !important;
}
.ml-30 {
  margin-left: 30px !important;
}
.ml-35 {
  margin-left: 35px !important;
}
.ml-40 {
  margin-left: 40px !important;
}
.ml-45 {
  margin-left: 45px !important;
}
.ml-50 {
  margin-left: 50px !important;
}
.ml-55 {
  margin-left: 55px !important;
}
.ml-60 {
  margin-left: 60px !important;
}
.ml-65 {
  margin-left: 65px !important;
}
.ml-70 {
  margin-left: 70px !important;
}
.ml-75 {
  margin-left: 75px !important;
}
.ml-80 {
  margin-left: 80px !important;
}
.ml-85 {
  margin-left: 85px !important;
}
.ml-90 {
  margin-left: 90px !important;
}
.ml-95 {
  margin-left: 95px !important;
}
.ml-100 {
  margin-left: 100px !important;
}
.ml-105 {
  margin-left: 105px !important;
}
.ml-110 {
  margin-left: 110px !important;
}
.ml-115 {
  margin-left: 115px !important;
}
.ml-120 {
  margin-left: 120px !important;
}
.ml-125 {
  margin-left: 125px !important;
}
.ml-130 {
  margin-left: 130px !important;
}
.ml-135 {
  margin-left: 135px !important;
}
.ml-140 {
  margin-left: 140px !important;
}
.ml-145 {
  margin-left: 145px !important;
}
.ml-150 {
  margin-left: 150px !important;
}
.ml-155 {
  margin-left: 155px !important;
}
.ml-160 {
  margin-left: 160px !important;
}
.ml-165 {
  margin-left: 165px !important;
}
.ml-170 {
  margin-left: 170px !important;
}
.ml-175 {
  margin-left: 175px !important;
}
.ml-180 {
  margin-left: 180px !important;
}
.ml-185 {
  margin-left: 185px !important;
}
.ml-190 {
  margin-left: 190px !important;
}
.ml-195 {
  margin-left: 195px !important;
}
.ml-200 {
  margin-left: 200px !important;
}

.mr-10 {
  margin-right: 10px !important;
}
.mr-15 {
  margin-right: 15px !important;
}
.mr-20 {
  margin-right: 20px !important;
}
.mr-25 {
  margin-right: 25px !important;
}
.mr-30 {
  margin-right: 30px !important;
}
.mr-35 {
  margin-right: 35px !important;
}
.mr-40 {
  margin-right: 40px !important;
}
.mr-45 {
  margin-right: 45px !important;
}
.mr-50 {
  margin-right: 50px !important;
}
.mr-55 {
  margin-right: 55px !important;
}
.mr-60 {
  margin-right: 60px !important;
}
.mr-65 {
  margin-right: 65px !important;
}
.mr-70 {
  margin-right: 70px !important;
}
.mr-75 {
  margin-right: 75px !important;
}
.mr-80 {
  margin-right: 80px !important;
}
.mr-85 {
  margin-right: 85px !important;
}
.mr-90 {
  margin-right: 90px !important;
}
.mr-95 {
  margin-right: 95px !important;
}
.mr-100 {
  margin-right: 100px !important;
}
.mr-105 {
  margin-right: 105px !important;
}
.mr-110 {
  margin-right: 110px !important;
}
.mr-115 {
  margin-right: 115px !important;
}
.mr-120 {
  margin-right: 120px !important;
}
.mr-125 {
  margin-right: 125px !important;
}
.mr-130 {
  margin-right: 130px !important;
}
.mr-135 {
  margin-right: 135px !important;
}
.mr-140 {
  margin-right: 140px !important;
}
.mr-145 {
  margin-right: 145px !important;
}
.mr-150 {
  margin-right: 150px !important;
}
.mr-155 {
  margin-right: 155px !important;
}
.mr-160 {
  margin-right: 160px !important;
}
.mr-165 {
  margin-right: 165px !important;
}
.mr-170 {
  margin-right: 170px !important;
}
.mr-175 {
  margin-right: 175px !important;
}
.mr-180 {
  margin-right: 180px !important;
}
.mr-185 {
  margin-right: 185px !important;
}
.mr-190 {
  margin-right: 190px !important;
}
.mr-195 {
  margin-right: 195px !important;
}
.mr-200 {
  margin-right: 200px !important;
}

@media (max-width: 991px) {
  .md-pt-180 {
    padding-top: 180px !important;
  }
  .md-pt-170 {
    padding-top: 170px !important;
  }
  .md-pt-160 {
    padding-top: 160px !important;
  }
  .md-pt-150 {
    padding-top: 150px !important;
  }
  .md-pt-140 {
    padding-top: 140px !important;
  }
  .md-pt-130 {
    padding-top: 130px !important;
  }
  .md-pt-120 {
    padding-top: 120px !important;
  }
  .md-pt-110 {
    padding-top: 110px !important;
  }
  .md-pt-100 {
    padding-top: 100px !important;
  }
  .md-pt-90 {
    padding-top: 90px !important;
  }
  .md-pt-80 {
    padding-top: 80px !important;
  }
  .md-pt-70 {
    padding-top: 70px !important;
  }
  .md-pt-60 {
    padding-top: 60px !important;
  }
  .md-pt-50 {
    padding-top: 50px !important;
  }
  .md-pt-40 {
    padding-top: 40px !important;
  }
  .md-pt-30 {
    padding-top: 30px !important;
  }
  .md-pt-20 {
    padding-top: 20px !important;
  }
  .md-pt-10 {
    padding-top: 10px !important;
  }
  .md-pb-180 {
    padding-bottom: 180px !important;
  }
  .md-pb-170 {
    padding-bottom: 170px !important;
  }
  .md-pb-160 {
    padding-bottom: 160px !important;
  }
  .md-pb-150 {
    padding-bottom: 150px !important;
  }
  .md-pb-140 {
    padding-bottom: 140px !important;
  }
  .md-pb-130 {
    padding-bottom: 130px !important;
  }
  .md-pb-120 {
    padding-bottom: 120px !important;
  }
  .md-pb-110 {
    padding-bottom: 110px !important;
  }
  .md-pb-100 {
    padding-bottom: 100px !important;
  }
  .md-pb-90 {
    padding-bottom: 90px !important;
  }
  .md-pb-80 {
    padding-bottom: 80px !important;
  }
  .md-pb-70 {
    padding-bottom: 70px !important;
  }
  .md-pb-60 {
    padding-bottom: 60px !important;
  }
  .md-pb-50 {
    padding-bottom: 50px !important;
  }
  .md-pb-40 {
    padding-bottom: 40px !important;
  }
  .md-pb-30 {
    padding-bottom: 30px !important;
  }
  .md-pb-20 {
    padding-bottom: 20px !important;
  }
  .md-pb-10 {
    padding-bottom: 10px !important;
  }
  .md-mt .md-mt--110 {
    margin-top: -110px;
  }
  .md-mt .md-mt--120 {
    margin-top: -120px;
  }
  .md-mt .md-mt--130 {
    margin-top: -130px;
  }
  .md-mt .md-mt--140 {
    margin-top: -140px;
  }
  .md-mt .md-mt--150 {
    margin-top: -150px;
  }
}
.mlr {
  margin-left: 40px;
  margin-right: 40px;
}
@media (max-width: 1199px) {
  .mlr {
    margin-left: 20px;
    margin-right: 20px;
  }
}
@media (max-width: 991px) {
  .mlr {
    margin-left: 12px;
    margin-right: 12px;
  }
}

.plr {
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 1199px) {
  .plr {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 991px) {
  .plr {
    padding-left: 12px;
    padding-right: 12px;
  }
}

.fs_14 {
  font-size: 14px !important;
}
.fs_15 {
  font-size: 15px !important;
}
.fs_16 {
  font-size: 16px !important;
}
.fs_17 {
  font-size: 17px !important;
}
.fs_18 {
  font-size: 18px !important;
}
.fs_19 {
  font-size: 19px !important;
}
.fs_20 {
  font-size: 20px !important;
}
.fs_21 {
  font-size: 21px !important;
}
.fs_22 {
  font-size: 22px !important;
}
.fs_23 {
  font-size: 23px !important;
}
.fs_24 {
  font-size: 24px !important;
}
.fs_25 {
  font-size: 25px !important;
}
.fs_26 {
  font-size: 26px !important;
}
.fs_27 {
  font-size: 27px !important;
}
.fs_28 {
  font-size: 28px !important;
}
.fs_29 {
  font-size: 29px !important;
}
.fs_30 {
  font-size: 30px !important;
}
.fs_31 {
  font-size: 31px !important;
}
.fs_32 {
  font-size: 32px !important;
}
.fs_33 {
  font-size: 33px !important;
}
.fs_34 {
  font-size: 34px !important;
}

.fw_1 {
  font-weight: 100 !important;
}
.fw_2 {
  font-weight: 200 !important;
}
.fw_3 {
  font-weight: 300 !important;
}
.fw_4 {
  font-weight: 400 !important;
}
.fw_5 {
  font-weight: 500 !important;
}
.fw_6 {
  font-weight: 600 !important;
}
.fw_7 {
  font-weight: 700 !important;
}
.fw_8 {
  font-weight: 800 !important;
}
.fw_9 {
  font-weight: 900 !important;
}
.fw_bold {
  font-weight: bold !important;
}

.w-10 {
  width: 10% !important;
}
.w-20 {
  width: 20% !important;
}
.w-30 {
  width: 30% !important;
}
.w-40 {
  width: 40% !important;
}
.w-50 {
  width: 50% !important;
}
.w-60 {
  width: 60% !important;
}
.w-70 {
  width: 70% !important;
}
.w-80 {
  width: 80% !important;
}
.w-90 {
  width: 90% !important;
}

.line_height {
  line-height: normal !important;
}

.primary-color {
  color: #d00506 !important;
}

.white-color {
  color: var(--white-color) !important;
}

.black-color {
  color: var(--black-color) !important;
}

.text-color {
  color: var(--text-color) !important;
}

.primary-bg {
  background-color: #d00506 !important;
}

.background-one {
  background-color: var(--background-one) !important;
}
.background-two {
  background-color: var(--background-two) !important;
}

.extra-color {
  background-color: var(--extra-color);
}
.extra-color-one {
  background-color: var(--extra-color-one);
}
.extra-color-two {
  background-color: var(--extra-color-two);
}
.extra-color-three {
  background-color: var(--extra-color-three);
}

.fa-star {
  color: var(--text-color);
}
.fa-star.active {
  color: #ffb03b;
}

.grid-2 {
  display: grid;
  grid-gap: 24px;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 767px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
}
.grid-3 {
  display: grid;
  grid-gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 767px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}
.grid-4 {
  display: grid;
  grid-gap: 24px;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 767px) {
  .grid-4 {
    grid-template-columns: 2fr;
  }
}
@media (max-width: 567px) {
  .grid-4 {
    grid-template-columns: 1fr;
  }
}
.grid-5 {
  display: grid;
  grid-gap: 24px;
  grid-template-columns: repeat(5, 1fr);
}
@media (max-width: 767px) {
  .grid-5 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.grid-6 {
  display: grid;
  grid-gap: 24px;
  grid-template-columns: repeat(6, 1fr);
}
@media (max-width: 767px) {
  .grid-6 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 567px) {
  .grid-6 {
    grid-template-columns: 1fr;
  }
}

.image-anime::after {
  position: absolute;
  top: 0;
  left: -85%;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  -webkit-transform: skewX(-25deg);
  -moz-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  -o-transform: skewX(-25deg);
  transform: skewX(-25deg);
  z-index: 1;
}
.image-anime:hover::after {
  -webkit-animation: imageanime 0.85s;
  -moz-animation: imageanime 0.85s;
  -o-animation: imageanime 0.85s;
  animation: imageanime 0.85s;
}

.footer {
  position: relative;
}
.footer .footer-social-icon .social-list {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  gap: 10px;
}
.footer .footer-social-icon .social-list a {
  margin-bottom: 0;
  font-size: 14px;
  color: var(--white-color);
  border: 1px solid var(--white-color);
  border-radius: var(--border-radius-three);
  height: 42px;
  width: 42px;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.footer .footer-social-icon .social-list a:hover {
  background-color: var(--white-color);
  color: var(--black-color);
}
.footer .footer-logo a figure img {
	width: 210px;
    background: #fff;
    padding: 10px;
    border-radius: 8px;
}
.footer .footer-contact-info {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .footer .footer-contact-info {
    margin-top: 30px;
  }
}
.footer .footer-contact-info .footer-contact-icon {
  position: relative;
  width: 45px;
  height: 45px;
  text-align: center;
  background-color: #d00506;
  color: var(--white-color);
  font-size: 22px;
  font-weight: 600;
  border-radius: 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.footer .footer-contact-info .footer-contact-icon::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  content: "";
  position: absolute;
  background: #d00506;
  border-radius: inherit;
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 1;
}
.footer .footer-contact-info .footer-contact-icon i {
  position: relative;
  z-index: 2;
  width: 28px;
  height: 28px;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.footer .footer-contact-info .footer-contact-content {
  font-size: 18px;
  font-weight: 600;
  margin-left: 20px;
  color: var(--white-color);
}
@media (max-width: 991px) {
  .footer .footer-contact-info .footer-contact-content {
    font-size: 15px;
	margin-left: 12px;
  }
  .footer .footer-contact-info .footer-contact-content span{
	font-size: 15px;
  }
}
.footer .footer-contact-info .footer-contact-content span {
  display: block;
  font-size: 17px;
  font-weight: 400;
  margin-bottom: 5px;
}
.footer .footer-contact-info:hover .footer-contact-icon::before {
  opacity: 1;
  -webkit-transform: scale(1.02);
  -moz-transform: scale(1.02);
  -ms-transform: scale(1.02);
  -o-transform: scale(1.02);
  transform: scale(1.02);
}
.footer .footer-widget-call .widget-user-call-box {
  position: relative;
  background: var(--body-color);
  padding: 24px;
  border-radius: var(--border-radius-three);
}
@media (max-width: 1199px) {
  .footer .footer-widget-call .widget-user-call-box {
    border-radius: 20px;
  }
}
@media (max-width: 991px) {
  .footer .footer-widget-call .widget-user-call-box {
    padding: 20px;
  }
}
.footer .footer-widget-call .widget-user-call-box .widget-user-call-wapper {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.footer .footer-widget-call .widget-user-call-box .widget-user-call-wapper .user-icon {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  width: 70px;
  height: 70px;
  background-color: var(--white-color);
  border: 3px solid var(--white-color);
  border-radius: 50%;
}
.footer .footer-widget-call .widget-user-call-box .widget-user-call-wapper .user-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.footer .footer-widget-call .widget-user-call-box .widget-user-call-wapper .user-details {
  flex: 1;
}
.footer .footer-widget-call .widget-user-call-box .widget-user-call-wapper .user-details span {
  display: block;
  font-size: 14px;
  font-weight: 500;
}
.footer .footer-widget-call .widget-user-call-box .widget-user-call-wapper .user-details a {
  font-size: 24px;
  font-weight: 600;
  color: var(--black-color);
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.footer .widget-subscribe p {
  font-size: 20px;
  font-weight: 600;
  font-family: var(--title-fonts);
  color: var(--white-color);
}
.footer .widget-subscribe form {
  position: relative;
}
.footer .widget-subscribe form input {
  border: none;
  border-radius: var(--border-radius-four);
  font-weight: 400;
}
.footer .widget-subscribe form button {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  padding: 5px 15px;
  right: 5px;
  height: 80%;
  border-radius: var(--border-radius-four);
}
.footer .footer-bottom .footer-widget-wrap .footer-widget-title {
  position: relative;
  display: inline-block;
  color: var(--white-color);
  margin-bottom: 30px;
  padding-bottom: 15px;
}
@media (max-width: 991px) {
  .footer .footer-bottom .footer-widget-wrap .footer-widget-title {
    margin-bottom: 20px;
    padding-bottom: 10px;
  }
}
.footer .footer-bottom .footer-widget-wrap .footer-widget-title::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background-color: var(--white-color);
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.footer .footer-bottom .footer-widget-wrap .widget-link .link li {
  margin-bottom: 10px;
}
.footer .footer-bottom .footer-widget-wrap .widget-link .link li:nth-last-child(1) {
  margin-bottom: 0;
}
.footer .footer-bottom .footer-widget-wrap .widget-link .link li a {
  position: relative;
  color: var(--white-color);
  margin-left: -16px;
  -webkit-transition: var(--transition);
  -moz-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}
.footer .footer-bottom .footer-widget-wrap .widget-link .link li a i {
  font-size: 12px;
  margin-right: 5px;
  opacity: 0;
  transition-duration: 0.8s;
  color: var(--white-color);
}
.footer .footer-bottom .footer-widget-wrap .widget-link .link li a:hover {
  margin-left: 0;
}
.footer .footer-bottom .footer-widget-wrap .widget-link .link li a:hover i {
  margin-left: 0;
  opacity: 1;
}
.footer .footer-bottom .footer-widget-wrap .contact-info li p {
  color: var(--white-color);
  padding-left: 40px;
}
.footer .footer-bottom .footer-widget-wrap .contact-info li p i {
  position: absolute;
  left: 0;
  color: var(--white-color);
  height: 24px;
  width: 24px;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.footer .footer-bottom .footer-widget-wrap .footer-widget-about p {
  color: var(--white-color);
  margin-bottom: 30px;
}
.footer .footer-bottom .footer-widget-wrap .footer-widget-opening-hours .widget-opening-hours .opening-list li {
  position: relative;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  margin-bottom: 14px;
}
.footer .footer-bottom .footer-widget-wrap .footer-widget-opening-hours .widget-opening-hours .opening-list li:nth-last-child(1) {
  margin-bottom: 0;
}
.footer .footer-bottom .footer-widget-wrap .footer-widget-opening-hours .widget-opening-hours .opening-list li p {
  margin-bottom: 0;
  color: var(--white-color);
}
.footer .footer-bottom .footer-widget-wrap .footer-widget-opening-hours .widget-opening-hours .opening-list li p .time {
  font-weight: 600;
}
.footer .footer-copyright .footer-copyright-wrap {
  padding-top: 15px;
  padding-bottom: 30px;
  border-radius: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}
@media (max-width: 1199px) {
  .footer .footer-copyright .footer-copyright-wrap {
    padding-bottom: 25px;
  }
}
.footer .footer-copyright .footer-copyright-wrap .copyright-text {
  margin-top: 10px;
}
.footer .footer-copyright .footer-copyright-wrap .copyright-text p {
  color: var(--white-color);
}
.footer .footer-copyright .footer-copyright-wrap .footer-payment {
  text-align: right;
  margin-top: 15px;
  color: var(--white-color);
}
@media (max-width: 991px) {
  .footer .footer-copyright .footer-copyright-wrap .footer-payment {
    text-align: start;
  }
}
.footer .footer-copyright .footer-copyright-wrap .footer-payment span {
  margin-right: 10px;
}
.footer .footer-copyright .footer-copyright-wrap .footer-bottom-nav {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-top: 15px;
}
.footer .footer-copyright .footer-copyright-wrap .footer-bottom-nav li {
  display: inline-block;
  position: relative;
  margin-left: 20px;
  padding-left: 20px;
}
@media (max-width: 991px) {
  .footer .footer-copyright .footer-copyright-wrap .footer-bottom-nav li {
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .footer .footer-copyright .footer-copyright-wrap .footer-bottom-nav li {
    margin-left: 8px;
    padding-left: 8px;
  }
}
.footer .footer-copyright .footer-copyright-wrap .footer-bottom-nav li:first-child {
  margin-left: 0;
  padding-left: 0;
}
.footer .footer-copyright .footer-copyright-wrap .footer-bottom-nav li:not(:first-child)::before {
  content: "";
  display: block;
  width: 1px;
  height: 15px;
  background: var(--white-color);
  position: absolute;
  top: 5px;
  left: 0;
}
.footer .footer-copyright .footer-copyright-wrap .footer-bottom-nav li a {
  color: var(--white-color);
  -webkit-transition: var(--transition);
  -moz-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}
.footer .footer-copyright .footer-copyright-wrap .footer-bottom-nav li a:hover {
  color: #d00506;
}
.footer .widget-footer-gallery .photo-gallery-wapper {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
}
.footer .widget-footer-gallery .photo-gallery-wapper .photo-gallery {
  margin-bottom: 0;
  max-width: 100px;
  width: calc(33.33% - 10px);
}
.footer .widget-footer-gallery .photo-gallery-wapper .photo-gallery::before {
  border-radius: 10px;
}
.footer .widget-footer-gallery .photo-gallery-wapper .photo-gallery .photo-gallery-image figure {
  display: block;
  border-radius: 10px;
  overflow: hidden;
}
.footer .widget-footer-gallery .photo-gallery-wapper .photo-gallery .photo-gallery-icon a {
  font-size: 14px;
}
.footer .widget-footer-gallery .photo-gallery-wapper .photo-gallery .photo-gallery-icon a i {
  height: 24px;
  width: 24px;
}
.footer .footer-contact-wrap {
  padding: 30px;
  border-radius: var(--border-radius-three);
}
@media (max-width: 1199px) {
  .footer .footer-contact-wrap {
    border-radius: 20px;
  }
}
.footer .footer-contact-wrap {
  background-color: rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
}
@media (max-width: 1199px) {
  .footer .footer-contact-wrap {
    padding: 20px;
  }
}
.footer-1 {
  position: relative;
  background: var(--gradient-one);
  z-index: 1;
  border-radius: 0;
}
@media (max-width: 1199px) {
  .footer-1 {
    border-radius: 0;
  }
}
.footer-1 .footer-top {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (max-width: 991px) {
  .footer-1 .footer-top {
    padding-bottom: 30px;
  }
}
.footer-1 .footer-bottom .footer-widget-wrap {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding-top: 40px;
}
.footer-1 .footer-bottom .footer-widget-wrap .footer-widget {
  margin-bottom: 60px;
}
@media (max-width: 991px) {
  .footer-1 .footer-bottom .footer-widget-wrap .footer-widget {
    margin-bottom: 40px;
  }
}
@media (max-width: 576px) {
  .footer-1 .footer-bottom .footer-widget-wrap .footer-widget {
    margin-bottom: 30px;
  }
}
@media (max-width: 1199px) {
  .footer-1 .footer-bottom .footer-widget-wrap .footer-widget-subscribe {
    margin-bottom: 30px;
  }
}
.footer-1 .footer-bottom .footer-widget-wrap .footer-widget-quick-links {
  /*margin-left: 60px;*/
}
@media (max-width: 1199px) {
  .footer-1 .footer-bottom .footer-widget-wrap .footer-widget-quick-links {
    margin-left: 0;
  }
}
.footer-2 {
  position: relative;
  z-index: 1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 70px 70px 0 0;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .footer-2 {
    border-radius: 24px 24px 0 0;
  }
}
.footer-2::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: var(--black-color);
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0.75;
}
.footer-2 .footer-top {
  padding-top: 80px;
  padding-bottom: 40px;
}
@media (max-width: 991px) {
  .footer-2 .footer-top .footer-subscribe-text {
    text-align: center;
  }
}
.footer-2 .footer-top .footer-subscribe-text p {
  font-family: var(--title-fonts);
  color: var(--white-color);
  font-size: 42px;
  font-weight: 600;
  line-height: 1.2em;
  text-transform: capitalize;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .footer-2 .footer-top .footer-subscribe-text p {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .footer-2 .footer-top .footer-subscribe-text p {
    font-size: 32px;
  }
}
.footer-2 .footer-top .footer-widget-subscribe {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  justify-content: flex-end;
  gap: 25px;
}
@media (max-width: 991px) {
  .footer-2 .footer-top .footer-widget-subscribe {
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .footer-2 .footer-top .footer-widget-subscribe {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    flex-direction: column;
  }
}
.footer-2 .footer-top .footer-widget-subscribe .footer-widget-title {
  margin-bottom: 0;
  padding-bottom: 0;
}
.footer-2 .footer-top .footer-widget-subscribe .footer-widget-title::after {
  display: none;
}
.footer-2 .footer-top .footer-widget-subscribe .subscribe-form {
  position: relative;
  flex: 1 1 0%;
  width: 100%;
  max-width: 420px;
}
.footer-2 .footer-top .footer-widget-subscribe .subscribe-form .input-group input {
  border-radius: var(--border-radius-four);
}
.footer-2 .footer-top .footer-widget-subscribe .subscribe-form .submit-btn {
  position: absolute;
  right: 5px;
  height: 45px;
  width: 45px;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #d00506;
  color: var(--white-color);
  border-radius: 100px;
}
.footer-2 .footer-top .footer-widget-subscribe .subscribe-form .submit-btn:hover {
  background-color: var(--secondary-color);
  color: var(--white-color);
}
.footer-2 .footer-bottom .footer-widget-wrap {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding-top: 50px;
}
.footer-2 .footer-bottom .footer-widget-wrap .footer-widget {
  margin-bottom: 60px;
}
@media (max-width: 991px) {
  .footer-2 .footer-bottom .footer-widget-wrap .footer-widget {
    margin-bottom: 50px;
  }
}
@media (max-width: 576px) {
  .footer-2 .footer-bottom .footer-widget-wrap .footer-widget {
    margin-bottom: 30px;
  }
}
.footer-2 .footer-bottom .footer-widget-wrap .footer-widget-about {
  margin-right: 70px;
}
@media (max-width: 991px) {
  .footer-2 .footer-bottom .footer-widget-wrap .footer-widget-about {
    margin-right: 0;
  }
}
.footer-2 .footer-bottom .footer-widget-wrap .footer-widget-about .footer-social-icon .social-icon a {
  height: 42px;
  width: 42px;
  line-height: 42px;
  color: var(--black-color);
}
.footer-2 .footer-bottom .footer-widget-wrap .footer-widget-about .footer-social-icon .social-icon a::before {
  background: #d00506;
}
.footer-2 .footer-bottom .footer-widget-wrap .footer-widget-about .footer-social-icon .social-icon a:hover {
  color: var(--white-color);
}

@media (max-width: 1400px) {
  .header .container {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 1199px) {
  .header .header-lower {
    padding: 15px 0;
  }
}
.header .header-lower .header-content .header-navigation nav.main-menu {
  position: relative;
}
@media (max-width: 1199px) {
  .header .header-lower .header-content .header-navigation nav.main-menu {
    display: none;
  }
}
.header .header-lower .header-content .header-navigation nav.main-menu .navbar-collapse {
  padding: 0;
  float: left;
  display: block !important;
}
.header .header-lower .header-content .header-navigation nav.main-menu .navbar-collapse .navigation {
  margin: 0;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  gap: 42px;
}
@media (max-width: 1400px) {
  .header .header-lower .header-content .header-navigation nav.main-menu .navbar-collapse .navigation {
    gap: 32px;
  }
}
@media (max-width: 1299px) {
  .header .header-lower .header-content .header-navigation nav.main-menu .navbar-collapse .navigation {
    gap: 20px;
  }
}
.header .header-lower .header-content .header-navigation nav.main-menu .navbar-collapse .navigation > li > a {
  position: relative;
  display: block;
  padding: 25px 0;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.2px;
  color: var(--black-color);
}
.header .header-lower .header-content .header-navigation nav.main-menu .navbar-collapse .navigation > li > .submenu {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  width: 15rem;
  background-color: var(--white-color);
  z-index: 3;
  border-radius: 15px;
  -webkit-transform-origin: top;
  -moz-transform-origin: top;
  -ms-transform-origin: top;
  -o-transform-origin: top;
  transform-origin: top;
  -webkit-transform: perspective(300px) scaleY(0) translateZ(30px);
  -moz-transform: perspective(300px) scaleY(0) translateZ(30px);
  -ms-transform: perspective(300px) scaleY(0) translateZ(30px);
  -o-transform: perspective(300px) scaleY(0) translateZ(30px);
  transform: perspective(300px) scaleY(0) translateZ(30px);
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.header .header-lower .header-content .header-navigation nav.main-menu .navbar-collapse .navigation > li > .submenu li {
  border-bottom: 1px dashed var(--border-color-one);
}
.header .header-lower .header-content .header-navigation nav.main-menu .navbar-collapse .navigation > li > .submenu li:nth-last-child(1) {
  border-bottom: none;
}
.header .header-lower .header-content .header-navigation nav.main-menu .navbar-collapse .navigation > li > .submenu li a {
  position: relative;
  display: block;
  padding: 10px 12px;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0.2px;
  color: var(--black-color);
  -webkit-transition: var(--transition);
  -moz-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}
.header .header-lower .header-content .header-navigation nav.main-menu .navbar-collapse .navigation > li > .submenu li a::before {
  content: "";
  background-color: #d00506;
  position: absolute;
  top: 50%;
  left: 20px;
  height: 2px;
  width: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: var(--transition);
  -moz-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}
.header .header-lower .header-content .header-navigation nav.main-menu .navbar-collapse .navigation > li > .submenu li a:hover {
  color: #d00506;
  padding: 10px 12px 10px 50px;
}
.header .header-lower .header-content .header-navigation nav.main-menu .navbar-collapse .navigation > li > .submenu li a:hover::before {
  width: 20px;
}
.header .header-lower .header-content .header-navigation nav.main-menu .navbar-collapse .navigation > li > .submenu li a i {
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
  bottom: 0;
}
.header .header-lower .header-content .header-navigation nav.main-menu .navbar-collapse .navigation > li > .submenu li.dropdown .submenu {
  position: absolute;
  left: 100%;
  top: 0;
  width: 15rem;
  opacity: 0;
  visibility: hidden;
  background-color: var(--white-color);
  border-radius: 15px;
  -webkit-transform-origin: top;
  -moz-transform-origin: top;
  -ms-transform-origin: top;
  -o-transform-origin: top;
  transform-origin: top;
  -webkit-transform: scaleY(0);
  -moz-transform: scaleY(0);
  -ms-transform: scaleY(0);
  -o-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.header .header-lower .header-content .header-navigation nav.main-menu .navbar-collapse .navigation > li > .submenu li:hover.dropdown .submenu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(1);
  -moz-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -o-transform: scaleY(1);
  transform: scaleY(1);
}
.header .header-lower .header-content .header-navigation nav.main-menu .navbar-collapse .navigation > li .dropdown-btn {
  display: none;
}
.header .header-lower .header-content .header-navigation nav.main-menu .navbar-collapse .navigation > li:hover > a {
  color: #d00506;
}
.header .header-lower .header-content .header-navigation nav.main-menu .navbar-collapse .navigation > li:hover > .submenu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: perspective(300px) scaleY(1) translateZ(0);
  -moz-transform: perspective(300px) scaleY(1) translateZ(0);
  -ms-transform: perspective(300px) scaleY(1) translateZ(0);
  -o-transform: perspective(300px) scaleY(1) translateZ(0);
  transform: perspective(300px) scaleY(1) translateZ(0);
}
@media (max-width: 767px) {
  .header .header-lower .header-content .header-right .header-button {
    display: none;
  }
}
@media (max-width: 1199px) {
  .header .header-lower .header-content .header-right .header-cart {
    display: none;
  }
}
@media (max-width: 1199px) {
  .header .header-lower .header-content .header-right .header-call {
    display: none;
  }
}
.header .header-lower.sticky {
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  position: fixed;
  background-color: var(--white-color);
  border-bottom: none;
  -webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  -moz-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  -ms-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  -o-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  -moz-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  -o-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}
.header .header-sidebar .sidebar-toggler {
  position: relative;
  height: 52px;
  width: 52px;
  display: none!important;
  background-color: var(--extra-color);
  border-radius: var(--border-radius-four);
  border: 1px solid var(--border-color-one);
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  flex-direction: column;
}
.header .header-sidebar .sidebar-toggler::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  content: "";
  position: absolute;
  background: #d00506;
  border-radius: inherit;
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 1;
}
.header .header-sidebar .sidebar-toggler span {
  display: block;
  position: relative;
  z-index: 1;
  height: 2px;
  border-radius: 1px;
  opacity: 1;
  background-color: var(--black-color);
  margin: 3px 0;
  -webkit-transition: var(--transition);
  -moz-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}
.header .header-sidebar .sidebar-toggler span:nth-child(1) {
  width: 16px;
  margin-left: 5px;
}
.header .header-sidebar .sidebar-toggler span:nth-child(2) {
  width: 16px;
  margin-right: 5px;
}
.header .header-sidebar .sidebar-toggler span:nth-child(3) {
  width: 16px;
  margin-left: 5px;
}
.header .header-sidebar .sidebar-toggler:hover::before {
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.header .header-sidebar .sidebar-toggler:hover span {
  background-color: var(--white-color);
}
.header .header-sidebar .sidebar-toggler:hover span:nth-child(1) {
  margin-left: 0;
  margin-right: 5px;
}
.header .header-sidebar .sidebar-toggler:hover span:nth-child(2) {
  margin-right: 0;
}
.header .header-sidebar .sidebar-toggler:hover span:nth-child(3) {
  margin-left: 0;
  margin-right: 5px;
}
.header .header-login a {
  color: var(--black-color);
}
.header .header-login a:hover {
  color: #d00506;
}
.header .logo-box .logo {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.header .logo-box .logo a figure img {
  /*width: 140px;*/
}
.header .header-search a {
  position: relative;
  height: 52px;
  width: 52px;
  background-color: var(--extra-color);
  color: var(--secondary-color);
  border: 1px solid var(--border-color-one);
  border-radius: var(--border-radius-four);
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  flex-direction: column;
}
.header .header-search a::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  content: "";
  position: absolute;
  background: #d00506;
  border-radius: inherit;
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 1;
}
.header .header-search a i {
  position: relative;
  z-index: 2;
}
.header .header-search a:hover::before {
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.header .header-search a:hover i {
  color: var(--white-color);
}
.header #search-box {
  position: fixed;
  top: 0;
  padding: 15px;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 999;
  display: none;
}
.header #search-box .close {
  position: absolute;
  right: 20px;
  top: 20px;
  background-color: var(--body-color);
  color: var(--black-color);
  width: 52px;
  height: 52px;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  border-radius: 100%;
  cursor: pointer;
}
.header #search-box .close::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  content: "";
  position: absolute;
  background: #d00506;
  border-radius: inherit;
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 1;
}
.header #search-box .close:hover {
  color: var(--white-color);
}
.header #search-box .close:hover::before {
  opacity: 1;
  -webkit-transform: scale(1.02);
  -moz-transform: scale(1.02);
  -ms-transform: scale(1.02);
  -o-transform: scale(1.02);
  transform: scale(1.02);
}
.header #search-box .close i {
  position: relative;
  z-index: 2;
}
.header #search-box .search-wapper {
  position: relative;
  height: 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.header #search-box .search-wapper .search-form {
  position: relative;
  max-width: 767px;
  width: 100%;
}
.header #search-box .search-wapper .search-form .input-group input {
  height: 72px;
  font-size: 24px;
  border-radius: 100px;
}
.header #search-box .search-wapper .search-form .search-submit-btn {
  position: absolute;
  right: 15px;
  height: 45px;
  width: 45px;
  top: 0;
  bottom: 0;
  margin: auto;
  background: transparent;
  color: var(--white-color);
  border-radius: var(--border-radius-one);
}
.header #search-box.active {
  display: block;
}
.header-1 {
    position: relative;
    top: 0;
    z-index: 8;
    width: 100%;
}
.header-1 .header-lower {
    position: relative;
    z-index: 9;
    background-color: var(--white-color);
    width: calc(100% - 100px);
    margin-left: 50px;
    margin-top: 15px;
    border-radius: 30px 30px 0 0px;
    /* padding-right: 30px; */
    /* padding-left: 10px;*/
}
@media (max-width: 1299px) {
  .header-1 .header-lower {
    width: 100%;
    margin-left: 0;
    padding-right: 10px;
    border-radius: 0;
  }
}
@media (max-width: 1199px) {
  .header-1 .header-lower {
    padding: 10px 0;
  }
}
.header-1 .header-lower.sticky {
  width: 100%;
  margin-left: 0;
  border-radius: 0;
  margin-top: 0;
}
.header-2 {
  position: absolute;
  top: 15px;
  width: 100%;
}
.header-2 .header-lower {
  position: relative;
  z-index: 9;
  margin-left: 50px;
  margin-right: 50px;
}
@media (max-width: 1600px) {
  .header-2 .header-lower {
    margin-left: 20px;
    margin-right: 20px;
  }
}
@media (max-width: 1300px) {
  .header-2 .header-lower {
    padding: 0;
    margin-left: 0;
    margin-right: 0;
  }
}
.header-2 .header-lower .header-content:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 232px;
  top: 0;
  left: -62px;
  z-index: -1;
  background: var(--white-color);
  border-radius: 0 100px 100px 0;
}
.header-2 .header-lower .header-content .header-navigation {
  position: relative;
  z-index: 9;
  padding: 0 25px;
  background: var(--white-color);
  border-radius: var(--border-radius-four);
}
.header-2 .header-lower .header-content .header-navigation .main-menu ul li.menu-thumb .has-homemenu {
  left: 0;
}
.header-2 .header-lower .header-content .header-navigation .main-menu > nav > ul > li > a {
  padding: 20px 0;
}
.header-2 .header-lower.sticky {
  width: 100%;
  margin-left: 0;
  border-radius: 0;
  padding-left: 10px;
  padding-right: 10px;
  top: 0;
}
@media (max-width: 1199px) {
  .header-2 .header-lower.sticky {
    padding: 10px 0;
  }
}
.header-2 .header-lower.sticky .header-content .logo-box {
  display: block;
}

.main-menu ul {
  margin-bottom: 0;
}
.main-menu ul li {
  position: relative;
  list-style: none;
  display: inline-block;
  margin-inline-end: 23px;
}
@media (max-width: 1600px) {
  .main-menu ul li {
    margin-inline-end: 23px;
  }
}
@media (max-width: 1399px) {
  .main-menu ul li {
    margin-inline-end: 20px;
  }
}
.main-menu ul li:last-child {
  margin-inline-end: 0;
}
.main-menu ul li a {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: var(--black-color);
  padding: 28px 0;
  text-align: left;
  position: relative;
  text-transform: capitalize;
  -webkit-transition: var(--transition);
  -moz-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}
.main-menu ul li a i {
	margin-left: 1px;
    font-size: 15px;
}
.main-menu ul li a:hover {
  color: #d00506 !important;
}
.main-menu ul li .submenu {
  position: absolute;
  top: 100%;
  inset-inline-start: 0;
  min-width: 250px;
  background: var(--white-color);
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  color: #d00506;
  -webkit-box-shadow: 0 0 40px 0 rgba(11, 13, 17, 0.08);
  -moz-box-shadow: 0 0 40px 0 rgba(11, 13, 17, 0.08);
  -ms-box-shadow: 0 0 40px 0 rgba(11, 13, 17, 0.08);
  -o-box-shadow: 0 0 40px 0 rgba(11, 13, 17, 0.08);
  box-shadow: 0 0 40px 0 rgba(11, 13, 17, 0.08);
  -webkit-transform-origin: top center;
  -moz-transform-origin: top center;
  -ms-transform-origin: top center;
  -o-transform-origin: top center;
  transform-origin: top center;
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -ms-transform: translateY(10px);
  -o-transform: translateY(10px);
  transform: translateY(10px);
  -webkit-transition: var(--transition);
  -moz-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
  padding: 20px 20px;
}
.main-menu ul li .submenu li {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}
.main-menu ul li .submenu li:not(:last-child) {
  padding-bottom: 15px;
}
.main-menu ul li .submenu li a {
  position: relative;
  z-index: 11;
  font-size: 16px;
  font-weight: 500;
  color: var(--black-color);
  padding: 0 0;
  text-transform: capitalize;
  width: 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
}
.main-menu ul li .submenu li a::before {
  content: "";
  position: absolute;
  left: 0;
  right: auto;
  top: 50%;
  bottom: auto;
  width: 0;
  height: 1px;
  background-color: #d00506;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: var(--transition);
  -moz-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}
.main-menu ul li .submenu li a:hover {
  color: #d00506 !important;
  padding-left: 20px;
}
.main-menu ul li .submenu li a:hover::before {
  width: 10px;
}
.main-menu ul li .submenu li:last-child a {
  border: none;
}
.main-menu ul li .submenu li .submenu {
  inset-inline-start: 113%;
  top: 0;
  visibility: hidden;
  opacity: 0;
}
.main-menu ul li .submenu li:hover > a {
  color: #d00506 !important;
}
.main-menu ul li .submenu li:hover > a::after {
  color: #d00506;
}
.main-menu ul li .submenu li:hover > .submenu {
  -webkit-transform: translateY(1px);
  -moz-transform: translateY(1px);
  -ms-transform: translateY(1px);
  -o-transform: translateY(1px);
  transform: translateY(1px);
  visibility: visible;
  opacity: 1;
}
.main-menu ul li .has-homemenu {
  width: 1000px;
  opacity: 0;
  left: -150px;
  visibility: hidden;
  padding: 30px;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  position: absolute;
  top: 100%;
  background: var(--white-color);
  z-index: 99999;
  opacity: 0;
  color: #d00506;
  -webkit-box-shadow: 0 0 40px 0 rgba(11, 13, 17, 0.08);
  -moz-box-shadow: 0 0 40px 0 rgba(11, 13, 17, 0.08);
  -ms-box-shadow: 0 0 40px 0 rgba(11, 13, 17, 0.08);
  -o-box-shadow: 0 0 40px 0 rgba(11, 13, 17, 0.08);
  box-shadow: 0 0 40px 0 rgba(11, 13, 17, 0.08);
  -webkit-transform-origin: top center;
  -moz-transform-origin: top center;
  -ms-transform-origin: top center;
  -o-transform-origin: top center;
  transform-origin: top center;
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -ms-transform: translateY(10px);
  -o-transform: translateY(10px);
  transform: translateY(10px);
  -webkit-transition: var(--transition);
  -moz-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}
.main-menu ul li .has-homemenu li {
  width: 33.33%;
}
.main-menu ul li .has-homemenu li a {
  padding: 0;
  text-align: center;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  flex-direction: column;
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -ms-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  transition: all 0.15s linear;
}
.main-menu ul li .has-homemenu li a:hover img {
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -o-transform: translateY(-5px);
  transform: translateY(-5px);
}
.main-menu ul li .has-homemenu li a img {
  margin-bottom: 15px;
  border: 1px solid var(--border-color-one);
  border-radius: 8px;
  overflow: hidden;
  -webkit-transition: all 0.25s;
  -moz-transition: all 0.25s;
  -ms-transition: all 0.25s;
  -o-transition: all 0.25s;
  transition: all 0.25s;
}
.main-menu ul li:hover > a {
  color: #d00506;
}
.main-menu ul li:hover > a::after {
  color: #d00506;
}
.main-menu ul li:hover > .submenu {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
.main-menu ul li:hover .has-homemenu {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
}

.offcanvas .menu-outer {
  display: none;
  margin-bottom: 50px;
}
@media (max-width: 1199px) {
  .offcanvas .menu-outer {
    display: block;
  }
}
@media (max-width: 1199px) {
  .offcanvas .menu-outer .navbar-collapse {
    display: block;
  }
}
.offcanvas .menu-outer .navbar-collapse ul.navigation > li {
  display: block;
  border-bottom: 1px solid rgba(0, 0, 0, 0.09);
}
.offcanvas .menu-outer .navbar-collapse ul.navigation > li > a {
  padding: 15px 0;
  width: 100%;
  position: relative;
  display: block;
  font-size: 16px;
  color: var(--black-color);
}
.offcanvas .menu-outer .navbar-collapse ul.navigation > li > a i {
  display: none;
}
.offcanvas .menu-outer .navbar-collapse ul.navigation > li ul.submenu {
  display: none;
}
.offcanvas .menu-outer .navbar-collapse ul.navigation > li ul.submenu li {
  border-top: 1px solid rgba(0, 0, 0, 0.09);
}
.offcanvas .menu-outer .navbar-collapse ul.navigation > li ul.submenu li > a {
  padding: 15px 0 15px 20px;
  display: block;
  color: var(--black-color);
  font-size: 16px;
}
.offcanvas .menu-outer .navbar-collapse ul.navigation > li ul.submenu li > a i {
  display: none;
}
.offcanvas .menu-outer .navbar-collapse ul.navigation > li ul.submenu li ul.submenu {
  display: none;
}
.offcanvas .menu-outer .navbar-collapse ul.navigation > li ul.submenu li ul.submenu li {
  border-top: 1px solid rgba(0, 0, 0, 0.09);
}
.offcanvas .menu-outer .navbar-collapse ul.navigation > li ul.submenu li ul.submenu li a {
  padding: 15px 0 15px 35px;
}
.offcanvas .menu-outer .navbar-collapse ul.navigation > li ul.submenu li ul.submenu li a i {
  display: none;
}
.offcanvas .menu-outer .navbar-collapse ul.navigation > li .dropdown-btn {
  position: absolute;
  text-align: center;
  margin: auto;
  right: 0;
  top: 5px;
  width: 45px;
  height: 45px;
  line-height: 45px;
  font-size: 14px;
  background-color: var(--extra-color);
  color: var(--black-color);
  border-radius: 10px;
  z-index: 5;
  cursor: pointer;
}
.offcanvas .menu-outer .navbar-collapse ul.navigation > li .dropdown-btn.open {
  background-color: #d00506;
  color: var(--white-color);
}
.offcanvas .menu-outer .navbar-collapse ul.navigation > li .dropdown-btn.open i {
  -webkit-transform: rotateZ(180deg);
  -moz-transform: rotateZ(180deg);
  -ms-transform: rotateZ(180deg);
  -o-transform: rotateZ(180deg);
  transform: rotateZ(180deg);
}
.offcanvas .menu-outer .navbar-collapse ul.navigation > li .dropdown-btn i {
  -webkit-transform: rotateZ(0);
  -moz-transform: rotateZ(0);
  -ms-transform: rotateZ(0);
  -o-transform: rotateZ(0);
  transform: rotateZ(0);
  -webkit-transition: var(--transition);
  -moz-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}

.mean-container .meanmenu-reveal {
  display: none !important;
}
.mean-container .mean-nav {
  background: none;
  margin-top: 0;
  margin-bottom: 50px;
  float: left;
  width: 100%;
}
.mean-container .mean-nav > ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
  display: block !important;
}
.mean-container .mean-nav > ul li {
  position: relative;
}
.mean-container .mean-nav > ul li a {
  display: block;
  padding: 15px 0;
  color: var(--black-color);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  text-transform: capitalize;
  border-top: 1px solid var(--border-color-one);
}
.mean-container .mean-nav > ul li a:hover {
  color: #d00506;
}
.mean-container .mean-nav > ul li a.mean-expand {
  width: 42px;
  height: 42px;
  text-align: center;
  position: absolute;
  right: 0;
  top: 6px;
  z-index: 2;
  font-weight: 700;
  border: none;
  background-color: var(--extra-color);
  color: var(--black-color);
  border-radius: 10px;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  padding: 0 !important;
  margin: 0;
}
.mean-container .mean-nav > ul li a.mean-expand i {
  display: inline-block;
}
.mean-container .mean-nav > ul li a.mean-expand.mean-clicked i {
  -webkit-transition: var(--transition);
  -moz-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.mean-container .mean-nav > ul li a:last-child {
  border-bottom: 0;
}
.mean-container .mean-nav > ul li .submenu li a {
  padding: 15px 0 15px 25px;
}
.mean-container .mean-nav > ul li .submenu li .submenu li a {
  padding: 15px 0 15px 50px;
}
.mean-container .mean-nav > ul li > a > i {
  display: none;
}
.mean-container .mean-nav > ul li.menu-thumb .has-homemenu li a {
  padding-left: 20px;
}
.mean-container .mean-nav > ul li.menu-thumb .has-homemenu li a img {
  display: none;
}
.mean-container .mean-nav > ul > li:first-child > a {
  border-top: 0;
}

.about-section {
  overflow: hidden;
}
.about-section .about-right .about-content {
  
}
.about-section .about-left {
  height: 100%;
}
@media (max-width: 991px) {
  .about-section .about-left {
    height: auto;
    margin-bottom: 18px;
  }
}
.about-section .about-left .about-image {
  position: relative;
  margin-right: 50px;
  height: 100%;
}
@media (max-width: 991px) {
  .about-section .about-left .about-image {
    margin-right: 0;
  }
}
.about-section .about-left .about-image .circle-box {
  width: 300px;
  position: absolute;
  left: -140px;
  top: -60px;
  z-index: -1;
}
.about-section .about-left .about-image .about-product {
  height: 100%;
}
.about-section .about-left .about-image .about-product figure {
  height: 100%;
}
.about-section .about-left .about-image .about-product figure img {
  border-radius: var(--border-radius-three);
}
@media (max-width: 1199px) {
  .about-section .about-left .about-image .about-product figure img {
    border-radius: 20px;
  }
}
.about-section .about-left .about-image .about-product figure img {
  /*height: 100%;*/
  width: 100%;
  object-fit: cover;
}
.about-section .about-right .about-content h4{
	font-size: 25px;
    margin-bottom: 5px;
    line-height: 1.4;
}
.about-section .about-right .about-content h3{
	font-size: 31px;
    margin-bottom: 5px;
}
.about-section .about-right .about-content {
  vertical-align: middle;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  justify-content: flex-end;
}
.about-section .about-right .about-content p{
    font-size: 16px;
    margin-bottom: 11px;
    line-height: 1.7;
}
.about-section .about-right .about-content ul li{
    font-size: 16px;
    margin-bottom: 9px;
    line-height: 1.4;
}
.about-section .about-right .about-content .about-heading {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  gap: 20px;
}
.about-section .about-right .about-content .about-heading .about-vector {
  -webkit-animation: rotate 10s linear infinite;
  -moz-animation: rotate 10s linear infinite;
  -o-animation: rotate 10s linear infinite;
  animation: rotate 10s linear infinite;
}
.about-section .about-right .about-content .about-heading .section-title {
  flex: 1;
}
@media (max-width: 991px) {
  .about-section .about-right .about-content .about-heading .section-title {
    margin-bottom: 0;
  }
}
.about-section .about-right .about-content .about-heading .section-title p {
  font-size: 18px;
  line-height: 1.6;
}
.about-section .about-right .about-content .about-user-details {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  gap: 24px;
}
@media (max-width: 576px) {
  .about-section .about-right .about-content .about-user-details {
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    flex-direction: column;
  }
}
.about-section .about-right .about-content .about-user-details .user-call-box {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  gap: 12px;
  background: var(--gradient-one);
  padding: 25px 24px;
  border-radius: 10px;
  position: relative;
}
.about-section .about-right .about-content .about-user-details .user-call-box::before {
  content: "";
  width: 42px;
  height: 53px;
  background-image: url("data:image/svg+xml,%0A%3Csvg width='42' height='49' viewBox='0 0 42 49' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M42 0H0H2.09786C5.07622 0 7.89957 1.32758 9.79935 3.62136L39.7015 39.7248C41.1871 41.5185 42 43.7744 42 46.1035V49V0Z' fill='%23E6E2DA'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: 0;
}
.about-section .about-right .about-content .about-user-details .user-call-box .user-icon {
  width: 70px;
  height: 70px;
  background-color: var(--white-color);
  padding: 4px;
  border-radius: 50%;
}
.about-section .about-right .about-content .about-user-details .user-call-box .user-icon img {
  border-radius: 50%;
}
.about-section .about-right .about-content .about-user-details .user-call-box .user-details span {
  color: #5AC687;
  display: block;
  font-size: 14px;
  font-weight: 500;
}
.about-section .about-right .about-content .about-user-details .user-call-box .user-details a {
  font-size: 24px;
  font-weight: 600;
  color: var(--white-color);
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.about-section .about-right .about-content .about-user-details .our-about-box {
  max-width: 250px;
  border-radius: 10px;
}
.about-section .about-right .about-content .about-user-details .our-about-box .user-listing p {
  color: var(--text-color);
}

.authentication-section .authentication-title {
  margin-bottom: 40px;
}
.authentication-section .authentication-title h2 {
  margin-bottom: 10px;
}
.authentication-section .default-form {
  padding: 30px;
  border-radius: var(--border-radius-three);
}
@media (max-width: 1199px) {
  .authentication-section .default-form {
    border-radius: 20px;
    padding: 20px;
  }
}
.authentication-section .default-form {
  background-color: var(--white-color);
}
.authentication-section .default-form .section-title .authentication-logo figure img {
  width: 180px;
}
.authentication-section .default-form .section-title h2 {
  font-size: 26px;
}
.authentication-section .default-form form .form-group .eye-icon {
  position: absolute;
  right: 20px;
  top: 45px;
  color: var(--secondary-color);
  z-index: 1;
  cursor: pointer;
}
.authentication-section .default-form form .form-group .eye-icon.show i::before {
  content: "\f06e";
}
.authentication-section .default-form form .forgot-box {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 15px;
}
.authentication-section .default-form form .forgot-box .forgot-pass a {
  color: var(--secondary-color);
}
.authentication-section .default-form form .sign-up-box {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 5px;
}
.authentication-section .default-form form .sign-up-box p {
  margin-bottom: 0;
}
.authentication-section .default-form form .sign-up-box a {
  color: var(--secondary-color);
  font-weight: 600;
}
.authentication-section .default-form form .button-wapper .theme-button {
  width: 100%;
}
.authentication-section .social-login {
  position: relative;
  border-top: 1px solid var(--border-color-two);
  margin-top: 40px;
  padding-top: 40px;
}
.authentication-section .social-login .social-divider {
  position: absolute;
  left: 50%;
  top: -19px;
  padding: 5px;
  background: var(--white-color);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}
.authentication-section .social-login p {
  text-align: center;
}
.authentication-section .social-login .social-login-list {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
}
.authentication-section .social-login .social-login-list a {
  padding: 5px 15px;
  border: 2px solid var(--border-color-one);
  border-radius: 50px;
}
.authentication-section .social-login .social-login-list a.auth-fb {
  border-color: #3B5998;
  color: #3B5998;
}
.authentication-section .social-login .social-login-list a.auth-fb:hover {
  background: #3B5998;
  color: var(--white-color);
}
.authentication-section .social-login .social-login-list a.auth-gl {
  border-color: #DD4B39;
  color: #DD4B39;
}
.authentication-section .social-login .social-login-list a.auth-gl:hover {
  background: #DD4B39;
  color: var(--white-color);
}
.authentication-section .social-login .social-login-list a.auth-tw {
  border-color: #55ACEE;
  color: #55ACEE;
}
.authentication-section .social-login .social-login-list a.auth-tw:hover {
  background: #55ACEE;
  color: var(--white-color);
}

.blog-section .blog-wapper {
  display: grid;
  grid-gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 991px) {
  .blog-section .blog-wapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .blog-section .blog-wapper {
    grid-template-columns: repeat(1, 1fr);
  }
  .rentals-section-1 .rentals-heading .rentals-vector{
	  display: none;
  }
	.header .header-sidebar .sidebar-toggler {
	  display: flex!important;
	  
	}
}
.blog-section .blog-grid-item-1 {
  position: relative;
  background-color: var(--background-one);
  overflow: hidden;
  border-radius: var(--border-radius-three);
}
@media (max-width: 1199px) {
  .blog-section .blog-grid-item-1 {
    border-radius: 20px;
  }
}
.blog-section .blog-grid-item-1 {
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  height: 100%;
}
.blog-section .blog-grid-item-1 .blog-grid-image {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  height: 100%;
  z-index: 1;
}
@media (max-width: 991px) {
  .blog-section .blog-grid-item-1 .blog-grid-image {
    min-height: 420px;
  }
}
.blog-section .blog-grid-item-1 .blog-grid-image::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(71, 56, 18, 0.1098039216) 0%, #000 100%);
  border-radius: var(--border-radius-three);
}
@media (max-width: 1199px) {
  .blog-section .blog-grid-item-1 .blog-grid-image::before {
    border-radius: 20px;
  }
}
.blog-section .blog-grid-item-1 .blog-grid-image::before {
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  z-index: 2;
  opacity: 0.7;
}
.blog-section .blog-grid-item-1 .blog-grid-image figure {
  width: 100%;
  height: 100%;
  border-radius: var(--border-radius-three);
}
@media (max-width: 1199px) {
  .blog-section .blog-grid-item-1 .blog-grid-image figure {
    border-radius: 20px;
  }
}
.blog-section .blog-grid-item-1 .blog-grid-image figure {
  overflow: hidden;
  position: absolute;
}
@media (max-width: 767px) {
  .blog-section .blog-grid-item-1 .blog-grid-image figure {
    border-radius: var(--border-radius-three);
  }
}
@media (max-width: 767px) and (max-width: 1199px) {
  .blog-section .blog-grid-item-1 .blog-grid-image figure {
    border-radius: 20px;
  }
}
.blog-section .blog-grid-item-1 .blog-grid-image figure img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: var(--transition);
  -moz-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}
.blog-section .blog-grid-item-1 .blog-grid-content {
  position: absolute;
  left: 40px;
  bottom: 40px;
  right: 40px;
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}
@media (max-width: 767px) {
  .blog-section .blog-grid-item-1 .blog-grid-content {
    right: 20px;
    left: 20px;
  }
}
.blog-section .blog-grid-item-1 .blog-grid-content .blog-meta {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}
.blog-section .blog-grid-item-1 .blog-grid-content .blog-meta li {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  gap: 5px;
  color: var(--white-color);
}
.blog-section .blog-grid-item-1 .blog-grid-content .blog-meta li a {
  color: var(--white-color);
}
.blog-section .blog-grid-item-1 .blog-grid-content .blog-meta li svg,
.blog-section .blog-grid-item-1 .blog-grid-content .blog-meta li i {
  width: 20px;
  height: 20px;
}
.blog-section .blog-grid-item-1 .blog-grid-content .blog-title h2 {
  margin-bottom: 24px;
  font-size: 24px;
  color: var(--white-color);
}
.blog-section .blog-grid-item-1 .blog-grid-content .blog-grid-button {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.blog-section .blog-grid-item-1 .blog-grid-content .blog-grid-button a {
  color: var(--white-color);
}
.blog-section .blog-grid-item-1 .blog-grid-content .blog-grid-button a::before {
  background-color: var(--white-color);
  color: var(--text-color);
}
.blog-section .blog-grid-item-1:hover {
  transform: translateY(-5px);
}
.blog-section .blog-grid-item-1:hover .blog-grid-image img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.blog-section .blog-grid-item-1:hover .blog-grid-content {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
.blog-section .blog-grid-item-1:hover .blog-grid-content .blog-grid-button {
  margin-top: 20px;
  opacity: 1;
  visibility: visible;
}
.blog-section .blog-grid-item-2 {
  position: relative;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  flex-direction: column;
  border-radius: var(--border-radius-three);
}
@media (max-width: 1199px) {
  .blog-section .blog-grid-item-2 {
    border-radius: 20px;
  }
}
.blog-section .blog-grid-item-2 {
  background: var(--background-one);
  border: 1px solid var(--border-color-one);
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  overflow: hidden;
  z-index: 1;
}
.blog-section .blog-grid-item-2 .blog-grid-image a {
  position: relative;
  height: 100%;
  width: 100%;
}
.blog-section .blog-grid-item-2 .blog-grid-image a figure {
  height: 100%;
  width: 100%;
}
.blog-section .blog-grid-item-2 .blog-grid-image a figure img {
  border-radius: var(--border-radius-three);
}
@media (max-width: 1199px) {
  .blog-section .blog-grid-item-2 .blog-grid-image a figure img {
    border-radius: 20px;
  }
}
.blog-section .blog-grid-item-2 .blog-grid-image a figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-section .blog-grid-item-2 .blog-grid-content {
  padding: 20px;
}
.blog-section .blog-grid-item-2 .blog-grid-content .blog-meta {
  position: relative;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}
.blog-section .blog-grid-item-2 .blog-grid-content .blog-meta li {
  position: relative;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  gap: 8px;
}
.blog-section .blog-grid-item-2 .blog-grid-content .blog-meta li i {
  color: #d00506;
}
.blog-section .blog-grid-item-2 .blog-grid-content .blog-meta li a {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  gap: 8px;
  color: var(--black-color);
}
.blog-section .blog-grid-item-2 .blog-grid-content .blog-meta li span {
  color: var(--black-color);
}
.blog-section .blog-grid-item-2 .blog-grid-content h2 {
  font-size: 26px;
  margin-bottom: 15px;
}
.blog-section .blog-grid-item-2 .blog-grid-content .blog-grid-button {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid #E1E1E1;
}
.blog-section .blog-grid-item-2:hover {
  transform: translateY(-5px);
}
.blog-section .blog-wappers {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 991px) {
  .blog-section .blog-wappers {
    margin-top: 30px;
  }
}
.blog-section .blog-wappers .blog-item {
  padding: 30px;
  background: var(--white-color);
  border-radius: var(--border-radius-three);
}
@media (max-width: 1199px) {
  .blog-section .blog-wappers .blog-item {
    border-radius: 20px;
  }
}
.blog-section .blog-wappers .blog-item {
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1199px) {
  .blog-section .blog-wappers .blog-item {
    padding: 20px;
  }
}
@media (max-width: 576px) {
  .blog-section .blog-wappers .blog-item .blog-content {
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    flex-direction: column-reverse;
    gap: 25px;
  }
}
.blog-section .blog-wappers .blog-item .blog-content .blog-top {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 25px;
  padding-bottom: 25px;
  margin-bottom: 25px;
  border-bottom: 1px solid #AFA591;
}
@media (max-width: 576px) {
  .blog-section .blog-wappers .blog-item .blog-content .blog-top {
    padding-top: 25px;
    margin-top: 0;
    border-top: 1px solid #AFA591;
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
  }
}
.blog-section .blog-wappers .blog-item .blog-content .blog-top .blog-meta {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  gap: 12px;
}
.blog-section .blog-wappers .blog-item .blog-content .blog-top .blog-meta li {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  gap: 8px;
}
.blog-section .blog-wappers .blog-item .blog-content .blog-top .blog-meta li i {
  color: #d00506;
}
.blog-section .blog-wappers .blog-item .blog-content .blog-top .blog-meta li a {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  gap: 8px;
}
.blog-section .blog-wappers .blog-item .blog-content .blog-bottom h2 {
  font-size: 24px;
  line-height: 1.4;
}
.blog-section .blog-wappers .blog-item:hover {
  transform: translateY(-5px);
}

.blog-single-section .blog-single-media {
  position: relative;
  margin-bottom: 40px;
}
.blog-single-section .blog-single-media figure {
  overflow: hidden;
  border-radius: var(--border-radius-three);
}
@media (max-width: 1199px) {
  .blog-single-section .blog-single-media figure {
    border-radius: 20px;
  }
}
.blog-single-section .blog-single-media figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .blog-single-section .blog-single-post {
    margin-bottom: 40px;
  }
}
.blog-single-section .blog-single-post .blog-single-contain .blog-entry-content {
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.blog-single-section .blog-single-post .blog-single-contain .blog-entry-content .blog-single-meta {
  margin-bottom: 20px;
  padding: 0;
  width: 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 767px) {
  .blog-single-section .blog-single-post .blog-single-contain .blog-entry-content .blog-single-meta {
    gap: 10px;
  }
}
.blog-single-section .blog-single-post .blog-single-contain .blog-entry-content .blog-single-meta li {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  gap: 10px;
}
@media (max-width: 767px) {
  .blog-single-section .blog-single-post .blog-single-contain .blog-entry-content .blog-single-meta li {
    font-size: 14px;
  }
}
.blog-single-section .blog-single-post .blog-single-contain .blog-entry-content .blog-single-meta li a {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  gap: 10px;
}
@media (max-width: 767px) {
  .blog-single-section .blog-single-post .blog-single-contain .blog-entry-content .blog-single-meta li a {
    font-size: 14px;
  }
}
.blog-single-section .blog-single-post .blog-single-contain .blog-entry-content .blog-single-meta li i {
  color: #d00506;
}
.blog-single-section .blog-single-post .blog-single-contain .blog-entry-content .blog-single-meta li span {
  line-height: normal;
}
.blog-single-section .blog-single-post .blog-single-contain .blog-entry-content h2 {
  margin-bottom: 15px;
  font-size: 42px;
  text-transform: capitalize;
}
@media (max-width: 991px) {
  .blog-single-section .blog-single-post .blog-single-contain .blog-entry-content h2 {
    font-size: 32px;
  }
}
.blog-single-section .blog-single-post .blog-single-contain .blog-entry-content h3 {
  font-size: 28px;
  text-transform: capitalize;
}
@media (max-width: 991px) {
  .blog-single-section .blog-single-post .blog-single-contain .blog-entry-content h3 {
    font-size: 26px;
  }
}
.blog-single-section .blog-single-post .blog-single-contain .blog-entry-content .blog-quote {
  background-color: #d00506;
  border-radius: var(--border-radius-three);
}
@media (max-width: 1199px) {
  .blog-single-section .blog-single-post .blog-single-contain .blog-entry-content .blog-quote {
    border-radius: 20px;
  }
}
.blog-single-section .blog-single-post .blog-single-contain .blog-entry-content .blog-quote {
  padding: 30px;
  margin-bottom: 20px;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  gap: 24px;
}
@media (max-width: 991px) {
  .blog-single-section .blog-single-post .blog-single-contain .blog-entry-content .blog-quote {
    padding: 20px;
  }
}
.blog-single-section .blog-single-post .blog-single-contain .blog-entry-content .blog-quote .blog-quote-icon {
  color: var(--white-color);
  width: 60px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 60px;
  flex: 0 0 60px;
  font-size: 62px;
}
.blog-single-section .blog-single-post .blog-single-contain .blog-entry-content .blog-quote p {
  margin-bottom: 0;
  color: var(--white-color);
}
.blog-single-section .blog-single-post .blog-single-contain .blog-entry-content .blog-post-gallary figure {
  overflow: hidden;
  border-radius: var(--border-radius-three);
}
@media (max-width: 1199px) {
  .blog-single-section .blog-single-post .blog-single-contain .blog-entry-content .blog-post-gallary figure {
    border-radius: 20px;
  }
}
.blog-single-section .blog-single-post .blog-single-contain .blog-entry-content .blog-post-gallary figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-single-section .blog-single-post .blog-single-contain .blog-entry-content .blog-post-video {
  position: relative;
}
.blog-single-section .blog-single-post .blog-single-contain .blog-entry-content .blog-post-video::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, var(--black-color) 100%);
  border-radius: var(--border-radius-two);
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  z-index: 2;
  opacity: 0.7;
}
.blog-single-section .blog-single-post .blog-single-contain .blog-entry-content .blog-post-video figure {
  overflow: hidden;
  border-radius: var(--border-radius-three);
}
@media (max-width: 1199px) {
  .blog-single-section .blog-single-post .blog-single-contain .blog-entry-content .blog-post-video figure {
    border-radius: 20px;
  }
}
.blog-single-section .blog-single-post .blog-single-contain .blog-entry-content .blog-post-video figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-single-section .blog-single-post .blog-single-contain .blog-entry-content .blog-post-video .blog-video-wapper {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 2;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.blog-single-section .blog-single-post .blog-single-contain .blog-entry-content .blog-post-video .blog-video-wapper .video-play {
  width: 100px;
  height: 100px;
  background-color: var(--white-color);
  color: var(--black-color);
  font-size: 24px;
  z-index: 1;
  margin: auto;
  position: relative;
  border-radius: 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-animation: spineer2 2s infinite;
  -moz-animation: spineer2 2s infinite;
  -o-animation: spineer2 2s infinite;
  animation: spineer2 2s infinite;
}
@media (max-width: 540px) {
  .blog-single-section .blog-single-post .blog-single-contain .blog-entry-content .blog-post-video .blog-video-wapper .video-play {
    width: 80px;
    height: 80px;
    font-size: 18px;
  }
}
.blog-single-section .blog-single-post .share-links {
  margin-bottom: 30px;
}
.blog-single-section .blog-single-post .share-links .share-tag {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 991px) {
  .blog-single-section .blog-single-post .share-links .share-tag {
    margin-bottom: 30px;
  }
}
.blog-single-section .blog-single-post .share-links .share-tag .share-links-title {
  color: var(--black-color);
}
.blog-single-section .blog-single-post .share-links .share-tag .tagcloud {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  gap: 15px;
}
.blog-single-section .blog-single-post .share-links .share-tag .tagcloud a {
  background-color: var(--white-color);
  border-radius: var(--border-radius-three);
}
@media (max-width: 1199px) {
  .blog-single-section .blog-single-post .share-links .share-tag .tagcloud a {
    border-radius: 20px;
  }
}
.blog-single-section .blog-single-post .share-links .share-tag .tagcloud a {
  color: var(--black-color);
  display: inline-block;
  padding: 10px 15px;
}
.blog-single-section .blog-single-post .share-links .share-tag .tagcloud a:hover {
  background-color: #d00506;
  color: var(--white-color);
}
.blog-single-section .blog-single-post .share-links .share-social {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}
.blog-single-section .blog-single-post .share-links .share-social .share-links-title {
  color: var(--black-color);
}
.blog-single-section .blog-single-post .share-links .share-social ul li a {
  height: 45px;
  width: 45px;
  background-color: var(--white-color);
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  border-radius: 100px;
  color: var(--black-color);
}
.blog-single-section .blog-single-post .share-links .share-social ul li a:hover {
  background-color: #d00506;
  color: var(--white-color);
}
.blog-single-section .blog-single-post .post-navigation {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .blog-single-section .blog-single-post .post-navigation .nav-links .nav-previous {
    margin-bottom: 30px;
  }
}
.blog-single-section .blog-single-post .post-navigation .nav-links .nav-previous a {
  display: block;
  width: 100%;
  border: 1px solid var(--border-color-one);
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -ms-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  padding: 30px;
  border-radius: var(--border-radius-three);
}
@media (max-width: 1199px) {
  .blog-single-section .blog-single-post .post-navigation .nav-links .nav-previous a {
    border-radius: 20px;
    padding: 20px;
  }
}
.blog-single-section .blog-single-post .post-navigation .nav-links .nav-previous a {
  color: var(--black-color);
  background-color: var(--white-color);
}
@media (max-width: 767px) {
  .blog-single-section .blog-single-post .post-navigation .nav-links .nav-previous a {
    padding: 20px;
  }
}
.blog-single-section .blog-single-post .post-navigation .nav-links .nav-previous a .post-nav-icon {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  font-family: var(--body-fonts);
  font-size: 14px;
  line-height: 30px;
  margin-bottom: 5px;
}
.blog-single-section .blog-single-post .post-navigation .nav-links .nav-previous a .post-nav-icon .post-nav-head {
  font-size: 14px;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-left: 8px;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -ms-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.blog-single-section .blog-single-post .post-navigation .nav-links .nav-previous a:hover {
  color: #d00506;
}
.blog-single-section .blog-single-post .post-navigation .nav-links .nav-next a {
  text-align: right;
  display: block;
  width: 100%;
  border: 1px solid var(--border-color-one);
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -ms-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  padding: 30px;
  border-radius: var(--border-radius-three);
}
@media (max-width: 1199px) {
  .blog-single-section .blog-single-post .post-navigation .nav-links .nav-next a {
    border-radius: 20px;
    padding: 20px;
  }
}
.blog-single-section .blog-single-post .post-navigation .nav-links .nav-next a {
  color: var(--black-color);
  background-color: var(--white-color);
}
.blog-single-section .blog-single-post .post-navigation .nav-links .nav-next a .post-nav-icon {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  justify-content: flex-end;
  font-size: 14px;
  line-height: 30px;
  margin-bottom: 5px;
}
.blog-single-section .blog-single-post .post-navigation .nav-links .nav-next a .post-nav-icon .post-nav-head {
  font-size: 14px;
  font-weight: normal;
  text-transform: uppercase;
  margin-right: 8px;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -ms-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.blog-single-section .blog-single-post .post-navigation .nav-links .nav-next a:hover {
  color: #d00506;
}
.blog-single-section .blog-single-post .blog-author {
  margin-bottom: 50px;
  background-color: var(--white-color);
  padding: 30px;
  border-radius: var(--border-radius-three);
}
@media (max-width: 1199px) {
  .blog-single-section .blog-single-post .blog-author {
    border-radius: 20px;
    padding: 20px;
  }
}
.blog-single-section .blog-single-post .blog-author {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
@media (max-width: 767px) {
  .blog-single-section .blog-single-post .blog-author {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    margin-bottom: 30px;
  }
}
.blog-single-section .blog-single-post .blog-author .blog-author-image {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  margin-right: 30px;
}
@media (max-width: 767px) {
  .blog-single-section .blog-single-post .blog-author .blog-author-image {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.blog-single-section .blog-single-post .blog-author .blog-author-image figure {
  overflow: hidden;
  border-radius: 20px;
}
@media (max-width: 767px) {
  .blog-single-section .blog-single-post .blog-author .blog-author-image figure {
    width: 100px;
    height: 100px;
  }
}
.blog-single-section .blog-single-post .blog-author .blog-author-image figure img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.blog-single-section .blog-single-post .blog-author .blog-author-content h3 {
  margin-bottom: 10px;
}
.blog-single-section .blog-single-post .blog-author .social-icon li a {
  background-color: var(--white-color);
  color: var(--black-color);
}
.blog-single-section .blog-single-post .blog-author .social-icon li a:hover {
  color: var(--white-color);
}
.blog-single-section .blog-single-post .blog-author .social-icon li a::before {
  background: #d00506;
}
.blog-single-section .blog-single-post .comment-wapper {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .blog-single-section .blog-single-post .comment-wapper {
    margin-bottom: 30px;
  }
}
.blog-single-section .blog-single-post .comment-wapper h3 {
  margin-bottom: 15px;
  font-size: 28px;
  line-height: 1.4em;
  text-transform: capitalize;
}
@media (max-width: 991px) {
  .blog-single-section .blog-single-post .comment-wapper h3 {
    font-size: 26px;
  }
}
.blog-single-section .blog-single-post .comment-respond {
  background-color: var(--white-color);
  border: 1px solid var(--border-color-one);
  border-radius: var(--border-radius-three);
}
@media (max-width: 1199px) {
  .blog-single-section .blog-single-post .comment-respond {
    border-radius: 20px;
  }
}
.blog-single-section .blog-single-post .comment-respond {
  padding: 30px;
}
@media (max-width: 991px) {
  .blog-single-section .blog-single-post .comment-respond {
    padding: 20px;
  }
}
.blog-single-section .blog-single-post .comment-respond h3 {
  margin-bottom: 15px;
  font-size: 28px;
  line-height: 1.4em;
  text-transform: capitalize;
}
@media (max-width: 991px) {
  .blog-single-section .blog-single-post .comment-respond h3 {
    font-size: 26px;
  }
}

.booking-section .booking-wapper {
  padding: 30px;
  border-radius: var(--border-radius-three);
}
@media (max-width: 1199px) {
  .booking-section .booking-wapper {
    border-radius: 20px;
    padding: 20px;
  }
}
.booking-section .booking-wapper {
  background-color: var(--white-color);
}
@media (max-width: 1199px) {
  .booking-section .booking-wapper {
    margin-bottom: 40px;
  }
}
.booking-section .booking-wapper .booking-single .heading {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
}
.booking-section .booking-wapper .booking-single .heading h2 {
  position: relative;
  font-size: 42px;
  text-transform: capitalize;
  font-weight: 700;
  padding-bottom: 10px;
}
@media (max-width: 991px) {
  .booking-section .booking-wapper .booking-single .heading h2 {
    font-size: 32px;
  }
}
.booking-section .booking-wapper .booking-single .heading h2:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background: var(--black-color);
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.booking-section .booking-wapper .upload-file .upload-title {
  margin-bottom: 10px;
  font-size: 15px;
  color: var(--text-color);
}
.booking-section .booking-wapper .upload-file .upload-drag {
  position: relative;
  padding: 20px;
  border: 2px dashed #EAE8E6;
  border-radius: var(--border-radius-three);
  text-align: center;
}
.booking-section .booking-wapper .upload-file .upload-drag .upload-icon {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background-color: #F2F2F2;
  margin: 0 auto;
}
.booking-section .booking-wapper .upload-file .upload-drag .upload-content span {
  font-size: 16px;
  font-weight: 600;
}
.booking-section .booking-wapper .upload-file .upload-drag .upload-content p {
  font-size: 14px;
  font-weight: 400;
}
.booking-section .booking-wapper .upload-file .upload-drag .upload-label {
  display: none;
}
.booking-section .booking-wapper .upload-file .upload-drag input {
  border: none;
  text-align: center;
  font-size: 14px;
  margin: 0 auto;
  cursor: pointer;
  padding: 0;
  height: auto;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  max-width: 220px;
}
.booking-section .booking-wapper .upload-file .upload-drag input::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.booking-section .booking-wapper .upload-file .upload-drag input[type=file]::file-selector-button {
  opacity: 0;
  width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

.car-items .car-content{
	
}

.car-items {
    padding: 10px;
    background-color: var(--white-color);
    border-radius: 10px;
    position: relative;
    border: 1px solid var(--body-color);
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.car-items .car-image {
	background-color: var(--extra-color-one);
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
    text-align: center;
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
}
.car-items .car-image figure {
  height: 100%;
  width: 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.car-items .car-image figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.car-items .car-content h2 {
  margin-bottom: 10px;
  font-size: 26px;
  font-weight: 600;
  line-height: normal;
  text-align: center;
}
.car-items .car-content ul {
  display: grid;
  padding: 0;
  gap: 4px;
  grid-template-columns: 1fr 1fr 1fr;
}
.car-items .car-content ul li {
	width: 100%;
    padding: 10px 10px;
    text-align: center;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-align-items: center;
    align-items: center;
    gap: 5px;
    background-color: var(--extra-color-one);
    border-radius: 50px;
}
.car-items .car-content ul li img {
  display: block;
  width: 100%;
  max-width: 21px;
  height: 20px;
}
.car-items .car-content ul li span {
  font-size: 12px;
  color: var(--black-color);
  line-height: normal;
}
.car-items .car-content .booking-wrap {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  align-items: end;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  margin-top: 15px;
}
.car-items .car-content .booking-wrap .booking-price p {
    color: var(--secondary-color);
    margin-bottom: 0;
    font-family: var(--title-fonts);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
}
.car-items .car-content .booking-wrap .booking-price span {
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  color: #4D4633;
}
.car-items .car-content .booking-wrap .theme-button {
  padding: 4px 19px;
}
.car-items:hover {
  transform: translateY(-5px);
}

.view-more {
  position: relative;
  padding: 0;
  text-align: center;
  margin-top: -38px;
}
@media (max-width: 576px) {
  .view-more {
    display: none;
  }
}
.view-more::before {
  content: "";
  width: 100%;
  height: 1px;
  background: var(--gradient-one);
  position: absolute;
  top: 50%;
  left: 0;
}
.view-more a {
  width: fit-content;
  margin: 0 auto;
  padding: 0 27px 0 28.5px;
  background-color: var(--extra-color);
  position: relative;
  z-index: 9;
  font-size: 18px;
  font-style: normal;
  color: var(--black-color);
  font-weight: 400;
  -webkit-transform: translate(0.5px, 0);
  -moz-transform: translate(0.5px, 0);
  -ms-transform: translate(0.5px, 0);
  -o-transform: translate(0.5px, 0);
  transform: translate(0.5px, 0);
}

@media (max-width: 991px) {
  .categories-section .categories-left {
    margin-bottom: 30px;
  }
}
.categories-section .categories-wapper .categories-item {
  position: relative;
  -webkit-transition: var(--transition);
  -moz-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
  /*display: -webkit-flex;
  display: -moz-flex;*/
  display: block;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  flex-direction: column;
  border-radius: 12px;
  background: linear-gradient( 3deg, var(--extra-color-one) 0%, rgba(242, 242, 242, 0) 100%);
  margin-top: 50px;
  padding: 20px 20px;
}
.categories-section .categories-wapper .categories-item .categories-content h3{
    text-align: center;
    margin-bottom: 11px;
    font-size: 26px;
}
.categories-section .categories-wapper .categories-item .categories-content ul{
    display: grid;
    padding: 0;
    gap: 13px;
    grid-template-columns: 1fr 1fr 1fr;
    margin-bottom: 17px;
}
.categories-section .categories-wapper .categories-item .categories-content ul li{
	width: 100%;
    padding: 10px 10px;
    text-align: center;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-align-items: center;
    align-items: center;
    gap: 7px;
    background-color: #e6e2da;
    border-radius: 7px;
}
.categories-section .categories-wapper .categories-item .categories-content ul li span{
    font-size: 14px;
    color: var(--black-color);
    line-height: normal;
}
.categories-section .categories-wapper .categories-item .categories-image {
  margin-bottom: 15px;
}
.categories-section .categories-wapper .categories-item .categories-image figure {
  position: relative;
  /*max-width: 320px;*/
  margin-top: -45px;
  -webkit-transition: var(--transition);
  -moz-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}
.categories-section .categories-wapper .categories-item .categories-content h2 {
  font-size: 24px;
  font-weight: 600;
  text-align: center;
}
.categories-section .categories-wapper .categories-item .categories-content h2 span {
  color: #d00506;
}
.categories-section .categories-wapper .categories-item .categories-content p {
  margin-top: 10px;
  text-align: center;
}
.categories-section .categories-wapper .categories-item .categories-image figure {
  -webkit-transform: translate(0, -10px);
  -moz-transform: translate(0, -10px);
  -ms-transform: translate(0, -10px);
  -o-transform: translate(0, -10px);
  transform: translate(0, -10px);
}
.categories-section .more-categories-content {
  width: 100%;
  max-width: 630px;
  text-align: center;
  margin: 0 auto;
}
.categories-section .more-categories-content p {
  margin-bottom: 20px;
}
.categories-section .more-categories-content p a {
  color: #d00506;
}
.categories-section .more-categories-content p a:hover {
  text-decoration: underline;
}

.coming-soon-section {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  min-height: 100vh;
  height: 100%;
}
.coming-soon-section::after {
  content: "";
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  top: 0;
  left: 0;
}
.coming-soon-section .coming-soon-box {
  position: relative;
  z-index: 1;
  padding: 0 15px;
}
.coming-soon-section .coming-soon-box .coming-soon-logo {
  margin-bottom: 30px;
  text-align: center;
}
.coming-soon-section .coming-soon-box .coming-soon-logo img {
  width: 220px;
}
@media (max-width: 991px) {
  .coming-soon-section .coming-soon-box .coming-soon-logo img {
    width: 140px;
  }
}
.coming-soon-section .coming-soon-box .big-title {
  position: relative;
  text-align: center;
  color: var(--white-color);
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 50px;
  font-family: var(--title-fonts);
  font-size: 62px;
  line-height: 1.4em;
}
@media (max-width: 1400px) {
  .coming-soon-section .coming-soon-box .big-title {
    font-size: 58px;
  }
}
@media (max-width: 1199px) {
  .coming-soon-section .coming-soon-box .big-title {
    font-size: 48px;
  }
}
@media (max-width: 991px) {
  .coming-soon-section .coming-soon-box .big-title {
    font-size: 38px;
    line-height: 1.2em;
  }
}
@media (max-width: 767px) {
  .coming-soon-section .coming-soon-box .big-title {
    font-size: 28px;
  }
  .car-items .car-content ul li span{
	  font-size: 11px;
  }
}
.coming-soon-section .coming-soon-box .coming-soon-timer {
  position: relative;
  margin-bottom: 30px;
}
.coming-soon-section .coming-soon-box .coming-soon-timer .timer-body-block {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 30px;
}
.coming-soon-section .coming-soon-box .coming-soon-timer .timer-body-block .table-cell {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  flex-direction: column;
  text-align: center;
  height: 150px;
  width: 150px;
  border: 1px solid rgba(255, 255, 255, 0.267);
  border-radius: 100px;
}
@media (max-width: 767px) {
  .coming-soon-section .coming-soon-box .coming-soon-timer .timer-body-block .table-cell {
    width: 114px;
    height: 114px;
  }
}
.coming-soon-section .coming-soon-box .coming-soon-timer .timer-body-block .table-cell .tab-val {
  color: var(--white-color);
  font-family: var(--body-fonts);
  font-size: 42px;
  font-weight: 600;
  line-height: 1.4em;
  text-transform: capitalize;
}
@media (max-width: 1399px) {
  .coming-soon-section .coming-soon-box .coming-soon-timer .timer-body-block .table-cell .tab-val {
    font-size: 38px;
  }
}
@media (max-width: 991px) {
  .coming-soon-section .coming-soon-box .coming-soon-timer .timer-body-block .table-cell .tab-val {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .coming-soon-section .coming-soon-box .coming-soon-timer .timer-body-block .table-cell .tab-val {
    font-size: 32px;
  }
}
.coming-soon-section .coming-soon-box .coming-soon-timer .timer-body-block .table-cell .tab-metr {
  position: relative;
  display: block;
  color: var(--white-color);
  font-size: 18px;
  font-weight: 500;
  text-transform: capitalize;
}
.coming-soon-section .coming-soon-box .coming-soon-text {
  max-width: 620px;
  margin: 0 auto 30px;
  text-align: center;
}
.coming-soon-section .coming-soon-box .coming-soon-text p {
  color: var(--white-color);
  font-size: 18px;
  font-weight: 400;
}
@media (max-width: 991px) {
  .coming-soon-section .coming-soon-box .coming-soon-text p {
    font-size: 16px;
  }
}
.coming-soon-section .coming-soon-box .coming-soon-subscribe-box .subscribe-form {
  position: relative;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  gap: 10px;
  max-width: 620px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .coming-soon-section .coming-soon-box .coming-soon-subscribe-box .subscribe-form {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    flex-direction: column;
  }
}
.coming-soon-section .coming-soon-box .coming-soon-subscribe-box .subscribe-form .input-group {
  width: auto;
  flex: 1 1 0%;
}
.coming-soon-section .coming-soon-box .coming-soon-subscribe-box .subscribe-form .input-group input {
  border-radius: var(--border-radius-three);
}
.coming-soon-section .coming-soon-box .coming-soon-subscribe-box .subscribe-form .submit-btn {
  position: absolute;
  right: 2px;
  top: 0;
  bottom: 0;
  height: 48px;
  margin: auto;
  padding: 0 25px;
  border-radius: var(--border-radius-three);
  background-color: #d00506;
  color: var(--white-color);
}
@media (max-width: 767px) {
  .coming-soon-section .coming-soon-box .coming-soon-subscribe-box .subscribe-form .submit-btn {
    position: relative;
    right: 0;
    left: 0;
    width: 100%;
  }
}

.contact-section .section-title {
  margin-bottom: 20px;
}
.contact-section .contact-content-box {
  margin-left: 50px;
}
@media (max-width: 991px) {
  .contact-section .contact-content-box {
    margin-left: 0;
  }
}
.contact-section .contact-content-box .contact-item-wrapper {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  flex-direction: column;
  gap: 25px;
}
.contact-section .contact-content-box .contact-item-wrapper .contact-item {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  gap: 20px;
}
.contact-section .contact-content-box .contact-item-wrapper .contact-item .contact-icon {
  position: relative;
  background-color: var(--white-color);
  color: var(--secondary-color);
  height: 52px;
  width: 52px;
  font-size: 20px;
  border-radius: 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.contact-section .contact-content-box .contact-item-wrapper .contact-item .contact-icon::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  content: "";
  position: absolute;
  background-color: #d00506;
  border-radius: inherit;
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 1;
}
.contact-section .contact-content-box .contact-item-wrapper .contact-item .contact-icon i {
  position: relative;
  z-index: 1;
}
.contact-section .contact-content-box .contact-item-wrapper .contact-item .contact-content {
  flex: 1 1 0%;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  flex-direction: column;
  gap: 5px;
}
.contact-section .contact-content-box .contact-item-wrapper .contact-item .contact-content span {
  margin-bottom: 0;
  font-size: 14px;
  font-weight: normal;
  color: var(--black-color);
}
.contact-section .contact-content-box .contact-item-wrapper .contact-item .contact-content h3 {
  text-transform: inherit;
  font-size: 20px;
}
.contact-section .contact-content-box .contact-item-wrapper .contact-item .contact-content p {
  color: var(--text-color);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 0;
}
.contact-section .contact-content-box .contact-item-wrapper .contact-item:hover .contact-icon {
  color: var(--white-color);
}
.contact-section .contact-content-box .contact-item-wrapper .contact-item:hover .contact-icon::before {
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.contact-section .contact-social-links {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  flex-direction: column;
  gap: 15px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--secondary-color);
}
.contact-section .contact-social-links .follow-text {
  color: var(--secondary-color);
  font-weight: 500;
}
.contact-section .contact-social-links .social-icon li a {
  background-color: var(--secondary-color);
  color: var(--white-color);
}
.contact-section .contact-social-links .social-icon li a::before {
  background-color: #d00506;
}
.contact-section .contact-form-box {
    position: relative;
    z-index: 1;
    padding: 28px;
    border-radius: 14px;
}
@media (max-width: 1199px) {
  .contact-section .contact-form-box {
    border-radius: 20px;
  }
}
.contact-section .contact-form-box {
  background-color: var(--white-color);
}
@media (max-width: 1199px) {
  .contact-section .contact-form-box {
    padding: 20px;
  }
}
@media (max-width: 991px) {
  .contact-section .contact-form-box {
    margin-top: 50px;
  }
}
@media (max-width: 575px) {
  .contact-section .contact-form-box .contact-form .appointment-button-wapper .theme-button {
    width: 100%;
  }
}

.contact-office .office-right .office-wapper {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 30px;
}
.contact-office .office-right .office-wapper .office-item {
  width: calc(50% - 15px);
  background-color: var(--extra-color);
  padding: 30px;
  border-radius: var(--border-radius-three);
}
@media (max-width: 1199px) {
  .contact-office .office-right .office-wapper .office-item {
    border-radius: 20px;
  }
}
@media (max-width: 1199px) {
  .contact-office .office-right .office-wapper .office-item {
    padding: 20px;
  }
}
@media (max-width: 576px) {
  .contact-office .office-right .office-wapper .office-item {
    width: 100%;
  }
}
.contact-office .office-right .office-wapper .office-item .office-icon {
  background: #d00506;
  color: var(--white-color);
  height: 42px;
  width: 42px;
  border-radius: 100px;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  margin-bottom: 30px;
  -webkit-transition: var(--transition);
  -moz-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}
.contact-office .office-right .office-wapper .office-item .office-content .office-location {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}
.contact-office .office-right .office-wapper .office-item .office-content p {
  margin-bottom: 5px;
  padding-left: 25px;
}
.contact-office .office-right .office-wapper .office-item .office-content p.office-emial {
  margin-bottom: 15px;
}
.contact-office .office-right .office-wapper .office-item .office-content p::before {
  content: "";
  position: absolute;
  display: block;
  top: 10px;
  left: 0;
  height: 6px;
  width: 6px;
  background: var(--secondary-color);
  border-radius: 100px;
}
.contact-office .office-right .office-wapper .office-item:hover .office-icon {
  background: var(--secondary-color);
}

.google-map {
  position: relative;
  background-color: var(--extra-color);
}
.google-map .agent-item {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  gap: 30px;
  padding: 80px 45px;
  height: 100%;
}
@media (max-width: 991px) {
  .google-map .agent-item {
    height: auto;
  }
}
@media (max-width: 767px) {
  .google-map .agent-item {
    padding: 80px 20px;
  }
}
.google-map .agent-item .agent-image {
  position: relative;
  background-color: var(--extra-color);
  height: 100px;
  width: 100px;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  border-radius: 100%;
  overflow: hidden;
}
.google-map .agent-item .agent-image figure {
  position: relative;
  z-index: 2;
  -webkit-transition: var(--transition);
  -moz-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}
.google-map .agent-item .agent-image figure img {
  width: 100%;
  width: 100%;
  object-fit: cover;
}
.google-map .agent-item .agent-content h2 {
  font-size: 24px;
  line-height: 1.4em;
  margin-bottom: 15px;
}
.google-map .google-map-iframe {
  width: 100%;
  height: 520px;
  overflow: hidden;
  border-radius: var(--border-radius-three);
}
@media (max-width: 1199px) {
  .google-map .google-map-iframe {
    border-radius: 20px;
  }
}
@media (max-width: 991px) {
  .google-map .google-map-iframe {
    border-radius: 0;
  }
}
@media (max-width: 575px) {
  .google-map .google-map-iframe {
    height: 430px;
  }
}
.google-map .google-map-iframe iframe {
  width: 100%;
  height: 100%;
}
@media (max-width: 575px) {
  .google-map .google-map-iframe iframe {
    height: 430px;
  }
}

.counter-wapper .counter-content .counter-text {
  color: var(--black-color);
  font-family: var(--title-fonts);
  text-transform: capitalize;
  font-size: 65px;
  line-height: 1.1em;
  font-weight: 600;
}
@media (max-width: 991px) {
  .counter-wapper .counter-content .counter-text {
    font-size: 42px;
  }
}
.counter-wapper .counter-content .counter-title {
  color: var(--text-color);
  margin-bottom: 0;
  font-size: 16px;
  font-family: var(--body-fonts);
  font-weight: normal;
  line-height: 1.6em;
}
@media (max-width: 767px) {
  .counter-wapper .counter-content .counter-title {
    font-size: 16px;
  }
}

.cta-section-1 .cta-wapper {
  position: relative;
  background-position: center;
  overflow: hidden;
  border-radius: var(--border-radius-three);
}
@media (max-width: 1199px) {
  .cta-section-1 .cta-wapper {
    border-radius: 20px;
  }
}
.cta-section-1 .cta-wapper::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: var(--gradient-one);
  opacity: 0.8;
}
.cta-section-1 .cta-wapper .cta-content {
  position: relative;
  z-index: 1;
}
.cta-section-1 .cta-wapper .cta-content .section-title .sub-title {
  background-color: var(--white-color);
}
.cta-section-1 .cta-wapper .cta-content .section-title h2 {
  color: var(--white-color);
}
.cta-section-1 .cta-wapper .cta-content .section-title p {
  color: var(--white-color);
}
.cta-section-1 .cta-wapper .cta-content .cta-button-wapper {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 15px 20px;
}
.cta-section-2 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.cta-section-2::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: var(--gradient-one);
  opacity: 0.8;
}
.cta-section-2 .cta-content {
  position: relative;
  z-index: 1;
}
.cta-section-2 .cta-content .section-title .sub-title {
	background-color: var(--white-color);
    margin-bottom: 20px;
}
.cta-section-2 .cta-content .section-title h2 {
  color: var(--white-color);
}
.cta-section-2 .cta-content .section-title p {
  color: var(--white-color);
}
.cta-section-2 .cta-content .cta-button-wapper {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 15px 20px;
}

.drivers-section .drivers-wapper {
  margin-top: 50px;
  display: grid;
  grid-gap: 70px 24px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 991px) {
  .drivers-section .drivers-wapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .drivers-section .drivers-wapper {
    grid-template-columns: repeat(1, 1fr);
  }
}
.drivers-section .drivers-wapper .drivers-items {
  padding: 30px;
  border-radius: 24px 24px 0 0;
  background: linear-gradient(180deg, var(--extra-color-one) 0%, rgba(242, 242, 242, 0) 100%);
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1199px) {
  .drivers-section .drivers-wapper .drivers-items {
    padding: 20px;
  }
}
.drivers-section .drivers-wapper .drivers-items .hire-image {
  text-align: center;
  margin-top: -70px;
  margin-bottom: 30px;
}
.drivers-section .drivers-wapper .drivers-items .drivers-content {
  text-align: center;
}
.drivers-section .drivers-wapper .drivers-items .drivers-content h2 {
  font-size: 26px;
}
.drivers-section .drivers-wapper .drivers-items .drivers-content .social-icon ul li a {
  background: var(--white-color);
}
.drivers-section .drivers-wapper .drivers-items:hover {
  transform: translateY(-5px);
}
.drivers-section .more-drivers-content {
  width: 100%;
  max-width: 630px;
  text-align: center;
  margin: 0 auto;
}
.drivers-section .more-drivers-content p {
  margin-bottom: 20px;
}

@media (max-width: 991px) {
  .driver-single-section .driver-single-left {
    margin-bottom: 30px;
  }
}
.driver-single-section .driver-single-left .image-1 figure {
  overflow: hidden;
  border-radius: var(--border-radius-three);
}
@media (max-width: 1199px) {
  .driver-single-section .driver-single-left .image-1 figure {
    border-radius: 20px;
  }
}
.driver-single-section .driver-single-left .image-1 figure img {
  width: 100%;
  object-fit: cover;
}
.driver-single-section .driver-single-left .section-title h2 {
  margin-bottom: 15px;
  font-size: 42px;
  text-transform: capitalize;
}
@media (max-width: 991px) {
  .driver-single-section .driver-single-left .section-title h2 {
    font-size: 32px;
  }
}
.driver-single-section .driver-single-left .social-icon li a {
  background-color: var(--white-color);
}
.driver-single-section .driver-single-right {
  padding-left: 30px;
}
@media (max-width: 991px) {
  .driver-single-section .driver-single-right {
    padding-left: 0;
  }
}
.driver-single-section .driver-single-right h3 {
  font-size: 28px;
  text-transform: capitalize;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .driver-single-section .driver-single-right h3 {
    font-size: 26px;
  }
}
.driver-single-section .driver-single-right .driver-info-list li {
  margin-bottom: 15px;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.driver-single-section .driver-single-right .driver-info-list li span:first-child {
  width: 200px;
}
@media (max-width: 767px) {
  .driver-single-section .driver-single-right .driver-info-list li span:first-child {
    width: 120px;
  }
}
.driver-single-section .driver-single-right .driver-info-list li span:last-child {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.driver-skill-section {
  position: relative;
}
.driver-skill-section h2 {
  font-size: 42px;
  text-transform: capitalize;
}
@media (max-width: 991px) {
  .driver-skill-section h2 {
    font-size: 32px;
  }
}
.driver-skill-section .driver-skill {
  margin-bottom: 30px;
}
.driver-skill-section .driver-skill .progress-wapper .single-progressbar .progressbar {
  background-color: var(--primary-rgb-05);
}
.driver-skill-section .driver-contact-form {
  position: relative;
  border: 1px solid var(--border-color-one);
  border-radius: var(--border-radius-three);
}
@media (max-width: 1199px) {
  .driver-skill-section .driver-contact-form {
    border-radius: 20px;
  }
}
.driver-skill-section .driver-contact-form {
  z-index: 1;
  padding: 30px;
}
@media (max-width: 991px) {
  .driver-skill-section .driver-contact-form {
    padding: 20px;
  }
}

.faq-section-1 .faq-banner {
  position: relative;
  background: var(--gradient-one);
  padding: 70px 0;
  overflow: hidden;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .faq-section-1 .faq-banner {
    padding: 80px 0;
  }
}
.faq-section-1 .faq-banner .faq-banner-title {
  transform: rotate(-5deg);
}
.faq-section-1 .faq-banner .faq-banner-title h2 {
  text-transform: uppercase;
  color: var(--white-color);
  font-size: 100px;
  font-weight: 700;
}
@media (max-width: 991px) {
  .faq-section-1 .faq-banner .faq-banner-title h2 {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .faq-section-1 .faq-banner .faq-banner-title h2 {
    font-size: 45px;
  }
}
@media (max-width: 480px) {
  .faq-section-1 .faq-banner .faq-banner-title h2 {
    font-size: 35px;
  }
}
@media (max-width: 360px) {
  .faq-section-1 .faq-banner .faq-banner-title h2 {
    font-size: 30px;
  }
}
.faq-section-1 .faq-banner .faq-banner-title h2 span {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 2px var(--white-color);
}
.faq-section-1 .faq-banner .faq-banner-title h2.green-text {
  color: #d00506;
  text-align: right;
}
.faq-section-1 .faq-banner .faq-banner-title h2.green-text span {
  -webkit-text-stroke: 2px #d00506;
}
.faq-section-1 .faq-img {
  max-width: 526px;
  position: relative;
  z-index: 9;
  margin-top: -10%;
}
.faq-section-1 .explore-wrap {
  position: relative;
}
.faq-section-1 .explore-wrap .faq-still-questions {
    background-color: var(--white-color);
    padding: 24px;
    border-radius: 17px;
}
@media (max-width: 1199px) {
  .faq-section-1 .explore-wrap .faq-still-questions {
    border-radius: 20px;
  }
}
@media (max-width: 1199px) {
  .faq-section-1 .explore-wrap .faq-still-questions {
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .faq-section-1 .explore-wrap .faq-still-questions {
    margin-bottom: 30px;
  }
}
.faq-section-1 .explore-wrap .faq-still-questions .faq-title {
  color: var(--secondary-color);
  font-family: var(--title-fonts);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.4em;
  text-transform: capitalize;
  margin-bottom: 10px;
}
.faq-section-1 .accordion .accordion-item {
  box-shadow: none;
}
.faq-section-2 .accordion .accordion-item {
  background: var(--extra-color-one);
  border: 1px solid var(--body-color);
  box-shadow: none;
}
.faq-section-3 .widget-sidebar .widget .widget-title h2 {
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 25px;
  display: inline-block;
  font-size: 26px;
}
.faq-section-3 .widget-sidebar .widget .widget-title h2:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background: var(--black-color);
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
@media (max-width: 991px) {
  .faq-section-3 .faqs-catagery {
    margin-top: 30px;
  }
}
.faq-section-3 .faqs-catagery .single-faqs {
  margin-bottom: 50px;
}
.faq-section-3 .faqs-catagery .single-faqs:nth-last-child(1) {
  margin-bottom: 0;
}
.faq-section-3 .faqs-catagery .single-faqs .section-title {
  margin-bottom: 20px;
}
.faq-section-3 .faqs-catagery .single-faqs .section-title h2 {
  font-size: 42px;
  text-transform: capitalize;
}
@media (max-width: 991px) {
  .faq-section-3 .faqs-catagery .single-faqs .section-title h2 {
    font-size: 32px;
  }
}
.faq-section-3 .faqs-catagery .single-faqs .accordion .accordion-item {
  background: var(--extra-color-one);
  border: 1px solid var(--body-color);
  box-shadow: none;
}

.photo-gallery {
  position: relative;
  margin-bottom: 30px;
}
.photo-gallery::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: #d00506;
  border-radius: var(--border-radius-three);
}
@media (max-width: 1199px) {
  .photo-gallery::before {
    border-radius: 20px;
  }
}
.photo-gallery::before {
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  -o-transform: scale(0.9);
  transform: scale(0.9);
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  z-index: 2;
  opacity: 0;
}
.photo-gallery .photo-gallery-image figure {
  display: block;
  border-radius: var(--border-radius-three);
}
@media (max-width: 1199px) {
  .photo-gallery .photo-gallery-image figure {
    border-radius: 20px;
  }
}
.photo-gallery .photo-gallery-image figure {
  overflow: hidden;
}
.photo-gallery .photo-gallery-image figure img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.photo-gallery .photo-gallery-icon {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
  height: 100%;
  width: 100%;
}
.photo-gallery .photo-gallery-icon a {
  font-size: 24px;
  color: var(--black-color);
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  height: 100%;
  width: 100%;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  opacity: 0;
}
.photo-gallery .photo-gallery-icon a i {
  background-color: var(--white-color);
  border-radius: 100px;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  height: 60px;
  width: 60px;
}
.photo-gallery:hover::before {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  opacity: 0.62;
}
.photo-gallery:hover .photo-gallery-icon a {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}

.video-gallery-item {
  margin-bottom: 30px;
}
.video-gallery-item a {
  position: relative;
  display: block;
}
.video-gallery-item a figure {
  display: block;
  border-radius: var(--border-radius-three);
}
@media (max-width: 1199px) {
  .video-gallery-item a figure {
    border-radius: 20px;
  }
}
.video-gallery-item a figure {
  overflow: hidden;
}
.video-gallery-item a figure img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.video-gallery-item a .play-button {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  position: absolute;
  height: 60px;
  width: 60px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 2;
  background-color: #d00506;
  border-radius: 100px;
  color: var(--white-color);
}
.video-gallery-item a::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: #d00506;
  border-radius: var(--border-radius-three);
}
@media (max-width: 1199px) {
  .video-gallery-item a::before {
    border-radius: 20px;
  }
}
.video-gallery-item a::before {
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  -o-transform: scale(0.9);
  transform: scale(0.9);
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  z-index: 2;
  opacity: 0;
}
.video-gallery-item a:hover::before {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  opacity: 0.82;
}
.video-gallery-item a:hover .play-button {
  background-color: var(--white-color);
  color: var(--black-color);
}

.hero-section-1 {
  padding-top: 180px;
  background: var(--gradient-one);
}
.hero-section-1::after {
  content: "";
  position: absolute;
  height: 150px;
  width: 100%;
  background: var(--body-color);
  bottom: 0;
  z-index: -1;
}
@media (max-width: 767px) {
  .hero-section-1::after {
    height: 90px;
  }
}
@media (max-width: 576px) {
  .hero-section-1::after {
    height: 70px;
  }
}
.hero-section-1 .hero-content .top-content {
  padding: 0 0 60px;
}
.hero-section-1 .hero-content .top-content .section-title {
  text-align: start;
  margin-left: 0;
  margin-bottom: 20px;
}
.hero-section-1 .hero-content .top-content .section-title h1 {
  line-height: 1;
  text-transform: uppercase;
  color: var(--white-color);
  font-size: 140px;
  font-weight: bold;
}
@media (max-width: 1199px) {
  .hero-section-1 .hero-content .top-content .section-title h1 {
    font-size: 112px;
  }
}
@media (max-width: 991px) {
  .hero-section-1 .hero-content .top-content .section-title h1 {
    font-size: 82px;
  }
}
@media (max-width: 767px) {
  .hero-section-1 .hero-content .top-content .section-title h1 {
    font-size: 62px;
  }
}
.hero-section-1 .hero-content .top-content .description {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  gap: 18px;
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  .hero-section-1 .hero-content .top-content .description {
    gap: 25px;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
}
.hero-section-1 .hero-content .top-content .description .prize-button p {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  gap: 7px;
  font-size: 42px;
  font-weight: bold;
  color: var(--white-color);
  padding: 14px 50px;
  background-color: #d00506;
  border-radius: 90px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  line-height: normal;
}
@media (max-width: 1199px) {
  .hero-section-1 .hero-content .top-content .description .prize-button p {
    font-size: 32px;
  }
}
@media (max-width: 991px) {
  .hero-section-1 .hero-content .top-content .description .prize-button p {
    font-size: 24px;
    padding: 10px 20px;
  }
}
.hero-section-1 .hero-content .top-content .description p {
  max-width: 580px;
  color: var(--white-color);
  margin-bottom: 0;
}
.hero-section-1 .hero-content .top-content .hero-button {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  gap: 15px;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.hero-section-1 .hero-content .hero-images {
  display: block;
  width: 100%;
  text-align: center;
}
.hero-section-1 .hero-content .customers-box {
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.13) 0%, rgba(255, 255, 255, 0) 100%);
  max-width: 309px;
  position: absolute;
  right: 4%;
  bottom: 35%;
  padding: 20px 20px 20px;
}
@media (max-width: 991px) {
  .hero-section-1 .hero-content .customers-box {
    bottom: 30%;
  }
}
@media (max-width: 767px) {
  .hero-section-1 .hero-content .customers-box {
    display: none;
  }
}
.hero-section-1 .hero-content .customers-box .customers-vector {
  position: absolute;
  top: -28px;
  right: 20px;
  width: 56px;
  height: 56px;
  -webkit-animation: rotate 10s linear infinite;
  -moz-animation: rotate 10s linear infinite;
  -o-animation: rotate 10s linear infinite;
  animation: rotate 10s linear infinite;
}
.hero-section-1 .hero-content .customers-box p {
  font-weight: 400;
  color: var(--white-color);
  margin: 0;
}
.hero-section-2 {
	padding-top: 250px;
    padding-bottom: 150px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
@media (max-width: 767px) {
  .hero-section-2 {
	padding-top: 50px;
	padding-bottom: 50px;
  }
}
.hero-section-2::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background: #00000069;
  top: 0;
  opacity: 0.62;
  z-index: -1;
}
.hero-section-2 .hero-content {
  padding: 0 30px 100px 30px;
  max-width: 1600px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .hero-section-2 .hero-content {
    padding: 0 0 0px 0;
  }
}
.hero-section-2 .hero-content .top-content .section-title {
  text-align: center;
  margin-left: 0;
  margin-bottom: 20px;
}
.hero-section-2 .hero-content .top-content .section-title h1 {
  line-height: 1;
  text-transform: uppercase;
  color: var(--white-color);
  font-size: 50px;
  font-weight: bold;
}
@media (max-width: 1199px) {
  .hero-section-2 .hero-content .top-content .section-title h1 {
    font-size: 50px;
  }
}
@media (max-width: 991px) {
  .hero-section-2 .hero-content .top-content .section-title h1 {
    font-size: 50px;
  }
}
@media (max-width: 767px) {
  .hero-section-2 .hero-content .top-content .section-title h1 {
	font-size: 30px;
	line-height: 1.4;
  }
  .section-title{
	gap: 0px;
  }
}
.hero-section-2 .hero-content .top-content .description {
	display: -webkit-flex;
    display: -moz-flex;
    display: block;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 18px;
    padding-top: 22px;
    margin-top: 22px;
    border-top: 1px solid #ffffff59;
    text-align: center;
}
@media (max-width: 991px) {
  .hero-section-2 .hero-content .top-content .description {
	flex-direction: column-reverse;
	-webkit-align-items: flex-start;
	align-items: flex-start;
	padding-top: 15px;
	margin-top: 0;
  }
}
.hero-section-2 .hero-content .top-content .description p {
	/* max-width: 580px; */
	color: var(--white-color);
	margin-bottom: 0;
	font-size: 18px;
	margin-bottom: 20px;
}
.hero-section-2 .hero-content .top-content .hero-button {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  gap: 15px;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.hero-section-2 .hero-content .customers-box {
  border-radius: var(--border-radius-three);
}
@media (max-width: 1199px) {
  .hero-section-2 .hero-content .customers-box {
    border-radius: 20px;
  }
}
.hero-section-2 .hero-content .customers-box {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.13) 0%, rgba(255, 255, 255, 0) 100%);
  max-width: 309px;
  position: absolute;
  right: 4%;
  top: 20%;
  padding: 20px 20px 20px;
}
@media (max-width: 991px) {
  .hero-section-2 .hero-content .customers-box {
    top: 15%;
  }
}
@media (max-width: 767px) {
  .hero-section-2 .hero-content .customers-box {
    display: none;
  }
}
.hero-section-2 .hero-content .customers-box .customers-vector {
  position: absolute;
  top: -28px;
  right: 20px;
  width: 56px;
  height: 56px;
  -webkit-animation: rotate 10s linear infinite;
  -moz-animation: rotate 10s linear infinite;
  -o-animation: rotate 10s linear infinite;
  animation: rotate 10s linear infinite;
}
.hero-section-2 .hero-content .customers-box p {
  font-weight: 400;
  color: var(--white-color);
  margin: 0;
}
.hero-section-2 .location-wapper {
  max-width: 1600px;
  margin: 0 auto;
  border-radius: var(--border-radius-four);
}
@media (max-width: 1199px) {
  .hero-section-2 .location-wapper {
    border-radius: var(--border-radius-three);
  }
}
@media (max-width: 1199px) and (max-width: 1199px) {
  .hero-section-2 .location-wapper {
    border-radius: 20px;
  }
}

.hire-section .hire-wapper {
  display: grid;
  grid-gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 991px) {
  .hire-section .hire-wapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .hire-section .hire-wapper {
    grid-template-columns: repeat(1, 1fr);
  }
}
.hire-section .hire-wapper .hire-items {
  padding: 25px;
  border-radius: 20px;
}
@media (max-width: 1199px) {
  .hire-section .hire-wapper .hire-items {
    border-radius: 20px;
  }
}
.hire-section .hire-wapper .hire-items {
  background: linear-gradient(180deg, var(--extra-color-one) 0%, rgba(242, 242, 242, 0) 100%);
}
@media (max-width: 767px) {
  .hire-section .hire-wapper .hire-items {
    padding: 20px;
  }
}
.hire-section .hire-wapper .hire-items .hire-content h2 {
  margin-bottom: 19px;
  font-size: 27px;
}
.hire-section .hire-wapper .hire-items .hire-image {
  text-align: center;
}
.hire-section .hire-wapper .hire-items .hire-image figure i{
	font-size: 30px;
    color: #d00506;
}
.how-it-work-section {
  background: var(--gradient-two);
  z-index: 2;
}
.how-it-work-section::after {
  content: "";
  position: absolute;
  height: 240px;
  width: 100%;
  background: var(--body-color);
  bottom: 0;
  z-index: -1;
}
@media (max-width: 767px) {
  .how-it-work-section::after {
    height: 160px;
  }
}
.how-it-work-section .section-title .sub-title {
  color: var(--white-color);
}
.how-it-work-section .how-it-work-wapper {
  margin-bottom: 30px;
}
.how-it-work-section .how-it-work-wapper .how-it-work-items {
  position: relative;
  border-radius: var(--border-radius-three);
}
@media (max-width: 1199px) {
  .how-it-work-section .how-it-work-wapper .how-it-work-items {
    border-radius: 20px;
  }
}
.how-it-work-section .how-it-work-wapper .how-it-work-items {
  padding: 30px 30px 0;
  text-align: center;
  background: linear-gradient(180deg, rgba(223, 114, 61, 0.22) 0%, rgba(230, 226, 218, 0) 100%);
  -webkit-transition: var(--transition);
  -moz-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
  z-index: 1;
}
@media (max-width: 767px) {
  .how-it-work-section .how-it-work-wapper .how-it-work-items {
    padding: 20px;
  }
}
.how-it-work-section .how-it-work-wapper .how-it-work-items::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(223, 114, 61, 0.22), rgba(0, 0, 0, 0));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.how-it-work-section .how-it-work-wapper .how-it-work-items:nth-child(odd) {
  margin-top: 50px;
}
@media (max-width: 767px) {
  .how-it-work-section .how-it-work-wapper .how-it-work-items:nth-child(odd) {
    margin-top: 0;
  }
}
.how-it-work-section .how-it-work-wapper .how-it-work-items .how-it-work-content .number {
    position: relative;
    width: 80px;
    height: 80px;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    margin: 0 auto 10px auto;
    background: linear-gradient(180deg, rgba(223, 114, 61, 0.22) 0%, rgba(230, 226, 218, 0) 100%);
    color: var(--white-color);
    border-radius: 100px;
    font-size: 18px;
    font-family: var(--title-fonts);
    font-weight: 600;
    z-index: 1;
}
.how-it-work-section .how-it-work-wapper .how-it-work-items .how-it-work-content .number::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(223, 114, 61, 0.22), #1d1929);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.how-it-work-section .how-it-work-wapper .how-it-work-items .how-it-work-content h2 {
  margin-bottom: 15px;
  font-size: 26px;
  color: var(--white-color);
}
.how-it-work-section .how-it-work-wapper .how-it-work-items .how-it-work-content p {
    margin-bottom: 0;
    color: var(--white-color);
    font-size: 17px;
}
.how-it-work-section .how-it-work-image {
  width: 100%;
  max-width: 827px;
  margin: 0 auto;
  text-align: center;
}
.how-it-work-section .how-it-work-image figure img{
  width: 500px;
}

.location-wapper {
  background-color: var(--white-color);
  padding: 30px 40px;
  border-radius: var(--border-radius-three);
}
@media (max-width: 1199px) {
  .location-wapper {
    border-radius: 20px;
  }
}
@media (max-width: 991px) {
  .location-wapper {
    padding: 20px;
  }
}
.location-wapper .location-form form {
  display: grid;
  grid-gap: 24px;
  grid-template-columns: repeat(4, 1fr);
  -webkit-align-items: center;
  align-items: center;
}
@media (max-width: 991px) {
  .location-wapper .location-form form {
    grid-gap: 40px;
    grid-template-columns: repeat(1, 1fr);
  }
}
.location-wapper .location-form form .location-item {
  position: relative;
}
.location-wapper .location-form form .location-item::after {
  content: "";
  height: 100%;
  width: 1px;
  background: #E1E1E1;
  position: absolute;
  top: 0;
  right: -10px;
}
@media (max-width: 991px) {
  .location-wapper .location-form form .location-item::after {
    height: 1%;
    width: 100%;
    top: auto;
    right: 0;
    left: 0;
    bottom: -20px;
  }
}
.location-wapper .location-form form .location-item:last-child::after {
  display: none;
}
.location-wapper .location-form form .location-item .field-title-lbl {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  gap: 5px;
  -webkit-align-items: center;
  align-items: center;
  margin-bottom: 15px;
}
.location-wapper .location-form form .location-item .field-title-lbl label {
  margin: 0;
  font-size: 18px;
  color: var(--black-color);
}
@media (max-width: 991px) {
  .location-wapper .location-form form .location-item .field-title-lbl label {
    font-size: 16px;
  }
}
.location-wapper .location-form form .location-item .form-select,
.location-wapper .location-form form .location-item .form-control {
  border: none;
  padding: 0;
  height: auto;
}
.location-wapper .location-form form .location-item.location-btn-wapper {
  padding: 0 0 0 20px;
}

.partners-section-1 .section-title {
  max-width: 100%;
  gap: 25px;
}
.partners-section-1 .section-title::before {
  content: "";
  width: 100%;
  height: 1px;
  background: var(--gradient-one);
  position: absolute;
  top: 10px;
  left: 0;
}
.partners-section-1 .section-title h2 {
  background: var(--white-color);
  font-size: 20px;
  width: max-content;
  text-align: center;
  margin: 0 auto;
  padding: 0 15px;
}

.pricing-section .pricing-heading {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  gap: 20px;
}
.pricing-section .pricing-heading .pricing-vector {
  -webkit-animation: rotate 10s linear infinite;
  -moz-animation: rotate 10s linear infinite;
  -o-animation: rotate 10s linear infinite;
  animation: rotate 10s linear infinite;
}
.pricing-section .pricing-heading .section-title-area {
  flex: 1;
}
.pricing-section .pricing-heading .section-title-area .section-title {
  flex: 1;
}
.pricing-section .pricing-tabs {
  text-align: center;
  margin-bottom: 30px;
}
.pricing-section .pricing-tabs .nav-tabs {
  background-color: var(--extra-color);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 10px;
  border-radius: 100px;
  overflow: hidden;
}
.pricing-section .pricing-tabs .nav-tabs button {
  background-color: var(--background-one) !important;
  border: none;
  padding: 10px 25px;
  text-transform: capitalize;
  color: var(--black-color) !important;
  border-radius: 100px;
}
.pricing-section .pricing-tabs .nav-tabs button.active {
  background-color: #d00506 !important;
  color: var(--white-color) !important;
}
.pricing-section .pricing-image-item {
  position: relative;
  margin-bottom: 30px;
  background-color: var(--secondary-color);
  height: calc(100% - 30px);
  padding: 30px;
  border-radius: var(--border-radius-three);
}
@media (max-width: 1199px) {
  .pricing-section .pricing-image-item {
    border-radius: 20px;
    padding: 20px;
  }
}
.pricing-section .pricing-image-item .pricing-image-content {
  position: relative;
  z-index: 1;
}
.pricing-section .pricing-image-item .pricing-image-content span {
  color: var(--white-color);
  margin-bottom: 10px;
  text-transform: uppercase;
  display: block;
}
.pricing-section .pricing-image-item .pricing-image-content h3 {
  margin-bottom: 10px;
  color: var(--white-color);
}
.pricing-section .pricing-image-item .pricing-image-content p {
  color: var(--white-color);
}
.pricing-section .pricing-image-item .pricing-image-content a {
  margin-top: 20px;
  background-color: var(--white-color);
  color: var(--black-color);
  border-radius: 50%;
  overflow: hidden;
  width: 45px;
  height: 45px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.pricing-section .pricing-image-item .pricing-image-content a:hover {
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -ms-transform: rotate(0);
  -o-transform: rotate(0);
  transform: rotate(0);
  background-color: #d00506;
  color: var(--white-color);
}
.pricing-section .pricing-image-item .pricing-image {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
@media (max-width: 991px) {
  .pricing-section .pricing-image-item .pricing-image {
    position: relative;
  }
}
.pricing-section .pricing-image-item .pricing-image img {
  max-width: 320px;
  width: 100%;
}
.pricing-section .pricing-item {
  position: relative;
  margin-bottom: 30px;
  border-radius: var(--border-radius-three);
}
@media (max-width: 1199px) {
  .pricing-section .pricing-item {
    border-radius: 20px;
  }
}
.pricing-section .pricing-item {
  background: #e6e2da;
  padding: 30px 30px;
  -webkit-transition: var(--transition);
  -moz-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}
@media (max-width: 1199px) {
  .pricing-section .pricing-item {
    padding: 30px 20px;
  }
}
.pricing-section .pricing-item .pricing-content .pricing-text {
  position: relative;
  text-align: center;
}
.pricing-section .pricing-item .pricing-content .pricing-text .pricing-plan-title {
	font-weight: 600;
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--black-color);
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    font-family: var(--title-fonts);
}
.pricing-section .pricing-item .pricing-content .pricing-text .pricing-offer span {
  color: #d00506;
  display: inline-block;
  margin-right: 5px;
}
.pricing-section .pricing-item .pricing-content .pricing-text .pricing-plan-price {
    color: var(--black-color);
    font-size: 25px;
    font-weight: 600;
    width: 100%;
    text-align: center;
    -webkit-align-items: center;
    align-items: center;
    background-color: var(--extra-color-one);
    border-radius: 45px;
}
@media (max-width: 1199px) {
  .pricing-section .pricing-item .pricing-content .pricing-text .pricing-plan-price {
    border-radius: 20px;
  }
}
.pricing-section .pricing-item .pricing-content .pricing-text .pricing-plan-price {
   padding: 12px;
   margin-bottom: 17px;
}
@media (max-width: 991px) {
  .pricing-section .pricing-item .pricing-content .pricing-text .pricing-plan-price {
	font-size: 23px;
	padding: 10px;
  }
}
.pricing-section .pricing-item .pricing-content .pricing-text .pricing-plan-price span {
  font-size: 22px;
  font-weight: 500;
  color: var(--black-color);
}
.pricing-section .pricing-item .pricing-content .pricing-list p {
  font-weight: 600;
}
.pricing-section .pricing-item .pricing-content .pricing-list .pricing-button-wapper {
  text-align: center;
}
.pricing-section .pricing-item .pricing-content .call-us {
  text-align: center;
}
.pricing-section .pricing-item .pricing-content .call-us .call-number {
  font-size: 26px;
  font-weight: 600;
  color: var(--black-color);
  line-height: normal;
  font-family: var(--title-fonts);
  margin: 0;
}
.pricing-section .pricing-footer p {
  margin: 0;
}
.pricing-section .pricing-footer p a {
  color: #d00506;
  text-decoration: underline;
}

.priority-section {
  background: var(--gradient-two);
}
.priority-section .priority-title-left {
  position: relative;
  padding-left: 100px;
}
@media (max-width: 991px) {
  .priority-section .priority-title-left {
    padding-left: 0;
    margin-bottom: 40px;
  }
}
.priority-section .priority-title-left .priority-star {
  position: absolute;
  left: 0;
  -webkit-animation: rotate 10s linear infinite;
  -moz-animation: rotate 10s linear infinite;
  -o-animation: rotate 10s linear infinite;
  animation: rotate 10s linear infinite;
}
@media (max-width: 991px) {
  .priority-section .priority-title-left .priority-star {
    display: none;
  }
}
.priority-section .priority-title-left .section-title h2 {
  color: var(--white-color);
}
.priority-section .priority-title-left .our-featured-box {
  max-width: 250px;
  border-radius: 10px;
}
.priority-section .priority-title-left .our-featured-box p {
  color: var(--white-color);
  margin: 0;
}
.priority-section .priority-title-right .priority-button {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  gap: 25px;
  padding: 1.5rem 2rem;
  border-left: 1px solid #AFA591;
  margin-bottom: 50px;
}
.priority-section .priority-title-right .priority-description .protocol-text {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: var(--white-color);
  margin-bottom: 30px;
  text-transform: uppercase;
  line-height: 1.4;
}
.priority-section .priority-title-right .priority-description .protocol-desc {
  color: var(--white-color);
}
.priority-section .priority-image {
  padding-top: 50px;
  margin: 0 auto;
}

.progress-wapper {
  padding-right: 10px;
}
.progress-wapper .single-progressbar {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  flex-direction: column;
  margin-bottom: 25px;
}
.progress-wapper .single-progressbar:last-of-type {
  margin-bottom: 0;
}
.progress-wapper .single-progressbar .progress-title {
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 15px;
}
.progress-wapper .single-progressbar .progressbar {
  position: relative;
  width: 100%;
  height: 6px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 24px;
}
.progress-wapper .single-progressbar .progressbar .progress-bar-count {
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  width: 0;
  background-color: #d00506;
  -webkit-transition: all 800ms linear;
  -moz-transition: all 800ms linear;
  -ms-transition: all 800ms linear;
  -o-transition: all 800ms linear;
  transition: all 800ms linear;
  border-radius: 24px;
}
.progress-wapper .single-progressbar .progressbar .progress-bar-count::before {
  content: attr(data-percent);
  position: absolute;
  padding: 2px 6px;
  background-color: #d00506;
  color: var(--white-color);
  font-size: 12px;
  font-weight: 600;
  line-height: 15px;
  top: -29px;
  right: 0;
  border-radius: 5px;
  -webkit-transform: translateX(50%);
  -moz-transform: translateX(50%);
  -ms-transform: translateX(50%);
  -o-transform: translateX(50%);
  transform: translateX(50%);
}
.progress-wapper .single-progressbar .progressbar .progress-bar-count::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: #d00506;
  top: -14px;
  right: 0;
  -webkit-transform: translateX(50%) rotate(45deg);
  -moz-transform: translateX(50%) rotate(45deg);
  -ms-transform: translateX(50%) rotate(45deg);
  -o-transform: translateX(50%) rotate(45deg);
  transform: translateX(50%) rotate(45deg);
}
.progress-wapper .single-progressbar .progress-content {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  gap: 20px;
  margin-top: 10px;
}
.progress-wapper .single-progressbar .progress-content p {
  margin-bottom: 15px;
}
.progress-wapper .single-progressbar .progress-content p span {
  color: #d00506;
  font-weight: 600;
}

.rentals-section-1 .rentals-heading {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  gap: 20px;
}
.rentals-section-1 .rentals-heading .rentals-vector {
  -webkit-animation: rotate 10s linear infinite;
  -moz-animation: rotate 10s linear infinite;
  -o-animation: rotate 10s linear infinite;
  animation: rotate 10s linear infinite;
}
.rentals-section-1 .rentals-heading .section-title-area {
  flex: 1;
}
.rentals-section-1 .rentals-heading .section-title-area .section-title {
  flex: 1;
}
.rentals-section-1 .rentals-heading .section-title-area .section-title p {
  font-size: 18px;
  line-height: 1.6;
}
.rentals-section-1 .rentals-wapper {
  display: grid;
  grid-gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 991px) {
  .rentals-section-1 .rentals-wapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .rentals-section-1 .rentals-wapper {
    grid-template-columns: repeat(1, 1fr);
  }
}
.rentals-section-1 .more-rentals-content {
  width: 100%;
  max-width: 630px;
  text-align: center;
  margin: 0 auto;
}
.rentals-section-1 .more-rentals-content p {
  margin-bottom: 15px;
}
.rentals-section-2 .result-box {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .rentals-section-2 .result-box {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    flex-direction: column;
  }
}
@media (max-width: 1199px) {
  .rentals-section-2 .result-box {
    margin-top: 30px;
  }
}
@media (max-width: 575px) {
  .rentals-section-2 .result-box .result-count {
    text-align: center;
  }
}
.rentals-section-2 .result-box .form-group {
  width: 40%;
}
@media (max-width: 991px) {
  .rentals-section-2 .result-box .form-group {
    width: 60%;
  }
}
@media (max-width: 575px) {
  .rentals-section-2 .result-box .form-group {
    width: 100%;
  }
}
.rentals-section-2 .result-box .form-group .field-short-by {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  gap: 15px;
}
.rentals-section-2 .result-box .form-group .field-short-by label {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0;
}
.rentals-section-2 .result-box .form-group .field-short-by select {
  flex: 1 1 0%;
  border-radius: var(--border-radius-three);
}
@media (max-width: 1199px) {
  .rentals-section-2 .result-box .form-group .field-short-by select {
    border-radius: 20px;
  }
}
.rentals-section-2 .rentals-wapper {
  display: grid;
  grid-gap: 24px;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 767px) {
  .rentals-section-2 .rentals-wapper {
    grid-template-columns: repeat(1, 1fr);
  }
}
.rentals-section-2 .rentals-grid {
  display: grid;
  grid-gap: 24px;
  grid-template-columns: repeat(1, 1fr);
}
.rentals-section-2 .rentals-grid .car-items {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  gap: 20px;
}
@media (max-width: 767px) {
  .rentals-section-2 .rentals-grid .car-items {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
}
.rentals-section-2 .rentals-grid .car-items .car-image {
  width: 100%;
  max-width: 316px;
  margin-bottom: 0;
  height: 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
@media (max-width: 1399px) {
  .rentals-section-2 .rentals-grid .car-items .car-image {
    max-width: 216px;
  }
}
@media (max-width: 991px) {
  .rentals-section-2 .rentals-grid .car-items .car-image {
    max-width: 196px;
  }
}
@media (max-width: 767px) {
  .rentals-section-2 .rentals-grid .car-items .car-image {
    max-width: 100%;
  }
}
.rentals-section-2 .rentals-grid .car-items .car-image figure {
  height: 100%;
  width: 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.rentals-section-2 .rentals-grid .car-items .car-image figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .rentals-section-2 .rentals-grid .car-items .car-content {
    width: 100%;
  }
}
.rentals-section-2 .rentals-grid .car-items .booking-wrap {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  gap: 15px;
  margin-top: 0;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  flex-direction: column;
  padding: 30px 20px;
  background-color: var(--extra-color-one);
  border-radius: 20px;
  margin-left: auto;
}
@media (max-width: 767px) {
  .rentals-section-2 .rentals-grid .car-items .booking-wrap {
    margin-left: 0;
    width: 100%;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    flex-direction: row;
    padding: 0;
    background: transparent;
  }
}
.rentals-section-2 .rentals-grid .car-items .booking-wrap .booking-price {
  text-align: center;
}
@media (max-width: 767px) {
  .rentals-section-2 .rentals-grid .car-items .booking-wrap .booking-price {
    text-align: start;
  }
}
.rentals-section-2 .rentals-grid .car-items .booking-wrap .booking-price p {
  color: var(--secondary-color);
  margin-bottom: 0;
  font-family: var(--title-fonts);
  font-size: 24px;
  font-weight: 600;
  line-height: normal;
}
.rentals-section-2 .rentals-grid .car-items .booking-wrap .theme-button {
  padding: 10px 12px;
}

@media (max-width: 991px) {
  .rentals-single-section .rentals-single-post {
    margin-bottom: 40px;
  }
}
.rentals-single-section .rentals-single-post .rentals-heading {
  position: relative;
  margin-bottom: 10px;
}
.rentals-single-section .rentals-single-post .rentals-heading .rentals-heading-title {
  margin-bottom: 10px;
}
.rentals-single-section .rentals-single-post .rentals-heading .rentals-heading-title h2 {
  font-size: 33px;
  text-transform: capitalize;
  font-weight: 700;
}
@media (max-width: 991px) {
  .rentals-single-section .rentals-single-post .rentals-heading .rentals-heading-title h2 {
    font-size: 32px;
  }
}
.rentals-single-section .rentals-single-post .rentals-heading .rentals-heading-price {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  gap: 20px;
}
.rentals-single-section .rentals-single-post .rentals-heading .rentals-heading-price .room-star {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  gap: 5px;
}
.rentals-single-section .rentals-single-post .rentals-single-image-tabs {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .rentals-single-section .rentals-single-post .rentals-single-image-tabs {
    margin-bottom: 50px;
  }
}
.rentals-single-section .rentals-single-post .rentals-single-image-tabs .large-images {
  margin-bottom: 20px;
}
.rentals-single-section .rentals-single-post .rentals-single-image-tabs .large-images .tab-content .tab-pane figure {
  background-color: var(--extra-color-one);
  overflow: hidden;
  border-radius: var(--border-radius-three);
}
@media (max-width: 1199px) {
  .rentals-single-section .rentals-single-post .rentals-single-image-tabs .large-images .tab-content .tab-pane figure {
    border-radius: 20px;
  }
}
.rentals-single-section .rentals-single-post .rentals-single-image-tabs .large-images .tab-content .tab-pane figure img {
  width: 100%;
  object-fit: cover;
}
.rentals-single-section .rentals-single-post .rentals-single-image-tabs .thumbs-images nav .nav-tabs {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  gap: 20px;
  border-bottom: none;
  margin-bottom: 1px;
}
.rentals-single-section .rentals-single-post .rentals-single-image-tabs .thumbs-images nav .nav-tabs .nav-link {
  padding: 0;
  width: 120px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: var(--border-radius-two);
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
@media (max-width: 767px) {
  .rentals-single-section .rentals-single-post .rentals-single-image-tabs .thumbs-images nav .nav-tabs .nav-link {
    border-radius: var(--border-radius-one);
  }
}
@media (max-width: 575px) {
  .rentals-single-section .rentals-single-post .rentals-single-image-tabs .thumbs-images nav .nav-tabs .nav-link {
    width: 85px;
  }
}
.rentals-single-section .rentals-single-post .rentals-single-image-tabs .thumbs-images nav .nav-tabs .nav-link.active {
  border-color: #d00506;
}
.rentals-single-section .rentals-single-post .rentals-single-image-tabs .thumbs-images nav .nav-tabs .nav-link figure img {
  width: 100%;
  object-fit: cover;
}
.rentals-single-section .rentals-single-post .rentals-single-contain .rentals-entry-content h2 {
  margin-bottom: 15px;
  font-size: 42px;
  text-transform: capitalize;
}
@media (max-width: 991px) {
  .rentals-single-section .rentals-single-post .rentals-single-contain .rentals-entry-content h2 {
    font-size: 32px;
  }
}
.rentals-single-section .rentals-single-post .rentals-single-contain .rentals-entry-content h3 {
    /*font-size: 25px;
    text-transform: capitalize;
    margin-bottom: 10px;
    background: #d00506;
    padding: 10px 19px 6px;
    border-radius: 5px;
    color: #fff;*/
    position: relative;
    display: block;
    margin: 13px 0 15px;
    padding: 10px 15px 10px;
    font-size: 23px;
    font-weight: 700;
    color: #222;
    background: #fff;
    border-radius: 6px;
    border-left: 5px solid #e00000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}
.rentals-single-section .rentals-single-post .rentals-single-contain .rentals-entry-content h3::after {
    content: "";
    position: absolute;
    left: 18px;
    bottom: 0;
    width: 75px;
    height: 4px;
    background: #e00000;
    border-radius: 10px;
}
.rentals-single-section .rentals-single-post .rentals-single-contain .rentals-entry-content p {
    font-size: 16px;
    line-height: 1.6rem;
    margin-bottom: 11px;
}
.rentals-single-section .rentals-single-post .rentals-single-contain .rentals-entry-content ul{
    margin-bottom: 11px;
}
.rentals-single-section .rentals-single-post .rentals-single-contain .rentals-entry-content ul li{
    font-size: 16px;
    line-height: 1.5rem;
    margin-bottom: 8px;
}
.rentals-single-section .rentals-single-post .rentals-single-contain .rentals-entry-content h4{
    /*font-size: 21px;
    text-transform: capitalize;
    margin-bottom: 10px;
    background: #fff;
    padding: 10px 19px 6px;
    border-radius: 5px;
    color: #d00506;*/
	position: relative;
    display: inline-block;
    margin: 10px 0 10px;
    padding: 0px 0px 7px 0;
    font-size: 19px;
    font-weight: 600;
    color: #222;
}
.rentals-single-section .rentals-single-post .rentals-single-contain .rentals-entry-content h4::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 45px;
    height: 3px;
    background: #e00000;
    border-radius: 5px;
}
@media (max-width: 991px) {
  .rentals-single-section .rentals-single-post .rentals-single-contain .rentals-entry-content h3 {
    font-size: 24px;
  }
}
.rentals-single-section .rentals-single-post .rentals-single-contain .rentals-entry-content .rentals-desc {
  position: relative;
  margin-bottom: 40px;
}
.rentals-single-section .rentals-single-post .rentals-single-contain .rentals-entry-content .rentals-facilities {
  position: relative;
  margin-bottom: 40px;
}
.rentals-single-section .rentals-single-post .rentals-single-contain .rentals-entry-content .rentals-facilities .rentals-facilities-list ul li {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  gap: 10px;
}
.rentals-single-section .rentals-single-post .rentals-single-contain .rentals-entry-content .rentals-facilities .rentals-facilities-list ul li i {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  height: 32px;
  width: 32px;
  background-color: var(--extra-color-one);
  color: #d00506;
  border-radius: 100px;
}
.rentals-single-section .rentals-single-post .rentals-single-contain .rentals-entry-content .rentals-facilities .rentals-facilities-list ul li p {
  margin-bottom: 0;
}
.rentals-single-section .rentals-single-post .rentals-single-contain .rentals-entry-content .rentals-facilities .rentals-facilities-list ul li:hover i {
  background-color: #d00506;
  color: var(--white-color);
}
.rentals-single-section .rentals-single-post .rentals-single-contain .rentals-entry-content .rentals-extra-services {
  position: relative;
  margin-bottom: 40px;
}
.rentals-single-section .rentals-single-post .rentals-single-contain .rentals-entry-content .rentals-extra-services .rentals-extra-services-list ul li .form-group .field-inner {
  -webkit-align-items: center;
  align-items: center;
}
.rentals-single-section .rentals-single-post .rentals-single-contain .rentals-entry-content .rentals-extra-services .rentals-extra-services-list ul li .form-group .field-inner label {
  font-size: 16px;
}
.rentals-single-section .rentals-single-post .rentals-single-contain .rentals-entry-content .rentals-rules {
  position: relative;
  margin-bottom: 40px;
}
.rentals-single-section .rentals-single-post .rentals-single-contain .rentals-entry-content .rentals-rules .rentals-rules-list li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 20px;
}
.rentals-single-section .rentals-single-post .rentals-single-contain .rentals-entry-content .rentals-rules .rentals-rules-list li:nth-last-child(1) {
  margin-bottom: 0;
}
.rentals-single-section .rentals-single-post .rentals-single-contain .rentals-entry-content .rentals-rules .rentals-rules-list li::before {
  content: "";
  display: block;
  position: absolute;
  top: 10px;
  left: 0;
  height: 6px;
  width: 6px;
  background: var(--secondary-color);
  border-radius: 100px;
}
.rentals-single-section .rentals-single-post .rentals-single-contain .rentals-entry-content .rentals-rules .rentals-rules-list li p {
  margin-bottom: 0;
}
.rentals-single-section .rentals-single-post .rentals-single-contain .rentals-entry-content .rentals-accordion .accordion h2 {
  margin-bottom: 0;
}

.services-section-1 .services-wapper .services-items {
  position: relative;
  z-index: 1;
  overflow: hidden;
  -webkit-transition: var(--transition);
  -moz-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  flex-direction: column;
  border-radius: 10px;
  background: #ececec;
  padding: 25px 25px;
}
@media (max-width: 1199px) {
  .services-section-1 .services-wapper .services-items {
    padding: 20px;
  }
}
.services-section-1 .services-wapper .services-items .services-icon {
  margin-bottom: 20px;
}
.services-section-1 .services-wapper .services-items .services-icon figure img {
  width: 100%;
  max-width: 60px;
  -webkit-transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  -ms-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}
.services-section-1 .services-wapper .services-items .services-content h2 {
  font-size: 26px;
  margin-bottom: 16px;
}
.services-section-1 .services-wapper .services-items .services-content p {
  margin-bottom: 16px;
}
.services-section-1 .services-wapper .services-items .services-content .services-button {
    border-top: 1px solid #E1E1E1;
    padding-top: 15px;
    margin-top: 0px;
}
.services-section-1 .services-wapper .services-items::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  z-index: -1;
  background: var(--gradient-one);
  border-radius: 100px 100px 0 0;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.services-section-1 .services-wapper .services-items:hover::before {
  height: 100%;
  border-radius: 0;
}
.services-section-1 .services-wapper .services-items:hover .services-icon figure img {
  filter: brightness(0) invert(1);
}
.services-section-1 .services-wapper .services-items:hover .services-content h2 {
  color: var(--white-color);
}
.services-section-1 .services-wapper .services-items:hover .services-content p {
  color: var(--white-color);
}
.services-section-1 .services-wapper .services-items:hover .services-content .read-more-btn {
  color: var(--white-color);
}
.services-section-1 .services-wapper .services-items:hover .services-content .read-more-btn::before {
  background-color: var(--white-color);
  color: var(--secondary-color);
}
.services-section-2 .services-wapper {
  display: grid;
  grid-gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 991px) {
  .services-section-2 .services-wapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .services-section-2 .services-wapper {
    grid-template-columns: repeat(1, 1fr);
  }
}
.services-section-2 .services-wapper .services-items {
  position: relative;
  z-index: 1;
  -webkit-transition: var(--transition);
  -moz-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  flex-direction: column;
  border-radius: 30px;
  background: var(--gradient-one);
  padding: 25px 40px;
}
@media (max-width: 1199px) {
  .services-section-2 .services-wapper .services-items {
    padding: 20px;
  }
}
.services-section-2 .services-wapper .services-items .services-icon {
  margin-bottom: 80px;
  height: 100px;
  width: 100px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-three);
}
@media (max-width: 1199px) {
  .services-section-2 .services-wapper .services-items .services-icon {
    border-radius: 20px;
  }
}
.services-section-2 .services-wapper .services-items .services-icon {
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .services-section-2 .services-wapper .services-items .services-icon {
    height: 80px;
    width: 80px;
  }
}
.services-section-2 .services-wapper .services-items .services-icon figure img {
  width: 100%;
  max-width: 60px;
  -webkit-transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  -ms-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  filter: brightness(0) invert(1);
}
@media (max-width: 991px) {
  .services-section-2 .services-wapper .services-items .services-icon figure img {
    max-width: 42px;
  }
}
.services-section-2 .services-wapper .services-items .services-content h2 {
  font-size: 26px;
  margin-bottom: 15px;
  color: var(--white-color);
}
.services-section-2 .services-wapper .services-items .services-content p {
  margin-bottom: 25px;
  color: var(--white-color);
}
.services-section-2 .services-wapper .services-items .services-content .services-button {
  border-top: 1px solid #E1E1E1;
  padding-top: 40px;
  margin-top: 40px;
}
.services-section-2 .services-wapper .services-items .services-content .services-button a {
  color: var(--white-color);
}
.services-section-2 .services-wapper .services-items .services-content .services-button a::before {
  background-color: var(--white-color);
  color: var(--text-color);
}
.services-section-2 .services-wapper .services-items::before {
  content: "";
  width: 42px;
  height: 53px;
  background-image: url("data:image/svg+xml,%0A%3Csvg width='42' height='49' viewBox='0 0 42 49' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M42 0H0H2.09786C5.07622 0 7.89957 1.32758 9.79935 3.62136L39.7015 39.7248C41.1871 41.5185 42 43.7744 42 46.1035V49V0Z' fill='%23E6E2DA'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: 0;
}
.services-section-2 .services-wapper .services-items:hover {
  background: var(--gradient-two);
  transform: translateY(-5px);
}
.services-section-2 .services-wapper .services-items:hover .services-content h2 {
  color: var(--white-color);
}
.services-section-2 .services-wapper .services-items:hover .services-content p {
  color: var(--white-color);
}
.services-section-2 .services-wapper .services-items:hover .services-content .read-more-btn {
  color: var(--white-color);
}
.services-section-2 .services-wapper .services-items:hover .services-content .read-more-btn::before {
  background-color: var(--white-color);
  color: var(--secondary-color);
}
.services-section-2 .more-service-content {
  width: 100%;
  max-width: 630px;
  text-align: center;
  margin: 0 auto;
}
.services-section-2 .more-service-content p {
  margin-bottom: 20px;
}
.services-section-2 .more-service-content p a {
  color: #d00506;
}
.services-section-2 .more-service-content p a:hover {
  text-decoration: underline;
}

@media (max-width: 1199px) {
  .service-single-section .service-single-post {
    margin-bottom: 40px;
  }
}
.service-single-section .service-single-post .service-single-media {
  margin-bottom: 30px;
}
.service-single-section .service-single-post .service-single-media figure {
  overflow: hidden;
  border-radius: var(--border-radius-three);
}
@media (max-width: 1199px) {
  .service-single-section .service-single-post .service-single-media figure {
    border-radius: 20px;
  }
}
.service-single-section .service-single-post .service-single-media figure img {
  width: 100%;
  object-fit: cover;
}
.service-single-section .service-single-post .service-single-contain .service-entry-content h2 {
  margin-bottom: 15px;
  font-size: 42px;
  text-transform: capitalize;
}
@media (max-width: 991px) {
  .service-single-section .service-single-post .service-single-contain .service-entry-content h2 {
    font-size: 32px;
  }
}
.service-single-section .service-single-post .service-single-contain .service-entry-content h3 {
  font-size: 28px;
  text-transform: capitalize;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .service-single-section .service-single-post .service-single-contain .service-entry-content h3 {
    font-size: 26px;
  }
}
.service-single-section .service-single-post .service-single-contain .service-entry-content .service-gallery figure {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: var(--border-radius-three);
}
@media (max-width: 1199px) {
  .service-single-section .service-single-post .service-single-contain .service-entry-content .service-gallery figure {
    border-radius: 20px;
  }
}
.service-single-section .service-single-post .service-single-contain .service-entry-content .service-gallery figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-single-section .service-single-post .service-single-contain .service-entry-content .accordion h2 {
  margin-bottom: 0;
}

.testimonials-section .testimonials-image-box {
  position: relative;
  padding-bottom: 30px;
  margin-right: 50px;
  height: 100%;
}
@media (max-width: 991px) {
  .testimonials-section .testimonials-image-box {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .testimonials-section .testimonials-image-box {
    margin-bottom: 30px;
    height: auto;
  }
}
.testimonials-section .testimonials-image-box .testimonials-image {
  position: relative;
  height: 100%;
}
.testimonials-section .testimonials-image-box .testimonials-image figure {
  display: block;
  height: 100%;
  border-radius: var(--border-radius-three);
}
@media (max-width: 1199px) {
  .testimonials-section .testimonials-image-box .testimonials-image figure {
    border-radius: 20px;
  }
}
.testimonials-section .testimonials-image-box .testimonials-image figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius-three);
}
@media (max-width: 1199px) {
  .testimonials-section .testimonials-image-box .testimonials-image figure img {
    border-radius: 20px;
  }
}
.testimonials-section .testimonials-image-box .testimonial-avatar-box {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: fit-content;
  background-color: var(--white-color);
  border-radius: 100px;
  padding: 10px 30px 10px 10px;
  margin: 0 auto;
  z-index: 1;
}
.testimonials-section .testimonials-image-box .testimonial-avatar-box .user-listing p {
  color: var(--text-color);
}
.testimonials-section .testimonials-item {
  padding: 35px;
  background: var(--white-color);
  border-radius: var(--border-radius-three);
}
@media (max-width: 1199px) {
  .testimonials-section .testimonials-item {
    border-radius: 20px;
  }
}
@media (max-width: 1199px) {
  .testimonials-section .testimonials-item {
    padding: 20px;
  }
}
.testimonials-section .testimonials-item .testimonials-meta .testimonials-rating {
  margin-bottom: 15px;
}
.testimonials-section .testimonials-item .testimonials-meta .testimonials-rating i {
  font-size: 16px;
  background: var(--primary-rgb-05);
  padding: 5px;
  display: inline-block;
  border-radius: 2px;
}
.testimonials-section .testimonials-item .testimonials-content {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color-two);
}
.testimonials-section .testimonials-item .testimonials-content h2 {
  font-size: 26px;
  margin-bottom: 10px;
}
.testimonials-section .testimonials-item .testimonials-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 0;
}
@media (max-width: 991px) {
  .testimonials-section .testimonials-item .testimonials-content p {
    font-size: 16px;
    line-height: 1.4;
  }
}
.testimonials-section .testimonials-item .testimonials-author {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
}
.testimonials-section .testimonials-item .testimonials-author .testimonials-author-image {
  display: block;
  overflow: hidden;
  border-radius: 50%;
  margin-right: 16px;
  width: 70px;
  height: 70px;
}
.testimonials-section .testimonials-item .testimonials-author .testimonials-author-image figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonials-section .testimonials-item .testimonials-author .testimonials-author-content h2 {
  font-size: 26px;
}
.testimonials-section .testimonials-item .testimonials-author .testimonials-author-content p {
  margin: 0;
}
.testimonials-section .testimonials-wapper {
  display: grid;
  grid-gap: 24px;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 767px) {
  .testimonials-section .testimonials-wapper {
    grid-template-columns: repeat(1, 1fr);
  }
}

.video-section-1:after {
  content: "";
  height: 75%;
  width: 100%;
  background: var(--white-color);
  position: absolute;
  top: 0;
  z-index: -1;
}
.video-section-1 .video-circle {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 620px;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  border-radius: var(--border-radius-three);
}
@media (max-width: 1199px) {
  .video-section-1 .video-circle {
    border-radius: 20px;
  }
}
.video-section-1 .video-circle {
  overflow: hidden;
  z-index: 1;
}
@media (max-width: 991px) {
  .video-section-1 .video-circle {
    height: 480px;
  }
}
.video-section-1 .video-circle::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background: var(--black-color);
  top: 0;
  opacity: 0.3;
  z-index: -1;
}
.video-section-2 {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.video-section-2::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: var(--black-color);
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0.62;
}
.video-section-2 .video-circle {
  position: relative;
  height: 620px;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  border-radius: var(--border-radius-three);
}
@media (max-width: 1199px) {
  .video-section-2 .video-circle {
    border-radius: 20px;
  }
}
.video-section-2 .video-circle {
  z-index: 1;
}
@media (max-width: 991px) {
  .video-section-2 .video-circle {
    height: 480px;
  }
}
.video-section-2 .counter-wapper {
  padding-bottom: 100px;
}
.video-section-2 .counter-wapper .counter-list {
  display: grid;
  grid-gap: 24px;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 991px) {
  .video-section-2 .counter-wapper .counter-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .video-section-2 .counter-wapper .counter-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.video-section-2 .counter-wapper .counter-list .counter-item {
  text-align: center;
  padding: 30px;
  border-radius: 24px 24px 0 0;
  background: linear-gradient(180deg, var(--secondary-color) 0%, rgba(230, 226, 218, 0) 100%);
}
@media (max-width: 1199px) {
  .video-section-2 .counter-wapper .counter-list .counter-item {
    padding: 20px;
  }
}
.video-section-2 .counter-wapper .counter-list .counter-item .counter-content .counter-text {
  color: var(--white-color);
}
.video-section-2 .counter-wapper .counter-list .counter-item .counter-content .counter-title {
  color: var(--white-color);
}

.video-play {
  width: 100px;
  height: 100px;
  background-color: var(--white-color);
  color: var(--black-color);
  font-size: 24px;
  z-index: 1;
  margin: auto;
  position: relative;
  border-radius: 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-animation: spineer2 2s infinite;
  -moz-animation: spineer2 2s infinite;
  -o-animation: spineer2 2s infinite;
  animation: spineer2 2s infinite;
}
@media (max-width: 540px) {
  .video-play {
    width: 80px;
    height: 80px;
    font-size: 18px;
  }
}/*# sourceMappingURL=main.css.map */