/* Font Link */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* Root Var */
:root {

  /* Root Theme Color */
  --theme-color: #d81215;
  --theme-color-second: #fff;
  --theme-color-third: #000;

  /* Root Font */
  --heading-font: "heading-font";
  --paragraph-font: "Inter", sans-serif;
  --span-font: "span-font";

  /* Root Shadow Css */
  --shadow-small: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-base: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-large: 0 10px 20px rgba(0, 0, 0, 0.2);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden !important;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  outline: none;
  font-size: 15px;
  color: #1e1e1e;
  background-color: #fff;
  scroll-behavior: smooth;
  overflow-x: hidden !important;
  font-family: var(--paragraph-font);
}

/* Font Face */
@font-face {
  font-family: "heading-font";
  src: url(../fonts/sakana.ttf);
}

@font-face {
  font-family: "span-font";
  src: url(../fonts/good-brush.ttf);
}

a {
  color: #0055f1;
  text-decoration: none;
  transition: all 0.5s;
}

a:hover {
  text-decoration: none;
  transition: all .6s;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  margin-bottom: 12px;
  font-family: var(--heading-font);
}

p {
  margin: 0;
  line-height: 27px;
  margin-bottom: 21px;
  font-size: 15px;
}

ul li {
  margin-bottom: 0px;
}

.img-fluid {
  display: block;
  width: 100%;
  max-width: 100%;
}

.li {
  display: inline-block;
  padding: 0px 5px;
}

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

h1 {
  font-size: 78px;
}

h2 {
  font-size: 54px;
  line-height: 1;
}

h3 {
  font-size: 34px;
  line-height: 1;
}

h4 {}

h5 {}

h6 {}

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

.gap {
  margin-bottom: 30px;
}

section {
  padding: 80px 0px;
}

/* Back To Top */

@-webkit-keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@-moz-keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}


.m-backtotop {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: fixed;
  bottom: -50px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: #d81215;
  border-radius: 25px;
  text-align: center;
  border: 2px solid #d81215;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  opacity: 0;
  overflow: hidden;
  color: #fff;
}

.m-backtotop.active {
  bottom: 15px;
  opacity: 1;
}

.m-backtotop>div {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.m-backtotop>div.arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
}

.m-backtotop>div.text {
  font-size: 5px;
  font-size: 0.5rem;
  line-height: 10px;
  text-transform: uppercase;
  font-weight: 900;
  font-family: "Open Sans", sans-serif;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(50%) translateX(-50%);
  opacity: 0;
  margin-top: 1px;
}

.m-backtotop:hover {
  transform: scale(1.1);
  bottom: 20px;
  cursor: pointer;
  background: black;
  box-shadow: 0 10px 5px rgba(0, 0, 0, 0.1);
}

.m-backtotop:hover>div.arrow {
  transform: translateY(-150%) translateX(-50%);
  opacity: 0;
}

.m-backtotop:hover>div.text {
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
}

/* Padding Top And Bottom */
.py-5 {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

.py-6 {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

.py-7 {
  padding-top: 70px !important;
  padding-bottom: 70px !important;
}

.py-8 {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

.py-9 {
  padding-top: 90px !important;
  padding-bottom: 90px !important;
}

.py-10 {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

.gap-p p {
  margin-bottom: 0px;
}

/* Form Css */

.form-control:focus {
  border-color: #ced4da;
  outline: 0;
  box-shadow: none;
}

input {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
}

textarea {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
}

select {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
  color: #c1c0bd;
}

/* Site Button */
.hd_info {
  display: flex;
  align-items: center;
  color: #fff;
}

.hd_info a img {
  margin-left: 15px;
  width: 38px;
}

a.comon-btn {
  color: #fff;
  display: inline-block;
  font-size: 14px;
  padding: 12px 0px;
  border-radius: 5px;
  background: linear-gradient(90deg, rgba(216, 18, 21, 1) 0%, rgba(0, 0, 0, 0.38) 100%);
  text-transform: uppercase;
  text-align: center;
  width: 210px;
  border-radius: 50px;
}

a.comon-btn:hover {
  color: var(--theme-color-second);
  background: linear-gradient(90deg, rgba(216, 18, 21, 1) 0%, rgba(216, 18, 21, 1) 92%);
}

a.comon-btn2 {
  color: #fff;
  display: inline-block;
  font-size: 14px;
  padding: 12px 0px;
  border-radius: 5px;
  background: linear-gradient(90deg, rgba(216, 18, 21, 1) 45%, rgb(255, 255, 255) 100%);
  text-transform: uppercase;
  text-align: center;
  width: 210px;
  border-radius: 50px;
}

a.comon-btn2:hover {
  color: var(--theme-color-second);
  background: linear-gradient(90deg, rgba(216, 18, 21, 1) 0%, rgba(216, 18, 21, 1) 92%);
}

/* Sticky Top */
.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%
}

.sticky-top-1.sticky {
  background: #fff !important;
  z-index: 9999999999999;
}

/* Small Header */

.small {
  display: none;
}

.header_menu {
  background: transparent;
  position: absolute;
  left: 0;
  right: 0;
}

a.navbar-brand img {
  width: 130px;
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.header_menu li a:hover {
  color: var(--theme-color-second);
}

.navbar li:hover a {
  color: var(--theme-color-second);
}

.navbar li:hover .dropdown-menu {
  transition: .3s;
  opacity: 1;
  visibility: visible;
  top: 100%;
  transform: rotateX(0deg);
}

@media all and (min-width: 992px) {
  .navbar .dropdown-menu-end {
    right: 0;
    left: auto;
  }

  .navbar li .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    margin-top: 0;
  }

  .navbar li:hover a {
    color: var(--theme-color-second);
  }

  .navbar .dropdown-menu.fade-down {
    top: 80%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
  }

  .navbar .dropdown-menu.fade-up {
    top: 180%;
  }

  .navbar li:hover .dropdown-menu {
    transition: .3s;
    opacity: 1;
    visibility: visible;
    top: 100%;
    transform: rotateX(0deg);
  }
}

ul.dropdown-menu.fade-up li a:hover {
  color: #fff !important;
  background: var(--theme-color-second);
}

#main_header ul.dropdown-menu.fade-up li:last-child {
  border-bottom: 0px;
}

#main_header ul.dropdown-menu.fade-up li {
  border-bottom: 1px solid #c1c0bd;
  margin: 0 0 0 0;
}

ul.dropdown-menu.fade-up li a {
  color: #000 !important;
  font-size: 14px;
  display: block;
  width: 100%;
  padding: 11px 12px;
}

ul.dropdown-menu.fade-up {
  border: none;
  background: #fff;
  padding: 0 0;
  min-width: inherit;
  width: 280px;
  border-radius: 0px;
}

.link-sm-2 i {
  top: -9px !important;
}

.link-sm-2 {
  position: relative;
}

#main_header .navbar-nav.navbar-nav2 li a {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  padding: 29px 29px;
  display: inline-block;
  padding-left: 0;
}

.header_menu li a {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  padding: 29px 29px;
  display: inline-block;
  padding-right: 0;
}

.navbar-expand-lg .navbar-collapse {
  display: flex !important;
  flex-basis: auto;
  justify-content: space-between;
  align-items: center;
}

/* Banner Section */
.banner_sec h1 {
  margin-bottom: 0;
  margin-left: 48px;
  line-height: 1;
  color: #e1faf9;
}

.banner_sec h1 span {
  font-family: var(--span-font);
  font-size: 102px;
  margin-left: -48px;
  color: var(--theme-color-second);
}

.banner_sec {
  padding: 140px 0 290px;
}

/* ******* */
/* Section */
.about-us {
  background: #fff;
}

.about-us .section-title {
  color: #d81920;
}

.about-us .stats {
  display: flex;
  gap: 40px;
  margin: 25px 0;
  justify-content: end;
}

.about-us .stat h3 {
  font-size: 34px;
  color: #d81920;
  margin-bottom: -7px;
}

.about-us .stat p {
  font-size: 14px;
}

/* Service Section */
.our-services .service-card {
  position: relative;
  overflow: hidden;
  border-radius: 0;
}

.our-services .service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.our-services .service-card:hover img {
  transform: scale(1.05);
  transition: transform 0.3s;
}

.our-services .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, rgba(216, 18, 21, 1) 25%, rgba(255, 255, 255, 0) 75%);
  color: #fff;
  padding: 20px;
  text-align: left;
  bottom: 35px;
}

.our-services .overlay h3 {
  font-size: 20px;
  margin-bottom: 0;
}

.our-services .overlay p {
  margin: 0;
}

.our-services .section-title {
  color: #d81920;
}

/* Home Section 1 */
.home_sec1 h2 span {
  margin-bottom: -10px !important;
  margin-left: 48px;
  line-height: 1;
  color: #e1faf9;
}

.home_sec1 {
  padding-top: 290px;
}

/* Home Section 2 */
.home_sec2 .heading ul li {
  display: flex;
  align-items: start;
  gap: 12px;
}

.home_sec2 .heading ul li h6 {
  font-size: 19px;
  margin-bottom: 7px;
}

.home_sec2 .heading ul li img {
  width: 85px;
}

/* *********** */
.home_sec3 p {
  padding-left: 115px;
}

/* Home Section 1 */
.area_sec h2 span {
  margin-bottom: -10px !important;
  margin-left: 48px;
  line-height: 1;
  color: #e1faf9;
}

.area_sec a.comon-btn {
  background: linear-gradient(90deg, rgba(216, 18, 21, 1) 0%, rgb(32, 32, 32) 100%);
}

/* ***** */
.reviews-section .reviews-title {
  font-weight: bold;
  font-size: 28px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.reviews-section .reviews-rating {
  font-size: 16px;
  margin-bottom: 33px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 3px;
}

.reviews-section .reviews-rating .rating-score {
  /* font-weight: bold; */
  font-size: 42px;
  color: #f7b500;
  margin-right: 8px;
  font-family: var(--heading-font);
}

.reviews-section .reviews-rating img {
  height: 39px;
  margin-left: 6px;
}

.reviews-section .reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.reviews-section .review-card {
  background: #fff;
  border: 1px solid #9f9f9f;
  border-radius: 12px;
  padding: 20px 20px;
  text-align: left;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.reviews-section .review-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.reviews-section .review-header img {
  width: 25px !important;
  height: 25px !important;
  margin-right: 8px;
}

.reviews-section .stars {
  color: #f7b500;
  font-size: 19px;
}

.reviews-section .review-text {
  font-size: 14px;
  color: #555;
  margin-bottom: 12px;
}

.reviews-section .review-client {
  font-weight: bold;
  font-size: 14px;
  color: #000;
}

.reviews-section .reviews-arrows {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.reviews-section .owl-nav img {
  width: 38px;
}


.reviews-section .owl-nav {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}


/* ****** */
.contact-section .contact-left .highlight {
  color: #e30613;
}

.contact-section .contact-left .desc {
  color: #666;
  margin-bottom: 20px;
}

.contact-section .contact-left .info {
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 19px;
}

.contact-section .contact-left .social {
  font-size: 28px;
  color: #000;
  text-decoration: none;
}

/* Right side form */
.contact-section .contact-right {
  flex: 1;
  min-width: 320px;
  background: #e30613;
  padding: 55px 30px;
  border-radius: 15px;
}

.contact-section .contact-right h3 {
  color: #fff;
}

.contact-section .contact-right form {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.contact-section .contact-right input,
.contact-section .contact-right textarea,
.contact-section .contact-right select {
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
}

.contact-section .contact-right textarea {
  resize: none;
}

.contact-section .contact-right button {
  background: #000;
  color: #fff;
  font-weight: bold;
  padding: 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
  width:100%;
}

.contact-section .contact-right button:hover {
  background: #333;
}

.contact-section h2 {
  font-size: 64px;
  line-height: 1;
}

/* ************ */
footer {
  background: #1a1a1a;
  color: #fff;
}

footer .left-content h2 {
  margin-bottom: 15px;
}

footer .left-content .highlight {
  color: #e30613;
}

footer .left-content .desc {
  color: #bbb;
  margin-bottom: 30px;
  line-height: 1.6;
}

footer .left-content .car-img {
  /* max-width: 100%; */
  height: auto;
  width: 560px;
  margin-top: -70px;
  display: block;
  margin-left: -150px;
}

/* Right */
footer .right-content {
  flex: 1.2;
  min-width: 350px;
}

footer .menu {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 25px;
  justify-content: end;
}

footer .menu a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

footer .menu a:hover {
  color: #e30613;
}

footer .contact-info {
  margin-bottom: 25px;
}

footer .contact-info .phone {
  font-size: 25px;
  font-weight: bold;
  color: #e30613;
}

footer .contact-info .email,
footer .contact-info .text {
  color: #ccc;
  font-size: 14px;
}

footer .contact-info p {
  margin-bottom: 11px;
}

footer .services-boxes {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

footer .service-box {
  background: #dff6f3;
  flex: 1;
  text-align: center;
  padding: 26px 20px;
  border-radius: 8px;
}

footer .service-box img {
  max-width: 50px;
  margin-bottom: 10px;
}

footer .service-box h4 {
  color: #000;
  font-family: var(--paragraph-font);
  font-size: 16px;
}

footer .footer-text {
  color: #ccc;
  padding-left: 81px;
}

footer .copyright {
  color: #888;
  text-align: end;
}

footer {
  padding: 80px 0 40px;
}

footer .left-content {
  text-align: center;
  background: linear-gradient(180deg, rgba(49, 49, 49, 1) 0%, rgba(32, 32, 32, 0) 75%);
  padding: 50px 26px;
  border-radius: 10px;
  padding-bottom: 0;
}

footer h2 {
  font-size: 36px;
  line-height: 1;
}

/* inner_banner */

.inner_banner a {
  color: #fff;
}

.inner_banner {
  background: var(--theme-color-third);
  padding: 160px 0 30px;
  color: #fff;
}

.inner_banner h1 {
  margin-bottom: 0;
  font-size: 72px;
  text-transform: uppercase;
}


/* CONTACT PAGE */
#inner_banner {
  padding: 256px 0px 130px;
}

#inner_banner .heading {
  text-align: start;
}

#inner_banner .breadcrumb a {
  color: #fff;
}

#inner_banner .breadcrumb-item+.breadcrumb-item::before {
  float: left;
  padding-right: var(--bs-breadcrumb-item-padding-x);
  color: rgba(255, 255, 255, 0.75);
  content: var(--bs-breadcrumb-divider, "/");
}

/* CONTACT-INNER */
.contact .heading {
  text-align: center;
}

#contact .contact-address, #contact .contact-phone, #contact .contact-email {
  margin-bottom: 20px;
  /* background: #e8e4e4 !important; */
  padding: 38px 0;
  border: 1px solid #e8e4e4;
  height: 100%;
  border-radius: 8px;
  box-shadow: 1px 2px 35px 7px rgba(0, 0, 0, 0.11);
}

#contact .contact-info {
  margin-bottom: 20px;
  text-align: center;
  margin-top: 0;
  color: #000;
}

#contact .contact-info .fa-map-marker {
  font-size: 39px;
}

#contact .contact-info h3 {
  text-transform: capitalize;
  color: #6c6c6c;
  margin: 18px 0 8px;
  margin-bottom: 0;
  /* font-family: 'Playfair Display', serif !important; */
  font-size: 20px;
  margin-bottom: 11px !important;
}

#contact address {
  margin-bottom: 16px;
  font-style: normal;
  line-height: inherit;
  color: #202020;
  font-weight: 400;
}

#contact .contact-info i {
  font-size: 45px;
  display: inline-block;
  margin-bottom: 0;
  color: var(--theme-color) !important;
}

#contact .contact-info .fa-envelope {
  font-size: 32px;
}

#contact .contact-info a {
  color: #202020;
  font-size: 16px;
}

#contact .con-form form input,
#contact .con-form form textarea, 
#contact .con-form form select {
  padding: 15px 8px;
  border-left: transparent;
  border-right: transparent;
  border-top: transparent;
  border-bottom: 1px solid #000;
  box-shadow: none;
  font-size: 15px;
  outline: none;
  width: 100%;
}

#contact .con-form form input {
  color: #000;
  padding-top: 0;
}

#contact .con-form form label {
  color: #00000080;
}

#contact .con-form form button[type="submit"] {
  background: #000;
  border: 0;
  padding: 16px 30px;
  color: #fff;
  transition: 0.4s;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: 100%;
  font-weight: 500;
  border-radius: 5px;
}
#contact .con-form form button[type="submit"]:hover {
  width: 100%;
}

#contact .con-form .contact-location .timing {
  gap: 10px;
  display: grid;
}

#contact .con-form form .form-btn-grp {
  display: flex;
  justify-content: center;
  margin: 0 auto;
}

#contact .con-form a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
}

/* #contact .con-form .form-info h3 {
  font-family: 'Playfair Display', serif !important;
} */

#contact .con-form .form-info {
  box-shadow: 1px 2px 35px 7px rgba(0, 0, 0, 0.11);
  padding: 65px 40px;
  border-radius: 6px;
}

#contact .con-form {
  padding: 20px 0px;
}

/* map-sec */
.map {
  line-height: 0;
}

#contact .form_checkbox input {
  color: #000;
  width: initial !important;
}

#contact .form_checkbox label {
  font-size: 15px;
  font-weight: 500;
}

/* ***************** */

.vouchers .subtitle {
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
}

.voucher-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: auto;
}

.voucher-card {
  background: #30303008;
  border: 2px dashed var(--theme-color);
  padding: 30px;
  border-radius: 12px;
  transform: translateY(0px);
  transition: transform 0.3s ease;
}

.voucher-card:hover {
  transform: translateY(-5px);
}

.voucher-card h3 {
  font-size: 28px;
  color: var(--theme-color);
  margin-bottom: 10px;
}

.voucher-card p {
  color: #333;
  margin-bottom: 15px;
}

.voucher-card .code {
  font-weight: bold;
  display: inline-block;
  padding: 6px 12px;
  background: var(--theme-color);
  color: #fff;
  border-radius: 5px;
  font-size: 14px;
}


/* Blog Sec*/

.our-blog .img-box {
  position: relative;
}

.our-blog .img-box .head-date {
  position: absolute;
  width: 120px;
  height: 120px;
  text-align: center;
  box-shadow: var(--shadow-large);
  background-color: #FFF;
  border-radius: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: -40px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.our-blog .img-box .head-date p {
  font-size: 14px;
}

.our-blog .img-box .head-date p span {
  font-size: 17px;
  letter-spacing: 2px;
}

.our-blog .img-box {
  margin-bottom: 15px;
}

.our-blog .blog-box p {
  /* font-weight: 600; */
  margin-bottom: 12px;
}

.our-blog .blog-box h5 {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
}

.our-blog .blog-box a {
  color: #860303;
  font-weight: 600;
  /* font-family: "my-font2"; */
  font-size: 16px;
}

.blog .date-box {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

ul.pagination {
  justify-content: center;
  /* font-family: "my-font2"; */
}

.active>.page-link,
.page-link.active {
  z-index: 3;
  color: #000000;
  background-color: #D2AD67;
  border-color: #D2AD67;
  font-family: "my-font2";
}

.page-link {
  position: relative;
  display: block;
  padding: var(--bs-pagination-padding-y) var(--bs-pagination-padding-x);
  font-size: var(--bs-pagination-font-size);
  color: var(--bs-pagination-color);
  text-decoration: none;
  background-color: var(--bs-pagination-bg);
  border: var(--bs-pagination-border-width) solid var(--bs-pagination-border-color);
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  font-weight: 800;
  color: #000000;
  /* font-family: "my-font2"; */
}


/* Inner Blog Page */

.inner-blog-left-sec {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border: rgb(134, 3, 3) 1px solid;
  padding: 23px 9px 25px;
  border-radius: 8px;
}

.inner-blog-left-sec .inner-blog-sec1 p {
  color: #595959;
}

.inner-blog-left-sec .inner-blog-sec1 .heading .blog-head {
  display: flex;
  align-items: center;
  gap: 20px;
}

.inner-blog-left-sec .inner-blog-sec1 .heading .blog-head p {
  color: #4F4F4F;
  margin-bottom: 12px;
}

.inner-blog-left-sec .inner-blog-sec1 h3 {
  font-weight: 600;
  margin-bottom: 18px;
  /* font-size: 29px; */
}

.inner-blog-left-sec .inner-blog-sec1 img {
  border-radius: 5px;
  margin-bottom: 0;
}

.inner-blog-left-sec .inner-blog-sec1 .share-sec {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #1c1c1c2b;
  margin-bottom: 10px;
}

.inner-blog-left-sec .inner-blog-sec1 .share-sec .social ul {
  display: flex;
  gap: 15px;
  align-items: center;
}

.inner-blog-left-sec .inner-blog-sec1 .share-sec .social ul li i {
  font-size: 17px;
  color: #595959;
}

.inner-blog-left-sec .inner-blog-sec1 .heading .blog-head i {
  color: #860303;
  font-size: 16px;
  margin-right: 3px;
}

.inner-blog-left-sec .inner-blog-sec1 .share-sec .social ul li a {
  color: #00000059;
}

.inner-blog-left-sec .navigation-sec .navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.inner-blog-left-sec .navigation-sec .navigation a {
  color: #595959;
  font-size: 15px;
  font-weight: 600;
}

.inner-blog-left-sec .navigation-sec .navigation i {
  color: #595959;
}

.inner-blog-left-sec .navigation-sec .blog-contain {
  padding: 25px 18px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border: rgba(149, 157, 165, 0.2);
  border-radius: 5px;
  height: 100%;
}

.inner-blog-left-sec .navigation-sec .blog-contain .img-top {
  padding-bottom: 15px;
}

.inner-blog-left-sec .navigation-sec .blog-contain .img-top img {
  border-radius: 5px;
}

.inner-blog-left-sec .navigation-sec .blog-contain .blog-content .heading h3 {
  color: #000;
}

.inner-blog-left-sec .navigation-sec .blog-contain .blog-content .heading p strong {
  color: #00000059;
}

.inner-blog-left-sec .navigation-sec .blog-contain .blog-content .heading p {
  color: #000000ab;
}

.inner-blog-left-sec .navigation-sec .blog-contain .blog-content .heading .blog-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.inner-blog-left-sec .inner-blog-comment .contact-form {
  padding: 20px 25px;
  border: 1px solid rgb(134, 3, 3);
  border-radius: 8px;
  /* background: #595959; */
  color: #000;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.inner-blog-left-sec .inner-blog-comment .contact-form form input {
  width: 100%;
  outline: none;
  padding: 11px;
  border-radius: 4px;
  border: 1px solid #1c1c1c3b;
}

.inner-blog-left-sec .inner-blog-comment .contact-form form textarea {
  width: 100%;
  outline: none;
  padding: 11px;
  border-radius: 4px;
  border: 1px solid #1c1c1c3b;
}

.inner-blog-left-sec .inner-blog-comment .contact-form form button {
  color: #ffffff;
  background-color: #000;
  display: inline-block;
  width: 100%;
  text-transform: uppercase;
  text-align: center;
  border: 1px solid #000;
  padding: 15px 20px;
  border-radius: 8px;
  font-weight: 400;
  transition: 0.5s;
}

.inner-blog-left-sec .inner-blog-comment .contact-form form button:hover {
  background: #1c1c1c3b;
  border: 1px solid #1c1c1c3b;
  color: #000;
  transition: 0.5s;
}

.inner-blog-left-sec .admin-sec p {
  color: #000000ab;
}

.inner-blog-left-sec .admin-sec .admin-info .admin-info-content .social ul {
  display: flex;
  gap: 25px;
  align-items: center;
}

.inner-blog-left-sec .admin-sec .admin-info .admin-info-content .social ul li i {
  font-size: 18px;
}

.inner-blog-left-sec .admin-sec .admin-info .admin-info-content .social ul li a {
  color: #000000ab;
}

.inner-blog-left-sec .admin-sec .admin-info .admin-info-content {
  border-top: 1px solid #1c1c1c3b;
  border-bottom: 1px solid #1c1c1c3b;
  padding: 10px 20px;
}

.inner-blog-left-sec .admin-sec img {
  border-radius: 5px;
}


/* Inner Blog Sec */

.inner-blog-right-sec {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border: rgb(134, 3, 3) 1px solid;
  padding: 35px 21px 20px;
  border-radius: 8px;
}

.inner-blog-right-sec .blog-search form {
  position: relative;
  border: 1px solid #848484;
  border-radius: 5px;
  padding: 11px 13px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.inner-blog-right-sec .blog-search form input {
  border: none;
  outline: none;
  padding: 0;
  width: 100%;
  background: transparent;
  color: #1e1e1e;
}

.inner-blog-right-sec .blog-search form ::placeholder {
  color: #848484;
}

.inner-blog-right-sec .blog-search form button {
  /* position: absolute;
top: 0;
right: 0;
width: 50px;
height: 100%; */
  cursor: pointer;
  background: none;
  border: 0;
  font-size: 15px;
  color: #860303;
}

.inner-blog-right-sec .popular-sec .popular-cards1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #1c1c1c3b;
  padding: 15px 0;
  gap: 10px;
}

.inner-blog-right-sec .popular-sec .popular-cards1 .img-top img {
  width: 130px;
}

.inner-blog-right-sec .popular-sec .popular-cards1 p {
  color: #626262;
  font-weight: 300;
  font-size: 14px;
  margin-bottom: 0;
}

.inner-blog-right-sec .popular-sec .popular-cards1 a {
  color: #860303;
  font-size: 15px;
}

.inner-blog-right-sec .popular-sec .popular-cards1 .heading {
  width: 100%;
}
a.lnk-anch{
	color: #e30613;
}
.contact-info .phone a{
	color: #e30613;
}
.contact-info .email a{
	color: #ccc;
}
span.wpcf7-form-control-wrap input {
    display: flex;
	gap:0px !important;
}
form.wpcf7-form.init p {
	line-height:20px !important;
	width:100%;
}
#contact form.wpcf7-form.init p {
	margin-bottom: 0px;
	line-height:20px !important;
	width:100%;
}
.wpcf7-not-valid-tip {
    color: #ffb900 !important;
}

form.wpcf7-form.init button {
    margin-top: 10px;
}
.blog-box .content h5 a{
	color:#1e1e1e;
}

/* comment box css */

.inner-blog-left-sec .inner-blog-comment form input {
  width: 100%;
  outline: none;
  padding: 11px;
  border-radius: 4px;
  border: 1px solid #1c1c1c3b;
}

.inner-blog-left-sec .inner-blog-comment form textarea {
  width: 100%;
  outline: none;
  padding: 11px;
  border-radius: 4px;
  border: 1px solid #1c1c1c3b;
}

.inner-blog-left-sec .inner-blog-comment #submit {
  color: #ffffff !important;
  background-color: #000 !important;
  display: inline-block;
  width: 100%;
  text-transform: uppercase;
  text-align: center;
  border: 1px solid #000;
  padding: 15px 20px;
  border-radius: 8px;
  font-weight: 400;
  transition: 0.5s;
}

.inner-blog-left-sec .inner-blog-comment #submit:hover {
  background: #e30613 !important;
  border: 1px solid #e30613;
  color: #000;
  transition: 0.5s;
}
input#wp-comment-cookies-consent {
    width: 40px;
}
.contact-left .info a{
	color: #000;
}
.service-card .overlay h3 a{
	color:#fff;
}
.form-btn-grp p{
	width: 100%;
}
.inner-blog-sec1 .heading ul li{
	list-style:disc;
	margin-left:30px;
	padding-top:5px;
}

/* *********** */

.our-service hr{
  border-color: #d81215 !important;
  height: 4px !important;
  opacity: 1 !important;
}

.our-service .booking-box {
  background-color: var(--theme-color);
  border-radius: 10px;
  position: relative;
  height: 100%;
}

.our-service .booking-box .img-box {
  position: relative;
  top: -6px;
}

.our-service .booking-box .mid-content {
  padding: 19px 0 0;
  min-height: 109px;
}

.our-service .booking-box .mid-content p {
  font-size: 18px;
  line-height: normal;
}

.our-service .booking-box .mid-content h5 {
  font-size: 20px;
  font-weight: 600;
}

.our-service .price-box {
  background-color: #2a3143;
  min-height: 340px;
  color: #fff;
  padding: 15px 10px;
  border-radius: 10px;
  position: relative;
  bottom: -13px;
}

.our-service .car-book-box {
  height: 100%;
}

.our-service .book-now-area {
  border-bottom: 2px solid #d81215;
  color: #d81215;
}

.our-service .book-now-area p {
  font-size: 19px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 0px !important;
}

.our-service .price-box a.comon-btn {
  width: 10.9rem;
  font-size: 12px;
  padding: 10px;
}

.our-service .book-area-info p {
  margin-bottom: 10px;
  line-height: 1.5;
  font-size: 14px;
}

.book-area-info p {
  display: flex;
  gap: 3px;
  align-items: baseline;
}

.our-service .book-area-info h6 span {
  color: #d81215;
}

.our-service .book-area-info p span i {
  color: #d81215;
}

.our-service .book-area-info p span {
  font-weight: bold;
  color: #ffffff;
  font-weight: bold;
  display: block;
  font-size: 15px;
  margin-bottom: 0px;
}

.our-service .book-area-info p b {
  color: #d81215;
  font-size: 15px;
  margin-left: 10px;
}

.our-service .copy-right-info p {
  color: #ced4da;
  line-height: normal;
  font-size: 14px;
}


/* faq-sec*/

.our-service .accordion-button {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	padding: 1rem 1.25rem;
	font-size: 0.8rem;
	color: #fcfdff;
	background-color: #212121;
	border: 0;
	border-radius: 0;
	overflow-anchor: none;
	transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, border-radius .15s ease;
}

.our-service .accordion-button:not(.collapsed), .our-service .accordion-body {
  background-color:var(--theme-color);
  color: #fff;
}

.our-service .accordion-item {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, .125);
  margin-bottom: 13px;
  overflow: hidden;
  border-radius: 7px;
}

.our-service .accordion-button::after {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: auto;
  content: "";
  background-image: url("../image/down-arrow.png");
  background-repeat: no-repeat;
  background-size: 1.25rem;
  transition: transform .2s ease-in-out;
}

.our-service .accordion-button:not(.collapsed)::after {
  background-image: url("../image/up-arrow.png");
  transform: rotate(-0deg);
}
.ser-btm p{
	color:#000;
}


form.wpcf7-form.init p, form.wpcf7-form.invalid p, form.wpcf7-form.sent p {
	margin-bottom: 0px !important;
}
