/* 

|--------------------------------------------------------------------------
| TABLE OF CONTENTS:
|--------------------------------------------------------------------------
| 1. Basic Color Variable
| 2. Typography
| 3. Preloader
| 4. Spacing
| 5. General
| 6. Slider
| 7. Video Popup
| 8. Header
| 9. Footer
| 10. Pagination
| 11. Common Page Title
| 12. Button
| 13. Service Card
| 14. Hero
| 15. Service
| 16. Funfact
| 17. Testimonal
| 18. Team
| 19. Pricing Card
| 20. Blog
| 21. Cta
| 22. Choose Us Contain
| 23. Accordion
| 24. Tab
| 25. Contact
| 26. Error Comming Card
| 27. Sticky Content
| 28. gallery
 ................................................................*/
/*--------------------------------------------------------------
1. Basic Color Variable
----------------------------------------------------------------*/
:root {
  --body-font-family: "Sarabun";
  --heading-font-family: "Oxanium";
  --body-color: #f8f4f4;
  --body-bg-color: #101010;
  --heading-color: #111111;
  --border-color: #fff;
  --white-color: #fff;
  --black-color: #000000;
  --primary-color: #e9231c;
}

/*--------------------------------------------------------------
2. Typography
----------------------------------------------------------------*/
html,
body {
  color: var(--body-bg-color);
  font-family: "Sarabun", sans-serif;
  background-color: var(--body-color);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6em;
  overflow-x: hidden;
  scroll-behavior: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
  color: var(--heading-color);
  font-family: "Oxanium", sans-serif;
  padding: 0px;
  margin: 0px;
  font-weight: 700;
  line-height: normal;
  font-style: normal;
}

.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  will-change: transform;
  transform: translateY(100%);
  transition: transform 0.3s;
  display: flex;
  height: 60px;
  box-shadow: 0 -2px 5px -2px rgba(0, 0, 0, 0.1);
  /* background-color: #fff; */
}

.bottom-nav .nav-item {
  flex-grow: 1;
  text-align: center;
  font-size: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-decoration: none;
}

.bottom-nav .call-ph {
  background-color: #1a188d;
  border-top-left-radius: 25px;
}

.msg-wt {
  background-color: #148a34;
  border-top-right-radius: 25px;
}

.bottom-nav .nav-item .icon {
  font-size: 20px;
}

.bottom-nav .nav-item.active {
  color: #007bff;
}

.bottom-nav.show {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .bottom-nav {
    display: none;
  }
}

h1 {
  font-size: 50px;
}

h2 {
  font-size: 48px;
}

h3 {
  font-size: 36px;
}

h4 {
  font-size: 28px;
}

h5 {
  font-size: 24px;
}

h6 {
  font-size: 20px;
}

p {
  margin: 0px;
  padding: 0px;
  font-weight: 400;
  line-height: 24px;
}

ul {
  margin: 0 0 25px 0;
  padding-left: 20px;
  list-style: square outside none;
}

ol {
  padding-left: 20px;
  margin-bottom: 25px;
}

dfn,
cite,
em,
i {
  font-style: italic;
}

blockquote {
  margin: 0 15px;
  font-style: italic;
  font-size: 20px;
  line-height: 1.6em;
  margin: 0;
}

address {
  margin: 0 0 15px;
}

img {
  border: 0;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
}

button {
  color: inherit;
  transition: all 0.3s ease;
}

a:hover {
  text-decoration: none;
  color: #ff3d24;
  transition: all 0.3s ease;
}

table {
  width: 100%;
  margin-bottom: 25px;
}
table th {
  font-weight: 600;
  color: var(--body-color);
}
table td,
table th {
  border-top: 1px solid #fff;
  padding: 11px 10px;
}

dl {
  margin-bottom: 25px;
}
dl dt {
  font-weight: 600;
}

b,
strong {
  font-weight: bold;
}

pre {
  color: var(--body-color);
  border: 1px solid #fff;
  font-size: 18px;
  padding: 25px;
  border-radius: 5px;
}

kbd {
  font-size: 100%;
  background-color: var(--body-color);
  border-radius: 5px;
}

@media screen and (max-width: 991px) {
  ul {
    margin: 0 0 25px 0;
    padding-left: 20px;
    list-style: square outside none;
  }
  ul.cs_list_style_none {
    list-style: none;
    padding: 0px;
  }
  ul.cs_list_style_none li {
    margin-bottom: 10px;
  }
  ul.cs_list_style_none li h3 {
    font-size: 22px;
  }
  h1,
  h2,
  h3 {
    font-size: 32px;
  }
  h4 {
    font-size: 22px;
  }
}

.serv {
  padding: 60px 0;
}

/*--------------------------------------------------------------
  4. Spacing
----------------------------------------------------------------*/
@media screen and (min-width: 992px) {
  .serv {
    padding: 30px 0;
  }

  .ak-height-0 {
    height: 0px;
  }
  .ak-height-5 {
    height: 5px;
  }
  .ak-height-10 {
    height: 10px;
  }
  .ak-height-15 {
    height: 15px;
  }
  .ak-height-20 {
    height: 20px;
  }
  .ak-height-25 {
    height: 25px;
  }
  .ak-height-30 {
    height: 30px;
  }
  .ak-height-35 {
    height: 35px;
  }
  .ak-height-40 {
    height: 40px;
  }
  .ak-height-45 {
    height: 45px;
  }
  .ak-height-50 {
    height: 50px;
  }
  .ak-height-55 {
    height: 55px;
  }
  .ak-height-60 {
    height: 60px;
  }
  .ak-height-65 {
    height: 65px;
  }
  .ak-height-70 {
    height: 70px;
  }
  .ak-height-75 {
    height: 75px;
  }
  .ak-height-80 {
    height: 80px;
  }
  .ak-height-85 {
    height: 85px;
  }
  .ak-height-90 {
    height: 90px;
  }
  .ak-height-95 {
    height: 95px;
  }
  .ak-height-100 {
    height: 100px;
  }
  .ak-height-105 {
    height: 105px;
  }
  .ak-height-110 {
    height: 110px;
  }
  .ak-height-115 {
    height: 115px;
  }
  .ak-height-120 {
    height: 120px;
  }
  .ak-height-125 {
    height: 125px;
  }
  .ak-height-130 {
    height: 130px;
  }
  .ak-height-135 {
    height: 135px;
  }
  .ak-height-140 {
    height: 140px;
  }
  .ak-height-145 {
    height: 145px;
  }
  .ak-height-150 {
    height: 150px;
  }
  .ak-height-155 {
    height: 155px;
  }
  .ak-height-160 {
    height: 160px;
  }
  .ak-height-165 {
    height: 165px;
  }
  .ak-height-170 {
    height: 170px;
  }
  .ak-height-175 {
    height: 175px;
  }
  .ak-height-180 {
    height: 180px;
  }
  .ak-height-185 {
    height: 185px;
  }
  .ak-height-190 {
    height: 190px;
  }
  .ak-height-195 {
    height: 195px;
  }
  .ak-height-200 {
    height: 200px;
  }
  .ak-height-205 {
    height: 205px;
  }
  .ak-height-210 {
    height: 210px;
  }
  .ak-height-219 {
    height: 219px;
  }
}
@media screen and (max-width: 991px) {
  .ak-height-lg-0 {
    height: 0px;
  }
  .ak-height-lg-5 {
    height: 5px;
  }
  .ak-height-lg-10 {
    height: 10px;
  }
  .ak-height-lg-15 {
    height: 15px;
  }
  .ak-height-lg-20 {
    height: 20px;
  }
  .ak-height-lg-25 {
    height: 25px;
  }
  .ak-height-lg-30 {
    height: 30px;
  }
  .ak-height-lg-35 {
    height: 35px;
  }
  .ak-height-lg-40 {
    height: 40px;
  }
  .ak-height-lg-45 {
    height: 45px;
  }
  .ak-height-lg-50 {
    height: 50px;
  }
  .ak-height-lg-55 {
    height: 55px;
  }
  .ak-height-lg-60 {
    height: 60px;
  }
  .ak-height-lg-65 {
    height: 65px;
  }
  .ak-height-lg-70 {
    height: 70px;
  }
  .ak-height-lg-75 {
    height: 75px;
  }
  .ak-height-lg-80 {
    height: 50px;
  }
  .ak-height-lg-85 {
    height: 85px;
  }
  .ak-height-lg-90 {
    height: 90px;
  }
  .ak-height-lg-95 {
    height: 95px;
  }
  .ak-height-lg-100 {
    height: 100px;
  }
  .ak-height-lg-105 {
    height: 105px;
  }
  .ak-height-lg-110 {
    height: 110px;
  }
  .ak-height-lg-115 {
    height: 115px;
  }
  .ak-height-lg-120 {
    height: 120px;
  }
  .ak-height-lg-125 {
    height: 125px;
  }
  .ak-height-lg-130 {
    height: 130px;
  }
  .ak-height-lg-135 {
    height: 135px;
  }
  .ak-height-lg-140 {
    height: 140px;
  }
  .ak-height-lg-145 {
    height: 145px;
  }
  .ak-height-lg-150 {
    height: 150px;
  }
  .ak-height-lg-155 {
    height: 155px;
  }
  .ak-height-lg-160 {
    height: 160px;
  }
  .ak-height-lg-165 {
    height: 165px;
  }
  .ak-height-lg-170 {
    height: 170px;
  }
  .ak-height-lg-175 {
    height: 175px;
  }
  .ak-height-lg-180 {
    height: 180px;
  }
  .ak-height-lg-185 {
    height: 185px;
  }
  .ak-height-lg-190 {
    height: 190px;
  }
  .ak-height-lg-195 {
    height: 195px;
  }
  .ak-height-lg-200 {
    height: 200px;
  }
  .ak-height-lg-205 {
    height: 205px;
  }
  .ak-height-lg-210 {
    height: 210px;
  }
  .ak-height-lg-219 {
    height: 219px;
  }
}
/*--------------------------------------------------------------
  5. General
----------------------------------------------------------------*/
.ak-light {
  font-weight: 300;
}

.ak-normal {
  font-weight: 400;
}

.ak-medium {
  font-weight: 500;
}

.ak-semi-bold {
  font-weight: 600;
}

.ak-bold {
  font-weight: 700;
}

.ak-extra-bold {
  font-weight: 800;
}

.ak-black {
  font-weight: 900;
}

.ak-radius-3 {
  border-radius: 3px;
}

.ak-radius-5 {
  border-radius: 5px;
}

.ak-radius-7 {
  border-radius: 7px;
}

.ak-radius-10 {
  border-radius: 10px;
}

.ak-radius-15 {
  border-radius: 15px;
}

.ak-line-height-1 {
  line-height: 1.2em;
}

.ak-line-height-2 {
  line-height: 1.25em;
}

.ak-line-height-3 {
  line-height: 1.3em;
}

.ak-line-height-4 {
  line-height: 1.4em;
}

.ak-line-height-5 {
  line-height: 1.5em;
}

.ak-line-height-6 {
  line-height: 1.6em;
}

.ak-line-height-7 {
  line-height: 1.7em;
}

.ak-line-height-39 {
  line-height: 39px;
}

.ak-line-height-54 {
  line-height: 54px;
}

.ak-line-height-85 {
  line-height: 85px;
}

.ak-font-14 {
  font-size: 14px;
}

.ak-font-16 {
  font-size: 16px;
}

.ak-font-18 {
  font-size: 18px;
}

.ak-font-20 {
  font-size: 20px;
}

.ak-font-22 {
  font-size: 22px;
}

.ak-font-26 {
  font-size: 26px;
}

.ak-font-28 {
  font-size: 28px;
}

.ak-font-30 {
  font-size: 28px;
}

.ak-font-38 {
  font-size: 38px;
}

.ak-font-42 {
  font-size: 42px;
}

.ak-font-50 {
  font-size: 50px;
}

.ak-mp0 {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ak-m0 {
  margin: 0;
}

.ak-mt100 {
  margin-top: 100px;
}

.ak-bg {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.object-cover {
  -o-object-fit: cover;
  object-fit: cover;
}

.ak-vertical-middle {
  display: flex;
  align-items: center;
  min-height: 100%;
}

.ak-vertical-middle-in {
  flex: none;
  width: 100%;
}

.ak-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ak-primary-font {
  font-family: "Oxanium", sans-serif;
}

.ak-secondary-font {
  font-family: "Sarabun", sans-serif;
}

.ak-white-color,
.ak-white-color-hover:hover {
  color: #fff;
}

.ak-primary-color {
  color: #ff3d24;
}

.ak-white-color,
.ak-white-color-hover:hover {
  color: #fff;
}

.contact-title-section .ak-white-color {
  color: #111;
}
.ak-white-bg {
  background-color: #fff;
}

.ak-gray-bg-20 {
  background: rgba(217, 217, 217, 0.2);
}

.ak-white-bg-1,
.ak-white-bg-1-hover:hover {
  background-color: rgba(255, 255, 255, 0.25);
}

.ak-white-bg,
.ak-white-bg-hover:hover {
  background-color: #fff;
}

.ak-primary-bg,
.ak-primary-bg-hover:hover {
  background-color: rgba(255, 61, 36, 0.7);
}

.ak-gradient-bg-1 {
  background: linear-gradient(267.18deg, #161616 0%, #080808 100%);
}

@media screen and (max-width: 991px) {
  .ak-left-space-30 {
    padding-left: 0px;
  }
  .ak-font-14-sm {
    font-size: 14px;
  }
  .ak-font-16-sm {
    font-size: 16px;
  }
  .ak-font-18-sm {
    font-size: 18px;
  }
  .ak-font-20-sm {
    font-size: 20px;
  }
  .ak-font-22-sm {
    font-size: 22px;
  }
  .ak-font-24-sm {
    font-size: 24px;
  }
  .ak-font-26-sm {
    font-size: 26px;
  }
  .ak-font-28-sm {
    font-size: 28px;
  }
  .ak-font-42-sm {
    font-size: 42px;
  }
  .ak-font-36-sm {
    font-size: 36px;
  }
  .ak-btn-group > *:not(:last-child) {
    margin-right: 10px;
  }
  .flex-column-reverse-lg {
    flex-direction: column-reverse;
  }
  .ak-seciton-heading.ak-style1 .ak-section-title::before {
    top: 1px;
  }
}
.ak-stroke-text {
  line-height: 1em;
  transition: all 0.3s;
  cursor: pointer;
  font-size: 24px;
  font-weight: 400;
  font-family: "Sarabun", sans-serif;
}

.ak-stroke-normal {
  font-weight: 700;
  line-height: 1.2em;
  color: var(--primary-color);
}

.ak-stroke-number {
  line-height: 1.2em;
  font-weight: 700;
  text-align: center;
}
.ak-stroke-number.color-white {
  -webkit-text-stroke: 1px #101010;
}

.stroke-heading-text .bg-white {
  border: 0;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 10px;
}

.ak-moving-section-wrap {
  overflow: hidden;
}

.ak-animation-speed-10 {
  animation: slide-left 10s linear infinite;
}

.ak-animation-speed-30 {
  animation: slide-left 30s linear infinite;
}

.ak-animation-speed-40 {
  animation: slide-left 40s linear infinite;
}

.ak-animation-speed-50 {
  animation: slide-left 50s linear infinite;
}

.ak-moving-section-hover-push:hover .ak-moving-section {
  animation-play-state: paused;
}

@keyframes slide-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.ak-video-block-1-wrap {
  position: relative;
}
.ak-video-block-1-wrap::before {
  content: "";
  position: absolute;
  height: 50%;
  width: 100%;
  left: 0%;
  top: 0%;
  background-color: #000;
}

.heartbeat-icon {
  width: 60px;
  height: 60px;
  position: relative;
}
.phone-call-back {
  background-color: #fff;
  padding: 5px 15px;
  font-size: 14px;
  color: #111;
  border-radius: 20px;
  position: relative;
  font-weight: 700;
}
.ak-munu_toggle {
  display: none !important;
}

.animated-btn {
  background: linear-gradient(-45deg, red, #5a3795);
  background-size: 600%;
  animation: request-a-callback-btn-animation 5s linear infinite;
}

@keyframes request-a-callback-btn-animation {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.phone-call-back::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50px;
  border: 3px solid transparent;
  background: linear-gradient(45deg, red, rgb(255, 94, 0)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
}

.ak-sticky_header .heartbeat-icon .ak-heartbeat-btn {
  position: absolute;
  z-index: 10;
  cursor: pointer;
  top: 50%;
  left: -61%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 200px;
  height: 50px;
  border-radius: 20px;
  padding: 18px 20px 18px 28px;
  display: flex;
  align-items: center;
  background-color: #e9231c;
  justify-content: center;
}

.ak-heartbeat-btn {
  position: absolute;
  z-index: 10;
  cursor: pointer;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  padding: 10px;
  display: flex;
  align-items: center;
  background-color: #e9231c;
  justify-content: center;
  color: #fff;
  font-size: 18px;
}

.ak-heartbeat-btn h6 {
  color: #fff;
  font-size: 16px;
}

.ak-heartbeat-btn.no-animation:before {
  z-index: 0;
  animation: none;
}

.ak-heartbeat-btn:after {
  z-index: 1;
  transition: all 200ms;
}

.ak-heartbeat-btn img {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
}

.ak-heartbeat-btn span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  border-left: 16px solid currentColor;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  color: #fff;
}

.ak-heartbeat-btna:hover {
  color: #000;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
.ak-fixed-bg {
  background-attachment: fixed;
}

.ak-section-heading.ak-style-1 {
  position: relative;
}
.ak-section-heading.ak-style-1 .background-text {
  z-index: 9;
  opacity: 0.3;
  position: absolute;
  text-align: center;
  font-family: Oxanium;
  font-size: 110px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  display: inline;
  background: linear-gradient(to right, #222 0%, #fff 50%, #222 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 2.5s infinite;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-color: rgba(46, 46, 46, 0.7960784314);
  -ms-background-size: 200px 100%;
  background-size: 200px 100%;
}
.ak-section-heading.ak-style-1 .ak-section-subtitle {
  font-family: Sarabun;
  font-size: 18px;
  font-style: normal;
  max-width: 600px;
  font-weight: 400;
  line-height: 24px;
  position: relative;
  z-index: 10;
}
.ak-section-heading.ak-style-1 .ak-section-title {
  font-size: 48px;
  font-weight: 700;
  font-family: Oxanium;
  font-style: normal;
  margin-bottom: 10px;
  line-height: normal;
  text-transform: uppercase;
  color: #111;
  z-index: 10;
  position: relative;
}
.ak-section-heading.ak-style-1.ak-type-1 {
  text-align: center;
}
.ak-section-heading.ak-style-1.ak-type-1 .background-text {
  left: -50%;
  width: 100%;
  transform: translate(50%, 0%);
}
.ak-section-heading.ak-style-1.ak-color-1 .ak-section-title,
.ak-section-heading.ak-style-1.ak-color-1 .ak-section-subtitle {
  color: var(--black-color);
}

@keyframes shimmer {
  0% {
    background-position: top left;
  }
  100% {
    background-position: top right;
  }
}
.ak-hover-layer,
.ak-hover-layer1,
.ak-hover-layer3 {
  position: relative;
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: perspective(600px) translate3d(0, 0, 0);
}

.ak-tab {
  display: none;
}
.ak-tab.active {
  display: block;
}

.ak-tab-links.ak-style1 {
  display: inline-flex;
  padding: 5px;
  background-color: #000;
  border-radius: 10px;
}
.ak-tab-links.ak-style1 a {
  padding: 7px 20px;
  font-weight: 500;
  color: #fff;
  display: inline-flex;
}
.ak-tab-links.ak-style1 li.active a {
  background-color: #fff;
  border-radius: 10px;
}

.ak-google-map {
  height: 530px;
}
.ak-google-map iframe {
  height: 100%;
  display: block;
  border: none;
  width: 100%;
  filter: grayscale(100%) invert(90%) contrast(120%);
}
.ak-google-map.ak-type1 {
  height: 100%;
  min-height: 300px;
  width: 50vw;
}

.ak-rotate-img {
  transform: rotate(45deg);
  overflow: hidden;
  border-radius: 7px;
}

.ak-rotate-img-in {
  transform: rotate(-45deg) scale(1.4);
}

.ak-half-screen {
  width: 56vw;
}

.ak-scrollup {
  position: fixed;
  bottom: -60px;
  right: 40px;
  color: #fff;
  padding: 5px;
  height: 50px;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.4s ease;
  z-index: 10;
  background-color: #000000;
  box-shadow: 0px 1px 5px 1px rgba(0, 0, 0, 0.2);
  border-radius: 50%;
}
.ak-scrollup:hover {
  background-color: #fff;
  color: #000;
}

.ak-scrollup.ak-scrollup-show {
  bottom: 50px;
}

.swiper-slide {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  overflow: hidden;
}
.swiper-slide .ak-entity-img {
  display: none;
}

.ak-border-width {
  width: 100%;
  height: 1px;
  background-color: #101010;
}

.ak-border-height {
  width: 1px;
  height: 100%;
  background-color: var(--white-color);
}

.primary-color-border {
  width: 100%;
  height: 1px;
  opacity: 0.35;
  background: var(--primary-color);
}

.text-hover-animaiton {
  line-height: 100%;
  display: inline-block;
  color: #fff;
}
.text-hover-animaiton .menu-text {
  display: -ms-flexbox;
  overflow: hidden;
  text-shadow: 0 60px 0 var(--primary-color);
  display: flex;
}
.text-hover-animaiton .menu-text.black {
  text-shadow: 0 60px 0 var(--black-color);
}
.text-hover-animaiton .menu-text.white {
  text-shadow: 0 60px 0 var(--white-color);
}
.text-hover-animaiton .menu-text div {
  display: block;
  backface-visibility: hidden;
  transition: transform 0.4s ease;
  transform: translateY(var(--m)) translateZ(0);
}

.text-hover-animaiton:hover {
  --y: -15px;
  cursor: pointer;
}
.text-hover-animaiton:hover .menu-text div {
  --m: calc(62px * -1);
}
.text-hover-animaiton:hover .menu-text div:nth-child(1) {
  transition-delay: 0.05s;
}
.text-hover-animaiton:hover .menu-text div:nth-child(2) {
  transition-delay: 0.1s;
}
.text-hover-animaiton:hover .menu-text div:nth-child(3) {
  transition-delay: 0.15s;
}
.text-hover-animaiton:hover .menu-text div:nth-child(4) {
  transition-delay: 0.2s;
}
.text-hover-animaiton:hover .menu-text div:nth-child(5) {
  transition-delay: 0.25s;
}
.text-hover-animaiton:hover .menu-text div:nth-child(6) {
  transition-delay: 0.3s;
}
.text-hover-animaiton:hover .menu-text div:nth-child(7) {
  transition-delay: 0.35s;
}
.text-hover-animaiton:hover .menu-text div:nth-child(8) {
  transition-delay: 0.4s;
}
.text-hover-animaiton:hover .menu-text div:nth-child(9) {
  transition-delay: 0.45s;
}
.text-hover-animaiton:hover .menu-text div:nth-child(10) {
  transition-delay: 0.5s;
}
.text-hover-animaiton:hover .menu-text div:nth-child(11) {
  transition-delay: 0.55s;
}
.text-hover-animaiton:hover .menu-text div:nth-child(12) {
  transition-delay: 0.6s;
}

.btn-animation,
.cta .cta-info .cta-btn {
  transform-style: preserve-3d;
  transition: font-size 0.5s, background-color 0.3s, transform 0.3s, color 0.3s;
  transform: translate3d(0, 0px, 0px);
}
.btn-animation:hover,
.cta .cta-info .cta-btn:hover {
  font-size: 17px !important;
  color: rgba(255, 255, 255, 0.9) !important;
  background-color: rgba(255, 61, 36, 0.7) !important;
  transform: translate3d(0, -8px, 0.01px);
}

.text-letter-spacing-animation,
.more-btn {
  letter-spacing: normal;
  transition: letter-spacing 0.3s ease;
  cursor: pointer;
}
.text-letter-spacing-animation:hover,
.more-btn:hover {
  letter-spacing: 2px;
  color: var(--white-color);
}

.select-input-customize {
  border-radius: 0;
  background-color: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.select-input-customize:focus {
  border-color: #ff3d24 !important;
  box-shadow: 0 0 0 0.25rem rgba(253, 13, 13, 0.19);
}
.select-input-customize option {
  background-color: var(--black-color);
  color: rgba(255, 255, 255, 0.25);
}
.select-input-customize option:visited {
  background-color: #ff3d24 !important;
  color: #ff3d24 !important;
}

.container-customize {
  max-width: 870px;
}

.social-icon {
  display: flex;
  gap: 15px;
}
.social-icon a {
  transition: all 0.5s ease-in-out;
}
.social-icon a:hover {
  transform: scale(1.2);
  transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
}
.social-icon path {
  transition: fill 0.3s ease-in-out;
}
.social-icon :hover path {
  fill: #ff3d24;
}

/* end ak-animison cricle */
@media screen and (max-width: 1399px) {
  .ak-right-space-150 {
    padding-right: 50px;
  }
}
@media screen and (max-width: 1199px) {
  .ak-right-space-40,
  .ak-right-space-150 {
    padding-right: 0;
  }
}
@media screen and (max-width: 991px) {
  .ak-font-50 {
    font-size: 36px;
  }
  .ak-font-38 {
    font-size: 32px;
  }
  .ak-video-block.ak-style1,
  .ak-video-block.ak-style1.ak-size1 {
    height: 400px;
  }
  .ak-video-block.ak-style1 .ak-heartbeat-btn,
  .ak-video-block.ak-style1.ak-size1 .ak-heartbeat-btn {
    transform: translate(-50%, -50%) scale(0.8);
  }
  .ak-google-map {
    height: 400px;
  }
  .ak-faq-nav {
    padding: 30px 30px;
  }
  .ak-faq-nav .ak-faq-nav-title {
    font-size: 26px;
  }
  .ak-google-map.ak-type1 {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
  }
  .ak-scrollup {
    right: 15px;
  }
  .ak-scrollup.ak-scrollup-show {
    bottom: 90px;
  }
}
@media screen and (max-width: 767px) {
  .ak-section-heading.ak-style-1 .ak-section-title {
    font-size: 32px;
    text-align: center;
            margin-top: 22px;
  }

  .ak-nav_list li {
    text-align: right;
  }
  .ak-hero.ak-style1 .hero-slider-info .hero-main-title {
    font-size: 12px !important;
    text-align: center;
    background-color: #e10606;
    color: #fff !important;
    padding: 4px 0;
    width: 230px;
    margin: auto;
  }
  .ak-hero.ak-style1 .hero-slider-info .hero-main-title-1 {
    font-size: 34px !important;
    text-align: center;
  }

  .ak-hero.ak-style1 .hero-slider-info .mini-title {
    text-align: center;
    line-height: 18px !important;
  }
  .ak-hero.ak-style1 .hero-slider-info {
    top: 0 !important;
  }

  .service-progress-card .service-item .service-info .title {
    font-size: 17px !important;
  }
  .service-progress-card .service-item {
    padding: 25px 15px !important;
  }
  .ak-section-heading.ak-style-1 .ak-section-subtitle {
    font-size: 18px;
    margin-bottom: 0px;
  }
  .ak-section-heading.ak-style-1.ak-type-1 {
    text-align: start;
  }
  .ak-section-heading.ak-style-1.ak-type-1 .background-text {
    left: 0%;
    transform: translate(0%, 0%);
  }
  .ak-cursor-lg,
  .ak-cursor-sm {
    display: none !important;
  }
}
@media screen and (max-width: 575px) {
  .ak-image-layer.ak-style1 {
    padding-right: 40px;
    padding-bottom: 40px;
  }
  .ak-image-layer.ak-style1 .ak-image-layer-in::after {
    right: -30px;
    bottom: -30px;
  }
  .ak-video-block.ak-style1,
  .ak-video-block.ak-style1.ak-size1 {
    height: 380px;
  }
  .ak-video-block.ak-style1 .ak-heartbeat-btn,
  .ak-video-block.ak-style1.ak-size1 .ak-heartbeat-btn {
    transform: translate(-50%, -50%) scale(0.7);
  }
}
.nav-pages-item::after {
  content: "+";
  margin-left: 5px;
  color: #ff3d24;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}

/*--------------------------------------------------------------
  6. Slider
----------------------------------------------------------------*/
.ak-slider {
  position: relative;
  overflow: hidden;
}

/* Start slider hero 1 */
.ak-slider-hero-1 {
  overflow: hidden;
  width: 100%;
}
.ak-slider-hero-1 .swiper-slide {
  width: 100%;
}

.ak-slider-hero-two-1 {
  overflow: hidden;
  width: 100%;
}
.ak-slider-hero-two-1 .swiper-slide {
  width: 100%;
}

.ak-swiper-controll-hero-1 {
  position: absolute;
  bottom: 80px;
  right: 61px;
  z-index: 10;
}

.ak-swiper-navigation-wrap {
  display: flex;
  gap: 80px;
  padding: 30px;
}
.ak-swiper-navigation-wrap .ak-swiper-button-next {
  position: relative;
  transition: all 0.3s ease-in-out;
}
.ak-swiper-navigation-wrap .ak-swiper-button-next .btn-cricle {
  position: absolute;
  height: 55px;
  width: 55px;
  border-radius: 50% 50% 50% 50%;
  -webkit-backdrop-filter: blur(100px);
  backdrop-filter: blur(100px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease-in-out;
}
.ak-swiper-navigation-wrap .ak-swiper-button-next .btn-arrow {
  transition: all 0.3s ease-in-out;
  position: absolute;
  transform: translateX(10px);
}
.ak-swiper-navigation-wrap .ak-swiper-button-next .btn-arrow svg {
  width: 40px;
  height: 55px;
}
.ak-swiper-navigation-wrap .ak-swiper-button-next .btn-arrow:hover {
  transform: translateX(20px);
}
.ak-swiper-navigation-wrap .ak-swiper-button-prev {
  position: relative;
  transition: all 0.3s ease-in-out;
}
.ak-swiper-navigation-wrap .ak-swiper-button-prev .btn-cricle {
  position: absolute;
  height: 55px;
  width: 55px;
  border-radius: 50% 50% 50% 50%;
  -webkit-backdrop-filter: blur(100px);
  backdrop-filter: blur(100px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease-in-out;
  transform: rotate(180deg);
}
.ak-swiper-navigation-wrap .ak-swiper-button-prev .btn-arrow {
  transition: all 0.3s ease-in-out;
  position: absolute;
  transform: translateX(10px);
}
.ak-swiper-navigation-wrap .ak-swiper-button-prev .btn-arrow svg {
  width: 40px;
  height: 55px;
}
.ak-swiper-navigation-wrap .ak-swiper-button-prev .btn-arrow:hover {
  transform: translateX(0px);
}

/* End slider hero 1 */
/* Start slider testimonal */
.ak-slider-testimonal {
  overflow: hidden;
  width: 100%;
  position: relative;
}
.ak-slider-testimonal .swiper-slide {
  width: 100%;
}

/* End slider testimonal */
/*  Start Trusted Client  */
.ak-trusted-client-slider {
  overflow: hidden;
  width: 100%;
}
.ak-trusted-client-slider .title {
  text-align: center;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.ak-trusted-client-slider .swiper-wrapper {
  align-items: center;
}
.ak-trusted-client-slider .swiper-wrapper .swiper-slide {
  width: 14.4%;
}

.button-style {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.935);
  border-radius: 50%;
  position: relative;
  margin: 0 6px;
}
.button-style svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.banner-btn {
  display: inline-flex;
}
.banner-first {
  margin-right: 10px;
}

.ak-trusted-client-slider img {
  border-radius: 10px;
}

@media screen and (max-width: 767px) {
  .ak-trusted-client-slider .swiper-wrapper .swiper-slide {
    width: 33.3%;
  }

  .banner-btn {
    display: block;
    text-align: center;
  }
  .button-style {
    width: 30px;
    height: 30px;
  }
  .banner-first {
    margin-bottom: 10px;
    margin-right: 0;
  }
}

@media screen and (max-width: 350px) {
  .ak-swiper-controll-hero-1 {
    display: none;
  }
}

.offer p,
.offer h3,
.offer h4 {
  color: #fff !important;
}

@media screen and (max-width: 991px) {
  .video-home {
    height: 400px;
  }
  .ak-digital-agency.ak-video-block.ak-style1 {
    height: 400px;
  }
}
/* End video section */
/*--------------------------------------------------------------
8. Header
----------------------------------------------------------------*/

.top_navbar{
  background-color: #e12424;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding:3px 0px;
}
.top_navbar p{
  font-size: 14px;
  color: white;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.ak-site_header {
  position: relative;
  z-index: 100001;
}

.ak-site-branding {
  display: inline-block;
  max-width: 180px;
}

.ak-site_header {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0px;
  transition: all 0.4s ease;
}

.ak-site_header.ak-style1 {
  /*   .ak-main-header-left {
  } */
  /*  .ak-main-header-right {
  } */
}
.ak-site_header.ak-style1 .ak-main_header_in,
.ak-site_header.ak-style1 .ak-top_header_in {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  margin: 0px;
}
.ak-site_header.ak-style1 .ak-main-header-center {
  display: flex;
  align-items: center;
  height: 100%;
}
.ak-site_header.ak-style1 .header-top {
  position: relative;
  padding: 0px 10px 0px 28px;
  height: 70px;
}
.ak-site_header.ak-style1 .header-top .wrapper {
  height: 100%;
  width: 100%;
  justify-content: space-between;
  display: flex;
  align-items: center;
}
.ak-site_header.ak-style1 .header-top .wrapper .header-logo {
  border-right: 0.3px solid #635542;
  display: flex;
  height: 0%;
  align-items: center;
  /* .logo {

  } */
}
.ak-site_header.ak-style1 .header-top .wrapper .center-log {
  margin-right: 88px;
}
@media screen and (max-width: 768px) {
  .ak-site_header.ak-style1 .header-top .wrapper .center-log {
    margin-right: 0px;
  }
}
.ak-site_header.ak-style1 .header-top .top-main-menu {
  position: absolute;
  width: 100%;
  top: 0%;
  left: 0;
  z-index: -10;
  transition: all 0.5s ease-in-out;
  background-color: rgba(0, 0, 0, 0.9058823529);
  display: flex;
  flex-direction: column;
  font-style: italic;
  list-style: none;
  justify-content: center;
  opacity: 1;
  height: 0;
}
.ak-site_header.ak-style1 .header-top .top-main-menu .top-main-menu-li {
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: uppercase;
  font-style: italic;
  color: #fff;
  font-family: Baskervville;
  padding-left: 15%;
  padding-right: 5%;
  transition: all 0.5s ease-in-out;
}
.ak-site_header.ak-style1
  .header-top
  .top-main-menu
  .top-main-menu-li
  .top-main-menu-img {
  position: relative;
  opacity: 0;
  display: none;
  -o-object-fit: cover;
  object-fit: cover;
  width: 0%;
  height: 400px;
}
.ak-site_header.ak-style1 .header-top .top-main-menu li > a {
  display: none;
  font-size: 60px;
  line-height: 120%;
  display: inline-block;
}
.ak-site_header.ak-style1 .header-top .top-main-menu li > a:hover {
  transform: translateX(50px);
  color: #fff;
}

.ak-nav + .ak-toolbox {
  margin-left: 55px;
}

.ak-site_header.ak-style1.ak-sticky-active {
  background-color: rgba(0, 0, 0, 0.8549019608);
  box-shadow: 0 10px 10px -10px rgba(33, 43, 53, 0.1);
}
.ak-site_header.ak-style1 .ak-action_box {
  display: flex;
  align-items: center;
}
.ak-site_header.ak-style1 .ak-action_box .ak-action_value {
  margin-left: 15px;
}
.ak-site_header.ak-style1 .ak-action_box > *:not(:last-child) {
  margin-right: 35px;
}
.ak-site_header.ak-style1 .ak-btn {
  padding: 13px 15px;
}

.ak-site_header_full_width .container {
  max-width: 100%;
  padding: 0 100px;
}

.ak-site_header_style1 {
  border-bottom: 1px solid #1a188d;
}
.ak-site_header_style1 .ak-main-header-center {
  display: flex;
  align-items: center;
}
.ak-site_header_style1 .ak-nav + .ak-header_toolbox.ak-center {
  margin-left: 35px;
}
.ak-site_header_style1 .ak-nav .ak-nav_list > li.current-menu-item > a:before {
  bottom: -4px;
  background-color: rgba(0, 0, 0, 0.8549019608);
}

@media screen and (max-width: 1199px) {
  .ak-main_header .container {
    max-width: 100%;
  }
  .ak-site_header.ak-style1 .ak-nav {
    display: flex;
  }
}
.ak-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ak-sticky_header {
  position: fixed !important;
  width: 100%;
  z-index: 999;
  background: rgba(33, 33, 33, 0.437);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.ak-gescout_sticky {
  position: fixed !important;
  top: -150px;
  transition: all 0.4s ease;
}

.ak-gescout_show {
  top: 0 !important;
}

.ak-site_branding {
  display: inline-block;
}
.ak-site_branding img,
.footer-logo img {
  max-height: 45px;
}

@media screen and (min-width: 1200px) {
  .ak-nav_list.ak-color_1 {
    color: #fff;
  }
  .ak-nav_list.ak-color_1 ul {
    color: #000;
  }
  .ak-main_header {
    position: relative;
  }
  .ak-main_header .container-fluid {
    padding-right: 40px;
    padding-left: 40px;
  }
  .ak-main_header_center,
  .ak-top_header_center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .ak-site_header.ak-style1 .ak-main_header_center {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    max-width: calc(100% - 300px);
  }
  .ak-nav {
    display: flex;
    align-items: center;
    height: 100%;
    line-height: 1.6em;
    font-size: 16px;
  }
  .ak-nav .ak-nav_list {
    display: flex !important;
    flex-wrap: wrap;
    height: inherit;
  }
  .ak-nav .ak-nav_list > li {
    margin-right: 50px;
    height: 90px;
    text-transform: uppercase;
    color: #fff;
    display: flex;
    align-items: center;
  }
  .ak-nav .ak-nav_list > li:last-child {
    margin-right: 0;
  }
  /* .ak-nav .ak-nav_list > li > a {
    display: inline-flex;
    position: relative;
    height: inherit;
    align-items: center;
  } */
  .ak-nav .ak-nav_list > li > ul {
    left: 0;
    top: calc(100% + 30px);
  }
  .ak-nav .ak-nav_list > li:hover > ul {
    top: calc(100% + 0px);
    opacity: 1;
    visibility: visible;
    transition: all 0.4s ease;
  }
  .ak-nav .ak-nav_list > li.menu-item-has-children > a {
    position: relative;
  }
  .ak-nav .ak-nav_list li:not(.ak-mega_menu) {
    position: relative;
  }
  .ak-nav .ak-nav_list ul {
    width: 260px;
    background-color: rgba(0, 0, 0, 0.8549019608);
    position: absolute;
    box-shadow: 0px 1px 2px 0px rgba(2, 0, 181, 0.1);
    border-top: 2px solid rgba(255, 255, 255, 0.3215686275);
    padding: 10px 0;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    display: block !important;
    border-radius: 0px 0px 5px 5px;
    transition: all 0.1s ease;
  }
  .ak-nav .ak-nav_list ul li:hover ul {
    top: 0px;
  }
  .ak-nav .ak-nav_list ul li:hover > ul {
    opacity: 1;
    visibility: visible;
    transition: all 0.4s ease;
  }
  .ak-nav .ak-nav_list ul a {
    display: block;
    line-height: inherit;
    padding: 7px 20px;
  }
  .ak-nav .ak-nav_list ul ul {
    top: 15px;
    left: 100%;
  }
  .ak-munu_toggle,
  .ak-munu_dropdown_toggle {
    display: none;
  }
  .ak-nav_black_section ul {
    position: relative;
    list-style: none;
    line-height: 65px;
    padding: 0px;
  }
  .ak-nav_black_section ul li {
    margin-top: 40px;
    font-size: 55px;
    text-transform: uppercase;
    font-weight: 900;
  }
  .ak-nav_black_section.ak-font_changes .ak-style_1 ul li {
    font-size: 40px;
    line-height: 14px;
    text-transform: capitalize;
    font-weight: 500;
  }
  .menu-item-has-black-section {
    position: relative;
  }
  .menu-item-has-black-section span {
    cursor: pointer;
  }
  .menu-item-has-black-section > a {
    position: relative;
  }
  .menu-item-has-black-section > ul {
    padding-left: 40px;
    display: none;
    list-style: none;
    line-height: 30px;
  }
  .menu-item-has-black-section > ul li {
    margin-top: 40px;
  }

  .ak-nav .ak-nav_list .ak-mega_wrapper {
    width: 1296px !important;
    left: 50%;
    transform: translateX(-50%);
    display: flex !important;
    position: absolute;
    padding: 5px 15px 10px;
  }
  .ak-nav .ak-nav_list .ak-mega_wrapper a {
    padding: 5px 10px;
  }
  .ak-nav .ak-nav_list .ak-mega_wrapper a img {
    border-radius: 5px;
    border: 1px solid rgba(181, 181, 181, 0.1);
    transition: all 0.5s ease;
  }
  .ak-nav .ak-nav_list .ak-mega_wrapper a:hover img {
    border-color: rgba(255, 255, 255, 0.6);
  }
  .ak-nav .ak-nav_list .ak-mega_wrapper > li {
    flex: 1;
    padding: 10px 0;
  }
  .ak-nav .ak-nav_list .ak-mega_wrapper > li > a:hover {
    background-color: transparent;
  }
  .ak-nav .ak-nav_list .ak-mega_wrapper > li ul {
    position: initial;
    border: none;
    padding: 0;
    width: 100%;
    box-shadow: none;
    background-color: transparent;
  }
  .ak-nav .ak-nav_list .ak-mega_menu:hover .ak-mega_wrapper li ul {
    opacity: 1;
    visibility: visible;
  }
  .ak-nav .ak-nav_list > li ul:not(.ak-mega_wrapper) .menu-item-has-children > a {
    position: relative;
  }
}
@media screen and (max-width: 1400px) {
  .ak-nav .ak-nav_list .ak-mega_wrapper {
    width: 1116px !important;
  }
  .ak-site-branding {
    max-width: 190px;
  }
  .ak-site_header_full_width .container {
    max-width: 100%;
  }
}
@media screen and (max-width: 1199px) {
  .ak-nav .ak-nav_list .ak-mega_wrapper {
    width: 100% !important;
  }
  .ak-site_header_full_width .container {
    padding: 0 15px;
  }

  .ak-nav .ak-nav_list {
    position: absolute;
    width: 100vw;
    left: -15px;
    background-color: rgba(0, 0, 0, 0.8549019608);
    padding: 10px 0;
    display: none;
    top: 0%;
    padding-top: 75px;
    border-top: 1px solid rgba(77, 77, 77, 0.3215686275);
    border-bottom: 1px solid rgba(77, 77, 77, 0.3215686275);
    overflow: auto;
    max-height: calc(100vh - 80px);
    line-height: 1.6em;
  }
  .ak-nav .ak-nav_list ul {
    padding-left: 15px;
    display: none;
  }
  .ak-nav .ak-nav_list a {
    display: block;
    padding: 8px 20px;
    text-transform: uppercase;
    color: #fff;
  }
  .ak-nav .ak-nav_list a:hover {
    color: #fff;
  }
  .ak-nav .menu-item-has-children {
    position: relative;
  }
  /*Mobile Menu Button*/
  .ak-munu_toggle {
    display: inline-block;
    width: 30px;
    height: 27px;
    cursor: pointer;
    position: absolute;
    top: 27px;
    right: 30px;
  }
  .ak-munu_toggle span,
  .ak-munu_toggle span:before,
  .ak-munu_toggle span:after {
    width: 100%;
    height: 2px;
    background-color: #fff;
    display: block;
  }
  .ak-munu_toggle span {
    margin: 0 auto;
    position: relative;
    top: 12px;
    transition-duration: 0s;
    transition-delay: 0.2s;
  }
  .ak-munu_toggle span:before {
    content: "";
    position: absolute;
    margin-top: -9px;
    transition-property: margin, transform;
    transition-duration: 0.2s;
    transition-delay: 0.2s, 0s;
  }
  .ak-munu_toggle span:after {
    content: "";
    position: absolute;
    margin-top: 9px;
    transition-property: margin, transform;
    transition-duration: 0.2s;
    transition-delay: 0.2s, 0s;
  }
  .ak-site_header.ak-style1 .ak-munu_toggle {
    top: 50%;
    right: 0px;
    margin-top: -13px;
  }
  .ak-toggle_active span {
    background-color: rgba(0, 0, 0, 0);
    transition-delay: 0.2s;
  }
  .ak-toggle_active span:before {
    margin-top: 0;
    transform: rotate(45deg);
    transition-delay: 0s, 0.2s;
  }
  .ak-toggle_active span:after {
    margin-top: 0;
    transform: rotate(-45deg);
    transition-delay: 0s, 0.2s;
  }
  .ak-header_toolbox {
    margin-right: 50px;
  }
  .ak-nav .ak-nav_list a {
    position: relative;
    text-transform: uppercase;
    color: #fff;
  }
  .ak-nav .ak-nav_list a:hover {
    color: #fff;
  }
  .ak-site_header.ak-style1 .ak-main_header_in {
    height: 80px;
    margin: 0px;
  }
  .ak-hamburger span {
    height: 3px;
  }
  .ak-site_header .current-menu-item > a:before {
    display: none;
  }
  .ak-site_header.ak-style1 .ak-main_header_center .ak-site_branding {
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
  }
  .ak-site_header.ak-style1 {
    top: 0;
  }
  .header-top {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .ak-site_header .container {
    max-width: 100%;
  }
  .ak-site_header.ak-style1 .ak-action_box > *:not(:last-child) {
    margin-right: 25px;
  }
  .ak-site_header.ak-style1 .ak-btn {
    padding: 8px;
  }
  .header-top {
    display: none;
  }
}
@media screen and (max-width: 575px) {
    .top_navbar p{
    font-size: 12px;
  }
  .ak-site-branding {
    max-width: 150px;
  }
  .ak-hamburger_wrap .ak-hamburger {
    margin-right: 0;
  }
  .ak-site_branding img {
    max-height: 32px;
  }
  .ak-site_header.ak-style1 .ak-btn span {
    display: none;
  }
  .ak-site_header.ak-style1 .ak-btn svg {
    margin-right: 0;
    width: 20px;
    height: 20px;
  }
  .ak-main-header-right {
    display: none;
  }
}
.nav-bar-border {
  opacity: 0.5;
  height: 1.5px;
  background-color: rgba(255, 255, 255, 0.3490196078);
  width: 100%;
}

.ak-menu-toggle {
  background-color: transparent;
  border: none;
  cursor: pointer;
  border-left: 0.3px solid #635542;
  padding-left: 20px;
  height: 100%;
}
.ak-menu-toggle .ak-menu-icon path {
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
}

/*--------------------------------------------------------------
  9. Footer
----------------------------------------------------------------*/
.footer-bg {
  background-color: var(--black-color);
}

.footer.style-1 .footer-email {
  position: relative;
}
.footer.style-1 .footer-email .background-text {
  z-index: 9;
  opacity: 0.3;
  text-align: center;
  font-family: Oxanium;
  font-size: 110px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to right, #222 0%, #fff 50%, #222 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s infinite;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-color: rgba(46, 46, 46, 0.7960784314);
  -ms-background-size: 200px 100%;
  background-size: 200px 100%;
}
.footer.style-1 .footer-email .footer-heading-email {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
}
.footer.style-1 .footer-email .footer-heading-email .email-title {
  text-transform: uppercase;
  max-width: 670px;
}
.footer.style-1 .footer-email .footer-heading-email .email-form {
  display: flex;
  gap: 30px;
  padding-bottom: 16px;
  border-bottom: 1px solid #ff3d24;
}
.footer.style-1 .footer-email .footer-heading-email .email-form .email-input {
  color: #fff;
  background-color: transparent;
  border: 0;
}
.footer.style-1 .footer-email .footer-heading-email .email-form .email-input:focus {
  outline: none;
}
.footer.style-1 .footer-email .footer-heading-email .email-form .submit-btn {
  background-color: #ff3d24;
  position: relative;
  overflow: hidden;
  padding: 8px 13px;
  border: 0px;
}
.footer.style-1
  .footer-email
  .footer-heading-email
  .email-form
  .submit-btn:hover
  .send
  svg {
  transition: all 0.3s ease;
  animation: sending 0.5s linear 0.3s forwards;
}
.footer.style-1 .footer-content {
  display: flex;
  justify-content: space-between;
}
.footer.style-1 .footer-content .footer-info {
  max-width: 400px;
}
.footer.style-1 .footer-content .footer-info .desp {
  font-size: 18px;
  color: #fff;
}
.footer.style-1 .footer-content .footer-info .phone {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
}
.footer.style-1 .footer-content .footer-menu {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer.style-1 .footer-content .footer-menu .menu-title {
  font-size: 18px;
  color: var(--white-color);
  text-transform: uppercase;
}
.footer.style-1 .footer-content .footer-address {
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  color: #fff;
}
.footer.style-1 .footer-content .footer-address a {
  font-size: 18px;
}
.footer.style-1 .footer-content .footer-address .adress-title {
  font-size: 20px;
  color: var(--white-color);
  text-transform: uppercase;
  font-weight: 700;
}
.footer.style-1 .copy-right {
  padding: 24px 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.footer.style-1 .copy-right .title {
  font-size: 18px;
}
.footer.style-1 .copy-right .social-icon {
  display: flex;
  gap: 15px;
}
.footer.style-1 .copy-right .social-icon a {
  transition: all 0.5s ease-in-out;
}
.footer.style-1 .copy-right .social-icon a:hover {
  transform: scale(1.2);
  transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
}
.footer.style-1 .copy-right .social-icon path {
  transition: fill 0.3s ease-in-out;
}
.footer.style-1 .copy-right .social-icon :hover path {
  fill: #ff3d24;
}

@media screen and (max-width: 991px) {
  .footer.style-1 .footer-email .background-text {
    transform: translate(0%, 0%);
  }
  .footer.style-1 .footer-email .footer-heading-email {
    flex-direction: column-reverse;
    gap: 30px;
    text-align: center;
  }
  .footer.style-1 .footer-content {
    flex-wrap: wrap;
    gap: 30px;
  }
  .footer.style-1 .footer-content .footer-info {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .footer.style-1 .footer-email .footer-heading-email {
    text-align: start;
    align-items: flex-start;
  }
  .footer.style-1 .footer-email .footer-heading-email .email-title {
    font-size: 18px;
  }
  .footer.style-1 .footer-content .footer-info .phone {
    font-size: 32px;
  }
  .footer.style-1 .copy-right {
    flex-direction: column;
    padding: 24px 0px 60px 0;
  }
}
@keyframes sending {
  0% {
    transform: translateY(0);
    transform: rotate(360deg);
  }
  50% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
    transform: translate(40px, -60px);
  }
}

/*--------------------------------------------------------------
  11. Common Page Title
----------------------------------------------------------------*/
.common-page-title {
  margin-bottom: 30px;
}
.common-page-title .page-title {
  text-transform: uppercase;
}

/*--------------------------------------------------------------
  12. Button
----------------------------------------------------------------*/
.common-btn {
  padding: 10px 25px;
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--white-color);
  font-size: 18px;
  font-weight: 500;
  font-family: "Oxanium", sans-serif;
  border: none;
  transform-style: preserve-3d;
  transition: background-color 0.4s, transform 0.3s, color 0.3s;
  transform: translate3d(0, 0px, 0px);
  border-radius: 30px;
  width: 200px;
  text-align: center;
}
.common-btn:hover {
  transition: background-color 0.4s, transform 0.3s, color 0.3s;
  background-color: #148a34;
  transform: translate3d(0px, -7px, 0.01px);
  color: #fff;
}

.second-btn {
  background-color: #148a34;
}

.more-btn {
  position: relative;
  display: inline-block;
  color: var(--white-color);
  font-size: 18px;
  min-width: 100px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.more-btn::after {
  content: "";
  position: absolute;
  display: inline;
  width: 70%;
  height: 2px;
  left: 0;
  bottom: -5px;
  opacity: 1;
  background-color: #4f4836;
  transition: all 0.5s;
  background-color: var(--primary-color);
}
.more-btn:hover::after {
  width: 100%;
}

.get-started-btn {
  padding: 20px 42px;
  display: inline-block;
  cursor: pointer;
  text-align: start;
  font-weight: 700;
  border-radius: 150px;
  border: 1px solid rgba(90, 89, 89, 0.3647058824);
  background: rgba(255, 255, 255, 0.16);
  transition: all 0.5s;
  line-height: normal;
}
.get-started-btn:hover {
  background: rgba(255, 61, 36, 0.7);
  color: white;
}
.get-started-btn span svg {
  transition: all 0.3s;
  transform: translateX(0px);
}
.get-started-btn:hover > span svg {
  transform: translateX(15px);
}

.next-prev-btn {
  display: flex;
  gap: 25px;
}
.next-prev-btn .button {
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white-color);
  text-transform: uppercase;
  padding: 7px 15px;
  border: 1px solid var(--white-color);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
}
.next-prev-btn .button img {
  transition: all 0.3s;
}
.next-prev-btn .button.next-btn:hover img {
  transform: translateX(5px);
}
.next-prev-btn .button.prev-btn:hover img {
  transform: translateX(-5px);
}
.next-prev-btn .button:hover {
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.service-card:hover > .card-img > img {
  transform: scale(1.2);
}

.service-card-style-2 {
  display: flex;
  justify-content: center;
  align-items: start;
  padding: 24px 17px;
  gap: 23px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
.service-card-style-2.type-two {
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid rgba(255, 61, 36, 0.7);
}
.service-card-style-2.type-two .view-more-btn {
  position: absolute;
  width: 100%;
  right: 0;
  bottom: -53px;
  padding: 10px 0px;
  background-color: rgba(255, 61, 36, 0.7);
  transition: all 0.3s ease-in-out;
}
.service-card-style-2.type-two:hover .view-more-btn {
  bottom: 0px;
}
.service-card-style-2.type-two .service-desp {
  margin-bottom: 25px;
}
.service-card-style-2 .service-icon {
  border-radius: 25px;
  display: inline-block;
  padding: 17px;
  background-color: #e9231cc2;
}

.service-card-style-2 .service-desp .title {
  font-family: "Oxanium", sans-serif;
  color: #111;
  font-size: 29px;
  display: inline-block;
  margin-bottom: 7px;
  text-transform: uppercase;
  transition: all 0.5s;
  font-weight: 700;
}
.testimonal-info .card {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  background-color: #ffffff;
  padding: 20px 20px;
}

.card-text {
  font-size: 16px;
}

.service-card-style-2 .service-desp .desp {
  margin-bottom: 17px;
  font-size: 16px;
}
.service-card-style-2:hover > .service-icon {
  transition-duration: 1s;
  transform: rotate(360deg) !important;
}

@media screen and (max-width: 767px) {
  .service-card-style-2 {
    padding: 20px 25px;
  }
  .service-card-style-2 .service-desp .title {
    font-size: 18px;
  }
}
/*--------------------------------------------------------------
  14. Hero
----------------------------------------------------------------*/
.ak-hero.ak-style1 {
  height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.ak-hero.ak-style1.style-two {
  min-height: 110vh;
}
.ak-hero.ak-style1 .ak-hero-bg {
  position: absolute;
  height: calc(100% + 100px);
  width: 100%;
  left: 0;
  top: 0;
  filter: blur(2px);
}
.ak-hero.ak-style1 .hero-slider-info {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  /* margin-top: 8%; */
  max-width: 650px;
  top: 220px;
}
.ak-hero.ak-style1 .hero-slider-info.style-two {
  margin-top: 0%;
}
.ak-hero.ak-style1 .hero-slider-info .hero-main-title {
  color: #fff;
}
.ak-hero.ak-style1 .hero-slider-info .hero-main-title-1 {
  color: #fff;
  font-family: "Sarabun", sans-serif;
}
.ak-hero.ak-style1 .hero-slider-info .mini-title {
  max-width: 560px;
  font-size: 18px;
  line-height: 27px;
  color: #fff;
}

.hero-contact-info {
  position: absolute;
  top: 90px;
  z-index: 11;
  left: 50%;
  width: 100%;
  transform: translate(-50%, 50%);
  display: flex;
  gap: 113px;
  align-items: center;
  justify-content: center;
}

.social-hero {
  position: absolute;
  z-index: 11;
  width: 100px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-direction: column;
  top: 30%;
}
.social-hero .social-icon1 {
  width: 16px;
  height: 16px;
}
.social-hero .social-icon1 path {
  transition: fill 0.3s ease;
}
.social-hero .social-icon1:hover path {
  fill: #ff3d24 !important;
}
.social-hero .social-horizontal {
  width: 1px;
  height: 85px;
  background: var(--Text-color, #d3d3d3);
}
.social-hero .social-link {
  transform: rotate(-90deg);
  color: #fff;
  font-family: Oxanium;
  font-size: 18px;
  font-weight: 400;
  margin-top: 40px;
}

.social-hero-two {
  display: flex;
  gap: 30px;
  margin-top: 50px;
  align-items: center;
}
.social-hero-two .social-horizontal {
  width: 85px;
  height: 1px;
  background: var(--Text-color, #d3d3d3);
}
.social-hero-two .social-icon1 {
  width: 16px;
  height: 16px;
  display: contents;
}
.social-hero-two .social-icon1 path {
  transition: fill 0.3s ease;
}
.social-hero-two .social-icon1:hover path {
  fill: #ff3d24 !important;
}
.social-hero-two .social-link {
  font-size: 18px;
  font-weight: 400;
}

@media screen and (max-width: 1367px) {
  .hero-contact-info {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .social-hero {
    display: none;
  }
  .hero-pagination {
    display: none;
  }
}
/*--------------------------------------------------------------
  15. Service
----------------------------------------------------------------*/
.service-progress-card-position-changes {
  position: relative;
  bottom: 132px;
  z-index: 11;
}

.service-progress-card {
  display: flex;
  flex-direction: column;
}
.service-progress-card.style-two .service-item {
  border: 1px solid rgba(88, 30, 22, 0.6);
}
.service-progress-card .progress-item {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  align-items: center;
  margin-bottom: 25px;
  color: #101010;
}
.service-progress-card .service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 45px 35px;
  text-align: center;
  font-size: 16px;
  height: 100%;
  border: 1px solid var(--black-color);
  border-radius: 10px;
}
.service-progress-card .service-item .service-info .title {
  margin-top: 15px;
  margin-bottom: 9px;
  font-size: 22px;
  font-weight: 600;
}

.services-content {
  max-width: 500px;
}
.services-content .ak-section-subtitle {
  padding-right: 50px;
}

@media screen and (max-width: 1199px) {
  .services-content {
    gap: 50px;
  }
  .services-content .service {
    gap: 40px;
  }
}
/*--------------------------------------------------------------
  16. Funfact
----------------------------------------------------------------*/
.funfact-counter {
  display: flex;
  flex-wrap: wrap;
}

.showcase .col-2 {
  background-color: #fff;
  margin: 0 5px;
  border-radius: 5px;
}

.ak-funfact.ak-style1 {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ak-funfact.ak-style1 .ak-funfact-number {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #ff3d24;
}
.ak-funfact.ak-style1 .ak-funfact-number span {
  font-size: 62px;
}
.ak-funfact.ak-style1 .ak-funfact-number.color-1 {
  color: #fff;
}
.ak-funfact.ak-style1 .ak-funfact-text {
  margin-top: 5px;
}
.ak-funfact.ak-style1 .ak-funfact-text p {
  color: #111;
  font-family: Oxanium;
  font-weight: 700;
  line-height: normal;
  font-size: 24px;
  text-transform: uppercase;
  text-align: center;
  margin-top: 0;
  margin-bottom: 5px;
}

@media screen and (max-width: 767px) {
  .ak-funfact.ak-style1 {
    margin-bottom: 0px;
    text-align: start;
  }
  .ak-funfact.ak-style1 .ak-funfact-text p {
    font-size: 16px;
  }

  .ak-funfact.ak-style1 .ak-funfact-number span {
    font-size: 36px;
  }

  .ak-hero.ak-style1 .hero-slider-info .mini-title {
    font-size: 16px;
  }

  .ak-hero.ak-style1 .ak-hero-bg {
    height: 65vh;
  }
  .ak-hero.ak-style1 {
    height: 65vh;
  }
  .ak-hero.ak-style1 .hero-slider-info {
    height: 65vh;
  }
  .hero-slider-info .slider-info {
    margin: auto auto 85px auto;
  }
}
/*--------------------------------------------------------------
  17. Testimonal
----------------------------------------------------------------*/
.ak-testimonal {
  background: #000000;
  display: flex;
  justify-content: space-between;
  position: relative;
}
.ak-testimonal .testimonal-img {
  position: absolute;
  right: 0;
  top: 100px;
}
.ak-testimonal
  .swiper-slide.swiper-slide-active
  .testimonal-info.ak-style1
  .slider-info
  .name {
  opacity: 1;
  transition: all 0.6s;
  transition-delay: 0.3s;
  color: #fff;
}
.ak-testimonal
  .swiper-slide.swiper-slide-active
  .testimonal-info.ak-style1
  .slider-info
  .from {
  opacity: 1;
  transition: all 0.6s;
  transition-delay: 0.5s;
  color: #fff;
}
.ak-testimonal
  .swiper-slide.swiper-slide-active
  .testimonal-info.ak-style1
  .slider-info
  .desp {
  opacity: 1;
  margin-left: 0px;
  transition: all 0.6s;
  transition-delay: 0.6s;
  color: #fff;
}
.ak-testimonal .testimonal-info.ak-style1 {
  display: flex;
  height: 100%;
  align-items: flex-end;
  justify-content: space-between;
}
.ak-testimonal .testimonal-info.ak-style1 .testimaonial-slide-img {
  max-width: 500px;
  max-height: 522px;
}
.ak-testimonal .testimonal-info.ak-style1 .slider-info {
  max-width: 570px;
  margin-bottom: 60px;
  margin-left: 60px;
  overflow: hidden;
}
.ak-testimonal .testimonal-info.ak-style1 .slider-info .name {
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.7, -0.56, 0.27, 1.6);
}
.ak-testimonal .testimonal-info.ak-style1 .slider-info .from {
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.7, -0.56, 0.27, 1.6);
}
.slider-info .desp {
  margin-top: 26px;
  font-size: 16px;
  font-style: italic;
  font-weight: 500;
  line-height: 125%;
}

.ak-testimonal-controll {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.ak-testimonal-controll .testimonal-controll {
  display: flex;
  gap: 25px;
}
.ak-testimonal-controll .testimonal-controll .button {
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white-color);
  text-transform: uppercase;
  padding: 7px 15px;
  border: 1px solid var(--white-color);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
}
.ak-testimonal-controll .testimonal-controll .button img {
  transition: all 0.3s;
}
.testimonal-next:hover img {
  transform: translateX(5px);
}
.testimonal-next {
  position: absolute;
  top: 33%;
  transform: translateY(-50%);
  z-index: 255;
}
.testimonal-prev {
  position: absolute;
  top: 33%;
  transform: translateY(-50%);
  z-index: 255;
  right: 0;
}
.testimonal-prev:hover img {
  transform: translateX(-5px);
}
.ak-testimonal-controll .testimonal-controll .button:hover {
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

@media screen and (max-width: 991px) {
  .ak-testimonal .testimonal-info.ak-style1 {
    flex-direction: column-reverse;
    gap: 30px;
  }
  .ak-testimonal .testimonal-info.ak-style1 .testimaonial-slide-img {
    max-width: 100%;
    max-height: 522px;
  }
  .ak-testimonal .testimonal-info.ak-style1 .slider-info {
    max-width: 100%;
    margin-left: 10px;
    margin-bottom: 10px;
  }
  .ak-testimonal .testimonal-info.ak-style1 .slider-info .desp {
    font-size: 22px;
  }
  .ak-testimonal .testimonal-img {
    top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .ak-testimonal {
    background: transparent;
  }
  .ak-testimonal .testimonal-info.ak-style1 .slider-info {
    margin: 0px;
  }
}
/*--------------------------------------------------------------
  18. team
----------------------------------------------------------------*/
.team-contant {
  display: flex;
  gap: 80px;
}
.team-contant .team-heading {
  max-width: 340px;
}

.team-card {
  position: relative;
  width: 280px;
  height: 300px;
  max-width: 100%;
  max-height: 100%;
  background-repeat: no-repeat;
}
.team-card .team-style-1 {
  position: absolute;
  background: #000;
  bottom: -40px;
  padding: 23px 0px;
  width: 76%;
  height: 100px;
  margin: 0 12%;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
  border-bottom: 1px solid #000;
}
.team-card .team-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.5s ease;
}
.team-card .team-info .team-info-social {
  transition: all 0.5s ease;
  opacity: 0;
  position: relative;
  left: -100%;
  cursor: pointer;
  margin-top: 5px;
  bottom: 25px;
}
.team-card .team-info .team-info-social .icon {
  width: 30px;
  height: 30px;
  cursor: pointer;
  border: 1px solid #fff;
  padding: 0px 8px;
  display: inline-block;
}
.team-card .team-info .team-info-social .icon:hover {
  cursor: pointer;
  border: 0;
  background-color: var(--primary-color);
}
.team-card .team-info .team-title {
  text-align: center;
}
.team-card .team-info .team-title a {
  cursor: pointer;
  font-size: 20px;
  color: #fff;
  font-weight: 700;
  font-family: "Oxanium", sans-serif;
}
.team-card .team-info .team-title .desp {
  top: 5px;
  opacity: 1;
  position: relative;
  right: 0;
  transition: all 0.5s ease-in-out;
}
.team-card:hover .team-style-1 .team-info-social {
  opacity: 1;
  position: relative;
  left: 0;
  transition: all 0.5s ease-in-out;
  width: 100%;
  display: flex;
  gap: 10px;
  justify-content: center;
}
.team-card:hover .team-style-1 .team-title {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.team-card:hover .team-style-1 .team-title .desp {
  opacity: 0;
  position: relative;
  right: -105%;
  transition: all 0.5s ease-in-out;
}

.ceo-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 88px;
}
.ceo-content .left-info {
  width: 420px;
  height: 488px;
  flex-shrink: 0;
}
.ceo-content .left-info img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.ceo-content .right-info {
  max-width: 815px;
  padding-right: 88px;
  display: flex;
  gap: 55px;
  flex-shrink: 1;
  flex-direction: column;
}
.ceo-content .right-info .ceo-title {
  display: flex;
  justify-content: space-between;
}
.ceo-content .right-info .ceo-desp .desp {
  font-size: 28px;
  line-height: 35px;
  font-style: italic;
}
.ceo-content.type_2 .right-info {
  gap: 25px;
}
.ceo-content.type_2 .right-info .ceo-desp .desp {
  font-size: 18px;
  font-style: normal;
  line-height: 27px;
}
.ceo-content.type_2 .right-info .ceo-desp .address-list {
  margin: 25px 0 0 0;
  padding: 0;
  text-decoration: none;
  list-style: none;
}
.ceo-content.type_2 .right-info .ceo-desp .address-list li {
  margin-bottom: 10px;
}
.ceo-content.type_2 .right-info .ceo-desp .address-list span {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.all-members .member-card:hover,
.all-members .member:hover {
  transition: all 0.3s ease-in-out;
  transform: translateY(10px);
}
.all-members .member-card:hover .member-img img,
.all-members .member:hover .member-img img {
  transform: scale(1.1);
}

.member-card {
  position: relative;
  max-width: 420px;
  max-height: 485px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  margin-bottom: 58px;
  transition: all 0.3s ease-in-out;
}
.member-card .member-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.member-card .member-info {
  position: absolute;
  background-color: #000;
  width: 80%;
  padding: 27px 0 0 0;
  display: flex;
  flex-direction: column;
  text-align: center;
  bottom: -60px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.1215686275);
}
.member-card .member-info .member-title {
  transition: all 0.5s ease-in-out;
}
.member-card .member-info .member-title .title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}
.member-card .member-info .member-title .title:hover {
  color: #ff3d24;
}
.member-card .member-info .member-title .desp {
  font-size: 16px;
  opacity: 1;
  right: 0%;
  transition: all 0.5s ease-in-out;
}
.member-card .member-info .member-info-social {
  opacity: 0;
  left: -50%;
  transition: all 0.5s ease-in-out;
  position: relative;
  bottom: 18px;
}
.member-card .member-info .member-info-social .icon {
  margin-right: 8px;
  border: 1px solid rgba(255, 255, 255, 0.3490196078);
  display: inline-block;
  position: relative;
  width: 30px;
  height: 30px;
}
.member-card .member-info .member-info-social .icon:hover {
  background-color: #ff3d24;
}
.member-card .member-info:hover .member-info-social {
  opacity: 1;
  position: relative;
  left: 0%;
  transition: all 0.5s ease-in-out;
}
.member-card .member-info:hover .member-title .desp {
  position: relative;
  right: -50%;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}

@media screen and (max-width: 1399px) {
  .team-contant {
    flex-direction: column;
    gap: 55px;
  }
  .team-card {
    width: 100%;
    height: 450px;
    -o-object-fit: cover;
    object-fit: cover;
    margin-bottom: 70px;
  }
}
@media screen and (max-width: 1199px) {
  .ceo-content {
    gap: 50px;
  }
  .ceo-content .right-info {
    padding: 0;
    gap: 30px;
  }
  .ceo-content .right-info .ceo-desp .desp {
    font-size: 22px;
  }
}
@media screen and (max-width: 991px) {
  .ceo-content {
    flex-direction: column;
  }
  .ceo-content .left-info {
    width: 100%;
    height: 100%;
  }
  .ceo-content .right-info {
    gap: 30px;
  }
  .ceo-content .right-info .ceo-title svg {
    width: 100px !important;
    height: 50px !important;
  }
  .ceo-content .right-info .ak-heartbeat-btn {
    width: 75px;
    height: 75px;
  }
}

/*--------------------------------------------------------------
  20. Blog
----------------------------------------------------------------*/
.blog {
  display: flex;
  gap: 30px;
}

.blog-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  background-color: transparent;
  height: 100%;
}
.blog-card .blog-header-info {
  margin-bottom: 25px;
  width: 100%;
  flex-shrink: 0;
  overflow: hidden;
}
.blog-card .blog-header-info img {
  width: 100%;
  height: auto;
  transition: all 0.5s ease-in-out;
}
.blog-card .blog-body-info {
  padding-left: 20px;
  flex: 1 1 auto;
}
.blog-card .blog-body-info .blog-text {
  margin-top: 10px;
  font-size: 16px;
}
.blog-card .blog-body-info .blog-title {
  font-size: 20px;
  font-weight: 700;
  font-family: "Oxanium", sans-serif;
  color: #fff;
}
.blog-card .blog-body-info .blog-title:hover {
  color: #ff3d24;
}
.blog-card .blog-footer-info {
  margin-top: 20px;
  padding-left: 20px;
}

.blog-card:hover img {
  transform: scale(1.2); /* Zoom in the image on hover */
}

.blog-feature {
  display: flex;
  gap: 30px;
  font-size: 18px;
}
.blog-feature .feature-content {
  max-width: 420px;
}
.blog-feature .feature-content .data {
  margin-bottom: 14px;
}
.blog-feature .feature-content .title {
  margin-bottom: 10px;
}
.blog-feature .feature-content .desp {
  margin-bottom: 35px;
}
.blog-feature .feature-img {
  width: 100%;
}
.blog-feature .feature-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.blog-pages-section-title {
  display: flex;
  gap: 30px;
}
.blog-pages-section-title .title {
  min-width: 420px;
}
.blog-pages-section-title .select-subject .title {
  margin-bottom: 10px;
}

.single-blog-list .single-blog-title {
  margin-bottom: 20px;
  text-transform: uppercase;
}
.single-blog-list .single-blog-desp {
  margin-bottom: 50px;
}

@media screen and (max-width: 991px) {
  .blog {
    display: flex;
    flex-direction: column;
    gap: 50px;
  }
  .blog-card {
    flex-direction: row;
    align-items: center;
    gap: 30px;
  }

  .blog-body-info h4 {
    font-size: 28px;
    margin-top: 10px;
  }
  .blog-card .blog-header-info {
    margin-bottom: 10px;
    width: 300px;
  }
  .blog-card .blog-body-info {
    padding-left: 0px;
  }
  .blog-card .blog-footer-info {
    margin-top: 10px;
    padding-left: 0px;
  }
  .blog-feature {
    flex-wrap: wrap;
  }
  .blog-feature .feature-content .desp {
    margin-bottom: 15px;
  }
  .blog-pages-section-title {
    gap: 30px;
    justify-content: space-between;
  }
  .blog-pages-section-title .title {
    min-width: 0px;
  }
}
@media screen and (max-width: 767px) {
  .blog-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .blog-card .blog-header-info {
    width: 100%;
  }
  .blog-pages-section-title {
    flex-direction: column;
    gap: 0px;
  }
  .blog-pages-section-title .title {
    min-width: 0px;
  }
  .single-blog-list .single-blog-title {
    margin-bottom: 15px;
  }
  .single-blog-list .single-blog-desp {
    margin-bottom: 50px;
  }
}

/*--------------------------------------------------------------
  25. Contact
----------------------------------------------------------------*/
.contact-content {
  display: flex;
  width: 100%;
  gap: 30px;
}
.contact-content .contact-title-section {
  max-width: 441px;
  width: 100%;
}
.contact-content .contact-form {
  width: 100%;
}

/* .contact-form .from-inputs {
  display: flex;
  gap: 30px;
  margin-bottom: 15px;
} */
.contact-form .from-inputs input {
  color: #fff;
  background-color: transparent;
  padding: 12px 20px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  flex: 1;
  outline: none;
}
.contact-form .from-inputs input:focus {
  border-color: #fff !important;
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.19);
}
.contact-form .from-inputs .type_1 {
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
  margin-bottom: 15px;
}
.contact-form .from-inputs .type_1 label {
  text-transform: uppercase;
  font-size: 16px;
}
.contact-form .from-inputs .type_1 input {
  color: #111;
  border: 1px solid rgba(255, 61, 36, 0.4392156863);
}
.contact-form .from-inputs .type_1 input:focus {
  border-color: rgba(255, 61, 36, 0.4392156863) !important;
}
.contact-form .from-inputs .type_1 .date-time-icon {
  position: absolute;
  top: 54%;
  right: 26px;
  width: 20px;
  height: 20px;
  z-index: -10;
}
.contact-form .from-textarea {
  display: flex;
  margin-bottom: 45px;
}
.contact-form .from-textarea textarea {
  padding: 12px 20px;
  color: #fff;
  outline: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  flex-grow: 1;
  background-color: transparent;
}
.contact-form .from-textarea textarea:focus {
  border-color: #fff !important;
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.19);
}
.contact-form .from-textarea .type_1 {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.contact-form .from-textarea .type_1 label {
  font-size: 16px;
  text-transform: uppercase;
}
.contact-form .from-textarea .type_1 textarea {
  color: #fff;
  border: 1px solid rgba(255, 61, 36, 0.4392156863);
}
.contact-form .from-textarea .type_1 textarea:focus {
  border-color: rgba(255, 61, 36, 0.4392156863) !important;
  box-shadow: 0 0 0 0.25rem rgba(109, 10, 10, 0.486);
}
.contact-form input[type="time"],
.contact-form input[type="date"] {
  overflow: hidden;
  position: relative;
  right: 0;
}
.contact-form input[type="time"]::-webkit-calendar-picker-indicator,
.contact-form input[type="date"]::-webkit-calendar-picker-indicator {
  background: transparent;
  bottom: 0;
  color: transparent;
  position: absolute;
  filter: invert(1);
  cursor: pointer;
  height: 100%;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
}

.custom-file .custom-file-upload {
  display: inline-block;
  cursor: pointer;
  background-color: transparent;
  color: #ff3d24;
  font-size: 22px;
  border: none;
  border-radius: 5px;
}
.custom-file .custom-file-upload span {
  color: #fff;
  font-size: 16px;
}
.custom-file input {
  display: none;
}

.contact-info {
  display: flex;
  gap: 40px;
}
.contact-info .left-info {
  max-width: 460px;
  width: 100%;
}
.contact-info .right-info {
  width: 100%;
}
.contact-info .right-info .info-card {
  padding: 50px;
  display: flex;
  font-weight: 700;
  line-height: normal;
  font-size: 24px;
  font-family: "Oxanium", sans-serif;
  justify-content: space-between;
  color: #fff;
}
.contact-info .right-info .info-card:nth-child(odd) {
  background-color: #000;
}

@media screen and (max-width: 991px) {
  .contact-content {
    flex-direction: column;
    gap: 15px;
  }
  .contact-form .from-inputs {
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .contact-info {
    flex-direction: column;
  }
  .contact-info .left-info {
    width: 100%;
  }
  .contact-info .right-info {
    width: 100%;
  }
  .contact-info .right-info .info-card {
    padding: 45px 15px;
    flex-direction: column;
    gap: 15px;
  }
  .tel,
  .wat {
    display: none !important;
  }
  .loc {
    bottom: 160px !important;
    right: 15px !important;
  }
  .showcase h2 {
    font-size: 24px;
  }
  .contact-form-title {
    text-align: center;
  }
  .contact-form .common-btn {
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .grecaptcha-badge {
    opacity: 0 !important;
  }
}

.grecaptcha-badge {
  opacity: 1;
}

.showcase {
  width: 100%;
  height: 400px;
  position: relative;
  color: white;
  text-align: center;
}

.showcase img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
}

.showcase .overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 20, 47, 0.9);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 966;
  margin-top: 100px;
}

.showcase h2 {
  margin-top: 20px;
  font-size: 70px;
  color: white;
  text-align: start;
  margin-bottom: 10px;
}
.showcase h3 {
  color: white;
}
.showcase .banner-buttons{
  display: flex;
  gap: 15px;
}

.showcase .banner-buttons a{
  border-radius: 10px;
  font-weight: 700;
}

.showcase .banner-buttons a:hover{
  transform: translate3d(0px, -7px, 0.01px);
  color: white;
}

.showcase p {
  margin-top: 8px;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  text-align: start;
}

.btn-whatsapp-pulse {
  background: #25d366;
  color: white;
  position: fixed;
  bottom: 110px;
  right: 40px;
  font-size: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 0;
  height: 0;
  padding: 25px;
  text-decoration: none;
  border-radius: 50%;

  z-index: 3333;
}

.tel {
  background-color: #1a188d;
  bottom: 170px;
}

.btn-whatsapp-pulse:hover {
  color: #000;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(243, 28, 8, 0.781);
  }
  80% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
}

.btn-whatsapp-pulse-border {
  bottom: 170px;
  right: 40px;
  animation-play-state: paused;
}

.loc {
  background-color: #e12424;
  bottom: 230px;
  animation-name: pulse;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}
.pop_brand {
  padding-top: 30px !important;
  background-color: #f9f9f9 !important;
}
.tyres_card {
  background-color: #fff;
  padding-bottom: 30px;
  box-shadow: 5px 10px 30px rgba(213, 223, 237, 0.83);
  border: 1px solid #e5ecf5;
  position: relative;
  display: inline-block;
  height: 500px;
}
.tyres_card.new_arrawal.sale_tag::after {
  content: "";
  position: absolute;
  top: -10px;
  right: 10px;
  background-image: url(../../assets/img/tyres_landing_images/sales_hot.svg);
  height: 85px;
  width: 85px;
  z-index: 2;
  background-size: cover;
  background-repeat: no-repeat;
  left: -11px;
  background-size: 53px;
}
.tyres_card .card-body {
  text-align: center;
}
.tyres_card img {
  /* max-width: 270px; */
  text-align: center;
}
.card-footer {
  padding: 0 22px;
}
.tyres_card .card-footer h2 {
  font-size: 20px;
    line-height: 26px;
    font-weight: 600;
    font-style: normal;
    color: #053f75;
    text-align: center;
    text-transform: capitalize;
    margin: 0;
}


.tyres_card .card-footer p{
  padding: 20px 0 18px;
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 2;
    margin-bottom: 0;
}
@media (max-width:575.98px){
  .tyres_card{
    height: auto;
  }
  .tyres_card .card-footer h2 {
    font-size: 28px;
    line-height: 0px;
}
.tyres_card .card-footer p {
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
}
}

.pop_brand {
  position: relative;
}
.position-top-right {
  position: absolute;
  top: 70px;
  right: -2px;
  width: 130px;
  opacity: 0.1;
}
.rotation_image {
  animation: rotation 90s infinite ease-in-out;
}
.position-top-left {
  position: absolute;
  left: -20px;
  bottom: -158px;
  z-index: 0;
  width: 170px;
  opacity: 0.1;
}
.top_image_bounce {
  animation: top-image-bounce 3s infinite ease-in-out;
}
@-webkit-keyframes top-image-bounce {
  0% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
  50% {
    -webkit-transform: translateY(12px);
    transform: translateY(12px);
  }
  100% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}
.left-image-bounce {
  animation: left-image-bounce 3s infinite ease-in-out;
}
@-webkit-keyframes left-image-bounce {
  0% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }
  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }
}
@keyframes left-image-bounce {
  0% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }
  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }
}



/* .ak-hero.ak-style1 .hero-slider-info.showcase {
  max-width: 100%;
} */

.ak-hero.ak-style1.tyres_hero .ak-hero-bg {
  position: absolute;
  height: calc(100% + 0px) !important;
  width: 100%;
  left: 0;
  top: 0;
  filter: blur(0) !important;
}
.ak-hero.ak-style1.tyres_hero .hero-slider-info .hero-main-title-1 {
  font-size: 46px;
}
.ak-hero.ak-style1.tyres_hero {
  height: 86vh;
  width: 100%;
  position: relative;
  overflow: hidden;
}
@media(max-width: 475.98px) {
  .ak-hero.ak-style1 .tyres_hero .overlay.hero-slider-info {
    height: 83vh;
  }
  .wheel-work-right {
    padding-bottom: 6px;
   
}
}

.ak-hero.ak-style1.tyres_hero .hero-slider-info {
 
  top: 166px;
}
.wheel-work-right {
  margin-top: 3px;
  padding-bottom: 32px;
  position: relative;
  z-index: 1;
}

.wheel-work-right {
  background: rgba(0, 0, 0, 0) url(../img/tyres_landing_images/bg.webp) no-repeat scroll center center / cover;
}
.wheel-work-right::before {
  /* background: rgba(0, 0, 0, 0.57) none repeat scroll 0 0; */
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
}

.wheel-work-right h1 {
  background: #ba0913 none repeat scroll 0 0;
  color: #ffffff;
  display: block;
  font-size: 22px;
  font-weight: 700;
  padding-bottom: 12px;
  padding-left: 25px;
  padding-top: 10px;
  text-transform: uppercase;
  margin-bottom: 25px;
  text-align: center;
}
.wheel-work-right ul{
  list-style: none;
  padding-left: 0;
}

.wheel-work-right .single-other-service-list {
  background: #000000 none repeat scroll 0 0;
  display: block;
  margin-bottom: 10px;
  margin-left: 12px;
  margin-right: 12px;
  padding-bottom: 20px;
  padding-top: 16px;
  transition: all 700ms ease 0s;
}

.wheel-work-right .single-other-service-list .icon-holder {
  float: left;
  width: 65px;
  text-align: center;
  font-size: 36px;
  color: #FFF;
}

.wheel-work-right .single-other-service-list .icon-holder span::before {
  color: #fff;
  font-size: 32px;
  position: relative;
  top: 15px;
}

.wheel-work-right .single-other-service-list .title {
  overflow: hidden;
  position: relative;
  padding-left: 20px;
}

.wheel-work-right .single-other-service-list .title:before {
  position: absolute;
  top: 4px;
  left: 0;
  background: #191919;
  width: 1px;
  height: 45px;
  content: "";
  transition: all 700ms ease 0s;
}

.wheel-work-right .single-other-service-list .title h3 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 15px;
  text-transform: uppercase;
}

.wheel-work-right .single-other-service-list .title h6 {
  color: #ffffff;
  font-size: 12px;
}

.wheel-work-right ul li.active .single-other-service-list {
  background: #ba0913;
}

.wheel-work-right ul li.active .single-other-service-list .title:before {
  background: #fff;
}

.wheel-work-right .single-other-service-list:hover {
  background: #ba0913;
}

.wheel-work-right .single-other-service-list:hover .title:before {
  background: #fff;
}
.my-svg-container {
  position: relative;
  width: 200px;
  height: 200px;
  border: 1px solid #ccc;
}
.button.btn_get_offer {
  position: relative;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  padding-block: 0.5rem;
  padding-inline: 1.25rem;
  background-color: rgb(0 107 179);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #ffff;
  gap: 10px;
  font-weight: bold;
  border: 3px solid #ffffff4d;
  outline: none;
  overflow: hidden;
  font-size: 15px;
  margin: auto;
}

.btn_get_offer .icon {
  width: 24px;
  height: 24px;
  transition: all 0.3s ease-in-out;
}

.btn_get_offer.button:hover {
  transform: scale(1.05);
  border-color: #fff9;
}

.btn_get_offer.button:hover .icon {
  transform: translate(4px);
}

.btn_get_offer.button:hover::before {
  animation: shine 1.5s ease-out infinite;
}

.btn_get_offer.button::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100%;
  background-image: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0) 70%
  );
  top: 0;
  left: -100px;
  opacity: 0.6;
}

@keyframes shine {
  0% {
    left: -100px;
  }

  60% {
    left: 100%;
  }

  to {
    left: 100%;
  }
}


.tyres_hero .overlay{
      background-color: unset;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}



  .ak-hero.ak-style1.tyres_hero::before {
    content: "";
    display: block;
    position: absolute;
    z-index: 1;
    width: 100%;
    /* height: 95vh; */
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .65);
    bottom: -15px;
    /* height: calc(100% + -64px) !important; */
}

.review-wrapper .review-card {
  text-align: center;
}
.cust_img_review {
  color: rgb(26, 13, 171);
  cursor: pointer;
  display: block;
  float: left;
  height: 60px;
  text-align: left;
  width: 60px !important;
  perspective-origin: 20px 20px;
  transform-origin: 20px 20px;
  border: 0px none rgb(26, 13, 171);
  border-radius: 50% 50% 50% 50%;
  font: normal normal normal normal 13px / normal arial, sans-serif;
  margin: 0px 5px 0px 0px;
  outline: rgb(26, 13, 171) none 0px;
}
.review-card h5 {
  font-weight: bold;
  margin-top: 10px;
  font-size: 14px;
}
.star-rating {
  color: #FFD700; /* Yellow color for stars */

  justify-content: center;
  align-items: center;
}
.star-rating img{
  max-width: 28px;
  height: 20px;
}

.review-card p{
  margin-top: 20px;
  font-size: 16px;
  line-height: 20px;
  color: #747474;
}

#reviews-owl .owl-nav button{
  position: absolute;
   width: 40px;
      height: 40px;
      border-radius: 50%;
      z-index: 22;
      color: #FFF;
   cursor: pointer;
      background: #191919;
  }
  
  #reviews-owl .owl-nav button.owl-next{
     top: 35%;
         right: -20px;
  }
  #reviews-owl .owl-nav button.owl-prev {
       left: -22px;
      top: 35%;
  }
  .review_btn{
    max-width: 180px;
  }
  
  
      .glass-card {
      background: rgb(0 0 0 / 15%);
      border-radius: 10px;
      padding: 20px 10px;
         backdrop-filter: blur(5px);
      -webkit-backdrop-filter: blur(5px);
      border: 1px solid rgba(255, 255, 255, 0.3);
      color: white;
      position: relative;
    }


.cust_close {
      position: absolute;
    top: -28px;
    /* right: -6px; */
    background-color: black !important;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 2;
    border: 2px solid #ffffff80;
    right: 45%;
    }
    .cust_close span {
      font-size: 20px;
          margin-bottom: 7px;

    }
    /*.cust_close{*/
    /*    border: 2px double transparent;*/
    /*background-image: linear-gradient(rgb(13, 14, 33), rgb(13, 14, 33)), radial-gradient(circle at left top, rgb(1, 110, 218), rgb(217, 0, 192));*/
    /*background-origin: border-box;*/
    /*background-clip: padding-box, border-box;*/
    /*}*/
.btn-glow:hover {
    box-shadow: rgba(111, 76, 25, 0.5) 0px 0px 20px 0px;
        transition: all 0.3s ease;
}
    .position-top-left {
      position: absolute;
      left: -20px;
      bottom: -158px;
      z-index: 0;
      width: 170px;
      opacity: 0.1;
    }

    .left-image-bounce {
      animation: left-image-bounce 3s infinite ease-in-out;
    }

    @keyframes left-image-bounce {
      0% {
        -webkit-transform: translateX(-5px);
        transform: translateX(-5px);
      }

      50% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
      }

      100% {
        -webkit-transform: translateX(-5px);
        transform: translateX(-5px);
      }
    }

    .Charecter_avathar {
      border-radius: 10px;
      max-width: 174px;
    }



    .btn-container {
      display: flex;
      justify-content: center;
      gap: 15px;
      /* Space between buttons */
    }

    .call-now-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 10px 11px;
      border: 1px solid #fff;
      border-radius: 6px;
      font-size: 12px;
      font-weight: 400;
      color: #fff;

      text-decoration: none;
      transition: background-color 0.3s, border-color 0.3s;
    }

    .call-now-btn i {
      margin-right: 8px;
      font-size: 12px;
    }

    /* .call-now-btn:hover {
    background-color: #0056b3; 
    border-color: #0056b3;
} */
    .whatsapp-btn {
      background-color: #148a34;
    }

    .call-btn {
      background-color: #e9231c;
    }

    .custom-fieldset {
      border: 2px solid #ffffff;
      /* Border color for the fieldset */
      border-radius: 10px;
      padding: 20px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      margin-top: 10px;
      padding-top: 0;


    }

    .custom-legend {
      color: #ffffff;
      font-weight: 500;
      font-size: 15px;
      margin-bottom: 0;
       text-align: center;

    }
    
         .highlight-card{
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 5px;
    border-radius: 8px;
            background: #FFF;
                    position: relative;
        z-index: 999;
}






.highlight-card .hightlight_para{
    font-size: 20px;
    margin: 0;
    color: #000;
margin-bottom:0;
}

.highlight-card p{
  margin: 0;
  color: #000;
  margin-bottom: 0;
  font-size: 12px;
}
/*.highlight .col-4:nth-child(1) .highlight-card{*/
  
/*  background: #e9231c;*/
/*}*/
/*.highlight .col-4:nth-child(2) .highlight-card{*/
  
/*  background: #f1d015;*/
/*}*/
/*.highlight .col-4:nth-child(3) .highlight-card{*/
  
/*  background: #148a34;*/
/*}*/


.hight-light-wrapper{
    
            position: relative;
        z-index: 137;
         top: 94px; 
       
        display:none;
}
    

/* tabby */

.tabby {
  background: linear-gradient(230deg, rgb(97 233 178) 0%, rgb(24 79 142) 76%);
  position: relative;
  padding: 30px 20px;
  border-radius: 100px;
  /*margin-top:50px;*/
}

.tabby-content{
  display: flex;
  flex-direction: column;
  align-items:center;
  justify-content: center;
  gap: 10px;
}
.tabby-content a{
    text-decoration:none;
    color:#000;
}
.tabby-header h3{
  text-align: center;
  color: rgb(131, 232, 191);
  font-family: inherit;
  margin-bottom: 10px;
}
.tabby-content h2{
  color: white;
  text-align: center;
  letter-spacing: 2px;
}
.tabby-content button{
  border: none;
  padding: 5px 30px;
  border-radius: 20px;
  background: rgb(97 233 178);
  font-weight: 800;
  outline: none;
  cursor: pointer;
  border: 3px solid #ffffff4d;
}
.tabby-content button:hover{
  transform: scale(1.05);
}
.tabby-content button:hover::before{
  animation: shine 1.5s ease-out infinite;
}
.tabby-img{
  position: absolute;
  width: 350px;
  top: -120px;
  right: 100;
}
@media (max-width:776px) {

  .tabby{
    border-radius: 20px;
    background: linear-gradient(230deg, rgb(97 233 178) 0%, rgb(24 79 142) 66%);
    margin-top: 0;
  }
  .tabby-img{
    width: 250px;
    top: -10px;
    right: 20px;
  }
}

@media (max-width:576px) {

  .tabby{
    padding: 10px 10px 20px 10px;
    border-radius: 10px;
    margin-top: 30px;
  }
  .tabby .row{
    display: flex;
    flex-direction: column-reverse;
  }
  .tabby-img{
    position:unset;
    margin: -80px auto 0px auto;
    width: 60%;
    top: 0;
    right: 0;
  }

  .tabby-content{
    gap: 10px;
    flex-direction: column;
  }
  .tabby-content h2{
    letter-spacing: 0px;
  }
  .tabby-content .button{
    padding: 2px 20px;
  }
}

.banner-btn {
  padding: 10px 30px;
  display: inline-block;
  color: var(--white-color);
  font-size: 18px;
  font-weight: 500;
  font-family: "Oxanium", sans-serif;
  border: none;
  transform-style: preserve-3d;
  transition: background-color 0.4s, transform 0.3s, color 0.3s;
  transform: translate3d(0, 0px, 0px);
  /* width: 200px; */
  text-align: center;
}
.banner-btn.call{
  background: #E9231C;
}
.banner-btn.chat{
  background: #1C9A42;
}

.work-progress-data{
  display: flex;
  align-items: start;
}

.work-progress-data .how-works-img{
  background-color: rgb(255, 255, 255);
  padding: 30px;
  border-radius: 100%;
}
.work-progress-data.data2,
.work-progress-data.data4{
  margin-top: 60px;
}
.work-progress-data p{
  text-align: center;
  font-size: 16px;
}
.how-works{
  padding-top: 50px;
}
.how-works .row{
padding-top: 60px;
}

.team-action .grid{
  padding-left: 10px;
  padding-right: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 10px;
}

/* General layout and spacing for each review item */
.reviews-theme .item {
  display: flex;
  justify-content: center;
  padding: 24px 17px;
  gap: 23px;
  background-color: #fff;
  min-height: 313px;
  margin: 10px;
  /* box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; */
  background-image: url(../../assets/img/wheel-balancing/Tabpanel.svg);
}

/* Review text styling */
.reviews-theme .item p {
  margin-bottom: 20px;
  color: #4B4B4B;
  font-family: Sarabun;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}


.reviews-theme .item h5 {
  margin-bottom: 10px;
  color: #0A0A0A;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
}


.reviews-theme .item .item-img {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center; 
  position: relative;
}


.reviews-theme .item .cust_img {
  width: 60px; 
  height: 60px; 
  object-fit: cover; 
  border-radius: 50%; 
  margin-bottom: 10px; 
  position: relative;
  z-index: 2;
}

.reviews-theme .item .item-content{
  width: fit-content;
}

.reviews-theme .item .quote {
  width: 40px !important;
  height: 40px;
  margin-bottom: 20px !important; 
  position: relative;
  z-index: 2; 
}

.reviews-theme .item .item-img::after {
  content: "";
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1px; 
  height: 60px; 
  background-color: #D2D2D2; 
  z-index: 1;
}

.service .card {
  border-radius: 0px;
  overflow: hidden;
  padding: 26px;
  margin-bottom: 25px;
background: rgba(217, 217, 217, 0.30);
}

.service .btn {
  display: block;
  width: 100%;
  padding: 10px;
  background-color: #000;
  color: white;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  margin-top: 20px;
  border-radius: 0px;
  transition: background-color 0.4s ease-out;
}
.service .card:hover .btn{
  background-color: red;
}
.service .card-content {
  padding: 20px;
}
.service h2 {
  margin-top: 0;
  margin-bottom: 10px;
  color: #000;
text-align: center;
font-size: 27px;
font-style: normal;
font-weight: 600;
line-height: 38.4px; /* 120% */
letter-spacing: -1px;
}
.service p {
  color: #666;
  font-size: 14px;
  text-align: center;
  margin-bottom: 20px;
}
.service .icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
  position: absolute;
  z-index: 10;
  top: 35%;
  bottom: 0;
  left: 50%;
  translate: -50% -50%;
  border: 1px solid red;
  background-color: white;
  padding: 10px;
}
.service .icon img {
  width: 30px;
  height: 30px;
}
.service .card-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.service .card-image.img1{
  background: url(../../assets/img/wheel-balancing/service1.webp);
  background-size: cover;
}
.service .card-image.img2{
  background: url(../../assets/img/wheel-balancing/service2.webp);
  background-size: cover;
}
.service .card-image.img3{
  background: url(../../assets/img/wheel-balancing/3dWheelAlignment.jpg);
  background-size: cover;
}
.service .card-image.img4{
  background: url(../../assets/img/wheel-balancing/WheelBalancing.jpg);
  background-size: cover;
}
.service .card-image.img5{
  background: url(../../assets/img/wheel-balancing/AlloyWheelsRepair.jpg);
  background-size: cover;
}
.service .card-image.img6{
  background: url(../../assets/img/wheel-balancing/BattaryCare.jpg);
  background-size: cover;
}
.service .card-image.img7{
  background: url(../../assets/img/wheel-balancing/breakpad.svg);
  background-size: cover;
}
.service .card-image.img8{
  background: url(../../assets/img/wheel-balancing/oil-change.webp);
  background-size: cover;
}
.service .card-image.img9{
  background: url(../../assets/img/wheel-balancing/suspension.webp);
  background-size: cover;
}

.service .card-image.img10{
  background: url(../../assets/img/wheel-balancing/air-filter-replacement.webp);
  background-size: cover;
}

.service .card-image.img11{
  background: url(../../assets/img/wheel-balancing/ac-filter-replacement.webp);
  background-size: cover;
}

.service .card-image.img12{
  background: url(../../assets/img/wheel-balancing/fluid-checking.webp);
  background-size: cover;
}

.service .card-image.img13{
  background: url(../../assets/img/wheel-balancing/break-cleaning.webp);
  background-size: cover;
}

.service .card-image.img14{
  background: url(../../assets/img/wheel-balancing/21point-car-inspection.webp);
  background-size: cover;
}

.service .card-image.img15{
  background: url(../../assets/img/wheel-balancing/interior-and-exterior-cleaning.webp);
  background-size: cover;
}

.service .card-image.img16{
  background: url(../../assets/img/wheel-balancing/tyre-rotation.webp);
  background-size: cover;
}

.service .card-image.img17{
  background: url(../../assets/img/wheel-balancing/wheel-balancing.webp);
  background-size: cover;
}

.service .card-image.img18{
  background: url(../../assets/img/wheel-balancing/electrical-service.webp);
  background-size: cover;
}


.service .card-image.img19{
  background: url(../../assets/img/wheel-balancing/mechanical-service.webp);
  background-size: cover;
}

.hx-client-area {
  padding: 60px 0;
}

.hx-client-area .owl-carousel .owl-item img {
  transform-style: preserve-3d;
  width: 80%;
}

.hx-client-area .owl-carousel .owl-stage-outer {
  padding-left: 50px;
}


/* .contact .left-section {
  flex: 1;
  padding-right: 40px;
}
 .contact .right-section {
  flex: 1;
} */


.contact{
  background: url(../../assets/img/wheel-balancing/contact-background.svg);
  background-size: cover;
  padding-top: 100px;
  padding-bottom: 163px;
  position: relative;
}
.contact .icon {
  color: #ff0000;
  font-size: 24px;
  margin-bottom: 20px;
}
.contact h1 {
  font-size: 36px;
  margin-bottom: 20px;
  line-height: 1.2;
}
.contact p {
  color: #666;
  line-height: 1.6;
}



.contact input, .contact textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  margin: 10px;
}
.contact button {
  background-color: #000;
  color: #fff;
  border: none;
  padding: 12px 24px;
  cursor: pointer;
  font-weight: bold;
  text-transform: uppercase;
  /*margin-left: 10px;*/
}
.contact button:hover {
  background-color: #333;
}


.bottom_contact_banner{
  background: #E9231C;
  padding-top: 50px;
  padding-bottom: 50px;
  position: absolute;
  z-index: 1000;
  /* top: 50%; */
  left: 50%;
  translate: -50% -50%;

}

.bottom_contact_banner p{
  color: #FFF;
font-size: 16px;
font-style: normal;
font-weight: 600;
line-height: 24px; /* 150% */
}
.bottom_contact_banner h5{
  color: #FFF;
font-size: 32px;
font-style: normal;
font-weight: 700;
line-height: 38.4px; /* 120% */
letter-spacing: -0.32px;
}
.bottom_contact_banner .contact-icon{
  border-radius: 30px;
  padding: 10px;
background: #FFF;
box-shadow: 0px 0px 0px 7px rgba(255, 255, 255, 0.50);
}

.contact_banner_image{
  position: relative;
}
.contact_banner_image img{
  position: absolute;
  top: -9%;
  bottom: 0;
  left: 50%;
  translate: -50% -50%;
  width: 66%;
height: 302px;
flex-shrink: 0;
}

.footer{
  position: relative;
}

.why-choose-us .why-choose-left{
  background: url(../../assets/img/wheel-balancing/why-choose-background.webp);
  background-size: cover;
}
.why-choose-us .why-choose-right{
  background: black;
  padding: 100px 50px;
}

.why-choose-us .why-choose-right h2{
  color: #FFF;
font-size: 48px;
font-style: normal;
font-weight: 700;
line-height: 58.9px; /* 122.708% */
margin-bottom: 20px;
margin-top: 5px;
}
.why-choose-us .why-choose-content{
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.why-choose-us .why-choose-content h5{
  color: #FFF;
font-size: 24px;
font-style: normal;
font-weight: 700;
line-height: 30.67px; /* 127.792% */

}
.why-choose-us .why-choose-content p{
  color: #CDCDCD;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 28px; /* 175% */
}
.why-choose-us .why-choose-content img{
  border-radius: 40px;
background: #272A35;
padding: 15px;
}

.balancing_h5{
color: #E9231C;
text-align: center;
font-size: 14px;
font-style: normal;
font-weight: 700;
line-height: 14px; /* 100% */
text-transform: uppercase;
margin-bottom: 8px;
}

.wheel-banner{
  background: url(../../assets/img/tyres_landing_images/banner.webp);
  background-size: cover;
}