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

:root {
    --lrs-green-0: 199, 255, 215;
    --lrs-green-1: 76, 222, 150;
    --lrs-green-2: 42, 202, 124;
    --lrs-green-3: 14, 151, 84;
    --lrs-green-4: 20, 112, 67;
    --lrs-greenBlack: 18, 26, 22;
    /**/
    --lrs-monochrome-1: 242, 242, 242;
    --lrs-monochrome-2: 204, 204, 204;
    --lrs-monochrome-3: 165, 165, 165;
    --lrs-monochrome-4: 127, 127, 127;
    --lrs-monochrome-5: 89, 89, 89;
    --lrs-paper: 244, 241, 233;
    /**/
    --lrs-white: var(--lrs-monochrome-1);
    --lrs-black: 37, 35, 35;
    /* Default Font */
    font-family: Work Sans;
    font-weight: 400;
    color: rgb(var(--lrs-black))
}

html {
    scroll-behavior: smooth;
}

body {
    width: 100%;
    height: fit-content;
    min-height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    background: rgb(var(--lrs-green-0));
    background: linear-gradient(115deg, rgba(var(--lrs-monochrome-2), 1) -100%, rgba(var(--lrs-monochrome-1), 1) 33%, rgba(var(--lrs-monochrome-1), 1) 66%, rgba(var(--lrs-monochrome-3), 1) 200%);
}


/* -- article -- */

article {
    flex-grow: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
}

article h1 {
    font-weight: 600;
    font-family: Oswald;
    font-size: 3rem;
    text-transform: uppercase;
}

/* -- - -- -- */

.imageBackground {
    width: 100%;
    min-height: 350px;
    height: fit-content;
    background: rgba(var(--lrs-black), 1);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 96px 32px 24px;
    gap: 24px;
    position: relative;
    z-index: 1;
    background-image: url(../Media/index_images/cover2.JPEG);
    background-size: 100% cover;
    background-position: center right;
    background-repeat: no-repeat;
}

.imageBackground .gradient {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(270deg, transparent 0%, transparent 30%, black 100%);
}

.imageBackground .center {
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: stretch;
    width: fit-content;
    max-width: 1000px;
    gap: 32px;
    padding-bottom: 32px;
}

.imageBackground .center .left {

    min-width: min-content;
    flex-shrink: 10;
}

.imageBackground .center .left .heading {
    --fontScaleModifier: 2;
    font-size: calc((var(--fontScaleModifier) * 1.618) * 1rem);
    font-family: Oswald;
    font-weight: 900;
    text-transform: uppercase;
    text-align: left;
    user-select: none;
    white-space: wrap;
    color: rgb(var(--lrs-green-1));
}

.imageBackground .center .left .text {
    font-size: 1.25rem;
    color: rgb(var(--lrs-monochrome-1));
    min-width: 200px;
}


.imageBackground .center .imageCarousel {
    width: 100%;
    max-width: 800px;
    max-height: 400px;
    flex-grow: 1;
    border: 12px solid rgb(var(--lrs-black), 1);
    background-clip: content-box;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    position: relative;
}

.imageCarouselTrack {
    min-width: 100%;
    min-height: 100%;
    display: flex;
    transition: transform 0.5s ease;
}


.imageCarouselImage {
    min-width: 100%;
    min-height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    max-height: 100%;
}

.imageCarouselImage.one {
    background: red;
}

.imageCarouselImage.two {
    background: green;
}

.imageCarouselImage.three {
    background: blue;
}

.imageCarouselImage.four {
    background: white;
}

.imageCarouselImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.imageCarousel-btn {
    font-family: 'Font Awesome 6 Free';
    font-style: normal;
    font-weight: 900;
    font-display: block;
    color: rgba(255, 255, 255, 0.5);
    position: absolute;
    border: 10px solid transparent;
    width: 32px;
    top: calc(50% - 24px);
    height: 48px;
    background: rgba(var(--lrs-black), 0.5);
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 32px;
    cursor: pointer;
    transition: 0.2s;
}

.imageCarousel-btn:hover,
.imageCarousel-btn:active {
    color: rgba(255, 255, 255, 1);
}

.imageCarousel-btn.prev {
    left: 0;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}


.imageCarousel-btn.next {
    right: 0;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}

.imageCarousel-dots {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 8px 4px;
    display: flex;
    gap: 8px;
    background: rgba(var(--lrs-black), 0.5);
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.imageCarousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.imageCarousel-dot:not(.active):hover {
    background: rgba(255, 255, 255, 0.75);
}

.imageCarousel-dot.active {
    background: rgba(255, 255, 255, 1);
}

/* black bar*/

.blackBar {
    width: 100%;
    background: rgba(var(--lrs-black), 1);
    position: relative;
    padding: 24px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    box-shadow: 0px 0px 20px 0px black inset;
}

.marquee {
    position: absolute;
    top: 0;
    width: 200%;
    height: 100%;
    overflow: hidden;
    left: 0;
    will-change: transform;
    font-weight: 700;
    font-size: 20px;
    font-family: "Work Sans";
    display: flex;
    gap: 24px;
    justify-content: space-around;
    align-items: center;
    animation: marquee 60s linear infinite;
    user-select: none;
}

.marquee .item {
    transition: 0.25s;
    color: rgba(var(--lrs-monochrome-1), 0.75);
    will-change: transform;
    text-transform: uppercase;
    white-space: nowrap;
}

.marquee .item i {
    color: rgba(var(--lrs-monochrome-1), 0.25);
    transition: 0.2s;
}

.marquee .item:not(:has(i)):hover {
    color: rgba(var(--lrs-monochrome-1), 1);
    transform: scale(1.05);
}

.marquee .item:hover i {
    color: rgba(var(--lrs-monochrome-1), 0.5);
}

@keyframes marquee {
    from {
        transform: translateX(0%);
    }

    to {
        transform: translateX(-50%);
    }
}




/* workShowcase*/

.workShowcase {
    padding: 24px 32px 60px;
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 8px;
}

.workShowcase .heading {
    --fontScaleModifier: 1.5;
    font-size: calc((var(--fontScaleModifier) * 1.618) * 1rem);
    font-family: Oswald;
    text-transform: uppercase;
    font-weight: 900;
    user-select: none;
}


.workShowcase .triShowcase {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
    gap: 12px;
    min-height: 200px;
    overflow-x: scroll;
    padding: 0px 0px;
    position: relative;
}

.workShowcase .triShowcase .image {
    border-radius: 8px;
    background: rgba(var(--lrs-black), 0.1);
    flex-basis: 30%;
    min-width: 300px;
    flex-grow: 1;
    background-size: cover;
    background-position: center center;
}


.workShowcase .triShowcase::-webkit-scrollbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    height: 4px;
}

.workShowcase .triShowcase::-webkit-scrollbar-thumb {
    background: rgba(var(--lrs-black), 0.5);
    border-radius: 2px;
}

.workShowcase .viewMore {
    width: 100%;
    height: 400px;
    background: rgba(var(--lrs-black), 0.1);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    position: relative;
}

.workShowcase .viewMore .bgImage {
    position: absolute;
    z-index: -1;
    width: 100%;
    border-radius: 8px;
    height: 100%;
    left: 0;
    top: 0;
    background-size: cover;
    background-position: center center;
    transition: 0.25s;
}

.workShowcase .viewMore:hover .bgImage {
    filter: brightness(0.5)
}

.workShowcase .viewMore .text {
    font-size: 1rem;
    font-family: Work Sans;
    font-weight: 600;
    border-radius: 2px;
    color: rgba(var(--lrs-monochrome-1), 1);
    background: rgba(var(--lrs-black), 1);
    cursor: pointer;
    transition: 0.25s;
    user-select: none;
    opacity: 0;
    padding: 8px 12px;
    border: 2px solid rgba(var(--lrs-monochrome-5), 1);
    box-shadow: 0px 4px 20px 0px black;
}

.workShowcase .viewMore:hover .text {
    opacity: 1;
}

.workShowcase .viewMore .text:hover {
    border: 2px solid rgba(var(--lrs-green-1), 1);
}

.workShowcase .viewMore .text:active {
    border: 2px solid rgba(var(--lrs-green-3), 1);
    transform: scale(0.95);
}



@media only screen and (max-width:700px) {
    .imageBackground .text {
        width: 100%;
        background: rgba(var(--lrs-black), 0.75);
        padding: 8px 12px;
        border-radius: 2px;
    }

    .imageBackground .center {
        flex-wrap: wrap;
    }
}

@media (pointer: coarse) {


    .workShowcase .viewMore .bgImage {
        filter: brightness(0.5)
    }

    .workShowcase .viewMore .text {
        opacity: 1;
    }
}


/* whyus */

.whyUs {
    padding: 60px 0 96px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 36px;
    background: linear-gradient(165deg, rgba(var(--lrs-green-1), 0.5), rgba(var(--lrs-green-3), 0.5));
    box-shadow: 0px 0px 20px 0px rgba(var(--lrs-black), 0.5) inset;
}

.whyUs .heading {
    --fontScaleModifier: 1.5;
    font-size: calc((var(--fontScaleModifier) * 1.618) * 1rem);
    font-family: Oswald;
    text-transform: uppercase;
    font-weight: 900;
    user-select: none;
    text-align: center;
}

.whyUs .boxFlex {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    gap: 12px;
    flex-wrap: wrap;
}

.whyUs .boxFlex .box {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0px 16px 30px;
    align-items: center;
    background: rgb(var(--lrs-black));
    width: 220px;
    height: 240px;
    border-radius: 8px;
    text-align: center;
    filter: drop-shadow(0px 8px 12px rgba(var(--lrs-black), 0.5));
}

.whyUs .boxFlex .box i {
    color: rgb(var(--lrs-green-0));
    font-size: calc((1.618 * 1.5) * 1.618rem);
    position: relative;
    z-index: 1;
    margin-bottom: 24px;
}

.whyUs .boxFlex .box i::after {
    display: block;
    content: "";
    width: 150%;
    height: 150%;
    border-radius: 100%;
    top: -25%;
    left: -25%;
    z-index: -1;
    position: absolute;
    background: rgb(var(--lrs-green-3));
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.5);
}

.whyUs .boxFlex .box .heading {
    color: rgb(var(--lrs-monochrome-1));
    font-size: 1.618rem;
    font-family: "Oswald";
    user-select: none;
    font-weight: 900;
    margin-bottom: 12px;
    line-height: 1.618rem;
}

.whyUs .boxFlex .box .text {
    color: rgb(var(--lrs-monochrome-2));
    font-size: 1rem;
    font-family: "Work Sans";
}

/* contact form */


.contactForm {
    padding: 60px 0 96px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 36px;
}

.contactForm .heading {
    --fontScaleModifier: 1.5;
    font-size: calc((var(--fontScaleModifier) * 1.618) * 1rem);
    font-family: Oswald;
    text-transform: uppercase;
    font-weight: 900;
    user-select: none;
    text-align: center;
}

.contactForm .formFlex {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    max-width: 800px;
    gap: 12px;
    padding: 0px 24px;
}

.formFlex .smallInputFlex {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    max-width: 100%;
}

.formFlex .smallInputFlex .smallInput {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    flex-grow: 1;
}

.formFlex .largeInput {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    flex-grow: 1;
}

.formFlex .largeInput textarea {
    min-height: 200px;
    resize: vertical
}

.formFlex label,
.formFlex label {
    font-family: "Oswald";
    font-weight: 900;
    text-transform: uppercase;
    font-size: 1rem;
    user-select: none;
}

.formFlex input[type="text"],
.formFlex textarea,
.formFlex input[type="email"] {
    background: rgba(var(--lrs-green-2), 0.125);
    font-family: "Work Sans";
    font-size: 1rem;
    padding: 4px 8px;
    outline: none;
    border: none;
}

.formFlex input[type="submit"] {
    font-size: 1rem;
    font-family: Work Sans;
    font-weight: 600;
    border-radius: 2px;
    color: rgba(var(--lrs-monochrome-1), 1);
    background: rgba(var(--lrs-black), 1);
    cursor: pointer;
    transition: 0.25s;
    user-select: none;
    padding: 8px 12px;
    border: 2px solid rgba(var(--lrs-monochrome-5), 1);
}

.formFlex input[type="submit"]:hover {
    border: 2px solid rgba(var(--lrs-green-1), 1);
}

.formFlex input[type="submit"]:active {
    border: 2px solid rgba(var(--lrs-green-3), 1);
    transform: scale(0.95);
}


/* testimonials */


.testimonials {
    padding: 60px 8px 96px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 36px;
    background: linear-gradient(165deg, rgba(var(--lrs-green-1), 0.5), rgba(var(--lrs-green-3), 0.5));
    box-shadow: 0px 0px 20px 0px rgba(var(--lrs-black), 0.5) inset;
}

.testimonials .heading {
    --fontScaleModifier: 1.5;
    font-size: calc((var(--fontScaleModifier) * 1.618) * 1rem);
    font-family: Oswald;
    text-transform: uppercase;
    font-weight: 900;
    text-align: center;
    user-select: none;
    margin-bottom: 24px;
}

.testimonialFlex {
    width: 100%;
    max-width: 800px;
    display: flex;
    justify-content: center;
    align-items: stretch;
}

.testimonialFlex .testimonial {
    width: 100%;
    height: fit-content;
    background: rgb(var(--lrs-monochrome-1));
    border-radius: 8px;
    box-shadow: 0px 4px 20px 0px rgba(var(--lrs-black), 0.5);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 0px 32px 24px;
    gap: 12px;
    position: relative;
}

.testimonialFlex .testimonial .quote {
    color: rgb(var(--lrs-black));
    font-size: 1.4rem;
    text-align: center;
    font-family: "Work Sans";
    width: 100%;
}

.testimonialFlex .testimonial .quote::before {
    display: inline;
    content: '"';
    color: rgba(var(--lrs-green-4), 1);
    font-size: 1.4rem;
    font-family: "Work Sans";
}

.testimonialFlex .testimonial .quote::after {
    display: inline;
    content: '"';
    color: rgba(var(--lrs-green-4), 1);
    font-size: 1.4rem;
    font-family: "Work Sans";
}

.testimonialFlex .testimonial .name {
    color: rgb(var(--lrs-green-4));
    font-size: 1rem;
    text-align: right;
    font-weight: 600;
    width: 100%;
    font-family: "Work Sans";
}

.testimonialFlex .testimonial .name::before {
    display: inline;
    content: "\2014\00a0";
    color: rgb(var(--lrs-green-4));
    font-size: 1.2rem;
    text-align: right;
    font-weight: 600;
    width: 100%;
    font-family: "Work Sans";
}


.testimonialFlex .testimonial .person {
    font-size: 48px;
    color: rgb(var(--lrs-monochrome-5));
    background: rgb(var(--lrs-black));
    border: 4px solid rgb(var(--lrs-green-4));
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    border-radius: 100%;
    margin-bottom: -50px;
    transform: translateY(-50px);
    transition: 0.25s;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.5);
}

.testimonialFlex .testimonial:hover .person {
    border: 4px solid rgb(var(--lrs-green-3));
}

/* worked with */


.workedWith {
    padding: 60px 8px 96px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 36px;
    background: linear-gradient(165deg, rgba(var(--lrs-green-1), 0.5), rgba(var(--lrs-green-3), 0.5));
    box-shadow: 0px 0px 20px 0px rgba(var(--lrs-black), 0.5) inset;
}

.workedWith .heading {
    --fontScaleModifier: 1.5;
    font-size: calc((var(--fontScaleModifier) * 1.618) * 1rem);
    font-family: Oswald;
    text-transform: uppercase;
    font-weight: 900;
    text-align: center;
    user-select: none;
    margin-bottom: 24px;
}

.workedWithFlex {
    width: 100%;
    max-width: 800px;
    display: flex;
    justify-content: center;
    align-items: stretch;
}


/*See our work*/

.seeOurWork {
    padding: 24px 32px 60px;
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    flex-wrap:wrap;
    gap: 8px;
}

.seeOurWork .heading {
    --fontScaleModifier: 1.5;
    font-size: calc((var(--fontScaleModifier) * 1.618) * 1rem);
    font-family: Oswald;
    text-transform: uppercase;
    font-weight: 900;
    user-select: none;
    text-align:center;
    width:100%;
}

.seeOurWork .workCard {
    background: rgb(var(--lrs-black));
    width: 300px;
    display:flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    border-radius:8px;
    overflow:hidden;
    text-decoration: none;
}
.seeOurWork .workCard img{
    object-fit: cover;
    width:100%;
    height:200px;
}
.seeOurWork .workCard .cardHeading{
    color: rgb(var(--lrs-white));
    font-family: "Work Sans";
    font-size: 1.618rem;
    text-align:left;
    padding: 4px 8px;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
}
.seeOurWork .workCard .info{
    color: rgb(var(--lrs-white));
    font-family: "Work Sans";
    font-size: 1rem;
    text-align:left;
    padding: 4px 8px;
    text-decoration: none;
    flex-grow:1;
}
.seeOurWork .workCard .workCardButton{
    color: rgb(var(--lrs-black));
    font-family: "Work Sans";
    font-size: 1.5rem;
    font-weight: 600;
    text-align:center;
    text-decoration: none;
    background: rgb(var(--lrs-green-3));
    padding: 4px 8px;
    border-radius: 4px;
    margin: 4px 8px 8px;
    display:flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 60%;
    align-self: flex-end;
    cursor: pointer;
    transition: 0.2s;
}
.seeOurWork .workCard .workCardButton:hover{
    background: rgb(var(--lrs-green-1));
}