@import url(css/utilities.css);

html {
    scroll-behavior: smooth;
  }

  /* permission */
  #permission{
    position: fixed;
    z-index: 10001;
    width: 95vw;
    height: fit-content;
    backdrop-filter: blur(10px);
    overflow: hidden;
    bottom: 10vh;
    margin-bottom: 30px;
    margin: 30px;
    right: 0px;
    background: rgb(255, 255, 255);
    border-radius: 15px;
    border: 3px solid black;
    transition: 0.2s ease;
  }
  #permission .Allow{
    margin: 20px;
    margin-bottom: 5px;
  }
  #permission .AllowBtn{
    text-align: right;
  }
  #permission .AllowBtn button{
    margin: 10px;
  }

/*-- header-- */
header{
    height: 100vh;
    width: 100vw;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.192) , rgb(0, 0, 0)), url(img/header1.1.0.jpg);
    background-size: cover;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.profileCardContainer{
    display: flex;
    justify-content: center;
    align-items: center;
}
.profileImage img{
    height: 260px;
    width: auto;
    position: relative;
    margin-right: -60px;
    z-index: 2;
}
.MyDetails{
    background-color: rgba(158, 158, 158, 0.192);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    position: relative;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    color: white;
}
.MyDetails .details{
    padding: 20px;
    margin: 30px;
    padding-left: 80px;
}
.MyDetails p{
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.MyDetails #line1{
    font-size: 40px;
    font-weight: 900;
}
.MyDetails #line2{
    font-size: 80px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    -webkit-text-stroke: 1px white !important;
    color: transparent !important;
    background: url(img/lines.png);
    -webkit-background-clip: text;
    background-position: 0px 0px;
    /* animation: textAnimation 20s linear 1.5s infinite; */
    font-weight: bold;
}
@keyframes textAnimation {
    from{
        background-position: 2000px 0px;
    }
}
.MyDetails .pros{
    font-size: 34px;
    font-weight: bold;
    height: 2ch;
}
.MyDetails .pro{
    display: none;
}
@keyframes wow {
    from{
        opacity: 0;
        transform: scaleX(0);
    }
    to{
        opacity: 1;
        transform: scaleX(1);
    }
}
.MyDetails .btn_l{
    margin: 10px;
    margin-left: 0px;
    margin-top: 20px;
}
.MyDetails .btn_l a{
    font-weight: bold;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.MyDetails .btn_l a:hover{
    border-bottom: 0px;
}
/* ----------------------------------------------- */


/* Explore feed */
section{
    height: 100vh;
    color: white;
}
.content{
    padding-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.section1{
    background-image: url(img/section2.3.jpg);
    background-size: cover;
}
.section1 .heading{
    margin: 40px;
}
.section1 .heading h1{
    margin: 10px;
    margin-left: 20px;
}
.section1 .heading p{
    max-width: 40vw;
    margin: 20px;
}
.section1 .heading hr{
    background-color: var(--secondaryColor);
    border-color: var(--secondaryColor);
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    padding: 5px;
}
.section1 .heading  #sec1Btn{
    position: relative;
    margin: 10px;
}
.section1 .heading #curious{
    margin-top: -20px;
    font-size: 60px;
    font-weight: 900;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: var(--primaryColor);
}
.section1 .heading #abt{
    display: block;
    padding-left: 10px;
}
.section1 video{
    margin: 40px;
    width: 550px;
    border-radius: 20px;
}
.section1 video:hover{
    transform: scale(1.08);
}

.section2{
    background-image: url(img/section2.2.jpg);
    background-size: cover;
}
.section2 .Slides{
    display: none;
    animation: pop 0.3s ease 1 ;
}
@keyframes pop {
    from{
       /* opacity: 0; */
       transform: scale(0); 
    }
    to{
       /* opacity: 1; */
       transform: scale(1); 
    }
}
.section2 .WorkContainer{
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 60px;
    position: relative;
    z-index: 1;
}
.section2 .WorkContainer img{
    width: 40vw;
}
.section2 .WorkContainer #slideDetails{
    margin: 10px;
}
.section2 .WorkContainer #slideDetails h1{
    margin: 20px;
    font-size: 70px;
}
.section2 .WorkContainer #slideDetails p{
    margin: 20px;
}
.section2 .WorkContainer #slideDetails .btnHolder{
    text-align: center;
}
.section2 .WorkContainer #slideDetails .btnHolder #btn_vl{
    font-size: 25px;
    border-radius: 17px!important;
    padding-left: 25px;
    padding-right: 25px;
    margin-top: 40px;
}

.section3{
    background-image: url(img/section3.3.jpg);
    background-size: cover;
}

/* --------------------------------------- */

/* scroll animations} */
#Reveal_l{
    transform: translateX(-100vw);
}
#Reveal_r{
    transform: translateX(100vw);
}
video , #img_a{
    transform: scale(0);
}
#Reveal_l[data-scroll="in"] {
    transform: translateX(0);
    transition: 1s ease;
}
#Reveal_r[data-scroll="in"] {
    transform: translateX(0);
    transition: 1s ease;
}
video[data-scroll="in"] ,#img_a[data-scroll="in"] {
    transform: scale(1);
    transition: 0.5s ease;
}
/* -------------------------------------------------------- */

/* for screen width below 850px */
@media all and (max-width: 900px) {
    .MyDetails #line1{
        font-size: 30px;
    }
    .MyDetails #line2{
        font-size: 45px;
    }
    .MyDetails .pros{
        font-size: 25px;
    }
    .content{
        padding-top: 65px;
        display: flex;
        flex-direction: column-reverse;
    }
    .section1 #AchivementVideo{
        text-align: center;
    }
    .section1 .heading{
        margin: 0px;
    }
    .section1 .heading p{
        max-width: 100vw;
        margin: 20px;
    }
    .section1 video{
        margin-top: 20px;
        margin: 0px;
        width: 90vw;
        height: auto;
    }
    .section1 .heading hr{
        margin-left: 20px;
        margin-right: 20px;
    }
    .section1 video:hover{
        transform: scale(1);
    }
    .section2 .WorkContainer{
        padding-top: 200px;
        /* flex-direction: column; */
    }
    .section2 .WorkContainer #slideDetails h1{
        font-size: 40px;
    }
    .section2 .WorkContainer #slideDetails .btnHolder #btn_vl{
        font-size: 17px;
        border-radius: 10px!important;
        padding-left: 10px;
        padding-right: 10px;
        margin-top: 10px;
    }
}
/* for screen width below 700px  */
@media all and (max-width:700px) {
    .profileCardContainer{
        display: block;
        /* padding-top: 72px; */
        text-align: right;
    }
    .profileImage img{
        height: 30vh;
        margin-right: 27px;
        align-content: right;
        margin-bottom: -40px;
    }
    .MyDetails{
        text-align: left;
        padding-top: 40px;
    }
    .MyDetails .details{
        margin: 0px;
        padding-left: 30px;
    }
}
/* for screen width below 500px */
@media all and (max-width:500px) {
    .MyDetails #line1{
        font-size: 23px;
    }
    .MyDetails #line2{
        font-size: 40px;
    }
    .MyDetails .pros{
        font-size: 20px;
    }
    .section1 .heading hr{
        padding: 2px;
        margin-top: 10px;
        margin-bottom: 10px;
        display: none;
    }
    .section1 .heading #curious{
        font-size: 50px;
    }
    .section1{
        background-position: 0px 0px;
    }
    .section2 .WorkContainer{
        padding-top: 100px;
        flex-direction: column;
    }
    .section2 .WorkContainer #slideDetails h1{
        font-size: 30px;
    }
    .section2 .WorkContainer img{
        width: 60vw;
    }
}
