* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    
    
  }

  html {

  font-size: 10px;
	font-family: 'Roboto', sans-serif;
	color: #138eaa;

  }

body {
  
   height: 100%;

    /*border: 1px red solid;*/
   
   
}

h1 {
    padding: 8px;
    color: #47a4f2;
    text-align: center;
    
    font-size: 44px;
    font-family: 'Arial Bold', sans-serif;
    font-weight: 600;
    margin: 20px;
    text-transform: uppercase;
    /*border: 1px red solid;*/
}

h2 {
    text-align: center;
    
}

h3 {
    font-size: 50px;
}

p {
    line-height: 1.5;
   
}

main {
    margin: 0 auto;
}

a {
    text-decoration: none;
    color: black;
}

a:hover {
    text-decoration: underline;
}
/*
#banner {
    width: 100%;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: white;
    color: white;
  border: 1px solid red;

}
*/


#banner img {
    width: 100%;
    /*border: 1px red solid;*/
}

/*BACK TO TOP BUTTON*/

#back-to-top-btn {
  
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 26px;
  width: 50px;
  height: 50px;
  background: none;
  color: rgba(66, 66, 66, 0.6);
  opacity: 0.8;
  cursor: pointer;
  outline: none;
  border-radius: 50%;
  border: 1px solid rgba(66, 66, 66, 0.6);
  transition-duration: 0.2s;
  transition-timing-function: ease-in-out;
  transition-property: background-color, color;
  z-index: 100000;
}

#back-to-top-btn:hover {
  background: rgba(132, 196, 76, 0.7);
  
  
}


/* Navigation 

nav {
    height: 72px;
   
    background: #fff;
    width: 100%;
    position: fixed;
    font-family: 'Roboto Slab', sans-serif;
    font-size: 17px;
    display: flex;
    justify-content: space-between;
    padding: 0 16px 0 0;
    box-sizing: border-box;
    z-index: 100;
     /*order: 1px red solid;

}

nav a{
    padding: 0 32px;
    color: black;
    transition: 0.4s;
    text-align: center;

}

nav a:hover{
    text-decoration: none;
    color: #84c44c;
}

nav ul{
    display: flex;
    color: black;
    text-decoration: none;
    list-style: none;
    justify-content: space-around;
    align-items: center;
    height: 100%;
    margin: 0;
    
}





.active a{
    color: #84c44c;
}

#logo-img {
    display: flex;
  
    background: none;
    padding: 0 30px;
    align-items: center;
    color: white;
    transition: .4s;
    
}

#logo-img img {
    height: 100px;
    padding: 20px 30px 20px;
}

#logo-img:hover {
    background: white;
}


#menu-icon {
    height: 100%;
    font-size: 28px;
    padding: 0 4px;
    color: #eee;
    display: none;
    align-items: center;
}

*/


header {
  z-index: 999;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;

  transition: 0.5s ease;

  padding: 10px 10px;
  
  transition: 0.2s;
  
}

/*menu*/


.brand {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  text-decoration: none;
  
  position: relative;
  transition: 0.2s;

  
   /*border: 1px red solid;*/
}

.brand img{
  
  width: 40px;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}




header .navigation {
  position: relative;
  /*border: 1px red solid;*/

}

header .navigation .navigation-items a {
  position: relative;
  color: #fff;
  font-size: 1em;
  font-weight: 500;
  text-decoration: none;
  margin-left: 30px;
  transition: 0.3s ease;
  font-family: "Poppins", sans-serif;
  /*border: 1px red solid;*/

}

header .navigation .navigation-items a:before {
  content: '';
  position: absolute;
  background: #fff;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  transition: 0.3s ease;
  /*border: 1px red solid;*/
  
}

header .navigation .navigation-items a:hover:before {
  width: 100%;
  /*border: 1px red solid;*/
}

.hidden {
  opacity: 0;
  filter: blur(5px);
  transform: translateY(100px);
  transition: all 1s;
}


.show {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0)
}


.section1 {
  
  background: #ffff;
  min-height: 500px;;
  position: relative;
  width: 100%;
  /*border: 1px red solid;*/
}

.section1:before {
  z-index: 777;
  content: '';
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
 /*background: linear-gradient(45deg, rgba(242,158,37,1) 0%, rgba(186,98,217,1) 50%, rgba(71,164,242,1) 75%, rgba(132,196,76,1) 100%);*/

 /*background: linear-gradient(to right, #000000, rgba(255, 115, 0, 0));*/
  mix-blend-mode: multiply;
  width: 100%;
  height: 500px;
  top: 0;
  left: 0;
  /*border: 1px red solid;*/
}

img.center {
  max-width: 100%;
  max-height: 450px

  
  /*border: 1px red solid;*/
}

.home {
  
  position: relative;
  width: 100%;
  min-height: 500px;
  display: flex;
  margin: 0 auto;
  justify-content: center;
  flex-direction: column;
  /*border: 1px red solid;*/
}

.home .content {
  z-index: 888;
  color: #fff;
  width: 70%;
  margin: 0 auto;
  /*border: 1px red solid;*/
  

}


.home .content {
 max-width: 800px;
 text-align: center;
 /*border: 1px red solid;*/

}




.home .content h1 {
  font-weight: 900;
  color: #fff;
  letter-spacing: 5px;
  /*line-height: 50px;*/
  /*border: 1px red solid;*/
  text-align: left;
  padding: 0 !important;
  margin: 0 !important;
  /*border: 1px red solid;*/

}

.home .content h1 span {
  font-size: 20px;
  font-weight: 200;
}

.home .content p {
  margin-bottom: 65px;
}


.home .content a {
 background: #f1651d;
 padding: 15px 35px;
 color: #fff;
 font-size: 1.1em;
 font-weight: 500;
 text-decoration: none;
 border-radius: 2px;
}


.section1 video {
  z-index: 000;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 500px;
 
  object-fit: cover;
  /*border: 1px red solid;*/
}

.portfolio{
  width: 100%;
}

.portfolio img{
  margin: 0 auto;
  display: block;
  height: auto;
  max-width: 100%;
}
/*
.section1 img {
  z-index: 000;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
*/
/*
@media (max-width: 1040px) {
  header {
    padding: 12px 20px;
    
  }
*/
  .section1 {
    padding-left: 20px;
    background: #2696e9;
  
  }



  
header .navigation {
  display: none;
}

header .navigation.active {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(1, 1, 1, 0.7);
  
}


.menu-btn {
  background: url(img/menu.png)no-repeat;
  background-size: 25px;
  background-position: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: 0.3s ease;
}

.menu-btn.active{
  z-index: 999;
  background: url(img/close.png) no-repeat;
  background-size: 25px;
  background-position: center;
  transition: 0.3s ease;
}

header .navigation.active .navigation-items a {
  
  color: #fff;
  font-size: 1.2em;
  margin: 20px;
 

}



header .navigation .navigation-items {
  
  background: rgba(255, 255, 255, 0.3);
  width: 600px;
  max-width: 600px;
  margin: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 5px;
  box-shadow: 0 5px 25px rgba(1 1 1 /20%);
  backdrop-filter: blur(5px);
 

}



/*Start Footer*/

.copyright{
	width: 100%;
	text-align: center;
	color: white;
	background-image: linear-gradient(90deg, rgba(1,206,166,1) 0%, rgba(102,33,131,1) 38%, rgba(202,39,162,1) 74%, rgba(254,152,0,1) 100%);
	padding: 1rem 0;
	position: relative;
  bottom: 0;
	
}


.up{
	position: absolute;
	width: 5rem;
	height: 5rem;
	background-color: #eee;
	top: -2.5rem;
	right: 5rem;
	border-radius: 100%;
	display: flex;
	animation: pulse 2s infinite;
	cursor: pointer;
}

.up i{
	color: #16162d;
	font-size: 2rem;
	margin: auto;

}

.copyright p{
	font-size: 1.4rem;
}

/*End Footer*/


@keyframes pulse {
	0%{
		box-shadow: 0 0 0 0 rgba(253, 87, 191, 0.99);
	}	
	70%{
		box-shadow: 0 0 0 2rem rgba(253, 87, 191, 0);
	}
	100%{
		box-shadow: 0 0 0 0 rgba(253, 87, 191, 0);
	}
	
}



  @media(prefers-reduced-motion) {
      .hidden {
          transition: none;
      }
  }

  @media screen and (max-width: 600px) {

    .up{
      right: 2rem;
    }
  }

