@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800&display=swap');
@import url("https://use.typekit.net/loe0eql.css");
@import url('https://fonts.googleapis.com/css2?family=Satisfy&display=swap');



:root {
    --century: 'Montserrat', sans-serif;
    --quicksand: 'Montserrat', sans-serif;
    --lilac: #8F60FF;
}

body {
    margin: 0;
    box-sizing: border-box;
    background-color: #ffffff;
    overflow-x: hidden;
}

.fade-out {
    width: 100vw;
    height: 100vh;
    position: fixed;
    z-index: 120;
    background: rgb(255, 255, 255);
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fade-out 1.4s ease-in-out;
    animation-delay: 1s;
    animation-fill-mode: forwards;
}

.fade-logo {
    width: 2.2vw;
    height: auto;
}

.circle {
    width: 6vw;
    height: 6vw;
    border-radius: 100px;
    padding: 1rem;
    border-left: 2px solid black;
    border-bottom: 2px solid transparent;
    animation: spin 1s infinite linear;
    position: absolute;
}

@keyframes spin {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes fade-out {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background-color: #ffffff00;
}

::-webkit-scrollbar-thumb {
    border-radius: 5px; 
    background-color: rgb(0, 0, 0);
    border-radius: 10px;
    border: 3px solid white;
}

.nav {
    width: 100vw;
    height: 12vh;
    font-family: var(--century);
    font-weight: bolder;
    color: black;
    display: flex;
    box-sizing: border-box;
    justify-content: space-between;
    align-items: top;
    padding: 2rem 2.5rem 2rem 2.5rem;
    position: fixed;
    z-index: 100;
}

.logo-img {
    height: 6.5vh;
    width: auto;
    cursor: pointer;
}

.nav-items {
    width: 38vw;
    font-size: 0.7rem;
    display: flex;
    justify-content: space-between;
    align-items: top;
}


.nav-item {
   color: rgb(255, 255, 255);
   font-weight: 700;
   transition: 0.4s;
   letter-spacing: 0.1rem;
}

.nav-item:hover {
   cursor: pointer;
    transform: scale(1.2);
}

.landing-section {
    width: 100vw;
    height: fit-content;
    display: flex;
    box-sizing: border-box;
    overflow-x: hidden;
}

.title-and-stuff {
    width: 60%;
    height: 100vh;
    display: flex;
    overflow-x: hidden;
}

.social-media-icons {
    width: fit-content;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0rem 0rem 2.5rem 2.5rem;
    box-sizing: border-box;
}

.icon {
    display: block;
    opacity: 0.5;
    margin-top: 1.3rem;
    width: auto;
    height: 1rem;
}

.icon {
    transition: 0.3s;
}

.icon:hover {
    cursor: pointer;
    transform: scale(1.5);
}

.title {
    width: 100%;
    height: 100vh;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 35%;
    padding-bottom: 2rem;
}

.button {
     margin-top: 2.7rem;
    font-family: var(--quicksand);
    background-color: rgb(0, 0, 0);
    font-size: 1rem;
    font-weight: 400;
    padding: 0.9rem 2.8rem 0.9rem 2.8rem;
    color: rgb(255, 255, 255);
    border: none;
    overflow: hidden;
    border-radius: 5px;
    transition: 0.5s;
    z-index: 1;
 }
 
.button:hover {
    cursor: pointer;
     transform: scale(1.2);
     z-index: 1000;
     opacity: 1;
 }
 
.button:before {
     content: '';
     position: absolute;
     top: 0;
     left: -100px;
     width: 80px;
     height: 100%;
     background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
     transform: skewY(35deg);
     transition: 0s;
 }
 
.button:hover:before {
     left: calc(100% + 100px);
     transition: 0.5s;
     transition-delay: 0.2s;
 }

.title-img {
    width: 35vw;
    height: auto;
}

.me-one-img {
    width: 60%;
    height: auto;
}

.scroll-img {
   display: none;
}

.sticky-logo {
    width: 12vw;
    height: auto;
    opacity: 0.03;
    position: fixed;
    z-index: -1;
    top: 35vh;
    left: 75vw;
}

.portfolio-section {
    padding-top: 10vh;
    width: 100vw;
    padding-left: 16vw;
    transform: translateY(-26vh);
}

.portfolio-title-title {
 font-family: var(--century);
 color: black;
 font-weight: 700;
 font-size: 2.3rem;
 letter-spacing: 0.2rem;
}

.portfolio-arrow-and-text {
    display: flex;
    padding-top: 0.8rem;
}

.arrow {
    width: 1.3rem;
    height: auto;
    margin-right: 0.7rem;
}

.portfolio-title-text {
    font-family: var(--quicksand);
    font-weight: 400;
    color: black;
    font-size: 1.1rem;
}

.projects {
    width: 100vw;
    box-sizing: border-box;
    margin-top: 9vh;
}

.project {
    width: 100%;
    display: flex;
    box-sizing: border-box;
    align-items: center;
}

.project-img {
 width: 46vw;
 height: auto;
 transform: translateX(-5vw);
 transition: 0.7s;
}

.chevrons {
    width: 3rem;
    height: auto;
    opacity: 0;
    margin-left: 0vw;
    transition: 0.8s;
    transition-delay: 0.2s;
}

.project:hover > .project-img{
   transform: scale(1.07) translateX(-5vw);
   cursor: pointer;
}

.project:hover > .chevrons{
    opacity: 1;
    margin-left: 3vw;
 }

 .about-me-section {
     width: 100vw;
     padding: 20vh 0vh 20vh 0vh;
     height: fit-content;
     box-sizing: border-box;
 }

 .first-container {
    box-sizing: border-box;
     display: flex;
     padding: 10vh 19vw 0vh 17vw;
     justify-content: center;
     align-items: center;
 }

 .me-too-img {
     width: 30rem;
     height: auto;
     border-radius: 20px;
     box-shadow: 0px 0px 50px 0px rgb(209, 209, 209);
 }

 .separator {
    width: 0.7rem;
    background-color: rgb(239, 239, 239);
    border-radius: 20px;
    height: 55vh;
    margin-left: 4rem;
    margin-right: 4rem;
 }

 .about-me-first-text {
 padding-top: 3rem;
 }

 .about-me-second-text {
    padding-top: 6.5vh;
    text-align: center;
 }

 .text {
     margin-top: 1.5rem;
     color: black;
     font-family: var(--quicksand);
     font-size: 0.9rem;
     font-weight: 500;
     line-height: 1.6rem;
 }

 .second-container {
    box-sizing: border-box;
    display: flex;
    padding: 0vh 23vw 20vh 23vw;
    justify-content: center;
     align-items: center;

 }

 .quote {
    display: flex;
    justify-content: center;
     align-items: center;
     display: flex;
     flex-direction: column;
     font-family: var(--century);
    font-size: 0.9rem;
    font-weight: 300;
    color: black;
 }

 .cursive-text {
    font-family: 'Satisfy', cursive;
    font-size: 1.8rem;
    color: black;
    padding-bottom: 1.7rem;
 }

 .kari-bari {
     display: flex;
     flex-direction: column;
 }

 .kari-heart {
     width: 17vw;
     height: auto;
     transform: translateY(-13%) translateX(-10%);

 }

 .small-heart {
     width: 2vw;
     height: auto;
     margin-left: 11.5vw;
     transform: translateY(-35%);
    animation: wiggle 0.6s ease-in-out infinite alternate;
 }

 .big-heart {
    width: 3vw;
    height: auto;
    margin-left: 13vw;
    transform: translateY(-17%);
    animation: wiggleB 0.6s ease-in-out infinite alternate;
}

@keyframes wiggle {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(-30deg);
    }
}

@keyframes wiggleB {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(30deg);
    }
}


.container {
    margin-top: 13vh;
    background: rgb(243, 243, 243);
    width: 100vw;
    height: fit-content;
    padding: 18vh 0  18vh 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ul-desktop {
    text-align: left; 
    width: 32vw; 
    padding-left: 10vw;
}

.img-background {
    background-image: url(./assets/dev.svg) ;
    background-position: center;
    width: 100vw;
    height: 30vh;
}

.dev {
    opacity: 0;
    transform: translateX(100%);
    width: 100vw;
    height: auto;
    position: absolute;
}

.dev-text {
    z-index: 10;
    width: 45vw;
    text-align: center;
    position: relative;
    z-index: 0;
}

.contacts-section {
    margin-top: 50vh;
    padding: 0vh 0 30vh 0;
     width: 100vw;
     display: flex;
}

.conatiner-get-in-touch {
   width: 50vw;
   height: 38vh;
   background: #ffffff;
   border-top-right-radius: 34px;
   border-bottom-right-radius: 34px;
   box-shadow: 0px 0px 250px rgba(0, 7, 66, 0.08);
   box-sizing: border-box;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
}

.get-in-touch {
    width: 20vw;
}

.container-bubbles {
    width: 40vw;
    height: 38vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transform: translateX(-7vw);
}

.phone, .email{
    width: fit-content;
    height: fit-content;
    display: flex;
    background: rgb(255, 255, 255);
    border-radius: 50px;
    box-shadow: 0px 6px 50px #dbd4e4;
    font-family: var(--quicksand);
    color:#000000;
    padding: 1rem 2.3rem 1rem 2.3rem;
    font-weight: 500;
    margin: 0.8rem;
    font-size: 1.1rem;
}

.phone-icon {
    opacity: 0.7;
    width: 1.5rem;
    height: auto;
    margin-right: 1rem;
}

.email-icon {
    opacity: 0.7;
    width: 1.5rem;
    height: auto;
    margin-right: 1rem;

}

.container-socials {
    margin-left: auto;
    height: 38vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 5vw;
}

.close-easy, .close-prekrasna, .close-arpha, .close-bindexis, .close-mp, .close-chaos {
    width: 3rem;
    height: 3rem;
    border-radius: 100px;
    background: white;
    box-shadow: 0px 0px 50px rgb(187, 187, 187);
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 100;
    top: 5vh;
    left: 90vw;
    cursor: pointer;
    transition: 0.2s;
}

.close-bs {
    width: 3rem;
    height: 3rem;
    border-radius: 100px;
    background: rgb(199, 199, 199);
    box-shadow: 0px 0px 50px rgb(10, 10, 10);
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 100;
    top: 5vh;
    left: 90vw;
    cursor: pointer;
    transition: 0.2s;
}

.close-easy:hover, .close-prekrasna:hover, .close-arpha:hover, .close-bindexis:hover, .close-mp:hover, .close-chaos:hover {
    box-shadow: 0px 0px 50px rgb(110, 110, 110);
}

.close-bs:hover {
    box-shadow: 0px 0px 50px rgb(0, 0, 0);
    background: rgb(255, 255, 255);
}

.close-icon {
    width: 1.1rem;
    height: auto;
}

.easy-case, .prekrasna-case, .arpha-case, .bindexis-case, .bs-case, .mp-case, .chaos-case {
    display: none;
    width: 100vw;
    height: 100vh;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.8);
    height: fit-content;
    position: absolute;
    z-index: 110;
    padding: 7vh 0 10vh 0;
}

.case-study {
    width: 90vw;
    height: auto;
    border-radius: 30px;
    box-shadow: 0px 3px 80px rgb(29, 29, 29);
    animation: slide-up 1s ease-in-out forwards;
}

.slide-down {
    animation: slide-down 1s ease-in-out;
}

.close-icon-mobile {
width: 1.6rem;
height: auto;
}

.burger, .close-icon-mobile {
    display: none;
}

@keyframes slide-up {
    0% {
        transform: translateY(50vw);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes slide-left {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }
    100% {
        opacity: 1;
        transform: translateX(0)
        }
}

.slide-left {
    animation: slide-left 2s ease-in-out forwards;
}




@media only screen and (max-width: 1100px) {

    ::-webkit-scrollbar {
        width: 0px;
    }
    ::-webkit-scrollbar-thumb {
        border-radius: 0px; 
    }


    .body {
        overflow-x: hidden;
    }

    .fade-logo {
        width: 7vw;
    }

.logo-img {
    margin: 0;
}

.nav {
    align-items: center;
}

    .circle {
        width: 14vw;
        height: 14vw;
    }

    .nav-items {
        display: none;
width: 70vw;
height: 100vh;
position: fixed;
color: black;
top: 0;
right: 0;
z-index: -7;
box-sizing: border-box;
background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 250px rgba(0, 7, 66, 0.1);
padding: 13vh 10vw 30vh 10vw;
    }

    @keyframes show-nav {
        0% {
            transform: translateX(120%);
        }
        100% {
            transform: translateX(0%);
        }
    }

    @keyframes hide-nav {
        0% {
            transform: translateX(0%);
        }
        100% {
            transform: translateX(120%);
        }
    }

    .show-nav {
animation: show-nav 0.5s ease-in-out forwards;
    }

    .hide-nav {
        animation: hide-nav 0.5s ease-in-out forwards;
            }

    .nav-item {
margin-bottom: 6.5vh;
    }

    .burger {
        display: block;
        margin-left: auto;
        width: 2rem;
        height: auto;
    }

    .logo-img {
        width: 2rem;
    }

    .landing-section {
        display: block;
    }

    .sticky-logo {
        width: 30vw;
    left: 35vw;
    }

    .title-and-stuff {
        width: 100%;
        display: flex;
        flex-direction: column;
        overflow-x: hidden;
    }
    
    .social-media-icons {
        display: none;
    }
    
    .title {
        width: 100%;
        background: rgba(255, 255, 255, 0.70);
        height: fit-content;
        padding: 5vh 0 5vh 0;
        margin-top: 60vh;
    }
    
    .title-img {
        width: 88vw;
        height: auto;
    }
    
    .me-one-img {
        width: 120%;
        height: auto;
        position: absolute;
        top: 0;
        right: 0;
        z-index: -3;
        
    }
    
    .scroll-img {
        display: none;
    }

    .button {
        margin-top: 5vh;
    }

    .portfolio-section {
        box-sizing: border-box;
        width: 100vw;
        padding: 15vh 0vw 0 0vw;
        transform: translateY(0);
        overflow-x: hidden;

    }
       
       .portfolio-title-text {
           font-size: 1rem;
           width: 80vw;
       }

       .portfolio-header {
           padding-left: 11vw;
       }

       .portfolio-arrow-and-text {
        padding-left: 11vw;
       }
       
       .projects {
           margin-top: 6vh;
           display: flex;
           flex-direction: column;
           align-items: center;
           justify-content: center;
        overflow-x: hidden;
       }
       
       .project {
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateX(5%);
        overflow-x: hidden;
       }
       
       .project-img {
        width: 100%;
        height: auto;
       }
       
       .chevrons {
           display: none;
       }
       
       .project:hover > .chevrons{
           display: none;
        }

        .about-me-section {
            width: 100vw;
            height: fit-content;
            box-sizing: border-box;
        }
       
        .first-container {
           box-sizing: border-box;
            display: flex;
            flex-direction: column;
            padding: 20vh 10vw 0vh 10vw;
            justify-content: center;
            align-items: center;
        }
       
        .me-too-img {
            width: 80vw;
            height: auto;
        }
       
        .about-me-first-text {
        padding-left: 0rem;
        padding-top: 3rem;
        }
       
        .about-me-second-text {
            padding-right: 0vw; 
            padding-top: 5vh;
            padding-bottom: 7vh;
            text-align: left;
         }

        .second-container {
           box-sizing: border-box;
           display: flex;
           display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
           padding: 3vh 10vw 7vh 10vw;
        }

        .separator {
            display: none;
        }
       
        .kari-bari {
            display: flex;
            flex-direction: column;
        }
       
        .kari-heart {
            width: 60vw;
            height: auto;
            transform: translateY(-10%) translateX(0%);
       
        }
       
        .small-heart {
            width: 7vw;
            height: auto;
            margin-left: 35vw;
        }
       
        .big-heart {
           width: 10vw;
           height: auto;
           margin-left: 40vw;
       }

       .container {
        margin-top: 0vh;
        padding: 10vh 10vw 10vh 10vw;
        box-sizing: border-box;
    }

    .dev-text {
        width: 100%;
        z-index: 0;
    }
    
    .dev {
        opacity: 1;
        transform: translateX(0%);
    }

    .ul-desktop {
        text-align: left; 
        width: 70vw; 
        padding-left: 7vw;
    }

    .contacts-section {
        margin-top: 30vh;
        padding: 0vh 0 10vh 0;
         width: 100vw;
         display: flex;
         flex-direction: column;
    }
    
    .conatiner-get-in-touch {
       width: 90vw;
       height: fit-content;
       flex-direction: column;
       justify-content: center;
       align-items: center;
       padding: 5vh 10vw 10vh 10vw;
    }
    
    .get-in-touch {
        width: 100%;
    }
    
    .container-bubbles {
        width: 100vw;
        height: fit-content;
        transform: translateX(2vw) translateY(-30%);
    }
    
    .phone, .email{
        width: fit-content;
        padding: 1rem 1.5rem 1rem 1.5rem;
        height: fit-content;
        font-size: 0.9rem;
        font-weight: 600;
    }

    .phone-icon, .email-icon {
        width: 1.2rem;
    margin-right: 0.6rem;
}
    
  
    .container-socials {
        margin-left: 0;
        height: fit-content;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        padding: 10vh 0vw 0vh 10vw;
    }

    .icon {
        margin: 1rem;
    }

    .close-easy, .close-prekrasna, .close-arpha, .close-bindexis, .close-bs, .close-mp, .close-chaos {
        width: 2.5rem;
        height: 2.5rem;
        z-index: 200;
        border-radius: 100px;
        background: white;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.247);
        display: flex;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 4vh;
        left: 87vw;
        cursor: pointer;
    }
    
    .close-icon {
        width: 1.1rem;
        height: auto;
    }
    
    .easy-case, .prekrasna-case, .arpha-case, .bindexis-case, .bs-case, .mp-case, .chaos-case {
        display: none;
        width: 100vw;
        justify-content: center;
        align-items: center;
        background: rgba(0, 0, 0, 0.85);
        height: fit-content;
        position: absolute;
        z-index: 110;
        padding: 5vh 0 370vh 0;
    }
    
    .case-study {
        width: 100vw;
        border-radius: 10px;
    }
}