*{
    font-family: Poppins, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
body{
    position: relative;
    background: rgb(215, 239, 255);
    overflow-x: hidden;
    background: url('./assets/calm-bg.jpg') no-repeat center/cover;
    background-attachment: fixed;
}
section{
    overflow: hidden;
}
/* HEADER */
header{
    position: absolute;
    top: 0;
    left: calc(50% - 37.5%);
    background: linear-gradient(to right, rgb(117, 117, 117), rgb(50, 50, 50) 30%);
    background: #cf496242;
    backdrop-filter: blur(10px);
    width: 75%;
    min-width: 275px;
    min-height: 70px;
    padding: 10px 40px;
    margin: 40px auto;
    border-radius: 150px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}
header img{
    width: 5%;
    min-width: 60px;
}
header span a{
    text-decoration: none;
    font-weight: 500;
    color: white;
    margin: 0 20px;
    padding: 10px;
    border-radius: 40px;
}
header span a:hover, header span a:active, header span a:focus{
    background: rgba(255, 255, 255, 0.156);
}
.header-mob{
    position: relative;
    display: none;
}
.header-mob button{
    background: none;
    color: white;
    border: none;
    font-weight: 700;
    font-size: 40px;
    border-radius: 5px;
}
.header-dropdown{
    display: none;
    transform: translateX(-150%);
}
.header-mob ul{
    position: absolute;
    top: 100%;
    background: rgb(39, 39, 39);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    left: -100%;
    border-radius: 20px;
    padding: 5px;
}
.header-mob ul a{
    border-radius: 0;
    border-bottom: 1px solid white;
}
@media all and (max-width:1100px) {
    .header-mob{
        display: block;
    }
    .header-options{
        display: none;
    }
}
/* LANDING */
.landing{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5vw;
    text-align: center;
    padding-top: 190px;
}
.landing h1{
    font-size: calc(50px + 1.5vw);
    line-height: 100%;
}
.landing h1 b{
    color: #f874aa;
}
.landing span{
    text-align: center;
    height: calc(55px + 1.5vw);
    overflow: hidden;
    margin-top: 20px;
    z-index: 5;
}
.landing span h1{
    position: relative;
    margin: 3px 0;
    top: 0;
    animation: slide 6s steps(3) infinite;
}
@keyframes slide {
    100%{
        top: -300%;
    }
}
.landing p{
    font-weight: 500;
    color: #f874aa;
    font-size: 1.2rem;
}
.landing-btns{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 30px auto;
    z-index: 10;
}
.landing-btns a{
    text-decoration: none;
    padding: 15px 20px;
    border-radius: 100px;
    text-align: center;
    margin: 0 20px;
    color: black;
    font-weight: 500;
    font-size: 1.1rem;
    margin: 10px;
    background: #3ecef2;
    background: #cf496242;
    backdrop-filter: blur(10px);
    width: 100%;
}
.landing-btns a:hover, .landing-btns a:focus{
    background: #3ecef2a9;
    background: #f874ab6b;
}
/* VIDEO */
.video{
    width: 100%;
    min-width: 300px;
    height: 60vh;
    margin: 10px auto;
    display: grid;
    place-items: center;
    position: relative;
}
.vid{
    border-radius: 400px;
    display: block;
    position: absolute;
    top: 0;
    left: calc(100%-30vw);
    width: 60vw;
    min-width: 300px;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 3;
    transition: transform 0.25s ease-in-out;
    transform-origin: bottom left;
}
.video:hover .vid{
    transform: scale(0, 0);
}
.video iframe{
    border-radius: 400px;
    display: block;
    position: absolute;
    top: 0;
    left: calc(100%-30vw);
    width: 60vw;
    min-width: 300px;
    height: 100%;
    background: black;
}
/* COMMUNITY */
.community{
    width: 100%;
    display: grid;
    place-items: center;
    margin: 40px auto;
}
.community p{
    width: 75%;
    min-width: 300px;
    text-align: center;
    font-weight: 500;
    margin: 20px;
    font-size: 1.3rem;
}
.community-items{
    min-width: 300px;
    width: 75%;
    display: flex;
    flex-wrap: wrap;
}
.community-span-outer{
    perspective: 1000px;
    border: 2px solid #3ecef2;
}
.community-span{
    width: 30%;
    min-width: 300px;
    margin: 30px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 400px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transform: translateY(5%);
    opacity: 0;
}
.community-span::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    z-index: 4;
}
.community-span img, .community-span p{
    position: absolute;
    width: 100%;
    height: 100%;
}
.community-span img{
    object-fit: cover;
    object-position: left;
    z-index: 1;
}
.community span p{
    padding: 20px;
    display: grid;
    place-items: center;
    z-index: 2;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}
.community-span:hover p{
    opacity: 1;
    /* background: rgba(255, 255, 255, 0.35); */
}
.community-span:hover::after{
    opacity: 0;
    /* background: rgba(255, 255, 255, 0.35); */
}
.community-span:nth-child(1){
    border-radius: 50% 50% 20px 20px;
}
.community-span:nth-child(2){
    border-radius: 180px;
}
.community-span:nth-child(3){
    border-radius: 150px 30px 150px 30px;
}
/* WORKING */
.working{
    width: 100%;
    min-height: 100vh;
    height: max-content;
    padding: 3vw;
}
.working h1, .working p{
    text-align: center;
    width: 60%;
    margin: 10px auto;
    min-width: 300px;
}
.working h1{
    font-size: 3.5rem;
    font-weight: 600;
}
.working p{
    color: #4173a6;
    color: #cf4961;
    font-size: 1.2rem;
    font-weight: 500;
}
.working-step{
    width: 100%;
    min-width: 300px;
    min-height: 90vh;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 50px 3vw;
}
.working-step span, .working-img{
    width: 45%;
    height: 100%;
    min-width: 300px;
    margin: 20px;
}
.working-step span{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
}
.working-step span:nth-child(2n-1), .working-img:nth-child(2n-1){
    transform: translateX(-100%);
    opacity: 0;
}
.working-step span:nth-child(2n), .working-img:nth-child(2n){
    transform: translateX(100%);
    opacity: 0;
}
.working-step span p, .working-step span h1{
    text-align: start;
    margin: 0;
    width: 100%;
}
.working-step span small{
    padding: 10px 15px;
    background: #a0e4f5;
    background: #f4dde2;
    border-radius: 50px;
    width: 100px;
    text-align: center;
}
.working-step span a{
    box-shadow: 0 0 3px grey;
    border-radius: 25px;
    padding: 10px 20px;
    text-decoration: none;
    color: black;
    margin: 5px 0;
}
.working-step span a:hover, .working-step span a:active, .working-step span a:focus{
    box-shadow: none;
    border: 0.5px solid black;
}
.ws4-btns{
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-around;
}
.ws4-l, .ws4-r{
    width: 45%;
    min-width: 250px;
}
.ws4-l a{
    display: block;
    width: 100%;
    text-align: center;
}
.ws4-r{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.ws4-r h3{
    font-size: calc(12px + 0.1vw);
}
.ws4-r p{
    font-size: calc(10px + 0.1vw);
}
.working-img{
    height: 70vh;
    width: 35%;
    min-width: 300px;
}
.wi-1{
    height: max-content;
    min-height: 80vh;
    width: 35%;
    overflow: hidden;
    background: #a0e4f5;
    background: #f4dde236;
    backdrop-filter: blur(25px);
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    border-radius: 160px;
    transform-style: preserve-3d;
}
.wi-item{
    text-decoration: none;
    color: #20466c;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 250px;
    height: 18%;
    margin: 5px 0;
    transition: 0.4s all ease-in-out;
}
.wi-item:hover{
    filter: invert(2);
}
.wi-item:nth-child(2n) p, .wi-item:nth-child(2n-1) img{
    transform: translateX(-100%);
}
.wi-item:nth-child(2n) img, .wi-item:nth-child(2n-1) p{
    transform: translateX(100%);
}
.wi-item:last-child p{
    width: 20%;
    min-width: 50px;
}
.wi-item img{
    width: 4vw;
    height: 4vw;
    min-width: 50px;
    min-height: 50px;
    object-fit: cover;
}
.wi-item p{
    width: 55%;
    min-width: 160px;
    text-align: center;
    font-size: calc(13px + 0.1vw);
    color: black;
    margin: 0;
}
.wi-2{
    border-radius: 100px;
    background: url('./assets/wi-2.jpg') no-repeat center/cover;
}
.wi-3{
    border-radius: 50% 50% 40px 40px;
    background: url('./assets/wi-3.jpg') no-repeat center/cover;
}
.wi-4{
    border-radius: 50% 40px 50% 40px;
    background: url('./assets/wi-4.jpg') no-repeat center/cover;
}
/* MESSAGE */
.message{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 3vw;
    min-height: 40vh;
    width: 100%;
}
.message img{
    width: 30%;
    min-width: 300px;
    height: 100%;
    object-fit: contain;
    border-radius: 10% 15% 10% 15%;
    transform: translateX(-100%);
    opacity: 0;
}
.message p{
    padding: 50px;
    background-color: aqua;
    background: #fcd0db;
    border-radius: 40px 90px 40px 90px;
    width: 45%;
    min-width: 300px;
    font-size: 1.5rem;
    font-weight: 500;
    margin-left: -5%;
    transform: translateX(100%);
    opacity: 0;
}
/* PEOPLE */
.people{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.people h1{
    width: 100%;
    text-align: center;
    font-weight: 600;
    font-size: 3rem;
}
.people span{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 20%;
    min-width: 300px;
    margin: 20px;
    transform: translateY(20%);
    opacity: 0;
}
.people span img{
    width: 15vw;
    height: 15vw;
    min-width: 200px;
    min-height: 200px;
    border-radius: 50%;
    object-fit: contain;
    margin: 10px auto;
}
/* BENEFITS */
.benefits{
    width: 80%;
    min-width: 280px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 20px auto;
}
.benefits h2{
    width: 100%;
    text-align: center;
    font-weight: 400;
    font-size: 1.5rem;
    margin: 10px auto;
}
.benefits p{
    margin: 10px;
    font-size: 1.3rem;
    font-weight: 500;
    border-radius: 100px;
    padding: 25px;
    background: #3ecef2;
    background: #cf4961;
    transition: 0.3s all ease-in-out;  
}
.benefits p:nth-child(2n-1){
    background: #3bb79a;
    background: #f874aa;
}
.benefits p:nth-child(2n-1):hover{
    border-radius: 100px 25px 100px 100px;
}
.benefits p:nth-child(2n):hover{
    border-radius: 25px 25px 100px 100px;
}
/* SOCIALS */
.socials{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    width: 80%;
    min-width: 300px;
    border-radius: 100px;
    margin: 30px auto;
    background: #a0e4f5;
    background: #cf496231;
    backdrop-filter: blur(10px);
    padding: 2vw;
}
.socials a{
    color: #20466c;
    word-wrap: break-word;
    word-break: break-all;
}
.socials div{
    width: 100%;
    text-align: center;
}
.socials span{
    width: 300px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
}
.socials h1{
    width: 100%;
    font-size: calc(40px + 0.2vw);
    font-weight: 300;
}
.socials span a{
    text-align: center;
    text-decoration: none;
    color: #20466c;
}
.socials img{
    height: 75px;
    width: 75px;
    object-fit: contain;
    margin: 10px;
    transition: 0.5s all;
}
.socials img:hover, .socials img:active, .socials img:focus{
    transform: scale(1.1, 1.1);
}
.featured{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px;
    border-radius: 10px;
}
.featured img{
    width: calc(100%/8);
    min-width: 90px;
}
#l-span{
    width: 100%;
}
@keyframes slideX {
    100%{
        transform: translateX(0);
        opacity: 1;
    }
}
@keyframes slideY {
    100%{
        transform: translateY(0);
        opacity: 1;
    }
}
