/*============================
    ##  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%;
}
.btn {
  margin: 0.5rem 0.5rem 0.5rem 0;
}
/*============================
    ##  Contact Navigation
=============================*/
.contact_nav {
  background-color: #ffecd1;
  position: sticky;
  top: 0;
  z-index: 3;
}
.contact_nav p {
  font-size: 1.5em;
  color: #333;
  margin: 8px 0;
}
.contact_nav a {
  color: #000;
  font-weight: bold;
}
/*--------------------------------------------------------
                        video styles
--------------------------------------------------------*/
#background-video {
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}
@media (max-width: 750px) {
  #background-video {
    display: none;
  }
  header {
    background: url("../img/fleet.jpg") no-repeat;
    background-size: cover;
  }
}
/*============================
    ##  Header
=============================*/
header.home {
  text-align: center;
}
.header_intro {
  background: rgba(255, 236, 209, 0.55);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  border: 1px solid rgba(255, 236, 209, 0.275);
  border-radius: 12px;
  color: #000;
  text-align: center;
  padding: 50px 10px;
  width: 50%;
  margin: 0 auto;
}
header h1 {
  color: #000;
}

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

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

  to {
    transform: translateX(0%);
  }
}
/*============================
    ##  services Section
=============================*/
.services_section {
  background-color: #fff;
}
.callUsNow ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.callUsNow li {
  padding: 5px 0;
  margin: 5px 0;
}
.callUsNow li a {
  color: #333;
}
/*============================
    ##  Fleet Section
=============================*/
.fleet_home_section {
  background-color: #fff;
}

/*============================
    ##  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: #333;
}
.lux_text {
  padding: 20px;
  background: rgba(255, 236, 209, 0.55);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  border: 1px solid rgba(255, 236, 209, 0.275);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.125);
  color: #000;
  max-width: 400px;
}
/*============================
    ##  serviceCards Section
=============================*/
.serviceCards {
  background-color: #fff;
  padding: 7% 0;
}
.card {
  margin: 1rem 0;
  border-bottom: 7px solid #ffecd1;
}
.card:hover {
  animation: dance 1s ease-in-out infinite alternate;
}
@keyframes dance {
  from {
    transform: translateY(-5px);
    box-shadow: 0 10px 6px -6px #777;
  }
  to {
    transform: translateY(5px);
    box-shadow: none;
  }
}
/*============================
    ##  Why us Section
=============================*/
.why_us {
  background-color: #fff7eb;
}

.why_us h2 {
  color: #001524;
}
.why_us h3 {
  color: #78290f;
}
/* 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 #78290f;
  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;
  color: #333;
}
.call_us p a {
  color: #000;
  font-family: "Anton", sans-serif;
}
.callUsBox {
  background: rgba(255, 236, 209, 0.55);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  border: 1px solid rgba(255, 236, 209, 0.275);
  border-radius: 12px;
  color: #000;
  text-align: center;
  padding: 50px 10px;
  width: 50%;
  margin: 0 auto;
}
/*============================
    ##  Footer
=============================*/
footer {
  background: #001524;
  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 li {
  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: #ff7d00;
}
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: #000;
  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;
}
@media (max-width: 1024px) {
  .header_intro {
    width: 100%;
  }
  .callUsBox {
    width: 100%;
  }
  footer h3 {
    margin-top: 1rem;
  }
}
