/*============= RESETS =============
FONTS:
Body: font-family: 'PT Sans', sans-serif;
*/

/*-- iPhone X Remove Gutters
Ignore W3C Validation error for this style. --*/
html {
  padding: env(safe-area-inset);
}
/*-- Body Reset --*/
body {
  overflow-x: unset;
  font-family:'PT Sans', arial, helvetica, sans-serif;
  color: #616971;
}
.main-wrapper {
  background: #fff;
}
/*-- Option: Add Extra Bootstrap Column Padding --*/
[class*="col-"] {
  padding: 1rem;
}
/*-- Bootstrap Mobile Gutter Fix --*/
.row, .container-fluid {
  margin-left: 0px !important;
  margin-right: 0px !important;
}
/*-- Remove Blue Browser Outline Around Buttons in Chrome --*/
a:focus,
button:focus { /*-- Remove Button Element Outlines in Chrome --*/
  outline: 0 !important;
  -webkit-appearance: none;
  box-shadow: none !important;
}
/*-- Pointer Cursor On Links & Buttons --*/
a, .btn, button {
  cursor: pointer!important;
}

/*============= TEXT, BUTTON & BG COLOR STYLE =============*/

/*-- Text Colors --*/
.text-green {
  color: #2abc68;
}
.text-blue {
  color: #102150;
  /* color: #5291c9; */
}
.text-orange {
  color: #d24631 !important;
}
a.blue-link {
  color: #4174a0;
  text-decoration: none;
}
a.blue-link:hover {
  color: #74a7d3;
}

/*-- Buttons --*/
.btn {
  transition: all .8s ease;
}
.btn-xl {
  border-width: .15rem;
  border-radius: 0;
  padding: .5rem 1.1rem;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  margin: 1rem;
}
.btn-lg {
  border-width: thin;
  border-radius: 0;
  padding: .7rem 1.2rem;
  font-size: .9rem;
  font-weight: 500;
  text-transform: uppercase;
  margin: 1rem;
}
.btn-primary {
  color: #fff;
  background-color: #424143;
  border-color: #424143;
}
.btn-md {
  border-width: .1rem!important;
  border-radius: 0;
  padding: .6rem 1rem;
  font-size: .9rem;
  font-weight: 500;
  text-transform: uppercase;
  margin: 1rem;
}
.btn-sm {
  border-width: .1rem!important;
  border-radius: 0;
  padding: .5rem .8rem;
  font-size: .8rem;
  font-weight: 500;
  text-transform: uppercase;
  margin: 1rem;
}
.btn-blue {
  border-color: #5291c9;
  background-color: #5291c9;
  color: white;
}
.btn-green {
  border-color: #2abc68;
  background-color: #2abc68;
  color: white;
}
.btn-red {
  border-color: #d24631;
  background-color: #d24631;
  color: white;
}
.btn-blue:hover,
.btn-blue:focus,
.btn-green:hover,
.btn-green:focus,
.btn-red:hover,
.btn-red:focus,
.btn-dark:hover,
.btn-dark:focus {
  border: thin solid #d9d9d9;
  background-color: white;
  color: black;
}
/*-- Background Colors --*/
.bg-light-gray {
  background-color: #f2f2f2;
}
/*-- Nav Button custom --*/
.menu-buttons a {
	background: #d24631;
	color: #fff !important;
	width: 12rem !important;
	font-size: 0.8rem;
	text-align: center;
  margin-left: 1rem;
}
.menu-buttons a:hover {
  background: #B83D2A;
  color: #fff!important;
}
/*-- Border custom --*/
hr.header-underline {
	display: block;
	width: 5.125rem;
	margin: 1.5rem 0;
	text-align: left;
	border: 0;
	border-bottom: .1875rem solid #d24631;
}

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

.top-bar {
  background: #102150;
  height: 2.4rem;
  padding: .5rem 0;
}
.top-bar [class*="col-"] {
  padding: 0!important;
  margin: 0!important;
}
.top-bar .svg-inline--fa.fa-w-12,
.top-bar .svg-inline--fa.fa-w-16 {
  color: white;
  font-size: 1rem;
  margin-left: .6rem;
  margin-right: .2rem;
}
.top-bar p, .top-bar a {
  color: white!important;
  text-decoration: none!important;
  font-size: .8rem;
  display: inline;
}
.social-wrap {
  max-width: 9.7rem;
}
ul.social {
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
ul.social li {
  display: inline;
  padding: 0 .5rem;
}
.top-bar .svg-inline--fa.fa-w-14 {
  color: white;
  font-size: 1.3rem;
  transition: all 0.5s ease 0s;
}
.top-bar .svg-inline--fa.fa-w-14:hover {
  color: #d5d5d5;
}

/*============= NAVIGATION main-nav-scroll =============*/
.main-nav-scroll {
  background-color: #fff!important;
  position: fixed;
  width: 100%;
  box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.1);
  z-index: 100;
  margin-top: -300px;
  opacity: 0;
  transition: all .6s ease-in-out;
}
.main-nav-scroll.active {
  margin-top: 0px;
  opacity: 1;
  box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.1);
}
.main-nav-scroll .navbar-nav li {
  padding-right: 1.0rem;
}
.main-nav-scroll .navbar-nav .nav-link {
  color: #3C2415;
  padding-top: .8rem;
}
.main-nav-scroll .navbar-nav .nav-link.active,
.main-nav-scroll .navbar-nav .nav-link:hover {
  color: #e64d24;
}
.main-nav-scroll .fa-stack-1x {
  color:#3C2415;
  font-size: 1.3rem!important;
  width: 1rem;
  transition: all .5s ease;
}
.main-nav-scroll .fa-stack-1x:hover  {
  color:#e64d24;
}
.main-nav-scroll .custom-toggler-icon {
  color: #3C2415;
  font-size: 1.6rem;
}

/*============= NAVIGATION main-nav-scroll-toggle =============*/
.main-nav-scroll-toggle {
  margin-top: 45px;
  position: fixed;
  width: 100%;
  background-color: #fff!important;
  font-weight: 900;
  z-index: 100;
  transition: all .6s ease-in-out;
}
.main-nav-scroll-toggle .navbar-nav li {
  padding-right: 1.0rem;
}
.main-nav-scroll-toggle .navbar-nav .nav-link {
  color: #3C2415;
  padding-top: .8rem;
}
.main-nav-scroll-toggle .navbar-nav .nav-link.active,
.main-nav-scroll-toggle .navbar-nav .nav-link:hover {
  color: #e64d24;
}
.main-nav-scroll-toggle .fa-stack-1x {
  color:#3C2415;
  font-size: 1.3rem!important;
  width: 1rem;
  transition: all .5s ease;
}
.main-nav-scroll-toggle .fa-stack-1x:hover  {
  color:#e64d24;
}
.main-nav-scroll-toggle .custom-toggler-icon {
  color: #3C2415;
  font-size: 1.6rem;
}

/*============= NAVIGATION =============*/
.navbar-brand {
  padding-left: 3rem;
}
.navbar-brand img {
   height: 4rem;
}
.navbar {
	background: #fff;
	padding: 0.1rem 3rem;
	letter-spacing: .1rem;
  text-transform: uppercase;
	font-weight: 600;
	min-height: 3.3rem;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
}
.navbar-nav li {
   padding-right: .9rem;
}
.navbar-nav .nav-link {
   color: #201713;
   padding-top: .8rem;
}

.navbar-expand-lg .navbar-nav .nav-link {
	padding-left: 1.5rem;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: #d24631;
}
.custom-toggler-icon {
 color: white;
 font-size: 1.6rem;
}
.navbar.solid,
.navbar.solid-toggle {
 color: #16181b;
 background:#fff;
 transition: background-color 1s ease;
}
.add-shadow {
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px;
}
.dropdown-menu {
   display: block;
   opacity: 0;
   padding: 0;
   max-height: 0;
   overflow: hidden;
   transition: all .3s ease-in;
}
 .dropdown-menu.show {
   max-height: 500px;
   opacity: 1;
   padding: 0.5rem 0;
}

/*---Standar Hamburger Menu (3 separate elements)---*/

.navbar-toggler {
  border: none;
  background: transparent !important;
}
.navbar-toggler:hover {
  background: transparent !important;
}
.navbar-toggler .icon-bar {
  height: 2px;
  width: 22px;
  border-radius: 1px;
  display: block;
  background-color: #16306c;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.navbar-toggler .icon-bar+.icon-bar {
  margin-top: 4px;
}

/*---Animation menu (create X)---*/

.navbar-toggler.x .icon-bar:nth-of-type(1) {
  -webkit-transform: translateX(3px) rotate(45deg);
  /* Safari 3-8 & Chrome 4-35 & Opera 15-22 */
  -ms-transform: translateX(3px) rotate(45deg);
  /* IE 9 */
  -moz-transform: translateX(3px) rotate(45deg);
  /* Firefox 3-15 */
  -o-transform: translateX(3px) rotate(45deg);
  /* Opera 10-14 */
  transform: translateX(3px) rotate(45deg);
  -webkit-transform-origin: 10% 10%;
  -ms-transform-origin: 10% 10%;
  -moz-transform-origin: 10% 10%;
  -o-transform-origin: 10% 10%;
  transform-origin: 10% 10%;
}
.navbar-toggler.x .icon-bar:nth-of-type(2) {
  opacity: 0;
  filter: alpha(opacity=0);
  /* For IE8 and earlier */
  -moz-opacity: 0;
  /* Older Firefox 1 */
}
.navbar-toggler.x .icon-bar:nth-of-type(3) {
  -webkit-transform: translateX(3px) rotate(-45deg);
  -ms-transform: translateX(3px) rotate(-45deg);
  -moz-transform: translateX(3px)rotate(-45deg);
  -o-transform: translateX(3px) rotate(-45deg);
  transform: translateX(3px) rotate(-45deg);
  -webkit-transform-origin: 10% 90%;
  -ms-transform-origin: 10% 90%;
  -moz-transform-origin: 10% 90%;
  -o-transform-origin: 10% 90%;
  transform-origin: 10% 90%;
}
.navbar-toggler.x.collapsed .icon-bar:nth-of-type(1) {
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  -moz-transform: rotate(0);
  -o-transform: rotate(0);
  transform: rotate(0);
}
.navbar-toggler.x.collapsed .icon-bar:nth-of-type(2) {
  opacity: 1;
  filter: alpha(opacity=100);
  -moz-opacity: 1;
}
.navbar-toggler.x.collapsed .icon-bar:nth-of-type(3) {
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  -moz-transform: rotate(0);
  -o-transform: rotate(0);
  transform: rotate(0);
}
/*---End Standar Hamburger Menu (3 separate elements)---*/

/*---Custom AnimateCSS mobile menu items---*/

.nav-item {
  -webkit-animation-duration: 0.8s;
  /* Chrome 3-42 & Safari 4-8 & Opera 15-29 */
  -moz-animation-duration: 0.8s;
  /* Firefox 5-15 */
  -o-animation-duration: 0.8s;
  /* Opera 12-14 */
  animation-duration: 0.8s;
}

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

.carousel-inner {
	max-height: 38rem!important;
}
.carousel-inner img {
  width: 100%;
}
.carousel-item {
  /*min-height: 15rem; /*-- (300px for mobile) --*/
  background: no-repeat center center scroll;
  -webkit-background-size: absolute;
  -moz-background-size: absolute;
  -o-background-size: absolute;
  background-size: absolute;
  background-color: #1A1A1A; /*-- For Firefox white between slides --*/
}
/*-- Carousel Item Smooth on Fade-Transition --*/
.carousel-fade .carousel-item {
  opacity: 0;
  transition: opacity ease-out .7s;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
  opacity: 1;
}
.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
  opacity: 0;
}
.carousel-fade .carousel-item-next,
.carousel-fade .carousel-item-prev,
.carousel-fade .carousel-item.active,
.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-prev {
  transform: translateX(0);
  transform: translate3d(0, 0, 0);
}

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

/*-- Carousel Previous & Next Buttons --*/
.carousel-control-prev,
.carousel-control-next {
  width: 8%;
  cursor: pointer!important;
}
.carousel-control-next {
padding-right: 3.2rem!important;
}
.carousel-control-prev .svg-inline--fa.fa-chevron-left,
.carousel-control-next .svg-inline--fa.fa-chevron-right {
  position: absolute;
  background: gray;
  border-radius: 0;
  padding: .7rem 1rem!important;
  font-size: 2.8rem!important;
  color: white;
  opacity: .7;
  transition: all .5s ease;
}
.carousel-control-prev .svg-inline--fa.fa-chevron-left:hover,
.carousel-control-next .svg-inline--fa.fa-chevron-right:hover {
  background: white;
  color: gray;
  opacity: 1;
  transition: all .5s ease;
}

/*-- Make Carousel Prev/Next Fisible on hover --*/
.carousel .carousel-control-prev,
.carousel .carousel-control-next {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s linear 1000s, opacity 1000ms;
}
.carousel:hover .carousel-control-prev,
.carousel:hover .carousel-control-next {
    visibility: visible !important;
    opacity: 1;
    transition: visibility 0s linear 0s, opacity 1000ms;
}

/*-- Video Backround Carousel Item --*/
video {
  min-height: 100%;
  min-width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
}

/*-- Carousel Caption --*/
.carousel-caption {
  left: 12%;
  right: 12%;
  position: absolute;
  transform: translateY(-50%);
  top: 45%;
}
/*-- Carousel Caption Variation align--*/

.carousel-caption-bot {
  left: 12%;
  right: 12%;
  position: absolute;
  transform: translateY(-50%);
  top: 45%;
}

.carousel-caption.text-left,
.carousel-caption.text-right {
  top: 41%;
}
.carousel-caption-bot.text-left,
.carousel-caption-bot.text-right {
  top: 41%;
}
@media screen and (min-width: 1500px) {
  .carousel-caption,
  .carousel-caption.text-left,
  .carousel-caption.text-right  {
    top: 41%;
  }
}
@media screen and (min-width: 1800px) {
  .carousel-caption,
  .carousel-caption.text-left,
  .carousel-caption.text-right  {
    top: 37%;
  }
}
.carousel-caption h1 {
	font-size: 3rem;
}
.text-shadow {
  text-shadow: .1rem 0 .2rem #black;
}
.carousel-caption .btn {
  border-width: medium;
  border-radius: 0;
}
.bg-dark {
  background-image: url('../img/steelbg.png');
}
.bg-gray {
	background-color: rgba(0, 0, 0, 0.5);
  color: white;
}
.bg-clear {
	background-color: rgba(255,255,255, .8);
}
.carousel-caption.text-right {
	margin-top: -1.5rem!important;
}
/*============= THREE COLUMNS UNDER CAROUSEL =============*/

img {
  max-width: 100%;
}
.image-scale-img{
  overflow:hidden;
}
.image-scale-img img{
  transition:.7s;
}
.image-scale:hover img {
  transform: scale(1.08);
}

/*============= FEATURES =============*/

.title-underline {
  background: url(../img/gallery.svg) top center no-repeat;
	padding: 38px 0 0 0;
}
.title-underline:before {
  position:  absolute;
  margin: 0 auto;
  height: .2rem;
  width: 2rem;
  margin-left: -1rem;
  content:  "";
}
.title-underline:after {
  position:  absolute;
  margin: 0 auto;
  height: .2rem;
  width: 2rem;
  margin-left: -1rem;
  content:  "";
}
.title-underline-white {
  margin: 1rem auto 1.5rem;
  width: 9rem;
  height: .1rem;
  background-color: white;
}
.title-underline-white:after {
  position:  absolute;
  margin: 0 auto;
  height: .2rem;
  width: 2rem;
  margin-left: -1rem;
  content:  "";
  background-color: white;
}
.services p {
  font-size: 1.1rem;
}
.fa-stack-2x {
  color: #d24631;
}

/*===== HOME PARALLAX BACKGROUND IMG =====*/

.fixed-overlay {
  background-color: rgba(0, 0, 0, .1);
  z-index: 1000!important;
}

/*===== PAGES BREADCRUMBS BACKGROUND IMG =====*/

.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: -1;
  position: relative;
  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;
}

/*===== BREADCRUMBS BACKGROUND IMGs =====*/

#fixed.about {
  background-image: url('../img/fixed/about.jpg');
}
#fixed.services {
  background-image: url('../img/fixed/services.jpg');
}
#fixed.projects {
  background-image: url('../img/fixed/projects.jpg');
}
#fixed.contact {
  background-image: url('../img/fixed/contact.jpg');
}

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

#owl-carousel img {
  max-width: 12rem;
  margin: 0 auto;
}
#owl-carousel .owl-carousel .owl-nav {
  position: absolute;
  top: 45%;
  min-width: 100%!important;
  max-width: 100%!important;
}
#owl-carousel .owl-carousel .owl-nav button.owl-prev {
  position: absolute;
  left: 0!important;
  padding: .4rem 1rem!important;
  border: .1rem solid black;
  font-size: 1.3rem!important;
  color: black;
  opacity: .7;
}
#owl-carousel .owl-carousel .owl-nav button.owl-next {
  position: absolute;
  right: 0!important;
  padding: .4rem 1rem!important;
  border: .1rem solid black;
  font-size: 1.3rem!important;
  color: black;
  opacity: .7;
}
#owl-carousel .owl-carousel .owl-nav button.owl-prev:hover,
#owl-carousel .owl-carousel .owl-nav button.owl-next:hover {
  color: white;
  background-color: black;
}

/*-- Clients Quote & Image --*/
blockquote .svg-inline--fa {
  margin: .6rem;
  font-size: 1.5rem;
  color: #0771d8;
  opacity: .2;
}
.clients img {
  max-width: 200px;
  margin: 0 auto;
  border-radius: 50%;
  transition: all 0.8s ease 0s;
}
.clients img:hover {
  transform: scale(1.1);
}

/*============= IMG PLAY OVERLAY =============*/

.img-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: .75;
  transition: all 2s ease;
  background-color: tansparent;
}
.img-overlay:hover {
  opacity: .75;
  background-color: white;
}
.img-overlay .svg-inline--fa.fa-w-14 {
  color: black;
  font-size: 2.2rem;
  position: absolute;
  top: 45%;
  left: 48%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

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

#logo-carousel {
  width: 100%;
  background-color: #F8F9FA;
}
#logo-carousel .owl-nav,
#logo-carousel .owl-dots {
  display: none!important;
}
#logo-carousel img {
  max-width: 150px;
  margin: 0 auto;
}
#logo-carousel .item {
  margin-right: -.5rem!important;
}
/*============= PORTFOLIO SECTION =============*/

.portfolio-item img:hover {
   transform: scale(1.3);
   cursor: zoom-in;
}
.portfolio-item img {
   transition: transform .4s ease;
}
.gallery-block title-underline {
  background: url(../img/gallery.svg) top center no-repeat;
	text-align: center;
	padding: 48px 0 0 0;
	margin: 5px 0 10px;
}
/*============= FOOTER =============*/

footer {
  background-color: #102150;
}
footer {
  padding: 1rem 2rem 3rem;
}
img.logo {
  height: 5rem;
  margin: 1.5rem 0;
}
footer a {
  color: white;
  text-decoration: none!important;
  display: inline;
  transition: all 0.5s ease 0s;
}
footer a:hover {
  color: #5291c9;
  transition: all 0.5s ease 0s;
}
footer .svg-inline--fa.fa-w-14 {
  color: white;
  font-size: 1.6rem;
  transition: all 0.5s ease 0s;
}
footer .svg-inline--fa.fa-w-14:hover {
  color: #5291c9;
}
.footer-links p a {
  transition: all .5s ease;
}
p.footer-links a:hover {
  color: #5291c9!important;
  transition: all .5s ease;
}
.footer-projects img {
  max-height: 6rem;
}
.footer-projects p {
  font-size: .8rem;
  color: #999999;
}
.footer-projects p:hover {
  color: #5291c9;
}

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

.socket {
  background-image: url('../img/steelbg.png');
  background-color: #222222;
  width: 100%;
}
.socket a {
  color: white;
}
.jumbotron {
	border-radius: .0rem;
}
.jumbotron.cta{
  background-image: url('../img/steelbg.png');
  background-color: #424143;
  width: 100%;
}

/*============= TOP SCROLL =============*/

.top-scroll svg.svg-inline--fa {
  font-size: 3rem;
  height: 1.7rem;
  color: #53595f;
  background: white;
}
a.top-scroll {
  right: 1.2rem;
  bottom: 1.2rem;
  position: fixed;
  opacity: .3;
  z-index: 1000;
  display: none;
}
a.top-scroll:hover {
  opacity: .5;
}

/*============= YOUTUBE VIDEO EMBED =============*/

.wrapper-tube {
  border: .3rem solid #d9d9d9;
  background-color: #d9d9d9;
}

/*-- Meet The Team Cards --*/
.card {
  border-radius: 0;
  box-shadow: 0 0 .8rem rgba(0, 0, 0, .075);
  margin: 0 auto;
  transition: all 0.5s ease 0s;
  max-width: 34rem;
}
.card img {
  border-radius: 0;
}
.card:hover {
  transform: scale(.95);
}
.card p {
  border-top: .1rem solid rgba(0, 0, 0, .1);
  padding-top: 1rem;
}
.card p:last-of-type {
  padding-bottom: 1rem;
  border-bottom: .1rem solid rgba(0, 0, 0, .1);
}
.card svg.svg-inline--fa {
  color: #343A40!important;
  font-size: 1.5rem;
  width: 2rem;
}
.card svg.svg-inline--fa:hover {
  color: #5291c9!important;
}

/*============= BLOG IMAGE HOVER =============*/

a.opacity:hover {
  opacity: .8;
}

/*============= PROJECT GALLERY FILTER / LIGHTBOX =============*/

/*-- Project Gallery Menu --*/
.gallery {
  width: 100%!important;
}
.navbar.projects {
  min-height: 1rem;
  letter-spacing: .05rem;
}
.filter ul li {
  padding: .5rem;
}
.filter ul li.filter-active a.nav-link.filter,
a.filter.is-checked,
li a.nav-link.filter.active,
li a.nav-link.filter:hover {
  background-color: #5291c9!important;
  color: #fff!important;
  cursor: pointer!important;
}
a.nav-link.filter {
  padding-left: 1rem;
}

/*-- Project Gallery Layout --*/
.element-item {
  position: relative;
  float: left;
  width: 33%;
  min-height: 14rem;
  padding: .6rem;
}
.element-item img {
  width: 100%;
  margin-bottom: 1.5rem!important;
  height: auto;
  display:block;
  transition: all 0.3s ease 0s;
}
.element-item a img:hover {
  opacity: .7!important;
  transition: all 0.3s ease 0s;
}

/*CONTACT PAGE LC*/
/*--- Contact Form --*/
.contact img {
  height: 3.5rem;
  margin-bottom: 1.3rem;
}
.form-group {
  margin-bottom: 1.3rem;
}
.form-control {
  border-radius: 0;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #b2b5b8!important;
}
h2.lecture-title {
  font-size: 1.6rem;
}
.bg-light {
	background-color: #ffffff !important;
}
.red {
	color: #d24631 !important;
}
/*end CONTACT PAGE*/

/*============= CONTACT PAGE from Other =============*/

/*-- Contact Social Links --*/
/* ul.contact.social li {
  padding: .5rem .5rem 0 0;
}
ul.contact.social .svg-inline--fa.fa-w-14 {
  color: #5291c9;
  transition: all 0.5s ease 0s;
}
ul.contact.social .svg-inline--fa.fa-w-14:hover {
  color: #616971;
  transition: all 0.5s ease 0s;
} */

/*-- Contact Form --*/
input.btn {
  cursor: pointer;
}
.contact-social .svg-inline--fa {
  margin-right: .3rem;
}
.controls input:focus,
.controls textarea:focus { /*-- Remove Element Outlines in Contact Form --*/
  outline: 0 !important;
  -webkit-appearance: none;
  box-shadow: none !important;
}

/*============= GOOGLE MAP =============*/

.contact-map {
  max-height: 400px!important;
  padding: 0!important;
  overflow: hidden;
  background-color: #5291c9;
}
.responsive-map{
  overflow: hidden;
  padding-bottom:56.25%;
  position:relative;
  height:0;
  opacity: .8;
}
.responsive-map iframe{
  left:0;
  top:0;
  height: 100%;
  max-height: 400px;
  min-width:100%;
  position:absolute;
}

/*-- Drop-down Menu --*/
.dropdown-menu, .dropdown-item {
  /* font-size: 1.1rem; */
}
.dropdown-menu {
  margin-top: 0!important;
  border-radius: 0;
  z-index: 1000;
  box-shadow: -1px 2px 4px 0 rgba(0,0,0,.23);
}
.dropdown-menu:hover, .dropdown-item:hover,
.dropdown-menu:focus {
  color: #fff!important;
  text-decoration: none;
}
.dropdown-item:hover {
  background-color: #d24631;
}
.dropdown-item.active {
  color: #fff!important;
  background-color: steelblue;
}
.navbar-nav li.nav-item a.nav-link.dropdown-toggle::after {
	display: inline-block;
	position: absolute;
	border-top: 2px solid #342d2b;
	border-left: 2px solid #342d2b;
	height: 10px;
	width: 10px;
	margin-left: .5rem;
	content: "";
	transform: rotate(135deg) scaleX(-1);
	-webkit-transform: rotate(135deg) scaleX(-1);
	color: #342d2b;
}
.dropdown-item {
  padding: .3rem 0!important;
  padding: 0.5rem 0.5rem !important;
}
.dropdown-submenu > .dropdown-menu {
  width: 100%;
  z-index: 1000;
}

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

/* Devices under 1200px (xl) */
@media (max-width: 1199.98px) {
  video {
    max-width: 100%;
  }
  .carousel-caption h1 {
    font-size: 2.5rem;
  }
  .element-item {
    min-height: 12rem;
  }
  .navbar {
	padding: 0rem;
	font-size: 0.9rem;
	letter-spacing: 0rem;
  }
}

/* Devices under 992px (lg) */
@media (max-width: 991.98px) {
  .navbar {
  padding: 0;
  font-size: 1.1rem;
  letter-spacing: .1rem;
  font-weight: 600;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.1);
  }
  .navbar-expand-lg .navbar-nav .nav-link {
	padding-left: 0.5rem;
  }
  .nav-link {
  padding: 1rem 1rem;
  }
  .nav-item {
  border-bottom: 1px solid #D0C2BA;
  }
  .navbar-toggler {
	padding: .25rem 2rem;
	font-size: 1.25rem;
	line-height: 1;
	background-color: transparent;
	border: 1px solid transparent;
	border-radius: .25rem;
  }
  .navbar-collapse {
  background-color: white!important;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 0.3rem;
  padding: 20px 10px;
  margin: 5px 0;
  }
  .navbar-brand {
	padding-left: 20px;
  }
  .navbar-brand img {
    height: 2.8rem;
  }
  .dropdown-menu {
	margin-top: 0 !important;
	border-radius: 0;
	box-shadow: none;
  border: none;
  }
  .dropdown-item {
	padding: 0.7rem 1rem !important;
  }
  .dropdown-menu, .dropdown-item {
    text-align: left;
  }
  .carousel-caption {
    top: 42%!important;
  }
  .carousel-caption h1 {
    font-size: 2.2rem;
  }
  #fixed.bread {
    position: relative;
  }
  .element-item {
    width: 50%;
    min-height: 12.6rem;
  }
  .element-item img {
    background-color: #5ca2e0!important;
    background: linear-gradient(-29deg, #5ca2e0 50%, #5ca2e0 50%)!important;
  }

  #navbarResponsive {
    height: 100vh !important;
  }
  .popular-menu-items .tab-pane .card {
  padding-right: 0;
  width: 48%;
  }

  #navbarResponsive {
  height: auto;
  }
  .navbar-brand img {
    height: 2.75rem;
  }
  .menu-buttons a {
    padding: .6rem .6rem !important;
    font-size: 1.2rem;
    margin: .8rem .4rem !important;
    font-weight: 600;
    width: 100% !important;
  }

}

/* Devices under 768px (md) */
@media (max-width: 767.98px) {
  .carousel-caption {
    top: 40%!important;
  }
  .carousel-caption h1 {
    font-size: 1.8rem;
  }
  .carousel-caption h2 {
    font-size: 1.7rem;
    margin-bottom: .5rem;
  }
  .carousel-caption p.lead {
    font-size: 1rem;
    margin-bottom: .5rem;
  }
  .carousel-caption.text-right {
    margin-top: 0rem!important;
    text-align: center!important;
  }
  .btn-lg {
  	padding: .6rem .6rem !important;
    font-size: 1.2rem;
    margin: .8rem .4rem !important;
    font-weight: 600;
    width: 100%;
  }


  h1 { font-size: 2rem; }
  h2 { font-size: 1.7rem; }
  h3 { font-size: 1.5rem; }
  h4 { font-size: 1.3rem; }
  h5 { font-size: 1.2rem;
        font-weight: 600;
     }
  h6 { font-size: 1.1rem; }
  p { font-size: 1.1rem; }

  .top-scroll {
    display: none!important;
  }
  .element-item {
    width: 100%;
    min-height: 14rem;
  }
  .projects-carousel .owl-carousel .owl-nav button.owl-prev {
    left: -1rem!important;
  }
  .projects-carousel .owl-carousel .owl-nav button.owl-next {
    right: -1rem!important;
  }
  .projects-carousel img {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* Devices under 576px (sm) */
@media (max-width: 575.98px) {
  .carousel-caption {
    top: 44%;
    width: 100%;
    left: 0;
  }
  .carousel-inner {
    padding: 0;
    margin: 0;
  }
  .carousel-caption h1 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
  .carousel-caption h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
}

/* Devices under 429px */
@media (max-width: 429px) {
  .carousel-caption {
    top: 38%!important;
  }
}


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

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


/*-- OPTION: TURN OFF ANIMATION ON MOBILE::
Note: may effect line progress bar with slight delay,
line-progressbar waypoints can be adjusted at bottom of plugins.js.--*/


/* remove this CSS comment to activate

@media (max-width: 767px) {
	.animated, .os-animation {
	  -webkit-animation: none!important;
	  -moz-animation: none!important;
	  -o-animation: none!important;
	  animation: none!important;
	  opacity: 1!important;
	  -webkit-animation-delay: none !important;
	  -moz-animation-delay: none !important;
	  animation-delay: none !important;
	  }
	}

*/



/*============================================================
*** BELOW IS PLUGIN CSS THAT SHOULD NOT BE CHANGED ***
=============================================================*/

 /*-- Prevent WayPoints from Browser Window Scrolling On Mobile --*/
/* Devices under 768px (md) */
@media (max-width: 767px) {
	.row {
		 overflow-x: hidden;
		 overflow-y: hidden;
	}
}

/*============= UNIVERSAL PARALLAX PLUGIN CSS =============*/
.parallax-container {
  -webkit-align-items: center;
  align-items: center;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0;
  padding: 15px;
  position: relative;
  width: 100%
}
.parallax-container .parallax-content {
  margin: 0 auto;
  width: 100%;
}
.parallax__container {
  clip: rect(0, auto, auto, 0);
  height: 100%;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -100
}
.parallax__container .parallax {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: fixed;
  top: 0;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  width: 100%
}
