* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  height: 100%;
}

/* width */
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 5px grey;
          box-shadow: inset 0 0 5px grey;
  border-radius: 0px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  height: 0%;
  background: purple;
  border-radius: 3px;
}

header {
  display: block;
  margin: 0;
  padding: 0;
  height: 100px;
  /* NAVIGATION */
  /* MOBILE MENU & ANIMATION */
}

header .center-text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
}

header .center-text h1 {
  color: white;
}

header .nav-wrapper {
  width: 100%;
  height: 80px;
  position: fixed;
  top: 0;
  background-color: #fff;
  z-index: 3;
}

header .navbar {
  position: relative;
  display: -ms-grid;
  display: grid;
      grid-template-areas: "img ul ul ul" "img . . .";
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 80px;
  overflow: hidden;
}

header .navbar img {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 1;
  grid-area: img;
  height: 100%;
  max-height: 78px;
  -ms-grid-column-align: start;
      justify-self: start;
  margin-left: 20px;
}

@media only screen and (min-width: 992px) {
  header .navbar ul {
    padding-top: 20px;
    -ms-grid-row: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 3;
    grid-area: ul;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}

header .nav-item a {
  color: #000;
  text-decoration: none;
  -webkit-transition: color 0.3s ease-out;
  transition: color 0.3s ease-out;
}

header .nav-item a:hover {
  text-decoration: none;
  color: #3498db;
}

header .nav > li > a:focus,
header .nav > li > a:hover {
  text-decoration: none;
  background-color: #eee;
}

header .menu-toggle .bar {
  width: 25px;
  height: 3px;
  background-color: #3f3f3f;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

header .menu-toggle {
  position: relative;
  width: 25px;
  top: 25px;
  right: -100%;
}

header .menu-toggle:hover {
  cursor: pointer;
}

header #mobile-menu.is-active .bar:nth-child(2) {
  opacity: 0;
}

header #mobile-menu.is-active .bar:nth-child(1) {
  -webkit-transform: translateY(8px) rotate(45deg);
  transform: translateY(8px) rotate(45deg);
}

header #mobile-menu.is-active .bar:nth-child(3) {
  -webkit-transform: translateY(-8px) rotate(-45deg);
  transform: translateY(-8px) rotate(-45deg);
}

.footer {
  height: 60vh;
  padding: 6vh 3vw;
  background-color: #333;
}

.footer h3 {
  font-size: 24px;
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
}

.footer h4 {
  font-size: 18px;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
}

.footer .grid-footer {
  padding-bottom: 2rem;
  display: -ms-grid;
  display: grid;
  grid-column-gap: 10px;
  height: 100%;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
      grid-template-areas: "links about contact";
  border-bottom: solid 2px #777777;
}

.footer .grid-footer .about-footer {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  grid-area: about;
  text-align: center;
  border: solid 2px white;
  border-radius: 4px;
}

.footer .grid-footer .about-footer p {
  color: white;
}

.footer .grid-footer .about-footer h3 {
  color: white;
}

.footer .grid-footer .links {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: links;
}

.footer .grid-footer .links h3 {
  color: white;
}

.footer .grid-footer .links .ul-footer {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.footer .grid-footer .links .ul-footer li {
  list-style: none;
}

.footer .grid-footer .contact-info {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  grid-area: contact;
  padding-left: 2rem;
}

.footer .grid-footer .contact-info .icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  text-decoration: none;
  list-style: none;
}

.footer .grid-footer .contact-info .icons a {
  text-decoration: none;
  list-style: none;
}

.footer .grid-footer .contact-info .icons a img {
  height: 30px;
}

.footer .grid-footer .contact-info p {
  color: white;
}

.footer .grid-footer .contact-info h3, .footer .grid-footer .contact-info h4 {
  color: white;
}

.footer .grid-footer .contact-info #phone-number-footer {
  display: inline-block;
}

.footer .grid-footer .contact-info #email-footer {
  display: inline-block;
}

.footer .about-footer a,
.footer .links a,
.footer .contact-info a,
.footer .copyright a {
  text-align: center;
  text-decoration: none;
  color: #777777;
}

.footer .about-footer a p,
.footer .links a p,
.footer .contact-info a p,
.footer .copyright a p {
  margin: 6vh 3vw;
}

.footer .about-footer a:hover,
.footer .links a:hover,
.footer .contact-info a:hover,
.footer .copyright a:hover {
  border-bottom: solid 1px white;
}

.animate {
  font-size: 40px;
  -webkit-animation: bounce 1s alternate infinite ease-in;
          animation: bounce 1s alternate infinite ease-in;
}

@-webkit-keyframes bounce {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
}

@keyframes bounce {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
}

/* Left Demo ---*/
#main-cont1 {
  position: fixed;
  right: 3%;
  bottom: 30px;
  width: 50px;
  display: none;
  z-index: 9000;
}

#container1 {
  background: rgba(0, 0, 0, 0);
  text-decoration: none;
  display: block;
}

@media only screen and (max-width: 768px) {
  .footer {
    position: relative;
    background-color: #333;
    height: auto;
  }
  .footer .grid-footer {
    height: auto;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        grid-template-areas: "links" "about" "contact";
  }
  .footer .grid-footer .about-footer {
    color: black;
    border: none;
    border-bottom: 2px solid white;
  }
  .footer .grid-footer .about-footer p {
    color: white;
  }
  .footer .grid-footer .links {
    border: none;
    border-bottom: 2px solid white;
  }
  .footer .grid-footer .contact-info {
    color: red;
    border: none;
  }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (max-width: 992px) {
  /* MOBILE NAVIGATION */
  .navbar ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: fixed;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    top: 55px;
    background-color: #fff;
    width: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    height: calc(100vh - 55px);
    -webkit-transform: translate(-101%);
            transform: translate(-101%);
    text-decoration: none;
    list-style: none;
    text-align: center;
    overflow: hidden;
  }
  .navbar li {
    padding: 15px;
  }
  .navbar li:first-child {
    margin-top: -15px;
  }
  .navbar li a {
    font-size: 1rem;
  }
  .menu-toggle .bar {
    display: block;
    cursor: pointer;
  }
  .mobile-nav {
    -webkit-transform: translate(0%) !important;
            transform: translate(0%) !important;
  }
  header {
    height: auto;
  }
}
/*# sourceMappingURL=templete.css.map */