@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Outfit:wght@100..900&display=swap");

* {
    font-family: "Outfit", sans-serif;
}
html {
  scroll-behavior: smooth;
}

body {
    overflow-x: hidden !important;
}
.clr {
    color: #c6f806;
}
.bg-clr {
    background-color: #c6f806;
}
.clr2 {
    color: #323aed;
}
.bg-clr2 {
    background-color: #323aed;
}

.bub_1 {
    position: absolute !important;
    background: white;
    opacity: 0.1;
    border-radius: 50%;
    z-index: 1;
    animation: round 50s linear infinite;
    transform-origin: 75% 50%;
}
@keyframes round {
    from{
        transform: rotate(0deg);
    }
    to{
        transform: rotate(360deg);
    }
}

.blur {
    position: absolute;
    background: white;
    opacity: 1;
    height: 80%;
    bottom: 30px;
    width: 20%;
    border-radius: 50%;
    z-index: -1;
    filter: blur(100px) !important;
    left: 50%;
    transform: translateX(-40%);
}

.stars {
    position: absolute;
    right: 0;
}

.nav-service-list span {
    padding: 4px 10px !important;
    border: 1px solid gray;
    display: inline-block;
    margin: 5px 5px 0px 0;
    border-radius: 30px;
}
.nav-service-list:hover span {
    background: #c6f806;
    color: black;
     border: 1px solid black;
}
@media only screen and (max-width: 600px) {
    .nav-service-list span {
        padding: 0px 5px 0 0 !important;
        border: 1px solid transparent;
        border-right: 1px solid gray;
        display: inline-block;

        margin: 5px 5px 0px 0;
        border-radius: 0px;
    }
}

.portfolio-ui:hover img {
    animation: slide-Up 6s linear forwards;
    transform: translateY(0);
}
@keyframes slide-Up {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-70%);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* -popup----------------- */
.animate-fade-in {
    animation: fadeIn 0.4s ease-out;
}

/* PopupModal.css */

.fade-in {
    opacity: 1;
    pointer-events: auto;
}

.fade-out {
    opacity: 0;
    pointer-events: none;
}

.modal {
    position: absolute;
    animation: fadeInScale 0.3s ease;
}

.close-btn {
    position: absolute;
    right: 12px;
    top: 2px;
    font-size: 20px;
    background: none;
    border: none;
    cursor: pointer;
}

@keyframes fadeInScale {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}
/* popup close */


/* --recaptcha */

.grecaptcha-badge{
    z-index: 50 !important;
}