*{
    margin: 0;
    padding: 0;
    font-family: 'Aboreto', cursive;
   
}

.header{
min-height: 100vh;
width: 100%;
background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(bg.jpeg);
background-size: cover;
background-position: relative;
}
nav{
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
}
nav img{
    width: 100px;
}
.nav-links {
flex: 1;
text-align: right;
}
.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
    
}
.nav-links ul li a {
    font-size: 13px;
    color: #fff;
    text-decoration: none;
}
.nav-links ul li ::after{
content: '';
width: 0%;
height: 2px;

}
.nav-links ul li:hover::after{
    width: 150%;
}
.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 h3{
    margin: 10px 0 40px;
    font-size: 14px;
    color: #fff;
}
.hero-btn{
    display: inline-block;
    text-decoration: none;
    color:#fff;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 13px;
    background:transparent;
    position: relative;
    cursor: pointer;
}
.hero-btn:hover{
border: 1px solid #f44336;
background: #f44336;
transition: 1s;
}
nav .fa{
    display: none;
}
@media(
    max-width: 700px
)
{.text-box h1{
    font-size: 20px;}
    .nav-links ul li{
        display: block;
    }

}

/*----journey---*/
.journey{
    width: 100%;
    margin: auto;
    text-align: center;
    padding-top: 50px;
    background-color:black;
}
.journey h1,p{
    text-align: center;
    color: #fff;
}
.row{
    margin-top: 5%;
    display: flex;
    justify-content: space-between;}
    
.journey-col{
    flex-basis:36%;
    border-radius: 10px;
    
    margin-bottom: 20px;
    margin-left:30px ;
    margin-right:30px;
   overflow: hidden;
   position: relative;
    

}
.journey-col img{
    width:100%;
    display: block;
    box-shadow: #fff;
}
.layer{
    background:transparent;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.5s;

}
.layer:hover{
    background: rgba(44, 49, 128, 0.7);
}
.layer h3{
    width: 100%;
    font-weight: 500;
    color: #fff;
font-size: 26px;
bottom: 0;
left: 50%;
transform: translate(-50%);
position: absolute;
opacity: 0;
transition: 0.5s;

}

.layer:hover h3{
    bottom: 49%;
opacity: 1;
}
@media(
    max-width:700px
)
{
    .row{
        flex-direction: column;
        
    }
    
    .journey-col{
        flex-basis:36%;
        border-radius: 10px;
        
        margin-bottom: 50px;
        margin-left:80px ;
        margin-right:80px;
       overflow: hidden;
       position: relative;
        
    
    }

}


/*--footer--*/
.footer{
    width: 100%;
    text-align: center;
    padding: 30px 0;
    
    background-image:linear-gradient(rgba(0, 1, 5, 0.877),rgba(11, 34, 128, 0.7));
background-size:fill;
background-position: relative;


}
.footer h4{
    margin-bottom: 25px;
    margin-top: 20px;
    font-weight: 600;
}

.icons .fa{
    color: #f44336;
    margin: 0 13px;
    cursor: pointer;
    padding: 18px 0;

}
.fa fa-copyright{
    color: #f44336;
}
@media(
    max-width:700px
){.footer h4{
    margin-bottom: 25px;
    margin-top: 20px;
    font-weight: 600;
    font-size: 20px;
}

}