:root {
    --mainColor: #26126b;
    --lightColor: #ffffff;
}
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 25px;
}
a { text-decoration: none; }
.navbar {
    border-bottom: 1px solid rgba(255 255 255 / 0.2);
    transition: .3s ease-in-out all;
    backdrop-filter: blur(4px);
}
.navbar.sticky { background: rgb(38 18 107 / 80%); }
.app-content {
    position: relative;
    background: #ffffff;
}
.background-container { min-height: 100vh; }
.caption p {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #fff;
    line-height: 28px;
}
.btn-custom {
    background: var(--mainColor);
    color: #fff;
}
.btn-custom:hover {
    background: #1d1538;
    color: #fff;
}
.service-single .icon {
    width: 100px;
    height: 100px;
    background-color: rgba(38 18 107 / 0.5);
    -webkit-clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    text-align: center;
    margin: 0 auto 25px;
}
.service-single .icon i {
    font-size: 40px;
    color: #fff;
    top: 50%;
    position: relative;
    transform: translateY(-50%);
}
.cont-info-single i {
    display: inline-block;
    background-color: #f5f5ff;
    width: 70px;
    height: 70px;
    line-height: 70px;
    font-size: 30px;
    border-radius: 10px;
    color: #092EED;
    margin: 0 auto 25px;
}
.contact-form input {
    background-color: #f5f5ff;
    border: 0;
    height: 60px;
    padding-left: 20px;
    font-size: 15px;
}
.contact-form textarea {
    background-color: #f5f5ff;
    border: 0;
    padding: 20px 0 0 20px;
    font-size: 15px;
}
.bg-custom { background-color: var(--mainColor); }


/* Animated Background Start */
@keyframes animate {
    0%{
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }
    100%{
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }
}
.background {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
    background: var(--mainColor);
    overflow: hidden;
}
.background li {
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgba(255 255 255 / 0.2);
    animation: animate 19s linear infinite;
}
.background li:nth-child(0) {
    left: 9%;
    width: 271px;
    height: 271px;
    bottom: -271px;
    animation-delay: 1s;
}
.background li:nth-child(1) {
    left: 30%;
    width: 150px;
    height: 150px;
    bottom: -150px;
    animation-delay: 4s;
}
.background li:nth-child(2) {
    left: 1%;
    width: 255px;
    height: 255px;
    bottom: -255px;
    animation-delay: 4s;
}
.background li:nth-child(3) {
    left: 9%;
    width: 256px;
    height: 256px;
    bottom: -256px;
    animation-delay: 8s;
}
.background li:nth-child(4) {
    left: 39%;
    width: 150px;
    height: 150px;
    bottom: -150px;
    animation-delay: 3s;
}
.background li:nth-child(5) {
    left: 0%;
    width: 277px;
    height: 277px;
    bottom: -277px;
    animation-delay: 22s;
}
.background li:nth-child(6) {
    left: 46%;
    width: 248px;
    height: 248px;
    bottom: -248px;
    animation-delay: 15s;
}
.background li:nth-child(7) {
    left: 58%;
    width: 139px;
    height: 139px;
    bottom: -139px;
    animation-delay: 9s;
}
.background li:nth-child(8) {
    left: 61%;
    width: 200px;
    height: 200px;
    bottom: -200px;
    animation-delay: 6s;
}
.background li:nth-child(9) {
    left: 88%;
    width: 169px;
    height: 169px;
    bottom: -169px;
    animation-delay: 17s;
}
/* Animated Background End */