@font-face {
    font-family: 'Satoshi-Regular';
    src: url('../assets/fonts/Satoshi-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Satoshi-Medium';
    src: url('../assets/fonts/Satoshi-Medium.woff') format('woff');
    font-weight: 500;
    font-display: swap;
    font-style: normal;
}

:root {
    --background: #F6F6F6;
    --primary: #141313;
    --white: #FFFFFF;
    --text-light: #454647;
    --loader-bg: #D9D9D9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    user-select: none;
}


body {
    background-color: var(--background);
}

#hero-area {
    width: 100%;
    height: 100svh;
}

.logo-header {
    position: absolute;
    top: calc(50% - 65px);
    left: 50%;
    transform: translate(-50%, -50%);
}

.loader-wrapper {
    position: fixed;
    width: 10.4%;
    height: 5px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.loader-background {
    width: 0%;
    height: 100%;
    background-color: var(--loader-bg);
    position: absolute;
}

.loader-foreground {
    width: 0%;
    height: 100%;
    background-color: var(--primary);
    position: relative;
    z-index: 1;
}


/* Navbar */

.navbar {
    width: 100%;
    position: absolute;
    padding-left: 40px;
    padding-right: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    top: 45px;
}

.navbar > p{
    font-family: Satoshi-Medium;
    font-size: 18px;
    color: var(--primary);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    opacity: 0;
    transform: translateY(-100%);
    position: relative;
}

/* Hero Content */


.hero-content-container {
    width: 68%;
    height: 100%;
    justify-self: center;
    align-content: center;
}

.intro-container {
    margin-top: 60px;
}

.intro-container > h1 {
    font-family: Satoshi-Regular;
    font-weight: 400;
    font-size: 128px;
    color: var(--primary);
    line-height: 140%;
    letter-spacing: -2.5%;
    position: relative;

}


.intro-container > h1 > span {
    display: inline-block;
    filter: blur(20px);
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    transform: translateY(50%);
    opacity: 0;
}

.main-hero-para {
    margin-top: 45px;
}

.main-hero-para > p {
    font-family: Satoshi-Regular;
    font-weight: 400;
    font-size: 22px;
    color: var(--text-light);
    line-height: 140.8%;
    letter-spacing: -0.44px;
    filter: blur(20px);
}

.main-hero-para > p > span {
    display: inline-block;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    opacity: 0;
}

#cta-main {
    width: 320px;
    height: 90px;
    background-color: var(--primary);
    margin-top: 85px;

    display: flex;
    justify-content: center;
    align-items: center;
    


}

.cta-container {
    width: 320px;
    height: 90px;
    margin-top: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
    position: relative;
}

.white-strip {
    width: 100%;
    height: 100%;
    background-color: var(--white);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}

.black-strip {
    width: 100%;
    height: 100%;
    background-color: var(--primary);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}

.cta-container > p {
    font-family: Satoshi-Medium;
    font-size: 18px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.36px;
    color: var(--white);
    position: relative;
    z-index: 3;
}

.cta-container > p > span {
    display: inline-block;
    filter: blur(20px);
    transform: translateY(50%);
    opacity: 0;
}


/* Case Studies Area */

#case-area {
   width: 100%;
   height: auto;
   background-color: wheat;
   /* margin-top: 150px; */
}

.cs-intro-container {
    width: 51%;
    height: auto;
    margin-left: 16%;
}

.cs-intro-container > h1 {
    font-family: Satoshi-Regular;
    font-size: 64px;
    line-height: -1%;
    font-weight: 400;
    color: var(--primary);
}

.cs-intro-container > h1 > span {
    display: inline-block;
    filter: blur(20px);
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    transform: translateY(50%);
    opacity: 1;
}

.cs-intro-para {
    margin-top: 45px;
}

.cs-intro-para > p {
    font-family: Satoshi-Regular;
    font-weight: 400;
    font-size: 22px;
    color: var(--text-light);
    line-height: 140.8%;
    letter-spacing: -0.44px;
}

.cs-details-container {
    height: 750px;
    background-color: rebeccapurple;
    margin-left: 3.3%;
    margin-right: 3.3%;
    margin-top: 75px;
    display: flex;
}

.left-cs-panel {
    width: 50%;
    height: 100%;
    background-color: gold;
}

.right-cs-panel {
    width: 50%;
    height: 100%;
    background-color: lightcoral;
}