/* main section styles */
.main-section {
  position: relative;
  text-align: center;
  padding: 0px 0px;
  height: 188px;
  
}
.main-section > .background-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.main-section > .background-image img {
  width: 100%;
  height: 498px;
  object-fit: cover;
  margin-bottom: 0px;
  
}
.top-heading {
  position: relative;
  z-index: 2;
  background-color: #4e9fd1;
  color: #cbcbcb;
  padding: 20px;
  opacity: 0.80;
  box-shadow: inset 0px -26px 79px -8px rgba(0,0,0, 0.58);
  
}
h1 {
  margin: 0;
}


/* Features section styles */
.features-section {
  height: 400px;
  background-color: #4e9fd1;
  border-top: 10px solid white;
  color: #11122b;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Ubuntu Condensed", sans-serif;
  margin-top: 200px;
  box-shadow: inset 0px -26px 79px -8px rgba(0,0,0, 0.58);
}
.features-section > .columns-wrapper {
  width: 1000px;
  display: flex;
  justify-content: space-between;
}
.features-section > .columns-wrapper > .column {
  padding: 20px;
  margin: 42px;
  text-align: center;
  border-bottom: 5px solid transparent;
  border-radius: 10px;
  transition: 1s;
}
.features-section > .columns-wrapper > .column:hover {
  border-bottom: 5px solid #11122b;
}
.features-section > .columns-wrapper > .column :nth-child(1) {
font-size: 1.5em;
font-weight: 900;
height: 50px;
transition: 1s;
}
.features-section > .columns-wrapper > .column :nth-child(2) {
  letter-spacing: 2px;
}
