/*-- Body Reset --*/
body {
  overflow-x: hidden;
  font-family: 'Fira Sans', sans-serif;
  color: #616971;
  background-image: url("../images/background4.jpg");
}

/*============= TOP BAR HEADER =============*/



/*============= NAVIGATION =============*/

.navbar-brand img {
	height: 5rem;
}
.navbar {
	font-size: 1.15rem;
	font-weight: 600;
	letter-spacing: .05rem;
	box-shadow: 0 .5rem .5rem rgba(0,0,0,.1);
	z-index: 1;
}
.nav-item {
	padding: .5rem;
}


/*======= FIXED BACKGROUND IMG =======*/




/*============= CAROUSEL =============*/


.carousel-inner {
	max-height: 38rem!important;
	max-width: 101.25rem!important;
	box-shadow: 0 1rem 1rem rgba(0,0,0,.1);
}

/*---Change Carousel Transition Speed --*/
.carousel-item-next,
.carousel-item-prev,
.carousel-item.active {
	transition: transform 2s ease;
}

/*-- Carousel Content --*/



/*===== FIXED BACKGROUND IMG =====*/

.fixed-background {
  overflow: hidden; /*-- Correction for iOS --*/
}


/*-- Cards Section --*/

#cards {
	max-width: 101.25 rem!important;
}
.card-img-top {
	max-width: 94%!important;
	margin: 3% auto;
}




/*============= FOOTER =============*/

footer {
	background-color: #383838;
	padding: 1rem 2rem 1rem;
	
}
footer img {
	height: 5rem;
	margin: 0.5rem auto;
}
hr.light {
	border-top: 1px solid #f8f9fa;
	width: 75%;
	margin-top: .8rem;
	margin-bottom: 1rem;
}
footer a {
	color: #f8f9fa;
}
ul.social {
	list-style-type: none;
	display: flex;
	max-width: 16rem;
	margin: 0 auto;
	padding: 0;
}
ul.social li {
	margin: 0 auto;
}
ul.social2 {
	list-style-type: none;
	display: flex;
	max-width: 10.5rem;
	margin: 0 auto;
	padding: 0;
}
ul.social2 li {
	margin: 0 auto;
}
footer .svg-inline--fa {
	font-size: 2.3rem;
}
footer .svg-inline--fa:hover {
	color: #b7b9bb;
}
footer a:hover {
	color: #b7b9bb;
}

/*============= SOCKET =============*/

.socket {
	background-color: #222222;
	border-top: .1rem solid #f8f9fa;
}

.socket a,
.socket p {
	color: #f8f9fa;
}

/*============= MEDIA QUERIES =============*/

/* Devices under 1199px (xl) */
@media (max-width: 1199.98px) {

}
/* Devices under 768px (md) */
@media (max-width: 767.98px) {

}


/*============ 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) { ... }

=============*/

/*-- Bootstrap Mobile Gutter Fix --*/
.row, .container-fluid {
  margin-left: 0px !important;
  margin-right: 0px !important;
}

/*-- Fixed Background Image --*/
.fixed-background {
  position: relative;
  width: 100%;
  z-index: 1000!important;
}
.fixed-wrap {
  clip: rect(0, auto, auto, 0);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -999 !important;
}
.fixed {
  z-index: -999!important;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  will-change: transform;
}