@import url('https://fonts.googleapis.com/css?family=Inconsolata');
@import url('https://fonts.googleapis.com/css?family=Comfortaa|Inconsolata');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Inconsolata', monospace;
    -webkit-font-smoothing: antialiased;
}

/* font-family: 'Laila', serif; */
/* Navigation bar */
nav{
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100px;
    padding-top: 20px;
    background-color: #F4F6F6;
}
ul{
    display: flex;
    flex-direction: row; 
    justify-self: flex-end;
    width: 60%; 
    /* justify-content: space-evenly; */
    margin-top: 20px;
    /* display: -ms-flexbox; */

}
 li{
    list-style: none;
    /* padding-right: 5px;
    padding-left: 5px; */
 }
 .nav-link{
    width: 12%;
    display: block;
 }
 .link-box{
     display: flex;
     justify-content: center;
 }
 .nav-icon{
     width: 5%;
 }
 .home-link{
    color: black;
 }
 a{
    text-decoration: none;
    color: #797D7F;
    font-size: 16px;
    text-align: center;
 }
 a:hover{
     border-bottom: black solid 1px;
 }
 .link-box{
     display: inline;
     text-align: center;
 }
 .brand-logo{
    font-size: 25px;
    justify-self: flex-start;
    width: 40%; 
    font-weight: bold;
    margin-left: 30px;
    letter-spacing: 3px;
    margin-top: 20px;
 }
 /* General styling */
 .section{
     width: 100%;
     display: flex;
 }

 .section1{
     height: 700px;
     justify-content: flex-start;
     align-items: center;
     background-image: url("arrows-circle-clock-707582.jpg");
     background-size: cover;
     background-repeat: no-repeat;
     background-attachment: fixed;
 }
 .sec1-content{
     width: 80%;
     margin-left: 30px;
     height: 100%;
     display: flex;
     justify-content: center;
     flex-direction: column;
 }
 .title{
     font-size: 50px;
     font-family: 'Source Code Pro', monospace;
     font-weight: lighter;
     margin-bottom: 20px;
 }
 .sub-title{
    font-size: 100px;
    font-weight: bold;  
    margin-bottom: 30px;
    font-family: 'Comfortaa', cursive;
 }
 .text{
     font-size: 20px;
     color: #5F6A6A;
     width: 70%;
     /* line-height: 20px; */
 }

 .btns{
     margin-top: 50px;
 }
 .btn{
     width: 150px;
     height: 50px;
     background-color: transparent;
     border-radius: 20px;
     border: 0;
     font-size: 16px;
 }
 .btn1{
    border: 1.5px black solid;
    color: black;
    margin-right: 10px;
 }
 .btn2{
     color: white;
     background-color: black;
 }
.section2{
    height: 400px;
    align-items: center;
    justify-content: center;
}
 .box{
     width: 25%;
     margin-right: 40px;
     margin-top: 30px;
 }
.icon{
    font-size: 60px;
}
.sub-title-e{
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 30px;
}
.content{
    font-size: 16px;
    color: #5F6A6A;
    padding-bottom: 40px;
    border-bottom: solid 1px #D6DBDF;
    line-height: 25px;
}
.line-num{
    color: gray;
    font-size: 15px;
}
.little{
    margin-top: 10px;
}
.footer{
    height: 50px;
    justify-content: center;
    align-items: center;
    background-color: black;
    color: white;
    margin-top: 50px;
}
.footer-title{
    width: 100px;
}