@keyframes transitionVerDown {
  0%   { transform: rotateX(60deg); }
  30%  { transform: rotateX(60deg); }
  100% { transform: rotateX(0deg); }
}

@keyframes transitionVerUp {
  0%   { transform: rotateX(-60deg); }
  30%  { transform: rotateX(-60deg); }
  100% { transform: rotateX(0deg); }
}

@keyframes transitionHorDown {
  0%   { transform: rotateY(60deg); }
  30%  { transform: rotateY(60deg); }
  100% { transform: rotateY(0deg); }
}

@keyframes transitionHorUp {
  0%   { transform: rotateY(-60deg); }
  30%  { transform: rotateY(-60deg); }
  100% { transform: rotateY(0deg); }
}
@media (max-width: 800px) {
  @keyframes transitionVerDown {
    0%   { transform: rotateX(45deg); }
    30%  { transform: rotateX(45deg); }
    100% { transform: rotateX(0deg); }
  }

  @keyframes transitionVerUp {
    0%   { transform: rotateX(-45deg); }
    30%  { transform: rotateX(-45deg); }
    100% { transform: rotateX(0deg); }
  }

  @keyframes transitionHorDown {
    0%   { transform: rotateY(45deg); }
    30%  { transform: rotateY(45deg); }
    100% { transform: rotateY(0deg); }
  }

  @keyframes transitionHorUp {
    0%   { transform: rotateY(-45deg); }
    30%  { transform: rotateY(-45deg); }
    100% { transform: rotateY(0deg); }
  }
}


@keyframes disappearReappear{
  0%{
    filter:blur(0);
  }
  40%{
    filter:blur(50px);
  }
  60%{
    filter:blur(50px);
  }
  100%{
    filter:blur(0px);
  }
}


@keyframes objectMove {
  0% {
    object-position: 0 0;
  }
  40% {
    object-position: 100% 100%;
  }
  60% {
    object-position: 100% 100%;
  }
  100% {
    object-position: 0 0;
  }
}

.onTop {
    z-index: 3 !important;
}

.inactiveArrow {
    opacity: 0!important;
}

.startPointsSVG circle {
    cursor: pointer;
}

.heroImageInactive{
    opacity:0;
}


.scrollIndicator * {
    transition:all 0.25s ease-in-out;
}
.fixedSelector.blueBorders .scrollIndicator * {
    fill: #203950!important;
}


.fixedSelector.blueBorders .scrollIndicator line {
    stroke: #203951!important;
}

.phoneImage{
        display:none;
    }

    .desktopImage{
        display:block
    }


.disappearReappear{
    animation: disappearReappear 1.5s ease-in-out;
}
.disappearReappearFast{
    animation: disappearReappear 0.75s ease-in-out;
}


.video-button-prev, .video-button-next {
    position: absolute;
    cursor: pointer;
    width: auto;
    height: 100%;
    aspect-ratio: 1/1;
    top:53%;
    transition:all 0.15s ease-in-out;
}


.secondVideo {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
}

.horizontalFixedSelector>div {
    display: none;
}

.desktopVideo.desktopImage {
    width: 100%;
    height: 100%;
}

video.firstVideo {
    object-position: 0% 80%;
}

.video-button-next {
    left: 100%;
    transform: translate(40%,-50%);
}

.video-button-prev {
    left: 0;
    transform: translate(-140%,-50%);
}


.video-button-next:hover {
    transform: translate(40%,-50%) scale(1.15);
}


.video-button-prev:hover {
    transform: translate(-140%,-50%) scale(1.15);
}

.video-button-next:active {
    transform: translate(40%,-50%) scale(0.8);
}


.video-button-prev:active {
    transform: translate(-140%,-50%) scale(0.8);
}

.buttonInactive {
    cursor: not-allowed;
    opacity: 0.4;
}




.mapTextTitle {
    position: relative;
    width: fit-content;
    height: fit-content;
}

.fixedSelector p {
    width: fit-content;
}


/* Chrome, Edge, Safari */
*::-webkit-scrollbar { 
  width: 0;
  height: 0;
}

/* Firefox */
* { 
  scrollbar-width: none;
}

.entry-content>div {
    touch-action:none!important
}


html, body {
  touch-action: none; 
  overflow-y:clip;
  background-color:white;
}

/* Sliding transitions */
.transitionVerDown { animation: transitionVerDown 0.75s ease-in-out; }
.transitionVerUp   { animation: transitionVerUp 0.75s ease-in-out; }
.transitionHorDown { animation: transitionHorDown 0.75s ease-in-out; }
.transitionHorUp   { animation: transitionHorUp 0.75s ease-in-out; }

.transitionVerDown,
.transitionVerUp,
.transitionHorDown,
.transitionHorUp {
  transform-origin: center;
}


.scrollControl {
    height: 100vh;
    width: 100vw;
    padding-top: 14vh;
    box-sizing: content-box;
    padding-left: 15vw;
}


.horizontalScroll {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
}



.horizontalScroll>div {
    min-width: 100vw;
}

.activeNavigation {
    color: red;
}

.fixedSelector {
    position: fixed;
    top: 14vh;
    height: 86vh;
    left: 0;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 15vw;
    z-index: 10;
    border-right: 3px solid white;
    transition: all 0.25s ease-in-out;
    padding-top: 17.5vh;
    box-sizing: border-box;
    padding-left: 50px;
}


html body .horizontalFixedSelector {
    position: fixed;
    top: 100%;
    left: calc(15vw + 60px + 30px);
    transform: translateY(-100%) rotateX(90deg);
    width: 10%;
    height: 10%;
    min-width: unset;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    z-index: 10;
    transition: transform 0.25s ease-in-out;
    background: transparent;
    pointer-events: none;
}


.horizontalFixedSelector.active {
    transform: translateY(-100%);
    pointer-events: all;
}

.horizontalFixedSelector>span {
    width: 9px;
    height: 9px;
    background-color: transparent;
    border-radius: 50%;
    border: 3px solid #203951;
    transition: all 0.3s ease-in-out;
    margin: 0em 1.2em;
    cursor: pointer;
}

span.horizontalSelectorBullet.activeBullet {
    background-color: #203951;
    cursor: default;
}

.whyCadizGraphVideo video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.whyCadizGraphVideo {
    position: absolute;
    top: 14vh;
    left: 15vw;
    width: 85vw;
    height: 86.1vh;
    background-color: white;
}


.hero {
    position: relative;
}

.heroImage {
    position: absolute;
    top: 14vh;
    left: 0;
    width: 100vw;
    height: calc(86vh - 6px);
    border: 3px solid white;
    border-left: unset;
    border-right: unset;
}


.heroImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 0% 51%;
}


.heroText .alqyonSvg {
    width: 30vw;
    height: 100%;
}

.heroText {
    position: absolute;
    top: calc(14vh + 15%);
    left: calc(20vw + 70px);
    z-index: 10;
}


.heroText .alqyonSvg {
    width: 22vw;
    height: 100%;
}

.heroText p {
    font-family: 'Playfair Display';
    color: #f2f2f2;
    font-size: 2.3em;
    margin: unset;
    margin-top: 0.2em;
}

.goNextCutout svg {
    width: 15%;
    height: 50%;
    transition: all 0.25s ease-in-out;
}

.goNextCutout svg:hover {
    transform: rotateX(30deg);
}

.goNextCutout {
    position: absolute;
    left: 50vw;
    top: 100vh;
    transform: translate(-50%,-100%);
    width: 8vw;
    height: 8vh;
    background: #203951;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 3px solid white;
    border-bottom: 1px solid black;
    border-top-left-radius: 10vw;
    border-top-right-radius: 10vw;
    cursor: pointer;
}

.fixedSelector.blueBorders {
    border-color: #203951;
}

.blueBorders.fixedSelector p {
    color: #203951;
}



.horizontalScroll {
    background-image: url('/wp-content/uploads/2025/11/CadizBG.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}


.whyCadizGraph {
    display: flex;
    flex-direction: row;
}

.heroImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 0% 100%;
    animation: objectMove 60s ease-in-out infinite;
    transition: all 0.35s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
}



.fixedSelector {
    position: fixed;
    top: 14vh;
    height: 86vh;
    left: 0;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 15vw;
    z-index: 10;
    border-right: 3px solid white;
    transition: all 0.25s ease-in-out;
    padding-top: 15vh;
    box-sizing: border-box;
    padding-left: 50px;
}


.startPointsSVG {
    width: 20px;
    height: 90px;
    padding-left: 10px;
}

.fixedSelector p {
    cursor: pointer;
    font-size: 0.8em;
    padding-right: 10px;
    padding-left: 10px;
    text-align: left;
    color: white;
    transition: all 0.25s ease-in-out;
    font-family: 'Source Sans 3';
    font-weight: 600;
    margin: 0.7em 0;
}

.continuationPointsSVG {
    width: 20px;
    height: 50px;
    padding-left: 10px;
}

.startPointsSVG svg, .continuationPointsSVG svg {
    width: 100%;
    height: 100%;
}

.startPointsSVG *, .continuationPointsSVG * {
    transition: all 0.25s ease-in-out;
}

.blueBorders .startPointsSVG *, .blueBorders .continuationPointsSVG * {
    stroke:#203951!important;
    fill:#203951!important;
}
.blueBorders .startPointsSVG circle{
  fill:transparent!important;
}


.whyCadizGraph>div {
    width: calc(50% - 7.5vw);
}

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

.whyCadizPhotos {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: calc(100% - 14vh);
    padding-right: 11%;
    box-sizing: border-box;
    padding-bottom: 1%;
    padding-top: 1%;
}


.whyCadizPhotos>div {
    width: 100%;
    height: auto;
    aspect-ratio: 8/3;
    border: 3px solid white;
}

.whyCadizBlurb {
    background: rgba(32, 57, 81,0.21);
    width: 80%;
    margin: 0 auto;
}

.whyCadizTextBlurbs h2 {
    padding-left: calc(20vw - 15vw + 70px);
    /*La cuenta parece tonta pero simboliza 20vw que es el padding left del texto en el header, y 15vw es el espacio que ocupa el fixedSelector*/
    font-family: 'Playfair Display';
    font-size: 2.4em;
    color: #203951;
    font-weight: 700;
}

html .fixedSelector p.activeFixedSelector {
    border: 1px solid #203951;
    border-radius: 30px;
    background: rgba(241, 241, 241, 0.14);
    color: white;
}



p.activeFixedSelector {
    background-color: rgba(241, 241, 241, 0.14);
    color: white;
    border-radius: 50px;
    padding: 5px 10px;
}


.whyCadizBlurb {
    background-color: rgba(32, 57, 81, 0.21);
    width: 70%;
    padding: 0.5em 0%;
    margin: 0 auto;
    margin-bottom: 2em;
    padding-right: 20px;
}

.whyCadizBlurb li {
    color: #203951;
    font-family: 'Source Sans 3';
    font-size: 1.1em;
}

.whyCadizMap {
    position: relative;
}

.whyCadizMapText {
    position: relative;
    z-index: 5;
    width: 25%;
    margin-top: 2%;
    margin-left: calc(20vw - 15vw + 30px);
}

.whyCadizMapText h2 {
    font-family: 'Playfair Display';
    font-size: 1.8em;
    margin-bottom: 1em;
    color: #203951;
}

.whyCadizMapText p {
    font-size: 1em;
    font-family: 'Source Sans 3';
}

.whyCadizBlurb {
    background-color: rgba(32, 57, 81, 0.21);
    width: 70%;
    margin: 0 auto;
    padding: 0.3em 0em;
    margin-bottom: 30px;
    padding-right: 0.5em;
}



.strategyCadizText h2 {
    font-family: 'Playfair Display';
    font-size: 1.8em;
    margin-bottom: 1em;
    color: #203951;
}

.bgLogo svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.bgLogo {
    width: 180px;
    height: 180px;
}

.strategyCadiz {
    display: flex;
    flex-direction: row;
}

.strategyCadizBlurb {
    width: 38%;
    height: 20vh;
}

.strategyCadizBlurbs {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    height: 86vh;
    padding-bottom: 26vh;
    box-sizing: border-box;
}

.strategyCadizRow {
    display: flex;
}

html body .blueBorders p.activeFixedSelector {
    background-color: #203951;
    color: white;
    border-radius: 50px;
    padding: 5px 10px;
}


.strategyCadizText {
    width: 29%;
    margin-left: calc(20vw - 15vw + 70px);
    position: relative;
    padding-right: 5%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 26vh;
    height: 86vh;
}

.strategyCadizText p {
    font-family: 'Source Sans 3';
    color: #203951;
    margin-bottom: 15vh;
    font-size:1em;
}

.strategyCadizTextDown p {
    margin: unset!important;
}

.strategyCadizTextDown {
    position: relative;
}

.bgLogo {
    width: 180px;
    height: 180px;
    position: absolute;
    top: 70%;
    transform: translateY(-100%);
    z-index: -1;
}

.strategyCadizBlurbRow {
    display: flex;
}


.sustainability, .blurbs {
    background-image: url('/wp-content/uploads/2025/11/definedBG.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #203951;
    background-blend-mode: multiply;
}

.sustainability>h2 {
    font-family: 'Source Sans 3';
    font-weight: 500;
    color: white;
    text-align: center;
    transform: translateX(-7.5vw);
    font-size: 2.3em;
    margin-top: 1.4em;
    margin-bottom: 2em;
}
.sustainableImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.sustainableImage {
    width: 100%;
    height: 100%;
}


.swiper-slide::after {
    content: '';
    background-color: rgba(241, 241, 241, 0.33);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    transition: all 0.15s ease-in-out;
    position: absolute;
    pointer-events: none;
}


.sustainableSwiper {
    width: 60%;
    margin: 0 auto;
    position: relative;
    overflow-x: clip;
    transform: translateX(-7.5vw);
}
.swiper-slide.swiper-slide-active::after{
    opacity:0;
}

.swiper-slide {
    transition: all 0.15s ease-in-out;
    z-index:1;
}

.swiper-slide.swiper-slide-active {
    transform: scale(1.15);
    z-index: 99;
    box-shadow: 0px 0px 9px rgba(0,0,0,1);
}

.sustainableText {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    transform: translateY(-100%);
}

.sustainableVisibleText h2 {
    margin: unset;
    color: #203951;
    font-family: 'Source Sans 3';
    font-weight: 700;
    text-align: center;
    font-size:1.5em;
    text-transform: uppercase;
}
.sustainableVisibleText {
    background-color: white;
    padding: 7px 0px;
}

.swiper-button-next::after, .swiper-button-prev::after{
    content:unset!important;
}

.swiper-button-next, .swiper-button-prev {
    width: 75px;
    height: 75px;
}

.swiper-button-next svg, .swiper-button-prev svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


.hiddenText p {
    font-family: 'Source Sans 3';
    color: white;
    line-height: 110%;
    text-align: center;
    margin: unset;
}


.hiddenText {
    background-color: rgba(32, 57, 81, 0.71);
    background-blend-mode: color;
    transition: all 0.45s ease-in-out;
    height: 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 5%;
}

.visibleText{
    height:200px;
}
/*Flechas Swiper hover*/
.swiper-button-next, .swiper-button-prev {
    transition: all 0.15s ease-in-out;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    transform: scale(1.05);
}

.swiper-button-next:active, .swiper-button-prev:active {
    transform: scale(0.85);
}


/**/

.strategyCadizRow>div:first-child {
    margin-right: 4vh;
}

.strategyCadizBlurbs>div:first-child {
    margin-bottom: 4vh;
}


.blurbsBackgroundImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    object-position: 0% 0%;
}

.blurbsBackgroundImage {
    width: 85vw;
    height: 86vh;
}

.blurbs {
    background-position: 0% -30%;
    position: relative;
}


.textBlurbs>h2 {
    font-family: 'Source Sans 3';
    font-weight: 500;
    color: white;
    text-align: center;
    font-size: 2.3em;
    margin-top: 1.4em;
    margin-bottom: 7%;
}


.textBlurbs {
    position: absolute;
    top: 14vh;
    left: 15vw;
    width: 85vw;
    height: 86vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


.blurbs {
    height: 86vh;
}

.textBlurb {
    width: 27%;
    box-sizing: border-box;
    margin: 0% 2%;
}

.textBlurb h2 {
    font-family: 'Source Sans 3';
    color: #f1f1f1;
    font-weight: 700;
    font-size: 1.6em;
    height: 2.5em;
}


.textBlurb p {
    color: #f1f1f1;
    font-family: 'Source Sans 3';
    font-weight: 500;
    font-size: 1em;
}

#footer {
    position: relative;
    z-index: 99;
    animation:unset!important
}
.blurbs{
    animation:unset!important;
}


.textBlurbsFlex {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding-bottom: 10vh;
    justify-content: space-around;
    margin-bottom: auto;
}

.strategyCadizBlurb {
    background-color: rgba(32, 57, 81, 0.21);
    position: relative;
    padding: 2% 2%;
    box-sizing: border-box;
}

.strategyCadizBlurbNumber {
    width: 30px;
    height: auto;
    position: absolute;
    top: 100%;
    left: 100%;
    transform: translate(-125%,-125%);
    aspect-ratio: 1/1;
}

.strategyCadizBlurb>p {
    font-family: 'Source Sans 3';
    color: #203951;
    font-size: 1em;
    font-weight: 500;
    margin: unset;
}

.strategyCadizBlurbNumber p {
    color: rgba(32, 57, 81, 0.5);
    font-family: 'Playfair Display';
    font-size: 3em;
    line-height: normal;
    margin: unset;
    display: block;
}

.fixedSelector br {
    display: none;
}


.scrollIndicator svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.phoneSelector{
    display:none;
}

.scrollIndicator {
    width: 20px;
    height: auto;
    position: absolute;
    top: 95%;
    left: 50%;
    transform: translate(-50%,-100%);
}


.redoIcon svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.redoIcon * {
    fill:#203950
}

.redoIcon {
    width: 40px;
    height: 40px;
    position: absolute;
    top: calc(14vh + 2.5%);
    left: calc(15vw + 22px);
    transform: translate(55%,45%);
    cursor: pointer;
    z-index: 999;
}

.whyCadizGraphVideo video.desktopImage {
    object-position: 0% 70%;
}

@media only screen and (max-width:1600px){

    .sustainability>h2 {
    margin-top: 1em;
    font-size: 1.9em;
}

    .scrollIndicator {
    width: 15px;
    height: auto;
    position: absolute;
    top: 95%;
    left: 50%;
    transform: translate(-50%,-100%);
}



    .fixedSelector br {
    display: block;
}

    .goNextCutout svg {
    width: 22%;
}

.goNextCutout {
    width: 6vw;
    height: 6vh;
}


    .horizontalFixedSelector>span {
    min-width: 9px;
    min-height: 9px;
}

    .fixedSelector p {
    font-size: 0.7em;
    width: fit-content;
}

.startPointsSVG {
    height: 70px;
}

.continuationPointsSVG {
    height: 40px;
}

.heroText .alqyonSvg {
    width: 19vw;
}

.heroText p {
    font-size: 2em;
}

.whyCadizBlurb {
    width: 80%;
}

.whyCadizTextBlurbs h2 {
    font-size: 2em;
}

.whyCadizBlurb li {
    font-size: 0.9em;
}

.whyCadizTextBlurbs h2 {
   padding-left:50px;
}


.whyCadizPhotos {
    padding-bottom: 3%;
    padding-top: 3%;
}

.whyCadizMapText {
    width: 35%;
    margin-left: calc(20vw - 15vw + 0px);
}

.whyCadizMapText p {
    font-size: 0.75em;
    padding-right:20%;
}

.whyCadizMapText h2 {
    margin-bottom: 0.4em;
}

.strategyCadizText p {
    font-size: 0.9em;
}

.strategyCadizText{
    margin-left: 50px;
}
.strategyCadizText p {
    margin-bottom: 7vh;
}

.bgLogo {
    width: 150px;
    height: 150px;
}

.strategyCadizText {
    padding-bottom: 20vh;
}
.strategyCadizBlurbs {
    padding-bottom: 21vh;
}

.strategyCadizBlurb {
    width: 40%;
    height: 19vh;
}

.strategyCadizBlurb>p {
    font-size: 0.8em;
}

.strategyCadizBlurb {
    width: 44%;
    height: 19vh;
}

.hiddenText p {
    font-size: 0.8em;
}

.sustainableVisibleText h2 {
    font-size: 1.3em;
}
.textBlurb h2 {
    font-size: 1.3em;
}


.textBlurb p {
    font-size: 1em;
}

.fixedSelector {
    padding-left: 10px;
}


.swiper-button-next, .swiper-button-prev {
    width: 50px;
    height: 50px;
}

.heroText {
    top: calc(14vh + 15%);
    left: calc(15vw + 50px);
}




}




@media only screen and (max-width:1100px) and (min-width:800px){
    html .whyCadizGraphVideo .phoneImage{
        display:none;
    }
    html .whyCadizGraphVideo .desktopImage{
        display:block;
    }

}

@media only screen and (max-width:1100px){
    .phoneImage{
        display:block;
    }


    .desktopImage{
        display:none
    }
    .fixedSelector>* {
    display: none;
}

.fixedSelector {
    border: unset;
    padding: unset;
    height: 27vh;
    top: 50%;
    left: unset;
    right: 0;
    background-color: rgba(0,0,0,0.47);
    transform: translateY(-50%);
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    width: 11%;
}

.scrollControl {
    padding-top: 9vh;
    padding-left: unset;
}

.heroImage {
    top: 9vh;
    width: 100vw;
    height: 91vh;
    border: unset;
}


span.phoneSelectorBullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid white;
    opacity: 0.5;
    transition: all 0.15s ease-in-out;
    cursor: pointer;
}

.heroText .alqyonSvg {
    display: none;
}

.phoneSelector {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 100%;
    height: 100%;
    align-items: center;
    padding: 10px 0;
}
.heroText {
    top: calc(9vh + 5%);
    left: 8vh;
    width: 80%;
}




.whyCadizGraph>div {
    width: 100%;
}



span.phoneSelectorBullet.activeBullet {
    background: #f1f1f1;
    opacity: 1;
}

.fixedSelector {
    z-index: 120;
    width:7%   
}


.heroText p {
    font-size: 2.3em;
    padding-right: 20%;
}
.redoIcon {
    top: 10vh;
    width: 20px;
    height: 20px;
    left: 0;
}

.whyCadizGraph.verticalScroll.scrollControl {
    display: flex;
    flex-direction: column;
}


.whyCadizTextBlurbs h2 {
    text-align: center;
    padding-left: unset;
    font-size: 1.5em;
    margin: 0.3em 0;
}

.whyCadizBlurb {
    width: 100%;
    margin-bottom: 5px;
}
.whyCadizBlurb ul {
    padding-left: 40px;
    margin: 7px 0;
}


.whyCadizPhotos {
    display: flex;
    flex-direction: row;
}

.whyCadizBlurb li {
    font-size: 0.75em;
}

.whyCadizPhotos>div {
    aspect-ratio: 3/8;
}

.goNextCutout {
    width: 10vw;
    height: 4vh;
    border-top-right-radius: 90px;
    border-top-left-radius: 90px;
}

html body .horizontalFixedSelector {
    width: 100%;
    left: 0;
    background: #f1f1f1;
    border-top: 5px solid rgba(32, 57, 81, 0.21);
    height: 8vh;
}

.horizontalScroll>div {
    overflow: clip;
}

.whyCadizPhotos {
    display: flex;
    flex-direction: row;
    padding: unset;
    height: auto;
    padding-bottom: 8vh;
    max-height: 50vh;
}


.whyCadizMapText {
    width: 100%;
    margin-left: unset;
    margin-top: 0;
}

.whyCadizMapText strong {
    display: none;
}


.whyCadizGraphVideo {
    top: 0vh;
    left: 0vw;
    width: 100vw;
    height: 100vh;
}



.scrollControl {
    box-sizing: border-box;
}

.whyCadizMapText h2 {
    margin: unset;
    text-align: center;
    font-size: 1.5em;
    margin-top: 0.5em;
}

.whyCadizMapText p {
    font-size: 0.85em;
    text-align: center;
    margin: auto;
    padding: 0 3%;
    color: black;
}


.whyCadizMapText {
    height: 18vh;
    border-bottom: 5px solid rgba(32, 57, 81, 0.21);
}

.whyCadizMap.scrollControl {
    background-color: white;
}

.whyCadizMapText {
    display: flex;
    flex-direction: column;
    height: 18vh;
    border-bottom: 4px solid rgba(32, 57, 81, 0.21);
}

.whyCadizGraphVideo {
    top: calc(27vh + 5px);
    width: 100vw;
    height: calc(64vh - 3px);
}


.contain {
    object-fit: contain;
}


.strategyCadiz {
    display: flex;
    flex-direction: column;
}

.strategyCadizTextDown {
    display: none;
}

.strategyCadizText {
    width: 100%;
    margin-left: unset;
    padding: unset;
    height: auto;
}

.strategyCadizText h2 {
    font-size: 1.5em;
    text-align: center;
}

.strategyCadizText p {
    margin-bottom: 2vh;
    text-align: center;
    font-size: 0.8em;
    padding: 0 5%;
    margin-top: unset;
}

.strategyCadizRow {
    display: flex;
    flex-direction: column;
    width: 100%;
}


.strategyCadizBlurb {
    margin: unset;
    margin-bottom: 5px;
    width: 100%;
    aspect-ratio: unset;
    height: auto;
}

.strategyCadizBlurbs>div:first-child {
    margin-bottom: unset;
}

.strategyCadizBlurbs {
    width: 100%;
    height: auto;
    padding: 0 4%;
    padding-bottom: 8vh;
    position:relative;
}

.strategyCadizBlurbs::after {
    content: '“Buscamos proyectos inmobiliarios con ubicaciones con valor y narrativa, diseño arquitectónico diferencial y precio ajustado a la demanda real que aseguren su viabilidad comercial.”';
    font-size: 0.8em;
    font-family: 'Source Sans 3';
    color: #203951;
    line-height: 100%;
    text-align: right;
    top: 100%;
    left: 0;
    padding-left: 10%;
}

.strategyCadizBlurbNumber p {
    font-size: 2.5em;
    line-height: 100%;
}

.strategyCadizBlurb>p {
    padding-right: 13%;
}

.sustainableSwiper {
    width: 370px;
    margin: 0 auto;
    transform: unset;
    overflow: visible;
}


.swiper-button-next, .swiper-button-prev {
    top: 100%;
    transform: translateY(100%);
}

.swiper-slide.swiper-slide-active {
    transform: scale(1.05);
}

.custom-button-next, .custom-button-prev {
    width: 30px;
    height: 30px;
    transition: all 0.15s ease-in-out;
}

.custom-button-prev {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(10px, -50%);
}

.custom-button-next {
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translate(calc(-100% - 10px), -50%);
}

.custom-button-next:hover {
    transform: translate(calc(-100% - 10px), -50%) scale(1.05);
}

.custom-button-prev:hover {
    transform: translate(10px, -50%) scale(1.05);
}

.custom-button-next:active {
    transform: translate(calc(-100% - 10px), -50%) scale(0.85);
}

.custom-button-prev:active {
    transform: translate(10px, -50%) scale(0.85);
}

.sustainability>h2 {
    transform: unset;
    margin-bottom: 22px;
    font-size: 1.5em;
    padding: 0 15%;
}

.sustainability {
    position: relative;
}



.hiddenText {
    height: 100%;
    overflow: clip;
    display: flex;
    justify-content: center;
    align-items: center;
}

 .sustainableText {
    top: calc(100% - 9vh);
}


.hiddenText p {
    font-size: 0.7em;
    padding: 20px 0;
    margin: auto 0;
    padding-bottom: 0;
}


.sustainableVisibleText h2 {
    font-size: 1.2em;
}

.sustainableVisibleText {
    padding: 3px 0px;
    position: relative;
}

.blurbs {
    height: 100vh;
}

.blurbsBackgroundImage {
    width: 100%;
    height: 100%;
}

.textBlurbs {
    top: 9vh;
    left: 0;
    width: 100%;
    height: calc(100% - 9vh);
}

.textBlurbs>h2 {
    font-size: 1.5em;
}
.textBlurb h2 {
    font-size: 1em;
    height: fit-content;
    margin-bottom: unset;
    margin-top: 0.5em;
}

.textBlurb p {
    font-size: 0.8em;
    margin: unset;
}

.textBlurb {
    width: 96%;
    margin-bottom:3%;
}


.textBlurb h2, .textBlurb p{
    text-align:center;
}


.sustainableText {
    width: 640px;
    left: 50%;
    top: 100%;
    transform: translate(-50%, 30px);
}

.sustainableText p {
    transition: all 0.3s ease-in-out;
    overflow: hidden;
}

.strategyCadizBlurbs{
    padding:0 9%;
}

.textBlurbsFlex{
    padding: 0 10%;
}

}

@media (max-width: 1100px) {
  @supports (-webkit-touch-callout: none) {
    .whyCadizGraphVideo{
        height: calc(55vh - 3px);
    }
  }
}

@media only screen and (max-width: 1000px) {

    .sustainableSwiper {
        width: 350px;
    }

    .swiper-button-next, .swiper-button-prev {
        width: 40px;
        height: 40px;
    }

}

@media only screen and (max-width: 800px) {



    .sustainableText {
        width: 580px;
    }

    .phoneVideo.phoneImage {
    width: 100%;
    height: 100%;
}

video.firstVideo {
    object-position: 0% 40%;
}

}

@media only screen and (max-width:600px){
    .goNextCutout{
    top:calc(100% - 9vh);
}

    .strategyCadizBlurbs{
    padding:0 4%;
}



.textBlurbsFlex{
    padding: unset;
}

   
.sustainableSwiper {
    width: 250px;
}
    .whyCadizPhotos {
    padding-bottom: 8vh;
    box-sizing: content-box;
}
.whyCadizGraph>div {
    width: 100%;
    height: 50%;
}


.textBlurb {
    margin-bottom: 6px;
}
.heroText p {
    font-size: 1.7em;
    padding-right: 0%;
}

.textBlurb p {
    font-size: 0.75em;
    margin: unset;
}

.goNextCutout {
    width: 21vw;
    height: 4vh;
}
    .strategyCadizBlurb>p{
     font-size:0.7em;   
    }

    .sustainableText {
        width: 380px;
    }

.swiper-button-next, .swiper-button-prev{
    width:30px;
    height:30px;
    top:101%;
}

.heroText {
    left: 4vh;
}

    .sustainability>h2 {
        transform: unset;
        margin-bottom: 22px;
        font-size: 1.3em;
        padding: 0;
    }


}




/*Ipads*/
@media only screen 
  and (min-device-width: 768px) 
  and (max-device-width: 1024px) 
  and (orientation: portrait) 
  and (-webkit-min-device-pixel-ratio: 1) {

    
    .goNextCutout{
        transform: translate(-50%,-240%);
        width:15vw;
    }
    .whyCadizGraphVideo{
        height: calc(58vh - 3px);
    }

    .whyCadizMap:has(.disappearReappear) video{
        object-fit:contain;
    }

}
/*Iphones antiguos*/
@media only screen and (max-width:600px) and (max-height:690px){
    .heroImage{
        height:79vh;
    }
    .whyCadizBlurb li{
        font-size:0.65em;
    }
    .whyCadizPhotos>div{
        height:90%;
    }
    .whyCadizMapText p {
        font-size:0.7em;
    }
    .horizontalFixedSelector{
        height:4vh;
    }
    .horizontalFixedSelector>span{
        height: 6px;
        width: 6px;
        min-height: 6px;
        min-width:6px;
    }
    .strategyCadizText h2{
        margin-bottom:0.4em;
        font-size:1.3em;
    }
    .strategyCadizText p{
        font-size:0.7em;
    }
    .strategyCadizBlurb>p{
        font-size:0.6em;
    }
    .strategyCadizBlurbs::after{
        font-size:0.7em;
    }
    .sustainableSwiper{
        width:40%;
    }
    .swiper-button-next, .swiper-button-prev{
        width:30px;
        height:30px;
    }
    .hiddenText p{
        font-size:0.65em;
    }
    .sustainableTxet{
        top:calc(100% - 11vh);
    }
    .textBlurbs>h2{
        font-size:1.3em;
        margin-bottom:2%;
    }
    .textBlurb p{
        font-size:0.65em;
    }
    .textBlurb h2{
        font-size:0.9em;
    }
}

@supports (font: -apple-system-body) and (-webkit-touch-callout: none) {

    .goNextCutout{
    display:none;
}
}

/* PARA TABLETS GRANDES DE APPLE EN LA HOME */

@supports (font: -apple-system-body) and (-webkit-touch-callout: none) {

    @media only screen and (max-width: 1600px) and (min-width: 1100px) {

        .whyCadizPhotos {
            padding-bottom: 10%;
        }  

        .strategyCadizText {
            padding-bottom: 29vh;
        }

        .strategyCadizBlurbs {
            padding-bottom: 30vh;
        }

    }

}

@supports (font: -apple-system-body) and (-webkit-touch-callout: none) {

    @media only screen and (max-width: 500px) and (min-width: 410px) {

        .sustainableSwiper {
            width: 250px;
        }

    }

    @media only screen and (max-width: 410px) {

        .sustainableSwiper {
            width: 200px;
        }

        .hiddenText p{
            font-size:0.85em;
        }

    }

}

/* FLECHAS DEL VÍDEO */

@media only screen and (max-width: 1100px) {

    .mapTextTitle {
        width: 100%;
    }

    .whyCadizMapText h2 {
        margin: unset;
        text-align: center;
        font-size: 1.5em;
        margin-top: 0.5em;
    }

    .mapTextTitle .video-button-next, .mapTextTitle .video-button-prev {
        display: none;
    }

    .horizontalFixedSelector .video-button-prev, .horizontalFixedSelector .video-button-next {
        display: block;
    }

    .horizontalFixedSelector .video-button-prev {
        left: 0;
        top: 50%;
        transform: translate(40px, -50%);
    }

    .horizontalFixedSelector .video-button-next {
        top: 50%;
        left: 100%;
        transform: translate(calc(-100% - 40px), -50%);
    }

}

@media only screen and (max-width: 500px) {

    .horizontalFixedSelector .video-button-prev, .horizontalFixedSelector .video-button-next {
        width: 40px;
        height: 40px;
    }

}