@font-face {
    font-family: 'Figtree';
    src: url('../font/Figtree-Light.ttf') format('truetype');
}

@font-face {
    font-family: 'Playfair Display';
    src: url('../font/PlayfairDisplay-Italic.ttf') format('truetype');
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    text-decoration: none;
}

a {
    text-decoration: none;
    color: #222222;
}

body {
    font-family: 'Figtree';
}

.active {
    text-decoration: none;
    color: #000000;
}

.homePage {
    font-family: 'Figtree';
    overflow: hidden;
}

.logo {
    font-weight: bolder;
}

.navigationMobile {
    display: flex;
    list-style-type: none;
    justify-content: space-between;
    gap: 16px;
}

.navigation {
    display: flex;
    list-style-type: none;
    justify-content: center;
    gap: 16px;
}

.navigationMobile a,
.navigationDesktop a {
    color: #222222;
}

#mobile {
    backdrop-filter: blur(8px);
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    background-color: #bababa30;
    padding: 16px 24px;
    border-radius: 24px;
    top: 20px;
    z-index: 2;
    transition: all ease 0.5s;
    height: 51px;
    overflow: hidden;
}

#mobile.open {
    height: 180px;
    transition: height ease 0.5s;
}

@media(min-width:768px) {
    #mobile {
        width: 90%;
    }
}

@media(min-width:992px) {
    #mobile {
        display: none;
    }
}

#desktop {
    backdrop-filter: blur(10px);
    position: fixed;
    left: 50%;
    transform: translate(-50%);
    width: 200px;
    background-color: #bababa30;
    padding: 16px;
    border-radius: 50px;
    margin-top: 25px;
    z-index: 1;
}

#desktop {
    display: none;
}

@media (min-width:992px) {
    #desktop {
        display: block;
        z-index: 2;
    }
}

.main {
    height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

#img1,
#img2,
#img3,
#img4,
#img5,
#img6,
#img7 {
    transition: all ease 4s;
}

.main>img {
    position: absolute;
    transition: all ease 2s;
}

.main> :nth-child(1),
.main> :nth-child(2),
.main> :nth-child(3),
.main> :nth-child(4),
.main> :nth-child(5),
.main> :nth-child(6),
.main> :nth-child(7) {
    width: 80px;
    opacity: 0.8;
}

.main> :nth-child(1) {
    top: 10%;
    left: 40%;
}

.main> :nth-child(2) {
    top: 30%;
    left: 10%;

}

.main> :nth-child(3) {
    top: 50%;
    right: 0%;

}

.main> :nth-child(4) {
    top: 52%;
    left: 0%;

}

.main> :nth-child(5) {
    top: 25%;
    right: 10%;

}

.main> :nth-child(6) {
    top: 80%;
    left: 68%;

}

.main> :nth-child(7) {
    bottom: 15%;
    left: 25%;
}


@media (min-width:768px) {

    .main> :nth-child(1),
    .main> :nth-child(2),
    .main> :nth-child(3),
    .main> :nth-child(4),
    .main> :nth-child(5),
    .main> :nth-child(6),
    .main> :nth-child(7) {
        width: 140px;
        opacity: 1;

    }

    .main> :nth-child(1) {
        top: 0%;
        left: 40%;
    }

    .main> :nth-child(2) {
        top: 20%;
        left: 20%;

    }

    .main> :nth-child(3) {
        top: 50%;
        right: 2%;

    }

    .main> :nth-child(4) {
        top: 40%;
        left: 5%;

    }

    .main> :nth-child(5) {
        top: 10%;
        right: 20%;

    }

    .main> :nth-child(6) {
        top: 70%;
        left: 58%;

    }

    .main> :nth-child(7) {
        bottom: 5%;
        left: 25%;
    }

}

@media (min-width:992px) {

    .main> :nth-child(1),
    .main> :nth-child(2),
    .main> :nth-child(3),
    .main> :nth-child(4),
    .main> :nth-child(5),
    .main> :nth-child(6),
    .main> :nth-child(7) {
        width: 200px;
        opacity: 1;

    }

    .main> :nth-child(1) {
        top: 0%;
        left: 40%;
    }

    .main> :nth-child(2) {
        top: 20%;
        left: 20%;

    }

    .main> :nth-child(3) {
        top: 50%;
        right: 2%;

    }

    .main> :nth-child(4) {
        top: 40%;
        left: 5%;

    }

    .main> :nth-child(5) {
        top: 10%;
        right: 20%;

    }

    .main> :nth-child(6) {
        top: 70%;
        left: 58%;

    }

    .main> :nth-child(7) {
        bottom: 5%;
        left: 25%;
    }

}

.content {
    width: fit-content !important;
    height: fit-content;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 16px;
    text-align: center;
    z-index: 1;
}

@media(min-width:768px) {
    content {
        padding: 200px;
    }
}


.h1 {
    font-size: 40px;
    color: #222222;
}

@media (min-width:768px) {
    .h1 {
        font-size: 80px;
        color: #222222;
        line-height: 80px;
    }
}

@media (min-width:992px) {
    .h1 {
        font-size: 80px;
        color: #222222;
        line-height: 80px;
    }
}

.h4 {
    font-size: 16px;
}

.italic {
    font-family: 'Playfair Display';
}

.button {
    padding: 16px 32px;
    border-radius: 50px;
    border: none;
    color: #222222;
    background-color: #bababa30;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    backdrop-filter: blur(8px);
    width: auto;
    border: 1px solid transparent;
    transition: all ease 0.4s;
}

.button:hover {
    border: 1px solid #222222;
    transition: all ease 0.4s;
}

.button svg {
    height: 14px;
    width: 14px;
}

#toggleNav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
    border: none;
    background-color: transparent;
}

@media(min-width:992px) {
    #toggleNav {
        display: none;
    }
}

.navLine {
    width: 30px;
    height: 3px;
    background-color: #222222;
    display: block;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style-type: none;
    margin-top: 32px;
}

.links li {
    font-size: 32px;
    font-family: 'Playfair Display';
}


#line1,
#line2 {
    transition: all ease 0.2s;
}

.whatsappIcon {
    width: 50px;
    height: 50px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    border-radius: 50%;
    backdrop-filter: blur(8px);
    background-color: #bababa30;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.whatsappIcon img {
    width: 50px;
    height: 50px;
    padding: 8px;

}

@media(min-width:992px) {
    .whatsappIcon {
        width: 60px;
        height: 60px;
    }

    .whatsappIcon img {
        width: 60px;
        height: 60px;

    }
}

.mainArtWork {
    width: 100%;
    display: flex;
    padding-top: 5%;
    align-items: start;
    justify-content: center;
}

.mainArtWork .content img {
    width: 100%;
}

/* @media (min-width:992px) {
    .mainArtWork .content img {
        width: 600px;
    }
} */

.artWorkTitle {
    font-size: 32px;
    margin-top: 20px;
}

.artWorkDescription {
    font-size: 16px;
    margin-top: 4px;
}

.artWorkWrapper {
    max-width: 90%;
}

@media (min-width:992px) {
    .artWorkWrapper {
        max-width: 600px;
    }
}

.artWorkWrapper img {
    height: 350px;
    object-fit: cover;
    background-position: top;
}

@media (min-width:768px) {
    .artWorkWrapper img {
        height: 400px;
        object-fit: cover;
        background-position: top;
    }
}

@media (min-width:992px) {
    .artWorkWrapper img {
        object-fit: cover;
        background-position: top;
    }
}

@media (min-width:1280px) {
    .artWorkWrapper img {
        height: 600px;
        object-fit: cover;
        background-position: top;
    }
}

.overflowHidden {
    overflow: hidden;

}

.displayNone {
    display: none !important;
}

.artWorkWrapper>div {
    margin-bottom: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.artWorkWrapper {
    margin-bottom: 20px !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
}

@media (min-width:768px) {
    .artWorkWrapper {
        padding-top: 0;
    }
}

.artWorkWrapper>:nth-last-child {
    margin-bottom: 20px !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hiddenContainerTop {
    position: fixed;
    top: 0;
    height: 100px;
    width: 100%;
    background-color: #ffffff;
    z-index: 1;
}

@media (min-width:768px) {
    .hiddenContainerBottom {
        height: 140px;
    }
}

.hiddenContainerBottom {
    position: fixed;
    bottom: 0;
    height: 40px;
    width: 100%;
    background-color: #ffffff;
    z-index: 1;
}

.privacyPolicy {
    width: 50px;
    height: 50px;
    position: fixed;
    bottom: 80px;
    right: 20px;
    border-radius: 50%;
    backdrop-filter: blur(8px);
    background-color: #bababa30;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    cursor: pointer;
}

@media(min-width:992px) {
    .privacyPolicy {
        bottom: 90px;
    }
}

.privacyPolicy img {
    width: 50px;
    height: 50px;
    padding: 8px;
}

@media(min-width:992px) {
    .privacyPolicy {
        width: 60px;
        height: 60px;
    }

    .privacyPolicy img {
        width: 60px;
        height: 60px;

    }
}

.privacyPolicyBox {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%);
    width: 90%;
    backdrop-filter: blur(16px);
    padding: 16px;
    border-radius: 16px;
    opacity: 1;
    transition: all ease 0.4s;
    z-index: 1;
    background-color: #ffffff50;

}

@media (min-width:992px) {
    .privacyPolicyBox {
        bottom: 20px;
        left: 20px;
        transform: translate(0, 0);
        width: 500px;
        backdrop-filter: blur(16px);
        padding: 16px;
        border-radius: 16px;
        opacity: 1;
        transition: all ease 0.4s;
        z-index: 1;

    }
}

.privacyPolicyBox button.button {
    width: 100% !important;
}

.privacyPolicyBox span {
    display: block;
}

.transition-out {
    opacity: 0 !important;
    transition: all ease 0.4s;
    z-index: 0;
}

.backdrop {
    position: absolute;
    width: 100%;
    height: 100dvh;
    background-color: #22222250;
    z-index: 1;
    opacity: 1;
    transition: all ease 0.4s;
    pointer-events: none;
}