
@import url('https://fonts.googleapis.com/css2?family=Cinzel&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Amatic+SC:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@400;500;600;700&display=swap');
:root{
    --pink-light: rgb(254 130 177);
    --pink-dark: rgb(182 122 144);
    --text-color: rgb(58, 53, 57);
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

html{
    scroll-behavior: smooth;
    height: 100vh;
    font-family: 'Urbanist', sans-serif;
}
body{
    height: 100%;
}
.sub_body{
    height: 100%;
    width: 100%;
    background: rgb(245, 240, 253);
    position: relative;
    background-attachment: fixed;
    overflow: hidden;
}

.sub_body::after{
    content: "";
    background-image: url("/img/noise-transparent.png");
    height: 300%;
    width: 300%;
    opacity: .6;
    position: fixed;
    left: -50%;
    top: -100%;
    /* mix-blend-mode: overlay; */
    visibility: visible;
    z-index: 0;
}
.body_overlay{
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: 0;
}
.c-blur{
    height: 500px;
    width: 500px;
    background-color: rgb(253, 203, 210);
    border-radius: 50%;
    position: absolute;
    top: 10%;
    left: 10%;
    filter: blur(100px);
    opacity: .7;
}
.c-blur1{
    animation: pulse 10s linear infinite;
}
.c-blur2{
    background-color: rgb(191, 229, 253);
    left: 30%;
    top: 40%;
    height: 400px;
    width: 400px;
    filter: blur(60px);
    mix-blend-mode: color-burn;
    opacity: .6;
    animation: pulse 10s linear infinite reverse;
}
.c-blur3{
    background-color: rgb(231, 192, 148);
    left: 80%;
    top: -20%;
    width: 500px;
    height: 500px;
    opacity: .6;
    animation: pulse3 5s ease-in-out infinite alternate;
}
header{
    position: relative;
    z-index: 99;
}

.nav_link{
    font-weight: 600;
    color: rgb(77, 67, 76);
    transition: all .5s ease;
    font-size: 1.1rem;
}
.nav_link:hover, .nav_active{
    color: var(--pink-light)
}
main{
    position: relative;
    z-index: 99;
    width: 100%;
    height: 90%;
    opacity: 0.1;
    animation: fade 1.2s ease forwards;
}
@keyframes fade{
    from{
        opacity: 0.1;
    }
    to{
        opacity: 1;
    }
}
.main_container{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.container{
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 0 8rem;
    align-items: center;
    /* justify-content: flex-start; */
}

.title{
    font-size: 9rem;
    font-family: 'Cinzel';
    font-weight: 400;
    color: rgb(58, 53, 57);
    text-transform: uppercase;
    /* margin-bottom: 1rem; */
    text-align: center;
}
.color-second{
    color: var(--pink-light);
}
.main_subtitle{
    color: rgb(58, 53, 57);
    font-family: 'Urbanist', sans-serif;
    font-weight: 400;
    font-size: 2rem;
}

.container.container-2{
    padding: 2rem 0;
}
.button_wrapper{
    width: 100%;
    display: flex;
    justify-content: space-around;
}

.main_link{
    font-family: 'Amatic SC', cursive;
    font-size: 3rem;
    color: rgb(58, 53, 57);
    font-weight: 500;
    transition: all .5s ease;
}
.main_link:hover{
    color: var(--pink-light)
}
.link_about{
    transform: rotate(20deg);
}
.link_about:hover{
    transform: rotate(-20deg) scale(1.2);
}
.link_works{
    transform: rotate(-20deg);
}
.link_works:hover{
    transform: rotate(20deg) scale(1.2);
}

.section_title{
    font-family: 'Cinzel', sans-serif;
    font-size: 2.5rem;
    text-transform: uppercase;
    margin-bottom: 2rem;
    color: var(--pink-light);
    font-weight: 400;
}
.container.c-about{
    align-items: flex-start;
    padding: 0 2.5rem;
    height: 100%;
}
.about_txt{
    margin-bottom: 2rem;
    font-size: 1.3rem;
    color: rgb(58, 53, 57);
    font-family: 'Urbanist', sans-serif;
    
}
.b-txt{
    font-weight: 700;
    font-size: 1.8rem;
    cursor: pointer;
    transition: all .5s ease;
    /* color: transparent; */
    display: inline-block;
    /* -webkit-text-stroke: 1px black; */
    /* border-bottom: 1px dashed; */
    /* text-transform: uppercase; */
    color: rgb(58, 53, 57);
}
.b-txt:hover{
    color: var(--pink-light);
    /* border-bottom: 1px solid; */
}
.w-1{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.txt-wrap{
    width: 60%;
    transition: .5s ease;
}
.profile-pic{
    width: 20%;
    padding-bottom: 20%;
    border-radius: 5%;
    background-color: black;
    background-image: url("../img/profile.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin-right: 10%;
    opacity: 1;
    transition: 1s ease;
    clip-path: circle(15%);
    position: relative;
    z-index: 1;
}
.profile-pic p{
    position: absolute;
    transform: translate(-50%, -50%) rotate(-5deg) scale(1);
    top: 50%;
    left: 50%;
    color: rgb(58, 53, 57);
    z-index: 99;
    font-family: 'Amatic SC';
    font-size: 2rem;
    transition: all 1s ease;
}
.profile-pic:hover{
    clip-path: circle(45%);
}
.profile-pic:hover p{
    opacity: 0;
    transform: translate(-50%, -50%) rotate(-5deg) scale(0);
}
.pic-hover{
    clip-path: circle(45%);
}

.wrapper{
    width: 100%;
    margin-bottom: 3rem;
}
.section_sub{
    font-weight: 400;
    font-family: 'Cinzel', sans-serif;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: var(--pink-light);
}
.wrapper.w-2 .about_txt{
    margin-bottom: 0;
}
.button_wrapper.bw-2{
    justify-content: flex-start;
    gap: 2rem;
}
/* --------------------------------- CONTACT -------------------------------- */
.container.container-contact{
    margin-bottom: 0;
    width: 100%;
    height: 100%;
    padding: 0;
}
.contact-wrap{
    width: 100%;
    height: 100%;
    padding: 0 1.5rem;
}
.c-txt{
    color: rgb(58, 53, 57);
    font-family: 'Playfair Display';
    font-weight: 500;
    font-size: 8vw;
    display: block;
    margin: 2rem 0;
    transition: all .5s ease;
}
.mail-txt:hover{
    color: var(--pink-light);
}
/* -------------------------------- PROJECT 1 ------------------------------- */
.p-header{
    position: absolute;
}
.p-main{
    position: relative;
    z-index: 98;
    width: 100%;
    height: 100%;
    padding-top: 10%;
    overflow-y: auto;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
/* Hide scrollbar for Chrome, Safari and Opera */
.p-main::-webkit-scrollbar {
    display: none;
}
/* .b-link{
    position: fixed;
    margin: 0 4rem;
    z-index: 999;
} */
.wrapper.wp-1, .wrapper.wp-2, .wrapper.wp-4{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.wrapper.wp-1{
    margin-bottom: 5rem;
}
.img-wrap{
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    width: 100%;
}
.img-wrap:last-child{
    width: 70%;
}
.p-title{
    color: rgb(58, 53, 57);
    font-family: 'Playfair Display';
    font-size: 5rem;
}
.p-subtitle{
    color: rgb(58, 53, 57);
    font-family: 'Urbanist', sans-serif;
    font-weight: 400;
}
.p-img{
    display: block;
    width: 75%;
}
.noise-img{
    width: 60%;
}
.p-desc{
    color: rgb(58, 53, 57);
    font-family: 'Playfair Display', sans-serif;
    font-size: 1.5rem;
    text-align: justify;
}
.p-desc a{
    color: rgb(58, 53, 57);
    transition: all .5s ease;
    border-bottom: 1px dashed;
}
.p-desc a:hover{
    color: var(--pink-light);
    transform: scale(1.1);
}
.p-img2{
    display: block;
    width: 35%;
}
.wp-tools{
    display: flex;
    justify-content: center;
}
.wp-tools .p-subtitle{
    font-size: 1.3rem;
}
.wrapper.wp-5{
    display: flex;
    justify-content: space-between;
}
.main_link.p-link{
    font-size: 5rem;
}
.p-link1{
    transform: rotate(5deg);
}
.p-link1:hover{
    transform: rotate(-5deg);
}
.p-link2{
    transform: rotate(-5deg);
}
.p-link2:hover{
    transform: rotate(5deg);
}
.pw-link{
    color: rgb(58, 53, 57);
    font-family: 'Urbanist', sans-serif;
    font-size: 2rem;
    font-weight: 400;
    text-transform: uppercase;
    transition: all .8s ease;
}
.pw-link:hover{
    transform: scale(1.1);
    color: var(--pink-light);
}
.p-img3{
    width: 49%;
    transition: all .5s ease;
}
.p-img4{
    width: 32%;
    display: block;
    transition: all .5s ease;
}
.p-img4:hover, .p-img3:hover{
    transform: scale(1.05);
}