/*
Theme Name: sofiaseisk Theme
Theme URI: sofiaseisk.com
Description: Tema nuevo para el proyecto sofiaseisk
Author: Maria Lara
Author URI: maaarialara.com
Version: 1.0
*/

/* CSS RESET */

a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code,dd,del,details,dfn,div,dl,dt,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,output,p,pre,q,ruby,s,samp,section,small,span,strike,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,tt,u,ul,var,video{margin:0;padding:0;border:0;font:inherit;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:after,blockquote:before,q:after,q:before{content:'';content:none}table{border-collapse:collapse;border-spacing:0}

:root {
    --main-bg-color: rgb(0, 0, 0);  
    --main-text-color: #fcfcfc; 
    --light-grey: rgb(191, 191, 191);
    --main-font: sans-serif;
    --pad-s: 2rem;
    --font-size-s: 12px;
    --min-h: 70vh;
}


/* my css */

*, *:after, *:before {
    box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}


body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-size: 62.5%; 
    background-color: var(--main-bg-color);
    color: var(--main-text-color);
    font-family: var(--main-font); 
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

body::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

a {
    color: var(--main-text-color);
    text-decoration: none;
    cursor: pointer;
}

/* a:hover {
    opacity: 0.9;
} */

ul {
    padding-inline-start: 0;
}

li {
    list-style: none;
}

button {
    border: none;
    cursor: pointer;
    transition: color 0.3s;
    font-family: var(--main-font);
    font-size: var(--font-size-s);
    background: none;
    margin: 0;
    padding: 0;
}

::-moz-selection {
    color: var(--light-grey);
    background: transparent;
}

::selection {
    color: var(--light-grey);
    background: transparent;
}

/* clases */
.z-9 {
    z-index: 9;
}

.z-99 {
    z-index: 99;
}

.z-999 {
    z-index: 999;
}

.z-9999 {
    z-index: 9999;
}

.z-1 {
    z-index: 1;
}

.z-2 {
    z-index: 2;
}

.center-absolute {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ellipsis {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.balance {
    text-wrap-style: balance;
}

.mobile {
    display: none;
}

.desktop {
    display: block;
}

/* COMING SOON */
.coming-soon-container h1 {
    font-size: 36px;
}
.coming-soon-container h2 {
    font-size: 18px;
    text-align: center;
    margin-top: 1rem;
}


/* home */
header {
    position: fixed;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: var(--pad-s);
    font-size: var(--font-size-s);
    /* font-weight: 600; */
    z-index: 999999999;
}

ul#menu-menu {
    display: flex;
    gap: 1rem;
}

.front-videos-from-page-21 {
    padding-top: 15vh;
}

section.front-video-container {
    width: 100vw;
    min-height: var(--min-h);
    position: relative;
}

section.front-video {
    height: 100%;
}

section.front-video-container  figure.wp-block-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%;
  max-height: 100%;
      min-height: var(--min-h);
      height: var(--min-h);
    align-content: center;
}

figcaption.wp-element-caption {
    font-weight: 600;
    font-size: var(--font-size-s);
        position: absolute;
}

.wp-block-video video {
    max-height: 90%;
}

/* fotos swiper */

.page-6-swiper-wrap { width: 100%; }
.page-6-swiper { width: 100%; height: 100vh; }
.page-6-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-6-swiper .swiper-slide img {
    max-width: 50vw;
    max-height: 80vh;
    width: auto;
    height: auto;
    object-fit: contain;
    margin: auto;

}
.page-6-swiper .swiper-button-prev,
.page-6-swiper .swiper-button-next {
  color: #fff;
  opacity: 0.2;
}

.page-6-caption {
    margin-top: var(--font-size-s);
    font-size: var(--font-size-s);
    color: #fff;
    text-align: center;
    position: absolute;
    width: 100%;
        left: 0;
}

/* about */

body.page-id-8 main {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    text-align: center;
}

body.page-id-8 main p {
    margin-bottom: 1rem;
    font-size: var(--font-size-s);
}
/* ------------------------------    MEDIA Q       ------------------------------ */


/*BIG SCREEN*/
/* @media screen and (min-width: 1920px) {
      body, html{
          font-size: 1rem;
      }
  } */

/*DESKTOP RESPONSIVE*/
@media screen and (min-width: 1024px) {
    /**** GENERAL ****/
    .page-6-swiper .swiper-slide {
    max-height: 80vh;
    margin: auto;
}

    .swiper-button-next:after, .swiper-button-prev:after {

    font-size: 28px!important;
}
}

video {
    aspect-ratio: auto !important;
}
/*HOVER*/
@media screen and (min-width: 1024px) {

}

/*IPAD RESPONSIVE*/
@media screen and (max-width: 1020px) {


:root {
    --font-size-s: 9px;
}

        section.front-video-container figure.wp-block-video {
        min-width: auto;
        width: 100%;
        padding: var(--pad-s);
        min-height: 100%;
        height: 100%;
        position: relative;
                margin-bottom: 2rem;
    }
    section.front-video-container {
    width: 100vw;
    /* min-height: 80vh; */
    position: relative;
}
    section.front-video-container {
        width: 100vw;
        /* min-height: 80vh; */
        position: relative;
        min-height: auto;
    }
        .front-videos-from-page-21 {
        top: 0;
        height: 100%;
        display: flex;
        flex-direction: column;
        padding-top: 5vh;
    }

/* section.front-video-container {
    min-height: 50vh;
} */
    /**** GENERAL ****/

    .swiper-button-next:after, .swiper-button-prev:after {

    font-size: 20px!important;
}

.page-6-swiper .swiper-slide img {
    max-width: 100vw; 
padding: var(--pad-s);
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
    left: 0!important; }

.swiper-button-next, .swiper-rtl .swiper-button-prev {
    right: 0!important;
}

    .mobile {
        display: block;
    }

    .desktop {
        display: none;
    }


}


/*MOVILE RESPONSIVE*/
@media screen and (max-width: 650px) {

}
