/*==========  Desktop First Method  ==========*/

@media only screen and (max-width: 1400px) {

}
/* Large Devices, Wide Screens */
@media only screen and (max-width : 1199px) {

}

/* Medium Devices, Desktops */
@media only screen and (max-width : 991px) {

section {
    height: auto !important;
}
p {
    text-align: center;
}
.candle-block p {
    padding-bottom: 50px !important;
}
.hero p, .candle-block p {
    font-size: 27px !important;
}
}

@media only screen and (max-width : 840px) {

}

/* Small Devices, Tablets */
@media only screen and (max-width : 767px) {

}


@media only screen and (max-width: 575px) {

}


/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {


}

@media only screen and (max-width : 400px) {

}

/* Custom, iPhone Retina */
@media only screen and (max-width : 320px) {

}


/*==========  Mobile First Method  ==========*/

/* Custom, iPhone Retina */
@media only screen and (min-width : 320px) {

}

/* Extra Small Devices, Phones */
@media only screen and (min-width : 480px) {


}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {

}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {



}

/* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {


}

@media (min-width: 767px) and (max-width : 991px) {



}