:root {
  --online: #44b700;
  --offline: #b74400;
  margin: 0 !important;
  padding: 0 !important;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

body {
  min-height: 100vh !important;
  position: relative;
  font-family: 'Roboto';
  font-size: 16px;
  color: whitesmoke !important;
  /*background-image: url("img/background.jpg") !important; 
    filter: grayscale(10);
    color: whitesmoke !important;
    height: 100%;

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;*/
  margin: 0;
}

body::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url("img/background.jpg") !important;
  -webkit-filter: grayscale(100);
          filter: grayscale(100);
  color: whitesmoke !important;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  z-index: -1 !important;
  -webkit-animation: fadeIn 5s;
          animation: fadeIn 5s;
}

@media screen and (max-width: 620px) {
  body::before {
    background-position-x: 70%;
  }
}

.App {
  width: 100%;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.App .header {
  width: 100% !important;
  padding: 0 1rem !important;
  background-color: rgba(30, 30, 30, 0.4) !important;
  color: #F1AF31 !important;
  font-size: 24px;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: row !important;
          flex-direction: row !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  -webkit-box-pack: justify !important;
      -ms-flex-pack: justify !important;
          justify-content: space-between !important;
  border-bottom: 2px solid #A1243A;
}

@media screen and (max-width: 620px) {
  .App .header {
    font-size: 21px;
  }
}

.App .header .nav-logo {
  width: 100px;
}

.App .header .custom-toggler.navbar-toggler {
  border-color: #F1AF31;
}

.App .header .custom-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(241, 175, 49, 0.8)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.App .header .navbar-collapse ul li a {
  color: #F1AF31;
}

.App main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: rgba(30, 30, 30, 0.4) !important;
  width: 100%;
}

.App .wrapper {
  width: 60%;
  margin: 0 auto;
}

@media screen and (max-width: 620px) {
  .App .wrapper {
    width: 80%;
  }
}

.App #buttons {
  width: 60%;
  margin: 50px auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(200px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  justify-items: center;
}

.App #buttons a {
  width: 200px;
  padding: 20px 30px;
  position: relative;
  display: block;
  text-decoration: none;
  overflow: hidden;
}

@media screen and (max-width: 670px) {
  .App #buttons a {
    margin-top: 10px;
  }
}

.App #buttons a:hover .wave {
  top: -120px;
}

.App #buttons a span {
  position: relative;
  z-index: 1;
  color: white;
  font-size: 15px;
  letter-spacing: 8px;
}

.App #buttons a .wave {
  width: 200px;
  height: 200px;
  background-color: #F1AF31;
  -webkit-box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5);
          box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5);
  position: absolute;
  left: 0;
  top: -80px;
  -webkit-transition: 1s;
  transition: 1s;
}

.App #buttons a .wave::before, .App #buttons a .wave::after {
  width: 200%;
  height: 200%;
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -75%);
          transform: translate(-50%, -75%);
}

.App #buttons a .wave::before {
  border-radius: 45%;
  background-color: #141414;
  -webkit-animation: wave 10s linear infinite;
          animation: wave 10s linear infinite;
}

.App #buttons a .wave::after {
  border-radius: 40%;
  background-color: rgba(20, 20, 20, 0.5);
  -webkit-animation: wave 20s linear infinite;
          animation: wave 20s linear infinite;
}

.App #about_us h1 {
  text-align: center;
  font-weight: bold;
  color: #F1AF31;
  font-size: 32px;
}

.App #about_us p {
  color: #EFEFEF;
  text-align: justify;
}

.App #about_director {
  margin-top: 50px;
  text-align: center;
}

.App #about_director img {
  margin-bottom: 20px;
  width: 200px;
  height: auto;
  border-radius: 50px;
  -webkit-box-shadow: 0px 10px 80px -10px #888888;
          box-shadow: 0px 10px 80px -10px #888888;
}

.App #about_director h1 {
  text-align: center;
  font-weight: bold;
  color: #F1AF31;
  font-size: 32px;
}

.App footer {
  width: 100%;
  text-align: center;
}

@-webkit-keyframes wave {
  0% {
    -webkit-transform: translate(-50%, -75%) rotate(0deg);
            transform: translate(-50%, -75%) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(-50%, -75%) rotate(360deg);
            transform: translate(-50%, -75%) rotate(360deg);
  }
}

@keyframes wave {
  0% {
    -webkit-transform: translate(-50%, -75%) rotate(0deg);
            transform: translate(-50%, -75%) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(-50%, -75%) rotate(360deg);
            transform: translate(-50%, -75%) rotate(360deg);
  }
}
/*# sourceMappingURL=index.css.map */