@import url("https://fonts.googleapis.com/css?family=Montserrat:200,300,400,500,600,700");

@import url("../fonts/hustbee.css");

.hbtn {
    position: relative;
    display: inline-block;
    margin-right: 5px;
    padding: 8px 24px;
    font-weight: 500;
    font-size: 15px;
    color: #ffffff;
    border-radius: 25px;
    border: 0;
    outline: 0;
    overflow: hidden;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hbtn.hbtn-lg {
    padding: 10px 22px;
    font-size: 18px;
}

.hbtn.hbtn-primary {
    background-color: #ffc600;
    color: #0c090d;
}

.hbtn.hbtn-primary:hover, .hbtn.hbtn-primary:focus {
    text-decoration: none;
    background-color: #e6b200;
}

.hbtn.hbtn-default {
    background-color: #333c4e;
    color: #adadad;
}

.hbtn.hbtn-default:hover, .hbtn.hbtn-default:focus {
    color: #3b4048;
    text-decoration: none;
    background-color: #ffc600;
}

.hbtn.hbtn-blue {
    background-color: #5993fa;
    color: #fff;
}

.hbtn.hbtn-blue:hover, .hbtn.hbtn-blue:focus {
    text-decoration: none;
    background-color: #4083f9;
}

.light-header .hbtn.hbtn-primary {
    background-color: #3872C7;
    color: #fff;
}

.light-header .hbtn.hbtn-primary:hover, .light-header .hbtn.hbtn-primary:focus {
    background-color: #3267b3;
}

.features {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 50px;
    padding-bottom: 50px;
}

.feature-small {
    display: none;
}

.features .def-aligned {
    text-align: right;
}

.features .feature-info {
    display: inline-block;
    width: 100%;
    text-align: left;
    position: absolute;
    left: 0%;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.feature-info-left {
    padding-top: 60px;
    padding-bottom: 60px;
    padding-left: 0px;
    padding-right: 60px;
}

.feature-info-right {
    padding-top: 60px;
    padding-bottom: 60px;
    padding-left: 60px;
    padding-right: 0px;
}

.features .feature-info .feature-title {
    font-size: 33px;
    font-weight: 700;
    color: #333c4e;
    margin-bottom: 20px;
}

.features .feature-info .feature-text {
    font-size: 18px;
    font-weight: 300;
    color: #090a19;
    margin-bottom: 25px;
    width: 100%;
}

.features .img-holder {
}

.features .img-holder img {
    width: 100%;
}


/*------------------------------------------------------------------
    19 - Responsive Styles
-------------------------------------------------------------------*/
@media (max-width: 1200px) {
    .features .feature-info .feature-title {
        font-size: 30px;
        margin-bottom: 13px;
    }
}

@media (max-width: 992px) {
    .features .feature-info {
        padding: 50px 0;
    }

    .features .feature-info .feature-title {
        font-size: 27px;
        margin-bottom: 8px;
    }

    .features .img-holder {
        padding: 68px 0;
    }

    .features .def-aligned {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .features .img-holder {
        padding: 40px 0;
    }

    .features .img-holder img {
        max-width: 260px;
    }

    .features .feature-info {
        max-width: 100%;
    }

    .features .feature-info {
        display: inline-block;
        width: 100%;
        text-align: left;
        position: unset;
        transform: unset;
    }

    .feature-big {
        display: none;
    }

    .feature-small {
        display: flex;
    }
}

@media (max-width: 480px) {
    .features {
        padding-bottom: 40px;
    }

    .features .img-holder {
        padding: 40px 0;
    }

    .features .feature-info {
        padding: 10px 0 60px;
    }

    .features .feature-info .feature-title {
        font-size: 25px;
    }

    .features > .container > .row:last-child .feature-info {
        padding-bottom: 20px;
    }
}

@media (min-width: 992px) {
    .container-ex {
        max-width: 960px;
    }

    .row.same-height {
        display: flex;
        display: -webkit-flex;
        flex-wrap: wrap;
    }
}