/* || GENERAL STYLES - Set same size/font for easier customize|| */
*{
    padding: 0; 
    margin: 0;
    box-sizing:border-box;
    font-family: "Jockey One", sans-serif;
    font-weight: 400;
    font-style: normal;
}

/*MAIN BODY*/
body{
    overflow-x: hidden;
}

.container{
    height: 100%;
}

.Tabs{
    width: 100%;
    height: 100vh;
}

.sec-Title{
    font-size: 3em;
}

/*NAVIGATION BAR*/
.navTop{
    height: 50px;
    width: 100%;
    font-size: 1.5em;
}

.navTop>.active {
    background-color: #FFE6A5;
}

.navTop a {
    float: left;
    text-align: center;
    text-decoration: none; /*remove hyperlink underline*/
    height:100%;
    padding:11px 12px 0px 12px;
    display: block;
    color: black;
}

.navTop a:hover {
    background-color: #FFE6A5;
}


/* MAIN PAGE */
.MainPage{
    height: calc(100vh - 50px);
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
}

.MainTitle{
    font-size: 4rem;
    line-height: 5rem;
    animation: slideDown linear 1s normal forwards;
}

.MainText{
    position: relative;
    display: flex;
    justify-content: center;
}

.MainText>p{
    font-size: 3rem;
    margin-top: 2%;
    position: relative;
    opacity:0;
    color: #605678;
}

.MainText-block{
    position: absolute;
    top: 20%;
    width: 150%;
    height: 5rem;
    opacity: 0;
}

/*ABOUT ME*/
.AboutMe{
    display: grid;
    grid-template-columns: 1.5fr 2fr;
}

.AboutMe-Photo{
    overflow: hidden;
}

.AboutMe-Photo>img{
    height: 100%;
    object-fit: cover;
    max-width: 95%;
    border-radius: 10%;
    background-color: #FFE6A5;
}

.AboutMe-Text{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.AboutMe *{
    padding: 5%;
}

.AboutMe-Contact{
    margin: 1em;
    display: flex;
    justify-content: space-around;
}

.AboutMe-Contact>a>img{
    width: 4em;
}

/*Skills*/
.Skill-Title{
    text-align: center;
    margin-top: 5%;
 }

 .Skill-Container{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 2% 10%;
    opacity: 0;
 }

 .logo{
    height: 170px;
    width: 170px;
    padding: 2%;
    margin: 2%;
    border-radius: 25px;
    border: #FFBF61 5px dotted ;
    background-color: whitesmoke;
    /* opacity: 0; */
 }


/*EXPERIENCE*/
.Experiences{
    height: auto;
}

.Exp-Title{
    padding: 2% 7% 0%;
}

.timeline-container>ul,li{
    list-style: none;
    padding: 0;
}

.timeline-container{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem 1rem;
}

.timeline-card{
    border-radius: 12px;
    position: relative;
}

.timeline-card>li{
    padding-bottom: 1.5rem;
    border-left: 1px solid #567c8d;
    position: relative;
    padding-left: 20px;
    margin-left: 10px;
  
    &:last-child{
      border: 0px;
      padding-bottom: 0;
    }
  
    &:before{
      content: '';
      width: 15px;
      height: 15px;
      background: #FFBF61;
      box-shadow: 3px 3px 0px #605678;
      border-radius: 50%;
      position: absolute;
      left: -10px;
      top: 0px;
    }
  }

/* || PROJECTS || */
.Project{
    overflow: hidden;
}

.Project-Title{
    text-align: right;
    width: 100%;
    margin: 2%;
    padding-right: 10%;
    overflow: hidden;
}

.slide-container{
    width: 100%;
    height: 80vh;
    display: flex;
    justify-content: center;
    overflow: hidden;
    position: relative;
    /* padding: 10%;
    padding-top: 0; */
}

.slide{
    height: 100%;
    width: 100%;
    margin:0 5%;
    border-radius: 50px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.slideimg{
    overflow: hidden;
    background-color: black;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
}

.slideimg>img{
    overflow: hidden;
    object-fit: cover;
    height: 100%;
    width:100%;
}

.slideDescription{
    height: 30%;
    width: 100%;
    background-color:#8ABFA3;
    padding: 2%;
    text-align: center;
}

/* .slideDescription>*{margin-bottom: 2%;} */

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 40%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: black;
  background-color: white;
  font-weight: bold;
  font-size: 25px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 5%;
  border-radius: 3px 0 0 3px;
}

.prev{
    left: 5%;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
  color: white;
}



/*FOOTER*/
footer{
    height: 60px;
    width: 100%;
    font-size: 1em;
    display: flex;
    justify-content: center;
    align-items: center;
}

/*CLASS with EFFECT*/
.hidden{display: none;}

.back-yellow{background-color: #FFE6A5;}

.back-orange{background-color: #FFBF61;}

.back-green{background-color: #8ABFA3;}

.back-purple{background-color: #605678;}

.animate-AppearLeft{animation: AppearLeft linear 2.5s 1s normal forwards; }

.animate-AppearRight{animation: AppearRight linear 1s 1.5s normal forwards;  }

.animate-scrollFadeDown{animation: scrollFadeDown linear 0.8s normal forwards;}

/*Animation*/
@keyframes slideDown {
    0% {transform: translate(0,-500%) rotate(5deg);}
    35%{transform: rotate(3deg);}
    37%{transform: none;}
    38%{transform: rotate(3deg);}
    42%{transform: translate(0,-10%) rotate(3deg);}
    43%{transform: translate(0,-20%) rotate(2deg);}
    44%{transform: translate(0,-30%) rotate(1deg);}
    46%{transform: translate(0,-40%);}
    50%{transform: translate(0,-30%) rotate(-1deg);}
    53%{transform: translate(0,-20%) rotate(-2deg);}
    54%{transform: translate(0,-10%) rotate(-3deg);}
    56%{transform: translate(0,-5) rotate(-3deg);}
    58%{transform: none;}
    60%{transform: translate(0,-5)rotate(-3deg);}
    63%{transform: translate(0,-10%) rotate(-2deg);}
    64%{transform: translate(0,-20%) rotate(-1deg);}
    68%{transform: translate(0,-30%);}
    72%{transform: translate(0,-20%) rotate(1deg);}
    75%{transform: translate(0,-10%) rotate(2deg);}
    77%{transform: translate(0,-5) rotate(2deg);}
    80%{transform: none;}
  }

@keyframes AppearRight {
    0%{
        opacity:1;
        clip-path: inset(100%);
    }

    30%{
        opacity: 1;
        clip-path: inset(0% 80% 0% 0%);
    }

    50%{
        opacity: 1;
        clip-path: inset(0% 50% 0% 0%);
    }

    70%{
        opacity: 1;
        clip-path: inset(0% 30% 0% 0%);
    }

    100%{
        opacity: 1;
        clip-path: inset(0);
    }

}


@keyframes AppearLeft {
    0%{
        opacity: 1;
        clip-path: inset(100%);
    }

    10%{
        opacity: 1;
        clip-path: inset(0% 90% 0% 0%);
    }

    30%{
        opacity: 1;
        clip-path: inset(0% 50% 0% 0%);
    }

    50%{
        opacity: 1;
        clip-path: inset(0);
    }

    70%{
        opacity: 1;
        clip-path: inset(0% 0% 0% 50%);
    }

    90%{
        opacity: 1;
        clip-path: inset(0% 0% 0% 90%);
    }

    100%{
        opacity: 1;
        clip-path: inset(100%);
    }

}

@keyframes scrollFadeDown{
    0%{
        transform: translateY(20%);
    }

    100%{
        transform: none;
        opacity: 1;
    }
}

/* || SMALL SCREEN || */
@media screen and (max-width:700px){

    /*General*/
    .Tabs{
        width: 100%;
        height: auto;
        min-height: 100vh;
    }


    /* || NAVIGATION BAR || */
        .navTop a:not(:last-child) {
            display: none;
        }
    
        .navIcon{
            height: 1em;
            display: block;
       } 
    
       .navTop a:last-child{
            display: block;
            float: right;
        }
    
        .navTop.responsive {
            position: relative;
        }
    
        .navTop.responsive a.icon {
          position: absolute;
          right: 0;
          top: 0;
        }

        .navTop.responsive a {
          float: none;
          display: block;
          background-color: #8ABFA3;
        }
    
         .navTop.responsive a:hover{
            background-color: #FFE6A5;
        } 

        /*About Me*/
        .AboutMe{
            display: flex;
            flex-direction: column;
        }

    .logo{
        height: 100px;
        width: 100px;
    }

}