@charset "utf-8";

/*** Fonts Face CSS ***/
@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap');



/**** CSS Variables ****/

/** use variables in css property like, background-color: var(--primary-color); */
:root {
    /* --- color variables --- */
    --primary-color: #f9f9f9;
    --secondary-color: #fff;
    --border-color: #e8dede;
    --divider-color: #e5e5e5;
    --text-primary-color: #1B1B1B;
    --text-secondary-color: #888888
;
    --text-selection-color: #b3d4fc;
    --accent-color: #6a2e8a;
    --accent-soft-color: rgba(106, 46, 138, 0.18);
    --section-spacing: 120px;
    --section-spacing-mobile: 80px;
}

/* -=- Common Element CSS Start -=- */
*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

::-moz-selection {
    background: var(--text-selection-color);
    text-shadow: none;
}

::selection {
    background: var(--text-selection-color);
    text-shadow: none;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

html,
body {
    margin: 0px;
    padding: 0px;
    font-size: 16px;
    line-height: 20px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: var(--primary-color);
}

.cursor {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    pointer-events: none; /* Asegura que el cursor no interfiera con otros elementos */
    mix-blend-mode: difference; /* Ajusta esto para lograr el efecto deseado */
}

/* img {
    border: 0px !important;
    outline: none;
    width: 100%;
    max-width: 100%;
    display: block;
} */

ul,
ol {
    /* margin: 0px; */
    /* padding: 0px; */
}

a {
    text-decoration: none;
    outline: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

/* Remove default margin in favour of better control in authored CSS */
body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role='list'],
ol[role='list'] {
  list-style: none;
}

a:hover,
a:focus,
a:active,
a:visited {
    outline: none;
    text-decoration: none;
}

.btn:focus,
.btn.focus,
.form-control:hover,
.form-control:focus,
.form-control:focus:Active {
    outline: none !important;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
}

p {
    margin: 0px;
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-primary-color);
    font-weight: normal;
    padding-bottom: 16px;
}

hr {
    margin: 1em 0;
    padding: 0;
    display: block;
    border: 0;
    border-top: 1px solid var(--border-color);
}

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

input::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: var(--text-secondary-color);
    opacity: 1;
}

input:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: var(--text-secondary-color);
}

input::-ms-input-placeholder {
    /* Microsoft Edge */
    color: var(--text-secondary-color);
}

/* Inherit fonts for inputs and buttons */
input, button,
textarea, select {
  font: inherit;
}

textarea {
    resize: none;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

textarea::placeholder {
    color: var(--text-secondary-color);
    opacity: 1;
}

textarea:-ms-input-placeholder {
    color: var(--text-secondary-color);
}

textarea::-ms-input-placeholder {
    color: var(--text-secondary-color);
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
p,
a {
    font-family: 'Figtree', sans-serif;
}

/*** Heading CSS ***/
h1,
.h1 {
    line-height: 32px;
}

h2,
.h2 {
    line-height: 32px;

}

h3,
.h3 {
    line-height: 32px;
}

h4,
.h4 {
    line-height: 32px;
}

h5,
.h5 {
    line-height: 32px;
}

h6,
.h6 {
    line-height: 32px;
}

/* Common Class CSS related to text alignment*/
.text-center {
    text-align: center;
}

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

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

.text-introduction {
    margin-top: 24px;
}

.grey {
    color: var(--text-secondary-color) !important;
}

/* -=- Header CSS -=- */
header {}

/* -=- Footer CSS -=- */
footer {
    padding: 2rem 8vw 3rem;
}

footer .footer-cv-link {
    margin-top: 0;
}

/* -=- Main Area CSS -=- */
main {}

/* -=- Keyframe CSS -=- */

.bottom-spacer {
    margin-bottom: 112px;
}

.divider {
    background-color: var(--divider-color);
    height: 1px;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.hero-section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
}

.hero-name {
    margin: 0px;
    /* font-weight: 300; */
    padding-top: 8px;
    font-weight: 400;
}

.hero-subtitle {
    margin: 0px;
    color: var(--text-secondary-color);
    font-weight: 300;
    padding-top: 8px;

}
.hero {
    background-color: black;
    padding: 6vh 13vw 6vh 14vw;
    height: fit-content;
    position: relative;
    overflow: hidden;
    height: 416px;
    display: flex;
    align-items: center;
}

.title-wrapper {
    z-index: 2;
}

.maruxa {
    margin: 2vh 8vw 2vh 8vw;
}

.header-element {
    display: block;
}

.header-section {
    display: flex;
    align-self: center;
    flex-direction: column;
}

.header-element-title-hero {
    font-weight: 300;
    font-size: 32px;
    margin-bottom: 8px;
    line-height: 1.1;
    z-index: 2;
    font-family: 'Times', sans-serif;

}

.header-element-subtitle-hero {
    font-weight: 500;
    font-size: 64px;
    color: var(--text-secondary-color);
    line-height: 1.1;
    z-index: 2;
    font-family: 'Times', sans-serif;

}

.hero-positioning {
    max-width: 32ch;
    font-weight: 300;
    font-size: 21px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.82);
    padding-top: 18px;
    padding-bottom: 0;
    letter-spacing: 0.01em;
}


.header-element-title {
    font-weight: 500;
    font-size: 32px;
    margin-bottom: 8px;
    line-height: 1.1;
    z-index: 2;
}
.header-element-subtitle {
    font-weight: 300;
    font-size: 32px;
    color: var(--text-secondary-color);
    line-height: 1.1;
    z-index: 2;
}

.habilitites,
.success-cases,
.special-projects,
.projects,
.about-me,
.contact {
    margin-left: 8vw;
    margin-right: 8vw;
}

.habilitites {
    margin-top: 0;
    padding-top: 80px;
}

.success-cases,
.special-projects,
.projects,
.about-me,
.contact {
    margin-top: var(--section-spacing);
}

.success-cases {
    padding-bottom: 0;
}

.special-projects-feature {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: stretch;
    margin-top: 40px;
    padding: 30px;
    border: 1px solid rgba(27, 27, 27, 0.08);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 10px 30px rgba(27, 27, 27, 0.04);
}

.special-projects-copy {
    display: flex;
    flex-direction: column;
}

.special-projects-company {
    display: inline-block;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    line-height: 1.1;
    padding-bottom: 14px;
    color: var(--text-secondary-color);
    opacity: 0.82;
}

.special-projects-title {
    margin: 0;
    padding-bottom: 22px;
    font-weight: 400;
    font-size: 34px;
    line-height: 1.08;
    color: var(--text-primary-color);
    font-family: 'Times', sans-serif;
}

.special-projects-meta {
    font-size: 13px;
    line-height: 1.55;
    letter-spacing: 0.01em;
    color: var(--text-secondary-color);
    padding-bottom: 22px;
    opacity: 0.9;
}

.special-projects-summary,
.special-projects-contribution {
    font-size: 18px;
    line-height: 1.65;
    color: var(--text-primary-color);
    padding-bottom: 18px;
    max-width: 62ch;
}

.special-projects-contribution {
    color: rgba(27, 27, 27, 0.88);
}

.special-projects-award {
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: 0.01em;
    color: rgba(106, 46, 138, 0.88);
    padding-bottom: 0;
}

.special-projects-cta {
    margin-top: 28px;
    display: inline-flex;
    align-items: center;
    position: relative;
    gap: 8px;
    width: fit-content;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 500;
    color: rgba(27, 27, 27, 0.82);
    letter-spacing: 0.01em;
    font-family: 'Figtree', sans-serif;
    text-decoration: none;
    transition: color 180ms ease, gap 180ms ease;
}

.download-cv-link {
    display: inline-flex;
    align-items: center;
    position: relative;
    gap: 8px;
    width: fit-content;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 500;
    color: rgba(27, 27, 27, 0.82);
    letter-spacing: 0.01em;
    font-family: 'Figtree', sans-serif;
    text-decoration: none;
    transition: color 180ms ease, gap 180ms ease;
}
.special-projects-cta::after, .download-cv-link::after {
    content: "→";
    font-size: 14px;
    line-height: 1;
    position: relative;
    top: 1px;
}

.special-projects-cta::before, .download-cv-link::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 1px;
    background-color: currentColor;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 220ms ease;
}

.special-projects-cta:hover,
.special-projects-cta:focus-visible,
.download-cv-link:hover,
.download-cv-link:focus-visible {
    color: var(--accent-color);
    gap: 10px;
}

.special-projects-cta:hover::before,
.special-projects-cta:focus-visible::before,
.download-cv-link:hover::before,
.download-cv-link:focus-visible::before {
    transform: scaleX(1);
}

.special-projects-visual {
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.special-projects-visual-frame {
    position: relative;
    width: min(100%, 420px);
    aspect-ratio: 1 / 1;
    border-radius: 28px;
    background:
        radial-gradient(circle at center, rgba(106, 46, 138, 0.12), rgba(106, 46, 138, 0.02) 38%, transparent 39%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(245, 243, 248, 0.82));
    border: 1px solid rgba(27, 27, 27, 0.08);
    overflow: hidden;
}

.special-projects-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(106, 46, 138, 0.24);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.special-projects-ring-outer {
    width: 82%;
    height: 82%;
}

.special-projects-ring-middle {
    width: 58%;
    height: 58%;
}

.special-projects-ring-inner {
    width: 32%;
    height: 32%;
    background: rgba(106, 46, 138, 0.08);
}

.special-projects-node,
.special-projects-center-label {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary-color);
}

.special-projects-node {
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 12px;
    line-height: 1.2;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.special-projects-center-label {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-family: 'Times', sans-serif;
    font-size: 26px;
    line-height: 1.08;
}

.special-projects-node.node-top {
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
}

.special-projects-node.node-right {
    top: 50%;
    right: 6%;
    transform: translateY(-50%);
}

.special-projects-node.node-bottom {
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
}

.special-projects-node.node-left {
    top: 50%;
    left: 6%;
    transform: translateY(-50%);
}

.case-study-special-visual {
    margin-top: 34px;
    margin-bottom: 4px;
    min-height: auto;
}

.success-cases-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: stretch;
    margin-top: 40px;
}

.success-cases-element {
    display: flex;
    flex-direction: column;
}

.success-cases-card {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    padding: 32px 30px 30px;
    border: 1px solid rgba(27, 27, 27, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 8px 24px rgba(27, 27, 27, 0.035);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    cursor: pointer;
    color: inherit;
}

.success-cases-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 42px rgba(27, 27, 27, 0.075);
    border-color: rgba(27, 27, 27, 0.12);
}

.success-cases-card:focus-visible {
    outline: none;
    transform: translateY(-4px);
    box-shadow: 0 18px 42px rgba(27, 27, 27, 0.075);
    border-color: rgba(106, 46, 138, 0.34);
}

.success-cases-element-header {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.success-cases-element-header-company {
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    line-height: 1.1;
    padding-bottom: 14px;
    color: var(--text-secondary-color);
    opacity: 0.82;
}



.success-cases-element-header-title {
    font-weight: 400;
    font-size: 30px;
    line-height: 1.1;
    color: var(--text-primary-color);
    font-family: 'Times', sans-serif;
    padding-bottom: 24px;
}

.success-cases-card-meta {
    font-size: 13px;
    line-height: 1.55;
    letter-spacing: 0.01em;
    color: var(--text-secondary-color);
    padding-bottom: 26px;
    max-width: 100%;
    opacity: 0.9;
}

.success-cases-card-impact {
    font-size: 17px;
    line-height: 1.6;
    letter-spacing: 0;
    color: var(--text-primary-color);
    padding-bottom: 0;
    max-width: 100%;
    font-family: 'Figtree', sans-serif;
    font-weight: normal;
}

.success-cases-card-impact strong {
    font-weight: normal;
}

.success-cases-card-cta {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    position: relative;
    gap: 8px;
    width: fit-content;
    padding-top: 34px;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 500;
    color: rgba(27, 27, 27, 0.82);
    padding-bottom: 0;
    letter-spacing: 0.01em;
    font-family: 'Figtree', sans-serif;
    text-decoration: none;
    transition: color 180ms ease, gap 180ms ease;
}

.success-cases-card,
.success-cases-card:visited,
.success-cases-card:hover,
.success-cases-card:focus,
.success-cases-card:active {
    color: var(--text-primary-color);
    text-decoration: none;
}

.success-cases-card-cta::after {
    content: "→";
    font-size: 14px;
    line-height: 1;
    position: relative;
    top: 1px;
}

.success-cases-card-cta::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 1px;
    background-color: currentColor;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 220ms ease;
}

.success-cases-card:hover .success-cases-card-cta,
.success-cases-card:focus-visible .success-cases-card-cta {
    color: var(--accent-color);
    gap: 10px;
}

.success-cases-card:hover .success-cases-card-cta::before,
.success-cases-card:focus-visible .success-cases-card-cta::before {
    transform: scaleX(1);
}

.case-page {
    margin: 60px 8vw 8vh 8vw;
    padding-top: 40px;
}

.case-page-project {
    padding-bottom: 10vh;
}

.case-study {
    width: 100%;
    max-width: none;
}

.case-study-back {
    display: inline-flex;
    align-items: center;
    position: relative;
    gap: 8px;
    width: fit-content;
    margin-bottom: 48px;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 500;
    color: rgba(27, 27, 27, 0.82);
    letter-spacing: 0.01em;
    font-family: 'Figtree', sans-serif;
    text-decoration: none;
    transition: color 180ms ease, gap 180ms ease;
}

.case-study-back::before {
    content: "←";
    font-size: 14px;
    line-height: 1;
    position: relative;
    top: 1px;
}

.case-study-back::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 1px;
    background-color: currentColor;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 220ms ease;
}

.case-study-back:hover {
    color: var(--accent-color);
    gap: 10px;
}

.case-study-back:hover::after,
.case-study-back:focus-visible::after {
    transform: scaleX(1);
}

.case-study-intro,
.case-study-divider,
.case-study-content {
    width: 100%;
    max-width: none;
}

.case-study-intro {
    display: block;
}

.case-study-header {
    max-width: 100%;
}

.case-study-overview {
    max-width: 100%;
    padding-top: 24px;
}

.case-study-company {
    display: inline-block;
    font-size: 13px;
    line-height: 1.1;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-secondary-color);
    padding-bottom: 16px;
    opacity: 0.82;
}

.case-study-title {
    margin: 0;
    padding-bottom: 0;
    font-family: 'Times', sans-serif;
    font-size: 64px;
    line-height: 1;
    font-weight: 400;
    color: var(--text-primary-color);
    max-width: 100%;
}

.case-study-meta {
    font-size: 15px;
    line-height: 1.5;
    color: var(--text-secondary-color);
    padding-bottom: 18px;
    opacity: 0.92;
}

.case-study-summary {
    max-width: 62ch;
    padding-bottom: 0;
    font-size: 19px;
    line-height: 1.6;
}

.case-study-resource-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 22px;
}

.case-study-resource-link {
    display: inline-flex;
    align-items: center;
    position: relative;
    gap: 8px;
    width: fit-content;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 500;
    color: rgba(27, 27, 27, 0.82);
    letter-spacing: 0.01em;
    font-family: 'Figtree', sans-serif;
    text-decoration: none;
    transition: color 180ms ease, gap 180ms ease;
}

.case-study-resource-link::after {
    content: "↗";
    font-size: 13px;
    line-height: 1;
    position: relative;
    top: 0;
}

.case-study-resource-link::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 1px;
    background-color: currentColor;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 220ms ease;
}

.case-study-resource-link:hover,
.case-study-resource-link:focus-visible {
    color: var(--accent-color);
    gap: 10px;
}

.case-study-resource-link:hover::before,
.case-study-resource-link:focus-visible::before {
    transform: scaleX(1);
}

.case-study-highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 1120px;
    padding-top: 36px;
}

.case-study-highlight {
    padding: 0;
    border-top: 0;
}

.case-study-highlight-label {
    font-size: 13px;
    line-height: 1.1;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-secondary-color);
    padding-bottom: 10px;
    opacity: 0.88;
}

.case-study-highlight-text {
    max-width: 22ch;
    padding-bottom: 0;
    line-height: 1.5;
    font-size: 16px;
}

.case-study-divider {
    height: 1px;
    margin: 40px 0 0;
    background-color: var(--divider-color);
}

.case-study-content {
    max-width: 920px;
    padding-top: 40px;
}

.case-study-section {
    padding-bottom: 48px;
}

.case-study-section:last-child {
    padding-bottom: 0;
}

.case-study-section-title {
    margin: 0;
    padding-bottom: 14px;
    font-family: 'Times', sans-serif;
    font-size: 30px;
    line-height: 1.08;
    font-weight: 400;
    color: var(--text-primary-color);
}

.case-study-section p:last-child {
    padding-bottom: 0;
}

.case-study-section p {
    padding-bottom: 12px;
}

.case-study-section .case-study-resource-link {
    margin-top: 6px;
}

.case-study-list {
    margin: 0;
    padding: 0 0 0 20px;
}

.case-study-list li {
    font-family: 'Figtree', sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-primary-color);
    padding-bottom: 12px;
}

.case-study-list li:last-child {
    padding-bottom: 0;
}

.contact.case-study-contact {
    margin-top: 140px;
    margin-left: 0;
    margin-right: 0;
    padding-bottom: 2vh;
    width: 100%;
}

.contact.case-study-contact .divider {
    background: var(--divider-color);
}

.case-detail {
    max-width: 980px;
}

.case-detail-header {
    margin-bottom: 40px;
}

.case-detail-company {
    display: inline-block;
    font-size: 12px;
    line-height: 1.1;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-secondary-color);
    padding-bottom: 16px;
}

.case-detail-title {
    font-family: 'Times', sans-serif;
    font-size: 52px;
    line-height: 1.02;
    font-weight: 400;
    color: var(--text-primary-color);
    margin: 0;
    padding-bottom: 20px;
}

.case-detail-meta {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-secondary-color);
    padding-bottom: 20px;
}

.case-detail-summary {
    max-width: 40ch;
    padding-bottom: 0;
}

.case-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.case-detail-block {
    padding: 24px 0;
    border-top: 1px solid rgba(27, 27, 27, 0.12);
}

.case-detail-block-title {
    font-size: 12px;
    line-height: 1.1;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-secondary-color);
    padding-bottom: 12px;
}

.case-detail-block p:last-child {
    padding-bottom: 0;
}

.case-detail-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.case-detail-list li {
    font-family: 'Figtree', sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-primary-color);
    padding-bottom: 12px;
}

.case-detail-list li:last-child {
    padding-bottom: 0;
}

.case-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    margin-top: 40px;
    font-family: 'Times', sans-serif;
    font-size: 20px;
    line-height: 1;
    color: var(--text-primary-color);
    border-bottom: 1px solid rgba(27, 27, 27, 0.18);
}

.case-back-link::before {
    content: "←";
    font-size: 18px;
    line-height: 1;
}

.contact {
    margin-bottom: 8vh;
}

.contact .divider {
    margin-top: 18px;
    margin-bottom: 0;
    background-color: var(--divider-color);
    height: 1px;
}

.projects .divider {
    margin-top: 18px;
    margin-bottom: 0;
    background-color: var(--divider-color);
    height: 1px;
}

.image_container {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.image_container img {
    width: 624px;
    height: auto;
    margin-bottom: 16px;
    transform: scaleX(-1);
    filter: grayscale(100%);
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0;
}

.jobs {
    margin-top: 20px;
}

.job-cell {
    display: grid;
    grid-template-columns: 1fr;
    align-items: baseline;
    row-gap: 4px;
    padding: 24px 0 26px;
    border-bottom: 1px solid var(--divider-color);
}

.job-cell p {
    padding-bottom: 0;
    line-height: 1.45;
}

.job-cell p:first-child {
    color: rgba(136, 136, 136, 0.9);
    font-size: 15px;
    font-weight: 400;
}

.job-cell p:nth-child(2) {
    color: var(--text-primary-color);
    font-weight: 600;
}

.job-cell p:last-child {
    color: rgba(27, 27, 27, 0.68);
    font-weight: 400;
}

.socials {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 18px;
    margin-top: 18px;
}

.socials a {
    display: inline-block;
    position: relative;
    width: fit-content;
    padding: 0;
    color: rgba(27, 27, 27, 0.8);
    text-decoration: none;
    transition: color 180ms ease;
}

.socials p {
    padding-bottom: 0;
}

.socials-title {
    font-size: 24px;
    line-height: 1.15;
    font-weight: 400;
    letter-spacing: 0.01em;
    color: inherit;
    font-family: 'Times', sans-serif;
}

.socials a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 1px;
    background-color: currentColor;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 220ms ease;
}

.socials a:hover {
    color: var(--accent-color);
}

.socials a:hover .socials-title,
.socials a:focus-visible .socials-title {
    color: var(--accent-color);
}

.socials a:hover::after,
.socials a:focus-visible::after {
    transform: scaleX(1);
}

.container-last-p p:last-child {
    padding-bottom: 0px;
} 



/* https://developer.mozilla.org/en-US/docs/Web/CSS/@media/prefers-reduced-motion */
@media (prefers-reduced-motion) {
    
}

/****** Responsive CSS Start ******/

@media only screen and (min-width: 1200px) {
    .job-cell {
        grid-template-columns: 1fr 1fr 1fr;
        column-gap: 24px;
        row-gap: 0;
    }


    .title-wrapper {
        width: 100%;
    }
    .title-wrapper-hero {
        width: 70%;
    }

    .two-columns {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 24px;
    }

    .success-cases-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 28px;
    }

    .special-projects-feature {
        grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
        gap: 42px;
        padding: 36px;
    }

    .case-detail-grid {
        grid-template-columns: 1fr 1fr;
        column-gap: 48px;
    }
    .habilitites, .success-cases, .special-projects, .projects, .about-me, .contact {
        margin-left: 14vw;
        margin-right: 14vw;
    }

    .case-page {
        margin: 0 14vw 8vh 14vw;
    }

    .case-study-highlights {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 36px;
    }

   
}
    /* .hero {
        padding: 0px 21vw;
    } */


@media only screen and (max-width: 1199px) {
    .image_container img {
        display: none;
    }
    .habilitites {
    padding-top: 56px;
    }

    .success-cases,
    .special-projects,
    .projects,
    .about-me,
    .contact {
        margin-top: var(--section-spacing-mobile);
    }
    .hero {
        padding: 32px;
          /* height: 480px; */
    }

    .hero-positioning {
        max-width: 34ch;
        font-size: 20px;
        line-height: 1.4;
        padding-top: 16px;
    }

    .last {
        margin-top: 42px;
    }

    .success-cases-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 36px;
    }

    .special-projects-feature {
        margin-top: 36px;
        padding: 28px;
    }

    .special-projects-title {
        font-size: 30px;
    }

    .special-projects-summary,
    .special-projects-contribution {
        font-size: 17px;
    }

    .success-cases-grid .last {
        margin-top: 0;
    }

    .job-cell {
        row-gap: 6px;
        padding: 24px 0;
    }

    .case-study-title {
        font-size: 56px;
        max-width: 100%;
        line-height: 1.02;
    }

    .case-study-summary {
        font-size: 18px;
    }

    .case-study-content {
        padding-top: 40px;
    }

    .case-study-section {
        padding-bottom: 40px;
    }
}

/* Media query for screens less than 740px wide */
@media (max-width: 740px) {
    .header-element-subtitle-hero {
        font-size: 40px; /* Set font size to 32px */
    }

    .hero-positioning {
        font-size: 18px;
        line-height: 1.45;
        max-width: 26ch;
        padding-top: 12px;
    }

    .success-cases-grid {
        grid-template-columns: 1fr;
        margin-top: 28px;
    }

    .special-projects-feature {
        margin-top: 28px;
        padding: 24px;
        border-radius: 18px;
        gap: 24px;
    }

    .special-projects-title {
        font-size: 28px;
        line-height: 1.08;
    }

    .special-projects-summary,
    .special-projects-contribution {
        font-size: 16px;
        line-height: 1.6;
    }

    .special-projects-visual {
        min-height: 260px;
    }

    .special-projects-center-label {
        width: 46%;
        min-height: 84px;
        font-size: 22px;
    }

    .special-projects-node {
        font-size: 11px;
        padding: 9px 12px;
    }

    .success-cases-card {
        padding: 24px;
        border-radius: 16px;
    }

    .success-cases-element-header-title {
        font-size: 26px;
    }

    .projects .divider {
        margin-top: 16px;
    }

    .contact .divider {
        margin-top: 16px;
    }

    .jobs {
        margin-top: 16px;
    }

    .socials {
        margin-top: 16px;
    }

    .job-cell {
        row-gap: 6px;
        padding: 20px 0 22px;
    }

    .case-page {
        margin: 40px 8vw 8vh 8vw;
        padding-top: 16px;
    }

    .case-study-back {
        margin-bottom: 32px;
    }

    .case-study-title {
        font-size: 40px;
        line-height: 1.04;
        max-width: 100%;
    }

    .case-study-highlights {
        padding-top: 32px;
    }

    .case-study-content {
        padding-top: 32px;
    }

    .case-study-section {
        padding-bottom: 32px;
    }

    .case-detail-title {
        font-size: 40px;
    }
}

/****** Responsive CSS End ******/
