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

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

body {
  font-family: "IBM Plex Serif", serif;
  background-color: #fff;
}

h1,
h2,
h3 {
  color: #000;
  margin-bottom: 15px;
  text-transform: capitalize;
  font-family: "Open Sans", sans-serif;
}
h1 {
  font-size: 3rem;
  color: #fff;
  font-weight: 900;
}
p,
ul {
  letter-spacing: 0.5px;
}
.container-fluid {
  padding: 7% 10%;
}
hr {
  border: none;
  border-top: 1px solid #3f3f3f;
}
.btn {
  margin: 2rem 1rem 0 0;
  text-transform: capitalize;
}
/*  nav
------------------------*/
.navbar {
  position: sticky;
  top: 0;
  background-color: #eaf3fa;
  z-index: 10;
}
nav p {
  margin: 0;
}
nav p a {
  color: #ff6700;
  text-decoration: none;
}
nav p a:hover {
  color: #333;
}
nav p i {
  color: #ff6700;
}

/*  Header Slider
---------------------*/
.slide1 {
  min-height: 60vh;
  background: linear-gradient(
      to bottom right,
      rgba(255, 103, 0, 0.5),
      rgba(255, 103, 0, 0.5)
    ),
    url(../img/body1.jpg) 50% 75% / cover;
  color: #fff;
  text-align: left;
}
.slide2 {
  min-height: 60vh;
  background: linear-gradient(
      to bottom right,
      rgba(255, 103, 0, 0.5),
      rgba(255, 103, 0, 0.5)
    ),
    url(../img/body2.jpg) 50% 75% / cover;
  color: #fff;
  text-align: left;
}
.slide3 {
  min-height: 60vh;
  background: linear-gradient(
      to bottom right,
      rgba(255, 103, 0, 0.5),
      rgba(255, 103, 0, 0.5)
    ),
    url(../img/body3.jpg) top center / cover;
  color: #fff;
  text-align: left;
}
header .carousel-control-prev,
header .carousel-control-next {
  width: 5%;
}
.header_box {
  padding: 7% 0;
  width: 50%;
}
.header_box h2 {
  color: #fff;
  font-size: 3rem;
  font-weight: bold;
}
.header_box p {
  font-weight: bold;
}
header p {
  font-size: 1.5rem;
  margin: 0;
}
header p i {
  font-size: 2rem;
}
/*  quick_quote 
--------------------*/
.quick_quote {
  background-color: #fff;
}
.quick_quote h2 {
  font-weight: 900;
}
/*  services_section
------------------------*/
.services-section {
  position: relative;
}

.services_section .carousel-item {
  height: 450px;
}

.services_section .carousel-caption h3 {
  background-color: #fff;
  color: #333;

  display: inline-block;
  text-transform: capitalize;
  padding: 10px 20px;
  border-radius: 5px;
}

.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) 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) bottom 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;
}
/*
    our_fleet
-------------------------*/
.our_fleet {
  background-color: #ff6700;
  color: #eaf3fa;
  overflow: hidden;
}
.our_fleet h2 {
  font-family: "Anton", sans-serif;
  font-size: 3rem;
  color: #fff;
}
.our_fleet img {
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.5));
  animation: move 5s ease-in-out infinite alternate;
}

.fleet_text {
  margin-bottom: 2rem;
  text-transform: capitalize;
}
.fleet_text h2 {
  font-weight: bold;
}
.our_fleet img {
  width: 100%;
}
@keyframes move {
  from {
    transform: translateX(25px);
  }
  to {
    transform: translateX(-25px);
  }
}
/*  why_us
--------------------*/
.why_us {
  background-color: #fff;
  text-align: center;
}
.why_us h3 {
  font-size: 3rem;
  line-height: 1.5;
  font-weight: 900;
}
.why_us img {
  width: 30%;
  margin: 1rem;
}
.why_us .carousel-item {
  padding: 7% 15%;
}
.why_us em {
  font-size: 1rem;
  font-weight: 400;
  color: #37003c;
}
/*  call_us
--------------------*/
.call_us {
  background-color: #fff;
}
.call_us .container-fluid {
  padding-bottom: 0;
}
.call_us img {
  width: 100%;
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.5));
}
.call_us h2 {
  color: #000;
  font-weight: 900;
  font-size: 2rem;
}
.contact_box {
  margin: 3rem 0 0;
}
.contact_box p {
  margin: 10px 0;
}
.call_us p i {
  font-size: 2rem;
  animation: shake 0.3s ease-in-out infinite alternate;
}
@keyframes shake {
  from {
    transform: rotateZ(10deg);
  }
  to {
    transform: rotateZ(-10deg);
  }
}
.call_us p a {
  color: #ff6700;
  text-decoration: none;
  font-size: 1.5rem;
  transition: all 0.5s ease;
}
.call_us p a:hover {
  color: #ff6600c2;
}
/*  features
--------------------*/
.features {
  background-color: #ff6700;
  color: #eaf3fa;
}
.features img {
  width: 100%;
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.5));
  animation: move 5s ease-in-out infinite alternate;
}
.feature h2 {
  font-size: 2rem;
  font-weight: 900;
  color: #eaf3fa;
}
/*  footer
--------------------*/
footer {
  color: #fff;
  text-align: center;
  padding-bottom: 20px;
  background-color: #ff6700;
}
footer .container-fluid {
  padding: 3% 15%;
}
footer h2,
footer p,
footer ul {
  font-size: 1rem;
}
footer p a {
  color: #fff;
  text-decoration: none;
}
footer a:hover {
  color: #ebebeb;
}
footer ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

footer ul li {
  display: inline-block;
}

footer ul a {
  display: inline-block;
  font-size: 1.5rem;
  padding: 5px;
  margin: 5px;
  color: #fff;
}
/*Contact, quote, reservation pages
------------------------------------*/

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

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

header.contact {
  background: linear-gradient(rgba(39, 39, 41, 0.4), rgba(39, 39, 41, 0.2)),
    url(../img/contact.jpg) center center/cover;
  color: #fff;
}
header.response {
  background: linear-gradient(rgba(39, 39, 41, 0.4), rgba(39, 39, 41, 0.2)),
    url(../img/response.jpg) top center/cover;
  color: #fff;
}
.contact_info_article {
  background-color: #ff6700;
  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: #fff;
}

.contact_info_article li a {
  color: #fff;
  text-decoration: none;
  font-size: 1.5rem;
}
.contact_info_article li a:hover {
  color: #fff;
  text-decoration: underline;
}
.message_us_article .img_container img {
  width: 100%;
}
.contact-page-form img {
  width: auto;
  margin: 0 auto;
}
.message_us_article h2 {
  font-weight: 900;
}
.message_us_article form {
  margin-top: 0;
  padding: 0 25px;
}

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

.contact-page-form textarea {
  height: 200px;
}
.quick_quote h2,
.message_us_article h2 {
  font-size: 2rem;
  line-height: 1.5;
}
/*Testimonials page
--------------------*/
header.testimonial {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url(../img/testimonials.jpg) center center/cover;
  color: #fff;
}
.rating {
  margin: 20px 0;
  text-align: left;
}
form h4 {
  color: #2b468b;
}
.rate {
  float: left;
  height: 46px;
  padding: 0 10px;
}
.rate:not(:checked) > input {
  position: absolute;
  top: -9999px;
}
.rate:not(:checked) > label {
  float: right;
  width: 1em;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
  font-size: 30px;
  color: #ccc;
}
.rate:not(:checked) > label:before {
  content: "★ ";
}
.rate > input:checked ~ label {
  color: #ffc700;
}
.rate:not(:checked) > label:hover,
.rate:not(:checked) > label:hover ~ label {
  color: #deb217;
}
.rate > input:checked + label:hover,
.rate > input:checked + label:hover ~ label,
.rate > input:checked ~ label:hover,
.rate > input:checked ~ label:hover ~ label,
.rate > label:hover ~ input:checked ~ label {
  color: #c59b08;
}
.testi-form {
  text-align: left;
}
/*success-section
==================*/
.success-section {
  padding: 100px 0;
}

/*Media Queries styles*/
@media (max-width: 1024px) {
  header {
    text-align: center;
  }
  nav p {
    margin: 1rem 0;
  }
  .header_box {
    padding: 7%;
    width: 80%;
    margin: 0 auto;
    text-align: center;
  }
  .header-box h1 {
    font-size: 1.2rem;
  }
  header p {
    font-size: 1.2rem;
  }
  .btn {
    margin: 0.5rem 0;
  }
  .our_fleet h2 {
    font-size: 1.5rem;
  }
  .header_box h1 {
    font-size: 1.5rem;
  }
  .column_quick_quote {
    margin: 2rem 0;
  }
  .why_us h3 {
    font-size: 1.5rem;
  }
  .why_us img {
    width: 65%;
  }
  .call_us p {
    font-size: 1rem;
  }
  .feature-image {
    margin: 1rem 0;
  }
  .message_us_article form {
    margin-top: 30px;
  }
  .call_us p {
    color: #555;
  }
  .call_us p a {
    color: #555;
    font-size: 1rem;
  }
  .contact_info_article li a {
    font-size: 1rem;
  }
  .quick_quote h2,
  .message_us_article h2 {
    font-size: 1.5rem;
  }
}
