* {
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Poppins', sans-serif;
}

.wrapper {
  margin: auto;
}

header {
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.9)), url(g4.jpg);
  height: 835px;
  background-size: cover;
  background-size: cover;
  background-position: center center;
  position: relative;

}

.nav-area {
  list-style: none;
  padding: 30px;
  text-align: center;
}

.nav-area li {
  display: inline-block;
}
.nav-area li a {
  color: white;
  text-decoration: none;
  padding: 5px 50px;
  font-family: poppins;
  font-size: 16px;
  text-transform: uppercase;
}
.nav-area li a:hover {
  background: skyblue;
  color: black;
}

.welcome-text h1 {
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  font-size: 50px;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 40%;
  left: 50%;
}
.welcome-text h1 span {
  color: skyblue;
}


footer{
  background: url(bg.jpg) no-repeat center;
  color: #fff;
  padding: 40px;
  text-align: center;
  
}

.copyright{
  font-size: 17px;
}

.copyright a{
  font-size: 18px;
  color: #48dbfb;
  font-weight: 500;
}


.inner-width{
  max-width: 1300px;
  margin: auto;
  padding: 0 40px;
}

section{
  padding: 50px;
  background-color: gainsboro;
}

.section-title{
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  font-size: 26px;
  padding-bottom: 10px;
  color: #111;
}

.section-title::before{
  content: "";
  position: absolute;
  width: 80px;
  height: 3px;
  background-color: #111;
  bottom: 0;
  left: calc(50% - 40px);
}

.section-title::after{
  content: "";
  position: absolute;
  width: 16px;
  height: 10px;
  background-color: #48dbfb;
  border: 4px solid #f1f1f1;
  left: calc(50% - 12px);
  bottom: -7px;
}

.about-text{
  flex: 1;
}

.about-text h2{
  margin-bottom: 10px;
  text-align: center;
}