*{
    margin: 0;
    padding: 0;
    font-family: 'Didact Gothic', sans-serif;
}
html, body{
    scroll-behavior:smooth;
    transition: 2s;
    min-height: 100%;
}

.header{
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(images/EB.jpg);
}
nav{
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
    /* below is for sticky navbar. */
    /* position: sticky;
    top: 0px;
    transition: 2s; 
    z-index: 11; */
    /* min-height: 100%; */
   
}
nav img{
    width: 150px;
    transition: 2s;
    content:url("images/Logo-02.png");
}
/* nav changes on scrolling */
/* .sticky-navbar{
    background-color: rgba(40, 64, 99, 0.5);
    padding: 15px 6%;
    height: 15px;
    top: 0px;
    box-shadow: 0 0 20px 0px rgba(40, 64, 99, 0.2);
}
.sticky-navbar img{
    width: 120px;
    content:url("images/Logo-03-white.png");
} */

.nav-links{
    flex: 1;
    text-align: right;
    background-size: cover;
    position: relative;
}
.nav-links ul li{
    list-style:  none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}
.nav-links ul li a{
    color: #fff;
    text-decoration: none;
    font-size: 15px;
}
.nav-links ul li::after{
    content: '';
    width: 0;
    height: 2px;
    background: #F05929;
    display: block;
    margin: auto;
    transition: 0.5s;
}
.nav-links ul li:hover::after{
    width: 100%;
}


.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: 16px;
    color: #fff;
}
.hero-btn{
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 16px;
    background: transparent;
    position: relative;
    cursor: pointer;
}
.hero-btn:hover{
    border: 1px solid #F05929;
    background: #F05929;
    transition: 0.5s;
}
nav .fas{
    display: none;
}

@media(max-width: 700px){
    .text-box h1{
        font-size: 20px;
    }
    .nav-links ul li{
        display: block;
    }
    .nav-links{
        position: fixed;
        background: #F05929;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 0.3s;
    }
    .nav-link ul{
        padding: 30px;
    }
    nav .fas{
        display:block;
        color: #fff;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }
}

/* Services */
.services{
    width: 100%;
    margin: auto;
    text-align: center;
    padding-top: 50px;
    background-color: rgb(255, 249, 246);
}
.services h1{
    font-size: 36px;
    font-weight: 600;
    color: black;
}
.p{
    color: black;
    font-size: 15px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}
.row{
    width: 80%;
    margin-top: 2%;
    margin-left: 10%;
    text-align: center;
    display: flex;
    justify-content: space-between;
}
.services .hero-btn{
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #000;
    padding: 12px 34px;
    font-size: 16px;
    background: rgb(40, 64, 99);
    position: relative;
    cursor: pointer;
    margin-bottom: 4%;
}
.services .hero-btn:hover{
    border: 1px solid #F05929;
    background: #F05929;
    color: #fff;
    transition: 0.5s;
}
.services-col{
    flex-basis: 31%;
    background: rgb(40, 64, 99);
    border-radius: 10px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0.5s;
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.2);
    color: whitesmoke;
}
.services-col .fas{
    color: whitesmoke;
    font-size: 30px;
    margin: 0px 0px 20px 15px;
}
.services-col h3{
    text-align: center;
    font-weight: 600;
    margin-bottom: 25px;
    color: whitesmoke;
}
/* .services-col h3 .fas{
    text-align: center;
    font-weight: 600;
    margin-bottom: 25px;
    color: whitesmoke;
} */
.services-col:hover{
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.4);
    background: #F05929;
    /* color: black */
}
.services-col:hover{
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.4);
    background: #F05929;
    /* color: black */
}

@media(max-width: 700px){
    .row{
        flex-direction: column;
    }
}

/* about */
.about{
    width: 100%;
    text-align: center;
    align-items: center;
    padding-top: 50px;
    background-color: white;
    background-image: linear-gradient(rgba(4,9,30,0.8),rgba(4,9,30,0.8)),url(images/Rotterdam01.jpg);
    background-size: auto;
    color: #fff;
    padding-bottom: 30px;
}
.about h1{
    font-size: 36px;
    font-weight: 600;
    text-align: center;
    color: #fff;
}
.about-row{
    display: block;
    text-align: center;
    margin-top: 2%;
    margin-bottom: 2%;
}
.about-row p{
    width: 30%;
    margin: 0 auto;
    margin-bottom: 2%;
    /* flex-basis: 31%; */
    border-radius: 10px;
    padding: 15px 12px;
    box-sizing: border-box;
    background: rgb(255, 249, 246);
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.2);
    color: black;
    text-align: start;
    transition: 0.3s;
}
.about-row p:hover{
    color: #fff;
    background-color: #F05929;
    
}
.about-row ul{
    margin: 0 auto;
    width: 40%;
    text-align: center;
}
.about-row ul li{
    list-style:  none;
    display: inline-table;
    width: 223px;
    margin: 1% 1%;
    /* margin-bottom: 2%;
    margin-right: 1%;
    margin-left: 1%; */
    /* flex-basis: 31%; */
    border-radius: 10px;
    padding: 10px 10px;
    box-sizing: border-box;
    background: #F05929;
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.2);
    color: #fff;
    text-align: start;
    transition: 0.3s;
}
.about-row ul li:hover{
    color: #fff;
    background-color: rgb(63, 72, 97);
}

@media(max-width: 700px){
    .about-row p{
        width: 80%;
    }
    .about-row ul{
        margin: 0 auto;
        width: 90%;
    }
}

/* Contact */
.contact{
    width: 100%;
    margin: auto;
    padding-top: 100px;
    /* background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(images/Rotterdam01.jpg);
    background-size: cover;
    background-attachment: fixed; */
    /* background-color: #938885; */
    /* background-image: linear-gradient(to top, #fbcfc2, #fde7e0); */
}
.contact h1{
    text-align: center;
    color: #fff;
}
.contact h4{
    text-align: left;
    margin-bottom: 10px;
    margin-left: 14px;
}
.contact.col{
    flex-basis: 48%;
    margin-bottom: 30px;
    column-count: 3;
}
.contact-col div{
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}
.contact-col div .fas{
    font-size: 28px;
    color: #F05929;
    margin: 10px;
    margin-right: 30px;
}
.contact-col div p{
    padding: 0;
}
.contact-col div h5{
    font-size: 20px;
    margin-bottom: 5px;
    color: #555;
    font-weight: 400;
}
.contact div h4{
    margin-left: 30px;
}
.contact-col input, .contact-col textarea{
    width: 90%;
    padding: 15px;
    margin-bottom: 17px;
    margin-left: 30px;
    box-sizing: border-box;
    border: 1px solid #fcdbd1;
    outline: none;
}
.contact-form button{
    margin: 10px 0;
    margin-left: 30px;
}

/* footer contact section*/
.footer{
    width:100%;
    margin: auto;
    text-align: center;
    padding-top: 50px;
    background-color: rgb(63, 72, 97);
}

.footer h1{
    /* width: 100%; */
    font-size: 36px;
    font-weight: 600;
    text-align: center;
    color: #fff;
}

.footer .footer-row{
    /* width: 68%; */
    margin-top: 2%;
    margin-left: 10%;
    text-align: right;
    display: flex;
    justify-content: space-evenly;
    align-items: flex-end;
}
.footer-contact-col{
    flex-basis: 33%;
    margin-bottom: 30px;
    text-align: left;
    justify-content: center;
}
.footer-contact-col .div{
    align-items: center;
    text-align: left;
    margin-bottom: 20px;
}
.footer-contact-col div .fas{
    font-size: 16px;
    color: whitesmoke;
    margin: 5px;
    margin-right: 10px;
}
.footer-contact-col div p{
    color: whitesmoke;
    font-size: 14px;
    margin-top: 3px;
    /* margin-bottom: 20px; */
    margin-left: 35px;
}
.footer-contact-col div h4{
    font-size: 14px;
    color: whitesmoke;
    font-weight: 400;
    transition: 0.3s;
    display: inline-block;
}
.footer-contact-col div h5{
    font-size: 18px;
    color: whitesmoke;
    font-weight: 400;
    transition: 0.3s;
    display: inline-block;
    margin-top: 25px;
}

.footer-contact-col div h5:hover{
    font-size: 18px;
    color: #f05929;
    font-weight: 400;
}
.footer-contact-col a{
    text-decoration: none;
    color: whitesmoke;
    transition: 0.3s;
}

.footer-contact-col a:hover{
    color: #f05929;
}

@media(max-width: 700px){
    .footer .footer-row{
        flex-direction: column-reverse;
        align-items: center;
        margin-left: 0%;
    }
}

/* footer bottom bar */
.bottom-row .row-bottom{
    flex-basis: 50%;
    background: rgb(40, 64, 99);
    padding: 20px;
    text-align: center;
}

.bottom-row .row-bottom .div{
    display: flex;
    align-items: center;
}

.bottom-row .row-bottom .copyright{
    color: whitesmoke;
    font-size: 14px;
}

.bottom-row .row-bottom .copyright i{
    color: whitesmoke;
    font-size: 14px;
}