:root {
    --primary-color: #F0A400;
    --primary-color-hover: #B37B03;
    --background-color: #1A1A1A;
    --default-text-color: #FFF;
    --place-holder-color: #808080;
    --alt-text-color: #5A0953;
    --error-color: #B9314F;
    --basic-font-family: 'Manrope';
    --system-font-family: 'Nunito';
    --focus-font-family: 'Playfair Display';
    --font-size--2: clamp(0.64rem, 0.5829rem + 0.2857vw, 0.84rem);
    --font-size--1: clamp(0.8rem, 0.7286rem + 0.3571vw, 1.05rem);
    --font-size-0: clamp(1rem, 0.9107rem + 0.4464vw, 1.3125rem);
    --font-size-1: clamp(1.25rem, 1.1384rem + 0.558vw, 1.6406rem);
    --font-size-2: clamp(1.5625rem, 1.423rem + 0.6975vw, 2.0508rem);
    --font-size-3: clamp(1.9531rem, 1.7787rem + 0.8719vw, 2.5635rem);
    --font-size-4: clamp(2.4414rem, 2.2234rem + 1.0899vw, 3.2043rem);
    --font-size-5: clamp(3.0518rem, 2.7793rem + 1.3624vw, 4.0054rem);
}

html,
body {
    margin: 0;
    padding: 0;
    max-width: 100%;
    scrollbar-width: none;
    -ms-overflow-style: none;
    overscroll-behavior: none;
    overflow-x: clip;
}

body {
    background-color: var(--background-color);
    overscroll-behavior: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none;
}

.form-group {
    display: flex;
    align-items: start;
    position: relative;
}

.form-group label {
    position: absolute;
    transform-origin: left center;
    transition: all .3s;
    z-index: 1;
}

.form-group input,
.form-group textarea {
    z-index: 2;
    width: 100%;
    border: none;
    border-bottom: 1px solid #808080;
    background: transparent;
    outline: none;
    padding: 0 0 12px 0;
    border-radius: 0;
    resize: none;
}

.form-group input:focus+label {
    transform: translateY(-100%) scale(.66);
}

.form-group input:not(:placeholder-shown)+label {
    transform: translateY(-100%) scale(.66);
}

.form-group textarea:focus+label {
    transform: translateY(-100%) scale(.66);
}

.form-group textarea:not(:placeholder-shown)+label {
    transform: translateY(-100%) scale(.66);
}

input:required,
textarea:required {
    border-bottom: 1px solid #aaa;
}

input:required+label::after,
textarea:required+label::after {
    content: " *";
    color: var(--error-color);
}

input:focus:invalid,
textarea:focus:invalid {
    border-bottom: 1px solid var(--error-color);
}

input:invalid:not(:placeholder-shown),
textarea:invalid:not(:placeholder-shown) {
    border-bottom: 1px solid var(--error-color);
}

input:focus:invalid,
textarea:focus:invalid {
    border-bottom: 1px solid var(--error-color);
}

.form-group:has(input:invalid)::after,
.form-group:has(textarea:invalid)::after {
    content: attr(data-validation-message);
    position: absolute;
    bottom: -20px;
    font-size: var(--font-size--2);
    color: var(--error-color);
}

.btn-custom {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border-radius: 8px;
    padding: 12px;
    font-family: var(--system-font-family);
    font-weight: 500;
    font-size: var(--font-size--1);
    line-height: 1.5;
    letter-spacing: 0.1px;
    text-align: center;
    border: 0;
    transition: all .3s;
}

.btn-custom .icon {
    position: relative;
    width: 16px;
    height: 16px;
}

.btn-custom svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 16px;
    height: 16px;
    transition: all .3s;
}

.btn-custom:hover svg {
    left: -4px;
    rotate: 45deg;
}

.btn-custom:active {
    scale: .9;
    border: 0;
}

.btn-custom.disabled {
    opacity: .6;
}

.menu-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99998;
}

.menu {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem 2.5vw 0 2.5vw;
    width: 100%;
}

.menu .menu-content {
    position: relative;
    display: flex;
    flex-direction: row;
    font-family: var(--system-font-family);
    font-weight: 400;
    font-size: var(--font-size-0);
    background-color: var(--primary-color);
    border-radius: 100px;
    padding: 4px;
    box-shadow: 0 0 50px #0000001a;
    transform-origin: right center;
}

.menu .menu-item {
    letter-spacing: 0.1px;
    padding: 16px 20px;
    border-radius: 100px;
    transition: all .3s;
    text-decoration: none;
}

.menu .menu-link {
    color: var(--background-color);
    position: relative;
    z-index: 2;
}

.menu-hover {
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 100px;
    background-color: #0000001f;
    pointer-events: none;
    z-index: 1;
    opacity: 0;
}

.menu .menu-logo {
    position: absolute;
    left: 2.5vw;
}

.menu .menu-logo img {
    height: 24px;
}

.menu .menu-button {
    letter-spacing: 0.1px;
    padding: 16px 20px;
    border-radius: 100px;
    transition: all .3s;
    border: 1px solid var(--primary-color);
    background-color: var(--background-color);
    color: var(--primary-color);
}

.menu .menu-button .menu-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--primary-color);
}

.menu .menu-button .menu-link .icon {
    position: relative;
    width: 16px;
    height: 16px;
}

.menu .menu-button .menu-link .icon svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 16px;
    height: 16px;
    transition: all .3s;
    fill: var(--primary-color);
}

.menu .menu-button:hover {
    border: 1px solid var(--background-color);
    background-color: var(--primary-color);
}

.menu .menu-button:hover .menu-link {
    color: var(--background-color);
}

.menu .menu-button:hover .menu-link .icon svg {
    left: -4px;
    rotate: 45deg;
    fill: var(--background-color);
}

footer {
    height: 312px;
    background-color: var(--primary-color);
    padding-bottom: env(safe-area-inset-bottom, 0);
    box-sizing: content-box;
}

footer .container-xxl {
    padding-left: 2.5vw;
    padding-right: 2.5vw;
}

footer .title {
    font-family: var(--basic-font-family);
    font-weight: 400;
    font-size: var(--font-size-2);
    line-height: 1;
    letter-spacing: 0px;
}

footer .title .focus-title {
    font-family: var(--focus-font-family);
    font-weight: 400;
    font-style: italic;
    font-size: var(--font-size-2);
    line-height: 1;
    letter-spacing: 0px;
}

footer .subtitle {
    font-family: var(--basic-font-family);
    font-weight: 200;
    font-size: var(--font-size-1);
    line-height: 2;
    letter-spacing: 0px;
}

footer .btn-custom {
    color: var(--primary-color);
    background-color: var(--alt-text-color);
}

footer .btn-custom:hover {
    color: var(--primary-color);
    background-color: var(--alt-text-color);
}

footer .btn-custom:active {
    color: var(--primary-color) !important;
    background-color: var(--alt-text-color) !important;
}

footer .btn-custom svg {
    fill: var(--primary-color);
}

.seal {
    width: 166px;
    height: 166px;
}

.seal svg {
    width: 100%;
    height: 100%;
    display: block;
}

.seal text {
    font-family: var(--basic-font-family);
    font-weight: 400;
    font-size: 9.2px;
    fill: #1A1A1A;
    /* letter-spacing: 0px; */
}

#smooth-wrapper,
#smooth-content {
    position: relative;
    z-index: 1;
}

section {
    min-height: calc(100vh + 30px);
}

section .container-xxl {
    position: relative;
    width: 100%;
    height: 100%;
    padding-left: 2.5vw;
    padding-right: 2.5vw;
}

/* section .container-xxl * {
    position: relative;
} */

section .title {
    font-family: var(--basic-font-family);
    font-weight: 400;
    font-size: var(--font-size-5);
    line-height: 1;
    letter-spacing: 0px;
}

section .title .focus-title {
    font-family: var(--focus-font-family);
    font-weight: 400;
    font-style: italic;
    font-size: var(--font-size-5);
    line-height: 1;
    letter-spacing: 0px;
}

section .subtitle {
    font-family: var(--basic-font-family);
    font-weight: 200;
    font-size: var(--font-size-2);
    line-height: 1.5;
    letter-spacing: 0px;
}

#banner {
    color: var(--default-text-color);
    height: calc(100vh + 30px);
}

#banner .title,
#banner .subtitle {
    text-align: start;
}

#nuvvo-gray {
    width: 90%;
    max-width: 1540px;
    position: absolute;
    bottom: -15px;
    z-index: -1;
}

#banner .stars {
    position: absolute;
    top: 0;
    right: -100px;
    display: flex;
    flex-direction: column;
    align-items: end;
    width: 100%;
}

#banner .gray-stroke-star {
    width: 20%;
}

#banner .yellow-stroke-star {
    margin-top: -23.74px;
    margin-right: 20%;
    width: 10%;
}

#banner .yellow-star {
    margin-top: 50px;
    margin-right: 5%;
    width: 10%;
}

#aboutus {
    background-color: #FFF;
    z-index: 1;
    min-height: fit-content;
}

#aboutus .container-xxl {
    padding-top: 100px;
}

#aboutus .container-xxl .title {
    margin-bottom: 100px;
}

#aboutus #logo-circle {
    height: 70px;
}

#aboutus .col-md-6 .the-nuvvo {
    position: relative;
    font-weight: 500;
    padding: 70px 70px 70px 0;
}

#aboutus .col-md-6 .the-nuvvo .background {
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background-color: #F5F5F5;
    border-radius: 0 200px 200px 0;
    z-index: 2;
}

#aboutus .col-md-6 .the-nuvvo p {
    position: relative;
    z-index: 3;
}

#aboutus .the-nuvvo {
    padding: 70px 0 0 70px;
    color: var(--alt-text-color);
    font-family: var(--basic-font-family);
    font-weight: 400;
    font-size: var(--font-size-2);
    line-height: 1.5;
    letter-spacing: 0px;
}

#aboutus .the {
    font-family: var(--basic-font-family);
    font-weight: 600;
    font-size: var(--font-size-1);
    line-height: 1.5;
    letter-spacing: 0px;
    margin-bottom: 57px;
}

#aboutus .the .nuvvo {
    color: var(--primary-color);
}

#projects {
    background: radial-gradient(50% 50% at 50% 50%, #1D5C66 0%, #0E5460 39.9%, #17353A 100%);
    color: var(--default-text-color);
    height: fit-content;
}

#projects .container-xxl {
    padding-top: 100px;
    padding-bottom: 100px;
}

#projects .container-xxl .title {
    margin-bottom: 70px;
}

#projects .card {
    width: clamp(536px, 30%, 30%);
    aspect-ratio: 536 / 496;
    margin-top: 1.5%;
    margin-bottom: 1.5%;
    padding: 0;
    border: 0;
    border-radius: 20px;
}

#projects .card>div {
    position: absolute;
}

#projects .card .image img {
    width: 100%;
}

#projects .card .hover {
    opacity: 0;
    background: linear-gradient(180deg, #1A1A1A 0%, rgba(0, 0, 0, 0.5) 48.73%);
    height: 100%;
    width: 100%;
    border-radius: 20px;
    padding: 42px 49px 42px 42px;
    transition: all .5s;
}

#projects .card .hover img {
    width: 100%;
}

#projects .card .hover p {
    font-family: var(--basic-font-family);
    font-weight: 300;
    font-size: var(--font-size--1);
    line-height: 1.5;
    letter-spacing: 0.25px;
    color: var(--default-text-color);
}

#projects .card:hover .hover {
    opacity: 1;
}

.logo-progress {
    position: absolute;
    z-index: 2;
    margin-left: -29.65px;
}

.logo-progress-base,
.logo-progress-fill-img {
    display: block;
    height: 190px;
    width: auto;
}

.logo-progress-base {
    position: relative;
    z-index: 1;
}

.logo-progress-fill-mask {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 100%;
    overflow: hidden;
    z-index: 2;
    width: 100%;
    will-change: height;
}

.logo-progress-fill-img {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 190px;
    width: auto;
    max-width: none;
}

#whyus .col-md {
    position: relative;
    padding-bottom: 45px;
    color: var(--default-text-color);
    z-index: 3;
}

#whyus {
    font-family: var(--basic-font-family);
    font-weight: 400;
    font-size: var(--font-size-1);
    line-height: 1;
    letter-spacing: 0.1px;
}

#howworks {
    background-color: var(--default-text-color);
}

#howworks img {
    height: 190px;
    transform: translateX(-29.65px);
}

#howworks .row {
    display: grid;
    justify-items: center;
}

#howworks .row.progress-step {
    margin-top: 17px;
}

#howworks .row.progress-desc {
    margin-top: 16px;
}

#howworks .text-progress-step {
    font-family: var(--system-font-family);
    color: var(--place-holder-color);
    font-weight: 400;
    font-size: var(--font-size--1);
    line-height: 1.5;
    letter-spacing: 0.15px;
    opacity: 0;
}

#howworks .text-progress-title {
    font-family: var(--focus-font-family);
    color: var(--background-color);
    font-style: italic;
    font-weight: 400;
    font-size: var(--font-size-4);
    line-height: 1.7;
    letter-spacing: 0px;
    opacity: 0;
}

#howworks .text-progress-desc {
    font-family: var(--basic-font-family);
    color: var(--background-color);
    font-weight: 400;
    font-size: var(--font-size--1);
    line-height: 1.5;
    letter-spacing: 0.1px;
    text-align: start;
    width: 60%;
    opacity: 0;
}

#howworks .text-progress-step.active,
#howworks .text-progress-title.active,
#howworks .text-progress-desc.active {
    opacity: 1;
}

#howworks .text-progress-desc.active {
    margin-top: -64px;
}

#howworks .text-progress-step,
#howworks .text-progress-title,
#howworks .text-progress-desc {
    grid-area: 1 / 1;
}

#howworks .limit-progress img {
    opacity: 0;
}

#services {
    min-height: 120px !important;
    height: 120px !important;
    mask-image: linear-gradient(to right,
            transparent,
            var(--background-color) 10%,
            var(--background-color) 90%,
            transparent);
}

#services .animate-services {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 50px;
    height: 100%;
}

#services .animate-services .text-odd,
#services .animate-services .text-even {
    font-family: var(--basic-font-family);
    font-weight: 800;
    font-size: var(--font-size-3);
    line-height: 3;
    letter-spacing: 0px;
    white-space: nowrap;
}

#services .animate-services .text-odd {
    color: var(--background-color);
    text-shadow:
        -1px 0 0 var(--primary-color),
        1px 0 0 var(--primary-color),
        0 -1px 0 var(--primary-color),
        0 1px 0 var(--primary-color),
        -1px -1px 0 var(--primary-color),
        1px -1px 0 var(--primary-color),
        -1px 1px 0 var(--primary-color),
        1px 1px 0 var(--primary-color);
}

#services .animate-services .text-even {
    color: var(--primary-color);
    text-shadow: none;
}

#services .animate-services img {
    height: 40px;
}

#contact {
    padding-top: 166px;
    padding-bottom: 70px;
    color: var(--default-text-color);
}

#contact .text {
    margin-top: 140px;
    margin-bottom: 77px;
    text-align: center;
    font-family: var(--basic-font-family);
    font-weight: 400;
    font-size: var(--font-size-2);
    line-height: 1;
    letter-spacing: 0.1px;
}

#contact .subtext {
    font-family: var(--basic-font-family);
    font-weight: 400;
    font-size: var(--font-size-0);
    line-height: 1;
    letter-spacing: 0.1px;

}

#contact .tags {
    display: inline-flex;
    align-items: stretch;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

#contact .tags .tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: calc(25% - 80px);
    font-family: var(--basic-font-family);
    font-weight: 400;
    font-size: var(--font-size--1);
    line-height: 1.5;
    letter-spacing: 0.1px;
    text-align: center;
    border-radius: 8px;
    border: 1px solid #FFFFFF;
    padding: 12px;
    transition: all .2s;
    cursor: pointer;
}

#contact .tags .tag:hover {
    transform: scale(1.1) !important;
}

#contact .tags .tag.active {
    background-color: var(--primary-color);
    color: var(--background-color);
    border: 1px solid var(--background-color);
}

#contact-send {
    background-color: var(--default-text-color);
    padding-top: 77px;
}

#contact-send .contact-form .row {
    margin-bottom: 40px;
}

#contact-send .contact-form .form-group label {
    color: #808080;
}

#contact-send .contact-form .form-group {
    font-family: var(--basic-font-family);
    font-weight: 500;
    font-size: var(--font-size-1);
    line-height: 1.25;
    letter-spacing: -0.43px;
}

#contact-send .contact-form input,
#contact-send .contact-form textarea {
    color: var(--background-color);
    caret-color: var(--primary-color);
}

#contact-send .contact-form textarea {
    line-height: 1;
}

#contact-send .contact-form .btn-custom {
    color: var(--primary-color);
    background-color: var(--background-color);
}

#contact-send .contact-form .btn-custom:hover {
    color: var(--primary-color);
    background-color: var(--background-color);
}

#contact-send .contact-form .btn-custom:active {
    color: var(--primary-color) !important;
    background-color: var(--background-color) !important;
}

#contact-send .contact-form .btn-custom svg {
    fill: var(--primary-color);
}

#contact-send .text {
    margin-top: 10px;
    margin-bottom: 50px;
    font-family: var(--basic-font-family);
    font-weight: 400;
    font-size: var(--font-size--1);
    line-height: 2;
    letter-spacing: 0.15px;
    text-align: center;
}
