/*GLOBAL*/
html {
    scroll-behavior: smooth;
}

header,
section {
    width: 100%;
    overflow: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    --primary: #1DBA28;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    transition: all 0.35s;
}

a:hover {
    text-decoration: none;
    color: var(--primary);
}

h2 {
    font-size: 1.2em;
    font-weight: 500;
    line-height: 1.5em;
}

h2 img {
    max-height: 0.6em;
    margin-right: 20px;
    line-height: 1.5em;
}

/*HEADER*/

header {
    background-image: url(../img/header.png);
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
}

.navbar-light .navbar-toggler {
    border-width: 0px;
    background-color: transparent !important;
}

.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
    color: var(--primary);
}

header .navbar {
    padding-top: 40px;
}

header .navbar .navbar-brand {
    font-size: 1.4em;
    font-weight: 600;
    color: #000000;
    line-height: 1.5em;
}

.navbar-light .navbar-nav .nav-link {
    font-size: 1.2em;
    font-weight: 500;
    color: #000000;
    line-height: 1.5em;
    padding-left: 20px;
    padding-right: 20px;
}

header .col-md-6 {
    padding-top: 80px;
}

header h1 {
    font-size: 3em;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 80px;
}

header .profile {
    max-width: 340px;
}

.btn-main {
    display: inline-block;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: 600;
    color: #000000;
    border-radius: 6px;
    box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.15);
    padding: 16px 40px;
    margin-left: 15px;
    background-color: #FFF;
}

.btn-main::before {
    display: inline-block;
    content: "";
    border-top: 3px solid var(--primary);
    width: 30px;
    margin-left: -55px;
    margin-right: 30px;
    transform: translateY(-4px);
    transition: all 0.35s;
}

.btn-main:hover:before {
    margin-left: -60px;
    margin-right: 35px;
}



/*SERVICES*/
#services {
    padding: 50px 0px;
    background-image: url(../img/services.png);
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
}

.service-item {
    background: #FFF;
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.13);
    border-radius: 8px;
    text-align: center;
    margin-bottom: 20px;
    /*
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
*/
}

.service-item:hover {
    transform: scale(1.05)
}

.service-info {
    padding: 30px;
}

.service-item img {
    width: 150px;
    max-width: 100%;
    margin-bottom: 10px;
}

.service-item h3 {
    font-size: 1.2em;
    font-weight: 500;
    margin-top: 10px;
    margin-bottom: 10px;
}

.service-item p {
    font-size: 0.7em;
    font-weight: 300;
    margin-bottom: 5px;
}

.service-item .btn-main {
    display: inline-block;
    padding: 10px 20px;
    font-size: 0.8em;
    font-weight: 600;
    margin-bottom: 30px;
}

.service-item .btn-main::before {
    width: 20px;
    margin-left: -30px;
    margin-right: 15px;
}

.service-item.plugindev .btn-main::before {
    border-color: #FFD301;
}

.service-item.serversetup .btn-main::before {
    border-color: #4C40F7;
}

.service-item.configuration .btn-main::before {
    border-color: #F1B3B3;
}

.service-item.graphicdesign .btn-main::before {
    border-color: #81DD89;
}

.service-item .btn-main:hover:before {
    margin-left: -35px;
    margin-right: 20px;
}

.service-item.plugindev .btn-main:hover {
    color: #FFD301;
}

.service-item.serversetup .btn-main:hover {
    color: #4C40F7;
}

.service-item.configuration .btn-main:hover {
    color: #F1B3B3;
}

.service-item.graphicdesign .btn-main:hover {
    color: #81DD89;
}


/*CAREER*/
#career {
    padding: 80px 0px;
}

#career p {
    font-size: 0.9em;
    font-weight: 300;
    margin-bottom: 25px;
}

.btn-arrow {
    display: inline-block;
    font-size: 1em;
    line-height: 1.2em;
    font-weight: 600;
    color: #000000;
    margin-right: 15px;
}

.btn-arrow img {
    margin-top: 3px;
    max-height: 100%;
    transition: all 0.35s;
}

.btn-arrow:hover img {
    margin-left: 5px;
}

.career-item {
    font-size: 1.2em;
    font-weight: 600;
    color: #000000;
    border-radius: 6px;
    box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.15);
    padding: 16px 10px;
    margin-left: 15px;
    background-color: #FFF;
    margin-bottom: 20px;
    cursor: pointer;
}

.career-item::before {
    display: inline-block;
    content: "";
    border-top: 3px solid var(--primary);
    width: 30px;
    margin-left: -25px;
    margin-right: 30px;
    transform: translateY(-1.5px);
}

.career-item > div {
    width: 30%;
    display: inline-block;
    text-align: center;
    line-height: 1.4em;
    font-size: 0.9em;
}

.career-item .company {
    margin-left: -30px;
    font-weight: 600;
}

.career-item .role,
.career-item .date {
    font-weight: 300;
}

/*AWARDS*/
#awards {
    padding: 50px 0px;
    padding-bottom: 90px;
    background-image: url(../img/awards.png);
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
}

#awards h2 {
    margin-bottom: 30px;
}

.awards-cont {
    background: #FFF;
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.13);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

#awards h4 {
    margin-top: 4px;
    margin-bottom: 4px;
    font-size: 1.2em;
    font-weight: 500;
    line-height: 1.5em;
}

h4 img {
    margin-top: -6px;
    width: 18px;
    margin-right: 20px;
    line-height: 1.5em;
}

.awards-cont .awards-info {
    margin-left: 9px;
    padding-left: 29px;
    padding-bottom: 20px;
    border-width: 0px;
    border-style: solid;
    border-color: var(--primary);
    border-left-width: 2px;
}

.awards-cont .awards-info .date {
    font-size: 0.9em;
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}

.awards-cont .awards-info p {
    font-size: 0.9em;
    font-weight: 300;
    margin-bottom: 15px;
}


/*PORTFOLIO BANNER*/
#portbanner {
    padding: 80px 0px;
    background-image: url(../img/portbanner.png);
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    text-align: center;
}

#portbanner h5 {
    color: #FFF;
    font-size: 1.4em;
    font-weight: 500;
    line-height: 1.5em;
    margin-bottom: 50px;
}



/*MODALS*/
.modal-content {
    border-width: 0px;
    border-radius: 10px;
}

.modal-header {
    background-color: var(--primary);
    color: #FFF;
    border-width: 0px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.modal-body {
    border-width: 0px;
}

.modal button.close {
    color: #FFF;
}

#plugindev .modal-header {
    background-color: #FFD301;
}

#serversetup .modal-header {
    background-color: #4C40F7;
}

#configuration .modal-header {
    background-color: #F1B3B3;
}

#graphicdesign .modal-header {
    background-color: #81DD89;
}



.modal-dialog {
    min-height: calc(100vh - 60px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: auto;
}

@media(max-width: 768px) {
    .modal-dialog {
        min-height: calc(100vh - 20px);
    }
}

/*SWAL*/

.swal-modal {
    color: #363636;
    background-color: #FFF;
}

.swal-text,
.swal-title {
    color: #363636;
}

.swal-icon--success:after,
.swal-icon--success:before {
    background-color: transparent !important;

}

.swal-icon--success__hide-corners {
    background-color: transparent !important;
}

.swal-icon--success__ring {
    border-color: var(--primary) !important;
}

.swal-icon--success__line {
    background-color: var(--primary) !important;
}

.swal-icon--success__line {
    background-color: var(--primary) !important;
}

.swal-footer {
    text-align: center !important;
}

.swal-button {
    background-color: #363636;
}

.swal-button:focus {
    border-width: 0px !important;
}

.swal-button:hover {
    background-color: #363636 !important;
    ;
}




/*FOOTER*/
footer {
    margin-top: 50px;
}

footer > .container {
    padding: 30px 0px;
    border-width: 0px;
    border-style: solid;
    border-color: rgba(203, 203, 203, 0.32);
    border-top-width: 2px;
}

footer .b2t {
    color: var(--primary);
}




/*PORTFOLIO*/
.navbar.fixed-top {
    background-color: #fFF;
}

footer.fixed-bottom {
    background-color: #FFF;
    padding: 0px;
    padding-top: 2px;
    line-height: 16px;
    text-align: center;
    border-width: 0px;
}

footer.fixed-bottom h2 {
    font-size: 0.8em;
}



/*CONTACT*/
#contact {
    padding-top: 80px;
    padding-bottom: 40px;
    background-image: url(../img/contact.png);
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
}

#contact h1 {
    font-size: 3em;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 80px;
}

.form-control {
    border-width: 0px;
}

.input-group {
    font-size: 1.2em;
    font-weight: 300;
    color: #000000;
    border-radius: 8px;
    box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.15);
    background-color: #FFF;
    border-width: 0px;
    padding: 15px 10px;
}

.input-group-append,
.input-group-text {
    background: none !important;
    border-width: 0px;
    color: var(--primary);
    display: block;
}

#contact-form .btn-main {
    margin-top: 20px;
    border-width: 0px;
    color: #FFF;
    background-color: var(--primary);
}

#contact-form .btn-main::before {
    border-top: 3px solid #000000;
}

#contact .col-md-6:nth-child(2) {
    margin-top: 30px;
}

/*PORTFOLIO*/
#portfolio {
    margin-top: 30px;
}

.portfolio-item {
    background-color: var(--primary);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    line-height: 150px;
    margin-top: 10px;
    margin-bottom: 10px;
    border-radius: 10px;
    color: #FFF;
    text-transform: uppercase;
    text-align: center;
    vertical-align: middle;
    transition: all 0.35s;
    font-weight: 600;
    font-size: 2em;
}

.portfolio-item:hover {
    transform: scale(1.05);
}

.plugin-port {
    background-image: url(../img/setups.png) !important;
}

.setups-port {
    background-image: url(../img/graphics.png) !important;
    ;
}

.graphics-port {
    background-image: url(../img/plugins.png) !important;
}











/*RESPONSIVE FIXES*/
@media (max-width: 796px) {
    footer .col-md-6 {
        text-align: center !important;
    }
}

@media (max-width: 996px) {
    .career-item > div {
        width: 100%;
        display: block;
        text-align: center;
        line-height: 1.4em;
        font-size: 0.9em;
    }
    .career-item .company {
        margin-top: -25px;
        margin-left: 0px;
    }
}
