* {
    margin: 0;
    padding: 0;
    font-family: poppins;
	box-sizing: border-box;
}

.navbar {
    background: rgb(12, 12, 12);
    height: 80px;
    width: 100%;
}


.logo {
    font-weight: bold;
    font-size: 30px;
    text-transform: uppercase;
    padding: 0 100px;
    line-height: 80px;
	cursor: pointer;
	color: white;
}

.logo span { 
    color: rgb(0, 172, 202);
}

.logo a { 
    text-decoration: none;
	color: white;
}

ul {
    float: right;
    margin-right: 50px;
}

li{
    display: inline-block;
    line-height: 80px;
    list-style: none;
    margin: 0 20px;
}

 li a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  text-transform: uppercase;
}

.btn{
	margin-top: 200px;
	text-decoration: none;
	padding: 20px 32px;
	border: 2px solid #00B7B9;
	cursor: pointer;
	color: white;
}

.btn:hover{
	background: #00B7B9;
}

.active{
	color: #00B7B9;
}

li a:hover{
	color: #00B7B9;
}

.container-1{
	background: url("images/sky-new-home-page.png");
	background-size: cover;
	background-position: center;
	width: 100%;
	height: 80vh;
	display: flex;
	justify-content: center;
	align-items: center;
}

.port-head h1{
	font-size: 72px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 50px 0;
}

.container-2{
	display: flex;
	flex-wrap: wrap;
	gap:30;
	justify-content: space-around;
	align-items: center;
	padding: 80px;
}

.container-3{
	padding: 50px;
	color: black;
}

/* Style inputs */
input[type=text], select, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
}

input[type=submit] {
  background-color: #00B7B9;
  color: white;
  padding: 12px 20px;
  border: none;
  cursor: pointer;
}

input[type=submit]:hover {
  background-color: #04A8A5;
}

/* Style the container/contact section */

/* Create two columns that float next to eachother */
.column {
  float: left;
  width: 50%;
  margin-top: 6px;
  padding: 20px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

label{
	color:black;
}

.container h2{
	color: black;
	font-size: 56px;
	padding: 40px 0;
}


/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column, input[type=submit] {
    width: 100%;
    margin-top: 0;
  }
}

.container-4{
	padding: 50px 200px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.container-4 h3{
	font-size: 56px;
	padding-bottom: 24px;
}
.container-4 p{
	line-height: 32px;
}

.inner{
	padding: 20px;
}

.container-5{
	display: flex;
	justify-content: center;
	align-items: center;
	padding-bottom: 100px;
}

.video{
	width: 900px;
	height: 600px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-left: 300px;
}







