/*============================
    ##  General Styles
=============================*/
body {
  font-family: "Open Sans", sans-serif;
}
h1,
h2,
h3 {
  font-family: "Anton", sans-serif;
}
img {
  width: 100%;
}
.container-fluid {
  padding: 7% 15%;
}
.contact_nav .container-fluid,
.navbar .container-fluid {
  padding: 1% 15%;
}
/*============================
    ##  Contact Navigation
=============================*/
.contact_nav {
  background-color: #048abf;
  position: sticky;
  top: 0;
  z-index: 3;
}
.contact_nav p {
  font-size: 1.5em;
  color: #e5e5e5;
  margin: 8px 0;
}
.contact_nav a {
  color: #fff;
}

/*============================
    ##  Header
=============================*/
header {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.2)),
    url(../img/header.jpg) bottom center/cover;
}
.header_intro {
  backdrop-filter: blur(2px) saturate(174%);
  -webkit-backdrop-filter: blur(2px) saturate(174%);
  background-color: rgba(17, 25, 40, 0.36);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.125);
  color: #fff;
  text-align: center;
  padding: 50px 10px;
}
header h1 {
  color: #fff;
}

.header_img img {
  animation: slidein 0.5s linear 1s both;
}

@keyframes slidein {
  from {
    transform: translateX(20%);
  }

  to {
    transform: translateX(0%);
  }
}
/*============================
    ##  services Section
=============================*/
.carousel-item {
  height: 50vh;
}
.services_section h2 {
  color: #a66a21;
}
.carousel-caption h3 {
  background-color: #a66a21;
  color: rgb(255, 255, 255);
  opacity: 1;
  display: inline-block;
  text-transform: capitalize;
  padding: 10px 20px;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.carousel-item.airport {
  background: url(../img/services/airport.jpg) center center/cover;
}

.carousel-item.business {
  background: url(../img/services/business.jpg) center center/cover;
}

.carousel-item.prom {
  background: url(../img/services/proms.jpg) center center/cover;
}

.carousel-item.wedding {
  background: url(../img/services/wedding.jpg) center center/cover;
}

.carousel-item.shuttle {
  background: url(../img/services/shuttle.jpg) center center/cover;
}

.carousel-item.outlet {
  background: url(../img/services/outlets.jpg) top center/cover;
}

.carousel-item.casino {
  background: url(../img/services/casino.jpg) center center/cover;
}

.carousel-item.concert {
  background: url(../img/services/concert.jpg) center center/cover;
}

.carousel-item.bachelorette {
  background: url(../img/services/bachelorette.jpg) center center/cover;
}

.carousel-item.quinceanera {
  background: url(../img/services/quin.jpg) 50% 30% / cover;
}

.carousel-item.cruise {
  background: url(../img/services/cruise.jpg) center center/cover;
}

.carousel-item.birthday {
  background: url(../img/services/birthday.jpg) center center/cover;
}
/*============================
    ##  Fleet Section
=============================*/
.fleet_home_section h2 {
  margin-bottom: 30px;
  color: #a66a21;
}
.fleet_home_section .vehicle h3 {
  text-transform: capitalize;
  padding: 5px 0;
}
.fleet_home_section .vehicle {
  margin: 15px 0;
}
/*============================
    ##  Luxury Section
=============================*/
.luxury {
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4)),
    url(../img/lux.jpg) top center/cover;
}
.luxury p {
  color: #ddd;
}
.lux_text {
  padding: 20px;
  backdrop-filter: blur(2px) saturate(174%);
  -webkit-backdrop-filter: blur(2px) saturate(174%);
  background-color: rgba(17, 25, 40, 0.36);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.125);
  color: #fff;
  max-width: 400px;
}
/*============================
    ##  Why us Section
=============================*/
.why_us {
  background-color: #c7d1d9;
}

.why_us h2 {
  margin-bottom: 30px;
  color: #a66a21;
}
.why_us h3 {
  color: #14213d;
}
/* The actual timeline (the vertical ruler) */
.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

/* The actual timeline (the vertical ruler) */
.timeline::after {
  content: "";
  position: absolute;
  width: 6px;
  background-color: white;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
}

/* Container around content */
.content_container {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
}

/* The circles on the timeline */
.content_container::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  right: -12px;
  background-color: white;
  border: 4px solid #fca311;
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

/* Place the container to the left */
.left {
  left: 0;
}

/* Place the container to the right */
.right {
  left: 50%;
}

/* Add arrows to the left container (pointing right) */
.left::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  right: 30px;
  border: medium solid white;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent white;
}

/* Add arrows to the right container (pointing left) */
.right::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  left: 30px;
  border: medium solid white;
  border-width: 10px 10px 10px 0;
  border-color: transparent white transparent transparent;
}

/* Fix the circle for containers on the right side */
.right::after {
  left: -12px;
}

/* The actual content */
.content {
  padding: 20px 30px;
  background-color: white;
  position: relative;
  border-radius: 6px;
}

/* Media queries - Responsive timeline on screens less than 600px wide */
@media (max-width: 600px) {
  /* Place the timelime to the left */
  .timeline::after {
    left: 31px;
  }

  /* Full-width containers */
  .content_container {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }

  /* Make sure that all arrows are pointing leftwards */
  .content_container::before {
    left: 60px;
    border: medium solid white;
    border-width: 10px 10px 10px 0;
    border-color: transparent white transparent transparent;
  }

  /* Make sure all circles are at the same spot */
  .left::after,
  .right::after {
    left: 15px;
  }

  /* Make all right containers behave like the left ones */
  .right {
    left: 0%;
  }
}

/*============================
    ##  call_us
=============================*/
.call_us {
  text-align: center;
  font-size: 1.3em;
}
.call_us p {
  margin: 0;
}
.call_us p a {
  color: #a66a21;
  font-family: "Anton", sans-serif;
}
/*============================
    ##  Footer
=============================*/
footer {
  background: #048abf;
  color: #fff;
}
footer p {
  color: #e5e5e5;
}
footer h2 {
  margin-bottom: 30px;
}
footer h3 {
  text-transform: capitalize;
}
footer ul {
  list-style: none;
  padding: 0;
  margin: 10px 0;
}
footer a {
  color: #ddd;
}
footer ul:first-of-type {
  text-transform: capitalize;
}
footer ul.contact a {
  text-transform: lowercase;
}
footer a:hover {
  color: #fff;
}
footer .copyright_paragraph p {
  padding-top: 10px;
  margin-top: 20px;
  border: none;
  border-top: 1px solid #eee;
}

/*============================
    ## Contact page
=============================*/
header.contact {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.2)),
    url(../img/contact.jpg) center center/cover;
}
header.quote {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.2)),
    url(../img/quote.jpg) center center/cover;
}
header.reservation {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.2)),
    url(../img/reservation.jpg) center center/cover;
}
.luxury .lux_text.contact_page ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.luxury.calls li a {
  color: #048abf;
  padding: 5px 0;
  margin: 5px 0;
  display: inline-block;
  font-weight: bold;
}
.luxury.calls {
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4)),
    url(../img/contact2.jpg) center center/cover;
}

.message_us h2 {
  margin-bottom: 30px;
}
.contact_form input,
.contact_form textarea {
  padding: 5px;
  border: 1px solid #6b6d72;
  margin: 3px 0;
  color: rgb(34, 34, 34);
}
.contact_form textarea {
  height: 200px;
}

.contact_form .row {
  margin: 0;
  padding: 0;
}

/*============================
    ## response page
=============================*/
