/* Hero-section Styles */

.hero-section {
    background-image: url(../images/Background/fries-hero-bg.jpg);
    padding: 100px;
    height: 300px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-section>.top-heading {
    padding: 1px 15px 1px 20px;
    background-color: #11122b;
    color: #cbcbcb;
    width: 290px;
    border-radius: 4px;
}

.hero-section>.bottom-heading {
    background-color: #cea135;
    color: #11122b;
    padding: 1px 20px;
    margin-top: 15px;
    width: 107px;
    border-radius: 4px;
}

/* Feature section Styles */

.feature-section {
    height: 400px;
    background-image: url(../images/Background/fries-multiply-bg.jpg);
    background-color: #cea135;
    border-top: 10px solid white;
    color: #11122b;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Ubuntu', sans-serif;
    box-shadow: inset 0px -21px 27px -13px rgba(0, 0, 0, 0.85);
}

.feature-section>.column-wrapper {
    width: 1000px;
    display: flex;
    justify-content: space-between;
}

.feature-section>.column-wrapper>.column {
    padding: 20px;
    margin: 42px;
    text-align: center;
    border-bottom: 5px solid transparent;
    border-radius: 10px;
    transition: 1s;
}

.feature-section>.column-wrapper>.column:hover {
    border-bottom: 5px solid #11122b;
}

.feature-section>.column-wrapper>.column :nth-child(1) {
    font-size: 3em;
}

.feature-section>.column-wrapper>.column :nth-child(2) {
    font-size: 1.5em;
    font-weight: 900;
    height: 50px;
    transition: 1s;
}

.feature-section>.column-wrapper>.column :nth-child(2):hover {
    letter-spacing: 1px;
}

.feature-section>.column-wrapper>.column :nth-child(3) {
    letter-spacing: 2px;
}