html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

*, *::before, *::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  margin: 0;
  padding: 0;
}

#myDropdown {
  -webkit-transition: 0.5s -webkit-transform;
  transition: 0.5s -webkit-transform;
  transition: 0.5s transform;
  transition: 0.5s transform, 0.5s -webkit-transform;
}

.nav__drop {
  margin: 0;
  padding: 0;
  color: white;
  background-color: black;
  height: 70px;
  position: fixed;
  margin: auto;
  z-index: 9;
  width: 100%;
}

@media all and (min-width: 768px) {
  .nav__drop {
    display: none;
  }
}

.nav__drop--content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  position: relative;
  list-style: none;
  font-family: 'Lato', sans-serif;
  text-transform: uppercase;
}

.nav__drop--item {
  padding-top: 23px;
}

.nav__drop--item a {
  color: white;
  text-decoration: none;
}

.nav__drop--item a:hover {
  z-index: 10;
}

.nav__drop--item a:focus {
  outline: none;
}

.nav__drop--content > li {
  background-color: black;
  position: relative;
  padding: .5rem 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -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: 0;
      -ms-flex: 0 1 33.33%;
          flex: 0 1 33.33%;
}

.nav__drop--content > li:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0%;
  top: 0%;
  width: 1px;
  height: 100%;
  background-color: white;
}

#myDropdown li {
  position: relative;
  z-index: 1;
}

#myDropdown li:after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 1px;
  content: '.';
  color: transparent;
  background: rgba(73, 73, 72, 0.4);
  visibility: none;
  opacity: 0;
  z-index: -1;
}

#myDropdown li:hover:after {
  opacity: 1;
  visibility: visible;
  height: 100%;
}

#myDropdown li,
#myDropdown li:after,
#myDropdown li:before {
  -webkit-transition: all .55s;
  transition: all .55s;
}

#myDropdown li:hover {
  color: #555;
}

nav {
  width: 100%;
  background-color: white;
  padding-left: 0;
  padding-right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  z-index: 10;
  -webkit-box-shadow: 0 3px rgba(0, 0, 0, 0.2);
          box-shadow: 0 3px rgba(0, 0, 0, 0.2);
  height: 70px;
}

.nav-container {
  width: 66.6%;
  background-color: white;
  margin: auto;
}

@media all and (min-width: 768px) and (max-width: 960px) {
  .nav-container {
    width: 50%;
  }
}

@media all and (max-width: 768px) {
  .nav__active {
    -webkit-transform: translatey(70px);
            transform: translatey(70px);
  }
}

.nav__plus--wrapper:hover {
  cursor: pointer;
}

@media all and (min-width: 768px) {
  .nav__plus--wrapper {
    display: none;
  }
}

@media all and (max-width: 768px) {
  .nav__plus--wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    float: right;
    color: black;
  }
}

.nav__plus {
  position: relative;
  margin-top: 9.75px;
  background: black;
  height: 36px;
  position: relative;
  width: 8px;
}

.nav__plus:after {
  background: black;
  content: "";
  height: 8px;
  left: -13.7px;
  position: absolute;
  top: 13.8px;
  width: 36px;
}

.nav__plus:hover {
  opacity: .85;
}

.nav__plus--active {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.logo {
  display: inline-block;
  padding-top: 2px;
}

.logo:hover {
  opacity: .85;
}

.nav-links {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  float: right;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media all and (max-width: 768px) {
  .nav-links {
    display: none;
  }
}

.nav-item a {
  display: inline-block;
  padding: 10px 15px;
  padding-bottom: 7px;
  text-decoration: none;
  color: black;
  -webkit-transform: translatey(15%);
          transform: translatey(15%);
}

/* NAVIGATION HOVER */
nav ul li a,
nav ul li a:after,
nav ul li a:before {
  -webkit-transition: all .5s;
  transition: all .5s;
}

nav ul li a:hover {
  color: black;
}

.nav-container ul li a {
  position: relative;
}

.nav-container ul li a:after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 0%;
  content: '.';
  color: transparent;
  background: black;
  height: 1px;
}

.nav-container ul li a:hover:after {
  width: 75%;
}

.nav-container ul li a {
  -webkit-transition: all 2s;
  transition: all 2s;
}

.nav-item:hover a {
  color: black;
}

.logo img {
  vertical-align: middle;
  height: 50px;
  width: 50px;
}

.nav-item-last a {
  margin-right: 0;
}

.intro {
  position: relative;
  margin: 0;
  padding: 0;
  height: 100vh;
  min-height: 400px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.6))), url("images/background-3.jpg");
  background: linear-gradient(rgba(0, 0, 0, 0.6)), url("images/background-3.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

@media all and (min-width: 768px) {
  .intro {
    background-attachment: fixed;
  }
}

.intro__wrapper {
  width: 90%;
  position: relative;
  margin: 0 auto;
  top: 28%;
}

@media all and (min-width: 320px) and (max-width: 455px) {
  .intro__wrapper {
    top: 28%;
  }
}

@media all and (min-width: 455px) and (max-width: 667px) {
  .intro__wrapper {
    top: 41%;
  }
}

@media all and (min-width: 667px) and (max-width: 768px) {
  .intro__wrapper {
    top: 42%;
  }
}

@media all and (min-width: 960px) {
  .intro__wrapper {
    width: 61.6%;
    top: 44%;
  }
}

@media all and (min-width: 768px) and (max-width: 960px) {
  .intro__wrapper {
    width: 50%;
    top: 44%;
  }
}

.intro__content {
  font-size: 26px;
  color: white;
  text-align: center;
  position: relative;
  font-family: 'Lato', sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

@media all and (min-width: 320px) and (max-width: 455px) {
  .intro__content {
    padding-top: 25px;
  }
}

@media all and (min-width: 960px) {
  .intro__content {
    line-height: 1.2;
  }
}

@media all and (min-width: 768px) and (max-width: 960px) {
  .intro__content {
    line-height: 1.2;
    font-size: 22px;
  }
}

@media all and (min-width: 768px) {
  .intro__content p {
    padding-top: 70px;
  }
}

.intro__button {
  position: absolute;
  color: black;
  background-color: white;
  margin-top: 20px;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  left: 50%;
  height: 46px;
  width: 140px;
  font-size: 16px;
  font-weight: bolder;
  border-radius: 6px;
  text-transform: uppercase;
}

@media all and (min-width: 768px) {
  .intro__button {
    margin-top: 30px;
  }
}

.intro__button:hover {
  cursor: pointer;
  opacity: .9;
}

.intro__button:focus {
  outline: none;
  border: none;
}

.work {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  padding-bottom: 4%;
  max-width: 1700px;
  margin: 0 auto;
}

@media all and (min-width: 768px) and (max-width: 960px) {
  .work {
    padding-bottom: 2.5%;
  }
}

@media all and (min-width: 320px) and (max-width: 768px) {
  .work {
    padding-bottom: 0;
  }
}

.work:before {
  content: '';
  display: block;
  position: relative;
  width: 0;
  height: 5em;
  margin-top: -70px;
}

.work__wrapper {
  width: 66.6%;
  grid-row-gap: 2.3%;
  grid-column-gap: 2.7%;
  list-style-type: none;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 31.53% 31.53% 31.53%;
      grid-template-columns: 31.53% 31.53% 31.53%;
  margin: auto;
  padding: 0;
  padding-top: 6%;
  padding-bottom: 6%;
}

@media all and (min-width: 768px) and (max-width: 960px) {
  .work__wrapper {
    width: 50%;
    grid-row-gap: 2.9%;
    height: 76%;
    position: relative;
    padding-bottom: 7.5%;
    padding-top: 7.5%;
    left: 50%;
    -webkit-transform: translate(-50%);
            transform: translate(-50%);
    margin: 0;
  }
}

@media all and (min-width: 320px) and (max-width: 768px) {
  .work__wrapper {
    display: block;
    width: 81.25%;
    padding-bottom: 0;
  }
}

.work__li {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
}

@media all and (min-width: 320px) and (max-width: 768px) {
  .work__li {
    padding-bottom: 7%;
  }
}

@media all and (min-width: 320px) and (max-width: 768px) {
  .work__li--inactive {
    display: none;
  }
}

.work__li a {
  text-decoration: none;
}

.work__img {
  width: 100%;
  height: 100%;
}

p {
  padding: 0;
  margin: 0;
}

.img__wrap {
  position: relative;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 200px;
}

@media all and (min-width: 320px) and (min-width: 550px) {
  .img__wrap {
    height: 310px;
  }
}

@media all and (min-width: 320px) and (min-width: 768px) {
  .img__wrap {
    height: 100px;
  }
}

@media all and (min-width: 320px) and (min-width: 960px) {
  .img__wrap {
    height: 150px;
  }
}

@media all and (min-width: 320px) and (min-width: 1240px) {
  .img__wrap {
    height: 200px;
  }
}

.img__wrap--1 {
  background-image: url("images/new-era2.png");
}

.img__wrap--3 {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.2))), url(images/tropicana2.jpg);
  background: linear-gradient(rgba(0, 0, 0, 0.2)), url(images/tropicana2.jpg);
  background-size: cover;
}

.img__wrap--5 {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.2))), url(images/vuejs.jpg);
  background: linear-gradient(rgba(0, 0, 0, 0.2)), url(images/vuejs.jpg);
  background-size: cover;
}

.img__wrap--7 {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.1))), url(images/music-savants.jpg);
  background: linear-gradient(rgba(0, 0, 0, 0.1)), url(images/music-savants.jpg);
  background-size: cover;
}

.img__wrap--9 {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.1))), url(images/sands.jpg);
  background: linear-gradient(rgba(0, 0, 0, 0.1)), url(images/sands.jpg);
  background-size: cover;
}

.img__description {
  top: 50%;
  margin: 0 auto;
  text-align: center;
  position: relative;
  width: 100%;
  color: #fff;
  position: relative;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-filter: brightness(120%);
          filter: brightness(120%);
}

.img__hover:hover .img__content {
  visibility: visible;
  opacity: 1;
  text-decoration: none;
}

.img__content {
  height: 100%;
  width: 100%;
  display: block;
  position: relative;
  margin: auto auto;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity .2s, visibility .2s;
  transition: opacity .2s, visibility .2s;
  text-decoration: none;
}

.about {
  overflow: auto;
  margin: 0;
  padding: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.3))), url("images/backimg.jpg");
  background: linear-gradient(rgba(0, 0, 0, 0.3)), url("images/backimg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding-bottom: 93px;
}

@media all and (min-width: 768px) {
  .about {
    padding-bottom: 113px;
  }
}

.about__container {
  width: 100%;
  padding-top: 93px;
}

@media all and (min-width: 768px) {
  .about__container {
    padding-top: 113px;
  }
}

.about__header {
  font-size: 36px;
  font-weight: normal;
  font-family: 'Lato', sans-serif;
  text-align: center;
  color: white;
  position: relative;
  display: block;
  -webkit-font-smoothing: antialiased;
}

@media all and (min-width: 320px) and (max-width: 768px) {
  .about__header {
    font-size: 26px;
  }
}

.about__photo {
  display: block;
  padding-top: 35px;
  margin: 0 auto;
  width: 140px;
  text-align: center;
}

@media all and (min-width: 320px) and (max-width: 768px) {
  .about__photo {
    width: 216px;
    padding-top: 43px;
  }
}

.about__photo--divide {
  border-top: 1px solid white;
  display: block;
  position: relative;
  width: 90px;
  margin: 0 auto;
  margin-top: 30px;
  text-align: center;
}

@media all and (min-width: 320px) and (max-width: 768px) {
  .about__photo--divide {
    width: 189px;
    margin-top: 25px;
  }
}

.about__content {
  text-align: center;
  width: 47%;
  color: white;
  position: relative;
  margin: 0;
  margin-top: 35px;
  padding: 0;
  font-family: 'Lato', sans-serif;
  line-height: 1.5;
  display: inline-block;
  color: white;
}

@media all and (min-width: 320px) and (max-width: 768px) {
  .about__content {
    width: 75%;
    margin-top: 30px;
  }
}

.about__content--1 {
  padding-bottom: 10px;
}

.about__content--wrapper {
  height: 30%;
  width: 100%;
  text-align: center;
}

.contact {
  margin: 0;
  padding: 0;
  background-color: #000000;
}

.contact__container {
  height: 100%;
  width: 100%;
  position: relative;
  padding-top: 65px;
  padding-bottom: 65px;
}

@media all and (min-width: 320px) and (max-width: 655px) {
  .contact__container {
    padding-top: 55px;
    padding-bottom: 55px;
  }
}

@media all and (min-width: 655px) and (max-width: 768px) {
  .contact__container {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

.contact__wrapper {
  width: 100%;
  height: 100%;
}

.contact__header {
  font-size: 36px;
  font-weight: normal;
  font-family: 'Lato', sans-serif;
  text-align: center;
  color: white;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

.contact__content {
  text-align: center;
  width: 47%;
  color: white;
  position: relative;
  margin: 0 auto;
  padding: 0;
  font-family: 'Lato', sans-serif;
  line-height: 1.5;
  display: block;
  color: white;
  margin-top: 10px;
  -webkit-font-smoothing: antialiased;
}

@media all and (min-width: 320px) and (max-width: 768px) {
  .contact__content {
    font-size: 16px;
    width: 66%;
    margin-top: 8px;
  }
}

.contact__content-p--mobile {
  display: block;
}

@media all and (min-width: 320px) and (max-width: 866px) {
  .contact__content-p--mobile {
    display: none;
  }
}

.contact__content-p--desktop {
  display: block;
}

@media all and (min-width: 867px) {
  .contact__content-p--desktop {
    display: none;
  }
}

.contact__content--link {
  color: white;
}

@media all and (min-width: 320px) and (max-width: 768px) {
  .contact__content--link {
    font-weight: bold;
  }
}

.contact__content--link:hover {
  opacity: .9;
}

.footer {
  width: 100%;
  padding: 0;
  background-image: url(images/backgroundfoot.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.footer__container {
  height: 100%;
  width: 100%;
  position: relative;
  border-top: 1.5px solid rgba(145, 145, 149, 0.2);
}

.footer__container--circle-wrap {
  width: 100%;
  position: relative;
  top: -4%;
}

.footer__container--circle-icon {
  position: relative;
  margin: 0 auto;
  left: 50%;
  top: -36px;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
}

@media all and (min-width: 320px) and (max-width: 768px) {
  .footer__container--circle-icon {
    top: -38px;
  }
}

.footer__container--circle-icon:before {
  color: black;
}

.footer__container--circle-icon-background {
  background-color: white;
  display: block;
  height: 25px;
  width: 29px;
  position: relative;
  margin: 0 auto;
  margin-bottom: -12px;
  top: -12px;
  border-radius: 25%;
}

.footer__links {
  font-size: 16px;
  font-weight: normal;
  font-family: 'Lato', sans-serif;
  text-align: center;
  padding-top: 55px;
  border-top: 1px solid white;
  color: #a1a3a6;
  position: relative;
  width: 108px;
  margin: 0 auto;
  margin-top: 10px;
  -webkit-font-smoothing: antialiased;
}

@media all and (min-width: 320px) and (max-width: 768px) {
  .footer__links {
    border-top: 1.2px solid white;
    width: 156px;
  }
}

.footer__links--color {
  color: #a1a3a6;
}

.footer__links--color:hover {
  color: white;
}

.footer__content {
  text-align: center;
  width: 47%;
  color: white;
  position: relative;
  margin: 0;
  padding: 0;
  font-family: 'Lato', sans-serif;
  line-height: 1.5;
  display: block;
  color: #a1a3a6;
  -webkit-font-smoothing: antialiased;
  margin: 0 auto;
  margin-top: 45px;
  padding-bottom: 45px;
}

@media all and (min-width: 320px) and (max-width: 768px) {
  .footer__content {
    width: 90%;
    font-size: 14px;
    line-height: 1.3;
  }
}

.footer__content--email-icon {
  color: #a1a3a6;
}

.footer__content--linked-icon {
  padding-left: 32px;
  color: #a1a3a6;
}

@media all and (min-width: 320px) and (max-width: 768px) {
  .footer__content--linked-icon {
    padding-left: 44px;
  }
}

.footer__content--linked-icon:hover {
  color: white;
}
/*# sourceMappingURL=style6.css.map */