:root {
  --primary-font: "Outfit", serif;
  --base-size-font: 18px;

  --primary-color: #0ba44a;
  --secondary-color: #727272;
  --tertiary-color: #f3c178;

  --transition: all 0.4s ease;
  --box-shadow: 0px 2.589681386947632px 10.358725547790527px 0px #0000001f;

  --border-radius: 15px;
  --border-radius2: 25px;

  --title: 3.3rem;
  --title-s: 2.6rem;
  --text-content-size: 1rem; /* Párrafos, textos de contenido */
}

body {
  font-family: var(--primary-font);
  font-size: var(--base-size-font);
  font-weight: 300;
  line-height: 1.2;
  margin: 0;
  color: var(--secondary-color);
}
.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.img-contain {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.d-flex {
  display: flex;
}

h1,
h2,
h3 {
  font-weight: 400;
  line-height: 1;
}
h1 {
  font-size: var(--title-s);
}
h2 {
  font-size: 2.5rem;
}

p {
  margin-bottom: 20px;
  font-weight: 300;
  line-height: 1.6rem;
  font-size: var(--text-content-size);
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  h1 {
    font-size: var(--title);
  }
}
@media screen and (min-width: 1280px) {
}

/* --- Container --- */

.container {
  margin: 0 auto;
  width: 100%;
  position: relative;
  padding: 0 1.5rem;
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .container {
    width: 100%;
    padding: 0 6rem;
  }
}
@media screen and (min-width: 1280px) {
}

/* --- General --- */

section {
  padding: 80px 0;
}
.row {
  gap: 60px;
  position: relative;
}
.section-title {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}
.section-title span {
  color: var(--tertiary-color);
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.section-title.-white span {
  color: var(--tertiary-color);
}
.section-title h2 {
  color: var(--primary-color);
}
.section-title.-white h2 {
  color: #fff;
}

.btn {
  position: relative;
  padding: 15px 70px 15px 25px;
  border-radius: 50px;
  background-color: var(--quaternary-color);
  cursor: pointer;
  display: flex;
  width: fit-content;
  font-size: var(--text-content-size);
  color: var(--tertiary-color);
  transition: var(--transition);
  font-weight: 400;
  border: 1px solid var(--tertiary-color);
}
.btn::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  background-image: url(../images/arrow-beige-btn.svg);
  background-size: contain;
  background-repeat: no-repeat;
  right: 30px;
  top: 18px;
  transition: var(--transition);
}
.btn:hover {
  background-color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  color: #fff;
}
.btn.-white:hover {
  border: 1px solid #fff;
}
.btn:hover::after {
  transform: translate(10px);
}

/*-------------------- Header ------------------*/
.header {
  width: 100%;
  height: 90px;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  transition: var(--transition);
  /*background-color: #282828;*/
}

.header.activeFixed {
  position: fixed !important;
  height: 80px;
  transform: translateY(0);
  background-color: #282828;
  box-shadow: var(--box-shadow);
}
.header__inner {
    align-items: flex-start;
    position: relative;
    justify-content: space-between;
}
.header__logo{
  width: 40%;
}
.header__logo a {
  display: block;
  height: 45px;
}
.header__logo a.logo-mobile{
  display: flex;
}
.header__logo a.logo-pc{
  display: none;
}
.header__logo img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.header__content {
  display: flex;
  align-items: center;
  gap: 10px;
}
/* .header.activeFixed .item-header:nth-child(3) {
  padding: 0;
} */
.item-header:nth-child(3) {
  display: flex;
  justify-content: flex-end;
  padding: 0 0px 0 20px;
  transition: var(--transition);
  width: 40%;
}
.item-header:nth-child(2) {
  width: 50%;
  display: none;
  transition: var(--transition);
}
.item-header .menu {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: 20px;
}
.item-header .menu li {
  position: relative;
}
.item-header .menu li > a {
  color: #fff;
  padding: 10px 14px;
  transition: var(--transition);
  position: relative;
}

.item-header .menu li.current-menu-item > a,
.item-header .menu li > a:hover {
  color: var(--tertiary-color);
}
.item-header .menu li.page-scroll.current-menu-item > a{
	color: #fff;
}
.item-header .menu li.page-scroll > a:hover {
  color: var(--tertiary-color);
}
.item-header .menu li.current-menu-item {
  position: relative;
}
.menu-menu-principal-container{
	    display: flex;
    padding-bottom: 5px;
}
.header__toggle {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: transparent;
  padding: 10px;
}

.header__toggle img {
  width: 100%;
}

.header__button {
  margin: 0;
  font-size: var(--base-size-font);
  padding: 8px;
  width: 100px;
  text-align: center;
}
.header__redes {
  flex-direction: row;
  gap: 8px;
}
.header__redes img {
  width: 30px;
}

.header__menu {
  padding-left: 20px;
}


.header-intern{
  transition: var(--transition);
	background-color: #282828;
}
.header .header__logo{
  align-items: center;
}
.header .item-header{
  height: 90px;
}
.header-intern .item-header:nth-child(2) {
  background-color: var(--secondary-color);
  border-radius: 0 0 0 50px;
}

.header-intern .item-header:nth-child(3) {
  padding: 0 0 0 20px;
  width: 45%;
  justify-content: center;
}
.header-intern.activeFixed{
  background-color: #282828;
}
.header.activeFixed .item-header{
  height: 80px;
}
.header.activeFixed .header__inner::after {
  height: 80px;
}
.header__toggle-mobile{
  width: 15%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.menu .menu-item .sub-menu {
    position: absolute;
    top: 40px;
    left: -20%;
    margin: 0 !important;
    box-shadow: 0 4px 12px -4px rgb(0 0 0 / 10%);
    padding: 20px !important;
    min-width: 240px;
    background-color: var(--primary-color);
    opacity: 0;
    visibility: hidden;
    transition: all .5scubic -bezier(0, 0.5, 0, 1);
    border-radius: 25px 0 25px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
	
}

.menu .menu-item .sub-menu:after {
    content: "";
    width: 100%;
    height: 20px;
    position: absolute;
    top: -20px;
    left: 0;
}
.menu .menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
}

.menu .menu-item .sub-menu li a:after{
    display:none;
}
.menu .menu-item .sub-menu li {
    margin: 5px 0;
}
.menu .menu-item .sub-menu li a{
	padding: 0;
}
.menu > li.menu-item-has-children > a:before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0px;
    width: 8px;
    height: 8px;
    background-image: url(../images/arrow-dropdown.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transition: all .3sease;
}
.menu-sidebar .sub-menu {
    border-top: 1px solid #fcd4e5 !important;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 0 !important;
    background-color: transparent !important;
    padding-top: 20px !important;
    padding-bottom: 20px !important;
    margin: 20px 0 !important;
    margin-top: 40px !important;
    border: 0 !important;
    display: none;
}
@media screen and (min-width: 580px) {
  .header {
    padding: 0;
    height: 100px;
  }
}
@media screen and (min-width: 980px) {
  .header {
    padding: 0;
    height: 120px;
    transform: translateY(20px);
    background-position: top -27px right 0px;
    background-color: transparent;
  }
  .item-header:nth-child(2) {
    display: flex;
  }
  .header__logo{
    width: 35%;
  }
  .header__logo a {
    height: 60px;
  }
  .header__toggle-mobile {
    display: none;
  }
  .item-header:nth-child(3) {
    padding: 0 40px 0 0;
  width: 20%;
}
  .header__logo a.logo-mobile{
    display: none;
  }
  .header__logo a.logo-pc{
    display: flex;
  }
  .header-intern .header__inner::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 110px;
    background-color: var(--secondary-color);
    right: -100%;
    top: 0;
    transition: var(--transition);
  }
  .header-intern .item-header:nth-child(3) {
    background-color: var(--secondary-color);
    padding: 0;
    justify-content: flex-end;
    width: 15%;
  }
  .header-intern.activeFixed{
    background-color: #fff;
  }
  .header .item-header{
    height: 110px;
  }
}
@media screen and (min-width: 1280px) {
  .header {
    padding: 0;
    height: 110px;
    transform: translateY(0px);
    background-position: top -27px right 97px;
  }
  .header__logo a {
    height: 63px;
    transition: var(--transition);
  }
  .header.activeFixed .header__logo a {
    height: 50px;
  }
}

/*-------------------- Footer ------------------*/
footer {
  background-color: var(--primary-color);
  color: #fff;
  font-size: var(--text-content-size);
  padding-top: 20px;
  position: relative;
  margin-top: 40px;
}
.footer-wrapper {
  flex-direction: column;
}

.footer-wrapper > .row:nth-child(1) {
  padding: 90px 0 20px;
  justify-content: center;
}
.footer-wrapper > .row:nth-child(2) {
  border-bottom: 1px dashed #fff;
  width: 100%;
  gap: 40px;
  flex-direction: column;
  text-align: center;
}
.footer__redes {
  flex-direction: row;
  gap: 8px;
}
.footer__redes img {
  width: 40px;
}

.copyright {
  flex-direction: column;
  gap: 5px;
  align-items: flex-start;
  justify-content: center;
  padding: 20px 50px 20px 0px;
  text-align: left;
}
.copyright img {
  width: 80px;
}
.omelet {
  gap: 5px;
}
.content-footer {
  padding-right: 100px;
  padding: 30px 0;
}
.content-footer h3 {
  color: var(--tertiary-color);
  margin-bottom: 10px;
}
.content-footer > div:nth-child(1) {
  flex-direction: column;
  width: 100%;
}
.content-footer > div:nth-child(2) {
  width: 100%;
  flex-direction: column;
  gap: 0px;
}
.content-footer > div:nth-child(3){
	justify-content: center;
		align-items: center;
}
.content-footer > div:nth-child(2) > div {
  flex-direction: column;
  width: 100%;
}

.content-footer a {
  margin-bottom: 10px;
  transition: var(--transition);
}
.content-footer a:hover {
  color: var(--tertiary-color);
}

.iso-footer {
  position: absolute;
  width: 110px;
  bottom: 0;
  right: 0;
}
.logo-footer {
  position: absolute;
  width: 100%;
  top: -42px;
  left: 50%;
  transform: translate(-50%);
}
.reclamaciones-img{
	width: 100%;
	max-width: 160px;
}
@media screen and (min-width: 580px) {
  .logo-footer {
    width: 540px;
    top: -45px;
  }
  .copyright {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    text-align: center;
  }
}
@media screen and (min-width: 980px) {
  .footer-wrapper > .row:nth-child(2) {
    flex-direction: row;
    gap: 0;
  }
  .content-footer > div:nth-child(1) {
        width: 30%;
        border-right: 1px solid #fff;
        padding-right: 30px;
    }
      .content-footer > div:nth-child(2) {
        width: 55%;
        flex-direction: row;
        padding-left: 30px;
		  border-right: 1px solid #fff;
        padding-right: 30px;
        gap: 30px;
    }
	.content-footer > div:nth-child(3) {
        width: 15%;
		padding-left: 30px;
		justify-content: center;
		align-items: center;
    }
  .content-footer > div:nth-child(2) > div {
    width: 50%;
  }
  .footer-wrapper > .row:nth-child(1) {
    padding: 20px 0;
    justify-content: flex-start;
  }
  .footer-wrapper > .row:nth-child(2) {
    width: 80%;
    text-align: left;
  }
  .content-footer > div:nth-child(2) > div:last-child {
    margin-top: 28px;
  }

  .iso-footer {
    width: 330px;
  }
}
@media screen and (min-width: 1280px) {
}

/**
*	SIDEBAR MENU
*	=======================================================================================================
**/
.sidebarIconToggle {
  transition: all 0.3s;
  box-sizing: border-box;
  cursor: pointer;
  z-index: 99;
  height: 100%;
  width: 100%;
  top: 22px;
  left: 15px;
  height: 16px;
  width: 22px;
}
.spinner {
  transition: all 0.3s;
  box-sizing: border-box;
  position: absolute;
  height: 3px;
  width: 100%;
  background-color: #fff;
}
.horizontal {
  transition: all 0.3s;
  box-sizing: border-box;
  position: relative;
  float: left;
  margin-top: 3px;
}
.diagonal.part-1 {
  position: relative;
  transition: all 0.3s;
  box-sizing: border-box;
  float: left;
}
.diagonal.part-2 {
  transition: all 0.3s;
  box-sizing: border-box;
  position: relative;
  float: left;
  margin-top: 3px;
}
#overlay {
  width: 100%;
  height: 100vh;
  background-color: var(--secondary-color);
  opacity: 0.5;
  position: fixed;
  transition: left 0.5s ease;
  top: 0;
  left: -100%;
  z-index: 99999;
}
#overlay.active {
  left: 0;
}

#sidebar {
  height: 100vh;
  width: 90%;
  max-width: 1120px;
  background-color: #282828;
  padding-top: 100px;
  position: fixed;
  overflow: hidden;
  transition: right 0.5s ease;
  right: -100%;
  top: 0;
  z-index: 999999;
}
#sidebar.active {
  right: 0; /* Mueve el div dentro de la pantalla */
}
#sidebar .container {
  height: 100%;
}
#sidebar .logo {
  width: 100%;
  max-width: 200px;
}
#sidebar .menu-sidebar {
  font-family: var(--secondary-font);
}
#sidebar .menu-sidebar li a {
  font-size: 1.2rem;
  margin-bottom: 10px;
  display: flex;
  color: #fff;
  padding: 10px 25px;
  transition: var(--transition);
  position: relative;
  border-radius: 7px;
}
#sidebar .menu-sidebar li a.current,
#sidebar .menu-sidebar li:hover a {
  color: #fff;
  background-color: var(--primary-color);
}
#sidebar .redes {
  display: flex;
  flex-direction: row;
  gap: 8px;
}
#sidebar .redes img {
  width: 50px;
}
.datos {
  padding: 0px;
  line-height: 1.4;
}
.datos,
.datos a {
  color: #fff;
}
.sidebar-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0 30px;
  align-items: center;
}

.sidebar-wrapper .row {
    flex-direction: column;
    gap: 65px;
    width: 100%;
    margin-bottom: 40px;
}
.sidebar-wrapper .col-50 {
  width: 100%;
}
.content-sidebar {
  padding: 40px 0;
  gap: 20px;
  align-items: start;
  border-top: 1px solid var(--secondary-color);
  width: max-content;
  position: relative;
}
.content-sidebar .datos:nth-child(1) {
  padding-left: 0;
}

.adorno-sidebar {
  position: absolute;
  bottom: -172px;
  right: -5px;
  transition: bottom 0.5s ease;
}
.adorno-sidebar.active {
  bottom: -25px;
}
.adorno-sidebar img {
  width: 150px;
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  #sidebar {
    width: 80%;
  }
  .sidebar-wrapper {
    padding: 0;
  }
  .sidebar-wrapper .row {
    flex-direction: row;
  }
  .sidebar-wrapper .col-50 {
    width: 50%;
  }
  .content-sidebar {
    align-items: end;
    gap: 0;
  }
  .content-sidebar .datos:nth-child(2) {
    border-right: 1px solid #fff;
  }
  .datos {
    padding: 0 40px;
  }
}
@media screen and (min-width: 1280px) {
  .adorno-sidebar img {
    width: 220px;
  }
}

#close-btn {
  position: absolute;
  padding: 10px;
  top: -60px;
  right: 35px;
  background: transparent;
}
#close-btn img {
  width: 18px;
}
/**
*	HOME
*	=======================================================================================================
**/
/*-------------------- Welcome ------------------*/
#welcome {
  padding: 0;
  background: linear-gradient(to bottom, #fff 50%, var(--primary-color) 50%);
  position: relative;
}
#welcomeSliderImages {
  border-radius: 0 0 6rem 0;
  overflow: hidden;
}

#welcomeSliderImages .slick-slide {
  height: 100vh;
  max-height: 620px;
}
#welcomeSliderImages .slick-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

#welcomeSliderTexts {
  position: absolute;
  left: 0;
  width: 100%;
  top: 0;
  height: 800px;
  z-index: 9;
  padding: 125px 40px 0 2.5rem;
  display: flex
;
  align-items: center;
  color: #fff;
  max-height: 620px;
}
#welcomeSliderTexts h1,
#welcomeSliderTexts h2 {
  font-size: var(--title-s);
  font-weight: 700;
  margin-bottom: 40px;
}
#welcomeSliderTexts h1 strong,
#welcomeSliderTexts h2 strong {
  color: var(--primary-color);
}
#overlay-welcome {
  position: absolute;
  height: 100%;
  width: 85%;
  z-index: 1;
  background: rgb(11, 5, 0);
  background: -moz-linear-gradient(
    90deg,
    rgba(11, 5, 0, 0.9) 7%,
    rgba(11, 5, 0, 0) 100%
  );
  background: -webkit-linear-gradient(
    90deg,
    rgba(11, 5, 0, 0.9) 7%,
    rgba(11, 5, 0, 0) 100%
  );
  background: linear-gradient(
    90deg,
    rgba(11, 5, 0, 0.9) 7%,
    rgba(11, 5, 0, 0) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0b0500",endColorstr="#0b0500",GradientType=1);
}
.btns-welcome {
  position: absolute;
  right: 0;
  bottom: 20px;
  gap: 10px;
  padding: 0;
  z-index: 15;
  width: 100%;
  justify-content: center;
}

.btns-welcome button {
  width: 64px;
  height: 64px;
  border: 1px solid #fff;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  border-radius: 50px;
}
.btns-welcome button img {
  width: 11px;
}
@media screen and (min-width: 580px) {
  
  #welcomeSliderTexts {
    width: 500px;
    padding: 125px 0 0 3rem;
  }
  #welcomeSliderImages .slick-slide {
    height: 100vh;
    max-height: 645px;
  }
  #welcomeSliderTexts h1,
  #welcomeSliderTexts h2 {
    font-size: var(--title);
  }
  .btns-welcome {
    position: absolute;
    right: 0;
    bottom: 0;
    gap: 10px;
    padding: 0 3rem 40px 0;
    z-index: 15;
    width: fit-content;
}
#overlay-welcome {
  width: 65%;
}
}
@media screen and (min-width: 980px) {
  #welcome {
    padding: 0 6rem 0 0;
    background: linear-gradient(to bottom, #fff 50%, var(--primary-color) 50%);
    position: relative;
  }
          #welcomeSliderTexts {
        width: 590px;
        padding: 125px 0 0 10rem;
    }
  .btns-welcome {
    position: absolute;
    right: 0;
    bottom: 0;
    gap: 10px;
    padding: 0 10rem 50px 0;
    z-index: 15;
    width: fit-content;
}
}
@media screen and (min-width: 1280px) {
}

/*-------------------- Presentación ------------------*/

#presentation {
  padding: 0;
  background: linear-gradient(to right, #fff 50%, var(--primary-color) 50%);
}

#presentation .container {
  padding: 0;
}
#presentation .row {
  flex-direction: column-reverse;
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 0 5rem 0 8rem;
}
#presentation .row:first-child {
  border-radius: 0;
  height: 70px;
}

.presentation__img {
  width: 100%;
  height: 400px;
  border-radius: 0 5rem 0 8rem;
  overflow: hidden;
}


.presentation__content {
    width: 100%;
    flex-direction: column;
    justify-content: center;
    padding: 40px 1.5rem 40px 1.5rem;
}
.presentation__description {
  margin-bottom: 30px;
}
.presentation__description p:last-child {
  margin-bottom: 0;
}

.iso-presentation {
  position: absolute;
  width: 74px;
  height: 65px;
  object-fit: contain;
  bottom: 30px;
  right: 20px;
}
@media screen and (min-width: 580px) {
  .presentation__img {
    height: 590px;
  }
}

@media screen and (min-width: 980px) {
  #presentation .row {
    flex-direction: row;
  }
  .presentation__img {
    width: 55%;
    height: 590px;
  }
  .presentation__content {
    width: 45%;
    padding: 40px 80px 40px 10px;
  }
  #presentation .container {
    padding: 0 6rem;
  }
  .iso-presentation {
    bottom: 75px;
    right: 0;
  }
}
@media screen and (min-width: 1280px) {
}

/*-------------------- Services ------------------*/
#services .row {
  flex-direction: column;
}
.services__content {
  width: 100%;
}
.services__content > div {
  position: sticky;
  top: 130px;
}
.services__grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}
.item_services {
  height: 250px;
  overflow: hidden;
  border-radius: 2.3rem;
  position: relative;
}
.item_services .overlay {
  position: absolute;
  height: 30%;
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: 1;
  background: rgb(0, 0, 0);
  background: -moz-linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  background: -webkit-linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
}
.item_services:hover .item_services__img {
  transform: scale(1.1);
}
.item_services__img {
  width: 100%;
  height: 100%;
  transition: var(--transition);
}
.item_services__content {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 30%;
  bottom: 0;
  left: 0;
  align-items: flex-end;
  padding: 30px 90px 30px 40px;
}
.item_services__content h3 {
  font-size: var(--text-content-size);
  color: #fff;
  font-weight: 300;
}
.adorno {
  position: absolute;
  width: 254px;
  height: 154px;
  object-fit: contain;
  z-index: 3;
  right: -95px;
  bottom: -65px;
}
.plus {
  position: absolute;
  width: 20px;
  height: 20px;
  object-fit: contain;
  z-index: 4;
  bottom: 33px;
  right: 35px;
  transition: transform 0.6s ease-in-out;
}
.item_services:hover .plus {
  transform: rotate(360deg);
}
@media screen and (min-width: 580px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 980px) {
  #services .row {
    flex-direction: row;
  }
  .services__content {
    width: 35%;
  }
  .services__grid {
    width: 65%;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1280px) {
}

/*-------------------- Map ------------------*/

#map {
  padding: 0;
  overflow-x: clip;
  position: relative;
}
#map .row {
  flex-direction: column-reverse;
}
.map__content::after {
  content: "";
  width: 1000px;
  height: 100%;
  position: absolute;
  right: -76%;
  top: 0;
  background-color: var(--primary-color);
  z-index: -1;
}

#map .row:last-child {
  height: 375px;
  z-index: -1;
  position: relative;
}
.map__container-map {
  width: 100%;
}

.map__content {
  width: 100%;
  background-color: var(--primary-color);
  padding: 70px 0px 40px;
  color: #fff;
  flex-direction: column;
  justify-content: center;
  border-radius: 8rem 0 0 0;
  height: auto;
}
.map__content p:last-child {
  margin-bottom: 0;
}
.map__container-map {
  position: relative;
}

.map-img {
  position: absolute;
  width: 100%;
  height: auto;
  left: 0;
  top: -50px;
/*   padding-left: 100px; */
  display: none;
}
.item-city-map {
  position: absolute;
  color: var(--primary-color);
  padding-left: 25px;
  font-size: 1.3rem;
  transition: var(--transition);
  cursor: pointer;
}
.item-city-map::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  background-image: url(../images/iso-list.svg);
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.item-city-map:hover {
  transform: translate(10px);
}
#piura {
  left: 0px;
  top: 230px;
}
#piura:hover + #piura-map {
  transform: translate(5px, -5px);
}
#chimbote {
  left: 60px;
  top: 395px;
}
#chimbote:hover + #chimbote-map {
  transform: translate(5px, -5px);
}
#lima {
  left: 150px;
  top: 485px;
}
#lima:hover + #lima-map {
  transform: translate(5px, -5px);
}
#ica {
  left: 210px;
  top: 570px;
}
#ica:hover + #ica-map {
  transform: translate(5px, -5px);
}
#piura-map,
#chimbote-map,
#lima-map,
#ica-map {
  position: absolute;
  transition: var(--transition);
}
#piura-map {
  width: 78px;
  top: 193px;
  left: 100px;
}
#chimbote-map {
  width: 71px;
  top: 336px;
  left: 197px;
}
#lima-map {
  width: 89px;
  top: 420px;
  left: 225px;
}
#ica-map {
  width: 66px;
  top: 520px;
  left: 277px;
}
.img-city:hover {
  transform: translate(5px, -5px);
}
.peru-mobile {
  position: absolute;
  top: -70px;
  left: 50%;
  transform: translateX(-50%);
  height: 425px;
}
@media screen and (min-width: 580px) {
  #map .row {
    flex-direction: row;
  }
  .peru-mobile {
    position: absolute;
    top: 37px;
    left: -7px;
    transform: none;
    height: 530px;
  }

  .map__container-map {
    width: 25%;
  }
  .map__content {
    width: 75%;
    padding: 40px 25px 40px 215px;
    height: 550px;
  }
  #map .row:last-child {
    height: 180px;
  }

  #map .row:last-child {
    height: 50px;
  }
}
@media screen and (min-width: 980px) {
  .peru-mobile {
    display: none;
  }
  .map-img {
    display: flex;
    position: absolute;
    width: 560px;
    height: 770px;
    left: 0;
    top: 0;
    margin-left: 20px;
  }
  .map__content {
    width: 60%;
    padding: 40px 150px;
    height: 550px;
  }
  .map__container-map {
    width: 40%;
  }
  .map__content {
    width: 60%;
    padding: 40px 40px 40px 100px;
    height: 550px;
  }
  #map .row:last-child {
    height: 210px;
  }
}
@media screen and (min-width: 1280px) {
}

/*-------------------- Map ------------------*/
#help {
  background: linear-gradient(to right, #fff 50%, var(--secondary-color) 50%);
  padding: 0;
  margin: 40px 0;
  position: relative;
}
#help .container {
  padding: 0;
}
#help .row {
  flex-direction: column-reverse;
  background-color: var(--secondary-color);
  color: #fff;
  height: auto;
  border-radius: 6rem 0 0 0;
}
.help__img {
  width: 100%;
  border-radius: 6rem 0 6rem 0;
  overflow: hidden;
}

.help__content {
  width: 100%;
  padding: 100px 30px 20px 30px;
  flex-direction: column;
  justify-content: center;
}

#bus-help {
  height: 270px;
  position: absolute;
  left: -172px;
  bottom: -111px;
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  #help .container {
    padding: 0 6rem;
  }
  #help .row {
    flex-direction: row;
    height: 460px;
  }
  .help__content {
    width: 50%;
    padding: 40px 150px 40px 10px;
  }
  .help__img {
    width: 50%;
  }
  #bus-help {
    height: 380px;
  }
}
@media screen and (min-width: 1280px) {
}

/*-------------------- Clientes ------------------*/
#slider-clientes {
  width: 100%;
}
#slider-clientes .slick-slide {
  width: 150px;
  height: 140px;
  object-fit: contain;
  margin: 0 25px;
}
#clients h2 {
  font-size: var(--base-size-font);
  color: #000;
  margin-top: 40px;
  padding-left: 20px;
}


/**
*	INTERNAS
*	=======================================================================================================
**/
main{
  margin-top: 110px
}
.banner-inter{
  margin-bottom: 70px;
  background: linear-gradient(to right, #fff 50%, var(--primary-color) 50%);
}
.banner-intern__wrapper{
  flex-direction: row;
  background-color: var(--primary-color);
  border-radius: 1rem 0 0 1rem;
}
.banner-intern__wrapper .img-banner {
  width: 30%;
  height: 100px;
  border-radius: 1rem 0 3rem 1rem;
  overflow: hidden;
}
.banner-intern__wrapper .content-banner{
  width: 70%;
  height: 100px;
  padding: 10px 40px;
  align-items: center;
  color: #fff;
  background-color: var(--primary-color);
  position: relative;
}
.banner-intern__wrapper .content-banner h2{
  font-size: 1.5rem;
}
.iso-banner {
  position: absolute;
  width: 65px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: none;
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .banner-intern__wrapper .img-banner {
    width: 55%;
  }
  .banner-intern__wrapper .content-banner{
    width: 45%;
  }
  .iso-banner {
    display: flex;
  }
  .banner-intern__wrapper .content-banner h2{
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1280px) {
}

/**
*	NOSOTROS
*	=======================================================================================================
**/
/*-------------------- Misión ------------------*/
#mision{
  padding: 0;
}
.mision-wrapper{
  flex-direction: column;  
  padding-bottom: 115px;
  border-radius: 0 6rem 0 0;
  overflow: hidden;
  background: linear-gradient(to bottom, #fff 50%, var(--primary-color) 50%);
}
.mision-wrapper > div{
  width: 100%;
}
.img-mision{
  height: 350px;
  border-radius: 0 6rem 0 6rem;
    overflow: hidden;
}
.content-mision{
  flex-direction: column;
  justify-content: center;
  padding: 0 0 40px 0;
}
.content-item_faq {
    height: 218px;
    overflow-y: auto;
}
.content-item_faq ul,
.content-item_faq li{
	list-style: inside;
}
@media screen and (min-width: 580px) {
  .mision-wrapper{
    flex-direction: row;
    background: linear-gradient(to right, #fff 50%, var(--primary-color) 50%);
    padding-bottom: 80px;
  }
  .mision-wrapper > div{
    width: 50%;
  }
  .content-mision{
    padding: 0 40px 0 20px;
  }
  .img-mision{
    height: 444px;
  }
  
}
@media screen and (min-width: 980px) {
  .content-mision{
    padding: 0 120px 0 20px;
  }  
}
@media screen and (min-width: 1280px) {
}

/*-------------------- Visión ------------------*/
#vision{
  padding: 0;
}
.vision-wrapper{
  flex-direction: column-reverse;
  padding-bottom: 80px;
  background: linear-gradient(to top, #fff 50%, var(--primary-color) 50%);
}
.vision-wrapper > div{
  width: 100%;
}
.img-vision{
  height: 444px;
  border-radius: 0 6rem 0 6rem;
    overflow: hidden;
}
.content-vision{
  flex-direction: column;
  padding: 0 40px 40px 40px;
  justify-content: center;
  color: #fff;
}
@media screen and (min-width: 580px) {
  .vision-wrapper{
    flex-direction: row;
    background: linear-gradient(to right, #fff 50%, var(--primary-color) 50%);
  }
  .vision-wrapper > div{
    width: 50%;
  }
  .content-vision{
    padding: 0 20px 0 40px;
  }
}
@media screen and (min-width: 980px) {
  .content-vision{
    padding: 0 80px;
  }
}
@media screen and (min-width: 1280px) {
}

/*-------------------- Faqs ------------------*/

#faqs {
    padding: 0;
    overflow-x: clip;
}
.banner-faqs{
  height: 565px;
}
.faqs-wrapper {
  flex-direction: column;
  gap: 30px;
  position: relative;
  top: -95px;
  margin-bottom: -95px;
}
.item-faq { 
  padding: 30px;
  border-radius: 35px;
  overflow: hidden;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
  position: relative;
	flex: 1;
}
.item-faq:nth-child(2){
  background-color: var(--primary-color);
  color: #fff;
  margin-top: 0px;
}
.item-faq__img{
  width: 100%;
  height: 250px;
  border-radius: 25px;
  overflow: hidden;
}
.item-faq h3{
  text-align: center;
  color: var(--tertiary-color);
}
.img-adorno-faq {
  position: absolute;
  width: 120px;
  bottom: 0;
  right: 0;
}

@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .faqs-wrapper {
    flex-direction: row;
  }
}
@media screen and (min-width: 1280px) {
}



/**
*	CONTÁCTANOS
*	=======================================================================================================
**/
/*-------------------- contacto ------------------*/
#contact-main {
  padding: 0;
  position: relative;
  z-index: 1;
}
#contact-main ul li{
  position: relative;
  margin-bottom: 10px;
  padding-left: 30px;
  color: var(--primary-color);
}
#contact-main ul li::before{
  content: "";
  width: 15px;
  height: 15px;
  background-color: var(--tertiary-color);
  border-radius: 50px;
  position: absolute;
  left: 0;
  top: 4px;
}
.contact-main-wrapper{
  flex-direction: column;  
  padding-bottom: 115px;
  border-radius: 0 6rem 0 0;
  overflow: hidden;
}
.contact-main-wrapper > div {
  width: 100%;
  gap: 40px;
}
.contact-map{
  height: 350px;
  border-radius: 0 6rem 0 6rem;
    overflow: hidden;
}
.contact-map iframe{
  width: 100%;
  height: 100%;
}
.content-contact{
  flex-direction: column;
  justify-content: center;
  padding: 0 0 40px 0;
}
@media screen and (min-width: 580px) {
  .contact-main-wrapper{
    flex-direction: row;
    padding-bottom: 0px;
  }
  .contact-main-wrapper > div{
    width: 50%;
        flex-direction: column;
        justify-content: space-between;
        height: 545px;
  }
  .content-contact{
    padding: 40px 40px 100px 20px;
  }
  .contact-map{
    height: 444px;
  }
  
}
@media screen and (min-width: 980px) {
  .content-contact{
    padding: 40px 120px 100px 20px;
  }  
}
@media screen and (min-width: 1280px) {
}

/*-------------------- Formulario ------------------*/

#sec-form {
  padding: 0;
  background: linear-gradient(to right, #fff 50%, var(--primary-color) 50%);
  margin-top: -40px;
  margin-bottom: 120px;
}

#sec-form .container {
  padding: 0;
}
#sec-form .row {
  flex-direction: column;
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 0 5rem 0 8rem;
}
#sec-form .row:first-child {
  border-radius: 6rem 0 0 0;
  height: 150px;
  display: none;
}
#sec-form .section-title{
  margin-bottom: 60px;
}
.sec-form__img {
  width: 100%;
  height: 400px;
  border-radius: 0 5rem 0 8rem;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.sec-form__content {
  width: 100%;
  flex-direction: column;
  justify-content: center;
  padding: 0px 1.5rem 100px 1.5rem;
}
.sec-form__description {
  margin-bottom: 30px;
}
.sec-form__description p:last-child {
  margin-bottom: 0;
}
.sec-form__description p{
	line-height: 1rem;
}
.form-group{
  margin-bottom: 30px;
}
.form-group:last-child,
.last-form-group{
  margin-bottom: 0;
}
.form-group label {
  display: flex;
  font-size: var(--text-content-size);
  margin-bottom: 0;
}
input[type=text],
input[type=email],
input[type=tel],
textarea {
  width: 100%;
  background-color: transparent;
  border-bottom: 1px solid #fff;
  color: #fff;
  font-weight: 300;
  padding: 0 0 3px;
}
input[type=checkbox]{
	appearance: auto;
	width: 20px;
    height: 20px;
}
span.wpcf7-form-control.wpcf7-checkbox {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.wpcf7-list-item {
    display: flex;
    margin: 0;
    align-items: center;
    gap: 5px;
}
textarea{
  height: 100px;
}
select {
    appearance: auto;
    width: 100%;
    padding: 10px;
}
@media screen and (min-width: 580px) {
  .sec-form__img {
    height: 590px;
  }
  #sec-form .row:first-child {
    border-radius: 6rem 0 0 0;
    height: 150px;
    display: flex;
  }
}

@media screen and (min-width: 980px) {
  #sec-form .row {
    flex-direction: row;
  }
  .sec-form__img {
        width: 55%;
        height: 588px;
        position: sticky;
        top: 80px;
    }
  .sec-form__content {
    width: 45%;
    padding: 40px 80px 40px 10px;
  }
  #sec-form .container {
    padding: 0 6rem;
  }

}
@media screen and (min-width: 1280px) {
}

/**
*	SERVICIO
*	=======================================================================================================
**/
/*-------------------- Primera sec ------------------*/
#main-service{
  padding: 0;
}
.main-service-wrapper{
  flex-direction: column-reverse;  
  border-radius: 0 6rem 0 0;
  overflow: hidden;
}
.main-service-wrapper > div{
  width: 100%;
}
.img-main-service{
  height: 350px;
  border-radius: 6rem 0 6rem 0;
    overflow: hidden;
}
.content-main-service{
  flex-direction: column;
  justify-content: center;
  padding: 0 0 40px 0;
}
@media screen and (min-width: 580px) {
  .main-service-wrapper{
    flex-direction: row;
        padding-bottom: 80px;
        gap: 60px;
  }
  
  .main-service-wrapper > div.img-main-service{
    width: 55%;
  }
  .main-service-wrapper > div.content-main-service{
    width: 45%;
    padding: 0 40px 0 0;
  }
  .img-main-service{
    height: 444px;
    
  }
  .content-main-service{
    width: 45%;
  }
  
}
@media screen and (min-width: 980px) {

}
@media screen and (min-width: 1280px) {
}

/*-------------------- Segunda sec ------------------*/
#sec-service-2{
  padding: 40px 0;
}
.sec-service-2-wrapper{
  flex-direction: column;
}
.sec-service-2-wrapper>div{
  width: 100%;
}
.sec-service-2-wrapper>div:nth-child(1){
  flex-direction: column;
  justify-content: space-between;
}

.sec-service-2-wrapper>div:nth-child(2) {
  background-color: var(--primary-color);
  padding: 120px 40px 120px 40px;
  color: #fff;  
  flex-direction: column;
  justify-content: center;
}
.sec-service-2-wrapper p{
  margin-bottom: 40px;
}
.container-img-sec-service-2{
  height: 380px;
}

.content-sec-service-2 {
  padding: 0 1.5rem 30px;
  color: var(--tertiary-color);
}
.content-sec-service-2 span {
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--primary-color);
  margin-top: 8px;
  display: flex;  
}
.sec-service-2-wrapper ul{
	margin-bottom: 40px;
}
.sec-service-2-wrapper ul li {
    margin-bottom: 10px;
    list-style: circle;
    margin-left: 20px;
}
@media screen and (min-width: 580px) {
  .sec-service-2-wrapper{
    flex-direction: row;
  }
  .sec-service-2-wrapper>div{
    width: 50%;
  }
      .content-sec-service-2 {
        padding: 0 20px 40px 6rem;
        height: 90px;
    }
  .container-img-sec-service-2{
    height: 565px;
  }
  
  .sec-service-2-wrapper>div:nth-child(2) {
    padding: 100px 40px 100px 40px;
    border-radius: 6rem 0 0 0;
  }
}
@media screen and (min-width: 980px) {
      .sec-service-2-wrapper>div:nth-child(2) {
        padding: 140px 8rem 140px 80px;
    }
}
@media screen and (min-width: 1280px) {
}



/* -------------- --------------------- */
/* -------------- LOADER ---------------*/
/* -------------- --------------------- */

/* LOADER OVERLAY */

.loader-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
	 opacity: 1;
	transition: var(--transition);
}
.loader-wrap.active{
    animation: 2000ms ease 300ms 1 normal both running fade-in;
}

.loader-wrap.hide{
    display:none;
}

@keyframes fade-in {
    0% {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.loader {
    position: relative;
    width: 100%;
    height: 100%;
}
.loader svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: 0.3s truck infinite;
    width: 180px;
}

.iso-loader {
    position: absolute;
    height: 160px;
    bottom: 0;
    right: 0;
}
.loader p {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
}

@keyframes truck {
  0% {
    transform: scaleY(1) translate(-50%, -50%);
  } 50% {
    transform: scaleY(0.95) translate(-50%, -50%);
  } 100% {
    transform: scaleY(1) translate(-50%, -50%);
  }
}

@media screen and (min-width: 580px) {
	.iso-loader{
		height: 380px;
	}
}
@media screen and (min-width: 980px) {	
	.loader svg {
		width: 230px;
	}
}
@media screen and (min-width: 1280px) {
}



.libro-reclamaciones-form .form-row{
    margin:0;
    display: grid;
    grid-template-columns: repeat(1,1fr);
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    margin-bottom:20px;
    width:100%;
}

@media screen and (min-width : 580px) {
    .libro-reclamaciones-form .form-row{
        grid-template-columns: repeat(2,1fr);
        grid-column-gap: 25px;
        grid-row-gap: 25px;
    }
}
@media screen and (min-width: 980px) {

}

@media screen and (min-width: 1280px) {
    
}


.libro-reclamaciones-form .form-row .form-group{
    margin: 0;
}

.libro-reclamaciones-form .form-group-wrapper {
    margin-bottom: 30px;
    font-size: 1.1rem;
    font-weight: 300;
}

.libro-reclamaciones-form .form-group-wrapper-last{
    margin:0;
}

.libro-reclamaciones-form br{
    display:none;
}

.libro-reclamaciones-form .form-group br{
    display:none!important;
}

.libro-reclamaciones-form .small,
.libro-reclamaciones-form small{
   
    font-size: 12px;
    margin-top: 10px;
    display: block;
}

.libro-reclamaciones-form .wpcf7-list-item-label{
    margin:0;
    
}

.libro-reclamaciones-form input::-webkit-outer-spin-button,
.libro-reclamaciones-form input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.libro-reclamaciones-form input[type=number] {
  -moz-appearance: textfield;
}

.libro-reclamaciones-form input{	
	    width: 100%;
}
.libro-reclamaciones-form input, .libro-reclamaciones-form textarea, .libro-reclamaciones-form select {
    border-bottom: 1px solid var(--primary-color);
    color: var(--secondary-color);
    resize: none;
    padding: 10px;
}

.form-group-check span{
    margin:0;
    margin-bottom:10px;
    font-size:1.1rem;
    font-weight:300;
}

@media screen and (min-width : 580px) {
    .form-group-check span{
        margin:0;
    }
}
@media screen and (min-width: 980px) {

}

@media screen and (min-width: 1280px) {
    
}

.form-group-check span:last-child{
    margin:0;
}

.form-group-check .wpcf7-list-item label{
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    margin:0;
    margin-right: 40px;
}

.form-group-check .wpcf7-list-item input{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width:21px!important;
    height:21px!important;
    padding:0;
    flex-shrink: 0;
    position:relative;
    margin-right:10px!important;
    cursor:pointer;
}

.form-group-check .wpcf7-list-item input::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    transition:all .3s ease;
    background-size: 75%;
    background-repeat: no-repeat;
    background-position: center;
    background-color:#fff;
    border: 1px solid #808080;
}

.form-group-check .wpcf7-list-item input:checked::before{
    background-image: url(../images/checked-white.svg);
    background-color:var(--primary-color);
    border-color:var(--primary-color);
   
}

.libro-reclamaciones-form .wpcf7-response-output{
    margin:0px!important;
    margin-top:20px!important;
}

.libro-reclamaciones-form  form.wpcf7-form {
    position:relative;
    margin:0!important;
    display:block;
}

.libro-reclamaciones-form  form.submitting:after{
    content:"";
    width:100%;
    height:100%;
    background-color:rgba(255,255,255,.8);
    position: absolute;
    top:0;
    left:0;
    /*background-image: url(../images/loader.gif);*/
    /*background-size: 20%;*/
    /*background-repeat: no-repeat;*/
    /*background-position: center;*/
    z-index:2;
}

.libro-reclamaciones-form  form.wpcf7-form .ajax-loader{
    display:none!important;
}

.libro-reclamaciones-form .form-group-info{
    display:flex;
    flex-direction:column;
}


.libro-reclamaciones-form .form-group-info span{
    margin-bottom:10px;
}


.libro-reclamaciones-form .form-group-info span:last-child{
    margin:0;
}

.form-group-wrapper-title{
    height: 26px!important;
    position: relative!important;
    overflow: hidden!important;
    margin-bottom: 15px;
}

.form-group-wrapper-title > div{
    transform: none!important;
    background-color: #fff!important;
    margin: 0!important;
    padding: 0!important;
    height: 100%!important;
    position:absolute;
    top:0;
    transition:none!important;
    opacity:1;
    visibility:visible;
}

.form-group-wrapper-title > div h2{
    margin:0;
}
.form-group-wrapper-title > div.wpcf7cf-hidden{
    opacity:0;
    visibility:hidden;
}



.libro-reclamaciones-form  .form-group > label > span,
.libro-reclamaciones-form  .form-group > [data-class="wpcf7cf_group"] > label > span{
    width:auto;
    margin-left:2px;
    color:#ffc6c4;
}
.libro-reclamaciones-form h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}
.libro-reclamaciones-form span.wpcf7-form-control.wpcf7-radio {
    display: flex;
}
/*.libro-reclamaciones-form .form-group .wpcf7-not-valid {*/
/*    border: 1px solid #f14040!important;*/
/*}*/

.libro-reclamaciones-form .wpcf7-not-valid-tip{
    display:none!important;
}

#tipo_respuesta{
    height:65px;
    position:relative;
}
#tipo_respuesta [data-class="wpcf7cf_group"]{
    position:absolute;
    top:0;
    height:100%!Important;
    width:100%;
    margin:0!important;
    padding:0!important;
    opacity:1;
    visibility:visible;
    background-color: #fff!important;
}
 
#tipo_respuesta [data-class="wpcf7cf_group"].wpcf7cf-hidden{
    opacity:0;
    visibility:hidden;
}

.libro-reclamaciones-info {
    margin: 20px 0;
    line-height: 1.3rem;
    font-size: 1.1rem;
    text-align: justify;
    font-weight: 300;
}

.libro-reclamaciones-info p{
    margin-bottom:20px;
    line-height: 1.4;
}

.libro-reclamaciones-info p span{
    color:#ffc6c4;
}

.libro-reclamaciones-info br{
    display:block;
}

.libro-reclamaciones-section{
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.libro-reclamaciones-section img{
     max-width: 125px;
    border-radius: 8px;
    background-color:#fff;
    padding: 4px;
}

#libro{
	padding:20px 0;
}
