body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  
  font-size: 15px;
  line-height: 1.6;
  color: 333;
}

*,
*:before,
*:after{
  box-sizing: border-box
}


h1, h2, h3, h4, h5, h6{
  
  margin: 0;
  
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  
}

/* Intro */

.intro {
  width: 100%;
  height: 100vh;
  
  background: url("../images/intro2.jpg") center 
  no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
    
}





/* Header */
.header {
  width: 100%;
  padding-top: 15px;
  
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  
}

.header__inner {
  
  display: flex;
  justify-content: space-between;
  align-items: center;
  
}

.header__logo {
  
  font-size: px30;
  font-weight: 700;
  color: #000;
  
}

/* Nav */

.nav {
  
  font-size: 14px;
  text-transform: uppercase;
  
}

.nav__link {
  display: inline-block
  vertical-align: top;
  margin: 0 15px;
  
  color: #000;
  text-decoration: none;
  
  transition: color .2s linear;
  
}

.nav__link:hover {
  
  color: #CF4B44
}