/* --------------------------------

    CONTENTS

    0. HTML ELEMENTS
    1. HELPER CLASSES
    2. SECTIONS
    3. SECTION TITLE

--------------------------------*/


/* --------------------------------
    0. HTML ELEMENTS
--------------------------------*/
h1,h2,h3,h4,h5,h6{
    font-family: 'AniukBold', verdana, sans-serif;
}

/* --------------------------------
    1. HELPER CLASSES
--------------------------------*/
img.full-width{
    width: 100%;
}
.text-left{
    text-align: left;
}
.text-center{
    text-align: center;
}
.text-right{
    text-align: right;
}

ul.feature-list{
    margin-left: 0;
    padding: 0;
    font-family: AniukMedium, verdana, sans-serif;
    font-size: 16px;
    list-style: none;
}
    ul.feature-list li{
        position: relative;
        padding-left: 1.4em;
    }
        ul.feature-list li:before {
            content: '\f005';
            font-family: FontAwesome;
            display: inline-block;
            width: 1.4em;
            margin-left: -1.4em;
            color: #f8b333;
        }


/* --------------------------------
    2. SECTIONS
--------------------------------*/
.section *{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.section .section-content{
    position: relative;
    z-index:2;
}
.section{
    position: relative;
    font-size: 13px;
    padding: 20px;
    margin: 0 !important;
}
    .section.white{
        background-color: #ffffff;
    }
    .section.pink{
        background-color: #e2007a;
    }
    .section.purple{
        background-color: #7f3589;
    }
    .section.red{
        background-color: #e5322d;
    }
    .section.turqoise{
        background-color: #0aaba4;
    }
    .section.green{
        background-color: #c8d200;
    }
    .section.blue{
        background-color: #2eaadc;
    }
    .section.yellow{
        background-color: #f8b333;
    }

/* --------------------------------
    3. SECTION TITLE
--------------------------------*/
.section-title{
    font-size: 32px;
    line-height: 1em;
    margin: 20px 0 30px 0;
}
    .section-title span.white{
        color: #ffffff;
    }
    .section-title span.yellow{
        color: #f8b333;
    }
    .section-title span.grey{
        color: #89898b;
    }
/* --------------------------------
    4. Wells
--------------------------------*/
.well-holder{
    margin: 0 -10px;
}
.well-holder:after{
    content: "";
    display: block;
    clear: both;
}
    .well-holder .well{
        float: left;
        padding: 0 10px;
        margin-bottom: 20px;
    }
        .well-holder.wells-1 .well{
            width: 100%;
        }
        .well-holder.wells-2 .well{
            width: 50%;
        }
        .well-holder.wells-3 .well{
            width: 33%;
        }
        .well-holder.wells-4 .well{
            width: 25%;
        }

@media screen and (max-width: 480px){
    .well-holder .well{
        width: 100% !important;
    }
}
.well .well-inner{
    padding: 20px;
}
    .well .well-inner.white{
        background-color: #ffffff;
    }
    .well .well-inner.round{
        border-radius: 10px;
    }
    .well .well-inner.shade{
        -webkit-box-shadow: 2px 2px 3px 0px rgba(0, 0, 0, 0.35);
        -moz-box-shadow:    2px 2px 3px 0px rgba(0, 0, 0, 0.35);
        box-shadow:         2px 2px 3px 0px rgba(0, 0, 0, 0.35);
    }
.well .well-inner img{
    display: block;
    max-width: 100%;
    margin: 10px auto;
}
/* --------------------------------
    5. BACKGROUND HOLDER
--------------------------------*/
.bg-holder{
    position: absolute;
}
    .bg-holder.top{
        top: 0;
    }
    .bg-holder.bottom{
        bottom: 0;
    }
    .bg-holder.right{
        right: 0;
    }
    .bg-holder.left{
        left: 0;
    }