:root {
  --primary-font: "Avant Garde", sans-serif;
  --secondary-font: "Big Noodle", sans-serif;
  --base-size-font: 17px;

  --primary-color: #1b2c46;
  --secondary-color: #bc7b2f;
  --tertiary-color: #f8d056;
  --quaternary-color: #6e2e3f;
  --orange-color: #bc7b2f;

  --transition: all 0.4s ease;
  --custom-transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
  --box-shadow: 0px 2.589681386947632px 10.358725547790527px 0px #0000001f;
  --border-radius: 10px;

  --title: 3.5rem;
  --title-s: 2.6rem;
  --title-xs: 2.2rem;
  --text-content-size: 1rem; /* Párrafos, textos de contenido */
	--txt-s: 0.8rem;
}

body {
  font-family: var(--primary-font);
  font-size: var(--base-size-font);
  font-weight: 300;
  line-height: 1.2;
  margin: 0;
  letter-spacing: 0.4px;
  color: var(--quaternary-color);
}

h1,
h2,
h3 {
  font-family: var(--secondary-font);
  letter-spacing: 0;
  font-weight: 400;
  text-transform: uppercase;
}
h1, h2 {
  font-size: var(--title);
  line-height: 1;
}
h3 {
  font-size: var(--title-s);
}
p {
  margin-bottom: 20px;
  line-height: 1.4;
  font-size: var(--text-content-size);
}
.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.img-contain {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.row {
  display: flex;
  flex-direction: row;
  gap: 25px;
}
.col-40 {
  width: 40%;
}
.col-50 {
  width: 50%;
}
.col-60 {
  width: 60%;
}

.-bg-blue {
  background-color: var(--primary-color);
}
.txt-white {
  color: #fff;
}
.txt-orange{
	color:var(--orange-color)!important;
}
.blur {
  filter: blur(5px);
}
.section-title {
  margin-bottom: 40px;
}
.section-title span {
  color: var(--tertiary-color);
}
input, select {
  border: 1px solid var(--primary-color);
  padding: 10px;
  border-radius: 5px;
	width: 100%;
}
.form-group select{
	 appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url(../images/dropdown-blue-icon.svg);
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 8px;
  padding-right: 40px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.form-group p{
	margin-bottom:0;
}
.form-group label{
	margin-bottom: 10px;
    display: inline-block;
}
/* --- Container --- */

.container {
  margin: 0 auto;
  width: 90%;
  max-width: 1200px;
  position: relative;
  padding: 0px;
}
.container-full {
  width: 100%;
  position: relative;
  padding: 0 20px;
}
main {
  margin-top: 90px;
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .container {
    padding: 0 15px;
  }
  main {
    margin-top: 120px;
  }
}
@media screen and (min-width: 1280px) {
}

.float-btn {
  position: fixed;
  top: 70vh;
  right: 0;
  z-index: 135;
  /* writing-mode: vertical-lr; */
  transform: translatex(24px);
  transition: var(--transition);
}
.float-btn img {
  width: 40px;
}
.float-btn a {
  background-color: var(--secondary-color);
  height: 57px;
  display: flex;
  justify-content: center;
  padding: 0 40px 0 20px;
  border-radius: 50px 0 0 50px;
}
.float-btn:hover {
  transform: translatex(0px);
}

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

/* LOADER OVERLAY */

.loader-wrap{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-color:var(--secondary-color);
    z-index:99999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;

}

.loader-wrap.active{
    animation: 2000ms ease 300ms 1 normal both running fade-in;
}

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

.loader-logo{
    margin-bottom:4rem;
	position: absolute;
	z-index: 9999;
    /*animation: rotateAnimation 3s linear infinite;*/
}
#loading-percentage {
    margin-top: 20px;
    font-size: 24px;
    color: #fff;
}
.background-animation {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background-color: var(--primary-color);
    z-index: 1;
    animation: fillBackground 2s forwards;
}

@keyframes fillBackground {
    to {
        height: 100%;
    }
}

@keyframes rotateAnimation {
    20% {
        transform: rotate(0);
    }
    25%, 45% {
        transform: rotate(90deg);
    }
    50%, 70% {
        transform: rotate(180deg);
    }
    75%, 95% {
        transform: rotate(270deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.loader-logo img{
    width:10rem;
}

@media screen and (min-width: 1024px) {
   .loader-logo img{
        width:12rem;
    }
}

.loader-icon .loader{
    position: relative;
}

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

    to {
        opacity: 0;
    }
}

.loader{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    display:flex;
    align-items: center;
    justify-content: center;
    text-indent:0;
    font-size:0;
    opacity:0;
    visibility:hidden;
}

.loader.active{
     opacity:1;
    visibility:visible;
}

.loader:before {
    content: "";
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 10px solid #ccc;
    border-top-color: var(--primary-color);
    border-width: 5px;
    -webkit-animation: spin 1s infinite linear;
    animation: spin 1s infinite linear;
    z-index: 2;
    display: block;
}

@-webkit-keyframes spin{
    0%{
        -webkit-transform:rotate(0deg);
        transform:rotate(0deg)
    }
    to{
        -webkit-transform:rotate(360deg);
        transform:rotate(360deg)
    }
}
@keyframes spin{
    0%{
        -webkit-transform:rotate(0deg);
        transform:rotate(0deg)
    }
    to{
        -webkit-transform:rotate(360deg);
        transform:rotate(360deg)
    }
}

/*-------------------- 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: #fff;
  background-image: url(../images/lines-1-1.svg);
  background-size: 430px;
  background-position: top -40px right -209px;
  background-repeat: no-repeat;
}

@media screen and (min-width: 580px) {
  .header {
    padding: 0;
    height: 100px;
    transform: translateY(20px);
  }
}
@media screen and (min-width: 980px) {
  .header {
    padding: 0;
    height: 120px;
    transform: translateY(20px);
    background-position: top -27px right 0px;
  }
}
@media screen and (min-width: 1280px) {
  .header {
    padding: 0;
    height: 120px;
    transform: translateY(0px);
    background-position: top -27px right 97px;
  }
}

body:not(.home) .header {
  transform: translateY(0);
}

.header.activeFixed {
  position: fixed !important;
  height: 90px;
  transform: translateY(0);
  background-color: #fff;
  box-shadow: var(--box-shadow);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo a {
  display: block;
  height: 60px;
}

@media screen and (min-width: 1280px) {
  .header__logo a {
    height: 74px;
    transition: var(--transition);
  }
  .header.activeFixed .header__logo a {
    height: 60px;
  }
}

.header__logo img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header__content {
  display: flex;
  align-items: center;
  gap: 10px;
}
.item-header {
  flex: 1;
}
.item-header:nth-child(3) {
  display: flex;
  justify-content: end;
}
.item-header:nth-child(1) {
  display: none;
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .item-header:nth-child(1) {
    display: flex;
  }
}
@media screen and (min-width: 1280px) {
}
.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: var(--primary-color);
  padding: 10px 14px;
  transition: var(--transition);
  position: relative;
}

.item-header .menu li.current-menu-item > a,
.item-header .menu li > a:hover {
  color: var(--secondary-color);
}
.item-header .menu li.current-menu-item {
  position: relative;
}
.item-header .menu li.current-menu-item::before,
.item-header .menu li:hover::before {
  content: "";
  width: 16px;
  height: 9px;
  background-image: url(../images/isotipo-blue.svg);
  background-size: cover;
  position: absolute;
  left: -12px;
  top: 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;
}

/* --- General --- */

.btn {
  position: relative;
  padding: 10px 26px;
  border-radius: 5px;
  background-color: var(--secondary-color);
  cursor: pointer;
  display: flex;
  width: fit-content;
  font-size: var(--text-content-size);
  color: #fff;
  transition: var(--transition);
  border:none;
}
.btn:hover {
  background-color: var(--primary-color);
}

section {
  padding: 80px 0;
  background-color: #fff;
}

/* --- Footer --- */
.footer {
  background-color: var(--primary-color);
  background-image: url(../images/pattern.svg), url(../images/isotipo-gold.svg);
  background-size: 174px, 321px;
  background-repeat: repeat, no-repeat;
  background-position: center, center bottom -25px;
  padding: 70px 60px 0;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
  color: #fff;
  gap: 50px;
  font-size: var(--text-content-size);
}
.footer.row {
  flex-direction: column;
}

.logo-footer {
  display: flex;
}
.logo-footer img {
  width: 345px;
}
.content-footer {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 20px;
  width: 100%;
  gap: 40px;
}
.content-footer .row {
  flex-direction: column;
}
.content-footer .row:nth-child(1) {
  flex-direction: column-reverse;
  gap: 60px;
}
.content-footer li {
  margin-bottom: 10px;
}
.content-footer:nth-child(1) {
  align-items: center;
}
.item-content-footer h3 {
  color: var(--tertiary-color);
}
.item-content-footer p {
  margin-bottom: 0;
}
.item-content-footer:first-child {
  padding-right: 0px;
  border-right: none;
}
.item-content-footer:last-child {
  padding-left: 0px;
}
.copyright {
  padding: 30px 0 200px;
}
@media screen and (min-width: 580px) {
  .content-footer .row:nth-child(1) {
    flex-direction: column;
  }
}
@media screen and (min-width: 980px) {
  .footer {
    background-size: 174px, 130px;
    background-position: center, right -2px bottom -2px;
	padding: 70px 80px 0;
  }
  .footer.row {
    flex-direction: row;
  }
  .content-footer {
    gap: 0;
  }
  .content-footer .row {
    flex-direction: row;
  }
  .content-footer .row:nth-child(1) {
    flex-direction: row;
    gap: 0px;
  }
  .item-content-footer:first-child {
    padding-right: 20px;
    border-right: 1px solid #fff;
  }
  .item-content-footer:last-child {
    padding-left: 40px;
  }
  .copyright {
    padding: 30px 0;
  }
}
@media screen and (min-width: 1280px) {
  .footer {
    background-size: 174px, 205px;
  }
  .item-content-footer:first-child {
    padding-right: 60px;
	  display: flex;
        align-items: center;
  }
}
/**
*	SIDEBAR MENU
*	=======================================================================================================
**/
.sidebarIconToggle {
  transition: all 0.3s;
  box-sizing: border-box;
  cursor: pointer;
  /*position: absolute;*/
  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: var(--quaternary-color);
}
.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: rgba(110, 46, 63, 0.6);
  position: fixed;
  transition: top 0.5s ease;
  top: -100vh;
  z-index: 99999;
}
#overlay.active {
  top: 0;
}

#sidebar {
  height: 100vh;
  width: 90%;
  max-width: 1120px;
  background-color: var(--primary-color);
  padding-top: 80px;
  background-image: url(../images/lines-8.svg);
  background-size: 320px;
  background-position: top right;
  background-repeat: no-repeat;
  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 */
  -webkit-box-shadow: -5px 0px 10px 0px rgba(0, 0, 0, 0.35);
  -moz-box-shadow: -5px 0px 10px 0px rgba(0, 0, 0, 0.35);
  box-shadow: -5px 0px 10px 0px rgba(0, 0, 0, 0.35);
}
#sidebar .container {
  height: 100%;
}
#sidebar .logo {
  width: 100%;
  max-width: 250px;
}
#sidebar .menu-sidebar {
  font-family: var(--secondary-font);
}
#sidebar .menu-sidebar li a {
  font-size: var(--title-xs);
  color: #fff;
	transition: var(--transition);
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
	#sidebar .menu-sidebar li a {
	  font-size: var(--title);
	}
}
@media screen and (min-width: 1280px) {
}
#sidebar .menu-sidebar li:hover a,
#sidebar .menu-sidebar li.current-menu-item a {
  color: var(--tertiary-color);
}
#sidebar .redes {
  display: flex;
  flex-direction: row;
  gap: 5px;
}
#sidebar .redes img {
  width: 33px;
}
.datos {
  padding: 0px;
  line-height: 1.4;
}
.datos,
.datos a {
  color: #fff;
font-size: var(--text-content-size);
}
.datos a:hover {
  color: var(--tertiary-color);
}
.sidebar-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 0 40px;
}

.sidebar-wrapper .row {
  flex-direction: column;
}
.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::before {
  content: "";
  width: 100px;
  height: 1px;
  background-color: var(--secondary-color);
  left: -90px;
  position: absolute;
  top: -1px;
}
.content-sidebar .datos:nth-child(1) {
  padding-left: 0;
}
.content-sidebar .datos:nth-child(2) {
  border-right: none;
}
.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;
	  width: 80%;
  }
  .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 {
  background-image: linear-gradient(
    to bottom,
    #fff 50%,
    var(--primary-color) 50%
  );
}
#welcome .redes {
  display: none;
  flex-direction: column;
  gap: 5px;
  position: absolute;
  right: 36px;
  top: 0;
  height: 100%;
  z-index: 9;
  justify-content: center;
  align-items: center;
  padding-bottom: 80px;
}
#welcome .redes img {
  width: 33px;
  transition: var(--transition);
}
#welcome .redes a:hover img {
  transform: scale(1.1);
}

#welcome-slider {
  border-radius: var(--border-radius);
  overflow: hidden;
  height: 545px;
}
#welcome-slider.slick-dotted.slick-slider {
  margin-bottom: 0px;
}
#welcome-slider .slick-slide {
  height: 545px;
}
#welcome-slider .slick-slide img,
#welcome-slider .slick-slide video{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.item-welcome {
  position: relative;
}
.content-item-welcome {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 99;
  padding: 0px 40px 30px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
	#welcome .redes {
	  display: flex;
	}
  .content-item-welcome {
    padding: 0px 80px 60px;
  }
}
@media screen and (min-width: 1280px) {
}
.content-item-welcome img {
  width: 270px;
}
.overlay-slider {
  position: absolute;
  width: 30%;
  height: 100%;
  background: rgb(0, 0, 0);
  background: -moz-linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  background: -webkit-linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
}
/** PRESENTACIÓN - HOME	============== **/

#presentation-home {
  background-image: url(../images/lines-2.svg);
  background-size: 914px;
  background-position: right -45px bottom;
  background-repeat: no-repeat;
  /*height: 1345px;*/
  color: #fff;
}
#presentation-home .row {
  flex-direction: column;
}
#presentation-home .col-50 {
  width: 100%;
}
.grid-direct-links {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 15px;
}
.item-direct-link {
  color: #fff;
  background-color: var(--secondary-color);
  padding: 25px;
  border-radius: var(--border-radius);
  background-image: url(../images/isotipo-blue.svg);
  background-size: 28px;
  background-position: right 20px bottom 20px;
  background-repeat: no-repeat;
  height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (min-width: 580px) {
  .grid-direct-links {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 980px) {
  #presentation-home {
    height: 508px;
  }
  #presentation-home .row {
    flex-direction: row;
  }
  #presentation-home .col-50 {
    width: 50%;
  }
  .item-direct-link {
    height: 178px;
  }
	.grid-direct-links {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (min-width: 1280px) {
}

.item-direct-link.-dark {
  background-color: var(--quaternary-color);
  background-image: url(../images/isotipo-white.svg);
}
.item-direct-link h3 {
  margin-bottom: 5px;
}
.img-presentation {
  width: 100%;
  height: 378px;
  overflow: hidden;
  border-radius: var(--border-radius);
}
.description-presentation {
  margin-bottom: 40px;
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .grid-direct-links {
    gap: 20px;
  }
  .item-direct-link {
    /*padding: 25px 60px 25px 30px;*/
  }
}
@media screen and (min-width: 1280px) {
}

/** PROYECTOS - HOME	============== **/
#projects {
  background-image: url(../images/lines-3.svg);
  background-repeat: no-repeat;
  background-size: 390px;
  background-position: top -15px right 270px;
  /*padding-top: 240px;*/
  padding-bottom: 0;
}
.header-projects {
  flex-direction: column-reverse;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.header-projects h2 {
  text-align: right;
}
.header-projects .section-title {
  margin-bottom: 0px;
}
.grid-projects-home {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}
.item-grid-projects-home {
  width: 100%;
  height: 390px;
  border-radius: var(--border-radius);
  overflow: hidden;
  position: relative;

}
.item-grid-projects-home .img-project{
  transition: var(--transition);
}
.item-grid-projects-home:hover .img-project{
  transform: scale(1.1);
}
.share-project{
	    display: flex;
    font-size: var(--text-content-size);
    align-items: center;
    flex-direction: row;
}
.share-project .addtoany_list.a2a_kit_size_32 a:not(.addtoany_special_service)>span {
    height: 23px;
    width: 25px;
}
.share-project .addtoany_list a,
.share-project .widget .addtoany_list a {
    border: 0;
    box-shadow: none;
    display: inline-block;
    font-size: 16px;
    padding: 0;
    vertical-align: middle;
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .header-projects {
    flex-direction: row;
    margin-bottom: 0px;
  }
  .header-projects .section-title {
    margin-bottom: 40px;
  }
  .grid-projects-home {
    grid-template-columns: repeat(2, 1fr);
  }
  .item-grid-projects-home {
    height: 400px;
  }
}
@media screen and (min-width: 1280px) {
  .item-grid-projects-home {
    height: 456px;
  }
}

.content-item-grid-projects {
  position: absolute;
  width: 100%;
  bottom: 0;
  background-color: var(--quaternary-color);
  height: 101px;
  padding: 15px;
  align-items: center;
  color: #fff;
  justify-content: space-between;
  z-index: 1;
}
.img-project.img-cover {
  height: 80%;
}
.logo-project {
  height: 60px;
  width: 25%;
}
.logo-project img {
  object-fit: contain;
}
.container-extract-project {
  position: relative;
  width: 75%;
  height: 100%;
}
.extract-project {
  border-radius: var(--border-radius);
  background-color: var(--primary-color);
  width: 100%;
  padding: 15px 20px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: absolute;
  bottom: 0;
  font-size: var(--text-content-size);
  align-items: end;
  text-align: right;
}
.extract-project img {
  height: 12px;
  width: 18px;
  object-fit: contain;
  margin-right: 5px;
}
.price {
  color: var(--secondary-color);
}
.extract-project .inner-extract span:first-child {
  margin-right: 10px;
}
.tag-project {
  position: absolute;
  top: 0;
  right: 0;
  margin: 15px;
  padding: 3px 9px;
  border-radius: 30px;
  background-color: var(--tertiary-color);
  font-size: var(--text-content-size);
  z-index: 2;
}
.img-cover.blur {
  width: 105%;
  height: 105%;
  margin-top: -10px;
  margin-left: -10px;
}
.soon {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 9;
  color: #fff;
}
.btn-projects {
  height: 167px;
  align-items: center;
  justify-content: center;
  background-image: url(../images/lines-4.svg);
  background-position: top -123px left, top -123px right;
  background-repeat: no-repeat, no-repeat;
  background-size: 497px, 497px;
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .btn-projects {
    background-image: url(../images/lines-4.svg), url(../images/lines-5.svg);
  }
}
@media screen and (min-width: 1280px) {
}
/** FRASE - HOME	============== **/
.img-frase {
  width: 100%;
  height: 544px;
  overflow: hidden;
  border-radius: var(--border-radius);
  position: relative;
}
.img-frase .cover {
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 60%;
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 99;
}
.content-frase {
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: end;
  justify-content: start;
  z-index: 999;
  color: #fff;
  padding: 25px;
}
.content-frase h2 {
  font-size: 4.5rem;
  line-height: 0.9;
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .content-frase {
    padding: 80px;
  }
}
@media screen and (min-width: 1280px) {
}

/** FORMULARIO - HOME	============== **/

#form-home {
  background-position: top -120px left -95px, top 0px right -70px;
  background-repeat: no-repeat, no-repeat;
  background-size: 309px, 309px;
}
#form-home .container {
  width: 90%;
}
#form-home .row {
  flex-direction: column;
}
#form-home .col-50 {
  width: 100%;
}
#form-contact h2,
#form-home h2{
	font-size: 3rem;
}
#form-contact .txt-form-home,
#form-home .txt-form-home{
	font-size:1.3rem;
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  #form-home {
    background-image: url(../images/lines-6.svg), url(../images/lines-7.svg);
  }
  #form-home .row {
    flex-direction: row;
  }
  #form-home .col-50 {
    width: 50%;
  }
}
@media screen and (min-width: 1280px) {
  #form-home .container {
    width: 70%;
  }
}

/**
*	INTERNAS
*	=======================================================================================================
**/
/* #banner-intern {
  margin-bottom: 60px;
} */
.banner-intern {
  background-color: var(--primary-color);
  color: #fff;
  border-radius: var(--border-radius);
  position: relative;
  overflow: hidden;
  background-image: url(../images/pattern.svg);
  background-size: 174px;
  background-position: center;
}
.wrapper-banner-intern {
  display: flex;
  flex-direction: row;
  height: 75px;
  align-items: center;
}
.title-intern {
  width: 100%;
}
.title-intern h1,
.title-intern h2  {
  font-size: var(--title-s);
}
.redes-intern {
  display: none;
  flex-direction: row;
  gap: 5px;
  flex-grow: 1;
  z-index: 9;
  justify-content: end;
}

.redes-intern img {
  width: 33px;
  transition: var(--transition);
}
.redes-intern a:hover img {
  transform: scale(1.1);
}
.img-intern {
  display: none;
  width: 60%;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .redes-intern {
    display: flex;
  }
  .title-intern {
    width: 40%;
  }
  .img-intern {
    display: flex;
  }
}
@media screen and (min-width: 1280px) {
}
.overlay-banner {
  position: absolute;
  width: 30%;
  height: 100%;
  right: 0;
  top: 0;
  background: rgb(0, 0, 0);
  background: -moz-linear-gradient(
    90deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
  background: -webkit-linear-gradient(
    90deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
}

/**
*	Page Projects
*	=======================================================================================================
**/
#projects-grid-page{
  padding-top: 60px;
    background-image: url(../images/lines-9.svg);
    background-repeat: no-repeat;
    background-size: 390px;
    background-position: top right 130px;
}
.projects-wrapp{
	display: flex;
	flex-direction: row;
	gap:20px
}
.bloque-frase-project {
  display: none;
    padding: 20px;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}
.bloque-frase-project h2{
	font-size:4.5rem;
}
.bloque-frase-project img{
  display: none;
}
.grid-projects {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 15px;
}

.grid-projects .container-extract-project {
  width: 100%;
}
.grid-projects .extract-project {
  font-size: 85%;
}

.grid-projects .logo-project {
  position: absolute;
    z-index: 9;
    padding: 15px;
    background-color: var(--quaternary-color);
    left: 30px;
    top: -45px;
    border-radius: var(--border-radius);
    width: 88px;
    height: 72px;
}
.header-projects-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.header-projects-filters{
  padding: 0;
  padding-top: 60px;
}
.header-projects-wrapper .section-title {
  width: 100%;
  margin-bottom: 0;
}
.filter-projects {
  background-color: var(--secondary-color);
  color: #fff;
  display: flex;
  flex-direction: row;
  padding: 20px 40px;
  align-items: center;
  border-radius: var(--border-radius);
  width: 100%;
  gap: 20px;
  justify-content: space-around;
}
.filter-projects form{
	flex-grow: 1;
}
.filter-projects select {
  flex-grow: 1;
  background-color: var(--primary-color);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--border-radius);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url(../images/dropdown-icon.svg);
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 8px;
  padding-right: 40px;
	font-size: var(--base-size-font);
    letter-spacing: 0.6px;
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .bloque-frase-project img{
    display: flex;
  }
  .header-projects-wrapper {
    flex-direction: row;
    gap: 0;
  }
  .header-projects-wrapper .section-title {
    width: 45%;
  }
  .grid-projects .logo-project {
      top: -30px;
  }
  .filter-projects {
    width: 55%;
  }
  .grid-projects {
    grid-template-columns: repeat(2, 1fr);
  }
  .bloque-frase-project {
    display: flex;
	width: 30%;
  }
}
@media screen and (min-width: 1280px) {
  .grid-projects {
    grid-template-columns: repeat(2, 1fr);
	  width: 70%;
  }
  .bloque-frase-project img{
    display: none;
  }
}

/**
*	Page Blog
*	=======================================================================================================
**/
#blog-grid-page{
  padding-top: 60px;
}
.grid-articles {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap:60px 20px;
}
.item-grid-articles{
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.item-grid-articles .tag-date{
  position: absolute;
  top: 0;
  right: 0;
  margin: 15px;
  padding: 3px 9px;
  background-color: var(--tertiary-color);
  font-size: 80%;
  z-index: 2;
  border-radius: var(--border-radius);
  letter-spacing: 0;
  text-transform: uppercase;
}
.img-item-article{
  width: 100%;
  height: 260px;
  overflow: hidden;
  border-radius: var(--border-radius);
}
.img-item-article img{
  transition: var(--transition);
}
.item-grid-articles:hover img{
  transform: scale(1.1);
}
.title-item-article h3{
  font-family: var(--primary-font);
  font-size: var(--text-content-size);
  font-weight: 600;
  text-transform: none;
}
#ready{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-position: left top -50px, right top;
  background-repeat: no-repeat;
  background-size: 309px;
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .grid-articles {
    grid-template-columns: repeat(2, 1fr);
  }
  .img-item-article{
    height: 300px;
  }
  #ready{
    background-image: url(../images/lines-10.svg), url(../images/lines-11.svg);
  }
}
@media screen and (min-width: 1280px) {
  .grid-articles {
    grid-template-columns: repeat(3, 1fr);
  }
  .img-item-article{
    height: 246px;
  }
}


/**
*	Page Contacto
*	=======================================================================================================
**/
#form-contact {
  background-position: top -120px left -95px;
  background-repeat: no-repeat;
  background-size: 309px;
  padding: 0;
  padding-top: 60px;
}
#form-contact .container {
  width: 90%;
}
#form-contact .row {
  flex-direction: column;
}
#form-contact .col-50 {
  width: 100%;
  display: flex;
  flex-direction: column;

}
#form-contact .col-50:first-child{
  justify-content: space-between;
}
.datos-contact{
  background-color: var(--primary-color);
  color: #fff;
  border-radius: var(--border-radius);
  width: 100%;
  margin: 20px 0;
  background-image: url(../images/isotipo-white.svg);
  background-repeat: no-repeat;
  background-size: 28px;
    background-position: right 20px bottom 20px;
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  #form-contact {
    background-image: url(../images/lines-6.svg);
  }
  #form-contact .row {
    flex-direction: row;
  }
  #form-contact .col-50 {
    width: 50%;
  }
  .datos-contact{
    width: 90%;
    margin: 0;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
  }
}
@media screen and (min-width: 1280px) {
  #form-contact .container {
    width: 70%;
  }
}

.datos-contact > div{
  padding: 25px 30px;
}
.datos-contact img{
  width: 15px;
  height: 15px;
  object-fit: contain;
  margin-right: 10px;
}
.datos-contact li{
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 5px;
}
.datos-contact div:first-child{
  border-bottom: 1px solid var(--quaternary-color);
}
.datos-contact div:last-child{
  padding-bottom: 60px;
}
#map-contact{
  padding-top: 0;
}
.map-wrap{
  overflow: hidden;
  border-radius: var(--border-radius);
}
.map-wrap iframe{
  width: 100%;
  height: 450px;
}


/**
*	Page Nosotros
*	=======================================================================================================
**/

#presentation-nosotros{
  background-color: var(--primary-color);
  color: #fff;
  text-align: justify;
  height: 100%;
}
.presentation-nosotros-wrapper{
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.presentation-nosotros-wrapper > div{
  flex: 1;
}
.col-content-presentation{
  padding: 20px 0 0;
}

.col-img-presentation{
  position: relative;
}
.img-presentation-nosotros{
  width: 100%;
    height: 380px;
    overflow: hidden;
    border-radius: var(--border-radius);
    left: 0;
    top: 0;
    position: relative;
    z-index: 9;
}

#second-pres-nosotros{
  background: linear-gradient(to right, var(--primary-color) 50%, var(--secondary-color) 50%);
  color: #fff;
  text-align: justify;
  padding: 0;
}
.second-press-wrapper{
  display: flex;
  flex-direction: column;
  background-color: var(--secondary-color);
  margin-left: auto;
  border-radius: var(--border-radius) 0 0;
  width: 97%;
    padding: 50px 0px 50px 50px;
}
.second-press-wrapper > div{
  flex: 1;
}
.img-second-press{
  position: relative;;
}
.img-second-press img{
  position: absolute;
  width: 839px;
  bottom: -125px;
  right: -90px;
  display: none;
}
.img-banner-nosotros{
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: var(--border-radius);
}
#banner-nosotros{
  position: relative;
  padding: 0;
  padding-bottom: 80px;
}
#banner-nosotros .bg-multicolor{
  position: absolute;
    background: linear-gradient(to right, var(--primary-color) 50%, var(--secondary-color) 50%);
    width: 100%;
    height: 45%;
    top: 0;
    left: 0;
}
.header-nosotros{
  padding: 40px 0;
}
.header-nosotros-wrapper{
  display: flex;
  flex-direction: row;
  align-items: center;
  color: var(--primary-color);
  font-size: var(--title-s);
  font-family: var(--secondary-font);
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.header-nosotros-wrapper img{
  width: 76px;
}
.header-nosotros-wrapper h1{
  color: var(--tertiary-color);
  font-size: var(--title-s);
  text-align: center;
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  #presentation-nosotros{
    height: 451px;
  }
  .header-nosotros-wrapper{
    flex-wrap: nowrap;
  }
  .presentation-nosotros-wrapper{
    flex-direction: row;
  }
  .second-press-wrapper{
    flex-direction: row;
    width: 90%;
  padding: 160px 0px 60px;
  }
  .img-presentation-nosotros{
      height: 484px;
      position: absolute;
  }
  .img-banner-nosotros{
    height: 449px;
  }
  .img-second-press img{
    display: flex;
  }
}
@media screen and (min-width: 1280px) {
  .header-nosotros-wrapper{
    font-size: var(--title);
    flex-wrap: nowrap;
  }
  .header-nosotros-wrapper h1{
    font-size: var(--title);
  }
}

/**
*	Page Single Blog
*	=======================================================================================================
**/
#main-single-blog{
	padding-top: 60px;
	padding-bottom: 0;
}
.blog-article-wrapper{
	display: flex;
	flex-direction: column;
	gap: 40px;
}
.content-blog-article-wrapper{
	width: 100%;
}
.content-blog-article-wrapper .attachment-post-thumbnail{
	width: 100%;
	height: auto;
	border-radius: var(--border-radius);
}
.blog-single-content{
	text-align: justify;
	margin: 40px 0;
}
.header-article{
	    display: flex;
    flex-direction: row;
    margin-bottom: 30px;
    gap: 20px;
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
	.blog-article-wrapper{
		flex-direction: row;
	}
	.content-blog-article-wrapper{
		width: 70%;
	}
	.header-article{
		gap: 50px;
	}
}
@media screen and (min-width: 1280px) {
}



.header-article .post-meta-date{
	width: 105px;
    background-color: var(--tertiary-color);
    text-align: center;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-transform: uppercase;
    align-items: center;
    display: flex;
    justify-content: center;
    padding: 20px;
    flex: 0 0 105px;
}
.title-article{
	flex-grow: 1;
}
.title-article h1{
	font-size: var(--title-xs);
}
.share-article{
	display: flex;
    flex-direction: row;
    align-items: center;
    font-size: var(--text-content-size);
    font-weight: 600;
}
.sidebar-blog{
	    background-color: var(--primary-color);
    flex-grow: 1;
    border-radius: var(--border-radius);
    padding: 40px 20px;
    height: fit-content;
    position: sticky;
    top: 110px;
}
.sidebar-blog h2{
	font-size: var(--title-s);
	color: #fff;
	text-align: right;
	margin-bottom: 40px;
}
.sidebar-blog h2 span{
	color: var(--tertiary-color);
}
.proyectos-sidebar{
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.item-grid-sidebar{
	    display: flex;
    flex-direction: column;
    gap: 5px;
    color: var(--secondary-color);
    font-size: var(--text-content-size);
    text-align: right;
}
.bloque-sidebar{
	    display: flex;
    flex-direction: row;
    background-color: var(--quaternary-color);
    border-radius: var(--border-radius);
	overflow: hidden;
}
.bloque-sidebar > div{
	flex: 1;
	height:140px;
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
	.bloque-sidebar > div{
		height:109px;
	}
	.title-article h1{
		font-size: var(--title-s);
	}
}
@media screen and (min-width: 1280px) {
}

.logo-sidebar{
	width: 100%;
    justify-content: center;
    display: flex;
    align-items: center;
}
.logo-sidebar img{
	width: 65%;
    height: 65%;
    object-fit: contain;
    object-position: center;
}
.img-sidebar{
	overflow: hidden;
}
.img-sidebar img{
	width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}





#welcome-project .img-intern {
  width: 100%;
  display: flex;
}
#welcome-project .banner-intern {
  height: 35vh;
  max-height: 400px;
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  #welcome-project .banner-intern {
    height: 80vh;
    max-height: 544px;
  }
}
@media screen and (min-width: 1280px) {
}

#welcome-project .title-intern {
  z-index: 9;
}
#welcome-project .wrapper-banner-intern{
  border-bottom: 1px solid #fff;
  z-index: 9;
  position: relative;
}
#welcome-project .overlay-banner {
  width: 100%;
  height: 20%;
  background: rgb(0, 0, 0);
  background: -moz-linear-gradient(360deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
  background: -webkit-linear-gradient(360deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
  background: linear-gradient(360deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
}
#gallery1-wrapper{
  background-image: url(../images/lines-13.svg);
    background-repeat: no-repeat;
    background-size: 390px;
    background-position: right bottom -235px;
}
.gallery1-wrapper{
  display: flex;
  flex-direction: column;
  gap:20px;
  padding: 80px 0 100px;
}
.gallery1-wrapper .photo{
  width: 100%;
  height: 335px;
  overflow: hidden;
  border-radius: var(--border-radius);
}
#location-project{
  padding: 0;
  background: transparent;
  overflow-x: clip;
}
#location-project p{
  margin-bottom: 0;
}
.location-wrapper{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.location-wrapper > div:first-child{
  width: 100%;
  margin-bottom: 30px;
  text-align: center;
}
.location-wrapper > div:last-child{
  width: 100%;
  background-color: var(--primary-color);
  color: #fff;
  padding: 50px 40px;
  border-radius: var(--border-radius) 0 0 0;
  position:relative
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .gallery1-wrapper{
    flex-direction: row;
  }
  .gallery1-wrapper .photo{
    flex: 1;
    height: 447px;
  }
  .location-wrapper{
    flex-direction: row;
  }
  .location-wrapper > div:first-child{
    width: 40%;
    margin-bottom: 0;
    padding: 0 80px 0 0;
  text-align: right;
  }
  .location-wrapper > div:last-child{
    width: 60%;
    padding: 50px 75px;
  }
}
@media screen and (min-width: 1280px) {
  .location-wrapper > div:first-child{
    padding: 0 80px;
  }
}
.location-wrapper > div:last-child::after{
  content: "";
    width: 600px;
    height: 100%;
    background-color: var(--primary-color);
    position: absolute;
    top: 0;
    right: -550px;
    z-index: -1;
}
.location-wrapper img{
  width: 18px;
  height: 18px;
  margin-right: 8px;
}
.location-wrapper .address{
  font-weight: 600;
  margin-bottom: 30px;
}



/**
*	Page Project
*	=======================================================================================================
**/

#map-project{
  padding: 0;
  background-color: transparent;
  overflow-x: clip;
}
#map-project .map-wrap {
  display: flex;
}
#map-project .map-wrap iframe {
  width: 100%;
  height: 405px;
}
#map-project .map-wrap::before{
  content: "";
    height: 72px;
    width: 500px;
    background-color: var(--secondary-color);
    bottom: 0;
    left: -265px;
    position: absolute;
    z-index: -1;
}
#map-project .map-wrap::after{
  content: "";
    height: 72px;
    width: 300px;
    background-color: var(--primary-color);
    top: 0;
    right: -265px;
    position: absolute;
    z-index: -1;
}

#features{
  background-size: 416px;
  background-repeat: no-repeat;
  background-position: center left;
}

#features .section-title{
  text-align: center;
  padding: 0;
}
.features-wrapper{
  display: flex;
  flex-direction: column;
}
.features-wrapper > div:first-child{
  width: 30%;
}
.features-wrapper > div:last-child{
  width: 100%;
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  #features{
    background-image: url(../images/fondo-project.svg);
  }
  #features .section-title{
    text-align: right;
  }
  .features-wrapper{
    flex-direction: row;
  }
  .features-wrapper > div:last-child{
    padding: 0 20px;
    width: 70%;
  }
}
@media screen and (min-width: 1280px) {
}


.features-grid{
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  padding: 40px 0px;
}
.item-feature{
  display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    flex: 0 1 calc(20% - 10px);
    text-align: center;
}

.item-feature img{
  width: 57px;
  height: 57px;
  object-fit: contain;
  object-position: center;
}
.item-feature h3{
  font-family: var(--primary-font);
  text-transform: none;
  font-size: var(--text-content-size);
}
.info-project{
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 50px 0 0;
  font-size: var(--text-content-size);
  flex-wrap: wrap;
  gap: 25px;
}
.info-project > div:first-child{
  width: 145px;
}
.logo-info-project{
  background-color: var(--quaternary-color);
  height: 135px;
    border-radius: var(--border-radius);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 25px;
    position: relative;
    bottom: 0;
}
.content-info-project{
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 10px;
}
.content-info-project span{
  background-color: var(--tertiary-color);
  border-radius: 50px;
  margin-right: 30px;
  padding: 3px 10px;
  width: fit-content;
  height: fit-content;

}
.content-info-project>div{
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .content-info-project{
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0;
	  align-items: center;
  }
  .content-info-project>div{
    padding: 0 20px;
    border-right: 1px solid var(--quaternary-color);
  }
  .info-project{
    flex-wrap: nowrap;
    justify-content: space-between;
    gap:0;
    padding: 50px 0;
  }
  .logo-info-project{
      position: absolute;
      width: 100%;
      height: 145px;
      padding: 25px;
      bottom: -40px;
  }
  .info-project > div:first-child{
    position: relative;
  }
}
@media screen and (min-width: 1280px) {
  .info-project > div:first-child{
    width: 255px;
  }
  .logo-info-project{
    width: 255px;
    height: 225px;
    padding: 40px;
}
}


.content-info-project>div:last-child{
  border: none;
}
.content-info-project img{
  width: 18px;
  height: 18px;
  object-fit: contain;
  object-position: center;
  margin-right: 10px;
}





#vr{
  padding-top: 0;
  padding-bottom: 20px;
  background-color: transparent;
  position: relative;
}



.vr-wrapper{
  width: 100%;
  border-radius: var(--border-radius);
  overflow: hidden;
}

#areas{
  padding-bottom: 0;
}
.header-area-wrapper{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.header-area-wrapper .section-title{
  margin-bottom: 20px;
  text-align: center;
}
.tabs {
  clear: both;
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  height: 350px;
  min-height: 352px !important;
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  #vr::before{
    content: "";
    height: 203px;
    width: 500px;
    background-color: var(--secondary-color);
    top: 0;
    left: -320px;
    position: absolute;
    z-index: -1;
  }

  .header-area-wrapper{
    flex-direction: row;
  }
  .header-area-wrapper .section-title{
    text-align: left;
    margin-bottom: 0;
  }
  .tabs {
    height: 600px;
  }
}
@media screen and (min-width: 1280px) {
  .tabs {
    height: 740px;
  }
}



.tab {
  width: 50%;
  text-align: center;
  float: left;
}

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

.tab label {
  display: block;
  padding: 20px 0;
  position: relative;
  cursor: pointer;
  color: var(--quaternary-color);
  background-color: var(--tertiary-color);
  width: 100%;
  box-sizing: border-box;
  font-size: var(--text-content-size);
}

.tab [type=radio] {
  display: none;
}

.tab__content {
  position: absolute;
  top: 45px;
  left: 0;
  right: 0;
  bottom: 0;
  transition: opacity .2s cubic-bezier(.42,0,.34,1.01);
  opacity: 0;
  padding: 10px;
}

[type=radio]:checked ~ div>label {
  color: #fff;
  z-index: 2;
  background-color: var(--primary-color);
  border-radius: var(--border-radius);
}

[type=radio]:checked ~ .fondo-tab ~ .tab__content {
  z-index: 1;
  opacity: 1;
  /*position: relative;*/
}

.tab__content p {
  margin: 0 0 10px;
}
.tab-first,
.tab-first label{
  border-radius: var(--border-radius) 0 0 var(--border-radius);
}
.tab-last,
.tab-last label{
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}
/* Sub-tabs styles */
.sub-tabs,
.sub-sub-tabs{
  clear: both;
  position: relative;
  margin-top: 20px;
}
.sub-sub-tabs{
  margin-top: 0px;
}

.sub-tab,
.sub-sub-tab{
  text-align: center;
  float: left;
}

.fondo-sub-tab,
.fondo-sub-sub-tab{
  background-color: transparent;
  width: fit-content;
}

.sub-tab label,
.sub-sub-tab label{
  display: block;
  padding: 10px 7px;
  position: relative;
  cursor: pointer;
  color: var(--quaternary-color);
  background-color: transparent;
  font-size: var(--text-content-size);
  margin: 0;
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .sub-tab label,
  .sub-sub-tab label{
    padding: 10px 20px;
  }
}
@media screen and (min-width: 1280px) {
}

.sub-tab [type=radio],
.sub-sub-tab [type=radio]{
  display: none;
}

.sub-tab__content,
.sub-sub-tab__content{
  transition: opacity .2s ease;
    opacity: 0;
	visibility: hidden;
    padding: 10px;
    position: absolute;
    width: 100%;
    left: 0;
    top: 40px;
}
.sub-tab__content img,
.sub-sub-tab__content img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
max-width: 900px;
}

[type=radio]:checked ~ div>label {
  background-color: var(--primary-color);
  color: white;
}

[type=radio]:checked ~ .fondo-sub-sub-tab ~ .sub-sub-tab__content,
[type=radio]:checked ~ .fondo-sub-tab ~ .sub-tab__content {
  opacity: 1;
  visibility: visible;
}

.sub-sub-tab [type=radio]:checked ~ div>label.
.sub-tab [type=radio]:checked ~ div>label {
  background-color: transparent;
  color: var(--tertiary-color);
  border-bottom: 1px solid var(--tertiary-color);
  border-radius: 0;
}

.gallery-wrapper{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.item-gallery{
  height: 180px;
  border-radius: var(--border-radius);
  overflow: hidden;
}
.item-gallery img{
  transition: var(--transition);
}
.item-gallery:hover img{
  transform: scale(1.1);
}

@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .gallery-wrapper{
    grid-template-columns: repeat(4, 1fr);
  }
  .item-gallery{
    height: 230px;
  }
}
@media screen and (min-width: 1280px) {
}


.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;
	border: 0;
}
.libro-reclamaciones-form .container{
	max-width: 800px;
}
.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%;
}
    .libro-reclamaciones-form .form-row {
        grid-template-columns: repeat(1, 1fr);
        grid-column-gap: 25px;
        grid-row-gap: 25px;
    }
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
	.libro-reclamaciones-form .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (min-width: 1280px) {
}

.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(https://rocambola.proyectosomelet.com/wp-content/uploads/2024/10/checked-white.svg);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
.libro-reclamaciones-form h2{
	font-size: var(--title-xs);
	    margin-bottom: 20px;
}
.libro-reclamaciones-form textarea{
	border: 1px solid var(--primary-color);
    width: 100%;
	border-radius:5px;
}
.libro-reclamaciones-form .form-group-wrapper {
    margin-bottom: 30px;
}
.libro-reclamaciones-form .form-group-info {
    display: flex;
    flex-direction: column;
.libro-reclamaciones-info {
    margin: 20px 0;
    text-align: justify;
}
