/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* General */
body {
  font-family: Arial, Helvetica, sans-serif;
  /* display: flex; */
  /* align-items: center; */
  /* justify-content: center; */
  min-height: 100vh;
  background-color: #ffffff;
  text-align: center;
}

.container {
  width: 90%;
  max-width: 800px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 85vh;
}

/* Logo */
.logo {
  width: 160px;
  /* max-width: 40vw; */
  /* height: auto; */
  /* margin: 20px 0; */
}

/* Main Text */
h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-top: 10px;
}

.subtitle {
  font-size: 1.5rem;
  letter-spacing: 1px;
  color: #555;
  margin-top: 5px;
}

.coming-soon {
  margin-top: 25px;
  font-size: 1.5rem;
  color: #000;
}

/* Footer bar */
.bottom-bar {
  width: 100%;
  height: 42px;
  background-color: #e7ceae; /* Beige tone from image */
  /* margin-top: 40px; */
  position: relative;
  z-index: 1000;
}

/* Responsive */
@media (max-width: 1199px) {
  h1 {
    font-size: 2rem;
  }

  .subtitle {
    font-size: 1.1rem;
  }

  .coming-soon {
    font-size: 1.3rem;
  }

  .quick-links a {
    font-size: 1.2rem;
}
}

.quick-links {
    margin-top: 40px;
}

.quick-links a {
    color: #888;
    text-decoration: none;
        padding: 2px 10px;
    font-size: 20px;
    transition: 0.3s;
}
.quick-links a:hover {
    color: #ba772c!important;
}
.quick-links a:not(:last-child) {
    border-right: 2px solid #888;
}


@media (max-width: 767px) {
  h1 {
    font-size: 1.5rem;
  }

  .subtitle {
    font-size: 0.85rem;
  }

  .coming-soon {
    font-size: 1.3rem;
  }

  .logo {
    width: auto;
  }
      .quick-links a {
        font-size: 1.1rem;
    }
}
@media (max-width: 575px) {
  h1 {
    font-size: 1.2rem;
  }

  .subtitle {
    font-size: 0.75rem;
  }

  .coming-soon {
    font-size: 0.9rem;
  }

  .logo {
    width: 105px;
  }
        .quick-links a {
        font-size: 1rem;
          
    }
}
@media (max-width: 500px) {
  .quick-links {
    padding: 0 20px;
  }
  .quick-links a {
    font-size: 1rem;
    display:block;
    padding:15px;
    border-right: 0!important;
    border-bottom: 1px solid;
  }
}


[data-aos=fade-in] {
    transition: 1s;
    opacity: 0
}

[data-aos=flip-right] {
    transition: 2s;
    transform: perspective(2500px) rotateY(80deg);
    opacity: 0
}

[data-aos*=fade-up] {
    transform: translateY(100px);
    transition: 2s;
    opacity: 0;
}
.aos-animate[data-aos*=fade],.aos-animate[data-aos=flip-right] {
    transform: inherit;
    opacity: 1
}

/**********************/
.drop-menu {
    background: #e6ceaf2b;
}

@media (min-width:501px){
.has-menu {
    display: inline-block;
    position: relative;
}

.drop-menu {
    border-radius: 4px;
    position: absolute;
    left: -7px;
    border: 1px solid #eee;
    padding: 0 5px;
    background: #e6ceaf30;
    box-shadow: 0 0 8px #eee;
    transition: 0.3s;
    opacity: 0;
}
.drop-menu a {
    display: block;
    border: 0 !important;
    padding: 8px 10px;
    white-space: nowrap;
    font-size: 1rem;
}

.drop-menu a:not(:last-child) {
    border-bottom:1px solid #888!important;
}

.has-menu:hover .drop-menu {
    opacity: 1;
}
}
@media (max-width:500px){
  .quick-links>div>a:first-child {
  font-weight: bold!important;
}
}