/* global rules */
:root {
    --black: #000000;
    --white: #ffffff;
    --grey: #dadada;
}
*, *::before, *::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    text-decoration: none;
    border: none;
    outline: none;
    border-radius: 0px;
}
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background-color: rgb(0, 0, 0);
}
::-webkit-scrollbar-thumb {
    background-color: rgb(48, 48, 48);
    border-radius: 5px;
}
html {
    scroll-behavior: smooth;
}

body {
    line-height: 1.5;
    min-height: 100vh;
    width: 100%;
    font-family: "montserrat", "sans-serif";
    color: white;
    background: radial-gradient(circle at 48% 50%, rgba(22, 22, 22, 0.979) , black 60% 100%);
    overflow: hidden;
    position: relative;
}

ul, ol {
    list-style: none;
}

img, video, canvas, svg {
    display: block;
    max-width: 100%;
}

input, button, textarea, select {
    font: inherit;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1;  
    margin: 0;
}
.container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
}
@media (width <= 1366px) {
    .container {
     min-width: 1280px;
    }
}
.tt-c {
    text-transform: capitalize;
}
.tt-u {
    text-transform: uppercase;
} 
/* end of global rules */
span.light1 {
    position: absolute;
    border-radius: 50%;
    background-color: rgb(255, 255, 255);
    animation: animate 5s linear infinite;
    z-index: 5;
    top: -400px;
    right: 50px;
    height: 1000px;
    width: 10px;   
    filter: blur(40px);
    transform: rotate(35deg);
    animation: glowing 15s linear infinite;
}
@keyframes glowing {
    0% {
        opacity: 0.25;
    }
    30% {
        height: 1020px;
        opacity: 1;
    }
        60% {
            height: 980px;
            opacity: 0.75;
        }
    100% {
        opacity: 0.25;
    }
}   
span.light2 {
      position: absolute;
    border-radius: 50%;
    background-color: rgb(255 255 255);
    animation: animate 5s linear infinite;
    z-index: 5;
    top: -400px;
    right: 200px;
    height: 1000px;
    width: 14px;
    filter: blur(40px);
    transform: rotate(40deg);
 animation: glowing2 10s linear infinite;
}
@keyframes glowing2 {
    0% {
        opacity: 0.25;
    }
    30% {
        height: 1020px;
        opacity: 1;
    }
        60% {
            height: 980px;
            opacity: 0.75;
        }
    100% {
        opacity: 0.25;
    }
}  

span.light3 {
        position: absolute;
        border-radius: 50%;
        background-color: rgb(255 255 255);
        animation: animate 5s linear infinite;
        z-index: 5;
        top: -400px;
        right: 350px;
        height: 1000px;
        width: 20px;
        filter: blur(40px);
        transform: rotate(45deg);
        animation: glowing3 12.5s linear infinite;
}
@keyframes glowing3 {
    0% {
        opacity: 0.25;
    }
    30% {
        height: 1020px;
        opacity: 1;
    }
    60% {
        height: 980px;
        opacity: 0.75;
    }
    100% {
        opacity: 0.25;
    }
}  

header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
header .container {
    display: flex;
    align-items: center;
    padding: 20px;
    
}
header .container ul {
    display: flex;
    align-items: center;
    gap: 20px;
}
header .container ul li {
    font-size: 14px;
    font-weight: 300;
    color: var(--grey);
    text-transform: capitalize;
    transition: 0.3s;
    cursor: pointer;
}
header .container ul li:hover {
    color: var(--white);
    font-weight: 400;
}
header .container .logo img {
    width: 150px;
    flex: 1;
}
header .container .holder {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    justify-content: flex-end;
}
header .container > ul {
    flex: 1;
}
header .container .holder a {
    padding: 12px 28px ;
    border-radius: 30px;
    background-color: var(--white);
    font-size: 15px;
    font-weight: 600;
    color: var(--black);
    transition: 0.3s;
}
header .container .holder a:hover {
    background-color: transparent;
    color: var(--white);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.25);
    transform: scale(1.0);
}

/* section */
section {
    position: relative;
    height: calc(100vh - 87.5px);
    display: flex;
    flex-direction: column;
    padding-top: 125px;
        overflow: hidden;
}
section .container {
    padding: 0 20px;
}
section .center {
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    position: relative;
}
@media (width <= 1366px) {
    body {
        min-width: 1366px;
        min-height: 900px;
        max-height: 900px;
        overflow-y: scroll;
    }
    section {
        min-height: 813.5px;
        max-height: 813.5px;
        overflow: hidden;
    }
    .link, .link2 {
        display: none !important;
    }
    .hand {
        height: 760px !important;
        bottom: -120px !important;
    }
    section > img:last-of-type {
        height: 195px !important;
        bottom: 480px !important;
}
}
section .center .leftside {
    width: 32%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 10;
}
section .center .leftside > p:first-of-type {
    font-size: 26px;
    line-height: 1;
}
section .center .leftside > p:last-of-type {
    font-size: 18px;
    line-height: 1.1;
    color: var(--grey);
    font-weight: 300;
    word-spacing: 1px;
}
section .center .leftside > p:last-of-type span {
    color: var(--white);
    font-weight: 400;
}
section .center .leftside a {
    padding: 12px 30px ;
    border-radius: 30px;
    border: 1px solid var(--grey);
    font-size: 15px;
    font-weight: 400;
    color: var(--grey);
    transition: 0.3s;
    width: fit-content;
}
section .center .leftside a:hover {
    background-color: var(--white);
    color: var(--black);
    font-weight: 500;
    box-shadow: 10px -5px 25px -5px rgba(255, 255, 255, 0.25), -10px 5px 25px -5px rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}
section .center .leftside .cards{
    display: flex;
    gap: 20px;
}
section .center .leftside .cards .card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 10px;
    color: var(--black);
    border-radius: 18px;
    background-color: var(--white);
    flex: 1;
    transition: 0.3s;
}
section .center .leftside .cards .card:hover {
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.637);
    transform: translateY(-5px);
}
section .center .leftside .cards .card i {
    font-size: 22px;
}
section .center .leftside .cards .card p {
    font-size: 13px;
    font-weight: 600;
    transform: translateY(6px);
}
section .center .leftside .cards .card span {
    font-size: 24px;
    font-weight: 600;
}
section .center .leftside .cards .card:nth-child(1) .partners {
    display: flex;
    align-items: center;
    gap: 10px;
}
section .center .leftside .cards .card:nth-child(1) .partners img {
    width: 85px;
}
section .center .leftside .cards .card:nth-child(2) {
    background: #dadada15;
    color: var(--grey);
    box-shadow:  inset -10px -10px 20px #dadada09, inset 10px 10px 20px #00000031;
    border-top: 1px solid rgba(235, 235, 235, 0.212);
    border-left: 1px solid rgba(235, 235, 235, 0.212);
    border-right: 1px solid rgba(235, 235, 235, 0.103);
    border-bottom: 1px solid rgba(235, 235, 235, 0.103);
    transition: 0.3s;
}
section .center .leftside .cards .card:nth-child(2) p {
    font-weight: 400;
}
section .center .leftside .cards .card:nth-child(2):hover {
    box-shadow:   inset -10px -10px 20px #dadada09, inset 10px 10px 20px #00000031, 0 0 50px rgba(255, 255, 255, 0.192);
    transform: translateY(-5px);
}

section .center .rightside {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 40%;
    align-items: flex-end;
}
section .center .rightside p:first-of-type {
    font-size: 64px;
    line-height: 1.0;
    text-align: right;
    font-weight: 500;
    z-index: 10;
}
section .center .rightside p:first-of-type span {
    font-size: 16px;
    height: 50px;
    transform: translateY(-16px);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0 22px;
    border-radius: 30px;
    border: 2px solid var(--white);
    margin: 0 3px;
    margin-bottom: -20px;
}
section .center .rightside p:last-of-type {
    font-size: 18px;
    line-height: 1.1;
    color: var(--white);
    font-weight: 300;
    word-spacing: 1px;
    text-align: left;
    
}
section .center .rightside p:last-of-type span {
    color: var(--white);
    font-weight: 500;
    font-size: 18px;
    text-transform: uppercase;
}
img.hand {
    height: 85vh;
    bottom: -15vh;
    left: 50%;
    transform: translateX(-50%) rotate(-25deg);
    position: absolute;
    z-index: 5;
}
section > img:last-of-type {
    height: 22vh;
    bottom: 52vh;
    left: 41%;
    transform: translateX(-50%) rotate(20deg);
    position: absolute;
    z-index: 6;
}
h1 {
    font-size: 13.75rem;
    font-weight: 300;
    color: var(--white);
    position: absolute;
    line-height: 0.8;
    bottom: -2%;
    left: 50%;
    transform: translateX(-50%) ;
    background:linear-gradient(0deg, rgb(29, 29, 29), white);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-text-stroke-color: white;
    -webkit-text-stroke-width: 3px;
    margin: 0;
    font-family: "zen dots", "cursive";
}
.link {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-weight: 500;
    font-size: 14px;
    color: grey;
}
.link2 {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-weight: 500;
    font-size: 14px;
    color: grey;
    text-align: right;
}
.link a, .link2 a {
    color: var(--grey);
    transition: 0.3s;
}
.link a:hover, .link2 a:hover {
    font-weight: 600;
}

