@font-face {
    font-family: 'Primary';
    font-weight: normal;
    src: url('../fonts/Cinzel-Regular.ttf') format('truetype');
}
@font-face {
    font-family: 'Cinzel';
    font-weight: bold;
    src: url('../fonts/Proxima-Nova-Regular.ttf') format('truetype');
}
@keyframes bg-move {
    0% { transform: translateX(-5px)  }
    50% { transform: translateX(5px) }
    100% { transform: translateX(-5px) }
}
html {
    font-family: 'Primary';
    color: #fff;
    font-size: 18px;
}
/*footer smoke background*/
.footer-image{
    animation-name: bg-move;
    animation: bg-move 5s  linear infinite;
    background-image: url(../images/gallery-page/smoke.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: fixed;
    height: 500px;
    mix-blend-mode: lighten;
    bottom: 0;
    width: 100%;
    z-index: 9;
    pointer-events:none
}
a {
    color: #ffffff;
}
a {
    text-decoration: none;
    outline: none;
}
.display {
    font-size: 75px;
}
h1, .h1 {
    font-size: 42px;
    margin: 0;
    line-height: 1.3;
    letter-spacing: 0.05em;
    font-weight: normal;
    text-transform: uppercase;
}

h2, .h2 {
    font-size: 35px;
}

h3, .h3 {
    font-size: 24px;
}

h4, .h4 {
    font-size: 22px;
}

h5, .h5 {
    font-size: 18px;
}

p, .p {
    font-size: 16px;
    letter-spacing: 0.04em;
    line-height: 1.6;
    font-family: 'Cinzel';
}
body {
    margin: 0;
    padding: 0;
    background: #111111;
    overflow-x: hidden;
}

/*   Header styling start   */
.header {
    position: fixed;
    z-index: 1000;
}

.header-detail {
    position: absolute;
}

.header .header-detail img {
    height: 225px;
}

.header-logo {
    height: 60px;
    margin-bottom: -20px;
    padding-right: 24px;
}

.mob-outer {
    display: none;
}
.header-main {
    font-size: 20px;
    display: grid;
    grid-auto-flow: column;
    grid-gap: 60px;
    justify-content: flex-start;
    align-items: flex-end;
    padding-left: 1.5rem;
    padding-top: 36px;
}
.header-blnd {
    height: 15px;
}
.header-item{
    padding-bottom: 3px;
}
.overlay-detail {
    position: fixed;
    transform: rotate(180deg);
    bottom: 0;
    right: 0;
    z-index: 1;
}

.overlay-detail img {
    width: 138px;
}
/* header styling end */


/* homePage styling start */
.homePage {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 1540px;
    min-height: 100vh;
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
}

.homePage-background{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: auto;
    user-select: none;
    opacity: 0.8;
}

.homePage-plates {
    z-index: 33;
    position: relative;
    display: flex;
}

.plate {
    display: inline-block;
    position: relative;
}
@keyframes largePlate-bounce {
    0% { transform: translateY(-5px)  }
    50% { transform: translateY(5px) }
    100% { transform: translateY(-5px) }
}

.homePage-largePlate {
    z-index: 9999;
    animation-name: largePlate-bounce;
    animation: largePlate-bounce 12s infinite ease-in-out;
    margin-top: 150px;
}

.plate-overlay {
    position: absolute;
    top: 17%;
    left: 17%;
    right: 17%;
    bottom: 17%;
    z-index: 10;
    width: 66%;
    height: 66%;
    -webkit-mask-image: radial-gradient(ellipse,black 40%,transparent 90%);
    object-fit: cover;
}

@keyframes smallPlate-bounce {
    0% { transform: translate(-220px, -30px) rotate(10deg) scale(0.65);  }
    50% { transform: translate(-225px, -27px) rotate(10deg) scale(0.65); }
    100% { transform: translate(-220px, -30px) rotate(10deg) scale(0.65); }
}

.homePage-smallPlate {
    animation-name: smallPlate-bounce;
    transform: translate(-220px, -30px) rotate(10deg) scale(0.65);
    animation: smallPlate-bounce 10s infinite ease-in-out;
    margin-top: auto;
}
.homePage-smokeSprite1 {
    position: absolute;
    top: -15%;
    right: 16%;
    z-index: -1;
    opacity: 0.5;
    margin-top: 150px;
}

.homePage-smokeSprite2 {
    position: absolute;
    left: 0;
    z-index: -1;
    -webkit-transform: translate(-40%, -30%);
    transform: translate(-40%, -30%);
    opacity: 0.5;
    margin-top: 150px;
}

a.display.bold.homePage-menu {
    position: absolute;
    bottom: 10%;
    right: 18%;
    z-index: 9999999;
}
.homePage-menu {
    position: relative;
    font-size: 28px;
    z-index: 40;
    opacity: 0.75;
    padding-left: inherit;
}

.homePage-menu::before {
    position: absolute;
    content: "";
    top: 50%;
    height: 2px;
    width: 80px;
    background: #fff;
    -webkit-transform: translate(122%, -50%);
    transform: translate(122%, -50%);
}
.homePage-menu::after {
    position: absolute;
    content: "";
    height: 15px;
    width: 15px;
    top: 50%;
    right: -100%;
    -webkit-transform: translate(0%, -50%) rotate(45deg);
    transform: translate(0%, -50%) rotate(45deg);
    border-right: 2px solid #fff;
    border-top: 2px solid #fff;
}
/* homePage styling end */

/* galleryPage start */

.galleryPage {
    min-height: 100vh;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.galleryPage-container {
    width: 100%;
}

.galleryPage .swiper-container{
    overflow: visible;
}

.swiper-container {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
    position: relative;
    width: 100%;
    height: 100%;
    display: -webkit-flex;
    display: flex;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}
.galleryPage .plate {
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-transform: scale(1.000001);
    transform: scale(1.000001);
    will-change: transform;
}

.galleryPage-navigation {
    position: absolute;
    bottom: 100px;
    left: 1rem;
    right: 1rem;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    padding: 0 36px;
    z-index: 100;
}
.galleryPage-navigation > div {
    width: 60px;
    height: 60px;
    background: url(../images/right-arrow.svg);
    color: white;
    cursor: pointer;
}

.galleryPageNavigationLeft {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.galleryPage .card:hover {
    transition: all 0.50s ease-in-out;
    transform: scale(1.1);
}

/* galleryPage end */

/*contact page*/
.contactPage {
    padding-left: 4.5rem;
    padding-right: 4.5rem;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    min-height: 100vh;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    grid-template-columns: 1fr 1.25fr;
    grid-gap: 180px;
    position: relative;
    z-index: 1;
}
.contactPage-plate {
    -webkit-transform: rotate(7deg);
    transform: rotate(7deg);
    width: 100%;
    max-width: 640px;
}
.contactPage-plate .plate-main {
    -webkit-filter: saturate(0);
    filter: saturate(0);
    width: 100%;
}
.contactPage-map {
    margin-top: 100px;
    width: 100%;
    margin-right: 30px;
}
.contactPage-pair {
    display: -webkit-flex;
    display: flex;
    width: 100%;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    margin-top: 8px;
}
.contactPage-plate .plate-main {
    -webkit-filter: saturate(0);
    filter: saturate(0);
    width: 100%;
}
.contactPage .display {
    font-size: 4.1666666667rem;
}
/* contact styling end */
/*blnd tger styling*/
.blindTiger {
    display: grid;
    grid-template-columns: 0.75fr 1fr;
    position: relative;
}
.blindTiger-left {
    padding: 180px 48px 60px;
    z-index: 12;
}
.blindTiger-left-title {
    display: -webkit-flex;
    display: flex;
    justify-content: left;
    margin-bottom: 48px;
}
.blindTiger-recipes {
    margin-top: 60px;
    display: grid;
    grid-gap: 12px;
}
.blindTigerRecipe {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    font-weight: bold;
}
.colorOrange {
    color: #d26a24;
    margin-top: 12px;
}
.blindTigerRecipe-top {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    font-size: 24px;
}
.blindTigerRecipe-bottom {
    font-size: 16px;
}
.blindTigerRecipe {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    font-weight: bold;
}
.blindTiger-right {
    text-align: right;
    margin-right: 63px;
}

/* blnd tger styling end */
/* menu page styling start */
.menuPage {
    overflow: hidden;
    display: block;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    min-height: -webkit-calc(100vh - 64px);
    min-height: calc(100vh - 64px);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 9999;
    padding:10% 20% 20% 20%;
}

.menuPage img {
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 100%;
    height: auto;
}
.menuPage img:first-child{
    margin-top: 4rem;
}


.menuPage * {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
/* menu page styling end */

/* scrollbar styling start */
::-webkit-scrollbar {
    height: 12px;
    width: 7px;
    background: gray;
    z-index: 12;
    overflow: visible;
}
::-webkit-scrollbar-corner {
    background: #fff;
}
::-webkit-scrollbar-thumb {
    width: 8px;
    background-color: rgba(17, 17, 17, 0.9);
    z-index: 12;
    -webkit-transition: all 0.32s ease-in-out;
    transition: all 0.32s ease-in-out;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
}

/* scrollbar styling end */

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    html {
        font-size: 14px;
    }
    .homePage {
        padding-top: 0px;
        padding-right: 1rem;
    }
    .plate-main {
        width: 80vw;
    }
    a.display.bold.homePage-menu {
        bottom: 7%;
        right: 45%;
    }
    .header-main {
        padding-left: 1rem;
    }
    /* contact page   */
    .contactPage {
        padding-top: 0px !important;
        grid-gap: 0px !important;
        padding-bottom: 0px !important;
        min-height: 90vh;
        padding-right:3rem;
        padding-left:0.6rem;
    }
    .contactPage-plate{
        margin-top:155px;
        margin-left:14px
    }
    .contactPage .display {
        font-size: 3.4rem;
        margin-left: 14px;
    }
    .contactPage-map {
        margin-left: 14px;
    }
    .h5 {
        margin-left: 14px;
    }
    /* gallery page */
    .galleryPage .swiper-slide {
        display: -webkit-flex;
        display: flex;
    }
}
/* Devices 767px and down) */

@media only screen and (max-width: 767px) {
    .header-main {
        -webkit-flex-direction: column;
        flex-direction: column;
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        align-items: center;
        margin-right: 0px;
        grid-gap: 26px;
        gap: 26px;
    }
    .header {
        width: 100%;
    }
    .hidemenu {
        display: none;
        background-color: rgba(60, 60, 60, 0.5);
    }
    .hiddens {
        display: -webkit-flex !important;
        display: flex !important;
    }

    .hiddens a:first-child {
        display: none;
    }
    .mob-outer {
        display: -webkit-flex;
        display: flex;
        -webkit-justify-content: space-between;
        justify-content: space-between;
        padding: 29px 29px 0px;
    }
    .mob-toggler {
        display: -webkit-inline-flex;
        display: flex;
        justify-content: center;
        -webkit-flex-direction: column;
        flex-direction: column;
        grid-gap: 5px;
        gap: 5px;
        z-index: 9999999;
        cursor: pointer;
    }
    .mob-toggler span {
        height: 4px;
        overflow: hidden;
        background: white;
        width: 29px;
        display: block;
    }


}
@media only screen and (max-width: 834px) {
    .galleryPage-container {
        margin-left: 40px;
    }
    .homePage-menu {
        margin-top: 20px;
        margin-left: auto;
        margin-right: auto;
    }

    .homePage {
        overflow: hidden;
        padding-left: 20px;
        -webkit-flex-direction: column;
        flex-direction: column;
        -webkit-justify-content: center;
        justify-content: center;
        -webkit-align-items: flex-start;
        align-items: flex-start;
    }

    /* contact page   */
    .contactPage {
        grid-gap: 70px !important;
        grid-template-columns: 1fr;
        padding-top: 160px;
        padding-bottom: 160px;
        padding-right: 3rem;
    }

    .contactPage-left {
        grid-row: 2;
        grid-column: 1;
        font-size: 16px;
    }

    .contactPage-map {
        margin-top: 0px;
    }

    .contactPage-pair {
        font-size: 16px;
    }

    /*blnd tger page*/
    .blindTiger {
        grid-template-columns: 1fr;
    }

    .blindTiger-right {
        justify-content: center;
        display: flex;
    }
}


@media only screen and (min-width: 835px) {
    .blindTiger-right img {
        width: 40%;
        height: 100%;
        object-fit: cover;
        position: fixed;
        top: 0px;
        right: 20px;
    }
}

@media only screen and (max-width: 1112px) {
    .contactPage {
        grid-gap: 70px;
    }
    .blindTiger-left-title img {
        width: 200px;
    }
}


