/* Hero section styles*/

.hero-section {
    background-image: url(../images/backgrounds/fries-hero-bg.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px;
    height: 300px;
}

.hero-section > .top-heading {
    background-color: #11122B;
    color: #cbcbcb;
    width: 290px;
    border-radius: 2px;
    padding: 1px 20px;
}

.hero-section > .bottom-heading {
    background-color: #cea135;
    color:#11122b;
    width: 107px;
    margin-top: 15px;
    border-radius: 2px;
    padding: 1px 20px;

}


/* features section */

.features-section{
    height: 400px;
    background-image: url(../images/backgrounds/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 Condensed" ,sans-serif;
    box-shadow: inset 0px -23px 76px -8px #000000;
    /* left, top, desenfoque ,right, */
    
    
}

.features-section > .columns-wrapper {
    width: 1000px;
    display: flex;
    justify-content: space-between;
}

.features-section > .columns-wrapper > .column{
    text-align: center;
    padding: 20px;
    margin: 42px;
    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: 3em;
}
.features-section > .columns-wrapper > .column :nth-child(2){
    font-size: 1.5em;
    font-weight: 900;
    height: 50px;
    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;
}

.parent > .social-link-ideas > .idea{
    color:green;
    background-color: #42cffa;
    letter-spacing: 3px;
}





