body {
    margin: 0;
    overflow: hidden;
    position: relative;
}

.main-content-section {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    max-width: 1170px;
    margin: 0 auto;
    bottom: 0;
    left: 0;
    right: 0;
}

.bg-section {
    position: relative;
}

.bg-section::before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.80);
    position: absolute;
}

.bg-section img {
    width: 100%;
    height: 100vh;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
}

.logo-section {
    text-align: center;
    padding-top: 60px;
}

.logo-section img {
    width: 150px;
    height: 60px;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
}

.middle-section {
    height: calc(100% - 300px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.middle-section h1 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 40px;
    display: block;
    color: #fff;
    text-transform: uppercase;
    /*font-family: 'Raleway', sans-serif;*/
    font-family: 'Abel', sans-serif;
}
.middle-section label {
    text-align: center;
    font-size: 26px;
    margin-bottom: 40px;
    display: block;
    color: #fff;
    /*text-transform: capitalize;*/
    /*font-family: 'Raleway', sans-serif;*/
    font-family: 'Abel', sans-serif;
}

.middle-section .form-section {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    align-content:center
}

.middle-section .form-section input {
    border-radius: 30px;
    padding: 0px 15px;
    height: 30px;
    background-color: #fff;
    border: 1px solid #fff;
    max-width: 260px;
    width: 100%;
}

.middle-section .form-section button {
    border-radius: 30px;
    padding: 0px 15px;
    height: 32px;
    color: #fff;
    background-color: #f25c25;
    border: 1px solid #f25c25;
    max-width: 260px;
    width: 100%;
}

.bootm-section {
    position: absolute;
    bottom: 20px;
    width: 95%;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.bootm-section .bottom-logo {
    text-align: center;
}

.bootm-section .bottom-logo img {
    width: 150px;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
}

.bootm-section .bottom-txt {
    text-align: center;
    position: relative;
    margin: 15px 0px;
}

.bootm-section .bottom-txt label {
    font-size: 9px;
    letter-spacing: 7px;
    color: #fff;
    text-transform: capitalize;
    font-family: 'Cairo', sans-serif;
}

.bootm-section .bottom-txt:before {
    content: "";
    width: 38%;
    height: 2px;
    background-color: #e8e8e8;
    position: absolute;
    left: 0;
    right: 0;
    top: 10px;
}

.bootm-section .bottom-txt:after {
    content: "";
    width: 38%;
    height: 2px;
    background-color: #e8e8e8;
    position: absolute;
    right: 0;
    right: 0;
    top: 10px;
}

.bootm-section ul {
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;

}

.bootm-section ul li {
    list-style: none;
    display: inline-block;
}

.bootm-section ul li img {
    max-height: 30px;
    width: 100%;
    object-fit: contain;
    object-position: center;
}


@media (max-width:991px) {
    .bootm-section .bottom-txt:before {
        width: 35%;
    }

    .bootm-section .bottom-txt:after {
        width: 35%;
    }

    .middle-section .form-section input {
        max-width: 200px;
    }

    .middle-section .form-section button {
        max-width: 200px;
    } 

    .bootm-section ul li img{
        max-width: 85px;
    }

}

@media (max-width:767px) { 
    .middle-section .form-section {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        width: 90%;
        margin: 0px;
    }

    .middle-section .form-section input {
        width: calc(100% - 30px);
        margin: 0;
        margin-bottom: 35px;
        max-width: 100%;
        padding: 0;
        padding: 0px 15px;
    }

    .middle-section .form-section button {
        width: 100%;
        margin: 0;
        margin-bottom: 35px;
        max-width: 100%;
    }

    .bootm-section ul li img{
        max-width: 45px;
    }

    .bootm-section .bottom-txt:after{
        width: 15%;
    }

    .bootm-section .bottom-txt:before{
        width: 15%;
    }
}

@media (max-width:850px) { 
    .middle-section{
        height: 70%;
    }
    .bootm-section{
        position: relative;
    }
    .logo-section{
        padding-top: 30px;
    }
    .main-content-section{
        overflow: scroll;
    }
    .middle-section label{
        margin-bottom: 15px;
        padding-left: 20px;
        padding-right: 20px;
        font-size: 15px;
    }
}
