@tailwind base;
@tailwind components;
@tailwind utilities;

@layer utilities {

    *,
    ::after,
    ::before {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    .black-text {
        color: #111113;
    }

    .bg-black {
        background: #111113;
    }

    .bg-darkblue {
        background: #00003b;
    }

    .bg-blue {
        background: #9086f6;
    }

    .border-1 {
        border-width: 1px;
    }

    .border-black {
        border-color: #111113;
    }



    @font-face {
        font-family: 'Poppins';
        src: url('../fonts/Poppins-Regular.woff') format('woff');
        font-weight: normal;
        font-style: normal;
    }

    @font-face {
        font-family: 'Magical';
        src: url('../fonts/MagicalStylishSansSerifDemo.woff') format('woff'), url('../fonts/MagicalStylishSansSerifDemo.woff2') format('woff2');
        font-weight: normal;
        font-style: normal;
    }

    html {
        overflow: hidden;
    }

    body::-webkit-scrollbar {
        width: 5px;
        background-color: transparent;
    }

    body::-webkit-scrollbar-thumb {
        border-radius: 10px;
        box-shadow: inset 0 0 6px rgb(0 0 0 / 30%);
        background-color: var(--blue);
    }

    body::-webkit-scrollbar-track {
        box-shadow: inset 0 0 6px rgb(0 0 0 / 30%);
        border-radius: 10px;
        background-color: transparent;
    }

    html {
        scroll-behavior: smooth;
    }

    html,
    body {
        overflow-x: hidden;
        font-family: 'Poppins';
    }

    :root {
        --white: #fff;
        --black: #111113;
        --pink: #b0e0e9;
        --darkblue: #00003b;
        --blue: #9086f6;
    }



    /* Nav =============================================================================================================================================== */

    nav {
        position: fixed;
        z-index: 30;
        left: 0;
        top: -30%;
        right: 0;
        padding: 1% 0;
        transition: all 1.5s ease-out;
    }

    .navbar-background {
        background: var(--white);
        z-index: 2;
        left: 0;
        top: -100%;
        transition: all 0.3s ease-in-out;
    }

    .header-cta {
        border-radius: 5px;
        transition: all 0.3s ease-in-out;
    }

    .front-cta-primary {
        border-radius: 5px;
        background: var(--blue);
    }

    .front-cta-secondary {
        border-radius: 5px;
        background: transparent;
        border: 1px solid var(--blue);
    }

    /* nav .links {
    float: right;
    display: flex;
    justify-content: end;
    align-items: center;
    padding: 0;
    margin: 0;
    height: 100%;
    min-width: 50%;
    position: relative;
    z-index: 30;
} */

    nav .links li {
        list-style: none;
    }

    nav .links li.active a {
        font-weight: bold;
    }



    /* nav .links a:hover,
.header-line:hover {
    color: var(--cyan);
} */

    #nav-toggle {
        position: absolute;
        display: none;
    }

    nav .icon-burger {
        display: none;
        position: absolute;
        right: 5%;
        top: 50%;
        transform: translateY(-50%);
        z-index: 30;
    }

    nav .icon-burger .line {
        width: 30px;
        height: 3px;
        background: white;
        margin: 5px;
        border-radius: 5px;
        transition: all .4s ease-in-out;
    }

    .section-one,
    .section-two,
    .section-three,
    .section-four,
    .section-five,
    .section-seven {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        padding: 5%;
    }

    .section-eight,
    .contact-section {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .smooth-scroll-wrapper {
        position: fixed;
        z-index: 2;
        top: 0;
        left: 0;
        overflow: hidden;
    }



    /* Section One =============================================================================================================================================== */

    .section-one {
        position: fixed;
        z-index: 1;
        height: 100vh;
        width: 100%;
        --grid-size: 30px;
        --grid-strength: 1px;
        --grid-dash: 5px;
        --grid-gap: 5px;
        --grid-color: rgba(221, 221, 221, 0.4);
        --paper-color: #fff;

        background-color: var(--paper-color);
        background-size: var(--grid-dash) var(--grid-dash), var(--grid-size) var(--grid-size);
        background-image:
            linear-gradient(to bottom, transparent var(--grid-gap), var(--paper-color) var(--grid-gap)),
            linear-gradient(to right, var(--grid-color) var(--grid-strength), transparent var(--grid-strength)),
            linear-gradient(to right, transparent var(--grid-gap), var(--paper-color) var(--grid-gap)),
            linear-gradient(to bottom, var(--grid-color) var(--grid-strength), transparent var(--grid-strength));
        background-attachment: fixed;
        background-position: center;
    }

    .front-black {
        --grid-size: 30px;
        --grid-strength: 1px;
        --grid-dash: 5px;
        --grid-gap: 5px;
        --grid-color: rgba(89, 91, 90, 0.7);
        --paper-color: var(--darkblue);

        background-color: var(--paper-color);
        background-size: var(--grid-dash) var(--grid-dash), var(--grid-size) var(--grid-size);
        background-image:
            linear-gradient(to bottom, transparent var(--grid-gap), var(--paper-color) var(--grid-gap)),
            linear-gradient(to right, var(--grid-color) var(--grid-strength), transparent var(--grid-strength)),
            linear-gradient(to right, transparent var(--grid-gap), var(--paper-color) var(--grid-gap)),
            linear-gradient(to bottom, var(--grid-color) var(--grid-strength), transparent var(--grid-strength));
        background-attachment: fixed;
        background-position: center;
        width: 25%;
        height: 100%;
        left: -50%;
        transition: all 2s ease-in-out;
    }

    .front-soc-icon {
        opacity: 0;
        transform: translateY(70%);
        transition: all 1.7s ease-out;
    }

    .front-soc-icon a {
        background: var(--black);
        padding: 10px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .section-one-container {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 100%;
        align-items: end;
        justify-content: center;
    }

    .front-cta-container {
        opacity: 0;
        transform: translateY(5rem);
        transition: all 1.3s ease-out;
    }

    .header-hello {
        font-family: 'Poppins';
        font-weight: 100;
        color: var(--black);
        opacity: 0;
        transform: translateY(5rem);
        transition: all 1s ease-out;
    }

    .header-name {
        font-family: 'Poppins';

        font-weight: 600;
        color: var(--black);
    }

    .header-tag {
        font-family: 'Magical';
        font-weight: 100;
        color: var(--black);
    }

    .front-my-image {
        background-image: url(../assets/profile-pic\ \(3\).png);
        background-attachment: fixed;
        background-position: top;
        background-size: 100%;
        background-repeat: no-repeat;
        border-radius: 50%;
        width: 25rem;
        height: 25rem;
        top: 50%;
        left: 100%;
        transform: translate(-50%, -50%);
        transition: all 1s ease-in-out;
    }

    .front-image-offset {
        opacity: 0;
        outline: 10px solid var(--blue);
        border-radius: 50%;
        outline-offset: 10px;
        transition: all 0.5s ease-in-out;
    }

    .front-image-offset::before {
        content: "";
        position: absolute;
        width: 50%;
        top: 0;
        right: 0;
        z-index: 2;
    }

    /* Section Two =============================================================================================================================================== */

    .section-two {
        position: relative;
        z-index: 5;
        width: 100%;
        background-color: #9086F6;
        background-image: url("../assets/squad.jpg");
        background-size: cover;

        background-attachment: fixed;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
    }

    .section-two::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(17, 17, 19, 0.9);
    }

    .section-two-container {
        position: relative;
        z-index: 2;
    }

    .section-two-container-one {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 100%;
        align-items: end;
        justify-content: center;
        margin: 0 0 5% 0;
    }

    .section-two-container-two {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 100%;
        align-items: start;
        justify-content: center;
    }

    .white-main-header {
        font-family: 'Magical';

        font-weight: 400;
        color: var(--white);
    }

    .about-me-par {
        padding: 20px 0 0;
        font-family: 'Poppins';
        font-size: 1.2rem;
        font-weight: 100;
        width: 100%;
        text-align: right;
        color: var(--white);
    }

    .about-me-par-2 {
        padding: 20px 0 0;
        font-family: 'Poppins';
        font-size: 1.2rem;
        font-weight: 100;
        width: 100%;
        text-align: left;
        color: var(--white);
    }

    .col-about-container {
        display: flex;
        flex-direction: column;
        align-items: end;
        justify-content: center;
    }

    .col-dsc-about-container {
        display: flex;
        flex-direction: column;
        align-items: start;
        justify-content: center;
    }

    .col-my-image-container,
    .col-dsc-image-container {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .col-my-image,
    .col-dsc-image {
        height: 100%;
        width: 60%;
        border-radius: 25px;
        object-fit: contain;
    }


    /* Section Three =============================================================================================================================================== */

    .section-three {
        position: relative;
        z-index: 5;
        width: 100%;
        background-color: #ffffff;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1600 900'%3E%3Cdefs%3E%3ClinearGradient id='a' x1='0' x2='0' y1='1' y2='0' gradientTransform='rotate(0,0.5,0.5)'%3E%3Cstop offset='0' stop-color='%230FF'/%3E%3Cstop offset='1' stop-color='%23CF6'/%3E%3C/linearGradient%3E%3ClinearGradient id='b' x1='0' x2='0' y1='0' y2='1'%3E%3Cstop offset='0' stop-color='%23F00'/%3E%3Cstop offset='1' stop-color='%23FC0'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg fill='%23FFF' fill-opacity='0' stroke-miterlimit='10'%3E%3Cg stroke='url(%23a)' stroke-width='3.3'%3E%3Cpath d='M1409 581 1450.35 511 1490 581z'/%3E%3Ccircle stroke-width='1.1' transform='' cx='500' cy='100' r='40'/%3E%3Cpath transform='' d='M400.86 735.5h-83.73c0-23.12 18.74-41.87 41.87-41.87S400.86 712.38 400.86 735.5z'/%3E%3C/g%3E%3Cg stroke='url(%23b)' stroke-width='1'%3E%3Cpath transform='' d='M149.8 345.2 118.4 389.8 149.8 434.4 181.2 389.8z'/%3E%3Crect stroke-width='2.2' transform='' x='1039' y='709' width='100' height='100'/%3E%3Cpath transform='' d='M1426.8 132.4 1405.7 168.8 1363.7 168.8 1342.7 132.4 1363.7 96 1405.7 96z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        background-attachment: fixed;
        background-size: cover;
    }

    .skills-containers {
        columns: 2;
    }

    .skills-wrapper {
        break-inside: avoid-column;
        margin-bottom: 2rem;
        background: white;
    }

    .section-three-container {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 100%;
        align-items: center;
        justify-content: center;
    }

    .skills-header-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .skills-row,
    .tools-icon-container {
        box-shadow: 5px 10px 45px 3px rgb(0 0 0 / 7%);
    }
    .tools-tooltip-mobile{
        opacity: 0;
        max-height: 0px;
    }
    .tools-logo-mobile{
        width: 100%;
    }
    .tools-slider .center .tools-tooltip-mobile{
        max-height: 1000px;
        opacity: 1;
    }
    .tools-slider .center .tools-logo-mobile{
        width: 85%;
    }
    #tools-dots-container .owl-dots{
        width: 180px;
        display: flex;
        align-items: center;
    }
    #tools-dots-container.owl-theme .owl-dots .owl-dot span{
        width: 100% !important;
        height: 3px !important;
        margin: 0 !important;
        opacity: 0.25;
        background: #111113 !important;
        display: block;
        -webkit-backface-visibility: visible;
        transition: opacity 200ms ease;
        border-radius: 0 !important;
    }
    #tools-dots-container.owl-theme .owl-dots .owl-dot.active span{
        background: #111113 !important;
        opacity: 1;
        width: 100% !important;
    }
    .skills-header {
        font-family: 'Magical';
        font-size: 3rem;
        font-weight: 300;
        color: var(--black);
    }

    .skills-logo {
        font-size: 1.7rem;
        margin: 0 0 5px 0;
        color: var(--black);
    }

    .skills-container {
        display: flex;
        width: 100%;
        height: 100%;
        margin: 2% 0;
        border-radius: 25px;
        box-shadow: 5px 10px 45px 3px rgb(0 0 0 / 7%);
    }

    .languages-container,
    .databases-container,
    .platform-container,
    .software-container {
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: center;
        /* box-shadow: 5px 10px 45px 3px rgb(0 0 0 / 7%); */
    }

    .language-header,
    .database-header,
    .platform-header,
    .software-header {
        font-family: 'Poppins';
        font-weight: 600;
        margin: 0 0 25px 0;
    }

    .underline {
        position: relative;
        z-index: 3;
        height: 2px;
        background-color: #000;
        width: 0;
        transition: width 0.3s ease, transform 0.3s ease;
    }

    .skills-container-contents {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: start;
        height: 100%;
        width: 100%;
    }

    .skills-contents {
        font-family: 'Poppins';
        font-size: 1rem;
        font-weight: 400;
        color: var(--black);
        margin: 0 0 20px 0;
    }


    /* Section Four =============================================================================================================================================== */

    .section-four {
        position: relative;
        z-index: 5;

        width: 100%;
        --grid-size: 30px;
        --grid-strength: 1px;
        --grid-dash: 5px;
        --grid-gap: 5px;
        --grid-color: rgba(221, 221, 221, 0.4);
        --paper-color: #fff;

        background-color: var(--paper-color);
        background-size: var(--grid-dash) var(--grid-dash), var(--grid-size) var(--grid-size);
        background-image:
            linear-gradient(to bottom, transparent var(--grid-gap), var(--paper-color) var(--grid-gap)),
            linear-gradient(to right, var(--grid-color) var(--grid-strength), transparent var(--grid-strength)),
            linear-gradient(to right, transparent var(--grid-gap), var(--paper-color) var(--grid-gap)),
            linear-gradient(to bottom, var(--grid-color) var(--grid-strength), transparent var(--grid-strength));
        background-attachment: fixed;
    }

    /* .section-four-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: start;
} */

    .projects-header {
        font-family: 'Magical';
        font-size: 3rem;
        font-weight: 300;
        color: var(--white);
    }


    /* Section Five =============================================================================================================================================== */

    .section-five {
        position: relative;
        z-index: 5;
        height: auto;
        width: 100%;
        --grid-size: 30px;
        --grid-strength: 1px;
        --grid-dash: 5px;
        --grid-gap: 5px;
        --grid-color: rgba(221, 221, 221, 0.4);
        --paper-color: #fff;

        background-color: var(--paper-color);
        background-size: var(--grid-dash) var(--grid-dash), var(--grid-size) var(--grid-size);
        background-image:
            linear-gradient(to bottom, transparent var(--grid-gap), var(--paper-color) var(--grid-gap)),
            linear-gradient(to right, var(--grid-color) var(--grid-strength), transparent var(--grid-strength)),
            linear-gradient(to right, transparent var(--grid-gap), var(--paper-color) var(--grid-gap)),
            linear-gradient(to bottom, var(--grid-color) var(--grid-strength), transparent var(--grid-strength));
        background-attachment: fixed;
    }

    .section-five-container {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 100%;
        align-items: center;
        justify-content: start;
    }

    .resume-header {
        font-family: 'Magical';
        font-size: 3rem;
        font-weight: 300;
        color: var(--black);
        margin-bottom: 3%;
    }

    .experience-container {
        width: 100%;
        height: 100%;
        border-radius: 25px;
        box-shadow: 5px 10px 45px 3px rgb(0 0 0 / 7%);
        padding: 3% 0;
        padding-right: 3%;
    }

    .experience-header-container {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .experience-header {
        font-family: 'Poppins';
        font-weight: 600;
        font-size: 1.3rem;
        color: var(--black);
    }

    .experience-all-container {
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }

    .experience-list-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: start;
        padding: 20px;
        background: var(--white);
        border-radius: 15px;
        box-shadow: 5px 10px 45px 3px rgb(0 0 0 / 7%);
        width: 100%;
        margin: 15px 0;
    }

    .experience-list-container h4 {
        padding-bottom: 5px;
    }

    .experience-list-container h4:last-of-type {
        padding-bottom: 0px;
    }

    .experience-list-header {
        font-family: 'Poppins';
        font-weight: 600;
        font-size: 1.2rem;
        color: var(--black);
        padding-bottom: 15px;
    }

    .experience-list-position,
    .experience-list-location,
    .experience-list-date {
        font-family: 'Poppins';
        font-weight: 300;
        font-size: 1rem;
        color: var(--black);
    }

    .breakline {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin: 5% 0;
    }

    .hr {
        height: 1px;
        width: 100%;
        background: var(--black);
    }


    /* Section Six =============================================================================================================================================== */
    .project-video {

        object-fit: contain;
    }

    .section-six {
        position: relative;
        z-index: 2;
        height: 100vh;
        width: 100vw;
        background-image: url('https://vincebarnachea.github.io/assets/bg.png');
        background-position: center;
        /* background-repeat: no-repeat; */
        background-attachment: fixed;
    }

    .section-six::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
    }

    .section-six-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100%;
        width: 100%;
    }

    .section-six-header {
        font-family: fantasy;
        font-weight: 400;
        -webkit-text-fill-color: transparent;
        font-size: 20rem;

        font-weight: 400;
        -webkit-text-stroke: 4px var(--white);
        -webkit-transition: all 0.1s ease-in-out;
    }

    #never {
        position: relative;
    }

    #stop {
        position: relative;
    }

    #learning {
        position: relative;
    }

    .section-six-header:hover {
        font-weight: 400;
        -webkit-text-fill-color: #FCDC2A;
        -webkit-text-stroke: 4px #FCDC2A;
    }

    /* Section Seven =============================================================================================================================================== */

    .section-seven {
        position: relative;
        z-index: 5;
        width: 100%;
        background-color: #ffffff;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1600 900'%3E%3Cdefs%3E%3ClinearGradient id='a' x1='0' x2='0' y1='1' y2='0' gradientTransform='rotate(0,0.5,0.5)'%3E%3Cstop offset='0' stop-color='%230FF'/%3E%3Cstop offset='1' stop-color='%2300003B'/%3E%3C/linearGradient%3E%3ClinearGradient id='b' x1='0' x2='0' y1='0' y2='1'%3E%3Cstop offset='0' stop-color='%2370F617'/%3E%3Cstop offset='1' stop-color='%239086F6'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg fill='%23FFF' fill-opacity='0' stroke-miterlimit='10'%3E%3Cg stroke='url(%23a)' stroke-width='2'%3E%3Cpath transform='translate(-59.5 13.6) rotate(8.5 1409 581) scale(1.034)' d='M1409 581 1450.35 511 1490 581z'/%3E%3Ccircle stroke-width='4' transform='translate(-34 34) rotate(10.2 800 450) scale(1.017)' cx='500' cy='100' r='40'/%3E%3Cpath transform='translate(30.6 -102) rotate(102 401 736) scale(1.017)' d='M400.86 735.5h-83.73c0-23.12 18.74-41.87 41.87-41.87S400.86 712.38 400.86 735.5z'/%3E%3C/g%3E%3Cg stroke='url(%23b)' stroke-width='4'%3E%3Cpath transform='translate(204 -13.6) rotate(3.4 150 345) scale(0.966)' d='M149.8 345.2 118.4 389.8 149.8 434.4 181.2 389.8z'/%3E%3Crect stroke-width='8' transform='translate(-136 -85) rotate(122.4 1089 759)' x='1039' y='709' width='100' height='100'/%3E%3Cpath transform='translate(-204 68) rotate(20.4 1400 132)' d='M1426.8 132.4 1405.7 168.8 1363.7 168.8 1342.7 132.4 1363.7 96 1405.7 96z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        background-attachment: fixed;
        background-size: cover;
    }



    .black-main-header {
        font-family: 'Magical';
        font-weight: 300;
        color: var(--black);
    }

    .certificate-wrapper {
        background: var(--white);
        border-radius: 10px;
        box-shadow: 5px 10px 45px 3px rgb(0 0 0 / 7%);
    }

    .certificate-wrappers {
        background: var(--white);
        border-radius: 10px;
    }

    .cert-image {
        aspect-ratio: 4/3;
    }




    /* Section Eight =============================================================================================================================================== */

    .section-eight {
        display: none;
        position: fixed;
        bottom: 0;
        z-index: 0;
        width: 100%;
        --grid-size: 30px;
        --grid-strength: 1px;
        --grid-dash: 5px;
        --grid-gap: 5px;
        --grid-color: rgba(221, 221, 221, 0.4);
        --paper-color: #fff;

        background-color: var(--paper-color);
        background-size: var(--grid-dash) var(--grid-dash), var(--grid-size) var(--grid-size);
        background-image:
            linear-gradient(to bottom, transparent var(--grid-gap), var(--paper-color) var(--grid-gap)),
            linear-gradient(to right, var(--grid-color) var(--grid-strength), transparent var(--grid-strength)),
            linear-gradient(to right, transparent var(--grid-gap), var(--paper-color) var(--grid-gap)),
            linear-gradient(to bottom, var(--grid-color) var(--grid-strength), transparent var(--grid-strength));
        background-attachment: fixed;
        background-position: center;
    }

    .contact-section {
        z-index: 5;
        width: 100%;
        --grid-size: 30px;
        --grid-strength: 1px;
        --grid-dash: 5px;
        --grid-gap: 5px;
        --grid-color: rgba(221, 221, 221, 0.4);
        --paper-color: #fff;

        background-color: var(--paper-color);
        background-size: var(--grid-dash) var(--grid-dash), var(--grid-size) var(--grid-size);
        background-image:
            linear-gradient(to bottom, transparent var(--grid-gap), var(--paper-color) var(--grid-gap)),
            linear-gradient(to right, var(--grid-color) var(--grid-strength), transparent var(--grid-strength)),
            linear-gradient(to right, transparent var(--grid-gap), var(--paper-color) var(--grid-gap)),
            linear-gradient(to bottom, var(--grid-color) var(--grid-strength), transparent var(--grid-strength));
        background-attachment: fixed;
        background-position: center;
    }

    .section-eight-container {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 100%;
        align-items: center;
        justify-content: start;
    }

    .contact-header {
        font-family: 'Magical';
        font-size: 3rem;
        font-weight: 300;
        color: var(--white);
        margin-bottom: 3%;
    }

    .form-inputs {
        border: 1px solid #ddd;
    }

    .submit-btn {
        border-radius: 5px;
        background: var(--blue) !important;
    }

    .submit-btn:hover {
        cursor: pointer;
    }

    .form-inputs:focus {
        outline: 2px solid #ddd !important;
    }

    .contact-row {
        width: 100%;
    }

    .gmail-header,
    .get-in-touch-header {
        text-align: center;
    }

    .contact-col {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .gmail-address-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .get-in-touch-icons-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }




    .get-in-touch-icons-container a:hover .get-icon {
        color: var(--white);
    }

    .foot-icon-container {
        border-radius: 50%;
        transition: all 0.3s ease-in-out;
        background: var(--blue);

    }

    .get-icon-front {
        color: white;

        width: 45px;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: all ease-in-out 0.3s;
    }

    .get-icon {
        color: var(--white);
        padding: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: all ease-in-out 0.3s;
    }

    .all-rights-container {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .all-rights-reserved {
        font-size: 0.9rem;
    }

    .contact-forms input::placeholder,
    .contact-forms textarea::placeholder {
        visibility: hidden;
    }

    .contact-forms input:focus,
    .contact-forms textarea:focus {
        outline: none;
    }

    .contact-forms label {
        color: rgba(0, 0, 0, 0.5);
        font-size: 16px;
        pointer-events: none;
        transition: all 0.2s ease;
        position: absolute;
        left: 1rem;
        transform: translateY(12px);
        z-index: 0;
    }

    .field-error .error-text {
        display: block;
    }

    .field-error .form-inputs {
        border: 2px solid #d93025;
    }

    .error-text {
        display: none;
        position: absolute;
        top: -1.5rem;
        right: 0;
        color: #d93025;
    }

    .contact-forms label.has-value {
        transform: translate(-1rem, -1.5rem);
        font-size: 14px;
        color: var(--black);
    }

    /* Progress Bar */

    .progress-bar-container {
        position: fixed;
        bottom: 0;
        left: 0;
        z-index: 99;
        width: 100%;
        height: 10px;
    }

    .progress-bar {
        width: 0;
        height: 100%;
        background: #9086f6;
        transition: all ease-in-out 0.1s;
    }

    .loading-text {
        animation: beat 3s infinite;
    }

    @keyframes beat {
        0% {
            opacity: 1;
        }

        50% {
            opacity: 0;
        }

        100% {
            opacity: 1;
        }
    }

    /* ================================================================================================================================================================= */

    @media only screen and (max-width: 850px) {
        .skills-containers {
            columns: 1;
        }

        .section-six-header {
            -webkit-text-stroke: 1px var(--white);
        }

        .section-six-header:hover {
            -webkit-text-stroke: 1px var(--white);
        }
        .front-black {
            left: 0;
            top: -50%;
            height: 0;
            width: 100%;
        }

        .front-my-image {
            top: 100%;
            transform: translate(-50%, -50%);
            left: 50%;
            width: 10rem;
        }

        .front-image-offset {
            outline: 5px solid var(--blue);
            outline-offset: 5px;
        }

        .section-one-container {
            justify-content: end;
            align-items: center;
            padding: 0 0 25%;
        }

        .section-one,
        .section-two,
        .section-three,
        .section-four,
        .section-five,
        .section-seven {
            padding: 10% 5%;
        }


    }


    .loader-container {
        z-index: 999;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        z-index: 999;
        background: var(--black);
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .loader-wrapper {
        position: relative;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        margin: auto;
    }

    .loader-wrapper .packman::before {
        content: '';
        position: absolute;
        width: 50px;
        height: 25px;
        background-color: #EFF107;
        border-radius: 100px 100px 0 0;
        transform: translate(-50%, -50%);
        animation: pac-top 0.5s linear infinite;
        transform-origin: center bottom;
    }

    .loader-wrapper .packman::after {
        content: '';
        position: absolute;
        width: 50px;
        height: 25px;
        background-color: #EFF107;
        border-radius: 0 0 100px 100px;
        transform: translate(-50%, 50%);
        animation: pac-bot 0.5s linear infinite;
        transform-origin: center top;
    }

    @keyframes pac-top {
        0% {
            transform: translate(-50%, -50%) rotate(0)
        }

        50% {
            transform: translate(-50%, -50%) rotate(-30deg)
        }

        100% {
            transform: translate(-50%, -50%) rotate(0)
        }
    }

    @keyframes pac-bot {
        0% {
            transform: translate(-50%, 50%) rotate(0)
        }

        50% {
            transform: translate(-50%, 50%) rotate(30deg)
        }

        100% {
            transform: translate(-50%, 50%) rotate(0)
        }
    }

    .dots .dot {
        position: absolute;
        z-index: -1;
        top: 8px;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #fff;
    }

    .dots .dot:nth-child(1) {
        left: 90px;
        animation: dot-stage1 0.5s infinite;
    }

    .dots .dot:nth-child(2) {
        left: 60px;
        animation: dot-stage1 0.5s infinite;
    }

    .dots .dot:nth-child(3) {
        left: 30px;
        animation: dot-stage1 0.5s infinite;
    }

    .dots .dot:nth-child(4) {
        left: 10px;
        animation: dot-stage2 0.5s infinite;
    }

    @keyframes dot-stage1 {
        0% {
            transform: translate(0, 0);
        }

        100% {
            transform: translate(-24px, 0);
        }
    }

    @keyframes dot-stage2 {
        0% {
            transform: scale(1);
        }

        5%,
        100% {
            transform: scale(0);
        }
    }

    .show-slide .burger-container .burger-line:nth-child(1) {
        transform: translateY(6px) rotate(225deg);
    }

    .show-slide .burger-container .burger-line:nth-child(2) {
        transform: rotate(360deg);
        opacity: 0;
    }

    .show-slide .burger-container .burger-line:nth-child(3) {
        transform: translateY(-10px) rotate(-225deg);
    }

    @keyframes slideDown {
        0% {

            height: 100%;
        }

        100% {

            height: 100vh;
        }
    }

    @keyframes slideUp {
        0% {
            height: 100vh;
        }

        100% {
            height: 100%;
        }
    }

    @keyframes slideLeft {
        0% {
            left: 100%;
        }

        100% {
            left: 0;
        }
    }

    @keyframes slideRight {
        0% {
            left: 0;
        }

        100% {
            left: 100%;
        }
    }

    .timeline-dot::before {
        content: "";
        position: absolute;
        display: flex;
        height: 13px;
        width: 13px;
        top: 50%;
        background: var(--blue);
        left: 50%;
        transform: translate(-50%, -50%);
        border-radius: 100%;
    }
}