/*===================
    General styles
===================*/
html {
  box-sizing: border-box;
}
*,
*::after,
*::before {
  box-sizing: inherit;
}
h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
}
.container {
  padding: 40px 0;
}
.row {
  margin: 0;
}
body {
  position: relative;
}
aside {
  position: fixed;
  top: 50%;
  left: 0;
  z-index: 21;
}

.sticky-links a {
  display: block;
  padding: 10px;
  color: #000;
  width: 50px;
  background-color: #fca311;
  border: 1px solid #e5e5e556;
  transition: all 0.3s ease-in-out;
}
.sticky-links a:hover {
  background: linear-gradient(
    -45deg,
    gold,
    white,
    gold,
    gold,
    white,
    gold,
    gold,
    white,
    gold
  );
  background-size: 400% 400%;
  animation: gradient 2s ease-in-out 1 both;
  width: 70px;
  text-decoration: none;
}
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
/*===============
    .contact-nav
===============*/
.contact-nav {
  background: rgba(255, 255, 255, 0.822);
  position: sticky;
  top: 0;
  z-index: 19;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.5);
}
.contact-nav .container {
  padding: 60px 0 20px;
}
.contact-nav ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.contact-nav a {
  display: block;
  padding: 5px;
  margin: 5px;
  color: #000;
  transition: all 0.3s ease-in-out;
}
.contact-nav a:hover {
  text-decoration: none;
  color: #e16330;
}

/*===================
    Header styles
===================*/
header {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)),
    url(../img/header.jpg) bottom center/cover;
  color: #fff;
  height: fit-content;
}
.intro-box {
  padding: 50px 0;
}
.intro-box h1 {
  font-weight: 600;
  text-transform: capitalize;
}
.intro-box p {
  text-transform: capitalize;
}

/*===================
    Navigation
===================*/
.navbar {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid #e1623075;
}
.navbar .container {
  padding: 0;
}
/*===================
    Why us styles
===================*/
.why-us {
  padding: 40px 0;
}
.fleet-range span {
  display: block;
}
.fleet-range h3 {
  color: #e16330;
  font-size: 3em;
  font-weight: 800;
}
.why-us i {
  font-size: 3em;
  color: #e16330;
  padding: 10px;
  text-align: center;
}
.why-us .why-column {
  padding-top: 20px;
  text-align: center;
}

/*===================
    Services styles
===================*/
.services img {
  width: 100%;
}

/*======================
    questions styles
======================*/
.question {
  background-color: #fff;
  color: #14213d;
  padding: 40px 0;
  text-align: center;
}
.question a,
.see-fleet {
  display: inline-block;
  padding: 10px;
  border: 1px solid #e16330;
  border-radius: 10px;
  color: #e16330;
  transition: all 0.5s ease-in-out;
}
.see-fleet:hover,
.question a:hover {
  background-color: #e16330;
  color: #e5e5e5;
  text-decoration: none;
}
/*===================
    Fleet styles
=====================*/
.fleet {
  background-color: #e5e5e5;
  color: #000;
}
.fleet img {
  width: 100%;
  padding: 0;
}
.fleet-text {
  padding: 40px;
}
.text-wrap {
  margin: 0 auto;
}
/*========================
    Invitation styles
========================*/
.invitation {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)),
    url(../img/fleet.jpg) fixed center center/cover;
  color: #fff;
  padding: 50px 0;
  text-align: center;
}
.invitation i {
  font-size: 2em;
  color: #fca311;
}
/*==============================
    home-page-contact-section
==============================*/
.home-page-contact-section {
  padding: 100px 0;
}
.contact-page-contact-section .section {
  padding: 50 0;
}
.contact-page-contact-section .section_hr {
  text-align: center;
}
.contact-page-contact-section .section_hr i {
  font-size: 2em;
  color: #fca311;
}
.contact-section-text {
  margin-bottom: 25px;
}
.contact-section-text img {
  width: 100%;
}
.contact-section-text h3 {
  color: #e16330;
  text-transform: capitalize;
  font-weight: 600;
  font-size: 3em;
}
.contact-section-text span {
  color: #fca311;
  font-weight: 600;
  font-size: 1.2em;
  text-transform: uppercase;
}
.home-page-form input,
.home-page-form textarea,
.contact-page-form input,
.contact-page-form textarea {
  border: 1px solid #ddd;
  padding: 10px;
}
.home-page-form label,
.contact-page-form label {
  color: #e16330;
  margin-right: 60px;
}
.home-page-form button,
.contact-page-form button {
  padding: 10px 20px;
  color: #fca311;
  background-color: #e16330;
  border: none;
  margin: 10px 0;
  transition: all 0.3s ease-in-out;
}
.home-page-form button:hover,
.contact-page-form button:hover {
  background-color: #fca311;
  color: #e16330;
}
.contact-section-text a,
.contact-section-text i {
  color: #fca311;
}
.contact-section-text ul i {
  color: #fca311;
}
.contact-section-text ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.contact-section-text a,
.contact-section-text span {
  display: inline-block;
  padding: 5px;
  margin: 5px;
}
.contact-section-text i {
  font-size: 1.2em;
}
.contact-section-text a:hover {
  color: #e16330;
}

/*===================
    Footer styles
===================*/
.upper-footer {
  background-color: #e16330;
  color: #e5e5e5;
  padding: 20px;
}
.foot {
  padding-top: 20px;
}
.foot i {
  font-size: 1.2em;
  padding-right: 5px;
}
.foot ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.foot a {
  display: inline-block;
  color: rgba(221, 221, 221, 0.883);
}
.copy-footer {
  padding: 20px;
  text-align: center;
  color: #fff;
  background-color: #000;
}
.copy-footer a {
  color: rgba(221, 221, 221, 0.883);
}

/*==========================
    Quote & Reservation
===========================*/
header.quote-page {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url(../img/quote.jpg) center center/cover;
}
header.reservation-page {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url(../img/reservation.jpg) center center/cover;
}

/*======================
    Contact page
======================*/
header.contact-page {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url(../img/contact.jpg) center center/cover;
}

/*=================
    fleet page
==================*/
header.fleet-header {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url(../img/fleet.jpg) center center/cover;
}

/*-----------------
    Success Page
-----------------*/
section.response {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url(../img/success.png) center center/cover;
  height: 600px;
  padding: 60px 0;
  color: #fff;
}
section.response p {
  color: #fff;
}
