@font-face {
    font-family: 'consola';
    src: URL('../fonts/CONSOLA.TTF') format('truetype');
  }

body{
    margin:0;
    padding:0;
    overflow-x:hidden;
}
*{
    font-family: 'consola';
}

/*extra small*/

@media only screen and (max-width: 600px) {
    .show_hide_menu{
        width:55px;
        height:55px;
        position:fixed;
        z-index:1000;
        top:20px;
        right:20px;
        filter:invert(1);
        background:rgba(255, 255, 255, 0.5);
        border-radius:50%;
    }
    
    .show_hide_menu img{
        width:30px;
        height:30px;
        margin:12.5px;
    }
    .menubar{
        width:100vw;
        height:100vh;
        position:fixed;
        top:0;
        left:0;
        background:rgba(0,0,0,0.5);
        z-index:500;
        flex-direction: column;
        justify-content:center;
        display:none;
    }
    .menus{
        display:flex;
        flex-direction:row;
        justify-content: center;
        flex-grow: 1;
        align-items:center;
    }
    .menus:hover{
        cursor:pointer;
        background:rgba(0,0,0,0.5)
    }
    .active_menu{
        background:#f8ec099f;
    }
    .menus img{
        width:40px;
        height:40px;
        filter:invert(1);
        margin:0 10px;
    }
    .menus span{
        color:#fff;
        font-size:20px;
    }

    .logoContainer{
        width:150px;
        height:80px;
        position: fixed;
        top:0;
        left:0;
        z-index:400;
        top:0;
        left:0;
        z-index: 22;
    }
    .logoContainer img{
        width:150px;
    }

    .content_title{
        font-size:25px;
        color:#fff;
    }
    
    .background{
        width:100vw;
        height:100vh;
        position: fixed;
        top:0;
        left:0;
        z-index:50;
        overflow:hidden;
        z-index: 1;
        
    }
    .bg-one{
        width:100%;
        height:100%;
        background-image:url(../img/one.jpg);
        background-size:cover;
        transform:scale(1.15);
        position: absolute;
        animation:bgOne 15s linear infinite;
    }
    @keyframes bgOne{
        0%{
            opacity:1;
            transform: scale(1.15);
        }
        30%{
            opacity:1;
        }
        33.33%{
            opacity:0;
            transform: scale(1);
        }
        66.66%{
            opacity:0;
        }
        96%{
            opacity: 0;
        }
        100%{
            opacity:1;
            transform: scale(1.15);
        }
    }
    .bg-two{
        width:100%;
        height:100%;
        background-image:url(../img/two.jpg);
        background-size:cover;
        position: absolute;
        transform: scale(1.15);
        animation:bgTwo 15s linear infinite;
    }
    @keyframes bgTwo{
        0%{
            opacity:0;
        }
        30%{
            opacity:0;
        }
        33.33%{
            opacity:1;
            transform: scale(1.15);
        }
        66%{
            opacity:1;
        }
        70%{
            opacity:0;
            transform: scale(1);
        }
        100%{
            opacity:0;
        }
    }
    .bg-three{
        width:100%;
        height:100%;
        background-image:url(../img/three.jpg);
        background-size:cover;
        position: absolute;
        transform: scale(1.15);
        animation:bgThree 15s linear infinite;
    }
    @keyframes bgThree{
        0%{
            opacity:0;
        }
        33%{
            opacity:0;
        }
        33.33%{
            opacity:0;
        }
        66%{
            opacity:0;
            transform: scale(1.15);
        }
        70%{
            opacity:1;
        }
        99.5%{
            opacity:1;
        }
        96%{
            opacity:1;
        }
        100%{
            opacity:0;
            transform: scale(1);
        }
    }

    .content{
        width:100vw;
        height:100vh;
        z-index:100;
        position:fixed;
        top:0;
        left:0;
        overflow-y:scroll;
    }
    .content_containers{
        width:90%;
        background:rgba(0,0,0,0.5);
        margin:50px 5%;
        display:flex;
        flex-direction:column;  
        padding-top:50px;
        display:none;
        transition:0.5s;
        
    }
    .footer{
        width:100%;
        line-height:20px;
        font-size:13px;
        text-align:center;
        background:#fff;
        color:#333;
        position:fixed;
        bottom: 0;
        left:0;
        z-index:200;
        padding:10px;
    }

    .content_left{
        max-width:100%;
        color:#fff;
        text-align:justify;
    }
    .contentLeftMargin{
        padding:20px;
    }

    .contact_right{
        width:100%;
    }

    .quotes_container{
        width:100%;
        display:flex;
        flex-direction:column;
        justify-content: center;
        align-items: center;
        margin:50px 0;
    }
    .quote{
        width:90%;
        line-height:30px;
        font-size:18px;
        color:#fff;
        padding:10px;
        border:solid 2px #fff;
    }

    .quote_writer{
        width:80%;
        line-height:20px;
        font-size:17px;
        color:#fff;
        text-align:right;
    }

    .slider_container{
        width:100%;
    }
    .slide_items{
        min-height:400px;
        max-height:500px;

        display:flex;
        align-items: center;
        justify-content: center;
    }
    .slide_items img{
        width:100%;
    }
    .clients{
        display:none;
        flex-direction:column;
        justify-content: center;
        align-items: center;
    }
    .clients img{
        width:300px;
        margin:20px;
    }

    .services_scroll_container{
        width:100%;
        padding:30px;
        box-sizing:border-box;
        /* padding:50px 0; */
    }
    .eachProjects{
        width:90%;
        margin-left:5%;
        display:flex;
        flex-direction:column;
        background:rgba(0, 0, 0, 0.5);
        padding:10px;
        box-sizing:border-box;
        margin-top:20px;
        font-size:15px;
    }
    .ProjectDetail{
        width:100%;
        display:flex;
    }
    .projectDetailLeft{
        min-width:120px;
        line-height: 30px;
        border-right:solid 1px #fff;
        margin-right:10px;
    }
    .projectDetailRight{
        flex-grow: 1;
        line-height:30px;
    }

    .contact_container{
        margin-left:5%;
        width:90%;
        height:100%;
        display:flex;
        flex-direction:column;
    }
    .contact_title{
        font-size:25px;
        color:#fff;
        line-height:30px;
    }
    .contact_company_name{
        font-size:18px;
        color:#fff;
        margin-bottom:30px;
    }
    .contact_detail{
        width:100%;
        display:flex;
        margin:10px 0;
    }
    .contact_detail_title{
        color:#fff;
        font-size:16px;
        min-width:100px;
    }
    .contact_detail_data{
        color:#fff;
        font-size:16px;
    }

    .contact_map{
        width:100%;
        height:400px;
        display:flex;
        justify-content: center;
        align-items: center;
    }

}


/*small================================================================================================================*/

@media only screen and (min-width: 600px) and (max-width:767px) {
    .show_hide_menu{
        width:55px;
        height:55px;
        position:fixed;
        z-index:1000;
        top:20px;
        right:20px;
        filter:invert(1);
        background:rgba(255, 255, 255, 0.5);
        border-radius:50%;
    }
    
    .show_hide_menu img{
        width:30px;
        height:30px;
        margin:12.5px;
    }
    .menubar{
        width:100vw;
        height:100vh;
        position:fixed;
        top:0;
        left:0;
        background:rgba(0,0,0,0.5);
        z-index:500;
        flex-direction: column;
        justify-content:center;
        display:none;
    }
    .menus{
        display:flex;
        flex-direction:row;
        justify-content: center;
        flex-grow: 1;
        align-items:center;
    }
    .menus:hover{
        cursor:pointer;
        background:rgba(0,0,0,0.5)
    }
    .active_menu{
        background:#f8ec099f;
    }
    .menus img{
        width:40px;
        height:40px;
        filter:invert(1);
        margin:0 10px;
    }
    .menus span{
        color:#fff;
        font-size:20px;
    }

    .logoContainer{
        width:150px;
        height:80px;
        position: fixed;
        top:0;
        left:0;
        z-index:100;
        top:0;
        left:0;
    }
    .logoContainer img{
        width:150px;
    }

    .content_title{
        font-size:25px;
        color:#fff;
    }
    
    .background{
        width:100vw;
        height:100vh;
        position: fixed;
        top:0;
        left:0;
        z-index:50;
        overflow:hidden;
        z-index: 1;
        
    }
    .bg-one{
        width:100%;
        height:100%;
        background-image:url(../img/one.jpg);
        background-size:cover;
        transform:scale(1.15);
        position: absolute;
        animation:bgOne 15s linear infinite;
    }
    @keyframes bgOne{
        0%{
            opacity:1;
            transform: scale(1.15);
        }
        30%{
            opacity:1;
        }
        33.33%{
            opacity:0;
            transform: scale(1);
        }
        66.66%{
            opacity:0;
        }
        96%{
            opacity: 0;
        }
        100%{
            opacity:1;
            transform: scale(1.15);
        }
    }
    .bg-two{
        width:100%;
        height:100%;
        background-image:url(../img/two.jpg);
        background-size:cover;
        position: absolute;
        transform: scale(1.15);
        animation:bgTwo 15s linear infinite;
    }
    @keyframes bgTwo{
        0%{
            opacity:0;
        }
        30%{
            opacity:0;
        }
        33.33%{
            opacity:1;
            transform: scale(1.15);
        }
        66%{
            opacity:1;
        }
        70%{
            opacity:0;
            transform: scale(1);
        }
        100%{
            opacity:0;
        }
    }
    .bg-three{
        width:100%;
        height:100%;
        background-image:url(../img/three.jpg);
        background-size:cover;
        position: absolute;
        transform: scale(1.15);
        animation:bgThree 15s linear infinite;
    }
    @keyframes bgThree{
        0%{
            opacity:0;
        }
        33%{
            opacity:0;
        }
        33.33%{
            opacity:0;
        }
        66%{
            opacity:0;
            transform: scale(1.15);
        }
        70%{
            opacity:1;
        }
        99.5%{
            opacity:1;
        }
        96%{
            opacity:1;
        }
        100%{
            opacity:0;
            transform: scale(1);
        }
    }

    .content{
        width:100vw;
        height:100vh;
        z-index:100;
        position:fixed;
        top:0;
        left:0;
        overflow-y:scroll;
    }
    .content_containers{
        width:90%;
        background:rgba(0,0,0,0.5);
        margin:50px 5%;
        display:flex;
        flex-direction:column;  
        padding-top:50px;
        display:none;
        transition:0.5s;
        
    }
    .footer{
        width:100%;
        line-height:20px;
        font-size:13px;
        text-align:center;
        background:#fff;
        color:#333;
        position:fixed;
        bottom: 0;
        left:0;
        z-index:200;
        padding:10px;
    }

    .content_left{
        max-width:100%;
        color:#fff;
        text-align:justify;
    }
    .contentLeftMargin{
        padding:20px;
    }

    .contact_right{
        width:100%;
    }

    .quotes_container{
        width:100%;
        display:flex;
        flex-direction:column;
        justify-content: center;
        align-items: center;
        margin:50px 0;
    }
    .quote{
        width:90%;
        line-height:30px;
        font-size:18px;
        color:#fff;
        padding:10px;
        border:solid 2px #fff;
    }

    .quote_writer{
        width:80%;
        line-height:20px;
        font-size:17px;
        color:#fff;
        text-align:right;
    }

    .slider_container{
        width:100%;
    }
    .slide_items{
        min-height:400px;
        max-height:500px;

        display:flex;
        align-items: center;
        justify-content: center;
    }
    .slide_items img{
        width:100%;
    }
    .clients{
        display:none;
        flex-direction:column;
        justify-content: center;
        align-items: center;
    }
    .clients img{
        width:300px;
        margin:20px;
    }

    .services_scroll_container{
        width:100%;
        padding:30px;
        box-sizing:border-box;
        /* padding:50px 0; */
    }
    .eachProjects{
        width:90%;
        margin-left:5%;
        display:flex;
        flex-direction:column;
        background:rgba(0, 0, 0, 0.5);
        padding:10px;
        box-sizing:border-box;
        margin-top:20px;
    }
    .ProjectDetail{
        width:100%;
        display:flex;
    }
    .projectDetailLeft{
        min-width:120px;
        line-height: 30px;
        border-right:solid 1px #fff;
        margin-right:10px;
    }
    .projectDetailRight{
        flex-grow: 1;
        line-height:30px;
    }

    .contact_container{
        margin-left:10%;
        width:80%;
        height:100%;
        display:flex;
        flex-direction:column;
    }
    .contact_title{
        font-size:25px;
        color:#fff;
        line-height:30px;
    }
    .contact_company_name{
        font-size:18px;
        color:#fff;
        margin-bottom:30px;
    }
    .contact_detail{
        width:100%;
        display:flex;
        margin:10px 0;
    }
    .contact_detail_title{
        color:#fff;
        font-size:16px;
        min-width:100px;
    }
    .contact_detail_data{
        color:#fff;
        font-size:16px;
    }

    .contact_map{
        width:100%;
        height:400px;
        display:flex;
        justify-content: center;
        align-items: center;
    }

}


/*medium*/

@media only screen and (min-width: 768px) and (max-width:991px) {

    .show_hide_menu{
        width:55px;
        height:55px;
        position:fixed;
        z-index:1000;
        top:20px;
        right:20px;
        filter:invert(1);
        background:rgba(255, 255, 255, 0.5);
        border-radius:50%;
    }
    
    .show_hide_menu img{
        width:30px;
        height:30px;
        margin:12.5px;
    }
    .menubar{
        width:100vw;
        height:100vh;
        position:fixed;
        top:0;
        left:0;
        background:rgba(0,0,0,0.5);
        z-index:500;
        flex-direction: column;
        justify-content:center;
        display:none;
    }
    .menus{
        display:flex;
        flex-direction:row;
        justify-content: center;
        flex-grow: 1;
        align-items:center;
    }
    .menus:hover{
        cursor:pointer;
        background:rgba(0,0,0,0.5)
    }
    .active_menu{
        background:#f8ec099f;
    }
    .menus img{
        width:40px;
        height:40px;
        filter:invert(1);
        margin:0 10px;
    }
    .menus span{
        color:#fff;
        font-size:20px;
    }

    .logoContainer{
        width:150px;
        height:80px;
        position: fixed;
        top:0;
        left:0;
        z-index:100;
        top:0;
        left:0;
    }
    .logoContainer img{
        width:150px;
    }

    .content_title{
        font-size:25px;
        color:#fff;
    }
    
    .background{
        width:100vw;
        height:100vh;
        position: fixed;
        top:0;
        left:0;
        z-index:50;
        overflow:hidden;
        z-index: 1;
        
    }
    .bg-one{
        width:100%;
        height:100%;
        background-image:url(../img/one.jpg);
        background-size:cover;
        transform:scale(1.15);
        position: absolute;
        animation:bgOne 15s linear infinite;
    }
    @keyframes bgOne{
        0%{
            opacity:1;
            transform: scale(1.15);
        }
        30%{
            opacity:1;
        }
        33.33%{
            opacity:0;
            transform: scale(1);
        }
        66.66%{
            opacity:0;
        }
        96%{
            opacity: 0;
        }
        100%{
            opacity:1;
            transform: scale(1.15);
        }
    }
    .bg-two{
        width:100%;
        height:100%;
        background-image:url(../img/two.jpg);
        background-size:cover;
        position: absolute;
        transform: scale(1.15);
        animation:bgTwo 15s linear infinite;
    }
    @keyframes bgTwo{
        0%{
            opacity:0;
        }
        30%{
            opacity:0;
        }
        33.33%{
            opacity:1;
            transform: scale(1.15);
        }
        66%{
            opacity:1;
        }
        70%{
            opacity:0;
            transform: scale(1);
        }
        100%{
            opacity:0;
        }
    }
    .bg-three{
        width:100%;
        height:100%;
        background-image:url(../img/three.jpg);
        background-size:cover;
        position: absolute;
        transform: scale(1.15);
        animation:bgThree 15s linear infinite;
    }
    @keyframes bgThree{
        0%{
            opacity:0;
        }
        33%{
            opacity:0;
        }
        33.33%{
            opacity:0;
        }
        66%{
            opacity:0;
            transform: scale(1.15);
        }
        70%{
            opacity:1;
        }
        99.5%{
            opacity:1;
        }
        96%{
            opacity:1;
        }
        100%{
            opacity:0;
            transform: scale(1);
        }
    }

    .content{
        width:100vw;
        height:100vh;
        z-index:100;
        position:fixed;
        top:0;
        left:0;
        overflow-y:scroll;
    }
    .content_containers{
        width:90%;
        background:rgba(0,0,0,0.5);
        margin:50px 5%;
        display:flex;
        flex-direction:column;  
        padding-top:50px;
        display:none;
        transition:0.5s;
        
    }
    .footer{
        width:100%;
        line-height:20px;
        font-size:13px;
        text-align:center;
        background:#fff;
        color:#333;
        position:fixed;
        bottom: 0;
        left:0;
        z-index:200;
        padding:10px;
    }

    .content_left{
        max-width:100%;
        color:#fff;
        text-align:justify;
    }
    .contentLeftMargin{
        padding:20px;
    }

    .contact_right{
        width:100%;
    }

    .quotes_container{
        width:100%;
        display:flex;
        flex-direction:column;
        justify-content: center;
        align-items: center;
        margin:50px 0;
    }
    .quote{
        width:90%;
        line-height:30px;
        font-size:18px;
        color:#fff;
        padding:10px;
        border:solid 2px #fff;
    }

    .quote_writer{
        width:80%;
        line-height:20px;
        font-size:17px;
        color:#fff;
        text-align:right;
    }

    .slider_container{
        width:100%;
    }
    .slide_items{
        min-height:400px;
        max-height:500px;

        display:flex;
        align-items: center;
        justify-content: center;
    }
    .slide_items img{
        width:100%;
    }
    .clients{
        display: none;
        flex-direction:column;
        justify-content: center;
        align-items: center;
    }
    .clients img{
        width:300px;
        margin:20px;
    }

    .services_scroll_container{
        width:100%;
        padding:30px;
        box-sizing:border-box;
        /* padding:50px 0; */
    }
    .eachProjects{
        width:90%;
        margin-left:5%;
        display:flex;
        flex-direction:column;
        background:rgba(0, 0, 0, 0.5);
        padding:10px;
        box-sizing:border-box;
        margin-top:20px;
    }
    .ProjectDetail{
        width:100%;
        display:flex;
    }
    .projectDetailLeft{
        min-width:120px;
        line-height: 30px;
        border-right:solid 1px #fff;
        margin-right:10px;
    }
    .projectDetailRight{
        flex-grow: 1;
        line-height:30px;
    }

    .contact_container{
        margin-left:10%;
        width:80%;
        height:100%;
        display:flex;
        flex-direction:column;
    }
    .contact_title{
        font-size:25px;
        color:#fff;
        line-height:30px;
    }
    .contact_company_name{
        font-size:18px;
        color:#fff;
        margin-bottom:30px;
    }
    .contact_detail{
        width:100%;
        display:flex;
        margin:10px 0;
    }
    .contact_detail_title{
        color:#fff;
        font-size:16px;
        min-width:100px;
    }
    .contact_detail_data{
        color:#fff;
        font-size:16px;
    }

    .contact_map{
        width:100%;
        height:400px;
        display:flex;
        justify-content: center;
        align-items: center;
    }

}


/*large=============================================================================================================*/

@media only screen and (min-width: 992px) and (max-width:1199px) {

    .show_hide_menu{
        display:none;
    }
     
    .maincontainer{
        width:100vw;
        height:100vh;
        overflow:hidden;
    }
    .logoContainer{
        width:150px;
        height:80px;
        position: absolute;
        top:0;
        left:0;
        z-index:100;
        top:0;
        left:0;
    }
    .logoContainer img{
        width:150px;
    }
    .content{
        width:92%;
        left: 4%;
        position: absolute;
        z-index:100;
        /*bottom:100px;*/
        top: 10%;
    }
    .content_containers{
        transition:0.5s;
        display:none;
        width:100%;
        /*min-height:400px;*/
        /*max-height:400px;*/
        background:rgba(0,0,0,0.5);
        align-items: center;
    }
    .services_scroll_container{
        min-height: 400px;
        max-height:400px;
        width:100%;
        padding:30px;
        box-sizing:border-box;
        overflow-y:scroll;
        /* padding:50px 0; */
    }
    .content_left{
        width:50%;
        box-sizing: border-box;
        border-right:solid 2px #fff;
        color:#fff;
    }
    .contentLeftMargin{
        padding:20px;
    }
    .content_left p{
        color:white;
        text-align: justify;
        font-size:15px;
        line-height:20px;
    }
    .content_title{
        font-size:30px;
        color:#fff;
        font-weight: bold;
    }
    
    .contact_right{
        width:50%;
        min-height:400px;
        /* background:#fff; */
    }
    .slider_container{
    }
    .slide_items{
        height:400px;
        display:flex;
        justify-content:center;
        align-items:center;
    }
    .slide_items img{
        height:100%;
    }
    .owl-dots{
        display:none !important;
    }
    
    .background{
        width:100vw;
        height:100vh;
        position: absolute;
        top:0;
        left:0;
        z-index:50;
        overflow:hidden;
        
    }
    .bg-one{
        width:100%;
        height:100%;
        background-image:url(../img/one.jpg);
        background-size:cover;
        transform:scale(1.15);
        position: absolute;
        animation:bgOne 15s linear infinite;
    }
    @keyframes bgOne{
        0%{
            opacity:1;
            transform: scale(1.15);
        }
        30%{
            opacity:1;
        }
        33.33%{
            opacity:0;
            transform: scale(1);
        }
        66.66%{
            opacity:0;
        }
        96%{
            opacity: 0;
        }
        100%{
            opacity:1;
            transform: scale(1.15);
        }
    }
    .bg-two{
        width:100%;
        height:100%;
        background-image:url(../img/two.jpg);
        background-size:cover;
        position: absolute;
        transform: scale(1.15);
        animation:bgTwo 15s linear infinite;
    }
    @keyframes bgTwo{
        0%{
            opacity:0;
        }
        30%{
            opacity:0;
        }
        33.33%{
            opacity:1;
            transform: scale(1.15);
        }
        66%{
            opacity:1;
        }
        70%{
            opacity:0;
            transform: scale(1);
        }
        100%{
            opacity:0;
        }
    }
    .bg-three{
        width:100%;
        height:100%;
        background-image:url(../img/three.jpg);
        background-size:cover;
        position: absolute;
        transform: scale(1.15);
        animation:bgThree 15s linear infinite;
    }
    @keyframes bgThree{
        0%{
            opacity:0;
        }
        33%{
            opacity:0;
        }
        33.33%{
            opacity:0;
        }
        66%{
            opacity:0;
            transform: scale(1.15);
        }
        70%{
            opacity:1;
        }
        99.5%{
            opacity:1;
        }
        96%{
            opacity:1;
        }
        100%{
            opacity:0;
            transform: scale(1);
        }
    }

    .menubar{
        width:100%;
        height:80px;
        background:rgba(0,0,0,0.5);
        position: absolute;
        z-index: 200;
        bottom: 0;
        display:flex;
        flex-direction:row;
        align-items:center;
        justify-content:center;
    }
    .menus{
        height:50px;
        border-left:solid 1px #fff;
        flex-grow:1;
        display:flex;
        flex-direction: row;
        justify-content: center;
        align-items:center;
        transition:0.2s;
    }
    .active_menu{
        background:#f8ec099f;
        height:80px;
        border-left:none;
    }
    
    .menus:hover{
        cursor:pointer;
        height:100%;
        background:rgba(0,0,0,0.5);
    }
    .active_menu:hover{
        background:#f8ec0973;
    }
    .menus img{
        width:40px;
        height:40px;
        margin:5px;
        filter:invert(1);
    }
    .menus span{
        font-size:17px;
        color:#fff;
        margin-left:10px;
    }
    .footer{
        width:100vw;
        background:#fff;
        text-align:center;
        line-height: 30px;
        color:#444;
    }

    .quotes_container{
        width:100%;
        height:400px;
        display:flex;
        flex-direction:column;
        justify-content: center;
        align-items: center;
    }
    .quote{
        width:90%;
        font-size:18px;
        color:#fff;
        line-height:30px;
        padding:22px;
        border:solid 2px #fff;
        box-sizing:border-box;
    }
    .quote_writer{
        width:90%;
        text-align:right;
        color:#fff;
        font-size:17px;
        box-sizing:border-box;
    }

    .clients{
        display:none;
        flex-direction:row;
        flex-wrap:wrap;
        justify-content: space-around;
    }
    
    .clients img{
        width:200px;
    }

    .eachProjects{
        width:90%;
        margin-left:5%;
        display:flex;
        flex-direction:column;
        background:rgba(0, 0, 0, 0.5);
        padding:10px;
        box-sizing:border-box;
        margin-top:20px;
    }
    .ProjectDetail{
        width:100%;
        display:flex;
    }
    .projectDetailLeft{
        min-width:120px;
        line-height: 30px;
        border-right:solid 1px #fff;
        margin-right:10px;
    }
    .projectDetailRight{
        flex-grow: 1;
        line-height:30px;
    }

    .contact_container{
        width:100%;
        height:100%;
        display:flex;
        flex-direction:column;
    }
    .contact_title{
        font-size:25px;
        color:#fff;
        line-height:30px;
    }
    .contact_company_name{
        font-size:18px;
        color:#fff;
        margin-bottom:30px;
    }
    .contact_detail{
        width:100%;
        display:flex;
        margin:10px 0;
    }
    .contact_detail_title{
        color:#fff;
        font-size:16px;
        min-width:100px;
    }
    .contact_detail_data{
        color:#fff;
        font-size:16px;
    }

    .contact_map{
        width:100%;
        height:400px;
        display:flex;
        justify-content: center;
        align-items: center;
    }
}
#services {
    position: relative;
    top: 30%;
}

/*extra large======================================================================================================*/

@media only screen and (min-width: 1200px) {

    .show_hide_menu{
        display:none;
    }
    
    .maincontainer{
        width:100vw;
        height:100vh;
        overflow:hidden;
    }
    .logoContainer{
        position: absolute;
        top:0;
        left:0;
        z-index:100;
        top:0;
        left:0;
    }
    .logoContainer img{
        width:200px;
    }
    .content{
        width:80%;
        left: 10%;
        position: absolute;
        z-index:100;
        bottom:150px;
    }
    .content_containers{
        transition:0.5s;
        display:none;
        width:100%;
        /*min-height:400px;*/
        /*max-height:500px;*/
        background:rgba(0,0,0,0.5);
        align-items: center;
    }
    .services_scroll_container{
        min-height: 500px;
        max-height:500px;
        width:100%;
        padding:30px;
        box-sizing:border-box;
        overflow-y:scroll;
        /* padding:50px 0; */
    }
    .content_left{
        width:50%;
        box-sizing: border-box;
        border-right:solid 2px #fff;
        color:#fff;
    }
    .contentLeftMargin{
        padding:30px;
    }
    .content_left p{
        color:white;
        text-align: justify;
        font-size:15px;
        line-height:20px;
    }
    .content_title{
        font-size:30px;
        color:#fff;
        font-weight: bold;
    }
    
    .contact_right{
        width:50%;
        min-height:400px;
        /* background:#fff; */
    }
    .slider_container{
    }
    .slide_items{
        height:500px;
        display:flex;
        justify-content:center;
        align-items:center;
    }
    .slide_items img{
        height:100%;
    }
    .owl-dots{
        display:none !important;
    }
    
    .background{
        width:100vw;
        height:100vh;
        position: absolute;
        top:0;
        left:0;
        z-index:50;
        overflow:hidden;
        
    }
    .bg-one{
        width:100%;
        height:100%;
        background-image:url(../img/one.jpg);
        background-size:cover;
        transform:scale(1.15);
        position: absolute;
        animation:bgOne 15s linear infinite;
    }
    @keyframes bgOne{
        0%{
            opacity:1;
            transform: scale(1.15);
        }
        30%{
            opacity:1;
        }
        33.33%{
            opacity:0;
            transform: scale(1);
        }
        66.66%{
            opacity:0;
        }
        96%{
            opacity: 0;
        }
        100%{
            opacity:1;
            transform: scale(1.15);
        }
    }
    .bg-two{
        width:100%;
        height:100%;
        background-image:url(../img/two.jpg);
        background-size:cover;
        position: absolute;
        transform: scale(1.15);
        animation:bgTwo 15s linear infinite;
    }
    @keyframes bgTwo{
        0%{
            opacity:0;
        }
        30%{
            opacity:0;
        }
        33.33%{
            opacity:1;
            transform: scale(1.15);
        }
        66%{
            opacity:1;
        }
        70%{
            opacity:0;
            transform: scale(1);
        }
        100%{
            opacity:0;
        }
    }
    .bg-three{
        width:100%;
        height:100%;
        background-image:url(../img/three.jpg);
        background-size:cover;
        position: absolute;
        transform: scale(1.15);
        animation:bgThree 15s linear infinite;
    }
    @keyframes bgThree{
        0%{
            opacity:0;
        }
        33%{
            opacity:0;
        }
        33.33%{
            opacity:0;
        }
        66%{
            opacity:0;
            transform: scale(1.15);
        }
        70%{
            opacity:1;
        }
        99.5%{
            opacity:1;
        }
        96%{
            opacity:1;
        }
        100%{
            opacity:0;
            transform: scale(1);
        }
    }

    .menubar{
        width:100%;
        height:80px;
        background:rgba(0,0,0,0.5);
        position: absolute;
        z-index: 200;
        bottom: 0;
        display:flex;
        flex-direction:row;
        align-items:center;
        justify-content:center;
    }
    .menus{
        height:50px;
        border-left:solid 1px #fff;
        flex-grow:1;
        display:flex;
        flex-direction: row;
        justify-content: center;
        align-items:center;
        transition:0.2s;
    }
    .active_menu{
        background:#f8ec099f;
        height:80px;
        border-left:none;
    }
    
    .menus:hover{
        cursor:pointer;
        height:100%;
        background:rgba(0,0,0,0.5);
    }
    .active_menu:hover{
        background:#f8ec0973;
    }
    .menus img{
        width:40px;
        height:40px;
        margin:5px;
        filter:invert(1);
    }
    .menus span{
        font-size:17px;
        color:#fff;
        margin-left:10px;
    }
    .footer{
        width:100vw;
        height:50px;
        background:#fff;
        text-align:center;
        line-height: 50px;
        color:#444;
    }

    .quotes_container{
        width:100%;
        height:400px;
        display:flex;
        flex-direction:column;
        justify-content: center;
        align-items: center;
    }
    .quote{
        width:90%;
        font-size:18px;
        color:#fff;
        line-height:30px;
        padding:22px;
        border:solid 2px #fff;
        box-sizing:border-box;
    }
    .quote_writer{
        width:90%;
        text-align:right;
        color:#fff;
        font-size:17px;
    }

    .clients{
        display:none;
        flex-direction:row;
        flex-wrap:wrap;
        justify-content: space-around;
    }
    
    .clients img{
        width:200px;
    }

    .eachProjects{
        width:90%;
        margin-left:5%;
        display:flex;
        flex-direction:column;
        background:rgba(0, 0, 0, 0.5);
        padding:10px;
        box-sizing:border-box;
        margin-top:20px;
    }
    .ProjectDetail{
        width:100%;
        display:flex;
    }
    .projectDetailLeft{
        min-width:120px;
        line-height: 30px;
        border-right:solid 1px #fff;
        margin-right:10px;
    }
    .projectDetailRight{
        flex-grow: 1;
        line-height:30px;
    }

    .contact_container{
        width:100%;
        height:100%;
        display:flex;
        flex-direction:column;
    }
    .contact_title{
        font-size:25px;
        color:#fff;
        line-height:30px;
    }
    .contact_company_name{
        font-size:18px;
        color:#fff;
        margin-bottom:30px;
    }
    .contact_detail{
        width:100%;
        display:flex;
        margin:10px 0;
    }
    .contact_detail_title{
        color:#fff;
        font-size:16px;
        min-width:100px;
    }
    .contact_detail_data{
        color:#fff;
        font-size:16px;
    }

    .contact_map{
        width:100%;
        height:400px;
        display:flex;
        justify-content: center;
        align-items: center;
    }

}

/* width */
::-webkit-scrollbar,::-moz-scrollbar,::scrollbar {
    width: 7px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track,::-moz-scrollbar-track,::scrollbar-track {
    box-shadow: inset 0 0 5px rgba(0,0,0,0.5); 
    border-radius: 10px;
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb,::-moz-scrollbar-thumb,::scrollbar-thumb {
    background:rgba(0,0,0,0.5);
    border-radius: 10px;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover,::-moz-scrollbar-thumb:hover,::scrollbar-thumb:hover {
    background: #aaa; 
  }
  
  
  
 .owl-carousel {
     position: relative;
 }
 .owl-prev {
     position: absolute;
     left: 20px;
     top: 50%;
 }
  .owl-next {
     position: absolute;
     right: 20px;
     top: 50%;
 }
 .owl-prev span,.owl-next span {
     color: #fff;
     font-size: 3em;
 }
.quote {
    word-break: break-all;
}
@media screen and (max-width: 600px) {
    .quote {
        font-size: 14px !important;   
    }
}
@media screen and (max-width: 1400px) and (min-width: 600px) {
    .quote {
        font-size: 15px !important;   
    }
}
.submitdata {
    padding: 5px 30px;
    display: block;
    margin: 20px 0;
    background:
    #f8ec099f;
    border: 0;
    color:#fff;
    font-size: 1em;
    font-weight: normal;
}
.owl-carousel .owl-item img {
    object-fit: contain !important;
}
.form-group label, .contact-detailbox span {
    display: block;
    font-size: 18px;
}
.formfield .form-group {
    width: 80%;
}
.mailcontactform {
    margin: 30px 0;
}
@media screen and (max-width: 600px) {
    .form-group {
        padding: 15px 0;
    }
}
@media screen and (min-width: 768px) {
    .formfield {
        display: flex;
        justify-content: space-between;
        width: 90%;
        padding: 10px 0;
    }    
    .formfield .form-group {
        width: 45%;
    }
    .mailcontactform {
        margin: 0;
    }
}


.formfield .form-group input,.contact_detail_data textarea {
    width: 100%;
    padding: 10px;
    background:transparent;
    color:#fff;
    border: 1px solid;
}
#contact {
    min-height: auto !important;
    max-height: auto !important;
}
.contact_detail_data textarea {
    width: calc(94% - 30px);
    display: block;
    padding: 15px;
}