/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Bai+Jamjuree:wght@400;500;600&display=swap");

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    scroll-behavior: smooth;
}

body{
    width: 100vw;
    background-color: #0a0a0a;
    overflow-x: hidden;
}
h1{
    color: #ffe784;
    font-size: x-large;
}
h2{
    font-size: medium;
    color: #f3f3f3;
}
p{
    font-size: smaller;
}


@keyframes appear{
    from{
        opacity: 0;
        scale: 0.5;
    }
    to{
        opacity: 1;
        scale: 1;
    }
}
@keyframes moveUppy {
    0%{
        transform: translateY(0%);
    }
    25%{
        transform: translateY(30%);
    }
    50%{
        transform: translateY(0%);
    }
    75%{
        transform: translateY(-30%);
    }
    100%{
        transform: translateY(0%);
    }
}
@keyframes slide {
    from{
        transform: translateX(0);
    }
    to{
        transform: translateX(-100%);

    }
}

.navMenu{
    overflow: hidden;
    position: fixed;
    width: 100%;
    text-align: center;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(90px);
}
.navMenu a{
    display: inline-block;
    text-decoration: none;
    font-size: 15px;
    padding: 10px 12px;
    color: #f3f3f3;
}


.navMenu a:hover{
    color: #ffe784;
}
.navMenu .icon {
    display: none;
    max-width: 100%; 
}

section{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #0a0a0a;
}
.blob{
    margin-top: 700px;
    position: absolute;
    width: 500px;
    height: 500px;
    z-index: -1;
   /* animation: appear 2s;*/
    animation: moveUppy 20s ease-in infinite ;
    animation-delay: 1s;
}

.blob:nth-child(2){
    filter: blur(50px);
}
.home-tab{
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.home-tab img{
    width: 700px;
    height: 700px;
    animation: appear 2s;
}
.contactUs-btn {
    text-decoration: none;
    border-radius: 8px;
    border: #f3f3f3 solid 1px;
    color: #f3f3f3;
    padding: 14px 25px;
    text-align: center;
    margin-top: -250px;
    margin-bottom: 250px;
    box-shadow: 0 0 100px rgba(0, 0, 0, 0.1);
    box-shadow: inset 0 0 0 0 #f3f3f3;
    transition: ease-out 0.3s;
    backdrop-filter: blur(1rem);
}
.contactUs-btn:hover{
    box-shadow: inset 150px 0 0 0 #ffe784;
    color: #f3f3f3
}
.about-tab{
    padding-top: 40px;
    text-align: center;
    height: auto;
}
.about-tab h1{
    margin-top: 20px;
}

.about-container{
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
    gap: 5px;
    background-color: #ffe784;
    border-radius: 25px;
    margin-left: 25%;
    margin-right: 25%;
    box-shadow: inset 0 0 0 0 #f3f3f3;
    transition: ease-out 0.3s;
}

.about-container:hover{
    box-shadow: inset 400px 0 0 0 #f3f3f3;
}

.about-text{
    flex: 1;
    max-width: 400px;
}
.about-image img{
    height: 220px;
    width: 100%;
    max-width: 400px;
    object-fit: cover;
    vertical-align: middle;
    float: right;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
}

.clients-tab{
    overflow: hidden;
    padding: 40px 0;
    text-align: center;
}
.clients-slide-tab{
    white-space: nowrap;
    overflow: hidden;
}

.cli-logos-slide{
    overflow: hidden;
    white-space: nowrap;
    display: inline-block;
    animation: 35s slide infinite linear;
    position: relative;
}


.cli-logos-slide:hover{
    animation-play-state: paused;
}

.cli-logos-slide img{
    height: 150px;
    margin: 0 40px;
}

.benefits-tab{
    text-align: center;
    height: auto;
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
}

.benefits-tab .grid-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    height: 300px;
    width: 100%;
    font-size: 15px;
    color: #f3f3f3;
}

.material-icons{
    font-size: 70px;
    color: #f3f3f3;
}
.grid-item {
    margin-top: 15px;
    background:#111111;
    border-radius: 12px;
    box-shadow: inset 0 0 0 0 #f3f3f3;
    transition: ease-out 0.3s;
    /*border: #f3f3f3 solid 0.3px;*/
    width: 250px;
    padding: 0 2% 0 2%;
    align-content: center;
}
.grid-item:hover{
    box-shadow: inset 250px 0 0 0 #ffe784;
    /*background: #ffe784;*/
    cursor: default;
}
.grid-item p{
    margin-top: 20px;
}
.social-media{
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    margin-top: 10px;
}

.btn-1{ 
    box-shadow: inset 0 0 0 0 #6001f8;
    transition: ease-out 0.3s;
    background-color: #ffe784;
}
.btn-1:hover{
    box-shadow: inset 120px 0 0 0 #6001f8;
    color: #f3f3f3
}
.btn-2{
    box-shadow: inset 0 0 0 0 #0019fc;
    transition: ease-out 0.3s;
    background-color: #ffe784;
}
.btn-2:hover{
    box-shadow: inset 120px 0 0 0 #0019fc;
    color: #f3f3f3
}
.btn-3{
    box-shadow: inset 0 0 0 0 #000000;
    transition: ease-out 0.3s;
    background-color: #ffe784;
}
.btn-3:hover{
    box-shadow: inset 120px 0 0 0 #000000;
    color: #f3f3f3;
}
.btn-4{
    box-shadow: inset 0 0 0 0 #ff0000;
    transition: ease-out 0.3s;
    background-color: #ffe784;
}
.btn-4:hover{
    box-shadow: inset 120px 0 0 0 #ff0000;
    color: #f3f3f3
}

.social-media button:hover{
    cursor: pointer;
}

button{
    align-items: center;
    height: 40px;
    width: 120px;
    border-radius: 8px;
    border: none;
    margin-top: 10px;
    color: #000000;
}

.partners-tab{
    overflow: hidden;
    padding: 40px 0;
    text-align: center;
}

.ful-partners{
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}
.ful-partners img{
    height: 150px;
    /*margin: 0 40px;*/
}
.images{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    overflow: hidden;
}
.instagram-media{
    height: 400px;
    width: 100%;
}
.contact-tab{
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-evenly;
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
}
label{
    display: block;
    margin-top: 5px;
    margin-bottom: 5px;
    font-weight: bold;
    color: #f3f3f3;
}
.contact-container button{
    display: block;
    margin: auto;
    color: #000000;
    background-color: #f3f3f3;
    box-shadow: inset 0 0 0 0 #ffe784;
    margin-bottom: 10px;
}
.g-recaptcha{
    display: grid;
    justify-content: center;
}
.contact-container button:hover{
    box-shadow: inset 130px 0 0 0 #ffe784;
    transition: ease-out 0.3s;
    color: #f3f3f3;
    cursor: pointer;
}
input, textarea {
    width: 35%;
    padding: 10px;
    border: none;
    border-radius: 8px;
}
textarea{
    height: 100px;
}

.footer-tab{
    position: sticky;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    bottom: 0;
    background-color: #f3f3f3;
    padding: 15px;
}
.footer h3{
    font-size: 15px;
    text-transform: uppercase;
}
footer h3 span{
    display: block;
    margin-top: 10px;
}
.footer h3 span i{
    margin: 0 15px;
}
.footer-2{
    min-height: 100px;
    background-color: #0a0a0a;
    font-size: 18px;
    justify-content: center;
    display: flex;
    align-items: center;
    color: #f3f3f3;
}

.mobile-menu-items{
    text-align: center;
    margin-top: 50%;
    left: 50%;
    text-decoration: none;
}

.mobile-menu-items a{
    text-decoration: none;
    color: #0a0a0a;
    padding-bottom: 5px;
}


@media screen and (max-width: 992px){
    .navMenu{
        width: 90%;
        margin-bottom: 5%;
        margin-left: 5%;
        border-radius: 15px;
        position: fixed;
        overflow-x: hidden;
        bottom: 0; 
    }
    .navMenu a:not(:first-child) {display: none;}
    .navMenu a.icon {
        float: left;
        display: block;
        padding: 10px 12px;
        right: 0;
        top: 0;
        
    }
    .mobile-menu-items a{
        color: #0a0a0a;
    }
    .mobile-menu-items h2{
        color: #0a0a0a;
        font-size: 50px;
    }
    .navMenu.responsive {
        position: fixed;
        overflow: hidden;
        width: 100%;
    }
    .navMenu.responsive .icon {
        position: fixed;
    }
    .navMenu img {
        width: 20px; 
        height: 20px;
    }
    .about-tab{
        height: auto;
    }
    .about-container{
        margin-left: 10%;
        margin-right: 10%;
    }
    .about-tab h1{
        margin-top: 50px;
    }
    .about-text{
        padding: 10px;
    }
    .about-image img{
        border-top-right-radius: 0;
        border-bottom-left-radius: 25px;
    }

    .benefits-tab .grid-container{
        margin-top: 20px;
    }
    .grid-item {
        margin-top: 10px;
    }
    .images{
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 5px;
        overflow: scroll;
    }
    .contact-container input, textarea{
        width: 250px;
    }
}

@media screen and (max-width: 600px){
    h2{
        font-size: small;
    }
    h1{
        font-size: xx-large;
    }
    .mobile-menu-items{
        text-align: center;
        margin-top: 45%;
        left: 50%;
        text-decoration: none;
    }
    .mobile-menu-items h2{
        color: #0a0a0a;
        font-size: 50px;
    }
    .navMenu{
        width: 90%;
        margin-bottom: 5%;
        margin-left: 5%;
        border-radius: 15px;
        position: fixed;
        overflow-x: hidden;
        bottom: 0; 
    }
    .navMenu a:not(:first-child) {display: none;}
    .navMenu a.icon {
        float: left;
        display: block;
        padding: 10px 12px;
        right: 0;
        top: 0;
        
    }
    .navMenu.responsive {
        position: fixed;
        overflow: hidden;
        width: 100%;
    }
    .navMenu.responsive .icon {
        position: fixed;
    }
    .navMenu img {
        width: 20px; 
        height: 20px;
    }
    .blob{
        margin-top: 800px;
        position: absolute;
        width: 150px;
        height: 150px;
        z-index: -1;
        border: none;
    }
    .home-tab img{
        width: 400px;
        height: 400px;
    }
    .contactUs-btn{
        margin-top: -100px;
        margin-bottom: 0;
    }
    .about-tab{
        height: auto;
    }
    .about-container{
        margin-left: 10%;
        margin-right: 10%;
    }
    .about-tab h2{
        margin: 0 2% 0 2%;
    }
    .about-tab h1{
        margin-top: 50px;
    }
    .clients-tab h2{
        margin: 0 5% 0 5%;
    }
    .about-text{
        padding: 10px;
    }
    .about-image img{
        height: auto;
        border-top-right-radius: 0;
        border-bottom-left-radius: 25px;
    }
    .social-media{
        margin-top: 280px;
    }
    .grid-item {
        margin-top: 25px;
    }
    .images{
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 5px;
        overflow: scroll;
    }
    .contact-container button{
        display: block;
        margin: auto;
        color: #000000;
    }
    .contact-container input, textarea{
        width: 250px;
    }
    .footer-tab{
        position:static;
        margin-top: 10px;
    }
}