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

:root {
  --principal-color: #6ecff6;
  --principal-color-hover: #37bff4;
  --secundary-color: #5c5b5b;
  --third-color: #0460c0;
  --third-color-hover: #186eca;
}

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

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

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

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

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

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: var(--principal-color-hover);
  color: #fff;
}

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

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--principal-color);
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

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

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# main
--------------------------------------------------------------*/
#main {
  margin-top: 0px;
  transition: margin-top 0.2s ease;
}

#main.mt-offset {
  margin-top: 105px;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  background: #fff;
  z-index: 997;
  padding: 15px 0;
  border-bottom: 1px solid #e6f2fb;
}

#header.header-scrolled {
  border-color: #fff;
  box-shadow: 0px 2px 15px rgba(18, 66, 101, 0.08);
}

#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 300;
  letter-spacing: 0.5px;
  font-family: "Poppins", sans-serif;
}

#header .logo a {
  color: #16507b;
}

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

@media (max-width: 992px) {
  #header .logo {
    font-size: 28px;
  }
}

/*--------------------------------------------------------------
# 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 30px;
  font-size: 16px;
  color: #16507b;
  white-space: nowrap;
  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(--principal-color);
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background: var(--principal-color);
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 4px;
  color: #fff;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: var(--principal-color-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: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

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

.navbar .dropdown ul a {
  padding: 10px 20px;
  text-transform: none;
}

.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(--principal-color);
}

.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: #124265;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@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(10, 38, 58, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #124265;
}

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

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

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

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero {
  position: relative;
  margin-top: 0px;
  padding-top: 0;
  min-height: 400px;
  transition: margin-top 0.2s;
}

#hero.charging{
  overflow: hidden;
  height: 400px;
}

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

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

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

  background-color: #fff;  
  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(--third-color);
  border-color: var(--third-color) transparent var(--third-color) 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;
}

#hero.mt-offset {
  margin-top: 105px;
}

#hero .slide .carousel-indicators button {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: transparent;
  border: 4px solid #fff;
}

#hero .slide .carousel-indicators button.active {
  background-color: #fff;
}

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

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

.section-title {
  position: relative;
  text-align: center;
  padding-bottom: 5px;
  margin-bottom: 25px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 130px);
  z-index: 1;

  width: 260px;
  height: 4px;
  background-color: var(--principal-color);
}

.section-title h2 {
  font-size: 48px;
  font-weight: bold;
  padding-bottom: 0;
  color: var(--secundary-color);
}

.section-title.left {
  text-align: left;
}

.section-title.left::after {
  left: 0;

  width: 160px;
}

@media (max-width: 600px) {
  .section-title h2 {
    font-size: 32px;
  }

  .section-title::after {
    left: calc(50% - 75px);
  
    width: 150px; 
  }

  .section-title.left::after {
    left: 0;
  
    width: 120px;
  }
}

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

#home {
  position: relative;
  padding: 0px;
}

#home .benefits {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));

  padding-bottom: 60px;
}

#home .benefits .box {
  display: flex;
  align-items: center;
  justify-content: center;
}

#home .benefits .box > * {
  display: inline-block;
}

#home .benefits .box .icon {
  max-width: 120px;
}

#home .benefits .box .icon img {
  width: 100%;
}

#home .benefits .box .text {
  font-size: 22px;
  margin-left: 15px;
  width: 218px;
}

#home .benefits .box .text span {
  font-weight: 900;
}

#home .promotions {
  position: relative;
  padding-bottom: 60px;
}

@media (max-width: 600px) {
  #home .benefits .box .icon {
    max-width: 80px;
  }

  #home .benefits .box .text {
    font-size: 20px;
  }

  #home .benefits {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}

@media (max-width: 400px) {

  #home .benefits .box {
    margin-bottom: 20px;
  }

  #home .benefits .box .icon {
    max-width: 70px;
  }

  #home .benefits .box .text {
    font-size: 18px;
  }

  #home .benefits {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
  
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

#about {
  position: relative;
  padding: 0px;
}

#about .about-content {
  position: relative;
  background: url(../img/about/about-bg1.jpg);
  background-color: #eee;
  background-size: cover;
  background-position-x: left;
  background-position-y: center;
  padding: 80px 20px;
}

#about .about-us .box {
  margin-bottom: 35px;
}

#about .about-us .title {
  margin-bottom: 5px;

  font-size: 34px;
  font-weight: 900;
  color: var(--third-color);
}

#about .about-us .text {
  font-size: 20px;
  font-weight: 500;
  color: var(--secundary-color);
}

#about .value-us {
  display: flex;
  flex-direction: column;
  align-items: center;

}

#about .value-us .title {
  margin-bottom: 40px;

  font-size: 34px;
  font-weight: 900;
  color: var(--third-color);
}

#about .value-us .box {
  display: flex;
  align-items: center;

  width: 450px;
  margin-bottom: 30px;
}

#about .value-us .icon {
  width: 100%;
  max-width: 100px;
  margin-right: 25px;
}

#about .value-us .icon img {
  width: 100%;
}

#about .value-us .text {
  font-size: 24px;
  font-weight: 600;
}

@media (max-width: 600px) {
  #about .value-us .box {
    width: 300px;
  }
}

@media (max-width: 400px) {
  #about .value-us .box {
    width: 250px;
  }
  #about .value-us .text {
    font-size: 20px;
  }
  #about .value-us .icon {
    width: 100%;
    max-width: 80px;
    margin-right: 15px;
  }
}

/*--------------------------------------------------------------
# Distribution
--------------------------------------------------------------*/

#distribution {
  position: relative;
  padding: 0px;
}

#distribution .distribution-content {
  position: relative;
  background: url(../img/distribution/db-bg.jpg);
  background-color: #eee;
  background-size: cover;
  background-position-x: left;
  background-position-y: center;
  padding: 80px 80px;

  display: flex;
  justify-content: center;
}

#distribution .distribution-content .cont {
  background-color: #0931fba9;
  padding: 40px 60px;
  border-radius: 4px;
  max-width: 1200px;
  width: 100%;
}

#distribution .distribution-content .title {
  font-size: 34px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 900;
  text-align: center;
}

#distribution .distribution-content .cont-title {
  position: relative;
  z-index: 1;
  
  padding-bottom: 20px;
  margin-bottom: 20px;
}

#distribution .distribution-content .cont-title::after {
  content: "";

  position: absolute;
  bottom: 0;
  left: calc(50% - 40%);
  background-color: var(--principal-color);
  height: 5px;
  width: 80%;
}

#distribution .distribution-content .box {
  display: flex;
  align-items: flex-start;

  margin-bottom: 10px;
}

#distribution .distribution-content .icon {
  margin-right: 5px;
}

#distribution .distribution-content .icon img {
  width: 50px;
}

#distribution .distribution-content .text {
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  
  margin-top: 5px;
}

#distribution .distribution-content .cont-btn {
  display: flex;
  justify-content: center;

  width: 100%;
  margin-top: 20px;
}

#distribution .distribution-content .cont-btn .btn-dl {
  background-color: #fff;
  padding: 8px 20px;
  border-radius: 4px;
  opacity: 1;

  color: var(--secundary-color);
  font-weight: 900;

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

#distribution .distribution-content .cont-btn .btn-dl:hover {
  opacity: .6;
}

@media (max-width: 600px) {
  #distribution .distribution-content .cont {
    padding: 25px 10px;
  }
  
  #distribution .distribution-content .title {
    font-size: 28px;
  }

  #distribution .distribution-content .icon img {
    width: 40px;
  }
  
  #distribution .distribution-content .text {
    margin-top: 5px;
    
    font-size: 16px;
  }

  #distribution .distribution-content {
    padding: 30px 30px;
  }  
}

@media (max-width: 350px) {
  #distribution .distribution-content .title {
    font-size: 26px;
  }

  #distribution .distribution-content .icon img {
    width: 35px;
  }
  
  #distribution .distribution-content .text {
    margin-top: 5px;
    
    font-size: 14px;
  }

  #distribution .distribution-content {
    padding: 10px 10px;
  }

  #distribution .distribution-content .cont-btn .btn-dl {
    font-size: 12px;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

#contact {
  position: relative;
  padding-bottom: 0px;
  padding-top: 30px;
}

#contact .cont-form {
  background: url(../img/contact/ct-bg1.jpg);
  background-size: cover;
  background-position-x: 60%;
  background-position-y: center;
  padding: 60px 0;
}

#contact .cont-form .formularioContacto {
  background-color: #6ed0f67c;
  padding: 55px 55px;
  width: 100%;
  max-width: 1200px;
  border-radius: 8px;
}

#contact .cont-form .formularioContacto .form-group {
  margin: 0 0 10px 0;
}

#contact .cont-form .formularioContacto .form-group .form-label {
  margin: 0 0 5px 0;
  padding: 0px;

  font-weight: 600;
}

#contact .cont-form .formularioContacto .form-group .form-control {
  box-shadow: none;
  border-color: #585858;
  border-radius: 4px;
}

#contact .cont-form .formularioContacto .form-group .form-control:focus {
  border-color: var(--third-color);
}

#contact .cont-form .formularioContacto .form-group.linksgrc {
  font-style: italic;
}

#contact .cont-form .formularioContacto .form-group.linksgrc a {
  color: var(--third-color);
}

#contact .cont-form .formularioContacto #cf-send {
  background-color: var(--third-color);
  border: 0;
  padding: 8px 18px;
  border-radius: 4px;

  font-weight: 600;
  color: #fff;

  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

#contact .cont-form .formularioContacto #cf-send:hover {
  background-color: var(--third-color-hover);
}

#contact .cont-form .formularioContacto input[type=number]::-webkit-inner-spin-button, 
#contact .cont-form .formularioContacto input[type=number]::-webkit-outer-spin-button { 
  appearance: none; 
  -webkit-appearance: none; 
  margin: 0; 
}

#contact .cont-form .formularioContacto input[type=number] { 
  appearance: textfield; 
  -moz-appearance: textfield; 
}

#contact .cont-form .hidden-file {
  display: none;
}

#contact .cont-form .file {
  display: flex;
  align-items: center;

  margin-bottom: 10px;
}

#contact .cont-form .file button {
  background-color: var(--third-color);
  border: 0;
  padding: 8px 18px;
  border-radius: 4px;

  font-weight: 600;
  color: #fff;

  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

#contact .cont-form .file button:hover {
  background-color: var(--third-color-hover);
}

#contact .cont-form .file .cont-text {
  margin-left: 10px;
}

#contact .cont-form .file .cont-text .text {
  font-style: italic;
  color: var(--secundary-color);

  cursor: default;
}

#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 #fff;
  border-color: #fff transparent #fff 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 #ff4646;
  -webkit-box-shadow: 0 0 0 1.8pt #ff4646;
  padding: 5px 10px;
  min-height: 35px;
  height: 100%;
}

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

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

@media (max-width: 600px) {
  #contact .cont-form {
    padding: 30px 0;
  }
  #contact .cont-form .formularioContacto {
    padding: 25px 25px;
  }  

  #contact .cont-form .file .cont-text .text {
    display: none;
  }
}

@media (max-width: 350px) {
  #contact .cont-form .formularioContacto {
    padding: 15px 15px;
  }  

  #contact .cont-form label {
    font-size: 14px;
  }

  #contact .cont-form button {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  position: relative;
  padding-top: 0;
}

#footer .footer-top {
  width: 100%;
  max-width: 100%;
}

#footer .footer-top img {
  width: 100%;
}

#footer .footer-bottom {
  background-color: var(--third-color);
  padding-top: 30px;
  padding-bottom: 30px;
  
  font-weight: 600;
  color: #fff;
}

#footer .footer-bottom a {
  opacity: 1;

  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

#footer .footer-bottom a:hover {
  opacity: .6;
}

#footer .footer-bottom .footer-col-1,
#footer .footer-bottom .footer-col-2,
#footer .footer-bottom .footer-col-3 {
  margin-bottom: 20px;
}

#footer .footer-bottom .footer-col-1 {
  padding-right: 100px;
}

#footer .footer-bottom .footer-col-1 .cont-footerLogo {
  width: 100%;
  margin-bottom: 10px;
}

#footer .footer-bottom .footer-col-1 .cont-footerLogo img {
  width: 100%;
  max-width: 410px;
}

#footer .footer-bottom .footer-col-2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#footer .footer-bottom .footer-col-2 .footerLinks {
  padding-left: 0;
  margin: 0;
  list-style: none;
  margin-bottom: 15px;
}

#footer .footer-bottom .footer-col-2 .footerLinks li:not(:last-child) {
  padding-bottom: 15px;
}

#footer .footer-bottom .footer-col-2 .footerLinks li .fl {
  color: #fff;
}

#footer .footer-bottom .footer-col-2 .footerLinks li .fl.toContact {
  background-color: var(--principal-color);
  border-radius: 4px;
  padding: 2px 8px;
}

#footer .footer-bottom .footer-col-2 .footerRs {
  display: flex;
  
  width: 100%;
}

#footer .footer-bottom .footer-col-2 .footerRs .icon {
  padding-right: 5px;
}

#footer .footer-bottom .footer-col-3 {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#footer .footer-bottom .footer-col-3 .box {
  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 100%;
}

#footer .footer-bottom .footer-col-3 .box:not(:last-child) {
  padding-bottom: 20px;
}

#footer .footer-bottom .footer-col-3 .box > * {
  display: inline-block;
}

#footer .footer-bottom .footer-col-3 .icon {
  max-width: 80px;
  width: 100%;
  padding-right: 25px;
}

#footer .footer-bottom .footer-col-3 .icon img {
  width: 100%;
}

#footer .footer-bottom .footer-col-3 .text {
  width: 100%;

  color: #fff;
}

#footer .footer-bottom .footer-col-3 .text a {
  color: #fff;
  padding: 0;
  margin: 0;  
  word-wrap: anywhere;
}

@media (max-width: 600px) {
  #footer .footer-bottom .footer-col-1 {
    padding-right: 15px;
  }

  #footer .footer-bottom {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# social-media
--------------------------------------------------------------*/

.cont-social-media {
  position: fixed;
  bottom: 5px;
  right: 5px;
}

.cont-social-media .box {
  max-width: 60px;
  margin-bottom: 10px;
  
  -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;
}

.cont-social-media .box:hover {
  -webkit-transform: translateX(-10px);
  -moz-transform: translateX(-10px);
  -o-transform: translateX(-10px);
  transform: translateX(-10px);
}

/*=============================================
=            keyframes
=============================================*/

/* rotate360 */

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

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

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

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


/*=====  End of keyframes  ======*/