*{
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}

/* header : add background image*/
.header{
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url("logo.jfif");
    background-position: center;
    background-size: cover;
    position: relative;
}

/* Logo */
h1{
    font-weight: 800;
    font-size: 50px;
    
}

#logoN{
    color:#1985a1;
}

#logoE{
    color: white;
}

#logoD{
    color: white;
}

/* header postion*/
nav{
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
}

.nav-links{
    flex: 1;
    text-align: right;
}

.nav-links ul li a{
    color: white;
    text-decoration: none;
    font-size: 23px;
    font-family: sans-serif;
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
    
}

.text-box{
    width: 90%;
    color: #fff;
    position:absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}

.text-box h1{
    font-size: 62px;
}

.text-box p{
    margin: 10px 0 40px;
    font-size: 25px;
    color: white;
}


#text-box-number-title{
    color:#ee6c4d;
}
#text-box-number{
    color: #fff3b0;
    font-weight: bold;
}

/*Sign up button*/
.signUp-button{
    display: inline-block;
    text-decoration: none;
    color: white;
    border: 1px solid white;
    padding: 12px 34px;
    font-size: 13px;
    background:transparent;
    position: relative;
    cursor: pointer;
}

.signUp-button:hover{
    border: 1px solid #feeafa;
    background:#feeafa;
    transition: 2s;
}

.orderMethod{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;

}

#orderMethod-title{
    font-size: 50px;
    font-weight: 600;
    font-weight: bolder;
    color: #293241;
}

/*       Two method          */

/* into 3 cols*/
.row{
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
}

.oderMethod-col{
    flex-basis: 48%;
    background:#335c67;
    border-radius: 10px;
    margin-bottom: 5%;
    padding:20px 12px;
    box-sizing: border-box;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 1s;
    cursor: pointer;
}

.oderMethod-col:hover{
    box-shadow: 0 0 20px 10px rgba(56, 56, 23, 0.3);
}


.oderMethod-title{
    text-align: center;
    font-weight: bolder;
    margin: 10px 0;
    color: white;
    font-size: 30px;
}


.oderMethod-text{
    color: #fff1e6;
    font-weight: bolder;
    font-size: 20px ;
}



/*3 images*/

.imgSection-col{
    padding-left: 50px;
    padding-right: 50px;
    flex-basis: 31%;
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: left;
}

.imgSection-col img{
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 0 20px 0px rgba(56, 56, 23, 0.3);

}

#img-title{
    padding-top: 80px;
    font-size: 50px;
    font-weight: 600;
    font-weight: bolder;
    color: #293241;
    text-align: center;
}




/* Join Us section outline*/



/*Join US*/
#joinUs-title{
    font-size: 50px;
    font-weight: 600;
    font-weight: bolder;
    padding-top: 70px;
    padding-bottom: 10px;
    color: #293241;
    text-align: center;
}


.joinUs{
    width: 80%;
    height: auto;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    padding: 10px;
    border-radius: 10px;
    align-items: center;
    background:#89b0ae;
    box-shadow: 0px 0px 10px 0px #666;
}

.joinUs-map{
    width: 100%;
    height: auto;
    flex:50%;
}

.joinUs-map iframe{
    width: 95%;
    height: 620px;
    flex:50%;
    border-radius: 10px;
}


.joinUs-form{
    width: 100%;
    height: auto;
    flex:50%; 
}

#joinUs-form-title{
    margin-bottom: 10px;
    font-size: 28px;
    padding-top: 20px;
    text-align: center;
}

.joinUs-form-text{
    width: 90%;
    height: 40px;
    border: 1px solid #bcbcbc;
    border-radius: 50px;
    outline: none;
    margin-bottom: 20px;
    padding: 15px;
}

.joinUs-form-text::placeholder{
    color: #aaa;
}


.joinUs-form-textarea{
    width: 90%;
    height: 130px;
    border: 1px solid #bcbcbc;
    border-radius: 15px;
    outline: none;
    margin-bottom: 20px;
    padding: 15px;
}

.joinUs-form-textarea::placeholder{
    color: #aaa;
}

.joinUs-form-button{
    width: 95%;
    height: 30px;
    border: none;
    outline: none;
    border-radius: 50px;
    background:#284b63;
    color: #fff;
    text-transform: uppercase;
    padding: 1px 0;
    cursor: pointer;
    font-size: 20px;
}

