/* --------------------*----------------*------------------*--------- Fonts */
/* @import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap'); */


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

/* --------------------*----------------*------------------*--------- General Styles */
:root {
    font-size: 62.5%;

    /* --------------------*----------------*---- Website Theme */
    --color-primary: #FFFFFF;
    --color-primary2: #ffffff99;
    --color-secondary: #25303b;
    
    
    --color-background-primary: #1b252c;
    --color-background-primary1: #25303b;
    --color-background-primary2: #415366;
    --color-background-secondary: #4d5b65;
    --color-background-tertiary: #80878b;
    --color-background-quaternary: #969dca;
    --color-background-quaternary3: #858bb3;
    --color-background-quaternary2: #97a898;

    /* 
        --------------- Sizing Nature
        d   = dynamic
        st  = static

        ---------------- Sizing
        l   = large
        m   = medium
        s   = small
        xs  = extra small
        c   = customized

        ----------------- Orientation
        h   = horizontal (right & left)
        v   = vertical   (top & bottom)
    
    */

     /* --------------------*----------------*---- Padding */
     /* Dynamic */
    --padding-d-l-v: calc(2rem + 12vh);
    --padding-d-l-h: calc(2rem + 12vw);

    --padding-d-mc-v: calc(1rem + 4vh);
    --padding-d-mc-h: calc(1rem + 4vw);

    --padding-d-m-v: calc(1rem + 2vh);
    --padding-d-m-h: calc(1rem + 2vw);

    --padding-d-s-v: calc(1rem + 1vh);
    --padding-d-s-h: calc(1rem + 1vw);

    /* Static */
    --padding-st-l-h: 3rem;
    --padding-st-l-v: 2rem;

    --padding-st-m-h: 2.5rem;
    --padding-st-m-v: 1.5rem;

    --padding-st-s-h: 2rem;
    --padding-st-s-v: 1rem;    


    /* ------------------------------- Font Size
        --------------- Sizing Nature
        d   = dynamic
        st  = static

        ---------------- Sizing
        l   = large
        m   = medium
        s   = small
        xs  = extra small
        c   = customized

        ------------------------------------- Family
        font-family: "Oswald", sans-serif;
        font-family: "Plus Jakarta Sans", sans-serif;
    
    */
    /* Dynamic */
    --font-size-d-lc: calc(3rem + 3.5vw);
    --font-size-d-l: calc(2rem + 3vw);
    --font-size-d-mc: calc(2rem + 2.5vw);
    --font-size-d-m: calc(1rem + 2vw);
    --font-size-d-sc: calc(1rem + 1.5vw);
    --font-size-d-s: calc(1rem + 1vw);

    /* Static */
    --font-size-st-xl: 4rem;
    --font-size-st-lc: 3.5rem;
    --font-size-st-l: 3rem;
    --font-size-st-mc: 2.5rem;
    --font-size-st-m: 2rem;
    --font-size-st-sc: 1.5rem;
    --font-size-st-s: 1rem;
    
    /* Family */
    --font-family-nav: gt_pressura_mono_light, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --font-family-title: gt_pressura_mono_light, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --font-family-bigtext: gt_pressura_mono_light, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --font-family-smalltext: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

body {
    color: var(--color-primary);
    background-color: var(--color-background-secondary);
    font-family: var(--font-family-content);
    /* 1.6 * 10px = 16px */
    line-height: 0.9; 

    display: flex;
    flex-direction: column;
    align-items: center; 
}

a {
    text-decoration: none;
    border-radius: 1rem;
}

li {
    list-style: none;
}

a:visited {
    color: var(--color-primary2);
}

/* -----------*-----------------*---------------- Utility Classes */

/* --------*----------------------*------------* Section Padding */
.header__padding {
    /* padding: 0 var(--padding-d-l-h); */
    width: 1440px;
}

.section__padding--II {
    /* padding: 0 var(--padding-d-l-h); */
    width: 1440px;
}

footer {
    width: 1440px;
}

.section__padding {
    padding: var(--padding-d-l-v) var(--padding-d-l-h);
}

/* -----------*---------------------*---------------* Section Title */
.section__title {
    font-size: var(--font-size-d-sc);
    font-weight: 900;
}

/*----------*----------*----------* Section Para */
.section__para {
    font-size: var(--font-size-st-sc);
    color: var(--color-quaternary);
}

.mobile-nav {
    display: none;
}

.burger {
    font-size: 30px;
}

.close--burger,
.backNav {
    display: none;
    font-size: 30px;
}

.desktop-nav {
    display: flex;
    justify-content: space-between;
    background-color: var(--color-background-primary);
    
    padding: 1rem 2rem;
    position: fixed;
    /* width: 100%; */
    top: 0;
    /* right: 0; */
    /* left: 0; */

    background-color: var(--color-background-primary);
    z-index: 10;
}

#mobile__nav-items {
    display: none;
}

#capabilities-section,
#projects-section,
#mobile__projects-items,
#mobile__capabilities-items {
    display: none;
}

.mobile__nav-items__list  {
    display: none;
}

.nav-logo,
.mobile__nav-logo {
    cursor: pointer;
}

.nav-logo figure {
    width: 5rem;
    height: 5rem;
}

.nav-logo figure img {
    width: 100%;
    height: 100%;
}


.nav-items__list {
    height: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-items__list--item {
    padding: 1.5rem 1.5rem; 
    font-size: 16px;   
    font-family: var(--font-family-nav);
    cursor: pointer;
}

.nav-items__list--item:hover {
    background-color: #ffffff3d;
}
/* Header

/* DROPDOWNS */
.dropdown {
    background-color: var(--color-background-primary);
    padding: 0rem 4rem 2rem;
}
/* DROPDOWNS */

#capabilities-section,
#projects-section {
    position: fixed;
    top: 70px;
    z-index: 10;
}

.dropdown--items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2.5rem;

    font-family: var(--font-family-smalltext);
    font-weight: 700;
}

.dropdown--items__item {
    height: 22rem;
    width: 40rem;

    padding: 3rem;
    padding-right: 2rem;
    padding-bottom: 2rem;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    cursor: pointer;
}

.dropdown--items__item--title {
    font-size: 32px;
}

.dropdown--items__item--navbutton {
    align-self: end;

    display: flex;
    justify-content: center;
    align-items: center;

    height: 50px;
    width: 50px;
    background-color: rgba(255, 255, 255, 0.795);
    cursor: pointer;
    border-radius: 50%;
}

.dropdown--items__item--navbutton:hover {
    background-color: white;
}

.dropdown--items__item--navbutton img {
    /* width: 50%;
    height: 50%; */
}

.thumbnail--erp {
    background-image: url('images/thumbnail/ERP.jpg');
    background-size: cover;
}
.thumbnail--automation {
    background-image: url('images/thumbnail/automation3.jpg');
    background-size: cover;
}
.thumbnail--simulation {
    background-image: url('images/thumbnail/simulation3.jpeg');
    background-size: cover;
}
.thumbnail--photographer {
    background-image: url('images/thumbnail/photographer.jpg');
    background-size: cover;
}


/* HERO SECTION */
#hero__section {
    background-color: var(--color-background-primary1);

    display: flex;
    justify-content: space-between;
    padding: 15rem 10rem 4rem 10rem;
    column-gap: 5rem;

    /* padding-top: 70px; */
}

.hero__section--content {
    display: flex;
    flex-direction: column;
    row-gap: 3rem;
}

.hero__section--content__greetings {
    display: flex;
    column-gap: 1rem;
    align-items: center;
}

.hero__section--content__greetings .message {
    color: var(--color-primary2);

    font-size: 24px;
    font-family: var(--font-family-smalltext);
}

.hero__section--content__greetings figure {
    width: 25px;
    height: 25px;
}

.hero__section--content__greetings figure img {
    width: 100%;
    height: 100%;
} 

.hero__section--content__title {
    font-size: 40px;
    font-family: var(--font-family-title);
    font-weight: 900;
    display: flex;
    flex-wrap: wrap;
}

.hero__section--content__paragraph {
    color: var(--color-primary2);
    font-size: 20px;
    font-family: var(--font-family-smalltext);
    line-height: 1.5;

    display: flex;
    flex-wrap: wrap;
}

.hero__section--content__action {
    
    align-self: start;
    display: flex;
    column-gap: 4rem;

    display: flex;
    flex-wrap: wrap;
}

.hero__section--content__projects {
    padding: 2rem 3rem;
    font-family: var(--font-family-smalltext);
    font-size: 18px;
    font-weight: 700;
    border-radius: 25px;

    color: var(--color-background-primary1);
    background-color: var(--color-primary);
    cursor: pointer;
}

.hero__section--content__projects:hover {
    background-color: var(--color-primary2);
}

.hero__section--content__learn-more {
    padding: 2rem 3rem;
    font-family: var(--font-family-smalltext);
    font-size: 18px;
    font-weight: 700;
    border-radius: 25px;

    color: var(--color-primary);
    background-color: var(--color-background-quaternary);
    cursor: pointer;
}

.hero__section--content__learn-more:hover {
    background-color: var(--color-background-quaternary3);
}

.hero__section--image figure {
    width: 400px;
    height: 400px;
}

.hero__section--image figure img {
    width: 100%;
    height: 100%;

    border: 2px solid var(--color-background-quaternary2);
    border-radius: 50%;
}

.divider {
    height: 1px;
    background-color: var(--color-background-secondary);
}

/* INDUSTRIES */
#industries {
    background-color: var(--color-background-primary1);

    padding: 3rem 5rem;
    display: flex;
    align-items: center;
    flex-direction: column;

    row-gap: 6rem;

    color: var(--color-primary2);
    overflow: hidden;
    position: relative;
    /* white-space: nowrap; Prevents content wrapping */
}

.industries__header {
    font-family: var(--font-family-title);
    font-size: 20px;
    font-weight: 700;

    display: flex;
    flex-wrap: wrap;
    line-height: 1.2;

    text-align: center;
}

@keyframes moveAcross {
    from {
        /* opacity: 0; */
        transform: translateX(0);
    }
    to {
        /* opacity: 1; */
        transform: translateX(-50%);
    }
}

.industries__scroll-wrapper {
    display: flex;
    width: max-content; /* Prevents wrapping */
    animation: moveAcross 10s linear infinite;
}

.industries__names {
    display: flex;
    column-gap: 10rem;
    row-gap: 5rem;
    
    flex-wrap: wrap;
    justify-content: center;
    /* animation: moveAcross 10s linear infinite; */
}

.industries__names .tag {
    background-color: var(--color-background-quaternary3);
    padding: 1rem 1.5rem 1rem 1rem;
    display: flex;
    align-items: center;
    column-gap: 1rem;
    /* justify-content: space-between; */
}

.industries__names .tag:nth-of-type(n) {
    transform: rotate(-2deg);
}

.industries__names .tag:nth-of-type(2n) {
    transform: rotate(2deg);
}

.industries__names .hole {
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background-color: var(--color-background-primary1);
}

.industries__names .name {
    font-family: var(--font-family-bigtext);
    font-size: 30px;
}

/* INDUSTRIES */

/* PROJECTS */
#my-projects {
    background-color: var(--color-background-primary1);

    padding-top: 4rem;
}

.my-projects__Intro {
    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 2rem;
}

.my-projects__Intro--title {
    font-family: var(--font-family-title);
    font-size: 40px;
    font-weight: 600;
}

.my-projects__Intro--para {
    font-family: var(--font-family-smalltext);
    font-size: 18px;
    width: 45%;
    text-align: center;
    line-height: 1.5;

    color: var(--color-primary2);
}

.my-projects__lists {
    display: flex;
    flex-direction: column;

    padding: 4rem 10rem;
    row-gap: 4rem;
}

.my-projects__lists--item {
    display: flex;
    /* width: 100%; */
    color: var(--color-background-primary);
    background-color: var(--color-primary);
}

/* .my-projects__lists--item .bg-image {
    width: 720px;
    height: 100%;

    overflow: hidden;
}

.my-projects__lists--item figure img {
    width: 100%;
    height: 100%;
    
    object-fit: cover;
} */

.my-projects__lists--item .image-container {
    /* min-height: 505px; */
}

#canalytics .bg-image {
    background-image: url("images/canalytics/desktop.JPG");

    width: 600px;
    height: 450px;

    background-size: cover;
    background-position: left top;
}

#batchplugin .bg-image {
    background-image: url("images/batchfast/desktop.JPG");

    width: 600px;
    height: 450px;

    background-size: cover;
    background-position: right top;
}

#fleetsimulation .bg-image {
    background-image: url("images/fleetmanager/desktop.JPG");

    width: 600px;
    height: 450px;

    background-size: cover;
    background-position: left center;
}

#photographer .bg-image {
    background-image: url("images/photographer/desktop.JPG");

    width: 600px;
    height: 450px;

    background-size: cover;
    background-position: left center;
}

#canalytics,
#fleetsimulation {
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
}

#batchplugin,
#photographer {
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
}

.my-projects__lists--item .project-info {
    /* flex: 1; */
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    padding: 4rem;
}

.my-projects__lists--item .project-info .top {
    display: flex;
    flex-direction: column;
    row-gap: 2rem;
}

.my-projects__lists--item .project-info .top .title {
    font-size: 21px;
    font-family: var(--font-family-title);
    font-weight: 500;
}
.my-projects__lists--item .project-info .top .caption {
    font-size: 32px;
    font-family: var(--font-family-bigtext);
    font-weight: 700;

    display: flex;
    flex-wrap: wrap;
}
.my-projects__lists--item .project-info .top .para {
    font-size: 16px;
    font-family: var(--font-family-smalltext);
    font-weight: 300;
    line-height: 1.5;

    display: flex;
    flex-wrap: wrap;
}

.my-projects__lists--item .project-info .bottom {
    align-self: end;
}

.my-projects__lists--item .project-info .bottom button {
    padding: 1rem 2rem;
    border: 1px solid transparent;
    border-radius: 25px;

    color: #fff;
    background-color: var(--color-background-primary1);

    font-size: 22px;
    font-family: var(--font-family-bigtext);
    cursor: pointer;
}

.my-projects__lists--item .project-info .bottom a {
    padding: 1rem 2rem;
    border: 1px solid transparent;
    border-radius: 25px;

    color: #fff;
    background-color: var(--color-background-primary1);

    font-size: 22px;
    font-family: var(--font-family-bigtext);
    cursor: pointer;
}

.my-projects__lists--item .project-info .bottom a:hover {
    background-color: var(--color-background-primary2);
}

.my-projects__lists--item .project-info .bottom button:hover {
    background-color: var(--color-background-primary);
}

#canalytics-btn span,
#batchfast-btn span,
#fleetsimulation-btn span,
#photographer-btn span {
    /* padding-left: 1.5rem; */
    font-size: 2rem;
}

/* PROJECTS */

/* CAPABILITIES */
#my-capabilities__temp {
    background-color: var(--color-background-primary1);
    padding-top: 4rem;
}

.my-capabilities__temp--container {
    display: flex;
    flex-wrap: wrap;
    row-gap: 4rem;

    padding: 5rem 10rem;
    justify-content: space-evenly;
}

.product-design,
.development {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    row-gap: 2rem;
}

.product-design figure,
.development figure {
    width: 70px;
    height: 70px;
}

.product-design figure img,
.development figure img {
    width: 100%;
    height: 100%;
}

.product-design h2,
.development h2 {
    font-family: var(--font-family-bigtext);
    font-size: 30px;
    font-weight: 700;
}

.product-design .items,
.development .items {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 2.5rem;

    font-family: var(--font-family-smalltext);
    font-size: 18px;
    font-weight: 500;
    color: var(--color-primary);

    padding-top: 2rem;
}

.product-design .items .small-tag,
.development .items .small-tag {
    background-color: var(--color-background-quaternary3);
    display: flex;
    column-gap: 1rem;
    align-items: center;
    padding: 0.5rem 2rem 0.5rem 0.5rem;

    border-radius: 10px;
    transform: rotate(2deg);
    z-index: 0; /* because transform changes the stacking hierarchy*/
}

.development .items .small-tag {
    background-color: var(--color-background-quaternary2);
}

.product-design .items .small-tag:nth-of-type(2n),
.development .items .small-tag:nth-of-type(2n) {
    transform: rotate(-2deg);
    z-index: 0; /* because transform changes the stacking hierarchy*/
}

.product-design .items .hole,    
.development .items .hole {    
    width: 10px;
    height: 10px;
    border-radius: 50%;

    align-self: start;
    background-color: var(--color-background-primary);
}

.product-design .items .name,
.development .items .name {
    padding: 1rem;
    font-size: var(--font-size-d-s);
    font-size: 18px;
}
/* CAPABILITIES */


/* SKILLS */
#my-skills {
    background-color: var(--color-background-primary1);
    padding-top: 4rem;
}

#my-skills .my-projects__Intro--para {
    font-size: 20px;
    font-weight: 600;
}

.my-skills__container {
    display: flex;
    flex-direction: column;

    align-items: center;
}

.my-skills__container--group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;

    padding: 64px 30px;
}

.my-skills__container--items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.my-skills__container--title {
    font-family: var(--font-family-title);
    font-weight: 700;
    font-size: 30px;
}

.my-skills__container--items__item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    /* row-gap: 2rem; */
    padding: 2rem;

    width: 136px;
    height: 136px;

    font-family: var(--font-family-smalltext);
    font-weight: 600;
    font-size: 16px;

    border: 1px solid transparent;
    border-radius: 10px;    
    background-color: var(--color-background-secondary);
}

/* .my-skills__container--items__item .figure-bigger {
    padding-left: 0;
    padding-right: 0;
} */

.my-skills__container--items__item figure {
    width: 60px;
    height: 60px;
}

.my-skills__container--items__item .figure-smaller {
    padding-top: 0.5rem;
    height: 50px;
    width: 60px;
}

.my-skills__container--items__item .figure-bigger-width {
    width: 100px;
    height: 60px;
}

.my-skills__container--items__item figure img {
    width: 100%;
    height: 100%;
}

/* SKILLS */

/* CONTACT */
#contact {
    background-color: var(--color-background-primary1);
    padding-top: 4rem;
    padding-bottom: 2rem;

    padding-left: 2rem;
    padding-right: 2rem;
}

.contact form {
    max-width: 70rem;
    margin: 0 auto;
    text-align: center;

    padding-top: 4rem;
    font-family: var(--font-family-smalltext);
}

.contact form .input-box {
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contact form .input-box .input-field {
    position: relative;
    width: 49%;
    margin: .8rem 0;
}

.contact form .input-box .input-field input,
.contact form .textarea-field textarea {
    width: 100%;
    height: 100%;
    padding: 1.5rem;
    font-size: 1.6rem;
    font-family: var(--font-family-smalltext);
    color: var(--color-primary);
    background: var(--color-background-primary2);
    border-radius: .6rem;
    border: .2rem solid transparent;
}

.contact form .input-box .input-field input::placeholder,
.contact form .textarea-field textarea::placeholder {
    color: var(--color-primary2);
}

.contact form .input-box .input-field input:focus::placeholder,
.contact form .textarea-field textarea:focus::placeholder {
    color: var(--color-primary2);
}

.contact form .focus {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--color-primary2);
    border-radius: .6rem;
    z-index: -1;
    transition: .5s;
}

.contact form .textarea-field textarea:valid,
.contact form .input-box .input-field input:valid {
    width: 100%;

    outline: none;
    color: var(--color-primary);
    font-weight: 600;
    /* background-color: var(--color-primary); */
    border: 0.2rem solid var(--color-background-quaternary2);
}

.contact form .input-box .input-field input:focus,
.contact form .textarea-field textarea:focus {
    width: 100%;

    outline: none;
    color: var(--color-primary);
    font-weight: 600;
    /* background-color: var(--color-primary); */
    border: 0.2rem solid var(--color-background-quaternary3);
}

.contact form .textarea-field {
    position: relative;
    margin: .8rem 0 2.7rem;
    display: flex;
}

.contact form .textarea-field textarea {
    resize: none;
}

.contact form .btn-box.btns .btn {
    cursor: pointer;
}

#submitButton {
    outline: none;
    border: 1px solid transparent;
    padding: 1rem 3rem;
    color: var(--color-background-primary);
    background-color: var(--color-primary);
    border-radius: 25px;
    font-size: 2rem;
    font-weight: 600;
    cursor: pointer;
}

#submitButton:hover {
    background-color: var(--color-background-quaternary3);
}

#response-message {
    /* display: block; */
    color: var(--color-primary);
    font-family: var(--font-family-smalltext);
    font-weight: 600;
    font-size: 1.5rem;
    text-align: center;
    padding-top: 2rem;
    line-height: 1.5;
}

/* Remove arrows in Chrome, Safari, Edge, and Opera */
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Remove arrows in Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

/* CONTACT */

footer {
    font-family: var(--font-family-smalltext);
    color: var(--color-primary2);
    background-color: var(--color-background-primary);
    padding: 4rem;
}

.footer__container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    column-gap: 5rem;
    row-gap: 3rem;
}

.footer__container--location {
    display: flex;
    flex-direction: column;

    row-gap: 1rem;
}

.footer__container--location__logo {
    width: 50px;
    height: 50px;
}

.footer__container--location__logo img {
    width: 100%;
    height: 100%;
}

.footer__container--location__address {
    font-size: 16px;
}

.footer__container--contact,
.footer__container--socials {
    display: flex;
    flex-direction: column;
    row-gap: 2rem;
}

.footer__container--contact__title,
.footer__container--socials__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-primary);
}

.footer__container--contact__information {
    display: flex;
    flex-direction: column;
    row-gap: 1rem;

    font-size: 16px;
    letter-spacing: 1px;
}

.footer__container--socials__links {
    display: flex;
    justify-content: space-between;

    font-size: 30px;
}

.footer__container--socials__links a:visited,
.footer__container--socials__links .socials-icon {
    color: var(--color-primary2);
}

.footer__container--socials__links a:hover,
.footer__container--socials__links .socials-icon:hover {
    color: rgb(112, 201, 245);
}

@media screen and (max-width: 1440px) {
    .header__padding,
    .section__padding--II,
    footer {
        /* padding: 0 var(--padding-d-l-h); */
        width: 1024px;
    }

    .hero__section--image figure {
        width: 300px;
        height: 300px;
    }

    .hero__section--content__projects {
        padding: 2rem 3rem;
        font-family: var(--font-family-smalltext);
        font-size: 16px;
        font-weight: 700;
        border-radius: 25px;
    
    }
    
    .hero__section--content__learn-more {
        padding: 2rem 3rem;
        font-family: var(--font-family-smalltext);
        font-size: 16px;
        font-weight: 700;
        border-radius: 25px;

    }
    
    .industries__header {
        font-size: 18px;
    }
    
    .industries__names {
        display: flex;
        column-gap: 5rem;
        row-gap: 3rem;
    }
    
    .industries__names p {
        font-size: 24px;
    }

    .dropdown--items__item {
        height: 18rem;
        width: 28rem;
    
        padding: 2rem;
    }
    
    .dropdown--items__item--title {
        font-size: 25px;
    }
    
    .dropdown--items__item--navbutton {    
        height: 30px;
        width: 30px;
        border-radius: 50%;
    }

    .dropdown--items__item--navbutton img {
        width: 60%;
        height: 60%;
    }

        /* PROJECTS */
        .my-projects__lists {
            padding: 4rem 5rem;
        }

        #canalytics .bg-image,
        #batchplugin .bg-image,
        #fleetsimulation .bg-image,
        #photographer .bg-image {
            width: 450px;
            height: 400px;
        }

        #batchplugin .bg-image {
            background-position: center;
            background-position: 40%;
        }

        #fleetsimulation .bg-image {
            background-position: 30%;
        }

        .my-projects__lists--item .project-info {
            padding: 3rem;
        }
        
        .my-projects__lists--item .project-info .top .title {
            font-size: 18px;
        }
        .my-projects__lists--item .project-info .top .caption {
            font-size: 28px;
        }
        .my-projects__lists--item .project-info .top .para {
            font-size: 16px;
        }
        /* PROJECTS */
}

@media screen and (max-width: 1024px) {
    .desktop-nav {
        padding: 1rem 3rem;
    }
    
    .dropdown {
        padding: 0rem 2rem 2rem;
    }


    .header__padding,
    .section__padding--II,
    footer {
        /* padding: 0 var(--padding-d-l-h); */
        width: 870px;
    }

    #hero__section {
        padding: 5rem;
        padding-top: 15rem;
        column-gap: 5rem;
    }
    
    .hero__section--content {
        display: flex;
        flex-direction: column;
        row-gap: 3rem;
    }
    
    .hero__section--content__greetings {
        display: flex;
        column-gap: 1rem;
        align-items: center;
    }
    
    .hero__section--content__greetings .message {
        color: var(--color-primary2);
    
        font-size: 20px;
        font-family: var(--font-family-smalltext);
    }

    .hero__section--content__greetings figure {
        width: 20px;
        height: 10x;
    }
    
    .hero__section--content__greetings figure img {
        width: 100%;
        height: 100%;
    } 
    
    .hero__section--content__title {
        font-size: 32px;
        font-family: var(--font-family-title);
        font-weight: 900;
    }
    
    .hero__section--content__paragraph {
        color: var(--color-primary2);
        font-size: 16px;
        font-family: var(--font-family-smalltext);
        line-height: 1.5;
    }
    
    .hero__section--content__action {
        
        align-self: start;
        display: flex;
        column-gap: 4rem;
    }

    .dropdown--items__item {
        height: 15rem;
        width: 25.5rem;
    
        padding: 2rem;
    }
    
    .dropdown--items__item--title {
        font-size: 20px;
    }
    
    .dropdown--items__item--navbutton {    
        height: 30px;
        width: 30px;
        border-radius: 50%;
    }

    .dropdown--items__item--navbutton img {
        width: 60%;
        height: 60%;
    }

    /* PROJECTS */
    .my-projects__Intro--title {
        font-size: 32px;
    }

    .my-projects__lists {
        padding: 4rem 2rem;
    }

    .my-projects__Intro--para {
        font-size: 16px;
        width: 60%;
    }

    .my-projects__lists--item .project-info .top {
        display: flex;
        flex-direction: column;
        row-gap: 2rem;
    }
    
    .my-projects__lists--item .project-info .top .title {
        font-size: 18px;
    }
    .my-projects__lists--item .project-info .top .caption {
        font-size: 28px;
    }
    .my-projects__lists--item .project-info .top .para {
        font-size: 14px;
    }
    
    .my-projects__lists--item .project-info .bottom button {
        font-size: 16px;
    }

    .my-projects__lists--item .project-info .bottom a {
        font-size: 16px;
    }

    /* PROJECTS */
}

@media screen and (max-width: 870px) {
    /* .header__padding {
        position: relative;
    } */

    .header__padding,
    .section__padding--II,
    footer {
        width: 100%;
    }

    #hero__section {
        flex-direction: column;
        align-items: center;
        text-align: center;
        row-gap: 4rem;
        padding: 10rem 5rem 4rem 5rem;
    }

    .hero__section--content {
        align-items: center;
        row-gap: 2rem;
    }

    .hero__section--content__action {
        justify-content: center;
        align-self: center;
        row-gap: 2rem;
        column-gap: 2rem;
    }

    .hero__section--content__learn-more,
    .hero__section--content__projects {
        padding: 1.5rem;
        font-family: var(--font-family-smalltext);
        font-size: 14px;
        font-weight: 700;
        border-radius: 25px;
    }
    
    .dropdown--items__item {
        height: 13rem;
        width: 22rem;
    
        padding: 2rem;
    }
    
    .dropdown--items__item--title {
        font-size: 20px;
    }
    
    .dropdown--items__item--navbutton {    
        height: 30px;
        width: 30px;
        border-radius: 50%;
    }

    .dropdown--items__item--navbutton img {
        width: 60%;
        height: 60%;
    }

    .industries__names {
        column-gap: 3rem;
        row-gap: 3rem;
    }

    .industries__names .name {
        font-family: var(--font-family-bigtext);
        font-size: 20px;
    }

    /* PROJECTS */
    .my-projects__lists--item {
        display: flex;
        flex-direction: column;
    }
    
    .image-container {
        order: 1;
        /* width: 100%; */
        /* height: 450px; */
        
        overflow: hidden;
    }

    .project-info {
        order: 2;
    }


    #canalytics .bg-image,
    #batchplugin .bg-image,
    #fleetsimulation .bg-image,
    #photographer .bg-image {
        width: 100%;
        height: 250px;
        /* height: 0; */

        background-size: cover;
        background-position: left top;
        background-repeat: no-repeat;

        /* overflow: hidden; */
    }

    #batchplugin,
    #photographer,
    #canalytics,
    #fleetsimulation {
        border-radius: 0;
        border: 1px solid transparent;
    }

    .my-projects__lists--item .project-info {
        row-gap: 2rem;
    }
    /* PROJECTS */

}


@media screen and (max-width: 780px) {
    .header__padding,
    footer {
        width: 100%;
    }

    #hero__section {
        /* margin-top: 60px; */
    }

    .hero__section--content__title {
        font-size: 28px;
        line-height: 1.1;
    }

    .footer__container {
        text-align: center;
        column-gap: 10rem;
        row-gap: 5rem;
        justify-content: center;
        /* font-size: 10px; */
    }

    .footer__container--location {
        align-items: center;
    }


    .footer__container--socials {
        order: 3;
    }

    .footer__container--contact__title,
    .footer__container--socials__title {
        font-size: 18px;
    }

    .dropdown{
        display: none;
    }

    .desktop-nav {
        display: none;
    }

    .mobile-nav {
        display: flex;
        align-items: center;
        justify-content: space-between;

        padding: 1rem 2rem;
        position: fixed;
        top: 0;
        right: 0;
        left: 0;

        background-color: var(--color-background-primary);
        z-index: 10;
    }

    .mobile__nav-logo figure {
        width: 40px;
        height: 40px;
    }

    .footer__container--location__logo {
        width: 40px;
        height: 40px;
    }

    .mobile__nav-logo figure img {
        width: 100%;
        height: 100%;
    }

    #mobile__nav-items {
        position: fixed;
        top: 60px;
        /* bottom: 0; */
        height: 100vh;
        width: 100%;
        background-color: var(--color-background-primary);
    
        z-index: 999;
    }

    .mobile__nav-items__list {
        display: flex;
        flex-direction: column;
        width: 100%;

        row-gap: 1rem;
        padding: 1rem;
    }

    .mobile__nav-items__list--item {
        padding: 2rem;
        font-family: var(--font-family-smalltext);
        font-size: 25px;
        font-weight: 700;

        border-radius: 10px;

        background-color: var(--color-background-tertiary);
    
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .mobile__nav-items__list--item:first-of-type {
        background-color: #7b81a7;
    }

    .mobile__nav-items__list--item .navigation {
        background-color: rgba(211, 211, 211, 0.329);
        width: 25px;
        height: 25px;

        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        cursor: pointer;
    }

    .mobile__nav-items__list--item .navigation:hover {
        background-color: color(211 211 211 1);
    }

    .mobile__nav-items__list--item .navigation img {
        width: 50%;
        height: 50%;
        filter: brightness(0) invert(1);
    }

    #capabilities-section,
    #projects-section {
        position: absolute;
        top: 60px;
    }

    #mobile__capabilities-items,
    #mobile__projects-items {
        display: block;

        position: fixed;
        top: 60px;
        /* bottom: 0; */
        height: 100vh;
        width: 100%;
        background-color: var(--color-background-primary);
    
        z-index: 999;

        right: -100%;
        transition: right 1s ease-in-out;
    }

    #mobile__capabilities-items.active,
    #mobile__projects-items.active {
        right: 0;
    }

    .my-capabilities__temp--container {
        padding: 5rem 2rem;
    }

    .mobile__projects-items__list,
    .mobile__capabilities-items__list {
        display: flex;

        flex-direction: column;
        width: 100%;

        row-gap: 1rem;
        padding: 1rem;
    }

    .mobile__projects-items__list--item,
    .mobile__capabilities-items__list--item {
        padding: 2rem;
        font-family: var(--font-family-smalltext);
        font-size: var(--font-size-d-m);
        font-weight: 700;

        border-radius: 10px;

        background-color: var(--color-background-quaternary2);
    
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    /* .product-design figure,
    .development figure {
        width: 50px;
        height: 40px;
    } */

    .product-design h2,
    .development h2 {
        font-family: var(--font-family-bigtext);
        font-size: 24px;
        font-weight: 700;
    }

    .product-design .items .name,
    .development .items .name {
        padding: 1rem;
        font-size: var(--font-size-d-s);
    }

    .my-skills__container--group {    
        padding: 4rem 3rem;
    }

    .my-skills__container--title {
        font-size: 24px;
    }
}

@media (max-width: 462px) {
    .contact form .input-box .input-field {
        width: 100%;
    }
}