/*============= RESET STYLE =============

/*-- iPhone X Remove Gutters
Ignore W3C Validation error for this style. --*/
html {
   padding: env(safe-area-inset);
}

/*-- Body Resets --*/
body {
   font-family: 'Lato', sans-serif;
   color: #505962;
   overflow-x: hidden;
}

/*============= NAVIGATION =============*/
.navbar-brand img {
	height: 2rem;
}
.navbar-dark {
	padding: .6rem 1rem;
	font-size: .9rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0;
}
.navbar-nav li {
	padding-right: .8rem;
}
.navbar-nav .nav-link {
	padding-top: .8rem;
	color: #002e6d!important;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
	color: #76c4d5!important;
}
/*============= LANDING PAGE =============*/

/*-- Fixed Landing Page Section --*/
.landing {
	height: 100vh;
}
.home-inner {
	background-image: url('../img/landing.jpg');
	position: fixed;
}
/*-- Landing Page Content --*/
.caption {
	z-index: 1;
	position: absolute;
	top: 50%;
	text-align: center;
	font-weight: bold;
}
.btn {
	border-width: medium;
	border-radius: 0;
	text-transform: uppercase;
	padding: .5rem 1.2rem;
}
.tle {
	font-weight: 700;
	color: white;
	font-size: 2.75rem;
	text-shadow: 2px 0 0 #000, -2px 0 0 #000, 0 2px 0 #000, 0 -2px 0 #000, 1px 1px #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #fff;
}

/*============= ABOUT SECTION =============*/

/*-- Scrollspy Offset --*/
.offset:before {
	content: "";
	height: 3.875rem;
	display: block;
	margin-top: -3.875rem;
}


.heading {
	text-transform: uppercase;
	font-weight: 700;
	padding-bottom: 1rem;
	padding-top: 100px;
}
.about .svg-inline--fa {
	color: #002e6d;
	padding-bottom: 1rem;
}


/*============= PORTFOLIO SECTION =============*/
.portfolio-item img:hover {
	transform: scale(1.1);
}
.portfolio-item img {
	transition: transform .4s ease;
}

/*============= TESTIMONIALS SECTION =============*/

.cont-inner {
	background-image: url('../img/02.png');
}
.believe-inner {
	background-image: url('../img/pic03.jpg');
}

/*============= CONTACT SECTION =============*/
.footer {
	background-color: #fff;
}
.footer img {
	height:2rem;
}
.footer a {
	color: #76c4d5;
	text-decoration: none;
}

ul.social {
	list-style-type: none;
	display: flex;
	padding:0;
	margin: 0 auto;
	max-width: 11.8rem;
}
ul.social li {
	margin: 0 auto;
	display: inline;
	padding-right: 1.2rem;
}
.footer .svg-inline--fa {
	font-size: 1.6rem;
}
.footer .svg-inline--fa:hover {
	color: #002e6d;
}

hr.socket {
	border-top: .2rem solid #ccc;
}

.contact-form{
	margin: 0 auto;
	text-align: center;
	padding: 0;
}
p{
	margin-top: 15px;
}
.contact-form input{
	width: 250px;
	height: 400px;
	padding: 5px;
	margin: 5px auto;
	background: rgba(0, 50, 110, 0);
	border: thin #76c4d5 solid;
}
.contact-form textarea{
	width: 250px;
	padding: 5px;
	height: 150px;
	margin: 10px auto;
	background: rgba(0, 50, 110, 0);
	border: thin #76c4d5 solid;
}

.cont-form {
	margin: 0 auto;
	max-width: 400px;
}
button {
  background-color: #002e6d;
  border: none;
  color: white;
  padding: 5px 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
  margin-bottom: 20px;
}
	
/*============= MEDIA QUERIES =============*/

/* Medium (md) devices (tablets, 768px and under) */
@media (max-width: 767.98px) {
	.caption {
		top: 34%;
	}
	.caption h1 {
		font-size:1.8rem;
	}
}

/*============ BOOTSTRAP BREAK POINTS:

Extra small (xs) devices (portrait phones, less than 576px)
No media query since this is the default in Bootstrap

Small (sm) devices (landscape phones, 576px and up)
@media (min-width: 576px) { ... }

Medium (md) devices (tablets, 768px and up)
@media (min-width: 768px) { ... }

Large (lg) devices (desktops, 992px and up)
@media (min-width: 992px) { ... }

Extra (xl) large devices (large desktops, 1200px and up)
@media (min-width: 1200px) { ... }

=============*/

/*-- Fixed Landing Page Section --*/
.landing {
   position: relative;
   width: 100%;
   display: table;
   z-index: -1;
}
.home-wrap {
   clip: rect(0, auto, auto, 0);
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
}
.home-inner {
   display: table;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-size: cover;
   background-position: center center;
   transform: translateZ(0);
   -webkit-transform: translateZ(0);
   will-change: transform;
}
.cont-inner {
   display: table;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-size: cover;
   background-position: center center;
   transform: translateZ(0);
   -webkit-transform: translateZ(0);
   will-change: transform;
}


