@import "cssreset.css";
@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,600i,700');
@import "landing-page/top-section.css";
@import "landing-page/services-section.css";
@import "landing-page/portfolio-section.css";
@import "landing-page/experience-section.css";
@import "landing-page/blog-section.css";
@import "landing-page/testimonials-section.css";
@import "portfolio/portfolio-projects.css";
@import "footer-section.css";


.container{
  max-width: 1150px;
  margin: 0 auto;
}

header{
  display: flex;
  justify-content: space-between;

  padding: 20px;
}

header .logo{
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  color: white;
}

header .logo .name{
  display: none;
  /* display: flex; */

  padding: 15px 20px;

  text-decoration: none;
  color: white;

  background: black;
 }

header .header-menu{
  display: flex;
  justify-content: center;
  align-items: center;

  font-size: 1rem;
  text-transform: uppercase;
  text-decoration: none;
}

header .header-menu a{
  padding: 0 10px;

  text-decoration: none;
  color: black;
  /* transition: all .3s ease-in-out; */
}

header .header-menu a:hover{
  font-weight: 700;
  color: #52b8ff;
}

header .menu-btn{
  display: flex;
  display: none;
  justify-content: center;
  align-items: center;

  padding: 15px;

  font-size: 1.6rem;
  font-weight: 700;
  color: #52b8ff;

  cursor: pointer;
}

.mobile-menu{
  display: none;
  position: absolute;
  z-index: 10;
  top: 0;

  flex-direction: column;
  height: 100vh;
  width: 50%;
  padding: 40px 0;

  background: #fff;

  transform: translate3d(-100%, 0, 0);
  transition: all .4s ease-in-out;
}

.mobile-menu.active{
  -webkit-box-shadow: 2px 0px 78px -15px rgba(0,0,0,0.75);
  -moz-box-shadow: 2px 0px 78px -15px rgba(0,0,0,0.75);
  box-shadow: 2px 0px 78px -15px rgba(0,0,0,0.75);

  transform: translate3d(0, 0, 0);
}

.mobile-menu a{
  padding: 15px;

  text-decoration: none;
  color: black;
}

.mobile-menu a:hover{
  text-decoration: none;
  color: white;

  background: #52b8ff;
}

@media only screen and (max-width: 960px) {
  .container{
    width: 100%;
  }
}

/* Phones */
@media only screen and (max-width: 767px) {
  header .header-menu{
    display: none;
  }

  header .menu-btn{
    display: flex;
  }

  header .logo{
    font-size: 1.3rem;
  }

  .mobile-menu{
    display: flex;
  }
}
