h
.scrtabs-tab-container * {
  box-sizing: border-box; }

.scrtabs-tab-container {
  height: 42px; }
  .scrtabs-tab-container .tab-content {
    clear: left; }

.scrtabs-tab-container .scrtabs-tabs-movable-container > .navbar-nav {
  -ms-flex-direction: row;
  flex-direction: row; }

.scrtabs-tabs-fixed-container {
  float: left;
  height: 42px;
  overflow: hidden;
  width: 100%; }

.scrtabs-tabs-movable-container {
  position: relative;
  transition: transform 2s; }
  .scrtabs-tabs-movable-container .tab-content {
    display: none; }

.scrtabs-tab-container.scrtabs-rtl .scrtabs-tabs-movable-container > ul.nav-tabs {
  padding-right: 0; }

.scrtabs-tab-scroll-arrow {
  border: 1px solid #dddddd;
  border-top: none;
  cursor: pointer;
  display: none;
  float: left;
  font-size: 12px;
  height: 100%;
  padding-left: 0.5em;
  padding-top: 1.3em;
  width: 20px; }
  .scrtabs-tab-scroll-arrow:hover {
    background-color: #eeeeee; }

.scrtabs-tab-scroll-arrow > span {
  border-right: 3px solid #e62633;
  border-bottom: 3px solid #e62633;
  display: block;
  width: 8px;
  height: 8px;
  transform: rotate(-45deg); }
  .scrtabs-tab-scroll-arrow > span:hover {
    border-right-color: #0056b3;
    border-bottom-color: #0056b3; }

.scrtabs-tab-scroll-arrow-left > span {
  transform: rotate(135deg); }

.scrtabs-tab-scroll-arrow-right {
  padding-left: 0.4em; }

.scrtabs-tab-scroll-arrow,
.scrtabs-tab-scroll-arrow .scrtabs-click-target {
  cursor: pointer; }

.scrtabs-tab-scroll-arrow.scrtabs-with-click-target {
  cursor: default; }

.scrtabs-tab-scroll-arrow.scrtabs-disable,
.scrtabs-tab-scroll-arrow.scrtabs-disable .scrtabs-click-target {
  color: #ddd;
  cursor: default; }
  .scrtabs-tab-scroll-arrow.scrtabs-disable > span,
  .scrtabs-tab-scroll-arrow.scrtabs-disable .scrtabs-click-target > span {
    border-color: #ddd; }

.scrtabs-tab-scroll-arrow.scrtabs-disable:hover {
  background-color: initial; }

.scrtabs-tabs-fixed-container ul.nav-tabs > li {
  white-space: nowrap;
  box-shadow: 0 5px 5px rgba(0,0,0,.12);
}

.scrtabs-tabs-fixed-container ul.nav-tabs a {
  color:#1A3C54;
  background:#EEEEEE;
  font-family: "Roboto Condensed",sans-serif;
  text-transform:uppercase;
}

.scrtabs-tabs-fixed-container ul.nav-tabs > li:hover > a {
    box-shadow: 0 2px 15px rgba(0,0,0,.12);
    background-color: #e62633;
    color:#fff;
}

.scrtabs-tabs-fixed-container ul.nav-tabs .nav-link.active {
    color: #fff;
    font-weight: 700;
    font-family: "Roboto Condensed",sans-serif;
    text-transform:uppercase;
    -webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, .1);
    -moz-box-shadow: 0 5px 5px rgba(0, 0, 0, .1);
    box-shadow: 0 5px 5px rgba(0, 0, 0, .1);
    background-color: #e62633;
}

.nav-tabs .dropdown-menu {
  border-top-color: transparent;
  margin-top: 0; }


.features .nav-tabs {
    border: 0;
}

.features .nav-link {
    border: 0;
    padding: 10px;
    transition: .3s;
    color: #21413c;
    border-radius: 25px;
}

.features .nav-link:hover {
    color: #df0e2c;
}

.features .nav-link h4,.promo .promo-item h4 {
    font-size: 14px;
    font-weight: 600;
    margin: 0 auto;
}

.features .nav-link p {
    font-size: 14px;
    margin-bottom: 0;
}

.features .nav-link.active {
    box-shadow: 0 2px 15px rgba(0,0,0,.12);
    text-shadow: 0 0 10px #fff;
    color:#fff;
    background:#1A3C54;
}

.features .tab-pane.active {
    -webkit-animation: slide-down .5s ease-out;
    animation: slide-down .5s ease-out;
}

thead {
    background: #df0e2c;
    color: #fff;
    text-align:center;
    text-transform:uppercase;
  }

.float{
  position:fixed;
  width:50px;
  height:50px;
  bottom:20px;
  left:20px;
  background-color:#3CB60A;
  color:#FFF;
  border-radius:40px;
  text-align:center;
  font-size:25px;
  box-shadow: 2px 2px 3px rgba(0,0,0,0.2);
  z-index:100;
  -webkit-animation-name: float; /* Safari 4.0 - 8.0 */
  -webkit-animation-duration: 4s; /* Safari 4.0 - 8.0 */
  -webkit-animation-iteration-count: infinite; /* Safari 4.0 - 8.0 */
  animation-name: float;
  animation-duration: 4s;
  animation-iteration-count: infinite;
}

/* Safari 4.0 - 8.0 */
@-webkit-keyframes float {
  0%  {background-color: #df0e2c;
      color: #fff;
  }
  20% {background-color: #3CB60A;
      color: #FFC300;
  }
  40% {background-color: #df0e2c;
      color: #fff;
  }
  50% {-webkit-transform: rotate(360deg);
      border-radius:10px;
      text-shadow: 2px 2px 3px rgba(0,0,0,0.5);
  }
  60% {background-color: #3CB60A;
      color: #FFC300;
  }
  80% {background-color: #df0e2c;
      color: #fff;
  }
  100% {background-color: #3CB60A;
      color: #FFC300;
  }
}

/* Standard syntax */
@keyframes float {
  0%  {background-color: #df0e2c;
  }
  20%  {background-color: #3CB60A;
  }
  40%  {background-color: #df0e2c;
  }
  50% {-webkit-transform: rotate(360deg);
      border-radius:10px;
      text-shadow: 2px 2px 3px rgba(0,0,0,0.5);
  }
  60%  {background-color: #3CB60A;
  }
  80%  {background-color: #df0e2c;
  }
  100% {background-color: #3CB60A;
  }
}

.my-float{
  margin-top:12px;
}

.float2{
  position:fixed;
  width:50px;
  height:50px;
  bottom:80px;
  left:20px;
  background-color:#00B0FF;
  color:#FFF;
  border-radius:40px;
  text-align:center;
  font-size:25px;
  box-shadow: 2px 2px 3px rgba(0,0,0,0.2);
  z-index:100;
  -webkit-animation-name: float2; /* Safari 4.0 - 8.0 */
  -webkit-animation-duration: 4s; /* Safari 4.0 - 8.0 */
  -webkit-animation-iteration-count: infinite; /* Safari 4.0 - 8.0 */
  animation-name: float2;
  animation-duration: 4s;
  animation-iteration-count: infinite;
}

/* Safari 4.0 - 8.0 */
@-webkit-keyframes float2 {
  0%   {background-color: #00B0FF;}
  20%  {background-color: #FF00CC;}
  40%  {background-color: #00B0FF;}
  50% {-webkit-transform: rotate(360deg);
      border-radius:10px;
      text-shadow: 2px 2px 3px rgba(0,0,0,0.5);
  }
  60%  {background-color: #FF00CC;}
  80%  {background-color: #00B0FF;}
  100% {background-color: #FF00CC;}
}

/* Standard syntax */
@keyframes float2 {
  00%   {background-color: #00B0FF;}
  20%  {background-color: #FF00CC;}
  40%  {background-color: #00B0FF;}
  50% {-webkit-transform: rotate(360deg);
      border-radius:10px;
      text-shadow: 2px 2px 3px rgba(0,0,0,0.5);
  }
  60%  {background-color: #FF00CC;}
  80%  {background-color: #00B0FF;}
  100% {background-color: #FF00CC;}
}

.my-float2{
  margin:12px;
}

@media (max-width:479px) {
    .tawk-mobile {
        display:none;
    }
}

@media (max-width:479px) {
    .back-to-top {
        bottom:40px;
    }
}

/*--------------------------------------------------------------
# Lightbox
--------------------------------------------------------------*/
.lightbox-basic {
    position: relative;
    max-width: 80rem;
    margin: 2.5rem auto;
    border-radius: .25rem;
    background-color: #fff;
    text-align: center;
}

.lightbox-basic .spesifikasi {
    background-color: #f5f5f5;
    padding: 0.5em;
}

.lightbox-basic ul {
    text-align: left;
    font-size:12px;
}

.lightbox-basic img {
    display: block;
    margin-top: .75rem;
    margin-right: auto;
    margin-bottom: 0;
    margin-left: 0;
}

.lightbox-basic h2,.lightbox-basic h4 {
    font-weight: 700;
    font-family: "Roboto Condensed",sans-serif;
}

.lightbox-basic h2 {
    margin-bottom: .625rem;
    font-size: 20px;
    color: #1A3C54;
    text-transform: uppercase;
}

.lightbox-basic hr {
    width: 100%;
    height: .125rem;
    margin-top: .125rem;
    margin-bottom: 1.125rem;
    border: 0;
    background-color: rgba(0,0,0,.1);
    text-align: center;
}

.lightbox-basic h4 {
    font-size: 16px;
    text-align: center;
}

.lightbox-basic h5,thead,thead a {
    text-align: center;
    text-transform: uppercase;
}

.lightbox-basic h4,.lightbox-basic h5,.lightbox-basic h6 {
    margin-top: .15rem;
    margin-bottom: .15rem;
    color: #1A3C54;
}

.lightbox-basic h5 {
    font-size: 16px;
    font-weight: 700;
    font-family: "Roboto Condensed",sans-serif;
}

.lightbox-basic h6 {
    font-size: 14px;
    text-align: left;
}

.lightbox-basic p {
    font-size: 14px;
    text-align: center;
    margin: 0 auto;
}

@media (max-width:479px) {
    .lightbox-basic p {
        font-size: 14px;
    }
}

.lightbox-basic table {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.lightbox-basic table tr {
    line-height: 1.75em;
}

.lightbox-basic table .icon-cell {
    width: 2rem;
    padding-right: .25rem;
    color: #df0e2c;
    text-align: center;
}

.lightbox-basic a.mfp-close.as-button {
    position: relative;
    width: auto;
    height: auto;
    margin-left: .375rem;
    color: #df0e2c;
    opacity: 1;
}

.lightbox-basic a.mfp-close.as-button:hover {
    color: #f1f1f8;
}

.lightbox-basic button.mfp-close.x-button {
    position: absolute;
    top: -.375rem;
    right: -.375rem;
    width: 2.75rem;
    height: 2.75rem;
    color: #df0e2c;
    text-shadow: 1px 1px 1px rgba(0,0,0,.2);
}

.btn-lightbox-basic {
    display: inline-block;
    padding: 1.1875rem 1.325rem;
    margin: 10px 0;
    border: .125rem solid #df0e2c;
    border-radius: 2rem;
    background-color: transparent;
    color: #df0e2c;
    font: 700 .75rem/0 "Montserrat",sans-serif;
    text-decoration: none;
    transition: all .2s ease;
}

.btn-lightbox-basic:hover {
    background-color: #df0e2c;
    color: #fff;
    text-decoration: none;
}

.lightbox-basic {
    padding: 3rem;
}

.lightbox-basic h3 {
    margin-top: .25rem;
}

thead,thead a {
    background: #1A3C54;
    color: #fff;
}

.lightbox-basic .owl-dots,.lightbox-basic .owl-nav {
    margin-bottom: 15px;
    text-align: center;
}

.lightbox-basic .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd!important;
}

.lightbox-basic .owl-dot.active {
    background-color: #c00000!important;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #e62633;
}

a:hover {
  color: #73c5eb;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Jost", sans-serif;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 9999;
    background-color: #ffffff;
}

.loading {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    font: 14px arial;
}

.logo-preloader {
    width: 200px;
    height: auto;
}

@media (max-width:479px) {
    .logo-preloader {
        width: 150px;
        height: auto;
    }
}

/*--------------------------------------------------------------
# Preloader Own Logo
--------------------------------------------------------------*/

@keyframes stroke {
	0%   {
		fill: rgba(26,60,84,0); stroke: rgba(26,60,84,1);
		stroke-dashoffset: 25%; stroke-dasharray: 0 50%; stroke-width: 2;
	}
	70%  {fill: rgba(26,60,84,0); stroke: rgba(26,60,84,1); }
	80%  {fill: rgba(26,60,84,0); stroke: rgba(26,60,84,1); stroke-width: 3; }
	100% {
		fill: rgba(26,60,84,1); stroke: rgba(26,60,84,0);
		stroke-dashoffset: -25%; stroke-dasharray: 50% 0; stroke-width: 0;
	}
}


#Group_1 {
   animation: animateOne -0.5s linear 0.8s infinite alternate; 
}

#Group_2 {
   animation: animateTwo 0.8s linear 0.8s infinite alternate;  
}

@keyframes animateOne {
    0% {
       opacity:0;
       fill:#fff;
    }
    100% {
        opacity:1;
        fill:#0f1e39;
    }
}

@keyframes animateTwo {
    0% {
       opacity:0;
       fill:#fff;
    }
    100% {
        opacity:1;
        fill:#d7242a;
    }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background: #e62633;
  color: #fff;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: #209dd8;
  color: #fff;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
}

#header.header-scrolled, #header.header-inner-pages {
  background: #fff;
  -webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, .1);
  -moz-box-shadow: 0 5px 5px rgba(0, 0, 0, .1);
  box-shadow: 0 5px 5px rgba(0, 0, 0, .1);
  border-bottom: 4px solid #e62633;
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 40px;
}

#header .logo-tunas-toyota {
    padding: 1.3rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    margin-left:10px;
    max-height: 20px;
    border-right: 1px solid rgba(228, 228, 228, 1);
    border-left: 1px solid rgba(228, 228, 228, 1);
}

#header .logo-tunas-toyota img {
    width: 8rem;
}

@media (max-width:479px) {
    #header .logo-tunas-toyota {
        margin-right: 10px;
        padding: 1rem;
    }

    #header .logo-tunas-toyota img {
        width: 6rem;
    }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul {
  display: flex;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 10px 0 10px 28px;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #1A3C54;
  transition: 0.3s;
  font-size: 12px;
  letter-spacing: 0.5px;
  font-weight: 500;
  text-transform: uppercase;
  font-family: "Open Sans", sans-serif;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #e62633;
  font-weight: 600;
}

.nav-menu .drop-down ul {
  border-radius: 8px;
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #0c3c53;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #e62633;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}

/* Get Startet Button */
.get-started-btn {
  margin-left: 25px;
  color: #e62633;
  border-radius: 50px;
  padding: 6px 25px 7px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
  border: 2px solid #e62633;
  font-weight: 600;
  text-transform: uppercase;
}

.get-started-btn:hover {
  background: #e62633;
  color: #fff;
}

@media (max-width: 768px) {
  .get-started-btn {
    margin: 0 48px 0 0;
    padding: 6px 20px 7px 20px;
  }
}

@media (max-width: 479px) {
  .get-started-btn {
    display:none;
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  top: 20px;
  right: 15px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #e62633;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #1A3C54;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #fff;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  font-weight: 800;
  color: #e62633;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(40, 58, 90, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: url(../img/banner/innova-zenix.webp) center center;
  background-size: cover;
  position: relative;
  padding: 0;
}

#hero .container {
  padding-top: 72px;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #e62633;
}

#hero h2 {
  color: #1A3C54;
  margin-bottom: 50px;
  font-size: 24px;
}

#hero .btn-get-started {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 11px 28px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px 0 0 0;
  color: #fff;
  background: #e62633;
}

#hero .btn-get-started:hover {
  background:transparent;
  color:#e62633;
  border: 2px solid #e62633;
}

#hero .btn-watch-video {
  font-size: 16px;
  display: inline-block;
  padding: 10px 0 8px 40px;
  transition: 0.5s;
  margin: 10px 0 0 25px;
  color: #e62633;
  position: relative;
}

#hero .btn-watch-video:hover {
  color:#1A3C54;
}

#hero .btn-watch-video i {
  color: #e62633;
  font-size: 32px;
  position: absolute;
  left: 0;
  top: 7px;
  transition: 0.3s;
}

#hero .btn-watch-video:hover i {
  color: #1A3C54;
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 991px) {
  #hero {
    height: 100vh;
    text-align: center;
  }
  #hero .animated {
    -webkit-animation: none;
    animation: none;
  }
  #hero .hero-img {
    text-align: center;
  }
  #hero .hero-img img {
    width: 100%!important;
    height: auto;
  }
}

@media (max-width: 768px) {
  #hero {
        width: 100%!important;
        height: calc(30vh - 20px);
    }
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  #hero .hero-img img {
    width: 100%;
  }
}

@media (max-width: 575px) {
  #hero .hero-img img {
    width: 100%;
  }
  #hero .btn-get-started {
    font-size: 16px;
    padding: 10px 24px 11px 24px;
  }
  #hero .btn-watch-video {
    font-size: 16px;
    padding: 10px 0 8px 40px;
    margin-left: 20px;
  }
  #hero .btn-watch-video i {
    font-size: 32px;
    top: 7px;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

#hero .product-item h3 {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin: 0 auto;
  color: #e62633;
  font-family: "Open Sans",sans-serif;
}

#hero .product-item h4 {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  font-family: "Open Sans",sans-serif;
  margin: 0 auto;
}

#hero .product-item p {  
  margin: 0 auto;
  text-align:center;
  font-size: 16px;
}

/*--------------------------------------------------------------
# Hero Agya Section
--------------------------------------------------------------*/
#hero-agya {
    min-width: 100%;
    min-height: 100%;
    position: relative;
    padding: 0;
}

#hero-agya .container {
    z-index: 2;
}

#hero-agya h1 {
    margin: 0 0 10px;
    font-size: 48px;
    font-weight: 900;
    line-height: 56px;
    color: #fff;
}

#hero-agya h2 {
    color: rgba(255,255,255,.7);
    margin-bottom: 35px;
    font-size: 24px;
}

#hero-agya .btn-get-started {
    font-family: "Raleway",sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 28px;
    border-radius: 10px;
    transition: .5s;
    border: 2px solid #e62633;
    background: #e62633;
    color: #fff;
    -webkit-box-shadow: 0 5px 10px rgba(0,0,0,.3);
    -moz-box-shadow: 0 5px 10px rgba(0,0,0,.3);
    box-shadow: 0 5px 10px rgba(0,0,0,.3);
    text-shadow: 1px 1px 1px rgba(0,0,0,.2);
}

@media (max-width:768px) {
    #hero-agya h1 {
        font-size: 28px;
        line-height: 36px;
    }

    #hero-agya h2 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }
}

@media (min-width:768px) {
    #hero-agya {
        background-attachment: fixed;
    }
}

@media (max-width:1024px) {
    #hero-agya {
        width: 100%!important;
        height: auto;
    }
}

@media (max-width:479px) {
    #hero-agya {
        width: 100%!important;
        height: auto;
    }
}

/*--------------------------------------------------------------
# Hero Calya Section
--------------------------------------------------------------*/
#hero-calya {
    min-width: 100%;
    min-height: 100%;
    position: relative;
    padding: 0;
}

#hero-calya .container {
    z-index: 2;
}

#hero-calya h1 {
    margin: 0 0 10px;
    font-size: 48px;
    font-weight: 900;
    line-height: 56px;
    color: #fff;
}

#hero-calya h2 {
    color: rgba(255,255,255,.7);
    margin-bottom: 35px;
    font-size: 24px;
}

#hero-calya .btn-get-started {
    font-family: "Raleway",sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 28px;
    border-radius: 10px;
    transition: .5s;
    border: 2px solid #e62633;
    background: #e62633;
    color: #fff;
    -webkit-box-shadow: 0 5px 10px rgba(0,0,0,.3);
    -moz-box-shadow: 0 5px 10px rgba(0,0,0,.3);
    box-shadow: 0 5px 10px rgba(0,0,0,.3);
    text-shadow: 1px 1px 1px rgba(0,0,0,.2);
}

@media (max-width:768px) {
    #hero-calya h1 {
        font-size: 28px;
        line-height: 36px;
    }

    #hero-calya h2 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }
}

@media (min-width:768px) {
    #hero-calya {
        background-attachment: fixed;
    }
}

@media (max-width:1024px) {
    #hero-calya {
        width: 100%!important;
        height: auto;
    }
}

@media (max-width:479px) {
    #hero-calya {
        width: 100%!important;
        height: auto;
    }
}

/*--------------------------------------------------------------
# Hero Avanza Section
--------------------------------------------------------------*/
#hero-avanza {
    min-width: 100%;
    min-height: 100%;
    position: relative;
    padding: 0;
}

#hero-avanza .container {
    z-index: 2;
}

#hero-avanza h1 {
    margin: 0 0 10px;
    font-size: 48px;
    font-weight: 900;
    line-height: 56px;
    color: #fff;
}

#hero-avanza h2 {
    color: rgba(255,255,255,.7);
    margin-bottom: 35px;
    font-size: 24px;
}

#hero-avanza .btn-get-started {
    font-family: "Raleway",sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 28px;
    border-radius: 10px;
    transition: .5s;
    border: 2px solid #e62633;
    background: #e62633;
    color: #fff;
    -webkit-box-shadow: 0 5px 10px rgba(0,0,0,.3);
    -moz-box-shadow: 0 5px 10px rgba(0,0,0,.3);
    box-shadow: 0 5px 10px rgba(0,0,0,.3);
    text-shadow: 1px 1px 1px rgba(0,0,0,.2);
}

@media (max-width:768px) {
    #hero-avanza h1 {
        font-size: 28px;
        line-height: 36px;
    }

    #hero-avanza h2 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }
}

@media (min-width:768px) {
    #hero-avanza {
        background-attachment: fixed;
    }
}

@media (max-width:1024px) {
    #hero-avanza {
        width: 100%!important;
        height: auto;
    }
}

@media (max-width:479px) {
    #hero-avanza {
        width: 100%!important;
        height: auto;
    }
}

/*--------------------------------------------------------------
# Hero Veloz Section
--------------------------------------------------------------*/
#hero-veloz {
    min-width: 100%;
    min-height: 100%;
    position: relative;
    padding: 0;
}

#hero-veloz .container {
    z-index: 2;
}

#hero-veloz h1 {
    margin: 0 0 10px;
    font-size: 48px;
    font-weight: 900;
    line-height: 56px;
    color: #fff;
}

#hero-veloz h2 {
    color: rgba(255,255,255,.7);
    margin-bottom: 35px;
    font-size: 24px;
}

#hero-veloz .btn-get-started {
    font-family: "Raleway",sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 28px;
    border-radius: 10px;
    transition: .5s;
    border: 2px solid #e62633;
    background: #e62633;
    color: #fff;
    -webkit-box-shadow: 0 5px 10px rgba(0,0,0,.3);
    -moz-box-shadow: 0 5px 10px rgba(0,0,0,.3);
    box-shadow: 0 5px 10px rgba(0,0,0,.3);
    text-shadow: 1px 1px 1px rgba(0,0,0,.2);
}

@media (max-width:768px) {
    #hero-veloz h1 {
        font-size: 28px;
        line-height: 36px;
    }

    #hero-veloz h2 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }
}

@media (min-width:768px) {
    #hero-veloz {
        background-attachment: fixed;
    }
}

@media (max-width:1024px) {
    #hero-veloz {
        width: 100%!important;
        height: auto;
    }
}

@media (max-width:479px) {
    #hero-veloz {
        width: 100%!important;
        height: auto;
    }
}

/*--------------------------------------------------------------
# Hero Raize Section
--------------------------------------------------------------*/
#hero-raize {
    min-width: 100%;
    min-height: 100%;
    position: relative;
    padding: 0;
}

#hero-raize .container {
    z-index: 2;
}

#hero-raize h1 {
    margin: 0 0 10px;
    font-size: 48px;
    font-weight: 900;
    line-height: 56px;
    color: #fff;
}

#hero-raize h2 {
    color: rgba(255,255,255,.7);
    margin-bottom: 35px;
    font-size: 24px;
}

#hero-raize .btn-get-started {
    font-family: "Raleway",sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 28px;
    border-radius: 10px;
    transition: .5s;
    border: 2px solid #e62633;
    background: #e62633;
    color: #fff;
    -webkit-box-shadow: 0 5px 10px rgba(0,0,0,.3);
    -moz-box-shadow: 0 5px 10px rgba(0,0,0,.3);
    box-shadow: 0 5px 10px rgba(0,0,0,.3);
    text-shadow: 1px 1px 1px rgba(0,0,0,.2);
}

@media (max-width:768px) {
    #hero-raize h1 {
        font-size: 28px;
        line-height: 36px;
    }

    #hero-raize h2 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }
}

@media (min-width:768px) {
    #hero-raize {
        background-attachment: fixed;
    }
}

@media (max-width:1024px) {
    #hero-raize {
        width: 100%!important;
        height: auto;
    }
}

@media (max-width:479px) {
    #hero-raize {
        width: 100%!important;
        height: auto;
    }
}

/*--------------------------------------------------------------
# Hero Rush Section
--------------------------------------------------------------*/
#hero-rush {
    min-width: 100%;
    min-height: 100%;
    position: relative;
    padding: 0;
}

#hero-rush .container {
    z-index: 2;
}

#hero-rush h1 {
    margin: 0 0 10px;
    font-size: 48px;
    font-weight: 900;
    line-height: 56px;
    color: #fff;
}

#hero-rush h2 {
    color: rgba(255,255,255,.7);
    margin-bottom: 35px;
    font-size: 24px;
}

#hero-rush .btn-get-started {
    font-family: "Raleway",sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 28px;
    border-radius: 10px;
    transition: .5s;
    border: 2px solid #e62633;
    background: #e62633;
    color: #fff;
    -webkit-box-shadow: 0 5px 10px rgba(0,0,0,.3);
    -moz-box-shadow: 0 5px 10px rgba(0,0,0,.3);
    box-shadow: 0 5px 10px rgba(0,0,0,.3);
    text-shadow: 1px 1px 1px rgba(0,0,0,.2);
}

@media (max-width:768px) {
    #hero-rush h1 {
        font-size: 28px;
        line-height: 36px;
    }

    #hero-rush h2 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }
}

@media (min-width:768px) {
    #hero-rush {
        background-attachment: fixed;
    }
}

@media (max-width:1024px) {
    #hero-rush {
        width: 100%!important;
        height: auto;
    }
}

@media (max-width:479px) {
    #hero-rush {
        width: 100%!important;
        height: auto;
    }
}


/*--------------------------------------------------------------
# Hero Innova Section
--------------------------------------------------------------*/
#hero-innova {
    min-width: 100%;
    min-height: 100%;
    position: relative;
    padding: 0;
}

#hero-innova .container {
    z-index: 2;
}

#hero-innova h1 {
    margin: 0 0 10px;
    font-size: 48px;
    font-weight: 900;
    line-height: 56px;
    color: #fff;
}

#hero-innova h2 {
    color: rgba(255,255,255,.7);
    margin-bottom: 35px;
    font-size: 24px;
}

#hero-innova .btn-get-started {
    font-family: "Raleway",sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 28px;
    border-radius: 10px;
    transition: .5s;
    border: 2px solid #e62633;
    background: #e62633;
    color: #fff;
    -webkit-box-shadow: 0 5px 10px rgba(0,0,0,.3);
    -moz-box-shadow: 0 5px 10px rgba(0,0,0,.3);
    box-shadow: 0 5px 10px rgba(0,0,0,.3);
    text-shadow: 1px 1px 1px rgba(0,0,0,.2);
}

@media (max-width:768px) {
    #hero-innova h1 {
        font-size: 28px;
        line-height: 36px;
    }

    #hero-innova h2 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }
}

@media (min-width:768px) {
    #hero-innova {
        background-attachment: fixed;
    }
}

@media (max-width:1024px) {
    #hero-innova {
        width: 100%!important;
        height: auto;
    }
}

@media (max-width:479px) {
    #hero-innova {
        width: 100%!important;
        height: auto;
    }
}

/*--------------------------------------------------------------
# Hero Fortuner Section
--------------------------------------------------------------*/
#hero-fortuner {
    min-width: 100%;
    min-height: 100%;
    position: relative;
    padding: 0;
}

#hero-fortuner .container {
    z-index: 2;
}

#hero-fortuner h1 {
    margin: 0 0 10px;
    font-size: 48px;
    font-weight: 900;
    line-height: 56px;
    color: #fff;
}

#hero-fortuner h2 {
    color: rgba(255,255,255,.7);
    margin-bottom: 35px;
    font-size: 24px;
}

#hero-fortuner .btn-get-started {
    font-family: "Raleway",sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 28px;
    border-radius: 10px;
    transition: .5s;
    border: 2px solid #e62633;
    background: #e62633;
    color: #fff;
    -webkit-box-shadow: 0 5px 10px rgba(0,0,0,.3);
    -moz-box-shadow: 0 5px 10px rgba(0,0,0,.3);
    box-shadow: 0 5px 10px rgba(0,0,0,.3);
    text-shadow: 1px 1px 1px rgba(0,0,0,.2);
}

@media (max-width:768px) {
    #hero-fortuner h1 {
        font-size: 28px;
        line-height: 36px;
    }

    #hero-fortuner h2 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }
}

@media (min-width:768px) {
    #hero-fortuner {
        background-attachment: fixed;
    }
}

@media (max-width:1024px) {
    #hero-fortuner {
        width: 100%!important;
        height: auto;
    }
}

@media (max-width:479px) {
    #hero-fortuner {
        width: 100%!important;
        height: auto;
    }
}

/*--------------------------------------------------------------
# Hero Voxy Section
--------------------------------------------------------------*/
#hero-voxy {
    min-width: 100%;
    min-height: 100%;
    position: relative;
    padding: 0;
}

#hero-voxy .container {
    z-index: 2;
}

#hero-voxy h1 {
    margin: 0 0 10px;
    font-size: 48px;
    font-weight: 900;
    line-height: 56px;
    color: #fff;
}

#hero-voxy h2 {
    color: rgba(255,255,255,.7);
    margin-bottom: 35px;
    font-size: 24px;
}

#hero-voxy .btn-get-started {
    font-family: "Raleway",sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 28px;
    border-radius: 10px;
    transition: .5s;
    border: 2px solid #e62633;
    background: #e62633;
    color: #fff;
    -webkit-box-shadow: 0 5px 10px rgba(0,0,0,.3);
    -moz-box-shadow: 0 5px 10px rgba(0,0,0,.3);
    box-shadow: 0 5px 10px rgba(0,0,0,.3);
    text-shadow: 1px 1px 1px rgba(0,0,0,.2);
}

@media (max-width:768px) {
    #hero-voxy h1 {
        font-size: 28px;
        line-height: 36px;
    }

    #hero-voxy h2 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }
}

@media (min-width:768px) {
    #hero-voxy {
        background-attachment: fixed;
    }
}

@media (max-width:1024px) {
    #hero-voxy {
        width: 100%!important;
        height: auto;
    }
}

@media (max-width:479px) {
    #hero-voxy {
        width: 100%!important;
        height: auto;
    }
}

/*--------------------------------------------------------------
# Hero Alphard Section
--------------------------------------------------------------*/
#hero-alphard {
    min-width: 100%;
    min-height: 100%;
    position: relative;
    padding: 0;
}

#hero-alphard .container {
    z-index: 2;
}

#hero-alphard h1 {
    margin: 0 0 10px;
    font-size: 48px;
    font-weight: 900;
    line-height: 56px;
    color: #fff;
}

#hero-alphard h2 {
    color: rgba(255,255,255,.7);
    margin-bottom: 35px;
    font-size: 24px;
}

#hero-alphard .btn-get-started {
    font-family: "Raleway",sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 28px;
    border-radius: 10px;
    transition: .5s;
    border: 2px solid #e62633;
    background: #e62633;
    color: #fff;
    -webkit-box-shadow: 0 5px 10px rgba(0,0,0,.3);
    -moz-box-shadow: 0 5px 10px rgba(0,0,0,.3);
    box-shadow: 0 5px 10px rgba(0,0,0,.3);
    text-shadow: 1px 1px 1px rgba(0,0,0,.2);
}

@media (max-width:768px) {
    #hero-alphard h1 {
        font-size: 28px;
        line-height: 36px;
    }

    #hero-alphard h2 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }
}

@media (min-width:768px) {
    #hero-alphard {
        background-attachment: fixed;
    }
}

@media (max-width:1024px) {
    #hero-alphard {
        width: 100%!important;
        height: auto;
    }
}

@media (max-width:479px) {
    #hero-alphard {
        width: 100%!important;
        height: auto;
    }
}

/*--------------------------------------------------------------
# Hero Hilux S Cab Section
--------------------------------------------------------------*/
#hero-hiluxscab {
    min-width: 100%;
    min-height: 100%;
    position: relative;
    padding: 0;
}

#hero-hiluxscab .container {
    z-index: 2;
}

#hero-hiluxscab h1 {
    margin: 0 0 10px;
    font-size: 48px;
    font-weight: 900;
    line-height: 56px;
    color: #fff;
}

#hero-hiluxscab h2 {
    color: rgba(255,255,255,.7);
    margin-bottom: 35px;
    font-size: 24px;
}

#hero-hiluxscab .btn-get-started {
    font-family: "Raleway",sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 28px;
    border-radius: 10px;
    transition: .5s;
    border: 2px solid #e62633;
    background: #e62633;
    color: #fff;
    -webkit-box-shadow: 0 5px 10px rgba(0,0,0,.3);
    -moz-box-shadow: 0 5px 10px rgba(0,0,0,.3);
    box-shadow: 0 5px 10px rgba(0,0,0,.3);
    text-shadow: 1px 1px 1px rgba(0,0,0,.2);
}

@media (max-width:768px) {
    #hero-hiluxscab h1 {
        font-size: 28px;
        line-height: 36px;
    }

    #hero-hiluxscab h2 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }
}

@media (min-width:768px) {
    #hero-hiluxscab {
        background-attachment: fixed;
    }
}

@media (max-width:1024px) {
    #hero-hiluxscab {
        width: 100%!important;
        height: auto;
    }
}

@media (max-width:479px) {
    #hero-hiluxscab {
        width: 100%!important;
        height: auto;
    }
}

/*--------------------------------------------------------------
# Hero Hilux D Cab Section
--------------------------------------------------------------*/
#hero-hiluxdcab {
    min-width: 100%;
    min-height: 100%;
    position: relative;
    padding: 0;
}

#hero-hiluxdcab .container {
    z-index: 2;
}

#hero-hiluxdcab h1 {
    margin: 0 0 10px;
    font-size: 48px;
    font-weight: 900;
    line-height: 56px;
    color: #fff;
}

#hero-hiluxdcab h2 {
    color: rgba(255,255,255,.7);
    margin-bottom: 35px;
    font-size: 24px;
}

#hero-hiluxdcab .btn-get-started {
    font-family: "Raleway",sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 28px;
    border-radius: 10px;
    transition: .5s;
    border: 2px solid #e62633;
    background: #e62633;
    color: #fff;
    -webkit-box-shadow: 0 5px 10px rgba(0,0,0,.3);
    -moz-box-shadow: 0 5px 10px rgba(0,0,0,.3);
    box-shadow: 0 5px 10px rgba(0,0,0,.3);
    text-shadow: 1px 1px 1px rgba(0,0,0,.2);
}

@media (max-width:768px) {
    #hero-hiluxdcab h1 {
        font-size: 28px;
        line-height: 36px;
    }

    #hero-hiluxdcab h2 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }
}

@media (min-width:768px) {
    #hero-hiluxdcab {
        background-attachment: fixed;
    }
}

@media (max-width:1024px) {
    #hero-hiluxdcab {
        width: 100%!important;
        height: auto;
    }
}

@media (max-width:479px) {
    #hero-hiluxdcab {
        width: 100%!important;
        height: auto;
    }
}

/*--------------------------------------------------------------
# Hero Hilux GR Sport Section
--------------------------------------------------------------*/
#hero-hiluxgrsport {
    min-width: 100%;
    min-height: 100%;
    position: relative;
    padding: 0;
}

#hero-hiluxgrsport .container {
    z-index: 2;
}

#hero-hiluxgrsport h1 {
    margin: 0 0 10px;
    font-size: 48px;
    font-weight: 900;
    line-height: 56px;
    color: #fff;
}

#hero-hiluxgrsport h2 {
    color: rgba(255,255,255,.7);
    margin-bottom: 35px;
    font-size: 24px;
}

#hero-hiluxgrsport .btn-get-started {
    font-family: "Raleway",sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 28px;
    border-radius: 10px;
    transition: .5s;
    border: 2px solid #e62633;
    background: #e62633;
    color: #fff;
    -webkit-box-shadow: 0 5px 10px rgba(0,0,0,.3);
    -moz-box-shadow: 0 5px 10px rgba(0,0,0,.3);
    box-shadow: 0 5px 10px rgba(0,0,0,.3);
    text-shadow: 1px 1px 1px rgba(0,0,0,.2);
}

@media (max-width:768px) {
    #hero-hiluxgrsport h1 {
        font-size: 28px;
        line-height: 36px;
    }

    #hero-hiluxgrsport h2 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }
}

@media (min-width:768px) {
    #hero-hiluxgrsport {
        background-attachment: fixed;
    }
}

@media (max-width:1024px) {
    #hero-hiluxgrsport {
        width: 100%!important;
        height: auto;
    }
}

@media (max-width:479px) {
    #hero-hiluxgrsport {
        width: 100%!important;
        height: auto;
    }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 30px 0;
  overflow: hidden;
}

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

.contact-bg {
  background-color: #1A3C54;
}

.logo-bg {
  background-color: #D13F41;
}

.section-title {
  text-align: center;
  padding-bottom: 10px;
}

.section-title h2 {
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
  padding-top: 20px;
  padding-bottom: 10px;
  position: relative;
  color: #1A3C54;
  font-family: "Poppins",sans-serif;
}

.section-title h2::before {
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #e62633;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Cliens
--------------------------------------------------------------*/
.cliens {
  padding: 12px 0;
  text-align: center;
}

.cliens img {
  max-width: 100%;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
  -webkit-filter: grayscale(100);
  filter: grayscale(100);
  margin: 0 auto;
}

.cliens img:hover {
  -webkit-filter: none;
  filter: none;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .cliens img {
    max-width: 100%;
  }
}

.cliens .owl-nav, .cliens .owl-dots {
  margin: 5px 0 10px 0;
  text-align: center;
}

.cliens .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #fff !important;
}

.cliens .owl-dot.active {
  background-color: #c00000 !important;
}

/*--------------------------------------------------------------
# Promo
--------------------------------------------------------------*/
.promo-bg {
  background-color: #fff;
}

.promo .testimonial-item p {
  font-style: italic;
  font-size:14px;
  margin: 0 15px 15px 15px;
  padding: 20px 20px 20px 20px;
  background: #FFEFEF;
  position: relative;
  border-radius: 6px;
  position: relative;
  z-index: 1;
}

.promo .testimonial-item .quote-icon-left, .promo .testimonial-item .quote-icon-right {
  color: #FFBBBB;
  font-size: 26px;
}

.promo .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.promo .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.promo .promo-item {
  padding: 5px;
  border: 0.5px solid rgb(229, 231, 233);
  border-radius: 10px;
  box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.1);
  margin: 0 5px 10px 0;
  background:#fff;
}

.promo marquee {
    text-transform:uppercase;
    font-family: "Roboto Condensed",sans-serif;
    font-weight:600;
}

.promo .rating {
  font-size: 16px;
  text-align:center;
  color: #FFC300;
}

.promo .promo-item .promo-img {
  width: 90px;
  border-radius: 50%;
  margin: -40px 0 0 40px;
  position: relative;
  z-index: 2;
  border: 6px solid #fff;
}

.promo .section-title {
  padding-bottom: 10px;
  text-align: center;
}

.promo .section-title h1 {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  border-radius:50px;
  background:#1A3C54;
  color:#fff;
  font-weight: 700;
  text-transform:uppercase;
  font-family: "Roboto Condensed",sans-serif;
  padding:10px 0;
  margin: 0 auto;
  font-size:18px;
}

.promo .section-title a {
  color: #fff;
}

.promo .section-title a:hover {
  color: #22d8b6;
  text-decoration: none;
}

.promo .section-title h2,.section-title h2 {
    font-size: 21px;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 10px;
    padding-bottom: 0;
    color: #1A3C54;
    text-transform: uppercase;
    font-family: "Roboto Condensed",sans-serif;
}

hr {
    margin:.5rem 0;
    border-top: 2px solid #e62633;
}

.promo .promo-item h3 {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  margin: 0 auto;
  color: #e62633;
  font-family: "Roboto Condensed",sans-serif;
}

.promo .promo-item h4 {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  font-family: "Roboto Condensed",sans-serif;
  margin: 0 auto;
}

.promo .promo-item p {  
  margin: 0 auto;
  text-align:center;
  font-size: 14px;
  font-weight: 400;
  font-family: "Roboto Condensed",sans-serif;
}

.pricelist {  
  margin: 0 auto;
  text-align:center;
  font-size: 14px;
  font-weight: 400;
  font-family: "Roboto Condensed",sans-serif;
}

.promo .promo-item h6 {
  -webkit-text-decoration: line-through;
  text-decoration: line-through;
  font-size: 12px;
  margin-bottom: 0.2rem;
}

.promo h4 {
  margin-top: 0.5rem;
  margin-bottom: 0.15rem;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  color:#1A3C54;
  font-family: "Roboto Condensed",sans-serif;
  text-transform: uppercase;
}

@media (max-width: 479px) {
  .promo h4 {
    font-size:16px;
  }
}

.promo h5 {
  margin-top: 0.3rem;
  margin-bottom: 0.3rem;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  color:#1A3C54;
  text-transform: uppercase;
  font-family: "Roboto Condensed",sans-serif;
}

.promo .promo-item .quote-icon-left, .promo .promo-item .quote-icon-right {
  color: #a8d3cc;
  font-size: 26px;
}

.promo .promo-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.promo .promo-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.promo .owl-nav, .promo .owl-dots {
  margin: 5px 0 20px 0;
  text-align: center;
}

.promo .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.promo .owl-dot.active {
  background-color: #c00000 !important;
}

@media (max-width: 767px) {
  .promo {
    margin: 10px 10px;
  }
}

.promo .table a {
    color:#FFF;
}

.promo .table a:hover {
    color:#e62633;
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-left: 28px;
  position: relative;
}

.about .content ul li + li {
  margin-top: 10px;
}

.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #e62633;
  line-height: 1;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .btn-learn-more {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 4px;
  transition: 0.3s;
  line-height: 1;
  color: #e62633;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #e62633;
}

.about .content .btn-learn-more:hover {
  background: #e62633;
  color: #fff;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us .content {
  padding: 60px 100px 0 100px;
}

.why-us .content h3 {
  font-weight: 400;
  font-size: 34px;
  color: #1A3C54;
}

.why-us .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.why-us .content p {
  font-size: 15px;
  color: #848484;
}

.why-us .img {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.why-us .accordion-list {
  padding: 0 100px 60px 100px;
}

.why-us .accordion-list ul {
  padding: 0;
  list-style: none;
}

.why-us .accordion-list li + li {
  margin-top: 15px;
}

.why-us .accordion-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
}

.why-us .accordion-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding-right: 30px;
  outline: none;
}

.why-us .accordion-list span {
  color: #e62633;
  font-weight: 600;
  font-size: 18px;
  padding-right: 10px;
}

.why-us .accordion-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.why-us .accordion-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.why-us .accordion-list .icon-show {
  display: none;
}

.why-us .accordion-list a.collapsed {
  color: #343a40;
}

.why-us .accordion-list a.collapsed:hover {
  color: #e62633;
}

.why-us .accordion-list a.collapsed .icon-show {
  display: inline-block;
}

.why-us .accordion-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1024px) {
  .why-us .content, .why-us .accordion-list {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  .why-us .img {
    min-height: 400px;
  }
  .why-us .content {
    padding-top: 30px;
  }
  .why-us .accordion-list {
    padding-bottom: 30px;
  }
}

@media (max-width: 575px) {
  .why-us .img {
    min-height: 200px;
  }
}

/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/
.skills .content h3 {
  font-weight: 700;
  font-size: 32px;
  color: #1A3C54;
  font-family: "Poppins", sans-serif;
}

.skills .content ul {
  list-style: none;
  padding: 0;
}

.skills .content ul li {
  padding-bottom: 10px;
}

.skills .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #e62633;
}

.skills .content p:last-child {
  margin-bottom: 0;
}

.skills .progress {
  height: 50px;
  display: block;
  background: none;
}

.skills .progress .skill {
  padding: 10px 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #1A3C54;
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: #e8edf5;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: .9s;
  background-color: #4668a2;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  padding: 50px 30px;
  transition: all ease-in-out 0.4s;
  background: #fff;
}

.services .icon-box .icon {
  margin-bottom: 10px;
}

.services .icon-box .icon i {
  color: #e62633;
  font-size: 36px;
  transition: 0.3s;
}

.services .icon-box h4 {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 24px;
}

.services .icon-box h4 a {
  color: #1A3C54;
  transition: ease-in-out 0.3s;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  transform: translateY(-10px);
}

.services .icon-box:hover h4 a {
  color: #e62633;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(rgba(40, 58, 90, 0.9), rgba(40, 58, 90, 0.9)), url("../img/cta-bg.jpg") fixed center center;
  background-size: cover;
  padding: 120px 0;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta .cta-btn:hover {
  background: #e62633;
  border: 2px solid #e62633;
}

@media (max-width: 1024px) {
  .cta {
    background-attachment: scroll;
  }
}

@media (min-width: 769px) {
  .cta .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

/*--------------------------------------------------------------
# product
--------------------------------------------------------------*/
.product .products-item h5{
  text-align:center;
  font-size: 1.5rem;
  font-family: "Open Sans",sans-serif;
  font-weight: 700;
}

.product #product-flters {
  padding: 0;
  margin: 0 auto 35px auto;
  list-style: none;
  text-align: center;
  background: #1A3C54;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  border-radius: 50px;
  padding: 8px 20px;
}

.product #product-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 5px 14px 3px 14px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.product #product-flters li:hover, .product #product-flters li.filter-active {
  color: #fff;
  font-weight: 700;
  margin: 0 auto;
  padding: 5px 14px;
  border-radius: 25px;
  border: 2px solid #e62633;
  background: #e62633;
}

.product .btn-category {
    font-family: "Raleway", sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 12px;
    margin: 0 0 30px 0;
    border-radius: 25px;
    transition: 0.5s;
    border: 2px solid #e62633;
    background: #e62633;
    color: #fff;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .3);
    -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, .3);
    box-shadow: 0 5px 10px rgba(0, 0, 0, .3);
}

.promo .btn-category {
    font-family: "Raleway", sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 12px;
    margin: 0 0 30px 0;
    border-radius: 25px;
    transition: 0.5s;
    border: 2px solid #e62633;
    background: #e62633;
    color: #fff;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .3);
    -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, .3);
    box-shadow: 0 5px 10px rgba(0, 0, 0, .3);
}

.promo .btn-watch-video {
    display: inline-block;
    margin: 20px;
    padding: .6875rem 1.325rem;
    border: .125rem solid #df0e2c;
    border-radius: 2rem;
    background-color: #df0e2c;
    color: #fff;
    font: 700 .75rem/0 "Montserrat",sans-serif;
    transition: all .2s ease;
    text-transform: uppercase;
}

.promo .btn-watch-video:hover {
    background-color: transparent;
    color: #df0e2c;
    text-decoration: none;
}

.product .product-item {
    margin-bottom: 30px;
    background:#fff;
    border: .5px solid #e5e7e9;
}

@media (max-width:479px) {
    .product .product-item {
        width: 100%;
        padding-right: 10px;
        padding-left: 10px;
    }
}

.product .product-item .product-img {
  overflow: hidden;
}

.product .product-item .product-img img {
  transition: all 0.6s;
}

.product .product-item .product-info {
  opacity: 0;
  position: absolute;
  left: 15px;
  bottom: 0;
  z-index: 3;
  right: 15px;
  transition: all 0.3s;
  background: rgba(55, 81, 126, 0.8);
  padding: 10px 15px;
}

.product h4 {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  margin: 0 auto;
  text-transform: uppercase;
}

.product .product-item p {
  text-align:center;
  font-size:10px;
  margin-bottom: 0;
}

.product .product-item .product-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0px;
}

.product .product-item .product-info p {
  color: #f9fcfe;
  font-size: 14px;
  margin-bottom: 0;
}

.product .product-item .product-info .preview-link, .product .product-item .product-info .details-link {
  position: absolute;
  right: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: #fff;
  transition: 0.3s;
}

.product .product-item .product-info .preview-link:hover, .product .product-item .product-info .details-link:hover {
  color: #e62633;
}

.product .product-item .product-info .details-link {
  right: 10px;
}

.product .product-item:hover .product-img img {
  transform: scale(1.15);
}

.product .product-item:hover .product-info {
  opacity: 1;
}

.product .btn-category {
    font-family: "Raleway",sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 12px;
    margin: 0 0 10px;
    border-radius: 25px;
    transition: .5s;
    border: 2px solid #e62633;
    background: #e62633;
    color: #fff;
    -webkit-box-shadow: 0 5px 10px rgba(0,0,0,.3);
    -moz-box-shadow: 0 5px 10px rgba(0,0,0,.3);
    box-shadow: 0 5px 10px rgba(0,0,0,.3);
    width: 100%;
}

@media (max-width:479px) {
    .product .btn-category {
        font-size: 10px;
        padding: 2px 4px;
    }
}

@media (min-width:768px) {
    .product .btn-category {
        font-size: 12px;
        padding: 2px 4px;
    }
}

.product .btn-category:hover {
    border-color: #c00000;
    background: #c00000;
    color: #fff;
    text-shadow: 1px 1px 1px rgba(0,0,0,.2);
    font-weight: 700;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  position: relative;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 5px;
  background: #fff;
  transition: 0.5s;
}

.team .member .pic {
  overflow: hidden;
  width: 180px;
  border-radius: 50%;
}

.team .member .pic img {
  transition: ease-in-out 0.3s;
}

.team .member:hover {
  transform: translateY(-10px);
}

.team .member .member-info {
  padding-left: 30px;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: #1A3C54;
}

.team .member span {
  display: block;
  font-size: 15px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}

.team .member span::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #cbd6e9;
  bottom: 0;
  left: 0;
}

.team .member p {
  margin: 10px 0 0 0;
  font-size: 14px;
}

.team .member .social {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.team .member .social a {
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  width: 32px;
  height: 32px;
  background: #eff2f8;
}

.team .member .social a i {
  color: #1A3C54;
  font-size: 16px;
  margin: 0 2px;
}

.team .member .social a:hover {
  background: #e62633;
}

.team .member .social a:hover i {
  color: #fff;
}

.team .member .social a + a {
  margin-left: 8px;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .row {
  padding-top: 40px;
}

.pricing .box {
  padding: 60px 40px;
  box-shadow: 0 3px 20px -2px rgba(20, 45, 100, 0.1);
  background: #fff;
  height: 100%;
  border-top: 4px solid #fff;
  border-radius: 5px;
}

.pricing h3 {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 20px;
  color: #1A3C54;
}

.pricing h4 {
  font-size: 48px;
  color: #1A3C54;
  font-weight: 400;
  font-family: "Jost", sans-serif;
  margin-bottom: 25px;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: #e62633;
  font-size: 18px;
  display: block;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: #999;
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0 10px 30px;
  position: relative;
}

.pricing ul i {
  color: #28a745;
  font-size: 24px;
  position: absolute;
  left: 0;
  top: 6px;
}

.pricing ul .na {
  color: #ccc;
}

.pricing ul .na i {
  color: #ccc;
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  display: inline-block;
  padding: 12px 35px;
  border-radius: 50px;
  color: #e62633;
  transition: none;
  font-size: 16px;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  transition: 0.3s;
  border: 1px solid #e62633;
}

.pricing .buy-btn:hover {
  background: #e62633;
  color: #fff;
}

.pricing .featured {
  border-top-color: #e62633;
}

.pricing .featured .buy-btn {
  background: #e62633;
  color: #fff;
}

.pricing .featured .buy-btn:hover {
  background: #23a3df;
}

@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0 100px;
}

.faq .faq-list ul {
  padding: 0;
  list-style: none;
}

.faq .faq-list li + li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #e62633;
}

.faq .faq-list .icon-show, .faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #1A3C54;
  transition: 0.3s;
}

.faq .faq-list a.collapsed:hover {
  color: #e62633;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .section-title h2 {
    color:#fff;
}

.contact hr {
    margin: .5rem 0;
    border-top: 2px solid #fff;
}

.contact .section-title h2::after {
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: #e62633;
    bottom: 0;
    left: calc(50% - 20px);
}

.contact .icon-box h4 {
    font-size: 16px;
    font-weight: 700;
    margin-left: 40px;
    color: #fff;
}

.contact .icon-box i {
    font-size: 28px;
    float: left;
    color: #e62633;
}

.contact .icon-box {
    margin: 20px 0;
}

.contact .profile h3 {
    font-family: Jodie-Garland;
    line-height: 1.5;
    font-size: 34px;
    font-style: normal;
    font-weight: 500;
    text-align:center;
    margin-top: 5px;
    margin-bottom: 0;
    background: -webkit-linear-gradient(0deg, #fff, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@font-face {
    font-family: Jodie-Garland;
    src: url(../webfonts/Jodie-Garland.ttf);
    font-weight: 400;
    font-style: normal;
}

.contact p {
    color:#fff;
}

.contact .profile p {
    font-size:14px;
    text-align:center;
    color:#fff;
}

.contact .profile img {
    border-radius: 10%;
    border: 4px solid #fff;
    margin: 0 auto;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .3);
    -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, .3);
    box-shadow: 0 5px 10px rgba(0, 0, 0, .3);
}

.contact .info {
  border-top: 3px solid #e62633;
  border-bottom: 3px solid #e62633;
  padding: 30px;
  background: #fff;
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
}

.contact .info i {
  font-size: 20px;
  color: #e62633;
  float: left;
  width: 44px;
  height: 44px;
  background: #e7f5fb;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #1A3C54;
}

.contact .info p {
  padding: 0 0 10px 60px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #6182ba;
}

.contact .info .email p {
  padding-top: 5px;
}

.contact .info .social-links {
  padding-left: 60px;
}

.contact .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #1A3C54;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
}

.contact .info .social-links a:hover {
  background: #e62633;
  color: #fff;
}

.contact .info .email:hover i, .contact .info .address:hover i, .contact .info .phone:hover i {
  background: #e62633;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  border-top: 3px solid #e62633;
  border-bottom: 3px solid #e62633;
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.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: 13px;
}

.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: 24px;
  height: 24px;
  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: 14px;
  border-radius: 4px;
}

.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
  border-color: #e62633;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type="submit"] {
  background: #e62633;
  border: 0;
  padding: 12px 34px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #209dd8;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
ul.breadcrumb {
    padding: 0;
    margin: 0 auto;
    list-style: none;
    background: transparent;
    align-items: center;
}

ul.breadcrumb li {
    display: inline;
    font-size: 14px;
    text-transform: uppercase;
    color: #e62633;
}

ul.breadcrumb li .bxs-home{
    font-size: 20px;
}

@media (max-width:479px) {
    ul.breadcrumb li {
        font-size: 13px;
    }
}

ul.breadcrumb li+li:before {
    padding: 8px;
    color: #000;
    content: "/\00a0"
}

ul.breadcrumb li a {
    color: #1A3C54;
    text-decoration: none;
}

ul.breadcrumb li a:hover,ul.breadcrumb li.active a {
    color: #e62633;
    text-decoration: underline;
    font-weight:600;
}

.breadcrumbs {
  padding: 12px 0;
  text-align: center;
}

.breadcrumbs-bg {
  border-top: 3px solid #fff;
  background-color: #1A3C54;
}

.breadcrumbs marquee {
    text-transform: uppercase;
    font-family: "Roboto Condensed",sans-serif;
    font-weight: 600;
    margin: 0 auto;
    color:#fff;
}

.breadcrumbs img {
  max-width:120px;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  margin: 0 auto;
}

.breadcrumbs img:hover {
  transform: scale(1.1);
}

@media (max-width: 479px) {
  .breadcrumb img {
    max-width: 100%;
    padding:0 30%;
    margin:0 auto;
  }
}

/*--------------------------------------------------------------
# product Details
--------------------------------------------------------------*/
.product-details {
  padding-top: 40px;
}

.product-details .product-details-container {
  position: relative;
}

.product-details .product-details-carousel {
  position: relative;
  z-index: 1;
}

.product-details .product-details-carousel .owl-nav, .product-details .product-details-carousel .owl-dots {
  margin-top: 5px;
  text-align: left;
}

.product-details .product-details-carousel .owl-dot {
  display: inline-block;
  margin: 0 10px 0 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.product-details .product-details-carousel .owl-dot.active {
  background-color: #e62633 !important;
}

.product-details .product-info {
  padding: 30px;
  position: absolute;
  right: 0;
  bottom: -70px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.product-details .product-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.product-details .product-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.product-details .product-info ul li + li {
  margin-top: 10px;
}

.product-details .product-description {
  padding-top: 50px;
}

.product-details .product-description h2 {
  width: 50%;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.product-details .product-description p {
  padding: 0 0 0 0;
}

@media (max-width: 768px) {
  .product-details .product-description h2 {
    width: 100%;
  }
  .product-details .product-info {
    position: static;
    margin-top: 30px;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  font-size: 14px;
  background: #fff;
  -webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, .1);
  -moz-box-shadow: 0 5px 5px rgba(0, 0, 0, .1);
  box-shadow: 0 5px 5px rgba(0, 0, 0, .1);
}

#footer p {
  text-align: center;
  color:rgba(10, 10, 10, 0.5);
  font-size:12px;
}

#footer .footer-newsletter {
  padding: 50px 0;
  background: #f3f5fa;
  text-align: center;
  font-size: 15px;
  color: #444444;
}

#footer .footer-info {
  text-align: center;
  margin: 0 auto;
}

#footer .footer-info img {
  width: 150px;
  height:auto;
  margin: 0 auto;
}

#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  color: #1A3C54;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
  text-align: left;
}

#footer .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #e62633;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type="submit"]:hover {
  background: #209dd8;
}

#footer .footer-top {
  padding: 10px 0 10px 0;
  background: #ffffff;
  border-top: 4px solid #e62633;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 28px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 600;
  color: #1A3C54;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Jost", sans-serif;
  color: #5e5e5e;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #1A3C54;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #e62633;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #777777;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #e62633;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #e62633;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #209dd8;
  color: #fff;
  text-decoration: none;
}

#footer .footer-bottom {
  padding-top: 30px;
  padding-bottom: 30px;
  background:#fff;
}

#footer .copyright {
  text-align: center;
  color:rgba(10, 10, 10, 0.5);
  font-size:12px;
}

#footer .copyright a{
  color:rgba(10, 10, 10, 0.5);
}

#footer .copyright a:hover{
  color:#e62633;
}

#footer .credits {
  float: left;
  font-size: 13px;
}

#footer .credits a {
  transition: 0.3s;
}

@media (max-width: 768px) {
  #footer .footer-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  #footer .copyright, #footer .credits, #footer p {
    text-align: center;
    float: none;
  }
  #footer .credits {
    padding-top: 4px;
  }
}

#footer .social-links {
    background:#1A3C54;
}

#footer .btn-category {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 40px;
    display: inline-block;
    width: 100%;
    transition: .5s;
    background: 0 0;
    color: #c00000;
    text-align:center;
}

@media (max-width:479px) {
    #footer .btn-category {
        font-size: 30px;
    }
}

#footer .btn-category:hover {
    border-color: #c00000;
    background: #c00000;
    color: #fff;
    text-shadow: 1px 1px 1px rgba(0,0,0,.2);
    font-weight: 700;
}