/*GLOBAL SECTION*/
* {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
body {
    background: #080808;
    color: #ffffff 
}
.preload {
    overflow: hidden 
}
.loader-wrapper {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #080808;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}
.loader {
    animation: loader 2s infinite ease;
}
@keyframes loader {
    0% {
        transform: translateX(-20%);
   }
    25% {
        transform: translateX(20%);
   }
    50% {
        transform: translateX(-20%);
   }
    75% {
        transform: translateX(20%);
   }
    100% {
        transform: translateX(-20%);
   }
}
/*HOME SECTION*/
#header {
    width: 100%;
    height: 100vh;
    background-image: url('./Images/main/bg.gif');
    background-size: cover;
    background-color: black;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-left: 4%;
    margin-top: 1%;
}
nav ul {
    z-index: 1;
}
nav ul li {
    display: inline-block;
    list-style: none;
    margin: 30px 20px;
    height: 100px;
    width: 150px;
    overflow: hidden;
}
nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 23px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    font-weight: 550;
    transition: all .2s ease-in-out;
    background-color: transparent;
    height: 100%;
    width: 100%;
    font-family: "Roboto";
}
nav ul li a:hover {
    color: cyan;
    text-shadow: 0 0 7px #fff, 0 0 10px #000, 0 0 11px cyan, 0 0 15px cyan, 0 0 15px cyan, 0 0 15px cyan;
}
.header-text {
    margin-top: 20%;
    margin-left: 10.5%;
    font-size: 40px;
}
.header-text p {
    text-align: center;
    padding: 0;
    margin-left: 15.5%;
    transform: translateX(-200%);
    opacity: 100;
    animation: slide-in-anim 1.5s ease-out forwards;
}
.header-text h1 {
    margin-top: 1%;
    font-size: 70px;
}
.header-text h1 span {
    color: black;
    -webkit-text-stroke: 2px cyan;
    animation: fade-in-anim 3.5s;
}
@keyframes fade-in-anim {
    0% {
        opacity: 0;
   }
    100% {
        opacity: 100;
   }
}
@keyframes slide-in-anim {
    20% {
        opacity: 0;
   }
    60% {
        transform: translateX(-45%);
   }
    75% {
        transform: translateX(-52%);
   }
    100% {
        opacity: 1;
        transform: translateX(-50%);
   }
}
/*ABOUT SECTION*/
#about {
    padding: 80px 0;
    margin-left: 3%;
    margin-right: 3%;
    color: #ababab;
}
.row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.about-col-1 img {
    width: 500px;
    border-radius: 25px;
    margin-top: 150px;
    margin-left: 90px;
}
.about-col-2 {
    flex-basis: 60%;
    margin-bottom: 100px;
    height: fit-content;
}
.about-col-2 h2 span {
    color: black;
    -webkit-text-stroke: 1.5px cyan;
    position: relative;
    display: inline-block;
}
.info-container {
    margin-top: 5rem;
    display: grid;
    grid-template-columns: .3fr 1fr;
}
.sub-title {
    font-size: 80px;
    font-weight: 600;
    color: white;
}
.tab-titles {
    padding-top: 2rem;
    display: flex;
    margin-bottom: 50px;
    flex-direction: column;
    border-radius: 50px;
    border-right: 2px dashed darkcyan;
}
.tab-links {
    margin-bottom: 5rem;
    font-size: 25px;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    color: rgb(252, 252, 252);
}
.tab-links::after {
    content: '';
    width: 0;
    height: 3px;
    background: #00FFFF;
    position: absolute;
    left: 0;
    bottom: -8px;
    transition: 0.5s;
}
.tab-links.active-link::after {
    width: 50%;
}
.tab-contents ul li {
    list-style: none;
    font-size: 20px;
}
.tab-contents ul li span {
    color: #EDE9E8;
    font-size: 23px;
}
.tab-contents {
    padding-top: 2rem;
    display: none;
    height: 330px;
    margin-left: 50px;
}
.tab-contents.active-tab {
    display: flex;
}
.tab-contents a {
    text-decoration: none;
}
.tab-contents a:link {
    color: #ababab;
}
.tab-contents a:visited {
    color: grey 
}
.tab-contents a:hover {
    color: cyan 
}
.logos {
    height: 45px;
    width: auto;
    margin: 15px 20px 10px 0px;
}
.php{
    height: 40px;
}
.ts{
    height: 35px;
}
.tailwind-logo{
    height: 35px;
}
/*SKILLS SECTION*/
#skills {
    padding: 30px 0;
    margin-left: 3%;
    margin-right: 3%;
    margin-bottom: 85px;
    margin-top: 140px;
    font-family: "Roboto";
}
.skills-container h3 span {
    color: black;
    -webkit-text-stroke: 1.5px cyan;
}
.my-skills {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    grid-gap: 20px;
    margin-top: 40px;
    text-align: center;
}
.my-skills h2 {
    margin-bottom: 15px;
}
.my-skills p {
    font-size: 20px;
}
.my-skills div {
    background: rgba(29, 29, 29, 0.696);
    padding: 40px;
    font-size: 20px;
    font-weight: 300;
    border-radius: 20px;
    transition: background 0.7s, transform 0.7s;
    border-top: 2px solid #808080;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.my-skills div i {
    font-size: 65px;
    margin-bottom: 30px;
}
.my-skills div:hover i{
    text-shadow: 0 0 7px #606060, 0 0 10px rgba(18, 227, 223, 0.57), 0 0 10px rgba(18, 227, 223, 0.57), 0 0 10px rgba(18, 227, 223, 0.57), 0 0 10px rgba(18, 227, 223, 0.57), 0 0 10px rgba(18, 227, 223, 0.57), 0 0 10px rgba(18, 227, 223, 0.57), 0 0 12px rgba(18, 227, 223, 0.438);
}
.my-skills div:hover h2 span{
    text-shadow: 0 0 7px #606060, 0 0 10px rgba(252, 252, 252, 0.57), 0 0 10px rgba(252, 252, 252, 0.57), 0 0 10px rgba(252, 252, 252, 0.57), 0 0 10px rgba(252, 252, 252, 0.57), 0 0 10px rgba(252, 252, 252, 0.57), 0 0 10px rgba(252, 252, 252, 0.57), 0 0 12px rgba(252, 252, 252, 0.57);
}
.my-skills div a {
    text-decoration: none;
    color: lightgray;
    font-size: 17.5px;
    margin-top: 20px;
    display: inline-block;
}
.my-skills div:hover {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(5, 75, 75, 0.504));
    transform: translateY(-20px);
    cursor: crosshair;
}
@keyframes openclose {
    0% {
        top: 0;
        width: 0;
   }
    25% {
        top: 0;
        width: 230px;
   }
    50% {
        top: 0;
        width: 0px;
   }
    75% {
        top: 0;
        width: 230px;
   }
    100% {
        top: 0;
        width: 0;
   }
}
/*PROJECTS SECTION*/
#works {
    padding: 50px 0;
    margin-left: 3%;
    margin-right: 3%;
    margin-bottom: 80px;
}
.works-container h5 {
    margin-bottom: 40px;
}
.works-container h5 span {
    color: black;
    -webkit-text-stroke: 1.5px cyan;
}
.work-content {
    margin-left: 1.5%;
    margin-right: -.4%;
}
.work-list {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    margin-top: 50px;
}
.project {
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}
.project-img {
    width: 95%;
    border-radius: 10px;
    display: block;
    transition: transform 0.5s;
}
.layer h6 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
}
.layer {
    width: 100%;
    height: 0;
    transition: height 0.5s;
    background: linear-gradient(rgba(0,0,0,0.6), rgb(33, 37, 37));
    border-radius: 0.8%;
    position: absolute;
    left: 0;
    bottom: 0;
    overflow: hidden;
    display: flex;
    align-items:end;
    justify-content: center;
    flex-direction: column;
    padding: 0 20px 0 50px;
    font-size: 14px;
}
.layer a {
    margin-top: 20px;
    color: black;
    font-size: 30px;
    text-decoration: none;
    line-height: 60px;
    background: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
}
.layer a:hover i{
    transition: all .4s ease-in-out;
    color: white;
    text-shadow: 0 0 7px #fff, 0 0 10px #000, 0 0 11px cyan, 0 0 15px cyan, 0 0 15px cyan, 0 0 15px cyan;
}
.layer a:hover{
    background-color: #000;
}
.layer p{
    font-size: 20px;
    text-align: right;
}
.layer h6{
    font-size: 30px;
}
.layer p, .layer h6{
    padding-left: 150px;
    text-align: right;
}
.swiper-pagination .swiper-pagination-bullet {
    background-color: white;
}
.swiper-pagination .swiper-pagination-bullet-active {
    background-color: cyan;
}
.swiper-pagination {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
}
.btn {
    display: block;
    margin: 50px auto;
    width: fit-content;
    border: 1px solid darkcyan;
    padding: 14px 50px;
    border-radius: 6px;
    text-decoration: none;
    color: #ffff;
    transition: background 0.5s;
}
.stack{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: fit-content;
    background: rgba( 0, 139, 139, 0.25 );
    box-shadow: 0 8px 0 0 rgba(255, 255, 255, 0.37);
    backdrop-filter: blur( 4px );
    -webkit-backdrop-filter: blur( 4px );
    border-radius: 10px;
    border: 1px solid rgba( 255, 255, 255, 0.18 );
    margin: 5px 0 34px 15px;
    padding: 5px;
    cursor: pointer;
}
.tech{
    margin: 0 5px;
    font-size: 50px;
}
.tailwind{
    height: 30px;
    filter: brightness(0) invert(1) 
}
.pug{
    height: 50px;
}
.nodejs{
    height: 50px;
}
.more{
    color: rgb(136, 135, 135);
    margin: 0 10px;
    font-size: 20px;
    transition: all 0.25s ease-in-out;
}
.stack:hover .more {
    color: rgb(80, 79, 79);
    text-shadow: 0 0 7px #fff, 0 0 10px rgb(0, 255, 229), 0 0 10px rgb(0, 255, 229), 0 0 12px rgb(0, 255, 229);
}
.projectDesc ~ img {
    transform: translateX(-50%);
}
.projectDesc ~ .layer {
    height: 87%;
}
.stack-shake{
    animation: shake 3s infinite;
}
@keyframes shake{
    0% {
        transform: translate(0, 0) rotate(0deg);
   }
    25% {
        transform: translate(5px, 5px) rotate(5deg);
   }
    50% {
        transform: translate(0, 0) rotate(0eg);
   }
    75% {
        transform: translate(-5px, 5px) rotate(-5deg);
   }
    100% {
        transform: translate(0, 0) rotate(0deg);
   }
}


/*CONTACT SECTION*/
#contacts {
    padding: 100px 0;
    margin-left: 3%;
    margin-right: 3%;
}
.contact-left h6 span {
    color: black;
    display: inline-flex;
    animation: shake-anim 1.3s infinite;
    -webkit-text-stroke: 1.5px cyan;
    margin-bottom: 10px;
}
.contact-left {
    flex-basis: 35%;
}
.contact-right {
    flex-basis: 60%;
}

.contact-left a {
    color: white;
    font-size: 80px;
    margin-right: 30px;
    transition: all .2s ease-in-out;
}
.contact-left a:hover {
    color: rgb(0, 0, 0);
    text-shadow: 0 0 7px #09f3ff, 0 0 10px rgb(0, 255, 229), 0 0 10px rgb(0, 255, 229), 0 0 12px rgb(0, 255, 229);
}
.contact-left p {
    font-size: 25px;
    margin-bottom: 40px;
}
.contact-left .fa-envelope {
    margin-right: 10px;
    color: darkcyan;
}
.btn.btn2 {
    display: inline-block;
    background: darkcyan;
    cursor: pointer;
    border: 2px solid rgba(220, 220, 220, 0.041);
}
.contact-right form {
    width: 100%;
}
form input, form textarea {
    width: 100%;
    border: 0;
    outline: none;
    background: #262626;
    padding: 15px;
    margin: 15px 0;
    color: white;
    font-size: 25px;
    border-radius: 6px;
}
form .btn2 {
    padding: 14px 60px;
    font-size: 18px;
    margin-top: 20px;
    cursor: pointer;
}
.copyright {
    width: 100%;
    text-align: center;
    padding: 25px 0;
    background-color: #262626;
    font-weight: 300;
    margin-top: 20px;
    font-size: 30px;
}
.contact-right h7 {
    font-size: 25px;
    font-style: italic;
}
.contact-right span {
    color: white;
    margin-top: -40px;
    display: block;
}
.btn.btn2:hover {
    background-color: rgb(0, 77, 77);
}
@keyframes shake-anim {
    0% {
        transform: translateX(0) 
   }
    25% {
        transform: translateX(5px) 
   }
    50% {
        transform: translateX(-5px) 
   }
    75% {
        transform: translateX(5px) 
   }
    100% {
        transform: translateX(0) 
   }
}
.copyright {
    font-size: 25px;
}

::-webkit-scrollbar {
  width: 20px;
}
::-webkit-scrollbar-track {
  background: #282828;
}
::-webkit-scrollbar-thumb {
  background: darkcyan;
}
::-webkit-scrollbar-thumb:hover {
  background: #555;
  box-shadow: 0px 0px 30px 10px cyan;
}

/*RESPONSIVE SECTION */
nav .fas {
    display: none;
}
/*MOBILE SECTION*/
@media only screen and (min-width:300px) and (max-width:1269px){
    .layer p{
        font-size: 10px;
   }
    .layer h6{
        font-size: 15px;
   }
    .layer p, .layer h6{
        padding-left: 11px;
        text-align: right;
   }
    .tech{
        font-size: 15px;
   }
    .more{
        font-size: 9px;
   }
    .tailwind{
        height: 15px;
        width: auto;
   }
    .pug{
        height: 15px;
    }
    .nodejs{
        height: 15px;
    }
}

@media only screen and (min-width:300px) and (max-width:376px) {
    #header {
        background-image: url('./Images/main/phonebg.gif');
   }
    .header-text {
        margin-top: 50%;
        margin-left: 55px;
        font-size: 15px;
   }
    .header-text p {
        margin-left: 28%;
   }
    .header-text h1 {
        font-size: 25px;
        margin-left: -8%;
        margin-top: 10px;
   }
    nav .fas {
        position: fixed;
        padding: 5px;
        z-index: 1;
        left: 0;
        top: 0;
        display: block;
        font-size: 25px;
        margin-top: 10%;
        margin-left: 91%;
   }
    nav .fa-bars {
        background-color: rgb(61, 61, 61);
   }
    nav ul {
        background: linear-gradient(rgba(0,0,0,1), rgb(0, 20, 20));
        position: fixed;
        top: 0;
        right: -200px;
        width: 200px;
        height: 100vh;
        padding-top: 50px;
        transition: right 0.4s;
        z-index: 2;
   }
    nav ul li {
        display: block;
        margin: 25px;
        height: 57px;
   }
    nav ul li span:nth-child(1) {
        font-size: 35px;
   }
    nav ul li a {
        color: white;
        font-weight: 500;
        text-decoration: none;
        font-size: 20px;
        position: relative;
   }
    nav ul .fas {
        position: absolute;
        top: 25px;
        left: 25px;
        cursor: pointer;
        margin-left: 60%;
   }
    .row {
        display: inline;
        justify-content: center;
        flex-wrap: nowrap;
   }
    .sub-title {
        font-size: 40px;
        margin-right: 0px;
        text-align: center;
   }
    .description p {
        font-size: 15px;
        padding: 30px;
        margin-bottom: 40px;
   }
    .about-col-1 img {
        width: 100%;
        margin-top: -50px;
        border-radius: 25px;
        margin-left: 0px;
   }
    .about-col-1, .about-col-2 {
        flex-basis: 100%;
        text-align: center;
   }
    .about-col-2 h2 span {
        margin-right: 1px;
        margin-bottom: 25px;
   }
    .about-col-2 {
        font-size: 14px;
        text-align: center;
   }
    .tab-titles {
        align-items: left;
        margin-left: 0px;
   }
    .tab-links {
        font-size: 14px;
        text-align: left;
        margin-right: 10px;
   }
    .tab-contents {
        text-align: left;
        margin-bottom: -100px;
   }
    .tab-contents ul li {
        font-size: 12px;
   }
    .tab-contents ul li span {
        color: white;
        font-size: 15px;
   }
    .skills-container {
        margin-top: 350px;
   }
    .my-skills h4 {
        font-size: 18px;
        font-weight: 500;
        margin-bottom: 15px;
   }
    .my-skills p {
        font-size: 15px;
   }
    .works-container h5 span {
        margin-right: -3%;
   }
    .medias {
        flex-basis: 30%;
   }
    .project-img {
        width: 200px;
        border-radius: 10px;
        display: block;
        transition: transform 0.5s;
   }
    .work-list h6 {
        font-size: 10px;
        margin-bottom: 3px;
        margin-top: 15px;
   }
    .work-list p {
        font-size: 8px;
   }
    .work-list p , .work-list h6{
        padding-left: 0px;
   }
    .layer a {
        margin-top: 10px;
        color: black;
        font-size: 15px;
        text-decoration: none;
        line-height: 30px;
        background: white;
        width: 30px;
        height: 30px;
        border-radius: 50%;
   }
    .social-list {
        display: grid;
        grid-template-columns: repeat(auto-fit,minmax(30px,1fr));
        grid-gap: 1px;
        margin-top: 50px;
        margin-left: 0px;
   }
    .contact-left, .contact-right {
        flex-basis: 100%;
        text-align: center;
        margin-top: 0px;
   }
    .contact-left p {
        font-size: 15px;
        margin-top: 20px;
   }
    form input, form textarea {
        font-size: 15px;
   }
    .copyright {
        font-size: 15px;
   }
   .medias{
    margin-left: 40px;
    margin-bottom: 20px;
}
   .contact-left a {
    color: white;
    font-size: 50px;
    text-align: center;
    transition: all .2s ease-in-out;
}
}
@media only screen and (max-width:362px){
    .skills-container {
        margin-top: 500px;
   }
}
@media only screen and (min-width:377px) and (max-width:599px) {
    #header {
        background-image: url('./Images/main/phonebg.gif');
   }
    .header-text {
        margin-top: 45%;
        margin-left: 80px;
        font-size: 15px;
   }
    .header-text p {
        margin-left: 15%;
   }
    .header-text h1 {
        font-size: 28px;
        margin-left: -18%;
        margin-top: 20px;
   }
    nav .fas {
        position: fixed;
        padding: 5px;
        z-index: 1;
        left: 0;
        top: 0;
        display: block;
        font-size: 25px;
        margin-top: 10%;
        margin-left: 91%;
   }
    nav .fa-bars {
        background-color: rgb(61, 61, 61);
   }
    nav ul {
        background: linear-gradient(rgba(0,0,0,1), rgb(0, 20, 20));
        position: fixed;
        top: 0;
        right: -200px;
        width: 200px;
        height: 100vh;
        padding-top: 50px;
        transition: right 0.4s;
        z-index: 2;
   }
    nav ul li {
        display: block;
        margin: 25px;
        height: 75px;
   }
    nav ul li span:nth-child(1) {
        font-size: 35px;
   }
    nav ul li a {
        color: white;
        font-weight: 500;
        text-decoration: none;
        font-size: 20px;
        position: relative;
   }
    nav ul .fas {
        position: absolute;
        top: 25px;
        left: 25px;
        cursor: pointer;
        margin-left: 60%;
   }
    .row {
        display: inline;
        justify-content: center;
        flex-wrap: nowrap;
   }
    .sub-title {
        font-size: 40px;
        margin-right: 0px;
        text-align: center;
   }
    .description p {
        font-size: 15px;
        padding: 30px;
        margin-bottom: 40px;
   }
    .about-col-1 img {
        width: 100%;
        margin-top: -50px;
        border-radius: 25px;
        margin-left: 0px;
   }
    .about-col-1, .about-col-2 {
        flex-basis: 100%;
        text-align: center;
   }
    .about-col-2 h2 span {
        margin-right: 1px;
        margin-bottom: 25px;
   }
    .about-col-2 {
        font-size: 14px;
        text-align: center;
   }
    .tab-titles {
        align-items: left;
        margin-left: 0px;
   }
    .tab-links {
        font-size: 14px;
        text-align: left;
        margin-right: 20px;
   }
    .tab-contents {
        text-align: left;
        margin-bottom: -100px;
   }
    .tab-contents ul li {
        font-size: 12px;
   }
    .tab-contents ul li span {
        color: white;
        font-size: 15px;
   }
    .skills-container {
        margin-top: 250px;
   }
    .my-skills h4 {
        font-size: 18px;
        font-weight: 500;
        margin-bottom: 15px;
   }
    .my-skills p {
        font-size: 15px;
   }
    .works-container h5 span {
        margin-right: -3%;
   }
    .medias {
        flex-basis: 30%;
   }
    .project-img {
        width: 200px;
        border-radius: 10px;
        display: block;
        transition: transform 0.5s;
   }
    .layer {
        width: 190px;
   }
    .work-list h6 {
        font-size: 11px;
        margin-bottom: 3px;
        margin-top: 15px;
   }
    .layer a {
        margin-top: 10px;
        color: black;
        font-size: 15px;
        text-decoration: none;
        line-height: 30px;
        background: white;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        text-align: center;
   }
    .social-list {
        display: grid;
        grid-template-columns: repeat(auto-fit,minmax(30px,1fr));
        grid-gap: 1px;
        margin-top: 50px;
        margin-left: 0px;
   }
    .contact-left, .contact-right {
        flex-basis: 100%;
        text-align: center;
        margin-top: 0px;
   }
    .contact-left p {
        margin-top: 20px;
        font-size: 15px;
   }
    form input, form textarea {
        font-size: 15px;
   }
    .copyright {
        font-size: 15px;
   }
   .medias{
    margin-left: 40px;
    margin-bottom: 20px;
}
   .contact-left a {
    color: white;
    font-size: 55px;
    text-align: center;
    transition: all .2s ease-in-out;
}
}
/*TABLET SECTION*/
@media only screen and (min-width:600px) and (max-width:1269px) {
    .tech{
        font-size: 25px;
   }
    .more{
        font-size: 16px;
   }
   .contact-left p{
    margin-top: 20px;
   }
   .medias{
    margin-left: 40px;
    margin-bottom: 20px;
}
   .contact-left a {
    color: white;
    font-size: 75px;
    text-align: center;
    transition: all .2s ease-in-out;
}
    .pug{
        height: 25px;
    }
    .nodejs{
        height: 25px;
    }
}
@media only screen and (min-width:600px) and (max-width:767px) {
    body {
        overflow-x: hidden;
   }
    #header {
        background-image: url('./Images/main/phonebg.gif');
   }
    .header-text {
        margin-top: 40%;
        margin-left: 70px;
        font-size: 20px;
   }
    .header-text h1 {
        font-size: 40px;
        margin-left: -5%;
   }
    .about-col-1 img {
        width: 500px;
        margin-left: 40px;
        margin-top: -50px;
   }
    .about-col-2 h2 span {
        color: black;
        -webkit-text-stroke: 1.5px cyan;
        position: relative;
        display: inline-block;
        text-transform: uppercase;
        animation: waviy 1s infinite;
        animation-delay: calc(.1s * var(--i));
        margin: -10px;
        margin-bottom: 25px;
   }
    nav .fas {
        position: fixed;
        padding: 5px;
        z-index: 1;
        left: 0;
        top: 0;
        display: block;
        font-size: 25px;
        margin-top: 10%;
        margin-left: 91%;
   }
    nav .fa-bars {
        background-color: rgb(61, 61, 61);
   }
    nav ul {
        background: linear-gradient(rgba(0,0,0,1), rgb(0, 20, 20));
        position: fixed;
        top: 0;
        right: -200px;
        width: 200px;
        height: 100vh;
        padding-top: 50px;
        transition: right 0.4s;
        z-index: 2;
   }
    nav ul li {
        display: block;
        margin: 25px;
        height: 85px;
   }
    nav ul li span:nth-child(1) {
        font-size: 35px;
   }
    nav ul li a {
        color: white;
        font-weight: 500;
        text-decoration: none;
        font-size: 20px;
        position: relative;
   }
    nav ul .fas {
        position: absolute;
        top: 25px;
        left: 25px;
        cursor: pointer;
        margin-left: 60%;
   }
    .sub-title {
        font-size: 60px;
        text-align: center;
   }
    .about-col-1, .about-col-2 {
        flex-basis: 100%;
        text-align: center;
   }
    .about-col-2 {
        font-size: 14px;
        text-align: center;
   }
    .about-col-2 h2 span {
        margin: -7.5px;
        margin-bottom: 25px;
   }
    .description p {
        font-size: 20px;
        padding: 20px;
        margin-bottom: 40px;
        width: 88%;
   }
    .tab-titles {
        align-items: left;
        margin-left: 0px;
   }
    .tab-links {
        font-size: 25px;
        margin-right: 20px;
        text-align: left;
   }
    .tab-contents {
        text-align: left;
   }
    .tab-contents ul li {
        font-size: 20px;
   }
    .tab-contents ul li span {
        color: white;
        font-size: 23px;
   }
    .my-skills h4 {
        font-size: 25px;
        font-weight: 500;
        margin-bottom: 15px;
   }
    .my-skills p {
        font-size: 20px;
   }
    .works-container h5 span {
        color: black;
        -webkit-text-stroke: 1.5px cyan;
        display: inline-block;
        position: relative;
        animation: flip 3s infinite;
        animation-delay: calc(.3s * var(--i));
        margin-right: -2.5%;
   }
    .work-list h6 {
        margin-top: 30px;
        font-size: 20px;
        margin-bottom: 10px;
   }
    .work-list p {
        font-size: 19px;
   }
    .layer a {
        margin-top: 10px;
        color: black;
        font-size: 30px;
        text-decoration: none;
        line-height: 60px;
        background: white;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        text-align: center;
        margin-top: 10px;
   }
    .project {
        border-radius: 10px;
        position: relative;
        overflow: hidden;
        flex-basis: 50%;
   }
    .contact-left, .contact-right {
        flex-basis: 100%;
        text-align: center;
        font-size: 25px;
   }
    .copyright {
        font-size: 20px;
   }
}
@media only screen and (min-width:768px) and (max-width:1000px) {
    body {
        overflow-x: hidden;
   }
    #header {
        background-image: url('./Images/main/phonebg.gif');
   }
    .header-text {
        margin-top: 35%;
        margin-left: 110px;
        font-size: 30px;
   }
    .header-text h1 {
        font-size: 50px;
        margin-left: -5%;
   }
    .about-col-1 img {
        width: 500px;
        margin-left: 40px;
        margin-top: -50px;
   }
    nav .fas {
        position: fixed;
        padding: 5px;
        z-index: 1;
        left: 0;
        top: 0;
        display: block;
        font-size: 25px;
        margin-top: 10%;
        margin-left: 91%;
   }
    nav .fa-bars {
        background-color: rgb(61, 61, 61);
   }
    nav ul {
        background: linear-gradient(rgba(0,0,0,1), rgb(0, 20, 20));
        position: fixed;
        top: 0;
        right: -200px;
        width: 200px;
        height: 100vh;
        padding-top: 50px;
        transition: right 0.4s;
        z-index: 2;
   }
    nav ul li {
        display: block;
        margin: 25px;
   }
    nav ul .fas {
        position: absolute;
        top: 25px;
        left: 25px;
        cursor: pointer;
        margin-left: 60%;
   }
    .about-col-2 h2 span {
        color: black;
        -webkit-text-stroke: 1.5px cyan;
        position: relative;
        display: inline-block;
        text-transform: uppercase;
        animation: waviy 1s infinite;
        animation-delay: calc(.1s * var(--i));
        margin: -10px;
        margin-bottom: 25px;
   }
    .sub-title {
        font-size: 60px;
        text-align: center;
   }
    .description p {
        font-size: 20px;
   }
    .about-col-1, .about-col-2 {
        flex-basis: 100%;
        text-align: center;
   }
    .about-col-2 {
        font-size: 14px;
        text-align: center;
   }
    .about-col-2 h2 span {
        margin: -7.5px;
        margin-bottom: 25px;
   }
    .description p {
        font-size: 20px;
        padding: 20px;
        margin-bottom: 40px;
        width: 100%;
   }
    .tab-titles {
        align-items: left;
        margin-left: 0px;
   }
    .tab-links {
        font-size: 25px;
        margin-right: 20px;
        text-align: left;
   }
    .tab-contents {
        text-align: left;
        margin-bottom: 50px;
   }
    .tab-contents ul li {
        font-size: 20px;
   }
    .tab-contents ul li span {
        color: white;
        font-size: 23px;
   }
    .my-skills h4 {
        font-size: 25px;
        font-weight: 500;
        margin-bottom: 15px;
   }
    .my-skills p {
        font-size: 20px;
   }
    .works-container h5 span {
        color: black;
        -webkit-text-stroke: 1.5px cyan;
        display: inline-block;
        position: relative;
        animation: flip 3s infinite;
        animation-delay: calc(.3s * var(--i));
        margin-right: -2.5%;
   }
    .tech{
        font-size: 30px;
    }
    .pug{
    height: 30px;
    }
    .nodejs{
    height: 30px;
    }
    .medias {
        flex-basis: 30%;
   }
    .work-list h6 {
        margin-top: 30px;
        font-size: 20px;
        margin-bottom: 10px;
   }
    .work-list p {
        font-size: 15px;
   }
    .layer a {
        margin-top: 10px;
        color: black;
        font-size: 30px;
        text-decoration: none;
        line-height: 60px;
        background: white;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        text-align: center;
        margin-top: 10px;
   }
    .project {
        border-radius: 10px;
        position: relative;
        overflow: hidden;
        flex-basis: 50%;
   }
    .contact-left, .contact-right {
        flex-basis: 100%;
        text-align: center;
        font-size: 25px;
   }
    .copyright {
        font-size: 20px;
   }
}
@media only screen and (min-width:1001px) and (max-width:1269px) {
    body {
        overflow-x: hidden;
   }
    #header {
        background-image: url('./Images/main/phonebg.gif');
   }
    .header-text {
        margin-top: 25%;
        margin-left: 140px;
        font-size: 40px;
   }
    .header-text h1 {
        font-size: 70px;
        margin-left: -5.5%;
   }
    .about-col-1 img {
        width: 500px;
        margin-left: 40px;
        margin-top: -50px;
   }
    nav .fas {
        position: fixed;
        padding: 5px;
        z-index: 1;
        left: 0;
        top: 0;
        display: block;
        font-size: 25px;
        margin-top: 10%;
        margin-left: 91%;
   }
    nav .fa-bars {
        background-color: rgb(61, 61, 61);
   }
    nav ul {
        background: linear-gradient(rgba(0,0,0,1), rgb(0, 20, 20));
        position: fixed;
        top: 0;
        right: -200px;
        width: 200px;
        height: 100vh;
        padding-top: 50px;
        transition: right 0.4s;
        z-index: 2;
   }
    nav ul li {
        display: block;
        margin: 25px;
        height: 90px;
   }
    nav ul li span:nth-child(1) {
        font-size: 35px;
   }
    nav ul li a {
        color: white;
        font-weight: 500;
        text-decoration: none;
        font-size: 20px;
        position: relative;
   }
    nav ul .fas {
        position: absolute;
        top: 25px;
        left: 25px;
        cursor: pointer;
        margin-left: 60%;
   }
    .about-col-2 h2 span {
        color: black;
        -webkit-text-stroke: 1.5px cyan;
        position: relative;
        display: inline-block;
        text-transform: uppercase;
        animation: waviy 1s infinite;
        animation-delay: calc(.1s * var(--i));
        margin: -10px;
        margin-bottom: 25px;
   }
    .sub-title {
        font-size: 60px;
        text-align: center;
   }
    .description p {
        font-size: 20px;
   }
    .about-col-1, .about-col-2 {
        flex-basis: 100%;
        text-align: center;
   }
    .about-col-2 {
        font-size: 14px;
        text-align: center;
   }
    .about-col-2 h2 span {
        margin: -7.5px;
        margin-bottom: 25px;
   }
    .description p {
        font-size: 20px;
        padding: 20px;
        margin-bottom: 40px;
        width: 100%;
   }
    .tab-titles {
        align-items: left;
        margin-left: 0px;
   }
    .tab-links {
        font-size: 25px;
        margin-right: 20px;
        text-align: left;
   }
    .tab-contents {
        text-align: left;
        margin-bottom: 50px;
   }
    .tab-contents ul li {
        font-size: 20px;
        margin-left: -50px;
   }
    .tab-contents ul li span {
        color: white;
        font-size: 23px;
   }
    .my-skills h4 {
        font-size: 25px;
        font-weight: 500;
        margin-bottom: 15px;
   }
    .my-skills p {
        font-size: 20px;
   }
    .works-container h5 span {
        color: black;
        -webkit-text-stroke: 1.5px cyan;
        display: inline-block;
        position: relative;
        animation: flip 3s infinite;
        animation-delay: calc(.3s * var(--i));
        margin-right: -2.5%;
   }
    .medias {
        flex-basis: 30%;
   }
    .work-list h6 {
        margin-top: 30px;
        font-size: 20px;
        margin-bottom: 10px;
   }
    .work-list p {
        font-size: 15px;
   }
    .layer a {
        margin-top: 10px;
        color: black;
        font-size: 30px;
        text-decoration: none;
        line-height: 60px;
        background: white;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        text-align: center;
        margin-top: 10px;
   }
    .project {
        border-radius: 10px;
        position: relative;
        overflow: hidden;
        flex-basis: 50%;
   }
    .contact-left, .contact-right {
        flex-basis: 100%;
        text-align: center;
        font-size: 25px;
   }
    .copyright {
        font-size: 20px;
   }
    .tech{
        font-size: 40px;
    }
    .pug{
        height: 40px;
    }
    .nodejs{
        height: 40px;
    }
    .more{
        font-size: 15px;
   }
    .tab-contents{
        margin-left: 140px;
   }
}
/*1280 SECTION*/
@media only screen and (min-width:1270px) and (max-width:1350px) {
    nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        margin-left: 5%;
        margin-top: 1%;
   }
    nav ul li {
        display: block;
        margin: 25px;
        height: 90px;
   }
    nav ul li span:nth-child(1) {
        font-size: 35px;
   }
    nav ul li a {
        color: white;
        font-weight: 500;
        text-decoration: none;
        font-size: 16px;
        position: relative;
   }
    .header-text {
        font-size: 25px;
   }
    .header-text h1 {
        font-size: 50px;
   }
    .about-col-2 h2 span {
        margin: -8px;
        margin-bottom: 25px;
   }
    .about-col-1 img {
        width: 400px;
        margin-top: 200px;
        margin-left: 30px;
   }
    .sub-title {
        font-size: 62px;
        font-weight: 600;
        color: white;
   }
    .description p {
        font-size: 17.5px;
   }
    .tab-links {
        font-size: 23px;
   }
    .tab-contents {
        margin-bottom: 30px;
   }
    .tab-contents ul li {
        font-size: 18px;
   }
    .tab-contents ul li span {
        font-size: 20px;
   }
    .contact-left p {
        margin-top: 20px;
        font-size: 20px;
   }
    form input, form textarea {
        font-size: 18px;
   }
    .layer p{
        font-size: 15px;
   }
    .layer h6{
        font-size: 20px;
   }
}
/*1366 SECTION*/
@media only screen and (min-width:1350px) and (max-width:1379px) {
    nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        margin-left: 5%;
        margin-top: 1%;
   }
    nav ul li {
        display: inline-block;
        list-style: none;
        margin: 30px 20px;
        height: 70px;
        width: 80px;
        overflow: hidden;
   }
    nav ul li a {
        color: white;
        text-decoration: none;
        font-size: 14.3px;
        position: relative;
   }
    nav ul li span:nth-child(1) {
        color: rgba(0, 255, 255, 0.801);
        background-color: rgba(255, 255, 255, 0.075);
        font-size: 30px;
        border-radius: 15px;
   }
    .header-text {
        font-size: 30px;
   }
    .header-text h1 {
        font-size: 50px;
   }
    .about-col-2 {
        margin-bottom: -10px;
   }
    .about-col-2 h2 span {
        margin: -8px;
        margin-bottom: 25px;
   }
    .about-col-1 img {
        margin-left: 50px;
        width: 392px;
        margin-top: 200px;
   }
    .sub-title {
        font-size: 67px;
        font-weight: 600;
        color: white;
   }
    .description p {
        font-size: 16px;
   }
    .tab-links {
        font-size: 20px;
   }
    .tab-contents {
        margin-bottom: 25px;
   }
    .tab-contents ul li {
        font-size: 17px;
   }
    .tab-contents ul li span {
        font-size: 18px;
        margin-bottom: 3px;
   }
    .my-skills p {
        font-size: 15px;
   }
    .contact-left p {
        margin-top: 20px;
        font-size: 20px;
   }
    form input, form textarea {
        font-size: 18px;
   }
    .copyright {
        font-size: 20px;
   }
}
/*1440 SECTION*/
@media only screen and (min-width:1380px) and (max-width:1449px) {
    nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        margin-left: 5%;
        margin-top: 1%;
   }
    nav ul li {
        display: inline-block;
        list-style: none;
        margin: 30px 20px;
        height: 80px;
        width: 100px;
        overflow: hidden;
   }
    nav ul li a {
        color: white;
        text-decoration: none;
        font-size: 18px;
        position: relative;
   }
    nav ul li span:nth-child(1) {
        color: rgba(0, 255, 255, 0.801);
        background-color: rgba(255, 255, 255, 0.075);
        font-size: 30px;
        border-radius: 15px;
   }
    .header-text {
        font-size: 30px;
   }
    .header-text h1 {
        font-size: 60px;
   }
    .about-col-2 h2 span {
        margin: -8px;
        margin-bottom: 25px;
   }
    .about-col-1 img {
        width: 500px;
        margin-top: 150px;
        margin-left: 0px;
   }
    .sub-title {
        font-size: 70px;
        font-weight: 600;
        color: white;
   }
    .description p {
        font-size: 17.5px;
   }
    .tab-links {
        font-size: 23px;
   }
    .tab-contents {
        margin-bottom: 30px;
   }
    .tab-contents ul li {
        font-size: 18px;
   }
    .tab-contents ul li span {
        font-size: 20px;
   }
    .contact-left p {
        margin-top: 20px;
        font-size: 20px;
   }
    form input, form textarea {
        font-size: 18px;
   }
}
/*1600 SECTION*/
@media only screen and (min-width:1450px) and (max-width:1600px) {
    nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        margin-left: 5%;
        margin-top: 1%;
   }
    nav ul li {
        display: inline-block;
        list-style: none;
        margin: 30px 20px;
        height: 80px;
        width: 100px;
        overflow: hidden;
   }
    nav ul li a {
        color: white;
        text-decoration: none;
        font-size: 18px;
        position: relative;
   }
    nav ul li span:nth-child(1) {
        color: rgba(0, 255, 255, 0.801);
        background-color: rgba(255, 255, 255, 0.075);
        font-size: 30px;
        border-radius: 15px;
   }
    .header-text {
        font-size: 30px;
   }
    .header-text h1 {
        font-size: 60px;
   }
    .about-col-2 h2 span {
        margin: -8px;
        margin-bottom: 25px;
   }
    .about-col-1 img {
        width: 500px;
        margin-top: 150px;
   }
    .sub-title {
        font-size: 70px;
        font-weight: 600;
        color: white;
   }
    .description p {
        font-size: 17.5px;
   }
    .tab-links {
        font-size: 23px;
   }
    .tab-contents {
        margin-bottom: 30px;
   }
    .tab-contents ul li {
        font-size: 18px;
   }
    .tab-contents ul li span {
        font-size: 20px;
   }
    .contact-left p {
        margin-top: 20px;
        font-size: 20px;
   }
    form input, form textarea {
        font-size: 18px;
   }
}
/*1920+ SECTION*/
@media only screen and (min-width:1800px) and (max-width:6000px) {
    .projectDesc ~ .layer {
        height: 90%;
   }
    .works-container h5 span {
        margin-right: -1.3%;
   }
    .logos{
        height: 60px;
        width: auto;
   }
    .tech{
        font-size: 70px;
   }
    .my-skills div {
        height: 340px;
        font-size: 30px;
   }
    .more{
        font-size: 25px;
   }
    .layer h6{
        font-size: 40px;
   }
    .layer p{
        font-size: 30px;
   }
    .layer a {
        width: 80px;
        height: 80px;
        font-size: 40px;
        padding-top: 10px;
   }
    .php{
        height: 45px;
   }
    .ts{
        height: 45px;
    }
    .tailwind-logo{
        height:40px 
   }
    .projectDesc ~ .layer {
        height: 87%;
   }
}
/*DESKTOP SECTION*/
@media only screen and (min-width:1270px) and (max-width:6000px) {
    nav ul {
        display: flex;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        border-bottom-right-radius: 50px;
        border-bottom-left-radius: 50px;
   }
    .sticky {
        box-shadow: 0 8px 32px 0 rgba(0, 255, 255, 0.37);
        background: rgba(8, 8, 8, 0.35);
        transition: all .3s ease-in-out;
        height: 10vh;
        backdrop-filter: blur( 8px );
        -webkit-backdrop-filter: blur( 8px );
        border-radius: 10px;
        border-radius: 10px;
   }
    .contact-left p{
        margin-top: 30px;
   }
}
/*MOBILE TO TABLET SECTION*/
@media only screen and (min-width:300px) and (max-width:1269px) {
    nav ul {
        background: linear-gradient(rgba(0,0,0,1), rgb(0, 20, 20));
        border-top-left-radius: 20px;
        border-bottom-left-radius: 20px;
   }
}