/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

/* Fonts */
@font-face {
  font-family: "zendots";
  src: url("../fonts/Zen_Dots/ZenDots-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "nunito";
  src: url("../fonts/Nunito/Nunito-VariableFont_wght.ttf") format("truetype");
  font-weight: 300 400 500 600 900;
  font-style: normal;
}

@font-face {
  font-family: "nunito-i";
  src: url("../fonts/Nunito/Nunito-Italic-VariableFont_wght.ttf") format("truetype");
  font-weight: 400 600 900;
  font-style: normal;
}

:root {
  --font-default: "nunito", "Open Sans", system-ui, -apple-system;
  --font-default-i: "nunito-i", "Open Sans", system-ui, -apple-system;
  --font-title: "zendots", "Open Sans", system-ui, -apple-system;
}

/* Colors */
:root {
  --primary: #3a3a85;
  --primary-hover: #5454a2;
  --secondary: #ee3338;
  --secondary-hover: #f75056;
  --white: #ffffff;
  --grey: #d9d9d9;
  --black: #1c1c1c;
}

body {
  font-family: var(--font-default);
  color: #444444;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  color: var(--primary-hover);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-title);
}

section, footer {
  overflow-x: hidden;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--primary);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: var(--white);
  line-height: 0;
}

.back-to-top:hover {
  background: var(--primary-hover);
  color: var(--white);
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
  background: var(--white);
}

#header.header-transparent {
  background: #ffffff9b;
}

#header.header-scrolled {
  background: #ffffffd3;
  padding: 15px 0;
}

#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 2px;
}

#header .logo a {
  color: var(--white);
}

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

/*--------------------------------------------------------------
# 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 0 10px 0px;
  margin-left: 30px;
  color: var(--black);
  font-size: 16px;
  white-space: nowrap;
  font-family: var(--font-title);

  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: var(--primary);
}

.navbar .accessBtn {
  position: relative;

  color: var(--primary);
  text-transform: uppercase;
}

.navbar .accessBtn::before {
  content: "";

  position: absolute;
  bottom: -3px;
  left: 0;
  z-index: -1;

  border-radius: 4px;
  width: 100%;
  height: 6px;
  background-color: var(--secondary);

  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.navbar .accessBtn:hover {
  color: var(--primary-hover);
}

.navbar .accessBtn:hover::before {
  background-color: var(--secondary-hover);
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: var(--white);
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color: #414c64;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: var(--primary);
}

.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: var(--secondary);
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-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: rgba(45, 53, 69, 0.9);
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-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: var(--white);
  overflow-y: auto;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: var(--black);
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: var(--secondary);
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: var(--white);
  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: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: var(--primary);
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

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

#hero.charging{
  overflow: hidden;
}

#hero.charging #homeSlider{
  opacity: 0;
  visibility: hidden;
  height: 400px;
}

#homeSlider {
  position: relative;
  min-height: 200px;
}

#hero .contLoader{
  position: absolute;
  z-index: -9999;
  left: 0;
  top: 0;

  display: flex;
  justify-content: center;
  align-items: center;

  width: 100%;
  height: 100%;
}

#hero .contLoader.show{
  z-index: 1;
}

#hero .contLoader.show .heroLoader {
  display: inline-block;

  overflow: visible;
  width: 80px;
  height: 80px;
}

#hero .contLoader.show .heroLoader::after {
  content: " ";

  display: block;

  width: 64px;
  height: 64px;
  margin: 8px;
  border-radius: 50%;
  border: 6px solid var(--secondary);
  border-color: var(--secondary) transparent var(--secondary) transparent;

  animation: rotate360 1.2s linear infinite;
  -webkit-animation: rotate360 1.2s linear infinite;
  -moz-animation: rotate360 1.2s linear infinite;
  -o-animation: rotate360 1.2s linear infinite;
}

@media (max-width: 600px) {
  #hero {
    min-height: 200px;
  }  
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
}

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

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

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: var(--primary);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--secondary);
  bottom: 0;
  left: calc(50% - 25px);
}

.section-title p {
  margin-bottom: 0;
  font-size: 14px;
  color: #aab3c7;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #fafafc;
  min-height: 40px;
  margin-top: 82px;
}

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

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  padding: 15px 0;
  text-align: center;
}

.clients img {
  max-width: 45%;
  display: inline-block;
  padding: 15px 0;
  filter: grayscale(100);
}

.clients img:hover {
  filter: none;
  transition: all 0.4s ease-in-out !important;
  -webkit-transition: all 0.4s ease-in-out !important;
  -moz-transition: all 0.4s ease-in-out !important;
  -ms-transition: all 0.4s ease-in-out !important;
  -o-transition: all 0.4s ease-in-out !important;
  transform: scale(1.15) !important;
  -webkit-transform: scale(1.15) !important;
  -moz-transform: scale(1.15) !important;
  -ms-transform: scale(1.15) !important;
  -o-transform: scale(1.15) !important;
}

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

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about h3 {
  font-weight: 700;
  font-size: 34px;
  color: #414c64;
}

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

.about i {
  font-size: 48px;
  margin-top: 15px;
  color: #8b97b3;
}

.about p {
  font-size: 15px;
  color: #848484;
}

.about ul li {
  font-size: 15px;
  color: #848484;
}

.about ul li::marker {
  font-size: 24px;
  color: var(--secondary);
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding: 40px 0;
}

.counts .counters span {
  font-size: 48px;
  display: block;
  color: #414c64;
}

.counts .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  padding: 70px 20px 80px 20px;
  width: 100%;
  max-width: 500px;
  transition: all ease-in-out 0.3s;
  background: var(--white);
  box-shadow: 0px 5px 10pt 4pt rgba(110, 123, 131, 0.05);
  cursor: pointer;
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
  background: var(--white);
  border: 2px solid #c8c8c8;
  border-radius: 50px;
}

.services .icon-box .icon i {
  font-size: 32px;
  color: var(--primary);

  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  line-height: 1;
  position: relative;
}

.services .icon-box h4 {
  font-weight: 600;
  margin: 10px 0 15px 0;
  font-size: 22px;

  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

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

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

.services .icon-box:hover {
  border-color: var(--white);
  box-shadow: 0px 0 20px 0 rgba(0, 0, 0, 0.08);
}

.services .iconbox-blue i {
  color: #47aeff;
}

.services .iconbox-blue:hover .icon {
  background: #47aeff;
}

.services .icon-box:hover .icon {
  background: var(--primary);
  box-shadow: 0 0 5pt .1pt var(--secondary-hover);
  -webkit-box-shadow: 0 0 5pt .1pt var(--secondary-hover);
}

.services .icon-box:hover .icon i {
  color: var(--white);
}

.services .icon-box:hover h4 {
  color: var(--secondary);
}

.services .iconbox-blue:hover .icon i {
  color: var(--white);
}

.services .iconbox-orange i {
  color: #ffa76e;
}

.services .iconbox-orange:hover .icon {
  background: #ffa76e;
}

.services .iconbox-orange:hover .icon i {
  color: var(--white);
}

.services .iconbox-pink i {
  color: #e80368;
}

.services .iconbox-pink:hover .icon {
  background: #e80368;
}

.services .iconbox-pink:hover .icon i {
  color: var(--white);
}

.services .iconbox-yellow i {
  color: #ffbb2c;
}

.services .iconbox-yellow:hover .icon {
  background: #ffbb2c;
}

.services .iconbox-yellow:hover .icon i {
  color: var(--white);
}

.services .iconbox-red i {
  color: #ff5828;
}

.services .iconbox-red:hover .icon {
  background: #ff5828;
}

.services .iconbox-red:hover .icon i {
  color: var(--white);
}

.services .iconbox-teal i {
  color: #11dbcf;
}

.services .iconbox-teal:hover .icon {
  background: #11dbcf;
}

.services .iconbox-teal:hover .icon i {
  color: var(--white);
}

.services .modalService .modal-header {
  background-color: var(--primary);
}

.services .modalService .modal-title {
  color: var(--white);
}

.services .modalService .modal-body {
  font-size: 16px;
  color: var(--black);
}

.services .modalService .modal-footer .btn {
  background-color: var(--secondary);
  border: 2px solid var(--secondary);

  color: var(--white);
  font-weight: 900;
  text-transform: uppercase;
}

.services .modalService .modal-footer .btn:hover {
  background-color: var(--white);
  border-color: var(--secondary-hover);
  color: var(--secondary-hover);
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background-image: url(../img/bg-cta.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 0;
}

.cta h3 {
  color: var(--white);
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
}

.cta p {
  color: var(--white);
  font-size: 20px;
}

.cta .cta-btn {
  font-family: var(--font-default);
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 35px;
  border-radius: 25px;
  transition: 0.5s !important;
  -webkit-transition: 0.5s !important;
  -moz-transition: 0.5s !important;
  -ms-transition: 0.5s !important;
  -o-transition: 0.5s !important;
  margin-top: 10px;
  border: 2px solid var(--white);
  background-color: var(--white);
  color: var(--secondary);
  font-weight: 900;
  text-transform: uppercase;
}

.cta .cta-btn:hover {
  background: var(--secondary);
  color: var(--white);
}

/*--------------------------------------------------------------
# Products
--------------------------------------------------------------*/

.products {
  position: relative;
  padding-left: 0;
  padding-right: 0;

  overflow-x: hidden;
}

.products .dinamic-slider {
  position: relative;

  display: flex;
  justify-content: flex-end;
  width: 100%;

  background-image: url(../img/slider/products/bg-2.png);
  background-size: cover;
  background-position: center;

  user-select: none;
  cursor: pointer;
}

.products .dinamic-slider .tns-outer {
  width: 40%;

  cursor: grab;
}

.products .dinamic-slider .item img {
  width: 100%;
  max-width: 800px;
  padding-top: 10%;
  padding-bottom: 10%;
}

.products .filter-products {
  position: relative;

  width: 100%;
  padding: 15px 30px;
  margin-top: 60px;
}

.products .filter-products .f-head {
  position: relative;

  display: grid;
  grid-template-columns: 1fr;
  align-items: center;

  padding: 15px 0;
}

.products .filter-products .f-head .filters {
  display: grid;
  grid-template-columns: repeat(auto-fill, 300px);
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

.products .filter-products .f-head .filters .btn {
  background-color: var(--secondary);

  text-transform: uppercase;
  font-weight: 900;
  font-size: 16px;
  white-space: nowrap;
  color: var(--white);
  border: 0px;
  border-radius: 20px;
  margin-bottom: 5px;
  margin-top: 5px;

  z-index: 1;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.products .filter-products .f-head .filters .btn:hover {
  background-color: var(--secondary-hover);
}

.products .filter-products .title {
  margin-bottom: 15px;

  text-transform: uppercase;
  font-size: 26px;
  text-align: center;
  color: var(--primary);
}

.products .filter-products .f-head .filters .btn-filter {
  background-color: var(--black);
  width: max-content;
  padding: 15px 20px;
}

.products .filter-products .f-head .filters .btn-filter:hover {
  background-color: var(--primary-hover);
}

.products .filter-products .f-head .filters .btn-group {
  margin: 0 5px;
}

.products .filter-products .f-head .filters .btn-group > .btn:not(:last-child):not(.dropdown-toggle) {
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  width: 100%;

  text-align: start;
}

.products .filter-products .f-head .filters .btn-group > :not(.btn-check) + .btn {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  padding: 10px;

  border-left: 2px solid var(--white);
}

.products .filter-products .f-head .filters .dropdown-toggle-split {
  width: 60px;
  font-size: 24px;
}

.products .filter-products .f-head .filters .dropdown-toggle-split::after {
  display: none;
}

.products .filter-products .f-head .filters .dropdown-menu {
  padding: 0px;
  background-color: var(--secondary-hover);
}

.products .filter-products .f-head .filters .dropdown-menu .subline-item {
  padding: 8px 12px;

  text-transform: capitalize;
  color: var(--white);
  font-weight: 700;

  cursor: pointer;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.products .filter-products .f-head .filters .dropdown-menu .subline-item:hover {
  background-color: var(--primary-hover);
}

.products .filter-products .f-head .filters .dropdown-menu .subline-item:not(:last-of-type) {
  border-bottom: 2px solid var(--white);
}

.products .filter-products .f-head .msg {
  width: 100%;

  font-style: italic;
  font-size: 22px;
  font-weight: 500;
  color: var(--black);
}

.products .filter-products .f-head .btn-search {
  display: flex;
  align-items: center;
  justify-content: center;
  
  height: 100%;
  background-color: var(--primary);
  border-radius: 50px;

  color: var(--white);
  font-size: 22px;
}

.products .filter-products .f-head .contLoader{
  position: absolute;
  z-index: -9999;
  left: 0;
  top: 0;

  display: flex;
  justify-content: center;
  align-items: center;

  width: 100%;
  height: 100%;
  background-color: var(--white);
  opacity: 0;
}

.products .filter-products .f-head .contLoader.show{
  z-index: 1;
  opacity: 1;

  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.products .filter-products .f-head .contLoader.show .headLoader {
  display: inline-block;

  overflow: visible;
  width: 70px;
  height: 70px;
}

.products .filter-products .f-head .contLoader.show .headLoader::after {
  content: " ";

  display: block;

  width: 54px;
  height: 54px;
  margin: 8px;
  border-radius: 50%;
  border: 6px solid var(--secondary);
  border-color: var(--secondary) transparent var(--secondary) transparent;

  animation: rotate360 1.2s linear infinite;
  -webkit-animation: rotate360 1.2s linear infinite;
  -moz-animation: rotate360 1.2s linear infinite;
  -o-animation: rotate360 1.2s linear infinite;
}

.products .filter-products .f-body {
  position: relative;

  overflow: hidden;

  transition: height 0.3s;
  -webkit-transition: height 0.3s;
  -moz-transition: height 0.3s;
  -ms-transition: height 0.3s;
  -o-transition: height 0.3s;
}

.products .filter-products .f-body .content {
  position: relative;

  display: grid;
  grid-template-columns: repeat(auto-fill, 300px);
  justify-content: space-evenly;
  gap: 5px;

  padding: 30px 60px;
}

.products .filter-products .f-body .content::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;
  background-color: var(--white);
  z-index: -1;
  opacity: 0;
  visibility: hidden;
}

.products .filter-products .f-body .content.charging::after {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.products .filter-products .f-body .product-box {
  padding: 10px 0;
  border: 4px solid var(--primary);
  margin-bottom: 15px;
  border-radius: 4px;

  cursor: pointer;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -ms-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
}

.products .filter-products .f-body .product-box:hover {
  border: 4px solid var(--secondary-hover);
}

.products .filter-products .f-body .product-box .title {
  font-size: 18px;
  color: var(--black);
  text-decoration: underline var(--secondary) 2px;
  font-style: italic;

  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -ms-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
}

.products .filter-products .f-body .product-box:hover .title {
  color: var(--primary-hover);
}

.products .filter-products .f-body .product-box .product-info {
  padding: 10px 5px 0px 5px;
  font-weight: 500;
  text-transform: uppercase;
}

.products .filter-products .f-body .product-box .product-info p {
  margin-bottom: 0;
}

.products .filter-products .f-body .modal-product .modal-header {
  background-color: var(--primary);
  border-bottom: 2px solid var(--secondary);
}

.products .filter-products .f-body .modal-product .modal-title {
  color: var(--white);
}

.products .filter-products .f-body .modal-product .modal-body {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
}

.products .filter-products .f-body .modal-product .modal-body .code {
  padding: 0 10px;

  text-align: center;
  color: var(--black);
  font-size: 24px;
  text-transform: uppercase;
}

.products .filter-products .f-body .modal-product .modal-footer {
  border-top: 0;
}

.products .filter-products .f-body .modal-product .modal-footer .btn {
  background-color: var(--secondary);
  border: 2px solid var(--secondary);

  color: var(--white);
  font-weight: 900;
  text-transform: uppercase;
}

.products .filter-products .f-body .modal-product .modal-footer .btn:hover {
  background-color: var(--white);
  border-color: var(--secondary-hover);
  color: var(--secondary-hover);
}

.products .filter-products .f-body .contLoader{
  position: absolute;
  z-index: -9999;
  left: 0;
  top: 0;

  display: flex;
  justify-content: center;
  align-items: center;

  width: 100%;
  height: 100%;
  background-color: var(--white);
  opacity: 0;
}

.products .filter-products .f-body .contLoader.show{
  z-index: 2;
  opacity: 1;

  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.products .filter-products .f-body .contLoader.show .bodyLoader {
  display: inline-block;

  overflow: visible;
  width: 80px;
  height: 80px;
}

.products .filter-products .f-body .contLoader.show .bodyLoader::after {
  content: " ";

  display: block;

  width: 64px;
  height: 64px;
  margin: 8px;
  border-radius: 50%;
  border: 6px solid var(--secondary);
  border-color: var(--secondary) transparent var(--secondary) transparent;

  animation: rotate360 1.2s linear infinite;
  -webkit-animation: rotate360 1.2s linear infinite;
  -moz-animation: rotate360 1.2s linear infinite;
  -o-animation: rotate360 1.2s linear infinite;
}

@media (max-width: 400px) {
  .products .filter-products .f-head .filters {
    grid-template-columns: 1fr;
  }  

  .products .filter-products .f-head .filters .btn-filter {
    font-size: 12px;
  }

  .products .filter-products .f-head .filters .dropdown-toggle-split {
    font-size: 18px;
  }

  .products .filter-products .f-body .content {
    padding: 30px 0px;
    grid-template-columns: repeat(auto-fill, 230px);
  }  
}

@media (max-width: 600px) {
  .products .dinamic-slider {
    background-image: url(../img/slider/products/p-bg-2.png);
    padding-top: 110%;
  }
  .products .dinamic-slider .tns-outer {
    width: 100%;
  }
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq {
  overflow: hidden;
}

.faq .faq-list {
  padding: 0 100px;
}

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

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

.faq .faq-list li {
  padding: 20px;
  background: var(--white);
  border-radius: 4px;
  position: relative;
}

.faq .faq-list a.collapse {
  display: block;
  position: relative;
  font-family: var(--font-title);
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: var(--primary-hover);
}

.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: #343a40;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.faq .faq-list a.collapsed:hover {
  color: var(--primary);
}

.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 .info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 20px rgba(65, 76, 100, 0.05);
  padding: 20px 0 30px 0;
}

.contact .info-box i {
  font-size: 32px;
  color: var(--primary);
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #ffeeba;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .formularioContacto {
  box-shadow: 0 0 20px rgba(65, 76, 100, 0.05);
  padding: 30px;
}

.contact .formularioContacto .linksgrc {
  margin-top: 15px;
}

.contact .formularioContacto .linksgrc a {
  color: var(--secondary);
}

.contact .formularioContacto .linksgrc a:hover {
  color: var(--secondary-hover);
}

.contact .formularioContacto input,
.contact .formularioContacto textarea {
  border-radius: 4px;
  box-shadow: none;
  font-size: 14px;
}

.contact .formularioContacto input:focus,
.contact .formularioContacto textarea:focus {
  border-color: var(--primary);
}

.contact .formularioContacto input {
  padding: 10px 15px;
}

.contact .formularioContacto textarea {
  padding: 12px 15px;
}

.contact .formularioContacto #cf-send {
  background: var(--primary);
  border: 0;
  padding: 10px 30px;
  color: var(--white);
  font-weight: 900;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
  border-radius: 50px;
}

.contact .formularioContacto #cf-send:hover {
  background: var(--primary-hover);
}

.contact .formularioContacto .loaderForm{
  height: 0px;
  margin-bottom: 0px;
  overflow: hidden;

  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.contact .formularioContacto .loaderForm.show {
  display: inline-block;
  overflow: visible;
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
}

.contact .formularioContacto .loaderForm.show:after {
  content: " ";

  display: block;

  width: 64px;
  height: 64px;
  margin: 8px;
  border-radius: 50%;
  border: 6px solid var(--primary);
  border-color: var(--primary) transparent var(--primary) transparent;

  animation: rotate360 1.2s linear infinite;
  -webkit-animation: rotate360 1.2s linear infinite;
  -moz-animation: rotate360 1.2s linear infinite;
  -ms-animation: rotate360 1.2s linear infinite;
  -o-animation: rotate360 1.2s linear infinite;
}

.contact .formularioContacto .invalidMsg{
  padding: 0;
  margin: 0;
  height: 0;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;

  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.contact .formularioContacto .invalidMsg.show{
  visibility: visible;
  opacity: 1;
  background-color: #fff;
  margin-bottom: 16px;
  border-radius: 5px;
  box-shadow: 0 0 0 1.8pt #fe3f3f;
  -webkit-box-shadow: 0 0 0 1.8pt #fe3f3f;
  padding: 5px 10px;
  margin-top: 15px;
  min-height: 35px;
  height: 100%;
}

.contact .formularioContacto .invalidMsg p{
  padding: 0;
  margin: 0;

  color: #fe3f3f;
  font-weight: 600;
  text-transform: uppercase;
  white-space: pre-wrap;

  cursor: default;
}

.contact .formularioContacto .invalidMsg.show.send{
  box-shadow: 0 0 0 1.8pt #1ba342;
  -webkit-box-shadow: 0 0 0 1.8pt #1ba342;
}

.contact .formularioContacto .invalidMsg.send p{
  color: #1ba342;
}

.grecaptcha-badge {
  visibility: hidden;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: var(--black);
  font-size: 14px;
  background: #f4f5f8;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #fafafc;
}

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

#footer .footer-top .footer-contact h4 {
  font-size: 22px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: var(--font-default);
  color: var(--black);
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #444444;
  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: var(--primary);
  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;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: var(--primary);
}

#footer .footer-newsletter {
  font-size: 15px;
}

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

#footer .footer-newsletter form {
  margin-top: 30px;
  background: var(--white);
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  text-align: left;
  border: 1px solid #e1e4ec;
}

#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: -1px;
  right: -1px;
  bottom: -1px;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: var(--primary);
  color: var(--white);
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-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: var(--primary-hover);
}

#footer .credits {
  padding-top: 5px;
  font-size: 13px;
}

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

#footer .social-links a:hover {
  background: var(--primary-hover);
  color: #fff;
  text-decoration: none;
}

@-webkit-keyframes rotate360 {
  0% {
    -webkit-transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes rotate360 {
  0% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}