* {
  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/bg3.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);
}

/* second section */

#second-section {
  width: 100%;
  /* height: 80vh; */
  height: 650px;
  background-color: rgb(244, 244, 244);
  padding: 8% 12% 12%;
  box-sizing: border-box;
  overflow: hidden;
}

#second-section-text {
  display: inline-block;
  width: 55%;
  vertical-align: 50%;
}

.section-heading {
  font-size: 42px;
  color: rgb(84, 84, 84);
  font-weight: 300;
  margin: 0;
}

.section-desc {
  color: rgb(126, 126, 126);
  font-size: 16px;
  line-height: 1.42857;
  margin-top: 24px;
}

.section-quote {
  font-size: 16.5px;
  color: rgb(126, 126, 126);
  font-style: normal;
  line-height: 1.42857;
  border-left: 8px solid rgb(78, 172, 221);
  margin: 24px 0px 20px;
  padding: 0px 20px;
}

.btn-white {
  background-color: transparent;
  color: rgb(78, 172, 221);
  border: 1px solid rgb(78, 172, 221);
  padding: 12px 24px;
  font-size: 18px;
  border-radius: 4px;
  margin-top: 24px;
  margin-bottom: 20px;
}

.btn-white:hover {
  background-color: rgb(78, 172, 221);
  color: #fff;
  cursor: pointer;
}

#second-section-image {
  display: inline-block;
  width: 43%;
  text-align: end;
  vertical-align: top;  
}

/* third section */

#third-section {
  width: 100%;
  /* height: 70vh; */
  height: 550px;
  background-color: #faf3f3;
  padding: 8% 12% 12%;
  box-sizing: border-box;
  overflow: hidden;
}

#third-section-text {
  display: inline-block;
  width: 55%;
  vertical-align: 50%;
}

#third-section-image {
  display: inline-block;
  width: 38%;
  text-align: end;
  vertical-align: top;
}

@media (max-width: 700px) {  
    #second-section-text {
        width: 100%;
    }

    #third-section-text {
        width: 100%;
    }    

    #second-section-image {
        display: none;
    }

    #third-section-image {
        display: none;
    }    
}

.section-desc a:link {
  text-decoration: underline; color: #3399ff;
}

.section-desc a:visited {
  text-decoration: underline; color: #9933ff;
}

.section-desc a:active {
  text-decoration: underline; color: #9933ff;
}

.section-desc a:hover {
  text-decoration: underline; color: red;
}