<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&amp;display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

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

body {
    font-family: "Roboto", sans-serif;
    min-height: 100vh;
    background: linear-gradient(0deg, #5f7097 0%, #4a8f4f 100%)
}


.main-section{
    padding: 40px 10px;
    flex: 1;
    height: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.container {
    width: 75%;
    min-height: 85%;
    padding-inline: 10%;
    padding-block: 20px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: #919eab33 0 0 2px, #919eab1f 0 12px 24px -4px !important;
}

.whato-logo {
    height: 40px;
    width: max-content;
    margin-bottom: 20px;
}

.whato-logo img {
    width: 100%;
    height: 100%;
}

.main-content {
    height: max-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;

    padding-top: 20px;
    text-align: center;
}

.title {
    /* color: #166534; */
    color: #4680ff;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
}

.subtitle {
    font-size: 20px;
    color: #6b7280;
    margin-bottom:40px ;
}

.join-letter {
    display: flex;
    gap: 20px;
}

.join-letter input {
    padding: 8px 10px 8px 16px;
    height: 45px;
    width: 380px;
    background-color: #f3f4f6;
    border: none;
    border-radius: 12px;
    font-family: "Roboto", sans-serif;
    outline: none;
}

.join-letter input:hover {
    outline: 1px solid #4680ff;
}

.join-waitlist-btn {
    padding: 8px 20px;
    border: none;
    outline: none;
    border-radius: 10px;
    background: #4680ff;
    color: #fff;
    font-family: "Roboto", sans-serif;
    outline: none;
    font-size: 16px;
    letter-spacing: 0.3px;
     white-space: nowrap;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.loader img {
    width: 20px;
}

[loading="false"] .loader{
    display: none !important;
}

.already-signup {
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-avaters img {
    width: 24px;
    height: 24px;
    border-radius: 10vmax;
}

.already-signup p {
    color: #6b7280;
    font-size: 14px;
}

.contact-us {
    text-align: center;
    padding-block: 35px;
    font-size: 20px;
    color: #6b7280;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.contact-us img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.contact-us .email {
    text-decoration: none;
    color: #4680FF;
    overflow-wrap: anywhere;
}
.end-up {
    margin-top: 60px;
    position: relative;
    min-height: 200px;
}

.end-up img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


.fearute-box{
    width: 180px;
}

.fearute-box img {
    width: 100%;
}

.arrow-icon{
    position: absolute;
    top: 54%;
    left: 68%;
    transform: translate(-50%, -50%);
}

.end-up-title{
    position: absolute;
    top: 15%;
    left: 70%;
    transform: rotate(-5deg) translate(-50%, -50%);
    font-size: 24px;
    font-weight: 600;
    color: #9DA4AD;
}


.twiter-post{
    position: absolute;
    top: 65%;
    left: 40%;
    transform: translate(-50%, -50%);
}

.twiter-post img {
    width: 420px;
}

.success-modal{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 11;
    padding: 20px;
    padding-top: 40px;
}

.success-modal-content{
    box-shadow: 0px 4px 6px 2px rgb(0 0 0 / 18%);
    background-color: #24bda3;
    padding: 20px;
    border-radius: 10px;
    color: #fff;
    animation: fadeIn 0.5s ease-in-out; 
}

.success-modal-content p {
    font-size: 14px;
    text-align: center;
}

.error-modal .success-modal-content{
    background-color: #f44336;
}

.video-box{
    position: relative;
    width: 530px;
    height: 315px;
    margin: 0 auto;
    margin-bottom: 40px;
    border-radius: 10px;
    overflow: hidden;
}

.video-box iframe{
    width: 100% !important;
    height: 100% !important;
}

.video-poster{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
}

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

.video-poster:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00000080;
    opacity: .4;
    z-index: 10;
}

.video-poster button {
    z-index: 11;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    width: 65px;
    height: 65px;
    background-color: #00954c;
    border: none;
    cursor: pointer;
    outline: none;
    font-size: 43px;
    color: #ffffff;
}

.video-poster button::before,
.video-poster button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background-color: #00e6779a;
    animation: wave 2s infinite;
    border: 1px solid #ffffff;
}

.video-poster button::before {
    width: 100%;
    height: 100%;
    animation-delay: 0s;
}

.video-poster button::after {
    width: 120%;
    height: 120%;
    animation-delay: 0.5s;
}

.footer-links{
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 10px;
}

.footer-links a{
    color: #6b7280;
    font-size: 16px;
    text-decoration: none;
    font-weight: 500;
}

.footer-links a:hover{
    text-decoration: underline;
}

.copyright{
    font-size: 14px;
    color: #6b7280;
    text-align: center;
}

footer{
    margin-top: 20px;
}

.connect-with-whatsapp {
    position: fixed;
    bottom: 70px;
    right: 70px;
}


.connect-with-whatsapp img {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

.connect-with-whatsapp .blink {
    z-index: 11;
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    background-color: #00954c;
    border: none;
    cursor: pointer;
    outline: none;
    font-size: 43px;
    color: #ffffff;
}

.connect-with-whatsapp .blink::before,
.connect-with-whatsapp .blink::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    border-radius: 10vmax;
    background-color: hsla(151, 100%, 29%, 0.356);
    animation: wave 3s infinite;
    border: 1px solid #ffffff;
}

@keyframes wave {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}



@keyframes fadeIn {
    from {
        transform: translateY(-20px);   
        opacity: 0;
    }
    to {
        transform: translateY(00px);   
        opacity: 1;
    }
}


@media (min-width: 1500px) {
    .connect-with-whatsapp {
        bottom: 120px;
        right: 370px;
    }

    .connect-with-whatsapp .blink::before,
    .connect-with-whatsapp .blink::after {
        width: 140%;
        height: 140%;
    }
}


@media screen and (max-width: 1600px) {
    .container{
        padding-inline: initial;
        padding: 20px 60px;
    }
}

@media screen and (max-width: 1400px) {
    .twiter-post {
        left: 35%;
    }
}


@media screen and (max-width: 1180px) {
    .twiter-post img {
        width: 340px;
    }

    .end-up-title{
        left: 62%;
    }

    .arrow-icon {
        left: 65%;
        width: 65px;
    }
}

@media(max-width: 991px) {
    .title {
        font-size: 28px;
    }
    .end-up {
        width: 100%;
    }

    .container{
        width: 90% !important;
    }

    .arrow-icon img{
        width: 60px;
    }

    .end-up-title {
        left: 50%;
        transform: rotate(0deg) translate(-50%, -50%);
    }

    .arrow-icon {
        left: 67%;
        top: 34%;
        transform: rotate(-15deg) translate(-50%, -50%);
    }
}

@media (max-width: 768px) {

    .container {
        padding-inline: 5%;
    }

    .join-letter input  {
        width: 240px;
    }

    .arrow-icon{
        left: initial;
        right: 4%;
        top: 37%;
    }

    .end-up-title{
        left: initial;
        right: 0%;
    }

    .end-up{
        margin-top: 10px;
    }

    .title {
        font-size: 24px;
    }

    .subtitle {
        font-size: 18px;
    }

    .fearute-box {
        width: 150px;
    }

    .main-content{
        padding-top: 0;
    }

    .end-up{
        min-height : 150px;
    }

    .arrow-icon{
        top: 30%;
    }

    .video-box{
        width: 100% !important;
    }

    .connect-with-whatsapp {
        bottom: 60px;
        right: 50px;
        z-index: 999;
    }
}

@media (max-width: 550px) {
    .whato-logo {
        height: 34px;
        margin-bottom: 25px;
    }

    .join-letter {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .join-letter input {
        width: 100%
    }

    .join-waitlist-btn {
        font-size: 16px;
        width: 100%;
        padding: 13px 20px;
    }

    .arrow-icon{
        right: -45px;
    }

    .end-up-title {
        right: -85px;
    }
    
    .twiter-post {
        left: 50%;
    }

    .twiter-post img {
        width: 300px;
    }

    .arrow-icon img {
        width: 40px;
    }

    .container{
        width: 100% !important;
    }

    .main-section{
        padding: 20px !important;
        min-height: initial;
    }

    .video-box{
        width: 100% !important;
        height: 200px !important;
    }
}</pre></body></html>