@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100;0,200;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/*-----Global Settings---------*/
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
}
html{
    font-size:62.5%;
    scroll-behavior:  smooth;
}
body{
    font-family: "Raleway", sans-serif;
    overflow-x: hidden;
    scroll-behavior: smooth;
}
canvas{
    position: absolute;
}
.cursor {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    border: 3px solid rgb(252, 3, 98);
    transition: all 200ms ease-out;
    position: fixed;
    pointer-events: none;
    left: 0;
    top: 0;
    transform: translate(calc(-50% + 15px), -50%);
    z-index: 1000;
  }
  
  .cursor2 {
    width: 20px;
    height: 20px;
    border-radius: 100%;
    background-color: rgb(255, 9, 152);
    opacity: .3;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: width .3s, height .3s, opacity .3s;
    z-index: 1000;
  }
  
  .hover {
    background-color: red;
    opacity: 0.5;
  }
  
  .cursorinnerhover {
    width: 50px;
    height: 50px;
    opacity: .5;
  }
#menu{
    z-index: 12;
}
#menu-bar{
    width: 30px;
    height: 30px;
    margin: 3rem 0rem 2rem 2rem;
    cursor: pointer;
}
.bar{
    height:0.35rem;
    width: 100%;
    background-color: rgb(255, 255, 255);
    display: block;
    border-radius: 0.5rem;
    transition: 0.3s ease;
}
#bar1{
    transform: translateY(-0.4rem);
}
#bar3{
    transform: translateY(0.4rem);
}
.nav{
    transition: 0.3s ease;
    display: none;
}
.nav ul{
    padding: 0 2.2rem;
}
.nav li{
    list-style: none;
    padding: 1.2rem 0rem;
}
.nav li a{
    color: rgb(0, 0, 0);
    font-size: 2rem;
    text-decoration: none;
}
.nav li a:hover{
   font-weight: bold;
}
.menu-bg, #menu{
    top: -9px;
    left: -9px;
    position: absolute;
}
.menu-bg {
    z-index: 1;
    width: 0;
    height: 0;
    margin: 30px 0 20px 20px;
    background: radial-gradient(circle, #ffffff, #fdfdfd);
    border-radius: 50%;
    transition: 0.3s ease;
  }
  
  .change {
    display: block;
  }
  
  .change .bar {
    background-color: rgb(0, 0, 0);
  }
  
  .change #bar1 {
    transform: translateY(4px) rotateZ(-45deg);
  }
  
  .change #bar2 {
    opacity: 0;
  }
  
  .change #bar3 {
    transform: translateY(-6px) rotateZ(45deg);
  }
  
  .change-bg {
    width: 520px;
    height: 460px;
    transform: translate(-60%,-30%);
  }

.main-head{
    min-height: 10vh;
    width: 100%;
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    position: absolute;
}
.menu-container{
    background-color: rgb(255, 255, 255);
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    position: relative;
    display: none;
}
.desktop-nav{
    width: 45rem;
    height: 40rem;
    border-radius: 50%;
    background-color: white;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    padding: 5rem;
    position: absolute;
    top: 15%;
    left: -3%;
    margin-left: auto;
    margin-left: auto;
    transform: translate(-50%, -50%);
    z-index: 11;
}
.desktop-nav nav ul{
    padding: 0 2.2rem;
}
.desktop-nav nav li{
    list-style: none;
    padding: 1.2rem 0rem;
}
.desktop-nav nav li a{
    color: rgb(0, 0, 0);
    font-size: 2rem;
    text-decoration: none;
}
.desktop-nav nav li a:hover{
   font-weight: bold;
}
/*menu-responsive*/
@media screen and (max-width: 1120px){
    .desktop-nav{
        display: none;
    }
    .menu-container{
        display: flex;
    }
}


/*-------Hero-Section-----------*/
.hero-section{
    min-height: 100vh;
    background-image: linear-gradient(to bottom, #000000 55%, #000000 50%, #4E4E4E 86%, #fffbfb );
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    position: relative;
}
#particles-js{
    margin: 0 auto;
    width: 100%;
    height: 100%;
    background-color: rgb(143, 51, 51);
}

.hero-head{
    min-height: 56vh;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    padding-bottom: 6rem;
    flex-direction: column;
    align-items: center;
}
.hero-head h1{
   background: linear-gradient(white, #a3cefa);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   color: white;
   font-size: 12rem;
   font-weight: 500;
   -webkit-animation: tracking-in-expand 1.7s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
   animation: tracking-in-expand 1.7s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
}
@-webkit-keyframes tracking-in-expand {
    0%{
        letter-spacing: 1rem;
        opacity: 0;
    }
    40%{
        opacity: 0.6;
    }
    100%{
        opacity: 1;
    }
}
@keyframes tracking-in-expand {
    0%{
        letter-spacing: 1rem;
        opacity: 0;
    }
    40%{
        opacity: 0.6;
    }
    100%{
        opacity: 1;
    }
}
.hero-text{
    min-height: 40vh;
    height: 100%;
    display: flex;
    flex-direction: row;
}
.container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}
.main-hero-text{
    background: linear-gradient(to top, rgb(255, 255, 255), rgb(144, 188, 255));
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
    font-size: 5rem;
    text-align: center;
    font-weight: 200;
    color: white;
    -webkit-animation: slide-in-bottom 1.7s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
            animation: slide-in-bottom 1.7s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
}

.responsive-img{
    max-width: 2.5rem;
    width: 100%;
    height: auto;
    object-fit: cover;
    cursor: pointer;
}



/*Hero-section-responsive*/



@media screen and (max-width: 890px) {
    .hero-head h1{
        font-size: calc(3rem + 1vw);
        font-weight: 500;
     }
     .main-hero-text{
        font-size: calc(3rem + 1vw);
    }
}




/******* ABOUT SECTION *********/





*, ::after, ::before {
    box-sizing: border-box;
}
section {
    display: block;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
.section-padding-equal {
    padding: 100px 0;
}
.about-section {
    position: relative;
    z-index: 1;
    background-color: #27272E;
    min-height: 100vh;
    font-size: 1.5rem;
    color: white;
    word-spacing: .2rem;
    overflow: hidden;
}

.about-text1{
    color: red;
    margin-bottom: 5rem;
}

.about-text2{
    font-size: 38px;
    font-weight: 600;
    color: #FFDBDB;
    margin-bottom: 1.5rem;
}
.about-text3{
    font-size: 1.9rem;
    margin-bottom: 1rem;
}
.about-text4{
    font-size: 1.9rem;
}
.about-img-container img{
    width: 100%;
    height: auto;
    vertical-align: middle;
}
.about-img-container{
    display: grid;
    grid-template-columns:  1fr 1fr 1fr 1fr;
    grid-template-rows: auto;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    margin-top: 4rem;
}
.about-img-container div{
    min-width: 20rem;
    max-width: 30rem;
    max-height: 8rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-img-container div img{
    filter: grayscale(1);
    transition: all 0.5s ease-in-out;
}
.about-img-container div img:hover{
    filter: grayscale(0)
}
.about-text-container, .about-img-container{
    padding-left: 100px;
    padding-right: 100px;
}


@media only screen and (max-width: 991px){
    .section-padding-equal {
        padding: 80px 0;
    }
    
}

@media only screen and (max-width: 1199px){
    .section-padding-equal {
        padding: 100px 0;
    }
    .about-text-container, .about-img-container{
        padding-left: 50px;
        padding-right: 50px;
    }
    .about-img-container{
        grid-template-columns:  1fr 1fr 1fr;
    }
}
@media only screen and (max-width: 576px){
    .section-padding-equal {
        padding: 100px 0;
    }
     .about-text-container, .about-img-container{
        padding-left: 50px;
        padding-right: 50px;
    }
    .about-img-container{
        grid-template-columns:  1fr 1fr;
    }
}



/***************** EDUCATION_SECTION *****************/



.education-section{
    min-height: 100vh;
    background-color: rgb(255, 255, 255);
    padding-top: 10rem;
    position: relative;
    z-index: 1;
    font-size: 1.5rem;
    color: black;
    word-spacing: .2rem;
    overflow: hidden;
    padding-left: 10rem;
    padding-right: 10rem;
}
.main-education{
    background-color: rgb(255, 255, 255);
    margin-bottom: 3rem;
}
.education-header{
    color: red;
    margin-bottom: 2rem;
}
.education-title{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    flex-direction: row;
}
.education-img{
    
}
.education-duration{
    
    font-weight: 600;
}


.internship-section {
    margin-top: 5rem;
    margin-bottom: 5rem;
}
.intern-header  {
    color: red;
    margin-bottom: 5rem
} 
.intern-title{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
   
    margin-bottom: 2rem;
}
.main-intern-title  {
    font-size: 1.9rem; 
}         
.intern-duration {
    font-weight: 600;
}    
.intern-description{
    display: flex;
    align-items: center;
}
.intern-img{
    background-color: rgb(255, 255, 255);
    width: 22rem;
    height: 43rem;
    border-radius: 2rem;
    margin-right: 5rem;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.intern-img a main{
    transform: scale(.7);
}

.intern-content{

}

@media only screen and (max-width: 991px){
    .section-padding-equal {
        padding: 80px 0;
    }
    .education-title{
        flex-direction: column;
    }
    .education-img{
        margin-bottom: 2rem;
    }
    .intern-title{
        flex-direction: column;
    }
    .main-intern-title{
        margin-bottom: 2rem;
    }
    .intern-duration{
        margin-bottom: 2rem;
    }
    .intern-description{
        flex-direction: column;
    }
    .intern-img{
        
        margin-left: 5rem;
        margin-bottom: 3rem;
    }
}


@media only screen and (max-width: 1199px){
    .section-padding-equal {
        padding: 100px 0;
    }
    .education-section{
        padding-left: 50px;
        padding-right: 50px;
    }
}
@media only screen and (max-width: 576px){
  
}





/************ WORK EXPERIENCE *************/




.work-exp-section {
    min-height: 100vh;
    background-color: #27272E;
    padding-top: 10rem;
    position: relative;
    z-index: 1;
    font-size: 1.5rem;
    color: rgb(255, 255, 255);
    word-spacing: .2rem;
    line-height: 2.5rem;
    overflow: hidden;
    padding-left: 10rem;
    padding-right: 10rem;
}
.work-exp-header{
    color: red;
    margin-bottom: 3rem
}
.work-exp-title{
    font-weight: 700;
    font-size: 2.3rem;
    margin-bottom: 5rem;
}
.work-exp-description{
    display: flex;
    align-items: center;
}
.work-exp-img{
    background-color: none;
    min-width: 50rem;
    max-width: 60rem;
    height: 38rem;
    border-radius: 2rem;
    margin-right: 5rem;
    overflow: hidden !important;
    position: relative;
}
.work-exp-img a img{
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.5s ease-in-out;
    width: 100%;
    height: 100%;
}
.work-exp-img a img:hover{
    transform: scale(1.1);
}
.work-exp-content span{
    color: #ff8c8c;
}
.content-intro {
    margin-bottom: 1rem;
}


@media only screen and (max-width: 991px){
    .section-padding-equal {
        padding: 80px 0;
    }
    .work-exp-title{
        flex-direction: column;
    }
    .work-exp-img{
        margin-bottom: 2rem;
        margin-left: 5rem;
        margin-bottom: 3rem;
    }
    .work-exp-title{
        flex-direction: column;
    }
    .work-exp-description{
        flex-direction: column;
    }
}


@media only screen and (max-width: 1199px){
    .section-padding-equal {
        padding: 100px 0;
    }
    .work-exp-section{
        padding-left: 50px;
        padding-right: 50px;
        padding-bottom: 50px;
    }
}
@media only screen and (max-width: 576px){
  
}





/****************** PROJECTS SECTION *****************/

.project-section{
    min-height: 100vh;
    background-color: #ffffff;
    padding-top: 10rem;
    position: relative;
    z-index: 1;
    font-size: 1.5rem;
    color: rgb(0, 0, 0);
    word-spacing: .2rem;
    line-height: 2.5rem;
    padding-left: 10rem;
    padding-right: 10rem;
    padding-bottom: 5rem;
    overflow: hidden;
}
.project-header{
    color: red;
    margin-bottom: 3rem
}
.main-project-title{
    font-weight: 700;
    font-size: 3rem;
}
.sub-project-title{
    margin-bottom: 4rem;
}
.project-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
}
.project1, .project2{
    background-color: #f2f2f2;
    min-width: 47%;
    height: 40rem;
    border-radius: 4rem;
    margin: 2rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.project2{
    background-color: #e0e2f1 !important;
}
.project2 a img{
    z-index: 1;
    position: absolute;
    top: -15%;
    left: 0;
    transition: all 0.5s ease-in-out;
}
.project2 a img:hover{
    transform: scale(1.3)
}
.project-content .project1 a img{
    transform: scale(.6);
    z-index: 1;
    position: absolute;
    top: -40%;
    left: 0;
    transition: all 0.5s ease-in-out;
}

.project1:hover a img{
    transform: scale(.8);
}
.project1-title, .project2-title{
       position:absolute;
       top: 30px;
       left: 30px;
       z-index: 5;
}
.project1-title{
    color: rgb(3, 3, 3);
}
*, ::after, ::before {
    box-sizing: border-box;
}

@media only screen and (max-width: 991px){
    .section-padding-equal {
        padding: 80px 0;
    }
    .project-content{
        flex-direction: column;
    }
    .project1, .project2{
        min-width: 50rem;
    }
    
}


@media only screen and (max-width: 1199px){
    .section-padding-equal {
        padding: 100px 0;
    }
    .project-section{
        padding-left: 50px;
        padding-right: 50px;
        padding-bottom: 50px;
    }
    .project-content .project1 a img{
        transform: scale(.6);
        z-index: 1;
        position: absolute;
        top: -20%;
        left: 0;
        transition: all 0.5s ease-in-out;
    }
    
    .project1:hover a img{
        transform: scale(.8);
    }
}
@media only screen and (max-width: 576px){
    .project1, .project2{
        min-width: 40rem;
    }
    .project-content .project1 a img{
        transform: scale(.6);
        z-index: 1;
        position: absolute;
        top: -20%;
        left: 0;
        transition: all 0.5s ease-in-out;
    }
    .project1:hover a img{
        transform: scale(.8);
    }
}
@media only screen and (min-width: 1240px){
    .project2 a img{
        top: -35%;
        left: 0;
        transition: transform 0.5s ease-in-out;
    }
    .project2 a img:hover{
        transform: scale(1.2);
        /* transform: translateY(-3rem); */
    }
}

/****************** CONTACT SECTION *****************/

.contact-section{
    min-height: 100vh;
    background-color: #27272E;
    padding-top: 10rem;
    position: relative;
    z-index: 1;
    font-size: 1.5rem;
    color: rgb(255, 255, 255);
    word-spacing: .2rem;
    line-height: 2.5rem;
    padding-left: 10rem;
    padding-right: 10rem;
    padding-bottom: 5rem;
    display: flex;
    align-items: center;
    justify-content:  center;
    flex-direction: row;
    overflow: hidden;
}
.contact-section span{
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    position: absolute;
}
.A{
    background-color: red;
    left: 0.5rem;
    top: 50rem;
}
.B{
    background-color: rgb(146, 189, 253);
    top: 10rem;
    left: 50rem;
}
.C{
    background-color: rgb(146, 255, 231);
    top: 3rem;
    left: 120rem;
}
.D{
    background-color: rgb(234, 181, 255);
    top: 70rem;
    left: 55rem;
}
.E{
    background-color: rgb(240, 250, 150);
}
.contact-title{
    flex: 1 1 40rem;
    width: 100%;
    height: 100%;
}
.main-contact-title-header{
    font-size: calc(3rem + 1vw);
    padding-bottom: 23rem;
    font-weight: 600;
    color: #fce3e3;
    line-height: 4rem;
}
.sub-contact-title-header{
    font-size: 3rem;
    color: #ddf2ff;
}
.main-contact-form{
    background-color: rgb(199, 199, 199);
    flex: 1 1 40rem;
    width: 100%;
    height: 70vh;
    padding: 8rem;
    border-radius: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-self: center;
}
.form-title{
    font-size: 3rem;
    margin-bottom: 3rem;
    color:rgb(0, 0, 0);
    font-weight: 600;
}
form{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    justify-content: center;
}
form input{
    font-family: inherit;
    background-color:  white;
    border: none;
    padding: 2rem;
    border-radius: 1.5rem;
    margin-bottom: 2rem
}
form input:focus{
    outline: none;
}
form textarea{
    font-family: inherit;
    background-color:  white;
    border: none;
    padding: 2rem;
    border-radius: 1.5rem;
    margin-bottom: 2rem;
}
form textarea:focus{
    outline: none;
}
#submit-btn{
    width: 20rem;
    padding: 1rem 1rem;
    font-size: 1.5rem;
    border: none;
    background-color: rgb(55, 3, 245);
    text-transform: uppercase;
    color: rgb(255, 255, 255);
    border-radius: 6px;
    transition: all 0.5s ease;
    margin-bottom: 3rem;
}
#submit-btn:hover{
    color: white;
    transform: scale(0.95);
    background: linear-gradient(to top, rgb(195, 179, 250), #0d6ff0);
}


@media only screen and (max-width: 1199px){
    .section-padding-equal {
        padding: 100px 0;
    }
    .contact-section{
        padding-left: 50px;
        padding-right: 50px;
        padding-bottom: 50px;
    }
   
}
@media only screen and (max-width: 866px){
    .contact-section{
        flex-direction: column;
    }
    .contact-title{
        flex: 1 1 24rem;
        width: 100%;
        height: 100%;
    }
    .main-contact-title-header{
        font-size: calc(3rem + 1vw);
        padding-bottom: 10rem;
        font-weight: 600;
        color: #fce3e3;
        line-height: 4rem;
    }
    .sub-contact-title-header{
        font-size: calc(3rem - 1vw);
        color: #ddf2ff;
        padding-bottom: 3rem;
    }
    .main-contact-form{
        padding: 6rem 3rem 10rem 3rem;
    }
    .contact-section span{
        display: none;
    }
}
@media only screen and (min-width: 1240px){
   
}




/*********** footer **************/

.footer {
    background-color: #27272E;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 2rem 2rem 2rem;
    color: white;
    border-top: 1px solid rgba(133, 133, 133, 0.596);
}


/****************** COMFTI APP ANIMATION *******************/
/* body {
	width: 100%;
	height: 100vh;
	overflow: hidden;
	display: flex;
	font-family: 'Major Mono Display', monospace;
	user-select: none;
} */
main {
	display: flex;
	flex: 1;
	background: #000;
	justify-content: center;
	align-items: center;
	flex-direction: row-reverse;
}
.title{
	color: rgba(255,255,255,0.07);
	display: flex;
	flex-direction: row;
	align-items: center;
	position: absolute;
	transition: opacity 0.4s;
}
.title p{
	font-size: 14vw;
}
.title .title__svg{
	width: 17vw;
	height: 34vw;
	overflow: hidden;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}
.title .title__svg video{
	width: 95%;
	height: 95%;
	object-fit: cover;
}
.title .title__svg svg { 
	width: 100%;
	position:absolute;
	top: 0;
	left: 0;
	height: 100%;
}
.title .title__svg svg text {
	font-family: 'Major Mono Display', monospace;
	text-transform: uppercase;
	transform-origin: center center;
	font-size: 3em;
}
.title .title__svg  svg rect {
	fill: #fff;
}
.title .title__svg  svg > rect {
	-webkit-mask: url(#mask);
	mask: url(#mask);
}
.iphonex {
	width: 20em;
	height: 40em;
	display: flex;
	position: absolute;
	transform: rotate(0deg);
	transition: all cubic-bezier(0.36, 0.41, 0.38, 1) 0.4s;
	z-index: 10;
}
.iphonex:hover{
	transform: rotate(0deg) scale(0.95);
	margin-right: 0%;
}
.iphonex:hover ~ .title{
	opacity: 0;
}
.iphonex .back {
	display: flex;
	flex: 1;
	margin: 0.2em;
	border-radius: 3em;
	position: absolute;
	z-index: 1;
	width: calc( 100% - 0.6em );
	height: calc( 100% - 0.6em );
	top: 0;
	right: 0;
	box-shadow: 0 0 10em rgba(70, 70, 70, 0.1);
	transition: all 0.4s;
}
.iphonex:hover .back{
	box-shadow: 0 0 15em rgba(70, 70, 70, 0.4);
}
.iphonex .front {
	display: flex;
	flex: 1;
	background-color: #292c2d;
	border-radius: 3em;
	margin: 0.2em;
	overflow: hidden;
	position: relative;
	box-shadow: 0 0.1em 0.4em rgba(255, 255, 255, 0.1) inset;
	z-index: 10;
}
.iphonex .screen{
	display: flex;
	flex: 1;
	background-color: #ffffff;
	margin: 0.4em;
	border-radius: 2.6em;
	border: solid 0.2em #121415;
	position: relative;
	z-index: 10;
}
.iphonex .front__line{
	background: linear-gradient(to right, #515455, #454748, #515455);
	position: absolute;
	z-index: 8;
	width: 100%;
	height: 0.5em;
	top: 10%
}
.iphonex .front__line-second{
	top: 90%
}
.iphonex .screen .screen__view{
	display: flex;
	flex: 1;
	margin: 0.6em;
	border-radius: 2em;
	overflow: hidden;
	position: relative;
	width: 100%;  
	position: relative;
	align-items: center;
	justify-content: center;
}
.iphonex .screen .screen__view:after,.iphonex .screen .screen__view:before{
	content: "";
	position: absolute;
	z-index: 1;
	width: 50em;
	height: 50em;
	border-radius: 50%;
	background: linear-gradient(110deg,#0d028b, #0ab89b, #021370 );
	bottom: 0;
}
.iphonex .screen .screen__view:after{
	transform:  translateY(100%) scaleX(1.4);
	opacity: 0.3;
	transition: all ease 0.5s 0.1s;
}
.iphonex .screen:hover .screen__view:after{
	transform:  translateY(10%) scaleX(1.4);
	transition: all ease 0.9s;
}
.iphonex .screen .screen__view:before{
	transform:  translateY(100%) scaleX(1.4);
	opacity: 1;
	z-index: 40;
	transition: all ease 0.6s;
}
.iphonex .screen:hover .screen__view:before{
	transform:  translateY(10%) scaleX(1.4);
	transition: all ease 0.9s 0.2s;
}
.iphonex .screen .screen__view .dribbbleLogo{
	width: 8em;
	height: 8em;
	border: solid 0.7em #D33572;
	border-radius: 50%;
	box-shadow: 0px 0px 20px rgba(0,0,0,0.1);
	background: #ea4c89;
	position: absolute;
	z-index: 10;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all ease 0.7s;
}
.iphonex .screen .screen__view .dribbbleLogo.white{
	width: 0.9em;
	height: 0.9em;
	border: solid 0.07em #fff;
	position: relative;
	margin-left: 0.3em;
	background: transparent;
	box-sizing: border-box;
}
.iphonex .screen:hover .screen__view .dribbbleLogo:not(.white){
	transform: translateY(100%) translateZ(1px);
	transition: all ease 1s 0.1s
}
.iphonex .screen .screen__view .dribbbleLogo:after,
.iphonex .screen .screen__view .dribbbleLogo:before,
.iphonex .screen .screen__view .dribbbleLogo span{
	content: "";
	width: 100%;
	height: 100%;
	border-radius: 50%;
	border: solid 0.45em #D33572;
	position: absolute;
}
.iphonex .screen .screen__view .dribbbleLogo.white:after,
.iphonex .screen .screen__view .dribbbleLogo.white:before,
.iphonex .screen .screen__view .dribbbleLogo.white span{
	border: solid 0.04em #fff;
}
.iphonex .screen .screen__view .dribbbleLogo:after{
	bottom: 0;
	transform: translateY(63%) scaleY(1.65) scaleX(1.5) rotate(-30deg);
	transform-origin: top center;
}
.iphonex .screen .screen__view .dribbbleLogo:before{
	top: 0;
	transform: translateY(-62%) scaleY(1.65) scaleX(1.5) rotate(-30deg);
	transform-origin: bottom center;
}
.iphonex .screen .screen__view .dribbbleLogo span{
	top: 0;
	transform: translateY(-50%) scaleY(1.85) scaleX(1.5) rotate(-63deg);
	transform-origin: bottom right;
}
.iphonex .screen .screen__view .hello{
	font-size: 2.5em;
	color: #fff;
	position: absolute;
	z-index: 60;
	opacity: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	transition: all ease 0.3s;
	transform: translateY(40%);
	font-weight: 600;
}
.hello img{
    width: 50%;
}
.iphonex .screen:hover .screen__view .hello{
	opacity: 1;
	transform: translateY(0%);
	transition: all ease 0.6s 0.7s;
}
.iphonex .screen .screen__front{
	position: absolute;
	width: 50%;
	background-color: #46494b;
	height: 1.8em;
	border-radius: 0 0 0.9em 0.9em;
	right: 25%;
	top: 0px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-bottom: 0.3em;
	box-sizing: border-box;
	margin-top: 0.5em;
	z-index: 999;
}
.iphonex .screen .screen__front::after,.iphonex .screen .screen__front::before{
	content: "";
	width: 10%;
	height: 50%;
	position: absolute;
	background: transparent;
	top: -0.3em;
	border: solid 0.4em #2c2929;
	border-bottom: 0;
    display: none;
}
.iphonex .screen .screen__front::after{
	left:0.4em;
	transform: translateX(-100%);
	border-left: 0;
	border-radius: 0 0.7em 0 0;
}
.iphonex .screen .screen__front::before{
	right:0.4em;
	transform: translateX(100%);
	border-right: 0;
	border-radius: 0.7em 0 0 0;
}
.iphonex .screen .screen__front-speaker{
	background: #070808;
	border-radius: 0.2em;
	height: 0.35em;
	width: 28%;
}
.iphonex .screen .screen__front-camera{
	height: 0.35em;
	width: 0.35em;
	background: #272727;
	margin-left: .5em;
	border-radius: 50%;
	margin-right: -0.8em;
}
.iphonex .phoneButtons{
	width: 1em;
	height: 6em;
	position: absolute;
	z-index: 2;
	background: linear-gradient(to bottom, #212324, #2b2e31,#212324);
	box-shadow: 0 0 0.4em rgba(255, 255, 255, 0.1) inset;
	border-radius: 2px;
}
.iphonex .phoneButtons-right{
	right: 0;
	top: 30%;
}
.iphonex .phoneButtons-left{
	left: 0;
	top: 15%;
	height: 3em;
}
.iphonex .phoneButtons-left2{
	left: 0;
	top: 25%;
	height: 5em;
}
.iphonex .phoneButtons-left3{
	left: 0;
	top: calc( 25% + 6em);
	height: 5em;
}

@media (max-height: 40em){
	body{
		font-size: 70%;
	}
	.iphonex {
		width: 48vh;
		height: 94vh;
	}
	.title .title__svg svg text{
		font-size: 4em;
	}
}
.iphonex .screen:hover .screen__view .front-img{
	transform: translateY(100%) translateZ(1px);
	transition: all ease 1s 0.1s
}
.front-img{
    background-color: none;
    width: 13rem;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    transition: all ease 0.7s;
}
.front-img img{
    width: 100%;
    height: 100%;
}
