*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}
nav{
    height: 4rem;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: sticky;
    z-index: 8000;
}

body::-webkit-scrollbar {
    display: none;
  }

  *{
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
  }
a{
    color: unset;
    background-color: none;
    cursor: pointer;
}

.big-title{
    font-family: 'Roboto', sans-serif;
    font-size: 3rem;
}

.small-title{
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    width: 80%;

}

.brand{
    font-family: 'Roboto', sans-serif;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    text-shadow: 0px 0px 1rem black;
}

.tiny{
    font-weight: 100;
}

.big-icon{
    font-size: 3.5rem;
    cursor: pointer;
}

.app-screens{
    /* width: 55%; */
    height: fit-content;
    /* border: 1px solid red; */
    display: flex;
    /* scroll-behavior: smooth; */
    /* overflow-x: scroll; */
    margin: 1rem 0 2rem 0;
    pointer-events: none;
    /* padding: 1rem; */
    /* filter: blur(10px); */
}

.app-screen{
    height: 9.75rem;
    width: 4.5rem;
    margin: .5rem;
    transition: all .5s ease;
    /* border: 1px solid red; */
    background-repeat: no-repeat;
    background-size: contain;
    cursor: pointer;
}

.app-screen:hover{
    /* transform: scale(1.2,1.2); */
    transform: scale(2,2);
}

.left-bottom{
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: space-between;
    align-items: flex-start;
    padding-right: 5rem;
}
.blr-photo{
    width: 17rem;
    height: 17rem;
    /* border: 1px solid red; */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}



.nav-bucket{
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.slider-control{
    height: 4rem;
    /* border: 1px solid red; */
    display: flex;
    align-items: center;
    width: fit-content;
    /* justify-content: center; */
    margin-left: 3rem;
}

.slider-control{
    font-size: 2rem;
}

.ctrl{
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    /* border: 1px solid red; */
    border-radius: 4rem;
    margin: .25rem;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.39);
    transition: all .5s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.ctrl:hover{
    background-color: rgba(255, 255, 255, 0.835);
    transform: scale(1.2,1.2);
}
.body{
    width: 100%;
    height: 100vh;
    position: absolute;
    display: flex;
    top: 0;
}
.left{
    width: 55%;
    min-height: 100vh;
    /* background-color: aquamarine; */
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0rem;
    overflow-y: none;
}
.left-content{
    width: 80%;
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 10%;
    top: 2rem;
}



.right{
    width: 45%;
    display: flex;
    height: 100vh;
    overflow: hidden;
    /* background-color: rgb(0, 225, 255); */
}
.imageHolder{
    max-width: 100%;
    min-width: 100%;
    height: 100vh;
    display: flex;
    /* overflow: hidden; */
    /* transform: translateX(-500px); */
}
.right-image{
    /* border: 1px solid red; */
    min-width: 100%;
    max-width: 100%;
    height: inherit;
    background-position: top;
    background-size: cover;
}


.left-social-media-small{
    display: none;
}
/* tablet */
@media screen  and (max-width: 1080px){


body::-webkit-scrollbar {
    display: none;
  }

*{
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
  }

    .big-title{
        font-family: 'Roboto', sans-serif;
        font-size: 3rem;
    }
    
    .small-title{
        font-family: 'Open Sans', sans-serif;
        font-size: 1rem;
        width: 80%;
    
    }
    
    .brand{
        font-family: 'Roboto', sans-serif;
        font-size: 2rem;
        color: white;
        cursor: pointer;
        text-shadow: 0px 0px 1rem black;
    }
    
    .tiny{
        font-weight: 100;
    }
    
    .big-icon{
        font-size: 3.5rem;
        cursor: pointer;
    }
    
    .app-screens{
        /* width: 55%; */
        height: fit-content;
        /* border: 1px solid red; */
        display: flex;
        /* scroll-behavior: smooth; */
        /* overflow-x: scroll; */
        margin: 1rem 0 2rem 0;
        pointer-events: none;
        /* padding: 1rem; */
        /* filter: blur(10px); */
    }
    
    .app-screen{
        height: 9.75rem;
        width: 4.5rem;
        margin: .5rem;
        transition: all .5s ease;
        /* border: 1px solid red; */
        background-repeat: no-repeat;
        background-size: contain;
        cursor: pointer;
    }
    
    .app-screen:hover{
        /* transform: scale(1.2,1.2); */
        transform: scale(2,2);
    }
    
    .left-bottom{
        display: flex;
        flex-direction: column;
        width: 100%;
        justify-content: space-between;
        align-items: flex-start;
        padding-right: 5rem;
    }
    .blr-photo{
        width: 15rem;
        height: 15rem;
        /* border: 1px solid red; */
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        margin: 2rem 0rem;
    }
    
    
    
    .nav-bucket{
        width: 90%;
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
    
    .slider-control{
        height: 4rem;
        /* border: 1px solid red; */
        display: flex;
        align-items: center;
        width: fit-content;
        /* justify-content: center; */
        margin-left: 3rem;
    }
    
    .slider-control{
        font-size: 2rem;
    }
    
    .ctrl{
        width: 2.5rem;
        height: 2.5rem;
        display: flex;
        justify-content: center;
        align-items: center;
        /* border: 1px solid red; */
        border-radius: 4rem;
        margin: .25rem;
        cursor: pointer;
        background-color: rgba(255, 255, 255, 0.39);
        transition: all .5s cubic-bezier(0.075, 0.82, 0.165, 1);
    }
    
    .ctrl:hover{
        background-color: rgba(255, 255, 255, 0.835);
        transform: scale(1.2,1.2);
    }
    .body{
        width: 100%;
        height: 100vh;
        position: absolute;
        display: flex;
        top: 0;
    }
    .left{
        width: 55%;
        min-height: 100vh;
        position: relative;
        margin-top: 0;
        /* background-color: aquamarine; */
        display: flex;
        justify-content: flex-end;
        align-items: center;
        /* padding: 5rem 0; */
    }
    .left-content{
        width: 80%;
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 0rem;
    }
    
    
    
    .right{
        width: 45%;
        display: flex;
        height: 100vh;
        overflow: hidden;
        /* background-color: rgb(0, 225, 255); */
    }
    .imageHolder{
        max-width: 100%;
        min-width: 100%;
        height: 100vh;
        display: flex;
        /* transform: translateX(-500px); */
    }
    .right-image{
        /* border: 1px solid red; */
        min-width: 100%;
        max-width: 100%;
        height: inherit;
        background-position: top;
        background-size: cover;
    }
    
    
    .left-social-media-small{
        display: none;
    }
}

/* mobile */
@media screen  and (max-width: 720px){

    .left-social-media-small{
        display: flex;
    }
    .left-social-media{
        display: none;
    }
    .body{
        display: flex;
        flex-direction: column-reverse;
        position: absolute;
        top: 0;
        max-width: 100%;
        /* overflow-x: hidden; */
    }

    .brand{
        font-family: 'Roboto', sans-serif;
        font-size: 1rem;
        color: white;
        cursor: pointer;
        text-shadow: 0px 0px 1rem black;
    }
    

    .right{
        display: flex;
        flex: 1;
        width: 100%;
    }

    .imageHolder{
        height: 70vh;
        min-width: 100%;
        max-width: 100%;
    }

    .right-image{
        min-width: 100%;
        max-width: 100%;
    }

    .left{
        position: absolute;
        top: 70vh;
        display: flex;
        flex: 3;
        width: 100%;
        /* padding-top: 20rem; */
        /* transform: translateY(2rem); */
        overflow-y: hidden;
        overflow-x: hidden;
        height: auto;
    }

    /* .left-content{
        display: flex;
        flex-direction: column;
    } */


.big-title{
    font-family: 'Roboto', sans-serif;
    font-size: 3rem;
}

.small-title{
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    width: 100%;

}

.brand{
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
    text-shadow: 0px 0px 1rem black;
}

.left-bottom{
    display: flex;
    flex-direction: column;
    margin: 0;
    /* transform: translateY(-7rem); */
}
.left-bottom-left{
    margin: 0rem ;
    width: 100%;
    /* transform: translateX(-1rem); */
}
.left-bottom-right{
    margin: 0rem ;
    width: 100%;
    transform: translateX(-1rem);
}

.left-content{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    transform: translateX(-2rem);
    /* transform: translateY(-1em); */
    /* margin-top: -15rem; */
}

    .right-image{
        /* border: 1px solid red; */
        background-position: top;
        background-size: cover;
    }
    .left-top{
        /* border: 1px solid red; */
        padding-bottom: 0;
    }

    .lb{
        transform: translateY(-5rem);
    }

    .blr-photo{
        width: 20rem;
        height: 20rem;
        /* border: 1px solid red; */
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        margin: 1rem 1rem;
    }

   
 
}