@import url("https://fonts.googleapis.com/css?family=Montserrat|Muli:400,700&display=swap");
@-webkit-keyframes rotation {
  from {
    -webkit-transform: rotate(359deg);
            transform: rotate(359deg);
  }
  to {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@keyframes rotation {
  from {
    -webkit-transform: rotate(359deg);
            transform: rotate(359deg);
  }
  to {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

html,
body {
  margin: 0;
}

body {
  font-family: 'Muli', sans-serif;
  background: url("../images/hero_bg.jpg") no-repeat center center fixed;
  background-size: cover;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  letter-spacing: .15em;
  text-transform: uppercase;
}

::-webkit-scrollbar {
  width: 0.4rem;
}

::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0.15);
}

::-webkit-scrollbar-thumb {
  background-color: #999;
  outline: 1px solid slategrey;
}

.container.nav-container {
  width: 100%;
}

nav {
  margin-top: 0 !important;
  text-align: center;
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
}

nav a {
  color: #111111;
}

nav a:hover {
  color: #000000;
}

nav .menu-toggle {
  width: 100%;
  text-transform: uppercase;
  font-size: .8rem;
  font-weight: bold;
  letter-spacing: .25em;
  margin-top: .6em;
}

nav .menu-toggle:hover {
  text-decoration: none;
}

nav .navbar-brand {
  text-transform: uppercase;
  font-size: .75rem;
  font-weight: bold;
  color: #000000;
  text-align: center;
  letter-spacing: .25em;
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
  margin: 0 auto;
}

nav .navbar-brand span {
  font-size: .55rem;
  letter-spacing: 1.5em;
  margin: 0 0 0 1.1em;
}

nav .navbar-brand img {
  width: 30px;
  display: block;
  margin: 0 auto;
  padding: 0 0 1em;
}

nav ul li {
  text-transform: uppercase;
  letter-spacing: .25em;
  font-size: .65rem;
  margin: 0 0 0;
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
}

nav ul:last-child {
  border-bottom: #aaaaaa solid 1px;
}

nav.compact {
  z-index: 1;
  background: #ffffff;
  border-radius: 0 0 1em 1em;
  padding-top: 0;
  width: 100%;
  position: fixed;
  top: -1px;
  left: 0;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

nav.compact .navbar-brand {
  background: #ffffff;
  border-radius: 0 0 1em 1em;
  margin-top: 0;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

nav.compact ul li {
  margin: 0;
  font-size: .75rem;
}

hr {
  height: .2em;
  width: 90%;
  margin: 0 auto;
  border: none;
}

#hero {
  height: 100%;
}

#hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  text-align: center;
  margin-top: 7em;
  letter-spacing: inherit;
  text-transform: inherit;
}

#hero hr {
  background: #202529;
  color: #202529;
}

.border-light {
  border-color: #aaaaaa !important;
}

footer {
  background: #202529;
  color: #dddddd;
}

footer .logo-space,
footer .info-space {
  padding: 1.5em 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer .logo-space p {
  text-transform: uppercase;
  font-size: 3rem;
  font-weight: 700;
  display: inline;
  margin-left: .4em;
}

footer .logo {
  -webkit-filter: invert(0.8);
          filter: invert(0.8);
  width: 60px;
}

footer .contact-info {
  padding: .8em;
  min-width: 3em;
}

footer .contact-info a {
  color: #dddddd;
  text-decoration: none;
}

footer .contact-info i {
  font-size: 1.5rem;
  display: block;
  text-align: center;
  border-bottom: thin #dddddd solid;
  padding-bottom: .4em;
  margin-bottom: .2em;
}

#about {
  background: #202529;
  color: #ffffff;
  margin-top: 10rem;
  padding-bottom: 5em;
  border-top-left-radius: 3em;
}

#about h2 {
  margin: 2em 0;
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
}

#about p {
  color: #dddddd;
}

#about h5 {
  letter-spacing: inherit;
  font-weight: bold;
}

#about hr {
  color: #dddddd;
  background-color: #dddddd;
  margin: 0 auto 1em;
}

#about img {
  width: 90%;
  margin: 0 auto;
  -webkit-animation: rotation 10s infinite linear;
          animation: rotation 10s infinite linear;
}

#services {
  background: #c7c7c7;
  color: #202529;
  padding: 5rem 0;
}

#services h2 {
  text-align: center;
}

#services .services_list {
  margin: 1em;
  font-size: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-line-pack: stretch;
      align-content: stretch;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

#services .services_list div {
  margin: 2.5em .5em;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  min-width: 250px;
  max-width: 350px;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 2s ease;
  transition: all 2s ease;
}

#services .services_list div img {
  max-width: 60px;
  -webkit-filter: drop-shadow(0px 0px 0px rgba(0, 0, 0, 0));
          filter: drop-shadow(0px 0px 0px rgba(0, 0, 0, 0));
  -webkit-transition: all 1.5s ease;
  transition: all 1.5s ease;
}

#services .services_list div:hover {
  color: #58170c;
}

#services .services_list div:hover img {
  -webkit-transform: translateY(-15px);
          transform: translateY(-15px);
  -webkit-filter: drop-shadow(0px 0px 10px white);
          filter: drop-shadow(0px 0px 10px white);
}

#services .services_list div span {
  display: contents;
}

#works {
  background: #202529;
  color: #ffffff;
  padding: 5rem 0;
}

#works h2 {
  text-align: center;
}

#works h4 {
  text-align: center;
  opacity: .5;
  margin-bottom: 1em;
}

.gallery {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.gallery a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: rgba(0, 0, 0, 0.2);
  border-radius: .5em;
  margin: .2em;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  overflow: hidden;
  min-width: 200px;
  max-width: 500px;
  padding: 1rem;
}

.gallery a:hover {
  background: rgba(0, 0, 0, 0.4);
}

.gallery a:hover .caption {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.gallery a img {
  width: 100%;
}

.gallery a .caption {
  position: absolute;
  background: rgba(0, 0, 0, 0.8);
  color: #ffffff;
  width: 100%;
  bottom: 0;
  left: 0;
  border-radius: 0 0 .5em .5em;
  padding: .5em .2em .8em .2em;
  text-align: center;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}

.gallery a.video::after {
  content: '';
  position: absolute;
  width: 35%;
  height: 45%;
  background-image: url(../images/video-play-icon.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

#clients {
  background: #ffffff;
  color: #202529;
  padding: 5rem 0;
}

#clients h2 {
  text-align: center;
}

#clients .affiliations-wrap {
  margin: 3em 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#clients .affiliation-logo {
  padding: 100px 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #e0e5fa;
  border-radius: .3em;
  overflow: hidden;
  height: 100px;
  max-width: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#clients .affiliation-logo img {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}

#clients .affiliation-logo:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

#clients .affiliations-wrap img {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

#contact {
  background: #202529;
  color: #ffffff;
  padding: 5rem 0;
}

#contact h2 {
  text-align: center;
}

#contact ul.services-list li a {
  color: #ffffff;
  text-decoration: none;
}

#contact #sendmessage {
  color: #019c00;
  border: 1px solid #019c00;
  display: none;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact #errormessage {
  color: red;
  display: none;
  border: 1px solid red;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact #sendmessage.show,
#contact #errormessage.show,
#contact .show {
  display: block;
}

@media (min-width: 768px) {
  .container {
    max-width: 1000px;
  }
  .container nav {
    margin: 1em 0;
  }
  nav ul li {
    text-transform: uppercase;
    letter-spacing: .25em;
    font-size: .7rem;
    margin: -1.5em 0 0;
  }
  nav ul:last-child {
    border-bottom: none;
  }
  nav.compact {
    height: 50px;
    padding-top: .5rem;
  }
  nav.compact .navbar-brand {
    margin-top: 40px;
  }
  #hero {
    height: calc(100vh - 15em);
  }
  #hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    margin-top: -1em;
  }
  #about {
    margin-top: 0;
    border-top-left-radius: 6em;
  }
  #about h2 {
    font-size: 1.6rem;
  }
  #about hr {
    margin: 0 auto 1em 0;
  }
  #about img {
    width: 80%;
  }
}
/*# sourceMappingURL=main.css.map */