.header {
    height: 225px;
    text-align: center;
 
}

.header .logo-holder {
    height: 300px;
    top: 25px;
}

.header .logo-holder .logo {
    width: 85%;
}

.header .title-holder {
    height: 300px;
    
}

.header .title-holder .title {
    font-size: 46px;
    font-weight: 400;
    top: 100px;  
    left: 0;
}

.header .title-holder .tag-line {
    font-size: 26px;
    font-weight: 300;
    top: 110px;
   
}

.header .title-holder a {
    text-decoration: none;
    font-size: 22px;
    font-weight: 300;
    top: 125px; 
}

.header .title-holder a:hover {
    color: #e16036;
}


.section {
    top: 50px;
}

.code {
    left: 300px;
}

.info, .info-img {
    height: 350px;
    text-align: center;
}
.info {
    top: 50px;
}

.info p {
    font-size: 22px;
    font-weight: 300;
    width: 75%;
    top: 25px;  
}

.info b {
    color: #e16036;
    text-transform: uppercase;
}

.info-img img {
    width: 75%;
}
.head {
    width: 100%;
    height: 400px;
    background-image: url(https://png.pngtree.com/thumb_back/fw800/back_pic/03/98/85/2057f61fabc8d1b.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat; 
    overflow: hidden;
}
.inner-header{
    height: 100%;
    width: 100%;
}
.nav-bttn{
    width: 100px;
    height: 100px;
    float: right;
    right: 50px;
    cursor: pointer;
}
li{
    float: right;
    width: 100px;
    height: 10px;
    background-color: white;
    list-style: none;
    top:25px;
    margin-top: 5px;
    transition: 0.25s
}
.nav-bttn:hover .middle{
    width: 75px;
    transition: 0.25s
}
.nav-bttn:hover .bttm{
    width: 50px;
    transition: 0.25s
}
.inner-title{
    font-size: 55px;
    font-family: sans-serif;
    font-weight: 300;
    color: whitesmoke;
    left: 35%;
    top: 400px;
    animation-duration: 5s;
  animation-fill-mode: both;
    animation-name: scroll;
}
@keyframes scroll {
  0% {
    opacity: 0;
    transform:  translateY(0);   
  }
  100% {
    opacity: 1;
    transform:translateY(-225px);
  }
}