/* STYLING */

html {
    scroll-behavior: smooth;
}
  
html, body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8em;
    color: #B3B3B3;
    background: #121212;
    padding: 0px;
    margin: 0px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.4em !important;
}

h2.h2 strong {
    color: #21F14C;
}

*:focus {
    outline: none;
}

a {
    word-wrap: break-all !important;
    color: #21F14C;
}

section *:not(.circles) {
    z-index: 999999;
}

.ls-2 {
    letter-spacing: 2px;
}

.cstm-badge {
    background-color: #21F14C;
    color: #121212;
}

/* BUTTONS */
.btn.custom-btn {
    min-height: 63px;
    border: none;
    background: rgb(6,115,50);
    background: -webkit-gradient(linear, right top, left top, from(rgba(6,115,50,1)), to(rgba(33,241,76,1)));
    background: -webkit-linear-gradient(right, rgba(6,115,50,1) 0%, rgba(33,241,76,1) 100%);
    background: -moz-linear-gradient(right, rgba(6,115,50,1) 0%, rgba(33,241,76,1) 100%);
    background: -o-linear-gradient(right, rgba(6,115,50,1) 0%, rgba(33,241,76,1) 100%);
    background: linear-gradient(-90deg, rgba(6,115,50,1) 0%, rgba(33,241,76,1) 100%);
    color: #FFFFFF;
    padding: 15px 30px;
    cursor: pointer;
    -webkit-transition: ease all .5s;
    -o-transition: ease all .5s;
    -moz-transition: ease all .5s;
    transition: ease all .5s;
}

.btn.custom-btn:hover,
.btn.custom-btn-outline:hover {
    -webkit-transform: scale(1.1,1.1);
       -moz-transform: scale(1.1,1.1);
        -ms-transform: scale(1.1,1.1);
         -o-transform: scale(1.1,1.1);
            transform: scale(1.1,1.1);
}

.btn.custom-btn-outline {
    min-height: 50px;
    background-color: transparent;
    border: 2px solid #21F14C;
    padding: 15px 30px;
    -webkit-border-radius: 0.25rem;
       -moz-border-radius: 0.25rem;
            border-radius: 0.25rem;
    color: #21F14C;
    cursor: pointer;
    -webkit-transition: ease all .5s;
    -o-transition: ease all .5s;
    -moz-transition: ease all .5s;
    transition: ease all .5s;
}

.hero-section {
    min-height: 100vh;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background: #121212;
    position: relative;
}

.hero-section h1 {
    font-size: 70px;
    font-weight: 800;
    background: #067332;
    background: -webkit-gradient(linear, right top, left top, from(#067332), to(#21F14C));
    background: -webkit-linear-gradient(right, #067332 0%, #21F14C 100%);
    background: -moz-linear-gradient(right, #067332 0%, #21F14C 100%);
    background: -o-linear-gradient(right, #067332 0%, #21F14C 100%);
    background: linear-gradient(to left, #067332 0%, #21F14C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-section p {
    font-size: 28px;
    margin-bottom: 15px;
}

.hero-section h2 {
    font-size: 28px;
    margin-bottom: 30px;
}

.hero-section h2 span {
    color: #21F14C;
}

.hero-section .row > div:nth-child(2) {
    border-color: #21f14c78 !important;
}

.social-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-links li:not(:last-child) {
    margin-bottom: 30px;
}

.social-links li i:before {
    font-size: 40px;
}

.social-links li i {
    -webkit-transition: ease all .5s;
    -o-transition: ease all .5s;
    -moz-transition: ease all .5s;
    transition: ease all .5s;
}

.social-links li i:hover {
    -webkit-transform: scale(1.1,1.1);
       -moz-transform: scale(1.1,1.1);
        -ms-transform: scale(1.1,1.1);
         -o-transform: scale(1.1,1.1);
            transform: scale(1.1,1.1);
}

/* HERO SECTION BACKGROUND ANIMATION */
.circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    padding: 0;
    margin: 0;
}

.circles li {
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: #21f04a60;
    -webkit-animation: animate 25s linear infinite;
       -moz-animation: animate 25s linear infinite;
         -o-animation: animate 25s linear infinite;
            animation: animate 25s linear infinite;
    bottom: -150px;
}

.circles li:nth-child(1) {
    left: 25%;
    width: 80px;
    height: 80px;
    -webkit-animation-delay: 0s;
       -moz-animation-delay: 0s;
         -o-animation-delay: 0s;
            animation-delay: 0s;
}

.circles li:nth-child(2) {
    left: 10%;
    width: 20px;
    height: 20px;
    -webkit-animation-delay: 2s;
       -moz-animation-delay: 2s;
         -o-animation-delay: 2s;
            animation-delay: 2s;
    -webkit-animation-duration: 12s;
       -moz-animation-duration: 12s;
         -o-animation-duration: 12s;
            animation-duration: 12s;
}

.circles li:nth-child(3) {
    left: 70%;
    width: 20px;
    height: 20px;
    -webkit-animation-delay: 4s;
       -moz-animation-delay: 4s;
         -o-animation-delay: 4s;
            animation-delay: 4s;
}

.circles li:nth-child(4) {
    left: 40%;
    width: 60px;
    height: 60px;
    -webkit-animation-delay: 0s;
       -moz-animation-delay: 0s;
         -o-animation-delay: 0s;
            animation-delay: 0s;
    -webkit-animation-duration: 18s;
       -moz-animation-duration: 18s;
         -o-animation-duration: 18s;
            animation-duration: 18s;
}

.circles li:nth-child(5) {
    left: 65%;
    width: 20px;
    height: 20px;
    -webkit-animation-delay: 0s;
       -moz-animation-delay: 0s;
         -o-animation-delay: 0s;
            animation-delay: 0s;
}

.circles li:nth-child(6) {
    left: 75%;
    width: 110px;
    height: 110px;
    -webkit-animation-delay: 3s;
       -moz-animation-delay: 3s;
         -o-animation-delay: 3s;
            animation-delay: 3s;
}

.circles li:nth-child(7) {
    left: 35%;
    width: 150px;
    height: 150px;
    -webkit-animation-delay: 7s;
       -moz-animation-delay: 7s;
         -o-animation-delay: 7s;
            animation-delay: 7s;
}

.circles li:nth-child(8) {
    left: 50%;
    width: 25px;
    height: 25px;
    -webkit-animation-delay: 15s;
       -moz-animation-delay: 15s;
         -o-animation-delay: 15s;
            animation-delay: 15s;
    -webkit-animation-duration: 45s;
       -moz-animation-duration: 45s;
         -o-animation-duration: 45s;
            animation-duration: 45s;
}

.circles li:nth-child(9) {
    left: 20%;
    width: 15px;
    height: 15px;
    -webkit-animation-delay: 2s;
       -moz-animation-delay: 2s;
         -o-animation-delay: 2s;
            animation-delay: 2s;
    -webkit-animation-duration: 35s;
       -moz-animation-duration: 35s;
         -o-animation-duration: 35s;
            animation-duration: 35s;
}

.circles li:nth-child(10) {
    left: 85%;
    width: 150px;
    height: 150px;
    -webkit-animation-delay: 0s;
       -moz-animation-delay: 0s;
         -o-animation-delay: 0s;
            animation-delay: 0s;
    -webkit-animation-duration: 11s;
       -moz-animation-duration: 11s;
         -o-animation-duration: 11s;
            animation-duration: 11s;
}

@-webkit-keyframes animate {

    0%{
        -webkit-transform: translateY(0) rotate(0deg);
                transform: translateY(0) rotate(0deg);
        opacity: 1;
        -webkit-border-radius: 0;
                border-radius: 0;
    }

    100%{
        -webkit-transform: translateY(-1000px) rotate(720deg);
                transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        -webkit-border-radius: 50%;
                border-radius: 50%;
    }

}

@-moz-keyframes animate {

    0%{
        -moz-transform: translateY(0) rotate(0deg);
             transform: translateY(0) rotate(0deg);
        opacity: 1;
        -moz-border-radius: 0;
             border-radius: 0;
    }

    100%{
        -moz-transform: translateY(-1000px) rotate(720deg);
             transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        -moz-border-radius: 50%;
             border-radius: 50%;
    }

}

@-o-keyframes animate {

    0%{
        -o-transform: translateY(0) rotate(0deg);
           transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100%{
        -o-transform: translateY(-1000px) rotate(720deg);
           transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }

}

@keyframes animate {

    0%{
        -webkit-transform: translateY(0) rotate(0deg);
           -moz-transform: translateY(0) rotate(0deg);
             -o-transform: translateY(0) rotate(0deg);
                transform: translateY(0) rotate(0deg);
        opacity: 1;
        -webkit-border-radius: 0;
           -moz-border-radius: 0;
                border-radius: 0;
    }

    100%{
        -webkit-transform: translateY(-1000px) rotate(720deg);
           -moz-transform: translateY(-1000px) rotate(720deg);
             -o-transform: translateY(-1000px) rotate(720deg);
                transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        -webkit-border-radius: 50%;
           -moz-border-radius: 50%;
                border-radius: 50%;
    }

}

.technologies-section {
    background: rgb(6,115,50);
    background: -webkit-gradient(linear, right top, left top, from(rgba(6,115,50,1)), to(rgba(33,241,76,1)));
    background: -webkit-linear-gradient(right, rgba(6,115,50,1) 0%, rgba(33,241,76,1) 100%);
    background: -moz-linear-gradient(right, rgba(6,115,50,1) 0%, rgba(33,241,76,1) 100%);
    background: -o-linear-gradient(right, rgba(6,115,50,1) 0%, rgba(33,241,76,1) 100%);
    background: linear-gradient(-90deg, rgba(6,115,50,1) 0%, rgba(33,241,76,1) 100%);
}

.icon-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: space-evenly;
    -webkit-justify-content: space-evenly;
       -moz-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
}

.icon-list li i:before {
    font-size: 70px;
    color: #fff;
}

.project-section {
    min-height: 100vh;
    background-color: #181818;
}

.project-section h2 {
    font-size: 50px;
}

.project-screenshot {
    position: relative;
}

.project-screenshot img {
    border: 1px solid #21F14C;
}

.project-screenshot:before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: 100px;
    height: 100px;
    background-color: #21F14C;
    z-index: -1
}

.project-screenshot:after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 100px;
    height: 100px;
    background-color: #21F14C;
    z-index: -1
}

.contact-section {
    min-height: 100vh;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background: #121212;
}

.contact-section h2 {
    font-size: 50px;
}

.contact-section .card {
    background-color: #181818;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    background-color: transparent !important;
    border-color: #B3B3B3;
    color: #fff !important;
}

.contact-form input[type="text"],
.contact-form input[type="email"] {
    min-height: 50px;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
    border-color: #21F14C !important;
    -webkit-box-shadow: 0 0 0 0.25rem #21f14c4f !important;
       -moz-box-shadow: 0 0 0 0.25rem #21f14c4f !important;
            box-shadow: 0 0 0 0.25rem #21f14c4f !important;
}

.contact-form input[type="submit"] {
    min-height: 50px;
}

.email-card {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.email-card .icon i:before {
    font-size: 25px;
    color: #21F14C;
}

.email-card .icon > div {
    width: 60px;
    height: 60px;
    background-color: #181818;
    -webkit-border-radius: 100px;
       -moz-border-radius: 100px;
            border-radius: 100px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.email-card .details {
    line-height: .5em;
    padding-left: 20px;
}

.email-card .details a {
    text-decoration: none;
}

footer {
    background: rgb(6,115,50);
    background: -webkit-gradient(linear, right top, left top, from(rgba(6,115,50,1)), to(rgba(33,241,76,1)));
    background: -webkit-linear-gradient(right, rgba(6,115,50,1) 0%, rgba(33,241,76,1) 100%);
    background: -moz-linear-gradient(right, rgba(6,115,50,1) 0%, rgba(33,241,76,1) 100%);
    background: -o-linear-gradient(right, rgba(6,115,50,1) 0%, rgba(33,241,76,1) 100%);
    background: linear-gradient(-90deg, rgba(6,115,50,1) 0%, rgba(33,241,76,1) 100%);
}

footer span {
    color: #000;
}

/* RESPONSIVENESS */
.email-card .details a {
    word-break: break-all;
    line-height: 1.4em;
}

@media screen and (max-width: 991px) {
    .container {
        max-width: 100%;
    }

    .hero-section h1 {
        font-size: 50px;
    }

    .hero-section p,
    .hero-section h2 {
        font-size: 20px;
    }

    .btn.custom-btn,
    .btn.custom-btn-outline {
        font-size: 16px;
    }

    .btn.custom-btn {
        min-height: 58px;
    }

    .social-links li i:before {
        font-size: 30px;
    }

    .hero-section .row > div:nth-child(2) {
        padding-left: 35px !important;
    }

    .icon-list li i:before {
        font-size: 50px;
    }

    .project-section .row:not(:first-child) {
        padding: 0;
        margin-bottom: 0px !important;
    }

    .project-section h2 {
        font-size: 40px;
    }

    .project-section .row:not(:first-child):nth-child(odd) > div:nth-child(1) {
        padding-left: 0px !important;
        padding-right: 20px !important;
        padding-bottom: 0px;
    }

    .project-section .row:not(:first-child):nth-child(even) > div:nth-child(2) {
        padding-left: 20px !important;
        padding-right: 0px !important;
        padding-bottom: 0px;
    }

    .project-section h3 {
        font-size: 28px;
    }

    .contact-section h2 {
        font-size: 35px;
    }
}

@media screen and (max-width: 767px) {
    .hero-section,
    .technologies-section,
    .project-section,
    .contact-section {
        padding: 40px 30px !important;
    }
    
    .hero-section .row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -webkit-flex-direction: column-reverse;
           -moz-box-orient: vertical;
           -moz-box-direction: reverse;
            -ms-flex-direction: column-reverse;
                flex-direction: column-reverse;
    }

    .hero-section .row > div:nth-child(1) {
        padding: 20px 0px 0px !important;
    }
    
    .hero-section .row > div:nth-child(2) {
        border-left: none !important;
        border-bottom: 2px solid #21F14C;
        padding: 0px 0px 15px !important;
    }

    .hero-section h1 {
        font-size: 50px;
        line-height: 1.1em !important;
    }
    
    .hero-section p,
    .hero-section h2 {
        font-size: 18px;
    }

    .social-links {
        width: 100%;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
           -moz-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
           -moz-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
    
    .social-links li {
        margin-bottom: 0 !important;
    }

    .social-links li:not(:last-child) {
        margin-right: 30px;
    }

    .social-links li i:before {
        font-size: 40px;
    }

    .btn.custom-btn,
    .btn.custom-btn-outline {
        width: 100%;
        margin-right: 0 !important;
        margin-bottom: 15px;
    }

    .icon-list {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
           -moz-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        margin-bottom: 20px !important;
    }

    .icon-list li {
        width: 100%;
        max-width: 25%;
    }

    .technologies-section h2 {
        margin-bottom: 20px !important;
    }

    .technologies-section p {
        margin-bottom: 0;
    }

    .project-section .row:not(:first-child) {
        margin-bottom: 20px !important;
    }
    
    .project-section .row:not(:first-child):nth-child(even) {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -webkit-flex-direction: column-reverse;
           -moz-box-orient: vertical;
           -moz-box-direction: reverse;
            -ms-flex-direction: column-reverse;
                flex-direction: column-reverse;
        padding: 0 !important;
    }

    .project-section .row:not(:first-child):nth-child(odd) > div:nth-child(1),
    .project-section .row:not(:first-child):nth-child(even) > div:nth-child(2) {
        padding-left: 0 !important;
        padding-right: 0 !important;
        padding-bottom: 35px;
    }

    .project-section h3 {
        font-size: 22px;
    }

    .project-section h2 {
        font-size: 30px;
    }

    .contact-section .row > div {
        padding-left: 0;
        padding-right: 0;
    }
    
    .contact-section .row > div:nth-child(1) {
        margin-bottom: 30px;
    }

    .contact-section h2 {
        font-size: 30px;
    }
}

@media screen and (max-width: 350px) {
    .hero-section h1 {
        font-size: 40px;
    }
}