
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    background-color: rgb(0, 0, 0);
    color: #555;
    font-family: "Roboto","Open Sans","Arial",sans-serif; 
    font-weight: 300;
    font-size: 1rem;
    text-rendering: optimizeLegibility;
  
}

.header-section {
    height: 100vh;
    position: relative;
    background-size: cover;
    background-position: center;
    
}

@media screen and (min-width: 1025px) {
    .header-section{
        background-attachment: fixed;
    }
} 

.header-container{
    background: rgb(0, 0, 0);
    

}

header {
    max-width: 1200px;
    margin: 0 auto;
    /* padding: 20px; */
    background: rgb(0, 0, 0);
    font:  500 12px "Poppins","Open Sans","Arial",sans-serif; 
    /* color: #757575; */
    color:#fff;
    line-height: 30px;
    letter-spacing: 1px;
    text-transform: uppercase;
    
} 

.header-text {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center; 
    font:  700 4rem "Roboto","Open Sans","Arial",sans-serif; 
    /* line-height: 2rem;
    letter-spacing: 1px; */
    text-transform: none;   
    -webkit-font-smoothing: antialiased; 
    -moz-osx-font-smoothing: grayscale;
    
}


.logo{
    margin: 1rem;
    width: 8rem;
    text-align: center;
    box-sizing: border-box;
    float: left;
   }

.qr-code{
    width: 18rem;
}

.logo-big{
    width: 22rem;
    margin: 4rem auto auto 8rem;
}

nav{
    float: right;
    padding-top:2rem; 
    
}
.clearfix{
    clear: both;
}

nav ul{
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    list-style-type: none;
    
}

nav ul li a 
{
    display: block;
    margin: 10px 0;
    padding: 10px 20px;
    text-decoration: none;
    color: #fff;
}


/* nav ul li a.active, */
nav ul li a:hover
{
    /* background: #EA2027; */
    color: #535c68;
    border-bottom: 2px solid #fff;
    transition: 0.5s;
    
}

nav ul li a:link
{
    text-decoration: none;
}

/* @media (max-width:1200px) {
    header {
        margin: 20px;
    }
} */

@media (max-width:768px) {
    .menu-toggle {
        padding-top:1rem;
        display: block;
        width: 40px;
        height: 20px;
        margin: 10px;
        /* background: #ccc; */
        float: right;
        cursor: pointer;
        text-align: center;
        font-size: 30px;
        color: #fff;

    }
    .menu-toggle::before{
        content: '\f0c9';
        font-family: "fontAwesome";
        line-height: 40px;
        
    }
    .menu-toggle.active::before{
        content: '\f00d';
        
    }
    .logo{
        width: 6rem;
    }
    
    .logo-big{
        width: 18rem;
        margin: 1rem auto;
    }
    .qr-code{
        width: 18rem;
        margin: 4rem auto;
    }
    nav{
        
        display: none;
        text-align: center;
        position: relative; /* to make sure it is on top layer*/
        z-index: 10; /* to make sure it is on top layer*/
        background-color: #fff;
    }
    nav ul li a {
        color: #535c68;
    }
    nav.active{
        display: block;
        width: 100%;
        
    }
    nav ul li a.active,
    nav ul li a:hover {
        background: #535c68;
        color: #fff;
        border-bottom: none;
        transition: 0.5s;
        border-radius: 4px;
        
        }
    nav.active ul{
        display: block;
        background-color: fff;
        
      
    }
    nav.active ul li{
        margin: 0;
       
    }
   
   
   .header-text{
       font-size: 2rem;
   }
   .info-image{
       width: 50%;
   }
   
}



.demo a {
    position: absolute;
    bottom: 20%;
    left: 50%;
    z-index: 2;
    display: inline-block;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    color: #fff;
    font : normal 400 1.3rem/1 'Josefin Sans', sans-serif;
    letter-spacing: .1em;
    text-decoration: none;
    transition: opacity .3s;
  }
  .demo a:hover {
    opacity: .5;
  }

  #scrool-down a {
    padding-top: 80px;
  }
  #scrool-down a span {
    position: absolute;
    top: 0;
    left: 50%;
    width: 20px;
    height: 20px;
    margin-left: -12px;
    border-left: 1px solid #fff;
    border-bottom: 1px solid #fff;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-animation: sdb07 2s infinite;
    animation: sdb07 2s infinite;
    opacity: 0;
    box-sizing: border-box;
  }
  #scrool-down a span:nth-of-type(1) {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
  }
  #scrool-down a span:nth-of-type(2) {
    top: 16px;
    -webkit-animation-delay: .15s;
    animation-delay: .15s;
  }
  #scrool-down a span:nth-of-type(3) {
    top: 32px;
    -webkit-animation-delay: .3s;
    animation-delay: .3s;
  }
  @-webkit-keyframes sdb07 {
    0% {
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }
  @keyframes sdb07 {
    0% {
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }  


  h3 {
    font:  600 35px "Poppins","Open Sans","Arial",sans-serif; 
      color: #303132;
      line-height: 50px;
      letter-spacing: -0.7px;
      text-transform: none;}

  h4{
    font:  300 34px "Roboto","Open Sans","Arial",sans-serif; 
    color: #383838;
    line-height: 50px;
    text-transform: none;
  }
 
  h6 {
    font:  500 1.2rem "Poppins","Open Sans","Arial",sans-serif; 
      line-height: 32px;
      letter-spacing: 1px;
      text-transform: uppercase;
    }


/* Zoom In #1 */

.hover figure img {
    
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.hover figure:hover img {
	-webkit-transform: scale(1.3);
	transform: scale(1.3);
}