:root {
    --bg: #000000;
    --bg2: #181818;
    --tx: #e7e7e7;
    --tx-low: rgba(231, 231, 231, 0.3);
    --tx2: #696969;
    --tx3: #404040;
    --cf: #9acd32;
    --cf-bright: #adff2f;
    --cf2: #059d00;

    --border: 1px solid var(--tx2);

    --f-main: "Lexend", sans-serif;
    --ff: "Source Code Pro", monospace;

    --right-width: 120px;
    --days-container-width: 150px;

    --title-size: clamp(46px, 18vw, 160px);
}

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

/* @keyframes loading {
    0% {
        opacity: 0;
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        filter: blur(0px);
    }
}

@keyframes exiting {
    0% {
        opacity: 1;
        filter: blur(0px);
    }
    100% {
        opacity: 0;
        filter: blur(10px);
    }
} */

/* For WebKit-based browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
  width: 18px; /* Width of the scrollbar */
  background: var(--bg); /* Black background */
}

::-webkit-scrollbar-thumb {
  background: var(--tx); /* Gray thumb */
  border-radius: 6px; /* Optional: rounded corners for the thumb */
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    scrollbar-color: var(--tx) var(--bg);
    scrollbar-width: normal;
}

body {
    overflow-x: hidden;
    position: relative;
    background-color: var(--bg);
    color: var(--tx);
    font-family: var(--f-main);
    scrollbar-width: normal;
    scrollbar-color: var(--tx) var(--bg);
}

/* @keyframes enter-animation {
    from {
        transform: translateY(100dvh) rotate(25deg);
    }
    to {
        transform: translateY(0) rotate(0deg);
    }
}

#smooth-wrapper {
    transform-origin: left bottom;
    animation: enter-animation .5s forwards;
} */

/* .loader-container {
    position: fixed;
    background-color: var(--bg);
    width: 100dvw;
    height: 100dvh;
    top: 0;
    left: 0;
    z-index: 9999;
}
.loading-bar {
    position: absolute;
    height: 36px;
    width: 260px;
    bottom: 60px;
    left: 60px;
    border: 1px solid var(--tx);
}
.loading-progress {
    position: relative;
    height: 100%;
    width: 40%;
    background-color: var(--tx);
}
.loading-progress hr {
    border: none;
    border-right: 1px solid var(--tx);
    height: 50px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
} */

::selection {
    background-color: var(--cf2);
    color: var(--bg);
}

.color-focus {
    color: var(--cf-bright);
}

.color-focus2 {
    color: var(--cf2);
}

.nowrap {
    white-space: nowrap;
}

@keyframes blurEffect {
    0% {
        filter: blur(0px);
    }
    20% {
        filter: blur(10px);
    }
    100% {
        filter: blur(0px);
    }
}

canvas {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    pointer-events: none;
    user-select: none;
    mix-blend-mode: exclusion;
}

#menuButton {
    position: fixed;
    top: clamp(36px, 5vw, 50px);
    left: clamp(36px, 5vw, 50px);
    z-index: 9999;
    border: var(--border);
    border-radius: 10rem;
    padding: 0 20px;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 1;
    word-spacing: 6px;
    display: none;
    background-color: var(--bg);
    height: 32px;
}

#menu {
    position: fixed;
    left: -110%;
    top: calc(clamp(36px, 5vw, 50px) + 56px);
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 8px;
    border: var(--border);
    z-index: 999;
    padding: 18px;
    backdrop-filter: blur(8px);
    transition: left 0.3s ease;
    font-size: 20px;
    line-height: 1.5;
}

.menu-content {
    margin-top: 16px;
}

#menu .menu-section-title {
    text-transform: uppercase;
    color: var(--tx2);
    font-size: 14px;
    font-weight: normal;
    margin-top: 4px;
}

#menu li {
    list-style: none;
}
/* #menu p {
    line-height: 1.5;
} */

#menu a {
    all: unset;
}
#menu a:hover {
    color: var(--cf);
}

#menu.open {
    left: 20px;
}

/* .main-nav {
    background: linear-gradient(120deg, var(--cf2), var(--cf), var(--cf2) 40%);
    width: 100%;
    padding: 0.4em 2em;
}
.main-nav ul {
    width: fit-content;
    margin-left: auto;
    display: flex;
    flex-direction: row;
    gap: 2em;
}
.main-nav ul li {
    list-style: none;
}
.main-nav ul li a {
    color: var(--bg);
    text-decoration: none;
}
.main-nav ul li a:hover {
    text-decoration: underline;
} */

.home {
    position: relative;
    display: flex;
    flex-direction: row;
}

.home .heading-container br {
    display: none;
}

.left {
    position: relative;
    flex: 1;
}

.home-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 90px 100px;
}

#cta {
    all: unset;
    color: var(--tx2);
    font-family: var(--ff);
    font-size: 1rem;
    position: relative;
    padding: 10px;
    text-wrap: nowrap;
}

#cta:hover {
    color: var(--cf-bright);
}

#cta span {
    font-style: italic;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 1px;
}

.social-box * {
    all: unset;
    color: var(--tx);
}

.social-box:hover * {
    color: var(--cf-bright);
}

.social-box > * {
    transition: transform 100ms ease;
}

.social-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 300px;
    font-size: 1rem;
    flex-wrap: nowrap;
}

.social-arrow {
    padding: 0 30px;
    height: 80px;
    width: 90px;
}

#left-arrow {
    left: 0;
    text-align: left;
}

#right-arrow {
    right: 0;
    text-align: right;
}

#social-text {
    transition: opacity 0.2s ease-in-out;
    animation: blurEffect 0.4s ease-in-out;
    font-family: var(--ff);
    font-weight: normal;
}

.title-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
    /* margin-bottom: var(--title-size); */
}

.title, .subtitle {
    /* position: absolute; */
    text-wrap: nowrap;
    word-break: keep-all;
    white-space: nowrap;
    transition: transform 100ms ease;
    width: fit-content;
}

.title {
    font-size: var(--title-size);
    /* font-size: clamp(48px, 10.2vw, 20dvh); */
    color: var(--bg2);
    text-transform: uppercase;
    font-weight: bold;
}

.subtitle {
    position: absolute;
    font-size: 22px;
    background: linear-gradient(-45deg, #00FF00 0%, #8DFF26 18%, #ADFF2F 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0px 0px 20px var(--cf2));
    text-transform: capitalize;
}

.hr-h {
    border: none;
    border-bottom: var(--border);
    width: 100%;
}

.hr-v {
    border: none;
    border-left: var(--border);
    height: 100%;
}

.line-container {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 8px;
    transform: translateX(-50%);
}

.sr {
    font-family: var(--ff);
    font-size: 20px;
    position: absolute;
    left: -8px;
    transform: translateX(-100%);
}

.plus-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home .hr-top {
    flex: 3;
}

.home .hr-bottom {
    flex: 1;
}

.home-quote {
    position: relative;
    /* bottom: 4px; */
    /* left: 150px; */
    transform: translateY(calc(-100% + .4em));
    /* line-height: 1.4; */
    color: var(--tx2);
    font-family: var(--ff);
    min-width: 214px;
}

.right {
    width: var(--right-width);
    flex-shrink: 0;
    position: relative;
}

.heading-container-parent {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.heading-container,
.heading-container-child {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff);
}

.heading-container-clone {
    display: none;
}

.og {
    z-index: 3;
    mix-blend-mode: color-dodge;
    color: var(--cf);
    filter: saturate(1.5);
    pointer-events: none;
    user-select: none;
    position: relative;
}

.clone {
    z-index: 4;
    /* opacity: .3; */
    color: var(--tx-low);
    position: absolute;
    /* display: none; */
}

.right .og,
.right .clone {
    font-size: 16px;
}

.clone-container {
    position: relative;
}

/* .about .left .clone {
    top: 0;
    left: 0;
} */

.about .cta-container {
    width: fit-content;
    margin: 100px auto 0;
}

.about-content-middle-text-container .og {
    position: relative;
}
.clone-calculated {
    position: relative;
    /* margin-top: -112px; */
}

.section-heading,
.section-heading-clone {
    rotate: 270deg;
    transform-origin: center center;
    text-wrap: nowrap;
}

/* .section-heading {
    mix-blend-mode: color-dodge;
    z-index: 3;
    color: var(--cf);
    filter: saturate(1.5);
}

.section-heading-clone {
    position: absolute;
    z-index: 4;
    color: var(--tx-low);
    opacity: .3;
} */

.about,
.competence,
/* .why, */
.work,
/* .responsive, */
.connect {
    display: flex;
    flex-direction: row;
}

.about {
    position: relative;
    --about-content-padding: 20px;
    /* justify-content: space-between; */
    /* height: 0;
    overflow: hidden; */
}

.about-para-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
    /* background-color: red; */
    height: fit-content;
    transform: translateY(50%);
    padding: 0 40px;
    gap: 20px;
}

.about-para {
    /* min-width: 305px; */
    max-width: 610px;
    position: relative;
    padding: 20px 24px 60px 40px;
    /* transform: translateY(-50%); */
    /* margin: 0 20px; */
    /* margin: -150px 60px 0 60px; */
    word-spacing: .25em;
    z-index: 1;
    background-color: var(--bg);
    border: var(--border);
    /* float: right; */
    top: 0;
    /* right: 40px; */
}

.quote-mark1,
.quote-mark2 {
    height: 3rem;
    margin-bottom: .8rem;
}

.quote-mark1 {
    margin-right: .8rem;
}
.quote-mark2 {
    margin-left: .8rem;
    margin-bottom: -2.8rem;
    /* scale: -1; */
    rotate: 180deg;
}

.shaped-image {
    position: relative;
    float: left;
    shape-outside: url('Assets/Days-line.svg');
    shape-image-threshold: 0.1;
    shape-margin: var(--about-content-padding);
    margin-right: var(--about-content-padding);
    width: var(--days-container-width);
    opacity: 0;

    display: none;
}

.days-container {
    display: inline-block;
    width: var(--days-container-width);
    height: fit-content;
    position: relative;
    top: 0;
    left: 0;
    padding-top: 80px;
    z-index: 0;
}

.days-line {
    position: absolute;
    top: 0;
    left: 0;
    width: var(--days-container-width);
}

.days-counter-container {
    display: flex;
    flex-direction: row;
    /* background-color: blue; */
    overflow: hidden;
}

#days-counter,
#days-counter-next {
    font-size: 130px;
    white-space: pre;
    font-family: var(--f-main);
    line-height: 1;
    text-align: right;
}

#days-counter {
    color: var(--tx2);
}

.days-counter-next-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

#days-counter-next {
    color: var(--bg2);
    filter: blur(0.016em);
}

.days-text1 {
    font-family: var(--ff);
    position: absolute;
    rotate: 270deg;
    transform-origin: center center;
    white-space: nowrap;
    text-wrap: nowrap;
    transform: translateY(1em);
}

.days-text2 {
    text-align: right;
    font-family: var(--ff);
    color: var(--tx2);
}

.about-middle {
    position: relative;
    /* width: calc(100vw - var(--right-width)); */
    width: 100%;
}

.experience-year-container {
    font-size: clamp(42px, 6.8vw, 110px);
    margin: 20px 0 0 clamp(10px, 5vw, 80px);
    text-transform: uppercase;
    width: fit-content;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-wrap: nowrap;
}

#experience-year-container2,
#experience-year-container3 {
    display: none;
}

/* #experience-year-container3 span {
    display: none;
} */

.about-content-container {
    font-size: 22px;
    width: fit-content;
    max-width: 960px;
    margin: 0 auto;
}

.about-content-top,
.about-content-middle-text-container,
.about-content-bottom {
    position: relative;
    margin: 10px 0;
    /* display: flex;
    align-items: center;
    justify-content: center; */
}

.about-content-top {
    max-width: 590px;
}

.about-content-bottom {
    /* max-width: 917px; */
    text-align: justify;
}

.about-content-bottom p {
    text-indent: 1.6em;
}

.big-plus {
    position: absolute;
    top: 0;
    left: 0;
    /* transform: translate(calc(var(--days-container-width) + -46%), -31%); */
    transform: translate(-76%, -31%);
}

.about-content-middle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: fit-content;
}

.about-content-middle-text-container {
    /* max-width: 470px; */
    text-align: justify;
}

.profie-img-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    position: relative;
    min-width: 427px;
}

.profie-img-container img {
    max-width: 427px;
    width: 100%;
}

.profie-img {
    /* filter: saturate(2) contrast(1.5); */
    pointer-events: none;
    user-select: none;
}

.profie-img-clone {
    pointer-events: none;
    user-select: none;
    transition: opacity 1s ease;
    opacity: 1;
}

.profie-img-container:hover .profie-img-clone {
    opacity: .3;
}

/* .profie-img-overlay {
    position: absolute;
    z-index: 5;
    opacity: 1;
    transition: opacity 1s ease;
}

.profie-img-overlay:hover  {
    opacity: 0;
} */

/* .about-content-container {
    position: relative;
    margin: 40px auto 100px;
    color: var(--tx-low);
    font-size: 22px;
    max-width: 1120px;
    padding: 0 100px;
}

.about-content-top {
    position: relative;
    max-width: 590px;
}

.about-content-middle-text-container {
    position: relative;
}

.about-content-middle {
    display: flex;
    gap: 1em;
    margin: .5em 0;
    text-align: justify;
}

.about-content-bottom {
    position: relative;
}

.about-content-bottom-text {
    text-indent: 1em;
    text-align: justify;
}

.big-plus {
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-86%, -30%);
} */

/* .about .cta-container {
    position: relative;
    width: fit-content;
    left: calc(50% - var(--days-container-width)/2);
} */

/* #experience-year-container2 {
    display: none;
} */

/* .about-content-top-text,
.about-content-middle-text,
.about-content-bottom-text {
    position: relative;
    z-index: 3;
    color: var(--tx);
    mix-blend-mode: color-dodge;
} */

/* .about-content-top-text-clone,
.about-content-middle-text-clone,
.about-content-bottom-text-clone {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 4;
    color: var(--tx-low);
    mix-blend-mode: normal;
} */

.competence .left {
    padding: 0 clamp(10px, 5vw, 120px);
}

.competence-content-container {
    display: flex;
    flex-direction: row;
    gap: 26px;
    text-align: justify;
    margin: 100px auto;
    /* background-color: red; */
    max-width: 1400px;
}

.competence-content-container div {
    flex: 1;
}

.Competence-title {
    color: var(--cf-bright);
    font-size: 22px;
    margin-bottom: .6em;
}

.Competence-text {
    font-size: 18px;
}

/* .cards-container {
    position: relative;
    width: fit-content;
    margin: 200px auto;
    font-size: 18px;
}

.why-title-container {
    position: absolute;
    top: -34%;
    background-color: var(--bg2);
    width: fit-content;
    height: 100%;
    rotate: 8deg;
    padding: 10px;
    left: 100px;
}

.why-title-container > * {
    rotate: -20deg;
}

.why-title1 {
    font-size: 48px;
    color: var(--cf-bright);
}

.cards-container #cta {
    position: relative;
    float: right;
    color: var(--tx);
}

.cards-container #cta:hover {
    color: var(--cf-bright);
} */

/* .why-text-container {
    width: 790px;
    background-color: var(--tx);
    color: var(--bg);
    rotate: -12deg;
    height: 210px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0em 0em 1em 0.5em rgba(0, 0, 0, 1);
}

.why-text {
    text-align: justify;
    max-width: 90%;
    margin: 0 auto;
    line-height: 1.4;
} */

.work {
    height: calc(100dvh + 66px);
    color: var(--tx3);
}

.work .sr {
    color: var(--tx);
}

.work .heading-container {
    position: relative;
    z-index: 1;
}
.work .clone {
    z-index: 9;
    transition: .2s ease;
    /* background-color: blue; */
}
.work .og {
    display: none;
}
.work .clone:hover {
    color: var(--cf);
}

.work-content {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    max-width: 1600px;
    margin: 0 auto;
}

#work-heading {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: normal;
}
.work ul li {
    font-weight: 300;
    font-size: 38px;
    padding-left: 10px;
    list-style: none;
    line-height: 1.4;
    text-wrap: nowrap;
    width: fit-content;
}

.work ul li a {
    all: unset;
}

.project-preview-container {
    width: 380px;
    color: var(--tx);
}
.project-img {
    width: 100%;
    border-radius: 4px;
    display: block;
    overflow: hidden;
}
.project-heading {
    font-size: 32px;
    text-transform: uppercase;
    font-weight: normal;
}
.project-para {
    font-size: 18px;
    text-transform: uppercase;
}

.connect-text-container {
    position: relative;
}

#connect-heading,
#connect-heading-clone {
    line-height: 1;
    font-weight: normal;
    font-size: clamp(48px, 18vw, 190px);
}

.connect-text {
    position: relative;
    z-index: 3;
    mix-blend-mode: color-dodge;
    color: var(--cf);
    filter: saturate(1.5);
    text-wrap: nowrap;
    word-break: keep-all;
    /* pointer-events: none;
    user-select: none; */
}

.connect-text-clone {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 4;
    color: var(--tx-low);
    mix-blend-mode: normal;
    opacity: .5;
}

footer {
    position: relative;
    width: 100%;
    background-color: var(--cf-bright);
    color: var(--bg);
    /* z-index: 3; */
    padding-top: 86px;
}

.form-container {
    width: fit-content;
    margin: 0 auto;
}

button,
input {
    all: unset;
}

.form-nav {
    display: flex;
    text-transform: uppercase;
    gap: 10px;
    font-size: 1rem;
    /* margin-left: 50px; */
    margin: 0 0 54px 150px;
}

.form-nav-btn-selected {
    color: var(--cf2);
}

.form-nav-hr {
    /* border: none; */
    border: 1px solid var(--bg);
    margin: 2px 0;
}

.form {
    max-width: 1530px;
    font-size: 38px;
    padding: 0 100px;
}

@media (min-width: 1230px) {
    .form {
        min-height: 240px;
    }
}

.form-text {
    display: inline;
}

.form-text-indent {
    display: inline-block;
    width: 50px;
}

.form span {
    text-wrap: nowrap;
    color: var(--cf2);
}

.form input::placeholder {
    color: var(--cf2);
}

input[type="number"] {
    text-align: right;
}

input.budget-input::-webkit-outer-spin-button,
input.budget-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input.budget-input {
  -moz-appearance: textfield;
  appearance: textfield;
}


.submit-btn {
    margin-top: -100%;
    position: relative;
    transform: translate(-20%, 80%);
}

.submit-btn:active,
.submit-btn.active-animate {
    animation: blurEffect 0.4s ease-out;
}

.footer-watermark-container {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
}

.footer-watermark {
    color: var(--bg);
    text-wrap: nowrap;
    rotate: 90deg;
    font-size: 1rem;
    font-family: var(--ff);
}

.footer-social-container {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    gap: 26px;
    padding-right: 3rem;
    align-items: center;
}

.footer-social-container a {
    height: 3rem;
}

.footer-social-container a img {
    height: 100%;
}

.footer-email {
    font-size: clamp(16px, 5.4vw, 120px);
    text-wrap: nowrap;
    display: block;
    width: fit-content;
    text-decoration: none;
    color: var(--bg);
    padding-bottom: 4px;
    margin-left: auto;
    margin-top: 1rem;
    margin-right: 20px;
}

.footer-nav {
    position: absolute;
    top: 20px;
    right: 40px;
}

.footer-nav a {
    /* all: unset; */
    display: block;
    text-align: right;
    color: inherit;
    text-underline-offset: .12em;
    font-size: 16px;
}

/* .footer-nav a:hover {
    text-transform: uppercase;
    font-size: .6em;
} */







@media (min-width: 1567px) {
  .about-content-container {
      font-size: 26px;
      max-width: 1100px;
      /* margin: 0 0 0 200px; */
  }
  .about-content-top {
    max-width: 700px;
}
}

@media (max-width: 1530px) {
    .experience-year-container {
        font-size: clamp(42px, 6vw, 110px);
    }
}
@media (max-width: 1450px) {
    .experience-year-container {
        font-size: clamp(42px, 5.5vw, 110px);
    }
}
@media (max-width: 1400px) {
    .experience-year-container {
        font-size: clamp(42px, 5vw, 110px);
    }
}
@media (max-width: 1360px) {
    .about-content-top-container {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }
    #experience-year-container1 {
        display: none;
    }
    #experience-year-container2 {
        display: flex;
    }
    .experience-year-container {
        /* font-size: clamp(42px, 7.1vw, 110px); */
        margin: 0;
    }
    /* .home-quote {
        left: 60px;
    } */
    .about-middle {
        padding: 120px 100px 0;
    }
    .about-content-top {
        /* max-width: 427px; */
        text-align: justify;
        padding-right: var(--about-content-padding);
    }
    .about-para {
        max-width: 700px;
    }
    .about-content-top,
    .about-content-middle-text-container,
    .about-content-bottom {
        position: relative;
        margin: 4px 0;
    }
}

@media (max-width: 1320px) {
    .about-content-container {
        font-size: 20px;
    }
}
/* @media (max-width: 1284px) {
    .home-quote {
        left: 20px;
    }
} */
/* @media (max-width: 1248px) {
    .home-quote {
        left: 60px;
        max-width: 240px;
        text-align: center;
    }
} */
@media (max-width: 1250px) {
    .about-content-container {
        font-size: 18px;
    }
}
@media (max-width: 1190px) {
    :root {
        --right-width: 100px;
    }
    .about-content-top-container {
        display: block;
        width: fit-content;
    }
    .about-content-middle {
        display: block;
        width: fit-content;
    }
    #experience-year-container2 {
        display: none;
    }
    .about-content-middle-top {
        display: flex;
        gap: var(--about-content-padding);
    }
    /* .about-content-top-container {
        flex-direction: column-reverse;
    } */
    #experience-year-container3 {
        display: flex;
        font-size: 20vw;
        text-transform: capitalize;
        /* font-weight: 300; */
        width: 100%;
    }
    .about-middle,
    .about-content-container {
        padding: 0;
        margin: 0;
    }
    .about-content-container {
        padding-top: 120px;
        margin-right: var(--about-content-padding);
        margin-left: var(--about-content-padding);
    }
    .shaped-image {
        display: inline-block;
    }
    
    .days-container {
        position: absolute;
    }
    /* .about-content-container {
        width: calc(100vw - var(--days-container-width) - var(--right-width) - 200px);
        padding: 120px 0;
        margin: 0 100px;
    } */
    /* .about-content-middle-text-container,
    .about-content-middle-text-container p {
        width: 100%;
    } */
    .about-content-top-container,
    .about-content-top-container * {
        display: block;
        width: 100%;
    }
    .about-content-top {
        padding: 0;
    }
    .big-plus {
        display: none;
        /* transform: translate(calc(var(--days-container-width) + -46%), -31%); */
    }
    .form {
        font-size: 32px;
    }
}
@media (max-width: 1101px) {
    /* .home-quote {
        transform: translateY(calc(-100% + 1.2em));
    } */
    #experience-year-container3 {
        font-size: 19vw;
    }
}
@media (max-width: 1070px) {
    #experience-year-container3 {
        font-size: 18vw;
    }
}
@media (max-width: 1044px) {
    #experience-year-container3 {
        font-size: 17vw;
    }
}
@media (max-width: 1024px) {
    :root {
        --right-width: 90px;
    }
    #experience-year-container3 {
        font-size: 16vw;
    }
}
@media (max-width: 1000px) {
    #menuButton {
        display: inline-block;
    }
    .home-nav {
        display: none;
    }
    .title-container {
        margin-top: var(--title-size);
    }
    #experience-year-container3 {
        font-size: 20vw;
    }
    #experience-year-container3 span {
        display: none;
    }
    .home .hr-top {
        flex: auto;
    }
    .home .hr-bottom {
        flex: auto;
        height: 230px;
    }
}
@media (max-width: 994px) {
    .form {
        font-size: 30px;
    }
}
@media (max-width: 984px) {
    #experience-year-container3 {
        font-size: 19vw;
    }
}
@media (max-width: 974px) {
    #experience-year-container3 {
        font-size: 18vw;
    }
}
@media (max-width: 950px) {
    :root {
        --right-width: 80px;
    }
    #experience-year-container3 {
        display: none;
    }
    #experience-year-container2 {
        display: flex;
        width: fit-content;
        font-size: clamp(12px, 9vw, 110px);
    }
    .about-content-top-container {
        display: flex;
        flex-direction: column-reverse;
        width: fit-content;
        margin-left: auto;
        align-items: flex-end;
    }
    .about-content-middle-top {
        justify-content: flex-end;
    }
    .about-content-top {
        max-width: 427px;
        text-align-last: right;
    }
    .competence-content-container {
        /* display: block; */
        flex-direction: column;
        gap: 36px;
    }

    /* .why .left {
        z-index: 1;
    }
    .why-text-container {
        width: 90%;
        margin: 0 auto;
        height: auto;
        padding: 5%;
    }
    .why-text {
        max-width: 100%;
    }
    .why #cta {
        margin-right: 5%;
    } */
    .form {
        font-size: 30px;
        text-align: justify;
    }
}
/* @media (max-width: 903px) {
    .home-quote {
        transform: translateY(calc(-100% + 1.8em));
    }
} */
@media (max-width: 875px) {
    .about-para {
        text-align: justify;
    }
    .footer-social-container {
        margin-top: 3rem;
        padding-right: 2rem;
    }
    .footer-social-container a {
        height: 2rem;
    }
    .project-heading,
    .project-para {
        display: none;
    }
    .work-content {
        /* justify-content: center; */
        flex-direction: column;
        /* justify-content: center; */
    }
    /* .work-content nav {
        background-color: red;
    } */
    .project-preview-container {
        /* position: absolute; */
        /* top: 0; */
        /* right: 0; */
        width: 80%;
        margin-top: .8em;
        /* z-index: -2; */
        /* padding: 5vw; */
    }
    .work-content ul li {
        mix-blend-mode: difference;
        /* line-height: 1.2; */
        font-size: 32px;
    }
}
@media (max-width: 818px) {
    .about-para {
        padding: 20px 24px 44px 24px;
        min-width: 346px;
        width: 346px;
    }
    .home-quote {
        min-width: auto;
    }
    .quote-mark1,
    .quote-mark2 {
        height: 2rem;
        margin-bottom: .2rem;
    }

    .quote-mark1 {
        margin-right: .4rem;
    }
    .quote-mark2 {
        margin-left: .4rem;
        margin-bottom: -1.8rem;
    }
}
@media (max-width: 800px) {
    :root {
        --days-container-width: 120px;
    }
    /* .shaped-image {
        position: relative;
        float: left;
        shape-outside: url('Assets/Days-line.svg');
        shape-image-threshold: 0.1;
        shape-margin: var(--about-content-padding);
        margin-right: var(--about-content-padding);
        width: var(--days-container-width);
    
        display: none;
    } */
    
    .days-container {
        /* display: inline-block;
        width: var(--days-container-width);
        height: fit-content;
        position: relative;
        top: 0;
        z-index: 0;
        left: 0; */
        padding-top: 90px;
    }
    
    /* .days-line {
        position: absolute;
        top: 0;
        left: 0;
        width: var(--days-container-width);
    } */
    
    /* .days-counter-container {
        display: flex;
        flex-direction: row;
        overflow: hidden;
    } */
    
    #days-counter,
    #days-counter-next {
        font-size: 102px;
        /* white-space: pre;
        font-family: var(--f-main);
        line-height: 1;
        text-align: right; */
    }
    
    /* #days-counter {
        color: var(--tx2);
    } */
    
    /* .days-counter-next-container {
        display: flex;
        align-items: center;
        justify-content: center;
    } */
    
    /* #days-counter-next {
        color: var(--bg2);
        filter: blur(0.016em);
    } */
    
    .days-text1 {
        /* font-family: var(--ff);
        position: absolute;
        rotate: 270deg;
        transform-origin: center center;
        white-space: nowrap;
        text-wrap: nowrap; */
        transform: translateY(.1em);
    }
    
    /* .days-text2 {
        text-align: right;
        font-family: var(--ff);
        color: var(--tx2);
    } */
}
@media (max-width: 786px) {
    .form {
        font-size: 26px;
        padding: 0 60px;
    }
    .footer-watermark {
        font-size: .8rem;
    }
}
@media (max-width: 780px) {
    .profie-img-container {
        min-width: auto;
        width: 100%;
    }
    .profie-img-container img {
        max-width: 100%;
        width: 100%;
    }
    .about-content-top-container {
        margin: 0;
        /* width: 100%; */
        align-items: flex-start;
    }
    .about-content-top {
        width: 100%;
        text-align: justify;
        text-align-last: left;
    }
}
@media (max-width: 730px) {
    /* .why .left {
        width: calc(100vw - var(--right-width));
    }
    .why-text-container {
        width: 120vw;
        transform: translateX(-10vw);
    }
    .why-text {
        rotate: 12deg;
        width: 80vw;
        padding: 5vw;
    }
    .why .heading-container {
        align-items: flex-end;
    } */
    .heading-container-child {
        display: flex;
        align-items: center;
        justify-content: center;
        width: fit-content;
        height: fit-content;
        padding-bottom: 150%;
    }
    /* .why #cta {
        position: absolute;
        margin: 0;
        left: calc(100vw - 120px);
        transform: translate(-100%, 40px);
        right: auto;
    }
    .why-title-container {
        position: absolute;
        top: -18%;
        background-color: transparent;
        width: fit-content;
        height: 100%;
        rotate: 8deg;
        padding: 10px;
        left: 100px;
        z-index: 1;
    } */
    .about .heading-container2 {
        display: flex;
    }
}
@media (max-width: 728px) {
    .home-quote {
        transform: translateY(calc(-100% + 1.2em));
    }
}
/* @media (max-width: 690px) {
    .why-title-container {
        top: -19%;
    }
} */
@media (max-width: 660px) {
    .home-quote {
        transform: translateY(calc(-100% + 1.8em));
    }
    .form {
        font-size: 24px;
    }
}
@media (min-width: 651px) and (max-width: 652px) {
    .about-content-middle-text-container .clone-calculated {
        margin-top: -185.6px;
    }
}
@media (min-width: 637px) and (max-width: 640px) {
    .about-content-middle-text-container .clone-calculated {
        margin-top: -185.6px;
    }
}
@media (min-width: 604px) and (max-width: 626px) {
    .about-content-middle-text-container .clone-calculated {
        margin-top: -208.8px;
    }
}
@media (min-width: 548px) and (max-width: 577px) {
    .about-content-middle-text-container .clone-calculated {
        margin-top: -232px;
    }
}
@media (min-width: 509px) and (max-width: 538px) {
    .about-content-middle-text-container .clone-calculated {
        margin-top: -278.4px;
    }
}
@media (min-width: 434px) and (max-width: 501px) {
    .about-content-middle-text-container .clone-calculated {
        margin-top: -301.6px;
    }
}
@media (min-width: 415px) and (max-width: 434px) {
    .about-content-middle-text-container .clone-calculated {
        margin-top: -324.8px;
    }
}
/* @media (min-width: 384px) and (max-width: 416px) {
    .about-content-middle-text-container .clone-calculated {
        margin-top: -324.8px;
    }
} */
/* @media (max-width: 650px) {
    .why-title-container {
        top: -20%;
    }
} */
@media (max-width: 634px) {
    .home-quote {
        display: none;
    }
    .about-para-container {
        justify-content: flex-end;
    }
    .about-para {
        /* padding: 20px 24px 44px 24px; */
        min-width: auto;
        width: 100%;
    }
    .days-line {
        clip-path: inset(82px 0 0 0);
    }
    .submit-btn {
        height: 4rem;
    }
    .submit-btn img {
        height: 100%;
    }
    .about .heading-container3 {
        display: flex;
    }
}
@media (max-width: 600px) {
    .about-content-top-container {
        align-items: flex-end;
    }
    /* .about-para-container {
        transform: translate(0);
    } */
    /* .about-content-top,
    .about-content-middle-text-container,
    .about-content-bottom {
        text-align-last: right;
    } */
}
/* @media (max-width: 580px) {
    .experience-year-container {
    }
} */
/* @media (max-width: 602px) {
    .why-title-container {
        top: -21%;
    }
}
@media (max-width: 574px) {
    .why-title-container {
        top: -22%;
    }
} */
@media (max-width: 552px) {
    .days-line {
        clip-path: inset(92px 0 0 0);
    }
}
@media (max-width: 550px) {
    .about-para .nowrap {
        white-space: wrap;
    }
    .competence .heading-container2 {
        display: flex;
    }
}
@media (max-width: 510px) {
    .about-content-top {
        text-align: right;
        text-align-last: right;
    }
    /* .why-text-container {
        width: 140vw;
        transform: translateX(-20vw);
    }
    .why-title-container {
        top: -19%;
    } */
}
/* @media (max-width: 490px) {
    .why-title-container {
        top: -20%;
    }
} */
@media (max-width: 486px) {
    .days-line {
        clip-path: inset(102px 0 0 0);
    }
}
@media (max-width: 478px) {
    /* .why-title-container {
        top: -20%;
        left: 80px;
    } */
    :root {
        --right-width: 60px;
    }
    .form {
        font-size: 18px;
    }
    /* .form span {
        text-wrap: wrap;
    } */
    .quote-mark1,
    .quote-mark2 {
        height: 1rem;
        margin-bottom: .4rem;
    }
    .quote-mark1 {
        margin-right: 0;
    }
    .quote-mark2 {
        margin-left: 0;
        margin-bottom: -.6rem;
    }
    .about-para-container {
        padding: 0 20px;
    }
    .about-para {
        text-indent: 1.4em;
        padding: 14px 20px 20px 20px;
    }
    .heading-container-parent {
        text-align: center;
    }
    .right .og,
    .right .clone {
        font-size: 14px;
        text-align: center;
    }
    .home .heading-container br {
        display: inline-block;
    }
    .days-line {
        clip-path: inset(61px 0 0 0);
    }
    .about-content-container {
        padding-top: 80px;
    }
}
@media (max-width: 460px) {
    :root {
        --days-container-width: 90px;
    }
    .days-container {
        padding-top: 100px;
    }
    #days-counter,
    #days-counter-next {
        font-size: 68px;
    }
    .days-text1 {
        transform: translateY(.1em);
    }
    .footer-nav {
        right: 20px;
    }
    .footer-nav a {
        font-size: 14px;
    }
}
@media (max-width: 459px) {
    .days-line {
        clip-path: inset(71px 0 0 0);
    }
    .about-content-container {
        padding-top: 90px;
    }
}
/* @media (max-width: 428px) {
    .why-title-container {
        top: -19%;
        left: 5vw;
    }
} */
/* @media (max-width: 418px) {
    .about-content-middle-text-container {
        text-align: right;
    }
} */
@media (max-width: 418px) {
    .days-line {
        clip-path: inset(81px 0 0 0);
    }
    .about-content-container {
        padding-top: 100px;
    }
}
@media (max-width: 390px) {
    #experience-year-container2 {
        font-size: clamp(12px, 8vw, 110px);
    }
    .days-line {
        clip-path: inset(91px 0 0 0);
    }
    .about-content-container {
        padding-top: 110px;
    }
}
/* @media (max-width: 378px) {
    .why-title-container {
        top: -18%;
        left: 2vw;
    }
} */
@media (max-width: 354px) {
    #experience-year-container2 {
        font-size: clamp(12px, 7vw, 110px);
    }
}
@media (max-width: 344px) {
    /* .about-para {
        font-size: 14px;
    } */
    .days-line {
        clip-path: inset(81px 0 0 0);
    }
    .about-content-container {
        padding-top: 120px;
    }
    /* .shaped-image {
        padding-top: 0;
        opacity: 1;
        filter: brightness(.4);
    } */
    
    .days-container {
        padding-top: 90px;
        margin-top: 20px;
    }
}
/* @media (max-width: 348px) {
    .why-title-container {
        rotate: 0deg;
        top: -14%;
        left: auto;
        height: fit-content;
    }
    .why-title-container > * {
        rotate: -12deg;
    }
}
@media (max-width: 330px) {
    .why-title-container {
        top: -16%;
    }
} */
@media (max-width: 308px) {
    .days-line {
        clip-path: inset(111px 0 0 0);
    }
    .about-content-container {
        padding-top: 130px;
    }
}
@media (max-height: 750px) {
    #menuButton {
        display: none;
    }
}
@media (max-height: 600px) {
    #work-heading {
        font-size: 18px;
    }
    .work-content ul li {
        font-size: 28px;
        /* line-height: 1.2; */
    }
}
@media (max-height: 546px) {
    #work-heading {
        font-size: 19px;
    }
    .work-content ul li {
        font-size: 26px;
        line-height: 1.3;
    }
}
@media (max-height: 520px) {
    #work-heading {
        font-size: 18px;
        margin-bottom: 4px;
    }
    .work-content ul li {
        font-size: 24px;
        /* line-height: 1.2; */
    }
}
@media (max-height: 474px) {
    #work-heading {
        font-size: 17px;
    }
    .work-content ul li {
        font-size: 22px;
        /* line-height: 1.2; */
    }
}
@media (max-height: 444px) {
    /* .work-content ul li {
        font-size: 22px;
        line-height: 1.2;
    } */
    .project-preview-container {
        width: 70%;
    }
}
@media (max-height: 424px) {
    #work-heading {
        font-size: 16px;
    }
    .work-content ul li {
        font-size: 20px;
        /* line-height: 1.2; */
    }
}
@media (max-height: 396px) {
    #work-heading {
        font-size: 15px;
    }
    .work-content ul li {
        font-size: 18px;
        /* line-height: 1.2; */
    }
}

/* .clone {
    color: transparent !important;
}
.og {
    color: var(--tx-low);
} */