/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@font-face {
  font-family: "Nexa Regular";
  src: url("../fonts/NexaRegular.otf");
}

@font-face {
  font-family: "Nexa Heavy";
  src: url("../fonts/NexaHeavy.otf");
}

body {
  font-family: "Nexa Regular", sans-serif;
  color: #454545;
  background-color: #fff;
}

a {
  color: #bc0923;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: "Nexa Heavy", sans-serif;
  color: #28285B;
}

strong {
  font-family: "Nexa Heavy", sans-serif;
}

a.main-button {
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  border-radius: 10px;
  padding: 15px 30px;
  margin: 0px 0px 30px 0px;
  background-color: #28285B;
  color: #fff;
  letter-spacing: 1.5px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  color: #fff !important;
  white-space: pre;
}

a.main-button:hover {
  background-color: #363668;
  color: #fff !important;
}

a.main-button i {
  margin-top: 1px;
  color: #fff;
}

a.bx-ico i {
  position: relative;
  top:3px;
}

hr {
  border-color: #bebebe;
}

.ancla {
  position: absolute;
  margin-top: -130px;
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  right: 30px;
  bottom: 100px;
  background: #358AC6;
  color: #fff;
  transition: display 0.5s ease-in-out;
  z-index: 9990;
}

.back-to-top i {
  font-size: 24px;
  position: absolute;
  top: 8px;
  left: 8px;
}

.back-to-top:hover {
  color: #fff;
  background: #4ca2df;
  transition: background 0.2s ease-in-out;
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
  height: 70px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  padding: 10px 0;
  background: #28285B;
}

#header.header-scrolled {
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);
}

#header .logo {
  margin: 0;
  padding: 4px 0;
  max-width: 180px;
}

#header .logo h1 a, #header .logo h1 a:hover {
  color: #635551;
  text-decoration: none;
}

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

#main {
  z-index: 3;
}


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

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  float: left;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #fff;
  padding: 15px 15px;
  transition: 0.3s;
  font-size: 14px;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #c9c9c9;
  text-decoration: none;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  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: ease all 0.3s;
  border-radius: 8px;
}

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

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

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

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

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

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

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: -1px;
  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";
  }
}
*/

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 20px;
  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: #fff;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  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: #473d3a;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #6d6d6d;
  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(43, 37, 35, 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;
}


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

section h1 {
  line-height: 40px;
  margin-bottom: 20px;
}

@media screen and (max-width: 600px) {
  section h1 {
    font-size: 30px;
    line-height: 30px;
  }
}

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

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

.section-title h2 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #635551;
}

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


/*--------------------------------------------------------------
# Home - Carousel
--------------------------------------------------------------*/

#carousel-home {
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: #000;
}

.carousel-home-slide {
  width: 100%;
  height: calc(70vh - 70px);
  text-align: center;
}

.carousel-home-slide .carousel-text {
  width: 100%;
  top: calc(50% - 50px);
  position: absolute;
  padding: 20px;
}

.carousel-text h1 {
  margin-bottom: 10px;
  color: #fff !important;
  text-shadow: 0px 2px 15px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
}

.carousel-text .main-button {
  border: 2px solid #FFFFFF;
  border-radius: 10px;
  background: transparent;
  color: #fff;
  padding: 10px 25px;
}

.carousel-text .main-button:hover {
  background: #fff;
  color: #000 !important;
} 

@media screen and (max-width: 450px) {
  .carousel-text h1 {
    font-size: 30px;
  }
  .carousel-home-slide .carousel-text {
    top: calc(50% - 110px);
  }
}

.img1 {
  background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.4)), url(../img/carousel/img1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

/*--------------------------------------------------------------
# Home
--------------------------------------------------------------*/
.home-saldi {
  padding: 80px 0;
  z-index: 3;
  background-image: url(../img/home-saldi.jpg);
  background-size: cover;
  background-position: left;
}

.home-saldi img {
  width: 130px;
  margin-bottom: 40px;
}

.home-areas-de-negocio {
  background: #e9e9ee;
  text-align: center;
}

.home-areas-de-negocio .box {
  background: #FFFFFF;
  box-shadow: 0px 14px 50px rgba(0, 0, 0, 0.15);
  border-radius: 15px;
  text-align: left;
  margin-bottom: 20px;
}

.home-areas-de-negocio .box h2 {
  padding: 20px 20px 0px 20px;
  font-size: 22px;
}

.home-areas-de-negocio .box p {
  display: block;
  min-height: 120px;
  padding: 0px 20px;
}

.home-areas-de-negocio .box a {
  display: block;
  background: #28285B;
  border-radius: 0px 0px 15px 15px;
  text-align: center;
  width: 100%;
  padding: 10px;
  color: #fff;
}

.home-areas-de-negocio .box a:hover {
  background: #303061;
}

.bloque-imagen img {
  width: 100%;
  height: 400px;
  margin-bottom:20px;
}

.bloque-imagen h1 {
  margin-bottom:30px;
}

.bloque-imagen a {
  color: #28285B;
  font-weight: 800;
}

.bloque-imagen a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .bloque-imagen{
    text-align:center !important;
  }
}

.lineas-de-productos {
  background: #28285B;
  color: #fff;
  text-align: center;
  padding-bottom:250px;
}

.lineas-de-productos2{
  position: relative;
  margin-top: -290px;
}

.lineas-de-productos h1 {
  color: #fff;
}

.lineas-de-productos2 .box {
  background:#fff;
  border-radius:20px;
  margin-bottom: 20px;
  text-align: center;

  box-shadow: 0px 14px 50px rgba(0, 0, 0, 0.15);
}

.lineas-de-productos2 .box .image {
  height: 230px;
  background: #000;
  width: 100%;
  border-radius: 19px 19px 0px 0px;
}

.lineas-de-productos2 .box h2 {
  padding: 20px;
  margin: 0;
  font-size: 18px;
}

.lineas-de-productos2 .box p {
  color: #000;
  padding: 0px 20px;
  margin: 0;
  min-height:120px;
}

.lineas-de-productos2 .box a {
  padding: 20px;
  color: #28285B;
  width: 100%;
  display: block;
  font-weight: 800;
}

@media screen and (max-width: 991px) {
  .lineas-de-productos2 .box p{
    min-height: 0px;
  }
}

.frase{
  background-color: #358AC6;
  text-align: center;
  padding: 100px 0px;
  background-image: url(../img/frase-bg.jpg);
  background-size: cover;
  background-position: center center;
}

.frase h1{
  color: #fff;
  line-height: 120%;
}

.home-necesidades {
  text-align: center;
}

.home-necesidades .box {
  background: #FFFFFF;
  box-shadow: 0px 14px 50px rgba(0, 0, 0, 0.15);
  border-radius: 15px;
  text-align: center;
  margin-bottom: 20px;
}

.home-necesidades .box img {
  width: 55px;
  padding: 25px 0 0 0;
}

.home-necesidades .box h2 {
  padding: 20px 20px 0px 20px;
  font-size: 22px;
}

.home-necesidades .box p {
  display: block;
  padding: 0px 20px 20px 20px;
}

.home-necesidades .box a {
  display: block;
  background: #28285B;
  border-radius: 0px 0px 15px 15px;
  text-align: center;
  width: 100%;
  padding: 10px;
  color: #fff;
}

.home-necesidades .box a:hover {
  background: #303061;
}

.home-necesidades .box-address {
  background: #FFFFFF;
  box-shadow: 0px 14px 50px rgba(0, 0, 0, 0.15);
  border-radius: 15px;
  text-align: center;
  margin-bottom: 20px;
  color: #454545;

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

.home-necesidades .box-address a {
  display: block;
  background: #28285B;
  border-radius: 0px 0px 15px 15px;
  text-align: center;
  width: 100%;
  padding: 10px;
  color: #fff !important;
}

.home-necesidades .box-address:hover {
  background: #28285B;
  color: #fff !important;
}

.home-necesidades .box-address:hover h2 {
  color: #fff !important;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.home-nuestras-marcas {
  text-align: center;
  background: #e9e9ee;
}

.home-nuestras-marcas .box {
  background: #FFFFFF;
  box-shadow: 0px 14px 50px rgba(0, 0, 0, 0.15);
  border-radius: 15px;
  text-align: center;
  margin-bottom: 20px;
  height: 120px;
  margin-top: 30px;
}

.home-nuestras-marcas .box img {
  position: absolute;
  left: 35px;
  bottom: 35px;
  height: 90px;
}

.home-nuestras-marcas .box h2 {
  padding:45px 40px 40px 180px;
  color: #28285B;
  font-size: 23px;
  text-align: center;
}

@media screen and (max-width: 530px) {

  .home-nuestras-marcas .box {
    height: 60px;
  }

  .home-nuestras-marcas .box img {
    height: 70px;
  }
  
  .home-nuestras-marcas .box h2 {
    padding-left: 105px;
    position: relative;
    padding-top:18px;
    padding-right:0px;
    font-size: 23px;
  }
}

.home-saldica {
  background: #28285B;
  color: #fff;
  background-image: url(../img/home-saldica-bg.jpg);
  background-position: center center;
  background-size: cover;
}

.home-saldica h1 {
  color: #fff;
}

.home-saldica .box {
  background: #FFFFFF;
  box-shadow: 0px 14px 50px rgba(0, 0, 0, 0.15);
  border-radius: 15px;
  width: 100%;
}

.home-saldica .box .item {
  width: 100%;
  padding: 20px 10px;
  position: relative;
}

.home-saldica .box .item h2 {
  font-size: 20px;
  padding: 0px 10px 0px 100px;
}

.home-saldica .box .item img {
  position: absolute;
  width: 50px;
  top: 50%;
  margin-top: -25px;
  margin-left: 20px;
}

.home-saldica .box .item p {
  color: #000;
  padding: 0px 10px 0px 100px;
  margin: 0 !important;
}

@media screen and (max-width: 991px) {

  .home-saldica h1 {
    text-align: center;
  }
  .home-saldica p {
    text-align: center;
    margin-bottom: 40px;
  }
  .home-saldica .box .item p {
    text-align: left;
  }
}

.page-header {
  background-size: cover;
}

.page-header h1 {
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  padding: 100px;
}

.servicios-intro {
  padding: 100px 0px;
}

.servicios-intro img {
  width: 100%;
}

@media screen and (max-width: 991px) {

  .servicios-intro {
    text-align: center;
  }

  .servicios-intro p {
    padding: 40px 25px 0px 25px;
  }
}

.servicio-section {
  color: #fff;
  background-size: cover;
}

.servicio-section h1,.servicio-section h2,.servicio-section h3 {
  color: #fff;
}

.servicio-section h2 {
  font-size: 32px;
  margin-bottom: 30px;
}

.servicio-section h3 {
  font-size: 25px;
  padding-bottom: 20px;
  padding-top: 20px;
}

.servicio-section span.borde {
  display: inline-block;
  border: 1px solid #fff;
  border-radius: 20px;
  padding: 6px 10px;
  margin-right: 10px;
  white-space: pre;
  margin-bottom: 10px;
}

.servicio-section span.borde i {
  font-size: 20px;
  top: 3px;
  position: relative;
}

.servicio-section .box {
  background: #FFFFFF;
  box-shadow: 0px 14px 50px rgba(0, 0, 0, 0.15);
  border-radius: 15px;
  width: calc(100% - 40px);
  color: #000;
  padding: 20px;
  margin: 20px;
}

.servicio-section .box img {
  width: 100%;
  border-radius: 5px;
}

.servicio-section .box h3 {
  color: #28285B !important;
  padding: 20px 0px;
  font-size: 30px;
}

.servicio-section .box ul {
  padding-bottom: 20px;
  padding-left: 20px;
}

.servicio-section .box .main-button {
  margin-bottom: 0;
  width: 100%;
  text-align: center;
  white-space: inherit;
}

@media screen and (max-width: 991px) {

  .servicio-section .box {
    margin-top: 40px;
  }
}

.section-blog{
  background-color: #358AC6;
  text-align: center;
  padding: 100px 0px;
  background-image: url(../img/blog-section.jpg);
  background-size: cover;
  background-position: center center;
}

.section-blog h1{
  color: #fff;
  line-height: 120%;
}

.productos-uso {
  background: #28285B;
  color: #fff;
  text-align: center;
}

.productos-uso h1 {
  color: #fff;
  padding-bottom: 10px;
}

.productos-uso p {
  padding-bottom: 30px;
  max-width: 600px;
  margin: auto;
}

.productos-uso span.borde {
  display: inline-block;
  border: 1px solid #fff;
  border-radius: 20px;
  padding: 6px 15px;
  margin: 8px 5px;
  white-space: pre;
}

.productos-nuestras-lineas {
  text-align: center;
  padding: 100px 0px;
}

.productos-linea {
  color: #fff;
  background-size: cover;
}

.productos-linea h1,.productos-linea h2,.productos-linea h3 {
  color: #fff;
}

.productos-linea h2 {
  font-size: 32px;
  margin-bottom: 30px;
}

.productos-linea .box {
  background: #FFFFFF;
  box-shadow: 0px 14px 50px rgba(0, 0, 0, 0.15);
  border-radius: 15px;
  width: calc(100% - 80px);
  color: #000;
  padding: 20px;
  margin: 20px 40px;
}

.productos-linea .box img {
  width: 100%;
  border-radius: 5px;
}

.productos-linea .box h3 {
  color: #28285B !important;
  padding: 20px 0px;
  font-size: 30px;
  padding-bottom: 0px;
  text-align: center;
}

.productos-linea .box ul {
  padding-bottom: 0px;
  padding-left: 20px;
}

.productos-linea .box .main-button {
  margin-bottom: 0;
  width: 100%;
  text-align: center;
  white-space: inherit;
  margin-top: 20px;
}

.productos-linea .producto {
  background: #FFFFFF;
  box-shadow: 0px 14px 50px rgba(0, 0, 0, 0.15);
  border-radius: 15px;
  color: #000;
  padding: 20px 20px 20px 120px;
  margin-top: 60px;
  position: relative;
  font-size: 13.5px;
  min-height: 95px;
}

.productos-linea .producto img {
  position: absolute;
  bottom: 20px;
  left: 20px;
}

.productos-linea .producto p {
  margin-bottom: 0;
}

.productos-linea .box .main-button.outline {
  border: 1px solid #28285B;
  background-color: transparent !important;
  color: #28285B !important;
}

@media screen and (max-width: 991px) {
  .productos-linea .box {
    margin-top: 40px;
    width: calc(100% - 30px) !important;
    margin: 40px 15px 20px 15px;
  }
  .productos-linea .producto {
    margin-top: 40px;
  }
}

.productos-2-colum{
  
}

.productos-2-colum .box {
  background:#fff;
  border-radius:20px;
  margin-bottom: 20px;
  text-align: center;

  box-shadow: 0px 14px 50px rgba(0, 0, 0, 0.15);
}

.productos-2-colum .box .image {
  height: 230px;
  background: #000;
  width: 100%;
  border-radius: 19px 19px 0px 0px;
}

.productos-2-colum .box h2 {
  padding: 20px;
  margin: 0;
  font-size: 20px;
}

.productos-2-colum .box p {
  color: #000;
  padding: 0px 20px;
  margin: 0;
  min-height:75px;
  font-size: 15px;
}

.productos-2-colum .box a {
  padding: 20px;
  color: #28285B;
  width: 100%;
  display: block;
  font-weight: 800;
}

@media screen and (max-width: 991px) {
  .productos-2-colum .box p{
    min-height: 0px;
  }
}

.productos-capacidad-productiva {
  background: #e9e9ee;
  text-align: center;
  padding: 80px 0px;
}

.form-field {
  display: inline-block;
  padding: 5px 8px 5px 15px;
  font-size: 16px;
  color: #4d4d4d !important;
  font-weight: 300;
  border: 1px #bbbbbb solid;
  border-radius: 8px;
  margin: 10px;
  outline: none;
  min-height: 45px;
  width: calc(100% - 20px);
}

::placeholder {
  color: #989898;
  }

.form-2-fields{
  display: inline-block;
  width: calc(50% - 23px) !important;
}

@media (max-width: 575px) {
  .form-2-fields {
    width: calc(100% - 20px) !important;
  }
}

.form-select{
  display: inline-block;
  width: calc(50% - 18px) !important;
  white-space: pre;
  margin: 5px 5px 5px 10px;
}

@media (max-width: 575px) {
  .form-select {
    width: calc(100% - 18px) !important;
  }
}

input.main-button {
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  border-radius: 10px;
  padding: 15px 30px;
  margin: 0px 0px 30px 0px;
  background-color: #28285B;
  color: #fff;
  letter-spacing: 1.5px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  color: #fff !important;
  white-space: pre;
  border: none;
}

input.main-button:hover {
  background-color: #363668;
  color: #fff !important;
}

input.main-button i {
  margin-top: 1px;
  color: #fff;
}

button.main-button {
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  border-radius: 10px;
  padding: 15px 30px;
  margin: 0px 0px 30px 0px;
  background-color: #28285B;
  color: #fff;
  letter-spacing: 1.5px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  color: #fff !important;
  white-space: pre;
  border: none;
}

button.main-button:hover {
  background-color: #363668;
  color: #fff !important;
}

button.main-button i {
  margin-top: 1px;
  color: #fff;
}

.contacto-opciones {
  text-align: center;
}

.contacto-opciones .box {
  background: #FFFFFF;
  box-shadow: 0px 14px 50px rgba(0, 0, 0, 0.15);
  border-radius: 15px;
  text-align: center;
  margin-bottom: 20px;
}

.contacto-opciones .box img {
  width: 55px;
  padding: 25px 0 0 0;
}

.contacto-opciones .box h4 {
  padding: 20px 20px 0px 20px;
  display: block;
  font-size: 22px;
}

.contacto-opciones .box p {
  display: block;
  padding: 0px 20px 10px 20px;
}

.contacto-opciones .box a {
  display: block;
  background: #28285B;
  border-radius: 0px 0px 15px 15px;
  text-align: center;
  width: 100%;
  padding: 10px;
  color: #fff;
}

.contacto-opciones .box a:hover {
  background: #303061;
}

/*--------------------------------------------------------------
# Whatsapp Button
--------------------------------------------------------------*/
.whatsapp-button-fixed {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 99;
}

.whatsapp-button-fixed i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50px;
  background: #25D366;
  color: #fff;
  transition: all 0.4s;
}

.whatsapp-button-fixed i:hover {

  color: #fff;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #fff;
  font-size: 14px;
  background: #1F1F4D;
}

#footer .logo {
  max-width: 90px;
  margin-bottom: 20px;
}

#footer .footer-top {
  padding: 30px 0 0px 0;
  background: #28285B;
}

#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: 5;
  color: #fff;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
  text-transform: uppercase;
}

#footer .footer-top a {
  color: #fff;
}

#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: #fff;
  font-size: 18px;

}

#footer .footer-top .footer-links ul li {
  padding: 5px 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: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

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

#footer .social-links {
  margin-top: 20px;
}

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

#footer .social-links a:hover {
  background: #358AC6;
  color: #fff;
  text-decoration: none;
}