body{
	font-family: 'Quicksand', sans-serif;
	margin: 0px;
	width: 100%;
}

header{
	height: 150px;
	width: 100%;
	padding: 0px;
	margin: 0px;
}

#Top{
	background: linear-gradient(154deg, rgb(23 3 111) 0%, rgb(77 29 170) 80%);
	transition: background-color 1s cubic-bezier(1, 1, 1, 1);
	transition-delay: 0s;
	background-attachment: fixed;
	display: block;
	overflow: auto;
	width: 100%;
}


#navbar{
	transition-property: all;
  	transition-duration: 1s;
	padding-right: 10%;
	padding-left: 10%;
z-index: 10;
	position: fixed;
	width: 80%;
}

#navbar ul{

	transition-property: all;
  	transition-duration: 1s;
	display: inherit;
	list-style-type: none;
  	padding: 50px;
	float: right;
	background-color: transparent;
}

#navbar li{
	padding-left: 10px;
	display:inline;
}

#navbar li a{

	transition-property: all;
  transition-duration: .2s;
	color: white;
	text-align: center;
  	padding: 14px 16px;
  	text-decoration: none;
}

#navbar li a:hover {
	background-color: white;
	color: rgba(64,148,208,1);
	border-radius: 35px;
}

#navbar a img{

	transition-property: all;
  transition-duration: 1s;
	padding-top: 30px;
	padding-left: 20px;
	width: unset;
	height: 120px;
}

#navbar img{
	transition-property: all;
  	transition-duration: 1s;
	padding-top: 30px;
	height: 120px;
	width: 182.906px;
}


#navbar input
{
	display: none;
	position: absolute;
	top: 25px;
  right: 25px;
  height: 35px;
	width: 50px;
	float: right;
  
  cursor: pointer;
  
  opacity: 0; /* hide this */
  z-index: 2; /* and place it over the hamburger */
}

#navbar.scrolled {
  background-color:  rgb(23 3 111);

}

#navbar.scrolled img{
	padding-top: 10px;
  height: 70px;
  width: auto;
}

#navbar.scrolled ul{
	padding: 10px;
	padding-right:50px ;
}


#menuButton{
	display: none;
	height: 50px;
	width: 50px;
	float: right;
	margin:25px;
}

#menuButton span{
	display: block;
	background-color: white;
	border-radius: 20px;
	margin: 5px;
	height:5px;
	width: 80%;
  
  z-index: 1;
  
  transform-origin: 4px 0px;
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;

}
#menuButton span:first-child
{
  transform-origin: 0% 0%;
}

#menuButton span:nth-last-child(1)
{
  transform-origin: 0% 100%;
}

/* 
 * Transform all the slices of hamburger
 * into a crossmark.
 */
#navbar input:checked ~ #menuButton span
{
  opacity: 1;
  transform: rotate(45deg) translate(0px, 0px);
}

/*
 * But let's hide the middle one.
 */
#navbar input:checked ~ #menuButton span:nth-last-child(2)
{
  opacity: 0;
  transform: rotate(0deg) scale(0, 0);
  height: 20%;
}

/*
 * Ohyeah and the last one should go the other direction
 */
#navbar input:checked ~ #menuButton span:nth-last-child(1)
{
	opacity: 1;
  transform: rotate(-45deg) translate(0, 0px);
}

#navbar input:checked ~ ul{
	display: initial;
}


#Title {
	overflow: hidden;
}

#Title div:first-child{
	font-size: 3.5vw;
	font-family: "Open Sans", sans-serif;
	text-transform: uppercase;
	color: white;
	float: left;
	text-shadow: 5px 2px 5px rgb(23 3 111);
	width: 50%;
}

#Title div:first-child h2{
	padding: 25% 0 0 30%;
}

#Title div:nth-last-child(2){
	font-size: 70px;
	text-transform: uppercase;
	color: white;
	float: right;
	text-shadow: 5px 2px 5px rgba(9,78,117,1);
	width: 50%;
}


#Title div:nth-last-child(2) img{
	padding: 25% 12% 10% 0%;
	float: right;
	height: unset;
	width: 80%;
}

#Title div:nth-last-child(2)
{
	overflow: hidden;
}
.waves {
  position:relative;
  width: 100%;
  height:15vh;
  margin-bottom:-7px; /*Fix for safari gap*/
  min-height:100px;
  max-height:150px;
}
.waves2 {
  position:relative;
  width: 100%;
  height:15vh;
  margin-bottom:-7px; /*Fix for safari gap*/
  min-height:100px;
  max-height:150px;
  transform: rotate(180deg);
}

/* Animation */

.parallax > use {
  animation: move-forever 25s cubic-bezier(.55,.5,.45,.5)     infinite;
}
.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 15s;
}
.parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 20s;
}
.parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 30s;
}
.parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 35;
}
@keyframes move-forever {
  0% {
   transform: translate3d(-90px,0,0);
  }
  100% { 
    transform: translate3d(85px,0,0);
  }
}


button{
	background-color: white;
  	border: none;
  	color: rgb(23 3 111);
  	padding: 14px 16px;
  	border-radius: 35px;
  	font-size: 20px;
}

button:hover{
	background-color: rgba(255,255,255,0.5);
  	border: none;
  	color: rgb(23 3 111);
  	padding: 14px 16px;
  	border-radius: 35px;
  	font-size: 20px;
}

#About{
	background: white;
	background-attachment: fixed;
	display: block;
	overflow: auto;
	width: 100%;
}

#About img{
	float: left;
	margin:0 0 0 25%;
	height: auto;
	width: 75%;
}

#About div:nth-child(1){
	width: 50%;
	float: right;
	margin: 10% 0 5% 0;

}

#About div:nth-child(2){
	width: 50%;
	float: left;
		margin: 2% 0 5% 0;
}

#AboutText p{
	font-size: 30px;
	margin: 0% 10% 0% 10%;
}

#AboutText h2{
	font-size: 35px;
	font-family: "Open Sans", sans-serif;
	text-transform: uppercase;
	color: rgb(23 3 111);
	margin: 0% 10% 5px 10%;

}

#Clients{
		background: linear-gradient(154deg, rgb(23 3 111) 0%, rgb(77 29 170) 80%);
		text-align: center;
		color: white;
}


#Clients h2::after{    
	content: '';
  display: block;
  width: 150px;
  height: 3px;
  bottom: 0;
  left: 0;
  border-top: white solid 2px;
	right: 0;
	text-align: center;
	margin: 0 auto;
	margin-top: 10px;

}
.container{
	margin: 15% 0 15% 0 ;
}
.CustSlot {
    display: inline;
    height: 120px;
    width: 120px;
    margin: 10px;
    border-radius: 20px;
    overflow: hidden;

}
.CustSlot img{
    height: 120px;
    width: 120px;
}

#Ser{
	/*background: linear-gradient(154deg, rgb(23 3 111) 0%, rgb(77 29 170) 80%);*/
	background-attachment: fixed;
	display: block;
	overflow: hidden;
	padding: 5% 0 0 0;
}

#Ser div.serSlot
{
	transition-property: all;
  transition-duration: 1s;
	padding:  5% 2% 2% 2%;
	width: 24%;
	height: 440px;
	float: left;
	text-align: center;
	font-size: 25px;
	background-color: rgb(233 233 233);
	border-radius: 35px;
	box-shadow: 5px 0px 10px rgba(0, 0, 0, 0.5);
	margin: 2.5%;
	color: rgb(23 3 111);
	display: inline;
}
#Ser h2{
	text-align: center;
	color: rgb(23 3 111);
	font-size: 30px;
}

#Ser h2::after{    
	content: '';
  display: block;
  width: 160px;
  height: 3px;
  bottom: 0;
  left: 0;
  border-top: rgb(23 3 111) solid 5px;
	right: 0;
	text-align: center;
	margin: 0 auto;
	margin-top: 10px;

}

#Ser div.content
{
	margin: 0 20% 0 20%;
	padding: 0 ;
	width: 60%;
	height: 440px;
}

#Ser div.serSlot:Hover
{
	box-shadow:5px 2px 50px black;
}

#Ser div.serSlot:Hover ~ i
{
	color: black;
}

#Ser span
{
	font-size: 30px;
}

#Ser div.serIcon
{
	padding:10px 0px 50px 45%;
}

#Ser div.serIcon i 
{
	--ggs: 4;
}

#Contact{
	transition-property: all;
  transition-duration: 1s;
	width: 100%;
	background: linear-gradient(180deg, rgb(23 3 111) 0%, rgb(77 29 170) 80%);
	overflow: hidden;
}
#ConInfo{
	transition-property: all;
  transition-duration: 1s;
		display: inline-block;
	background-color: white;
	width: 30%;
	margin: 5% 0 10% 20%;
	height: 550px;
	border-radius: 20px 0 0 20px;
}
#ConInfo div{
	padding: 5% 0 0 5%;
	  	font-size: 20px;

}

#ConInfo div i{
	float: left;
		--ggs: 1;
		margin: 10px;

}

#Contact a
{
	color: rgb(77 29 170);
	text-decoration: none;
}
#ConInfo iframe{
	border-radius: 20px;
	margin: 5% 0 0 5%;
}

#ConForm{
	transition-property: all;
  transition-duration: 1s;
		  	font-size: 18px;
	display: inline-block;
	background-color: white;
	float: right;
	width: 30%;
	height: 550px;
	border-radius: 0 20px 20px 0;
	margin: 5% 20% 10% 0;
}
#ConForm input,textarea{
	transition-property: all;
  transition-duration: 1s;
	display: block;
	margin: 0 0 1% 5%;
	padding: 5px;
	width: 80%;
}
#ConForm label{
		display: block;

		margin: 5% 0 2% 5%;
}
#ConForm button{
	transition-property: all;
  transition-duration: 1s;
	width: unset;
	margin: 0 12% 1% 20%;
	background-color:  rgb(77 29 170);
	color: white;
	float: right;
}

#ConForm button:hover{
	background-color:  white;
	color: rgb(77 29 170);
	box-shadow: 0px 0px 10px ;
}



footer{
	padding: 20px;
	text-align: center;
	color: white;
	background-color:  rgb(23 3 111);
}

@media screen and  (max-width: 680px),(max-height: 680px)
{
	#menuButton{
		display: initial;
	}

	#navbar input{
		display: block;
	}
	#navbar{
		display: block;
		overflow: auto;
		padding: 0;
  	position:fixed;
  	width: 100%;
	}

	#navbar.Check{
		background-color: rgb(23 3 111);
	}

  #navbar ul {
  	display: none;
  	float: left;
  	padding: 0;
  	padding-left: 5%;
  	width: 80%;
	}

	#navbar li {
		padding: 20px 10px 10px 0;
		display: block;
		width: 40%;
	}

	#navbar li a{
		color: white;
		padding: 0;
		padding: 10px;
	}

	#navbar li a:hover {
		background-color: white;
		color: rgba(64,148,208,1);
	}

	#navbar li a:active {
		background-color: rgba(64,148,208,1);
		color: white;
		border-radius: 25px;
	}

	#navbar a img{
		padding-left: 30px;
        	padding-top: 10px;
		width: unset;
		height: 70px;
	}

	#navbar img{
		padding-top:10px ;
		display: initial;
		width: unset;
		height: 70px;
	}

	#Title{
		overflow: all;
	}



	#Title div:first-child
	{
		font-size: 35px;
		width: 100%;
	}

	#Title div:first-child h2
	{
		padding: 35% 0 0 10%;
	}

	#Title div:nth-last-child(2)
	{
		width: 100%;
	}
	#Title div:nth-last-child(2) img
	{
		padding-top: 0;

	}
	.waves {
    height:40px;
    min-height:40px;
  }
	.waves2 {
    height:40px;
    min-height:40px;
  }

	/*#About{
		box-shadow: 0 0 0 42px white;
	}

	#About img{
		float: left;
		padding: 0;
		padding-top: 50px;
		padding-left:10% ;
		height:unset;
		width: 80%;
	}

	#AboutText
	{
		width: 80%;
		padding: 0;
		padding-left: 10%;
		float: left;
	}

	#AboutText p{
		font-size: 18px;
		margin: 0;
		width: 100%;
	}

	#AboutText h2{
	}*/

	#About div:nth-child(1){
		width: 100%;
		float: right;
		margin: 10% 0 5% 0;
		text-align: center;
	}
	#About div:nth-child(1) h2{
		font-size: 30px;
	}
	#About div:nth-child(1) p{
		font-size: 20px;
	}
	#About div:nth-child(2){
		width: 100%;
		float: left;
			margin: 2% 0 5% 0;
	}
	#About div:nth-child(2) img{
		width: 90%;
		margin: 5%;
	}
	#Ser div.content{
		width: 100%;
		margin: 0;
		padding: 0;
	}

	#Ser div.serSlot
	{
		width: 80%;
		height: 440px;
		margin: 5% 5% 0 5%;
		display: block;
		float: left;
		padding: 10% 2.5% 0 2.5%;
	}
}
