@font-face {
    font-family: myfont;
    src: url(/static/BigShouldersDisplay-Regular.ttf);
}

@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@100..900&display=swap');

@font-face {
    font-family: playfair;
    src: url(/PlayfairDisplay-VariableFont_wght.ttf);
}

@font-face {
    font-family: inter;
    src: url(/Inter-VariableFont_opsz\,wght.ttf);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #fff;
    font-family: inter;
    scroll-behavior: smooth;
    color: #261B14;
}

.vertical {
    font-size: 90px;
    font-weight: 100;
    opacity: .5;
}

hr {
    width: 100px;
    color: #261B14;
    margin: 10px 0;
}


/* HEADER  */

header {
    width: 100%;
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 100px;
    z-index: 100000;
    background-color: rgb(255, 255, 255);
    box-shadow: 3px 3px 5px rgba(127, 95, 0, 0.3);
}

.logo {
    position: relative;
    transition: .6s ease-in-out;
    z-index: 100000000;
}

header .logo img {
    height: 60px;
    width: 100%;
}

.nav-links {
    list-style: none;
    display: flex;
}


.nav-links li {
    padding: 0 15px;
    opacity: 1;
    transform: translateX(0);
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}


.nav-links a {
    text-decoration: none;
    font-family: "Big Shoulders Display", serif;
    position: relative;
    transition: 0.6s ease-in-out;
    color: #261B14;
    font-size: 1.0195rem;
    letter-spacing: 1px;
}

.nav-links li a::before {
    content: '';
    position: absolute;
    background: #261B14;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 0;
    transition: 0.3s ease;
}

.nav-links li a:hover::before {
    width: 50%;
}

.btn {
    position: relative;
    background: none;
    /* margin-left: 50px; */
    padding: 10px 40px;
    border: 2px solid #261B14;
    border-radius: 50px;
    text-decoration: none;
}

.btn:hover {
    color: #fff;
    background: #261B14;
    transition: .5s ease-in-out;
}

/* Burger Menu */

.burger {
    display: none;
    cursor: pointer;
    z-index: 100000000;
}

.burger div {
    width: 25px;
    height: 3px;
    background: #261B14;
    margin: 5px;
    border-radius: 50px;
    transition: 0.3s;
}

/* Responsive */


@media screen and (max-width: 900px) {
    .nav-links {
        position: absolute;
        right: 0;
        width: 100%;
        height: 100vh;
        gap: 25px;
        padding: 20px 30px;
        background: #ffffff;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        display: none;
        overflow: hidden;
        transition: 0.5s ease-in-out;
        z-index: 10000000;
    }

    .nav-links li {
        opacity: 0;
        transform: translateX(-100%);
        transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
    }

    .btn {
        margin-left: 0;
        margin-top: 50px;
    }

    .burger {
        display: block;
    }

    .nav-active {
        display: flex !important;
    }

    .nav-active li {
        opacity: 1;
        transform: translateX(0);
    }

    /* Adding Delay to each menu item */

    .nav-active li:nth-child(1) {
        transition-delay: 0.2s;
    }

    .nav-active li:nth-child(2) {
        transition-delay: 0.3s;
    }

    .nav-active li:nth-child(3) {
        transition-delay: 0.5s;
    }

    .nav-active li:nth-child(4) {
        transition-delay: 0.7s;
    }


    /* Burger Animation */
    .toggle .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .toggle .line2 {
        opacity: 0;
    }

    .toggle .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}



/* HERO */

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    padding: 50px 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    background-color: #0c0f12;
}

.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #0c0f12, #050a07d1);
    mix-blend-mode: multiply;
    opacity: .95;
    z-index: 1;
    overflow: hidden;
}

.container {
    margin-top: 100px;
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
}

.container h2 {
    font-family: playfair;
    font-weight: 700;
    color: #f9faff;
    font-size: 50px;
    text-align: center;
    z-index: 10;
}

.hero .container p {
    /* font-family: myfont; */
    font-family: "Big Shoulders Display", serif;
    /* font-weight: 200; */
    text-transform: capitalize;
    letter-spacing: 2px;
    font-size: 21px;
    text-align: left;
    color: #fff;
    z-index: 10;
}

.hero .container a {
    /* font-family: myfont; */
    font-family: "Big Shoulders Display", serif;
    display: inline-block;
    text-decoration: none;
    text-transform: capitalize;
    background: none;
    color: #f8fff8;
    padding: 10px 40px;
    letter-spacing: 1px;
    user-select: none;
    margin-top: 30px;
    border: 2px solid #efffef;
    border-radius: 50px;
    z-index: 10;
}

.hero .container a:hover {
    color: #182118;
    background-color: #ffffff;
    transition: 0.5s ease;
}

.hero img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    object-fit: cover;
    z-index: -1;
}

.hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    object-fit: cover;
    z-index: -1;
}


/* WELCOME SECTION EDITING */

.row {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
    overflow-x: hidden;
    padding: 100px;
}

.row .imgWrapper {
    overflow: hidden;
    border-radius: .2rem;
}

.row .imgWrapper img {
    width: 100%;
    height: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    transition: 0.3s ease-in-out;
    border-radius: .1rem;
}

.row .imgWrapper:hover img {
    transform: scale(1.01);
}

.row .contentWrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

span.textWrapper {
    /* font-family: myfont; */
    font-family: "Big Shoulders Display", serif;
    display: block;
    font-size: 21px;
    text-transform: capitalize;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: #261B14;
}

span.textWrapper span {
    display: inline-block;
    background: #261B14;
    width: 50px;
    height: 3px;
}

.row .contentWrapper h2 {
    font-family: playfair;
    font-size: 30px;
    font-weight: 650;
    color: #261B14;
    /* color: #795238; */
    padding-bottom: 20px;
}

.row .contentWrapper p {
    font-size: 1rem;
    line-height: 25px;
    padding-bottom: 25px;
    font-weight: 300;
    letter-spacing: .5px;
    color: #261B14;
}

.row .content p {
    display: block;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    /* margin-bottom: 10px; */
}

.row .content p span {
    display: inline-block;
    background: #261B14;
    width: 5px;
    height: 2px;
    margin-left: 20px;
}

.row .content ul {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
    padding-left: 30px;
}

.row .contentWrapper a {
    /* font-family: myfont; */
    font-family: "Big Shoulders Display", serif;
    display: inline-block;
    text-decoration: none;
    text-transform: capitalize;
    background: none;
    color: #261B14;
    padding: 10px 40px;
    letter-spacing: 1px;
    user-select: none;
    border: 2px solid #261B14;
    border-radius: 50px;
}

.row .contentWrapper a:hover {
    color: #fff;
    background-color: #261B14;
    transition: 0.3s ease;
}




/* OUR WORK SECTION EDITING */

.work {
    display: flex;
    height: 80vh;
}

.work .infowrapper {
    flex: 1;
    background-color: #190e06;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 75px 100px;
    color: #fff;
}


.infowrapper span.textWrapper {
    /* font-family: myfont; */
    font-family: "Big Shoulders Display", serif;
    display: block;
    font-size: 21px;
    text-transform: capitalize;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: #fff;
}

.infowrapper span.textWrapper span {
    display: inline-block;
    background: #fff;
    width: 50px;
    height: 3px;
}

.work .infowrapper h2 {
    font-family: playfair;
    padding-bottom: 20px;
    font-size: 30px;
}

.work .infowrapper p {
    display: block;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    line-height: 25px;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: .5px;
}

.work .infowrapper p span {
    display: inline-block;
    background: #fff;
    width: 10px;
    height: 2px;
    margin-left: 20px;
}

.work .infowrapper .button {
    margin-top: 30px;
    /* font-family: myfont; */
    font-family: "Big Shoulders Display", serif;
    display: inline-block;
    padding: 10px 40px;
    user-select: none;
    border-radius: 50px;
    border: 2px solid #fff;
}

.work .infowrapper .button a {
    text-decoration: none;
    color: #fff;
    text-transform: capitalize;
    letter-spacing: 1px;
}

.work .imageWrapper {
    flex: 1;
    background: url("/images/Loma/t3.jpg") no-repeat center center;
    background-size: cover;
    transition: 0.3s ease;
}

.work .imageWrap {
    flex: 1;
    background: url("/images/stack.jpg") no-repeat center center;
    background-size: cover;
    transition: 0.3s ease;
}


/* QUALITY EDITING */

.assurance {
    width: 100%;
    padding: 50px 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.assurance h2 {
    text-align: center;
    font-family: playfair;
    padding-bottom: 30px;
    font-size: 30px;
}

.assurance p {
    /* max-width: 1366px; */
    text-align: center;
    font-size: 1rem;
    line-height: 25px;
    font-weight: 300;
    padding-bottom: 35px;
    letter-spacing: .5px;
    color: #261f1e;
}

.assurance a {
    /* font-family: myfont; */
    font-family: "Big Shoulders Display", serif;
    display: inline-block;
    text-decoration: none;
    text-transform: capitalize;
    color: #261f1e;
    padding: 10px 40px;
    letter-spacing: 1px;
    user-select: none;
    border: 2px solid #261f1e;
    border-radius: 50px;
    background: none;
}

.assurance a:hover {
    color: #fff;
    background-color: #261f1e;
    transition: 0.5s ease-in-out;
}



/* CLIENTS SECTION */


@keyframes slide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

.clients {
    position: relative;
    overflow-x: scroll;
    padding: 60px 100px;
    white-space: nowrap;
}

/* .clients::before,
.clients::after {
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    content: "";
    z-index: 2;
}

.clients::before {
    left: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
}

.clients::after {
    right: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
} */

.clients:hover .logos-slide {
    animation-play-state: paused;
}

.logos-slide {
    /* display: inline-block; */
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 50px;
    /* animation: 30s slide infinite linear; */
}

.clients .logos-slide img {
    height: 75px;
    /* margin: 0 40px; */
}

@media screen and (max-width: 768px) {

    header {
        padding: 35px;
    }

    .row {
        display: flex;
        flex-direction: column;
        padding: 35px 20px;
        gap: 20px;
    }

    .work {
        display: flex;
        flex-direction: column;
        height: 100vh;
    }

    .work .infowrapper {
        padding: 50px 35px;
    }


    .assurance {
        padding: 80px 20px;
    }

    .clients {
        padding: 30px;
    }

    .clients .logos-slide img {
        height: 55px;
    }

}


/* FOOTER SECTION */

footer {
    position: relative;
    width: 100%;
    height: 50vh;
    padding: 50px 100px 0px 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
    isolation: isolate;
    background-color: #261b14;
    color: #fff;
}

footer::before {
    content: '';
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #0c0f12, #13241bd1);
    mix-blend-mode: multiply;
    opacity: .98;
    z-index: 1;
    overflow: hidden;
}

footer img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    object-fit: cover;
    z-index: -1;
}

footer .wrapper {
    width: 100%;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 50px;
    z-index: 10;
}

footer .wrapper .brief,
.info,
.links {
    position: relative;
    display: flex;
    width: 30%;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 20px;
}

footer .hori{
    display: none;
}

footer .wrapper h2 {
    /* font-family: myfont; */
    font-family: "Big Shoulders Display", serif;
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 2px;
}

footer .info .details {
    position: relative;
}

footer .info .details li {
    display: flex;
    margin-bottom: 1rem;
}

footer .info .details li span:nth-child(1) {
    color: silver;
    font-size: 20px;
    margin-right: 20px;
}

footer .info .details li span {
    color: silver;
}

footer .info .details li a {
    color: silver;
    text-decoration: none;
}

footer .info .details li a:hover {
    color: #fff;
}

.links ul li {
    text-decoration: none;
    padding-bottom: 10px;
    list-style: none;
}

.links ul li a {
    text-decoration: none;
    color: #fff;
}

.copyright {
    z-index: 100;
    color: silver;
}

.copyright a {
    text-decoration: none;
    color: #fff;
}


/* ************************************************************************************************************************** */


/* RESPONSIVENESS */


/* ************************************************************************************************************************** */

@media screen and (max-width: 1024px) {
    footer {
        padding: 50px 30px;
        height: 100%;
    }

    footer .wrapper {
        flex-direction: column;
        gap: 30px;
    }

    footer .wrapper .brief,
    .info,
    .links {
        width: 100%;
    }

    footer .wrapper .vertical{
        display: none;
    }

    footer .hori{
        display: block;
    }

    footer .copyright{
        text-align: center;
        margin-top: 10px;
    }
    
}