/*****************************************
- General Styles
- Navigation
- Header
- About 
- Services
- Details 1
- Details 2
- Details Lightbox
- Details 3
- Statistics
- Testimonials
- Contact
- Footer
- Copyright
- Back To Top Button
- Extra Pages
- Media Queries
******************************************/

/*****************************************
Colors:
- Backgrounds - dark gray #3f424b
- Backgrounds - light gray #f7f9fa
- Buttons, icons - blue #129dd8
- Headings text - black #333333
- Body text - dark gray #6b747b
******************************************/
:root{
  --color1: #3f424b;
  --color2: #f7f9fa;
  --color3: #129dd8;
  --color4: #333333;
  --color5: #6b747b;
  --colorgris: #f3f3f3;

}

/**************************/
/*     General Styles     */
/**************************/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  width: 100%;
  height: 100%;
}

body,
p {
  color: #6b747b;
  font: 400 1rem/1.625rem "Open Sans", sans-serif;
  text-align: justify;
}

h1 {
  color: #333333;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 3.125rem;
  letter-spacing: -0.5px;
}

h2 {
  color: #333333;
  font-weight: 700;
  font-size: 2rem;
  line-height: 2.5rem;
  letter-spacing: -0.4px;
  text-align: justify;
}

h3 {
  color: #333333;
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 2.25rem;
  letter-spacing: -0.4px;
}

h4 {
  color: #333333;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 2rem;
  letter-spacing: -0.4px;
}

h5 {
  color: #333333;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.625rem;
}

h6 {
  color: #333333;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.375rem;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}


.h1-large {
  font-size: 2.875rem;
  line-height: 3.5rem;
  letter-spacing: -0.7px;
}

.p-large {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.p-small {
  font-size: 0.875rem;
  line-height: 1.5rem;
}

.testimonial-text {
  font-style: italic;
}

.testimonial-author {
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5rem;
}

.li-space-lg li {
  margin-bottom: 0.5rem;
}



.no-line {
  text-decoration: none;
}

.no-line:hover {
  text-decoration: none;
}

.blue {
  color: #129dd8;
}

.bg-gray {
  background-color: #f7f9fa;
}

.section-title {
  color: #129dd8;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.7rem;
  padding-bottom: 20px;
}

.btn-solid-reg {
  display: inline-block;
  padding: 1.375rem 2.25rem 1.375rem 2.25rem;
  border: 1px solid #129dd8;
  border-radius: 32px;
  background-color: #129dd8;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 0;
  text-decoration: none;
  transition: all 0.2s;
  text-transform: uppercase;
}

.btn-solid-reg:hover,
.btn-cotiza:hover{
  border: 1px solid #129dd8;
  background-color: transparent;
  color: #129dd8; /* needs to stay here because of the color property of a tag */
  text-decoration: none;
}


.btn-outline-reg {
  display: inline-block;
  padding: 1.375rem 2.25rem 1.375rem 2.25rem;
  border: 1px solid #333333;
  border-radius: 32px;
  background-color: transparent;
  color: #333333;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 0;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-outline-reg:hover {
  background-color: #333333;
  color: #ffffff;
  text-decoration: none;
}

.btn-outline-lg {
  display: inline-block;
  padding: 1.625rem 2.625rem 1.625rem 2.625rem;
  border: 1px solid #333333;
  border-radius: 32px;
  background-color: transparent;
  color: #333333;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 0;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-outline-lg:hover {
  background-color: #333333;
  color: #ffffff;
  text-decoration: none;
}

.btn-outline-sm {
  display: inline-block;
  padding: 1rem 1.5rem 1rem 1.5rem;
  border: 1px solid #333333;
  border-radius: 32px;
  background-color: transparent;
  color: #333333;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 0;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-outline-sm:hover {
  background-color: #333333;
  color: #ffffff;
  text-decoration: none;
}

.form-group {
  position: relative;
  margin-bottom: 1.25rem;
}

.label-control {
  position: absolute;
  top: 0.875rem;
  left: 1.625rem;
  color: #7d838a;
  opacity: 1;
  font-size: 0.875rem;
  line-height: 1.375rem;
  cursor: text;
  transition: all 0.2s ease;
}

.form-control-input:focus + .label-control,
.form-control-input.notEmpty + .label-control,
.form-control-textarea:focus + .label-control,
.form-control-textarea.notEmpty + .label-control {
  top: 0.125rem;
  color: #6b747b;
  opacity: 1;
  font-size: 0.75rem;
  font-weight: 700;
}

.form-control-input,
.form-control-select {
  display: block; /* needed for proper display of the label in Firefox, IE, Edge */
  width: 100%;
  padding-top: 1.125rem;
  padding-bottom: 0.125rem;
  padding-left: 1.625rem;
  border: 1px solid #cbcbd1;
  border-radius: 2px;
  background-color: #ffffff;
  color: #6b747b;
  font-size: 0.875rem;
  line-height: 1.875rem;
  transition: all 0.2s;
  -webkit-appearance: none; /* removes inner shadow on form inputs on ios safari */
}

.form-control-select {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  height: 3.25rem;
  color: #7d838a;
}

select {
  /* you should keep these first rules in place to maintain cross-browser behavior */
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  background-image: url("../images/down-arrow.png");
  background-position: 96% 50%;
  background-repeat: no-repeat;
  outline: none;
}

.form-control-textarea {
  display: block; /* used to eliminate a bottom gap difference between Chrome and IE/FF */
  width: 100%;
  height: 14rem; /* used instead of html rows to normalize height between Chrome and IE/FF */
  padding-top: 1.5rem;
  padding-left: 1.5rem;
  border: 1px solid #cbcbd1;
  border-radius: 2px;
  background-color: #ffffff;
  color: #6b747b;
  font-size: 0.875rem;
  line-height: 1.5rem;
  transition: all 0.2s;
}

.form-control-input:focus,
.form-control-select:focus,
.form-control-textarea:focus {
  border: 1px solid #a1a1a1;
  outline: none; /* Removes blue border on focus */
}

.form-control-input:hover,
.form-control-select:hover,
.form-control-textarea:hover {
  border: 1px solid #a1a1a1;
}

.checkbox {
  font-size: 0.75rem;
  line-height: 1.25rem;
}

input[type="checkbox"] {
  vertical-align: -10%;
  margin-right: 0.5rem;
}

.form-control-submit-button {
  display: inline-block;
  width: 100%;
  height: 3.25rem;
  border: 1px solid #129dd8;
  border-radius: 32px;
  background-color: #129dd8;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 0;
  cursor: pointer;
  transition: all 0.2s;
}

.form-control-submit-button:hover {
  border: 1px solid #129dd8;
  background-color: transparent;
  color: #129dd8;
}



@media (max-width:1200px){
  #local {
      flex-wrap: wrap;
      padding-top:30px;
}

.wrapper-local {
  width:90%;
  margin:auto;
  padding-top:50px;  
    
}

} 

/*=========================MEDIA QUERIES PANTALLA SM================================*/


@media (max-width:896px) {

  .wrapper-local {
      width:50%;
      margin:auto;
      padding-top:50px;    
  }
  #local {
      flex-wrap: wrap;
  }
  .mapa img {
      width:100%;
      height:auto;
  }
  #bg-contactos{
      top: -120px;
  }


}

.contenedor-maps{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 3rem 0;
}

/* .contenedor-info{
  display: inline-block;
  vertical-align: middle;
} */




.mapa{
  display: grid;
  grid-template-rows: repeat(1, 1fr);
  width: auto;
  /* margin-bottom: 10rem; */
}

@media (min-width: 768px) { /* Tablet */
  .mapa{
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      column-gap: 3rem;
  }

  .section-title{
    align-items: center;
  }
}

.mapa_info{
  padding: 10% 0;
  text-align: left;

}

.mapa_src{
  max-width: 100%;
  /* overflow: visible; */
}

@media (min-width: 768px) { /* Tablet */
  .nosotros__imagen{
      grid-column: 2 / 3;
  }
}










/* Fade-move Animation For Details Lightbox - Magnific Popup */
/* at start */
.my-mfp-slide-bottom .zoom-anim-dialog {
  opacity: 0;
  transition: all 0.2s ease-out;
  -webkit-transform: translateY(-1.25rem) perspective(37.5rem) rotateX(10deg);
  -ms-transform: translateY(-1.25rem) perspective(37.5rem) rotateX(10deg);
  transform: translateY(-1.25rem) perspective(37.5rem) rotateX(10deg);
}

/* animate in */
.my-mfp-slide-bottom.mfp-ready .zoom-anim-dialog {
  opacity: 1;
  -webkit-transform: translateY(0) perspective(37.5rem) rotateX(0);
  -ms-transform: translateY(0) perspective(37.5rem) rotateX(0);
  transform: translateY(0) perspective(37.5rem) rotateX(0);
}

/* animate out */
.my-mfp-slide-bottom.mfp-removing .zoom-anim-dialog {
  opacity: 0;
  -webkit-transform: translateY(-0.625rem) perspective(37.5rem) rotateX(10deg);
  -ms-transform: translateY(-0.625rem) perspective(37.5rem) rotateX(10deg);
  transform: translateY(-0.625rem) perspective(37.5rem) rotateX(10deg);
}

/* dark overlay, start state */
.my-mfp-slide-bottom.mfp-bg {
  opacity: 0;
  transition: opacity 0.2s ease-out;
}

/* animate in */
.my-mfp-slide-bottom.mfp-ready.mfp-bg {
  opacity: 0.8;
}
/* animate out */
.my-mfp-slide-bottom.mfp-removing.mfp-bg {
  opacity: 0;
}
/* end of fade-move animation for details lightbox - magnific popup */

/**********************/
/*     Navigation     */
/**********************/
.navbar {
  background-color: #f7f9fa;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 0.875rem;
}

.navbar .navbar-brand {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.navbar .logo-image img {
  width: 139px;
  height: 30px;
}

.navbar .logo-text {
  color: #333333;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1rem;
  text-decoration: none;
}

.offcanvas-collapse {
  position: fixed;
  top: 3.25rem; /* adjusts the height between the top of the page and the offcanvas menu */
  bottom: 0;
  left: 100%;
  width: 100%;
  padding-right: 1rem;
  padding-left: 1rem;
  overflow-y: auto;
  visibility: hidden;
  background-color: #f7f9fa;
  transition: visibility 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, visibility 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, visibility 0.3s ease-in-out,
    -webkit-transform 0.3s ease-in-out;
}

.offcanvas-collapse.open {
  visibility: visible;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}

.navbar .navbar-nav {
  margin-top: 0.75rem;
  margin-bottom: 0.5rem;
}

.navbar .nav-item .nav-link {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  color: #6b747b;
  text-decoration: none;
  transition: all 0.2s ease;
}

.navbar .nav-item.dropdown.show .nav-link,
.navbar .nav-item .nav-link:hover,
.navbar .nav-item .nav-link.active {
  color: #129dd8;
}

/* Dropdown Menu */
.navbar .dropdown .dropdown-menu {
  animation: fadeDropdown 0.2s; /* required for the fade animation */
}

@keyframes fadeDropdown {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.navbar .dropdown-menu {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  border: none;
  background-color: #f7f9fa;
}

.navbar .dropdown-item {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: #6b747b;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 0.875rem;
  text-decoration: none;
}

.navbar .dropdown-item:hover {
  background-color: #f7f9fa;
  color: #129dd8;
}

.navbar .dropdown-divider {
  width: 100%;
  height: 1px;
  margin: 0.5rem auto 0.5rem auto;
  border: none;
  background-color: #e7e7e7;
}
/* end of dropdown menu */

.navbar .fa-stack {
  width: 2em;
  margin-right: 0.25rem;
  font-size: 0.75rem;
}

.navbar .fa-stack-2x {
  color: #ffffff;
  transition: all 0.2s ease;
}

.navbar .fa-stack-1x {
  color: #129dd8;
  transition: all 0.2s ease;
}

.navbar .fa-stack:hover .fa-stack-2x {
  color: #129dd8;
}

.navbar .fa-stack:hover .fa-stack-1x {
  color: #ffffff;
}

.navbar .navbar-toggler {
  padding: 0;
  border: none;
  font-size: 1.25rem;
}

.slider {
  position: relative;
}

/*****************/
/*    Header     */
/*****************/
.header {
	position: relative;
	padding-top: 7.75rem;
	padding-bottom: 4rem;
	background: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), url('../images/background.jpg') center center no-repeat;
	background-size: cover;
}

.header .centrar {
	display: flex;
  justify-content: center;
}

.header .h1-large {
	margin-bottom: 5.5rem;
	text-align: center;
}

.title-wrapper {
	display: flex;
	align-items: flex-start;
	margin-bottom: 0.5rem;
}

.header h5 {
	flex: 1;
}

.expertise {
	margin-bottom: 20px;
}

.font{
	font-size: 25px;
	padding-top: 70px;
}

.expertise .icon {
	width: 50px;
	margin-right: 1rem;
}


/*****************/
/*     About     */
/*****************/

.image{
  border-radius: 30px;
}
.basic-1 {
  padding-top: 90px;
  padding-bottom: 30px;
  background: url("") center center no-repeat;
  background-size: cover;
}

.basic-1 .section-title {
  text-align: center;
}

.basic-1 .h2-heading {
  margin-bottom: 3.75rem;
  text-align: center;
}

.basic-1 .text-container.first {
  margin-bottom: 3.5rem;
}

.basic-1 .text-container.second {
  margin-bottom: 3rem;
}

.basic-1 .list-unstyled .fas {
  font-size: 0.375rem;
  line-height: 1.625rem;
}

.basic-1 .list-unstyled .media-body {
  margin-left: 0.5rem;
}

.basic-1 .testimonial-text {
  color: #333333;
  font-style: italic;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 2.125rem;
}

.basic-1 hr {
  display: inline-block;
  width: 4rem;
  height: 2px;
  margin-top: 1.125rem;
  margin-bottom: 1.125rem;
  border: none;
  background-color: #129dd8;
}

.basic-1 .testimonial-author {
  margin-bottom: 0.125rem;
  color: #333333;
}

/********************/
/*     Services     */
/********************/
.basic-2 {
  position: relative;
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #3f424b;
}

.basic-2 .section-title {
  text-align: center;
}

.basic-2 .h2-heading {
  margin-bottom: 3.75rem;
  color: #ffffff;
  text-align: center;
}

.basic-2 .service-wrapper {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2.5rem;
}

.basic-2 .service-wrapper img {
  width: 60px;
  margin-right: 1.25rem;
}

.basic-2 .service-details {
  flex-direction: column;
}

.basic-2 h5,
.basic-2 p {
  color: #efefef;
}

.basic-2 .p-large {
  margin-top: 2.75rem;
  color: #ffffff;
  text-align: center;
}

.basic-2 .services-decoration {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20px;
  background-color: #ffffff;
}

.servicio{
  padding-top: 0;
}
/*********************/
/*     Details 1     */
/*********************/
.basic-3 {
  padding-top: 0;
  padding-bottom: 4.25rem;
}

.basic-3 .image-container {
  margin-bottom: 3.5rem;
}

.basic-3 h2 {
  margin-bottom: 1.375rem;
}

.basic-3 .list-unstyled .fas {
  font-size: 0.375rem;
  line-height: 1.625rem;
}

.basic-3 .list-unstyled .media-body {
  margin-left: 0.5rem;
}

/*********************/
/*     Details 2     */
/*********************/
.basic-4 {
  padding-top: 3.25rem;
  padding-bottom: 4rem;
}

.basic-4 .text-container {
  margin-bottom: 3.75rem;
}

.basic-4 h2 {
  margin-bottom: 1.375rem;
}

.basic-4 p:nth-of-type(2) {
  margin-bottom: 1.625rem;
}

.basic-4 .btn-solid-reg, .btn-cotiza {
  margin-right: 0.375rem;
}

/****************************/
/*     Details Lightbox     */
/****************************/
.lightbox-basic {
  position: relative;
  max-width: 1150px;
  margin: 2.5rem auto;
  padding: 3rem 1rem;
  background-color: #ffffff;
  text-align: left;
}

.lightbox-basic .image-container {
  margin-bottom: 3rem;
  text-align: center;
}

.lightbox-basic .image-container img {
  border-radius: 8px;
}

.lightbox-basic h3 {
  margin-bottom: 0.5rem;
}

.lightbox-basic hr {
  width: 44px;
  margin-top: 0.125rem;
  margin-bottom: 1rem;
  margin-left: 0;
  height: 2px;
  border: none;
  background-color: #129dd8;
}

.lightbox-basic h4 {
  margin-top: 1.75rem;
  margin-bottom: 0.625rem;
}

.lightbox-basic .list-unstyled {
  margin-bottom: 1.5rem;
}

.lightbox-basic .list-unstyled .fas {
  color: #129dd8;
  font-size: 0.75rem;
  line-height: 1.75rem;
}

.lightbox-basic .list-unstyled .media-body {
  margin-left: 0.375rem;
}

.lightbox-basic .list-unstyled {
  margin-bottom: 1.5rem;
}

/* Action Button */
.lightbox-basic .btn-solid-reg.mfp-close {
  position: relative;
  width: auto;
  height: auto;
  color: #ffffff;
  opacity: 1;
  font-weight: 600;
  font-family: "Open Sans";
}

.lightbox-basic .btn-solid-reg.mfp-close:hover {
  color: #129dd8;
}
/* end of action Button */

/* Back Button */
.lightbox-basic .btn-outline-reg.mfp-close.as-button {
  position: relative;
  display: inline-block;
  width: auto;
  height: auto;
  margin-left: 0.375rem;
  padding: 1.375rem 2.25rem 1.375rem 2.25rem;
  border: 1px solid #333333;
  background-color: transparent;
  color: #333333;
  opacity: 1;
  font-family: "Open Sans";
}

.lightbox-basic .btn-outline-reg.mfp-close.as-button:hover {
  background-color: #333333;
  color: #ffffff;
}
/* end of back button */

/* Close X Button */
.lightbox-basic button.mfp-close.x-button {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 44px;
  height: 44px;
  color: #555555;
}
/* end of close x button */

/*********************/
/*     Details 3     */
/*********************/
.basic-5 {
  padding-top: 5rem;
  padding-bottom: 4rem;
}

.basic-5 .image-container {
  margin-bottom: 3.5rem;
}

.basic-5 h2 {
  margin-bottom: 1.375rem;
}

.basic-5 .list-unstyled .fas {
  font-size: 0.375rem;
  line-height: 1.625rem;
}

.basic-5 .list-unstyled .media-body {
  margin-left: 0.5rem;
}

/**********************/
/*     Statistics     */
/**********************/
.counter {
  padding-top: 2rem;
  text-align: center;
}

.counter #counter {
  margin-bottom: 0.75rem;
}

.counter #counter .cell {
  display: inline-block;
  width: 124px;
  margin-right: 1.5rem;
  margin-bottom: 3rem;
  margin-left: 1.5rem;
  vertical-align: top;
}

.counter #counter .counter-value {
  color: #333333;
  font-weight: 700;
  font-size: 3.25rem;
  line-height: 3.75rem;
  vertical-align: middle;
}

.counter #counter .counter-info {
  margin-bottom: 0;
  font-size: 0.875rem;
  vertical-align: middle;
}

/************************/
/*     Testimonials     */
/************************/
.slider-1 {
  padding-top: 8.5rem;
  padding-bottom: 8.5rem;
}

.slider-1 .section-title {
  text-align: center;
}

.slider-1 .h2-heading {
  margin-bottom: 3rem;
  text-align: center;
}

.slider-1 .slider-container {
  position: relative;
}

.slider-1 .swiper-container {
  position: static;
  width: 86%;
  text-align: center;
}

.slider-1 .swiper-button-prev:focus,
.slider-1 .swiper-button-next:focus {
  /* even if you can't see it chrome you can see it on mobile device */
  outline: none;
}

.slider-1 .swiper-button-prev {
  left: -14px;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2028%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23707375'%2F%3E%3C%2Fsvg%3E");
  background-size: 18px 28px;
}

.slider-1 .swiper-button-next {
  right: -14px;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2028%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23707375'%2F%3E%3C%2Fsvg%3E");
  background-size: 18px 28px;
}

.slider-1 .card {
  position: relative;
  border: none;
  background-color: transparent;
}

.slider-1 .card-image {
  width: 80px;
  height: 80px;
  margin-right: auto;
  margin-bottom: 1.25rem;
  margin-left: auto;
  border-radius: 50%;
}

.slider-1 .card-body {
  padding: 0;
}

.slider-1 .testimonial-text {
  margin-bottom: 0.75rem;
}

.slider-1 .testimonial-author {
  margin-bottom: 0;
  color: #181c3b;
}

/*******************/
/*     Contact     */
/*******************/
.form-1 {
  padding-top: 8.25rem;
  padding-bottom: 4.5rem;
  text-align: center;
  background: linear-gradient(rgba(63, 66, 75, 0.7), rgba(63, 66, 75, 1)),
    url("../images/background.jpg") center center no-repeat;
  background-size: cover;
}

.form-1 .h2-heading {
  margin-bottom: 0.625rem;
  color: #ffffff;
  text-align: center;
}

.form-1 .p-heading {
  margin-bottom: 3.75rem;
  color: #ffffff;
}

.form-1 .label-control {
  color: #efefef;
}

.form-control-input:focus + .label-control,
.form-control-input.notEmpty + .label-control,
.form-control-textarea:focus + .label-control,
.form-control-textarea.notEmpty + .label-control {
  color: #efefef;
}

.form-1 .form-control-input,
.form-1 .form-control-textarea {
  border: 1px solid #7f838d;
  background-color: #666a75;
  color: #efefef;
}

/******************/
/*     Footer     */
/******************/
.footer {
  padding-top: 2.5rem;
  padding-bottom: 1.5rem;
  background-color: #3f424b;
}

.footer a {
  text-decoration: none;
}

.footer .footer-col {
  margin-bottom: 3rem;
}

.footer h6 {
  margin-bottom: 0.625rem;
  color: #cacfdf;
}

.footer p,
.footer a,
.footer ul {
  color: #cacfdf;
}

.footer .li-space-lg li {
  margin-bottom: 0.375rem;
}

.footer .footer-col.third .fa-stack {
  width: 2em;
  margin-bottom: 1.25rem;
  margin-right: 0.375rem;
  font-size: 1.375rem;
}

.footer .footer-col.third .fa-stack .fa-stack-2x {
  color: #cacfdf;
  transition: all 0.2s ease;
}

.footer .footer-col.third .fa-stack .fa-stack-1x {
  color: #3f424b;
  transition: all 0.2s ease;
}

.footer .footer-col.third .fa-stack:hover .fa-stack-2x {
  color: #129dd8;
}

.footer .footer-col.third .fa-stack:hover .fa-stack-1x {
  color: #ffffff;
}

/*********************/
/*     Copyright     */
/*********************/
.copyright {
  padding-bottom: 1rem;
  background-color: #3f424b;
  text-align: center;
}

.copyright p,
.copyright a {
  color: #cacfdf;
  text-decoration: none;
}

/******************************/
/*     Back To Top Button     */
/******************************/


a.back-to-top {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 10rem;
  right: 1rem;
  z-index: 999;
  display: none;
  border-radius: 50px;
  background: #4d505a url("../images/up-arrow.png") no-repeat center 47%;
  background-size: 18px 18px;
  text-indent: -9999px;
}

a:hover.back-to-top {
  background-color: #129dd8;
}

.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom: 5rem; 
	right: 1rem;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
  z-index:100;
}

.float:hover {
	text-decoration: none;
	color: #25d366;
  background-color:#fff;
}

.my-float{
	margin-top:16px;
}


@media (min-width: 768px) { /* Tablet */
  a.back-to-top {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 7rem;
    right: 1rem;
    z-index: 999;
    display: none;
    border-radius: 50px;
    background: #4d505a url("../images/up-arrow.png") no-repeat center 47%;
    background-size: 18px 18px;
    text-indent: -9999px;
  }

  .float{
    position:fixed;
    width:60px;
    height:60px;
    bottom: 2rem; 
    right: 1rem;
    background-color:#25d366;
    color:#FFF;
    border-radius:50px;
    text-align:center;
    font-size:30px;
    z-index:100;
  }

}


.wrapper-local {
  width:85%;
  margin-left:150px;
  padding-top:140px;
}

.mapa{
  padding: 70px;
}



/* Then style the iframe to fit in the container div with full height and width */
.responsive-iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  max-width: 600px;
  max-height: 450px;
}




/***********************/
/*     Extra Pages     */
/***********************/
.ex-header {
  padding-top: 8.5rem;
  padding-bottom: 4rem;
  background-color: #f7f9fa;
}

.ex-basic-1 .list-unstyled .fas {
  font-size: 0.375rem;
  line-height: 1.625rem;
}

.ex-basic-1 .list-unstyled .media-body {
  margin-left: 0.5rem;
}

.ex-basic-1 .text-box {
  padding: 1.25rem 1.25rem 0.5rem 1.25rem;
  background-color: #f7f9fa;
}

.ex-cards-1 .card {
  border: none;
  background-color: transparent;
}

.ex-cards-1 .card .fa-stack {
  width: 2em;
  font-size: 1.125rem;
}

.ex-cards-1 .card .fa-stack-2x {
  color: #129dd8;
}

.ex-cards-1 .card .fa-stack-1x {
  color: #ffffff;
  font-weight: 700;
  line-height: 2.125rem;
}

.ex-cards-1 .card .list-unstyled .media-body {
  margin-left: 0.75rem;
}

.ex-cards-1 .card .list-unstyled .media-body h5 {
  margin-top: 0.125rem;
  margin-bottom: 0.375rem;
}

/*************************/
/*     Media Queries     */
/*************************/
/* Min-width 768px */
@media (min-width: 768px) {
  /* Services */
  .basic-2 .services-decoration {
    height: 40px;
  }
  /* end of services */

  /* Extra Pages */
  .ex-basic-1 .text-box {
    padding: 1.75rem 2rem 0.875rem 2rem;
  }
  /* end of extra pages */
}
/* end of min-width 768px */

/* Min-width 992px */
@media (min-width: 992px) {
  /* General Styles */
  .h2-heading {
    width: 35.25rem;
    margin-right: auto;
    margin-left: auto;
  }

  .p-heading {
    width: 46rem;
    margin-right: auto;
    margin-left: auto;
  }
  /* end of general styles */

  /* Navigation */
  .navbar {
    padding-top: 1.75rem;
    background-color: transparent;
    box-shadow: none;
    transition: all 0.2s;
  }

  .navbar.top-nav-collapse {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    background-color: #f7f9fa;
  }

  .offcanvas-collapse {
    position: static;
    top: auto;
    bottom: auto;
    left: auto;
    width: auto;
    padding-right: 0;
    padding-left: 0;
    background-color: transparent;
    overflow-y: visible;
    visibility: visible;
  }

  .offcanvas-collapse.open {
    -webkit-transform: none;
    transform: none;
  }

  .navbar .navbar-nav {
    margin-top: 0;
    margin-bottom: 0;
  }

  .navbar .nav-item .nav-link {
    padding-right: 0.625rem;
    padding-left: 0.625rem;
  }

  .navbar .dropdown-menu {
    margin-top: 0.25rem;
    box-shadow: 0 3px 3px 1px rgba(0, 0, 0, 0.05);
  }

  .navbar .dropdown-divider {
    width: 90%;
  }

  .navbar .social-icons {
    margin-left: 0.5rem;
  }

  .navbar .fa-stack {
    margin-right: 0;
    margin-left: 0.25rem;
  }
  /* end of navigation */

  /* Header */
  .header {
    padding-top: 14.5rem;
    padding-bottom: 2.5rem;
    top: 0;
    left: 0;
  }

  .header .h1-large {
    margin-bottom: 9rem;
    text-align: left;
  }

  .header .title-wrapper {
    margin-bottom: 1rem;
  }

  .header h5 {
    margin-top: 0.25rem;
  }

  .header .expertise .icon {
    width: 62px;
    margin-right: 1.125rem;
  }

  .header .expertise {
    display: inline-block;
    width: 296px;
    vertical-align: top;
  }

  .header .expertise:nth-of-type(3n + 2) {
    margin-right: 1rem;
    margin-left: 1rem;
  }
  /* end of header */

  /* About */
  .basic-1 .text-container.first {
    margin-bottom: 0;
  }

  .basic-1 .text-container.second {
    margin-bottom: 0;
  }
  /* end of about */

  /* Services */
  .basic-2 {
    padding-bottom: 7rem;
  }

  .basic-2 .service-container {
    display: inline-block;
    width: 290px;
    vertical-align: top;
  }

  .basic-2 .service-container:nth-of-type(3n + 2) {
    margin-right: 1.5rem;
    margin-left: 1.5rem;
  }

  .basic-2 .service-wrapper {
    margin-bottom: 3.5rem;
  }

  .basic-2 .services-decoration {
    height: 60px;
  }
  /* end of services */

  /* Details 1 */
  .basic-3 .image-container {
    margin-bottom: 0;
  }
  /* end of details 1 */

  /* Details 2 */
  .basic-4 {
    padding-top: 5.5rem;
    padding-bottom: 5.5rem;
  }

  .basic-4 .text-container {
    margin-bottom: 0;
  }
  /* end of details 2 */

  /* Details Lightbox */
  .lightbox-basic {
    padding: 3rem 3rem;
  }

  .lightbox-basic .image-container {
    margin-bottom: 0;
    text-align: left;
  }
  /* end of details lightbox */

  /* Details 3 */
  .basic-5 .image-container {
    margin-bottom: 0;
  }
  /* end of details 3 */

  /* Statistics */
  .counter {
    padding-top: 4rem;
  }
  /* end of statistics */

  /* Testimonials */
  .slider-1 .swiper-container {
    width: 92%;
  }

  .slider-1 .swiper-button-prev {
    left: -16px;
    width: 22px;
    background-size: 22px 34px;
  }

  .slider-1 .swiper-button-next {
    right: -16px;
    width: 22px;
    background-size: 22px 34px;
  }
  /* end of testimonials */

  /* Contact */
  .form-1 form {
    width: 790px;
    margin-right: auto;
    margin-left: auto;
  }
  /* end of contact */

  /* Footer */
  .footer .footer-col {
    margin-bottom: 2rem;
  }

  .footer .footer-col.first {
    display: inline-block;
    width: 320px;
    margin-right: 1.75rem;
    vertical-align: top;
  }

  .footer .footer-col.second {
    display: inline-block;
    width: 320px;
    margin-right: 1.75rem;
    vertical-align: top;
  }

  .footer .footer-col.third {
    display: inline-block;
    width: 224px;
    text-align: right;
    vertical-align: top;
  }

  .footer .footer-col.third .fa-stack {
    margin-right: 0;
    margin-left: 0.375rem;
  }
  /* end of footer */

  /* Extra Pages */
  .ex-cards-1 .card {
    display: inline-block;
    width: 296px;
    vertical-align: top;
  }

  .ex-cards-1 .card:nth-of-type(3n + 2) {
    margin-right: 1rem;
    margin-left: 1rem;
  }
  /* end of extra pages */
}
/* end of min-width 992px */

/* Min-width 1200px */
@media (min-width: 1200px) {
  /* General Styles */
  .h1-large {
    font-size: 3.75rem;
    line-height: 4.375rem;
  }
  /* end of general styles */

  /* Header */
  .header {
    padding-top: 19rem;
  }

  .header .h1-large {
    margin-bottom: 14rem;
  }

  .header .expertise {
    width: 320px;
  }

  .header .expertise:nth-of-type(3n + 2) {
    margin-right: 4.375rem;
    margin-left: 4.375rem;
  }
  /* end of header */

  /* About */
  .basic-1 {
    padding-top: 90px;
    padding-bottom: 60px;
  }

  .basic-1 .text-container.second {
    margin-top: 1px;
    margin-right: 0.5rem;
    margin-left: 0.5rem;
  }

  .basic-1 .text-container.third {
    margin-top: 0.625rem;
    margin-left: 1rem;
  }
  /* end of about */

  /* Services */
  .basic-2 .service-container {
    width: 340px;
  }

  .basic-2 .service-container:nth-of-type(3n + 2) {
    margin-right: 2.5rem;
    margin-left: 2.5rem;
  }

  .basic-2 .services-decoration {
    height: 80px;
  }
  /* end of services */

  /* Details 1 */
  .basic-3 .image-container {
    margin-right: 4.25rem;
  }

  .basic-3 .text-container {
    margin-top: 2.25rem;
  }
  /* end of details 1 */

  /* Details 2 */
  .basic-4 .image-container {
    margin-left: 4.5rem;
  }

  .basic-4 .text-container {
    margin-top: 2em;
  }
  /* end of details 2 */

  /* Details Lightbox */
  .lightbox-basic .image-container {
    margin-right: 1.5rem;
  }
  /* end of details lightbox */

  /* Details 3 */
  .basic-5 .image-container {
    margin-right: 4.25rem;
  }

  .basic-5 .text-container {
    margin-top: 2.25rem;
  }
  /* end of details 3 */

  /* Statistics */
  .counter #counter .cell {
    margin-right: 2.875rem;
    margin-left: 2.875rem;
  }

  .counter #counter .counter-value {
    font-size: 3.75rem;
    line-height: 4.25rem;
  }
  /* end of statistics */

  /* Testimonials */
  .slider-1 .swiper-button-prev {
    left: -24px;
  }

  .slider-1 .swiper-button-next {
    right: -24px;
  }
  /* end of testimonials */

  /* Footer */
  .footer .footer-col.first {
    width: 352px;
    margin-right: 6rem;
  }

  .footer .footer-col.second {
    margin-right: 6.5rem;
  }

  .footer .footer-col.third {
    text-align: right;
  }
  /* end of footer */

  /* Extra Pages */
  .ex-cards-1 .card {
    width: 336px;
  }

  .ex-cards-1 .card:nth-of-type(3n + 2) {
    margin-right: 2.875rem;
    margin-left: 2.875rem;
  }
  /* end of extra pages */
}


/* 

@media (max-width:1200px){
  #local {
      flex-wrap: wrap;
      padding-top:30px;
 }
 .wrapper-local {
  width:90%;
  margin:auto;
  padding-top:50px;    
 }

} */

/*=========================MEDIA QUERIES PANTALLA SM================================*/


 @media (max-width:896px) {

  .wrapper-local {
      margin:auto;
      padding-top:50px; 
      padding-bottom: 0px;  
  }


  #local {
      flex-wrap: wrap;
  }

  .maps {
      width: 335px;
      height: 440px;
  }

}

/* end of min-width 1200px */

/* sLIDER

.slider {
  max-width: 100vw;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.slider::after {
  content: "";
  position: absolute;
  top: 0;
  max-width: 100vw;
  height: 100vh;
  background-color: red;
  z-index: 999;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  transition: transform 1s;
}

.slide > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider__btn {
  position: absolute;
  top: 50%;
  z-index: 10;

  color: #343a40;
  background-color: #fff;
  border: none;
  border-radius: 50%;
  height: 3.5rem;
  width: 3.5rem;
  cursor: pointer;

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

.slider-icon {
  width: 3rem;
  height: 3rem;
}

.slider__btn--left {
  left: 3%;
  transform: translate(-50%, -50%);
}

.slider__btn--right {
  right: 3%;
  transform: translate(50%, -50%);
}

 */


/*  */

.contenedor{
  max-width: 120rem;
  margin: 0 auto;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .contenedor{
    padding: 140px 180px 2rem;
    margin-bottom: 0;
  }
}

/* utilidades */
.no-margin{
  margin: 0;
}

.no-padding{
  padding: 0;
}

.centrar-texto{
  text-align: center;
}


.logo{
  color: var(--blanco);
}

.logo__nombre{
  font-weight: 400;
}

.logo__bold{
  font-weight: 700;
}

.titulo{
  text-align: center;
  color: var(--color3);
  font-weight: bold;
  padding-top: 90px;
  font-size: 30px;
}

@media (min-width: 768px) {
  .titulo{
    text-align: center;
    padding-bottom: 30px;
    padding-top: 0;
    font-size: 30px;
  }
}

.producto{
  background-color: var(--colorgris);
  border-radius: 2rem;
}

@media (min-width: 768px) {
  .producto{
    background-color: var(--colorgris);
    padding: 1.5rem;
    border-radius: 2rem;
  }
}


.producto__nombre{
  font-size: 15px;
  font-weight: bold;
  text-align: center;
}

@media (min-width: 768px) {
  .producto__nombre{
    font-size: 30px;
  }
}

.producto__precio{
  font-size: 2.6rem;
  color: var(--color3);
  font-weight: bold;
}

.producto__imagen{
  width: 100%;
}

.producto__nombre,
.producto__precio{
  margin: 1rem 0;
  text-align: center;
  line-height: 1.3;
  text-transform: uppercase;
}


.grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 0 auto;
  padding: 2rem;
}

@media (min-width: 768px) { /* Tablet */
  .grid {
      grid-template-columns: repeat(3, 1fr);
  }
}


.cotiza{
  background-color: var(--color2);
  min-height: 140px;
}

.cotiza__info h1{
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  padding-top: 20px; 
  /* 
  padding-top: 40px;  */
  /* text-align: left;
  */
}

.boton{
  display: block;
  text-align: center;
  padding: 25px auto;
  text-transform: uppercase;
  margin-bottom: 30px;
  cursor: pointer;
  border: none;
  margin: 10px 30px 30px 40px;
}



@media (min-width: 768px) {
  .cotiza{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .cotiza__info h1{
    align-items: center;
    justify-content: right;
    font-size: 30px;
    padding-top: 40px;
  }


  .btn-cotiza{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 10px 15px 20px;
    height: 30%;
    margin-top: 40px;
    width: 30%;
  } 
  
}

.btn-cotiza{
  background-color: var(--color3);
  padding: 1.375rem 2.25rem 1.375rem 2.25rem;
  border: 1px solid #129dd8;
  border-radius: 32px;
  background-color: #129dd8;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 0;
  text-decoration: none;
  transition: all 0.2s;
  text-transform: uppercase;
}

.p-copyright,
.p-formulario{
  text-align: center;
}