html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: #fff;
  color: #9D9086;
  font: 400 1rem/1.6 "Lato", sans-serif;
}

a {
  text-decoration: none;
  color: #3B3B3D;
  outline: none;
}

a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

h1, .h1 {
  font-size: 2.875rem;
  font-weight: 800;
  line-height: 1.3;
  font-family: "Lato", sans-serif;
  color: #3B3B3D;
}

h2, .h2 {
  font-size: 2.875rem;
  font-weight: 800;
  line-height: 1.3;
  font-family: "Lato", sans-serif;
  color: #3B3B3D;
  margin-bottom: 1rem;
  color: #003f88;
}

h3 {
  font-size: 1.875rem;
  font-weight: 800;
  line-height: 1.3;
  font-family: "Lato", sans-serif;
  color: #3B3B3D;
}

h4 {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.3;
  font-family: "Lato", sans-serif;
  color: #3B3B3D;
}

h5 {
  font-size: 1.375rem;
  font-weight: 800;
  line-height: 1.3;
  font-family: "Lato", sans-serif;
  color: #3B3B3D;
}

h6 {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.3;
  font-family: "Lato", sans-serif;
  color: #3B3B3D;
}

p {
  font: 400 1rem/1.6 "Lato", sans-serif;
  margin-bottom: 1.25rem;
  color: #9D9086;
}

h1 span, h2 span {
  color: #dc1c26;
}

.btn {
  font: 700 16px/1 "Lato", sans-serif;
  padding: 12px 25px;
  border-radius: 28px;
  min-width: 140px;
  min-height: 45px;
  text-transform: capitalize;
  color: #fff;
}

.btn-primary {
  background-color: #003f88;
  border-color: #003f88;
  color: #fff;
}

.btn-primary:active + .btn-primary, .btn-check:checked + .btn-primary, .btn-primary.active, .btn-primary:active, .show > .btn-primary.dropdown-toggle, .btn-primary:hover {
  background-color: #fff;
  border-color: #003f88;
  color: #003f88;
}

.btn-secondary {
  background-color: #dc1c26;
  border-color: #dc1c26;
  color: #fff;
}

.btn-secondary:active + .btn-secondary, .btn-check:checked + .btn-secondary, .btn-secondary.active, .btn-secondary:active, .show > .btn-secondary.dropdown-toggle, .btn-secondary:hover {
  background-color: #fff;
  border-color: #dc1c26;
  color: #dc1c26;
}

.text-primary {
  color: #003f88 !important;
}

.text-secondary {
  color: #dc1c26 !important;
}

.wrapper {
  overflow: hidden;
}

.fullwidth {
  position: relative;
  margin-left: 50%;
  width: 100vw;
  max-width: 100vw;
  clear: both;
}

ul.list {
  padding: 0;
  margin: 0 0 25px;
  list-style: none;
}

ul.list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 5px;
  font-size: 16px;
  color: #3B3B3D;
  font-weight: 600;
}

ul.list li:before {
  content: "\f105";
  font-family: fontAwesome;
  position: absolute;
  left: 0;
  top: 4px;
  border: 1px solid #dc1c26;
  color: #dc1c26;
  height: 20px;
  width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.section-padding {
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
}

.section-padding-top {
  padding-top: 6.25rem;
}

.section-padding-bottom {
  padding-bottom: 6.25rem;
}

.primary-color {
  color: #003f88;
}

/* Owl Carousel */
.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev {
  width: 40px;
  height: 40px;
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  outline: none !important;
  margin: 0;
}

.owl-carousel .owl-nav button.owl-next {
  right: -12%;
  background: url(../img/next.png) center center no-repeat rgba(0, 0, 0, 0.5) !important;
}

.owl-carousel .owl-nav button.owl-prev {
  left: -12%;
  background: url(../img/prev.png) center center no-repeat rgba(0, 0, 0, 0.5) !important;
}

.owl-theme .owl-nav {
  margin-top: 0px;
}

/*	------ HEADER PART ------  */
.header {
  background: #fff;
  padding: 10px 0;
}

.top-menu ul li a {
  font-family: "Lato", sans-serif;
}

.header .btn.btn-primary > i {
  position: relative;
  left: -5px;
}

@media screen and (min-width: 992px) {
  /*	Sticky Header  */
  .header.fix {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    padding: 10px 0;
    z-index: 999;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.97);
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-name: fadeInDown;
  }
  .header.fix .logo img {
    max-width: 80px;
  }
  @keyframes fadeInDown {
    0% {
      opacity: 0;
      transform: translate3d(0, -100%, 0);
    }
    100% {
      opacity: 1;
      transform: none;
    }
  }
  .top-menu ul {
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
  }
  .top-menu ul li {
    display: inline-block;
    position: relative;
    z-index: 991;
    margin: 0 5px;
  }
  .top-menu ul li a {
    padding: 4px 12px;
    font-weight: 600;
    color: #3B3B3D;
    font-size: 16px;
    display: block;
  }
  .top-menu ul li.dropdown > a:after {
    content: "";
    width: 12px;
    height: 10px;
    display: inline-block;
    margin-left: 4px;
    background: url(../img/dropdown.png) center center no-repeat;
  }
  .top-menu ul li a:hover,
  .top-menu ul li:hover > a,
  .top-menu ul li.current-menu-item > a {
    color: #003f88;
  }
  .top-menu ul ul {
    padding: 0;
    margin: 0;
    list-style: none;
    position: absolute;
    left: 0;
    width: 220px;
    background: #f3f2ee;
    padding: 10px 0;
    text-align: left;
  }
  .top-menu ul ul li {
    float: none;
    padding: 0 15px;
    margin: 0;
    display: block;
  }
  .top-menu ul ul li a {
    color: #111a21;
    display: block;
    padding: 5px;
    border: none;
    font-size: 18px;
  }
  .top-menu ul ul li.dropdown > a:after {
    display: none;
  }
  .top-menu ul ul li a:hover,
  .top-menu ul ul li:hover > a,
  .top-menu ul ul li.current-menu-item > a {
    color: #003f88;
  }
  .top-menu ul ul ul {
    left: 100%;
    top: 0;
  }
  .top-menu ul li:hover > ul {
    display: block;
  }
  .top-menu ul li ul {
    opacity: 0;
    z-index: 10;
    top: -9999em;
    box-shadow: 0 2px 7px rgba(0, 0, 0, 0.4);
    transform: scale(0.9);
    transform-origin: center top;
    transition-property: transform, opacity, top;
    transition-duration: 0.3s, 0.3s, 0s;
    transition-delay: 0s, 0s, 0.3s;
  }
  .top-menu ul li:hover > ul {
    top: 100%;
    opacity: 1;
    transform: scale(1);
    transition-delay: 0s;
  }
  .top-menu ul ul li:hover > ul {
    top: -10px;
    left: 100%;
  }
  .top-menu ul li.current-menu-item > a {
    font-weight: 700;
  }
}
/* ---  BANNER AREA-----*/
.home-banner {
  display: flex;
  align-items: center;
  position: relative;
  background: url(../img/BG.jpg) center center no-repeat;
  background-size: cover;
  padding: 5rem 0 9rem;
  min-height: 550px;
}
.home-banner .banner-backgound {
  position: absolute;
  right: 0;
  bottom: 0;
}
.home-banner .banner-backgound img {
  max-height: 450px;
}
.home-banner .container {
  position: relative;
  z-index: 1;
}
.home-banner .banner-content {
  max-width: 600px;
}
.home-banner .banner-content .banner-form-area .form-group {
  width: 480px;
  max-width: 100%;
  display: flex;
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
}
.home-banner .banner-content .banner-form-area .form-group .form-control {
  width: auto;
  flex: 1 1 auto;
  height: 60px;
  border: 0;
  background: url(../img/icon1.png) no-repeat 20px center;
  background-size: 22px;
  padding: 5px 10px 5px 50px;
}
.home-banner .banner-content .banner-form-area .form-group .btn {
  width: 150px;
  border-radius: 0;
  height: 60px;
}
.home-banner .banner-content .banner-form-area .form-group .btn:hover {
  background: #dc1c26;
  border-color: #dc1c26;
  color: #fff;
}
.home-banner .banner-content .banner-form-area .form-group input::-moz-placeholder {
  color: #959595;
}
.home-banner .banner-content .banner-form-area .form-group input::placeholder {
  color: #959595;
}
.home-banner .owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 0;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
}
.home-banner .owl-theme .owl-dots .owl-dot span {
  background: transparent;
  border: 1px solid #fff;
}
.home-banner .owl-theme .owl-dots .active.owl-dot span {
  background: #fff;
}

/* ---  FORM AREA -----*/
.form-control {
  height: 60px;
  border-radius: 28px;
  padding: 5px 20px;
}

.form-control:focus {
  outline: none;
  box-shadow: none;
}

/* ---  Instant Quote SECTION -----*/
.instant-quote-section {
  position: relative;
  margin-top: -110px;
}
.instant-quote-section .container {
  background: #dc1c26;
  border-radius: 8px;
  padding: 30px 40px 40px;
}
.instant-quote-section .container h2 {
  color: #fff;
  font-size: 1.875rem;
  margin-bottom: 5px;
}
.instant-quote-section .container p {
  color: #fff;
  margin-bottom: 12px;
}
.instant-quote-section .container .pickup-location, .instant-quote-section .container .drop-location {
  height: 60px;
  border-radius: 28px;
  /*padding: 0px;*/
  display: block;
  width: 100% !important;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: var(--bs-body-color);
  background: url(../img/icon2.png) no-repeat 20px center #fff;
  background-size: auto 20px;
  padding-left: 48px;
}
.instant-quote-section .container .pickup-location + .select2.select2-container > .selection > .select2-selection, .instant-quote-section .container .drop-location + .select2.select2-container > .selection > .select2-selection {
  height: 100%;
  padding: 5px 20px;
  padding-left: 45px;
  background: transparent;
  display: flex;
  align-items: center;
  border: 0;
}
.instant-quote-section .container .pickup-location + .select2.select2-container > .selection > .select2-selection .select2-selection__arrow, .instant-quote-section .container .drop-location + .select2.select2-container > .selection > .select2-selection .select2-selection__arrow {
  display: none;
}
.instant-quote-section .container .btn {
  height: 60px;
  width: 175px;
  max-width: 100%;
}

#quoteModal .modal-content {
  background-color: #003f88;
}
#quoteModal .modal-content .modal-header {
  border-color: rgba(255, 255, 255, 0.3);
}
#quoteModal .modal-content .modal-header .modal-title {
  color: #fff;
}
#quoteModal .modal-content .modal-header .quote_close {
  width: 30px;
  height: 30px;
  color: #fff;
  border: 0;
  border-radius: 50%;
  background-color: #dc1c26;
}
#quoteModal .modal-content .modal-body {
  padding: 25px 25px 30px;
}
#quoteModal .modal-content .modal-body .form-group {
  margin-bottom: 20px;
}
#quoteModal .modal-content .modal-body .form-group .form-control {
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.95);
  height: 48px;
  padding: 5px 15px;
}
#quoteModal .modal-content .modal-body .form-group .form-control:focus {
  background: rgb(255, 255, 255);
}
#quoteModal .modal-content .modal-body .form-group label {
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 5px 5px;
}

/* ---  Delivery Sameday SECTION -----*/
.delivery-section .delivery-card {
  margin: 0;
  padding: 0;
  border: 0;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  height: 100%;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}
.delivery-section .delivery-card .card-header {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
}
.delivery-section .delivery-card .card-header img {
  height: 210px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.delivery-section .delivery-card .card-body {
  margin: 0;
  padding: 25px 20px 35px;
  border: 0;
  background: none;
  text-align: center;
  height: 100%;
}

.about-section {
  position: relative;
  padding-top: 3rem;
}
.about-section .image-area {
  position: absolute;
  right: 5%;
  bottom: 0;
  z-index: -1;
}
.about-section .image-area img {
  max-height: 550px;
}
.about-section .about-list {
  display: flex;
  flex-wrap: wrap;
  max-width: 510px;
}
.about-section .about-list li {
  flex: 0 0 50%;
}

.box-section {
  position: relative;
  background: #F8F3EF;
  padding: 4.5rem 0;
}
.box-section .card {
  margin: 0;
  padding: 0;
  border: 0;
  background: #fff;
  box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transition: 0.6s;
  height: 100%;
}
.box-section .card .card-body {
  margin: 0;
  padding: 20px 20px;
  border: 0;
  text-align: center;
  height: 100%;
}
.box-section .card .card-body .head-part {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.box-section .card .card-body .head-part h3 {
  font-size: 32px;
  font-weight: 900;
  color: #003f88;
  margin: 0 0 0 10px;
  transition: 0.6s;
}
.box-section .card .card-body p {
  font-size: 15px;
  margin-bottom: 0;
  transition: 0.6s;
}
.box-section .card:hover {
  background: #003f88;
  transition: 0.6s;
}
.box-section .card:hover h3, .box-section .card:hover p {
  color: #fff !important;
  transition: 0.6s;
}

/* ---  Regular Trips SECTION -----*/
.regular-trips-section .card {
  margin: 0;
  padding: 40px 25px 45px;
  border: 0;
  text-align: center;
  background: #fff;
  box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transition: 0.6s;
}
.regular-trips-section .card .card-header {
  margin: 0;
  padding: 20px 0 0;
  border: 0;
  background: none;
  position: relative;
}
.regular-trips-section .card .card-header .price {
  color: #fff;
  background: #003f88;
  border-radius: 28px;
  padding: 5px 20px;
  display: inline-block;
  font-size: 18px;
  font-weight: 900;
  position: absolute;
  right: 20px;
  top: 0;
}
.regular-trips-section .card .card-body {
  margin: 20px 0 0;
  padding: 0;
  border: 0;
}
.regular-trips-section .card .card-body h3 {
  font-size: 24px;
  color: #003f88;
}
.regular-trips-section .card .card-body .date {
  font-size: 18px;
  font-weight: 700;
  color: #3B3B3D;
  margin: 15px 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.regular-trips-section .card .card-body .date img {
  margin-right: 10px;
}
.regular-trips-section .card:hover {
  background: #f8f3ef;
  transition: 0.6s;
}

/* ---  Video SECTION -----*/
.video-section {
  background-size: cover;
  height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-section .col-12 * {
  color: #fff;
}
.video-section p {
  margin-bottom: 15px;
}

/* ---  Testimonial SECTION -----*/
.testimonial-section .item {
  padding: 20px 2px;
}
.testimonial-section .owl-theme .owl-dots .owl-dot.active span, .testimonial-section .owl-theme .owl-dots .owl-dot:hover span {
  background: #003f88;
}

.testimonial-card {
  margin: 0;
  padding: 30px 25px 30px 65px;
  border: 1px solid #fff;
  text-align: center;
  background: #fff;
  box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transition: 0.4s;
}
.testimonial-card::before {
  content: "";
  width: 28px;
  height: 24px;
  background: url(../img/icon8.svg) no-repeat center center;
  background-size: auto;
  position: absolute;
  top: 35px;
  left: 20px;
}
.testimonial-card:hover {
  border: 1px solid #dc1c26;
  transition: 0.4s;
}
.testimonial-card .card-body {
  margin: 0;
  padding: 0px;
  border: 0;
  text-align: left;
}
.testimonial-card .card-body .d-flex img {
  border-radius: 50%;
}
.testimonial-card .card-body .d-flex h5 {
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  color: #dc1c26;
  margin-bottom: 5px;
}
.testimonial-card .card-body .d-flex p {
  margin-bottom: 0;
  line-height: 1;
}

/* ---  Contact SECTION -----*/
.contact-section {
  background-color: #F8F3EF;
}
.contact-section h2 {
  margin-bottom: 10px;
}
.contact-section p {
  margin-bottom: 30px;
}
.contact-section h5 {
  font-size: 16px;
  font-weight: 700;
  color: #dc1c26;
}
.contact-section .contact-area ul {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
}
.contact-section .contact-area ul li {
  display: inline-block;
  margin-right: 15px;
  color: #3B3B3D;
  font-weight: 700;
}
.contact-section .contact-area ul li:nth-last-child(1) {
  margin-right: 0px;
}
.contact-section .contact-area ul li img {
  margin-right: 8px;
}
.contact-section .contact-area ul:nth-last-child(1) li {
  display: block;
}
.contact-section .service-area {
  padding-top: 10px;
}
.contact-section .service-area h4 {
  color: #003f88;
  font-size: 20px;
  font-weight: 900;
  text-transform: capitalize;
  margin-bottom: 15px;
}
.contact-section .service-area h4 span {
  color: #dc1c26;
}
.contact-section .service-area ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.contact-section .service-area ul li {
  background-color: #fff;
  border-radius: 28px;
  padding: 5px 20px;
  margin: 0 15px 10px 0;
  display: inline-block;
  color: #3B3B3D;
  border: 1px solid #D6CBC3;
  transition: 0.4s;
}
.contact-section .service-area ul li:nth-last-child(1) {
  margin-right: 0;
}
.contact-section .service-area ul li:hover {
  background-color: #dc1c26;
  color: #fff;
  transition: 0.4s;
}

/* ---  FOOTER SECTION -----*/
footer {
  background-color: #022D5E;
  padding: 70px 0 0px;
  /*  Copyright Area  */
}
footer h3 {
  color: #fff;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 30px;
}
footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
footer ul li {
  display: block;
  color: #A7D0FF;
  margin-bottom: 10px;
}
footer ul li a {
  color: #A7D0FF;
  transition: 0.4s;
}
footer ul li a:hover {
  color: #fff;
  transition: 0.4s;
}
footer .address-area li {
  display: flex;
  margin-bottom: 15px;
}
footer .address-area li .flex-shrink-0 {
  width: 35px;
  display: flex;
  justify-content: center;
}
footer .newsletter-form .form-group {
  width: 310px;
  max-width: 100%;
}
footer .newsletter-form .form-group .form-control.email-form {
  height: 48px;
  margin-bottom: 10px;
  background: url(../img/icon-mail.svg) no-repeat #fff;
  background-size: 22px auto;
  background-position: 20px center;
  padding-left: 50px;
}
footer .copyright-row {
  margin-top: 30px;
  padding: 25px 0;
  border-top: 1px solid #778CB8;
}
footer .copyright-row p {
  margin-bottom: 0;
  color: #B8C3DB;
}
footer .copyright-row .social-icons {
  list-style: none;
}
footer .copyright-row .social-icons li {
  display: inline-block;
  margin: 0 10px;
}
footer .copyright-row .social-icons li a {
  color: #fff;
  font-size: 20px;
  transition: 0.4s;
}
footer .copyright-row .social-icons li a:hover {
  color: #dc1c26;
  transition: 0.4s;
}
footer .copyright-row .social-icons li:nth-last-child(1) {
  margin-right: 0;
}

/* ============ INNERPAGES CSS ============ */
.innerpage-banner {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0rem 0;
  /* &::before{content: ''; width: 100%; height: 100%; position: absolute; top: 0; left: 0; background: linear-gradient(90deg, rgba(241,234,228,1) 0%, rgba(248,241,235,1) 100%);} */
}
.innerpage-banner .banner-backgound {
  position: relative;
  width: 100%;
}
.innerpage-banner .container {
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  z-index: 1;
}
.innerpage-banner .banner-content {
  max-width: 600px;
}

.team-section .team-card {
  margin: 0;
  padding: 0;
  border: 0;
  box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}
.team-section .team-card .card-header {
  margin: 0;
  padding: 0;
  border: 0;
}
.team-section .team-card .card-header img {
  width: 100%;
}
.team-section .team-card .card-body {
  margin: 0;
  padding: 15px 5px;
  border: 0;
  text-align: center;
}
.team-section .team-card .card-body h4 {
  font-size: 20px;
  color: #3B3B3D;
  margin-bottom: 5px;
}
.team-section .team-card .card-body p {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
}

/*  Login / Registration  */
.login-section {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 4rem 0 5rem;
}
.login-section::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../img/map-img.jpg) center center no-repeat;
  background-size: cover;
  filter: blur(4px);
  z-index: -1;
}
.login-section .login-area {
  width: 500px;
  max-width: 100%;
  margin: auto;
  text-align: center;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 0 20px rgba(0, 63, 136, 0.2);
  padding: 30px;
  border: 2px solid #003f88;
}
.login-section .login-area .form-control {
  margin-bottom: 15px;
}
.login-section .extra-link a {
  color: #003f88;
  font-size: 15px;
  margin-bottom: 10px;
  display: inline-block;
}
.login-section .extra-link a:hover {
  color: #dc1c26;
}

/*  Admin Pannel  */
.password-mockup-tab {
  padding: 3rem 0;
  background: #f5f5f5;
  min-height: 85vh;
  display: flex;
  align-items: center;
}
.password-mockup-tab .password-mockup-wrap {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
}
.password-mockup-tab .password-mockup-wrap .nav.nav-pills {
  border-right: 1px solid #ccc;
  padding-right: 40px;
  margin-right: 40px !important;
  width: 220px;
}
.password-mockup-tab .password-mockup-wrap .nav.nav-pills ul.tab-nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.password-mockup-tab .password-mockup-wrap .nav.nav-pills ul.tab-nav-menu li {
  display: block;
  padding: 10px 0;
}

.btn-dashboard {
  padding: 0px 12px;
  font-weight: 600;
  color: #3B3B3D;
  font-size: 16px;
  height: 44px;
  display: inline-flex;
  align-items: center;
}

.btn-dashboard:hover {
  color: #003f88;
}

/* ==============================    RESPONSIVE CSS    ========================== */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .top-menu ul li a {
    padding: 4px 8px;
    font-size: 16px;
  }
  .about-section .image-area {
    right: 0%;
  }
  .footer-row-widget > div:nth-child(1) {
    max-width: 200px;
  }
  .footer-row-widget > div:nth-child(2) {
    max-width: 200px;
  }
  .footer-row-widget > div:nth-child(3) {
    flex: 1 0 0%;
  }
  .footer-row-widget > div:nth-child(4) {
    flex: 1 0 0%;
  }
}
@media all and (max-width: 991px) {
  .wrapper {
    left: 0;
    position: relative;
  }
  .hidden-menu {
    overflow: hidden;
  }
  .hidden-menu .wrapper {
    left: 270px;
  }
  .btn-topmenu {
    color: #000 !important;
    font-size: 16px;
    float: right;
    padding: 0;
    width: 30px;
    height: 32px;
    position: relative;
    margin-left: 20px;
    top: 3px;
  }
  .btn-topmenu .menu-bar {
    height: 2px;
    width: 15px;
    display: block;
    background: #000;
    position: absolute;
    right: 0;
    top: 44%;
  }
  .btn-topmenu .menu-bar::after {
    content: "";
    width: 26px;
    height: 2px;
    display: block;
    background: #000;
    bottom: 8px;
  }
  .btn-topmenu .menu-bar::before {
    content: "";
    width: 26px;
    height: 2px;
    display: block;
    background: #000;
    top: 8px;
  }
  .btn-topmenu .menu-bar::after, .btn-topmenu .menu-bar::before {
    position: absolute;
    transition: all 200ms linear;
    right: 0;
  }
  .btn-topmenu:focus, .btn-topmenu.focus {
    outline: 0;
    box-shadow: none;
  }
  .btn-topmenu.on .menu-bar {
    background-color: transparent;
  }
  .btn-topmenu.on .menu-bar:after {
    transform: rotate(45deg) translate(5px, 5px);
    -webkit-transform: rotate(45deg) translate(5px, 5px);
  }
  .btn-topmenu.on .menu-bar:before {
    transform: rotate(-45deg) translate(6px, -6px);
    -webkit-transform: rotate(-45deg) translate(6px, -6px);
  }
  .hidden-menu .btn-topmenu {
    position: absolute;
    left: -15px;
    background: #ff3a13;
    width: 40px;
  }
  .hidden-menu .btn-topmenu .menu-bar {
    right: 8px;
  }
  .hidden-menu .btn-topmenu .menu-bar::before, .hidden-menu .btn-topmenu .menu-bar::after {
    background: #fff;
  }
  .menu-logo {
    text-align: center;
    padding: 30px 30px;
  }
  .menu-logo h1 {
    font-size: 20px;
    margin: 0;
    padding: 0;
  }
  .menu-logo h1 a {
    color: #fff;
  }
  .top-menu, .wrapper {
    transition: all 200ms linear;
  }
  .top-menu {
    position: fixed;
    top: 0;
    left: -270px;
    z-index: 9992;
    width: 270px;
    height: 100%;
    background: #2e2e2e;
    overflow-y: scroll;
  }
  .top-menu ul {
    padding: 0;
    margin: 0;
    list-style: none;
  }
  .top-menu ul li {
    border-top: solid 1px #3c3c3c;
  }
  .top-menu ul li a {
    padding: 10px 20px;
    display: block;
    font-size: 16px;
    color: #a3a3a3;
  }
  .top-menu ul li.dropdown .arrow {
    position: absolute;
    z-index: 8;
    top: 0;
    right: 0;
    width: 40px;
    height: 44px;
    line-height: 40px;
    text-align: center;
    color: #a3a3a3;
    font-size: 18px;
    cursor: pointer;
  }
  .top-menu ul li.dropdown .arrow::after {
    font-family: "FontAwesome";
    content: "\f107";
  }
  .top-menu ul li.dropdown > a {
    padding-right: 40px;
  }
  .top-menu ul ul {
    padding-bottom: 10px;
    display: none;
  }
  .top-menu ul ul li {
    border: none;
  }
  .top-menu ul ul li a {
    padding: 4px 20px 4px 30px;
  }
  .top-menu ul ul li.dropdown .arrow {
    height: 43px;
    line-height: 38px;
  }
  .top-menu ul ul li.dropdown .arrow::after {
    font-family: "FontAwesome";
    content: "\f107";
  }
  .top-menu.open {
    left: 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  }
  .top-menu ul li a:hover, .top-menu ul li.current-menu-item a {
    color: #fff;
  }
  .top-menu ul li.dropdown.open > .arrow:after {
    content: "\f106";
  }
  .top-menu ul li.dropdown.open > ul {
    display: block;
  }
  .top-menu.open .menu-logo {
    background: #fff;
  }
  /*  Body Part Start */
  .home-banner .banner-backgound img {
    max-height: 510px;
  }
  .instant-quote-section .form-control, .instant-quote-section .container .pickup-location + .select2.select2-container, .instant-quote-section .container .drop-location + .select2.select2-container {
    margin-bottom: 12px;
  }
  .instant-quote-section .form-group .btn {
    margin-bottom: 12px;
  }
  .about-section {
    padding-top: 0rem;
  }
  .innerpage-banner > .banner-backgound > img {
    height: 220px;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  /*  Body Part Start */
  .about-section .image-area {
    right: 0%;
  }
  .about-section .image-area img {
    max-height: 400px;
    opacity: 0.5;
  }
  .regular-trips-section .card .card-header .price {
    right: 0px;
    top: -24px;
  }
}
@media all and (max-width: 767px) {
  .logo .custom-logo-link img {
    max-width: 130px;
  }
  .header .header-btn-area .btn {
    min-width: 120px;
  }
  .home-banner {
    padding: 9rem 0 0rem;
    background-position: 75% 50%;
  }
  .home-banner .banner-content {
    text-align: center;
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 60px rgb(255, 255, 255);
    border-radius: 26px;
  }
  .home-banner .banner-content p {
    color: #000;
  }
  .home-banner .banner-content .banner-form-area .form-group {
    margin: auto;
  }
  .instant-quote-section {
    margin-top: 0px;
  }
  .instant-quote-section .instant-quote-area {
    text-align: center;
  }
  .instant-quote-section .form-group .btn {
    margin-bottom: 0px;
  }
  .about-section .image-area img {
    opacity: 0.35;
  }
  .contact-section .container > .row > div {
    text-align: center;
  }
  footer .copyright-row {
    text-align: center;
  }
  .innerpage-banner .banner-backgound::after {
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background: rgba(255, 255, 255, 0.65);
  }
}
@media only screen and (max-width: 575px) {
  html {
    font-size: 14px;
  }
  p, body {
    font-size: 16px;
  }
  h1, .h1 {
    font-size: 2.75rem;
  }
  h2, .h2 {
    font-size: 2rem;
  }
  h4 {
    font-size: 1.2rem;
  }
  h5 {
    font-size: 1.175rem;
  }
  /*  Body Part Start */
  .logo .custom-logo-link img {
    max-width: 130px;
  }
  .header .header-btn-area .btn {
    padding: 8px 12px;
    min-width: 110px;
    min-height: 36px;
    font-weight: 400;
  }
  .about-section {
    padding-bottom: 0;
    display: flex;
    flex-wrap: wrap;
  }
  .about-section > .image-area {
    order: 2;
    position: relative;
    flex: 0 0 100%;
    right: 0;
    left: 0;
    text-align: center;
    z-index: 1;
    margin-top: 3rem;
  }
  .about-section > .container {
    order: 1;
    flex: 0 0 100%;
  }
  .about-section .col-md-12 {
    text-align: center;
  }
  .about-section .list {
    text-align: left;
  }
  .about-section .image-area img {
    opacity: 1;
  }
  .video-section {
    height: 375px;
  }
  .footer-row-widget > div:not(:last-child) {
    margin-bottom: 25px;
  }
  footer .copyright-row .social-icons {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 480px) {
  .logo .custom-logo-link img {
    max-width: 100px;
  }
  .header .header-btn-area .btn {
    padding: 5px 8px;
    min-width: 60px;
    min-height: 32px;
  }
  .header .btn.btn-primary > i {
    left: 0px;
    top: 1px;
  }
  .btn-topmenu {
    top: 0px;
  }
  .home-banner {
    min-height: 450px;
  }
  .about-section .about-list li {
    flex: 0 0 100%;
    margin-left: 15px;
  }
  .box-section > .container > .row > div {
    flex: 0 0 100%;
  }
  .box-section .card {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (max-width: 420px) {
  .header .header-btn-area .btn {
    min-height: 28px;
    font-size: 15px;
    margin: 0 !important;
  }
  .btn-topmenu {
    margin-left: 10px;
  }
  .home-banner .banner-content .banner-form-area .form-group .btn {
    padding: 0;
    min-width: auto;
  }
}
@media only screen and (max-width: 380px) {
  .logo .custom-logo-link img {
    max-width: 92px;
  }
  .header-btn-area > a.login-btn {
    min-height: auto !important;
    min-width: auto !important;
    padding: 6px !important;
    border-radius: 50%;
  }
  .header-btn-area > a.login-btn > span {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */