/**
* Template Name: Groovin - v2.2.1
* Template URL: https://bootstrapmade.com/groovin-free-bootstrap-theme/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

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

a {
  color: #C3E764;
}

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

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

/*--------------------------------------------------------------
# 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: 4px;
  background: #C3E764;
  color: #000;
  transition: all 0.4s;
  /*outline: 1px solid #000;*/
  box-shadow: 0 0 0 1pt #000;
}

.back-to-top i:hover {
  background: #98BE33;
  color: #fff;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  -wekbit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;

  z-index: 997;
  padding: 15px 0;
  border-bottom: 3px solid rgb(203, 211, 182);

  background: radial-gradient(#686868, #585858);
}

#header:hover {
  border-bottom: 3px solid rgb(195, 231, 100);
}

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

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

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

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.navbar{
  background-color: transparent!important;
}

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

.navbar ul {
  display: flex;
}

.navbar ul > li {
  position: relative;
  white-space: nowrap;
  padding: 10px 0 10px 22px;
}

.navbar a {
  display: block;
  position: relative;
  color: rgb(255, 255, 255);
  transition: 0.3s;
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  padding: 0 10px;
  text-transform: uppercase;
}

.navbar ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: #C3E764;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before, .navbar li:hover > a:before, .navbar .active > a:before {
  visibility: visible;
  width: 100%;
}

.navbar a:hover, .navbar .active > a, .navbar li:hover > a {
  color: rgb(255, 255, 255);
}

.navbar .drop-down ul {
  display: block;
  position: absolute;
  left: 22px;
  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: #2a2a2a;
}

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

.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: rgba(0, 0, 0, 0.8);
  border-radius: 4px;
  padding: 6px 25px 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 13px;
  display: inline-block;
  text-transform: uppercase;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  border: 2px solid #C3E764;
}

.get-started-btn:hover {
  background: #C3E764;
  color: #514949;
  opacity: 1;
  font-weight: 600;
  box-shadow: 0 0 0 1pt #000000;
}

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

/* Mobile Navigation */
.mobile-nav-toggle {
  position: relative;
  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;
}

@media(max-width: 900px){
    .mobile-nav-toggle {
    position: relative;
    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;
  }
}


@media(max-width: 768px){
    .mobile-nav-toggle {
    position: relative;
    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;
  }
}

@media(max-width: 600px){
    .mobile-nav-toggle {
    position: relative;
    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: #000;
}

.mobile-nav {
  position: relative;
  right: 50vh;
  bottom: 50vh;
  /*left: 1vh;*/
  /*top: 1vh;*/
  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: #2a2a2a;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #C3E764;
  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(17, 17, 17, 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-color: rgba(17, 17, 17, 0.8);
  /* overflow: hidden; */
  padding: 0;
}

#hero .carousel-item {
  width: 100%;
  /* height: 100vh; */
  position: relative;
}

#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .carousel-content {
  text-align: center;
}

#hero h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
}

#hero h2 span {
  color: #C3E764;
}

#hero p {
  width: 80%;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #fff;
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-left,
#hero .carousel-inner .active.carousel-item-right {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-left,
#hero .carousel-inner .carousel-item-prev.carousel-item-right {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-left,
#hero .carousel-inner .active.carousel-item-right {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero .carousel-control-prev, #hero .carousel-control-next {
  width: 10%;
  opacity: 1;
}

#hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
  background: none;
  font-size: 38px;
  line-height: 1;
  width: auto;
  height: auto;
  background: transparent;
  border-radius: 50px;
  padding: 10px;
  transition: 0.3s;
  color: rgba(0, 0, 0, 0.7);
  /* border: 1.5px solid transparent !important; */

}

#hero .carousel-control-next-icon:hover, #hero .carousel-control-prev-icon:hover {
  color: rgba(0, 0, 0, 0.4);
}

#hero .carousel-indicators li {
  cursor: pointer;
  background: #fff;
  border: 1.5px solid #6b7e39 !important;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: .6;
  transition: 0.3s;
}

#hero .carousel-indicators li.active {
  opacity: 1;
  background: #C3E764;
}

#hero .btn-get-started {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 32px 12px 32px;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  text-transform: uppercase;
  border: 2px solid #C3E764;
  background: #C3E764;
}

#hero .btn-get-started:hover {
  background: #6ab82a;
  border-color: #6ab82a;
  color: #fff;
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 28px;
  }
}

@media (min-width: 1024px) {
  #hero p {
    width: 60%;
  }
  #hero .carousel-control-prev, #hero .carousel-control-next {
    width: 5%;
  }
}

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

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

.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: 0;
  color: #22241B;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  bottom: 1;
  width: 26rem;
  height: 0.5rem;
  left: calc(50% - 13rem);
  background: #C3E764;
  /*z-index: 1000;*/
}

@media(max-width: 450px){
  .section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  bottom: 1;
  width: 20rem;
  height: 0.5rem;
  left: calc(50% - 10rem);
  background: #C3E764;
  z-index: 1000;
}

}

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

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content {
  padding: 30px 0;
}

.about .content h3 {
  font-weight: 700;
  font-size: 34px;
}

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

.about .content .icon-box{
  margin-top: 25px;
  padding: 1rem;
  border-radius: 4px;
}

.about .content .icon-box p a{
  color: #000;
  font-weight: 600;

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

.about .content .icon-box:hover p a{
  color: #C3E764;
  cursor: pointer;
}

.about .content .icon-box ul li:hover{
  color: #C3E764;
}

.about .content .icon-box, .about .content .icon-box h4, .about .content .icon-box i, .about .content .icon-box ul{
  transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
  -ms-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
}

.about .content .icon-box:hover{
  background-color: #252323;
  cursor: default;
}

.about .content .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 60px;
}

.about .content .icon-box:hover h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 60px;
  color: #fff;
}

.about .content .icon-box:hover ul {
  color: rgb(196, 187, 187);
}

.about .content .icon-box i {
  font-size: 48px;
  float: left;
  color: #40413f;
}

.about .content .icon-box:hover i {
  font-size: 48px;
  float: left;
  color: #C3E764;
}
/* 
.about .content .icon-box:nth-child(1) i {
  font-size: 40px;
  float: left;
  color: #C3E764;
} */

.about .content .icon-box p {
  font-size: 15px;
  color: #848484;
  margin-left: 60px;
}

.about .image {
  background: url("../img/about.jpg") center center no-repeat;
  background-size: cover;
  min-height: 400px;
}

@media (max-width: 991px) {
  .about .image {
    text-align: center;
  }
  .about .image img {
    max-width: 80%;
  }
}

@media (max-width: 667px) {
  .about .image img {
    max-width: 100%;
  }
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding: 0 0 30px 0;
  background: #282525;
}

.counts .count-box {
  padding: 30px;
  width: 100%;
}

.counts .count-box i {
  display: block;
  font-size: 44px;
  color: #C3E764;
  float: left;
}

.counts .count-box span {
  font-size: 48px;
  line-height: 40px;
  display: block;
  font-weight: 700;
  color: #fff;
  margin-left: 60px;
}

.counts .count-box p {
  padding: 15px 0 0 0;
  margin: 0 0 0 60px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  color: #D5C5C5;
}

.counts .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #505050;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: ease-in-out 0.3s;
}

.counts .count-box a:hover {
  color: #777777;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  padding-top: 40px;
  padding-bottom: 40px;
  text-align: center;
}

.clients img {
  position: relative;
  max-width: 45%;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  display: inline-block;
  padding: 15px 0;
  filter: grayscale(100);
}

.clients .box{
  position: relative;
  width: 100%;
}

.clients .tns-controls{
  margin-top: 1rem;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.clients .tns-controls button{
  border: none;
  background: none;
}

.clients .tns-controls button i{
  font-size: 2rem;
  color: rgb(92, 92, 92);
  /* background-color: #000; */
  border-radius: 50%;
  border: 0px;
  /* box-shadow: #2D2B2B -2pt -1pt 5pt 0pt; */
}

.clients img:hover {
  filter: none;

  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  -moz-transform: scale(1.1);
}

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

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  margin-bottom: 20px;
  text-align: center;
}

.services .icon {
  display: flex;
  justify-content: center;
}

.services .icon i {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 50%;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -ms-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  color: #C3E764;
  font-size: 40px;
  overflow: hidden;
  padding-top: 20px;
  box-shadow: 0px 0 25px rgba(0, 0, 0, 0.15);
}

.services .icon-box:hover .icon i {
  box-shadow: 0px 0 25px rgba(92, 159, 36, 0.3);
}

.services .title {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 18px;
  position: relative;
  padding-bottom: 15px;
}

.services .title a {
  color: #444444;
  transition: 0.3s;
}

.services .title a:hover {
  color: #C3E764;
}

.services .title::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 2px;
  background: #C3E764;
  bottom: 0;
  left: calc(50% - 25px);
}

.services .description {
  line-height: 24px;
  font-size: 14px;
}

.serviciosT .icon i, .serviciosT h4, .serviciosT{
  -webkit-transition: all 0.4s ease-in;
  -ms-transition: all 0.4s ease-in;
  -o-transition: all 0.4s ease-in;
  -moz-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
}

.serviciosT:hover .icon i{
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  /*box-shadow: 5px 5px rgba(0, 0, 0, 0.2);*/
}

.serviciosT:hover ~ .serviciosT .icon i, .serviciosT2:hover ~ .serviciosT .icon i, .serviciosT3:hover ~ .serviciosT .icon i, .serviciosT4:hover ~ .serviciosT .icon i, .serviciosT5:hover ~ .serviciosT .icon i, .serviciosT6:hover ~ .serviciosT .icon i{
  transform: scale(0.8);
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  box-shadow: none;
}

/*
.serviciosT2:hover .serviciosT{
  transform: scale(0.9);
  -webkit-transform: scale(0.9);
  -ms-transform: scale(0.9);
  -o-transform: scale(0.9);
  box-shadow: none;
}
.serviciosT3:hover .serviciosT{
  transform: scale(0.9);
  -webkit-transform: scale(0.9);
  -ms-transform: scale(0.9);
  -o-transform: scale(0.9);
  box-shadow: none;
}
.serviciosT4:hover .serviciosT{
  transform: scale(0.9);
  -webkit-transform: scale(0.9);
  -ms-transform: scale(0.9);
  -o-transform: scale(0.9);
  box-shadow: none;
}
.serviciosT5:hover .serviciosT{
  transform: scale(0.9);
  -webkit-transform: scale(0.9);
  -ms-transform: scale(0.9);
  -o-transform: scale(0.9);
  box-shadow: none;
}
.serviciosT6:hover .serviciosT{
  transform: scale(0.9);
  -webkit-transform: scale(0.9);
  -ms-transform: scale(0.9);
  -o-transform: scale(0.9);
  box-shadow: none;
}*/

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us{
  background-color: #2D2B2B;
}

.why-us h2{
  color: #fff;
}

.why-us p{
  color: #CBCACA;
}

.why-us .box {
  padding: 50px 30px;
  box-shadow: 0px 2px 15px rgba(255, 255, 255, 0.1);
  transition: all ease-in-out 0.3s;
}

.why-us .box span {
  position: relative;
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}

.why-us .box span {
  position: relative;
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}

.why-us .box{
  position: relative;
  min-height: 20rem;
}

.why-us .box::after{
  content: "";
  position: absolute;
  width: 100%;
  background-color: #C3E764;
  height: 1rem;
  bottom: 0;
  left: 0;
  /* left: calc(50% - 10.9rem); */
}


/* .why-us .box span::after {
  content: "";
  position: absolute;
  width: 21.9rem;
  background-color: #C3E764;
  height: 1rem;
  bottom: 0;
  left: calc(50% - 10.9rem);
} */

.why-us .box h4 {
  font-size: 24px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0;
  color: #fff;
}

.why-us .box p {
  color: #aaaaaa;
  font-size: 15px;
  margin: 0;
  padding: 0;
}

.why-us .box:hover {
  background: #C3E764;
  padding: 30px 30px 70px 30px;
  box-shadow: 0px 2px 15px rgba(255, 255, 255, 0.1);

}

.why-us .box:hover span, .why-us .box:hover h4, .why-us .box:hover p {
  color: #000;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

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

.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  color: #fff;
  background: #C3E764;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(42, 42, 42, 0.7);
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(42, 42, 42, 0.7);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap img {
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 20px;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  font-style: italic;
}

.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  margin: 0 5px 0 0;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #8ed851;
}

.portfolio .portfolio-wrap:hover::before {
  opacity: 1;
}

.portfolio .portfolio-wrap:hover img {
  transform: scale(1.2);
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  background: #fff;
  padding: 60px 0;
}

.team .member {
  text-align: center;
  margin-bottom: 20px;
  background: #343a40;
  position: relative;
}

.team .member .member-info {
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
}

.team .member .member-info-content {
  margin-top: -50px;
  transition: margin 0.2s;
}

.team .member:hover .member-info {
  background: rgba(0, 0, 0, 0.7);
  opacity: 1;
  transition: 0.4s;
}

.team .member:hover .member-info-content {
  margin-top: 0;
  transition: margin 0.4s;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
  color: #fff;
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #fff;
}

.team .member .social {
  margin-top: 15px;
}

.team .member .social a {
  transition: color 0.3s;
  color: #fff;
}

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

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 20px;
  background: #f7f7f7;
  text-align: center;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.pricing .box h3 {
  font-weight: 400;
  padding: 15px;
  margin-top: 15px;
  font-size: 18px;
  font-weight: 600;
  color: #2a2a2a;
}

.pricing .box h4 {
  font-size: 42px;
  color: #C3E764;
  font-weight: 500;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 20px;
}

.pricing .box h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing .box h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}

.pricing .box ul {
  padding: 0;
  list-style: none;
  color: #2a2a2a;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing .box ul li {
  padding-bottom: 16px;
}

.pricing .box ul i {
  color: #C3E764;
  font-size: 18px;
  padding-right: 4px;
}

.pricing .box ul .na {
  color: #ccc;
  text-decoration: line-through;
}

.pricing .box .btn-wrap {
  padding: 15px;
  text-align: center;
}

.pricing .box .btn-buy {
  display: inline-block;
  padding: 10px 40px 12px 40px;
  border-radius: 4px;
  border: 2px solid #C3E764;
  color: #C3E764;
  font-size: 14px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  transition: 0.3s;
}

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

.pricing .recommended {
  background: #C3E764;
}

.pricing .recommended h3, .pricing .recommended h4, .pricing .recommended h4 span, .pricing .recommended ul, .pricing .recommended ul .na {
  color: #fff;
}

.pricing .recommended .btn-buy {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.pricing .recommended .btn-buy:hover {
  background: #fff;
  border-color: #fff;
  color: #C3E764;
}

/*--------------------------------------------------------------
# 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: "Poppins", 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: #9cdc66;
}

.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;
}

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

.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 .contact-info {
  margin-bottom: 20px;
  text-align: center;
}

.contact .contact-info i {
  font-size: 48px;
  display: inline-block;
  margin-bottom: 10px;
  color: #C3E764;
}

.contact .contact-info address, .contact .contact-info p {
  margin-bottom: 0;
  color: #000;
}

.contact .contact-info h3 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: bold;
  text-transform: uppercase;
  color: #999;
}

.contact .contact-info a {
  color: #000;
}

.contact .contact-info a:hover {
  color: #C3E764;
}

.contact .contact-address, .contact .contact-phone, .contact .contact-email {
  margin-bottom: 20px;
}

.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;
  height: auto;
  padding: 10px 15px;
  border-radius: 4px;
}

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

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

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

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

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

@media (min-width: 768px) {
  .contact .contact-phone {
    border-left: 1px solid #383030;
    border-right: 1px solid #383030;
    transition: all 0.3s ease-in;
    -webkit-transition: all 0.3s ease-in;
    -ms-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
  }
  .contact .contact-address, .contact .contact-phone, .contact .contact-email {
    padding: 20px 0;
  }

  .contact .contact-phone:hover{
  border: none;
  }


}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f6f6f6;
  min-height: 40px;
  margin-top: 72px;
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 400;
}

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

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

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

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

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

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

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

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

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

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

.portfolio-details .portfolio-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;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .portfolio-details .portfolio-info {
    position: static;
    margin-top: 30px;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #111111;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  background: #1d1d1d;
  border-bottom: 1px solid #2f2f2f;
  padding: 60px 0 30px 0;
}

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

#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Roboto", sans-serif;
  color: #fff;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #2a2a2a;
  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: #C3E764;
  color: #fff;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  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: #8ed851;
  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: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #81d33d;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}

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

#footer .footer-top .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #C3E764;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

#footer .footer-top .footer-newsletter form input[type="submit"]:hover {
  background: #6ab82a;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .copyright span{
  color: #C3E764;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

/*Nuevo*/

.tlf-top{
  color: #2E2C2C;
}

.tlf-top b{
  color: #2E2C2C;
  font-size: 18px;
}

.btn-Top{
  box-shadow: none;
  border: 2px solid #C3E764;
  background-color: #C3E764;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
  -ms-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  box-shadow: 0 0 0pt 1pt #000000;
  outline: none;
  width: 4rem!important;
}

.btn-Top:hover{
  outline: none;
  box-shadow: none;
  border: 2px solid #3C3F39;
  background-color: #3C3F39;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 4px;
  color: #C3E764;
  box-shadow: 0 0 0pt 1pt #C3E764;
}
.btn-Top:focus{
  outline: none;
  box-shadow: none;
  border: 2px solid #3C3F39;
  background-color: #3C3F39;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 4px;
  color: #C3E764;
  box-shadow: 0 0 0pt 1pt #C3E764;
}


.quick-contact input::placeholder{

  color: #2E2C2C;
  opacity: 0.5;

}

.quick-contact input:focus::placeholder{

  opacity: 1;
}

.quick-contact input{

  color: #000000;
  background: transparent;
  border: none;
  border-bottom: 2px solid #C3E764;
  transition: border 0.3s ease-in;
  -webkit-transition: border 0.3s ease-in;
  -ms-transition: border 0.3s ease-in;
  -o-transition: border 0.3s ease-in;
  -moz-transition: border 0.3s ease-in;
}

.quick-contact input:focus{

  background: transparent;
  border: none;
  outline: 2px solid #C3E764;
  box-shadow: 0 0 1pt 2pt #070805;


}

.collapse{
  transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
}

.titleIngreso h4{
  color: #2E3027;

}

.formIngreso input::placeholder{

  color: #000;
  opacity: 0.6;
}

.formIngreso input{

  color: #000;
  background: #e0dede;
  border: 2px solid #C3E764;
  transition: all 0.2s ease-out;
  -webkit-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  width: 8rem;
  padding: 2px 5px;

}

.formIngreso input:nth-child(2){
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.formIngreso input:nth-child(3){
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  margin-left: 1rem;
}

.formIngreso input:focus{

  border: 2px solid #C3E764;
  outline: none;
  width: 11rem;
  box-shadow: 0 0 4pt 1.5pt #d3f17e;
  z-index: 20;
}

.formIngreso input:focus::placeholder{
  opacity: 1;
}

.formIngreso button{
  box-shadow: none;
  border: none;
  padding: 4px 12px;
  background-color: #C3E764;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 4px;
  text-transform: uppercase;
  transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  box-shadow: 0 0 0pt 1pt #585858;
  margin-left: 1rem;
  color: #585858;
}

.formIngreso button:hover, .formIngreso button:focus{
  outline: none;
  background-color: #e3fc9e;
}

@media (max-width: 530px) {
  .formIngreso{
    flex-direction: column;
  }

  .formIngreso input:nth-child(3){
    border-radius: 10px;
    margin-left: 0;
    margin-top: 0.5rem;
  }

  .formIngreso input:nth-child(2){
    border-radius: 10px;
    margin-left: 0;
  }

  .formIngreso button{
    margin-left: 0;
    margin-top: 0.5rem;
  }
}

.contact-info div{
  transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
  -ms-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
}

.contact-info div:hover{
  transform: scale3d(1.1, 1.1, 1.0);
  -webkit-transform: scale3d(1.1, 1.1, 1.0);
  -ms-transform: scale3d(1.1, 1.1, 1.0);
  -o-transform: scale3d(1.1, 1.1, 1.0);
  -moz-transform: scale3d(1.1, 1.1, 1.0);
}

@media (max-width: 768px) {
  .contact-info div:hover{
    transform: scale3d(1.0, 1.0, 1.0);
    -webkit-transform: scale3d(1.0, 1.0, 1.0);
    -ms-transform: scale3d(1.0, 1.0, 1.0);
    -o-transform: scale3d(1.0, 1.0, 1.0);
    -moz-transform: scale3d(1.0, 1.0, 1.0);
  }
}

.contact-info div:hover i{
  transform: rotate(-5deg);
  -webkit-transform: rotate(-5deg);
  -ms-transform: rotate(-5deg);
  -o-transform: rotate(-5deg);
  -moz-transform: rotate(-5deg);
}

.contact-info div:hover h3{
  color: #C3E764;
}

.php-email-form input{

  border: 2px solid transparent;
  border-bottom: 2px solid rgba(38, 41, 30, 0.7);
}

.php-email-form textarea{
  margin-top: 2rem;
  border: 2px solid rgba(38, 41, 30, 0.7);

}

.php-email-form input:focus{

  border: 2px solid transparent;
  border: 2px solid rgba(38, 41, 30, 0.7);
}

.form button{
  border: 1px solid #242520;
  background: #C3E764;
  padding: 6px 10px;
  box-shadow: none;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
  -ms-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
}

.form button:hover{
  outline: none;
  box-shadow: 0 0 1pt 3px rgba(195, 231, 100, 0.8);
  border: 1px solid #C3E764;
  
}
.form button:focus{
  outline: none;
  box-shadow: 0 0 1pt 3px rgba(195, 231, 100, 0.8);
  border: 1px solid #C3E764;
  
}

@media(max-width: 900px){
    .separar{
      display: block !important;
      height: 6rem;
  }
    #desplegar{
      display: block !important;
    }

    .flex-columnM{
      flex-direction: column;
    }

}

@media(max-width: 1000px){
    .flex-columnM{
      flex-direction: column;
    }
    
    .flex-columnM p{
      margin-bottom: 2rem !important;
    }
}

@media(max-width: 600px){
  .flex-rowM{
    flex-direction: column;
    display: flex;
    align-items: center;
  }

  .fixed-top.flex-rowM{
    display: none;
  }

  .flex-rowM input{
    margin-bottom: 1.5rem;
  }

  .flex-rowM button{
    margin-top: 1.5rem;
    width: 50%;
  }

}
#footer h4, #footer h3{
  transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
  -ms-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  padding: 0;

  padding-bottom: 8rem;

}

#footer .f1-Box h4{
  font-size: 1.5rem;
  color: #fff;
}

#footer .f1-Box p{
  font-weight: 600;

}

#footer .f2-Box a{
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid #839c3c;
  border-radius: 4px;
  background-color: #C3E764;
  color: #090505;
  padding: 6px 10px;
  box-shadow: 0 0 4pt 0.1pt #bebebe;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
}

#footer .f2-Box a:hover{
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 4px;
  color: #090505;
  border: 1px solid #839c3c;
  background-color: #C3E764;
  box-shadow: 0 0 5pt 0.5pt #bebebe;

}

#footer:hover h4, #footer:hover h3{
  color: #C3E764;
}

#footer .f3-Box li{
  margin: 1rem 0;
  list-style: none;

}

#footer .f3-Box li span, #footer .f3-Box li i{
  transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
  -ms-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
}

#footer .f3-Box:hover li span{
  color: #C3E764;
}

#footer .f3-Box li:hover i{
  transform: scale(1.2) rotate(20deg);
  -webkit-transform: scale(1.2) rotate(20deg);
  -ms-transform: scale(1.2) rotate(20deg);
  -o-transform: scale(1.2) rotate(20deg);
  color: #C3E764;
  padding-right: 3px;
}

#footer .f4-Box h4{
  text-transform: uppercase;
}

#footer .f4-Box input{
  transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
  -ms-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  box-shadow: 0 0 0 2pt #d2f081;
  /* background-color: rgb(204, 197, 197); */
  outline: none;
  border: none;
  border-radius: 4px;
  width: 12rem;
  margin: 0.5rem 0;

}

#footer .f4-Box button{
  box-shadow: 0 0 1pt 0.4pt #C3E764;
  outline: none;
  padding: 6px 10px;
  border: none;
  border-radius: 4px;
  background: #C3E764;
  font-weight: 600;
  color: #000;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
}

#footer .f4-Box button:hover{
  box-shadow: 0 0 5pt 2pt #C3E764;
  outline: none;
  border-radius: 4px;
}

#footer .f4-Box button:focus{
  box-shadow: 0 0 5pt 2pt #C3E764;
  outline: none;
  border-radius: 4px;
}


#footer .f4-Box input:focus{
  /* border: 0.1px solid #1F1616; */
  box-shadow: 0 0 0 2pt #d2f081;
  width: 14rem;
}
#footer .f4-Box input:focus::placeholder{
  opacity: 1;
  color: #000;
}

#footer .footer-top .f2-Box h4{
  padding-bottom: 2rem;
}

@media(max-width: 768px){
  .f1-Box, .f3-Box, .f4-Box{
    padding-bottom: 2rem;
  }

  .f2-Box{
    padding-bottom: 3rem;
  }
}

#form p{
  margin-top: 0.2rem;
  padding: 4px 8px;
  background-color: #EB9F27;
  border-radius: 4px;
  font-weight: 600;
  border: 2px solid #C38522;
  text-transform: uppercase;
}

#form #Mensaje-P{
  padding: 4px 8px;
  background-color: #EA4646;
  border-radius: 4px;
  font-weight: 600;
  border: 2px solid #A62C2C;
  text-transform: uppercase;
}

#form #Mensaje-E{
  padding: 4px 8px;
  background-color: #45E941;
  border-radius: 4px;
  font-weight: 600;
  border: 2px solid #2EA52B;
  text-transform: uppercase;
}

a.get-started-btn{
  margin: 0px !important;
  color: rgba(0, 0, 0, 0.8);
  border-radius: 4px;
  padding: 6px 25px 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 13px;
  display: inline-block;
  text-transform: uppercase;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  border: 2px solid #C3E764;
}

@media(min-width: 996px){
    a.get-started-btn{
    margin: 0px !important;
    color: rgba(0, 0, 0, 0.8);
    border-radius: 4px;
    padding: 6px 25px 8px 25px;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 13px;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    border: 2px solid #C3E764;
    margin-left: 2rem !important;
  }
}

.group{
  display: flex;
  flex-direction: row;
}

@media(max-width: 576px){
  .logo{
    padding: 1rem 0 !important;
  }
}

@media(max-width: 998px){
    .navbar-nav li{
    padding-left: 0 !important;
  }
}

@media (max-width: 1215px) {
  #hero .carousel-control-prev, #hero .carousel-control-next{
    width: 10% !important;
  }
}

@media (max-width: 615px) {
  #hero .carousel-control-prev, #hero .carousel-control-next{
    width: 15% !important;
  }
}

@media (max-width: 430px) {
  #hero .carousel-control-prev, #hero .carousel-control-next{
    width: 20% !important;
  }
}

.modal-us .modal-content{
  border-radius: 10px;
}

.modal-us .modal-header{
  border-bottom: transparent;
}


.modal-us .modal-header .modal-title{
  font-size: 1.6rem;
  font-weight: 600;
}

.modal-us .modal-header .modal-title i{
  font-size: 1.6rem;
  margin-right: 1rem;
  color: #C3E764;
  background-color: rgb(75, 73, 73);
  padding: 1rem;
  border-radius: 50%;
  box-shadow: 0 0 4pt 1pt rgb(102, 102, 102);
}

.modal-us .modal-header .close{
  color: #94b92e;
  opacity: 0.7;
  font-size: 1.8rem;
}

.modal-us .modal-header .close:hover, .modal-us .modal-header .close:focus{
  color: #94b92e;
  opacity: 1;
  font-size: 1.9rem;
  border: none;
  outline: none;
}

.modal-us .modal-body p{
  padding: 0 1rem;
  line-height: 2rem;
}

.modal-us .modal-footer{
  background-color: rgb(75, 73, 73);
  box-shadow: 0pt -2pt 0pt 0pt #C3E764;
  border-top: none;
}

.modal-us .modal-footer .btn-modal{
  border: 1px solid #000;
  padding: 6px 10px;
  font-weight: 600;
  border-radius: 5px;
  background-color: rgb(190, 184, 184);
  text-transform: uppercase;
  font-size: 0.95rem;

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

.modal-us .modal-footer .btn-modal:hover{
  border: 1px solid #000;
  padding: 6px 10px;
  font-weight: 600;
  border-radius: 5px;
  background-color: rgb(228, 224, 224);
  text-transform: uppercase;
  font-size: 0.95rem;
}

.section-bg-dark{
  border-top: 4px solid #cbd3b6;
  border-bottom: 4px solid #cbd3b6;
  background: #fff;

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

.section-bg-dark:hover{
  border-top: 4px solid #C3E764;
  border-bottom: 4px solid #C3E764;
  background: #fff;
}


input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
  -webkit-appearance: none; 
  margin: 0; 
}

input[type=number] { -moz-appearance:textfield; }

#ad-access .modal-content, #ad-access-response .modal-content{
  border: none;
  box-shadow: 0 0 5pt 1pt #4e4d4d;
}

#ad-access .modal-header, #ad-access-response .modal-header{
  background-color: rgb(68, 63, 63);
}

#ad-access .modal-header h5, #ad-access-response .modal-header h5{
  color: #C3E764;
  /* text-transform: uppercase; */
  font-weight: 600;
  text-align: center;
}

#ad-access #list-access li{
  padding: 10px 0;
}

#ad-access .modal-footer, #ad-access-response .modal-footer{
  box-shadow: 0pt -2pt 0pt 0pt #C3E764;
  border-top: none;
  background-color: rgb(68, 63, 63);
}

#ad-access .modal-footer .btn-access, #ad-access-response .modal-footer .btn-access{
  border: 1px solid #000;
  padding: 6px 10px;
  font-weight: 600;
  border-radius: 5px;
  background-color: rgb(190, 184, 184);
  text-transform: uppercase;
  font-size: 0.95rem;

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

#ad-access .modal-footer .btn-access:hover, #ad-access-response .modal-footer .btn-access:hover{
  border: 1px solid #000;
  padding: 6px 10px;
  font-weight: 600;
  border-radius: 5px;
  background-color: rgb(228, 224, 224);
  text-transform: uppercase;
  font-size: 0.95rem;
}

