.home-page main{
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 0rem 0;
}

.header-block{
    height: 100%;
    width: 100%;
    background-attachment: fixed;
    background-position: center;
    background-color: hsl(0deg 0% 0% / 35%);
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: color;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.header-forest{
    background-image: url(/img/interior/forest/2_s.jpg);
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.header-sun{
    background-image: url(/img/interior/sun/3_s.jpg);
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.header-sky{
    background-image: url(/img/interior/sky/5_s.jpg);
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.header-love{
    background-image: url(/img/interior/love/1_s.jpg);
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.header-life{
    background-image: url(/img/interior/life/life-header.jpg);
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}


.header-sea{
    background-image: url(/img/interior/sea/1_s.jpg);
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}


.header-ocean{
    background-image: url(/img/interior/ocean/2_s.jpg);
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.header-freedom{
    background-image: url(/img/interior/freedom/1_s.jpg);
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.header-box__name h1{
        color: var(--white);
    font-size: clamp(0.7rem, 5vw + 3.3vw, 2.7vw);
    text-transform: inherit;
    text-wrap: balance;
}


.header-boxs{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 100%;
    min-height: clamp(34rem, 29vh + 60vh, 74vh);
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    overflow: hidden;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 2rem;
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.link-eye{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: var(--white);
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

figcaption {
    display: none;
}

.link-text{
    font-size: 14px;
    text-align: right;
    text-transform: uppercase;
    font-weight: 500;
    margin-right: -1.2rem;
    z-index: 1;
}

.link-eye:hover{
    color: var(--white);
}

.link-eye:hover .cirkl-link{
    background: var(--red);
}

.link-eye svg{
    fill: var(--white);
}

.link-eye:hover svg{
    fill: var(--white);
}

.cirkl-link{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: hsl(0deg 0% 0% / 40%);
    padding: 2.6rem;
    border-radius: 80em;
    -webkit-backdrop-filter: blur(6px);
            backdrop-filter: blur(6px);
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}


.gallery-box{
    padding: 6rem 0 6rem 0;
    display: -ms-grid;
    display: grid;
    gap: 6vw;
    display: grid;
    -ms-grid-columns: 1fr 6vw 1fr 6vw 1fr;
    grid-template-columns: repeat(3, 1fr);
}

.gallery-box img{
    width: 100%;
    margin: 0;
    max-width: initial;
    height: 100%;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.gallery-box a:hover img{
    scale: 1.01;
    opacity: 0.7;
}

.gallery-box--featured {
    -ms-grid-column-span: 2;
    grid-column: span 2;
    -ms-grid-row-span: 2;
    grid-row: span 2;
}

.gallery-box--full {
    -ms-grid-column-span: 3;
    grid-column: span 3;
    -ms-grid-row-span: 3;
    grid-row: span 3;
}

.item__gallery-box{
    overflow: hidden;
}

.item__gallery-box a{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: 1fr;
    grid-template-rows: 1fr;
    position: relative;
    background: var(--balck);
}

.item__gallery-box a > *:nth-child(1){
    -ms-grid-row: 1;
    -ms-grid-column: 1;
}

.item__gallery-box svg{
    z-index: 4;
    width: 36px !important;
    height: 36px !important;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    opacity: 0;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
    fill: var(--white);
}

.item__gallery-box:hover svg{
    opacity: 1;
    fill: var(--white);
}

.block-3d{
    padding: 3rem 0;
}

.block-3d iframe{
    width: 100%;
    height: 40vw;
    min-height: 510px;
}

.page {
    height: auto;
}

.menu{
    margin-bottom: 2rem;
}

.art-gallety-box{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 2rem;
    row-gap: 5vw;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-line-pack: center;
        align-content: center;
    margin-top: 5rem;
    margin-bottom: 4rem;
}

.art-gallety-box figure{
    -webkit-box-flex: 1;
        -ms-flex: 1 1 20%;
            flex: 1 1 20%;
    text-align: center;
    height: 20vw;
    max-height: 360px;
    display: -ms-grid;
    display: grid;
    -webkit-margin-before: 0em;
            margin-block-start: 0em;
    -webkit-margin-after: 0em;
            margin-block-end: 0em;
    -webkit-margin-start: 0px;
            margin-inline-start: 0px;
    -webkit-margin-end: 0px;
            margin-inline-end: 0px;
}

.art-gallety-box figure img{
    margin: 0;
    width: 70%;
    -webkit-box-shadow: 5px 10px 16px -10px rgba(0,0,0,0.75);
    box-shadow: 5px 10px 16px -10px rgba(0,0,0,0.75);
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

/* .art-gallety-box figure img:hover{
    -webkit-box-shadow: 0px 15px 66px -20px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 15px 66px -20px rgba(0,0,0,0.75);
    box-shadow: 0px 15px 66px -20px rgba(0,0,0,0.75);
} */

.art-gallety-box__link{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.5rem;
    font-family: 'Philosopher', sans-serif;
    border: 1px solid var(--red);
    padding: 0.8rem 1.6rem;
    border-radius: 60em;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    background:var(--red);
}

.art-gallety-box__link svg{
    fill: var(--white) !important;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.art-gallety-box__link:hover{
    background: #b00011;
    color:var(--white);
    border: 1px solid #b00011;
}


.img-box-center {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: 1fr;
    grid-template-rows: 1fr;
    position: relative;
    height: 100%;
  }


.img-box-center > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }

  .layer {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
  }

  .layer-svg{
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    opacity: 0;
    fill: #fff;
  }

  .img-box-center:hover .layer-svg{
    z-index: 1;
    opacity: 1;
  }

  .img-box-center:hover img{
    opacity: 0.8;
    -webkit-filter: brightness(0.5);
            filter: brightness(0.5);
  }


@media (max-width: 767px){
    .cirkl-link{
        padding: 2.5rem;
    }

    .header-boxs{
        min-height: 600px;
    }

    .block-3d iframe{
        height: 35vw;
        min-height: 440px;
    }

    .link-text {
        font-size: 15px;
        margin-right: -1.5rem;
    }

    .header-box__name h1 {
            color: var(--white);
            font-size: clamp(0.9rem, 5vw + 3.3vw, 2.7vw);
            text-transform: inherit;
            text-wrap: balance;
    }

    .gallery-box{
        padding: 3rem 1rem;
        gap: 3rem;
        -ms-grid-columns: 1fr;
        grid-template-columns: repeat(1, 1fr);
    }

    .gallery-box--featured {
        grid-column: auto;
        grid-row: auto;
    }
    
    .gallery-box--full {
        grid-column: auto;
        grid-row: auto;
    }

    .block-3d {
        padding: 1rem;
    }

    .art-gallety-box figure{
        -webkit-box-flex: 1;
            -ms-flex: 1 1 100%;
                flex: 1 1 100%;
        text-align: center;
        height: 100vw;
        max-height: 290px;
    }

    .tittle-art-gallety{
        padding-top: 2rem !important;
    }

    .art-gallety-box{
        row-gap: 4rem;
    }

    .art-gallety-box__link {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        margin: auto;
    }

    .art-gallety-box figure img {
        width: 70%;
        max-width: 230px;
    }

    .header-freedom h1{
        /* font-size: clamp(3.9rem, 10vw + 10.1vw, 10.5vw); */
    }
    
    .header-block{
        background-size: cover;
        transition: all 0s;
        background-blend-mode: darken;
        background-color: rgb(0 0 0 / 50%);
        background-attachment: inherit;
    }

    .link-eye,
    .header-box__btn,
    .cirkl-link,
    .header-box__name,
    .header-boxs{
        transition: all 0s;
    }

}