@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


:root {
  --primary-color: #00189e;
  --indian-color: #f4c542;
  --theme-color: #000;
  --light-color: #f9f9f9;
  --white-color: #ffffff;
  --greycolor-bg: #f3f4f5;
  --secondary-text: #282f34;
  --fonts-color: #787878;
  --blackfont-color: #282f34;
  --body-font-family: "Nunito Sans", sans-serif;
  --head-font-family: "Raleway", sans-serif;
}

body {
  font-family: "Nunito Sans", Arial, Helvetica, sans-serif;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

::-webkit-scrollbar {
  display: none;
}

.container {
  position: relative;
}


.display-none {
  display: none !important;
}

.display-block {
  display: block !important;
}

.pointer-cursor {
  cursor: pointer !important;
}

.container {
  position: relative;
  z-index: 2;
}

a {
  text-decoration: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  position: relative;
}

input[type='number']::-webkit-inner-spin-button {
  display: none;
}

.sticky-top {
  position: fixed;
  animation: fadeInDown 0.6s linear;
}

.float-right {
  float: right;
}

.float-left {
  float: left;
}

/* ================================================================================================== */


.hero-slider-section {
  position: relative;
  height: 800px;
  overflow: hidden;
  width: 100%;
}

.hero-slider-section .video-box {
  width: 100%;
  height: 100%;
}

.hero-slider-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 1));
}

.hero-slider-section .video-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slider-section .content-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  padding-top: 160px;
  width: 100%;
}

.typed-cursor {
  display: none;
}

.hero-slider-section .content-wrapper h1 {
  font-size: 76px;
  font-weight: 500;
  color: #fff;
}

.hero-slider-section .content-wrapper h1 span {
  color: #f4c542;
  font-weight: 700;
}

.hero-slider-section .content-wrapper span.tagline {
  color: #f4c542;
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: 600;
}

.hero-slider-section .content-wrapper p {
  color: #fff;
  font-size: 28px;
  min-height: 40px;
  font-style: italic;
}

.hero-slider-section .content-wrapper p span {
  color: var(--indian-color);
  font-weight: 700;
}

.hero-slider-section .content-wrapper p svg {
  margin-right: 10px;
  width: 28px;
  height: 28px;
  color: var(--indian-color);
}

.hero-slider-section .content-wrapper .btn-group {
  margin-top: 30px;
}

.hero-slider-section .content-wrapper .btn-group a {
  display: inline-block;
  padding: 10px 30px;
  background-color: var(--indian-color);
  margin-right: 10px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 800;
  color: #282f34;
  border: 2px solid transparent;
  transition: all 0.4s;
}

.hero-slider-section .content-wrapper .btn-group a:last-child {
  background-color: transparent;
  border: 2px solid var(--white-color);
  color: #fff;
}

.hero-slider-section .content-wrapper .btn-group a:hover {
  background-color: #000;
  color: #fff;
  border-color: #000;
  transform: scale(1.1);
}

.hero-slider-section .content-wrapper .right-content {
  padding: 50px 30px;
  border-radius: 20px;
  background: url(../img/luxury-bg.webp) no-repeat;
  background-size: cover;
  background-position: bottom;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  position: relative;
  overflow: hidden;
}

.hero-slider-section .content-wrapper .right-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.hero-slider-section .content-wrapper .right-content h3 {
  color: #fff;
  text-align: center;
  font-size: 24px;
  font-style: italic;
  font-weight: 300;
  margin-bottom: 14px;
  position: relative;
}

.hero-slider-section .content-wrapper .right-content h3 span {
  color: var(--indian-color);
  font-weight: 700;

}


.hero-slider-section .content-wrapper .right-content .card-box {
  text-align: center;
  border-radius: 4px;
}

.hero-slider-section .content-wrapper .right-content .card-box a {
  display: inline-block;
  padding: 20px;
}

.hero-slider-section .content-wrapper .right-content .card-box .img-box {
  width: 100%;
  height: 220px;
  border-radius: 5px;
  overflow: hidden;

}

.hero-slider-section .content-wrapper .right-content .card-box .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.8s;
}

.hero-slider-section .content-wrapper .right-content .card-box:hover .img-box img {
  transform: scale(1.2);

}

.hero-slider-section .content-wrapper .right-content .card-box h6 {

  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  margin-top: 5px;
  display: inline-block;
  padding: 10px 30px;
  background-color: var(--indian-color);
  color: #000;
  border-radius: 50px;
  border: 1px solid #fff;
  transform: translateY(-26px);

}


.hero-slider-section .content-wrapper .right-content .card-box span {
  display: block;
  margin-top: -20px;
  color: #fff;
  letter-spacing: 1px;

  text-transform: uppercase;
}


.hero-slider-section .content-wrapper .right-content .card-box svg {
  color: var(--indian-color);
}

.hero-slider-section .content-wrapper .right-content span.note {
  position: relative;
  font-size: 12px;
  color: #fff;

}

.hero-slider-section .content-wrapper .right-content span.note svg {
  color: var(--indian-color);
}



@media (min-width:1200px) and (max-width:1400px) {
  .hero-slider-section .content-wrapper h1 {
    font-size: 64px;
  }

}

@media (min-width:992px) and (max-width:1200px) {
  .hero-slider-section {
    height: 720px;
  }

  .hero-slider-section .content-wrapper {
    padding-top: 140px;
    width: 100%;
  }

  .hero-slider-section .content-wrapper h1 {
    font-size: 54px;
  }

  .hero-slider-section .content-wrapper .right-content {
    padding: 20px 10px;
  }

  .hero-slider-section .content-wrapper .right-content h3 {
    font-size: 20px;
  }

  .hero-slider-section .content-wrapper .right-content .card-box h6 {
    font-size: 14px;
    letter-spacing: 0;
  }

  .hero-slider-section .content-wrapper .right-content span.note {
    text-align: center;
    display: block;
  }

  .hero-slider-section .content-wrapper .right-content .card-box a {
    display: inline-block;
    padding: 0;
  }
}

@media (max-width:992px) {
  .hero-slider-section {
    height: 960px;
  }

  .hero-slider-section .content-wrapper {
    padding-top: 140px;
    width: 100%;
  }

  .hero-slider-section::before {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 1));
  }

  .hero-slider-section .content-wrapper span.tagline {
    text-align: center;
    display: block;
  }

  .hero-slider-section .content-wrapper h1 {
    font-size: 46px;
    text-align: center;
  }

  .hero-slider-section .content-wrapper p {
    color: #fff;
    font-size: 24px;
    min-height: 40px;
    font-style: italic;
    text-align: center;
  }

  .hero-slider-section .content-wrapper .btn-group {
    margin-top: 0;
    text-align: center;
    display: block;
  }

  .hero-slider-section .content-wrapper .right-content {
    padding: 30px 10px;
    margin-top: 40px;
  }

  .hero-slider-section .content-wrapper .right-content h3 {
    font-size: 20px;
  }

  .hero-slider-section .content-wrapper .right-content .card-box h6 {
    font-size: 14px;
    letter-spacing: 0;
  }

  .hero-slider-section .content-wrapper .right-content span.note {
    text-align: center;
    display: block;
    margin-top: 20px;
  }

  .hero-slider-section .content-wrapper .right-content .card-box a {
    display: inline-block;
    padding: 0;
  }
}

@media (max-width:567px) {
  .hero-slider-section {
    height: 1060px;
  }

  .hero-slider-section .content-wrapper h1 {
    font-size: 34px;
    text-align: center;
  }

  .hero-slider-section .content-wrapper p {
    font-size: 22px;
    min-height: 48px;
  }

  .hero-slider-section .content-wrapper .btn-group a {
    padding: 6px 10px;
  }

}


.whyus-section {
  padding: 80px 0;
  position: relative;
  background-color: rgba(0, 0, 0, 0.04);
}

.whyus-section .section-heading span.sub-title {
  background-color: #f4c542;
  padding: 8px 20px;
  font-weight: 700;
  font-family: 'Raleway', sans-serif;
  letter-spacing: 1px;
  font-style: italic;
  border-radius: 6px;
  margin-bottom: 10px;
  display: inline-block;
  text-transform: uppercase;
  color: #000;

}

.whyus-section .section-heading h2.title {
  font-size: 42px;
  text-transform: uppercase;
  color: #282f34;
  font-weight: 300;
}

.whyus-section .section-heading h2.title span {
  font-weight: 600;
  color: #000;
}

.whyus-section .section-heading p.tagline {
  color: rgba(0, 0, 0, 0.8);
  font-size: 18px;
  letter-spacing: 1px;
}

.whyus-section .feature-box-wrapper {
  padding-top: 30px;
}

.whyus-section .feature-box {
  text-align: center;
  padding: 30px 20px;
  margin-bottom: 60px;
  background-color: #f4c542;
  border-radius: 20px;
  position: relative;
  transition: all 0.4s;
}

.whyus-section .feature-box:hover {
  background-color: #000;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.whyus-section .feature-box.active {
  background-color: #000;
}

.whyus-section .feature-box svg {
  width: 60px;
  height: 60px;
  margin-top: -50px;
  margin-bottom: 10px;
  color: #000;
  filter: drop-shadow(0 0 2px #f4c542);
  transition: all 0.4s;
}

.whyus-section .feature-box.active svg {
  color: #f4c542;
  filter: drop-shadow(0 0 2px #000);
}

.whyus-section .feature-box:hover svg {
  color: #f4c542;
  filter: drop-shadow(0 0 2px #000);
  transform: scale(1.1);
}

.whyus-section .feature-box h4 {
  font-size: 58px;
  margin-bottom: 0;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 800;
  font-style: italic;
  color: #fff;
}

.whyus-section .feature-box p {
  margin-bottom: 0;
  text-transform: capitalize;
  color: #000;
  font-weight: 700;
  letter-spacing: 1px;
  transition: all 0.4s;
}

.whyus-section .feature-box.active p {
  color: #fff;
}

.whyus-section .feature-box:hover p {
  color: #fff;
}

.enquiry-form {
  text-align: center;
  padding: 50px 30px;
  background: url(../img/scorpio-bg.webp) no-repeat;
  background-attachment: fixed;
  background-size: cover;
  border-radius: 20px;
  position: relative;
}

.enquiry-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 20px;
}

.enquiry-form h5 {
  position: relative;
  color: #fff;
  font-size: 24px;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.enquiry-form h5::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  background-color: #f4c542;
  height: 3px;
}

.enquiry-form h5::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 3px;
  background-color: #fff;
  animation: slideBg 3s infinite alternate;
}

@keyframes slideBg {
  0% {
    left: 46%;
    transform: translateX(-50%);
  }

  100% {
    left: 54%;
    transform: translateX(-50%);
  }
}

.enquiry-form p {
  color: #fff !important;
  position: relative;
  font-size: 16px;
  letter-spacing: 1px;
}

.enquiry-form p strong {
  text-transform: capitalize;
  color: #f3f4f5;
}

.enquiry-form p.visited {
  position: absolute;
  bottom: 0;
  right: 20px;
  color: #f4c542;
  font-weight: 700;
}

.enquiry-form p.visited::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -18px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  animation: blinkDot 1s infinite linear;
}

@keyframes blinkDot {
  0% {
    background-color: #fff;
  }

  50% {
    background-color: #008000;
  }

  100% {
    background-color: #fff;
  }
}

.enquiry-form form {
  position: relative;
}

.enquiry-form span {
  display: block;
  margin-bottom: 20px;
}

.enquiry-form label {
  color: #fff;
  font-weight: 700;
  font-size: 18px;

}

.enquiry-form input,
.enquiry-form select {
  width: 100%;
  border-radius: 6px;
  padding: 8px 18px;
  font-weight: 600;
  color: #282f34;
  box-shadow: none;
}

.enquiry-form input::placeholder {
  color: #282f34;
}

.enquiry-form select option:hover {
  background-color: #f4c542 !important;
}

.enquiry-form input[type='date'] {
  text-transform: uppercase;
}

.enquiry-form .custom-switch {
  display: flex;
  align-items: center;
  margin-bottom: 20px;

}

.enquiry-form .custom-switch .form-check-label {
  margin-bottom: 0;

}

.enquiry-form .custom-switch .form-check-input {
  width: 50px;
  height: 20px;
  background-color: #ccc;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  box-shadow: none;
  border-radius: 50px;
  margin-right: 10px;
  position: relative;
}

.enquiry-form .custom-switch .form-check-input:checked {
  background-color: #f4c542;
}

.enquiry-form .custom-switch .form-check-input:focus {
  box-shadow: none;
  background-image: none;
}

.enquiry-form .custom-switch .form-check-input::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 14px;
  height: 14px;
  background-color: #000;
  border-radius: 50%;
  transition: all 0.6s ease;
}

.enquiry-form .custom-switch .form-check-input:checked::before {
  transform: translateX(30px);
}

.enquiry-form input[type='submit'] {
  background-color: transparent;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  display: inline-block;
  position: relative;
  text-transform: uppercase;
  border: 0;
  margin-top: 16px;
  text-decoration: underline !important;
  transition: all 0.4s;
}

.enquiry-form input[type='submit']:hover {
  color: #f4c542;
  transform: scale(1.2);
}


@media (min-width:992px) and (max-width:1200px) {
  .whyus-section .feature-box {
    padding: 30px 10px;
  }

  .whyus-section .feature-box p {
    letter-spacing: 0;
  }

  .enquiry-form input[type='submit'] {
    margin-top: 15px;
  }

}

@media (max-width:768px) {
  .whyus-section .feature-box {
    padding: 30px 10px;
  }

  .whyus-section .feature-box p {
    letter-spacing: 0;
  }

  .enquiry-form input[type='submit'] {
    margin-top: 0;
    margin-bottom: 10px;
  }

  .enquiry-form {
    text-align: center;
    padding: 30px 10px;
  }

  .enquiry-form h5 {
    font-size: 18px;

  }
}

@media (max-width:568px) {
  .whyus-section .feature-box {
    margin-bottom: 35px;
  }


}

/* ------------------------------------------------------------------------------------------------------------------------------------------- */

.btn-main {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 2px solid #fff;
  color: #fff;
  text-transform: uppercase;
  font-size: 18px;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.4s;
}
.btn-main.light-bg{
  background-color: #000;
  color: #fff;
}

.btn-main:hover {
  background-color: #f4c542;
  color: #000;
  transform: translateY(-5px);
  border-color: #000;
}

.btn-main svg {
  transition: all 0.4s;
}

.btn-main:hover svg {
  transform: translateX(5px) scale(1.1);
}




/* ------------------------------------------------------------------------------------------------------------------------------------------ */

.service-section {
  position: relative;
  padding: 80px 0;
  background: url(../img/scorpio-bg.webp);
}

.service-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
}

.service-section .section-title {
  position: relative;
  margin-bottom: 30px;
}

.service-section .item-box {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
  position: relative;
  border: 2px solid #fff;
}

.service-section .item-box .img-box {
  width: 100%;
  height: 250px;

}

.service-section .item-box .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s;
}

.service-section .item-box:hover .img-box img {
  transform: scale(1.2);
}

.service-section .item-box .content {
  padding: 30px;
  background-color: #000;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  margin-top: -20px;
  position: relative;
}

.service-section .item-box h3 {
  color: #fff;
  font-size: 24px;
  text-align: center;
  padding-bottom: 10px;
  font-weight: 700;
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.service-section .item-box h3 a{
  color: #fff;
  font-size: 24px;
  text-align: center;
  padding: 0;
  padding-bottom: 10px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: capitalize;
  background: transparent;
  border-radius: 0;
  margin-bottom: 0;
  transition: all 0.4s;
  display: block;
}

.service-section .item-box:hover h3 a{
  background: transparent;
  color: #f4c542;
}
.service-section .item-box ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-section .item-box ul li {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.service-section .item-box ul li svg {
  color: #000;
  width: 14px;
  height: 14px;
  padding: 10px;
  border-radius: 50%;
  background-color: #ccc;
  margin: 0 auto;
}

.service-section .item-box ul li span {
  color: #ccc;
  font-size: 12px;

}

.service-section .item-box p.price {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  text-transform: capitalize;
}

.service-section .item-box p.price span {
  color: #f4c542;
  font-weight: 800;
}

.service-section .item-box a {
  display: block;
  text-align: center;
  padding: 10px 14px;
  background-color: #f4c542;
  border-radius: 50px;
  margin-bottom: 10px;
  color: #000;
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
  transition: all 0.4s;
}

.service-section .item-box a:hover {
  background-color: #fff;
}

.service-section .item-box span.note {
  color: #ccc;
  font-size: 14px;
}

.service-section .item-box span.note svg {
  color: #f4c542;
  margin-bottom: 2px;
  margin-right: 4px;
}

.service-section .item-box .rating span {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 5px 10px;
  border-radius: 50px;
  background-color: #282f34;
  color: #fff;
  font-size: 14px;
}

.service-section .item-box .rating span svg {
  color: #f4c542;
  animation: spin 2s infinite alternate;
}

@keyframes spin {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

@media (max-width:568px) {
  .service-section .item-box .content {
    padding: 30px 15px;
  }
}


/* ---------------------------------------------------------------------------------------------- */


.section-title span.sub-title {
  text-transform: uppercase;
  color: #f4c542;
  font-style: italic;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 6px;
  padding-left: 10px;
  padding-right: 10px;
  border-left: 2px solid #f4c542;
  border-right: 2px solid #f4c542;
}

.section-title h2 {
  color: #fff;
  font-weight: 300;
  font-size: 42px;
  text-transform: capitalize;
}

.section-title h2 span {
  color: #f4c542;
  font-weight: 700;
}

.section-title p {
  color: #fff;
  font-size: 18px;
}

.section-title.light-bg span.sub-title {
  color: #000;
  border-color: #787878;
}

.section-title.light-bg h2 {
  color: #000;
  font-weight: 300;
  font-size: 42px;
  text-transform: capitalize;
}

.section-title.light-bg h2 span {
  font-weight: 700;
  color: #000;
}

.section-title.light-bg p {
  color: #787878;
}

.about-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.about-section .section-title {
  margin-bottom: 30px;
}

.about-section p.text {
  font-weight: 400;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.8);
  line-height: 30px;

}

.about-section p.text span {
  color: #000;
  text-transform: capitalize;
  font-style: italic;
  font-weight: 500;
}


.about-section p.text strong {
  color: #000;
  text-transform: capitalize;
}

.about-section h6 {
  font-size: 26px;
  font-weight: 300;
  text-transform: uppercase;
  color: #000;
}

.about-section h6 span {
  font-weight: 700;
}

.about-section ul li {
  margin-bottom: 6px;
  font-weight: 500;
  color: #000;
  font-size: 18px;
  transition: all 0.2s;
}

.about-section ul li svg {
  color: #f4c542;
  margin-right: 10px;
  transition: all 0.4s;
}

.about-section ul li:hover svg {
  transform: rotate(360deg) scale(1.4);
  color: #000;
}

.about-section ul li:hover {
  color: #282f34;
}

.about-section .btn-group {
  margin-top: 20px;
}

.about-section .btn-group a {
  display: inline-block;
  padding: 10px 20px;
  background-color: #f4c542;
  border-radius: 50px;
  border: 2px solid #f4c542;
  color: #282f34;
  font-weight: 800;
  transition: all 0.4s;

}

.about-section .btn-group a:last-child {
  background-color: transparent;
  color: #282f34;
  margin-left: 14px;
  border-color: #000;
}

.about-section .btn-group a:hover {
  background-color: #000;
  color: #fff;
  border-color: #000;
  transform: scale(1.1);
}

.about-section .right {
  height: 100%;

}

.about-section .img-box {
  width: 100%;
  height: 100%;
  border-radius: 50px 6px;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
  overflow: hidden;
}

.anime-img {
  position: relative;
  overflow: hidden;
}

.anime-img::after {
  content: "";
  position: absolute;
  width: 215%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, .3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}

.anime-img:hover::after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}

.about-section .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 4s;
}

.about-section .img-box:hover img {
  transform: scale(1.2);
}

@media (min-width:992px) and (max-width:1200px) {
  .about-section p.text {
    letter-spacing: 0;
  }

  .about-section ul li {
    letter-spacing: 0;
  }

}

@media (max-width:991px) {
  .about-section .right {
    height: auto;
    margin-top: 30px;

  }
}

@media (max-width:768px) {
  .about-section .img-box {
    border-radius: 6px;
  }

  .section-title h2 {

    font-size: 34px;
  }
}

@media (max-width:568px) {
  .about-section .img-box {
    border-radius: 6px;
  }

  .section-title.light-bg h2 {
    font-size: 28px;
  }

  .about-section h6 {
    font-size: 18px;
  }

  .about-section p.text {
    letter-spacing: 0;
  }

  .about-section ul li {
    letter-spacing: 0;
  }
}


.cta-section {
  padding: 60px 0;
  position: relative;
  background: url(../img/cta-bg.webp) no-repeat center bottom;
  background-size: cover;
  background-attachment: fixed;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 70%, rgba(0, 0, 0, 0.4) 100%);
}

.cta-section .inner-content {
  text-align: center;
}

.cta-section .inner-content h2 {
  text-transform: uppercase;
  font-size: 84px;
  color: #fff;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}


.cta-section .inner-content h4 {
  color: #f4c542;
  text-transform: capitalize;
  margin-bottom: 12px;
}

.cta-section .inner-content p.offer-text {
  font-size: 18px;
  color: #fff;
}

.cta-section .inner-content p.offer-text span {
  color: #f4c542;
  font-weight: 800;
}

.cta-section .inner-content p {
  color: #fff;
  font-size: 18px;
}

.cta-section .inner-content p span {
  color: #fff;
  text-transform: capitalize;

}

.cta-section .inner-content p.text strong {
  color: #fff;
  text-transform: capitalize;
}

.cta-section .inner-content a {
  padding: 10px 30px;
  display: inline-block;
  border-radius: 50px;
  border: 2px solid #f4c542;
  margin-top: 20px;
  color: #fff;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
  transition: all 0.4s;
}

.cta-section .inner-content a:hover {
  background-color: #f4c542;
  color: #000;
}



@media (min-width:1200px) and (max-width:1400px) {
  .cta-section .inner-content h2 {
    font-size: 78px;
  }
}

@media (max-width:991px) {
  .cta-section .inner-content h2 {
    font-size: 76px;
  }
}

@media (max-width:768px) {
  .cta-section .inner-content h2 {
    font-size: 56px;
  }
}



.testimonial-section {
  padding: 80px 0;
  position: relative;
}

.testimonial-section .section-title {
  margin-bottom: 30px;
}

.testimonial-section .left-content span.sub-title {
  color: #000;
  font-weight: 500;
  margin-bottom: 10px;
  display: inline-block;
}

.testimonial-section .left-content span.sub-title img {
  width: 50px;
  margin-left: 1px;
}

.testimonial-section .left-content h2 {
  color: #282f34;
  font-weight: 300;
  font-size: 38px;
}

.testimonial-section .left-content h2 span {
  font-weight: 700;
  color: #000;
}

.testimonial-section .left-content p.text {

  color: #787878;
}

.testimonial-section .left-content a {
  display: inline-block;
  padding: 10px 30px;
  border-radius: 50px;
  border: 2px solid #000;
  color: #4b4b4b;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.4s;
}

.testimonial-section .left-content a svg {
  color: #000;
  transition: all 0.4s;
}

.testimonial-section .left-content a:hover {
  background-color: #000;
  color: #fff;
}

.testimonial-section .left-content a:hover svg {
  color: #fff;
}


.testimonial-section .testimonial-box {
  padding: 20px;
  position: relative;
  background-color: #f3f4f5;
  border-radius: 14px;
}

.testimonial-section .testimonial-box .head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.testimonial-section .testimonial-box .head img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-section .testimonial-box .head h6.name {
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
  margin-bottom: 0;
  font-size: 18px;
}

.testimonial-section .testimonial-box .head span {
  color: #4b4b4b;
  font-weight: 600;
  text-transform: capitalize;
}

.testimonial-section .testimonial-box .rating {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.testimonial-section .testimonial-box .rating svg {
  width: 14px;
  height: 14px;
  color: #f4c542;
}

.testimonial-section .testimonial-box .rating p {
  margin-bottom: 0;
  margin-left: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #4b4b4b;
}

.testimonial-section .testimonial-box p.text svg {
  width: 20px;
  height: 20px;
  margin-right: 5px;
}

.testimonial-section .testimonial-box p.text {
  color: #4b4b4b;
}

.testimonial-section .testimonial-box .verified img {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 16px;
  right: 16px;
}


@media (min-width:992px) and (max-width:1200px) {
  .testimonial-section .left-content h2 {
    font-size: 28px;
  }

  .testimonial-section .left-content h2 span {
    font-weight: 600;
  }
}

@media (max-width:992px) {
  .testimonial-section .left-content {
    margin-bottom: 40px;
    text-align: center;
  }

  .testimonial-section .left-content h2 {
    font-size: 32px;
  }

  .testimonial-section .left-content span.sub-title {
    text-align: center;
    display: block;
  }
}

@media (max-width:768px) {
  .testimonial-section .left-content h2 {
    font-size: 28px;
  }
}


.attraction-section {
  padding: 80px 0;
  position: relative;
  background: url(../img/mehrangarh-bg.webp) no-repeat;
  background-size: cover;
  background-attachment: fixed;
}


.attraction-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.attraction-section .section-title {
  margin-bottom: 40px;
}

.attraction-section .item-box {

  background-color: #000;
  border-radius: 10px;
  position: relative;
  border: 2px solid #fff;
  transform: scale(.85);
  transition: all 0.4s;
}

.attraction-section .owl-item.center .item-box {
  transform: scale(1.1);
}

.attraction-section .owl-stage {
  padding: 40px 0;
}

.attraction-section .item-box .img-box {
  width: 100%;
  height: 260px;
  overflow: hidden;
  border-radius: 10px;
}

.attraction-section .item-box .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.8s;
}

.attraction-section .item-box:hover .img-box img {
  transform: scale(1.3);
}

.attraction-section .item-box .content {
  margin-top: -40px;
  position: relative;
  background-color: #000;
  border-radius: 30px 30px 10px 10px;
  padding: 30px 20px;
  transition: all 0.4s;
}

.attraction-section .owl-item.center .item-box .content {
  background-color: #f4c542;
}

.attraction-section .item-box .content h4 {
  font-weight: 700;
  text-align: center;
  padding-bottom: 10px;
  color: #fff;
  text-transform: uppercase;
  font-size: 22px;
}

.attraction-section .owl-item.center h4 {
  color: #000;
}

.attraction-section .item-box .content p.text {
  color: #fff;
  letter-spacing: 1px;
}

.attraction-section .owl-item.center p.text {
  color: #000;
}

.attraction-section .item-box .content p.text span {
  color: #fff;
  font-weight: 500;
}

.attraction-section .owl-item.center p.text span {
  color: #000;
}

.attraction-section .item-box .content marquee {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
}

.attraction-section .owl-item.center marquee {
  color: #000;
}

.attraction-section .item-box .content marquee svg {
  margin: 0 5px;
  animation: spin 2s infinite alternate;
  color: #f4c542;

}

.attraction-section .owl-item.center marquee svg {
  color: #000;
}

.attraction-section .owl-nav svg {
  transform: translateY(-50%) scale(.9);
  opacity: .3;
  width: 20px;
  height: 20px;
  color: #000;
  padding: 20px;
  border-radius: 50%;
  background-color: #fff;
  z-index: 5;
  transition: all 0.4s;
}

.attraction-section .owl-nav .owl-prev svg {
  position: absolute;
  top: 50%;
  left: 0;
}

.attraction-section .owl-nav .owl-next svg {
  position: absolute;
  top: 50%;
  right: 0;
}



.attraction-section .owl-nav svg:hover {
  transform: translateY(-50%) scale(1.2);
  opacity: 1;

}

@media (max-width:768px) {
  .attraction-section .owl-item.center .item-box {
    transform: scale(1);
  }
}

@media (max-width:568px) {
  .attraction-section .owl-stage {
    padding: 0;
  }

  .attraction-section .item-box .content {
    padding: 20px 10px;
  }

  .attraction-section .item-box .content p.text {
    letter-spacing: 0;
  }

}

/* ------------------------------------------------------------------------------------------------ */


.innerpage-title {
  position: relative;
  background: url(../img/scorpio-bg.webp) no-repeat center;
  background-size: cover;
  padding: 200px 0 80px;
  text-align: center;
}

.innerpage-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
}

.innerpage-title h2 {
  font-size: 48px;
  color: #fff;
  font-weight: 300;
  text-transform: uppercase;

}

.innerpage-title h2 span {
  font-weight: 700;
  color: #f4c542;
}

.innerpage-title ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.innerpage-title ul li {
  color: #ccc;
  position: relative;
  font-size: 17px;
  font-weight: 500;

}

.innerpage-title ul li a {
  color: #fff;

}

.innerpage-title ul li a:hover {
  color: #f4c542;
}

@media (max-width:768px) {
  .innerpage-title {
    padding: 140px 0 80px;
  }

  .innerpage-title h2 {
    font-size: 36px;

  }
}


/* CSS (ticker.css) */
.ticker-slider {
  background-color: #000;
  overflow: hidden;
  position: relative;
}

.ticker-slider.light-bg {
  background-color: #f4c542;
}

.ticker-slider .ticker-item-wrapper {
  animation: scrollAnimation 60s linear infinite;
  padding: 0;
  margin: 0;
  display: flex;
  width: max-content;
  flex-wrap: nowrap;

}

.ticker-slider .ticker-item-wrapper .list-item {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 20px 16px 20px 0;
}

.ticker-slider .ticker-item-wrapper .list-item p.text {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 0;
  text-transform: uppercase !important;
  transition: all 0.4s;
  color: #fff;
}

.ticker-slider.light-bg .ticker-item-wrapper .list-item p.text {
  color: #000;
}

.ticker-slider .ticker-item-wrapper .list-item svg {
  width: 20px;
  height: 20px;
  color: #f4c542;
  animation: spin 2s infinite alternate;
}

.ticker-slider.light-bg .ticker-item-wrapper .list-item svg {
  color: #000;
}

.ticker-slider[data-animated='true'] {
  overflow: hidden;
}

@keyframes scrollAnimation {
  to {
    transform: translate(calc(-50%));
  }
}


/* ---------------------------------------------------------------------------------------------------------------------------------------- */


.innercontact-page {
  padding: 80px 0;
}

.innercontact-page .heading {
  text-align: center;
  margin-bottom: 30px;
}

.innercontact-page .heading span.sub-title {
  text-transform: uppercase;
  color: #4b4b4b;
  font-weight: 600;
  letter-spacing: 1px;
}

.innercontact-page .heading h2 {
  font-size: 56px;
  font-weight: 300;
  color: #282f34;
}

.innercontact-page .heading h2 span {
  text-transform: uppercase;
  font-weight: 700;
  color: #000;
}

.innercontact-page .left-content {
  padding-right: 30px;
}

.innercontact-page .left-content p.text {
  color: #787878;
  letter-spacing: 1px;
  margin-bottom: 30px;
}

.innercontact-page .left-content p.text span {
  color: #4b4b4b;
  text-transform: capitalize;
  font-weight: 600;
}

.innercontact-page .left-content p.text strong {
  color: #282f34;
}

.innercontact-page .left-content .call-box-wrapper {
  padding: 40px;
  border-radius: 10px;
  background-color: #f3f4f5;
}

.innercontact-page .left-content .call-box {
  position: relative;
  padding: 20px 10px;
  background-color: #fff;
  margin-bottom: 20px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.4s;
}

.innercontact-page .left-content .call-box.active {
  background-color: #000;
}

.innercontact-page .left-content .call-box:hover {
  background-color: #f4c542;
}

.innercontact-page .left-content .call-box:last-child {
  margin-bottom: 0;
}

.innercontact-page .left-content .call-box svg {
  color: #000;
  width: 36px;
  height: 36px;
  margin-bottom: 10px;
  transition: all 0.4s;
}

.innercontact-page .left-content .call-box.active:hover svg {
  color: #000;
}

.innercontact-page .left-content .call-box.active svg {
  color: #f4c542;
}

.innercontact-page .left-content .call-box h4 {
  color: #000;
  font-weight: 700;
}

.innercontact-page .left-content .call-box.active:hover h4 {
  color: #000;
}

.innercontact-page .left-content .call-box.active h4 {
  color: #fff;
}

.innercontact-page .left-content .call-box a {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  transition: all 0.4s;
}

.innercontact-page .left-content .call-box:hover a,
.innercontact-page .left-content .call-box.active:hover a {
  color: #000;
}

.innercontact-page .left-content .call-box.active a {
  color: #f4c542;
}

.innercontact-page .map-box {
  width: 100%;
}

.map-box iframe {
  width: 100%;
  height: 500px;
  border: none;
  margin-bottom: -7px;
}

@media (max-width:1200px) {
  .innercontact-page .left-content {
    padding-right: 0;
  }
}

@media (max-width:992px) {
  .innercontact-page .left-content {
    margin-bottom: 30px;
  }
}

@media (max-width:768px) {
  .innercontact-page .heading h2 {
    font-size: 42px;
    font-weight: 300;
    color: #282f34;
  }
}




.innerservice-page {
  padding: 80px 0;
  position: relative;
}

.innerservice-page .section-title {
  margin-bottom: 20px;
}

.innerservice-page .main-btn {
  padding: 10px 20px;
  display: inline-block;
  background-color: #000;
  color: #fff;
  transition: all 0.4s;
  text-transform: uppercase;
  font-weight: 700;
}

.innerservice-page .main-btn:hover {
  background-color: #f4c542;
  color: #000;
}

.innerservice-page .main-content .seo-box {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 20px;
}

.innerservice-page .main-content p.text {

  line-height: 32px;
  color: rgba(0, 0, 0, 0.85);
  font-weight: 400;
  font-size: 18px;
}

.innerservice-page .main-content p.text span {
  font-weight: 500;
  font-style: italic;
  text-transform: capitalize;

}

.innerservice-page .main-content p.text strong {
  text-transform: capitalize;
  font-weight: 500;
  color: #000;
}

.innerservice-page .main-content p.text a {
  color: #000;
  text-transform: capitalize;
  font-weight: 500;
}


.innerservice-page .main-content .img-gallery {
  margin: 40px 0 10px;
}

.innerservice-page .main-content .img-gallery .item {
  margin-bottom: 30px;
  position: relative;
}

.innerservice-page .main-content .img-gallery .img-box {
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: 12px;
  transition: all 0.4s;
  position: relative;
}

.innerservice-page .main-content .img-gallery .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s;
}

.innerservice-page .main-content .img-gallery .content {
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  padding: 0 30px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s;
}

.innerservice-page .main-content .img-gallery .item:hover .content {
  top: 50%;
  opacity: 1;
  visibility: visible;
}

.innerservice-page .main-content .img-gallery .content p {
  color: #fff;
  text-decoration: none;
  margin-bottom: 0;
  font-size: 18px;

  font-weight: 700;
  text-transform: uppercase;
}

.innerservice-page .main-content .img-gallery .content p span {
  text-transform: uppercase;
  color: #f4c542;
  font-weight: 900;
}

.innerservice-page .main-content .img-gallery .content a {
  padding: 5px 20px;
  background-color: #fff;
  color: #000;
  text-transform: uppercase;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  border-radius: 4px;
  transition: all 0.4s;
}

.innerservice-page .main-content .img-gallery .content a svg {
  color: #000;
  transition: all 0.4s;
}

.innerservice-page .main-content .img-gallery .content a:hover {
  background-color: #f4c542;
  color: #000;
  transform: translateY(-5px);
}

.innerservice-page .main-content .img-gallery .content a:hover svg {
  color: #000;
  transform: translateX(6px) scale(1.1);
}

.innerservice-page .main-content .img-gallery .item:hover .img-box {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.innerservice-page .main-content .img-gallery .item:hover .img-box img {
  transform: scale(1.2);
  filter: grayscale(50%) brightness(30%);
  cursor: zoom-in;
}

.innerservice-page .main-content .img-gallery p {
  text-align: center;
  font-weight: 600;
  color: #787878;
  text-transform: capitalize;
  text-decoration: underline;
}

.innerservice-page .contact-box-wrapper {
  margin: 30px 0 50px;
  background-color: #f4c542;
  padding: 50px 0;
}

.innerservice-page .contact-box-wrapper .left-content h3 {
  font-size: 54px;
  margin-bottom: 20px;
  font-weight: 300;
  text-transform: capitalize;
}

.innerservice-page .contact-box-wrapper .left-content h3 span {
  font-weight: 700;

}

.innerservice-page .contact-box-wrapper .left-content h6 {
  color: #000;
  font-weight: 600;
  font-size: 22px;
}

.innerservice-page .contact-box-wrapper .left-content h6 strong {
  font-weight: 600;
  text-transform: capitalize;
}

.innerservice-page .contact-box-wrapper .left-content p {
  color: #000;
  line-height: 30px;
  font-size: 18px;
}

.innerservice-page .contact-box-wrapper .left-content p strong {
  text-transform: capitalize;
  color: #000;
}

.innerservice-page .contact-box-wrapper .instant-booking {
  margin-top: 24px;

}

.innerservice-page .contact-box-wrapper .instant-booking h4 {
  font-size: 28px;
  font-weight: 600;
  color: #000;
}

.innerservice-page .contact-box-wrapper .instant-booking a {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 50px;
  border: 2px solid #282f34;
  color: #000;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 18px;
  transition: all 0.4s;
}

.innerservice-page .contact-box-wrapper .instant-booking a:hover {
  background-color: #282f34;
  color: #fff;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}



.innerservice-page .main-content h4 {
  font-size: 36px;
  font-weight: 500;
  color: #000;
  position: relative;
}

.innerservice-page .main-content h4 span {
  font-weight: 700;
}

.innerservice-page .main-content h5 {
  color: #000;
  font-weight: 600;
}
.innerservice-page .main-content h5 a{
    color: #000;
  font-weight: 600;
}

.innerservice-page .main-content ul li {
  margin-bottom: 10px;
  color: rgba(0, 0, 0, 1);
  transition: all 0.4s;
  font-weight: 500;
  font-size: 18px;
}

.innerservice-page .main-content ul li strong {
  color: #000;
  font-weight: 600;
}

.innerservice-page .main-content ul li svg {
  color: #000;
  margin-right: 10px;
}

.innerservice-page .main-content ul li a {
  color: #000;
  font-weight: 700;
  text-transform: capitalize;
}

.innerservice-page .main-content ul li:hover {
  color: #000;
}

.innerservice-page .main-content .right-img-box {
  width: 100%;
  height: 500px;
  overflow: hidden;
  position: relative;
  border-radius: 5px;
}

.innerservice-page .main-content .right-img-box p.highlight {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  font-size: 76px;
  font-weight: 900;
  opacity: .5;
}

.innerservice-page .main-content .right-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.innerservice-page .main-content .cta-text p {
  font-size: 20px;
  font-weight: 600;
  color: #282f34;
  text-transform: capitalize;
  margin-bottom: 0;
}

.innerservice-page .main-content .cta-text a {
  color: #000;
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 700;

}

.innerservice-page .main-content .price-list {
  margin-top: 40px;
}

.innerservice-page .main-content .price-list h3 {
  font-weight: 600;
  color: #282f34;
  margin-bottom: 20px;
  text-align: center;
  position: relative;
  padding-bottom: 10px;
}

.innerservice-page .main-content .price-list h3::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 80px;
  height: 3px;
  background-color: #282f34;
  transform: translateX(-50%);

}

.innerservice-page .main-content .price-list thead {
  background-color: #000;
  color: #f4c542;

}

.innerservice-page .service-carousel .img-box {
  width: 100%;
  height: 460px;
  border-radius: 40px 10px;
  overflow: hidden;
  border: 1px inset #ccc;
}

.innerservice-page .service-carousel .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.travel-packages {
  padding: 80px 0 40px;
  position: relative;
}

.travel-packages .section-title {
  margin-bottom: 40px;
}

.travel-packages .owl-item {
  position: relative;
}

.travel-packages .owl-item .img-box {
  width: 100%;
  height: 300px;
  border-radius: 10px;
  overflow: hidden;

}

.travel-packages .owl-item .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s;
}

.travel-packages .owl-item:hover .img-box img {
  transform: scale(1.2);
  filter: grayscale(40%);
}

.travel-packages .owl-item a {
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  padding: 10px 0;
  background-color: rgba(255, 255, 255, 0.8);
  text-align: center;
  font-size: 18px;
  font-weight: 800;
  color: #000;
  border-left: 3px solid #000;
  border-right: 3px solid #000;
}

@media (min-width:992px) and (max-width:1200px) {
  .innerservice-page .contact-box-wrapper .left-content h3 {
    font-size: 44px;
  }

  .innerservice-page .main-content h4 {
    font-size: 34px;
  }

  .innerservice-page .main-content .img-gallery .img-box {
    height: 240px;
  }
}

@media (max-width:992px) {
  .innerservice-page .contact-box-wrapper .left-content {
    margin-bottom: 40px;
  }

  .innerservice-page .service-carousel {
    margin-top: 30px;
  }

}

@media (max-width:768px) {
  .innerservice-page .contact-box-wrapper .left-content h3 {
    font-size: 38px;
  }

  .innerservice-page .service-carousel .img-box {
    height: 400px;
  }

  .innerservice-page .main-content .img-gallery .img-box {
    height: 240px;
  }
}

@media (max-width:568px) {

  .innerservice-page .service-carousel .img-box {
    height: 360px;
  }
}

.faq-section {
  padding: 80px 0;
  position: relative;
}

.faq-section .section-title {
  margin-bottom: 40px;
}

.faq-section .accordion-item {
  margin-bottom: 20px;
  border: none;
  border-radius: 0 !important;
}

.faq-section .accordion-button {
  border-radius: 5px !important;
  background-color: #4b4b4b;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  transition: all 0.4s;
  text-transform: capitalize;
}


.faq-section .accordion-button:focus {
  box-shadow: none;
}

.faq-section .accordion-button::after {
  background-image: url(../img/icons/plus.webp);
  opacity: 1;
}

.faq-section .accordion-button:not(.collapsed) {
  background-color: #000;
}

.faq-section .accordion-button:not(.collapsed)::after {
  background-image: url(../img/icons/minus.webp);
  opacity: 1;
}

.faq-section .accordion-body {
  color: #000;
  font-size: 18px;
}

.faq-section .accordion-body a {
  color: #000;
  text-transform: capitalize;
  font-weight: 600;
}

.faq-section .accordion-body strong {
  color: #000;
  text-transform: capitalize;
  font-weight: 600;
}

@media (max-width:768px) {
  .faq-section .accordion-button {
    border-radius: 5px !important;
    background-color: #4b4b4b;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.4s;
    text-transform: capitalize;
  }
}



/* ---------------------------------------------------------------------------------------------------------------- */


.innerblog-page {
  padding: 140px 0;
  position: relative;
}


.innerblog-page .blog-box-first,
.innerblog-page .blog-box {
  overflow: hidden;
  position: relative;
  margin-bottom: 30px;
}

.innerblog-page .blog-box {
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 4px;
  transition: all 0.4s;
}

.innerblog-page .blog-box:hover {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.innerblog-page .blog-box-first a,
.innerblog-page .blog-box a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.innerblog-page .blog-box .img-box {
  width: 100%;
  height: 280px;
  overflow: hidden;
  position: relative;
  border-radius: 4px;
}

.innerblog-page .blog-box .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s;
}

.innerblog-page .blog-box:hover .img-box img {
  transform: scale(1.1);
  filter: brightness(70%);
}

.innerblog-page .blog-box-first .img-box {
  width: 100%;
  height: 460px;
  overflow: hidden;
  position: relative;
  border-radius: 4px;
}

.innerblog-page .blog-box-first .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(70%);
  transition: all 0.6s;
}

.innerblog-page .blog-box-first:hover .img-box img {
  transform: scale(1.1);
  filter: brightness(50%);
}

.innerblog-page .blog-box-first span.tag,
.innerblog-page .blog-box span.tag {
  position: absolute;
  top: 10px;
  left: 10px;
  display: inline-block;
  padding: 6px 16px;
  font-size: 14px;
  border-radius: 3px;
  background-color: #f4c542;
  font-weight: 700;
  text-transform: uppercase;
  color: #000;
}

.innerblog-page .blog-box-first .content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px 20px;
}

.innerblog-page .blog-box .content {
  position: relative;
  padding: 10px 20px;

}

.innerblog-page .blog-box-first .content h2 {
  color: #fff;
  text-transform: capitalize;
  font-weight: 600;
  margin-bottom: 20px;
  width: fit-content;
  position: relative;
  padding-bottom: 8px;
}

.innerblog-page .blog-box .content h2 {
  text-transform: capitalize;
  font-weight: 600;
  font-size: 26px;
  color: #000;
}

.innerblog-page .blog-box .content p.text {
  color: #4b4b4b;
  line-height: 30px;
  font-weight: 500;
}

.innerblog-page .blog-box .content span.publish {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-transform: capitalize;
  font-weight: 700;
  color: #4b4b4b;
}

.innerblog-page .blog-box .content span.publish svg {
  width: 20px;
  height: 20px;
  padding: 10px;
  border-radius: 50%;
  border: 1px solid #000;
  transition: all 0.4s;
  color: #000;
}

.innerblog-page .blog-box-first .content h2::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: rgba(255, 255, 255, .2);
  transition: all 0.6s;
}

.innerblog-page .blog-box-first:hover .content h2::before {
  width: 100%;
}

.innerblog-page .blog-box-first .content p {
  color: #fff;
  font-size: 17px;
  line-height: 28px;
}

.innerblog-page .blog-box-first .content span.publish {
  color: #ccc;
  text-transform: capitalize;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;

}

.innerblog-page .blog-box-first .content span.publish svg {
  width: 20px;
  height: 20px;
  padding: 10px;
  border-radius: 50%;
  border: 1px solid #fff;
  transition: all 0.4s;
  color: #fff;
}

.innerblog-page .blog-box-first:hover .content span.publish svg,
.innerblog-page .blog-box:hover .content span.publish svg {
  transform: scale(1.15);
}


/* ---------------------------------------------------------------------------------------------------------------------------- */
.blog-sidebar {
  position: relative;
  height: 100%;
}

.blog-sidebar .contact-box {
  position: relative;
  width: 100%;
  background-color: #000;
  padding: 20px;
  border-radius: 4px;
}

.blog-sidebar .contact-box h4 {
  color: #fff;
  font-weight: 700;
  padding-bottom: 10px;
  margin-bottom: 20px;
  position: relative;
}

.blog-sidebar .contact-box h4::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 2px;
  border-radius: 5px;
  background-color: #fff;
}

.blog-sidebar .contact-box .form-control {
  border-radius: 0;
  padding: 10px 20px;
  margin-bottom: 10px;
  border: none;
  box-shadow: none;
}

.blog-sidebar .contact-box button {
  padding: 10px 20px;
  background-color: #f4c542;
  color: #000;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  margin-top: 10px;
  font-weight: 900;
  transition: all 0.4s;
}

.blog-sidebar .contact-box button svg {
  transition: all 0.4s;
}

.blog-sidebar .contact-box button:hover {
  background-color: #fff;
}

.blog-sidebar .contact-box button:hover svg {
  transform: translateX(6px) scale(1.1);
}

.blog-sidebar .sticky-box{
    position: sticky;
  top: 100px;
}
.blog-sidebar .related-link {
  padding: 20px;
  border-radius: 4px;
  margin-top: 40px;
  background-color: rgba(0, 0, 0, 0.07);
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.blog-sidebar .related-link h4 {
  color: #000;
  font-weight: 700;
  padding-bottom: 10px;
  margin-bottom: 20px;
  position: relative;
}

.blog-sidebar .related-link h4::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 2px;
  border-radius: 5px;
  background-color: #000;
}

.blog-sidebar .related-link li a {
  display: block;
  margin-bottom: 14px;
  color: rgba(0, 0, 0, 0.8);
  font-weight: 600;
  font-size: 17px;
  position: relative;
  transition: all 0.4s;
}

.blog-sidebar .related-link li a svg {
  margin-right: 6px;
  transition: all 0.4s;
}

.blog-sidebar .related-link li a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.1);
  transition: all 0.4s;
}

.blog-sidebar .related-link li a:hover::before {
  width: 100%;
}

.blog-sidebar .related-link li a:hover {
  color: #000;
}

.blog-sidebar .related-link li a:hover svg {
  color: #f4c542;
  transform: translateX(4px);
}

.blog-sidebar .offer-cta {
  margin-top: 40px;
  position: relative;

  border-radius: 4px;
  overflow: hidden;
  background: url(../img/vehicle/mini-bus.webp) no-repeat;
  background-size: cover;
  padding: 30px 20px;
  text-align: center;
}

.blog-sidebar .offer-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #000 30%, rgba(0, 0, 0, 0.2));
}

.blog-sidebar .offer-cta span.info {
  color: #f4c542;
  font-size: 17px;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-block;
  position: relative;
}

.blog-sidebar .offer-cta h3 {
  color: #fff;
  font-weight: 500;
  font-size: 36px;
  text-transform: uppercase;
}

.blog-sidebar .offer-cta h5 {
  color: #fff;
  margin-top: 30px;
  margin-bottom: 40px;
}

.blog-sidebar .offer-cta h5 span {
  color: #f4c542;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 22px;
  text-decoration: underline;
}

.blog-sidebar .offer-cta a {
  display: inline-block;
  padding: 10px 20px;
  background-color: #f4c542;
  position: relative;
  color: #000;
  font-weight: 700;
  font-size: 17px;
  border-radius: 4px;
  margin-bottom: 20px;
  transition: all 0.4s;
}

.blog-sidebar .offer-cta a:hover {
  background-color: #fff;
  color: #000;
  transform: translateY(-6px);
}

/* -------------------------------------------------------------------------------------------------------------------------- */

.enquiry-modal .modal-content {
  background-color: #fff;
  padding: 0;
  border-radius: 22px;
  border: 1px solid #fff;
  overflow: hidden;
}

.enquiry-modal .btn-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  z-index: 2;
  opacity: 1;
}

.enquiry-modal .btn-close svg {
  color: #fff;
  width: 20px;
  height: 20px;
}

.enquiry-modal .modal-body {
  padding: 0;
}


/* ------------------------------------------------------------------------------------------------------------------------------------------ */


.singleblog-content {
  padding: 80px 0;
  position: relative;

}

.singleblog-content .main-content {
  padding-right: 40px;
  position: relative;
}

.singleblog-content .main-content .info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  gap: 10px;
}

.singleblog-content .main-content .info span {
  display: inline-block;
}

.singleblog-content .main-content .info span.tag {
  padding: 4px 10px;
  font-size: 14px;
  background-color: #f4c542;
  display: inline-block;
  text-transform: uppercase;
  font-weight: 700;
  color: #000;
}

.singleblog-content .main-content .info span.date {
  color: #000;
  text-decoration: underline;
  font-weight: 500;
}

.singleblog-content .main-content h2.title {
  text-transform: uppercase;
  font-size: 46px;
  font-weight: 500;
  margin-bottom: 40px;
}
.singleblog-content .main-content h2.title span{
  font-weight: 700;
}

.singleblog-content .main-content .main-img{
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin: 40px 0;
  border-radius: 6px;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}
.singleblog-content .main-content .main-img img{
  width: 100%;
  height: 100%;
}
.singleblog-content .main-content .main-img span.tagline{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 90%;
  text-align: center;
  padding: 30px 20px;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 8px;
  color: #fff;
  text-transform: uppercase;
  font-size: 46px;
  font-weight: 600;
  border: 1px solid #fff;
  
}
.singleblog-content .main-content .seo-box{
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.singleblog-content .main-content p.text {
  font-size: 18px;
  line-height: 30px;
  color: rgba(0, 0, 0, 0.8);
}

.singleblog-content .main-content p.text span {
  text-transform: capitalize;
  font-weight: 500;
  font-style: italic;
  color: #000;
}

.singleblog-content .main-content p.text strong {
  text-transform: capitalize;
  font-weight: 500;
  color: #000;
}

.singleblog-content .main-content p.text a {
  text-transform: capitalize;
  color: #000;
  font-weight: 600;
}

.singleblog-content .main-content h3.sub-title {
  font-size: 36px;
  font-weight: 500;
  background-color: #f4c542;
  padding: 10px 20px;
  text-transform: capitalize;
  border-radius: 4px;
  margin-bottom: 20px;
}
.singleblog-content .main-content h3.sub-title span{
  font-weight: 700;
}

.singleblog-content .main-content h5{
  font-size: 28px;
  color: #000;
  font-weight: 600;
  text-decoration: underline;
}
.singleblog-content .main-content h6{
  color: #000;
  font-size: 22px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.singleblog-content .main-content ul.list-item {
  margin: 5px 0 20px;
}
.singleblog-content .main-content ul.list-item li{
  font-size: 18px;
  color: #000;
  margin-bottom: 10px;
}
.singleblog-content .main-content ul.list-item li a{
  font-weight: 600;
  color: #000;
}

.singleblog-content .main-content .img-gallery {
  margin: 30px 0;
  position: relative;
}
.singleblog-content .main-content .img-gallery .img-box{
  width: 100%;
  height: 300px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}
.singleblog-content .main-content .img-gallery .img-box img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s;
}
.singleblog-content .main-content .img-gallery .img-box:hover img{
  transform: scale(1.1);
}
@media (max-width:992px) {
  .singleblog-content .main-content {
    padding-right: 0;
  }
}

@media (max-width:568px) {
  .singleblog-content .main-content .info {
    display: flex;
    align-items: start;
    margin-bottom: 20px;
    flex-direction: column;
  }

  .singleblog-content .main-content h2.title {
    font-size: 34px;
  }

  .singleblog-content .main-content h3 {
    font-size: 24px;

  }
}





/* -------------------------------------------------------------------------------------------------------------- */


.related-link-section {
  padding: 40px;
  position: relative;
  background-color: #000;
  margin: 30px 0;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
  border-top: 1px solid #f4c542;
  border-bottom: 4px solid #f4c542;
  border-left: 2px solid #f4c542;
  border-right: 2px solid #f4c542;
}

.related-link-section h4.heading {
  color: #fff;
  margin-bottom: 20px;
  font-weight: 600;
}

.related-link-section ul.link-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 10px;
  color: #fff;
}

.related-link-section ul.link-list li {
  color: #fff;
}

.related-link-section ul.link-list li a {
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
  color: #fff;
  transition: all 0.4s;
  text-decoration: none!important;
  padding: 4px 10px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 5px;
}

.related-link-section ul.link-list li svg {
  color: #fff;
  animation: shakeIcon .6s infinite alternate;
   transition: color 0.4s;
}
.related-link-section ul.link-list li a:hover{
  color: #f4c542;
}
.related-link-section ul.link-list li a:hover svg {
  color: #f4c542;
}

@keyframes shakeIcon {

  0%,
  100% {
    transform: rotate(10deg);
  }

  50% {
    transform: rotate(-10deg);

  }
}