:root{
    --main-bg-color:#1d1d20;
    --main-higlight-color:#ffcc00; /*#0edea6;*/
    --hover-color:#edbe02;
    --scrollbarBG: #2a323c;
    --thumbBG: #ffcc00;
}
html {
    scroll-behavior: smooth;
}

body, h1, h2, p {
    margin: 0;
    padding: 0;
}

/* Basic styling */
body {
    font-family: 'Raleway', sans-serif;
    background-color: var(--main-bg-color);
    -webkit-font-smoothing: antialiased;
    scrollbar-width: thin;
    scrollbar-color: var(--thumbBG) var(--scrollbarBG);
}
body::-webkit-scrollbar {
    width: 11px;
}
body::-webkit-scrollbar-track {
    background: var(--scrollbarBG);
}
body::-webkit-scrollbar-thumb {
    background-color: var(--thumbBG) ;
    border-radius: 6px;
    border: 3px solid var(--scrollbarBG);
}
header {
    color: #fff;
    z-index: 9999;
}
section {
    margin-bottom: 20px;
}
.navbar-nav{
    justify-content: flex-end;
}
nav.navbar{
    background-color: rgb(0 0 0 / 0%);
    backdrop-filter: blur(2px) saturate(128%) contrast(100%) brightness(135%);
    -webkit-backdrop-filter: blur(2px) saturate(128%) contrast(100%) brightness(135%);
}
nav ul {
    list-style: none;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
}
.navbar{
    z-index: inherit;
}
a.nav-item.nav-link {
    padding: 10px 20px !important;
    margin-right: 10px;
    font-weight: 500;
    color: #ffffff !important;
    border-radius: 35px;
    transition: all 0.5s;
}
a.nav-item.nav-link.active {
    color: #000000 !important;
    background-color: var(--main-higlight-color);
    font-weight: 600;
    box-shadow: 4px 3px 0px 0px rgb(255 255 255);
}
.navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .nav-link:hover{
    box-shadow: 4px 3px 0px 0px rgb(255 255 255);
}
button.navbar-toggler {
    border: none !important;
    box-shadow: none !important;
}
.mb-10{
    margin-bottom: 10px;
}
.mb-15{
    margin-bottom: 15px;
}
/*Logo text*/
.navbar-dark .navbar-brand{
    font-weight: 600;
}
.logo-text{
    font-family: 'Source Code Pro', monospace;
}
.type-text {
    position: relative;
}
.type-text::after {
    content: '';
    display: block;
    position: absolute;
    right: -5px;
    top: 0;
    height: 100%;
    width: 2px;
    background-color: var(--main-higlight-color);
    animation: type .5s infinite;
    -webkit-animation: type .5s infinite;
}
@-webkit-keyframes type {
    0% {
        opacity: 1;
    }
    50% {
        opacity: .5;
    }
    100% {
        opacity: 0;
    }
}
@keyframes type {
    0% {
        opacity: 1;
    }
    50% {
        opacity: .5;
    }
    100% {
        opacity: 0;
    }
}
/*Logo text End*/
#home {
    /*position: relative;*/
    overflow: hidden;
    height: 100vh;
    background-image: url(../media/home-bg-intro.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
.intro-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 99;
}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
.intro-set {
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    justify-content: center;
    align-items: flex-start;
    height: 95vh;
    color: #ffffff;
}
p.intro-p {
    margin: 0;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 500;
}
.intro-set h1 .small-letter {
    font-weight: 100;
    margin-left: -4px;
}
.intro-set h1 {
    font-size: 60px;
    font-weight: 700;
    letter-spacing: 2px;
}
.title-job{
    color: var(--main-higlight-color);
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
}
p.desc-job {
    width: 75%;
    font-size: 18px;
    font-weight: 500;
}
a.hire-me {
    color: #000000;
    background-color: var(--main-higlight-color);
    padding: 15px 55px;
    border-radius: 35px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.5s;
    cursor: pointer;
    position: relative;
}
a.hire-me:after {
    content: url(../media/arrow-right.svg);
    position: absolute;
    opacity: 0;
    top: 17px;
    right: -20px;
    transition: 0.5s;
}
a.hire-me:hover {
    background-color: var(--hover-color);
    box-shadow: 5px 4px 0px 0px rgb(255 255 255);
}
a.hire-me:hover:after {
    opacity: 1;
    right: 20%;
}
footer {
    text-align: center;
    padding: 1rem;
    color: #fff;
}
.social-media{
    margin-top: 100px;
    height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    align-content: flex-end;
    z-index: 9999;
}
.social-media p {
    font-family: 'Niconne', cursive;
    color: #ffffff;
    font-size: 30px;
    margin-right: 10px;
}
.social-media ul{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}
.social-media ul li{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}
.social-media ul li > a{
    display: inline-block;
    background-color: var(--main-higlight-color);
    padding: 12px;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    text-align: center;
    margin-right: 5px;
    transition: all 0.5s;
}
.social-media ul li > a:hover {
    box-shadow: 2px 2px 0px 0px rgb(255 255 255);
}
.social-media ul li > a:hover .sm-icons {
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(0deg);
}
.sm-icons{
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 100%;
    display: block;
    transition: all 0.5s;
}
.facebook{
    background-image: url(../icons/facebook.png);
}
.instagram{
    background-image: url(../icons/instagram.png);
}
.linkedIn{
    background-image: url(../icons/linkedin.png);
}
.Stackoverflow{
    background-image: url(../icons/stack-overflow.png);
}
.section-title{
    color: #ffffff;
    text-align: center;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}
section#about-me {
    color: #ffffff;
}
section#contact-me {
    padding-top: 30px;
}
#about-me .section-title {
    margin: 45px 0;
}
#about-me p {
    font-size: 18px;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    font-weight: 400;
    line-height: 30px;
}
.form-container {

}
label{
    color: #ffffff;
    font-weight: 500;
}

.form-label {
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 2px;
}
#g-recaptcha {
    margin-top: 10px;
}
input.form-field, textarea.form-field {
    background-color: #343434 !important;
    color: #ffffff !important;
    border: 2px solid #6b6b6b;
    border-radius: 15px !important;
    padding: 15px 10px !important;
    font-size: 18px !important;
    font-weight: 500 !important;
    outline: none;
}
.form-field:focus{
    border: 2px solid var(--main-higlight-color);
}
div#response-message{
    color: #ffffff;
}
button.contact-btn {
    border: none;
    color: #000000;
    background-color: var(--main-higlight-color);
    padding: 15px 55px;
    border-radius: 35px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.5s;
    cursor: pointer;
}
button.contact-btn:hover{
    background-color: var(--main-higlight-color);
    box-shadow: 5px 4px 0px 0px rgb(255 255 255);
}
#contact-me h2.section-title {
    margin: 0;
}
span.bi.bi-heart-fill{
    color: var(--main-higlight-color);
}
#contact-me p {
    color: #ffffff;
    text-align: center;
    font-size: 24px;
    margin-bottom: 45px;
    font-weight: 500;
}
@media only screen and (max-width: 1024px) {
    div#navbarOffcanvas {
        background-color: #000;
        height: 100vh;
        width: 85vw;
    }
    .intro-set {
        display: flex;
        align-content: center;
        align-items: center;
        text-align: center;
    }
    .intro-set h1{
        font-size: 50px;
        line-height: 50px;
    }
    p.desc-job{
        font-size: 14px;
    }
    #about-me p {
        font-size: 16px;
        line-height: 20px;
    }
    #contact-me p{
        font-size: 14px;
    }
    button.contact-btn{
        width: 100%;
    }
    footer p {
        font-size: 14px;
    }
    section {
        padding: 10px;
    }
    nav.navbar {
        padding: 20px 10px;
    }
    a.nav-item.nav-link {
        width: 210px;
    }
}
@media only screen and (max-width: 767px) {
    .intro-set{
        height: 75svh;
    }
    .social-media {
        margin-top: 0;
        height: 25svh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        align-content: center;
        z-index: 9999;
    }
    .social-media p{
        font-size: 26px;
        margin-right: 0;
    }
}
@media only screen and (min-width: 768px) {
    nav.navbar {
        padding: 35px 0;
    }
}

.particle-network-animation {
    /*position: fixed;*/
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    background-color: #171717;
}
.particle-network-animation::before {
    z-index: -2;
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url(../media/home-bg-intro.jpg);
    /*background-image: url(https://images.unsplash.com/photo-1450849608880-6f787542c88a?ixlib=rb-0.3.5&q=80&fm=jpg&crop=entropy&s=786a67dca1d8791d181bfd90b16240d9);*/
    background-position: center center;
    background-size: contain;
    opacity: 0.2;
}
.glow {
    z-index: -1;
    position: fixed;
    top: 50%;
    left: 50%;
    background-image: radial-gradient(circle closest-side, rgba(255, 255, 255, 0.025), transparent);
}
.glow-1 {
    width: 150vw;
    height: 150vh;
    margin-top: -75vh;
    margin-left: -75vw;
    animation: glow-1-move 25s linear infinite both;
}
@keyframes glow-1-move {
    from {
        transform: translate(-100%, 100%);
    }
    to {
        transform: translate(100%, -100%);
    }
}
.glow-2 {
    width: 100vw;
    height: 100vh;
    margin-top: -50vh;
    margin-left: -50vw;
    animation: glow-2-move 25s linear 8.3333333333s infinite both;
}
@keyframes glow-2-move {
    from {
        transform: translate(-100%, 0%);
    }
    to {
        transform: translate(100%, 100%);
    }
}
.glow-3 {
    width: 120vw;
    height: 120vh;
    margin-top: -60vh;
    margin-left: -60vw;
    animation: glow-3-move 25s linear 16.6666666667s infinite both;
}
@keyframes glow-3-move {
    from {
        transform: translate(100%, 100%);
    }
    to {
        transform: translate(0%, -100%);
    }
}
