/** Reset CSS **/

*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

html, body, #forScrollbar, .main, .parent
{
    max-width: 100vw;
    overflow-x: hidden;
}

#forScrollbar
{
    position:absolute;
    top: 0px;
    bottom: 0px;
    right: 0px;
    left: 0px;
    overflow: scroll;
}

.loader
{
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 10;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

::selection {
    background: #e56b6f;
  }

body
{
    font-family: 'Space Mono', monospace;
    font-size: 15px;
    color: #fff;
    background-color: #1D1D1D;
    line-height: 1.5;
}

p
{
    line-height: 2;
}

a, a:hover
{
    color: #fff;
    text-decoration: none;
}

h2
{
    font-size: 36px;
}

h3
{
    font-size: 28px;
}

h5
{
    font-size: 22px;
}

h1, h2, h3, h4, h5, h6
{
    font-weight: bold;
    color: #fff;
}

.btn-custom-1
{
    padding: 20px 40px;
    margin: 10px 0;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    color: #ffffff;
    background-color: #4E5FFC;
    border: 3px solid #4E5FFC;
}

.btn-custom-1:hover
{
    border: 3px solid #C0C8FF;
}

.btn-custom-2
{
    padding: 20px 40px;
    margin: 10px 0;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    color: #4E5FFC;
    background-color: #ffffff;
    border: 3px solid #4E5FFC;
}

.btn-custom-2:hover
{
    color: #ffffff;
    background-color: #4E5FFC;
}

.full-width
{
    width: 100%;
}

.img-fluid
{
    border-radius: 5px;
}

.overview, .myprojects
{
    background-color: #1D1D1D;
}

.parent
{
    padding: 0;
}


/** Header Styles **/

header
{
    position: fixed;
    z-index: 10;
    width: 100%;
}

.navbar
{
    font-family: 'Roboto', sans-serif;
    padding: 25px 0px;
}

a.navbar-brand
{
    font-size: 22px;
    font-weight: bold;
}

.bg-darker
{
    background-color: #0b090a;
    opacity: 0.9;
}

nav a, nav a:hover
{
    color: #fff;
}

#menu a
{
    color: #fff;
}

li.nav-item a.nav-link
{
    position: relative;
    display: inline-block;
}

li.nav-item a.nav-link::after
{
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 2px;
    background-color: #fff;
    content: '';
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

li.nav-item.active a.nav-link::after
{
    width: 100%;
}

li.nav-item a.nav-link:hover::after
{
    width: 100%;
}

.navbar-expand-lg .navbar-nav .nav-link
{
    padding: 0;
}

li.nav-item
{
    margin: 0 15px;
}

li.nav-item:last-child
{
    margin-right: 0;
}

.navbar-toggler-icon
{
    background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

#logo
{
    width: 30px;
}


/** Social Icons **/

.social-icons
{
    margin-top: 30px;
}

.social-icons a
{
    font-size: 30px;
    padding: 0 10px;
}

.fa-github
{
    color: #ffd166;
}

.fa-linkedin-square
{
    color:#0077B5;
}

.fa-facebook
{
    color:#4867AA;
}

.fa-instagram
{
    color: #F54C58;
}

.social-icons a i:hover
{
    color: #fff;
}


/** Main CSS Styles **/

.main
{
    width: 100%;
    height: 100vh;
    background: url(imgs/cover.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    color: #fff;
    text-align: center;
    position: relative;
}

.main::before
{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0, 0.7);
}

.main-content
{
    z-index: 1;
}

.main-content .welcome
{
    font-weight: bold;
    font-size: 22px;
}

.main-content .type
{
    font-size: 60px;
    margin-top: 20px;
}

canvas
{
    display: block;
}

#myparticles
{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.type .mytext
{
    font-weight: bold;
}


/** About Styles **/

.about
{
    color: #fff;
    padding: 10px 60px;
    font-size: 15px;
    font-weight: bold;
    display: inline-block;
    margin: 60px 0;
    border-radius: 10px;
}

.hello, #hello
{
    font-size: 40px;
    margin-bottom: 20px;
}

#ambition, #imagination, #zeal, #skydiver, #runner, #snowboarder
{
    font-size: 17px;
}

#ambition
{
    color: #ff6b6b;
}

#imagination
{
    color: #ffe66d;
}

#zeal
{
    color: #4ecdc4;
}

#skydiver a
{
    color: #1565c0;
}

#runner
{
    color: #42a5f5;
}

#snowboarder
{
    color: #abc4ff;
}

.about img
{
    width: 100%;
}

.about h3
{
    margin-bottom: 15px;
}

.about h5
{
    margin-bottom: 20px;
}

.about #hello, .about p
{
    margin-left: 30px;
}

#signature
{
    font-family: 'Comforter Brush', cursive;
    font-size: 60px;
    margin-top: 30px;
}

.about-contact
{
    color: #333;
}


/** Overview Styles **/

.overview
{
    position: relative;
    width: 100%;
    height: 100%;
    margin: 5px auto;
    /* border-radius: 10px; */
    color: #ddd;
    background-color: #EDEDED;
    /* background: rgb(17,18,20);
    background: linear-gradient(0deg, rgba(17,18,20,1) 0%, rgba(60,64,78,1) 100%); */
}

.overview .container
{
    height: 100%;
}

.overview-header
{
    margin: 20px auto;
    color: #1D1D1D;
}

.overview .body
{
    margin-bottom: 20px;
    border-radius: 8px;
}

.overview h3
{
    margin: 25px auto;
}

.overview .card
{
    width: 85%;
    height: 400px;
    background-color: #1D1D1D;
    border-radius: 18px;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.9);
    text-align: center;
    margin: 30px auto;
    z-index: 6;
}

.overview .card-cover
{
    width: 100%;
    height: 400px;
    border-radius: 18px;
    background-color: #1D1D1D;
    z-index: 5;
}

.card img
{
    margin-top: 22px;
    border-radius: 18px;
    height: 200px;
    width: 85%;
}

.education h3, .education h5
{
    color: #ef476f;
}

.experience h3, .experience h5
{
    color: #ffd166;
}

.leadership h3, .leadership h5
{
    color: #06d6a0;
}

.overview .card-text
{
    margin-top: 40px;
}

.overview ul
{
    list-style: none;
    padding: 0;
}

.card li
{
    margin: 10px auto;
}

.card-text p
{
    margin-top: 30px;
}

.overview strong
{
    display: block;
    color: #ffffff;
    font-size: 20px;
}

.overview em
{
    color: #8e9aaf;
}

.rgb::after
{
    content:"";
    background: linear-gradient(45deg,
    #ff0000 0%, 
    #ff9a00 10%,
    #d0de21 20%,
    #4fdc4a 30%, 
    #3fdad8 40%,
    #2fc9e2 50%, 
    #1c7fee 60%, 
    #5f15f2 70%, 
    #ba0cf8 80%, 
    #fb07d9 90%, 
    #ff0000 100%  )
    repeat 0% 0% / 300% 100%;
    position: absolute;
    inset: -3px;
    border-radius: 16px;
    filter: blur(8px);
    transform: translateZ(-5px);
    z-index: -5;
    animation: rgb 6s linear infinite;
}

@keyframes rgb
{
    0% {background-position: 0% 50%;}
    50% {background-position: 100% 50%;}
    100% {background-position: 0% 50%;}
}

#overview-btn
{
    margin-bottom: 30px;
}


/** Technical Skills Styles **/

.technicals
{
    width: 100%;
    height: 100%;
    padding-bottom: 30px;
    /* border-radius: 10px; */
    color: #ddd;
    background-color: #000000;
}

.technicals .container
{
    margin-bottom: 30px;
}

.technicals h2
{
    margin-top: 20px;
}

.technicals h3
{
    margin-bottom: 50px;
}

.first-box
{
    margin-top: -200px;
    margin-bottom: 50px;
}

.first-box h5, .second-box h5
{
    color: #FFD166;
}

.first-choice, .used-before:hover
{
    border-radius: 5px;
}

.technicals .logo
{
    width: 75px;
    margin: 10px 20px;
}

.first-choice:hover, .used-before:hover, .know-how:hover
{
    background-color: #fff;
}

#technicals-btn
{
    margin-top: 50px;
    margin-bottom: -30px;
}


/** MyProjects Styles **/

.myprojects
{
    position: relative;
    width: 100%;
    height: 100%;
    /* border-radius: 10px; */
    background-color: #EDEDED;
}

.myprojects h2
{
    margin: 20px auto;
    color: #1D1D1D;
}

.myprojects-content
{
    margin-top: 20px;
}

.project-single
{
    height: 600px;
    color: #ffffff;
    margin: 30px 0;
    border-radius: 10px;
    padding: 25px;
    position: relative;
}

.project-left
{
    /* background-color: #ef476f; */
    background: url(imgs/fire.jpg);
    background-position: center;
    background-size: contain;

}

.project-middle
{
    /* background-color: #ffd166; */
    background: url(imgs/trees.jpg);
    background-position: center;
    background-size: contain;
}

.project-right
{
    /* background-color: #06d6a0; */
    background: url(imgs/blue-tech.jpg);
    background-position: center;
    background-size: contain;

}

.project-single .project-name
{
    margin: 30px 0;
}

.project-single .project-icons
{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    margin-bottom: 20px;
}

.project-single .project-icons:hover
{
    background-color: #ffffff;
}

.project-single .project-icons .img-fluid
{
    height: 40px;
    margin: 10px 20px;
}

.project-single .img-fluid
{
    height: 200px;
}

.project-single h5
{
    font-size: 30px;
}

.project-single h7
{
    display: block;
    font-size: medium;
}

.project-single:hover
{
    transform: scale(1.08);
    transition: all 0.2s ease-in-out;
}

.project-single .project-icons .logo
{
    width: 40px;
}

#myprojects-btn
{
    margin-bottom: 30px;
}


/** Contact Styles **/

.contact-top
{
    margin-top: 60px;
    margin-bottom: 60px;
}

.contact h2
{
    margin: 20px auto;
}

.contact-top h7
{
    font-weight: bold;
}

.contact i .fa
{
    margin-right: 10px;
}

.contact-address
{
    color: #ef476f;
}

.contact-email
{
    color: #ffd166;
}

.contact-phone
{
    color: #06d6a0;
}

#contact-words
{
    padding-left: 40px;
}

.contact h4
{
    font-size: 40px;
    color: #ffba08;
}

.contact h6
{
    font-size: 20px;
    margin: 30px 0;
}

#contact-btn
{
    margin-top: 20px;
}

.contact .img-fluid
{
    width: 100%;
}


/** Footer Styles **/

footer
{
    height: 80px;
    background-color: #0b090a;
    opacity: 0.9;
    z-index: -1;
}

footer .container, footer .container .row
{
    height: 100%;
}

.back-to-top, .copyright
{
    height: 100%;
    text-align: center;
}

.back-to-top, .copyright i, .copyright h7
{
    color: #fff;
}

