/*==========  Desktop First Method  ==========*/
/* Large Devices, Wide Screens */

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

}

/* Medium Devices, Desktops */
@media only screen and (max-width: 992px) {
    .slider-content span {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .slider-content p {
        margin-bottom: 20px;
    }

    .btn-green {
        font-size: 14px;
    }

    .slider div {
        height: auto;
    }

    .section-title h1 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .section {
        margin-bottom: 20px;
    }

    .slider .item {
        padding: 40px 0px;
    }

    .section-title p {
        margin-bottom: 20px;
    }

    .leader {
        max-width: 100%;
    }
}

/* Small Devices, Tablets */
@media only screen and (max-width: 768px) {
    .section-advantages ul {
        flex-direction: column;
    }

    .section-advantages ul li {
        width: 100%;
        margin-bottom: 20px;
    }

    .section-advantages ul li:last-child {
        margin-bottom: 0;
    }

    .leader span.text {
        width: auto;
    }

    .leader {
        flex-direction: column;
        width: 100%;
        border-radius: 20px;
    }

    .leader span {
        padding: 0;
        margin-bottom: 10px;
    }

    .leader span:last-child {
        margin-bottom: 0;
    }
}

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

}

/* 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) {

}