/*  General Styles
------------------------*/
html {
  box-sizing: border-box;
}

*,
*:after,
*:before {
  box-sizing: inherit;
}

body {
  font-family: "Open Sans", sans-serif;
}

h1,
h2,
h3 {
  font-family: "Anton", sans-serif;
  margin-bottom: 15px;
  text-transform: capitalize;
}

p,
ul {
  letter-spacing: 0.5px;
}
.row {
  margin: 0;
}
.container-fluid {
  padding: 7% 10%;
}
.navbar .container-fluid,
footer .container-fluid {
  padding: 1% 10%;
}
.btn {
  margin: 2rem 1rem;
  margin-left: 0;
  text-transform: capitalize;
}
/*  header
------------------------*/
header {
  background: linear-gradient(to bottom left, #7952b3da, #7952b398),
    url(../img/map.png) center center/cover;
  color: #ffc107;
  text-align: left;
}
.header-box {
  width: 50%;
}
.header-box h1 {
  font-size: 4rem;
}
/*  quick_quote 
--------------------*/
.quick_quote {
  background-color: #fff;
}
.quick_quote img {
  width: 100%;
}
/*  fleet_section
------------------------*/
.fleet_section {
  background-color: #e1e8eb;
}
.fleet_section h3 {
  font-size: 1.5em;
  color: #343a40;
}
.fleet_section i {
  color: #343a40;
}
.fleet_section figure img {
  width: 100%;
}

.fleet_section figcaption {
  padding-top: 10px;
  padding-bottom: 10px;
}

.fleet_section figcaption h3 {
  font-size: 1.3em;
}

.fleet_section figcaption ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
/*  why_us
--------------------*/
.why_us {
  text-align: center;
}
.why_us h2 {
  padding: 20px 0;
}
.why_us p {
  color: #343a40;
}
.feature {
  margin: 10px 0;
}
.good {
  padding: 3rem;
}
.why_us i {
  font-size: 2.5em;
  padding: 20px;
  background-color: #1e2019;
  color: gold;
  border-radius: 15px;
  background: linear-gradient(
    -45deg,
    gold,
    white,
    gold,
    gold,
    white,
    gold,
    gold,
    white,
    gold
  );
  background-size: 400% 400%;
  animation: gradient 3s linear infinite both;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.feature h3 {
  margin: 15px 0;
}
.feature p {
  text-align: justify;
}
/*  services_section
------------------------*/
.services-section {
  position: relative;
}

.carousel-item {
  height: 60vh;
}

.carousel-caption h3 {
  background-color: #ffc107;
  color: #000;

  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) top center/cover;
}

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

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

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

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

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

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

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

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

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

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

.carousel-item.birthday {
  background: url(../img/services/birthday.jpg) top center/cover;
}
/*  call_us
--------------------*/
.call_us {
  background: url(../img/road.jpg) center center/cover;
  text-align: center;
  margin: 3rem 0;
}

.call_us p a {
  color: #343a40;
  font-style: italic;
}

/*  footer
--------------------*/
footer {
  background-color: #343a40;
  color: #fff;
  padding: 20px 0 50px;
}

footer h2,
footer p,
footer ul {
  font-size: 1em;
}

footer ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

footer ul li {
  display: inline-block;
}

footer ul a {
  display: inline-block;
  padding: 3px;
}

footer a {
  color: #fff;
}

footer a:hover {
  color: #ffc107;
}

/*Contact, quote, reservation pages
------------------------------------*/

header.reservation {
  background: linear-gradient(rgba(39, 39, 41, 0.3), rgba(39, 39, 41, 1)),
    url(../img/reservation.jpg) top center / cover;
}

header.quote {
  background: linear-gradient(rgba(39, 39, 41, 0.4), rgba(39, 39, 41, 0.4)),
    url(../img/quote.jpg) center center / cover;
}

header.contact {
  background: linear-gradient(rgba(39, 39, 41, 0.3), rgba(39, 39, 41, 1)),
    url(../img/contact.jpg) center center/cover;
}

.contact_info_article {
  background: url(../img/road.jpg) center center/cover;
  padding: 30px 0;
  text-align: center;
}

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

.contact_info_article li {
  display: inline-block;
  padding: 10px;
  margin: 5px;
}

.contact_info_article li i {
  font-size: 2em;
  color: #000;
}

.contact_info_article li a {
  color: #343a40;
}

.message_us_article {
  padding: 100px 0;
}

.message_us_article .img_container img {
  width: 100%;
}

.message_us_article form {
  margin-top: 30px;
  padding: 0 25px;
}

.contact-page-form input,
.contact-page-form textarea {
  padding: 10px;
  border: 1px solid #ddd;
}

.contact-page-form textarea {
  height: 200px;
}

/*Media Queries
==================*/
@media (max-width: 1024px) {
  .btn {
    margin: 0.5rem;
    margin-left: 0;
  }
  header {
    text-align: center;
  }
  .header-box h1 {
    font-size: 2.5rem;
  }
  .header-box {
    width: 80%;
    margin: 0 auto;
  }
  .carousel-item {
    height: 50vh;
  }
}
