/*  import google fonts */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Ubuntu:wght@400;500;700&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

:root{
    --bg: #2e9fd7;
    --second: #5eafd8;
  }

:root {
    --orange: #2e9fd7;
    --orange2: #5eafd8;
    --background_form_color: #065e62;
}

*::selection {
    background: var(--orange);
    color: #fff;
}


/* custom scroll bar */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}


/* all similar content styling codes */

section {
    padding: 100px 0;
}

.max-width {
    max-width: 1300px;
    padding: 0 80px;
    margin: auto;
}

.about .about-content,
.projects .projects-content,
.skills .skills-content,
.contact .contact-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

section .title {
    position: relative;
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 60px;
    padding-bottom: 20px;
    font-family: 'Ubuntu', sans-serif;
}

section .title::before {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 180px;
    height: 3px;
    background: #111;
    transform: translateX(-50%);
}

section .title::after {
    position: absolute;
    bottom: -8px;
    left: 50%;
    font-size: 20px;
    color: var(--orange);
    padding: 0 5px;
    background: #fff;
    transform: translateX(-50%);
}


/* navbar styling */

.navbar {
    position: fixed;
    width: 100%;
    z-index: 10000;
    height: 65px;
    font-family: 'Ubuntu', sans-serif;
    transition: all 0.3s ease;
    background: black;
}

.navbar .max-width {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar .logo a {
    color: #fff;
    font-size: 30px;
    font-weight: 600;
    transition: opacity .1s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar .logo a:hover {
    opacity: .8;
}

.navbar .logo a img {
    height: 65px;
    margin-right: 4px;
    width: auto;
}

.navbar.sticky .logo a span {
    color: #fff;
}

.navbar .menu li {
    list-style: none;
    display: inline-block;
}

.navbar .menu li a {
    display: block;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin-left: 25px;
    transition: transform 0.3s ease;
}

.navbar .menu li a:hover {
    /* color: var(--orange); */
    transform: scale(1.15);
}

.sticky .menu li a:hover {
    transform: scale(1.2);
}


/* menu btn styling */

.menu-btn {
    color: #fff;
    font-size: 23px;
    cursor: pointer;
    display: none;
}

.scroll-up-btn {
    position: fixed;
    height: 45px;
    width: 42px;
    background: var(--orange);
    right: 30px;
    bottom: 10px;
    text-align: center;
    line-height: 45px;
    color: #fff;
    z-index: 9999;
    font-size: 30px;
    border-radius: 6px;
    border-bottom-width: 2px;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.scroll-up-btn.show {
    bottom: 30px;
    opacity: 1;
    pointer-events: auto;
}

.scroll-up-btn:hover {
    filter: brightness(90%);
}


/* home section styling */

.home {
    display: flex;
    background: linear-gradient(45deg, #122, #000, #020218, #020001);
    height: 100vh;
    color: #fff;
    min-height: 500px;
    background-size: cover;
    background-attachment: fixed;
    background-size: 400% 400%;
    font-family: 'Ubuntu', sans-serif;
    animation: background-animation 10s ease-in-out infinite;
}

.home .box div {
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: #eeeded6c;
    border-radius: 50%;
}

.home .box div:nth-child(1) {
    top: 12%;
    left: 42%;
    animation: square-animation 10s linear infinite;
}

.home .box div:nth-child(2) {
    top: 90%;
    left: 50%;
    animation: square-animation 6s linear infinite;
}

.home .box div:nth-child(3) {
    top: 17%;
    left: 6%;
    animation: square-animation 9s linear infinite;
}

.home .box div:nth-child(4) {
    top: 20%;
    left: 60%;
    animation: square-animation 10s linear infinite;
}

.home .box div:nth-child(5) {
    top: 67%;
    left: 10%;
    animation: square-animation 6s linear infinite;
}

.home .box div:nth-child(6) {
    top: 80%;
    left: 70%;
    animation: square-animation 8.5s linear infinite;
}

.home .box div:nth-child(7) {
    top: 30%;
    left: 80%;
    animation: square-animation 13s linear infinite;
}

.home .box div:nth-child(8) {
    top: 32%;
    left: 18%;
    animation: square-animation 11s linear infinite;
}

.home .box div:nth-child(9) {
    top: 90%;
    left: 20%;
    animation: square-animation 9s linear infinite;
}

.home .box div:nth-child(10) {
    top: 55%;
    left: 90%;
    animation: square-animation 5s linear infinite;
}

.home .box div:nth-child(11) {
    top: 90%;
    left: 85%;
    animation: square-animation 7s linear infinite;
}

.home .max-width {
    width: 100%;
    display: flex;
}

.home .max-width .row {
    margin-right: 0;
}

.home .home-content {
    margin: auto;
    text-align: center;
}

.home .home-content .text-1 {
    font-size: 35px;
    padding: 8px 0;
}

.home .home-content .text-2 h1 {
    font-size: 76px;
    font-weight: 600;
}

.home .home-content .text-3 {
    font-size: 36px;
    margin: 25px 0 20px 0;
}

.home .home-content .text-3 span {
    color: var(--orange2);
    font-weight: 500;
}

.home .home-content a {
    display: inline-block;
    background: var(--orange);
    color: #fff;
    font-size: 25px;
    padding: 12px 36px;
    margin-top: 50px;
    font-weight: 400;
    border-radius: 6px;
    border: 1px solid var(--orange);
    transition: all 0.s ease;
}

.home .home-content a:hover {
    color: var(--orange);
    background: none;
}


/* about section styling */

.about .title::after {
    content: "quién soy";
}

.about .title.english::after {
    content: "who i am";
}

.about .about-content .left {
    width: 45%;
}

.about .about-content .left img {
    height: 380px;
    width: 380px;
    object-fit: cover;
    border-radius: 6px;
    transition: all ease-in 0.3s;
}

.about .about-content .left img:hover {
    transform: scale(1.02);
    box-shadow: 4px 4px 10px #4e4e4e;
}

.about .about-content .right {
    width: 55%;
}

.about .about-content .right .text {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 10px;
}

.about .about-content .right .text span {
    color: var(--orange);
}

.about .about-content .right p {
    text-align: justify;
}

.about .about-content .right a {
    display: inline-block;
    background: var(--orange);
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    padding: 10px 30px;
    margin-top: 20px;
    border-radius: 6px;
    border: 2px solid var(--orange);
    transition: all 0.3s ease;
}

.about .about-content .right a:hover {
    color: var(--orange);
    background: none;
}


/* projects section styling */

.projects {
    color: #fff;
    background: #111;
    font-family: 'Poppins', 'Poppins';
}

.projects .projects-content .card {
    margin: 0 0 1px 0;
    width: calc(33% - 20px);
    background: #222;
    text-align: center;
    border-radius: 6px;
    padding: 40px 25px 35px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.projects .projects-content .card:hover {
    background-color: #333;
}

.projects .projects-content .card .box {
    transition: all 0.3s ease;
}

.projects .projects-content .card:hover .box {
    transform: scale(1.05);
}

.projects .projects-content .card .box img {
    width: 100%;
    transition: color 0.3s ease;
}

.projects .projects-content .card .box .text {
    font-size: 25px;
    font-weight: 500;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    margin: 10px 0 7px 0;
}

.projects .projects-content .card .box p {
    margin: 0 auto;
    margin-top: 16px;
    height: 50px;
    max-width: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.projects .projects-content .card .box .go-project a {
    position: relative;
    display: inline-block;
    color: var(--orange);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 20px;
    margin-top: 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.projects .projects-content .card .box .go-project a:before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    width: 0;
    height: 0;
    background-color: transparent;
    border: 1.8px solid transparent;
}

.projects .projects-content .card .box .go-project a:hover:before {
    animation: animate .3s linear forwards;
}

@keyframes animate {
    0% {
        width: 0;
        height: 0;
        border-color: var(--orange) transparent transparent transparent;
    }
    50% {
        width: 100%;
        height: 0;
        border-color: var(--orange) var(--orange) transparent transparent;
    }
    100% {
        width: 100%;
        height: 100%;
        border-color: var(--orange) var(--orange) transparent transparent;
    }
}

.projects .projects-content .card .box .go-project a:after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    width: 0;
    height: 0;
    background-color: transparent;
    border: 1.8px solid transparent;
}

.projects .projects-content .card .box .go-project a:hover:after {
    animation: animateTwo .3s linear forwards;
}

@keyframes animateTwo {
    0% {
        width: 0;
        height: 0;
        border-color: transparent transparent transparent var(--orange);
    }
    50% {
        width: 0;
        height: 100%;
        border-color: transparent transparent var(--orange) var(--orange);
    }
    100% {
        width: 100%;
        height: 100%;
        border-color: transparent transparent var(--orange) var(--orange);
    }
}


/* skills section styling */

.skills .title::after {
    content: "lo que sé";
}

.skills .title.english::after {
    content: "what i know";
}

.skills .skills-content .text-container {
    margin-top: -20px;
    margin-bottom: 24px;
}

.skills .skills-content .text-container p {
    text-align: justify;
}

.skills .skills-content .text-container a {
    display: inline-block;
    color: var(--orange);
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.skills .skills-content .text-container a:hover {
    text-decoration: underline;
}

.skills .managed-tecnologies {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.skills .managed-tecnologies .tecnologies-container {
    margin: 0 auto;
}

.skills .managed-tecnologies .tecnologie {
    position: relative;
    width: 250px;
    height: 180px;
    margin: 20px 15px;
    display: inline-block;
    box-shadow: 5px 5px 10px #b2b2b2;
    padding: 28px;
    border-radius: 8px;
}

.skills .managed-tecnologies .tecnologie .tecno-logo {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
}

.skills .managed-tecnologies .tecnologie .tecno-logo img {
    width: auto;
    height: auto;
}

.skills .managed-tecnologies .tecnologie .tecno-info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000dc;
    color: #fff;
    font-family: Poppins, sans-serif;
    display: flex;
    flex-direction: column;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s;
}

.skills .managed-tecnologies .tecnologie .tecno-info span {
    font-size: 1.35em;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

.skills .managed-tecnologies .tecnologie .tecno-info>* {
    transform: translateY(50px);
    transition: transform 0.25s;
}

.skills .managed-tecnologies .tecnologie .tecno-info:hover {
    opacity: 1;
    cursor: pointer;
}

.skills .managed-tecnologies .tecnologie .tecno-info:hover>* {
    transform: translateY(0);
}

.skills .managed-tecnologies .tecnologie .tecno-info .line {
    height: 4px;
    width: 60%;
    margin-top: 10px;
    background: #9c9c9c;
    position: relative;
    border-radius: 10px;
}

.skills .managed-tecnologies .tecnologie .tecno-info .line::before {
    content: "";
    position: absolute;
    height: 100%;
    border-radius: 10px;
    left: 0;
    top: 0;
}

.skills .tecnologie .tecno-info .html::before {
    width: 88%;
    background: orangered;
}

.skills .tecnologie .tecno-info .css::before {
    width: 78%;
    background: #0084ff;
}

.skills .tecnologie .tecno-info .javascript::before {
    width: 90%;
    background: yellow;
}

.skills .tecnologie .tecno-info .react::before {
    width: 82%;
    background: #00e1ff;
}

.skills .tecnologie .tecno-info .react-native::before {
    width: 80%;
    background: #00e1ff;
}

.skills .tecnologie .tecno-info .expo::before {
    width: 84%;
    background: #ffffff;
}

.skills .tecnologie .tecno-info .typescript::before {
    width: 70%;
    background: #2D79C7;
}

.skills .tecnologie .tecno-info .git::before {
    width: 85%;
    background: #e00000;
}

.skills .tecnologie .tecno-info .dart::before {
    width: 40%;
    background: #00B5F8;
}

.skills .tecnologie .tecno-info .flutter::before {
    width: 40%;
    background: #47C5FB;
}

.skills .tecnologie .tecno-info .nodejs::before {
    width: 65%;
    background: #75d25c;
}

.skills .tecnologie .tecno-info .mongodb::before {
    width: 70%;
    background: #7dd963;
}

.skills .tecnologie .tecno-info .firebase::before {
    width: 90%;
    background: #F2B705;
}

.skills .tecnologie .tecno-info .jquery::before {
    width: 80%;
    background: #008ee0;
}


/* contact section styling */

.contact {
    min-height: 100vh;
    background-color: #111;
}

.contact .title {
    color: #fff;
}

.contact .title::before {
    content: "";
    background-color: #fff;
}

.contact .title::after {
    content: 'conéctate';
    background-color: #111;
}

.contact .title.english::after {
    content: 'get in touch';
}

.contact-sect {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-sect .container {
    position: relative;
    min-width: 1100px;
    min-height: 550px;
    display: flex;
    z-index: 1000;
}

.contact-sect .container .contactInfo {
    position: absolute;
    top: 40px;
    width: 360px;
    height: calc(100% - 80px);
    background-color: var(--background_form_color);
    z-index: 1;
    padding: 40px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 20px 25px rgba(0, 0, 0, .15);
}

.contact-sect .container .contactInfo h2 {
    color: #fff;
    font-size: 24px;
    font-weight: 500;
}

.contact-sect .container .contactInfo ul.info {
    position: relative;
    margin: 40px 0;
}

.contact-sect .container .contactInfo ul.info li {
    position: relative;
    list-style: none;
    display: flex;
    margin: 20px 0;
    cursor: pointer;
    align-items: flex-start;
    color: #ccc;
}

.contact-sect .container .contactInfo ul.info li:hover {
    color: #fff;
}

.contact-sect .container .contactInfo ul.info li span i {
    font-size: 24px;
}

.contact-sect .container .contactInfo ul.info li a {
    margin-left: 6px;
    font-size: 14.5px;
}

.contact-sect .container .contactInfo ul.info li a:link {
    color: #ccc;
}

.contact-sect .container .contactInfo ul.info li a:visited {
    color: #ccc;
}

.contact-sect .container .contactInfo ul.info li a:hover {
    color: #fff;
}

.contact-sect .contact-content .info .sub-title a:active {
    text-decoration: underline;
}

.contact-sect .container .contactInfo ul.info li span:nth-child(1) {
    width: 30px;
    min-width: 30px;
}

.contact-sect .container .contactInfo ul.info li span:nth-child(2) {
    margin-left: 4px;
}

.contact-sect .container .contactInfo ul.sci {
    position: relative;
    display: flex;
}

.contact-sect .container .contactInfo ul.sci li {
    list-style: none;
    margin-right: 15px;
}

.contact-sect .container .contactInfo ul.sci li a {
    text-decoration: none;
    color: #ccc;
    font-size: 24px;
    margin: 0 3px;
}

.contact-sect .container .contactInfo ul.sci li a:link {
    color: #ccc;
}

.contact-sect .container .contactInfo ul.sci li a:visited {
    color: #ccc;
}

.contact-sect .container .contactInfo ul.sci li a:hover {
    color: #fff;
}

.contact-sect .container .contactForm {
    position: absolute;
    padding: 60px 50px;
    padding-left: 250px;
    margin-left: 150px;
    width: calc(100% - 150px);
    height: 100%;
    background-color: #fff;
    box-shadow: 0 50px 50px rgba(0, 0, 0, .15);
}

.contact-sect .container .contactForm h2 {
    color: var(--background_form_color);
    font-size: 24px;
    font-weight: 500;
}

.contact-sect .container .contactForm .formBox {
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-top: 30px;
}

.contact-sect .container .contactForm .formBox .inputBox {
    position: relative;
    margin-bottom: 25px;
}

.contact-sect .container .contactForm .formBox .inputBox.w50 {
    width: 47%;
}

.contact-sect .container .contactForm .formBox .inputBox.w100 {
    width: 100%;
}

.contact-sect .container .contactForm .formBox .inputBox input,
.contact-sect .container .contactForm .formBox .inputBox textarea {
    width: 100%;
    resize: none;
    padding: 5px 0;
    font-size: 18px;
    font-weight: 300;
    color: #333;
    border: none;
    outline: none;
    border-bottom: 1px solid #777;
}

.contact-sect .container .contactForm .formBox .inputBox textarea {
    height: 100px;
}

.contact-sect .container .contactForm .formBox .inputBox label {
    position: absolute;
    left: 0;
    padding: 5px 0;
    pointer-events: none;
    font-size: 16px;
    font-weight: 300;
    transition: 0.3s;
}

.contact-sect .container .contactForm .formBox .inputBox input:focus~label,
.contact-sect .container .contactForm .formBox .inputBox textarea:focus~label,
.contact-sect .container .contactForm .formBox .inputBox label.has-content {
    transform: translateY(-20px);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--background_form_color);
}

.contactForm .inputBox .icon {
    width: 24px;
    height: 24px;
    position: absolute;
    top: 6px;
    right: 5px;
    pointer-events: none;
    z-index: 2;
}

.contactForm .inputBox .icon-error {
    color: red;
}

.contactForm .inputBox .icon-success {
    color: green;
}

.contactForm .inputBox .error-message {
    height: 14px;
    margin: 4px 0;
    font-size: 12px;
    color: red;
}

.contact-sect .container .contactForm .formBox .inputBox input.input-error,
.contact-sect .container .contactForm .formBox .inputBox textarea.input-error {
    border-bottom: 1px solid red;
}

.contact-sect .container .contactForm .formBox .inputBox input[type="submit"] {
    position: relative;
    cursor: pointer;
    background-color: var(--background_form_color);
    color: #fff;
    border: none;
    max-width: 150px;
    padding: 12px;
}

.contact-sect .container .contactForm .formBox .inputBox input[type="submit"]:hover {
    background: var(--orange);
}

.contact-sect .container .contactForm .formBox .inputBox input[type="submit"]:active {
    opacity: .8;
}

.lds-ring {
    display: inline-block;
    position: relative;
    top: 10px;
    width: 40px;
    height: 40px;
}

.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 32px;
    height: 32px;
    margin: 8px;
    border: 4px solid #fff;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: var(--background_form_color) transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
}

.contact-sect .container .contactForm .formBox .inputBox .response-content {
    display: inline;
    margin-left: 10px;
}

.contact-sect .container .contactForm .formBox .inputBox .response-content span.success {
    color: green;
}

.contact-sect .container .contactForm .formBox .inputBox .response-content span.error {
    color: red;
}

.success-icon {
    color: green;
}

.success-icon.hidden {
    display: none;
}

.error-icon {
    color: red;
}

.error-icon.hidden {
    display: none;
}

.hidden {
    display: none;
}

@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/* footer section styling */

footer {
    background: #0c0c0c;
    padding: 0 23px 20px 23px;
    color: #fff;
    text-align: center;
}

footer p:nth-child(1) {
    border-top: 1px solid #fff;
    width: 90%;
    margin: 0 auto;
}

footer .languages {
    margin: 20px auto 16px auto;
}

footer p .separation {
    margin: 0 20px;
}

footer p .current-language {
    color: var(--orange);
}

footer p a {
    color: #fff;
    text-decoration: none;
}

footer p a:link {
    color: #fff;
}

footer p a:visited {
    color: #fff;
}

footer p a:hover {
    color: var(--orange)
}

footer p a:active {
    color: #aaa
}

footer span a {
    color: var(--orange);
    text-decoration: none;
}

footer span a:hover {
    text-decoration: underline;
}


/* responsive media query start */

@media (max-width: 1104px) {
    .about .about-content .left img {
        height: 350px;
        width: 350px;
    }
    .contact-sect .container {
        width: 90%;
        min-width: auto;
        margin: 20px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, .15);
    }
    .contact-sect .container .contactInfo {
        top: 0;
        height: 500px;
        position: relative;
        box-shadow: none;
    }
    .contact-sect .container .contactForm {
        position: relative;
        width: calc(100% - 350px);
        padding-left: 0;
        padding: 40px;
        height: 550px;
        margin-left: 0;
        box-shadow: none;
    }
}

@media (max-width: 991px) {
    .max-width {
        padding: 0 50px;
    }
    .contact-sect.max-width {
        background: #111;
        padding: 0;
    }
    .contact-sect .container {
        display: flex;
        flex-direction: column-reverse;
    }
    .contact-sect .container .contactForm {
        width: 100%;
        height: auto;
    }
    .contact-sect .container .contactInfo {
        width: 100%;
        height: auto;
        flex-direction: row;
    }
    .contact-sect .container .contactInfo ul.sci {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 947px) {
    .menu-btn {
        display: block;
        z-index: 999;
    }
    .menu-btn i.active:before {
        content: "\f00d";
    }
    .navbar .menu {
        position: fixed;
        height: 100vh;
        width: 100%;
        left: -100%;
        top: 0;
        background: #111;
        text-align: center;
        padding-top: 80px;
        transition: all 0.3s ease;
    }
    .navbar .menu.active {
        left: 0;
    }
    .navbar .menu li {
        display: block;
    }
    .navbar .menu li a {
        display: inline-block;
        margin: 20px 0;
        font-size: 25px;
    }
    .home .home-content .text-2 h1 {
        font-size: 70px;
    }
    .home .home-content .text-3 {
        height: 70px;
        font-size: 35px;
        font-weight: 350;
    }
    .home .home-content a {
        font-size: 23px;
        padding: 10px 30px;
    }
    .max-width {
        max-width: 930px;
    }
    .about .about-content .column {
        width: 100%;
    }
    .about .about-content .left {
        display: flex;
        justify-content: center;
        margin: 0 auto 60px;
    }
    .about .about-content .right {
        flex: 100%;
    }
    .projects .projects-content .card {
        width: calc(50% - 30px);
        margin: 10px auto;
    }
    .skills .skills-content .column,
    .contact .contact-content .column.left,
    .contact .contact-content .column.right {
        width: 100%;
        margin-bottom: 35px;
    }
    .skills .managed-tecnologies .tecnologie .tecno-info span {
        font-size: 1em;
    }
}

@media(max-width: 800px) {
    .skills .managed-tecnologies .tecnologie {
        width: calc(25% - 40px);
        height: 150px;
    }
}

@media (max-width: 690px) {
    .max-width {
        padding: 0 23px;
    }
    .home .home-content .text-2 h1 {
        font-size: 60px;
    }
    .home .home-content .text-3 {
        font-size: 32px;
    }
    .home .home-content a {
        font-size: 20px;
    }
    .projects .projects-content .card {
        width: 100%;
    }
    .skills .managed-tecnologies .tecnologie {
        width: calc(50% - 40px);
        height: 150px;
    }
    .home .box div:nth-child(10) {
        left: 83%;
    }
    .home .box div:nth-child(11) {
        left: 78%;
    }
    .contact-sect .container .contactForm {
        padding: 25px;
    }
    .contact-sect .container .contactForm .formBox .inputBox.w50 {
        width: 100%;
    }
    .contact-sect .container .contactInfo {
        padding: 25px;
        flex-direction: column;
        align-items: flex-start;
    }
    .contact-sect .container .contactInfo ul.sci {
        margin-top: 40px;
    }
}

@media (max-width: 500px) {
    .home .home-content .text-1 {
        font-size: 23px;
    }
    .home .home-content .text-2 h1 {
        font-size: 30px;
        padding: 10px 0;
    }
    .home .home-content .text-3 {
        font-size: 26px;
        min-height: 60px;
    }
    .about .about-content .right .text,
    .skills .skills-content .left .text {
        font-size: 19px;
    }
    .contact .right form .fields {
        flex-direction: column;
    }
    .contact .right form .firstname,
    .contact .right form .lastname,
    .contact .right form .email,
    .contact .right form .phone {
        margin: 0;
    }
    .right form .error-box {
        width: 150px;
    }
    .scroll-up-btn {
        right: 15px;
        bottom: 15px;
        height: 38px;
        width: 35px;
        font-size: 23px;
        line-height: 38px;
    }
}

@media (max-width:400px) {
    .skills .managed-tecnologies .tecnologie {
        width: calc(45% - 20px);
        height: 120px;
    }
}

@keyframes background-animation {
    0% {
        background-position: 0 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0 50%;
    }
}

@keyframes square-animation {
    0% {
        transform: scale(0) translateY(0) rotate(0);
        opacity: 1;
    }
    100% {
        transform: scale(1.3) translateY(-90px) rotate(360deg);
        opacity: 0;
    }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
    padding: 30px 8px;
    height: 92px;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    transition: all 0.3s;
    z-index: 997;
  }
  
  #header .container-fluid{
    display: flex;
    align-items: center;
  }
  
  #header.header-scrolled {
    background: rgba(0, 0, 0, 0.9);
    padding: 20px 8px;
    height: 72px;
    transition: all 0.3s;
  }
  
  #header #logo {
    float: left;
    flex: 1;
  }
  
  #header #logo h1 {
    font-size: 30px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    letter-spacing: 3px;
  }
  
  #header #logo h1 a,
  #header #logo h1 a:hover {
    color: #fff;
    padding-left: 10px;
    border-left: 4px solid var(--bg);
  }
  
  #header #logo img {
    padding: 0;
    margin: 0;
    width: 80px;
    margin-top: -4px;
  }


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/* Nav Menu Essentials */

.nav-menu,
.nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu ul {
  position: absolute;
  display: none;
  top: 100%;
  left: 0;
  z-index: 99;
}

.nav-menu li {
  position: relative;
  white-space: nowrap;
}

.nav-menu > li {
  float: left;
}

.nav-menu li:hover > ul,
.nav-menu li.sfHover > ul {
  display: block;
}

.nav-menu ul ul {
  top: 0;
  left: 100%;
}

.nav-menu ul li {
  min-width: 180px;
}

/* Nav Menu Arrows */

.sf-arrows .sf-with-ul {
  padding-right: 30px;
}

.sf-arrows .sf-with-ul:after {
  content: "\f107";
  position: absolute;
  right: 15px;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
}

.sf-arrows ul .sf-with-ul:after {
  content: "\f105";
}

/* Nav Meu Container */

#nav-menu-container {
  float: right;
  margin: 0;
}

/* Nav Meu Styling */

.nav-menu a {
  padding: 0 8px 10px 8px;
  text-decoration: none;
  display: inline-block;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  outline: none;
}

.nav-menu li:hover > a,
.nav-menu > .menu-active > a {
  color: var(--bg);
}

.nav-menu > li {
  margin-left: 10px;
}

.nav-menu ul {
  margin: 4px 0 0 0;
  padding: 10px;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  background: #fff;
}

.nav-menu ul li {
  transition: 0.3s;
}

.nav-menu ul li a {
  padding: 10px;
  color: #333;
  transition: 0.3s;
  display: block;
  font-size: 13px;
  text-transform: none;
}

.nav-menu ul li:hover > a {
  color: var(--bg);
}

.nav-menu ul ul {
  margin: 0;
}

/* Mobile Nav Toggle */

#mobile-nav-toggle {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999;
  margin: 28px 14px 0 0;
  border: 0;
  background: none;
  font-size: 24px;
  display: none;
  transition: all 0.4s;
  outline: none;
  cursor: pointer;
}

#mobile-nav-toggle.header-scrolled{
  margin-top: 20px;
}

#mobile-nav-toggle i {
  font-size: 1.14em;
  color: #fff;
}

/* Mobile Nav Styling */

#mobile-nav {
  position: fixed;
  top: 0;
  padding-top: 18px;
  bottom: 0;
  z-index: 998;
  background: rgba(0, 0, 0, 0.8);
  left: -260px;
  width: 260px;
  overflow-y: auto;
  transition: 0.4s;
}

#mobile-nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

#mobile-nav ul li {
  position: relative;
}

#mobile-nav ul li a {
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  overflow: hidden;
  padding: 10px 22px 10px 15px;
  position: relative;
  text-decoration: none;
  width: 100%;
  display: block;
  outline: none;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
}

#mobile-nav ul li a:hover {
  color: var(--bg);
}

#mobile-nav ul li li {
  padding-left: 30px;
}

#mobile-nav ul li.menu-active a {
  color: var(--bg);
}

#mobile-nav ul .menu-has-children i {
  position: absolute;
  right: 0;
  z-index: 99;
  padding: 15px;
  cursor: pointer;
  color: #fff;
}

#mobile-nav ul .menu-has-children i.fa-chevron-up {
  color: var(--bg);
}

#mobile-nav ul .menu-has-children li a {
  text-transform: none;
}

#mobile-nav ul .menu-item-active {
  color: var(--bg);
}

#mobile-body-overly {
  width: 100%;
  height: 100%;
  z-index: 997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(0, 0, 0, 0.7);
  display: none;
}


@media (min-width: 1024px) {
    #header #logo {
      padding-left: 60px;
    }
  
    #intro p {
      width: 60%;
    }
  
    #intro .carousel-control-prev,
    #intro .carousel-control-next {
      width: 5%;
    }
  
    #nav-menu-container {
      padding-right: 60px;
    }
  }
  
  @media (max-width: 768px) {
    .back-to-top {
      bottom: 15px;
    }
  
    #header #logo h1 {
      font-size: 28px;
    }
  
    #header #logo img {
      max-height: 40px;
    }
  
    #intro h2 {
      font-size: 28px;
    }
  
    #nav-menu-container {
      display: none;
    }
  
    #mobile-nav-toggle {
      display: inline;
    }
  
    about img {
      width: 100%;
      height: 230px;
    }
  }