/*============================
    ##  General Styles
=============================*/
body {
  font-family: "Montserrat", sans-serif;
}
h1,
h2,
h3 {
  font-family: "Girassol", cursive;
}
img {
  width: 100%;
}
.contact_nav {
  background: linear-gradient(-45deg, #c03221, #fcc200, #f2d0a4, orangered);
  background-size: 400% 400%;
  animation: gradient 10s ease infinite;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
/*============================
    ##  Contact Navigation
=============================*/
.contact_nav {
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 3;
}
.contact_nav p {
  font-size: 1.5em;
  color: #000;
  margin: 0;
  font-weight: bold;
}
.contact_nav a {
  color: #000;
  font-weight: lighter;
  transition: all 0.3s ease-in-out;
}
.contact_nav a:hover {
  color: #000;
}

/*============================
    ##  Header
=============================*/
header {
  padding: 30px 0;
  background: url(../img/header.jpg) center center/cover;
  height: fit-content;
}
header h1,
header h2 {
  color: #c03221;
}
header a {
  display: inline-block;
  padding: 5px 14px;
  background-color: #c03221;
  color: #fff;
  margin: 10px 0;
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
}
header a:hover {
  color: #fff;
  background-color: #000;
  text-decoration: none;
}
/*============================
    ##  Fleet Section
=============================*/

.fleet_home_section {
  padding: 50px 0;
}
.fleet_home_section h2 {
  margin-bottom: 30px;
}
.fleet_home_section .vehicle h3 {
  text-transform: capitalize;
  padding: 5px 0;
}
.fleet_home_section .vehicle {
  margin: 15px 0;
}
.fleet_home_section .vehicle a {
  display: inline-block;
  padding: 5px 14px;
  background-color: #c03221;
  color: #fff;
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
}
.fleet_home_section .vehicle a:hover {
  color: #fff;
  background-color: #000;
  text-decoration: none;
}

/*============================
    ##  Luxury Section
=============================*/
.reserve_now {
  padding: 80px 0;
}
.lux_text {
  padding: 20px;
  background-color: rgb(255, 255, 255);
  color: #000;
  box-shadow: 2px 2px 2em rgba(0, 0, 0, 0.25);
}
.lux_text a {
  display: inline-block;
  padding: 5px 14px;
  background-color: #c03221;
  color: #fff;
  transition: all 0.3s ease-in-out;
}
.lux_text a:hover {
  color: #fff;
  background-color: #000;
  text-decoration: none;
}

/*============================
    ##  Why us Section
=============================*/
.why_us {
  background: url(../img/why_us.jpg) center center/cover;
  padding: 60px 0;
  margin-top: 50px;
}
.why_us h2 {
  margin-bottom: 30px;
}
/* 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: #fae1c0;
  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 #c03221;
  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%;
  }
}
/*============================
    ##  services Section
=============================*/

.carousel-item {
  height: 50vh;
}

.carousel-caption h3 {
  background-color: rgba(39, 39, 41, 0.8);
  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/prom.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;
}

/*============================
    ##  Footer
=============================*/
footer {
  background-color: #696d7d;
  padding: 50px 0;
}
footer h2 {
  margin-bottom: 30px;
}
footer h3 {
  text-transform: capitalize;
}
footer ul {
  list-style: none;
  padding: 0;
  margin: 10px 0;
}
footer a {
  color: #fff;
}
footer ul:first-of-type {
  text-transform: capitalize;
}
footer ul.contact a {
  text-transform: lowercase;
}
footer a:hover {
  color: #f2d0a4;
}
/*============================
    ## Contact page
=============================*/
.container-fluid {
  padding: 3%;
}
.luxury .lux_text.contact_page ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.luxury .lux_text.contact_page li a {
  background-color: transparent;
  padding: 7px 0;
}
.message_us {
  padding: 50px 0;
}
.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 button[type="submit"] {
  background-color: #c03221;
  display: inline-block;
  padding: 7px 14px;
  border: none;
  transition: all 0.3s ease-in-out;
  color: #fff;
}
.contact_form button[type="submit"]:hover {
  background-color: #000;
  color: #fff;
}
.contact_form .row {
  margin: 0;
  padding: 0;
}
.reach_out .contact_info ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}
.reach_out {
  padding: 65px 0;
}
.reach_out .contact_info ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}
.contact_info ul i {
  font-size: 1.2em;
  margin-right: 5px;
  color: #1c2a3c;
}
.contact_info ul a {
  color: #c03221;
  text-decoration: none;
  margin: 5px 0;
  display: inline-block;
}
/*============================
    ## response page
=============================*/
.success_section {
  padding: 50px 0;
}
