* {
  margin: 0;
  padding: 0;
}

header {
  min-height: 0;
  width: 100%;
  background-image: linear-gradient(rgba(3, 16, 44, 0.7), rgba(3, 16, 44, 0.7)),
  url('../images/bg.jpg');  
  background-position: center;
  background-size: cover;
  position: relative;
}

/* landing section */

#landing-section {
  width: 100%;
  height: 50vh;
  background-image: linear-gradient(rgba(0, 175, 239, 0.8), rgba(0, 175, 239, 0.9)),
  url('../images/bg5.jpg');  
  background-repeat: no-repeat;
  background-color: #00afef;
  background-position: center;
  background-size: cover;  
  padding-left: 12%;
  padding-right: 12%;
  box-sizing: border-box;
  overflow: hidden;  
}

#landing-section-text {
  text-align: end;
  padding-top: 150px;
}

#landing-section-heading {
  color: #fff;
  font-size: 62px;
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
}

#landing-section-desc {
  font-size: 30px;
  font-weight: 300;
  color: rgb(255, 255, 255);
}

/* contact section */

#contact-section {
  background-color: #faf3f3;
  padding-bottom: 50px;
}

#contact-wrapper {
  width: 80%;
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 60px 0;
}

#contact-wrapper > div {
  width: 100%;
}

.green-heading {
  color: #00afef;
  font-size: 35px;
  font-weight: 600;
  margin: 0;
  margin-top: 35px;
  margin-bottom: 40px;
  text-align: center;
}

.section-heading {
  font-size: 22px;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 20px;
}

.section-description {
  font-size: 16px;
  font-weight: 400;
  color: #8b8b99;
  letter-spacing: 0.5px;
}

#contact-section ul {
  margin-left: 30px;
}

#contact-wrapper a:link {
  text-decoration: underline; color: #3399ff;
}

#contact-wrapper a:visited {
  text-decoration: underline; color: #9933ff;
}

#contact-wrapper a:active {
  text-decoration: underline; color: #9933ff;
}

#contact-wrapper a:hover {
  text-decoration: underline; color: red;
}