@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600;700;800;900&display=swap");

/* Start Global rules  */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
*:focus {
  outline: none;
}
:root {
  --main-color: #304e58;
  --main-color-alt: rgb(8, 8, 8);
  --main-transition: 0.3s;
  --main-padding-top: 40px;
  --main-padding-bottom: 40px;
  --section-background: #f5f5f5;
  --third-color: white;
  --radius: 8px;
}
html {
  scroll-behavior: smooth;
}
body {
  position: relative;
  z-index: -10;
  font-family: "Outfit", sans-serif;
  font-weight: normal;
  letter-spacing: 1px;
  overflow-x: hidden;
  margin: 0;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
  color: var(--main-color);
}
.container {
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background-color: white;
}
::-webkit-scrollbar-thumb {
  background-color: var(--main-color);
}
/* ::-webkit-scrollbar-thumb:hover {
  background-color: var(--main-alt-color);
} */
/* Small */
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
/* Medium */
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
/* Large */
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
.faceSmall {
  display: none !important;
}
@media (max-width: 500px) {
  .faceSmall {
    display: unset !important;
  }
  .faceLarge {
    display: none !important;
  }
}
/* End Global rules */
/* Start btn  */
.pre-btn,
.nxt-btn {
  border: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  cursor: pointer;
  z-index: 8;
  transition: var(--main-transition);
  color: var(--main-color);
}

.pre-btn {
  left: 10px;
}

.nxt-btn {
  right: 10px;
}

.pre-btn,
.nxt-btn {
  opacity: 0.2;
  color: var(--main-color);
}

.pre-btn:hover,
.nxt-btn:hover {
  opacity: 1;
}
/* End btn  */
/* Start top  */
.scroll-to-top {
  width: 45px;
  height: 45px;
  position: fixed;
  right: -55px;
  bottom: 25px;
  display: block;
  z-index: 999;
  background-color: var(--main-color);
  -webkit-box-shadow: rgb(0 0 0 / 40%) 0px 2px 15px;
  -moz-box-shadow: rgb(0 0 0 / 40%) 0px 2px 15px;
  box-shadow: rgb(255 255 255) 0px 0px 3px 1px;
  transition: var(--main-transition);
  opacity: 0.5;
  border-radius: var(--radius);
}
.whatsappIcon {
  width: 45px;
  height: 45px;
  position: fixed;
  right: 35px;
  bottom: 25px;
  display: block;
  z-index: 999;
  transition: var(--main-transition);

  border-radius: var(--radius);
  overflow: hidden;
}
.whatsappIcon img {
  width: 100%;
  height: 100%;
}
.scroll-to-top:hover {
  opacity: 1;
}
.up {
  display: block;
  width: 100%;
  height: 100%;
  color: #fff;
  text-align: center;
  cursor: pointer;
}
.scroll-to-top img {
  width: 22px;
  position: relative;
  top: 11px;
}
.scroll-to-top.show {
  right: 35px;
}
.whatsappIcon.show {
  bottom: 75px;
}
/* Start top  */
/* Start Header  */
header {
  background-color: var(--main-color);
  box-shadow: 0px 0px 6px 1px rgba(0, 0, 0, 0.5);
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1000;
}
header .container {
  background-color: var(--main-color);

  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .container .logo {
  width: 110px;
  height: 100%;
}
@media (max-width: 767px) {
  header .container {
    box-shadow: 0px 3px 6px -3px rgba(0, 0, 0, 0.5);
  }
  /* header .container .logo {
    width: 65px;
  } */
}

header .container .logo img {
  max-width: 100%;
}
header .sideHeader {
  width: 70%;
  transition: var(--main-transition) top;
}
header .contact {
  display: flex;
  padding: 10px;
  gap: 10px;
  font-size: 20px;
  font-weight: 300;
  /* position: relative;
  box-shadow: 0px -3px 6px 1px rgba(0, 0, 0, 0.5);
  background-color: var(--main-color); */
}
header .contact a {
  width: fit-content;
  color: var(--third-color);
  display: flex;
  align-items: center;
}
header .contact a:not(:last-child) {
  padding-right: 10px;
  border-right: 1px solid var(--third-color);
}
header .contact img {
  width: 25px;
}
header .sideHeader .pages {
  padding: 10px;
  width: 90%;
}
header .sideHeader .pages ul {
  display: flex;
  justify-content: space-between;

  font-size: 20px;
}
header .sideHeader .pages ul li {
  position: relative;
  text-align: center;
  transition: var(--main-transition);
}

header .sideHeader .pages ul li::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 1px;
  background-color: white;
  width: 100%;
  transition: transform var(--main-transition);
  transform: scaleX(0);
  transform-origin: right;
}
header .sideHeader .pages ul li:hover:before {
  width: 100%;
  transform: scaleX(1);
  transform-origin: left;
}
header .sideHeader .pages a {
  color: var(--third-color);
  display: flex;
  justify-content: center;
  gap: 5px;
  font-weight: 300;
}
header .sideHeader .pages li a img {
  width: 30px;
  height: 30px;
}
header .bookNow {
  border: 1px solid var(--third-color);
  text-align: center;

  border-radius: var(--radius);
  background-color: transparent;
  transition: var(--main-transition) background;
}
header .bookNow:hover {
  background-color: rgb(255 255 255 / 10%);
}
header .bookNow a {
  color: var(--third-color);
  font-size: 22px;
  width: 100%;
  height: 100%;
  cursor: pointer;
  padding: 10px;
  display: block;
}
.humburger {
  display: none;
  color: var(--third-color);
  cursor: pointer;
}
.humburger .line {
  transition: all 0.3s ease;
  width: 30px;
  height: 3px;
  background-color: var(--third-color);
  margin: 6px 0;
}
.change .line:first-child {
  transform: translate(0, 8px) rotate(-45deg);
}

.change .line:nth-child(2) {
  opacity: 0;
}
.change .line:last-child {
  transform: translate(0, -10px) rotate(45deg);
}
@media (max-width: 992px) {
  .sideHeader {
    position: absolute;
    top: -400px;
    z-index: -1;
    width: 100% !important;
    left: 50%;
    transform: translateX(-50%);
    background: var(--main-color);
    padding: 10px;
  }
  .header .sideHeader .pages {
    width: unset;
  }
  header .sideHeader .pages ul {
    flex-direction: column;
    gap: 25px;
    margin-top: 10px;
  }
  header .sideHeader .pages ul li {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  header .sideHeader .contact {
    justify-content: center;
  }
  header .sideHeader .pages ul li::before {
    display: none;
  }

  .humburger {
    display: block;
  }
  header .bookNow {
    display: none;
  }
}
.activee {
  /* top: 103px; */
  top: 60px;
}
@media (max-width: 767px) {
  .activee {
    /* top: 103px; */
    top: 60px;
  }
}

/* End Header  */
/* Start Promotion  */
.promotion {
  position: relative;
  z-index: -2;
  height: 100%;
}

@media (min-width: 768px) {
  .promorionCont {
    width: 750px;
  }
}
/* Medium */
@media (min-width: 992px) {
  .promorionCont {
    width: 970px;
  }
}
/* Large */
@media (min-width: 1200px) {
  .promorionCont {
    width: 100%;
  }
}
.promorionCont {
  position: relative;
  overflow: hidden;
  box-shadow: rgba(50, 50, 93, 0.25) -1px 0px 12px -2px,
    rgba(0, 0, 0, 0.3) -1px 0px 7px -3px;
  width: 100%;
  margin: auto;
  height: 100%;

  max-height: 550px;
}

.promotion .image {
  position: relative;
  display: none;
  /* width: 100%; */
  /* height: 100%; */
  /* background-image: url("../image/s0-2.jpg"); */

  /* height: 400px; */
  /* width: 100%; */
  overflow: hidden;
}
.promotion .proSmall {
  display: none;
}

.promotion .image:after {
  display: none;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 50%);
}
.promotion .image img {
  width: 100%;
  max-height: 100%;
  vertical-align: middle;
}

.promotion .pre-btn img,
.promotion .nxt-btn img {
  width: 55px;
}
@media (max-width: 500px) {
  /* .promotion .image {
    height: 200px;
  } */

  /* .promotion .proSmall {
    display: block;
  }
  .promotion .proLarge {
    display: none;
  } */
}
.promotion .bullets {
  position: absolute;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  bottom: 15px;
  display: flex;
  justify-content: center;
}
.promotion .bullets li {
  display: inline-block;
  width: 30px;
  height: 8px;
  border-radius: 3px;
  border: 1px solid transparent;
  background-color: var(--main-color);
  transition: var(--main-transition);
  cursor: pointer;
}
.promotion .bullets li.active,
.promotion .bullets li:hover {
  background-color: var(--main-color-alt);
  border: var(--main-color-alt);
  width: 45px;
}
@media (max-width: 600px) {
  .promotion .bullets li {
    width: 20px;
    height: 6px;
  }
  .promotion .pre-btn img,
  .promotion .nxt-btn img {
    font-size: 20px;
    width: 35px;
  }
  .promotion .bullets li.active,
  .promotion .bullets li:hover {
    width: 30px;
  }
  .pre-btn {
    left: 0px;
  }

  .nxt-btn {
    right: 0px;
  }
}
.promotion .bullets li:not(:last-child) {
  margin-right: 5px;
}

.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
@media only screen and (max-width: 300px) {
  .prev,
  .next,
  .text {
    font-size: 11px;
  }
}
/* End Promotion  */
.about {
  background-color: var(--section-background);
}
.about .headSpecial {
  background-color: var(--section-background);
  margin-top: 0;
  padding-top: 50px;
}
.about .container {
  display: flex;
  gap: 20px;
  padding-bottom: var(--main-padding-bottom);
}

.about .aboutP {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1.2px;
  line-height: 1.5;
}
.about .aboutUs {
  width: 65%;
}
.about .aboutUs h2,
.about .contact h2 {
  text-transform: capitalize;
  font-size: 28px;
  color: var(--main-color);
  text-align: center;
}

.about .contact {
  width: 35%;
}
.about .contact .info {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  gap: 15px;
  font-size: 18px;
}
.about .contact .info a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
@media (max-width: 767px) {
  .about .container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .about .aboutUs,
  .about .contact {
    width: 95%;
  }
  .about .aboutUs h2,
  .about .contact h2 {
    text-align: center;
  }
  .about .contact h2 a {
    text-align: center;
  }
}
/* Start about */
/* End about */
/* Start Book  */
.book {
  padding-top: var(--main-padding-top);
  padding-bottom: var(--main-padding-bottom);
  position: relative;
  z-index: -2;
  overflow-x: hidden;
}

.book .container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
}
@media (max-width: 992px) {
  .book .container {
    flex-direction: column;
    justify-content: center;
  }
}
/* .book h2 {
  display: flex;
  align-items: center;
  position: relative;
  font-size: 35px;
  font-weight: 400;
  flex: 1;
} */
@media (max-width: 767px) {
  .book h2 {
    /* left: -55px; */
  }
}
/* .book h2::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  transform: skewX(-30deg);
  background-color: var(--main-color);
  left: -55px;
} */
.book h2 img {
  width: 50px;
}

.book .container form {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
}
.book .container form span {
  margin-bottom: 10px;
}
.book .container form input,
.book .container form select {
  padding: 10px 15px;
  font-size: 16px;
  min-width: 100%;
  margin-top: 5px;
  border: 1px solid #eee;
  border-radius: var(--radius);
  background-color: white;
  color: var(--main-color-alt);
  -webkit-appearance: none;
  appearance: none;
}

.book .container form label {
  font-size: 18px;
  padding-left: 5px;
}
.book .container form div {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
@media (max-width: 767px) {
  .book .container form div {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }
  .book .container form input {
    width: 100%;
  }
  .book .container form {
    width: 80%;
  }
  .book .container form span {
    width: 100%;
  }
  .book .container form label {
    font-size: 16px;
  }

  .book {
    padding-top: 0;
  }
}

.book .container form .info span:first-child {
  flex: 1;
}

.book .container form .fromTo span {
  width: 100%;
}
.book .container form select {
  flex: 1;
  width: 100%;
}
.book .container form button {
  margin-top: 10px;
  width: 100%;
  padding: 12px;
  font-size: 20px;
  border: 1px solid #eee;
  background-color: var(--main-color);
  border-radius: var(--radius);
  color: white;
  cursor: pointer;
  transition: var(--main-transition);
}
.book .container form button:hover {
  background-color: #273e45;
}
/* End Book  */
/* Start services  */
.services {
  padding-top: var(--main-padding-top);
  padding-bottom: calc(2 * var(--main-padding-bottom));
  /* background-color: var(--section-background); */
  position: relative;
}
.services .container > div {
  display: flex;
  gap: 20px;
}
.headSpecial {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 35px;
  font-weight: 400;
  margin-bottom: 50px;
  left: -20px;
  text-transform: capitalize;
}

.headSpecial::before,
.headSpecial::after {
  content: "";
  width: 40px;
  height: 40px;
  transform: skewX(-30deg);
  background-color: var(--main-color);
  top: 0;
}
@media (max-width: 767px) {
  .headSpecial {
    font-size: 25px;
    font-weight: 500;
    justify-content: flex-start;
    /* margin-left: 55px; */
  }
  .headSpecial::after {
    display: none;
  }
  .about .headSpecial::before {
    top: 50px;
  }
  .headSpecial .headSpecial::before {
    position: absolute;
    left: -55px;
  }
}
.services .container .first div:first-child {
  width: 100%;
}
.services .container .first div:last-child {
  width: 65%;
}
.services .container div h3 {
  margin: 0;
  margin-top: 15px;
  margin-bottom: 5px;
  font-size: 18px;
  font-weight: 300;
}
.services .container div p {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
}
.services .container .imageSer {
  width: 100%;
  height: 240px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.services .container .imageSer::before {
  content: "";
  position: absolute;
}

.services .container .imageSer img {
  width: 100%;
  height: 100%;
}

.services .container .second {
  margin-top: 50px;
}

.services .container .second > div:first-child {
  width: 40%;
}
.services .container .second div:last-child {
  width: 100%;
}

@media (max-width: 767px) {
  .services .container .first div:last-child {
    width: 100%;
  }
  .services .container .second > div:first-child {
    width: 100%;
  }
  .services .container .second > div:first-child,
  .services .container .first div:first-child {
    margin-bottom: 20px;
  }
}
.services .container .third {
  margin-top: 50px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.services .container .third > div {
  flex: 1;
  min-width: 280px;
}

.services .container .third .imageSer {
  width: 100%;
  height: 240px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.services .container .third .imageSer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 600px) {
  .services .container > div {
    flex-direction: column;
  }
}

/* End services  */
/* start locations  */
.locations {
  padding-top: var(--main-padding-top);
  padding-bottom: calc(2 * var(--main-padding-bottom));
  background-color: var(--section-background);
  position: relative;
}
.locations .container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  gap: 30px;
}
.locations .loaction {
  text-align: center;
  background-color: var(--third-color);
  padding: 15px;
  border-radius: var(--radius);
}
.locations .loaction h3 {
  font-size: 24px;
  text-align: center;
  color: var(--main-color);
  position: relative;
  width: fit-content;
  margin: 0 auto;
}
.locations .loaction h3 img {
  width: 22px;
}
.locations .loaction a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  font-size: 18px;
}
.locations .loaction img {
  width: 24px;
}
.locations .loaction p {
  font-size: 18px;
  font-weight: 300;
}
.locations .loaction:hover a img {
  width: 24px;
  animation: right-arrow 0.5s linear infinite;
}
@keyframes right-arrow {
  to {
    transform: translateX(10px);
  }
}
/* end locations  */
/* Start footer  */
footer {
  background-color: var(--main-color);
  position: relative;
  padding-top: var(--main-padding-top);
  max-width: 100%;
}

footer::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #eee;
  top: -1px;
}
footer .container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
}

footer .container .contact,
footer .container .social {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 18px;
  color: var(--third-color);
}
footer .container .contact a {
  color: var(--third-color);
  padding: 15px 0;
  font-size: 20px;
  width: 100%;
  display: flex;
  align-items: center;
}
footer .container .contact a img {
  margin-right: 10px;
  width: 26px;
}
footer .container .social {
  justify-content: flex-start;
}
footer .container .social h2 {
  text-align: center;
  padding-bottom: 10px;
}
footer .container .social a {
  font-size: 28px;
  color: var(--third-color);
  transition: var(--main-transition);
}
footer .container .social a img {
  width: 36px;
}
footer .container .logo img {
  max-width: 300px;
}
@media (max-width: 992px) {
  footer .container {
    flex-direction: column;
  }
  footer .container .contact {
    padding-bottom: 40px;
  }
  footer .container .contact h2 {
    text-align: center;
  }
  footer .container .contact a {
    justify-content: center;
  }
}
footer .social a:not(:first-child) {
  margin-left: 25px;
}

footer .copyright {
  margin: 20px 0 0 0;
  padding: 20px 0;
  border-top: 1px solid var(--third-color);
  color: var(--third-color);
  text-align: center;
}
footer .copyright span a {
  font-weight: bold;
  color: var(--third-color);
}
@media (max-width: 767px) {
  footer .contact {
    padding: 20px 0;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  footer .contact a {
    flex-direction: column;
    font-size: 16px;
    text-align: center;
    width: calc((100% / 2) - 40px);
  }
}
/* End footer  */
/* Start schedule  */
.table {
  background-color: var(--section-background);
  padding-top: var(--main-padding-top);
  padding-bottom: var(--main-padding-bottom);
  z-index: -5;
  position: relative;
}
.table table {
  border: 1px solid #ccc;
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  width: 100%;
  table-layout: fixed;
  direction: rtl;
}

.table table tr {
  border: 1px solid #ddd;
  padding: 1.35em;
}
.table table tbody tr:nth-child(odd) {
  background-color: #2e677b80;
}

.table table th,
.table table td {
  padding: 1.55em;
  text-align: center;
}

.table table th {
  font-size: 0.85em;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media screen and (max-width: 600px) {
  .table table {
    border: 0;
  }

  .table table caption {
    font-size: 1.3em;
  }

  .table table thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }

  .table table tr {
    border-bottom: 3px solid #ddd;
    display: block;
    margin-bottom: 0.625em;
  }

  .table table td {
    border-bottom: 1px solid #ddd;
    display: block;
    font-size: 0.8em;
    text-align: right;
  }

  .table table td::before {
    /*
    * aria-label has no advantage, it won't be read inside a table
    content: attr(aria-label);
    */
    content: attr(data-label);
    float: left;
    font-weight: bold;
    text-transform: uppercase;
  }

  .table table td:last-child {
    border-bottom: 0;
  }
}

/* End schedule  */
/* Start Fleet  */
.fleet {
  padding-top: var(--main-padding-top);
  padding-bottom: var(--main-padding-bottom);
}
.fleet .container {
  display: flex;
  margin-top: var(--main-padding-top);
  margin-bottom: var(--main-padding-bottom);
  padding: 20px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,
    rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  border-radius: var(--radius);
  overflow: hidden;
  gap: 40px;
}
@media (max-width: 767px) {
  .fleet .container {
    margin: 25px 10px;
  }
}
.fleet .container h2 {
  margin-top: 0;
  font-size: 28px;
  text-align: center;
  color: var(--main-color);
}
.fleet .imageFleet {
  box-shadow: rgba(36, 36, 83, 0.25) 0px 6px 12px -2px,
    rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  border-radius: 8px;
  overflow: hidden;
  width: 50%;
  background-position: 50%;
  background-size: cover;
  background-repeat: no-repeat;
  /* height: 300px; */
}
@media (max-width: 991px) {
  .fleet .imageFleet {
    width: 100%;
    min-height: 250px;
  }
}

.fleet .discreption {
  width: 100%;
}
.fleet .discreption table {
  width: 100%;
}
.fleet .discreption table tr {
  background-color: var(--section-background);
}

.fleet .discreption table tr td {
  border-radius: var(--radius);
  padding: 15px;
  text-transform: capitalize;
  font-size: 18px;
  font-weight: 500;
}
@media (max-width: 991px) {
  .fleet .container {
    flex-direction: column;
  }
}
/* End Fleet  */
.error {
  border: 1px solid red !important;
}

.error-message {
  color: red;
  font-size: 13px;
  margin-top: 4px;
  margin-left: 5px;
}
span.done {
  width: 100%;
  margin-top: 10px;
  display: block;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #f5c6cb;
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}
