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

a {
  text-decoration: none;
  color: #a5c644;
}

a:hover {
  color: #a5c644;
  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: 10000;
  background: #37a137;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #78c48c;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  height: 70px;
}
#header.header-scrolled {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 100;
  letter-spacing: 1px;
  text-transform: uppercase;
}
#header .logo a {
  color: #228b22;
}
#header .logo img {
  max-height: 60px;
}

.scrolled-offset {
  margin-top: 70px;
}

/*--------------------------------------------------------------
# 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: #222222;
  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: #228b22;    
}
.navbar .getstarted, .navbar .getstarted:focus {
  color: #228b22;
  padding: 8px 25px;
  margin-left: 30px;
  border-radius: 4px;
  border: 2px solid #228b22;
  transition: 0.3s;
  font-size: 14px;
}
.navbar .getstarted:hover, .navbar .getstarted:focus:hover {
  background: #228b22;
  color: #fff;
}
.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;
}
.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: #228b22;
}
.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: #222222;
  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(9, 9, 9, 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: #222222;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #228b22;
}
.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: #228b22;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 85vh;
  background-color: rgba(9, 9, 9, 0.8);
  overflow: hidden;
  position: relative;
}
#hero .carousel, #hero .carousel-inner, #hero .carousel-item, #hero .carousel-item::before {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}
#hero .carousel-item::before {
  content: "";
  
}
#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 50px;
  right: 50px;
}
#hero .carousel-container h2{
  text-shadow: 2px 2px 5px #29ff16;
  font-size: 48px;
  font-weight: bold;
}
#hero .carousel-container p{
  text-shadow: 1px 1px 3px #29ff16;
  font-size: 25px;
  font-weight: bold;
}
#hero .container {
  text-align: center;
}

#hero h2 {
  color: #fff;
  margin-bottom: 20px;
  
  font-weight: 700;
}
#hero p {
  -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-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}
#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}
#hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#hero .carousel-control-next-icon:hover, #hero .carousel-control-prev-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}
#hero .carousel-indicators li {
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}
#hero .carousel-indicators li.active {
  opacity: 1;
  background: #228b22;
}
#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  background: #228b22;
}
#hero .btn-get-started:hover {
  background: #6ec083;
}
@media (max-width: 992px) {
  #hero {
    height: 100vh;
  }
  #hero .carousel-container {
    top: 66px;
  }
}
@media (max-width: 768px) {
  #hero h2 {
    font-size: 28px;
  }
}
@media (min-width: 1024px) {
  #hero .carousel-control-prev, #hero .carousel-control-next {
    width: 5%;
  }
}
@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
}

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

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

.section-title {
  text-align: center;
  padding-bottom: 30px;
}
.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}
.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}
.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #228b22;
  bottom: 0;
  left: calc(50% - 20px);
}
.section-title p {
  margin-bottom: 0;
  font-size: 14px;
  color: #919191;
}
.section-title .info-empresa {
  margin-bottom: 0;
  font-size: 16px;
  color: #444444;
  font-style: italic;
}
 

/*--------------------------------------------------------------
# Quienes somos
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 700;
  font-size: 28px;
}
.about .content ul {
  list-style: none;
  padding: 0;
}
.about .content ul li {
  padding-bottom: 10px;
}
.about .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #228b22;
}
.about .content p:last-child {
  margin-bottom: 0;
}
.img-quien{
  width: 80%;
  
}
/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us {
  padding: 0;
}
.why-us .row {
  overflow: hidden;
}
.why-us .content-item {
  padding: 40px;
  /*border-left: 1px solid #eee;*/
  /*border-bottom: 1px solid #eee;*/
  margin: -1px;
}
.why-us .content-item span {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: #228b22;
  text-align: center;
  font-weight: bold;
}
.why-us .content-item h4 {
  font-size: 26px;
  font-weight: 300;
  padding: 0;
  margin: 20px 0;
}
.why-us .content-item p {
  /*color: #aaaaaa;*/
  font-size: 15px;
  margin: 0;
  padding: 0;
}
@media (max-width: 768px) {
  .why-us .content-item {
    padding: 40px 0;
  }
}



/*-------PRODUCTOS DESTACADOS---------*/
.prod .swiper {
  width: 80%;
  height: 80%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
   /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.prod .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prod .swiper-slide img:hover {
opacity: 0.5;
}
.prod .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.prod .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #228b22;
}
.prod .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #228b22;
}
.swiper-button-prev{
  color: #228b22;
}
.swiper-button-next{
  color: #228b22;
}

/*--------------------------------------------------------------
# PRODUCTOS
--------------------------------------------------------------*/
.producto .producto-item {
  margin-bottom: 0px;
}
.producto .titulo-clasificacion{
  font-size: 30px;
  text-align: center;
  color: #228b22;
  font-weight: bold;
}
.producto .titulo-prod{
  font-family: Impact;
  font-size: 20px;
  text-align: center;
}
.producto .titulo-prod-list{
  font-family: Impact;
  text-align: center;
  font-size: 20px;
  /*color: #228b22;*/
}
.producto .producto-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(34, 34, 34, 0.6);
}
.producto .producto-wrap::before {
  content: "";
  background: rgba(34, 34, 34, 0.6);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}
.producto .producto-wrap img {
  transition: all ease-in-out 0.3s;
  width: 100%;
}
.img-prod{
  border:solid 2px #228b22;
  
}
.producto .producto-wrap .producto-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;
}
.producto .producto-wrap .producto-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}
.producto .producto-wrap .producto-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  font-style: italic;
}
.producto .producto-wrap .producto-links {
  text-align: center;
  z-index: 4;
}
.producto .producto-wrap .producto-links a {
  color: #fff;
  margin: 0 5px 0 0;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}
.producto .producto-wrap .producto-links a:hover {
  color: #6ec083;
}
.producto .producto-wrap:hover::before {
  opacity: 1;
}
.producto .producto-wrap:hover img {
  transform: scale(1.2);
}
.producto .producto-wrap:hover .producto-info {
  opacity: 1;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 10px;
  font-size: 15px;
}
.portfolio-details .titulo-prod{
  font-family: Impact;
  font-size: 28px;
}
.portfolio-details .portfolio-details-slider img {
  width: 90%;
}
.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #228b22;
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #228b22;
}
.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(34, 34, 34, 0.08);
}
.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: 30px;
  text-align: justify;
}
.portfolio-details .portfolio-description h2 {
  font-size: 37px;
  font-weight: 700;
  margin-bottom: 20px;
}
.portfolio-details .portfolio-description p {
  padding: 0;
}

.portfolio-details .portfolio-description .lista{
  text-indent: -110px; 
  padding-left: 130px;
}
.detalle{
  font-size: 15px;  
}
.detalle span{
  font-size: 15px;
}
.detalle p{
  font-size: 15px;
}
.detalle i{
  color:#3B83BD;
  vertical-align: middle;
}

.detalle .desc-prod{
  padding-left: 30px;
  font-size: 14px;
  text-transform: uppercase;
  font-style: italic;
}

tr.espacio>td {
  padding-bottom: 15px;
} 

.pad-table tr>td{
  font-style:italic;font-size: 14px;
  padding-left: 30px;
}
.comp-quim{
  text-align: right;
  padding-left: 0px;
}
.portfolio-details .titulo-composicion{
  padding-left: 28px;
  color:#444444;
}
.portfolio-details .titulo-composicion span{
  font-weight: bold;
  font-style: italic;
}
.beneficio{
  font-size: 15px;
  
}
.beneficio ol li{
 
  text-align: justify;
}
.beneficio span{
  font-size: 15px;
}
.info-prod{
  padding-top: 85px;
}

.detalle-prod{
  border: solid 2px green;
  border-radius: 30px;
  padding: 10px;    
}
.descarga-prod{
  border: solid 2px green;
  border-radius: 30px;
  width: 100%;
}
.descarga-prod a{
  color:#444444;
}
.fondo-detalle{
  padding: 5px;  
  color: white;
  background-color: #3B83BD;
  border: solid 1px #3B83BD;
  font-size: 15px;  
  font-weight: bold;
  border-radius: 5px;
  width: 100%;
}
@media (max-width: 768px){
  .media{
    padding-top: 80px;
  }
  .info-prod{
    padding-top:0px;
  }
}

.fondo-descarga{
  padding: 5px;  
  color: white;
  background-color: green;
  border: solid 1px green;
  font-weight: bold;
  border-radius: 5px;
  width: 100%;
  
}
.icon-descarga{
  color: green;
  animation-duration: 2.5s;
}


/*--------------------------------------------------------------
# Cultivos planes agronómicos
--------------------------------------------------------------*/
.planes .plan{
  text-align: center;
}
.planes .plan .contenedor{
  text-align: center;
  overflow:hidden;
}

.planes .plan .contenedor.imagen{
  -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
}

.planes .plan .contenedor:hover .imagen{
  filter: opacity(.8);
  -webkit-transform:scale(1.3);
  transform:scale(1.3);
  -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
}
.planes .plan span{
  font-weight: bold;
  text-align: center;
  font-size: 18px;
}
.slide-experiencia p{
  filter: drop-shadow(0 0 1px #22b822) drop-shadow(1px 1px 0 #22b822)  drop-shadow(-1px 1px 0 #22b822) drop-shadow(1px -1px 0 #22b822) drop-shadow(-1px -1px 0 #22b822);
  font-size: 20.5px; font-weight: bold;
}

/*--------------------------------------------------------------
# Contacto
--------------------------------------------------------------*/
.contact .info {
  border-top: 3px solid #228b22;
  border-bottom: 3px solid #228b22;
  padding: 30px;
  background: #fff;
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}
.contact .info i {
  font-size: 20px;
  color: #228b22;
  float: left;
  width: 44px;
  height: 44px;
  background: #eaf6ed;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}
.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #222222;
}
.contact .info p {
  padding: 0 0 10px 60px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #555555;
}

.contact .info .email:hover i, .contact .info .address:hover i, .contact .info .phone:hover i {
  background: #228b22;
  color: #fff;
}

/*--------------------------------------------------------------
# FORMULARIO
--------------------------------------------------------------*/
.contact .formulario {
  width: 100%;
  border-top: 3px solid #228b22;
  border-bottom: 3px solid #228b22;
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .formulario .form-group {
  padding-bottom: 8px;
}

.contact .formulario input, .contact .formulario textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}
.contact .formulario input:focus, .contact .formulario textarea:focus {
  border-color: #228b22;
}
.contact .formulario input {
  height: 44px;
}
.contact .formulario textarea {
  padding: 10px 12px;
}
.contact .formulario button {
  background: #228b22;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}
.contact .formulario button:hover {
  background: #6ec083;
}
.contact .centro-boton{
  text-align: center;
}
.contact .mapadiv{
  width: 40%;
  margin: auto;
}
.contact .mapadiv path{
  fill: #00973f;
  stroke: #01b24b;
  transition: fill .4s ease;
}
.contact .mapadiv a path{
  fill: skyblue;
}
.contact .mapadiv a path:hover{
  fill: green;
  cursor: pointer;
}

.hide{
  background-color: green;
  color: white;  
  border-radius: 20px 20px 20px 20px;
  text-align: center;
  position: absolute;
  margin: 0 auto;

  padding: 0px; 
}

.hide .lugar{
  background-color: green;
  padding: 10px;
  border-radius: 20px 20px 0px 0px;
  color: white; 
  font-size: 18px;
  font-weight: bold;
  padding: 15px; 

}

.hide .lugar img{
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border-color: white;
  border: 2px solid;  
}

.hide .trabajador{
  background-color: white;
  color: green;
  border-color: white;
  border: 2px solid; 
  border-radius: 0px 0px 20px 20px;
  text-align: center; 
  font-size: 18px;
  font-weight: bold;
  padding: 15px;
  vertical-align: middle;
}

.hide .trabajador span i{
  background-color: white;
  vertical-align: middle;
}
.chimbote-user{
  margin-left: 190px;
  margin-top: 200px;
}
.san-martin-user{
  margin-left: 590px;
  margin-top: 160px;
}
.hb-user{
  margin-left: 190px;
  margin-top: 280px;
}

.hc-user{
  margin-left: 200px;
  margin-top: 300px;
}

.lima-user{
  margin-left: 220px;
  margin-top: 340px;
}

.sur-user{
  margin-left: 260px;
  margin-top: 380px;
}

@media (max-width: 992px) {
  .contact .mapadiv {
   width: 80%;
  }
  .chimbote-user{
    margin-left: 0px;
    margin-top: 80px;
  }
  .san-martin-user{
    margin-left: 260px;
    margin-top: 50px;
  }
  .hb-user{
    margin-left: 220px;
    margin-top: 220px;
  }

  .hc-user{
    margin-left: 230px;
    margin-top: 240px;
  }

  .lima-user{
    margin-left: 240px;
    margin-top: 270px;
  }

  .sur-user{
    margin-left: 240px;
    margin-top: 320px;
  }

  .hide .lugar{
    font-size: 14px;
  }
  .hide .lugar img{
    width: 64px;
    height: 64px;
    border-radius: 50%;    
    border: 1px solid;  
  }
  .hide .trabajador{
    border: 1px solid; 
    font-size: 14px;
    padding: 10px;
  }
}
/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #fbfbfb;
  min-height: 40px;
}
@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 66px;
  }
}
.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 300;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}
.breadcrumbs ol li + li {
  padding-left: 10px;
}
.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #3c3c3c;
  content: "/";
}
@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}






/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  /*background: #090909;*/
  /*background: #228b22;*/
  background: #228b22;
  color: #fff;
  font-size: 14px;
  text-align: center;
  padding: 30px 0;
}
#footer i{
  vertical-align: middle;
  font-size: 20px;
}

#footer .bx-phone{
  vertical-align: middle;
  font-size: 20px;
}
#footer h3 {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  position: relative;
  font-family: "Poppins", sans-serif;
  padding: 0;
  margin: 0 0 15px 0;
}
#footer p {
  font-size: 15;
/*  font-style: italic;*/
  padding: 0;
  margin: 0 0 10px 0;
}
#footer .social-links {
  margin: 0 0 40px 0;
}
#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #3b5998;
  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 .social-links a:hover {
  background: #449d5b;
  color: #fff;
  text-decoration: none;
}
#footer .copyright {
  margin: 0 0 5px 0;
}
