/********** Template CSS **********/
:root {
  --primary: #008dda;
  --secondary: #5f656f;
  --light: #f5f5f5;
  --dark: #008dda;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 30px;
  z-index: 99;
}

h1,
h2,
.h1,
.h2,
.fw-bold {
  font-weight: 700 !important;
}

h3,
h4,
.h3,
.h4,
.fw-medium {
  font-weight: 600 !important;
}

h5,
h6,
.h5,
.h6,
.fw-semi-bold {
  font-weight: 500 !important;
}

.btn-primary:hover {
  color: #fff;
  background-color: #008dda;
  border-color: #008dda;
}
.text-primary {
  color: #008dda !important;
}
.bg-primary {
  background-color: #41c9e2 !important;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
  background: none !important;
}

/*** Button ***/
.btn {
  transition: 0.5s;
  font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
  color: #ffffff;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
  margin-bottom: 35px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

.topbar-right {
  position: relative;
  background: #008dda;
}

.topbar-right::before {
  position: absolute;
  content: "";
  width: 30px;
  height: 100%;
  top: 0;
  left: -15px;
  transform: skewX(-30deg);
  background-color: #008dda;
}

/*** Navbar ***/
.navbar.sticky-top {
  top: -100px;
  transition: 0.5s;
  height: 95px;

}

.navbar .navbar-brand {
  position: relative;
  padding-right: 50px;
  height: 75px;
  display: flex;
  align-items: center;
  color: var(--primary);
  /*    background: var(--primary);*/
}
.navbar-collapse{
  background-color: #fff ;
}

/*
.navbar .navbar-brand::after {
    position: absolute;
    content: "";
    width: 50px;
    height: 100%;
    top: 0;
    right: -25px;
    transform: skewX(-30deg);
    background-color: var(--primary);
}
*/

.navbar .navbar-nav .nav-link {
  margin-right: 35px;
  padding: 20px 0;
  color: #222;
  font-size: 18px;
  font-weight: 500;
  outline: none;
}

/* logo */
.brand-logo{
  width: 290px;
}


.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: var(--primary);
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

@media (max-width: 991.98px) {
  .navbar .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }

  .navbar .navbar-nav {
    border-top: 1px solid #eeeeee;
  }
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    border: none;
    margin-top: 0;
    top: 150%;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
  }

  .navbar .nav-item:hover .dropdown-menu {
    top: 100%;
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
  }
}

/* Booking Form start */

.main-wrapper-booking .container {
  max-width: 1200px;
  margin: 20px auto;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.main-wrapper-booking h1 {
  text-align: center;
  color: #333;
}

.main-wrapper-booking .tabs {
  display: flex;
  margin-bottom: 20px;
  border-bottom: 1px solid #ddd;
}

.main-wrapper-booking .tab {
  padding: 10px 20px;
  cursor: pointer;
  background-color: #f1f1f1;
  border: 1px solid #ddd;
  border-bottom: none;
  margin-right: 5px;
}

.main-wrapper-booking .tab.active {
  background-color: #fff;
  border-bottom: 1px solid #fff;
  margin-bottom: -1px;
}

.main-wrapper-booking .form-container {
  display: none;
}

.main-wrapper-booking .form-container.active {
  display: block;
}

.main-wrapper-booking .form-row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.main-wrapper-booking .form-group {
  flex: 1;
  min-width: 300px;
  margin-right: 15px;
}

.main-wrapper-booking .form-group:last-child {
  margin-right: 0;
}

.main-wrapper-booking .full-width {
  width: 100%;
}

.main-wrapper-booking label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.main-wrapper-booking input[type="text"],
.main-wrapper-booking input[type="email"],
.main-wrapper-booking input[type="date"],
.main-wrapper-booking input[type="time"],
.main-wrapper-booking input[type="tel"],
.main-wrapper-booking input[type="number"],
.main-wrapper-booking select,
.main-wrapper-booking textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
}

.main-wrapper-booking textarea {
  height: 100px;
  resize: vertical;
}

.main-wrapper-booking .error {
  color: red;
  font-size: 12px;
  margin-top: 3px;
}

.main-wrapper-booking .button {
  background-color: #f7d800;
  color: #000;
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  font-weight: bold;
  border-radius: 4px;
  text-transform: uppercase;
}

.main-wrapper-booking .button:hover {
  background-color: #e5c800;
}

.main-wrapper-booking .success-message {
  background-color: #d4edda;
  color: #155724;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 4px;
}

.main-wrapper-booking .container.booking-wrap {
  padding: 0px;
  background: transparent;
  box-shadow: none;
}

.main-wrapper-booking .booking-wrap .tabs {
  margin-bottom: 0px;
}

.main-wrapper-booking div#maxitaxi-form,
#wheelchair-form {
  background: #fff;
  padding: 20px;
  border: 1px solid #ddd;
  border-top: 0px;
}
.main-wrapper-booking .tab {
  font-weight: 700;
  color: #000;
}
.main-wrapper-booking .container {
  background: transparent;
}

@media (max-width: 768px) {
  .main-wrapper-booking .form-group {
    min-width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }
}

/* Booking form ends */

/*** Header ***/
.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  background: linear-gradient(
    to right,
    rgb(0 141 218 / 83%) 0%,
    rgba(100, 34, 104, 0) 100%
  );
  z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
  width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3.5rem;
  height: 3.5rem;
  background-color: #222;
  border: 15px solid #222;
  border-radius: 3.5rem;
}

@media (max-width: 768px) {
  #header-carousel .carousel-item {
    position: relative;
    min-height: 450px;
  }

  #header-carousel .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.page-header {
  background: linear-gradient(
      to right,
      rgba(2, 36, 91, 1) 0%,
      rgba(2, 36, 91, 0) 100%
    ),
    url(../img/carousel-3-1.jpg) center center no-repeat;
  background-size: cover;
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
  color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
  font-size: 18px;
  color: var(--light);
}

/*** Facts ***/
.facts {
  position: relative;
  margin: 6rem 0;
  background: var(--dark);
}

.facts .border {
  border-color: rgba(255, 255, 255, 0.1) !important;
}

/*** Features ***/
.btn-play {
  position: absolute;
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
  display: block;
  box-sizing: content-box;
  width: 16px;
  height: 26px;
  border-radius: 100%;
  border: none;
  outline: none !important;
  padding: 18px 20px 20px 28px;
  background: var(--primary);
}

@media (max-width: 992px) {
  .btn-play {
    left: 50%;
    right: auto;
    transform: translate(-50%, -50%);
  }
}

.btn-play:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: 100%;
  animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: 100%;
  transition: all 200ms;
}

.btn-play span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  left: -1px;
  border-left: 16px solid #ffffff;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
    opacity: 0;
  }
}

.modal-video .modal-dialog {
  position: relative;
  max-width: 800px;
  margin: 60px auto 0 auto;
}

.modal-video .modal-body {
  position: relative;
  padding: 0px;
}

.modal-video .close {
  position: absolute;
  width: 30px;
  height: 30px;
  right: 0px;
  top: -30px;
  z-index: 999;
  font-size: 30px;
  font-weight: normal;
  color: #ffffff;
  background: #000000;
  opacity: 1;
}

/*** Service ***/
.service-item {
  position: relative;
  margin: 65px 0 25px 0;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.07);
}

.service-item .service-img {
  position: absolute;
  padding: 12px;
  width: 130px;
  height: 130px;
  top: -65px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.09);
  z-index: 2;
}

.service-item .service-detail {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 1;
}

.service-item .service-title {
  position: absolute;
  padding: 65px 30px 25px 30px;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #ffffff;
  transition: 0.5s;
}

.service-item:hover .service-title {
  top: -100%;
}

.service-item .service-text {
  position: absolute;
  overflow: hidden;
  padding: 65px 22px 25px 22px;
  width: 100%;
  height: 100%;
  top: 100%;
  left: 0;
  display: flex;
  align-items: center;
  text-align: center;
  background: rgb(0 141 218 / 71%);
  transition: 0.5s;
}

.service-item:hover .service-text {
  top: 0;
}

.service-item .service-text::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100px;
  top: -100%;
  left: 0;
  transform: skewY(-12deg);
  background: #ffffff;
  transition: 0.5s;
}

.service-item:hover .service-text::before {
  top: -55px;
}

.service-item .btn {
  position: absolute;
  width: 130px;
  height: 50px;
  left: 50%;
  bottom: -25px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  background: #ffffff;
  border: none;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.09);
  z-index: 2;
}

.service-item .btn:hover {
  color: #ffffff;
  background: var(--primary);
}

/*** Project ***/
.project-carousel {
  position: relative;
  background: var(--dark);
}

.project-item {
  position: relative;
  display: block;
}

.project-item img {
  transition: 0.5s;
}

.project-item:hover img,
.project-carousel .owl-item.center img {
  margin-top: -60px;
}

.project-item .project-title {
  position: absolute;
  padding: 0 15px;
  width: 100%;
  height: 80px;
  bottom: -110px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--dark);
  transition: 0.5s;
}

.project-item:hover .project-title,
.project-carousel .owl-item.center .project-title {
  bottom: -60px;
}

.project-item .project-title::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 30px;
  top: -15px;
  left: 0;
  transform: skewY(-5deg);
  background: var(--dark);
  transition: 0.5s;
}

.project-carousel .owl-nav {
  position: absolute;
  width: 100%;
  height: 45px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  transition: 0.5s;
  opacity: 0;
  z-index: 1;
}

.project-carousel:hover .owl-nav {
  opacity: 1;
}

.project-carousel .owl-nav .owl-prev,
.project-carousel .owl-nav .owl-next {
  margin: 0 30px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--primary);
  border-radius: 45px;
  font-size: 22px;
  transition: 0.5s;
}

/*** Team ***/
.team-item .team-social {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  display: flex;
  align-items: center;
  background: var(--primary);
  transition: 0.5s;
}

.team-item:hover .team-social {
  left: 0;
}

/*** Testimonial ***/
.testimonial-carousel::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 1;
}

.testimonial-carousel::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(
    to left,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 1;
}

@media screen and (max-width: 1400px) and (min-width: 1200px) {
  div.service-item > img.img-fluid {
    min-height: 350px;
  }
}
/*@media screen and (max-width:1200px) and (min-width:992px){
    .service-page div.service-item > img.img-fluid {
        min-height: 350px;
    }
}
*/
@media (min-width: 768px) {
  .testimonial-carousel::before,
  .testimonial-carousel::after {
    width: 200px;
  }
}

@media (min-width: 992px) {
  .testimonial-carousel::before,
  .testimonial-carousel::after {
    width: 300px;
  }
}

.testimonial-carousel .owl-nav {
  position: absolute;
  width: 350px;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  opacity: 0;
  transition: 0.5s;
  z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
  width: 300px;
  opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  position: relative;
  color: var(--primary);
  font-size: 45px;
  transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  color: var(--dark);
}

.testimonial-carousel .testimonial-img img {
  width: 100px !important;
  height: 100px;
}

.testimonial-carousel .testimonial-img .btn-square {
  position: absolute;
  bottom: -19px;
  left: 50%;
  transform: translateX(-50%);
}

.testimonial-carousel .owl-item .testimonial-text {
  margin-bottom: 30px;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
  transform: scale(0.8);
  transition: 0.5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
  transform: scale(1);
}

/*** Footer ***/
.footer {
  color: #b0b9ae;
  background: #010101;
}
.copyright {
  background: #212121;
}
.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: #b0b9ae;
  font-weight: normal;
  text-transform: capitalize;
  transition: 0.3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  color: var(--light);
  letter-spacing: 1px;
  box-shadow: none;
}

.copyright {
  color: #b0b9ae;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 50px;
}

.footer__sticky {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: #008dda;
  padding: 8px 5px;
  text-align: center;
}
.footer__sticky a {
  background: #ed8a22;
  border-radius: 3px;
  padding: 0 5px;
  width: 45%;
  margin: 0 5px;
  display: inline-block;
  color: #fff;
  font-size: 14.5px;
  height: 42px;
  line-height: 42px;
}
.footer__sticky a.whatsapp {
  background: #1bd741 !important;
}
.footer__sticky a img {
  vertical-align: middle;
  margin-right: 3px;
  height: 16px;
  width: 16px;
}

/* Sg custom style start */
#pickup_date,
#pickup_time,
#adv_pickup_date {
  background-color: inherit !important;
}

.sg-validated {
  border-color: #198754;
}

.required-field {
  color: red;
}

.loc-icon {
  padding: 6px 8px;
}

.sg-locations h6 {
  display: flex;
  gap: 10px;
  align-items: center;
}
/* Sg custom style end */

/***Travel Form**/
.radio-custom {
  display: flex;
  gap: 20px;
}
.radio-wrapper-block *,
.radio-wrapper-block *:after,
.radio-wrapper-block *:before {
  box-sizing: border-box;
}

.radio-wrapper-block .radio-input {
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(100%);
  clip-path: inset(100%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
.radio-wrapper-block .radio-input:checked + .radio-tile {
  border-color: #1bd741;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  color: #1bd741;
}
.radio-wrapper-block .radio-input:checked + .radio-tile:before {
  transform: scale(1);
  opacity: 1;
  background-color: #1bd741;
  border-color: #1bd741;
}
.radio-wrapper-block .radio-input:checked + .radio-tile .radio-icon {
  color: #1bd741;
}
.radio-wrapper-block .radio-input:checked + .radio-tile .radio-label {
  color: #008dda;
}
.radio-wrapper-block .radio-input:focus + .radio-tile {
  border-color: #1bd741;
  /* box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1), 0 0 0 4px #b5c9fc; */
}
.radio-wrapper-block .radio-input.is-invalid:focus + .radio-tile {
  border-color: #dc3545;
}
.radio-wrapper-block .radio-input:focus + .radio-tile:before {
  transform: scale(1);
  opacity: 1;
}

.radio-wrapper-block .radio-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 7rem;
  min-height: 7rem;
  border-radius: 0.5rem;
  border: 2px solid #b5bfd9;
  background-color: #fff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  transition: 0.15s ease;
  cursor: pointer;
  position: relative;
}
.radio-wrapper-block .radio-tile:before {
  content: "";
  position: absolute;
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid #b5bfd9;
  background-color: #fff;
  border-radius: 50%;
  top: 0.25rem;
  left: 0.25rem;
  opacity: 0;
  transform: scale(0);
  transition: 0.25s ease;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='192' height='192' fill='%23FFFFFF' viewBox='0 0 256 256'%3E%3Crect width='256' height='256' fill='none'%3E%3C/rect%3E%3Cpolyline points='216 72.005 104 184 48 128.005' fill='none' stroke='%23FFFFFF' stroke-linecap='round' stroke-linejoin='round' stroke-width='32'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
.radio-wrapper-block .radio-tile:hover {
  border-color: #008dda;
}
.radio-wrapper-block .radio-tile:hover:before {
  transform: scale(1);
  opacity: 1;
}

.radio-wrapper-block .radio-icon {
  transition: 0.375s ease;
  color: #494949;
}
.radio-wrapper-block .radio-icon svg {
  width: 2rem;
  height: 2rem;
  margin-bottom: 6px;
}

.radio-wrapper-block .radio-label {
  color: #707070;
  transition: 0.375s ease;
  text-align: center;
}
.select-trip {
  margin-top: 10px;
}
.travel-form input[type="number"]::-webkit-inner-spin-button,
.travel-form input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}
.loc-center {
  text-align: center;
}

.loading-image {
  height: 38px;
}

.loading-image-adv{
  height: 38px;
}

/* baljot's css */
.location-page-header{
  background: linear-gradient(    
    to right,    
    rgb(0 141 218 / 83%) 0%,    
    rgba(100, 34, 104, 0) 100%  ), 
    url(https://perthwheelchairtaxi.com.au/img/hero-location-bg.jpg) center center no-repeat !important;
  background-size: cover !important;
}

.abut-email-sec .btn-lg-square,
.abut-call-sec .btn-lg-square {
  margin-bottom: 0px;
}
.accordion-button::after {
  filter: brightness(0) invert(20%) sepia(0%) saturate(0%) hue-rotate(0deg);
}

.accordion-button:not(.collapsed)::after {
  filter: brightness(0) saturate(100%) invert(20%) sepia(90%) saturate(3000%)
    hue-rotate(200deg) !important;
}
.accordion-button:focus {
  box-shadow: none !important;

  border-color: transparent !important;
}
.accordion-button:not(.collapsed) {
  color: #008dda;
  background-color: #ebf2f6;
}
.map-section{
  order: 1;
}
.location-detail-section{
  order: 2;
}
.cls-btn-div{
  display: flex;
  justify-content: end;
}
.AdvanceBookingTitle{
  margin-top: -25px;
  margin-bottom: 20px;
}
.adv-booking-modal{
  border-radius: 10px;
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.25);
}
.thank-you-text{
  font-size: 46px;
}
.thank-you-content-1{
  font-size: 18px !important;
}
.thank-you-content-2{
  font-size: 14px;
  line-height: 24px;
}

.thank-you-section{
  width: 850px;
  border: 1px solid #DEF3FF;
  background-color: #F3FBFF;
  border-radius: 10px;
  align-self: center;
  padding: 60px 50px 60px 50px;
  z-index: 99;
}
.thank-you-container{
  margin-top: -130px;
  margin-bottom: 70px;
}
.orng-btn{
  background-color: #ed8a22;
  color: #fff;
  border: none;
}
/* .orng-btn:hover{
  background-color: #222222;
}
.orng-btn:focus{
  border-color: #222222;
  box-shadow: 0 0 0 .25rem #22222280;
} */
.thank-you-text{
  color: #000;
}
.thank-you-img{
  margin-bottom: 15px;
}
.page-header h1.display-3{
  font-size: 48px !important;
}
.footer .fa-id-card:before{
  font-size: 15px;
}
@media (min-width:1801px) {
  .modal-full-width{
    min-width: 1600px;
    width: 1600px;
  }
}

@media (min-width: 992px) and (max-width: 1800px) {
  .modal-full-width{
    min-width: 95%;
    max-width: 1600px;
    width: 95%;
  }
}

@media (min-width: 992px) and (max-width: 1400px) {
  .contact-div:has(.abut-email-sec) {
    display: flex;
    flex-direction: column;
  }
  .abut-email-sec,
  .abut-call-sec {
    width: 100%;
    margin-bottom: 20px;
  }

}
@media (min-width: 1200px) and (max-width: 1400px) {
  .map-section iframe{
    height: 450px !important; 
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .map-section iframe{
    height: 500px !important; 
  }
}



@media screen and (max-width: 992px){
  .map-section{
    order: 2;
  }
  .location-detail-section{
    order: 1;
  }
  .thank-you-section{
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  .thank-you-text{
    font-size: 28px;
  }
  .thank-you-hero-heading{
    font-size: 38px !important;
  }
  .brand-logo{
    width: 190px !important;
  }
  .navbar.sticky-top{
    height: 75px;
  }
  .page-header h1.display-3{
    font-size: 36px !important;
  }
}
@media screen and (max-width: 575px) {
  .hro-btns-resp{
    width: fit-content;
    align-self: center;
    margin-right: 0 !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  .thank-you-section{
    padding: 50px 20px 30px 20px;
  }
  .thank-you-container .orng-btn,
  .thank-you-container .black-btn{
    white-space: nowrap;
  }
  .thank-you-hero-heading{
    font-size: 30px !important;
  }
  .page-header h1.display-3{
    font-size: 28px !important;
  }

}
@media screen and (max-width: 400px) {
  .thank-you-hero-heading{
    font-size: 25px !important;
  }  
}
@media screen and (max-width: 350px) {
  .thank-you-hero-heading{
    font-size: 22px !important;
    line-height: 30px;
  }  
}

/* baljot's end */

@media screen and (max-width: 767px) {
  .navbar .navbar-brand {
    padding-right: 0;
    height: 75px;
    padding-left: 0 !important;
  }
  .navbar .navbar-brand h1 {
    font-size: 22px;
  }
  .navbar.sticky-top {
    top: -100px;
    transition: 0.5s;
    padding: 0 15px !important;
  }
  .display-5 {
    font-size: calc(1.225rem + 2.1vw);
  }
  h4,
  .h4 {
    font-size: calc(1.175rem + 0.3vw);
  }
  h3,
  .h3 {
    font-size: calc(1rem + 0.6vw);
  }
  .contact-div .btn-lg-square {
    margin: 20px 0px;
  }
  .contact-div h5 {
    font-size: 16px;
  }
  .service-div-about {
    flex-wrap: wrap;
    margin: 0px !important;
  }
  .service-div-about .exp-div {
    width: 100%;
    margin-bottom: 20px;
  }
  .service-div-about .checklist-div {
    margin-left: 10px !important;
  }
  .testimonial-carousel .owl-nav {
    display: none;
  }
  .travel-form {
    margin-top: 0px;
  }
  .travel-form form.container {
    padding: 0px 0px;
  }
  .loc-center {
    text-align: left;
  }
}
