*{
    margin: 0;
    padding: 0;
   }

#HOME {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(rgba(0, 0, 0, 0), #006988), url(Images/1.jpeg);
    background-size: cover;
    background-position: center;
    padding-bottom: 5%;
    
}

.HOME{
    background: linear-gradient(rgba(0,0,0,0),#006988), url(Images/1.jpeg);
    background-size: cover;
    background-position: center;
    height: 100vh;
    width: 100%;
    padding-bottom: 15%;
    padding-top: 5%;
    
}


.logo{
    width: 300px;
    padding-top: 10px;
    padding-left: 10px;
    
}

.HOME-text{
    text-align: center;
    color: floralwhite;
    padding-top: 35px;
    font-family: 'Kaushan Script', cursive;
}

.HOME-text h1{
    font-size: 130px;
    font-style: italic;
}

.HOME-text p{
    font-size: 30px;
    font-style: italic;
}



/*nav menu bar*/
.nav-bar{
    width: 85%;
    margin: auto;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    
}
.nav-bar ul li{
    list-style: none;
    display: inline-block;
    margin: 0px 20px;
    position: relative;
}
.nav-bar ul li a{
    text-decoration: none;
    color: white;
    text-transform: uppercase;
    font-family: 'Kaushan Script', cursive;
}

.nav-bar ul li::after{
    content: '';
    height: 3px;
    width 0%;
    background: blue;
    position: absolute;
    left: 0;
    bottom: -10px;
    transition: 0.5s;
}
nav-bar ul li:hover::after{
width: 100%;
    
}


.HOME-btn{
    
    margin: 70px auto 0;
    font-family:inherit;
    padding-bottom: 10px;
    
}

.HOME-btn a{
    
    width: 150px;
    text-decoration: none;
    display: inline-block;
    margin: 0 10px;
    padding: 15px 0;
    color: antiquewhite;
    border: 2px solid #fff;
    border-radius: 100px;
    position: relative;
    z-index: 1;
        
}

.HOME-btn a span {
    width: 0%;
    height: 100%;
    position: absolute;
    border-radius: 100px;
    top: 0;
    left: 0;
    background: #ff8c00;
    z-index: -1;
    transition: 0.5s;
    
}
.HOME-btn a:hover span {
    
    width: 100%;
    border-radius: 100px;
}

.HOME-btn a:hover{
    color: antiquewhite;
}
/*side nav*/
#sidenav{
    width: 250px;
    height: 100vh;
    position: fixed;
    right: -250px;
    top: 0;
    background: blue;
    z-index: 2;
    transition: 0.5s;
}

nav ul li{
    list-style: none;
    margin: 50px 20px;
}

nav ul li a{
    text-decoration: none;
    color: antiquewhite;
}


#menubtn{
    width: 50px;
    height: 40px;
    background: blue ;
    text-align: center;
    position: fixed;
    right: 30px;
    top: 30px;
    border-radius: 3px;
    z-index: 3;
    cursor: pointer;
        
}

#menubtn img{
    width: 40px;
    margin-top: 0px;
}


@media screen and (orientation:portrait){
    
    
    .banner-text h1{
    font-size: 44px;
    }
    .banner-btn a{
        display: block;
        margin: 20px auto;
    }
}


/*...............FEATURE...............*/
#FEATURE{
    width: 100%;
    padding: 70px 0; 
    
}

.title-text{
    text-align:center;
    padding-bottom: 70px;
}

.title-text p{
    margin:auto;
    font-size: 20px;
    color: #009688;
    font-weight: bold;
    position: relative;
    z-index: 1;
    display: inline-block;
}

.title-text p::after{
    content: '';
    width: 50px;
    height: 35px;
    background: linear-gradient(#019587, #fff);
    position: absolute;
    top: -20px;
    left: 0;
    z-index: -1;
    transform: rotate(10deg);
    border-top-left-radius: 35px;
    border-bottom-right-radius: 35px;
        
}
.title-text h1{
    font-size: 40px;
    
}

.FEATURE-BOX{
    width: 80%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    text-align: center;
}

.FEATURES{
    flex-basis: 50%;
}

.FEATURES-img{
    flex-basis: 50%;
    margin: auto;
    
}
.FEATURES-img img{
    width: 70%;
    border-radius: 10px;
}

.FEATURES h1{
    text-align: left;
    margin-bottom: 10px;
    font-weight: 100px;
    color: #009688;
}
.FEATURES-desc{
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.FEATURE-text p{
    padding: 0 20px;
    text-align: initial;    
}
@media screen and (orientation:portrait){
    .title-text h1{
       font-size: 35px;
}
    .FEATURES{
       flex-basis: 100%;
}
    .FEATURES-img{
       flex-basis: 100%;
}
    .FEATURES-img img{
        width: 100%;
    
}

}



/*...............SERVICE...............*/

#SERVICE{
    width: 100%;
    padding: 70px 0;
    background: #efefef; 
}

.SERVICE-BOX{
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: auto;
}

.single-SERVICE{
   flex-basis: 45%;
    text-align: center;
    border-radius: 7px;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
}

.single-SERVICE img{
    width: 100%;
    height: 90%;
    border-radius: 10px;
}

.overlay{
    width: 100%;
    height: 90%;
    position: absolute;
    top: 0;
    border-radius: 7px;
    cursor:pointer;
    background: linear-gradient(rgba(0,0,0,0.1),#009688);
    opacity: 0;
    transition: 1s;
}
.single-SERVICE:hover .overlay{
    opacity: 1;
}

.SERVICE-dec{
    width: 80%;
    position:absolute;
    top:auto;
    bottom: 0;
    opacity: 0;
    left: 50%;
    transform:translateX(-50%);
    transition: 1s;
}

hr{
    background: #fff;
    height: 2px;
    border: 0;
    margin: 15px auto;
    width: 60%;
}
.SERVICE-dec p{
    font-size: 17px;
    
}
.single-SERVICE:hover .SERVICE-dec{
    bottom: 35%;
    opacity: 1;
   
}

@media screen and (orientation:portrait) {
    .single-SERVICE {
        flex-basis: 100%;
        margin-bottom: 25px;
    }
    
 
    .SERVICE-dec p{
        font-size: 16px
    }
    hr{
        margin: 5px auto;
    }
    .single-SERVICE:hover .SERVICE-dec{
        bottom: 25% !important!;
        
    }
    
    }
    /*...............PRODUCT...............*/

#PRODUCT{
    width: 100%;
    padding: 70px 0; 
}
.PROJECT-BOX{
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: auto;
}



.single-PROJECT{
   flex-basis: 45%;
    text-align: center;
    border-radius: 7px;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
}

.single-PROJECT img{
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.overlay1{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    border-radius: 10px;
    cursor:pointer;
    background: linear-gradient(rgba(0,0,0,0.1),#009688);
    opacity: 0;
    transition: 1s;
}
.single-PROJECT:hover .overlay1{
    opacity: 1;
}

.PROJECT-dec{
    width: 80%;
    position: absolute;
    bottom: 0;
    opacity: 0;
    left: 50%;
    transform:translateX(-50%);
    transition: 1s;
}

hr{
    background: #fff;
    height: 2px;
    border: 0;
    margin: 5px auto;
    width: 60%;
}
.PROJECT-dec p{
    font-size: 14px;
}
.single-PROJECT:hover .PROJECT-dec{
  
    bottom: 45%;
    opacity: 1;
}

@media screen and (orientation:portrait) {
    .single-PROJECT {
        flex-basis: 100%;
        margin-bottom: 30px;
    }
    .PROJECT-dec{
        font-size: 12px
    }
    hr{
        margin: 5px auto;
    }
    .single-PROJECT:hover .PROJECT-dec{
        bottom: 25% !important!;
    }
    
    }


/*...............CONTACT...............*/
#PLAN{
    padding: 70px 0 ;
    background: #ebf4fa;
}

.PLAN-box{
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: auto;
}
.FORM input, .FORM textarea{
    width: 100%;
    padding: 15px;
    margin-bottom: 17px;
    outline: none;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.FORM button{
    width: 100%;
    background: white;
    color: black;
    padding: 14px 20px;
    margin: 10px 0;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-style: inherit bold;
    font-size: 20px;
    font-family:inherit;
}

.FORM button:hover{
    background: grey;
    color: white;
}

.FORM h4{
    text-align:center;
    margin: 5px 0;
    font-size: 20px;
}
.FORM select{
    width: 100%;
    padding: 14px 20px;
    margin: 10px 0;
    margin-bottom: 17px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-style: inherit bold;
    font-size: 20px;
    font-family:inherit;
}


/*...............CONTACT...............*/
#CONTACT{
    padding: 100px 0 ;
    background: #d3d3d3;
}
.CONTACT-box{
    width: 65%;
    margin:0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.CONTACT-left,CONTACT-right{
    flex-basis: 35%;
    padding: 10px;
    margin-bottom: 20px;
}

.CONTACT-right{
    text-align: right;
}

.CONTACT-box h1{
    margin: 10px 0;
}

.CONTACT-box p1{
    line-height: 15px;
}

.copyright{
   text-align:center;
    padding-bottom: 2px; 
}
.copyright img{
    width: 125px;
    height: 50px;
}
@media screen and (orientation:portrait){
    .CONTACT-left,CONTACT-right{
        flex-basis: 50%;
        font-size: 14px;
    }
    .CONTACT-box{
        width: 70%;}
    .copyright{
       font-size-adjust: 14px;
    }
    .copyright img{
    width: 125px;
    height: 50px;
}
}
  /*  width: 200px;
    padding: 15px 0;
    text-align: center;
    margin: 20px 10px;
    border-radius: 25;
    font-weight: bold;
    border: 2px solid #fff;
    background: transparent;
    color: aliceblue;
    cursor: pointer;
    
    */
