* {
    box-sizing: border-box;
}

html {
    font-family: "Inter", sans-serif;
    color: #2b2b2b;
    scroll-behavior: smooth;
}

body {
    word-wrap: break-word;
    font-size: 1rem;
    line-height: 1.5;
}

nav,
div {
    display: block;
}

img {
    max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-top: 0;
    margin-bottom: 0;
}

h1 {
    font-size: 1.875rem;
    line-height: 1.1;
}

h2 {
    font-size: 2.25rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.25rem;
    line-height: 1.3;
    font-weight: 700;
    color: #2f2f2f;
}

a {
    color: #2A2A2A;
    text-decoration: none;
    transition: color 200ms ease-in-out;
    -webkit-transition: color 200ms ease-in-out;
    -ms-transition: color 200ms ease-in-out;
    -moz-transition: color 200ms ease-in-out;
    -o-transition: color 200ms ease-in-out;
}

a:hover {
    color: #EA3E3E;
}

object {
    display: flex;
    max-width: 100%;
    flex-direction: column;
}

[class*="container-"] {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

[class*="max-width-"] {
    width: 100%;
}

[class*="set-max-width-"] {
    width: 100%;
}

[class*="button-"] {
    display: inline-block;
    transition-property: color, background-color, border-color;
    transition-duration: 200ms;
    transition-timing-function: ease-in-out;
    -webkit-transition-property: color, background-color, border-color;
    -webkit-transition-duration: 200ms;
    -webkit-transition-timing-function: ease-in-out;
    -ms-transition-property: color, background-color, border-color;
    -ms-transition-duration: 200ms;
    -ms-transition-timing-function: ease-in-out;
    -moz-transition-property: color, background-color, border-color;
    -moz-transition-duration: 200ms;
    -moz-transition-timing-function: ease-in-out;
    -o-transition-property: color, background-color, border-color;
    -o-transition-duration: 200ms;
    -o-transition-timing-function: ease-in-out;
}

[class*="component-box-"] {
    display: flex;
    -ms-box-orient: horizontal;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -moz-flex;
    display: -webkit-flex;
}

[class*="embed-"] {
    display: flex;
    -ms-box-orient: horizontal;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -moz-flex;
    display: -webkit-flex;
    align-items: center;
    justify-content: center;
}

[class*="section-"] {
    background-color: white;
}

[class*="image-box"] {
    width: 100%;
    display: flex;
    -ms-box-orient: horizontal;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -moz-flex;
    display: -webkit-flex;
    flex-direction: column;
    overflow: hidden;
}

[class*="image-box-"] img {
    object-fit: cover;
    height: 100%;
}

[class*="item-box-"] {
    display: flex;
    -ms-box-orient: horizontal;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -moz-flex;
    display: -webkit-flex;
}

[class*="content-header-"] {
    display: inline-flex;
    flex-direction: column;
    gap: 0.625rem;
}

[class*="v-block-"] {
    display: flex;
    -ms-box-orient: horizontal;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -moz-flex;
    display: -webkit-flex;
    flex-direction: column;
}

[class*="content-title-"] h2 {
    font-weight: 600;
    text-transform: lowercase;
}

[class*="content-border-"] {
    display: flex;
    gap: 0.375rem;
}

[class*="skill-bar-"] {
    border-radius: 2.188rem;
    height: 2.188rem;
}

[class*="percentage-"] {
    width: 100%;
}

[class*="grid-"] {
    display: grid;
}

.padding-global {
    padding: 0rem 1.25rem;
}

.container-855 {
    max-width: 53.438rem;
}

.navbar {
    position: sticky;
    top: 0;
    padding: 1.875rem 0 1.875rem;
    background-color: #ffffffe6;
    z-index: 999;
    transition: box-shadow 200ms ease-in-out;
    transition: padding 200ms ease-in-out;
}

.navbar.shadow {
    -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    padding: 1rem 0 1rem;
}

.component-box-navbar {
    /* flex-direction: column; */
    gap: .75rem;
    justify-content: center;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 600;
}

.section-hero {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

.component-box-hero {
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.image-box-hero {
    max-width: 16rem;
    overflow: hidden;
    border-radius: 100%;
}

.section-content {
    padding-top: 2.25rem;
    padding-bottom: 5rem;
}

.component-box-content {
    flex-direction: column;
    gap: 2.875rem;
}

.content-header-left {
    margin-left: auto;
}

.content-title-left {
    padding-right: 2.5rem;
}

.content-header-right {
    margin-right: auto;
}

.content-title-right {
    padding-left: 2.5rem;
}

.content-border-right {
    flex-direction: row-reverse;
}

.content-header-center {
    margin-left: auto;
    margin-right: auto;
}

.content-title-center {
    padding: 0 1.25rem;
}

.content-circle {
    flex-shrink: 0;
    height: 0.25rem;
    width: 0.25rem;
    background-color: #2A2A2A;
    border-radius: 100%;
}

.content-line {
    height: 0.25rem;
    width: 100%;
    background-color: #2B2B2B;
    border-radius: 0.25rem;
}

.content-line.white,
.content-circle.white {
    background-color: white;
}

.content-spacer {
    margin-bottom: 2rem;
}

.paragraph-spacer {
    margin-bottom: 1.25rem;
}

.item-box-content {
    padding-left: 0.5rem;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.item-circle {
    height: 0.5rem;
    width: 0.5rem;
    border-radius: 100%;
    background-color: #272727;
}

.item-box-content p {
    font-size: 1.125rem;
    color: #272727;
    font-weight: 700;
    text-transform: uppercase;
}

.v-block-content {
    align-items: flex-start;
    gap: 1rem;
}

.v-block-items {
    width: 100%;
    gap: 0.5rem;
}

.v-block-skills {
    gap: 1.5rem;
}

.skill-bar-container {
    width: 100%;
    height: auto;
    border: solid #CACACA 0.063rem;
    background-color: white;
    position: relative;
    padding: 0.375rem;
    border-radius: 62.5rem;
    -webkit-box-shadow: 0px 3px 0px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 3px 0px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 3px 0px 0px rgba(0, 0, 0, 0.1);
    transition: scale 200ms ease-in-out;
    cursor: pointer;
}

.skill-bar-container:hover {
    scale: 1.05;
}

.skill-bar-green {
    background-color: #77DD77;
}

.skill-bar-red {
    background-color: #FF6961;
}

.skill-bar-purple {
    background-color: #C3B1E1;
}

.skill-bar-blue {
    background-color: #779ECB;
}

.item-box-skill-text {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    justify-content: center;
    align-items: center;
}

.item-box-skill-text p {
    text-align: center;
    color: white;
    font-size: 1.125rem;
    line-height: 1.5;
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: 0 0 5px #00000078;
}

.item-box-skill-percent {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    justify-content: center;
    align-items: center;
    padding-right: 1.875rem;
}

.item-box-skill-percent p {
    font-size: 1.125rem;
    line-height: 1.5;
    font-weight: 700;
    color: #aba5a5;
}

.percentage-85 {
    max-width: 85%;
}

.percentage-80 {
    max-width: 80%;
}

.percentage-75 {
    max-width: 75%;
}

.percentage-70 {
    max-width: 70%;
}

.percentage-60 {
    max-width: 60%;
}

.grid-project {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 1.25rem;
}

.project-box {
    background-color: white;
    border: solid #d4d4d4 0.063rem;
    -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    transition: scale 200ms ease-in-out;
}

.project-box:hover {
    scale: 1.03;
}

.image-box-project {
    max-height: 14.688rem;
    justify-content: center;
    align-items: center;
}

.project-box-content {
    padding: 1.125rem 1.5rem;
}

.project-box p {
    color: #636363;
    font-size: 0.875rem;
    font-weight: 600;
}

.section-footer {
    background-color: #FF6961;
    color: white;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.component-box-footer {
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

.component-box-footer-links {
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.button-primary {
    background-color: white;
    border: solid 0.125rem black;
    color: #2A2A2A;
    font-weight: 600;
    text-transform: uppercase;
    padding: .625rem 1.125rem;
    font-size: 1.25rem;
}

.button-primary:hover {
    color: white;
    background-color: #EA3E3E;
    border-color: #EA3E3E;
}

.button-footer-social {
    background-color: white;
    color: #FF6961;
    height: 3.5rem;
    width: 3.5rem;
    overflow: hidden;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.button-footer-social:hover {
    color: white;
    background-color: #EA3E3E;
}

.no-display {
    display: none;
}

/** dmb = margin-bottom **/
.dmb-10 {
    margin-bottom: 0.625rem;
}

.dmb-12 {
    margin-bottom: .75rem;
}

.dmb-24 {
    margin-bottom: 1.5rem;
}

.dmb-36 {
    margin-bottom: 2.25rem;
}

/** dts = text size **/
.dts-24 {
    font-size: 1.5rem;
}

.dts-20 {
    font-size: 1.25rem;
}

.dts-18 {
    font-size: 1.125rem;
}

.dts-16 {
    font-size: 1rem;
}

.weight-600 {
    font-weight: 600;
}

.color-red {
    color: #EA3E3E;
}

.span-break {
    /* display: inline; */
    display: block;
}

.dta-center {
    text-align: center;
}

.dta-left {
    text-align: left;
}

.dta-right {
    text-align: right;
}

/* Small devices code = a-*/
@media only screen and (min-width: 479px) {
    .component-box-hero {
        flex-direction: row;
    }

    .component-box-navbar {
        justify-content: center;
        justify-content: center;
        align-items: center;
    }

    .nav-link {
        font-size: 1.125rem;
    }

    .a-dta-center {
        text-align: center;
    }

    .a-dta-left {
        text-align: left;
    }

    .a-dta-right {
        text-align: right;
    }
}

/* Small devices (portrait tablets and large phones, 600px and up) code = b-*/
@media only screen and (min-width: 600px) {
    .grid-project {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Medium devices (landscape tablets, 768px and up) code = c- */
@media only screen and (min-width: 768px) {
    h1 {
        font-size: 3rem;
    }

    .c-dts-24 {
        font-size: 1.5rem;
    }

    .c-dts-20 {
        font-size: 1.25rem;
    }

    .c-dts-18 {
        font-size: 1.125rem;
    }

    .c-dmb-36 {
        margin-bottom: 2.25rem;
    }

    .component-box-content {
        gap: 3.875rem;
    }

    .content-spacer {
        margin-bottom: 3rem;
    }

    .span-break {
        display: block;
    }

    .button-primary {
        padding: .875rem 1.5rem;
        font-size: 1.375rem;
    }
}

/* Large devices (laptops/desktops, 992px and up) code = d- */
@media only screen and (min-width: 992px) {
    .padding-global {
        padding: 0rem 2.5rem;
    }

    .navbar {
        padding: 3rem 0 2.25rem;
    }

    .component-box-navbar {
        gap: 1.5rem;
    }

    .section-hero {
        padding-top: 3.75rem;
        padding-bottom: 4.5rem;
    }

    .component-box-hero {
        gap: 2.25rem;
    }

    .image-box-hero {
        max-width: 22.5rem;
    }
}

/* Extra large devices (large laptops and desktops, 1200px and up) code = e- */
@media only screen and (min-width: 1200px) {}