*{
  box-sizing: border-box;
}

body{
  font-family: 'Cuprum', sans-serif;
  font-size: 15px;
  line-height: 1.5;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  background-color: #272727;
}

.hidden{
  display: none;
}

.visible-mobile {
  display: none;
}

header{
  background-color: #272727;
  min-height: 80px;
}

header::after{
  content:'';
  display:block;
  width: 85%;
  height: 80px;

  -webkit-box-shadow:0 0 20px rgba(0,0,0,0.5);
  -moz-box-shadow:0 0 20px rgba(0,0,0,0.5);
  box-shadow:0 0 20px rgba(0,0,0,0.5);
  top:0%;
  bottom:0;
  left:10px;
  right:10px;
  -moz-border-radius:100px / 10px;
  border-radius:100px / 10px;

  position: absolute;
  bottom: 0;
  left: 10%;
  z-index: -1;
}

nav{
  padding: 8px;
}

.logo{
  float: left;
  padding: 8px;
  margin-left: 9%;
  margin-top: 8px;
}

.logo a{
  color: #49abbf;
  text-transform: uppercase;
  font-size: 32px;
  letter-spacing: 2px;
  text-decoration: none;
}

nav ul{
  float: right;
  margin-right: 5%;
}
nav ul li{
  display: inline-block;
  float: left;
  padding: 10px 0 0 40px;
}
nav ul li a{
  color: #49abbf;
  text-decoration: none;
  text-transform: capitalize;
  font-size: 18px;
  letter-spacing: 1px;
  transition: all .3s ease;
}
nav ul li a:hover{
  color: #d6d6d6;
}

h1{
  font-size: 20px;
  font-weight: 100;
  color: #ffffff;
  line-height: 1.8;
}

.ig{
  width: 36px;
  display: inline-block;
  float: left;
  margin-top: 0;
  margin-left: 12px;
  margin-right: 12px;
}

.container-contact {
  width: 80%;
  margin: 0 auto;
  text-align: center;
}

.small-break {
  display: none;
}

.container-text{
  height: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 10%;
  padding-bottom: 10%;
}

@media screen and (max-width: 864px){
  .logo{
    padding: 0;
    position: absolute;
  }
  .nav-wrapper{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #fff;
    opacity: 0;
    transition: all 0.2s ease;
  }
  .nav-wrapper ul{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
  }
  .nav-wrapper ul li{
    display: block;
    float: none;
    width: 100%;
    text-align: right;
    margin-bottom: 10px;
  }
  .nav-wrapper ul li:nth-child(1) a{
    transition-delay: 0.05s;
  }
  .nav-wrapper ul li:nth-child(2) a{
    transition-delay: 0.1s;
  }
  .nav-wrapper ul li:nth-child(3) a{
    transition-delay: 0.18s;
  }
  .nav-wrapper ul li:nth-child(4) a{
    transition-delay: 0.3s;
  }
  .nav-wrapper ul li:not(:first-child){
    margin-left: 0;
  }
  .nav-wrapper ul li a{
    padding: 10px 24px;
    opacity: 0;
    color: grey;
    font-size: 18px;
    letter-spacing: 1px;
    transform: translateX(-20px);
    transition: all 0.2s ease;
  }

  .nav-btn{
    position: absolute;
    right: 15px;
    top: 15px;
    display: block;
    width: 48px;
    height: 48px;
    cursor: pointer;
    z-index: 2;
    border-radius: 50%;
  }
  .nav-btn i{
    display: block;
    height: 2px;
    background: #49abbf;
    border-radius: 2px;
    margin-left: 14px;
  }
  .nav-btn i:nth-child(1){
    margin-top: 16px;
    width: 24px;
  }
  .nav-btn i:nth-child(2){
    margin-top: 6px;
    opacity: 1;
    width: 20px;
  }
  .nav-btn i:nth-child(3){
    margin-top: 6px;
    width: 24px;
  }
  #nav:checked + .nav-btn{
    transform: rotate(45deg);
  }
  #nav:checked + .nav-btn i{
    background: grey;
    transition: transform 0.2s ease;
  }
  #nav:checked + .nav-btn i:nth-child(1){
    transform: translateY(8px) rotate(180deg);
  }
  #nav:checked + .nav-btn i:nth-child(2){
    opacity: 0;
  }
  #nav:checked + .nav-btn i:nth-child(3){
    transform: translateY(-8px) rotate(90deg);
  }
  #nav:checked ~ .nav-wrapper{
    z-index: 1;
    opacity: .95;
  }
  #nav:checked ~ .nav-wrapper ul li a{
    opacity: 1;
    transform: translateX(0);
  }
}
@media screen and (max-width: 480px){
  .logo{
    margin-left: 5%;
  }
  .visible-mobile{
    display: block;
  }
  .hidden-mobile{
    display: none;
  }
  footer {
    margin-top: auto;
    text-align: center;
    padding-bottom: 20px;
  }
  body {
    display: flex;
    flex-direction: column;
  }
  .container-text {
    padding-top: 20%;
  }
}

@media screen and (max-width: 432px){
  .ig{
    width: 30px;
    margin-left: 8px;
    margin-right: 8px;
    margin-bottom: 5px;
  }
  .small-break {
    display: block;
  }
}

h2{
  font-size: 20px;
  font-weight: 100;
  color: #818181;
  line-height: 1em;
}

.container{
  margin: 0 auto;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center; 
  text-align: center;
}

.container-contact h2 {
  margin-bottom: 20px;
}

.container-contact a {
  display: inline-block;
  margin: 0 0px;
  vertical-align: middle;
}

.container-contact img {
  max-width: 100%;
  height: auto;
}