@charset "utf-8";
@import 'styles.css';

:root {
  --animate-duration: ease .2s;
  --animate-size: 16vw;
  --animation-duration: 3s;
  /*--animation-iteration-count: infinite;*/
  --animation-iteration-count: 1;

  --min-vw: 320;
  --max-vw: 1920;

  --color-text: #fff;
  --color-text__alt: #000;
  --color-black: #000;
  --color-white: #fff;
  --color-grey: rgb(171, 172, 175);
  --color-white03: rgba(255,255,255,.3);
  --color-white04: rgba(255,255,255,.4);
  --color-white05: rgba(255,255,255,.5);
  --color-white06: rgba(255,255,255,.6);
  --color-white07: rgba(255,255,255,.7);
  --color-white08: rgba(255,255,255,.8);
  --color-white09: rgba(255,255,255,.9);
  --color-black00: rgba(0,0,0,0);
  --color-black01: rgba(0,0,0,.1);
  --color-black02: rgba(0,0,0,.2);
  --color-black03: rgba(0,0,0,.3);
  --color-black04: rgba(0,0,0,.4);
  --color-black05: rgba(0,0,0,.5);
  --color-black06: rgba(0,0,0,.6);
  --color-black75: rgba(0,0,0,.75);
  --color-black08: rgba(0,0,0,.8);
  --color-primary1: #a2eaa1;
  --color-primary2: #d8ff00;
  --color-primary3: #b0cf04;

  --color-gris: #f4f4f4;
  --color-gris2: #8c8c8c;
  --color-gris3: #696969; 
  --color-gris4: #adadad;
  --color-gris5: #38393b;
  --color-gris6: #404040;
  --color-gris7: #606060;
  --color-gris8: #171717;
  --color-gris9: #f2f2f2;
  --color-gris10: #eee;
  --color-gris11: #efefef;
  --color-rojo: #e45945;

  --color-blue: #ccff00;
  --color-green-dark: #363f24;
 ;
}

::selection {
    color: #fff;
    background: var(--color-blue);
}
/* For Mozilla Firefox */
::-moz-selection {
    color: #fff;
    background: var(--color-blue);
}
body {
  background-color: var(--color-white);  
  color: var(--color-black);
  transition: .2s ease-in-out; 
  width: 100vw;
  overflow: hidden;
}


/*  Textos generales  */

a{
  cursor: pointer;

}
/*p{
  font-size: 12px;
  font-weight: 300;
}*/
h2{
  margin-bottom:  0.73vw;
}
h3{
  font-size:  calc(13px + (16.5 - 13) * ((100vw - 320px) / (var(--max-vw) - var(--min-vw))));
}
h4{
  font-size: 10.5px;
}

button:focus {outline:0;}

.apagar {
  cursor: pointer;
  transition: var(--animate-duration);
}
.apagar:hover {
  opacity: .5;
}


.hMini {
  padding-left: 2px;
  font-size: calc(12px + (17.5 - 12) * ((100vw - 320px) / (var(--max-vw) - var(--min-vw))));
  font-weight: 500;
  text-align: left;
}
.a-mini {
  font-size: calc(10px + (12 - 10) * ((100vw - 320px) / (var(--max-vw) - var(--min-vw))));
  font-weight: 600;
  text-transform: uppercase;
}
.img-expandido{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.underscore{
  color: var(--color-primary3);
  font-size: calc(50px + (102 - 50) * ((100vw - 320px) / (var(--max-vw) - var(--min-vw))));
  animation: 1s infinite underscore;
  animation-delay: 1.2s;
}
@keyframes underscore {
  0% {
    opacity: 1;
  }
  49% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/*  Cajas  */

main{
  width: 100%;
  /*min-height: 80vh;*/
  position: relative;
  z-index: 2;
  transition: .2s;
  background-color: white;
}
section {
  width: 100%;
/*  min-height: 100vh;*/
  display: flex;
  justify-content: center;
  align-items: center;
  transition: .3s;
  position: relative;
}
section > div {
  max-width: 100%;
}
.animar{
  opacity: 0;
}
.animado {
  opacity: 1!important;
  -webkit-opacity: 1!important; 
  animation: aparicionArriba .6s;
}
@keyframes aparicionArriba{
  0% {
    opacity: 0;
    transform: translateY(30vh);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}



.fadeIn {
  opacity: 1!important;
  -webkit-opacity: 1!important; 
  animation: fadeIn .6s;
}

@keyframes fadeIn{
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* INDEX SEC 2 */

  .sec2 {
    align-items: flex-start;
    padding-bottom: 2em;
  }
  .body_home .sec2 > div {
    max-width: 80%;
    background-color: var(--color-gris11);
  }
  .body_home .sec2 > div > div {
    color: var(--color-text__alt);
    padding: calc(20px + (86 - 20) * ((100vw - 320px) / (var(--max-vw) - var(--min-vw))))
      calc(20px + (340 - 20) * ((100vw - 320px) / (var(--max-vw) - var(--min-vw))))
      calc(20px + (68 - 20) * ((100vw - 320px) / (var(--max-vw) - var(--min-vw))))
      calc(20px + (113 - 20) * ((100vw - 320px) / (var(--max-vw) - var(--min-vw))));
    font-size: calc(15px + (18 - 15) * ((100vw - 320px) / (var(--max-vw) - var(--min-vw))));
  }
  .sec2 p{
    font-size:calc(15px + (18 - 15) * ((100vw - 320px) / (var(--max-vw) - var(--min-vw))));
    line-height: 1.5em;
    font-weight: 500;
    margin-bottom: 1em;
  }
  .sec2 span {
    position: absolute;
    color: var(--color-text);
    font-size: calc(40px + (55 - 40) * ((100vw - 320px) / (var(--max-vw) - var(--min-vw))));
    z-index: 2;
  }
  .sec2 img{
    max-height: 50vh;
    filter: brightness(0.8) grayscale(0.5);
    z-index: 1;
    
  }



/* INDEX SEC 3 */

  .sec3 > div {
    max-width: 80%;
    position: relative;
  }
  .sec3 h2 {
    margin-bottom: calc(40px + (94 - 40) * ((100vw - 320px) / (var(--max-vw) - var(--min-vw))));
  }
  .item {
    /*width: 22%;*/
    transition:.2s;
    
  }
  
  .owl-item{
    background-color: var(--color-white);
  }
  .item .item_img {
    width: 100%;
    height: 238px;
    transition:.2s ease-in-out;
    overflow: hidden;
    position: relative;
  }
  .item .item_img .item_img--sombra {
    height: 100%;
    width: 100%;
    position: absolute;
    background: rgba(255,255,255,0);
    background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 65%, rgba(44,44,44,0.3) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255,255,255,0)), color-stop(65%, rgba(255,255,255,0)), color-stop(100%, rgba(44,44,44,0.3)));
    background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 65%, rgba(44,44,44,0.3) 100%);
    background: -o-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 65%, rgba(44,44,44,0.3) 100%);
    background: -ms-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 65%, rgba(44,44,44,0.3) 100%);
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 65%, rgba(44,44,44,0.3) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#40302d', GradientType=0 );
    z-index: 2;
  }
  .item .item_img .item_img--categoria{
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    opacity: 0;
    transition: .3s;
  }
  .item .item_img .item_img--categoria p{
    font-size: calc(18px + (25 - 18) * ((100vw - 320px) / (var(--max-vw) - var(--min-vw))));
    color: var(--color-text)
  }
  .item:hover .item_img .item_img--categoria{
    opacity: 1;
  }
  .item .item_img img {
    transform: scale(1);
    transition:.2s ease-in-out;
  }
  .item:hover .item_img{
    transform: scale(.95);
  }
  .item:hover img {
    transform: scale(1.2);
    filter: brightness(.7)!important;
  }
  .item .item_contenido {
    padding: 21px 30px 27px;
    
    color:#000;
  }
  .item .item_contenido div{
    min-height: 128px;
  }
  .item .item_contenido p {
    font-size: calc(12px + (15 - 12) * ((100vw - 320px) / (var(--max-vw) - var(--min-vw))));
    line-height: 2.2em;
    font-weight: 700;
    text-transform: uppercase;
  }
  .item .item_contenido h3 {
    font-size: 11px;
  }
  .item .item_contenido span {
    font-size: 11px;
    text-transform: uppercase;
  }

  .sec3 .sec4-ver {
    margin-top: calc(40px + (84 - 40) * ((100vw - 320px) / (var(--max-vw) - var(--min-vw))));
    text-align: right;
  }

/* INDEX SEC 4 */
  .sec4 {
    padding: 140px 0 275px;
  }

  .sec4 > div {
    max-width: 80%;
  }
  .sec4 .a-mini {
    margin: 32px 0 54px;
  }
  .sec4 .div-accordion{
    border-bottom: 1px solid var(--color-gris4);
  }
  

/* INDEX SEC 5 */

  .sec5 {
    height: 100vh;
    color: var(--color-text);
    background-color: black;
    text-align: center;
  }
  .sec5.paralax {
    background-image: url("./img/estrellas_squirrel.png");
  }
  @media (max-width: 1000px) {
    .sec5.paralax {
      background-image: url("./img/estrellas_squirrel_min.png")!important;
    }
    .sec_noticias .item {
      width: calc(33% - 30px);
    }
  }
  .sec5 > div {
    position: absolute;
    width: calc(400px + (800 - 400) * ((100vw - 320px) / (var(--max-vw) - var(--min-vw))));
    max-width: 80%;
  }
  .sec5 > div h2 {
    font-size: calc(55px + (88 - 55) * ((100vw - 320px) / (var(--max-vw) - var(--min-vw))));
    text-transform: uppercase;
    font-weight: 700;
  }
  .sec5 > div p {
    font-size: calc(20px + (33 - 20) * ((100vw - 320px) / (var(--max-vw) - var(--min-vw))));
    font-weight: 600;
    font-style: italic;
  }
  
  
  .header_gradiente {
    height: 60vh;
    width: 100%!important;
    max-width: 100%!important;
    padding: 0!important;
    background: rgba(4,8,35,1);
    background: -moz-linear-gradient(top, rgba(4,8,35,.3) 0%, rgba(4,8,35,0) 38%, rgba(4,8,35,0) 66%, rgba(4,8,35,.3) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(4,8,35,.3)), color-stop(38%, rgba(4,8,35,0)), color-stop(66%, rgba(4,8,35,0)), color-stop(100%, rgba(4,8,35,.3)));
    background: -webkit-linear-gradient(top, rgba(4,8,35,.3) 0%, rgba(4,8,35,0) 38%, rgba(4,8,35,0) 66%, rgba(4,8,35,.3) 100%);
    background: -o-linear-gradient(top, rgba(4,8,35,.3) 0%, rgba(4,8,35,0) 38%, rgba(4,8,35,0) 66%, rgba(4,8,35,.3) 100%);
    background: -ms-linear-gradient(top, rgba(4,8,35,.3) 0%, rgba(4,8,35,0) 38%, rgba(4,8,35,0) 66%, rgba(4,8,35,.3) 100%);
    background: linear-gradient(to bottom, rgba(4,8,35,.3) 0%, rgba(4,8,35,0) 38%, rgba(4,8,35,0) 66%, rgba(4,8,35,.3) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#040823', endColorstr='#040823', GradientType=0 );
  }
  .header_gradiente > div {
      height: 100px;
      max-width: 30%;
      width: 200px;
      max-width: 70%;
  }
  .header_gradiente img{
    height: 100%!important;
    width: 100%;
    max-width: 100%!important;
    object-fit: contain;
  }


/* PÁGINAS COMPLEMENTARIAS */

.header_img {
  height: 80vh;
 /* margin-bottom: 345px;*/
  width: 100%;
}
.header_img img{
  height: 60vh;
}
.sec_ancho > div{
  width: calc(900px + (1250 - 900) * ((100vw - 320px) / (var(--max-vw) - var(--min-vw))));
  max-width: 90%;
}


/* ACCORDEON */

/*.div-accordion{
  border-bottom: 1px solid var(--color-gris4);
}*/
.accordion, .accordion-investor {  
  width: 100%;
  cursor: pointer;
  border: none;
  text-align: left;
  outline: none;
  font-size: calc(18px + (26 - 18) * ((100vw - 320px) / (var(--max-vw) - var(--min-vw))));
  font-weight: 600;
  transition: 0.4s;
  background-color: transparent;
  border-top: 1px solid var(--color-gris4);
}
.accordion a h3, .accordion h2,
.accordion-investor a h3, .accordion-investor h2{  
  padding: 18px ;
  margin-bottom: 0;
  font-size: calc(18px + (26 - 18) * ((100vw - 320px) / (var(--max-vw) - var(--min-vw))));
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
}
.accordion a h3 p:last-child, .accordion h2 p:last-child,
.accordion-investor a h3 p:last-child, .accordion-investor h2 p:last-child{
  font-size: calc(14px + (18 - 14) * ((100vw - 320px) / (var(--max-vw) - var(--min-vw))));
  font-weight: 500;
  text-transform: initial;
  position: absolute;
  left: 40%;
  top: 22px;
}
.accordion a h3, .accordion h2,
.accordion-investor a h3, .accordion-investor h2{
  display: flex;
  flex-direction: row;
}

.accordion:hover, .accordion-investor:hover {
  background-color: var(--color-gris10);
}
/*.active {
  height: max-content!important;
  max-height: max-content!important;
  transition: .3s;
}*/
.link_medios{
  background-color: var(--color-gris10)!important;
}
.panel {
  max-height: 0;
  padding: 0 18px;
  background-color: white;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  position: relative;
}
/*.accordion:hover .panel, .accordion-investor:hover .panel{
  max-height: max-content!important;
  transition: max-height 0.22s ease-in;
}*/
.panel p{
  font-size: calc(12px + (15.5 - 12) * ((100vw - 320px) / (var(--max-vw) - var(--min-vw))));
  font-weight: 500;
  line-height: 1.5em;
}
.panel p:first-child{
  margin-top: 3em;
}
.accordion .panel p:first-child,
.accordion-investor .panel p:first-child{
  margin: 0;
}
.panel .panel_img{
  font-size: calc(12px + (15.5 - 12) * ((100vw - 320px) / (var(--max-vw) - var(--min-vw))));
  font-weight: 500;
  line-height: 1.5em;
  padding: 125px 1em ;
}
.panel .panel_img--corto{
  padding: 5px 1em 125px 1em ;
}
.panel .panel_img--largo{
  padding: 125px 1em ;
}
.panel > div, .panel > a{
  padding: 2em 0;
}
.panel > div.div-accordion{
  padding: 0;
}
.panel .panel_img--a{
  width: 33%;
  min-width: 200px;
  /*max-width: 300px;*/
  padding: 1em;
  /*margin-right: 6%;*/
  position: relative;
  display: flex;
  align-items: center;
  justify-content: left;
}
.panel .a_panel{
  margin: 61px 0 0 0;
  font-size: calc(18px + (26 - 18) * ((100vw - 320px) / (var(--max-vw) - var(--min-vw))));
  text-transform: uppercase;
  font-weight: 500;
}
.flecha--hover{
  opacity: 0;
  background-color: var(--color-blue);
  height: 35px;
  width: 35px;
  border-radius: 17.5px;
  position: absolute;

  overflow: hidden;
  transition: .3s ease-in-out;
}
.flecha--hover > *{
  height: 15px; 
  content: url('https://api.iconify.design/akar-icons/arrow-up-right.svg?color=black&width=15');
  position: relative;
  left: 10px;
  top: 10px;
  transition: .3s;
}
.panel_img--img{
  max-height: 100px;
  max-width: 150px;
  width: 100%;
  object-fit: contain;
  transition: .3s;
}
.panel_img--a:hover img{
  opacity: .7;
}
.panel_img--a:hover .flecha--hover{
  opacity: 1;
}
.panel_img--a:hover .flecha--hover > *{
  opacity: 1;
  animation: hover_panel .7s 2 ;
}
.area_item:hover .flecha--hover{
  opacity: 1;
}
.area_item:hover .flecha--hover > *{
  opacity: 1;
  animation: hover_panel .7s 2 ;
}
@keyframes hover_panel {
 0% {
    top: 30px;
    left: -10px;
  }
 100% {
    top: -10px;
    left: 30px;
  }

}

.rebote {
  position: absolute;
  transition: .4s;
}
/*REBOTE*/
/*Efecto de botar un elemento*/
.panel:hover .rebote, .accordion:hover .rebote, .accordion-investor:hover .rebote{
  animation: rebote 1s 2;
}
@keyframes rebote{
  20%, 50%, 70%{
    transform: translateZ(0%);
  }
  40%{
    transform: translateZ(-25px);
  }  
  60%{ 
    transform: translateZ(-15px);
  }   
}


/* AREAS / MARCAS */

.main_areas .paralax{
  background-image: url("/img/area/squirrel_fondo.jpg");
  /*background-position-y: 50%;*/
}
.main_areas h2 {
  font-size: calc(13px + (16 - 13) * ((100vw - 320px) / (var(--max-vw) - var(--min-vw))));
}
.areas_sec1 {
  margin-bottom: calc(100px + (230 - 100) * ((100vw - 320px) / (var(--max-vw) - var(--min-vw))));
}
.areas_sec1 h3{
  max-width: 470px;
  padding-right: 30px;
  font-size: calc(25px + (48.77 - 25) * ((100vw - 320px) / (var(--max-vw) - var(--min-vw))));
}
.areas_sec1 p{
  padding-right: calc(50px + (270 - 50) * ((100vw - 320px) / (var(--max-vw) - var(--min-vw))));
  font-size: calc(14px + (18 - 14) * ((100vw - 320px) / (var(--max-vw) - var(--min-vw))));
}

.areas_sec3{
  margin: calc(100px + (310 - 100) * ((100vw - 320px) / (var(--max-vw) - var(--min-vw)))) 
  0;
}
.areas_sec3--h3{
  width: calc(300px + (370 - 300) * ((100vw - 320px) / (var(--max-vw) - var(--min-vw))));
  /*max-width: 40%;*/
}
.areas_sec3 h3{
  padding-right: 5%;
  font-size: calc(25px + (55 - 25) * ((100vw - 320px) / (var(--max-vw) - var(--min-vw))));
}
.areas_sec3--p{
  width: 600px;
  max-width: 60%;
}
.areas_sec3 p{
  padding-right: 10%;
  font-size: calc(14px + (18 - 14) * ((100vw - 320px) / (var(--max-vw) - var(--min-vw))));
}
.areas_sec4{
  padding-bottom: 300px;
}
.areas_sec4 > div{
  width: 95%;
}
.areas_sec4--news{
  text-align: center;
}
.areas_sec4--news a{
  width: calc(25% - 40px);
  min-width: 350px;
  height: 325px;
  /*margin-right: 40px;*/
  margin-bottom: 40px;
  background-color: #8c8c8c;
  color: var(--color-text);
  position: relative;
  border: var(--color-white) 0 solid;
  transition: .3s;
  overflow: hidden;
}
.areas_sec4--news h3{
  max-width: 60%;
  font-family: 'montserrat';
  font-weight: 700!important;
  font-size: calc(16px + (26 - 16) * ((100vw - 320px) / (var(--max-vw) - var(--min-vw))))!important;
  text-transform: uppercase;
  z-index: 1;
}
.areas_sec4--news p{
  margin-top: 0.95em;
  font-size: calc(12px + (16.52 - 12) * ((100vw - 320px) / (var(--max-vw) - var(--min-vw))));
  font-weight: 500;
  font-family: 'montserrat';
  text-transform: uppercase;
  z-index: 1;
}
.areas_sec4--news a img{
  filter: brightness(.6);
  position: absolute;
  transition: .4s;
}
.areas_sec4--news a:hover {
  border: var(--color-white) 8px solid;
}
.areas_sec4--news a:hover img {
  transform: scale(1.1);
}


/* Inversores investors */

/*.main_investors{ 
  padding-bottom: 150px;
}*/
.main_investors .header_img img{
  height: 100%;
  filter: brightness(.6);
}
.main_investors > section:nth-child(2){
  width: 1000px;
 max-width: 80%;
 margin: 0 auto;
}
 /*.main_investors h1{
 position: absolute;
  color: white;
  z-index: 1;
  margin-bottom: 2em;
}*/
.main_investors h3 {
  margin: 3em 0 1em;
}
.main_investors p {
  margin-bottom: 0;
  font-size: calc(13px + (15.5 - 13) * ((100vw - 320px) / (var(--max-vw) - var(--min-vw))));
  font-weight: 500;
  line-height: 1.5em;
}
.main_investors ul {
  margin: 1em 2em;
}
.main_investors li {
  list-style-type: circle;
}
.main_investors .header_img {
  height: 40vh;
  margin-bottom: 137px;
}
.main_investors .sec2_investors > div > div {
  /*width: 1000px;
  max-width: 80%;*/
  margin: 0 auto;
  padding-bottom: 12em;
  position: relative;
  justify-content: space-between;
}
.main_investors .sec2_investors > div > div.div-accordion {
  margin-top: 2em;
  padding-bottom: 0;
}
h1.sec2_investors--h1 {
  margin-bottom: 0px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}
h2.sec2_investors--h2 {
  font-size: calc(30px + (48.77 - 30) * ((100vw - 320px) / (var(--max-vw) - var(--min-vw))));
}
.main_investors .sec2_investors h2 {
margin-bottom: 33px;
line-height: 60px;
}
.main_investors .sec2_investors .accordion h2,
.main_investors .sec2_investors .accordion-investor h2 {
  margin-bottom: 0;
}

.main_investors .sec2_investors h2.share, .main_investors .sec2_investors h3.share {
  margin: 2em 0 1em;
  font-size: calc(18px + (25 - 18) * ((100vw - 320px) / (var(--max-vw) - var(--min-vw))));
}
.main_investors .sec2_investors p, .main_investors .sec2_investors li {
  font-size: calc(12px + (16.52 - 12) * ((100vw - 320px) / (var(--max-vw) - var(--min-vw))));
  margin-bottom: 0;
  text-align: center  ;
}
.main_investors .div-accordion {
  margin: 4em 0;
}
.a_investors {
  height: 200px;
  width: calc(33% - 15px);
  margin-bottom: 30px; 
  background-color:grey;
  transition: .3s;
  overflow: hidden;
  opacity: 0;
  position: relative;
  top: 30vh;
}
@media (max-width: 1050px) {
  .a_investors {
    width: calc(50% - 15px);
  }
}
.a_investors p{
  padding: 0 2em;
  position: absolute;
  color: var(--color-white);
  font-weight: 600;
  font-size: calc(12px + (16.52 - 12) * ((100vw - 320px) / (var(--max-vw) - var(--min-vw))));
  z-index: 2;
  transition: .2s;
}
.a_investors img {
  transition: .3s;
  z-index: 1;
}
.a_investors:hover{
  transform: scale(.95);
  background: black;
}
.a_investors:hover img {
  transform: scale(1.1);
  
    filter: opacity(0.5);
}
.a_investors:hover p {
  transform: scale(1.2);
}
table{
  width: 100%;
  margin: 1.5em auto!important;
  padding: .5em 5%;
  border-collapse: collapse;
  border-spacing: 0;
  /*display: block;*/
  align-items: center; 
  /*overflow-x: auto;
  white-space: nowrap;*/
  table-layout: fixed;
  word-wrap: break-word;
}


table tr {
  min-height: 3em;
  width: 100%;
  border-bottom: 1px solid #e4e4e4;
  align-items: center; 
}
table tr td {
  height: 3em;
  padding: .5em calc(10px + (30 - 10) * ((100vw - 320px) / (var(--max-vw) - var(--min-vw))));
  border-top: 1px solid #e4e4e4;
}
table tr td a {
  padding: .7em;
  transition: .2s;
}
table tr td a:hover {
  opacity: .6;
}
table tr:nth-child(odd) td {
  background-color: #f7f7f7;;
}
table tr:first-child {
  border-top: 1px solid #e4e4e4;
}
table.table td:nth-last-child(1) {
  text-align: right;
}
table.table td:first-child {
  text-align: left;
}
table tr:last-child td {
  border-bottom: 1px solid #e4e4e4;
}

.investor_table {
  margin: 3em 0;
}
.investor_table > *{
  min-height: 3em;
  width: 90%;
  margin: 0 auto!important;
  padding: 1em 2em;
  border-bottom: 1px solid rgba(0,0,0,.125);
  align-items: center; 
}
.investor_table > *:first-child{
  border-top: 1px solid rgba(0,0,0,.125);
}
.investor_table > *:nth-child(odd){
  background-color: #f7f7f7;
}
.investor_table h4{
  padding: 1em 0 .5em;
  font-size: calc(13px + (16.5 - 13) * ((100vw - 320px) / (var(--max-vw) - var(--min-vw))));
}
.investor_table span{
  padding: .5em 0;
}
.investor_table-a {
  margin: 3em 0;
}
.investor_table a {
  padding: 1em;
}
.investor_table-a a {
  min-height: 3em;
  padding: .5em 2em;
}
.investor_table-a a {
  min-height: 3em;
  padding: .5em 2em;
}
.investor_table-a p {
  padding: 0;
  margin: 0;;
}
 

/* Maquetación a dos columnas destacadas  */

.main_destacado {
  padding-bottom: 10em;
}
.main_destacado #sec2 {
  padding-top: 200px;
  padding-bottom: 10em;
}
.main_destacado > section:nth-child(n+2) {
  /*width: 1200px;*/
  width: 900px;
  max-width: 90%;
  margin: 0 auto;
}
.main_destacado > section:nth-child(n+2) > div {
  width: 100%;
}
.main_destacado h1 {
  /*font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (var(--max-vw) - var(--min-vw))));*/
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 500;
}
.main_destacado h3 {
  /*font-size: calc(30px + (48.77 - 30) * ((100vw - 320px) / (var(--max-vw) - var(--min-vw))));*/
  font-size: calc(40px + (70 - 40) * ((100vw - 320px) / (var(--max-vw) - var(--min-vw))));
  font-weight: 500;
}
.main_destacado p {
  font-size: calc(15px + (18 - 15) * ((100vw - 320px) / (var(--max-vw) - var(--min-vw))));
}
.destacado_sec2{
  padding-bottom: calc(100px + (240 - 100) * ((100vw - 320px) / (var(--max-vw) - var(--min-vw))));
}
.destacado_sec3--h3{
  width: 100%;
  max-width: 597px;
  padding-right: 10%;
  margin-bottom: 30px;
}
.destacado_sec3--p{
  width: 100%;
  /*max-width: 468px;*/
  max-width: 420px;
  margin-left: calc(20px + (419 - 20) * ((100vw - 320px) / (var(--max-vw) - var(--min-vw))));
}
.destacado_sec4 > div{
  padding: calc(150px + (308- 150) * ((100vw - 320px) / (var(--max-vw) - var(--min-vw))))
  0
  calc(150px + (277- 150) * ((100vw - 320px) / (var(--max-vw) - var(--min-vw))));
}
.sec_news {
  /*width: 1580px!important;
  max-width: 90%!important;*/
  width: 90%!important;
  margin: calc(100px + (443 - 100) * ((100vw - 320px) / (var(--max-vw) - var(--min-vw)))) auto 0 auto!important;
}

@media (max-width: 1750px) {
  .areas_sec4--news a {
    width: calc(33% - 40px);
    min-width: 250px;
  }
}
@media (max-width: 1300px) {
  .areas_sec4--news a{
    width: calc(50% - 30px);
  }
}

.sec_news h2 {
  font-family: 'montserrat';
  font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (var(--max-vw) - var(--min-vw))));
  text-transform: uppercase;
  padding: 0 0 17px 4px;
  font-weight: 600;
}

/* main_tecleo */

.main_tecleo {
  padding-bottom: 12em;
}
.main_tecleo > section > div {
  /*width: 1200px;*/
  width: 900px;
  max-width: 80%;
}
.main_tecleo > section:nth-child(1) > div {
  padding:calc(150px + (380 - 150) * ((100vw - 320px) / (var(--max-vw) - var(--min-vw)))) 
  35%
  calc(30px + (58 - 30) * ((100vw - 320px) / (var(--max-vw) - var(--min-vw))))
  0;
  display: flex;
}
.main_tecleo > section:nth-child(2) {
  width: 100%;
  max-width: 100%;
}
.main_tecleo h1{
  font-size: calc(50px + (102 - 50) * ((100vw - 320px) / (var(--max-vw) - var(--min-vw))));
  text-align: left;
  text-transform: capitalize;
  font-weight: 500;
  line-height: .85em;
}
.main_tecleo--mensaje {
  padding: 170px 0;
}
.main_tecleo--mensaje .destacado_sec3--h3 span {
  font-size: 12px;
  text-transform: uppercase;
}
.main_tecleo--mensaje .destacado_sec3--h3 h2 {
  font-size:  calc(40px + (64 - 40) * ((100vw - 320px) / (var(--max-vw) - var(--min-vw))));
  font-weight: 500;
  /*width: 310px;
  max-width: 80%;*/
}

.main_tecleo--mensaje .destacado_sec3--p p {
  font-weight: 500;
  line-height: 1.5;
  font-size: calc(14px + (18 - 14) * ((100vw - 320px) / (var(--max-vw) - var(--min-vw))));
}
.main_tecleo--mensaje .destacado_sec3--p p:first-child {
  font-size:  calc(18px + (24 - 18) * ((100vw - 320px) / (var(--max-vw) - var(--min-vw))));
  margin-bottom: calc(24px + (43 - 24) * ((100vw - 320px) / (var(--max-vw) - var(--min-vw))));
  line-height: 1.2;
}
.main_tecleo--marcas {
  padding: calc(40px + (170 - 40) * ((100vw - 320px) / (var(--max-vw) - var(--min-vw)))) 0;
}
.main_tecleo--marcas h3 {
  margin: 2em 0;
}
.main_tecleo--marcas > div > div:first-child {
  margin-bottom: calc(40px + (170 - 40) * ((100vw - 320px) / (var(--max-vw) - var(--min-vw)))) ;
}
.main_tecleo--marcas .area_item {
  width: calc(32% - (30px + (50 - 30) * ((100vw - 320px) / (var(--max-vw) - var(--min-vw)))));
  min-width: 200px;
  padding: 36px 
    calc(20px + (36 - 20) * ((50vw - 320px) / (var(--max-vw) - var(--min-vw)))) 
    60px;
  margin-right: calc(30px + (100 - 30) * ((50vw - 320px) / (var(--max-vw) - var(--min-vw))));
  position: relative;
  transition: .3s;
}
.main_tecleo--new h1{
 margin: 2em 0 1em;
 line-height: 1.1em;
}
.main_tecleo--new .new--txt > *{
  margin-bottom: 1.9em;
  line-height: 1.4em;
  font-size: 15px;
 }
@media (max-width: 1000px) {
  .main_tecleo--marcas .area_item {
    width: calc(50% - 20px);
    margin-right: 20px;
  }
}

.main_tecleo--marcas .area_item:hover {
  background-color: var(--color-gris9);
}
.main_tecleo--marcas .area_item .flecha--hover {
  right: 20px;
  top: auto;
  bottom: 20px;
}
.main_tecleo--marcas .area_item img {
  margin-bottom: 32px;
  max-width: 100%;
}
.main_tecleo--marcas .area_item p {
  font-size:  calc(12px + (16 - 12) * ((100vw - 320px) / (var(--max-vw) - var(--min-vw))));
  line-height: 1.4em;
  font-weight: 600;
}
.main_tecleo > .sec_news > div {
  width: 90%;
  max-width: 90%;
}
.main_tecleo .sec_news h2 {
  padding-bottom: calc(40px + (80 - 40) * ((100vw - 320px) / (var(--max-vw) - var(--min-vw))));
  font-size: calc(30px + (45 - 30) * ((100vw - 320px) / (var(--max-vw) - var(--min-vw))));
  font-family: 'Montserrat';
  text-transform: capitalize;
  font-weight: 500;
}
.main_tecleo .sec_news .vermas {
  width: 100%;
  text-align: right;
}
.main_tecleo .sec_news .vermas a {
  font-size: calc(18px + (22 - 18) * ((100vw - 320px) / (var(--max-vw) - var(--min-vw))));
  padding: 1em;
  margin-bottom: 12em;
  text-align: right;
}


/* Página Noticias  */

.sec_noticias {
  /*padding-top: 12em;*/
  background-color: rgb(239, 239, 239);
}
.sec_noticias h2{
  margin: 3em 0 1em
}

.sec_noticias .item {
  width: calc(25% - 30px);
  margin-right: 30px;
  margin-bottom: 50px;
}
.sec_noticias .item .item-img {
  height: 230px;
  overflow: hidden;
}
.sec_noticias .item .item_img {
  width: 100%;
  height: 238px;
  transition: .2s ease-in-out;
  overflow: hidden;
  position: relative;
}
.item-contenido {
  background-color: var(--color-white);
}

.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}
.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}
.aligncenter {
  display: block;
  margin: 0 auto;
}
.spb_image img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
}

/* Pablo pereiro */

.head_profesional {
  height: 100%;
  background-attachment: fixed !important;
  background-image: url(../img/faro.jpg);
  background-position: 74% 0px!important;
  position: relative;
}
.divImg {
  width: 200px;
  height: 200px;
  margin: 0 auto;
  position: absolute;
  bottom: -100px;
  left: calc(50% - 100px);
}
.divImg > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px white solid;
}

/*EXTRAS*/

.main_extra > section:nth-child(2){
  width: 1000px;
  max-width: 80%;
  margin: 0 auto;
}
.main_extra .sec1 h1{
  position: absolute;
  color: var(--color-white);
}

/* Buscar Search */

.sec_search{
height: 100vh;
background-color: var(--color-gris11);
}
.sec_search > div{
  width: 900px;
  max-width: 90%;
}
.sec_search input{
  width: 100%;
  padding: .5em;
  }
  #contenidoSearchSearch {
    height: 120px;
    margin-top: 30px;
    padding-left: 16px;
    padding-right: 16px;
    border-bottom: 2px solid var(--color-black04);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-black); }

    .search__form {
      width: calc( 100% - 70px);
      font-size: 60px;
      top: 10px;
      position: relative;
  }
  .search__input {
    width: 100%;
    padding: 0 0 0 15px;
    background: transparent;
    border: 0;
    border-bottom-color: currentcolor;
    border-bottom-style: none;
    border-bottom-width: 0px;
    box-sizing: border-box;
    color: var(--color-black);
    display: inline-block;
    font-family: inherit;
    line-height: 1;
    -webkit-appearance: none;
    appearance: none;
    transition: .3s ease;
}
#contenidoSearchSearch > svg {
  color: var(--color-blue);
  font-size: 40px;
  position: relative;
  top: 17px;
}

/* Contact */

.main_tecleo > section > .div_form--contacto {
  width: 1000px;
  max-width: 90%;
  padding: 6em 0 10em;
}
.div_form--contacto label {
  margin-top: 1em;
}
.div_form--contacto form {
  margin-bottom: 2em;
}
.div_form--contacto form div{
  margin-top: 1em;
}
.div_form--contacto form input, .div_form--contacto form textarea {
  padding: .5em;
}
.down {
  position: absolute; 
  top: 90vh;
  left: calc(50% - (calc(25px + (50 - 25) * ((100vw - 320px) / (var(--max-vw) - var(--min-vw))))/2));;
  font-size: calc(25px + (50 - 25) * ((100vw - 320px) / (var(--max-vw) - var(--min-vw))));
  color: var(--color-black);
  cursor: pointer;
  opacity: .8;
  transition: .3s;
}
.down:hover {
  opacity: 1;
  transform: translate(0,10px);
  -webkit-transform: translate(0,10px); 
  -o-transform: translate(0,10px); 
  -moz-transform: translate(0,10px);
}

/*  SEC 7  Contacto */

.sec7{
  background-color: var(--color-gris5);
  background-image: url(../img/mapa3.png);
 /*background-position: center;*/
  background: fixed cover repeat;
  position: relative;
  z-index: 4;
}
section.sec7 > div {
  width: 40.1vw;
  max-width: 90%;
  margin: 0 auto;
}
.sec7 h2{
  color: var(--color-primary6);
  font-size: calc(30px + (89 - 30) * ((100vw - 320px) / (var(--max-vw) - var(--min-vw))));
  line-height: .9em;
  margin-bottom: .3em;
  transition: .3s;
}
.sec7 h2:hover{
  text-decoration: underline;
}
.sec7 p, .sec7 a{
  color: var(--color-white);
  font-weight: 700;
}
.p_contact--big{
  font-size: calc(14px + (40 - 14) * ((100vw - 320px) / (var(--max-vw) - var(--min-vw))));
}
.p_contact--lit{
  font-size: calc(12px + (26 - 12) * ((100vw - 320px) / (var(--max-vw) - var(--min-vw))));
}
.p_contact--rs{
  margin-top: 14px;
  display: flex;
}

.p_contact--rs a{
  margin-right: calc(10px + (18 - 10) * ((100vw - 320px) / (var(--max-vw) - var(--min-vw))));
  font-size: calc(14px + (29 - 14) * ((100vw - 320px) / (var(--max-vw) - var(--min-vw))));
}
.p_contact--rs a:nth-child(1){
  font-size: calc(12px + (26 - 12) * ((100vw - 320px) / (var(--max-vw) - var(--min-vw))));
}
#contacto #divContacto {
  width: 100%;
  height: 100%;
  position: fixed;
 /* top: -35px;*/
 top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-black03);
  display: none;
}
#contacto #divContacto2 {
  width: 877px;
  max-width: 90%;
  padding: 66px 
    calc(40px + (84 - 40) * ((100vw - 320px) / (var(--max-vw) - var(--min-vw)))) 
    0px 
    calc(40px + (84 - 40) * ((100vw - 320px) / (var(--max-vw) - var(--min-vw))));
  position: relative;
  display: none;
  background-color: var(--color-white);
}

/*.animate {
  transform: scale(1) translate(0%, 0%)!important;
  opacity: 1!important;
  -webkit-animation-delay: 0.5s;
  -moz-animation-delay: 0.5s;
  animation-delay: 0.5s;
}*/
#contacto #divContacto h3 {
  font-size: calc(25px + (30 - 25) * ((100vw - 320px) / (var(--max-vw) - var(--min-vw))));
  padding: 0 8%;
  text-align: center;
}
#contacto #divContacto form {
  margin-top: 130px;
}
#contacto p {
 line-height: 1.6em;
}
#contacto #divContacto input {
  width: 100%;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 500;
  border: none;
  border-bottom: solid 2px var(--color-black04);
}

#contacto #divContacto textarea {
  width: 100%;
  margin-top: 63px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 500;
  border: none;
  border-bottom: solid 2px var(--color-black04);
}
#contacto #divContacto label {
  font-size: 9px;
  cursor: pointer;
}
#contacto #divContacto form > div:nth-child(1) > div{
  width: 30%;
}

#contacto #divContacto form > div:nth-child(3){
  display: flex;
  margin-top: 18px;
  margin-bottom: 57px;
  justify-content: center;
}
#contacto input[type=checkbox]{
  width: 23px!important;
}
#contacto #divContacto form > div:nth-child(4){
  display: flex;
  justify-content: center;
  margin-bottom: 43px;
}


/*  EXTRAS POLÍTICAS PRIVACIDAD, COOKIES, LEGAL  */



section.secExtra {
  height: 100vh;
  min-height: 100vh;
  background-image: url('https://cdn.shortpixel.ai/client/to_webp,q_lossy,ret_img,w_411,h_308/https://www.grupo.vertice360.com/wp-content/uploads/2016/08/cine.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

section.secExtra > div {
  width: 540px;
  max-width: 90%;
}
.secExtra > div > div {
  padding: 15px 8px;
  border-top: 2px solid var(--color-text3);
  border-bottom: 2px solid var(--color-text3);
  background-color: var(--color-white05);
}
.secExtra > div > div > div {
  height: 400px;
  max-height: 40vh;
  padding: 16px 15px 4px 13px;
}
.secExtra p{
  margin-bottom: 1em;
  line-height: 1.3em;
}
.secExtra strong{
  margin-top: 1em;
}
.secExtra h2 {
  color: var(--color-white);
  text-align: left;
}
.secExtra a, .secExtra p {
  color: var(--color-text);
  text-align: left;
}
.secExtra a:hover {
  transition: var(--animate-duration);
  text-decoration: underline;
}
.secExtra ul {
  margin-bottom: 1em;
}
.secExtra h2 {
  margin-top: 50px;
}
.secExtra li {
  margin-left: 3em;
  font-size: 14px;
  list-style: circle;
  text-align: left;
  font-weight: 300;
}
.divDetalleSubExtrasTxt > div {
  display: flex;
  justify-content: center;
}
.txt_data {
  text-align: left;
}
.txt_data p{
  margin: 30px  0 0 0;
}
.txt_data ul {
  margin: 30px  0 0 0;
}
.txt_data li {
  font-size: 14px;
  font-weight: 300;
  padding-left: 20px;
}

#divFlotante > div {
  background-color: var(--color-white);
}
.divPrint {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: left;
  z-index: 9;
}
.divPrint a {
  cursor: pointer;
  background-color: var(--color-white);
  padding: .5em .7em;
  border-radius: 2em;
  text-decoration: none;
}
.sombra {
  height: 100%;
  width: 100%;
  max-width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color-black);
  opacity: .3;
}
#cookies{
	display: flex;
  position: fixed;
  bottom: 0px;
  width: 100%;
  color: var(--color-white);
  background: var(--color-black03);
  z-index: 195;
}
#cookies > div{
	display: flex;
	flex-direction: row;
	align-items: center;
}
#cookies > div:nth-child(1){
	padding: 20px;
	font-size: 12px;
	font-weight: 300
}
#cookies > div:nth-child(1) > div:nth-child(2){
  padding: 1em 1.5em;
  cursor: pointer;
  color: var(--color-bgOscuro);
  background-color: var(--color-white04);
  transition: var(--animate-duration);
  font-weight: 500;
}
#cookies > div:nth-child(1) > div:nth-child(1){
	padding: 0 5%;
}
#cookies > div:nth-child(1) > div:nth-child(2):hover{
	padding: 1em 1.5em;
  color: var(--color-text);
  background-color: var(--color-bgOscuro);
}


/* NOSOTROS */

.txt_nosotros {
  margin-top: 7em;
  margin-bottom: 26px;
}
.txt_nosotros h2 {
  width: 900px; 
  max-width: 80%;
  margin: 0px auto;
  text-align: left; 
  padding: 1em 0px; 
  font-weight: 500; 
  font-size: 20px;
}

/*  POLÍTICA DE PRIVACIDAD  */

#secPrivacidad {
  height: calc( 100vh - 250px );
  padding-top: 0 !important;
  display: flex;
  align-items: center;
}

/*  POLÍTICA DE COOKIES  */

#secCookies {
  height: calc( 100vh - 250px );
  padding-top: 0 !important;
  display: flex;
  align-items: center;
}

/*  ABOUT  */

#secAbout{
  height: calc( 100vh - 250px );
  padding-top: 0 !important;
  display: flex;
  align-items: center;
}

/*  Información LEGAL  */

#secLegal{
  height: calc( 100vh - 250px );
  padding-top: 0 !important;
  display: flex;
  align-items: center;
}




















/** CAMBIOS NUEVOS **/
a {
   color: inherit;
   text-decoration: none;
}

a:hover {
   color: inherit!important;
}

video::-webkit-media-controls {
   display:none !important;
}

.addressBox {
   line-height: 25px;
   margin-top: 20px;
}

/*.accordion2 {
   margin-left: 40px;
}*/

.accordion2 .accordion-body {
   align-content: center;
   align-items: center;
   display: flex;
   flex-direction: row;
  flex-wrap: wrap;
   justify-content: flex-start;
   width: 100%;
}

.accordion-button {
   color: black!important;
   font-size: 20px!important;
   font-weight: 700!important;
   padding: 2rem 1.25rem!important;
   transition: 0.5s;
   /*text-transform: uppercase;*/
}

.accordion-button:not(.collapsed) {
  color: var(--color-blue)!important;
}

.accordion-button:hover {
  color: var(--color-blue)!important;
}

.accordion-button:not(.collapsed):hover:before {
  background-color: var(--color-blue);
  -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='red' d='M2 8a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11A.5.5 0 0 1 2 8Z'/%3e%3c/svg%3e");
  mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='red' d='M2 8a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11A.5.5 0 0 1 2 8Z'/%3e%3c/svg%3e");
}

.accordion-button:hover:before {
  background-color: var(--color-blue);
  -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='red' d='M8 2a.5.5 0 0 1 .5.5v5h5a.5.5 0 0 1 0 1h-5v5a.5.5 0 0 1-1 0v-5h-5a.5.5 0 0 1 0-1h5v-5A.5.5 0 0 1 8 2Z'/%3e%3c/svg%3e");
  mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='red' d='M8 2a.5.5 0 0 1 .5.5v5h5a.5.5 0 0 1 0 1h-5v5a.5.5 0 0 1-1 0v-5h-5a.5.5 0 0 1 0-1h5v-5A.5.5 0 0 1 8 2Z'/%3e%3c/svg%3e");
}

.accordion-button::before {
  content: "";
  background-color: var(--color-blue);
  -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='red' d='M8 2a.5.5 0 0 1 .5.5v5h5a.5.5 0 0 1 0 1h-5v5a.5.5 0 0 1-1 0v-5h-5a.5.5 0 0 1 0-1h5v-5A.5.5 0 0 1 8 2Z'/%3e%3c/svg%3e");
  mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='red' d='M8 2a.5.5 0 0 1 .5.5v5h5a.5.5 0 0 1 0 1h-5v5a.5.5 0 0 1-1 0v-5h-5a.5.5 0 0 1 0-1h5v-5A.5.5 0 0 1 8 2Z'/%3e%3c/svg%3e");
 flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  content: "";
  margin-right: 10px;
  background-repeat: no-repeat;
  background-size: 1.25rem;
  transition: transform .2s ease-in-out;
}

.accordion-button:not(.collapsed)::before {
  background-color: var(--color-blue);
  -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='red' d='M2 8a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11A.5.5 0 0 1 2 8Z'/%3e%3c/svg%3e");
  mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='red' d='M2 8a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11A.5.5 0 0 1 2 8Z'/%3e%3c/svg%3e");
 
}

.accordion-element:not(:last-child) {
   border-bottom: 1px solid rgba(0,0,0,.125)!important;
   /*border-top: 1px solid rgba(0,0,0,.125)!important;*/
}

.accordionImg {
  margin: 0 30px;
  width: 150px;
  max-width: 90%;
  opacity: 0.75;
  width: 50%;
}
.accordionImg:hover {
   opacity: 1;
}

.accordionLink {
   align-content: center;
   align-items: center;
   display: flex;
   flex-direction: row;
   flex-wrap: nowrap;
   justify-content: center;
   order: 1;
}
.accordionLink > div{
  position: relative;
  width: 150px;
}


.accordionLink .flecha--hover {
    top: 50%;
    display: inline;
    /*right: -10px;*/
    transform: translateY(-50%);
}

.accordionLink:hover .flecha--hover {
   opacity: 1;

}

.accordionLink:hover .flecha--hover > * {
   opacity: 1;
   animation: hover_panel .7s 2;
}
.activeTab {
  color:var(--color-blue)!important;
  position: relative;
}

.activeTab:after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(1);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--color-blue);
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.activeTabText{ 
  display: block!important;
 }

.areaCompanyItem {
  margin-right: 20px;
  padding: 0 30px;
  position: relative;
  transition: 0.3s;
  width: calc((100%/4) - 20px);

}

.areaCompanyItem:hover {
  background: #dfdfdf;
}

.areaCompanyItem:hover .flecha--hover {
   opacity: 1;
}

.areaCompanyItem:hover .flecha--hover > * {
   opacity: 1;
   animation: hover_panel .7s 2;
}

.areaCompanyItem img {
  height: 150px;
}

.areaCompanyItem p {
  font-weight: 500;
  font-size: 12px;
  padding-right:44px;
  top: -14px;
    position: relative;
}

/*.areaCompanyItem .flecha--hover {
    right: 20px;
   bottom: 30px;
   top: initial;
}*/

 /*.areaItems {
 margin-top: 30px;
}*/

 /*.areaText {
 grid-area: d; 
 width: 355px;
}*/

.areaText1 {
  font-size: 24px;
  font-weight: 500;
}

.areaText2 {
  font-size: 17px;
  font-weight: 500;
}

.areaTextContent {
  margin: 0 auto;
  width: 50%;
}

.areaTitle {
    font-family: 'Montserrat';
    font-size: 46px;
    font-weight: 600;
    line-height: 46px;
    margin-bottom: 25px;
}

.bggrey {
  background-color: #f6f5f5;
}

.blackCover {
   background:rgb(0 0 0 / 60%);
   /*background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgb(0 0 0 / 50%) 50%, rgb(0 0 0 / 0%) 100%);*/
   height: 100%;
   left: 0;
   position: absolute;
   top: 0;
   width: 100%;
   z-index: 4;
}

.blurHeader {
    backdrop-filter: blur(10px);
    background: rgb(255 255 255 / 30%);
    border-bottom: 1px solid #d1d1d1;
    height: 90px;
}

.blurHeader .div_headLogo #head_precio {
  color: #999999!important;
}

.blurHeader .imgMenuLogoCab {
  opacity: 1!important;
}

.blurHeader .header-menu {
  color: rgba(0, 0, 0, 0.6);
  /*color: #343434;*/
}

.bottomBar {
  position: absolute;
  bottom: 40px;
  z-index: 5;
  display: flex;
  width: 100%;
  justify-content: center;
  left: 0;
}

/*#sec5 .linkEffect:after, header:not(.blurHeader) .linkEffect:after {
  background-color: white!important;
}*/

.circle_cursor {
   align-content: center;
   align-items: center;
   background-color: var(--color-blue);
   border-radius: 100px;
   color: black;
   display: flex;
   flex-direction: row;
   flex-wrap: nowrap;
   height: 0px;
   justify-content: center;
   opacity: 0;
   position: absolute;
   text-transform: uppercase;
   top: 302px;
   transition: 0.05s;
   width: 0px;
   z-index: 9;
}

.companiesArrow {
  align-content: center;
  align-items: center;
  display: flex;
  width: 50px;
}

.companiesColumn {
  align-content: center;
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
}

.companiesRow {
  align-content: center;
  align-items: center;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  position: relative;
  top: -14px;
}

.companiesShortText {
  font-size: 12px;
  font-weight: 500;
  padding-right: 44px;
}

.companyWebLink {
  color: black;
  font-size: 12px;
    opacity: 0.7;
}
.companyWebLink:hover {
  opacity: 1;
}

.contactBox {
   /*margin-left: 40px;*/
   margin-top: 60px;
}


.newsButton {
  background: transparent;
  /* border-radius: 5px; */
  border: 2px solid var(--color-green-dark);
  margin-top: 40px;
  padding: 10px 33px;
  transition: 0.5s;
  font-size: 15px;
  color:black; 
  font-weight: 700;
}

.newsButton:hover {
  background-color: var(--color-green-dark);
  color: var(--color-blue);
}


.contactButton {
   background: transparent;
   /* border-radius: 5px; */
   border: 2px solid var(--color-blue);
   color: white;
   margin-top: 40px;
   padding: 10px 33px;
   transition: 0.5s;
}

.contactButton:hover {
   background-color: var(--color-blue);
   color: black!important;
}

.contactForm {
   -ms-flex-direction: column;
   -ms-flex-wrap: wrap;
   -webkit-box-direction: normal;
   -webkit-box-orient: vertical;
   display: -ms-flexbox;
   display: -webkit-box;
   display: flex;
   flex-direction: column;
   flex-wrap: wrap;
   max-height: 270px;
   /*margin-left: 40px;*/
   width: 100%;
}

.contactInput {
   -webkit-box-shadow: none;
   background-color: transparent;
   border-radius: 0;
   border: none;
   box-shadow: none;
   color: inherit;
   font-size: 26px;
   font: inherit;
   letter-spacing: inherit;
   line-height: 35px;
   margin: 0;
   min-height: 35px;
   overflow: visible;
   padding: 0;
   width: 100%;
}

.contactInputBox {
   font-size: 18px;
   margin-bottom: 20px;
}

.contactLabel {
   -webkit-transition: color .3s;
   display: block;
   font-size: 18px;
   line-height: 35px;
   position: relative;
   transition: color .3s;
   width: 100%;
}

.contactTextareaBox{
   order: 1;
}
.contenidoSearchMost {
  overflow: hidden;
}
.blurHeader .desployMenu {
  background: white;
  color: black;
}

.desployMenu {
  background: rgba(0, 0, 0, 0.6);
  color: white;
  position: fixed;
  visibility: hidden;
  left: 0;
  right: 0;
  margin-top: 90px;
  width: 100vw;
  top: -20px;
  height: 0;
  text-transform: uppercase; 
  border-bottom: 3px solid var(--color-blue);
}

.desployMenuElem {
  padding: 10px 20px;
  font-size: 15px!important;
  opacity: 0;
  /*padding-left: calc(100% - 440px);*/
}

.desployMenuElem:last-child {
  padding: 10px 10px 20px 10px;
}

.desployMenuElem a:hover {
  color: var(--color-blue)!important;

}

.divListSearch {
    margin-top: 40px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    width: 100%;
    align-items: center;
    overflow-x: auto;
}
.divMostDetalle {
  position: relative;
      height: 250px;
    margin-right: 12px;
    margin-bottom: 12px;
  min-width: 300px;
}
.divMostDetalle a{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  text-align: center;
  color: white;
  align-items: center;
  justify-content: center;
}
.divMostDetalle a:hover{
color: white;
}
.divMostDetalle img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  text-align: center;
  filter: brightness(0.75);
}

.firstGraph {
   color: #121212;
   font-family: Montserrat;
   font-size: 1.3em;
   font-weight: 500;
   /*line-height: 45px;*/
}

.firstGraph div, .secondGraph div, .areaTitle div, .areaText1 div, .areaText2 div {
  opacity: 0;
  transform: rotate(1deg);
  transform-origin: top left;
}

#head_lang-es, #head_lang-en {
  opacity: 0.6;
}

#head_actividades_mobil .desployMenuElem {
  opacity: 1;
}

.iconRRSS {
   color:rgba(255, 255, 255, 0.5);
   height: 25px; 
   transition: 0.5s;
   width: 25px;
}

.iconRRSS:hover {
   color:rgba(255, 255, 255, 1);
}

.infoMail {
   font-family: 'Montserrat';
   font-weight: 700;
}

#areas1,#areas2,#areas3,#areas4 {
  opacity: 0;
}

#sec4 .accordion-element {
  opacity: 0;
}

.itemBusiness {
   align-content: center;
   align-items: flex-start;
   display: flex;
   flex-direction: column;
   flex-wrap: nowrap;
   justify-content: center;
   margin-right: 30px;
   position: relative;
   max-width: 275px;
   min-width: 275px;
}

.itemBusiness:last-of-type {
  margin-right: 0;
}

.itemBusinessSubtitle {
    color: black;
    font-family: 'Montserrat';
    font-size: 17px;
    line-height: 21px;
    font-weight: 600;
    margin-top: 30px;
    width: 75%;
}

.itemBusinessTitle {
   color: white;
   font-family: 'Montserrat';
   font-size: 19px;
   font-weight: 800;
   left: 50%;
   line-height: 24px;
   position: absolute;
   text-align: center;
   text-transform: uppercase;
   top: 50%;
   transform: translate(-50%, -50%);
   z-index: 3;
}

.itemBusinessImg {
  width: 50%;
  z-index: 9;
  position: absolute;
  fill: white;
  filter: brightness(0) saturate(100%) invert(98%) sepia(26%) saturate(2%) hue-rotate(226deg) brightness(107%) contrast(100%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.itemImg {
   background: black;
   cursor: none;
   display: flex;
   height: 200px;
   overflow: hidden; 
   position:relative;
   width: 100%; 
}

/*.itemImg:hover > div::before, .itemMedia:hover > div::before {
   filter: opacity(0.75)!important;
}*/

.itemMedia {
   color: white;
   height: 100%;
   padding: 10px;
   position: relative;
   transition: 0.5s;
   width: 50%; 
}

.itemMedia:hover{
   width: 100%;
}

.itemMedia:hover ~ .itemBusinessTitle {
   opacity: 0;
}
.circle_bg {
  position: absolute;
  width: 0%;
  height: 0%;
  top: 0;
  left: 0;
  background: rgb(0 0 0 / 40%);
  border-radius: 100%;
  transition: 1s;
  transform: translate(-50%,-50%);
  z-index: 2;
}
.itemMediaBottom {
  bottom: 10px;
  color: white;
  font-size: 16px;
  font-weight: 600;
  position: absolute;
  width: 120px;
  z-index: 1;
}

.linkArrow {
   bottom: 10px;
   position: absolute;
   right: 10px;
}

.linkEffect {
  cursor: pointer;
  display: inline-block;
  position: relative;
}

.linkEffect:after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--color-blue);
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.linkEffect:hover:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.openMenu .desployMenu {
  visibility: visible;
  height: auto;
  /*height: 190px;*/
  transition: 0.3s;
}

.openMenu .desployMenuElem {
  opacity: 1;
  transition: 2s;
}


.listBusiness{
   align-content: center;
   align-items: flex-start;
   display: flex;
   flex-direction: row;
   flex-wrap: nowrap;
   justify-content: center;
}

.logoBar {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.logoBar img {
  /*margin-right: 60px;*/
  max-height: 150px;
  opacity: 0.75;
  width: 75%;
}

.mainText {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 5;
  left: 50%;
  width: 750px;
}

.mainText h1 {
  color: white;
  font-size: 65px;
  font-family: 'Montserrat';
  font-weight: 400;
  line-height: 68px;
}

.hoverVideo {
  opacity: 0;
  transition: 1s;
}

#myVideo, .hoverVideo{
   background-color: black;
   background-position: center center;
   background-size: 100% 100%;
   background-size: contain;
   bottom: 0;
   height: 100%;
   object-fit: cover;
   position: absolute;
   right: 0;
   top:0;
   width: 100%;
   z-index:1;
}

#navigation .desployMenuElem {
  padding: 20px 0 ;
}

.newsSection {
  padding-top:  200px;
}

.newsSectionBox {
  align-content: flex-start;
  align-items: flex-start;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 60px;
}

.newSectionBox {
  margin-top: 60px;
  line-height: 30px;
}

.newSectionBox a {
    color: var(--bs-body-color);
    font-weight: 600;
    text-decoration: underline;
}
.newSectionBox video, .newSectionBox iframe {
  max-width: 100%;
  margin: 1em 0;
}
.newSectionBox img {
  margin-top: 1em;
  margin-bottom: 1em;
}

.moreNewsButton:hover
{
  color: white;
}

.newsSectionImg {
  background-position:center;
  background-size:cover; 
  height: 300px;
}

.newsSectionItem {
  margin-bottom: 100px;
  margin-right: 24px;
  max-width:calc((100%/3) - 24px);  
  min-height: 490px; 
  overflow:hidden; 
  position: relative; 
  width:100%;
}

.newsSectionItemBox {
  background: white;
  font-family: 'Montserrat';
  font-size: 26px;
  padding: 24px;
}

.newsSectionItemBoxDate{
    margin-top: 50px;
    font-weight: 800;
    font-size: 14px;
}

.newsSectionItemBoxPath {
  color: var(--color-green-dark);
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 50px;
}

.newsSectionItemBoxTitle {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  /* -webkit-line-clamp: 2; */
  display: -webkit-box;
  font-family: 'Montserrat';
  font-weight: 500;
  /* height: 54px; */
  height: 80px;
  line-height: 1;
  overflow: hidden;
  /* padding-right: 30%;*/
  width: 95%;
}
.newsSectionItemBoxTitle h2 {
  font-size: 20px;
  font-weight: 500;
}

.newsSectionTitle {
  font-family: 'Montserrat';
  font-size: 70px;
  font-weight: 400;
}

.newSectionTitle {
  font-family: 'Montserrat';
  font-size: 48px;
  font-weight: 400;
  line-height: 54px;
}

.paddingFooterAdd {
 background-color: var(--color-green-dark);
  color: white;
  margin: 0 auto;
  padding: 90px calc((329*100%)/1913) 0 calc((329*100%)/1913);
}

.padding1 {
   /* padding: 0 calc((329*100%)/1913); */
   padding: 0 11%;
   text-align: left;
}

.padding2 {
   padding: 0 6.6%;
   text-align: left;
}

.padding3 {
   padding: 0 25%;
   text-align: left;
}
.pMostDetalle1{
  font-weight: 700;
  width: 90%;
  margin: 0 auto;
}

.privacyBox {
  margin-top: 130px;
}

.privacyTabs {
  font-weight: 600;
    font-size: 14px;
}

.privacyTitle {
  font-weight: 700!important;
}
.rc-anchor, .grecaptcha-badge {
  display: none!important;
}
.relatedNews {
  font-size: 30px;
  font-weight: 600;
  /*font-family: 'Montserrat';*/
  /*width: 200px;*/
  line-height: 30px;
}


.relatedNewsBlack {
  background: black;
  /*background: #2e3b7e;*/
  display: table-cell;
  height:100%;
  opacity: 0.3;
  position:absolute; 
  width: 100%; 
}

a:hover .relatedNewsBlack{
  opacity: 0.5;
}

.relatedNewsDate {
  font-size:12px; 
  text-transform: uppercase
}

.relatedNewsItem {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display:table; 
  height: 305px;  
  position:relative;
  width:calc(90% / 3); 
}


.relatedNewsSection {
  align-content: center;
  align-items: flex-start;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-evenly;
  margin-top:80px;
}

.relatedNewsTitle {
  color: white;
  /*font-family: 'Montserrat';*/
  font-weight: 500;
  /*padding: 0 60px;*/
  width: 80%;
  margin-left: 10%;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}
.relatedNewsTitle .shortTitle{
      -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    display: -webkit-box;
    font-family: 'Montserrat';
    font-weight: 700;
    height: 43px;
    font-size: 22px;
    line-height: 1;
    overflow: hidden;
    text-transform: uppercase;

}

.rrssBox{
   margin-top: 25px;
}

#sec1 {
  background: url(../img/web-nueva-squirrel_2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

#sec5 {
   background-color: var(--color-green-dark);
   color: white;
}

.secondGraph {
   color: #4f4f4f;
   font-family: Montserrat;
   font-size: 18px;
   font-weight: 500;
   line-height: 30px;
   /*padding-right: 325px;*/
}
.share {
  font-size: 16px;
  margin: 20px 0;
}

.tabText {
  display: none;
  margin-top: 80px;
}

.tabText * {
    line-height: 20px;
    font-weight: 400;
    font-style: normal;
    font-size: 13px;
}

.tabText ul, .tabText li {
  list-style: circle!important;
}
.titleBusiness {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 53px;
    text-transform: uppercase;
}

.titleWeAre {
   color: var(--color-green-dark);
   font-size: 12px;
   font-weight: 700;
   margin-bottom:20px;
}

.videoArea {
  height: 100vh;
  left: 0;
  min-width: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
}

.normalSection {
   margin: 0 auto;
   max-width: 1000px;
   width: 70%;
}

.weAreSection {
  align-items: center;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  height: inherit;
  justify-content: center;
}


.descSection {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  height: inherit;
  justify-content: center;
}

.leftVideo iframe{
  height: 100%;
  position: relative;
  width: 85%;
}


@media (max-width: 1200px) {
  .itemMediaBottom {
    font-size: 12px;
  }
  .areaCompanyItem {
    font-size: 12px;
    width: calc((100%/3) - 20px);
  }
}

@media (max-width: 1100px) {
  .mainText{
    width: 50%;
  }
  .newsSectionItem{
    max-width: calc((100%/2) - 24px);
  }
  .weAreSection {
    width: 100%;
  }
}

@media (max-width: 1000px) {
    .listBusiness {
      align-content: center;
      align-items: center;
      display: flex;
      flex-direction: column;
      flex-wrap: nowrap;
      justify-content: center;
  }  
  .itemBusiness {
    align-content: center;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 60px;
    margin-right: 0;
    justify-content: center;
  }
  .shortTitle {
    height: 29px;
    font-size: 15px;
  }
}
@media (max-width: 1500px) and (min-width: 1000px) {
  .itemBusiness {
    width: 300px;
    max-width: 300px;
    /* min-width: 31%; */
  }
  .areaCompanyItem img {
    height: 100px;
  }
  .companiesShortText {
    font-size: 10px;
  }
  .logoBar img{
    max-height: 22vh;
  }
  .accordionImg{
    max-width: 85px;
  }
  .titleBusiness{
    margin-bottom: 30px;
  }
  .contactInputBox, .contactLabel {
    font-size: 16px;
  }
  .contactInputBox {
    margin-bottom: 13px;
  }
  .paddingFooterAdd {
    padding-top: 60px;
  }
  .contactBox{
    margin-top: 30px;
  }
  .contactInput {
    line-height: 27px;
    min-height: 27px;
  }
  .paddingFooterAdd .paddingFooterAdd{
    margin-top: 17px;
  }
  .addressBox {
    line-height: 20px;
    margin-top: 15px;
  }
  .rrssBox {
    margin-top: 20px;
  }
  footer .flexRowBet {
    margin: 50px auto 37px;
  }
}

@media (max-width: 800px) {
  .QhLvnd > div {
    width: 100%!important;
}
  .firstGraph {
    font-size: 25px;
    /*font-size: 1.5em;*/
  }

.flexRowWra, .relatedNewsSection {
    flex-direction: column;
    align-items: center;
}

.head_grafica > div > div, .head_search > div > div {
  padding-top: 50px;
}

.mainText {
  min-width: 500px;
}
.itemBusiness {
    align-content: center;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 60px;
    margin-right: 0;
    justify-content: center;
}
  .mainText h1 {
    font-size: 50px;
    line-height: 50px;
  }
  #myVideo {
    display: none;
  } 
  .newsSection {
    padding: 130px 0 0 0;
}
.padding3 {
    padding: 0 5%;
    text-align: left;
}
  .areaCompanyItem {
    width: 100%;
  }
  .relatedNewsItem {
    width: 100%;
    margin-bottom: 30px;
  }
  .weAreSection {
    margin: 0;
    width: 100%!important;
  }
  .search__form, #contenidoSearchSearch > svg  { 
    font-size: 17px;
  }
  #contenidoSearchSearch {
    height: 43px;
  }

  .logoBar img{
    min-height: 75px;
    width: auto;
   max-height: 80px;
}

  .logoBar {
    align-content: center;
    align-items: center;
    bottom: 0px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    position: absolute;
    width: calc(100% - 30px);
    z-index: 5;
}
#head_precio {
  display: none!important;
}
}

@media (max-width: 500px) {
  .accordion2 .accordion-body {
    justify-content: center;
  }
  .mainText {
    min-width: 300px;
  }
  .mainText h1 {
    font-size: 35px;
    line-height: 35px;
  }
  footer .a_menu {
    display: none;
  }
 #head_grafica h1 {
      font-size: 30px;
 }
  .contactForm {
    max-height: fit-content;
  }
  .contactTextareaBox{
    order: initial;
  }



  .mainText{
    left: 0;
    padding: 0 6.6%;
    width: 100%;
  }
  .newsSectionTitle {
    font-size: 40px;
    line-height: 40px;
  }
  .newSectionTitle {
    font-size: 30px;
    line-height: 30px;
  }
    .newsSectionItem{
      margin-right: 0;
    max-width: 100%;
  }
  .padding1 {
    padding: 0 calc((100*100%)/1913);
  }
  
  #sec2, #sec3, #sec4, #sec5, #secRelatedNews {
    padding-bottom: 90px;
    padding-top: 90px;
  }
  
}

#didomi-host .didomi-components-radio__option.didomi-components-radio__option--agree {
  background-color: var(--color-blue)!important;
}
#didomi-host a:not(.didomi-no-link-style) {
  text-decoration: underline;
  color: var(--color-blue)!important;
}
#didomi-host button{
  border-radius: 5px!important;
}