/*==========  Desktop First Method  ==========*/

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {

    .header {
        padding: 0;
    }

}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
    .home-page-wrapper {
        height: calc(100vh - 80px);
    }
    .home-page-wrapper .features .item {
        flex-direction: column;
        gap: 4px;
    }
    .home-page-wrapper .features .item .text {
        text-align: center;
    }
    .home-page-wrapper .content h1 {
        font-size: 40px;
    }
    .home-page-wrapper .features .item .text h2 {
        font-size: 18px;
    }
    .home-page-wrapper .features .item .icon img {
        height: 40px;
        width: 40px;
    }
    .home-page-wrapper .features .item .text p {
        font-size: 14px;
    }
    .answers-wrapper {
        gap: 8px;
    }
    .answers-wrapper .item {
        flex: 1 1 100%;
        display: flex;
        gap: 12px;
        padding: 12px;
        border-radius: 12px;
        align-items: center;
        max-width: 100%;
    }
    .answers-wrapper .item img {
        height: 40px;
        width: 40px;
    }
    .answers-wrapper .item p {
        margin-top: 0;
        text-align: left;
    }
    .two-in-line .text-wrapper {
        text-align: left;
    }
    .start-point-wrapper h2 {
        font-size: 20px;
        margin-top: 24px;
    }
    .start-point-wrapper p {
        margin-top: 4px;
        font-size: 14px;
    }
    .build-features {
        align-items: flex-start;
    }
    .build-features .item {
        flex-direction: column;
        justify-content: center;
        gap: 4px;
        flex: 0 1 33%;
    }
    .build-features .item .text {
        text-align: center;
    }
    .build-features .item .text h2 {
        font-size: 16px;
    }
    .build-features .item .icon img {
        height: 40px;
        width: 40px;
    }
    .build-features .item .text p {
        font-size: 15px;
    }
    .question-title {
        font-size: 20px;
    }
    .quiz-item-subtitle {
        font-size: 14px;
        margin-top: 4px;
    }
    .regular-answers {
        margin-top: 24px;
    }
    .result-list .item {
        justify-content: flex-start;
        align-items: flex-start;
        text-align: left;
    }
    .result-list .item svg {
        height: 24px;
        width: 24px;
        flex: 0 0 24px;
    }
}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {
    .two-in-line .item {
        padding: 12px;
    }

    .line-bg {
        width: 90px;
    }

    .figure-bg {
        width: 70px;
    }
 

    .green-star-bg {
        top: 6%;
        width: 15px;
    }

    .yellow-star-bg {
        top: 40%;
        width: 15px;
    }
}

/* 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) {}
