.bounce-top {
  display: block;
  animation: bounce-top 2s infinite both;
}

/*
 * ----------------------------------------
 * animation bounce-top
 * ----------------------------------------
 */
@keyframes bounce-top {
  0% {
    transform: translate(-50%, -45px);
    animation-timing-function: ease-in;
    opacity: 1;
  }
  24% {
    opacity: 1;
  }
  40% {
    transform: translate(-50%, -24px);
    animation-timing-function: ease-in;
  }
  65% {
    transform: translate(-50%, -12px);
    animation-timing-function: ease-in;
  }
  25%, 55%, 75%, 87% {
    transform: translate(-50%, 0px);
    animation-timing-function: ease-out;
  }
  100% {
    transform: translate(-50%, 0px);
    animation-timing-function: ease-out;
    opacity: 1;
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-padding-top: 74px;
  font-size: 1rem;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: #ececec;
}

.underline-title {
  margin: 0 auto 40px;
  width: 100px;
  height: 4px;
  background-color: #00a0e3;
}

#btnBackToTop {
  position: fixed;
  background-color: rgb(0, 30, 70);
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(245, 243, 243, 0.404);
  width: 40px;
  height: 40px;
  bottom: 60px;
  right: 4%;
  color: white;
  border: none;
  display: none;
  z-index: 5;
}

nav {
  text-transform: uppercase;
  z-index: 3;
}
nav .navbar-text {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  text-shadow: 2px -2px 1px rgba(5, 2, 2, 0.856);
}

.flag {
  font-size: 2rem;
}

.dropdown a {
  color: #fff;
}

.date-time {
  color: #fff;
  text-shadow: 2px -2px 1px rgba(5, 2, 2, 0.856);
}

.shadow-bg {
  background-color: rgba(0, 30, 70, 0.973);
}

.header-text {
  height: 450px;
  padding-top: 36px;
}
.header-text .section-title {
  padding-top: 130px;
  text-align: center;
  font-weight: 600;
  font-size: 2.4rem;
  color: #ffffff;
  text-shadow: 2px -2px 1px rgba(5, 2, 2, 0.856);
}
.header-text .section-title span {
  color: #913c75;
  text-shadow: 2px -2px 1px rgba(20, 1, 1, 0.877);
}
.header-text .text-title-info {
  color: #00aeef;
  font-weight: 600;
  font-size: 1.5rem;
  text-shadow: 2px -2px 1px rgba(12, 2, 2, 0.897);
}
.header-text .text-title-info span {
  font-size: 2rem;
  color: #ffffff;
  font-weight: 600;
  text-shadow: 2px -2px 1px rgba(15, 1, 1, 0.897);
}

.header-img {
  position: relative;
  background-image: url("../img/parking-5427614_1280-1.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: rgb(0, 30, 70);
  z-index: 0;
}
.header-img .header-shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(45, 43, 53, 0.4);
  z-index: -5;
}

.prices-img {
  position: relative;
  background-image: url("../img/tumblr_oiwytz4dh41tf8vylo1_1280.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.prices .price-box {
  background: #c33764;
  background: linear-gradient(to bottom, #1d2671, #c33764);
  color: #fff;
  border-radius: 30px;
}
.prices .price-box .logo-img {
  border-radius: 20%;
}
.prices .price-box .price-box-text {
  font-size: 10px;
}
.prices .btn {
  font-weight: 600;
  font-size: 0.8rem;
  color: #ffffff;
  background: linear-gradient(150deg, rgb(0, 62, 113) 0%, #0081b5 42%);
  padding: 8px 20px;
  box-shadow: rgb(0, 0, 0) 0px 0px 0px 0px;
  border-radius: 50px;
  transition: 1000ms;
  transform: translateY(0);
  cursor: pointer;
  text-transform: uppercase;
  margin: 5px;
  width: auto;
}
.prices .btn:hover {
  transition: 1000ms;
  padding: 10px 30px;
  transform: translateY(0px);
  background: linear-gradient(150deg, rgb(0, 62, 113) 0%, #0081b5 42%);
  color: #d1a507;
  border: solid 2px #d1a507;
}
.prices .btn1 {
  font-weight: 600;
  font-size: 1rem;
  color: #ffffff;
  background: linear-gradient(150deg, rgb(0, 62, 113) 0%, #00aeef 42%);
  padding: 10px 30px;
  border: 2px solid #d1a507;
  box-shadow: rgb(0, 0, 0) 0px 0px 0px 0px;
  border-radius: 50px;
  transition: 1000ms;
  transform: translateY(0);
  cursor: pointer;
  text-transform: uppercase;
  margin: 15px;
  width: auto;
}
.prices .btn1:hover {
  transition: 1000ms;
  padding: 10px 40px;
  transform: translateY(0px);
  background: linear-gradient(150deg, rgb(0, 62, 113) 0%, #0081b5 42%);
  color: #d1a507;
  border: solid 2px #d1a507;
}
.prices .price-box {
  margin: 20px;
  padding: 35px;
  background-color: #fff;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.4);
  transition: scale 0.3s;
}
.prices .price-box span {
  font-weight: bold;
}
.prices .price-box i {
  padding: 0 5px;
  font-size: 24px;
}
.prices .price-box button {
  padding: 10px 20px;
  text-transform: uppercase;
}
.prices .price-box:hover {
  scale: 1.05;
}
.prices .price-title {
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 3rem;
}
.prices .price-tag {
  font-weight: bold;
  font-size: 30px;
}
.prices .price-info {
  margin-top: 30px;
}
.prices .price-info a {
  text-decoration: none;
}
.prices .price-span {
  font-size: 2rem;
}
.prices .btnI {
  color: #d1a507;
  cursor: pointer;
}

/* Redirect Modal */
.redirect-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 30, 80, 0.95);
  z-index: 10000;
  justify-content: center;
  align-items: center;
}

.redirect-modal.active {
  display: flex;
}

.redirect-modal__content {
  background: white;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  max-width: 400px;
  animation: modalFadeIn 0.3s ease;
}

.redirect-modal__icon {
  font-size: 48px;
  color: #0085c8;
  margin-bottom: 20px;
}

.redirect-modal__title {
  font-size: 24px;
  font-weight: 700;
  color: #001e50;
  margin-bottom: 15px;
}

.redirect-modal__text {
  font-size: 16px;
  color: #666;
  margin-bottom: 25px;
}

.redirect-modal__spinner {
  display: flex;
  justify-content: center;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #0085c8;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.faq-section {
  background-color: whitesmoke;
}
.faq-section .section-title-faq {
  font-weight: 600;
  font-size: 2rem;
  color: #003366;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.faq-accordion .accordion-item {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1rem;
  border: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.24);
}
.faq-accordion .accordion-button {
  font-weight: 600;
  font-size: 1rem;
  color: #003366;
  background-color: rgb(0, 30, 70);
  color: #fff;
  text-transform: uppercase;
}
.faq-accordion .accordion-button:focus {
  box-shadow: none;
}
.faq-accordion .accordion-button.collapsed {
  background: #ffffff;
  color: #003366;
}
.faq-accordion .accordion-body {
  background-color: #ffffff;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #2c3e50;
}
.faq-accordion .accordion-body a {
  color: #00aeef;
  text-decoration: none;
}
.faq-accordion .accordion-body a:hover {
  text-decoration: underline;
}

.about-apcoa {
  background-color: #00aeef;
  border-left: 2px solid rgb(0, 30, 70);
}
.about-apcoa__box {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.493);
}
.about-apcoa__title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: #003366;
  font-weight: 600;
}
.about-apcoa__text {
  line-height: 1.6;
  color: #2c3e50;
  margin-bottom: 0.75rem;
}
.about-apcoa__link {
  color: #00aeef;
  font-weight: 600;
  text-decoration: none;
}
.about-apcoa__link:hover {
  text-decoration: underline;
}

.footer .listHeader {
  font-weight: 600;
}
.footer .searchhero-image-bg {
  color: #fff;
  z-index: -2;
}
.footer .footeroverlay {
  background-color: rgb(0, 30, 70);
  height: 100%;
  right: 0;
  position: relative;
  top: 0;
  width: 100%;
  z-index: 0;
}
.footer .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.footer .justify-content-end {
  justify-content: flex-end !important;
}
.footer img {
  vertical-align: middle;
  border-style: none;
}
.footer .footerList {
  font-size: 0.9rem;
}
.footer .footerList a {
  color: #fff;
  text-decoration: none;
}
.footer .footerList a:hover {
  text-decoration: underline;
}

/* The Modal (background) */
.modal,
.modal1,
.modal2,
.modal3,
.modal4 {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  padding-top: 20px; /* Location of the box */
  z-index: 5; /* Sit on top */
  left: 0;
  top: 0;
  min-width: 285px;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.5); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
  color: #00a0e3;
  background-color: #fefefe;
  margin: 4% auto; /* 15% from the top and centered */
  padding: 100px;
  border: 1px solid #888;
  width: auto; /* Could be more or less, depending on screen size */
}
.modal-content .table th {
  font-weight: 600;
}
.modal-content .table th {
  font-weight: 600;
}
.modal-content .btn1 {
  font-weight: 600;
  font-size: 1rem;
  color: #ffffff;
  background: linear-gradient(150deg, rgb(0, 62, 113) 0%, #00aeef 42%);
  padding: 10px 30px;
  border: 2px solid #d1a507;
  box-shadow: rgb(0, 0, 0) 0px 0px 0px 0px;
  border-radius: 50px;
  transition: 1000ms;
  transform: translateY(0);
  cursor: pointer;
  text-transform: uppercase;
  margin: 15px;
  width: auto;
}
.modal-content .btn1:hover {
  transition: 1000ms;
  padding: 10px 40px;
  transform: translateY(0px);
  background: linear-gradient(150deg, rgb(0, 62, 113) 0%, #0081b5 42%);
  color: #d1a507;
  border: solid 2px #d1a507;
}
.modal-content .btnMap {
  font-weight: 600;
  font-size: 1rem;
  color: #ffffff;
  background: linear-gradient(150deg, rgb(0, 62, 113) 0%, #00aeef 42%);
  padding: 10px 30px;
  border: 2px solid #d1a507;
  box-shadow: rgb(0, 0, 0) 0px 0px 0px 0px;
  border-radius: 50px;
  transition: 1000ms;
  transform: translateY(0);
  cursor: pointer;
  text-transform: uppercase;
  margin: 15px;
  width: auto;
}
.modal-content .btnMap:hover {
  transition: 1000ms;
  padding: 10px 40px;
  transform: translateY(0px);
  background: linear-gradient(150deg, rgb(0, 62, 113) 0%, #0081b5 42%);
  color: #d1a507;
  border: solid 2px #d1a507;
}

/* The Close Button */
.close,
.close1,
.close2,
.close3,
.close4 {
  color: #00a0e3;
  float: right;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}

.close:hover,
.close:focus,
.close1:hover,
.close1:focus,
.close2:hover,
.close2:focus,
.close3:hover,
.close3:focus,
.close4:hover,
.close4:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.modalM,
.modalM1,
.modalM2,
.modalM3,
.modalM4 {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 5; /* Sit on top */
  padding-top: 50px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.9); /* Black w/ opacity */
  /* Modal Content (Image) */
  /* The Close Button */
}
.modalM .modal-content,
.modalM1 .modal-content,
.modalM2 .modal-content,
.modalM3 .modal-content,
.modalM4 .modal-content {
  margin: 1% auto; /* % from the top and centered */
  display: block;
  height: auto;
  padding: 10px;
  max-width: 1280px;
  border: 1px solid #888;
}
.modalM .closeM,
.modalM .closeM1,
.modalM .closeM2,
.modalM .closeM3,
.modalM .closeM4,
.modalM1 .closeM,
.modalM1 .closeM1,
.modalM1 .closeM2,
.modalM1 .closeM3,
.modalM1 .closeM4,
.modalM2 .closeM,
.modalM2 .closeM1,
.modalM2 .closeM2,
.modalM2 .closeM3,
.modalM2 .closeM4,
.modalM3 .closeM,
.modalM3 .closeM1,
.modalM3 .closeM2,
.modalM3 .closeM3,
.modalM3 .closeM4,
.modalM4 .closeM,
.modalM4 .closeM1,
.modalM4 .closeM2,
.modalM4 .closeM3,
.modalM4 .closeM4 {
  position: absolute;
  top: 10px;
  right: 55px;
  color: white;
  font-size: 2.5rem;
  font-weight: bold;
  transition: 0.3s;
}
.modalM .closeM:hover,
.modalM .closeM:focus,
.modalM .closeM1:hover,
.modalM .closeM1:focus,
.modalM .closeM2:hover,
.modalM .closeM2:focus,
.modalM .closeM3:hover,
.modalM .closeM3:focus,
.modalM .closeM4:hover,
.modalM .closeM4:focus,
.modalM1 .closeM:hover,
.modalM1 .closeM:focus,
.modalM1 .closeM1:hover,
.modalM1 .closeM1:focus,
.modalM1 .closeM2:hover,
.modalM1 .closeM2:focus,
.modalM1 .closeM3:hover,
.modalM1 .closeM3:focus,
.modalM1 .closeM4:hover,
.modalM1 .closeM4:focus,
.modalM2 .closeM:hover,
.modalM2 .closeM:focus,
.modalM2 .closeM1:hover,
.modalM2 .closeM1:focus,
.modalM2 .closeM2:hover,
.modalM2 .closeM2:focus,
.modalM2 .closeM3:hover,
.modalM2 .closeM3:focus,
.modalM2 .closeM4:hover,
.modalM2 .closeM4:focus,
.modalM3 .closeM:hover,
.modalM3 .closeM:focus,
.modalM3 .closeM1:hover,
.modalM3 .closeM1:focus,
.modalM3 .closeM2:hover,
.modalM3 .closeM2:focus,
.modalM3 .closeM3:hover,
.modalM3 .closeM3:focus,
.modalM3 .closeM4:hover,
.modalM3 .closeM4:focus,
.modalM4 .closeM:hover,
.modalM4 .closeM:focus,
.modalM4 .closeM1:hover,
.modalM4 .closeM1:focus,
.modalM4 .closeM2:hover,
.modalM4 .closeM2:focus,
.modalM4 .closeM3:hover,
.modalM4 .closeM3:focus,
.modalM4 .closeM4:hover,
.modalM4 .closeM4:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

.modal-info {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  padding-top: 20px; /* Location of the box */
  z-index: 5; /* Sit on top */
  left: 0;
  top: 0;
  min-width: 285px;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.5); /* Black w/ opacity */
}
.modal-info .modal-content {
  color: #0066cc;
  border-radius: 20px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
}
.modal-info .modal-content span {
  color: red;
}
.modal-info .closeI:hover,
.modal-info .closeI:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
.modal-info .closeI {
  color: #00a0e3;
  float: right;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px) {
  nav .navbar-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
  }
  .modal-content {
    width: 100%;
  }
  .modal-content {
    padding: 2px;
    width: 90%;
  }
  #btnBackToTop {
    bottom: 20px;
    right: 10px;
  }
  .header-img {
    background-image: url("../img/parking-5427614_792-1.webp");
  }
  .header-text {
    height: 390px;
  }
  .header-text .section-title {
    font-size: 1.7rem;
    padding-top: 145px;
    margin: 0px 10px;
  }
  .header-text .text-title-info {
    font-size: 1.2rem;
  }
  .header-text .text-title-info span {
    font-size: 1.4rem;
  }
  .faq-section .section-title-faq {
    font-size: 1.5rem;
  }
  .about-apcoa__box {
    padding: 1.5rem;
  }
}
@media (min-width: 768px) {
  .modal-content {
    padding: 2px;
    width: 60%;
  }
}
@media (min-width: 992px) {
  html {
    scroll-padding-top: 72px;
  }
}/*# sourceMappingURL=main.css.map */