/**
 * Copyright 2024 The RCodeStudio Authors
 */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
  --white: #ffffff;
  --white-50: rgba(255, 255, 255, 0.2);
  --light: #e2e8f0;
  --light-1: #efefef;
  --dark: #1b1b1b;
  --dark-50: rgba(0, 0, 0, 0.2);
  --dark-2: #282828;
  --dark-3: #242424;
  --dark-4: #2d2d2d;
  --dark-800: #1e2025;
  --dark-900: #1a1b1d;
  --blue: #1572d3;
  --blue-400: #1178ee;
  --blue-300: #3fb6f0;
  --blue-800: #1e3161;
  --light-blue: #e7f1fb;
  --gray: #697565;
  --gray-light: #d1d1d1;
  --gray-dark: #454545;
  --yellow: #efbf14;
  --green: #25d366;
  --background: var(--white);
  --fourground: var(--white);
  --blur-bg: var(--white-50);
  --sm-blur-bg: rgba(255, 255, 255, 0.7);
  --footer-bg: var(--dark-800);
  --colored-text: var(--blue);
  --text-color: var(--dark-3);
  --light-border: var(--light-1);
  --border-color-blue: var(--blue);
  --input-border-color: var(--gray-light);
  --menu-hover-bg: var(--light-blue);
  --text-light: var(--gray);
  --footer-text: var(--white);
  --light-bg: var(--light-blue);
  --w-image: 500px;
  --calculate: calc(3 / 2);
  --box-shadow: 0px 0px 15px rgba(119, 144, 197, 0.1);
  --box-shadow-big: 3px 3px 20px rgba(119, 144, 197, 0.3);
}

html[data-theme=dark] {
  --background: var(--dark);
  --fourground: var(--dark-2);
  --footer-bg: var(--dark-800);
  --blur-bg: var(--dark-50);
  --sm-blur-bg: rgba(27, 27, 27, 0.6);
  --colored-text: var(--blue);
  --text-color: var(--white);
  --footer-text: var(--blue);
  --light-border: var(--dark-4);
  --border-color-blue: var(--dark-2);
  --input-border-color: var(--gray-dark);
  --menu-hover-bg: var(--dark-900);
  --text-light: var(--gray);
  --light-bg: var(--dark-800);
  --box-shadow: 2px 2px 15px rgba(17, 17, 17, 0.5);
  --box-shadow-big: 3px 3px 20px rgba(17, 17, 17, 0.6);
}

/* ===== Scrollbar CSS ===== */
::-webkit-scrollbar {
  width: 15px;
  border-radius: 10px !important;
}

::-webkit-scrollbar-track {
  background: var(--dark);
}

::-webkit-scrollbar-thumb {
  background-image: linear-gradient(#4bdede, #7a7df6);
  border-radius: 10px !important;
  border: 3px solid var(--dark);
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--blue-400);
}

.select2-results__options::-webkit-scrollbar-track {
  background: var(--light-bg);
}

.select2-results__options::-webkit-scrollbar-thumb {
  background-image: linear-gradient(#4bdede, #7a7df6);
  border-radius: 10px !important;
  border: 3px solid var(--light-bg);
}

a {
  text-decoration: none;
}

.mt-50 {
  margin-top: 50px !important;
}

.mt-100 {
  margin-top: 100px !important;
}

.mt-150 {
  margin-top: 150px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mb-100 {
  margin-bottom: 100px !important;
}

.mb-150 {
  margin-bottom: 150px !important;
}

.h-100 {
  height: 100% !important;
}

.btn-show-more {
  height: 46px;
  width: 220px;
  text-align: center;
  line-height: 46px;
  padding: 0;
  border: 2px solid var(--input-border-color);
  color: var(--text-color);
  font-size: 14px;
  transition: all 0.3s ease-in-out;
}
.btn-show-more .bi {
  position: relative;
  left: 0;
  transition: all 0.3s ease-in-out;
}
.btn-show-more:hover {
  color: var(--text-color);
  border: 2px solid var(--input-border-color);
}
.btn-show-more:hover .bi {
  left: 5px;
}

.light-bg {
  background: var(--light-bg);
}

.py-100 {
  padding: 100px 0 60px 0;
}

.mt-80 {
  margin-top: 80px;
}

.bg-yellow {
  background: var(--yellow) !important;
}

.text-dark {
  color: var(--dark) !important;
}

.text-light {
  color: var(--text-light) !important;
}

.light-border {
  border-color: var(--input-border-color) !important;
  opacity: 1;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: var(--background);
}

.brand-logo {
  height: 30px;
  width: auto;
}

.custom-form-control {
  background-color: var(--background);
  color: var(--text-color);
  border-color: var(--input-border-color);
  outline: none;
  box-shadow: none;
  font-weight: normal;
}
.custom-form-control::-moz-placeholder {
  color: var(--text-light);
}
.custom-form-control::placeholder {
  color: var(--text-light);
}
.custom-form-control:focus, .custom-form-control:active, .custom-form-control:focus-visible {
  background-color: var(--background);
  color: var(--text-color);
  border-color: var(--input-border-color);
  outline: none;
  box-shadow: none;
}

.outline-btn {
  width: auto;
  height: 40px;
  background-color: transparent;
  color: var(--text-color);
  border: 2px solid var(--input-border-color);
  text-align: center;
  line-height: 40px;
  padding: 0 20px;
  outline: none;
}
.outline-btn:hover, .outline-btn:active, .outline-btn:focus {
  background-color: transparent !important;
  color: var(--text-color) !important;
  border: 2px solid var(--input-border-color) !important;
}

.bd-mode-toggle .dropdown-toggle .theme-icon-active {
  fill: var(--white) !important;
}
.bd-mode-toggle .btn {
  background-color: var(--blue);
  border: 0;
  color: var(--white);
}
.bd-mode-toggle .btn:active {
  background-color: var(--blue);
  border: 0;
}
.bd-mode-toggle .btn::after {
  display: none;
}
.bd-mode-toggle .dropdown-menu {
  background-color: var(--background);
}
.bd-mode-toggle .dropdown-menu .dropdown-item {
  color: var(--text-color);
}
.bd-mode-toggle .dropdown-menu .dropdown-item:hover {
  background-color: var(--input-border-color);
}
.bd-mode-toggle .dropdown-menu .dropdown-item .bi {
  vertical-align: -0.125em;
  fill: var(--white);
}
.bd-mode-toggle .dropdown-menu .dropdown-item .bi use {
  fill: var(--text-color);
  opacity: 0.5;
}
.bd-mode-toggle .dropdown-menu .active .bi {
  display: block !important;
}

.navbar {
  height: 80px;
}
.navbar .navbar-toggler {
  width: 46px;
  height: 46px;
  text-align: center;
  outline: none;
  box-shadow: none;
  background-color: transparent;
  padding: 0;
  border: 0;
}
.navbar .navbar-toggler .hamburger:hover {
  cursor: pointer;
}
.navbar .navbar-toggler .hamburger .line {
  width: 40px;
  height: 4px;
  background-color: var(--blue);
  display: block;
  margin: 8px auto;
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}
.navbar .navbar-toggler #hamburger.is-active {
  transition: all 0.3s ease-in-out;
  transition-delay: 0.6s;
  transform: rotate(45deg);
}
.navbar .navbar-toggler #hamburger.is-active .line:nth-child(2) {
  width: 0px;
}
.navbar .navbar-toggler #hamburger.is-active .line:nth-child(1),
.navbar .navbar-toggler #hamburger.is-active .line:nth-child(3) {
  transition-delay: 0.3s;
}
.navbar .navbar-toggler #hamburger.is-active .line:nth-child(1) {
  transform: translateY(12px);
}
.navbar .navbar-toggler #hamburger.is-active .line:nth-child(3) {
  transform: translateY(-12px) rotate(90deg);
}
.navbar .offcanvas .offcanvas-header {
  border-bottom: 1px solid var(--light-bg);
}
.navbar .offcanvas .offcanvas-header .offcanvas-title {
  color: var(--text-color);
}
.navbar .offcanvas .offcanvas-header .close-button {
  background-color: var(--light-bg);
  color: var(--text-color);
  border: 0;
  width: 36px;
  height: 36px;
  border-radius: 4px;
  margin-left: auto;
}
.navbar .nav-item .nav-link {
  font-weight: 500;
  color: var(--text-color);
  padding: 10px 15px;
  border-radius: 6px;
}
.navbar .nav-item .nav-link:hover {
  font-weight: 500;
  background-color: var(--menu-hover-bg);
  color: var(--blue);
}

@media (min-width: 992px) {
  .navbar {
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    background-color: var(--blur-bg);
  }
}
@media (max-width: 991.98px) {
  .navbar {
    background-color: var(--background);
  }
  .navbar .offcanvas {
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    background: var(--sm-blur-bg);
  }
  .navbar .navbar-nav .nav-item .nav-link {
    display: flex;
  }
  .navbar .navbar-nav .nav-item .nav-link span {
    color: var(--blue);
  }
  .navbar .bd-mode-toggle {
    width: 100%;
    margin-top: 30px;
  }
  .navbar .bd-mode-toggle .dropdown-toggle {
    width: 100%;
  }
  .navbar .bd-mode-toggle .dropdown-menu {
    position: relative;
  }
}
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--background);
  overflow: hidden;
  position: relative;
}
.hero::after {
  content: "";
  width: 900px;
  height: 900px;
  border: 250px solid var(--border-color, #2575ff);
  border-radius: 50%;
  position: absolute;
  right: -420px;
  bottom: -400px;
  z-index: 0;
  transition: border-color 0.5s ease-in-out;
}
.hero .container {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.hero .slider-caption {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.hero .slider-caption .caption-item {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  transform: translateY(30px);
}
.hero .slider-caption .caption-item .caption-title {
  font-size: 46px;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 20px;
  animation: fadeDown 0.5s ease-in-out;
}
.hero .slider-caption .caption-item .caption-title span {
  font-weight: 700;
  text-transform: capitalize;
}
.hero .slider-caption .caption-item .caption-text {
  color: var(--text-color);
  animation: fadeUp 0.5s ease-in-out;
}
.hero .slider-caption .caption-item[style="display: block;"] {
  opacity: 1;
}
.hero .carousel-inner .carousel-item {
  padding: 40px;
  z-index: 1;
}
.hero .carouselControl {
  position: absolute;
  right: 0;
  bottom: 30px;
  z-index: 11;
}
.hero .carouselControl button {
  border: 0;
  background-color: var(--dark-50);
  width: 40px;
  height: 40px;
  border-radius: 5px;
  text-align: center;
  line-height: 40px;
  opacity: 0.5;
}
.hero .carouselControl button:hover {
  opacity: 1;
}
.hero .carouselControl button span {
  width: 1rem;
  height: 1rem;
}

/* Target iPads in portrait view and set height to 768px */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  .hero {
    height: 768px;
  }
}
@media (min-width: 1400px) {
  .hero::after {
    content: "";
    width: 1200px;
    height: 1200px;
    border: 300px solid var(--border-color, #2575ff);
    right: -500px;
    bottom: -500px;
  }
  .hero .trip-form {
    bottom: 20px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.99px) {
  .hero::after {
    content: "";
    width: 1100px;
    height: 1100px;
    border: 260px solid var(--border-color, #2575ff);
    right: -500px;
    bottom: -500px;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero .slider-caption {
    margin-top: 80px !important;
    text-align: center;
  }
  .hero .carouselControl {
    bottom: 50px;
  }
  .hero .trip-form {
    bottom: 30px;
  }
}
@media (max-width: 767.98px) {
  .hero::after {
    content: "";
    width: 900px;
    height: 900px;
    border: 180px solid var(--border-color, #2575ff);
    right: -400px;
    bottom: -500px;
  }
  .hero .slider-caption {
    text-align: center;
    margin-top: -50px;
  }
  .hero .carousel-inner .carousel-item {
    padding: 0px;
  }
  .hero .carouselControl {
    display: none;
  }
  .hero .trip-form {
    position: absolute;
    bottom: 50px;
  }
  .select2-container--default .select2-selection--single {
    width: 100%;
  }
}
@media (max-width: 375px) {
  .hero::after {
    content: "";
    height: 700px;
    width: 700px;
    border: 150px solid var(--border-color, #2575ff);
    right: -300px;
    bottom: -400px;
  }
  .hero .carouselControl {
    display: none;
  }
  .hero .slider-caption .caption-item .caption-title {
    font-size: 28px;
  }
  .hero .trip-form {
    bottom: 20px;
  }
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeDown {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.search-car .form-control {
  height: 46px;
  background-color: var(--background);
  color: var(--text-color);
  border: 1px solid var(--input-border-color);
  outline: none;
  box-shadow: none;
}
.search-car .form-control::-moz-placeholder {
  color: #8c8c8c;
}
.search-car .form-control::placeholder {
  color: #8c8c8c;
}
.search-car .select2-container--default .select2-selection--single {
  height: 46px;
  background-color: var(--background);
  border: 1px solid var(--input-border-color);
}
.search-car .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 46px;
  color: var(--text-color);
}
.search-car .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 46px;
}
.search-car .btn {
  width: 100%;
  height: 46px;
  background-color: var(--blue);
  border: 0;
  color: var(--white);
  border-radius: 6px;
}

.trip-form {
  border-radius: 7px;
  padding: 20px;
  background: var(--fourground);
  position: relative;
  z-index: 1;
  box-shadow: 0 0px 12px 2px rgba(0, 0, 0, 0.1);
}
.trip-form .form-control-wrap {
  position: relative;
}
.trip-form .icon {
  position: absolute;
  right: 10px;
  color: #8c8c8c;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
}

.select2-container--open .select2-dropdown--above,
.select2-dropdown {
  background-color: var(--fourground) !important;
  border: 0;
  color: var(--text-color);
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  background-color: var(--background);
  color: var(--text-color);
  border: 0;
}

.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: var(--blue);
}

.brand-logos .box {
  display: grid;
  align-items: center;
  justify-items: center;
  width: 60%;
  height: auto;
  transition: transform 0.5s ease-in;
  margin: 8px auto;
}
.brand-logos .box img {
  max-width: 100%;
  max-height: 100%;
  height: 80px;
  width: 100%;
}
.brand-logos .box:hover {
  transform: scale(1.2);
}

.section {
  margin-top: 100px;
}
.section .section-title {
  text-align: center;
  margin-bottom: 50px;
}
.section .section-title span {
  font-weight: 700;
  color: var(--blue);
}
.section .section-title .section-tag {
  background-color: var(--light-bg);
  color: var(--blue);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  border-radius: 6px;
  padding: 10px 20px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 20px;
}
.section .section-title h1 {
  color: var(--text-color);
  font-weight: 500;
  margin-bottom: 20px;
}
.section .section-title p {
  width: 60%;
  margin: 0 auto;
  color: var(--text-light);
}

.hiw-card {
  border: 0;
  box-shadow: none;
  background-color: var(--background);
}
.hiw-card .card-body {
  text-align: center;
}
.hiw-card .card-body .icon-wraper {
  width: 100px;
  height: 100px;
  background-color: var(--light-bg);
  color: var(--blue);
  border-radius: 10px;
  text-align: center;
  display: flex;
  vertical-align: middle;
  margin: 0 auto;
  margin-bottom: 30px;
}
.hiw-card .card-body .icon-wraper svg {
  height: 50px;
  width: auto;
  margin: auto;
}
.hiw-card .card-body .icon-wraper svg path {
  fill: var(--blue);
}
.hiw-card .card-body h5 {
  color: var(--text-color);
  font-weight: 600;
  margin-bottom: 10px;
}
.hiw-card .card-body p {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 0;
}

.wcu-wraper {
  height: 100%;
  display: flex;
}
.wcu-wraper svg {
  height: 80%;
  margin: auto 0 auto -250px;
}
.wcu-wraper svg .st0 {
  fill: var(--light-bg);
}

.wcu-card {
  border: 0;
  box-shadow: none;
  background-color: var(--background);
}
.wcu-card .card-body {
  padding: 0;
  display: flex;
}
.wcu-card .card-body .icon {
  width: 60px;
  height: 60px;
  background-color: var(--light-bg);
  border-radius: 15px;
  text-align: center;
  display: flex;
  align-items: center;
  margin-right: 20px;
}
.wcu-card .card-body .icon svg {
  height: 36px !important;
  width: auto !important;
  margin: auto;
}
.wcu-card .card-body .icon svg path {
  fill: var(--blue);
}
.wcu-card .card-body .iconDetails h5 {
  color: var(--text-color);
}
.wcu-card .card-body .iconDetails p {
  color: var(--text-light);
  width: 70%;
}

@media (max-width: 991.98px) {
  .wcu-card .card-body .iconDetails p {
    width: 100%;
  }
  .wcu-wraper svg {
    height: 80%;
    margin: 0 auto;
  }
}
@media (max-width: 767.98px) {
  .wcu-card .card-body {
    display: block;
    text-align: center;
  }
  .wcu-card .card-body .icon {
    margin: 0 auto;
    margin-bottom: 20px;
  }
}
.item-card {
  background-color: var(--background);
  box-shadow: var(--box-shadow);
  border: 0;
  transition: all 0.3s ease-in-out;
}
.item-card:hover {
  box-shadow: var(--box-shadow-big);
}
.item-card:hover .card-body .d-grid .btn-block .bi {
  left: 5px;
}
.item-card .card-img-top {
  padding: 0 15px;
}
.item-card .card-body {
  padding: 0 15px 15px 15px;
  transition: 1s;
}
.item-card .card-body .card-title {
  color: var(--text-color);
  margin-bottom: 5px;
}
.item-card .card-body .review {
  display: flex;
  font-size: 13px;
  color: var(--text-light);
}
.item-card .card-body .review span {
  font-size: 12px;
}
.item-card .card-body .review strong {
  color: var(--text-color);
}
.item-card .card-body .review .bi {
  color: var(--yellow);
}
.item-card .card-body .item-detail {
  display: flex;
  font-size: 13px;
  color: var(--text-light);
}
.item-card .card-body .item-detail i {
  font-size: 18px;
  margin-right: 3px;
}
.item-card .card-body hr {
  border-color: var(--gray-light);
}
.item-card .card-body .d-grid .btn-block .bi {
  position: relative;
  left: 0;
  transition: all 0.3s ease-in-out;
}

.testimonial {
  padding: 80px 0;
  background-size: cover;
  background-repeat: no-repeat;
}

.card-tm {
  padding: 0;
  position: relative;
  border: 0;
  background-color: transparent;
}
.card-tm .card-body {
  position: relative;
  top: -50px;
  padding: 50px 20px 20px 20px;
  border-radius: 15px;
  box-shadow: var(--box-shadow);
  background-color: var(--background);
}
.card-tm .card-title {
  color: var(--text-color);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 0;
}
.card-tm .text-company {
  font-size: 14px;
  color: var(--text-light);
  text-align: center;
}
.card-tm .card-text {
  font-size: 14px;
  color: var(--text-color);
  text-align: left;
  margin-bottom: 0;
}
.card-tm .text-company {
  font-size: 14px;
}
.card-tm .testimonial-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid var(--blue);
  margin: 0 auto;
  z-index: 1;
}
.card-tm .testimonial-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card-tm hr {
  border-color: var(--text-light);
}
.card-tm .rating .stars span i {
  font-size: 14px;
  color: var(--yellow);
}
.card-tm .rating .rv {
  color: var(--text-color);
  font-weight: 400;
}
.card-tm .rating .badge {
  background-color: var(--blue);
  color: var(--white);
  font-weight: 400;
}

.owl-dot span {
  background-color: transparent !important;
  border: 2px solid var(--text-color) !important;
}
.owl-dot.active span {
  border: 2px solid var(--blue) !important;
  background-color: var(--blue) !important;
}

.grc-section {
  padding: 100px 0;
}
.grc-section .grc-card {
  background-color: var(--blue-400);
  padding: 50px;
  border: 0;
  border-radius: 20px;
}
.grc-section .grc-card .grc-text {
  height: 100%;
  display: grid;
  align-items: center;
}
.grc-section .grc-card .grc-text h3 {
  font-weight: 500;
  color: var(--white);
}
.grc-section .grc-card .grc-text p {
  font-size: 14px;
  color: var(--white);
}
.grc-section .grc-card .grc-text .btn {
  width: 160px;
  height: 40px;
  background: var(--white);
  color: var(--dark);
  font-weight: 500;
  text-align: center;
  line-height: 40px;
  border-radius: 6px;
  padding: 0;
  outline: none;
}
.grc-section .grc-card .car-img img {
  height: 200px;
  width: auto;
  text-align: left;
}

@media (max-width: 767.98px) {
  .grc-section {
    padding: 80px 0;
  }
  .grc-section .grc-card {
    padding: 20px;
  }
  .grc-section .grc-card .grc-text {
    text-align: center;
  }
  .grc-section .grc-card .grc-text .btn {
    margin: 0 auto;
  }
  .grc-section .grc-card .car-img img {
    height: 110px;
  }
}
.footer-section {
  background: var(--footer-bg);
  position: relative;
}
.footer-section .footer-cta {
  border-bottom: 1px solid var(--white-50);
}
.footer-section .single-cta i {
  color: var(--footer-text);
  font-size: 30px;
  float: left;
  margin-top: 8px;
}
.footer-section .cta-text {
  padding-left: 15px;
  display: inline-block;
}
.footer-section .cta-text h4 {
  color: var(--white);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 2px;
}
.footer-section .cta-text span {
  color: var(--white);
  font-size: 15px;
}
.footer-section .footer-content {
  position: relative;
  z-index: 2;
}
.footer-section .footer-content .footer-logo {
  margin-bottom: 20px;
}
.footer-section .footer-content .footer-logo img {
  max-width: 200px;
}
.footer-section .footer-content .footer-text p {
  margin-bottom: 14px;
  font-size: 14px;
  color: var(--white);
}
.footer-section .footer-content .footer-social-icon span {
  color: var(--white);
  display: block;
  font-size: 20px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}
.footer-section .footer-content .footer-social-icon a {
  color: var(--white);
  font-size: 22px;
  margin-right: 15px;
}
.footer-section .footer-content .footer-social-icon a i {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 38px;
  border-radius: 50%;
}
.footer-section .footer-content .footer-widget .footer-widget-heading h3 {
  color: var(--white);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 40px;
  position: relative;
}
.footer-section .footer-content .footer-widget .footer-widget-heading h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  height: 2px;
  width: 50px;
  background: var(--blue);
}
.footer-section .footer-content .footer-widget ul {
  list-style: none;
}
.footer-section .footer-content .footer-widget ul li {
  display: inline-block;
  float: left;
  width: 50%;
  margin-bottom: 12px;
}
.footer-section .footer-content .footer-widget ul li a {
  color: var(--white);
  text-transform: capitalize;
  font-size: 14px;
}
.footer-section .footer-content .footer-widget ul li a:hover {
  color: var(--white);
}
.footer-section .footer-content .subscribe-form {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.footer-section .footer-content .subscribe-form input {
  width: 100%;
  height: 50px;
  padding: 5px 15px;
  background: var(--background);
  color: var(--text-color);
  border: 1px solid var(--light-border);
  border-radius: 6px !important;
  outline: none;
}
.footer-section .footer-content .subscribe-form button {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 60px;
  height: 40px;
  background: var(--blue);
  text-align: center;
  line-height: 40px;
  border: 0;
  border-radius: 4px;
}
.footer-section .footer-content .subscribe-form button i {
  color: var(--white);
  font-size: 18px;
  transform: rotate(-6deg);
}
.footer-section .copyright-area {
  background: var(--blur-bg);
  padding: 15px 0;
}
.footer-section .copyright-area .copyright-text p {
  margin: 0;
  font-size: 14px;
  color: var(--white);
}
.footer-section .copyright-area .copyright-text p a {
  color: var(--blue);
}
.footer-section .copyright-area .footer-menu ul {
  list-style: none;
  margin: 0;
  padding-left: 0;
}
.footer-section .copyright-area .footer-menu ul li {
  display: inline-block;
  margin-left: 20px;
}
.footer-section .copyright-area .footer-menu ul li:hover a {
  color: var(--white);
}
.footer-section .copyright-area .footer-menu ul li a {
  font-size: 14px;
  color: var(--white);
}

.floating_btn {
  position: fixed;
  bottom: 10px;
  right: 20px;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.floating_btn .contact_icon {
  background-color: var(--green);
  color: var(--white);
  width: 60px;
  height: 60px;
  font-size: 30px;
  border-radius: 50px;
  text-align: center;
  box-shadow: 2px 2px 3px var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translatey(0px);
  animation: pulse 1.5s infinite;
  box-shadow: 0 0 0 0 var(--green);
  animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  font-weight: normal;
  font-family: sans-serif;
  text-decoration: none !important;
  transition: all 300ms ease-in-out;
}
.floating_btn .text_icon {
  margin-top: 8px;
  color: var(--text-light);
  font-size: 13px;
}

@keyframes pulsing {
  to {
    box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
  }
}
.breadcrumb-wraper {
  background-color: var(--background);
  height: 40px;
  line-height: 40px;
  border-radius: 6px;
  padding: 0 20px;
}
.breadcrumb-wraper .breadcrumb {
  margin-bottom: 0;
}
.breadcrumb-wraper .breadcrumb .breadcrumb-item {
  font-size: 14px;
}
.breadcrumb-wraper .breadcrumb .breadcrumb-item a {
  color: var(--text-light) !important;
}
.breadcrumb-wraper .breadcrumb .breadcrumb-item.active {
  color: var(--blue) !important;
}

.item-details-wraper .img-wraper .big-img img {
  width: 100%;
  height: auto;
}
.item-details-wraper .img-wraper .small-img {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
}
.item-details-wraper .img-wraper .small-img li {
  padding: 10px;
  border: 2px solid var(--light-border);
  cursor: pointer;
}
.item-details-wraper .img-wraper .small-img li:not(:last-child) {
  margin-right: 15px;
}
.item-details-wraper .img-wraper .small-img li img {
  width: 100%;
  height: auto;
}
.item-details-wraper .img-wraper .small-img li.active {
  border: 2px solid var(--blue);
}

.item-details .item-title {
  color: var(--text-color);
}
.item-details .review {
  display: flex;
}
.item-details .review i {
  color: var(--yellow);
}
.item-details .review p {
  color: var(--text-light);
}
.item-details .review p strong {
  color: var(--text-color);
}
.item-details .details-text .card {
  background: var(--background);
  border-color: var(--light-border);
  display: flex;
  flex-direction: row;
  padding: 15px;
}
.item-details .details-text .card i {
  font-size: 30px;
  color: var(--blue);
  display: flex;
  align-items: center;
  margin-right: 20px;
}
.item-details .details-text .card .desc-text small {
  color: var(--text-light);
}
.item-details .details-text .card .desc-text p {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-color);
  margin-bottom: 0;
}
.item-details .description h5 {
  font-weight: 600;
  color: var(--text-color);
  margin: 30px 0 15px 0;
}
.item-details .description p {
  color: var(--text-light);
}

.single-title {
  color: var(--text-color);
  margin-bottom: 20px;
  font-weight: 600;
}
.single-title small {
  font-weight: 500;
  color: var(--text-light);
}

.review-card {
  background-color: var(--background);
  border-color: var(--input-border-color);
}
.review-card:not(:last-child) {
  margin-bottom: 20px;
}
.review-card .card-header {
  border-bottom: 1px solid var(--input-border-color);
}
.review-card .card-header .customer {
  display: flex;
  align-items: center;
}
.review-card .card-header .customer .customer-img {
  width: 50px;
  height: 50px;
  border-radius: 25px;
  background-size: cover;
  margin-right: 10px;
}
.review-card .card-header .customer .customer-info .customer-name {
  color: var(--text-color);
  margin-bottom: 0;
}
.review-card .card-header .customer .customer-info i {
  font-size: 12px;
  color: var(--yellow);
}
.review-card .card-header .customer .r-date {
  margin-left: auto;
  color: var(--text-light);
}
.review-card .card-text {
  font-size: 14px;
  color: var(--text-light);
}

.content .section-tag {
  background-color: var(--light-bg);
  color: var(--blue);
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 5px;
  padding: 5px 12px;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.content h1 {
  color: var(--text-color);
  margin-bottom: 40px;
}
.content h1 span {
  color: var(--blue);
  font-weight: 700;
}
.content p {
  color: var(--text-light);
  margin-bottom: 30px;
}
.content ul {
  padding-left: 20px;
}
.content ul li {
  display: inline-block;
  color: var(--text-color);
}
.content ul li:not(:last-child) {
  margin-bottom: 20px;
  margin-right: 20px;
}
.content ul li span {
  width: 30px;
  height: 30px;
  display: inline-block;
  text-align: center;
  line-height: 30px;
  border-radius: 25px;
  background: var(--light-bg);
  color: var(--white);
  font-size: 18px;
  margin-right: 15px;
}
.content ul li span i {
  color: var(--blue);
}

.content-img .img-1 {
  height: 100%;
  overflow: hidden;
  border-radius: 20px;
  transition: all 0.5s ease-in-out;
  cursor: pointer;
}
.content-img .img-1:hover img {
  scale: 1.1;
}
.content-img .img-1 img {
  height: 100%;
  width: auto;
  text-align: center;
  align-items: center;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.5s ease-in-out;
}
.content-img .img-2 {
  overflow: hidden;
  border-radius: 20px;
  transition: all 0.5s ease-in-out;
  cursor: pointer;
}
.content-img .img-2:hover img {
  scale: 1.1;
}
.content-img .img-2 img {
  width: 100%;
  height: auto;
  text-align: center;
  align-items: center;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.5s ease-in-out;
}
.content-img .content-img-text {
  background: var(--dark-3);
  text-align: center;
}
.content-img .content-img-text h1 {
  color: var(--blue);
}
.content-img .content-img-text small {
  color: var(--blue);
  font-size: 18px;
}

.mission-vision .nav-pills {
  position: relative;
  background: var(--light-bg);
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px;
  border-radius: 10px;
}
.mission-vision .nav-pills .nav-item .nav-link {
  color: var(--text-color);
}
.mission-vision .nav-pills .nav-item .nav-link.active {
  background: var(--blue);
  color: var(--white);
}
.mission-vision .tab-content {
  padding: 30px;
  border: 1px solid var(--input-border-color);
  border-radius: 10px;
}
.mission-vision .tab-content .tab-pane p {
  color: var(--text-color);
}

.os-content-card {
  background: var(--background);
  border: 0;
  padding: 20px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.5 ease-in-out;
}
.os-content-card:hover {
  background-color: var(--light-bg);
}
.os-content-card:hover .os-icon i {
  background-color: var(--blue);
  color: var(--white);
}
.os-content-card .os-icon {
  margin-bottom: 30px;
}
.os-content-card .os-icon i {
  width: 50px;
  height: 50px;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  background: var(--light-bg);
  border-radius: 8px;
  color: var(--blue);
  font-size: 36px;
  transition: all 0.5 ease-in-out;
}
.os-content-card .os-content h5 {
  color: var(--text-color);
  font-weight: 600;
}
.os-content-card .os-content p {
  color: var(--text-light);
}

.os-card {
  background: var(--background);
  border: 0;
}
.os-card .card-body {
  text-align: center;
}
.os-card .card-body i {
  font-size: 60px;
  color: var(--blue);
}
.os-card .card-body h5 {
  font-weight: 700;
  color: var(--text-color);
  margin-top: 15px;
  margin-bottom: 20px;
}
.os-card .card-body p {
  color: var(--text-light);
  margin-bottom: 0;
}

.c-section h2 {
  color: var(--text-color);
}
.c-section p,
.c-section .text-decoration-none {
  color: var(--text-light);
}
.c-section h5 {
  color: var(--text-color);
}
.c-section small {
  color: var(--text-light);
}

.c-form {
  background: var(--background);
  border: 1px solid var(--input-border-color);
  border-radius: 10px;
}
.c-form .form-control {
  border-color: var(--input-border-color);
  background: var(--background);
  color: var(--text-color);
  outline: none;
  box-shadow: none;
}
.c-form .form-control::-moz-placeholder {
  background: var(--background);
  color: var(--text-light);
}
.c-form .form-control::placeholder {
  background: var(--background);
  color: var(--text-light);
}
.c-form .form-control:-webkit-autofill, .c-form .form-control:-webkit-autofill:hover, .c-form .form-control:-webkit-autofill:focus {
  background: var(--background) !important;
  color: var(--text-color) !important;
  box-shadow: 0 0 0px 1000px var(--background) inset !important;
}
.c-form .form-label {
  color: var(--text-color);
}
.c-form .input-group-text {
  background: var(--background);
  color: var(--text-color);
  border-color: var(--input-border-color);
}

.filter-wraper .filter {
  background: var(--background);
  border: 1px solid var(--input-border-color);
  border-radius: 10px;
  padding: 20px;
}
.filter-wraper .filter .filter-header {
  color: var(--text-color);
  display: none;
  margin-bottom: 20px;
}
.filter-wraper .filter .filter-header .filter-btn-cls {
  margin-left: auto;
  width: 36px;
  height: 36px;
  text-align: center;
  line-height: 36px;
  background-color: var(--light-bg);
  color: var(--text-color);
  border: 1px solid var(--light-border);
  padding: 0;
}
.filter-wraper .filter .filter-header .filter-btn-cls i {
  font-size: 18px;
}
.filter-wraper .filter .accordion .accordion-item {
  border: 0;
}
.filter-wraper .filter .accordion .accordion-item .accordion-header .accordion-button {
  background: var(--background);
  color: var(--text-color);
  border-bottom: 1px solid var(--input-border-color);
  border-radius: 0 !important;
  padding: 10px 20px;
  outline: none;
  box-shadow: none;
}
.filter-wraper .filter .accordion .accordion-item .accordion-header .accordion-button:hover, .filter-wraper .filter .accordion .accordion-item .accordion-header .accordion-button:active, .filter-wraper .filter .accordion .accordion-item .accordion-header .accordion-button:focus, .filter-wraper .filter .accordion .accordion-item .accordion-header .accordion-button:focus-visible {
  outline: none;
  box-shadow: none;
}
.filter-wraper .filter .accordion .accordion-item .accordion-header .accordion-button::after {
  --bs-accordion-btn-icon: url(
  	data:image/svg + xml,
  	%3csvgxmlns="http://www.w3.org/2000/svg"viewBox="0 0 16 16"fill="%236ea8fe"%3e%3cpathfill-rule="evenodd"d="M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z"/%3e%3c/svg%3e
  );
  --bs-accordion-btn-active-icon: url(
  	data:image/svg + xml,
  	%3csvgxmlns="http://www.w3.org/2000/svg"viewBox="0 0 16 16"fill="%236ea8fe"%3e%3cpathfill-rule="evenodd"d="M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z"/%3e%3c/svg%3e
  );
}
.filter-wraper .filter .accordion .accordion-item .accordion-body {
  background: var(--background);
}
.filter-wraper .filter .accordion .accordion-item .accordion-body .form-check {
  margin: 5px 0;
}
.filter-wraper .filter .accordion .accordion-item .accordion-body .form-check .form-check-input {
  background-color: transparent;
  border-color: var(--input-border-color);
  cursor: pointer;
}
.filter-wraper .filter .accordion .accordion-item .accordion-body .form-check .form-check-input:checked {
  background-color: var(--blue);
  border-color: var(--blue);
}
.filter-wraper .filter .accordion .accordion-item .accordion-body .form-check .form-check-input:checked::after {
  content: "";
}
.filter-wraper .filter .accordion .accordion-item .accordion-body .form-check .form-check-label {
  color: var(--text-light);
  width: 100%;
  cursor: pointer;
}

@media (max-width: 991.98px) {
  .filter-wraper {
    position: fixed;
    top: 80px;
    bottom: 0;
    left: -100%;
    right: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
    z-index: 5;
  }
  .filter-wraper.show {
    left: 0;
  }
  .filter-wraper .filter {
    border: 0;
    border-radius: 0;
    background-color: var(--light-bg);
    height: calc(100% - 70px);
    overflow-y: auto;
  }
  .filter-wraper .filter .filter-header {
    display: flex;
  }
}
.content-set-wraper {
  display: flex;
}
.content-set-wraper .per-page-wraper .form-select {
  width: auto;
  background: var(--background) url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="gray" class="bi bi-chevron-down" viewBox="0 0 16 16"%3E%3Cpath fill-rule="evenodd" d="M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z"/%3E%3C/svg%3E') no-repeat right 1rem center;
  color: var(--text-color);
  border: 1px solid var(--input-border-color);
  border-radius: 5px;
  outline: none !important;
  box-shadow: none !important;
  cursor: pointer;
  padding-right: 2.5rem; /* Ensure space for the arrow */
  /* To remove default arrow in some browsers */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.content-set-wraper .per-page-wraper .form-select option {
  cursor: pointer;
}
.content-set-wraper .per-page-wraper .form-select::after {
  display: block;
  clear: both;
  content: "";
}
.content-set-wraper .btn-sm {
  background: var(--light-bg);
  color: var(--text-color);
  border: 0 !important;
  outline: none !important;
  box-shadow: none !important;
}
.content-set-wraper .btn-sm:hover, .content-set-wraper .btn-sm:active, .content-set-wraper .btn-sm:focus, .content-set-wraper .btn-sm:focus-visible {
  background: var(--light-bg);
  color: var(--text-color);
  border: 0 !important;
  outline: none !important;
  box-shadow: none !important;
}

.grid-list {
  --color: var(--text-color);
  --background: var(--light-bg);
  --background-hover: var(--light-bg);
  --icon-color: var(--blue);
  padding: 6px 12px 6px 8px;
  margin: 0;
  display: flex;
  outline: none;
  position: relative;
  border: none;
  border-radius: 5px;
  background: var(--b, var(--background));
  cursor: pointer;
  -webkit-appearence: none;
  -webkit-tap-highlight-color: transparent;
  transform: scale(var(--scale, 1)) translateZ(0);
  transition: transform 0.15s, background 0.4s;
}
.grid-list:active {
  --scale: 0.95;
}
.grid-list:hover {
  --b: var(--background-hover);
}
.grid-list .icon {
  width: 24px;
  height: 24px;
  position: relative;
}
.grid-list .icon i {
  position: absolute;
  left: var(--left, 4px);
  top: var(--top, 4px);
  display: block;
  border-radius: 2px;
  width: var(--width, 7px);
  height: var(--height, 7px);
  background: var(--icon-color);
  animation: var(--name, var(--dots-name, none)) var(--duration, var(--dots-duration, 0.5s)) var(--easing, var(--dots-easing, linear)) forwards var(--delay, var(--dots-delay, 0s));
}
.grid-list .icon .dots i:nth-child(1) {
  --x-middle: -8px;
  --y-middle: 10px;
  --x-end: -2px;
  --y-end: 12px;
  --x-back: 10px;
  --y-back: 7px;
  --x-back-end: 9px;
  --y-back-end: 0;
}
.grid-list .icon .dots i:nth-child(2) {
  --left: 13px;
  --x-middle: -12px;
  --y-middle: 5px;
  --x-end: -11px;
  --y-end: 7px;
  --x-back: -3px;
  --y-back: 1px;
  --x-back-end: -9px;
  --y-back-end: 0;
}
.grid-list .icon .dots i:nth-child(3) {
  --top: 13px;
  --x-middle: 4px;
  --y-middle: -5px;
  --x-end: -2px;
  --y-end: -7px;
  --x-back: -5px;
  --y-back: 0px;
  --x-back-end: 9px;
  --y-back-end: 0;
}
.grid-list .icon .dots i:nth-child(4) {
  --left: 13px;
  --top: 13px;
  --x-middle: 0;
  --y-middle: -10px;
  --x-end: -11px;
  --y-end: -12px;
  --x-back: -14px;
  --y-back: -8px;
  --x-back-end: -9px;
  --y-back-end: 0;
}
.grid-list .icon .lines {
  --name: var(--lines-name, none);
  --duration: var(--lines-duration, 0.15s);
  --easing: var(--lines-easing, linear);
  --delay: var(--lines-delay, 0s);
}
.grid-list .icon .lines i {
  --left: 9px;
  --top: 3px;
  --height: 2px;
  --width: 11px;
  transform: translateY(20%) translateZ(0) scaleX(0);
}
.grid-list .icon .lines i:nth-child(2) {
  --top: 8px;
}
.grid-list .icon .lines i:nth-child(3) {
  --top: 13px;
}
.grid-list .icon .lines i:nth-child(4) {
  --top: 18px;
}
.grid-list .text {
  margin-left: 4px;
  position: relative;
  line-height: 24px;
  font-weight: 600;
  font-size: 14px;
  min-width: 28px;
  color: var(--color);
}
.grid-list .text span {
  --y-default: 0;
  --o-default: 1;
  --y-active: -12px;
  --o-active: 0;
  display: block;
  opacity: var(--o-default);
  transform: translateY(var(--y-default)) translateZ(0);
  animation: var(--span-name, none) 0.4s ease forwards;
}
.grid-list .text span:last-child {
  --y-default: 12px;
  --o-default: 0;
  --y-active: 0;
  --o-active: 1;
  position: absolute;
  left: 0;
  top: 0;
}
.grid-list.animation {
  --span-name: text;
  --dots-name: back;
  --lines-name: scale-down;
}
.grid-list.animation .lines i {
  transform-origin: 0 50%;
}
.grid-list.animation .lines i:nth-child(3), .grid-list.animation .lines i:nth-child(4) {
  transform-origin: 100% 50%;
}
.grid-list.animation.active {
  --span-name: text-active;
  --dots-name: move;
  --lines-name: scale;
  --lines-duration: 0.15s;
  --lines-delay: 0.3s;
}
.grid-list.animation.active .lines i {
  transform-origin: 100% 50%;
}
.grid-list.animation.active .lines i:nth-child(3), .grid-list.animation.active .lines i:nth-child(4) {
  transform-origin: 0 50%;
}

@keyframes text {
  0% {
    opacity: var(--o-active);
    transform: translateY(var(--y-active)) translateZ(0);
  }
  100% {
    opacity: var(--o-default);
    transform: translateY(var(--y-default)) translateZ(0);
  }
}
@keyframes text-active {
  0% {
    opacity: var(--o-default);
    transform: translateY(var(--y-default)) translateZ(0);
  }
  100% {
    opacity: var(--o-active);
    transform: translateY(var(--y-active)) translateZ(0);
  }
}
@keyframes move {
  50% {
    transform: translate(var(--x-middle, 0), var(--y-middle, 0)) scale(0.4);
  }
  100% {
    transform: translate(var(--x-end, 0), var(--y-end, 0)) scale(0.4);
  }
}
@keyframes back {
  0%, 15% {
    transform: translate(var(--x-end, 0), var(--y-end, 0)) scale(0.4);
  }
  50% {
    transform: translate(var(--x-back, 0), var(--y-back, 0)) scale(0.5);
  }
  100% {
    transform: translate(var(--x-back-end, 0), var(--y-back-end, 0)) scale(1);
  }
}
@keyframes scale {
  100% {
    transform: translateY(20%) translateZ(0) scaleX(1);
  }
}
@keyframes scale-down {
  0% {
    transform: translateY(20%) translateZ(0) scaleX(1);
  }
  100% {
    transform: translateY(20%) translateZ(0) scaleX(0);
  }
}
.pagination .page-item.active .page-link {
  background-color: var(--blue);
  color: var(--white);
}
.pagination .page-item .page-link {
  background: var(--background);
  color: var(--text-color);
  border-color: var(--input-border-color);
}

.list-view .row > [class*=col-] {
  max-width: 100%;
  flex: 0 0 100%;
}
.list-view .card {
  flex-direction: row;
}
@media (max-width: 575.98px) {
  .list-view .card {
    flex-direction: column;
  }
}
.list-view .card > .card-img-top {
  width: auto;
}
.list-view .card .card-body {
  display: inline-block;
}

.form-control {
  background: var(--background);
  border-color: var(--input-border-color);
  color: var(--text-color);
  outline: none;
  box-shadow: none;
}
.form-control::-moz-placeholder {
  color: var(--text-light);
}
.form-control::placeholder {
  color: var(--text-light);
}
.form-control:focus, .form-control:active, .form-control:hover {
  background: var(--background);
  color: var(--text-color);
  border-color: var(--input-border-color);
  outline: none;
  box-shadow: none;
}

.form-label,
.form-check-label {
  color: var(--text-color);
  font-size: 14px;
}

.form-check-input {
  background-color: transparent;
  border-color: var(--input-border-color);
  cursor: pointer;
}
.form-check-input:checked {
  background-color: var(--blue);
  border-color: var(--blue);
}
.form-check-input:checked::after {
  content: "";
}

.form-signin {
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  background-color: var(--blur-bg);
  border: 1px solid var(--input-border-color);
  border-radius: 10px;
}
.form-signin img {
  height: 40px;
  width: auto;
  display: flex;
  margin: 0 auto !important;
}
.form-signin h5 {
  color: var(--text-light);
  margin-top: 10px;
  margin-bottom: 30px;
  text-align: center;
}
.form-signin .btn {
  background: var(--blue);
  color: var(--white);
  border: 0;
}
.form-signin .btn:active, .form-signin .btn:focus, .form-signin .btn:hover, .form-signin .btn:focus-visible {
  background: var(--blue);
  color: var(--white);
}
.form-signin p {
  color: var(--text-light);
  font-size: 14px;
}

.page-header {
  margin-top: 80px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.page-header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.5s ease-in-out;
}
.page-header:hover::after {
  background-color: rgba(0, 0, 0, 0.2);
}
.page-header:hover img {
  transform: scale(1.05);
}
.page-header .page-header-title {
  position: absolute;
  color: var(--white);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}
.page-header img {
  width: 100%;
  height: auto;
  transition: all 1s ease-in-out;
}

.rule-head {
  color: var(--text-color);
  font-weight: 600;
}

.rule {
  margin-bottom: 30px;
}
.rule .rule-title {
  color: var(--text-color);
  font-weight: 600;
}
.rule .rule-desc {
  color: var(--text-light);
}
.rule .rule-number {
  color: var(--text-light);
}
.rule ul {
  list-style: circle;
}

@media (max-width: 767.98px) {
  .page-header {
    height: 160px;
    display: flex;
    justify-content: center;
  }
  .page-header img {
    height: 100%;
    width: auto;
    text-align: center;
    transition: all 1s ease-in-out;
  }
}
.checkout-card {
  background-color: var(--background);
  border: 1px solid var(--input-border-color);
}
.checkout-card hr {
  border-color: var(--input-border-color);
  opacity: 1;
}
.checkout-card .card-body p {
  color: var(--text-light);
}
.checkout-card .card-body p span {
  color: var(--text-color);
  font-weight: 500;
}
.checkout-card .card-body h5 {
  color: var(--text-color);
}

.no-cars {
  color: var(--text-color) !important;
}

.details-page-alert {
  border-left: 5px solid skyblue;
  font-size: 14px;
}

.lead {
  color: var(--text-light);
}

.text-base {
  color: var(--text-color);
}

.booking-form {
  position: relative;
}
.booking-form .form-control-wrap {
  position: relative;
}
.booking-form .icon {
  position: absolute;
  right: 10px;
  color: #8c8c8c;
  top: 60%;
  transform: translateY(-15%);
  font-size: 16px;
}
.booking-form .select2-container--default .select2-selection--single {
  height: 37.6px;
  background-color: var(--background);
  border: 1px solid var(--input-border-color);
}
.booking-form .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 38px;
  color: var(--text-color);
}
.booking-form .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 37.6px;
}
.booking-form hr {
  border-color: var(--input-border-color);
  opacity: 1;
}

/*======================
    404 page
=======================*/
.page_404 {
  height: 100vh;
  background: var(--background);
}
.page_404 .container {
  height: 100%;
  display: grid;
}
.page_404 img {
  width: 100%;
}
.page_404 .four_zero_four_bg {
  background-image: url(https://cdn.dribbble.com/users/285475/screenshots/2083086/dribbble_1.gif);
  height: 400px;
  background-position: center;
}
.page_404 .four_zero_four_bg h1 {
  font-size: 80px;
  font-weight: 600;
  color: var(--dark);
}
.page_404 .four_zero_four_bg h3 {
  font-size: 80px;
  color: var(--dark);
}
.page_404 .contant_box_404 {
  margin-top: 20px;
}
.page_404 .contant_box_404 h3 {
  color: var(--text-color);
}
.page_404 .contant_box_404 p {
  color: var(--text-light);
}
.page_404 .contant_box_404 .link_404 {
  color: #fff !important;
  padding: 10px 20px;
  background: #39ac31;
  margin: 20px 0;
  display: inline-block;
}

.success-section {
  height: 100vh;
}
.success-section .custom-jumbotron {
  margin-top: 150px !important;
  background: var(--light-bg);
  padding: 80px;
}
.success-section .custom-jumbotron .display-3 {
  color: var(--green);
}
.success-section .custom-jumbotron .lead {
  color: var(--text-color);
}
.success-section .custom-jumbotron p {
  color: var(--text-light);
}/*# sourceMappingURL=ui.css.map */