/*==========  Desktop First Method  ==========*/

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {

}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {
    .desktop-steps, .logo {
        display: none;
    }
    .mobile-steps {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .header {
        padding: 0;
    }
    .mob-step-number {
        color: #837F8F;
        font-size: 18px;
        font-weight: 500;
    }
    .mob-step-number span {
        color: #3b86ff;
    }
    .quiz-item h1 {
        font-size: 24px;
    }

     .popup-content {
        flex-direction: column;
    }
    .popup-content__img {
        display: none;
    }
    .popup-content__form-wrapper {
        margin-left: 0;
    }
    .popup-content__form-wrapper h2 {
        margin-top: 60px;
    }
}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {

}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {
    .quiz-buttons {
        margin-top: 16px;
    }
    .two-quiz-buttons {
        flex-direction: column-reverse;
        align-items: center;
    }
    .two-quiz-buttons button {
        display: block;
        width: 100%;
        margin-bottom: 16px;
    }
    .first-step .quiz-item-subtitle {
        font-size: 16px;
        margin-top: 16px;
    }
    .first-step h1 {
        font-size: 24px;
    }
    .review-slider-buttons-wrapper {
        max-width: calc(400px - 170px);
    }
    .features-slider-buttons-wrapper {
        max-width: calc(400px - 140px);
    }
    .features-slider-buttons-wrapper img {
        width: 100%;
        height: auto;
    }
    .two-quiz-buttons button {
        margin: 0 0 16px 0;
    }
    .first-step img {
        max-width: 100px;
        height: auto;
        margin-top: 24px;
    }
    .regular-button {
        padding: 16px;
        font-size: 16px;
        padding: 12px;
    }
    .quiz {
        margin-top: 24px;
    }
    .answer-buttons button {
        padding: 16px;
    }
    .quiz-item-subtitle {
        font-size: 16px;
    }
    .quiz-item > img {
        width: 50px;
        height: auto;
    }
    .reviews-banner {
        max-width: 250px !important;
    }
    
    .reviews-rating {
        display: none;
    }
    .free-english-img img {
        width: 70%;
    }

     .popup-content {
        padding: 15px;
    }
    .popup-content__form-wrapper h2 {
        font-size: 24px;
    }
    .close-popup {
        width: 34px;
        height: 34px;
    }
    .popup-content__form-wrapper h2 {
        margin-top: 50px;
    }
    .open-popup {
        right: 22px;
        bottom: 22px;
    }
    .open-popup img {
        height: auto;
        width: 42px;
    }
}

/* 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) {

}