*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }
    html,body
    {
    height: 100%;
    width: 100%;
    
    }

@font-face { font-family: AverageSans-Regular; src: url('fonts\Average_Sans\AverageSans-Regular.ttf'); } 
.main{
    width: 100vw;
    height: 100vh;
    background-color: #101010;
}

.loader {
    width: 35px;
    height: 3px;
    display: block;
    margin: auto;
    position: relative;
    border-radius: 4px;
    color: #FFF;
    box-sizing: border-box;
    animation: animloader 1s linear infinite;
  }
  
  @keyframes animloader {
    0% { box-shadow: -10px 25px, 10px 35px , 0px 45px }
    25% { box-shadow: 0px 25px ,  0px 35px, 10px 45px }
    50% { box-shadow: 10px 25px, -10px 35px, 0px 45px }
    75% { box-shadow: 0px 25px, 0px  35px, -10px 45px }
    100% { box-shadow: -10px 25px, 10px  35px, 0px 45px}
  }

.custom-nav{
    width: 75px;
    height: 75px;
    display: inline-block;
    position: fixed;
    right: 0%;
    top: 2%;
    
    background-color: #1E1E1E;
    text-align: center;
    align-items: center;
    color: white;
    justify-content: center;
    font-size: 20px;
    margin-left: 10%;
    margin-right: 10%;
    border-radius: 50%;
}
.dropdown-content {
    display: none;
    position: absolute;
    top:75px;
    /* min-width: 160px; */
    /* box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); */
    /* z-index: 1; */
    margin-top: 10px;
    
  }

  .dropdown-content a{
    width: 65px;
    height: 50px;
    margin-top: 1%px;
    visibility: hidden;
  }
  .dropdown-content a:hover {color: #ddd; } 

.custom-nav:hover .dropdown-content {display: block; }

.custom-nav:hover {
    height: 250px !important;
    border-radius: 15px;
    transition: 0.5s ease-in-out, opacity 0.5s ease-in-out 1s;
}

.custom-nav:hover a{
    visibility: visible;
    transition: 0.5s ease-in-out, opacity 0.5s ease-in-out 1s;
}
  
  .dropdown-content a {
    color: white;
    text-decoration: none;
    display: block;
  }
  
.content{
    display: flex;
    height: 95%;
    margin-left: 10%;
    margin-right: 10%;
}

.right{
    width: 60%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.right-allign{
    width: 80%;
    height: 30%;
    color: white;
}

.right-allign h2{
    font-size: 3vw;
    font-weight: 600;
    font-family: AverageSans-Regular;
    letter-spacing: 0.15vw;
}

.right-allign p{
    font-size: 1.1vw;
    font-weight: 400;
}


.left{
    width: 40%;    
    display: flex;
    align-items: center;
    justify-items: center;
}

.col .contents{
    padding: 0px 30px;
    border-left: 2px solid;
    border-width: 3px;
}


.col .contents .box::before{
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    left: -7px;
    background-color: #316AFC;
}

.box ul{
    padding-left: 0.8rem;
}

.box ul li{
    font-size: 1vw;
}

.first-section{
    background-color: #101010;
    padding-left: 15% !important;
    align-items: center;
    color: white;
}

.first-section h1{
    line-height: 100px;
}

.second-section{
    background-color: #131313;
    padding-right: 15% !important;
    align-items: center;
    color: white;
}

.second-section h1{
    line-height: 100px;
}
.second-section p{
    line-height: 35px;
}
.second-section p i{
    background-color: #316AFC;
    border-radius: 25%;
    padding: 3px;
    font-size: 0.8vw;
}

.posts{
    width: 100%;
    margin: 20px;
    margin-right: 100px;
    padding: 2%;
    background-color: #1E1E1E;
    box-shadow: -15px 10px #316AFC;
}

.footer-bg{
    padding: 15px;
    color: white;
    background-color: #101010 !important;
}

.work-section{
    background-color: #101010;
    padding-left: 15% !important;
}

.work-section h1{
    color: white;
    line-height: 100px;
}

.work-section p{
    color: white;
}

#git-data a{
    
    line-height: 20px;
    color: white;
    margin: 4%;
    text-decoration: none;
}

#git-data a i{
    color: #316AFC;
}
@media only screen and (max-width: 600px) {
    .custom-nav{
        top: 5px;
        right: 0%;
        margin-right: 2%;
        z-index: 100;
    }
    .main{
        height: 100vh
    }

    .content{
        display: block;
        margin: 0%;
    }

    .right{
        display: block;
        width: 100%;
        height: 40vh;
        position: absolute;
        left: 5%;
        bottom: 0%;
        z-index: 100;
        background: transparent;
    }

    .left{
        position: absolute;
        width: 90%;
        right: 0;
        top: 10%;
        z-index: 0;
    }

    .left .left-allign img{
        width: 100%;
        
        opacity: 0.5;
    }

    .right-allign h2{
        font-size: 6vw;
        font-family: AverageSans-Regular;
        letter-spacing: 0.15vw;
    }

    .right-allign p{
        font-size: 3.2vw;
        font-weight: 400;
    }

    .right-allign a{        
        background-color: #316AFC;
        width: 25vw;
        text-align: center;
        justify-content: center;
        padding: 10px;
        font-size: 4vw;
        border-radius: 30px;
    }
    .first-section{
        padding-left: 0 !important;
    }

    .first-section ul li{
        font-size: 4vw !important;
    }

    .second-section i{
        padding: 2px;
        font-size: 3.5vw;
    }

    .work-section {
        padding-left: 5% !important;
    }

    .posts{
        width: 90% !important;
    }
    #git-data a{
        display: block;
        width: 100%;
        line-height: 20px;
        color: white;
        margin: 1%;
        text-decoration: none;
    }

    .second-section p i{
        font-size: 2.5vw;
    }
  }