/*--------------------------------------------------------------
 *  Template colors
 *  (main) dark blue (font/background): #052c3f;
 *  alternate dark blue: #094d6e;
 *  (main) medium blue (font): #4d8090
 *  medium-light blue (hover icon/btn): #6a9fb0
 *  (main) light blue (font/icon): #85b0be;
 *  ultra light blue (hover) : #a6c6d0
 *  ultra light blue (hover) : #a0c1cc
 *  ultra dark blue/gray (background): #212529
 *
 *   browser window: width=-20px height=-150px
 *   
 *  font-size: calc([minimum size] + ([maximum size] - [minimum size]) * ((100vw - [minimum viewport width]) / ([maximum viewport width] - [minimum viewport width])));   
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #85b0be;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 4px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 1.75rem;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #a0c1cc;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  z-index: 997;
  transition: all 0.5s;
  background: var(--custom-dark-background-color);
  padding: 1.375rem 0;
  max-width: var(--custom-max-width);
  min-width: 360px;
  margin:0 auto;
}
#header.header-transparent {
  background: none;
  position: absolute;
}

/* #header.header-scrolled {
  background: #082C47;
  padding: 0.75rem 0;
  opacity: 1;  */
}

#header .logo h1 {
  font-size: 2.25rem;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}
#header .logo h1 a, #header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}
#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 2.5rem;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px 10px 12px;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  text-transform: uppercase;
  transition: 0.3s;
}
.navbar a i, .navbar a:focus i {
  font-size: .75rem;
  line-height: 0;
  margin-left: 5px;
}
.navbar a:hover, .navbar .active, .navbar .disabled, .navbar .active:focus, .navbar li:hover > a {
  color: #85b0be;
}

.navbar .dropdown a:hover {
  color: #fff;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% + 30px);
  margin: 0;
  padding: 0;
  min-width: auto;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #212529;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}
.navbar .dropdown ul li {
}
.navbar .dropdown-header {
  color: #85b0be;
  padding: 0.25rem 0.75rem 0.25rem 0.25rem;
}
.navbar .dropdown ul a {
  padding: 0.25rem 0.5rem 0.25rem 0.5rem;
  font-size: 0.8rem;
  text-transform: none;
  font-weight: 500;
  color: #fff;
}
.dropdown .dropdown-item.disabled,  .dropdown .dropdown-item:disabled {
	color: #85b0be;
}
.dropdown .dropdown-item.active, .dropdown .dropdown-item:active{
	color: #888;
}
.navbar .dropdown ul a i {
  font-size: 1rem;
}
.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #212529; 
}
.navbar .dropdown ul a:focus, .navbar .dropdown ul li:focus > a {
  color: #212529; 
}
.navbar .dropdown ul a.disabled:hover, .navbar .dropdown ul li:hover > a.disabled {
  color: #888; 
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 1.75rem;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: #212529;
  opacity: 0.9;
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #000;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 1.2rem;
  color: #fff;
}
.navbar-mobile .dropdown a {
	display: block;
}
.navbar-mobile .dropdown a:hover,
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #85b0be;
}
.navbar-mobile .dropdown .dropdown-item.disabled, .navbar-mobile .dropdown .dropdown-item:disabled {
	color: #85b0be;
}
.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 15px;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #666;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
  font-size: 0.75rem;
}
.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #273439;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 80vh;
  background: url("") top center;
  background-size: cover;
  position: relative;
  max-width: 2048px;
  min-width: 360px;
}
#hero:before {
  content: "";
  background: rgba(5, 44, 63, 0.5);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#hero .hero-container {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 0 15px;
}
#hero h1 {
  margin: 0 0 15px 0;
  font-size: 3rem;
  font-weight: 700;
  line-height: 3.5rem;
  text-transform: uppercase;
  color: #fff;
}
#hero h2 {
  color: #eee;
  margin-bottom: 30px;
  font-size: 1.5rem;
}
#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 4px;
  transition: 0.5s;
  border: 2px solid #85b0be;
  color: #fff;
}
#hero .btn-get-started:hover {
  background: #85b0be;
  border: 2px solid #85b0be;
}
@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}
@media (max-width: 768px) {
  #hero h1 {
    font-size: 1.75rem;
    line-height: 2.25rem;
  }
  #hero h2 {
    font-size: 1.125rem;
    line-height: 1.5rem;
    margin-bottom: 30px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section { 
  overflow: hidden;
}

.section-top-padding {
  padding: 80px 0 0 0;
}

.section-bottom-padding {
  padding: 0 0 80px 0;
}

.section-full-padding {
  padding: 80px 0;
}

.section-half-padding {
  padding: 40px 0;
}

.section-bg {
  background-color: #f6f9fa;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}
.section-title h2 {
  font-size: 2.25rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #052c3f;
}
.section-title p {
  margin-bottom: 0;
}

.section-title h3 {
  font-size: 1.75rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #052c3f;
}

.sub-section .btn {
  border-radius: 4px;
  padding: 4px 30px 6px 30px;
  border: 2px solid #85b0be;
  color: #85b0be;
  font-weight: 500;
}

.section-article {
	line-height: 1.8;
}


.social-share a {
  font-size: 1.4rem;  
  display: inline-block;
  background: #85b0be;
  color: #fff;
  line-height: 1;
  padding: 0.75rem 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 2.8rem;
  height: 2.8rem;
  transition: 0.3s;
}
.social-share a:hover {
  background: #649aac;
  color: #fff;
  text-decoration: none;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h1 {
  font-weight: 700;
  font-size: 3rem;
  line-height: 3.75rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: #052c3f;
}
@media screen and (max-width: 480px) {
  .about .content h1 {
	font-size: 2.25rem;
	line-height: 3rem;
  }
}
.about .content h3 {
  font-weight: 500;
  line-height: 2rem;
  font-size: 1.5rem;
  color: #4d8090;
}
.about .content ul {
  list-style: none;
  padding: 0;
}
.about .content ul li {
  padding: 10px 0 0 28px;
  position: relative;
}
.about .content ul i {
  left: 0;
  top: 0.5rem;
  position: absolute;
  font-size: 1.25rem;
  color: #85b0be;
}
.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .emphasize li {
	padding-left: 3em;	
}

.about .content .emphasize i {
	font-size: 2em;	
}
/*--------------------------------------------------------------
# Parallax
--------------------------------------------------------------*/
.parallax-roadtram {
  background: linear-gradient(rgba(2, 2, 2, 0.5), rgba(0, 0, 0, 0.5)), url("/assets/img/pantero1-2560w.jpg") fixed center center;
  background-size: cover;
  padding: 60px 0;
}
.parallax-roadtram h2 {
  color: #fff;
  font-weight: 700;
}
.parallax-roadtram h4 {
  color: #fff;  
}

.parallax-roadtram .parallax-roadtram-btn:hover {
  background: #ffc451;
  border-color: #ffc451;
  color: #151515;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services {
}
.services .icon-box {
  margin-bottom: 40px;
}
.services .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  transition: 0.5s;
  border: 2px solid #85b0be;
}
.services .icon i {
  color: #649aac;
  font-size: 1.5rem;
  line-height: 0;
}
.services .title {
  margin-left: 5.625rem;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 1.25rem;
}
.services .title a {
  color: #052c3f;
  transition: 0.3s;
}
.services .description {
  margin-left: 5.625rem;
  line-height: 1.5;
  font-size: 1rem;
}

.services .icon-box:hover .title a {
  color: #85b0be;
}


/*--------------------------------------------------------------
# Featured
--------------------------------------------------------------*/
.featured img {
  border-radius: 0;
}
.featured .card {
  border: 0;
  text-align: center;
}

.featured .card-text {
	text-align: left;
} 
.featured .card-title a {
  font-weight: 600;
  font-size: 1.125rem;
  color: #052c3f;
}
.featured .btn {
  border-radius: 4px;
  padding: 4px 30px 6px 30px;
  border: 2px solid #85b0be;
  color: #4d8090;
  font-weight: 500;
}
.featured .btn:hover {
  background-color: #85b0be;
  color: #fff;
}

.featured .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 1.25rem;
}

/*--------------------------------------------------------------
# Tables
--------------------------------------------------------------*/

#specsheet {  
  border-collapse: collapse;
  width: 100%;
}

#specsheet td, #specsheet th {
  border: 1px solid #bbb;
  padding: 8px;
  text-align: center;
}

/* #specsheet tr:nth-child(even){background-color: #f2f2f2;}  */

#specsheet tr:hover {background-color: #ddd;}

#specsheet th {
  padding-top: 12px;
  padding-bottom: 12px; 
  background-color: #052c3f;
  color: white;
}
	


/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  padding: 0;
  background-position: center center;
  background-size: cover;
  position: relative;
}
.testimonials::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.testimonials .section-header {
  margin-bottom: 40px;
}
.testimonials .testimonials-carousel, .testimonials .testimonials-slider {
  overflow: hidden;
}
.testimonials .testimonial-item {
  text-align: center;
  color: #fff;
  line-height: 1.4;
}
.testimonials .testimonial-item .testimonial-img {
  width: 150px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto;
}
.testimonials .testimonial-item h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #fff;
}
.testimonials .testimonial-item h4 {
  font-size: 0.875rem;
  color: #ddd;
  margin: 0 0 15px 0;
}
.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.625rem;
}
.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}
.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}
.testimonials .testimonial-item p {
  margin: 0 auto 15px auto;
  color: #eee;
}
.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 1;
}
.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #85b0be;
}
@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}


/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq {
  padding-top: 0;
}
.faq .faq-item {
  margin-bottom: 40px;
}
.faq .faq-item i {
  color: #85b0be;
  font-size: 1.875rem;
  float: left;
  line-height: 1;
  padding: 0;
  margin: 0;
}
.faq .faq-item h4 {
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 600;
  margin: 0 0 10px 40px;
}
.faq .faq-item p {
  margin-left: 40px;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-wrap {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  background: #fff;
}
.contact .info i {
  font-size: 1.25rem;
  color: #85b0be;
  float: left;
  width: 2.75rem;
  height: 2.75rem;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3.125rem;
  transition: all 0.3s ease-in-out;
}
.contact .info h4 {
  padding: 0 0 0 3.75rem;
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: #052c3f;
}
.contact .info p {
  padding: 0 0 0 3.75rem;
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #0d6e9e;
}

.contact .php-email-form {
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
  padding: 30px;
  background: #fff;
}
.contact .php-email-form .form-group {
  padding-bottom: 8px;
}
.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 0.8125rem;
}
.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}
.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}
.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 1.5rem;
  height: 1.5rem;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}
.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 0.875rem;
}
.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
  border-color: #85b0be;
}
.contact .php-email-form input {
  height: 2.75rem;
}
.contact .php-email-form textarea {
  padding: 10px 12px;
}
.contact .php-email-form button[type=submit] {
  background: #85b0be;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}
.contact .php-email-form button[type=submit]:hover {
  background: #6a9fb0;
}
@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  margin-top: 5rem;
  padding: 1.75rem 0;
  min-height: 2.5rem;
  background: #f2fafe;
}

/*
@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 72px;
  }
}
*/

.breadcrumbs h2 {
  font-size: 1.625rem;
  font-weight: 600;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 0.875rem;
}
.breadcrumbs ol li + li {
  padding-left: 10px;
}
.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #094d6e;
  content: "/";
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: url("") top center no-repeat;
  background-size: cover;
  background-color: #052c3f;
  color: #fff;
  font-size: 0.875rem;
  position: relative;
}
#footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(1, 11, 16, 0.8);
  z-index: 1;
}
#footer .footer-top {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 0;
}
#footer .footer-top h3 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #fff;
  position: relative;
  font-family: "Poppins", sans-serif;
  padding-bottom: 0;
  margin-bottom: 0;
}
#footer .footer-top p {
  font-size: 0.9375rem;
  font-style: italic;
  margin: 30px 0 0 0;
  padding: 0;
}
#footer .footer-top .footer-newsletter {
  text-align: center;
  font-size: 0.9375rem;
  margin-top: 30px;
}
#footer .footer-top .footer-newsletter form {
  background: #fff;
  padding: 6px 10px 6px 8px;
  position: relative;
  border-radius: 4px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
}
#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}
#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -1px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 1rem;
  padding: 0 20px;
  background: #85b0be;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: #6a9fb0;
}
#footer .footer-top .social-links {
  margin-top: 30px;
}
#footer .footer-top .social-links a {
  font-size: 1.125rem;
  display: inline-block;
  background: #85b0be;
  color: #fff;
  line-height: 1;
  padding: 0.6rem 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 2.25rem;
  height: 2.25rem;
  transition: 0.3s;
}
#footer .footer-top .social-links a:hover {
  background: #649aac;
  color: #fff;
  text-decoration: none;
}
#footer .footer-bottom {
  z-index: 2;
  position: relative;
  padding-bottom: 40px;
  text-align: center;
}
#footer .credits {
  text-align: center;
  font-size: 0.8125rem;
}