
/* == Header == */
.header{
    background-image: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.5)), url(../images/header_img.jpg);
    width: 100%;
    height: 100vh;
}
.header .logo{
    width: 165px;
}
.navbar{
    display: flex;
    justify-content: space-between;
    margin: auto;
}
.navbar .signIn-btn{
    padding:  4px 15px;
    background-color: #e50914;
    color: white;
    font-weight: 600;
    font-size: 15px;
    outline: none;
    border-radius: 5px;
    border: none;
}
.header-content{
    margin-top: 190px;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.header-content h1{
    font-weight: 800;
    color: white;
    font-size: 7.5vmin;
}
.header-content h3{
    padding-top: 15px;
    color: white;
    font-weight: 400;
    font-size: 3.6vmin;
}
.header-content h4{
    padding-top: 15px;
    padding-bottom: 10px;
    color: white;
    font-weight: 400;
    font-size: 3.5vmin;
}
.header-content input {
    width: 350px;
    height: 53px;
    background-color: rgba(24, 24, 24, 0.322);
    border: 1px solid gray;
    border-radius: 5px;
}
.header-content input:invalid{
    color: lightgray;
}
.header-content input::placeholder{
    color: lightgray;
    padding-left: 10px;
    font-weight: 500;
}
.header-content button{
    margin-left: 5px;
    transform: translateY(1px);
    padding: 10px 20px;
    border: none;
    color: white;
    background-color: #e50914;
    font-size: 3.5vmin;
    font-weight: 600;
    border-radius: 5px;
}
.header-content button:hover{
    background-color: #d1040e;
    transition: 0.3s;
}
.line{
    width: 100%;
    height: 8px;
    background-color: #232323;
}
/* == Header end == */

/* == Content-Section == */
.content-section .row{
    /* margin-top: 60px; */
    margin-bottom: 70px;
}

.content-section h1{
    margin-top: 100px;
    color: white;
    font-weight: 800;
    font-size: 7vmin;
}
.content-section h4{
    margin-top: 20px;
    color: white;
    font-weight: 400;
}
.content-section .section-1{
    padding: 50px 0 50px 0;
}
.content-section .section-1 .column-1{
    padding-left: 70px;

}
.content-section .section-1 .column-1 h1{
    margin-top: 50px;
}
.content-section .section-1 .column-2{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.content-section .section-1 .image-1{
    position: absolute;
    width: 490px;
    overflow: hidden;
    filter: drop-shadow(0 2px 10px rgba(0,0,0,0.2));
}
.content-section .section-2 .column-2{
    padding-left: 50px;
}
.content-section .image-2{
    width: 490px;
}
.content-section .section-3 .column-1{
    padding-left: 50px;
}
.content-section .section-3 .image-3{
    width: 490px;
}
.content-section .section-4 .column-2{
    padding-left: 50px;
}
.content-section .image-4{
    width: 490px;
}
/* == Content-Section end == */

/* == Question Section == */
.question-section{
    color: white;
}
.question-section .container{
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.question-section .container .faq-list{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 9px;
    width: 90%;
}
.question-section .container .ques{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #2D2D2D;
    font-size: 3.7vmin;
    padding: 10px 20px;
    cursor: pointer;
    transition: all .3s ease-in-out;
}
.question-section .container .ques p{
    padding-top: 15px;
}
.question-section .container .ques:hover{
    background-color: #5e5e5e;
}
.question-section .container .ans{
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: all .3s ease-in-out;
}
.question-section .container .faq.active .ans{
    max-height: 220px;
}
.question-section .container .ans p{
    background-color: #2D2D2D;
    padding: 20px;
    font-size: 3.7vmin;
    border-top: 1px solid black;
}
.question-section .container .faq i{
    transition:  all .3s ease-in-out;
}
.question-section .container .faq.active i{
    transform: rotate(45deg);
}
.question-section h1{
    text-align: center;
    margin-top: 60px;
    color: white;
    font-weight: 800;
    font-size: 7vmin;  
}
.question-section h4{
    margin-top: 50px;
    text-align: center;
    padding-bottom: 10px;
    color: white;
    font-weight: 400;
    font-size: 3.3vmin;
}
.question-section input {
    width: 350px;
    height: 53px;
    background-color: rgba(24, 24, 24, 0.322);
    border: 1px solid gray;
    border-radius: 5px;
}
.question-section input:invalid{
    color: lightgray;
}
.question-section input::placeholder{
    color: lightgray;
    padding-left: 10px;
    font-weight: 500;
}
.question-section button{
    margin-left: 5px;
    transform: translateY(1px);
    padding: 10px 20px;
    border: none;
    color: white;
    background-color: #e50914;
    font-size: 3.5vmin;
    font-weight: 600;
    border-radius: 5px;
}
.question-section button:hover{
    background-color: #d1040e;
    transition: 0.3s;
}
.ques-email{
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 70px;
}
/* == Question Section end == */

/* == footer== */
footer{
    margin: 50px 0;
}
.footer ul{
    list-style: none;
    padding: 0;
    
}
.footer ul li{
    list-style: none;
    padding: 7px 0;
}
.footer ul li a{
    color: rgb(175, 175, 175);
    font-size: 15px;
    font-weight: 500;
}
.footer p{
    padding-top: 20px;
    font-weight: 500;
    color: rgb(175, 175, 175);
}
.footer select{
    background-color: rgba(184, 184, 184, 0.089);
    color: white;
    border-radius: 4px;
    padding: 3px 10px;
    font-weight: 500;
}
/* == footer end == */

/* Sign in */
.signIn{
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url(../images/signin_img.jpg);
    width: 100%;
    height: 150vh;
}
.signIn .logo{
    width: 165px;
}
.signIn .navbar-2{
    width: 100%;
    padding: 25px 25px;
}
.signIn-content-section{
    width: 450px;
    height: 580px;
    background-color: rgba(0, 0, 0, 0.781);
    margin: 0px auto 0;
    border-radius: 5px;
}
.form-section{
    width: 300px;
    margin: auto;
    padding: 60px 0;

}
.form-section h1{
    color: white;
    font-size: 30px;
    padding: 0 0 10px 0;
}
.form-section .form input{
    width: 300px;
    height: 48px;
    margin: 8px 0;
    background-color: #333333;
    border: none;
    border-radius: 5px;
    padding: 0 0 0 17px;
}
.form-section .form input::placeholder{
    color: gray;
}
.form-section .form input:focus{
    color: white;
    outline: none;
}
.signIn-form-btn{
    width: 300px;
    padding: 12px 0 ;
    background-color: #d1040e;
    color: white;
    outline: none;
    border: none;
    border-radius: 5px;
    margin-top: 28px;
}
.check-div{
    margin: 15px 0 0 0;
    display: flex;
    justify-content: space-between;
    width: 300px;
}
.check-div span{
    color: lightgray;
    font-size: 13px;
    font-weight: 300;
    padding-left: 5px;
}
.check-div a{
    color: lightgray;
    font-size: 13px;
    font-weight: 300;
    text-decoration: none;
}
.check-div a:hover{
    color: lightgray;
    text-decoration: underline;
}
.form-section .checkbox{
    width: 15px;
    height: 15px;
    background-color: #232323;
}
.signup-div{
    margin-top: 70px;
}
.signup-div h5{
    color: gray;
    font-weight: 400;
    font-size: 16px;
}
.signup-div a{
    font-size: 15px;
    margin-left: 10px;
    color: white;
    text-decoration: none;
    font-weight: 400;
}
.signup-div a:hover{
    color: white;
    text-decoration: underline;
}
.para-div p{
    font-size: 13px;
    color: gray;
    width: 95%;
}
.para-div a{
    text-decoration: none;
}
.signIn-footer{
    margin-top: 89px;
    background-color: rgba(0, 0, 0, 0.719);
    padding: 20px;
}
.signIn-footer ul li{
    list-style: none;
    padding: 10px;
}
.signIn-footer ul li a{
    color: gray;
    font-size: 14px;text-decoration: none;
}
.signIn-footer ul li a:hover{
    text-decoration: underline;
}







/* ==== Media Query ===== */

@media (min-width: 1280px){
    .navbar{
        width: 80%;
        transform: translateY(10px);
        
    }
}

@media (min-width: 960px) and (max-width: 1279px){
    .navbar{
        width: 90%;
        transform: translateY(10px);
    }
}

@media (min-width: 320px) and (max-width: 991px){
    .header{
        height: 80vh;
    }
    .navbar{
        width: 90%;
        transform: translateY(10px);
    }
    .header .logo{
        width: 100px;
    }
    .header-content{
        margin-top: 100px;
    }
    .header-content h1{
        font-size: 32px;
        font-weight: 700;
    }
    .header-content h3{
        font-size: 18px;
    }
    .header-content h4{
        font-size: 18px;
        padding: 14px 25px;
    }
    .header-content button{
        margin-top: 20px;
        padding: 10px 20px;
        font-size: 19px;
    }
    /* Content Section */
    .content-section h1{
        font-size: 33px;
        font-weight: 750;
        width: 90%;
        margin: 50px auto 0;
    }
    .content-section h4{
        font-size: 18px;
        width: 90%;
        margin: 16px auto 0;
    }
    .content-section .column-1{
        text-align: center;
    }
    .content-section .section-1 .column-1{
        padding-left: 0px;
    }
    .content-section .section-2 .column-2{
        padding-left: 14px;
        display: flex;
        justify-content: center;
    }
    .content-section .section-3 .column-1{
        padding-left: 0px;
    }
    .content-section .section-3 .column-2{
        padding-left: 14px;
        display: flex;
        justify-content: center; 
    }
    .content-section .section-4 .column-2{
        padding-left: 13px;
        display: flex;
        justify-content: center;
    }
    .content-section .image-2,
    .content-section .image-3,
    .content-section .image-4{
        margin-top: 20px;
        width: 400px;
    }
    /* Question Section */
    .question-section h1{
        width: 80%;
        margin: 30px auto 0;
        font-weight: 750;
        font-size: 32px;
    }
    .question-section h4{
        font-size: 18px;
        width: 80%;
        margin: 25px auto 10px;
    }
    .question-section .container .faq i{
        font-size: 20px;
    }
    .question-section .container .ques p{
        font-size: 19px;
    }
    .question-section .container .ans p{
        font-size: 18px;
    }
    .question-section button{
        margin-top: 20px;
        padding: 10px 20px;
        font-size: 19px;
    }
    .question-section .container .faq-list{
        width: 95%;
    }
    
}

/* @media (min-width: 481px) and (max-width: 768px){
    .navbar{
        width: 90%;
        
    }
} */