*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}
.banner{
    width: 100%;
    height: 60vh;
    background-color: rgb(17, 17, 17);
    background-size: cover;
    background-position: center;
}

.navbar{
    width: 85%;
    margin: auto;
    padding: 35px 0;
    display: flex;
    align-items: center; 
    justify-content: space-between;
}

.logo{
    width: 200px;
    cursor: pointer;
}
.navbar ul li{
    list-style: none;
    display: inline-block;
    margin: 0 20px;
    position: relative;
}

.navbar ul li a{
    text-decoration: none;
    color: rgb(255,204,0);
    text-transform: uppercase;
    font-size: 13px;
}

.navbar ul li::after{
    content: '';
    height: 3px;
    width: 0;
    background: rgb(255,204,0);
    position: absolute;
    left: 0;
    bottom: -10px;
    transition: 0.5s;

}

.navbar ul li:hover::after{
    width: 100%;

}
.content{
    width: 100%;
    position: absolute;
    top: 110%;
    transform: translateY(-50%);
    text-align: center;
    color: rgb(17,17,17);
}

.content h3{
    font-size: 35px;
    margin-top: 100px;
    margin-right: 10px;
}

.content p{
    margin: 20px 150px;
    font-weight: 100;
    line-height: 25px;
    font-size: 25px;
    text-transform: none;
}

section {
    width: 100%;
    display: inline-block;
    background: #ffff;
    height: 150vh;
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    text-decoration: underline;
  }
  
  .footer-distributed{
      background: rgb(17, 17,17);
      box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
      box-sizing: border-box;
      width: 100%;
      text-align: left;
      font: bold 16px sans-serif;
      padding: 55px 50px;
  }
  
  .footer-distributed .footer-left,
  .footer-distributed .footer-center,
  .footer-distributed .footer-right{
      display: inline-block;
      vertical-align: top;
  }

  /* Footer left */

.footer-distributed .footer-left{
	width: 40%;
}

/* The company logo */

.footer-distributed h3{
	color:  rgb(255,204,0);
	font: normal 36px 'Open Sans', cursive;
	margin: 0;
}


/* Footer links */

.footer-distributed .footer-links{
	color:  rgb(255,204,0);
	margin: 20px 0 12px;
	padding: 0;
}

.footer-distributed .footer-links a{
	display:inline-block;
	line-height: 1.8;
    font-weight:400;
	text-decoration: none;
	color:  inherit;
}

.footer-distributed .footer-company-name{
	color: rgb(255,204,0);
	font-size: 12px;
	font-weight: normal;
	margin: 0;
}

/* Footer Center */

.footer-distributed .footer-center{
	width: 35%;
}

.footer-distributed .footer-center i{
	background-color:  rgb(255,204,0);
	color: rgb(17, 17,17);
	font-size: 25px;
	width: 38px;
	height: 38px;
	border-radius: 40%;
	text-align: center;
	line-height: 42px;
	margin: 10px 15px;
	vertical-align: middle;
}

.footer-distributed .footer-center i.fa-envelope{
	font-size: 15px;
	line-height: 38px;
}

.footer-distributed .footer-center p{
	display: inline-block;
	color: rgb(255,204,0);
    font-weight:400;
	vertical-align: middle;
	margin:0;
}

.footer-distributed .footer-center p span{
	display:block;
	font-weight: normal;
	font-size:14px;
	line-height:2;
}

.footer-distributed .footer-center p a{
	color:  rgb(255,204,0);
	text-decoration: none;
}

.footer-distributed .footer-links a:before {
  content: "|";
  font-weight:300;
  font-size: 15px;
  left: 0;
  color: rgb(255,204,0);
  display: inline-block;
  padding-right: 5px;
}

.footer-distributed .footer-links .link-1:before {
  content: none;
}

/* Footer Right */

.footer-distributed .footer-right{
	width: 20%;
}

.footer-distributed .footer-icons{
	margin-top: 25px;
}

.footer-distributed .footer-icons a{
	display: inline-block;
	width: 35px;
	height: 35px;
	cursor: pointer;
	background-color:  rgb(17, 17,17);
	border-radius: 2px;

	font-size: 15px;
	color: rgb(255,204,0);
	text-align: center;
	line-height: 35px;
	margin-right: 3px;
	margin-bottom: 5px;
}

/* Footer bottom */
.footer-legal{
    content: '';
    color: rgb(255,204,0);
    margin: 20px 0 12px;
    padding: 0;
}
.footer-legal a{
    display:inline-block;
	line-height: 1.8;
    font-weight: 50;
    font-size: 12px;
    text-decoration: none;
	color:  inherit;
    padding-left: 18px;
}



	


/*media queries */

@media screen (max-width: 700px){
font: bold 14px, sans-serif;
}
.content{
    height:100vh;
    background: rgb(17, 17,17);
}

.content h3{
    font-size: 15px;
    color: rgb(255,204,0);
}
.content p{
        font-size: 15px;
        color: rgb(255,204,0);
        margin-right: 5%;
        margin-left: 5%;
        text-align: center;
}
.footer-distributed .footer-left,
.footer-distributed .footer-center,
.footer-distributed .footer-right{
		display: block;
        font-size: small;
		width: 100%;
		margin-bottom: 40px;
		text-align: center;
	}

	.footer-distributed .footer-center i{
		margin-left: 0;
	}

    

	



    

