@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300;400;600&display=swap');
html, body {
    background: #f5f5f5;
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Nunito Sans',sans-serif;
}
h1 {
    letter-spacing: 10px;
    font-size: 60px;
    font-family: 'Nunito Sans'
}
h2 {
    font-size: 26px;padding-top:30px;letter-spacing:1px;font-weight:600
}
h3{font-size:20px}
.menu-toggle {
  width: 40px;
  height: 30px;
  position: absolute;
  top: 20px;
  right: 25px;
  cursor: pointer;
}
.menu-toggle.on .one {
  -moz-transform: rotate(45deg) translate(7px, 7px);
  -ms-transform: rotate(45deg) translate(7px, 7px);
  -webkit-transform: rotate(45deg) translate(7px, 7px);
  transform: rotate(45deg) translate(7px, 7px);
}
.menu-toggle.on .two {
  opacity: 0;
}
.menu-toggle.on .three {
  -moz-transform: rotate(-45deg) translate(8px, -10px);
  -ms-transform: rotate(-45deg) translate(8px, -10px);
  -webkit-transform: rotate(-45deg) translate(8px, -10px);
  transform: rotate(-45deg) translate(8px, -10px);
}

.one,
.two,
.three {
  width: 100%;
  height: 5px;
  background: white;
  margin: 6px auto;
  backface-visibility: hidden;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  margin: 4em auto;
  text-align: center;
}
nav ul.hidden {
  display: none;
}
nav ul a {
  -moz-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  text-decoration: none;
  color: white;
  font-size: 2em;
  line-height: 1.5;
  width: 100%;
  display: block;
}
nav ul a:hover {
  /*background-color: rgba(0, 0, 0, 0.5);*/
}

.menu-section.on {
  z-index: 10;
  width: 100%;
  height: 100%;
  display: block;
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
}
.main{background:url(../content/images/img2.jpg) no-repeat center;height:100%; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover;color:#fff;text-align:center}
#wrap {
  min-height: 100%;
  height: auto !important;
  height: 100%;
  margin: 0 auto;
  padding: 0 0 100px;
   display: flex;
  justify-content: center;
  align-items: center;
}
.logo{margin-top:40%;width:350px}
#footer { min-height: 100px; background-color: #444;color:#bbb;font-size:15px;padding-top:20px}
#footer a{margin:0 2px;padding:10px;border:solid 1px #444;border-radius:50%;width:40px;height:40px;display:inline-block;background:#333}
#footer a i{color:#eee;font-size:17px;vertical-align:top}
#footer a:hover{background:#222}
#footer a:hover i{color:#5394cf}

.content{
  margin: 0 auto 30px;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.offscreen {
  opacity: 0;
  transform: translateX(-100%);
}
.offscreen:nth-child(2n) {
  transform: translateX(100%);
}
@media (max-width: 768px) {
    h1 {
        font-size: 30px;
    }
    .main {
        
        background-position:center
    }
    .logo {
        margin-top: 80%;
        width: 240px
    }

}