
/* ESTILOS GENERALES CSNET */

:root{
	--principal: #6BB601;
	--secundario: #FF7A1F;
	--negro: #131313;
}

@font-face {
	font-family: 'Roboto';
	src: url('/fuentes/Roboto/Roboto-Light.ttf');
	font-style: normal;
	font-weight: 300;
}

@font-face {
	font-family: 'Roboto';
	src: url('/fuentes/Roboto/Roboto-Regular.ttf');
	font-style: normal;
	font-weight: 400;
}

@font-face {
	font-family: 'Roboto';
	src: url('/fuentes/Roboto/Roboto-Bold.ttf');
	font-style: normal;
	font-weight: 700;
}


.fondo-principal{
	background-color: var(--principal);
}

.color-principal{
	color: var(--principal);
}

.boton-principal{
	color: white;
	background-color: var(--principal);
	border: 1px solid var(--principal);
}

.boton-principal:hover{
	color: white;
	background-color: var(--secundario);
	border: 1px solid var(--secundario);
}

.boton-outline-principal{
	color: var(--principal);
	border: 1px solid var(--principal);
}

.boton-outline-principal:hover{
	color: white;
	background-color: var(--principal);
}

body{
    overflow-x: hidden;
	font-family: 'Roboto', sans-serif;
	background-color: white;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	font-size: 1rem;
}

main{
	flex-grow: 1;
}



.boton-clausula{
	width: fit-content;
	border: 1px solid rgb(190, 190, 190);
}

.boton-clausula:focus:not(:focus-visible), .boton-clausula:not(.collapsed){
    color: var(--negro);
    box-shadow: none;
    background-color: transparent;
	border: 1px solid rgb(190, 190, 190);
}

.boton-clausula:not(.collapsed)::after{
    background-image: url('/imagenes/iconos/chevron-down.svg'), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");

}

.card-noticia {
	text-decoration: none;
	color: var(--negro);
	transition: all .2s;
}

.card-noticia:hover {
	color: var(--negro);
	opacity: .7;
}

.noticia a{
	color: var(--principal);
	text-decoration: none;
	transition: all .2s;
}

.noticia a:hover{
	opacity: .7;
}

ul.pagination{
	justify-content: center;
	margin-bottom: 3em;

}

.pagination .page-item.active .page-link{
	background-color: var(--verde1);
	border-color: var(--verde1);
}

.pagination .page-link{
	color: var(--verde1);
}

.pagination .page-link:focus{
	box-shadow: none;
}

.pagination .page-item:first-child .page-link, .pagination .page-item:last-child .page-link{
	border-radius: 0;
}

.pie a{
	color: var(--negro);
	text-decoration: none;
	transition: all .2s;
}

.pie a:hover{
	color: var(--principal);
}

/* FIN DE ESTILOS GENERALES CSNET */

.pie{
	background-color: rgb(234, 238, 241);
}


/* Estilos agripesa web antigua */

@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i|Raleway:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i');
/*font-family: 'Open Sans', sans-serif;
font-family: 'Raleway', sans-serif;*/
/*
================================================
2. Common CSS
================================================
*/
* {
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  color: #3b3b3b;
}
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  font-family: 'Raleway', sans-serif;
}
a {
  color: #7f7f7f;
  transition: all 0.3s ease 0s;
}
p {
  margin: 0 0 20px;
}
a:hover {
  color: #000000;
  text-decoration: none;
}
a, a:hover, a:active, a:focus {
  outline: none;
  text-decoration: none;
}
.no-padding {
  padding: 0 !important;
}
.no-margin {
  margin: 0 !important;
}
.btn, .btn * {
  transition: all 0.3s ease 0s;
}
.offset-top-30 {
  margin-top: 30px;
}
.offset-top-60 {
  margin-top: 60px;
}
.center {
  text-align: center;
}
.green {
  color: #61a500;
  font-weight: 600;
}
section {
  width: 100%;
  float: left;
  padding: 70px 0 70px;
}
section h2 {
  font-size: 24px;
  margin: 0 0 35px 0;
  text-transform: uppercase;
}
section h2 span {
  font-size: 30px;
  display: block;
  color: #6bb600;
  font-weight: 600;
}
section img {
  width: 100%;
  height: auto;
}
h2.slogan{
  font-size: 40px;
  margin: 0px;
  text-transform: uppercase;
}
h2.slogan span{
  font-size: 26px;
  display: block;
  color: #6bb600;
  font-weight: 600;
}

h3.titulo{
  color: #61a500;
}

.sombra {
-webkit-box-shadow: 10px 10px 64px -6px rgba(0,0,0,0.75);
-moz-box-shadow: 10px 10px 64px -6px rgba(0,0,0,0.75);
box-shadow: 10px 10px 64px -6px rgba(0,0,0,0.75);
}

/*
================================================
3. Loader CSS
================================================
*/
#dvLoading {
  background: url(../imagenes/loader.gif) no-repeat center center #fff;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 9999999;
}
/*
================================================
4. Header
================================================
*/
header {
  width: 100%;
  z-index: 99;
}
header.affix.fadeInDown {
  animation-delay: 0s;
  animation-direction: normal;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  animation-name: fadeInDown !important;
  animation-play-state: running;
  animation-timing-function: ease;
}
header .fadeInDown {
  animation-name: none !important;
}
header.affix .top-wrapper {
  display: none;
}
 @-webkit-keyframes fadeInDown {
 from {
 opacity: 0;
 -webkit-transform: translate3d(0, -100%, 0);
 transform: translate3d(0, -100%, 0);
}
 to {
 opacity: 1;
 -webkit-transform: none;
 transform: none;
}
}
 @keyframes fadeInDown {
 from {
 opacity: 0;
 -webkit-transform: translate3d(0, -100%, 0);
 transform: translate3d(0, -100%, 0);
}
 to {
 opacity: 1;
 -webkit-transform: none;
 transform: none;
}
  .affix {
      top: 0;
      width: 100%;
      z-index: 9999 !important;
  }

  .affix + .container-fluid {
      padding-top: 70px;
  }
}

.slider {
  margin-right: auto;
  margin-left: auto;
  max-width: max-content;
}

/*
================================================
5. Top Wrapper
================================================
*/
.top-wrapper {
  padding: 18px 0 15px;
  width: 100%;
  background: #f7f7f7;
  font-size: 13px;
}
.top-wrapper ul {
  margin: 0;
  padding: 0;
}
.top-wrapper ul li {
  display: inline-block;
  padding: 0 20px 0 5px;
  font-size: 1.00em;
}
.top-wrapper ul li:first-child {
  background: none;
}
.top-wrapper ul.social-icons {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 15px 0 0;
    padding: 0;
    list-style: none;
}

.top-wrapper ul.social-icons li i {
    color: #8d8d8d;
    font-size: 1.5rem;
    transition: color 0.25s ease;
}

/* Hover */
.top-wrapper ul.social-icons li i:hover {
    color: #6bb600;
}

/* Accesibilidad teclado */
.top-wrapper ul.social-icons li a:focus-visible i {
    color: #6bb600;
}

.top-wrapper p {
  margin: 0;
  text-align: center;
}
/* Get a Free Quote */
.top-wrapper .quote {
  padding: 0;
  margin: 0;
  display: inline-block;
}
.top-wrapper .quote a {
  background: #000;
  border-radius: 8px;
  padding: 8px 18px;
  font-weight: 600;
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
}
.top-wrapper .quote a:hover {
  background: #6bb600;
}
.top-wrapper .quote a span {
  color: #fff;
  display: inline-block;
  font-size: 14px;
  padding: 5px 5px 0 0;
  vertical-align: top;
}
.top-wrapper .quote .quote-popup {
  background: rgba(0, 0, 0, 0.5) none repeat scroll 0 0;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
  display: none;
}
.top-wrapper .quote .quote-popup .fa.fa-times {
  background: #000000;
  color: #fff;
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px;
  margin: 0;
  font-size: 16px;
  cursor: pointer;
}
.top-wrapper .quote .quote-popup .free-quote {
  bottom: 0;
  height: 490px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 500px;
  background: #6bb601;
  padding: 35px 50px;
  transition: all 0.3s ease 0s;
}
.top-wrapper .quote .quote-popup .free-quote h2 {
  font-size: 26px;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
  padding: 0 0 6px 0;
  line-height: 24px;
  border-bottom: solid 1px #fff;
  margin: 0 0 22px 0;
}
.top-wrapper .quote .quote-popup .free-quote h2 span {
  font-size: 15px;
  font-weight: 300;
  text-transform: capitalize;
}
.top-wrapper .quote form .form-group {
  display: inline-block;
  width: 100%;
}
.top-wrapper .quote form .form-group input, .top-wrapper .quote form .form-group textarea {
  color: #333;
  font-size: 14px;
  height: 50px;
  line-height: 50px;
  padding-left: 2%;
  width: 86%;
  border: 1px solid #e5e5e5;
  margin: 0;
  float: left;
  border-radius: 0 6px 6px 0;
}
.top-wrapper .quote form .form-group textarea {
  border-radius: 6px;
  width: 100%;
  height: 90px;
  line-height: 18px;
  padding: 10px;
}
.top-wrapper .quote form .form-group i {
  float: left;
  width: 14%;
  background: #cecece;
  height: 50px;
  line-height: 50px;
  color: #666;
  text-align: center;
  font-size: 18px;
  border-radius: 6px 0 0 6px;
  padding: 0;
  margin: 0;
}
.top-wrapper .quote form .form-group span {
  float: left;
  width: 14%;
  background: #cecece;
  height: 50px;
  line-height: 50px;
  color: #666666;
  text-align: center;
  font-size: 16px;
  border-radius: 6px 0 0 6px;
  padding: 0;
}
.top-wrapper .quote form .btn {
  background: #000000;
  border: 0 none;
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  padding: 10px 0;
  transition: all 0.3s ease 0s;
  width: 100%;
  text-align: center;
  border-radius: 5px;
  font-weight: 600;
}
/*
================================================
6. Logo Wrapper
================================================
*/
.logo-wrapper {
  background: #6bb601;
  position: relative;
  width: 100%;
  z-index: 9;
}
.logo-wrapper .logo {
  position: absolute;
  z-index: 9;
  top: -11px;
}
.logo-wrapper .affix-logo {
  display: none;
}
header.affix .logo {
  display: none;
}
header.affix .affix-logo {
  display: block;
  position: absolute;
  z-index: 9;
  top: 12px;
}
/*
================================================
7. Navigation
================================================
*/


.navbar-default {
  background-color: inherit;
  border-color: inherit;
}
.navbar {
  border-radius: 0;
  min-height: auto;
  border: none;
  margin: 0;
}
.navbar-collapse {
  padding: 0;
}
.navbar-brand {
  padding: 11px 0 0;
  height: auto;
  display: none;
}
.navbar-default .navbar-nav > li > a {
  color: #dcffaa;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
}
.navbar-default .navbar-nav > li > a > i {
  font-size: 12px;
  margin-left: 5px;
  margin-top: 5px;
}
.navbar-nav > li > a {
  padding: 25px 20px;
  font-family: 'Raleway', sans-serif;
}
.navbar-nav > li:last-child > a {
  padding-right: 0;
}
.navbar-default .navbar-nav.nav li:hover > a, .navbar-default .navbar-nav li.active > a:hover, .navbar-default .navbar-nav li.active > a:focus, .navbar-default .navbar-nav li.active > a, .navbar-default .navbar-nav > li > a:focus, .navbar-default .navbar-nav > li > a:hover, .navbar-default .nav .open > a, .navbar-default .nav .open > a:focus, .navbar-default .nav .open > a:hover, .side-nav li > a:focus {
  color: #fff;
  background-color: inherit;
}
.navbar-default ul.nav.navbar-nav li ul li {
  border-bottom: 1px solid #77c804;
  display: block;
  position: relative;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.navbar-default ul.nav.navbar-nav li ul li:last-child:after {
  display: none;
}
.navbar-default ul.nav.navbar-nav li ul li:after {
  background: #fff;
  bottom: -1px;
  content: "";
  height: 1px;
  position: absolute;
  right: 0;
  transition: all 0.3s ease 0s;
  width: 0;
}
.navbar-default ul.nav.navbar-nav li ul li:hover:after {
  width: 100%;
}
.dropdown-menu > li:last-child {
  border: none;
}
.dropdown-menu > li > a {
  color: #fff;
  margin: 0;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 400;
  display: block;
  text-transform: capitalize;
}
.navbar-nav > li > .dropdown-menu {
  top: 100%;
  padding: 0;
  margin: 0;
  box-shadow: none;
  font-size: 16px;
  text-transform: uppercase;
  border-radius: 0;
  border: none;
  background: #6bb601;
}
.dropdown-menu > li > a:focus, .dropdown-menu > li > a:hover {
  text-decoration: none;
}

.navbar-default .navbar-nav > li.mega-menu {
  color: #fff;
  position: inherit;
}
.navbar-default .navbar-nav > li.mega-menu ul.dropdown-menu {
  background-color: #6bb601;
  padding: 0 15px;
  margin: 0;
}
.navbar-default .navbar-nav > li.mega-menu .list-unstyled {
  padding: 0 0 15px;
}
.navbar-default .navbar-nav > li.mega-menu ul.dropdown-menu li a {
  color: #fff;
  display: block;
  line-height: 23px;
  margin: 0;
  padding: 7px 15px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transform: translateZ(0px);
  transition-duration: 0.3s;
  transition-property: transform;
}
.navbar-default .navbar-nav > li.mega-menu ul.dropdown-menu li a:hover, .navbar-default .navbar-nav > li.mega-menu ul.dropdown-menu li a:focus {
  transform: translateX(8px);
}
.navbar-default .navbar-nav > li.mega-menu > ul {
  max-width: 100%;
  width: 100%;
}
.navbar-default .navbar-nav > li.mega-menu div.row div > ul > li, .navbar-default ul.nav.navbar-nav li.mega-menu ul li {
  border-bottom: none;
}
.navbar-default .navbar-nav > li.mega-menu div.row div > ul > li:after, .navbar-default ul.nav.navbar-nav li.mega-menu ul li:after {
  background: none;
}
.navbar-default .navbar-nav > li.mega-menu div.row div {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  display: table-cell;
}


.navbar-default .navbar-nav > li.mega-menu div.row div:last-child {
  border: none;
}
.menu {
    font-size: 1.1em;
    text-transform: uppercase;
    font-weight: 700;
}

.menu_link {
  color: #fff;
  display: block;
}
menu_link_active{
  color: #000;
}
.active {
    color: #000000;
}
/*
================================================
10. Our Services
================================================
*/
.our-services {
     padding-bottom: 104px;
    width: 100%;
    padding: 70px 0 70px;
}

.our-services .services {
  border: solid 1px #dcdcdc;
  padding: 25px;
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  border: solid 1px #e1e1e1;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  margin: 50px 0 0 0;
  min-height: 555px;
}
.our-services .services:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #6bb600;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.our-services .services:hover:hover:before, .our-services .services:hover:focus:before, .our-services .services:hover:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
.our-services .services:hover h3, .our-services .services:hover a, .our-services .services:hover p {
  color: #fff;
}
.our-services .services i {
  background: #fff;
  border: 1px solid #dcdcdc;
  border-radius: 50%;
  height: 100px;
  line-height: 100px;
  position: absolute;
  text-align: center;
  top: -50px;
  width: 100px;
  font-size: 40px;
  color: #6bb600;
  padding: 20px;
}
.our-services .services:hover i {
  /*background: #6bb600;*/
  border: 1px solid #6bb600;
  color: #fff;
}
.our-services .services h3 {
  color: #4d4d4d;
  font-size: 20px;
  font-weight: 600;
  margin: 45px 0 15px 0;
}
.our-services .services a {
  color: #000;
  font-weight: 600;
  text-transform: uppercase;
  position: absolute;
  bottom: 15px;
}
.our-services .owl-theme .owl-dots {
  display: none;
}
.our-services .owl-theme .owl-nav {
  display: block;
}
.our-services .owl-theme .owl-nav div {
  width: 38px;
  height: 30px;
  border-radius: 0;
  opacity: 1;
  font-size: 0;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 50%;
  background: #000000;
}
.our-services .owl-theme .clickable .owl-nav div:hover {
  background: #6bb600;
}
.our-services .owl-theme .owl-nav .owl-prev {
  left: -60px;
}
.our-services .owl-theme .owl-nav .owl-prev:before {
  content: "\f104";
  font-family: 'Fontawesome';
  font-size: 20px;
  text-align: center;
  line-height: 30px;
}
.our-services .owl-theme .owl-nav .owl-next {
  right: -60px;
}
.our-services .owl-theme .owl-nav .owl-next:before {
  content: "\f105";
  font-family: 'Fontawesome';
  font-size: 20px;
  text-align: center;
  line-height: 30px;
}

img.marcas {
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
}

img.marcas:hover {
  -webkit-filter: grayscale(0);
  filter: none;
}
/*

================================================
14. Our Projects
================================================
*/
.our-projects {
  padding: 71px 0 45px;
  background-color: #000000;
}
.our-projects h2 {
  color: #fff;
}
.work {
  margin-bottom: 30px;
}
.work a {
  display: block;
  overflow: hidden;
  position: relative;
}
.work-inner {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: block;
  padding: 20px;
}
.work-inner:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #000;
  opacity: 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  z-index: 1;
}
.work:hover .work-inner:after {
  opacity: 0.7;
}
.work-info {
  text-align: center;
  margin-top: 50%;
  top: 0;
  position: relative;
}
.work-info i {
  font-size: 14px;
  top: 20px;
  font-weight: 700;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  color: #333;
  background: #fff;
  width: 30px;
  height: 30px;
  line-height: 0px;
  position: relative;
  z-index: 2;
  opacity: 0;
  padding: 10px;
  text-transform: uppercase;
  font-style: normal;
}
.work:hover .work-info i {
  opacity: 1;
  top: 0;
}
.work-info_marca {
  text-align: center;
  margin-top: 50%;
  top: 0;
  position: relative;
}
.work-info_marca i {
    font-size: 10px;
    top: 20px;
    font-weight: 300;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    color: #fff;
    background: none;
    width: 30px;
    height: 30px;
    line-height: 0px;
    position: relative;
    z-index: 2;
    opacity: 0;
    padding: 10px;
    text-transform: uppercase;
    font-style: normal;
}
.portfolio-filter {
  list-style: none;
  background: #ffffff;
  display: inline-block;
  margin: 0 0 25px 0;
  border-radius: 30px;
}
.portfolio-filter li {
  display: inline-table;
  text-transform: uppercase;
  font-size: 14px;
  color: #000;
  font-weight: 600;
  padding: 10px 20px;
  margin: 0;
  cursor: pointer;
  position: relative;
}
.portfolio-filter li:hover, .portfolio-filter li.active {
  background: #6bb600;
  color: #fff;
}
.portfolio-filter li:first-child {
  border-radius: 30px 0 0 30px;
  padding-left: 30px;
}
.portfolio-filter li:last-child {
  border-radius: 0 30px 30px 0;
  padding-right: 30px;
}
.portfolio-filter li:after {
  position: absolute;
  content: "";
  width: 0;
  height: 3px;
  left: 0;
  bottom: 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.portfolio-filter li.active:after {
  width: 100%;
}
.work-popup {
  max-width: 550px;
  background: #fff;
  position: relative!important;
  margin: 30px auto;
  left: 0!important;
}
.work-popup img {
  width: 100%;
  height: 100%;
}
.mfp-close-btn-in .mfp-close {
  position: absolute;
  background: #fff;
  font-size: 40px;
  width: 50px;
  height: 50px;
  opacity: 1;
  box-shadow: -5px 5px 20px rgba(0, 0, 0, 0.2);
}

/*

================================================
15. Contacto
================================================
*/

#map {
    height: 400px;
    width: 100%;
    margin-bottom: 40px;
}

/*
================================================
30. Buttons
================================================
*/
a.readmore {
    background: #6bb601;
    border: medium none;
    border-radius: 0;
    color: #fff !important;
    padding: 5px 8px;
    transition: all 0.3s ease 0s;
    display: inline-block;
    margin-bottom: 0;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    touch-action: manipulation;
    cursor: pointer;
}
/*

/*
================================================
37. Footer Wrapper
================================================
*/
.footer-wrapper {
  background: #000;
  color: #7a7a7a;
  padding-bottom: 48px;
}
.footer-wrapper img {
  width: auto;
  height: auto;
  margin: 0 0 20px 0;
}
.footer-wrapper h3 {
  color: #d1d1d1;
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 32px;
  position: relative;
}
.footer-wrapper p {
  margin-right: 40px;
}
.footer-wrapper ul li {
  list-style: none;
  margin: 0 0 5px 0;
}
.footer-wrapper ul li a {
  color: #7a7a7a;
}
.footer-wrapper ul li a:hover {
  opacity: 0.7;
}
.footer-wrapper .footer-nav li i {
  padding: 0 8px 0 0;
}
.footer-wrapper .meta-info h4 {
  font-weight: 600;
  font-size: 14px;
}
.footer-wrapper .meta-info h4 a:hover {
  color: #fff;
}
.footer-wrapper .meta-info i {
  margin: 0 8px 0 0;
}
.footer-wrapper .recent-post {
  margin: 0 0 20px 0;
}
.footer-wrapper .recent-post img {
  width: 100%;
  height: auto;
  margin: 0;
}
.footer-wrapper .address li {
  margin: 0 0 15px;
}
.footer-wrapper .address i {
  display: inline-block;
  margin: 2px 8px 0 0;
  vertical-align: top;
}
.footer-wrapper .address p {
  display: inline-block;
  margin: 0;
}
/*
================================================
38. Copyrights
================================================
*/
footer {
  padding: 20px 0 22px;
  float: left;
  width: 100%;
  background: #131313;
}
footer p {
  margin: 0;
  color: #989898;
  font-size: 13px;
  text-align: center;
}
/* Scroll Up */
#scrollUp {
  background: #6bb600;
  border-radius: 50%;
  bottom: 20px;
  color: #fff;
  display: block;
  font-size: 25px;
  height: 40px;
  line-height: 0;
  position: fixed;
  right: 20px;
  text-align: center;
  text-decoration: none !important;
  transition: all 0.5s cubic-bezier(0, 0, 0, 1) 0s;
  width: 40px;
  z-index: 1000;
}
#scrollUp:hover {
  background: #000;
  color: #fff;
}
#scrollUp i {
  display: block;
  padding-top: 5px;
}
.carousel-ofertas {
  max-width: 630px;
}



/*
================================================
39. Media Quries
================================================
*/
@media (min-width: 992px) and (max-width: 1200px) {
/* Nav */
.navbar-nav > li > a {
  padding: 26px 10px;
}
/* Banner */
.banner-wrapper .hero {
  top: 20%;
}
/* Service */
.our-services .owl-theme .owl-nav .owl-prev {
  left: -42px;
}
.our-services .owl-theme .owl-nav .owl-next {
  right: -42px;
}
/* News */
.news .details li {
  font-size: 12px;
  margin: 0 8px 0 0;
}
/* Tabs */
.inner-wrapper.tabs .classic-tab-panel .nav-tabs > li > a {
  font-size: 14px;
  margin: 0 5px 0 0;
  padding: 8px 16px;
}
}

@media (min-width: 768px) and (max-width: 991px) {
/* Top Wrapper */
.top-wrapper ul li:first-child {
  padding: 0 12px 0 0;
}
.top-wrapper ul li {
  padding: 0 12px 0 20px;
}
/* Nav */
header.affix .navbar-toggle {
  margin: 22px 0;
}
.navbar-nav {
  margin: 60px 0 0;
}
header.affix .navbar-nav {
  margin: 0;
}
.navbar-header {
  float: none;
}
button.navbar-toggle {
  display: block;
}
.navbar-collapse.collapse {
  display: none !important;
}
.navbar-collapse.collapse.in {
  display: block !important;
}
.navbar-default .navbar-toggle .icon-bar {
  background-color: #fff;
}
.navbar-default .navbar-toggle {
  border-color: #fff;
}
.navbar-default .navbar-toggle:focus, .navbar-default .navbar-toggle:hover {
  background-color: #528b00;
}
.navbar-default .navbar-collapse, .navbar-default .navbar-form {
  border: none;
}
.navbar-nav > li {
  width: 100%;
  padding: 0 15px;
}
.navbar-nav > li > a, .dropdown-menu > li > a {
  padding: 15px;
}
.navbar-default .navbar-nav .open .dropdown-menu > li > a {
  color: #fff;
}
.navbar-nav .open .dropdown-menu .dropdown-header, .navbar-nav .open .dropdown-menu > li > a {
  padding: 10px 15px 10px;
}
.navbar-default .navbar-nav > li.dropdown ul.dropdown-menu {
  margin: 0 0 15px;
  position: static;
  width: 100%;
}
/* Banner */
.banner-wrapper .hero {
  display: none;
}
.banner-wrapper .fade-carousel .slide-arrows .carousel-control span {
  font-size: 30px;
  height: 40px;
  line-height: 35px;
  width: 40px;
}
/* Service */
.our-services .owl-theme .owl-nav .owl-prev {
  left: -4px;
}
.our-services .owl-theme .owl-nav .owl-next {
  right: -4px;
}
.our-services {
  padding-bottom: 70px;
}
/* Why Choose */
section.why-choose .choose-cnt {
  margin: 40px 0 0 0;
}
/* News Letter */
.newsletter .newsletter-bg p {
  margin: 0 0 30px 0;
}
/* Testimonials */
.testimonials-content {
  margin: 0 0 70px;
}
.testimonials-wrapper .carousel-indicators {
  bottom: 5px;
  left: 50%;
}
/* News */
.news .thumbnail {
  margin-bottom: 30px;
}
/* About Us */
.inner-wrapper .classic-tab-panel .img-border {
  margin: 0 40px 54px 0;
}
/* 404 */
.error-msz {
  padding: 28px 0 0;
}
/* Tabs */
.inner-wrapper.tabs .classic-tab-panel.with-bg {
  margin-top: 30px;
}
/* Grid */
.light-bg {
  word-wrap: break-word;
}
.light-bg h3 {
  font-size: 18px;
  font-weight: 600;
}
/* Tables */
.tables .table-responsive {
  border: none;
  margin-bottom: 60px;
}
.tables .offset-top-60 {
  margin-top: 0;
}
/* Contact Us */
.contact-us .address{
margin-bottom:60px;
}
/* Footer-wrapper */
.footer-wrapper .about, .footer-wrapper .footer-nav {
  margin-bottom: 30px;
}
.footer-wrapper .recent-post:last-child {
  margin: 0;
}
}

@media (max-width: 767px) {
/* Commom Css */
section h2 {
  line-height: 30px;
  font-size: 22px;
}
section h2 span {
  font-size: 26px;
}
/* Logo Wrapper */
header.affix .logo-wrapper {
  margin: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.118);
}
/* Nav */
.navbar-nav {
  margin: 7.5px 0;
}
.navbar-header {
  background: #fff none repeat scroll 0 0;
  margin: 0 -15px;
  padding: 10px 15px 20px 15px;
}
.navbar-brand {
  display: block;
}
.navbar-toggle {
  margin-top: 20px;
}
.navbar-default .navbar-collapse, .navbar-default .navbar-form {
  border: none;
}
.navbar-nav > li > a {
  padding: 15px 5px;
}
.navbar-default .navbar-nav .open .dropdown-menu > li > a {
  color: #fff;
}
.navbar-nav .open .dropdown-menu .dropdown-header, .navbar-nav .open .dropdown-menu > li > a {
  padding: 10px 15px 10px;
}
.navbar-default .navbar-nav .open .dropdown-menu > li > a:focus, .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover {
  color: #fff;
}
.navbar-default .navbar-nav > li.mega-menu div.row div {
  display: inherit;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.navbar-default .navbar-collapse, header.affix .navbar-default .navbar-collapse {
  max-height: 370px;
}
/* Banner */
.banner-wrapper .hero {
  display: none;
}
.banner-wrapper .fade-carousel .slide-arrows .carousel-control span {
  font-size: 22px;
  height: 30px;
  line-height: 22px;
  width: 30px;
}
.banner-wrapper .fade-carousel .slide-arrows .carousel-control span {
  top: 38%;
}
/* Service */
.our-services .owl-theme .owl-nav .owl-prev {
  left: -4px;
}
.our-services .owl-theme .owl-nav .owl-next {
  right: -4px;
}
.our-services {
  padding-bottom: 70px;
}
/* Why Choose */
section.why-choose .choose-list::after {
  border: none;
}
section.why-choose .choose-list::before {
  border: none;
}
section.why-choose .choose-list .fa-leaf {
  display: none;
}
section.why-choose .choose-list .icon {
  margin-bottom: 20px;
}
section.why-choose .choose-list .number {
  left: 110px;
  top: 35px;
}
section.why-choose .choose-cnt {
  margin: 20px 0 0 0;
  padding: 30px;
}
section.why-choose .choose-cnt .equipmets h3 {
  margin-bottom: 54px;
}
section.why-choose .choose-list .list-cnt {
  width: 100%;
}
/* News Letter */
.newsletter .newsletter-bg p {
  margin: 0 0 30px 0;
}
.newsletter .newsletter-bg .form input.form-control {
  height: 50px;
  line-height: 50px;
  width: 62%;
}
.newsletter .newsletter-bg .form input.bttn {
  height: 50px;
  line-height: 50px;
  width: 36%;
}
/* Testimonials */
.testimonials-wrapper .item p {
  margin-top: 40px;
}
.testimonials-content {
  margin: 0 0 70px;
}
.testimonials-wrapper .carousel-indicators {
  bottom: 5px;
  left: 50%;
}
.portfolio-filter li {
  width: 100%;
}
.portfolio-filter {
  border-radius: 0;
  text-align: center;
}
.portfolio-filter li:first-child, .portfolio-filter li:last-child {
  border-radius: 0;
}
/* News */
.news .thumbnail {
  margin-bottom: 30px;
}
.news .details li {
  font-size: 12px;
  margin: 0 8px 0 0;
}
/* About Us */
.inner-wrapper .classic-tab-panel .nav-tabs {
  margin: 0 0 20px 0;
}
.inner-wrapper .classic-tab-panel .nav-tabs > li {
  width: 100%;
  margin: 0 0 20px 0;
  text-align: center;
}
.inner-wrapper .classic-tab-panel .nav-tabs > li > a {
  margin-right: 0;
}
.inner-wrapper .classic-tab-panel .img-border {
  margin: 0 40px 54px 0;
}
.satisfied-wrapper .counter {
  margin: 0 0 30px 0;
}
/* Coming Soon */
.count-down .countdown-row .countdown-section {
  width: 100%;
}
.comming-soon .subscirbe .form .form-group {
  width: 100%;
}
.comming-soon .subscirbe .form input.bttn {
  border-radius: 4px;
  float: none;
  margin: 0 0 0 15%;
  width: 60%;
}
/* 404 */
.error {
  text-align: center;
}
.error h1 {
  border-right: 0px solid #cccccc;
  border-bottom: 1px solid #cccccc;
  font-size: 110px;
  line-height: 110px;
  text-align: center;
  padding: 0 0 30px 0;
}
.error-msz {
  padding: 28px 0 0;
}
.error h2 {
  font-size: 18px;
}
/* Single Post */
.inner-wrapper.single-post .meta-info {
  padding: 5px 15px;
}
.inner-wrapper.single-post .latest-blog {
  border: none;
}
.inner-wrapper .sidebar #custom-search-input {
  margin-top: 15px;
}
.inner-wrapper.contact .contact-info {
  margin-bottom: 30px;
}
/* Tabs */
.inner-wrapper.tabs .classic-tab-panel.with-bg {
  margin-top: 30px;
}
.inner-wrapper.tabs .classic-tab-panel .nav-tabs > li {
  margin: 0 0 20px 0;
}
.inner-wrapper.tabs .classic-tab-panel .nav-tabs > li > a {
  margin: 0 0 0 0;
  padding: 10px 30px;
}
/* Accordion1 */
.faq #accordion1{
  margin-top:30px;
}
/* Forms */
.forms .basic-form {
  border-right: medium none;
  padding: 0 0 30px;
}
/* Tables */
.tables .table-responsive {
  border: none;
  margin-bottom: 60px;
}
.tables .offset-top-60 {
  margin-top: 0;
}
/* Blockquote */
.blockquote .mob-space {
  margin-top: 30px;
}
/* Contact Us */
.contact-us .address{
margin-bottom:60px;
}
/* Footer-wrapper */
.footer-wrapper .recent-post:last-child {
  margin: 0;
}
.footer-wrapper h3 {
  margin: 40px 0 20px;
}
.footer-wrapper .recent-post img {
  margin: 0 0 20px 0;
}
}




