﻿body {
}
*{
    margin:0;
    padding:0;
    font-family:'Poppins',sans-serif;
}
.header{
      min-height:100vh;
    width:100%;
    background-image:linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url('IMG/DBG Main.jpeg');
    background-position:center;
    background-size:cover;
    position:relative;
    
}
nav{
    display:flex;
    padding:2% 6%;
    justify-content:space-between;
    align-items:center;

} 
.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{
    color:#fff;
    text-decoration:none;
    font-size:13px;
}
.nav-links ul li::after{
    content:'';
    width:0%;
    height:2px;
    background:#f44336;
    display:block;
    margin:auto;
    transition:0.5s;
}
.nav-links ul li:hover::after{
    width:100%;
 }

.main-img{
    width:100%;
    height:70vh;
   text-align:center;
}
.container{
    max-width:1200px;
    margin:0 auto;
    padding:0 100px;
}

.logo{
    width:120px;
    cursor:pointer;
}
.header h1
{
    font-size:36px;
    line-height:70px;
    letter-spacing:1px;
    margin:5px;
}
.intro{
    width:70%;
    margin:auto;
    text-align:center;
    padding-top:100px;
    word-spacing:2px;
}
p{
    text-align:justify;
    color:#777;
    font-size:16px;
    font-weight:300;
    line-height:22px;
    padding:10px;
    justify-content:space-between;
}

.content{
    width:70%;
    margin:auto;
    text-align:center;
    padding-top:100px;
    word-spacing:2px;
   
}
.row{

    margin-top:5%;
    display:flex;
    justify-content:space-between;
}
.row img{
     flex-basis:45%;
    border-radius:10px;
    margin-bottom:5%;
   border:solid;
    
    height:300px;
}
.text{
    flex-basis:50%;
    text-align:left;
    
}


.hero-btn{
    display:inline-block;
    text-decoration:none; 
    color:#808080;
    border:1px solid #808080;
    padding:12px 34px ;
    font-size:13px;
    background:Transparent;
    position:relative;
    cursor:pointer;

}
.hero-btn:hover{
    border:1px solid #ff0000;
    background:#808080;
    transition:1s;
    color:#fff;

}

.links{
     width:80%;
    margin:auto;
    text-align:center;
    padding-top:100px;
    word-spacing:2px;
}
.links-col {
    flex-basis: 29%;
    background: #fff3f3;
    border-radius: 10px;
    margin-bottom: 5%;
    
    box-sizing: border-box;
    
}
.links-col div{
    
    text-align:left;
   padding:2px;
}
.links-col:hover{
    box-shadow:0 0 20px 8px rgba(0,0,0,0.2);
}
.footer {
     width:100%;
     height:30px;
    background: #808080;
    margin: auto;
    text-align: center;
    vertical-align:middle;
    word-spacing: 2px;
}