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

html {
  scroll-behaviour: smooth;
}

@font-face {
  font-family: poppins;
  src: url(../fonts/Poppins-Regular.ttf);
}

@font-face {
  font-family: poppins-medium;
  src: url(../fonts/Poppins-Medium.ttf);
}

@font-face {
  font-family: poppins-bold;
  src: url(../fonts/Poppins-Bold.ttf);
}

@font-face {
  font-family: poppins-semibold;
  src: url(../fonts/Poppins-SemiBold.ttf);
}

@font-face {
  font-family: poppins-light;
  src: url(../fonts/Poppins-Light.ttf);
}

@font-face {
  font-family: myriadpro;
  src: url(../fonts/MYRIADPRO-REGULAR.OTF);
}

@font-face {
  font-family: proximanova;
  src: url(../fonts/ProximaNova-Regular.woff);
}

@font-face {
  font-family: proximanova-semibold;
  src: url(../fonts/ProximaNova-Semibold.woff2);
}

@font-face {
  font-family: philospher-bold;
  src: url(../fonts/Philosopher-Bold.ttf);
}

:root {
  --primary-color: #ffe503;
  --secondary-color: #000;
  --tertiary-color: #fff;
}

::selection {
  background: var(--primary-color);
  color: var(--tertiary-color);
}

a,
button,
input[type="submit"] {
  transition: all 0.5s;
  text-decoration: none;
  font-family: poppins-medium;
  font-size: 15px;
}

h1 {
  font-family: poppins-bold;
  font-size: 50px;
  margin: 0;
}

h2 {
  font-family: poppins-semibold;
  font-size: 40px;
  margin: 0;
}

h3,
h4,
h6 {
  font-family: poppins-semibold;
}

h5 {
  font-family: poppins-medium;
  font-size: 18px;
  margin: 0 0 10px 0;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  padding: 0 0 5px 0;
}

h5::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 45px;
  height: 3px;
  background: var(--primary-color);
}

p,
li,
input,
select,
textarea {
  color: #727272;
  font-family: poppins;
  font-size: 15px;
}

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

img {
  height: auto;
}

header {
  width: 100%;
  background: var(--secondary-color);
  padding: 20px 0;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
}

.nav-bar {
  width: 100%;
  position: relative;
}

.nav-flex {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  width: 15%;
}

.logo img {
  width: 70%;
}

.menu {
  width: 60%;
  padding: 0 0 0 70px;
}

.menu ul {
  display: flex;
  justify-content: space-between;
}

.menu ul li {
  display: inline-block;
  position: relative;
}

.menu ul li a {
  color: var(--tertiary-color);
  text-transform: uppercase;
}

.menu ul li:hover a {
  color: var(--primary-color);
}

.menu ul li.active a {
  color: var(--primary-color);
  font-family: poppins-bold;
}

.menu ul li a i {
  font-size: 10px;
  margin: 0 0 0 5px;
}

.menu ul li ul {
  position: absolute;
  left: 0;
  top: 100%;
  width: 270px;
  display: block;
  text-align: left;
  padding: 30px 0 0 0;
  opacity: 1;
  z-index: 9999;
  display: none;
}

.menu ul li ul li {
  display: block;
  width: 100%;
}

.menu ul li ul li a {
  display: block;
  padding: 5px 15px;
  background: var(--secondary-color);
  color: var(--tertiary-color);
  width: 100%;
  border-bottom: 1px solid #f4f4f4;
  font-size: 14px;
  text-transform: capitalize;
}

.menu ul li ul li:last-child a {
  border-bottom: none;
}

.menu ul li ul li a:hover {
  background: var(--primary-color);
  color: var(--secondary-color);
  border: transparent;
}

.click-btn {
  position: absolute;
  top: 0;
  right: -20px;
  color: var(--tertiary-color);
  transition: 0.5s;
  cursor: pointer;
}

.click-toggle {
  transform: rotate(180deg);
  top: -3px;
  color: var(--primary-color);
}

.menu ul li:hover ul.sub_menu li a {
  color: var(--tertiary-color);
}

.menu ul li.active ul.sub_menu li a {
  font-family: poppins;
}

@keyframes slidemenu {
  from {
    transform: translateY(20px);
  }

  to {
    transform: translateY(0);
  }
}

.menu-btn {
  width: 20%;
  text-align: right;
}

.menu-btn a {
  display: inline-block;
  background: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  padding: 8px 30px;
  border-radius: 20px;
}

.menu-btn a:hover {
  background: linear-gradient(var(--tertiary-color), var(--primary-color));
  color: var(--secondary-color);
  border: none;
}

.sticky {
  width: 100%;
  left: 0;
  top: 0;
  position: fixed;
  animation: slidetop 1s linear;
  padding: 10px 0;
  z-index: 9999;
}

@keyframes slidetop {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0%);
  }
}

.sticky .menu ul li ul {
  padding: 40px 0 0 0;
}

.slider {
  width: 100%;
}

.banner {
  width: 100%;
  height: 700px;
  position: relative;
}

.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-cont {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  padding: 15% 0 0 0;
  background: rgba(0, 0, 0, 0.3);
}

.banner-cont h1 {
  color: var(--tertiary-color);
}

.banner-cont h1 span {
  color: var(--primary-color);
}

.banner-cont p {
  width: 65%;
  margin: 20px 0 0 0;
  color: #fff;
}

.banner-cont h3 {
  font-size: 50px;
  font-family: poppins-bold;
  margin: 20px 0 0 0;
  color: var(--tertiary-color);
  display: flex;
  align-items: center;
  display: none;
}

.banner-cont h3 span {
  color: var(--primary-color);
  font-size: 30px;
  margin: 0 0 0 5px;
}

.banner-cont a {
  display: inline-block;
  background: linear-gradient(var(--tertiary-color), var(--primary-color));
  color: var(--secondary-color);
  padding: 8px 20px;
  border-radius: 20px;
  margin: 30px 0 0 0;
}

.banner-cont a:hover {
  background: linear-gradient(var(--primary-color), var(--tertiary-color));
}

.about-box {
  width: 100%;
  margin: 80px 0;
}

.about-row {
  position: relative;
}

.about-image {
  width: 95%;
  height: 450px;
  border-radius: 10px;
  position: relative;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 10px;
}

.about-shape {
  top: -35px;
  left: -35px;
  position: absolute;
  z-index: -1;
  width: 80px;
  height: 80px;
}

.about-shape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.about-text {
  width: 100%;
}

.about-text p {
  margin: 15px 0 0 0;
}

.about-flex {
  width: 65%;
  display: flex;
  justify-content: space-between;
  position: absolute;
  right: 0;
  bottom: -46%;
  z-index: 9;
}

.about-cont {
  width: 30%;
  background: var(--tertiary-color);
  box-shadow: 0 0 10px rgba(155, 154, 154, 0.5);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: all 0.5s;
  cursor: pointer;
}

.about-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  background: var(--tertiary-color);
  font-size: 30px;
  border-radius: 50%;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
  transition: all 0.5s;
}

.about-cont h3 {
  font-size: 20px;
  margin: 20px 0 0 0;
}

.about-cont p {
  color: #8d8d8d;
  margin: 10px 0 0 0;
  transition: all 0.5s;
}

.about-cont.active {
  background: linear-gradient(var(--tertiary-color), var(--primary-color));
}

.about-cont:hover {
  background: linear-gradient(var(--tertiary-color), var(--primary-color));
}

.about-cont:hover .about-icon {
  box-shadow: none;
  background: var(--secondary-color);
  color: var(--tertiary-color);
}

.about-cont:hover p {
  color: var(--secondary-color);
}

.about-cont.active {
  background: linear-gradient(var(--tertiary-color), var(--primary-color));
}

.about-cont.active .about-icon {
  box-shadow: none;
  background: var(--secondary-color);
  color: var(--tertiary-color);
}

.about-cont.active p {
  color: var(--secondary-color);
}

.service-box {
  width: 100%;
  padding: 80px 0;
  background: #ebebeb;
}

.service-text {
  width: 100%;
  position: sticky;
  top: 100px;
}

.service-text p {
  color: #616161;
  margin: 20px 0 0 0;
  width: 80%;
}

.service-text a {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(var(--tertiary-color), var(--primary-color));
  margin: 20px 0 0 0;
  color: var(--secondary-color);
  border-radius: 5px;
}

.service-text a:hover {
  background: var(--secondary-color);
  color: var(--tertiary-color);
}

.service-flex {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
}

.service {
  width: 48%;
  height: 280px;
  position: relative;
  border-radius: 5px;
  cursor: pointer;
  overflow: hidden;
}

.service img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 5px;
  transition: all 1s;
}

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

.service-flexbox {
  margin: 0;
}

.service-cont {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 20px 20px;
  color: var(--tertiary-color);
  transition: all 0.5s;
  overflow: hidden;
  background: linear-gradient(rgba(0, 0, 0, 0.1), var(--secondary-color));
}

.service-cont h4 {
  font-size: 20px;
  font-family: poppins-medium;
  margin: 0;
  transition: all 0.5s;
}

.service-cont p {
  color: var(--secondary-color);
  margin: 10px 0 0 0;
  font-size: 14px;
}

.service-cont a {
  display: inline-block;
  margin: 20px 0 0 0;
  color: var(--secondary-color);
  font-size: 14px;
}

.service-cont a i {
  margin: 0 0 0 5px;
}

.service-cont p {
  display: none;
}

.service-cont a {
  display: none;
}

.service:hover .service-cont {
  width: 90%;
  left: 5%;
  bottom: 15px;
  border-radius: 5px;
  background: linear-gradient(var(--tertiary-color), var(--primary-color));
  color: var(--secondary-color);
  padding: 20px;
}

.service:hover h4 {
  font-size: 17px;
}

.service:hover h4 br {
  display: none;
}

.service:hover p {
  display: block;
}

.service:hover a {
  display: inline-block;
}

.newsletter {
  width: 100%;
  height: 400px;
  overflow: hidden;
  position: relative;
}

.newsletter img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 1s;
}

.newsletter:hover img {
  transform: scale(1.2);
}

.news-cont {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  color: var(--tertiary-color);
  padding: 8% 0 0 0;
}

.news-cont h2 {
  width: 65%;
  margin: 0 auto;
  font-size: 38px;
}

.news-cont a {
  display: inline-block;
  background: linear-gradient(var(--tertiary-color), var(--primary-color));
  color: var(--secondary-color);
  padding: 8px 20px;
  border-radius: 20px;
  margin: 30px 0 0 0;
}

.news-cont a:hover {
  background: linear-gradient(var(--primary-color), var(--tertiary-color));
}

.blog-box {
  width: 100%;
  margin: 80px 0;
  text-align: center;
}

.blog-box h5::after {
  left: 50%;
  transform: translateX(-50%);
}

.blog-row {
  flex-wrap: wrap;
}

.blog {
  width: 32%;
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  text-align: left;
  margin: 40px 0 0 0;
}

.blog-image {
  width: 100%;
  height: 250px;
  border-radius: 5px 5px 0 0;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  border-radius: 5px 5px 0 0;
  transition: all 1s;
  object-fit: cover;
}

.blog:hover .blog-image img {
  transform: scale(1.2);
}

.blog-text {
  width: 100%;
  padding: 0 30px 30px 30px;
  position: relative;
}

.blog-text ul {
  display: inline-block;
  margin: 20px 0 0 0;
}

.blog-text ul li {
  display: inline-block;
  margin: 0 20px 0 0;
  font-family: myriadpro;
  color: #787f7d;
}

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

.blog-text ul li i {
  color: var(--secondary-color);
  margin: 0 5px 0 0;
}

.blog-text h3 {
  font-size: 25px;
  margin: 10px 0 0 0;
}

.blog-text p {
  margin: 10px 0 0 0;
}

.blog-text a {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(var(--tertiary-color), var(--primary-color));
  margin: 20px 0 0 0;
  color: var(--secondary-color);
  border-radius: 5px;
}

.blog-text a:hover {
  background: var(--secondary-color);
  color: var(--tertiary-color);
  border-radius: 0;
}

.blog-icon {
  position: absolute;
  top: -30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(var(--tertiary-color), var(--primary-color));
  text-align: center;
}

.blog-icon h4 {
  margin: 0;
  font-size: 25px;
  line-height: 0.8;
  padding: 10px 0 0 0;
}

.blog-icon p {
  margin: 0;
}

.testimonial-box {
  width: 100%;
  position: relative;
  background-size: cover;
  padding: 80px 0;
  background-repeat: no-repeat;
  text-align: center;
}

/* .testimonial-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
} */

/* .testimonial-cont {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    text-align: center;
    padding: 50px 0 50px 0;
} */

.testimonial-cont h5 {
  color: var(--tertiary-color);
}

.testimonial-cont h5::after {
  left: 50%;
  transform: translateX(-50%);
}

.testimonial-cont h2 {
  color: var(--tertiary-color);
}

.testimonial-flex {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 60px 0 0 0;
}

.testimonial-card {
  width: 48%;
}

.testimonial {
  width: 90%;
  margin: 0 auto;
  border-radius: 10px;
  background: var(--tertiary-color);
  padding: 50px 60px 50px 50px;
  text-align: left;
  position: relative;
  cursor: pointer;
  transition: all 0.5s;
}

.testimonial p {
  font-size: 16px;
  color: var(--secondary-color);
  margin: 0;
}

.quote-icon {
  position: absolute;
  top: -10px;
  right: 35px;
  z-index: 9;
  font-family: philospher-bold;
  font-size: 80px;
  transform: rotateY(180deg);
  color: var(--primary-color);
  transition: all 0.5s;
}

.client-flex {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin: 40px 0 0 0;
}

.client {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.client img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.client-text {
  width: 85%;
}

.client-text h4 {
  margin: 0;
  font-size: 20px;
}

.client-text p {
  font-family: poppins-medium;
  margin: 0;
}

.testimonial:hover {
  background: linear-gradient(var(--tertiary-color), var(--primary-color));
}

.testimonial:hover .quote-icon {
  color: var(--secondary-color);
}

.testimonial:hover .client {
  border-color: var(--tertiary-color);
}

.work-box {
  width: 100%;
  margin: 80px 0;
  text-align: center;
}

.work-box h5::after {
  left: 50%;
  transform: translateX(-50%);
}

.work-info {
  margin: 15px auto 0 auto;
  width: 40%;
}

.work-flex {
  width: 100%;
  margin: 50px 0 0 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.work {
  width: 26%;
  position: relative;
  height: auto;
}

.work-icon {
  width: 70px;
  height: 70px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
  margin: auto;
  display: grid;
  place-items: center;
  transition: all 0.5s;
}

.footer_copyright p a {
  color: #dac403;
}

.work-icon img {
  width: 75%;
}

.work:hover .work-icon {
  background: linear-gradient(var(--tertiary-color), var(--primary-color));
  box-shadow: none;
}

.work h3 {
  font-size: 22px;
  margin: 15px 0 0 0;
}

.work p {
  width: 90%;
  margin: 10px auto 0 auto;
}

.work-shape {
  position: absolute;
  right: -45%;
  top: 0;
}

.work-shape img {
  width: 90%;
}

.map-box {
  width: 100%;
  padding: 80px 0;
  background: #ebebeb;
}

.map-box h2 {
  margin: 0 0 10px 0;
}

.form-flex {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 30px 0 0 0;
}

.form-input {
  width: 32%;
}

.form-input input {
  width: 100%;
  border: none;
  outline: none;
  background: var(--tertiary-color);
  color: #000;
  padding: 10px;
  height: 35px;
  font-size: 14px;
  transition: all 0.5s;
}

.form-input input:focus {
  border: 1px solid var(--primary-color);
}

.map-text .form-input input::placeholder {
  opacity: 1;
  color: rgba(0, 0, 0, 0.7);
}

.form-input select {
  width: 100%;
  border: none;
  outline: none;
  background: var(--tertiary-color) !important;
  height: 35px;
  color: #000;
  font-size: 14px;
  padding: 10px;
  transition: all 0.5s;
}

.form-input select:focus {
  border: 1px solid var(--primary-color);
}

.map-text .form-area {
  width: 100%;
  margin: 30px 0 0 0;
}

.map-text .form-area {
  margin: 0;
}

.form-area textarea {
  width: 100%;
  border: none;
  outline: none;
  background: var(--tertiary-color);
  color: #000;
  padding: 10px;
  height: 100px;
  font-size: 14px;
  transition: all 0.5s;
}

.form-area textarea::placeholder {
  color: rgba(0, 0, 0, 0.7);
  opacity: 1;
}

.form-area textarea:focus {
  border: 1px solid var(--primary-color);
}

.map-text .form-input input {
  margin: 0 0 15px 0;
}

.map-text .form-input select {
  margin: 0 0 15px 0;
}

.map-text .form-input p {
  margin: 0;
}

.map-text .form-input br {
  display: none;
}

.map-text .form-area br {
  display: none;
}

.form-submit {
  width: 100%;
  padding: 10px 0;
  outline: none;
  border: none;
  color: var(--secondary-color);
  background: linear-gradient(var(--tertiary-color), var(--primary-color));
  transition: all 0.5s;
  margin: 30px 0 0 0;
  text-align: center;
  font-size: 17px;
  font-family: poppins-medium;
}

.form-submit:hover {
  background: var(--secondary-color);
  color: var(--tertiary-color);
}

.map-text .form-submit {
  margin: 0;
}

.map {
  width: 95%;
  height: 100%;
  margin: 0 0 0 auto;
}

.map iframe {
  width: 100%;
  height: 100%;
}

.footer {
  width: 100%;
  padding: 80px 0 50px 0;
  background: var(--secondary-color);
}

.footer-image {
  width: 100%;
}

.footer-image img {
  width: 70%;
}

.footer-image p {
  color: var(--tertiary-color);
  margin: 20px 0 0 0;
  font-family: poppins-light;
}

.footer-second {
  padding: 0 0 0 15%;
}

.footer-link {
  width: 100%;
}

.footer-link h3 {
  display: inline-block;
  position: relative;
  font-size: 25px;
  color: var(--primary-color);
  margin: 0 0 20px 0;
  padding: 0 0 10px 0;
}

.footer-link h3::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 60px;
  height: 2px;
  background: var(--tertiary-color);
}

.footer-link ul li {
  margin: 0 0 20px 0;
}

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

.footer-link ul li a {
  position: relative;
  padding: 0 0 0 30px;
  display: inline-block;
  font-family: poppins-light;
  color: var(--tertiary-color);
}

.footer-link ul li a::before {
  position: absolute;
  content: "➤";
  left: 0;
  top: 0;
  color: var(--primary-color);
  transition: 0.5s;
}

.footer-link ul li a:hover {
  color: var(--primary-color);
}

.footer-link ul li a:hover::before {
  color: var(--tertiary-color);
}

.footer-contact li {
  display: flex;
  justify-content: space-between;
}

.foot-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--secondary-color);
  background: linear-gradient(var(--tertiary-color), var(--primary-color));
  font-size: 15px;
  border-radius: 50%;
}

.foot-icontext {
  width: 85%;
}

.foot-icontext p {
  font-family: poppins-light;
  margin: 0;
  color: var(--tertiary-color);
}

.footer-contact li a {
  padding: 0 !important;
}

.footer-contact li a::before {
  display: none;
}

.footer-icon {
  width: 100%;
  /* text-align: right; */
  margin: 30px 0 0 0;
}

.footer-icon ul {
  display: inline-block;
}

.footer-icon ul li {
  display: inline-block;
  margin: 0 10px 0 0;
}

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

.footer-icon ul li a::before {
  display: none;
}

.footer-icon ul li a {
  padding: 0 !important;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  background: var(--tertiary-color);
  color: var(--secondary-color);
  font-size: 15px;
  border-radius: 50%;
}

.footer-icon ul li a:hover {
  background: linear-gradient(var(--tertiary-color), var(--primary-color));
  color: var(--secondary-color);
}

.footer_copyright {
  width: 100%;
  padding: 10px 0;
  text-align: center;
  border-top: 2px solid #535353;
  background: var(--secondary-color);
}

.footer_copyright p {
  margin: 0;
  color: var(--primary-color);
}

.scroll_top {
  width: 40px;
  height: 40px;
  background: linear-gradient(var(--tertiary-color), var(--primary-color));
  color: var(--secondary-color);
  font-size: 17px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  transition: all 0.4s;
  cursor: pointer;
}

.scroll_top:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
}

/* index css ends */

.about-banner {
  width: 100%;
  height: 350px;
  position: relative;
  margin: 100px 0 0 0;
}

.about-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-banner-cont {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  text-align: center;
  padding: 10% 0 0 0;
  color: var(--tertiary-color);
}

.about-banner-cont ul {
  display: inline-block;
  margin: 10px 0 0 0;
}

.about-banner-cont ul li {
  display: inline-block;
  margin: 0 10px 0 0;
  color: var(--tertiary-color);
}

.about-banner-cont ul li:last-child {
  margin: 0;
}

.about-banner-cont ul li a {
  color: var(--tertiary-color);
  font-family: poppins-semibold;
}

.about-banner-cont ul li a:hover {
  color: var(--primary-color);
  font-family: poppins-bold;
}

.about-banner-cont ul li i {
  margin: 0 0 0 10px;
}

/* inner banner css ends */

.about-work {
  margin: 240px 0 80px 0;
}

.value-box {
  width: 100%;
  background: #f4f4f4;
  padding: 80px 0;
  text-align: center;
}

.value-box h5::after {
  left: 50%;
  transform: translateX(-50%);
}

.value {
  width: 100%;
  height: 450px;
  border-radius: 15px;
  margin: 40px 0 0 0;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.value-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  opacity: 0;
  transition: all 0.8s;
}

.value-cont {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 30px;
  background: #f1eecd;
  transition: all 0.8s;
}

.value-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  background: var(--tertiary-color);
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.value-icon img {
  width: 70%;
  transition: all 0.8s;
}

.value-cont h3 {
  font-size: 25px;
  margin: 15px 0 0 0;
  transition: all 0.5s;
}

.value-cont p {
  margin: 15px 0 0 0;
  transition: all 0.5s;
}

.value:hover .value-image {
  transform: scale(1.1);
  opacity: 1;
}

.value:hover .value-cont {
  background: rgba(255, 229, 3, 0.3);
}

.value:hover .value-icon img {
  transform: rotateY(180deg);
}

.value:hover .value-cont h3 {
  color: var(--tertiary-color);
}

.value:hover .value-cont p {
  color: var(--tertiary-color);
}

.counter-box {
  width: 100%;
}

.counter-box {
  width: 100%;
  background: var(--primary-color) url(../images/counter-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 80px 0;
}

.counter {
  padding: 15px;
  border: 1px solid var(--tertiary-color);
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  text-align: left;
  height: 100%;
}

.counter-icon {
  width: 70px;
}

.counter-icon img {
  width: 100%;
}

.counter-icontext {
  width: 65%;
}

.counter h2 {
  margin: 0;
  padding: 0 10px 0 0;
  color: var(--primary-color);
  display: inline-block;
  position: relative;
}

.counter h2::after {
  content: "+";
  position: absolute;
  top: 0;
  left: 100%;
}

.counter p {
  font-family: poppins-semibold;
  color: var(--tertiary-color);
  font-size: 17px;
  margin: 5px 0 0 0;
}

.choose-text {
  width: 100%;
  margin: 40px 0 0 0;
  text-align: left;
}

.choose-flex {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 0 30px 0;
  padding: 20px;
  background: #f3f1da;
  transition: all 0.5s;
  border-radius: 10px;
}

.choose-flex:last-child {
  margin: 0;
}

.choose-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(var(--tertiary-color), var(--primary-color));
  color: var(--secondary-color);
  font-size: 25px;
  display: grid;
  place-items: center;
  transition: all 0.5s;
}

.choose-icon i {
  transition: all 0.5s;
}

.choose-flex:hover {
  background: #f4f4f4;
}

.choose-flex:hover .choose-icon {
  background: var(--secondary-color);
  color: var(--tertiary-color);
}

.choose-flex:hover .choose-icon i {
  transform: rotateY(180deg);
}

.choose-icontext {
  width: 70%;
}

.choose-icontext h3 {
  font-size: 18px;
  margin: 0;
}

.choose-icontext p {
  margin: 10px 0 0 0;
}

.choose-image {
  width: 100%;
  height: 300px;
  margin: 100px 0 0 0;
  padding: 30px;
  overflow: hidden;
}

.choose-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 1s;
}

.choose-box:hover img {
  transform: scale(1.1);
}

.gallery-box {
  display: none;
}

.gallery {
  width: 100%;
  height: 300px;
  overflow: hidden;
  margin: 40px 0 0 0;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 1s;
}

.gallery:hover img {
  transform: scale(1.1);
}

.faq-box {
  width: 100%;
  margin: 0 0 80px 0;
  display: none;
}

.faq-image {
  width: 95%;
  height: 450px;
  overflow: hidden;
  border-radius: 10px;
  margin: 40px 0 0 0;
  position: relative;
}

.faq-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.8s;
  border-radius: 10px;
}

.faq-image:hover img {
  transform: scale(1.2);
}

.faq-image::before {
  top: 0;
  left: -50%;
  content: "";
  position: absolute;
  width: 50%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  transition: all 0.5s;
  opacity: 0;
}

.faq-image::after {
  top: 0;
  right: -50%;
  content: "";
  position: absolute;
  width: 50%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  transition: all 0.5s;
  opacity: 0;
}
.faq-image:hover::before {
  opacity: 1;
  left: 0;
  z-index: 1;
}

.faq-image:hover::after {
  opacity: 1;
  right: 0;
}

.faq-text {
  width: 100%;
  margin: 40px 0 0 0;
  text-align: left;
}

.faq-item {
  width: 100%;
  margin: 0 0 40px 0;
}

.faq-item:last-child {
  margin: 0;
}

.question {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 5px;
}

.question-text {
  width: 92%;
  font-size: 20px;
  font-family: poppins-semibold;
}

.question.clicked {
  color: #333;
}

.answer {
  display: none;
  padding: 10px;
  border-top: none;
  border-radius: 0 0 5px 5px;
  padding: 10px 0 0 8%;
}

.answer p {
  margin: 0;
}

.toggle-icon {
  transition: all 0.5s;
  width: 20px;
  height: 20px;
  font-size: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(var(--tertiary-color), var(--primary-color));
  color: var(--secondary-color);
  border-radius: 50%;
}

.question.clicked .toggle-icon {
  background: var(--secondary-color);
  color: #fff;
}

/* about css ends */

.subscribe-box {
  width: 100%;
  height: 200px;
  position: relative;
}

.subscribe-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.subscribe-cont {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  padding: 50px 0 0 0;
}

.subscribe-text {
  width: 100%;
  color: var(--tertiary-color);
}

.subscribe-text h3 {
  margin: 0;
  font-size: 30px;
}

.subscribe-text p {
  margin: 10px 0 0 0;
  color: var(--tertiary-color);
}

.subscribe-info {
  text-align: right;
}

.subscribe-info p {
  text-transform: uppercase;
  color: var(--tertiary-color);
  margin: 10px 0;
  font-size: 20px;
  font-family: poppins-semibold;
}

.subscribe-info a {
  display: inline-block;
  color: var(--secondary-color);
  font-size: 30px;
  font-family: poppins-medium;
  padding: 8px 20px;
  background: var(--tertiary-color);
  border-radius: 10px;
}

.subscribe-info a:hover {
  color: var(--tertiary-color);
  background: var(--secondary-color);
}

/* subscribe newsletter ends */

/* .inner-service {
  margin: 0 0 80px 0;
} */

/* service page css ends */

.blog-detail {
  width: 100%;
  margin: 80px 0;
}

.blog-detail-text {
  width: 95%;
}

.blog-detail-text ul {
  display: inline-block;
  margin: 10px 0 0 0;
}

.blog-detail-text ul li {
  display: inline-block;
  margin: 0 10px 0 0;
}
/* 
.blog-detail-text ul li:last-child {
  margin: 0;
} */

.blog-detail-text ul li i {
  margin: 0 5px 0 0;
  color: var(--secondary-color);
}

.blog-detail-image {
  width: 100%;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  margin: 30px 0 10px 0;
}

.blog-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
  border-radius: 10px;
}

.blog-detail-image::before {
  top: 0;
  left: -50%;
  content: "";
  position: absolute;
  width: 50%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  transition: all 0.5s;
  opacity: 0;
}

.blog-detail-image::after {
  top: 0;
  right: -50%;
  content: "";
  position: absolute;
  width: 50%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  transition: all 0.5s;
  opacity: 0;
}

.blog-detail-image:hover img {
  transform: scale(1.1);
}

.blog-detail-image:hover::before {
  opacity: 1;
  left: 0;
  z-index: 1;
}

.blog-detail-image:hover::after {
  opacity: 1;
  right: 0;
}

.blog-detail-text p {
  margin: 20px 0 0 0;
}

.blog-info {
  width: 100%;
  padding: 20px;
  background: var(--primary-color);
  margin: 30px 0;
  padding: 50px 20px 20px 20px;
  position: relative;
}

.blog-info span {
  font-family: philospher-bold;
  font-size: 60px;
  color: var(--tertiary-color);
  position: absolute;
  top: 0;
  left: 20px;
}

.blog-info p {
  margin: 0 0 10px 0;
}

.blog-info h5 {
  font-family: poppins-semibold;
  color: var(--tertiary-color);
  text-transform: capitalize;
}

.blog-info h5::after {
  background: var(--secondary-color);
}

.blog-sidebar {
  width: 100%;
  position: sticky;
  position: -webkit-sticky;
  top: 80px;
}

.blog-link {
  width: 100%;
  padding: 30px;
  border-radius: 10px;
  background: #f3f1da;
}

.blog-link h5 {
  font-family: poppins-semibold;
  font-size: 30px;
  text-transform: capitalize;
  margin: 0;
}

.blog-list {
  width: 100%;
  padding: 0 0 10px 0;
  margin: 30px 0 0 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.blog-list:last-child {
  padding: 0;
  border: none;
}

.bloglist-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
}

.bloglist-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: all 0.5s;
}

.bloglist-text {
  width: 70%;
}

.bloglist-text a {
  color: var(--secondary-color);
  font-family: poppins-semibold;
  font-size: 18px;
}

.bloglist-text a:hover {
  background: linear-gradient(var(--secondary-color), var(--primary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bloglist-text ul {
  margin: 5px 0 0 0;
  display: inline-block;
}

.bloglist-text ul li {
  display: inline-block;
  margin: 0 10px 0 0;
  font-size: 14px;
}

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

.bloglist-text ul li i {
  margin: 0 5px 0 0;
  color: var(--secondary-color);
}

.blog-list:hover img {
  transform: scale(1.1);
}

.blog-sidebar-image {
  width: 100%;
  border-radius: 10px;
  height: 250px;
  position: relative;
  margin: 50px 0 0 0;
}

.blog-sidebar-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.blog-sidebar-cont {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  padding: 30px;
  border-radius: 10px;
  color: var(--tertiary-color);
}

.blog-sidebar-cont h3 {
  font-size: 30px;
  margin: 0;
}

.blog-sidebar-cont p {
  margin: 10px 0 0 0;
  color: var(--tertiary-color);
}

.blog-sidebar-cont a {
  color: var(--tertiary-color);
}

.blog-sidebar-cont a i {
  margin: 0 10px 0 0;
  color: var(--primary-color);
}

.blog-sidebar-cont a:hover {
  color: var(--primary-color);
}

.blog-sidebar-cont a:hover i {
  color: var(--tertiary-color);
}

/* blogdetail css ends */

.service-list h5 {
  margin: 0 0 30px 0;
}

.service-list li a {
  background: var(--tertiary-color);
  padding: 15px;
  width: 100%;
  display: inline-block;
  margin: 0 0 10px 0;
  font-family: poppins-semibold;
  position: relative;
  z-index: 1;
  border-radius: 6px;
  color: var(--secondary-color);
}

.service-list ul li a::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 100%;
  background: var(--primary-color);
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.5s;
  border-radius: 6px;
}

.service-list ul li a:hover::before {
  width: 100%;
}

.service-list ul li a:hover {
  color: var(--secondary-color);
}

.service-list ul li a i {
  margin: 0 0 0 10px;
  transform: rotate(45deg);
}

.service-form {
  margin: 50px 0 0 0;
  padding: 30px;
  background: #f4f4f4;
  border-radius: 10px;
}

.service-input {
  width: 100%;
  border: none;
  outline: none;
  height: 40px;
  padding: 10px;
  border-radius: 6px;
  background-color: var(--tertiary-color);
  font-size: 15px;
  border-radius: 6px;
  margin: 0 0 10px 0;
}

.service-input:focus {
  border: 1px solid var(--primary-color);
}

.service-select {
  width: 100%;
  position: relative;
}

.service-select select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: "";
  color: #bfbfbf;
}

.service-select::after {
  content: "▽";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  font-size: 13px;
  font-family: 600;
  color: #bfbfbf;
}

.service-input[type="datetime-local"] {
  color: #bfbfbf;
}

.service-areabox {
  width: 100%;
  border: none;
  outline: none;
  height: 70px;
  padding: 10px;
  border-radius: 6px;
  background-color: var(--tertiary-color);
  font-size: 15px;
  border-radius: 6px;
  margin: 0 0 10px 0;
}

.service-areabox:focus {
  border: 1px solid var(--primary-color);
}

.service-submit {
  width: 100%;
  border: none;
  outline: none;
  padding: 10px;
  background: linear-gradient(var(--tertiary-color), var(--primary-color));
  color: var(--secondary-color);
  border-radius: 6px;
  transition: all 0.5s;
}

.service-submit:hover {
  background: var(--secondary-color);
  color: var(--tertiary-color);
}

.service-detail-text p {
  margin: 20px 0 0 0;
}

.service-detail-text h4 {
  font-size: 24px;
  margin: 20px 0 0 0;
}

.service-detail-text ul {
  margin: 0;
}

.service-detail-text ul li {
  margin: 20px 0 0 0;
}

.service-detail-text ul li i {
  color: var(--primary-color);
  margin: 0 10px 0 0;
}

/* service detail css ends */

.vehicle-info {
  margin: 15px auto 0 auto;
  width: 50%;
}

.vehicle-tab-list {
  margin: 20px 0 0 0;
  text-align: center;
}

.vehicle-tab-list .container {
  width: 100%;
}

.vehicle-tab-list ul {
  display: inline-block;
}

.vehicle-tab-list ul li {
  display: inline-block;
  margin: 0 40px 0 0;
}

.vehicle-tab-list ul li:last-child {
  margin: 0;
}

.vehicle-tab {
  display: inline-block;
  padding: 8px 15px;
  background: linear-gradient(var(--tertiary-color), var(--primary-color));
  color: var(--secondary-color);
  border-radius: 5px;
  font-family: poppins-semibold;
  font-size: 18px;
  cursor: pointer;
}

.vehicle-tab.active {
  background: var(--secondary-color);
  color: var(--tertiary-color);
}

.vehicle-list {
  width: 32%;
  margin: 40px 0 0 0;
  border-radius: 10px;
  border: 2px solid var(--primary-color);
  padding: 0;
}

.vehicle-image {
  width: 100%;
  height: 250px;
  border-radius: 10px 10px 0 0;
  background: #f6f5ef;
  padding: 20px;
  overflow: hidden;
}

.vehicle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 1s;
}

.vehicle-list:hover .vehicle-image img {
  transform: scale(1.1);
}

.vehicle-text {
  width: 100%;
  text-align: left;
  padding: 30px;
}

.vehicle-text h3 {
  font-size: 25px;
  margin: 0;
}

.vehicle-rating {
  display: flex;
  margin: 10px 0 0 0;
}

.rating-text {
  margin: 0 10px 0 0;
}

.rating-text p {
  margin: 0;
  font-size: 17px;
}

.rating-star i {
  color: var(--primary-color);
  margin: 0 2px 0 0;
  font-size: 14px;
}

.rating-star i:last-child {
  margin: 0;
}

.vehicle-text h4 {
  font-size: 25px;
  color: var(--primary-color);
  margin: 15px 0 15px 0;
  display: flex;
  align-items: center;
  display: none;
}

.vehicle-text h4 span {
  color: #727272;
  font-family: poppins;
  font-size: 20px;
  margin: 0 0 0 5px;
}

.vehicle-flex {
  width: 100%;
  padding: 20px 0 0 0;
  margin: 15px 0 0 0;
  border-top: 1px solid rgba(0, 0, 0, 0.5);
}

.vehicle-flex ul {
  display: inline-block;
}

.vehicle-flex ul li {
  display: inline-block;
  margin: 0 15px 0 0;
  padding: 0 10px 0 0;
  border-right: 1px solid rgba(0, 0, 0, 0.5);
  font-size: 16px;
}

.vehicle-flex ul li:last-child {
  margin: 0;
  padding: 0;
  border: none;
}

.vehicle-flex ul li i {
  margin: 0 10px 0 0;
  color: var(--secondary-color);
}

.vehicle-text a {
  width: 100%;
  background: linear-gradient(var(--tertiary-color), var(--primary-color));
  display: inline-block;
  margin: 20px 0 0 0;
  padding: 10px 0;
  font-family: poppins-semibold;
  color: var(--secondary-color);
  border-radius: 5px;
  text-align: center;
}

.vehicle-text a:hover {
  color: var(--tertiary-color);
  background: var(--secondary-color);
}

.vehicle-text a i {
  margin: 0 0 0 10px;
}

/* vehicle page css ends */

.contact-box {
  width: 100%;
  margin: 80px 0;
}

.contact-formbox {
  width: 100%;
}

.contact-formbox p {
  margin: 0;
}

.form-flex {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 30px 0 0 0;
}

.form-input {
  width: 48%;
}

.contact-formbox label {
  font-size: 18px;
  font-family: poppins-semibold;
  display: block;
  margin: 0 0 10px 0;
}

.form-input input {
  width: 100%;
  height: 50px;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #e6e6e6;
  outline: none;
  background-color: #f5f5f5;
  border-radius: 5px;
  transition: all 0.5s;
}

.form-input input::placeholder {
  opacity: 1;
  color: rgba(0, 0, 0, 0.5) !important;
}

.form-input p {
  margin: 0;
}

.form-input br {
  display: none;
}

.form-input input:focus {
  border-color: var(--primary-color);
}

.form-service {
  width: 100%;
  margin: 30px 0 0 0;
}

.form-service select {
  width: 100%;
  height: 50px;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #e6e6e6;
  outline: none;
  background-color: transparent;
  border-radius: 5px;
  transition: all 0.5s;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-body-color);
}

.form-service select:focus {
  border-color: var(--primary-color);
}

.form-service p {
  margin: 0;
}

.form-service br {
  display: none;
}

.form-service textarea {
  width: 100%;
  height: 100px;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #e6e6e6;
  outline: none;
  background-color: none;
  border-radius: 5px;
  transition: all 0.5s;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-body-color);
}

.form-service textarea::placeholder {
  opacity: 1;
  color: rgba(0, 0, 0, 0.5) !important;
}

.form-service textarea:focus {
  border-color: var(--primary-color);
}

.form-checkbox {
  width: 100%;
  display: flex;
  align-items: baseline;
  margin: 30px 0 0 0;
}

.form-checkbox input {
  margin: 0 10px 0 0;
  -webkit-appearance: auto !important;
  -moz-appearance: auto !important;
  appearance: auto !important;
  border: none !important;
  background: none !important;
  border-radius: none !important;
  accent-color: var(--secondary-color);
}

.form-checkbox label {
  font-family: poppins;
  color: #333;
  font-size: 15px;
  margin: 0;
}

.submit-btn {
  display: inline-block;
  padding: 10px 30px;
  background: linear-gradient(var(--tertiary-color), var(--primary-color));
  color: var(--secondary-color);
  font-size: 18px;
  margin: 30px 0 0 0;
  outline: none;
  border: none;
  transition: all 0.5s;
  border-radius: 5px;
}

.submit-btn:hover {
  background: var(--secondary-color);
  color: var(--tertiary-color);
}

.contact-image {
  width: 95%;
  margin: 0 0 0 auto;
}

.cont-info {
  margin: 15px 0 0 0;
}

.contact-flex {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 30px 0 0 0;
}

.contact-icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 5px;
  font-size: 30px;
  background: linear-gradient(var(--tertiary-color), var(--primary-color));
  color: var(--secondary-color);
  transition: all 0.5s;
}

.contact-icontext {
  width: 85%;
}

.contact-icontext h3 {
  font-size: 22px;
  margin: 0;
  transition: all 0.5s;
}

.contact-icontext p {
  margin: 5px 0 0 0;
}

.contact-icontext a {
  color: var(--secondary-color);
}

.contact-flex:hover .contact-icon {
  background: var(--secondary-color);
  color: var(--tertiary-color);
}

.contact-icontext:hover a {
  background: linear-gradient(var(--tertiary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-map {
  width: 100%;
  height: 400px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
}

/* contact-css ends */

/* form-popup css starts */

.form-popup {
  width: 70%;
  position: fixed;
  left: 50%;
  top: 50%;
  opacity: 0;
  transform: translate(-50%, -50%) scale(1.25);
  padding: 40px 0 30px 0;
  max-width: 400px;
  background: linear-gradient(var(--tertiary-color), var(--primary-color));
  border-radius: 10px;
  transition: top 0ms ease-in-out 200ms, opacity 200ms ease-in-out 0ms,
    transform 200ms ease-in-out 0ms;
  z-index: -1;
  /* overflow: scroll; */
}

.form-popup.active {
  top: 58%;
  opacity: 1;
  z-index: 99999;
  transform: translate(-50%, -50%) scale(1);
  transition: top 0ms ease-in-out 0ms, opacity 200ms ease-in-out 0ms,
    transform 200ms ease-in-out 0ms;
}

.form-close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  color: var(--primary-color);
  text-align: center;
  line-height: 15px;
  border-radius: 15px;
  cursor: pointer;
}

.form-close-btn:hover {
  color: var(--secondary-color);
}

.form-tab {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.form-headtext {
  width: 50%;
}

.form-headtext h3 {
  margin: 0;
  padding: 10px 0 10px 15px;
  background: #f4f4f4;
  color: var(--secondary-color);
  font-family: poppins-medium;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
}

.form-headtext h3.form-active {
  background: var(--primary-color);
}

.form-tab-content {
  width: 100%;
  padding: 20px 20px 0 20px;
  height: 400px;
  overflow: scroll;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none;
}

.form-tab-content::-webkit-scrollbar {
  display: none;
}

.form-popup-input {
  width: 100%;
  margin: 0 0 10px 0;
}

.form-popup-input label {
  margin: 0 0 5px 0;
  font-family: poppins-semibold;
  display: block;
  font-size: 14px;
}

.form-popup-input input {
  width: 100%;
  height: 40px;
  font-size: 13px;
  padding: 10px;
  border-radius: 5px;
  background: var(--tertiary-color);
  border: none;
  outline: none;
  transition: all 0.5s;
}

.form-popup-input input:focus {
  border: 1px solid #b2b2b2;
}

.form-popup-input br {
  display: none;
}

.form-popup-input p {
  margin: 0;
}

.form-popup-select br {
  display: none;
}

.form-popup-select p {
  margin: 0;
}

.form-popup-submit p {
  margin: 0;
}

.form-popup-input input[type="date"] {
  color: #b6b6b6;
  font-size: 14px;
}

.form-popup-flex {
  width: 100%;
  margin: 0 0 15px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.form-popup-select {
  width: 48%;
}

.form-popup-select label {
  margin: 0 0 5px 0;
  font-family: poppins-semibold;
  display: block;
  font-size: 14px;
}

.form-popup-select select {
  width: 100%;
  height: 40px;
  font-size: 13px;
  padding: 10px;
  border-radius: 5px;
  background: var(--tertiary-color);
  border: none;
  outline: none;
  transition: all 0.5s;
  appearance: none;
}

.form-popup-select select:focus {
  border: 1px solid #b2b2b2;
}

.form-popup-submit {
  width: 100%;
  text-align: center;
}

.form-popup-submit input {
  width: 100%;
  padding: 10px 0;
  outline: none;
  border: none;
  font-family: poppins-semibold;
  font-size: 14px;
  background: var(--secondary-color);
  color: var(--tertiary-color);
  border-radius: 10px;
  transition: all 0.5s;
}

.form-popup-submit input:hover {
  background: var(--tertiary-color);
  color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
}

.form-popup-flex .form-popup-input {
  width: 48%;
  margin: 0;
}

.form-tab-content .form-display {
  display: none;
}

.form-tab-content .form-active {
  display: block;
  animation: moving 1s ease;
}

@keyframes moving {
  from {
    transform: translateY(20px);
    opacity: 0;
  }

  to {
    transform: translateX(0px);
    opacity: 1;
  }
}

.banner-cont .inner {
  width: 65%;
}

/* form-popup css ends */
.form-input.wow.fadeInUp p select {
  height: 48px;
  border-radius: 5px;
  border: 1px solid #e6e6e6;
  background-color: whitesmoke;
}
span.wpcf7-form-control-wrap input[type="text"] {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
  background-clip: padding-box;
  border: var(--bs-border-width) solid var(--bs-border-color);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: var(--bs-border-radius);
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
span.wpcf7-form-control-wrap input[type="checkbox"] {
  width: auto;
  display: inline-block;
  padding: 6px;
  margin-right: 2px;
}

/* vehicle popup starts  */

.vehicle-popup-box {
  background: rgba(0, 0, 0, 0.3);
}

.vehicle-popup-box .modal-content {
  background: linear-gradient(var(--tertiary-color), var(--primary-color));
}

.vehicle-popup-box .modal-header {
  padding: 20px 20px 0 20px;
  border-bottom: none;
}

.vehicle-popup-box .modal-header h2 {
  font-size: 30px;
}

.vehicle-popup-box .modal-body {
  padding: 10px 20px 30px 20px;
}

.vehicle-popup-box .modal-dialog {
  max-width: 800px !important;
}

.vehicle-popup {
  width: 100%;
}

.close-popup {
  border: none;
  outline: none;
  width: 30px;
  height: 30px;
  background: var(--secondary-color);
  color: var(--tertiary-color);
  border-radius: 50%;
  font-size: 15px;
  transition: all 0.5s;
  display: grid;
  place-items: center;
}

.vehicle-popup p {
  margin: 0;
}

.vehicle-popup br {
  display: none;
}

.vehicle-popup form {
  width: 100%;
}

.vehicle-flex {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.vehicle-input {
  width: 48%;
  margin: 20px 0 0 0;
}

.vehicle-input label {
  font-family: poppins-medium;
  font-size: 14px;
  display: block;
  margin: 0 0 5px 0;
}

.vehicle-input input {
  width: 100%;
  padding: 10px;
  height: 50px;
  font-size: 13px;
  border-radius: 5px;
  border: 1px solid #ddd;
  background: var(--tertiary-color);
  transition: all 0.2s;
  outline: none;
}

.vehicle-input input:focus {
  border-color: var(--secondary-color);
}

.vehicle-input textarea {
  width: 100%;
  padding: 10px;
  height: 50px;
  font-size: 14px;
  border-radius: 5px;
  border: 1px solid #ddd;
  background: var(--tertiary-color);
  text-align: left;
  transition: all 0.2s;
  outline: none;
}

.vehicle-input textarea:focus {
  border-color: var(--secondary-color);
}

.vehicle-input input[type="radio"] {
  margin: 0 10px 0 0;
  height: auto;
  accent-color: var(--secondary-color);
}

.vehicle-input select {
  width: 100%;
  padding: 10px;
  height: 50px;
  font-size: 14px;
  border-radius: 5px;
  border: 1px solid #ddd;
  background: var(--tertiary-color);
  transition: all 0.2s;
  outline: none;
}

.vehicle-input select:focus {
  border-color: var(--secondary-color);
}

.vehicle-custom {
  width: 100%;
  height: 50px;
  overflow-y: scroll;
  padding: 10px;
  background: var(--tertiary-color);
  border-radius: 5px;
  border: 1px solid #ddd;
  transition: all 0.2s;
}

.vehicle-custom:hover {
  border-color: var(--secondary-color);
}

.vehicle-custom ul li {
  margin: 0 0 10px 0;
  color: #535353;
  font-size: 14px;
  border: none;
  padding: 0;
  display: block;
}

.vehicle-check {
  width: 100%;
  display: flex;
  align-items: flex-start;
  margin: 20px 0 0 0;
}

.vehicle-check input {
  width: 20px !important;
  height: 20px !important;
  margin: 0 10px 0 0;
  -webkit-appearance: auto !important;
  -moz-appearance: auto !important;
  appearance: auto !important;
  border: none !important;
  background: none !important;
  border-radius: none !important;
  accent-color: var(--secondary-color);
}

.vehicle-input .wpcf7-form-control.wpcf7-radio {
  display: flex !important;
  justify-content: flex-start !important;
}

.vehicle-input .wpcf7-form-control.wpcf7-radio .wpcf7-list-item {
  display: flex !important;
  justify-content: flex-start !important;
  align-items: center;
  margin: 0 40px 0 0;
}

.vehicle-input .wpcf7-form-control.wpcf7-radio .wpcf7-list-item:last-child {
  margin: 0;
}

.vehicle-input
  .wpcf7-list-item
  span.wpcf7-form-control-wrap
  input[type="radio"] {
  /* width: 20px !important;
  height: 20px !important; */
  /* margin: 0 5px 0 0; */
  -webkit-appearance: auto !important;
  -moz-appearance: auto !important;
  appearance: auto !important;
  border: none !important;
  background: none !important;
  border-radius: none !important;
  accent-color: var(--secondary-color);
}

.vehicle-check label {
  font-family: proximanova;
  font-size: 15px;
  margin: 0 0 0 10px;
}

.vehicle-submit {
  display: inline-block;
  border-radius: 10px;
  border: none;
  background: var(--secondary-color);
  color: var(--tertiary-color);
  font-size: 17px;
  outline: none;
  padding: 10px 30px;
  margin: 20px 0 0 0;
}

.vehicle-submit:hover {
  background: var(--tertiary-color);
  color: var(--secondary-color);
}

.vehicle-modal-form-box {
  background: linear-gradient(var(--tertiary-color), var(--primary-color));
  padding: 80px 0;
}

.vehicle-modal-form-box h2 {
  display: inline-block;
  position: relative;
  padding: 0 0 10px 0;
}

.vehicle-modal-form-box h2::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: var(--secondary-color);
}

.vehicle-modal-form-box .vehicle-flex {
  border-top: none;
}

/* vehicle popup ends */

.mobile-menu {
  display: none;
}

/*media query responsive starts here*/

@media (max-width: 1399.2px) {
  .container {
    max-width: 90%;
    margin: 0 auto;
  }
}

@media (max-width: 1255.2px) {
  .bloglist-text {
    width: 64%;
  }

  .vehicle-modal-form-box {
    padding: 40px 0;
  }
}

@media (max-width: 1200px) {
  h2 {
    font-size: 36px;
  }
  .banner-cont h1 {
    font-size: 42px;
  }
  .counter {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .choose-icontext {
    width: 100%;
    margin-top: 14px;
  }

  .choose-flex {
    flex-direction: column;
  }
  .blog-sidebar-image {
    height: 275px;
  }
  .blog-detail-text h4 {
    font-size: 1.3rem;
  }
  .blog-link h5 {
    font-size: 24px;
  }
  .contact-box h2 {
    font-size: 26px;
  }
  .about-flex {
    width: 100%;
    position: unset;
    margin-top: 25px;
  }
  .service-box {
    margin: unset;
  }
  .about-work {
    margin: 80px 0 80px 0;
  }
  .value {
    height: 490px;
  }
  .choose-image {
    height: auto;
  }
  .client-flex {
    justify-content: start;
    gap: 19px;
  }
  .client-text {
    width: auto;
  }
  .subscribe-text h3 {
    font-size: 25px;
  }
  .vehicle-text h3 {
    font-size: 22px;
  }
  .vehicle-text h4 {
    font-size: 19px;
  }
  .blog-image img {
    height: 400px;
  }
  .blog-detail-text h2 {
    font-size: 30px;
  }

  .blog-sidebar-cont h3 {
    font-size: 22px;
  }

  .menu {
    padding: 0;
  }

  .contact-box .form-flex {
    margin: 0;
  }

  .contact-box .form-flex .form-input {
    margin: 20px 0 0 0;
  }
  .contact-box .form-service {
    margin: 20px 0 0 0;
  }

  .contact-box .form-area {
    margin: 20px 0 0 0;
  }

  .submit-btn {
    margin: 20px 0 0 0;
  }

  .form-checkbox {
    margin: 20px 0 0 0;
  }

  .contact-icontext {
    width: 80%;
  }
}
@media (max-width: 1150px) {
  .newsletter {
    height: 350px;
  }
  .banner-cont h1 {
    font-size: 36px;
  }
  .banner-cont h3 {
    font-size: 32px;
  }
  .blog-text {
    padding: 30px;
  }

  .value {
    height: 450px;
  }

  .blog-image {
    height: 220px;
  }
  .blog-text h3 {
    font-size: 22px;
  }

  .click-btn {
    font-size: 14px;
    right: -16px;
  }

  .vehicle-flex {
    padding: 0;
  }

  .vehicle-flex ul li {
    margin: 12px 10px 0 0;
  }

  .vehicle-flex ul li:last-child {
    margin: 12px 0 0 0;
  }
}

@media (max-width: 1100px) {
  h2 {
    font-size: 30px;
  }
  .news-cont h2 {
    text-transform: math-auto;
  }
  .value {
    height: 482px;
  }
  .counter-icon img {
    width: 100px;
    margin-bottom: 10px;
  }

  .foot-icontext {
    width: 80%;
  }
}
@media (max-width: 1080px) {
  /* .menu-btn {
    width: auto;
  }
  .logo {
    width: auto;
  }
  .logo img {
    width: 85%;
  } */
  .banner-cont {
    padding: 20% 0 0 0;
  }
  .sticky .logo img {
    width: 80%;
  }
  .sticky .menu-btn a {
    font-size: 0.8rem;
  }

  .menu ul li a {
    font-size: 13px;
  }

  header {
    padding: 10px 0;
  }
  .about-banner {
    height: 275px;
  }
  .bloglist-icon {
    margin: 0 0 10px 0;
  }
  .bloglist-text {
    width: 100%;
  }
  .footer-icon {
    text-align: left;
  }
}

@media (max-width: 1023px) {
  .menu-btn a {
    padding: 8px 24px;
  }
}

@media (max-width: 1000px) {
  .banner-cont .inner {
    width: 75%;
  }

  .value {
    height: 500px;
  }
}
@media (max-width: 991.2px) {
  .menu {
    display: none;
  }

  .mobile-menu {
    display: inline-block;
    color: var(--primary-color);
    font-size: 30px;
    margin: 0 0 0 15px;
    transition: 0.5s;
  }

  .mobile-menu:hover {
    color: var(--tertiary-color);
  }

  .offcanvas {
    background: var(--secondary-color);
  }

  .offcanvas-header {
    width: 100%;
  }

  .offcanvas-header .logo {
    width: 50%;
  }

  .offcanvas-header .logo img {
    width: 100%;
  }

  .offcanvas-header .close-sidebar {
    display: grid;
    place-items: center;
    outline: none;
    border: none;
    background: transparent;
    transition: all 0.5s;
    color: var(--tertiary-color);
    width: 40px;
    height: 40px;
    font-size: 15px;
    border: 2px solid #dddddd;
    border-radius: 50%;
  }

  .offcanvas-header .close-sidebar:hover {
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
  }

  .offcanvas-header .close-sidebar i {
    transition: all 0.3s;
  }

  .offcanvas-header .close-sidebar:hover i {
    transform: rotate(90deg);
  }

  .nav-flex .menu {
    display: none;
  }

  .offcanvas-body {
    padding: 0 15px;
  }

  .offcanvas-body .menu {
    width: 100%;
    flex-direction: column;
    padding: 0;
    text-align: left;
    display: flex;
  }

  .offcanvas-body .menu ul {
    width: 100%;
    display: block;
  }

  .offcanvas-body .menu ul li {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  /* .menu ul li ul {
    padding: 22px 0 0 0;
  } */

  .offcanvas-body .menu ul li a {
    width: 100%;
    padding: 0 0 10px 0;
    margin: 0 0 10px 0;
    border-bottom: solid 1px #e0e0e0;
    display: block;
    font-size: 16px;
  }

  .click-btn {
    right: 10px;
    font-size: 15px;
  }

  .offcanvas-body .menu ul.sub_menu {
    position: static;
    box-shadow: none;
    padding: 0;
    display: none;
  }

  .offcanvas-body .menu ul.sub_menu li {
    margin: 0;
    padding: 0;
    display: block;
  }

  .offcanvas-body .menu ul.sub_menu li a {
    display: block;
    font-size: 15px;
  }

  .offcanvas-body .menu ul.sub_menu li a:hover {
    padding: 10px;
  }

  .offcanvas-body .menu ul li:last-child a {
    border: none;
    margin: 0;
  }

  .offcanvas-body .menu ul li:last-child a {
    border-bottom: none;
  }

  .offcanvas-body .menu ul li ul.sub_menu li:last-child a {
    border-bottom: 1px solid #e0e0e0;
    margin: 0 0 10px 0;
  }

  .sticky .menu ul li ul {
    padding: 0;
  }

  .offcanvas-body .menu-btn {
    width: 100%;
    text-align: left;
    margin: 20px 0 0 0;
    display: none;
  }

  ul li.menu-item-has-children:after {
    top: 0;
    right: 10px;
  }

  .offcanvas-body .menu ul li.active a {
    color: var(--primary-color);
  }

  header {
    z-index: 99;
  }
  .sticky {
    z-index: 99;
  }

  .menu-btn {
    width: 75%;
  }

  .banner-cont {
    padding: 18% 0 0 0;
  }
  .about-image {
    width: 100%;
    height: auto;
  }
  .service-text {
    margin-bottom: 30px;
  }
  .about-box {
    margin: 60px 0;
  }
  .service-flex {
    justify-content: center;
  }
  .blog {
    width: 48%;
    margin: 30px 0 0 0;
  }

  .blog:last-child {
    margin: 30px auto 0 auto;
  }

  .blog-link {
    margin-top: 30px;
  }
  .blog-list {
    justify-content: start;
  }
  .bloglist-text ul {
    display: block;
  }
  .blog-sidebar-image {
    height: 200px;
  }
  .subscribe-info {
    text-align: center;
  }
  .subscribe-text {
    text-align: center;
    width: 80%;
    margin: 0 auto;
  }
  .subscribe-box {
    height: 300px;
  }
  .blog-detail {
    margin: 60px 0;
  }
  .footer-image img {
    width: auto;
  }
  .footer-second {
    padding: 0;
    margin-bottom: 30px;
  }
  .footer-contact li {
    justify-content: start;
    gap: 14px;
  }
  .value {
    height: 395px;
    margin: 30px 0 0 0;
  }
  .counter {
    margin-bottom: 20px;
    height: auto;
  }
  .choose-text.last {
    display: flex;
    justify-content: center;
    gap: 10px;
  }
  .choose-text.last .choose-flex {
    width: 48%;
    margin-bottom: 0;
  }
  .contact-image {
    width: 100%;
    margin: 40px 0 0 0;
  }
  .blog-box {
    margin: 60px 0;
  }

  .service-text p {
    width: 100%;
  }

  .service-text {
    margin: 0 0 40px 0;
  }

  .news-cont {
    padding: 10% 0 0 0;
  }

  .bloglist-icon {
    margin: 0;
  }

  .bloglist-text {
    width: 85%;
  }

  .blog-detail-text {
    width: 100%;
  }

  .contact-icontext {
    width: 90%;
  }

  .contact-map {
    width: 350px;
  }

  .vehicle-list {
    width: 48%;
  }
}

@media (max-width: 921.2px) {
  .news-cont h2 {
    width: 90%;
  }
}

@media (max-width: 900px) {
  .banner-cont {
    padding: 22% 0 0 0;
  }
  .about-cont {
    width: 32%;
  }
  .news-cont h2 {
    width: 90%;
    font-size: 32px;
  }
  .newsletter {
    height: 275px;
  }
  .work-shape img {
    width: 60%;
  }
  .work-shape {
    right: -50%;
  }
  .work {
    width: 32%;
  }

  .news-cont {
    padding: 7% 0 0 0;
  }

  .contact-icontext {
    width: 85%;
  }

  .sticky .logo img {
    width: 100%;
  }

  .logo img {
    width: 100%;
  }

  .about-banner {
    margin: 95px 0 0 0;
  }
}

@media (max-width: 920px) {
  .about-banner {
    margin: 92px 0 0 0;
  }
}

@media (max-width: 880px) {
  .about-banner {
    margin: 90px 0 0 0;
  }
}

@media (max-width: 853px) {
  .about-banner {
    margin: 85px 0 0 0;
  }
}

@media (max-width: 850px) {
  .banner-cont h1 {
    font-size: 34px;
  }
  .banner-cont p {
    width: 70%;
  }
  .work-info {
    width: 90%;
  }
  .value {
    height: 415px;
  }
  .counter-box {
    padding: 60px 0;
  }
  .value-box {
    margin: 60px 0;
  }
}
@media (max-width: 800px) {
  .banner-cont .inner {
    width: 85%;
  }
  .news-cont {
    padding: 8% 0 0 0;
  }

  .value {
    height: 440px;
  }
  .vehicle {
    height: 95%;
  }
  .contact-box {
    margin: 60px 0;
  }
  .vehicle-info {
    width: 100%;
  }

  .logo {
    width: 16%;
  }

  .menu-btn {
    width: 64%;
  }
}

@media (max-width: 788px) {
  .about-banner {
    margin: 85px 0 0 0;
  }
}

@media (max-width: 767px) {
  .about-text {
    margin-top: 30px;
  }
  .blog-image {
    height: auto;
  }
  .footer-image p {
    margin: 20px 0 30px 0;
  }
  .footer-link {
    margin-bottom: 30px;
  }
  .value {
    height: 340px;
  }
  .choose-text.last {
    flex-direction: column;
  }
  .choose-text.last .choose-flex {
    width: 100%;
  }
  .subscribe-box {
    height: 345px;
  }
  .subscribe-text {
    width: 90%;
  }

  .bloglist-text {
    width: 80%;
  }
}

@media (max-width: 730px) {
  .about-banner {
    margin: 75px 0 0 0;
  }
}

@media (max-width: 700px) {
  .about-cont {
    padding: 15px;
  }
  .work-shape img {
    display: none;
  }
  .work {
    margin-bottom: 20px;
    width: 48%;
  }
  .work-flex {
    justify-content: center;
  }

  .vehicle-tab-list ul li {
    margin: 20px 0 0 0;
  }

  .vehicle-tab-list ul li a {
    font-size: 16px;
  }
}

@media (max-width: 681px) {
  .news-cont {
    padding: 10% 0 0 0;
  }

  .counter p {
    font-size: 15px;
  }
}

@media (max-width: 670px) {
  .about-banner {
    margin: 70px 0 0 0;
  }

  .banner {
    height: 550px;
  }
}

@media (max-width: 650px) {
  .banner-cont .inner {
    width: 100%;
  }
  .banner {
    height: 450px;
  }

  .banner img {
    object-position: right;
  }

  .about-flex {
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
  }
  .about-cont {
    width: 48%;
    margin-bottom: 10px;
  }
  .about-banner-cont {
    padding: 15% 0 0 0;
  }
  .value-box {
    margin: 0;
  }

  .vehicle-list {
    width: 100%;
  }

  .vehicle-image {
    height: 350px;
  }
}

@media (max-width: 642px) {
  .value {
    height: 360px;
  }

  .bloglist-text {
    width: 76%;
  }
}

@media (max-width: 617px) {
  .about-banner {
    margin: 65px 0 0 0;
  }
}

@media (max-width: 600px) {
  h2 {
    font-size: 22px;
  }
  .blog-detail-text h2 {
    font-size: 26px;
  }
  .blog-detail-image img {
    height: auto;
  }
  .banner-cont h1 {
    font-size: 28px;
  }
  .blog-detail-image {
    height: auto;
  }

  .counter p {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .banner-cont {
    padding: 22% 0 0 0;
  }

  .banner-cont p {
    width: 100%;
  }

  .about-cont {
    width: 100%;
  }
  .service-box {
    padding: 40px 0;
  }
  .news-cont h2 {
    font-size: 25px;
  }
  .newsletter {
    height: 223px;
  }
  .work {
    width: 100%;
  }
  .map-box {
    padding: 40px 0;
  }
  .banner-cont h3 {
    font-size: 20px;
  }
  .banner-cont h3 span {
    font-size: 20px;
  }

  .news-cont {
    padding: 8% 0 0 0;
  }

  .form-popup-select {
    width: 100%;
  }

  .form-popup-select:nth-child(1) {
    margin: 0 0 10px 0;
  }

  .vehicle-input {
    width: 100%;
    margin: 15px 0 0 0;
  }

  .vehicle-check {
    margin: 15px 0 0 0;
  }

  .vehicle-check input {
    width: 15px !important;
    height: 15px !important;
  }

  .blog {
    width: 100%;
  }

  .bloglist-icon {
    width: 60px;
    height: 60px;
    margin: 0 0 10px 0;
  }

  .bloglist-text {
    width: 100%;
  }

  .contact-icontext {
    width: 80%;
  }

  .contact-map {
    height: 300px;
  }

  .contact-box .form-flex .form-input {
    width: 100%;
    margin: 15px 0 0 0;
  }

  .contact-box .form-flex .form-select {
    margin: 15px 0 0 0;
  }

  .contact-box .form-flex .form-area {
    margin: 15px 0 0 0;
  }

  .form-checkbox {
    margin: 15px 0 0 0;
  }

  .submit-btn {
    margin: 15px 0 0 0;
  }

  .menu-btn {
    display: none;
  }

  .offcanvas .menu-btn {
    display: block;
  }

  .logo {
    width: 20%;
  }

  .vehicle-image {
    height: 300px;
  }

  .rating-text p {
    font-size: 16px;
  }

  .subscribe-info a {
    font-size: 24px;
  }

  .footer-link h3 {
    font-size: 22px;
  }
}

@media (max-width: 565px) {
  .value {
    height: 380px;
  }

  .counter p {
    font-size: 16px;
  }

  .vehicle-tab-list {
    margin: 10px 0 0 0;
  }

  .vehicle-tab-list ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }

  .vehicle-tab-list ul li {
    margin: 10px 20px 0 0;
  }

  .vehicle-tab-list ul li:last-child {
    margin: 10px 0 0 0;
  }

  .vehicle-input input {
    height: auto;
  }

  .vehicle-input select {
    height: auto;
    height: auto;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
  }
}

@media (max-width: 551px) {
  .about-banner {
    margin: 60px 0 0 0;
  }

  .logo {
    width: 25%;
  }
}

@media (max-width: 512px) {
  .blog-sidebar-image {
    height: 235px;
  }
}

@media (max-width: 501px) {
  .about-banner-cont {
    padding: 23% 0 0 0;
  }
  .question-text {
    font-size: 18px;
  }
  .subscribe-text {
    width: 100%;
  }
  .banner-cont h1 br {
    display: none;
  }

  .contact-map {
    height: 250px;
  }

  .banner-cont {
    padding: 28% 0 0 0;
  }

  .vehicle-image {
    height: 250px;
  }
}

@media (max-width: 485px) {
  .value {
    height: 400px;
  }
}

@media (max-width: 480px) {
  .banner-cont {
    padding: 33% 0 0 0;
  }
  .service {
    width: 100%;
  }
  .blog-text {
    padding: 15px;
  }

  .testimonial {
    padding: 40px 50px 40px 40px;
  }
  .form-input {
    width: 100%;
  }
  .value-box {
    padding: 40px 0;
  }
  .choose-image {
    margin: 0;
  }
  .vehicle-text {
    padding: 15px;
  }
  .contact-formbox p {
    margin-bottom: 14px;
  }
}

@media (max-width: 461px) {
  .banner-cont {
    padding: 26% 0 0 0;
  }
}

@media (max-width: 451px) {
  .banner-cont {
    padding: 30% 0 0 0;
  }

  .banner-cont a {
    margin: 20px 0 0 0;
  }

  .contact-icontext {
    width: 100%;
    margin: 12px 0 0 0;
  }

  .logo {
    width: 30%;
  }
}

@media (max-width: 449px) {
  .value {
    height: 420px;
  }
}

@media (max-width: 420px) {
  .banner-cont h1 {
    font-size: 23px;
  }

  .about-box {
    margin: 40px 0;
  }
  .about-work {
    margin: 40px 0;
  }
  .testimonial {
    padding: 30px;
  }
}

@media (max-width: 401px) {
  .logo {
    width: 30%;
  }

  .banner-cont {
    padding: 40% 0 0 0;
  }
}

@media (max-width: 376px) {
  .logo {
    width: 36%;
  }
}

@media (max-width: 374px) {
  .value {
    height: 470px;
  }
}

@media (max-width: 365px) {
  .blog-sidebar-image {
    height: 280px;
  }
}

@media (max-width: 360px) {
  .banner-cont {
    padding: 44% 0 0 0;
  }
  /*   
  .newsletter {
    height: 250px;
  } */
}

@media (max-width: 357px) {
  .value {
    height: 490px;
  }
}

@media (max-width: 336px) {
  .value {
    height: 510px;
  }
}

@media (max-width: 321px) {
  .banner-cont h1 {
    font-size: 21px;
  }
  .banner-cont p {
    width: 100%;
  }
  .service-text p {
    width: 100%;
  }

  .about-banner-cont {
    padding: 30% 0 0 0;
  }

  .value-cont {
    padding: 15px;
  }

  .banner-cont {
    padding: 50% 0 0 0;
  }

  .logo {
    width: 36%;
  }
}
/*media query responsive ends here*/
