/* Start Variables */
:root {
    --main-color: #d11e38;
    --white-color: white;
    --secender-color: #161616;
    --text-color: #444444;
}
/* End Variables */
header {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 80px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 100px;
    z-index: 10;
}

.nav-bar ul li a {
    color: black;
}

.nav-bar ul li a:hover {
    color: var(--main-color);
}

.nav-bar ul li a.active {
    color: var(--main-color);
}

.services .smoll-title-faq p span a{
    font-weight: 700;
    color: white;
}

@media only screen and (max-width: 1320px) {
    header {
        padding: 0 50px;
    }
}

@media only screen and (max-width: 1100px) {
    header {
        padding: 0 50px;
    }
}

@media only screen and (max-width: 900px) {
    .hamburger {
        display: block;
        cursor: pointer;
    }
    .hamburger .line {
        width: 30px;
        height: 3px;
        background: white;
        margin: 6px 0;
        z-index: 1000;
    }
    .nav-bar {
        height: 0;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        width: 100vw;
        background-color: white;
        transition: 0.5s;
        overflow: hidden;
    }
    .nav-bar.active {
        height: 450px;
    }

    header.active {
        background-color: white;
        transition: 0.5s;
    }
    header {
        background-color: white;
    }

    .hamburger .line {
        background-color: var(--main-color);
    }
    .hamburger.active .line.active {
        background-color: black;
    }

    .nav-bar.active ul li a  {
        color: white;
        background-color: none;
        color: var(--main-color);
    }
    .nav-bar ul li a.active {
        background-color: var(--main-color);
        color: white;
    }
    .nav-bar ul {
        display: block;
        width: fit-content;
        margin: 80px auto 0 auto;
        text-align: center;
        transition: 0.5s;
        opacity: 0;
    }
    .nav-bar.active ul {
        opacity: 1;
    }
    .nav-bar ul li a {
        margin-bottom: 12px;
    }
}

/* Start Section Questions */
.asked-questions {
    background-color: #E9F8FF;
}

.titel-section-questions h1 {
    font-size: 50px;
    margin-top: 80px;
    text-align: center;
}

#choose-plan-img {
    max-width: 100%;
    position: absolute;
    z-index: -1;
}

.services .pig-title #why-us {
    margin-top: 55px;
}

.feedbacks {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}
/* End Section Questions */
/* Start Section TUTORIAL */
.banner-card {
    position: relative;
    margin-top: 50px;
}
.banner-card img {
    max-width: 100%;
    height: auto;
    overflow: hidden;
}

.banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.banner-text h1 {
    color: white;
    text-align: center;
    font-size: 90px;
}

.banner-text .video iframe {
    width: 800px;
    height: 450px;
}
/* End Section TUTORIAL */

/* Start FAQ */
.faq-section {
    max-width: 100%;
    height: auto;
    background-color: var(--main-color);
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
    margin-top: 80px;
}
.services .faq {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
    margin-bottom: 10px;
    column-gap: 50px;
    row-gap: 10px;
}

.services .faq details {
    cursor: pointer;
    box-shadow: var(--secend-main-color) 0px 5px 15px;
    border-radius: 20px;
    padding: 15px;
    background-color: white;
}

.services .faq details summary {
    color: black;
    padding: 0px 35px;
}

.services .faq details p {
    color: black;
    font-size: 13px;
    margin-top: 15px;

}

.services .faq .srv {
    display: flex;
    justify-content: center;
}

.services .faq .srv .text {
    text-align: center;
}

.faq-section .services .pig-title h1 {
    color: white;
    font-size: 70px;
}

.faq-section .services .pig-title svg {
    position: absolute;
    top: 0;
    margin-left: 25rem;
    margin-top: 7rem;
    max-width: 120px;
}

.services .smoll-title-faq p {
    text-align: center;
    line-height: 22px;
    color: white;
}

.services .smoll-title-faq p span {
    font-weight: 700;
    color: white;
}

.tutorial {
    margin-top: 20px;
}
/* End FAQ */

/* Start responsive */

@media (min-width: 768px) and (max-width: 1000px){
    .faq-section {
        height: 440px;
    }

    .services .faq {
        row-gap: 20px;
    }

    .section .plan-for-you .pig-title-1 h1 {
        font-size: 38px;
    }

    .section .plan-for-you .pig-title h1 {
        font-size: 20px;
    }

    .faq-section .services .pig-title h1 {
        font-size: 45px;
    }
    
    .faq-section .services .smoll-title-faq p {
        font-size: 15px;
    }

    .faq-section .services .smoll-title-faq p span {
        font-size: 14px;
    }
}

@media (min-width: 412px) and (max-width: 767px){
    .logo img {
        width: 100px;
    }
    header {
        height: 80px;
    }
    .nav-bar.active {
        height: 450px;
        margin-top: 0px;
    }

    .section .plan-for-you .pig-title-1 h1 {
        font-size: 30px;
    }

    .section .plan-for-you .pig-title h1 {
        font-size: 18px;
    }

    .section .plan-for-you .pig-title-1 h1 {
        font-size: 38px;
    }

    .section .plan-for-you .pig-title h1 {
        font-size: 20px;
    }

    .faq-section .services .pig-title h1 {
        font-size: 35px;
    }
    
    .faq-section .services .smoll-title-faq p {
        font-size: 13px;
    }

    .faq-section .services .smoll-title-faq p span {
        font-size: 13px;
    }

    .titel-section-questions h1 {
        font-size: 35px;
        margin-top: 80px;
        text-align: center;
    }
}

@media (min-width: 317px) and (max-width: 375px){
    header {
        height: 80px;
    }
    .nav-bar.active {
        height: 450px;
        margin-top: 0px;
    }

    .section .plan-for-you .pig-title-1 h1 {
        font-size: 28px;
    }

    .section .plan-for-you .pig-title h1 {
        font-size: 16px;
    }

    .faq-section .services .pig-title h1 {
        font-size: 30px;
    }
    
    .faq-section .services .smoll-title-faq p {
        font-size: 12px;
    }

    .faq-section .services .smoll-title-faq p span {
        font-size: 12px;
    }

    .titel-section-questions h1 {
        font-size: 30px;
        margin-top: 80px;
        text-align: center;
    }
}

@media (max-width: 320px){
    /* Start header */
    header {
        height: 80px;
    }
    .nav-bar.active {
        height: 450px;
        margin-top: 0px;
    }

    .section .plan-for-you .pig-title-1 h1 {
        font-size: 25px;
    }

    .section .plan-for-you .pig-title h1 {
        font-size: 13px;
    }

    .faq-section .services .pig-title h1 {
        font-size: 25px;
    }
    
    .faq-section .services .smoll-title-faq p {
        font-size: 12px;
    }

    .faq-section .services .smoll-title-faq p span {
        font-size: 12px;
    }

    .titel-section-questions h1 {
        font-size: 25px;
        margin-top: 80px;
        text-align: center;
    }
}

/* Pixal 5 */
@media (min-width: 392px) and (max-width: 410px){
    /* Start header */
    header {
        height: 80px;
    }
    .nav-bar.active {
        height: 450px;
        margin-top: 0px;
    }

    .section .plan-for-you .pig-title-1 h1 {
        font-size: 25px;
    }

    .section .plan-for-you .pig-title h1 {
        font-size: 13px;
    }

    .faq-section .services .pig-title h1 {
        font-size: 25px;
    }
    
    .faq-section .services .smoll-title-faq p {
        font-size: 12px;
    }

    .faq-section .services .smoll-title-faq p span {
        font-size: 12px;
    }

    /* Start deatails and summary */
    .faq-section {
        height: 500px;
    }

    .services .faq {
        row-gap: 20px;
    }

    .services .faq details summary {
        color: black;
        padding: 0px 35px;
        font-size: 13px;
    }
    
    .services .faq details p {
        color: black;
        font-size: 11px;
        margin-top: 15px;
    
    }
    /* End header */
}