/* Hero section styles */
.hero-section {
    background-image: url(../images/backgrounds/malling-hill.jpg);
    padding: 100px;
    height: 500px;
    border-top: 10px solid white;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-section > .top-heading {
    padding: 1px 20px;
    background-color: #11122b;
    color: #cbcbcb;
    width: 290px;
    border-radius: 2px;
}

.hero-section > .bottom-heading {
    background-color: #cea135;
    color: #11122b;
    padding: 1px 20px;
    margin-top: 15px;
    width: 107px;
    border-radius: 2px;
}

.hero-section > .statement {
    padding: 1px 0px;
    color: white;
    width: 380px;
    border-radius: 2px;
}

/* Features section styles */
.features-section {
    height: 800px;
    /* height: was 600px; */
    background-image: url(../images/backgrounds/malling-down-winter-view.jpg);
    background-color: #cea135;
    border-top: 10px solid white;

    background-repeat: no-repeat;
    background-position: center;


    /* color: #03085f; */
    /* color: #cbcbcb; */
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Ubuntu Condensed", sans-serif;
    box-shadow: inset 0px -26px 79px -8px rgba(0, 0, 0, 0.58)
}

.features-section > .columns-wrapper {
    width: 1800px;
    display: flex;
    justify-content: space-between;
}

.features-section > .columns-wrapper > .column {
    padding: 0px;
    width: 200px;
    margin: 50px;
    text-align: bottom;
    /* padding: was 20px; */
    /* margin: was 20px; */
    /* border-bottom: 5px solid transparent;
    border-radius: 10px;
    transition: 1s; */
}

.features-section > .columns-wrapper > .column 

a { text-decoration: none;

color: #fbfcfc; }

.features-section > .columns-wrapper > .column a:hover {
    color: #fabc76;
    transition: 0.5s;
}

/* .features-section > .columns-wrapper > .column a:link{ */
    /* color: #cbcbcb; */

/* .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: 200px;
    /* height: was 200px; */
    /* height: was 100px; */
}

.features-section > .columns-wrapper > .column :nth-child(2) {
    font-size: 1.5em;
    font-weight: 900;
    height: 200px;
    /* height: was 100px; */
    /* transition: 1s; */
}

/* .features-section > .columns-wrapper > .column :nth-child(2):hover {
    letter-spacing: 1px;
} */

.features-section > .columns-wrapper > .column :nth-child(3) {
    /* letter-spacing: 2px; */
    height: 100px;
    font-size: 1.5em;
    font-weight: 900;
}

const resizeOps = () => {
    document.documentElement.style.setProperty("--vh", window.innerHeight * 0.01 + "px");
  };

  resizeOps();
  window.addEventListener("resize", resizeOps);
