:root {
  --primary-color: #dc2985;  /* Define a global variable */
  --background-color:#fff;
  --hover-color:#0a0a0a;
  --font-family:"Karla", Helvetica, Arial, sans-serif;
  --font-size: 14px;         /* Define another variable */
}
@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700|Poppins:300,400,500,700|Rajdhani&display=swap");
/*

    font-family: 'Rajdhani', sans-serif;

    font-family: 'Poppins', sans-serif;

    font-family: 'Open Sans', sans-serif;

*/


html {
  scroll-behavior: smooth;
}
body {
  font-family: "Poppins", sans-serif;
  background: #f9f9f9;
}
p {
  color: #2a2a2a;
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
  padding: 0;
}
a {
  color: #2a2a2a;
}
a:hover {
  color: #a33a52;
  text-decoration: none;
}
.text-red {
  color: #c00 !important;
  font-size: 12px;
}
.error {
  color: #ffc450 !important;
  font-size: 12px;
}

.img-fullwidth {
  width: 100%;
  border-radius: 10px 10px 0 0;
}
.header {
  position: relative;
  background: #fff;
  border-top: #2488c2 2px solid;
}
.header .content {
  margin: 3px 0;
  text-align: center;
}
.header .content li {
  display: inline-block;
  color: #4f4f4f;
  margin-right: 10px;
}
.header .content li:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: 0;
}
.header .content li i {
  margin-right: 5px;
  color: #4f4f4f;
}
.header .content li a {
  color: #4f4f4f;
}
.header .navbar-collapse {
  padding: 0;
}
.connect {
  margin: 0;
  padding: 10px 0 15px 0;
    color:var(--primary-color);
  
}
.connect h4 {
  margin: 5px 0;
  padding: 0;
  line-height: 22px;
  font-size: 16px;
  font-family: "Roboto Slab", serif;
  color:var(--primary-color);
}
.connect h4 small {
  font-size: 15px;
  color: #000;
}

.connects {
  margin: 0;
  padding: 10px 0 15px 0;
  text-align: right;
}
.connects p {
  margin: 5px 0;
  padding: 0;
  font-family: "Roboto Slab", serif;
}
.connects ul {
  margin: 0;
  padding: 0;
}
.connects ul li {
  margin: 0 1px;
  padding: 0;
  display: inline-block;
  color: #000;
  font-size: 18px;
}
.connects ul li a {
  color: #000;
}

.header .logo {
  margin: 2px auto;
  text-align: center;
}
.header .header-menu {
  z-index: 3333;
  padding: 0;
  font-family: "Rajdhani", sans-serif;
  /*background: #444464;*/
  background: var(--primary-color);
 
}

.header .navbar {
  background: 0;
  box-shadow: none;
  border: 0;
  position: relative;
  padding: 0;
}
.navbar-nav {
  display: block;
}
.header .nav li {
  float: left;
  position: relative;
}
.header .nav li:last-child {
  margin-right: 0;
}
.header .nav  li a {
  color: #fff;
  font-size: var(--font-size);
  padding: 15px 15px;
  text-transform: uppercase;
  display: block;
  position: relative;
  text-shadow: none;
}
.header .nav li:hover a,
.header .nav li.active a {
  /*color: var(--hover-color);*/
 border-bottom: 2px solid #fff;
}
.header .nav li a i {
  margin-left: 5px;
}
.header .nav li .dropdown {
  background: #444464;
  width: 220px;
  position: absolute;
  left: 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(0.5);
  -moz-transform: scale(0.5);
  transform: scale(0.5);
  -webkit-box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin: 0;
}
.header .nav li:hover .dropdown {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}
.header .nav li .dropdown li {
  float: none;
  margin: 0;
  border: 0;
}
.header .nav li .dropdown li a {
  padding: 10px 15px;
  color: #fff;
  display: block;
  font-weight: 400;
  text-transform: capitalize;
  background: transparent;
}
.header .nav li .dropdown li i {
  float: right;
}
.header .nav li .dropdown li:hover a {
  color: #fff;
}
.header .nav li .dropdown.submenu {
  left: 100%;
  top: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(0.5);
  -moz-transform: scale(0.5);
  transform: scale(0.5);
}
.header .nav li .dropdown li:hover .dropdown.submenu {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.header .nav li .dropdown li .dropdown.submenu li a {
  color: #fff;
  background: transparent;
}
.header .nav li .dropdown li .dropdown.submenu li:hover a {
  color: #fff;
}
.header .button {
  text-align: center;
}
.header .button .btn {
  margin-top: 0;
  color: #fff;
  border-radius: 0;
  box-shadow: none;
  padding: 15px 20px;
  text-transform: capitalize;
  background: #00305b;
  font-size: 14px;
  border: #00305b 1px solid;
  border-radius: 35px;
}
.header .button .btn:hover {
  color: #4f4f4f;
  background: none;
  border: #00305b 1px solid;
}
.header.sticky .header-menu {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  background: var(--primary-color);
  transition: all 0.4s ease;
  animation: fadeInDown 1s both 0.2s;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.header.sticky .nav li a{
    color:#fff;
}
.header.sticky .nav .active  {
    color: #fff;              /* White text color */

    font-weight: bold;        /* Optional: make the text bold */
    border-bottom: 2px solid #fff; /* Optional: Add a thicker underline */
}
.header.sticky .nav li:hover  {
    color: #fff;              /* White text color */

    font-weight: bold;        /* Optional: make the text bold */
    border-bottom: 2px solid #fff; /* Optional: Add a thicker underline */
}
.home-slider {
  height: 655px;
}
.home-slider .overlay {
  position: relative;
}
.home-slider .overlay::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  background: #000;
  content: "";
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.home-slider .single-slider {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 655px;
  border: none;
}
.home-slider .single-slider:before {
  opacity: 0.1;
}
.home-slider .single-slider .slider-text {
  margin: 325px 0 0;
  padding: 20px;
}
.home-slider .single-slider h2 {
  font-size: 48px;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 15px;
  text-shadow: 0 0 3px #000, 0 0 5px #000;
}
.home-slider .single-slider h1 {
  font-size: 20px;
  line-height: 40px;
  color: #fff;
  text-shadow: 0 0 3px #000, 0 0 5px #000;
}
.home-slider .single-slider p {
  font-size: 24px;
  color: #fff;
  text-shadow: 0 0 3px #000, 0 0 5px #ccc;
}
.home-slider .single-slider .button {
  margin-top: 10px;
}
.home-slider .single-slider .btn {
  margin-right: 15px;
  color: #000;
  font-size: 16px;
  background: #fff;
  position: relative;
  z-index: 3;
  text-transform: uppercase;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.home-slider .single-slider .btn:hover {
  background: #d12326;
  color: #000;
}
.home-slider .single-slider .btn.primary {
  background:var(--primary-color);color:#fff
}
.home-slider .single-slider .btn.primary:before {
  background: #fff;
}
.home-slider .single-slider .btn.primary:hover {
  color: var(--primary-color);
  background: transparent;
}
.home-slider .single-slider .btn:last-child {
  margin-right: 0px;
}
/* Slider Meta */
.home-slider .owl-carousel .owl-nav div {
  height: 55px;
  width: 55px;
  line-height: 55px;
  top: 50%;
  background:var(--primary-color);
  color: #fff;
  font-size: 25px;
  position: absolute;
  border: none;
  margin: 0;
  padding: 0;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
  border-radius: 100%;
  margin: -30px 0 0 0;
}
.home-slider .owl-carousel .owl-nav div:hover {
  background: #fff;
  color:var(--primary-color);
}
.home-slider .owl-carousel .owl-nav .owl-prev {
  left: 15px;
}
.home-slider .owl-carousel .owl-nav .owl-prev:hover {
  left: 25px;
}
.home-slider .owl-carousel .owl-nav .owl-next {
  right: 15px;
}
.home-slider .owl-carousel .owl-nav .owl-next:hover {
  right: 25px;
}

.about-us-area {
  position: relative;
  padding: 0;
  background: url(../images/about-bg.png) right center no-repeat #fff;
}
.about-us-area01 {
  position: relative;
  padding: 60px 0;
  background: url(../images/about-bg.png) left center no-repeat #fff;
}
.about-sec-wrapper {
  position: relative;
  text-align: right;
  margin: 50px 0;
}

.abttxt {
  margin: 50px 0;
  padding: 0;
}

.abttxt h2 {
  margin: 0 0 20px 0;
  padding: 0;
  font-size: 30px;
  text-align: left;
  color: #e9921a;
}
.abttxt h2 span {
  color: var(--primary-color);
}
.abttxt h4 {
  margin: 10px 0 0px 0;
  padding: 0;
  font-size: 18px;
  color: #444464;
  line-height: 30px;
}
.abttxt h4 span {
  color: var(--primary-color);
}
.abttxt p {
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-weight: 300;
  line-height: 26px;
  text-align: justify;
}
.abttxt .button {
  margin-top: 15px;
  font-size: 16px;
  text-align: right;
}
.abttxt .btn {
  color: #444464;
  text-transform: capitalize;
  padding: 5px 0;
  border-bottom: #2488c2 1px solid;
}
.abttxt .btn:hover {
  color: #444464;
}

.travel-exp {
  background: linear-gradient(var(--primary-color),#fff);
  padding: 45px 0;
}

.travel-exp h1 {
  margin: 0 0 15px 0;
  padding: 0 0 35px 0;
  font-size: 40px;
  color: #fff;
  font-family: "Playfair Display", serif;
  background: url(../images/seprator.png) center bottom no-repeat;
  text-align: center;
  position: relative;
}
.travel-exp h6 {
  margin: 10px 0;
  padding: 0;
  font-size: 14px;
  font-weight: 300;
  line-height: 22px;
  text-align: center;
  color: #fff;
}
.future {
  background: url(../images/future-bg.jpg);
  position: relative;
  padding: 100px 0;
}
.future h2 {
  margin: 15px 0;
  padding: 0;
  font-size: 36px;
  color: #fff;
  font-family: "Playfair Display", serif;
  text-align: center;
}
.future p {
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-weight: 300;
  color: #fff;
  text-align: center;
}
.future .button {
  margin: 10px 0;
  text-align: right;
}
.future .btn {
  color: #fff;
  font-size: 14px;
  padding: 10px 25px;
  background: transparent;
}
.future .btn:hover {
  color: var(--primary-color);
}

.at {
  margin: 0;
  padding: 40px 0;
  background: #ffe8f5;
}
.at h2 {
  margin: 0 0 15px 0;
  padding: 0;
  font-size: 36px;
  color: #444464;
  font-family: "Playfair Display", serif;
  position: relative;
  font-weight: bold;
}
.ownerimg {
  margin: 10px 0;
}
.ownerimg img {
  padding: 10px;
  background: #fff;
}
.ownerimg h3 {
  margin: 10px 0;
  font-size: 18px;
  color: #444464;
}
.ownertxt {
  margin: 10px 0;
}
.ownertxt p {
  margin: 0;
  font-size: 14px;
  text-align: justify;
}
.ownertxt .button {
  margin-top: 10px;
  font-size: 16px;
}
.ownertxt .btn {
  color: #fff;
  text-transform: capitalize;
  padding: 8px 15px;
  border-radius: 5px;
  background: var(--primary-color);
  border: var(--primary-color) 1px solid;
}
.ownertxt .btn:hover {
  color: var(--primary-color);
}
.trip {
  margin: 10px 0;
  background: #444464;
  padding: 15px;
}
.trip h3 {
  text-align: center;
  font-size: 24px;
  font-family: "Playfair Display", serif;
  color: #fff;
  margin-bottom: 10px;
}

.car-rental {
  background: linear-gradient(var(--primary-color),#fff);
  padding: 45px 0;
}
.car-rental h2 {
  margin: 0 0 15px 0;
  padding: 0 0 35px 0;
  font-size: 40px;
  color: #fff;
  font-family: "Playfair Display", serif;
  background: url(../images/seprator.png) center bottom no-repeat;
  text-align: center;
  position: relative;
}
.car-rental h6 {
  margin: 10px 0;
  padding: 0;
  font-size: 14px;
  font-weight: 300;
  line-height: 22px;
  text-align: center;
  color: #fff;
}
.car-rental .single-car {
  background: #fff;
  margin: 15px 0;
  box-shadow: 3px 0px 6px var(--primary-color) ;
  border-radius:10px;
}
.car-rental .single-car h3 {
  font-size: 20px;
  margin: 15px 0;
  color: #1d1d1d;
}
.car-rental .single-car .button {
  margin-top: 10px;
  font-size: 10px;
}
.car-rental .single-car .btn {
  color: #fff;
  text-transform: capitalize;
  padding: 8px 11px;
  border-radius: 5px;
  background: var(--primary-color);
  border: var(--primary-color) 1px solid;
}
.car-rental .single-car .btn:hover {
  color:  var(--primary-color);
}
/*===============================
	Features CSS
=================================*/
.our-features {
  background-color: #f1eded;
  padding: 30px 0;
}
.our-features h2 {
  margin: 0 0 15px 0;
  padding: 0;
  font-size: 40px;
  color: #444464;
  font-family: "Playfair Display", serif;
  text-align: center;
  position: relative;
}
.our-features h6 {
  margin: 10px 0;
  padding: 0;
  font-size: 14px;
  font-weight: 300;
  line-height: 22px;
  text-align: center;
  color: #717171;
}


.our-features .single-feature {
  /* background: #fff; */
  margin: 15px 0;
/* 
  border: 1px solid gray; */
}

.dashed{

  background-color: rgb(175, 161, 174);
text-align: center;
  color: black;
}
.flextype{

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.our-features .feature-head {
  position: relative;
}
.our-features .single-feature img {
  width: 100%;

  border-radius: 20px;
}
.our-features .single-feature h3 {
  font-size: 20px;
  margin: 15px 0;
  color: #d81b1b !important;
}
.our-features .bordertxt {
  /* border-bottom: #343434 1px dashed; */

  border-radius: 10px;
  /* padding: 10px 0; */
  font-size: 16px;

color: white !important;
  position: absolute;

  top: 20px;

  align-items: center !important;

}
.our-features .bordertxt p {
  line-height: 33px !important;
  color: #eeeef5;
}
.our-features .date {
  position: absolute;
  left: -10px;
  top: 12px;
  text-align: center;
  z-index: 222222;
  padding: 0 15px 10px 15px;
  background: url(../images/kona.png) left center no-repeat,
    url(../images/cat-bg.png) 0 0 repeat-x;
}
.our-features:hover .date {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}
.our-features .date h4 {
  font-size: 14px;
  color: #fff;
  line-height: 29px;
}
.our-features .single-feature .button {
  margin-top: 0;
  font-size: 16px;
}
.our-features .single-feature .btn {
  color: rgb(133, 131, 131);
  text-transform: capitalize;
  padding: 5px 10px;
  border-radius: 15px;
  background: transparent;
  border: #686666ff 1px solid;
}
.our-features .single-feature .btn:hover {
  color: #000;
}

.amenities {
  margin: 0;
  padding: 30px 0;
  background: #fff;
}
.amenitiesBox {
  margin: 15px 0;
  padding: 20px 0 0 0;
  font-family: "Poppins", sans-serif;
  position: relative;
}
.amenitiesBox h2 {
  margin: 0 0 15px 0;
  padding: 0;
  font-size: 48px;
  color: #0d2933;
  font-family: "Playfair Display", serif;
}
.amenitiesBox h6 {
  color: #8a6437;
  font-size: 14px;
  text-align: justify;
  line-height: 20px;
  font-weight: 300;
}
.amenitiesBox p {
  text-align: center;
}
.ameicon {
  margin: 15px 0;
  padding: 0;
  text-align: center;
}
.ameicon i {
  color: #cda274;
  font-size: 36px;
}
.ameicon h5 {
  margin: 15px 0;
  padding: 0;
  font-size: 18px;
  color: #444464;
  font-family: "Playfair Display", serif;
  font-weight: normal;
}
.ameicon p {
  font-size: 14px;
}
.freequote {
  margin: 0;
  position: relative;
  z-index: 111;
  border-radius: 10px;
  padding: 25px 50px 20px;
  background: linear-gradient(var(--primary-color), #fff);
}
.freequote h3 {
  margin: 0;
  padding: 0;
  font-size: 40px;
  font-family: "Playfair Display", serif;
  color: #fff;
  margin-bottom: 20px;
}
.freequote .form {
  padding: 0;
}
.freequote .form label {
  color: #fff;
}
.freequote .form-group {
  margin-bottom: 10px;
}
.freequote .form-group input {
  width: 100%;
  height: 30px;
  color: #999999;
  box-shadow: none;
  text-shadow: none;
  border: none;
  border-bottom: 1px solid #e2e2e2;
  font-weight: 500;
  border-radius: 0px;
  padding: 0 15px;
}
.freequote .form-group input:hover,
.freequote .form-group textarea:hover {
  padding-left: 20px;
}
.freequote .form-group textarea {
  height: 50px;
  color: #999999;
  box-shadow: none;
  text-shadow: none;
  border: none;
  resize: none;
  border-bottom: 1px solid #e2e2e2;
  font-weight: 400;
  margin-bottom: 0px;
  padding: 10px 10px;
  border-radius: 0px;
}
.freequote .form-group .btn {
  background: var(--primary-color);
  color: #fff;
  text-align: center;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
  display: block;
  padding: 10px 25px;
  border-radius: 3px;
  border: none;
}
.freequote .form-group .btn:before {
  display: none;
}

.our-blog {
  margin: 0;
  padding: 45px 0;
  background: #fff3fa;
}
.our-blog h1 {
  margin: 0 0 15px 0;
  font-size: 40px;
  text-align: center;
  color: #444464;
  font-weight: bold;
  font-family: "Playfair Display", serif;
}
.our-blog h6 {
  font-size: 14px;
  color: #886653;
  margin-bottom: 10px;
  line-height: 22px;
  text-align: center;
  font-family: "Poppins", sans-serif;
}
.blogBox {
  margin: 15px 0;
  padding: 0 0 10px 0;
  border: 1px solid #e9e9e9;
  background-color: #f5f5f5;
  z-index: 1;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  box-shadow: 3px 0px 6px var(--primary-color);
  border-radius:10px;
  
}
.blogBox::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 0;
  background-color: #fff;
  -webkit-transition: 0.7s;
  transition: 0.7s;
  opacity: 0;
  border-radius: 15px;
}
.blogBox:hover::before {
  height: 100%;
  opacity: 1;
}
.blogBox h3 {
  margin: 10px;
  padding: 0;
  font-size: 22px;
  color: #343434;
  line-height: 32px;
  font-weight: 600;
  font-family: "Baskervville", serif;
}
.blogBox h3 a {
  color: #343434;
}
.blogBox p {
  margin: 5px 10px;
  padding: 0;
  color: #555;
  line-height: 1.8;
  text-align: justify;
}
.blogBox .read-btn {
  background-color: var(--primary-color);
  padding: 8px 24px;
  color: #fff;
  text-align: center;
  position: relative;
  display: inline-block;
  overflow: hidden;
  z-index: 1;
  font-size: 15px;
  border-radius: 5px;
  border: 1px solid var(--primary-color);
  margin: 10px;
  
}
.blogBox .read-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0%;
  width: 0;
  height: 50%;
  background-color: #fff;
  z-index: -1;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
  opacity: 0;
}
.blogBox .read-btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0%;
  width: 0;
  height: 50%;
  background-color: #fff;
  z-index: -1;
  opacity: 0;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
}
.blogBox .read-btn:hover {
  color: var(--primary-color);
}
.blogBox .read-btn:hover::before {
  width: 100%;
  color: var(--primary-color);
  opacity: 1;
}
.blogBox .read-btn:hover::after {
  width: 100%;
  opacity: 1;
  color: var(--primary-color);
}

/*=============================
	Footer CSS
===============================*/
.footer {
  padding: 0;
  background-image: linear-gradient(#012f49, #012f49);
}
.footer a,
.footer p {
  color: #eee;
  font-weight: 400;
}
.footer .footer-top {
  padding: 40px 0 30px;
}

.footer .single-widget {
  margin-top: 30px;
}
.footer .single-widget h2 {
  font-size: 18px;
  margin-bottom: 20px;
  color: #ffc450;
  position: relative;
  text-transform: uppercase;
}
.footer .about p {
  margin-top: 20px;
}

.footer .list li {
  line-height: 30px;
  color: #fff;
}
.footer .list li a {
  color: #fff;
}
.footer .list li i {
  margin-right: 10px;
  color: #ffb74d;
}
.footer .useful-links p {
  color: #fff;
  font-size: 15px;
}
.footer .useful-links ul li {
  position: relative;
  line-height: 30px;
  width: 49%;
  float: left;
}
.footer .useful-links ul li a {
  color: #fff;
}
.footer .useful-links ul li i {
  margin-right: 10px;
  color: #ffb74d;
}
.footer .bottom-head {
  padding: 10px 0;
}
.footer .social {
  margin-top: 20px;
}
.footer .social li {
  display: inline-block;
  margin-right: 5px;
}
.footer .copyright {
  text-align: center;
}
.footer .copyright p {
  font-size: 15px;
  color: #fff;
  text-transform: capitalize;
}
.footer .copyright a:hover {
  color: #fff;
}

.events {
  padding: 30px 0 40px;
  background: #fff;
}
.events .section-title {
  text-align: center;
  margin-bottom: 20px;
  padding: 0;
}
.events .section-title h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 24px;
  margin-bottom: 10px;
  letter-spacing: 1px;
  color: #fff;
}
.events .section-title h2 {
  font-size: 36px;
  text-transform: capitalize;
  padding-bottom: 12px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  position: relative;
  margin-bottom: 18px;
}
.events .section-title h2::before {
  position: absolute;
  left: 50%;
  content: "";
  width: 50px;
  height: 3px;
  background: #fff;
  bottom: -1px;
  margin-left: -25px;
}
.events p {
  color: #777;
  line-height: 26px;
  text-align: justify;
  margin: 0 0 20px;
}
.events .single-event {
  margin: 15px 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
  padding: 15px;
}
.events .single-event:hover {
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
}
.events .single-event .head {
  position: relative;
}
.events .single-event .head img {
}
.events .single-event .head .btn {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 100%;
  line-height: 50px;
  padding: 0;
  margin: -25px 0 0 -25px;
  color: #fff;
  transition: ;
  -webkit-transform: scale(3);
  -moz-transform: scale(3);
  transform: scale(3);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 35;
  background: #000;
}
.events .single-event:hover .head .btn {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}
.events .single-event .head .btn:hover {
  background: #fff;
  color: #252525;
}
.events .single-event .head.overlay:before {
  opacity: 0;
  visibility: hidden;
  z-index: 34;
}
.events .single-event:hover .head.overlay:before {
  opacity: 0.5;
  visibility: visible;
}
.events .event-content {
  margin: 0px;
  padding: 15px 0;
  text-align: center;
  background: #fff;
}
.events .event-content h4 {
  font-size: 18px;
  margin: 10px 0;
}
.events .event-content h4 a {
  color: #252525;
  font-weight: 700;
}
/* Event Nav */
.events .owl-nav {
  width: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin: 0;
}
.events:hover .owl-nav {
  opacity: 1;
  visibility: visible;
}
.events .owl-carousel .owl-nav div {
  height: 48px;
  width: 48px;
  line-height: 48px;
  top: 50%;
  background: #666;
  color: #fff;
  font-size: 25px;
  position: absolute;
  border: none;
  margin: 0;
  padding: 0;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
  border-radius: 100%;
  margin-top: -24px;
}
.events .owl-carousel .owl-nav div:hover {
  color: #fff;
}
.events .owl-carousel .owl-nav .owl-prev {
  left: -75px;
}
.events .owl-carousel .owl-nav .owl-prev:hover {
  left: -65px;
}
.events .owl-carousel .owl-nav .owl-next {
  right: -75px;
}
.events .owl-carousel .owl-nav .owl-next:hover {
  right: -65px;
}

.bread {
  background: #f3f3f3;
  color: #000;
  margin: 0;
  padding: 10px 0;
}
.bread ul {
  margin: 0;
  padding: 0;
  text-align: left;
}
.bread ul li {
  color: #000;
  display: inline-block;
  margin: 0 5px;
  padding: 0;
}
.bread ul li a {
  color: #000;
}
.bread ul li a:hover {
  color: #000;
}

.inner {
  margin: 0;
  padding-top: 50px;
  padding-bottom: 20px;
  background: #fff;
  position: relative;
}
.about-col {
  margin: 10px 0;
}

.sidebar {
  margin: 0;
  padding: 10px;
  background: #fff;
  font-family: "Open Sans", sans-serif;
}
.sidebar h3 {
  font-size: 14px;
  color: #333;
  margin: 5px 0 10px 0;
  padding: 0;
  font-weight: 600;
  text-transform: uppercase;
}
.sidebar ul {
  overflow: auto;
  max-height: 300px;
  padding-right: 10px;
}
.sidebar ul li {
  margin: 0;
  padding: 10px 0px;
}
.sidebar ul li a {
  border-bottom: 1px solid #ddd;
  text-transform: capitalize;
  padding: 12px 0;
  color: #5d5d5d;
  font-size: 14px;
}

.itinerary-form {
  border: 2px solid #2488c2;
}
.card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  display: inherit;
  background: #fff;
  box-shadow: 6px 2px 20px 0 rgba(0, 0, 0, 0.1);
}
.itinerary-form-head {
  padding: 15px 20px;
  font-weight: 700;
  font-size: 30px;
  color: #f0fff0;
  background: #2488c2;
}
.itinerary-form form {
  padding: 20px;
}
.itinerary-form form .form-group {
  margin-bottom: 15px;
}
.itinerary-form form.input-box {
  position: relative;
}
.itinerary-form .form-control::placeholder {
  color: #999;
  opacity: 1;
}
.itinerary-form .input-box .form-control {
  padding-left: 40px;
}
.itinerary-form .form-control {
  height: 45px;
  outline: none;
  border-radius: 3px;
  border: 1px solid #bdbdbd;
  padding: 6px 12px;
  color: #555;
  font-size: 14px;
  background: #fff;
  box-shadow: none;
  font-family: "Poppins", sans-serif;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
.itinerary-form .input-icon {
  position: absolute;
  top: 10px;
  z-index: 222;
  left: 30px;
}
.itinerary-form .input-icon i {
  color: #2488c2;
}
.itinerary-form .btn,
.itinerary-form .btn-lg {
  background: #2488c2;
  color: #fff;
  outline: none;
  box-shadow: 6px 2px 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  font-size: 14px;
  letter-spacing: 0.05rem;
  height: 45px;
  line-height: 45px;
  padding: 0 20px;
  font-weight: 400;
  border: none;
  transition: all 0.3s ease-in-out;
}

.need-help {
  padding: 30px 20px;
  text-align: center;
}
.need-help img {
  width: 100px;
  margin-bottom: 15px;
}
.need-title {
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 10px;
}
.need-help p {
  margin-bottom: 10px;
  color: #424242;
}
.need-help a {
  color: #2488c2;
  font-weight: 700;
  font-size: 28px;
}

.tpside {
  margin-bottom: 1rem !important;
}
.wid-title {
  margin-bottom: 25px;
  letter-spacing: 0.05rem;
  font-size: 25px;
  font-weight: 700;
}
.tpside .scroll {
  overflow-y: scroll;
  overflow-x: hidden;
  padding-right: 5px;
  max-height: 350px;
}
.tpside ul {
  list-style: none;
}
.tpside ul li {
  margin: 0 0 10px 0;
  padding-bottom: 10px;
  border-bottom: 1px dashed #ddd;
}
.tpside ul li .fx {
  display: flex;
}
.tpside a {
  text-decoration: none;
  outline: none;
  color: #212121;
}
.wid-thumb .img img {
  width: 75px;
  height: 60px;
  margin-right: 10px;
}
.wid-thumb li p {
  color: #232323;
  font-weight: 400;
  margin-bottom: 2px;
  font-size: 15px;
  transition: all 0.3s ease-in-out;
}
.fx-1 {
  flex: 1;
}
.wid-item ul li small,
.wid-thumb li small {
  display: block;
  font-size: 14px;
  color: #2488c2;
}

.contact-section {
  padding-top: 50px;
  padding-bottom: 20px;
  position: relative;
}
.heading-title {
  position: relative;
  color: #636262;
  font-weight: 700;
  font-size: 32px;
  margin-top: 30px;
  margin-bottom: 15px;
}


.heading-title i {
  color: var(--primary-color);
  margin-right: 10px;
}
.contact-section .form-group {
  margin-bottom: 15px;
}
.contact-section.input-box {
  position: relative;
}
.contact-section .input-icon {
  position: absolute;
  top: 10px;
  left: 30px;
  z-index: 222;
}
.contact-section .input-icon i {
  color: var(--primary-color);
}
.contact-section .form-control {
  background: transparent;
  height: 45px;
  outline: none;
  border-radius: 3px;
  border: 1px solid #bdbdbd;
  box-shadow: none;
  font-family: "Poppins", sans-serif;
}
.contact-section .input-box .form-control {
  padding-left: 40px;
}
.contact-section textarea.form-control {
  height: 150px;
  padding-top: 12px;
}
.contact-section .check-box {
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
  cursor: pointer;
  font-size: 14px;
  user-select: none;
}
.contact-section .btn {
  background: var(--primary-color);
  color: #fff;
  outline: none;
  box-shadow: 6px 2px 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  font-size: 14px;
  letter-spacing: 0.05rem;
  height: 45px;
  line-height: 45px;
  padding: 0 20px;
  font-weight: 400;
  border: none;
  transition: all 0.3s ease-in-out;
}

.map-frame {
  margin-bottom: 1rem !important;
}
.foot-contact {
  margin-bottom: 1rem !important;
}
.contact-info li {
  margin-bottom: 15px;
}
.contact-info .fx {
  display: flex;
}
.contact-info a {
  text-decoration: none;
  outline: none;
  color: #212121;
}
.contact-info .img {
  margin-right: 10px;
}
.contact-info .img img {
  width: 32px;
  height: 32px;
  margin-right: 0;
}
.contact-info li p {
  margin-bottom: 0;
  color: #232323;
  font-weight: 400;
  font-size: 15px;
  transition: all 0.3s ease-in-out;
}
.contact-info .fx-1 {
  flex: 1;
}
.tour-slider {
}
.tour-slider .single-slider {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: none;

  width: 100% !important;
}
.tour-slider .single-slider:before {
  opacity: 0.5;
}
.tour-slider .single-slider .slider-text {
  margin: 255px 0 0;
}
.tour-slider .single-slider h1 {
  font-size: 42px;
  line-height: 50px;
  text-transform: capitalize;
  color: #fff;
  font-family: "Coustard", serif;
  font-weight: 800;
  margin-bottom: 5px;
}
.tour-slider .single-slider h1 span {
  color: #ef473e;
}
.tour-slider .single-slider p {
  font-size: 16px;
  color: #ccc;
  padding-right: 100px;
}
.tour-slider .single-slider .text-center p {
  font-size: 16px;
  color: #ccc;
  padding: 0 100px;
}
.tour-slider .single-slider .text-right p {
  font-size: 16px;
  color: #ccc;
  padding: 0 0 0 100px;
}
.tour-slider .single-slider .button {
  margin-top: 20px;
}
.tour-slider .single-slider .btn {
  margin-right: 15px;
  color: #fff;
  background: transparent;
  position: relative;
  z-index: 3;
  text-transform: uppercase;
  border: #ef473e 1px solid;
  border-radius: 50px;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.tour-slider .single-slider .btn:hover {
  background: #ef473e !important;
  color: #fff;
}
.tour-slider .single-slider .btn.primary {
  color: #fff;
}
.tour-slider .single-slider .btn.primary:before {
  background: #fff;
}
.tour-slider .single-slider .btn.primary:hover {
  color: #252525;
  background: transparent;
}
.tour-slider .single-slider .btn:last-child {
  margin-right: 0px;
}
/* Slider Meta */
.tour-slider .owl-carousel .owl-nav div {
  height: 55px;
  width: 55px;
  line-height: 55px;
  top: 50%;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  font-size: 25px;
  position: absolute;
  border: none;
  margin: 0;
  padding: 0;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
  border-radius: 100%;
  margin: -30px 0 0 0;
}
.tour-slider .owl-carousel .owl-nav div:hover {
  background: #fff;
}
.tour-slider .owl-carousel .owl-nav .owl-prev {
  left: 15px;
}
.tour-slider .owl-carousel .owl-nav .owl-prev:hover {
  left: 25px;
}
.tour-slider .owl-carousel .owl-nav .owl-next {
  right: 15px;
}
.tour-slider .owl-carousel .owl-nav .owl-next:hover {
  right: 25px;
}

/* Slider Animation */
.tour-slider .owl-item.active .slider-text h1 {
  animation: fadeInUp 1s both 0.8s;
}
.tour-slider .owl-item.active .slider-text p {
  animation: fadeInUp 1s both 1s;
}
.tour-slider .owl-item.active .slider-text .button {
  animation: fadeInUp 1s both 1.2s;
}
.itinerary-content .pck-days {
  margin-bottom: 5px;
}
.itinerary-content .pck-days span:nth-last-child(1) {
  margin-right: 0;
}
.itinerary-content .pck-days span {
  display: inline-block;
  font-size: 14px;
}
.itinerary-content .tour-citys {
  margin-bottom: 20px;
}
.tour-citys {
  border: 1px solid #ddd;
padding: 10px;
  border-radius: 13px;

}









.include-exclude-section {
    padding: 60px 0;
    background: #fff;
}

.section-title {
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 40px;
    text-align: left;
}

.include-exclude-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.include-box, .exclude-box {
    flex: 1;
    min-width: 300px;
}

.include-box h3, .exclude-box h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #222;
}

.include-box ul, .exclude-box ul {
    list-style: disc;
    /* padding-left: 20px; */
}

.include-box ul li, .exclude-box ul li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}


.bk-form-section {
  padding-top: 30px;
  background: #f5f5f5;
}
.bk-form-section .main-title {
  margin-bottom: 30px;
  position: relative;
}







/* RESET */
*{margin:0;padding:0;box-sizing:border-box;}


/* SECTION WRAPPER */
.rt-section{max-width:1400px;margin:0 auto;
padding: 50px 0px;
background-color: transparent !important;}
.rt-title{
    text-align:center;
    color:#969594;
    font-size:2.5rem;
    font-weight:600;
    margin-bottom:20px;
}

/* SLIDER WRAPPER */
.rt-slider-wrapper{
    position:relative;
    overflow:hidden;
    padding:0 60px;

    margin-top: 20px;
}

/* SLIDER TRACK */
.rt-slider-track{
    display:flex;
    transition:transform .5s ease-in-out;
}

/* TOUR CARD */
.rt-card{
    min-width:calc(34.333% - 20px);
    margin:0 10px;
    background:#fff;
    border-radius:32px;
    overflow:hidden;
border: 1px solid rgb(199, 194, 194);
    transition:.3s;

    padding: 10px;
}

.rt-card-img{
    width:100%;
    height:300px;
    object-fit:cover;

    border-radius: 32px;
}
.rt-card-content{padding:10px;}

/* CARD TEXT */
.rt-card-title{
    font-size:1.2rem;
    font-weight:600;
    color:#333;
    margin-bottom:20px;
    line-height:1.4;
    min-height:60px;
}

.rt-info-box{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    margin-bottom:20px;
}
.rt-info-item{
    display:flex;
    align-items:center;
    gap:8px;
    color:#666;
    font-size:.9rem;
}
.rt-icon{
    width:20px;height:20px;
    border-radius:50%;
    background:#d85a20;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:.75rem;
}

/* CARD FOOTER */
.rt-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding-top:20px;
    border-top:1px solid #eee;
}
.rt-price{
    color:#b8956a;
    font-size:1.1rem;
    font-weight:600;
}
.rt-btn-view{
    background:#8a7c8b;
    color:#fff;
    border:none;
    padding:10px 25px;

    cursor:pointer;
    font-size:13px;
    transition:.3s;
}
.rt-btn-view:hover{background:#b6b5b4;color: #000;}

/* NAV ARROWS */
.rt-nav{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:45px;height:45px;
    border-radius:50%;
    background:#fff;
    border:none;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    box-shadow:0 4px 15px rgba(0,0,0,0.1);
    transition:.3s;
    z-index:10;
}
.rt-nav:hover{background:#83778d;color:#fff;}
.rt-nav-prev{left:0;}
.rt-nav-next{right:0;}


.fa-check{

  color: green;

  margin-right:10px ;
}

/* DOTS */
.rt-dots{
    display:flex;
    justify-content:center;
    gap:10px;
    margin-top:40px;
}
.rt-dot{
    width:12px;height:12px;
    border-radius:50%;
    background:#ddd;
    border:none;
    cursor:pointer;
    transition:.3s;
}
.rt-dot.rt-active{
    background:#91908f;
    width:30px;
    border-radius:6px;
}

/* RESPONSIVE */
@media(max-width:1024px){.rt-card{min-width:calc(50% - 20px);}}
@media(max-width:768px){
    .rt-card{min-width:calc(100% - 20px) !important;}
    .rt-title{font-size:2rem;}
    .rt-slider-wrapper{padding:0 50px;}
}

















.bk-form-section .form-group {
  margin-bottom: 15px;
}
.bk-form-section .input-box {
  position: relative;
}
.bk-form-section .input-icon {
  position: absolute;
  top: 10px;
  left: 15px;
  z-index: 222;
}
.bk-form-section .input-icon i {
  color: #2488c2;
}
.bk-form-section .input-box .form-control {
  padding-left: 40px;
}
.bk-form-section .form-control {
  height: 45px;
  outline: none;
  border-radius: 3px;
  border: 1px solid #bdbdbd;
  background: #fff;
  box-shadow: none;
  padding: 6px 12px;
  font-family: "Poppins", sans-serif;
}
.bk-form-section .btn {
  background: #2488c2;
  color: #fff;
  outline: none;
  box-shadow: 6px 2px 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  font-size: 14px;
  letter-spacing: 0.05rem;
  height: 45px;
  line-height: 45px;
  padding: 0 20px;
  font-weight: 400;
  border: none;
  transition: all 0.3s ease-in-out;
}

.explore {
  background: #f1f1f1;
  padding: 30px 0 30px;
}
.explore .sec-title {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
}
.explore .sec-title h2 {
  margin: 0 0 15px 0;
  padding: 0 0 15px 0;
  font-size: 36px;
  background: url(../images/border-top.jpg) left bottom no-repeat;
  color: #061a3a;
  font-weight: bold;
  font-family: "Playfair Display", serif;
}
.explore .sec-title p {
  margin: 0;
  padding: 0;
  color: #4e4e4e;
  font-size: 14px;
  text-align: justify;
}
.place-block-one .inner-box {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 15px;
  border-radius: 10px;
  font-family: "Poppins", sans-serif;
  box-shadow: 0px 15px 25px 0px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.place-block-one .inner-box .image-box {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
}







.place-block-one .inner-box .image-box:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.6) 10%,
    rgba(0, 0, 0, 0) 100%
  );
  bottom: 0px;
  right: 0px;
  z-index: 1;
}

.place-block-one .inner-box .image-box img {
  width: 100%;
  transition: all 500ms ease;
}

.place-block-one .inner-box:hover .image-box img {
  transform: scale(1.05);
}

.place-block-one .inner-box .text {
  position: absolute;
  left: 0px;
  bottom: 25%;
  width: 100%;
  padding-left: 0;
  padding-bottom: 40px;
  z-index: 2;
}

.place-block-one .inner-box .text h3 {
  display: block;
  font-size: 30px;
  line-height: 32px;
  color: #ffffff;
  margin-bottom: 10px;
  text-align: center;
  font-weight: bold;
  font-family: "Playfair Display", serif;
}

.place-block-one .inner-box .text h3 a {
  display: inline-block;
  color: #ffffff;
}
.place-block-one .inner-box .text h4 {
  display: block;
  font-size: 16px;
  line-height: 32px;
  color: #ffffff;
  text-align: center;
}
.place-block-one .inner-box .text h4 span {
  background: #f60057;
  padding: 7px 15px;
  border-radius: 20px;
}
.place-block-one .inner-box .text h4 span a {
  display: inline-block;
  color: #ffffff;
}

.catBox {
  margin: 15px 0;
  padding: 0;
  position: relative;
  border: var(--primary-color) 1px solid;
  border-radius:10px;
}
.catBox .wbg {
  background: rgba(255, 255, 255, 0.8);
  position: absolute;
  width: 50%;
  top: 22px;
  right: 0;
  padding: 30px;
}
.catBox .wbg h3 {
  margin: 5px 0;
  padding: 0;
  font-size: 22px;
  text-transform: uppercase;
  color: #000;
}
.catBox .wbg h3 a {
  font-weight: bold;
}
.catBox .wbg p {
  margin: 0;
  padding: 0;
  font-size: 14px;
}
.catBox .wbg .button {
  margin: 10px 0;
}
.catBox .wbg .btn {
  color: #fff;
  font-size: 16px;
  padding: 5px 15px;
  text-transform: upppercase;
  background: var(--primary-color);
  border: var(--primary-color) 1px solid;
}
.catBox .wbg .btn:hover {
  background: #fff;
  color: var(--primary-color);
}
.catBox ul {
  margin: 0;
  padding: 15px;
  list-style: disc;
  min-height: 125px;
}
.catBox ul li {
  list-style: disc;
  margin: 0 0 0 15px;
  border-bottom: #ccc 1px dotted;
  padding: 5px 0;
  float: left;
  width: 47%;
}

.single-car-wrap {
  margin: 30px 0;
  padding: 0;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
  color: #7f7f7f;
}
.car-slider {
  position: relative;
}
.car-slider .single-slider {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: none;
}
.car-slider .single-slider:before {
  opacity: 0.2;
}

.single-slider{

  width: 100%;
}

.single-slider img{

  width: 100%;

  height: 500px;
}

.resForm{
padding: 30PX;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px; 

  border-radius: 10PX;
}

.btn-warning{

  background-color: #dfe1e4 !important;


  color: #22252c;
}

/* Slider Meta */
.car-slider .owl-carousel .owl-nav div {
  height: 55px;
  width: 55px;
  line-height: 55px;
  top: 50%;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  font-size: 25px;
  position: absolute;
  border: none;
  margin: 0;
  padding: 0;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
  border-radius: 100%;
  margin: -30px 0 0 0;
}
.car-slider .owl-carousel .owl-nav div:hover {
  background: #8d2929;
}
.car-slider .owl-carousel .owl-nav .owl-prev {
  left: 15px;
}
.car-slider .owl-carousel .owl-nav .owl-prev:hover {
  left: 25px;
}
.car-slider .owl-carousel .owl-nav .owl-next {
  right: 15px;
}
.car-slider .owl-carousel .owl-nav .owl-next:hover {
  right: 25px;
}

/* Slider Animation */
.car-slider .owl-item.active .slider-text h1 {
  animation: fadeInUp 1s both 0.8s;
}
.car-slider .owl-item.active .slider-text p {
  animation: fadeInUp 1s both 1s;
}
.car-slider .owl-item.active .slider-text .button {
  animation: fadeInUp 1s both 1.2s;
}
.car-list-info {
  margin: 0;
  padding: 25px;
}
.car-list-info h2 {
  color: #22252c;
  font-size: 20px;
  margin: 5px 0;
  font-weight: 600;
}
.car-list-info h5 {
  color: #585855;
  font-size: 15px;
  margin-bottom: 12px;
  margin-top: 5px;
  padding-bottom: 15px;
  text-transform: uppercase;
}
.car-list-info h5 small {
  font-weight: bold;
  text-transform: none;
}
.car-info-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  font-size: 13px;
  font-weight: 600;
  margin: 10px 0;
  text-align: center;
}

.car-info-list li {
  border: 1px solid #ccc;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  padding: 3px;
  position: relative;
}
.car-info-list li::before {
  color: #424242;
  content: "\f14a";
  font-family: FontAwesome;
  margin-right: 5px;
}

.car-info-list li + li {
  border-left: 0;
}

.rent-btn {
  background-color: #000;
  color: #fff !important;
  display: inline-block;
  font-weight: 600;
  margin-top: 5px;
  padding: 8px 30px;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.rent-btn:hover {
  background-color: #ffd000;
  color: #fff;
}
.technical-info {
  margin-bottom: 15px;
  padding: 5px;
}

.single-sidebar {
  -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
  color: #575757;
  font-size: 15px;
  margin-bottom: 30px;
}

.single-sidebar h3 {
  background-color: var(--primary-color);
  color: #fff;
  font-size: 18px;
  padding: 12px 5px;
  text-align: center;
  text-transform: uppercase;
}

.single-sidebar:last-child {
  margin-bottom: 0;
}
.sidebar-body {
  line-height: 2;
  padding: 30px 15px;
}
.sidebar-body i.fa {
  color: #ffd000;
  font-size: 17px;
  margin-right: 4px;
  text-align: center;
  width: 20px;
}
.whatsets {
  margin: 20px 0;
  padding: 20px 0;
  background: #a31412;
  text-align: center;
}
.whatBox {
  margin: 15px 0;
}
.whatBox h3 {
  margin: 10px 0;
  color: #fff;
  font-size: 14px;
  font-weight: 300;
}

.wtf {
  margin: 0;
  padding: 25px 0;
  background: linear-gradient(var(--primary-color), #fff);
  position: relative;
}
.enroll {
  position: relative;
  padding: 20px 0 30px;
}
.enroll h2 {
  margin-bottom: 15px;
  padding: 0;
  font-size: 30px;
  line-height: 28px;
  color:#fff;
}
.enroll h2 small {
  font-size: 15px;
}
.enroll .enroll-form {
  margin-top: 30px;
  text-align: left;
  border-radius: 5px;
}
.enroll .form-group {
  margin-bottom: 30px;
}
.enroll .form-group label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 5px;
  color:#fff;
}
.enroll .form-group input,
.enroll .form-group select {
  width: 100%;
  height: 40px;
  color: #999;
  box-shadow: none;
  text-shadow: none;
  border: 0;
  border-bottom: 1px solid #e2e2e2;
  font-weight: 500;
  border-radius: 0;
  padding-left: 10px;
}
.enroll .form-group input:hover,
.enroll .form-group textarea:hover {
  padding-left: 15px;
}
.enroll .form-group textarea {
  height: 120px;
  color: #999;
  box-shadow: none;
  text-shadow: none;
  border: 0;
  resize: none;
  border-bottom: 1px solid #e2e2e2;
  font-weight: 400;
  margin-bottom: 0;
  padding: 10px;
  border-radius: 0;
}
.enroll .form-group .btn {
  background: #252525;
  color: #fff;
  text-align: center;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
  display: block;
  padding: 18px 30px;
  border-radius: 3px;
  border: 0;
}
.enroll .form-group .btn:before {
  display: none;
}

button.btn-extra,
input[type="button"].button.btn-extra,
a.button.btn-extra {
  font-size: 1em;
  height: 70px;
  padding: 0;
  background: transparent;
  line-height: 1.5em;
  border: 1px solid #ff6c00;
  border-left: none;
  position: relative;
  overflow: hidden;
  letter-spacing: 0;
  display: inline-table;
  table-layout: fixed;
  margin: 5px;
}
button.btn-extra > i,
input[type="button"].button.btn-extra > i,
a.button.btn-extra > i {
  width: 55px;
  vertical-align: middle;
  background: #ff6c00;
  color: #fff;
  font-size: 36px;
  display: table-cell;
  height: 70px;
  text-align: right;
  padding-right: 8px;
}
button.btn-extra > i:after,
input[type="button"].button.btn-extra > i:after,
a.button.btn-extra > i:after {
  display: block;
  content: "";
  position: absolute;
  left: 54px; /* before 55  Edit by yogesh*/
  border-bottom: 70px solid #ff6c00;
  border-right: 16px solid transparent;
  top: 0;
  bottom: 0;
}
button.btn-extra > span,
input[type="button"].button.btn-extra > span,
a.button.btn-extra > span {
  display: table-cell;
  vertical-align: middle;
  padding: 0 10px 0 20px;
  text-align: left;
  font-size: 13px;
}
button.btn-extra > span em,
input[type="button"].button.btn-extra > span em,
a.button.btn-extra > span em {
  color: #ff6c00;
  font-size: 1.6667em;
  font-weight: bold;
  font-style: normal;
}
button.btn-extra:hover,
input[type="button"].button.btn-extra:hover,
a.button.btn-extra:hover {
  color: inherit;
}

button.btn-extra.blue,
input[type="button"].button.btn-extra.blue,
a.button.btn-extra.blue {
  border-color: #8d2929;
}
button.btn-extra.blue > i,
input[type="button"].button.btn-extra.blue > i,
a.button.btn-extra.blue > i {
  background: #242424;
}
button.btn-extra.blue > i:after,
input[type="button"].button.btn-extra.blue > i:after,
a.button.btn-extra.blue > i:after {
  border-bottom-color: #242424;
}
button.btn-extra.blue > span em,
input[type="button"].button.btn-extra.blue > span em,
a.button.btn-extra.blue > span em {
  color: #8d2929;
}
button.btn-extra.yellow,
input[type="button"].button.btn-extra.yellow,
a.button.btn-extra.yellow {
  border-color: var(--primary-color);
}
button.btn-extra.yellow > i,
input[type="button"].button.btn-extra.yellow > i,
a.button.btn-extra.yellow > i {
  background: var(--primary-color);
}
button.btn-extra.yellow > i:after,
input[type="button"].button.btn-extra.yellow > i:after,
a.button.btn-extra.yellow > i:after {
  border-bottom-color: var(--primary-color);
}
button.btn-extra.yellow > span em,
input[type="button"].button.btn-extra.yellow > span em,
a.button.btn-extra.yellow > span em {
  color: var(--primary-color);
}

.testiboxs {
  box-shadow: 0 0 5px #ccc;
  margin: 10px 0px 20px 0px;
  padding: 10px;
  min-height: 180px;
}
.testiboxs img {
  border: 4px double #999;
  float: left;
  margin: 0 10px 10px 0;
  padding: 0;
}
.testiboxs h6 {
  color: #000;
  font-size: 18px;
  margin: 10px 0px;
  padding: 0;
}
.testiboxs h6 small {
  color: #f00;
  font-size: 14px;
  margin: 0;
  padding: 0;
}
.testiboxs p {
  font-size: 14px;
  line-height: 24px;
  margin: 0;
  padding: 0;
  text-align: justify;
}

.reqQuote {
  width: 100%;
  margin: 10px 0;
  padding: 0px 0px;
  position: relative;
  background: #fff;
}

.reqQuote .img-column {
  position: absolute;
  left: 150px;
  bottom: 0px;
  background: url(../images/guard.png);
  width: 728px;
  height: 667px;
  background-repeat: no-repeat;
}
.reqQuote .inner-content {
  margin: 0;
  padding: 0;
}
.reqQuote .title-box {
  margin-bottom: 25px;
}
.reqQuote .title-box .form-title h2 {
  position: relative;
  margin-bottom: 2px;
  font-size: 36px;
}
.reqQuote .form-content h2 {
  font-size: 24px;
  margin: 0px 0 10px 0;
}

.reqQuote .title-box .text {
  position: relative;
  font-size: 16px;
  letter-spacing: 1px;
  color: #ffffff;
  text-transform: uppercase;
}
.reqQuote .form-content {
  padding: 25px;
  background: linear-gradient(var(--primary-color), #fff);;
  border: var(--primary-color) 1px solid;
  border-radius:10px;
}
.reqQuote .form-content .form-group {
  position: relative;
  margin-bottom: 20px;
}
.reqQuote .form-content .form-group input[type="text"],
.reqQuote .form-content .form-group input[type="email"],
.reqQuote .form-content .form-group select,
.reqQuote .form-content .form-group textarea {
  width: 100%;
  height: 40px;
  background: #ffffff;
  color: #666666;
  padding: 10px 20px;
  font-size: 14px;
  border: #ddc194 1px solid;
  border-radius: 0px;
  transition: all 500ms ease;
}

.reqQuote .form-content .form-group .btn {
  padding: 10px 30px;
  background: var(--primary-color);
  border: var(--primary-color) 1px solid;
  color: #fff;
}
.reqQuote .form-content .form-group .btn:hover {
  color: var(--primary-color);
  background:#fff;
}

.reqQuote .form-content .form-group textarea {
  height: 120px;
  resize: none;
}

.reqQuote .form-content .form-group input:focus,
.reqQuote .form-content .form-group textarea:focus,
.reqQuote .form-content .form-group .ui-selectmenu-button.ui-button:focus {
  border: 1px solid #222222;
}
.reqQuote .form-content .form-group label {
  display: inherit !important;
  color:#fff;
}
.reqQuote .form-content .form-group input[type="checkbox"],
.reqQuote .form-content .form-group input[type="radio"] {
  float: right;
}

.testi-section {
  position: relative;
  padding: 50px 0;
  text-align: center;
}
.testimonial-block-one {
  margin: 55px 0;
}
.testimonial-block-one .inner-box {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 48px 30px 71px 30px;
  border-radius: 10px;
  box-shadow: 3px 0px 6px var(--primary-color);
}

.testimonial-block-one .inner-box .rating-box li {
  position: relative;
  display: inline-block;
  font-size: 18px;
  color: #ffab01;
}

.testimonial-block-one .inner-box .rating-box {
  position: relative;
  margin-bottom: 23px;
}

.testimonial-block-one .inner-box .text {
  position: relative;
  margin-bottom: 23px;
}

.testimonial-block-one .inner-box .text p {
  font-size: 16px;
  line-height: 30px;
  font-weight: 500;
}

.testimonial-block-one .inner-box .text .icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 59px;
  height: 41px;
  background-repeat: no-repeat;
}

.testimonial-block-one .inner-box .author-box h4 {
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  margin-bottom: 0px;
}

.testimonial-block-one .inner-box .author-box .designation {
  position: relative;
  display: block;
  font-size: 15px;
  font-weight: 500;
}

.testimonial-block-one .inner-box .author-box .thumb-box {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -47px;
  width: 95px;
  height: 95px;
  background: #ffffff;
  padding: 7px;
  border-radius: 50%;
  box-shadow: 0px 20px 40px 0px rgba(6, 26, 58, 0.2);
}

.testimonial-block-one .inner-box .author-box .thumb-box img {
  width: 100%;
  border-radius: 50%;
}
#gentexid{
    background:var(--primary-color);
    color:#fff;
}