@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");

:root {
  /*** theme colors ***/
  --theme-color: #e54530;
  --theme-color-2: #140a09;
  --theme-color-3: #565969;
  --theme-color-4: #9cc4cf40;
}

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

body {
  font-family: "DM Sans", sans-serif;
  overflow-x: hidden;
  color: var(--theme-color-2);
}

ul {
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Instrument Sans";
}

a {
  color: #000;
  text-decoration: none;
  transition: 0.2s all;
}

a:hover {
  color: #000;
}

.theme-btn {
  display: inline-flex;
  gap: 5px;
  justify-content: center;
  align-items: center;
  background: var(--theme-color);
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  padding: 15px 25px;
  transition: 0.2s all;
  border-radius: 7px;
  border: 0;
}

.theme-btn img {
  width: 14px;
  height: 14px;
  object-fit: cover;
  filter: brightness(0) invert(1);
}

.theme-btn:hover {
  background: var(--theme-color-2);
  color: #fff;
}

.theme-btn-2 {
  display: inline-flex;
  gap: 5px;
  justify-content: center;
  align-items: center;
  background: #fff;
  color: var(--theme-color-2);
  font-size: 17px;
  font-weight: 600;
  padding: 15px 25px;
  transition: 0.2s all;
  border-radius: 7px;
  border: 0;
}

.theme-btn-2 img {
  width: 14px;
  height: 14px;
  object-fit: cover;
  filter: brightness(1);
}

.theme-btn-2:hover {
  background: var(--theme-color);
  color: #fff;
}

.theme-btn-2:hover img {
  filter: brightness(0) invert(1);
}

.theme-btn-3 {
  display: inline-flex;
  gap: 5px;
  justify-content: center;
  align-items: center;
  background: var(--theme-color-2);
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  padding: 15px 25px;
  transition: 0.2s all;
  border-radius: 7px;
  border: 0;
}

.theme-btn-3 img {
  width: 14px;
  height: 14px;
  object-fit: cover;
  filter: brightness(0) invert(1);
}

.theme-btn-3:hover {
  background: #fff;
  color: var(--theme-color-2);
}

.theme-btn-3:hover img {
  filter: brightness(1);
}

.autoRotate {
  animation: autoShowRotate;
  animation-timeline: view();
}

@keyframes autoShowRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.autoMoveY {
  animation: autoMover 3.5s linear infinite;
}

@keyframes autoMoverY {
  50% {
    transform: translateY(-20px);
  }
}

.autoMoveX {
  animation: autoMoverX 3.5s linear infinite;
}

@keyframes autoMoverX {
  50% {
    transform: translateX(-20px);
  }
}

/* Header CSS Start */

.serv-a {
  position: relative;
  cursor: pointer;
}

.serv-a a {
  padding-bottom: 28px;
}

li.serv-a a i {
  padding-left: 11px;
}

.nav-dropdown {
  position: absolute;
  top: 50px;
  opacity: 0;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  transform-origin: 0 0 0;
  -webkit-transform-origin: 0 0 0;
  text-align: left;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 9;
}

.nav-dropdown ul {
  display: block !important;
  background-color: var(--theme-color);
}

.serv-a:hover .nav-dropdown {
  visibility: visible;
  opacity: 1;
  clip: inherit;
  -webkit-transform: scaleY(1);
  -khtml-transform: scaleY(1);
  transform: scaleY(1);
}

.nav-dropdown ul li {
  transition: 0.2s all;
  border-bottom: 1px solid #000;
}

.nav-dropdown ul li:last-child {
  border-bottom: 0;
}

.nav-dropdown ul li a {
  padding: 10px 13px;
  width: 200px;
  display: block;
  font-size: 14px !important;
  text-transform: capitalize;
  color: #fff !important;
}

.nav-dropdown ul li:hover {
  background-color: #000;
}

.nav-dropdown ul li:hover a {
  color: #fff;
}

.offcanvas,
.offcanvas-btn {
  display: none;
}

a.btn.offcanvas-btn {
  display: none;
}

.closebtn {
  position: absolute;
  right: 20px;
  top: 30px;
  cursor: pointer;
}

.closebtn i {
  color: #000;
  font-size: 30px;
}

.top-bar {
  background: var(--theme-color-2);
  padding: 10px 0;
}

.top-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-email {
  display: flex;
  align-items: center;
  gap: 10px;
}

.phone-flex a {
  color: #fff;
}

.phone-flex i {
  color: #fff;
}

.phone-flex {
  display: flex;
  align-items: center;
  gap: 10px;
}

.phone-flex i {
  color: #e54530;
}

.top-social {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-social a i {
  color: #fff;
}

.head-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.navigation ul {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}

.navigation ul li a {
  color: #000000;
  font-size: 17px;
  font-weight: bold;
}

.navigation ul li a:hover {
  color: var(--theme-color);
}

.logo a h1 {
  font-size: 35px;
  font-weight: 600;
  color: #333333;
  margin-bottom: 0;
}

.logo a h1 span {
  color: var(--theme-color);
}

/* Header CSS End */

/* Banner CSS Start */

.banner-swiper {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.inner-banner .banner-swiper {
    height: auto;
}

.banner-section .swiper-slide {
  opacity: 0;
  transition: opacity 1s ease;
  position: relative;
}

.banner-section .swiper-slide:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 40%);
  top: 0;
  left: 0;
  z-index: 1;
}

.banner-section .swiper-slide-active {
  opacity: 1;
}

.banner-img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.banner-img::before {
  content: "";
  background-color: rgb(12, 11, 11, 0.46);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.banner-img img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  position: relative;
  z-index: 0;
  transform: scale(1);
}

.banner-img img.animate {
  animation: zoomCycle 4s ease-in-out forwards;
}

@keyframes zoomCycle {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

.banner-wrap {
  position: absolute;
  top: 26%;
  z-index: 2;
  width: 100%;
}

.banner-left {
  margin-top: 50px;
  position: relative;
  z-index: 0;
}

.banner-left h1 {
  color: #fff;
  text-transform: capitalize;
  font-size: 64px;
  font-weight: 800;
  margin-bottom: 20px;
}

.banner-left h1 span {
  color: var(--theme-color);
}

.banner-left p {
  color: #fff;
  font-size: 17px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--theme-color-4);
}

.banner-left h6 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  padding: 8px 15px 8px 15px;
  border-style: solid;
  border: 1px solid var(--theme-color-4);
  width: auto;
  border-radius: 50px;
  text-transform: uppercase;
  color: #fff;
}

.banner-left h6 img {
  width: 17px;
  height: 14px;
  filter: brightness(0) saturate(100%) invert(37%) sepia(96%) saturate(1025%)
    hue-rotate(335deg) brightness(87%) contrast(106%);
}

.banner-video {
  display: flex;
  gap: 30px;
  align-items: center;
}

.banner-video a:last-child {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--theme-color);
  border-radius: 50px;
  transition: all 0.4s ease;
  position: relative;
}

.banner-video a:last-child::before {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: red;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 0 currentColor;
  box-shadow: 0 0 0 0 currentColor;
  -webkit-animation: button-ripple 3s infinite;
  animation: button-ripple 3s infinite;
  opacity: 0.6;
  z-index: -1;
}

.banner-video a:last-child::after {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: red;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 0 currentColor;
  box-shadow: 0 0 0 0 currentColor;
  -webkit-animation: button-ripple 3s infinite;
  animation: button-ripple 3s infinite;
  opacity: 0.6;
  z-index: -1;
}

@keyframes button-ripple {
  70% {
    -webkit-box-shadow: 0 0 0 var(--glow-size, 15px) currentColor;
    box-shadow: 0 0 0 var(--glow-size, 15px) currentColor;
    opacity: 0;
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 currentColor;
    box-shadow: 0 0 0 0 currentColor;
    opacity: 0;
  }
}

.banner-video a:last-child i {
  color: #fff;
  font-size: 25px;
}

.banner-wrap-images {
  border: 1px solid var(--theme-color-4);
  border-radius: 15px 15px 15px 15px;
  padding: 20px;
  width: 60%;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 20px;
}
.banner-wrap-images-inner .banner-images img {
  border-radius: 42px;
}

.banner-wrap-images-inner {
  display: flex;
  position: relative;
}

.banner-wrap-images-inner .banner-images {
  margin: 0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) -55px;
  border-style: solid;
  border-width: 2px 2px 2px 2px;
  border-color: #fff;
  border-radius: 42px 42px 42px 42px;
  position: relative;
}

.banner-images:last-child {
  position: relative;
  z-index: 1;
}

.banner-images:last-child img {
  display: block;
  position: relative;
  z-index: 1;
}

.banner-wrap-images-inner .banner-images:last-of-type::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 42px;
  z-index: 2;
}

.banner-wrap-images-inner .banner-images img {
  border-radius: 42px;
}

.banner-wrap-images-inner i {
  position: absolute;
  bottom: 40%;
  color: #fff;
  font-size: 20px;
  right: 30px;
  z-index: 3;
}

.banner-wrap-images p {
  margin: 0;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  text-transform: capitalize;
}

.banner-form {
  background-color: #fff;
  padding: 30px 30px 30px 30px;
  border-radius: 15px 15px 15px 15px;
  margin: 30px 0 0;
}

.banner-form h4 {
  margin-bottom: 15px;
  font-size: 28px;
  color: var(--theme-color);
  font-weight: 600;
}

.banner-form form .row {
  margin-bottom: 15px;
}

.banner-form form label {
  display: block;
  font-size: 17px;
  color: var(--theme-color-2);
  margin-bottom: 10px;
  font-weight: 700;
}

.banner-form form input {
  border-radius: 4px;
  font-size: 16px;
  min-height: 47px;
  padding: 6px 16px;
  border: 1px solid var(--theme-color-4);
  width: 100%;
  background-color: #ffffff;
}

.btn-orange{
    background: #E54530;
    color: #fff;
}

.banner-form form select {
  border-radius: 4px;
  font-size: 16px;
  min-height: 47px;
  padding: 6px 16px;
  border: 1px solid var(--theme-color-4);
  width: 100%;
  background-color: #ffffff;
}

.banner-form form button.theme-btn {
  width: 100%;
  padding: 11px 16px;
}

/* Banner CSS End */

/* services Start */

.services-section {
  padding: 70px 0;
}

.service-box {
  border: 1px solid var(--theme-color);
  border-radius: 15px 15px 15px 15px;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 20px;
  align-items: center;
}

.service-img {
  background-color: var(--theme-color);
  display: flex;
  border-radius: 15px;
  padding: 30px 15px;
  height: 100%;
  flex-direction: column;
  flex-basis: auto;
  flex-grow: 0;
  flex-shrink: 1;
  flex: 0 1 auto;
  gap: 20px;
  align-items: center;
  width: 53%;
}

.service-img img {
  width: 42px;
  height: 42px;
  object-fit: fill;
  filter: brightness(0) invert(1);
}

.service-img h4 {
  color: #fff;
  font-size: 48px;
  font-weight: 600;
}

.service-wrap {
  display: flex;
  border-radius: 15px;
  padding: 30px 15px;
  height: 100%;
  flex-direction: column;
  flex-basis: auto;
  flex-grow: 0;
  flex-shrink: 1;
  flex: 0 1 auto;
  gap: 20px;
}

.service-wrap h5 {
  font-size: 22px;
  font-weight: 700;
}

.service-wrap p {
  color: var(--theme-color-3);
  font-size: 17px;
  margin: 0;
}

/* services End */

/* About us Start */

.about-section {
  padding: 100px 0;
  background: #f4f5f9;
}

.about-left {
  width: 93%;
}

.about-left h6 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  padding: 8px 15px 8px 15px;
  border-style: solid;
  border: 1px solid var(--theme-color-4);
  width: auto;
  border-radius: 50px;
  text-transform: uppercase;
}

.about-left h6 img {
  width: 17px;
  height: 14px;
  filter: brightness(0) saturate(100%) invert(37%) sepia(96%) saturate(1025%)
    hue-rotate(335deg) brightness(87%) contrast(106%);
}

.about-left h3 {
  text-transform: capitalize;
  font-size: 35px;
  font-weight: 800;
  margin: 0;
}

.about-left h3:last-of-type {
  color: var(--theme-color);
  margin-bottom: 30px;
}

.about-left p {
  color: var(--theme-color-3);
  margin-bottom: 50px;
}

.about-box {
  background-color: var(--e-global-color-8f6e8c6);
  padding: 10px 20px 10px 20px;
  border-left: 4px solid var(--theme-color);
  border-radius: 0px 15px 15px 0px;
  box-shadow: 0px 0px 10px -6px rgba(0, 0, 0, 0.5);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.about-icon i {
  width: 28px;
  height: 28px;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.about-icon {
  background: var(--theme-color);
  padding: 14px;
  border-radius: 5px;
}

.about-icon-wrap h4 {
  font-size: 26px;
  font-weight: 600;
}

.about-icon-wrap p {
  margin: 0;
  font-size: 15px;
  width: 88%;
}

.about-right {
  position: relative;
}

.about-right-wrap {
  position: absolute;
  left: 33%;
  background-color: #fff;
  padding: 30px 30px 30px 30px;
  top: 50px;
  border-style: solid;
  border-left: 4px solid var(--theme-color);
  border-radius: 0px 15px 15px 0px;
  box-shadow: 0px 0px 10px -5px rgba(0, 0, 0, 0.5);
  border-color: transparent;
  border-left-color: var(--theme-color);
}

.about-right img {
  width: 100%;
  height: 730px;
  object-fit: cover;
  object-position: 18%;
  border-radius: 15px;
}

.about-right .row .col-md-6:first-child img {
  object-position: unset;
}

.about-right-wrap h5 {
  font-size: 48px;
  margin: 0;
  font-weight: 500;
}

.about-right-wrap h6 {
  font-size: 14px;
  margin: 0;
}

/* About us End */

/* Business Start */

.business-section {
  padding: 100px 0;
}
.gradient-bg {
  position: relative;
}
.gradient-bg::before {
  content: "";
  transition: background var(--overlay-transition, 0.3s),
    border-radius var(--border-transition, 0.3s),
    opacity var(--overlay-transition, 0.3s);
  background-image: radial-gradient(at center center, #e54530 0%, #ffffff 50%);
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  opacity: 0.25;
}

.business-head h6 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  padding: 8px 15px 8px 15px;
  border-style: solid;
  border: 1px solid var(--theme-color-4);
  width: max-content;
  border-radius: 50px;
  text-transform: uppercase;
}

.business-head h6 img {
  width: 17px;
  height: 14px;
  filter: brightness(0) saturate(100%) invert(37%) sepia(96%) saturate(1025%)
    hue-rotate(335deg) brightness(87%) contrast(106%);
}

.business-head h2 {
  text-transform: capitalize;
  font-size: 48px;
  font-weight: 800;
  margin: 0;
  width: 90%;
}

.business-head h2 span {
  color: var(--theme-color);
  font-family: "DM Sans";
}

.business-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}

.business-head-right {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 20px;
}

.business-head-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.business-head-right .theme-btn {
  width: max-content;
}

.business-head-right p {
  color: var(--theme-color-3);
  width: 80%;
  margin-bottom: 14px;
}

.business-box img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 15px 15px 0 0;
}

.business-box {
  border-style: solid;
  border: 1px solid var(--theme-color);
  border-radius: 15px;
  transition: 0.2s all;
}

.business-wrap {
  padding: 30px;
  position: relative;
}

.business-wrap-icon {
  background: var(--theme-color);
  padding: 15px;
  display: inline-block;
  position: absolute;
  top: -7%;
  border-radius: 50px;
}

.business-wrap-icon img {
  width: 35px;
  height: 35px;
  filter: brightness(0) invert(1);
  border-radius: 0 !important;
}

.business-wrap h4 {
  margin: 35px 0px 20px 0px;
  font-family: "DM Sans", Sans-serif;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.3em;
  transition: 0.2s all;
}

.business-box:hover h4,
.business-box:hover a {
  color: var(--theme-color);
}

.business-wrap p {
  font-size: 17px;
  color: var(--theme-color-3);
  margin-bottom: 30px;
}

.business-wrap a {
  display: flex;
  align-items: center;
  gap: 7px;
  width: 100%;
  font-weight: 600;
}

.business-wrap a img {
  width: 16px;
  height: 16px;
  object-fit: fill;
  overflow: visible;
  transition: 0.2s all;
}

.business-box:hover a img {
  filter: brightness(0) saturate(100%) invert(47%) sepia(53%) saturate(3366%)
    hue-rotate(335deg) brightness(86%) contrast(111%);
}

/* Business End */

/* Project Start */

.project-section {
  padding: 100px 0;
  position: relative;
}

.project-box {
  position: relative;
}

.project-box img {
  width: 100%;
  height: 400px;
  border-radius: 15px;
  object-fit: cover;
}

.project-box::before {
  content: "";
  background-image: linear-gradient(180deg, #02010100 24%, #140a09 48%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  background-color: transparent;
  opacity: 0.5;
}

.project-wrap {
  position: absolute;
  background: var(--theme-color);
  width: 85%;
  text-align: center;
  margin: 0 auto;
  border-radius: 15px;
  display: block;
  left: 8%;
  bottom: 24px;
  padding: 10px;
}

.project-wrap h5 {
  color: #fff;
  font-size: 17px;
}

.project-wrap h4 {
  color: #fff;
  font-size: 22px;
}

/* Project End */

/* Quote Start */

.quote-section {
  padding: 100px 0;
  background-image: url(../images/quote-bg.png);
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}

.quote-section::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: #00000066;
  top: 0;
  left: 0;
}

.quote-section .container {
  position: relative;
}

.quote-section .business-head {
  justify-content: center;
  text-align: center;
  position: relative;
}

.quote-section .business-head h2 {
  display: flex;
  align-items: center;
  width: 100%;
  color: #fff;
}

.quote-section .business-head-left {
  align-items: center;
  color: #fff;
}

.from-wrap {
  background: var(--theme-color-2);
  border-radius: 10px;
}

.form-btns {
  display: flex;
  align-items: center;
  gap: 20px;
}

.form-btns .theme-btn:hover {
  background: var(--theme-color);
}

.form-left h3 {
  margin: 20px 0;
  font-size: 28px;
  color: #fff;
  font-weight: 600;
}

.form-left form label {
  display: block;
  font-size: 17px;
  color: #fff;
  margin-bottom: 10px;
  font-weight: 400;
}

.form-left form input, .form-left form select, .form-left form textarea {
  border-radius: 4px;
  font-size: 16px;
  min-height: 47px;
  padding: 7px 20px;
  border: 1px solid var(--theme-color-4);
  width: 100%;
  background-color: transparent;
  color: #fff;
  outline: none;
}

.form-left form input[type="date"]::-webkit-calendar-picker-indicator,
.form-left form input[type="time"]::-webkit-calendar-picker-indicator {
    filter: invert(42%) sepia(88%) saturate(3564%) hue-rotate(358deg) brightness(96%) contrast(101%);
}

.form-left form select option{
    background-color: var(--theme-color-2);
}

.form-left form textarea {
    height: 150px;
}

.form-left form .col-md-4, .form-left form .col-md-6 {
  margin-bottom: 20px;
}

.form-left form .theme-btn {
  width: 100%;
}

.form-left form .theme-btn:hover {
  background: #fff;
  color: #000;
}

.form-left form .theme-btn:hover img {
  filter: brightness(1);
}

.form-right img {
  width: 100%;
  border-radius: 0 15px 15px 0;
  height: 100%;
  object-fit: cover;
}

.from-wrap .form-left {
  padding: 50px;
}

.form-right {
  height: 100%;
  width: 100%;
  position: relative;
}

.form-btn a {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--theme-color);
  border-radius: 50px;
  transition: all 0.4s ease;
  position: relative;
}

.form-btn a:hover {
  background: #fff;
}

.form-btn a:hover i {
  color: #000;
}

.form-btn {
  position: absolute;
  top: 50%;
  left: 40%;
}

.form-btn a:last-child::before {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: red;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 0 currentColor;
  box-shadow: 0 0 0 0 currentColor;
  -webkit-animation: button-ripple 3s infinite;
  animation: button-ripple 3s infinite;
  opacity: 0.6;
  z-index: -1;
}

.form-btn a:last-child::after {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: red;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 0 currentColor;
  box-shadow: 0 0 0 0 currentColor;
  -webkit-animation: button-ripple 3s infinite;
  animation: button-ripple 3s infinite;
  opacity: 0.6;
  z-index: -1;
}

.form-btn a i {
  color: #fff;
  font-size: 25px;
}

/* Quote End */

/* Testimonials Start */

.testimonials-section {
  padding: 100px 0;
}

.testi-img-1 {
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 50%;
}

.testi-img-1 img {
  border-radius: 50%;
}

.testi-img-2 {
  position: absolute;
  left: 18%;
  top: 70%;
  border-radius: 50%;
}

.testi-img-2 img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
}

.testi-img-3 {
  position: absolute;
  right: 18%;
  top: 70%;
  border-radius: 50%;
}

.testi-img-3 img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
}

.testi-img-4 {
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 50%;
}

.testi-img-4 img {
  border-radius: 50%;
}

.testimonials-section .business-head {
  justify-content: center;
  text-align: center;
  position: relative;
}

.testimonials-section .business-head-left {
  align-items: center;
}

.testimonial-box {
  box-shadow: 0px 0px 10px -21px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--theme-color-4);
  padding: 30px;
  border-radius: 15px;
  background: #fff;
  text-align: -webkit-center;
  margin-right: 15px;
}

.stars {
  display: flex;
  align-items: center;
  gap: 7px;
  justify-content: center;
  margin-bottom: 30px;
}

.stars i {
  color: var(--theme-color);
}

.testimonial-box p {
  font-size: 17px;
  text-align: center;
  color: var(--theme-color-3);
  margin-bottom: 40px;
}

.testimonial-box img {
  border-radius: 50%;
  width: 70px;
  height: 70px;
  margin-bottom: 10px;
}

.testimonial-box h5 {
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 3px;
}

.testimonial-box h6 {
  color: var(--theme-color-3);
  text-transform: uppercase;
  font-weight: 500;
}

/* Testimonials End */

/* Package Start */

.package-box {
  border: 1px solid var(--theme-color-4);
  border-radius: 15px 15px 15px 15px;
  padding: 40px 30px;
  background: #fff;
  text-align: center;
}

.package-section {
  background: #f4f5f9;
  padding: 100px 0 200px;
  position: relative;
  z-index: 0;
}

.package-box h5 {
  font-size: 28px;
  font-weight: 600;
  margin: 0;
}

.package-price {
  display: flex;
  align-items: start;
  justify-content: center;
  gap: 3px;
  padding: 10px 0px 30px 0px;
}

.package-price h3 {
  font-size: 48px;
  color: var(--theme-color);
  font-weight: 600;
  margin: 0;
}

.package-price span {
  color: var(--theme-color);
  font-size: 14px;
  margin: 5px 0 0;
}

ul.price-list {
  list-style: none;
}

ul.price-list li span {
  color: var(--theme-color-3);
  font-size: 17px;
}

ul.price-list li {
  border-bottom: 1px solid #7a7a7a4d;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

ul.price-list li:last-child {
  margin-bottom: 0;
  border: 0;
}

.package-box.premium {
  position: relative;
  overflow: hidden;
  background: var(--theme-color);
}

.premium_txt {
  background-color: var(--theme-color-2);
  transform: translateY(-50%) translateX(-50%) translateX(40px) rotate(45deg);
  position: absolute;
  top: 39px;
  left: 82%;
  width: 100%;
}

.premium_txt span {
  color: #fff;
  text-transform: capitalize;
  font-weight: 700;
}

.package-box.premium h5 {
  color: #fff;
}

.package-box.premium h3,
.package-box.premium span {
  color: #fff;
}

.package-box.premium ul.price-list li {
  border-color: #d36558;
}

/* Package End */

/* Task Start */

.task-section {
  padding: 0 0 100px;
}

.task-section .business-head {
  justify-content: center;
  text-align: center;
  position: relative;
}

.task-section .business-head-left {
  align-items: center;
}

.task-section .business-head h2 {
  width: 100%;
}

.task-box {
  border: 1px solid var(--theme-color);
  border-radius: 15px 15px 15px 15px;
  padding: 50px 30px;
  text-align: -webkit-center;
  height: 417px;
  background: #fff;
  position: relative;
}

.task-icon {
  background-color: #f4f5f9;
  padding: 29px;
  border-radius: 50%;
  position: relative;
  width: fit-content;
  margin-bottom: 20px;
  width: 91px;
  height: 91px;
}

.task-icon-num {
  position: absolute;
  top: 22%;
  left: -23px;
  font-size: 22px;
  background: var(--theme-color);
  padding: 10px;
  border-radius: 50%;
  color: #fff;
}

.task-icon i {
  color: var(--theme-color);
  font-size: 33px;
  width: 33px;
  height: 33px;
}

.task-box h3 {
  font-size: 28px;
  width: 60%;
  font-weight: 700;
  margin-bottom: 20px;
}

.task-box h5 {
  color: var(--theme-color-3);
  font-size: 17px;
  font-weight: 400;
  width: 67%;
  line-height: inherit;
}

.task-main {
  position: relative;
}

.task-main::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 370px;
  background: var(--theme-color);
  top: -120px;
  border-radius: 15px;
}
.task-main-bg img {
  position: absolute;
  width: 100%;
  height: 370px;
  top: -120px;
  border-radius: 15px;
  opacity: 0.2;
}

.task-main .business-head h6 {
  color: #fff;
}

.task-main .business-head h6 img {
  filter: brightness(0) invert(1);
}

.task-main .business-head h2 {
  color: #fff;
}

.task-boxes {
  width: 90%;
  display: block;
  margin: 0 auto;
}

/* Task End */

/* Experience Start */

.experience-section {
  padding: 50px 0;
  position: relative;
}

.exp-box {
  display: flex;
  align-items: center;
  gap: 20px;
}

.exp-icon i {
  font-size: 52px;
  width: 52px;
  height: 52px;
  color: #fff;
}

.exp-wrap {
  padding-left: 15px;
  border-left: 1px solid var(--theme-color-4);
}

.exp-wrap h3 {
  font-size: 64px;
  color: #fff;
  margin-bottom: 0;
}

.exp-wrap h5 {
  color: #fff;
  font-size: 17px;
  font-weight: 600;
}

.experience-section::before {
  content: "";
  position: absolute;
  width: 89%;
  height: 100%;
  background: var(--theme-color-2);
  top: 0;
  left: 0;
  z-index: -1;
  clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
}

.experience-img img {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.05;
  top: 0;
  left: 0;
  object-fit: cover;
}

/* Experience End */

/* FAQ's Start */

.faq-section {
  padding: 100px 0;
  background: #f4f5f9;
}

.faq-left a.theme-btn {
  width: fit-content;
}

.faq-left a.theme-btn {
  width: fit-content;
}

.faq-right {
  border: 1px solid var(--theme-color-4);
  padding: 50px;
  border-radius: 20px;
  background: #fff;
}

.faq-right .accordion-button {
  background: transparent;
  box-shadow: none !important;
  font-weight: 700;
  padding: 20px 0;
  font-size: 17px;
}

.faq-right .accordion-item {
  border: 0 !important;
}

.faq-right .accordion-button:not(.collapsed) {
  color: #000;
}

.faq-left a.theme-btn {
  width: fit-content;
}

.faq-right {
  border: 1px solid var(--theme-color-4);
  padding: 50px;
  border-radius: 20px;
  background: #fff;
}

.faq-right .accordion-button {
  background: transparent;
  box-shadow: none !important;
  font-weight: 700;
  padding: 20px 0;
  font-size: 17px;
}

.faq-right .accordion-item {
  border: 0 !important;
}

.faq-right .accordion-button:not(.collapsed) {
  color: #000;
}

/* FAQ's End */

/* Blog Start */

.blog-section {
  padding: 100px 0;
}

.inner-blog-section .business-head {
    justify-content: center;
}

.inner-blog-section .business-head-left {
    align-items: center;
}

.inner-blog-section .business-head-left h2 {
    width: 100%;
}

.blog-main .row {
    gap: 30px 0;
}

.blog-box a img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: all 0.4s ease;
  overflow: hidden;
  border-radius: 15px;
}

.blog-box a {
  overflow: hidden;
  transition: all 0.4s ease;
  display: block;
}

.blog-box:hover a img {
  transform: scale(1.05) rotate(2deg);
  opacity: 0.8;
}

.blog-wrap {
  padding: 25px;
  background-color: #fff;
  box-shadow: 0px 0px 10px -21px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--theme-color-4);
  border-radius: 15px;
}

.blog-wrap h4 {
  margin: 8px 0 28px;
  font-size: 22px;
  font-weight: 600;
}

.blog-wrap p {
  margin: 0;
}

.blog-box {
  border-radius: 15px;
}

/* Blog End */

/* Footer Start */

footer {
  background: var(--theme-color-2);
  position: relative;
}

footer .container {
  position: relative;
}

.foot-img {
  position: absolute;
  top: 0;
  left: 0;
}

.foot-img img {
  width: 100%;
  height: 100%;
  opacity: 0.1;
}

footer .row {
  padding: 70px 0;
}

.col1 .logo h1 {
  color: #fff;
  margin-bottom: 20px;
}

.col1 p {
  color: #fff;
  font-size: 17px;
  border-bottom: 1px solid #333333;
  padding-bottom: 20px;
  margin-bottom: 30px;
}

.foot-call-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}

.foot-call-icon {
  width: 54px;
  height: 54px;
  background: var(--theme-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.foot-call-icon i {
  color: #fff;
}

.foot-call-wrap span {
  color: var(--theme-color);
  font-weight: 700;
  font-size: 17px;
}

.foot-call-wrap p {
  padding: 0;
  border: 0;
  margin: 0;
}

.col2 h4 {
  font-size: 28px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 20px;
}

.col2 ul li {
  margin-bottom: 16px;
}

.col2 ul li:last-child {
  margin: 0;
}

.col2 ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 17px;
  font-weight: 500;
}

.col2 ul li a:hover {
  color: var(--theme-color);
}

.col2 ul li a img {
  width: 14px;
  height: 14px;
  filter: brightness(0) saturate(100%) invert(43%) sepia(92%) saturate(2815%)
    hue-rotate(339deg) brightness(89%) contrast(103%);
}

.col2 {
  padding-left: 20px;
  border-left: 1px solid var(--theme-color-4);
  height: 100%;
}

.gallery-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.gallery-wrap a img {
  width: 71px;
  height: 71px;
  object-fit: contain;
}

.copyright {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-top: 1px solid var(--theme-color-4);
}

.copy-wrap p {
  margin: 0;
}

.copyright p {
  color: #fff;
}

.foot-socials {
  display: flex;
  align-items: center;
  gap: 20px;
}

.foot-socials a i {
  color: #fff;
  font-size: 18px;
}

/* Footer End */

/* Inner Banner Start */

.inner-banner {
    height: 500px;
}

.inner-banner .banner-img {
    height: 500px;
}

.inner-banner .banner-img img {
    object-fit: cover;
    object-position: center;
}

.inner-banner .swiper-slide:before {
    height: 500px;
}

.inner-banner .banner-wrap {
    top: 20%;
}

.inner-banner .banner-wrap .row {
    align-items: center;
}

.inner-banner .banner-wrap .banner-left h1 {
    text-transform: uppercase;
}

/* Inner Banner End */

/* Transport Section Start */

.transport-section .business-head {
    justify-content: center;
}

.transport-section .business-head-left {
    align-items: center;
}

.transport-section .business-head-left h2 {
    width: 100%;
}

.transporter-box p:last-of-type {
    margin: 10px 0;
}

.transporter-box p:first-of-type strong {
    color: var(--theme-color);
}

.transporter-rating {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 20px;
}

.transporter-rating i {
    color: orange;
}

.transporter-box .theme-btn img {
    width: 14px;
    height: 14px;
    object-fit: cover;
    overflow: visible;
}

.transporter-box .theme-btn {width: fit-content;}

.transporter-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
}

.transporter-box .blog-wrap {
    border-radius: 0 0 15px 15px;
}

/* Transport Section End */

/* Book Now End */

.book-now-section {
  background-image: url(../images/book-now-bg.jpg);
}

.book-now-section::before {
    background-color: #000000cf;
}
    
/* Book Now End */

@media only screen and (max-width: 1400px) {
}
@media only screen and (max-width: 1200px) {
}
@media only screen and (max-width: 1024px) {
}
@media only screen and (max-width: 991px) {
  .offcanvas-btn {
    font-size: 30px;
    color: #fff;
    background-color: var(--theme-color);
    padding: 12px;
    line-height: 24px;
    border-radius: 6px;
  }
  .offcanvas-btn:hover,
  .offcanvas-btn:active {
    background: var(--theme-color) !important;
    border-color: var(--theme-color) !important;
    color: #fff !important;
  }
  .offcanvas,
  .offcanvas-btn {
    display: block !important;
  }
  .offcanvas {
    background-color: var(--theme-color);
  }
  .offcanvas-body {
    padding-top: 50px;
  }
  .navigation {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
}
@media only screen and (max-width: 576px) {
}
@media only screen and (max-width: 450px) {
}
@media only screen and (max-width: 370px) {
}

/*======================================
   Login & Register & My Account CSS
========================================*/
.alert-success {
    color: #ffffff;
    background-color: #00b894;
    border-color: #00b894;
}

.alert-danger {
    color: #FFF;
    background-color: #ff4949;
    border-color: #ff4949;
}

.section{
	padding-top: 80px;
	padding-bottom: 50px;
}

.section-heading{
	text-align: center;
	font-weight: 600;
	margin-bottom: 60px;
	color: var(--primary-color);
	position: relative;
	line-height: 24px;
}

.section-heading::after{
	content: '';
    width: 60px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 10px;
    position: absolute;
    display: block;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    margin-top: 15px;
}

#auth{
	padding: 60px 0px;
}

.login_register{
	background: #ffffff;
    padding: 50px;
    box-shadow: 1px 3px 10px #d8d8d8;
}

.login_register .form-control {
	height: auto;
    display: block;
    width: 100%;
   	padding: 15px;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #CCC;
    border-radius: .25rem;
    margin-top: 15px;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.login_register .form-control:focus{
	outline: none;
	-webkit-box-shadow: none;
    box-shadow: none;
	border: 1px solid #000;
}

.login_register .btn-login{
	display: block;
	background: #e54530;
	padding: 18px 50px;
	border: 1px solid var(--primary-color);
	color: #fff;
	transition: all 0.3s;
	width: 100%;
	margin-top: 30px;
}
.login_register .btn-login:hover{
    background: var(--primary-color);
    color: #FFF;
}

.login_register .right_link{
	color: var(--primary-color);
	margin-top: 15px;
	transition: all 0.3s;
	display: inline-block;
}

.login_register .right_link:hover{
	text-decoration: underline;
}

.create-account-link{
	color: var(--primary-color);
	display: inline-block;
	margin-top: 15px;
	transition: all 0.3s;
}

.create-account-link:hover{
	color: var(--primary-color);
	text-decoration: underline;
}

.customer_dashboard{
	box-shadow: 0 0 4px 0 #e9e9e9;
}

.customer_dashboard{
	box-shadow: 0 0 4px 0 #d0cfcf;
}

.customer_dashboard .nav-tabs li.nav-item a {
    text-align: left;
    padding: 12px 20px;
    border-radius: 0;
    border-bottom: 1px solid #efefef;
    color: #2b2f4c;
}
.customer_dashboard .nav-tabs li.nav-item a.active{
	background: #1d2224;
	color: #FFF;
}
.customer_dashboard .nav-tabs li.nav-item a i {
    margin-right: 8px;
    vertical-align: middle;
}

.dashboard_content .card-header {
    background-color: #1d2224;
    border-color: #1d2224;
    padding: 14px 20px;
}

.dashboard_content .card-header > h4 {
	font-size: 16px;
	color: #FFF;
	font-weight: 400;
	margin: 0;
}

.account_details .form-control {
	height: auto;
    display: block;
    width: 100%;
   	padding: 15px;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #CCC;
    border-radius: .25rem;
    margin-top: 15px;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.account_details .form-control:focus{
	outline: none;
	-webkit-box-shadow: none;
    box-shadow: none;
	border: 1px solid #000;
}

.account_details .btn-login{
    background: #FFF;
    padding: 18px 50px;
    border: 1px solid #303952;
    color: #303952;
	transition: all 0.3s;
	margin-top: 30px;
}
.account_details .btn-login:hover{
    background: #303952;
    color: #FFF;
}
.btn-add-address{
	color: #FFF !important;
	padding: 6px 16px;
	display: inline-block;
	font-size: 14px;
	border: 1px solid #FFF;
	border-radius: 50px;
}

/*======================================
	End Login CSS
========================================*/