*{
    margin: 0;
    padding: 0;
    font-family: 'Merriweather', sans-serif;
    /* font-family: 'Montserrat', sans-serif; */

}
.header{
    background-image: linear-gradient(#0a0a36a7, rgba(13, 22, 94, 0.191)), url("images/background.jpeg");
    background-position: bottom 100px right 0px;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%; /*might cause viewport problems*/
    height: 50vh;
    margin: 0 auto;
}
nav{
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
}
nav img{
    width: 150px;
}
.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: white;
    text-decoration: none;
    font-size: 15px;
}
.nav-links ul li a:hover{
    color: grey;
}
.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: grey;
    display: block;
    margin: auto;
    transition: 0.5s;
}
.nav-links ul li:hover::after{
    width: 100%;    
}
.hero-btn-cntc{
    display: inline-block;
    text-decoration: none;
    color: white;
    border: 1px solid white;
    padding: 5px 34px;
    font-size: 10px;
    background: transparent;
    position: relative;
    cursor: pointer;
}
.hero-btn-cntc:hover{
    border: 1px solid grey;
    background: white;
    transition: 1s;
}
.text-box{
    width: 90%;
    color: white;
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
    line-height: 1.2;
}
.text-box h1{
    font-size: 50px;
    color: white;
    font-weight: 500;
}
.text-box-mobile{
    width: 90%;
    color: white;
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
    line-height: 1.5;
    visibility: hidden;
}
.text-box-mobile h1{
    font-size: 28px;
    color: white;
    font-weight: 500;
}
.text-box p{
    margin: 10px 0 50px;
    font-size: 25px;
    color: rgb(196, 196, 196);
}
.hero-btn{
    display: inline-block;
    text-decoration: none;
    color: white;
    border: 1px solid white;
    padding: 12px 34px;
    font-size: 12px;
    background: transparent;
    position: relative;
    cursor: pointer;
}
.hero-btn:hover{
    border: 1px solid grey;
    background: grey;
    transition: 1s;
}
nav .fa{
    display: none;
}
@media only screen and (max-width: 700px){ 
/* @media(max-width: 700px){ */
    .header {
        background-image: linear-gradient(#0a0a36a7, rgba(13, 22, 94, 0.191)), url("images/background.jpeg");
        background-position: center;
        background-attachment: scroll;
        background-repeat: no-repeat;
        background-size: cover;
        width: 100%; /*might cause viewport problems*/
        height: 50vh;
        margin: 0 auto;
    }
    nav img{
        width: 100px;
    }
    .text-box{
        top: 30%;
        text-align: center;
        line-height: 1.5;
        visibility: hidden;
    }
    .text-box h1{
        font-size: 28px;
        font-weight: 500;
    }
    .text-box p{
        margin: 10px 0 5px;
        font-size: 12px;
        color: rgb(179, 179, 179);
    }
    .text-box-mobile{
        visibility: visible;
    }
    .hero-btn{
        font-size: 8px;
    }
    .nav-links ul li{
        display: block;  
    }
    .nav-links{
        position: fixed;
        background: #0a0a36;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200;
        text-align: left;
        z-index: 2;
        transition: 0.5s;

    }
    nav .fa{
        display: block;
        color: white;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }
    .nav-links ul{
        padding: 20px;
}}

.background-2{
    min-height: 50vh;
    width: 100%;
    background-color: #0a0a360f;
    /* background-image: linear-gradient(rgba(1, 3, 10, 0.4), rgba(4,9,30,0.4)), url(images/satellite-image.jpg); */
    background-position: center;
    background-size: cover;
    position: relative;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
.service{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 50px;
    padding-bottom: 50px;
    /* border: 1px solid green; */
}
/* .service h1{
    font-size: 35px;
    font-weight: 500;
    color: #0a0a36;
} */
.contact-section{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
}
.contact-info{
    color: grey;
    max-width: 500px;
    line-height: 65px;
    padding-left: 50px;
    font-size: 14px;
    /* border: 1px solid red; */
}
.contact-info .far{
    font-size: medium;
}
.contact-info .fas{
    font-size: medium;
}
.contact-info i{
    margin-right: 20px;
    font-size: 25px;

}
.contact-form{
    max-width: 700px;
    margin-right: 50px;
    /* border: 1px solid red; */
}

.contact-info, .contact-form{
    flex: 1;
}
.contact-form h1{
    color: #0a0a36;
    text-align: left;
    font-size: 35px;
    text-transform: capitalize;
    margin-bottom: 30px;
    font-weight: 500;
}
.contact-form .text-box-2{
    border: none;
    width: calc(50% - 10px);
    height: 50px;
    padding: 12px;
    font-size: 14px;
    border-radius: 5px;
    margin-bottom: 20px;
    opacity: 0.9;
}
.contact-form textarea{
    border: none;
    width: 98%;
    padding: 12px;
    padding-right: 12px;
    font-size: 14px;
    min-height: 200px;
    max-height: 400px;
    resize: vertical;
    border-radius: 5px;
    margin-bottom: 20px;
    opacity: 0.9;
}
.contact-form .send-btn{
     float: right;
     margin-right: 15px;
     background: none;
     color: grey;
     border: 1px solid grey;
     width: 120px;
     height: 35px;
     font-size: 12px;
     text-transform: uppercase;
     letter-spacing: 1px;
     border-radius: 5px;
     
}
.contact-form .send-btn:hover{
    background: grey;
    border: 1px solid black;
    color: white;
    transition: 1.0s;
    transition-property: background;
}

.map{
    margin: 50px;
    margin-left: 100px;
    margin-right: 100px;
}
.map iframe{
    height: 450px;
}
.alert-sucess{
    z-index: 1;
    background-color: #e0f0d8;
    font-size: 15px;
    color: #456745;
    padding: 20px 40px;
    min-width: 420px;
    height: 10px;
    position: fixed;
    left: 0;
    /* top: 10px; */
    bottom: 10px;
    border-left: 8px solid #629261;
    border-radius: 5px;
}



@media screen and (max-width: 950px){
    .contact-section{
        flex-direction: column;
    }
    .contact-info{
        margin-bottom: 50px;
        line-height: 50px;
        padding-left: 0px;
        font-size: 12px;
    }
    .contact-form{
        /* border: 1px solid red; */
        margin-right: 0px;
    }
    .contact-form h1{
        /* color: #0a0a36; */
        text-align: center;
        font-size: 25px;

    }
    .contact-form .text-box-2{
        width: 100%;
        font-size: 12px;
    }
    .contact-form textarea{
        width: 100%;
        font-size: 12px;

    }
    .contact-form .send-btn{
        margin-right: 0px;
        font-size: 10px;      
   }
   .map{
        margin: 0px;
        margin-top: 50px;
        margin-bottom: 50px;
    }
    .map iframe{
        height: 300px;
    }
   
}


/* Footer */
.container-footer{
	max-width: 1500px;
    margin-left: 20%;
    padding-top: 0px;
    
}
.row-footer{
	display: flex;
	flex-wrap: wrap;
}
ul{
	list-style: none;
}
.footer{
	background-color: #0a0a36;
    padding: 70px 0;
}
.footer p{
    margin-bottom: 25px;
    margin-top: 20px;
    font-weight: 500;
    text-align: center;
    color: white;
    font-size: 15px;
}
.footer-col{
   width: 22%;
   padding: 0 15px;
}
.footer-col h4{
	font-size: 18px;
	color: #ffffff;
	margin-bottom: 35px;
	font-weight: 500;
	position: relative;
}
.footer-col h4::before{
	content: '';
	position: absolute;
	left:0;
	bottom: -10px;
	background-color: #bbbbbb;
	height: 2px;
	box-sizing: border-box;
	width: 50px;
}
.footer-col ul li:not(:last-child){
	margin-bottom: 10px;
}
.footer-col ul li a{
	font-size: 16px;
	color: #ffffff;
	text-decoration: none;
	font-weight: 300;
	color: #bbbbbb;
	display: block;
	transition: all 0.3s ease;
}
.footer-col ul li a:hover{
	color: #ffffff;
	padding-left: 8px;
}
.footer-col .social-links a{
	display: absolute;
	height: 40px;
	width: 40px;
	background-color: #3b5998;
	margin:0 10px 10px 0;
	text-align: center;
	line-height: 40px;
    padding: 10px;
	border-radius: 10%;
	color: #ffffff;
	transition: all 0.5s ease;
}
.footer-col .social-links a:hover{
	color: #24262b;
	background-color: #ffffff;
}

/*responsive*/
@media(max-width: 767px){
  .footer-col{
    width: 50%;
    margin-bottom: 30px;
    }
    .footer p{
        font-size: 12px;
    }
}
@media(max-width: 574px){
  .footer-col{
    padding: 0 0px;
    width: 100%;
}
.footer-col h4{
	font-size: 15px;
}
.footer-col ul li a{
	font-size: 12px;
}

