@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&display=swap');

/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

.btn.btn-primary {
    background: var(--bs-primary) !important;
    color: var(--bs-white) !important;
    font-weight: 400;
    transition: 0.5s;
    border: 1px solid #08cda6;
}

.btn.btn-primary:hover {
    background: var(--bs-white) !important;
    color: var(--bs-primary) !important;
}

.btn.btn-light {
    /* background: var(--bs-light) !important;
    color: var(--bs-primary) !important; */
    background: #060a2d !important;
    color: #ffffff !important;
    font-weight: 400;
    /* transition: 0.5s; */
}

.btn.btn-light:hover {
    background: var(--bs-primary) !important;
    color: var(--bs-light) !important;
}


.RotateMoveLeft {
    position: relative;
    animation: RotateMoveLeft 10s linear infinite;
}

.RotateMoveRight {
    position: relative;
    animation: RotateMoveLeft 10s linear infinite;
}

@keyframes RotateMoveLeft {
    0% {
        left: 0px;
    }

    50% {
        left: 40px;
    }

    100% {
        left: 0px;
    }
}

@keyframes RotateMoveRight {
    0% {
        right: 0px;
    }

    50% {
        right: 40px;
    }

    100% {
        right: 0px;
    }
}


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    margin-right: 25px;
    padding: 35px 0;
    color: var(--bs-dark) !important;
    font-size: 16px;
    font-weight: 400;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-primary) !important;
}

.navbar-light .navbar-brand img {
    width: 200px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    transition: .5s;
    opacity: 1;
}

.collapse.navbar-collapse {
    transition: 0.5s;
}


@media (max-width: 992px) {
    .resp-1 {
        padding-left: 12px !important;
    }

    nav.bg-transparent {
        position: absolute;
        width: 100%;
        background: #06114b !important;
    }

    .navbar.navbar-expand-lg button span {
        position: relative;
        z-index: 99;
    }

    .tab-content>.tab-pane {
        display: block;
    }

    .navbar {
        position: relative;
        background: var(--bs-light);
        z-index: 2;
    }

    .sticky-top.navbar-light {
        position: relative;
        background: var(--bs-white) !important;
        padding: 0 20px 20px 20px !important;
    }

    .sticky-top.navbar-light {
        background: transparent;
    }

    nav.navbar {
        padding: 0 30px 30px 0;
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: none;
        color: #ffffff;

    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--bs-dark) !important;
    }


    .navbar-light .navbar-brand img {
        max-height: 45;
    }

    .hero-header {
        margin-top: -100px !important;
    }

}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        background: transparent !important;
        z-index: 999;
    }

    .sticky-top.navbar-light {
        position: fixed;
        background: #060a2d !important;
        color: #fff;
    }

    .navbar-nav .nav-link .sticky-top.navbar-light :active {

        color: #fff;
    }
}

@media(max-width:600px) {
    .contact-info {
        max-width: 60%;
    }

    .resp-1a {
        text-align: center;
        margin-top: 30px;
    }
    .resp-1ab{
        text-align: center;
            animation: RotateMoveLeft 0s linear infinite;
    }
}

/*** Navbar End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(102, 16, 242, 0.05), rgba(102, 16, 242, 0.05));
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 150px 0 60px 0;
    margin-bottom: 6rem;
    transition: 0.5s;
}

.bg-breadcrumb::after {
    content: "";
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    border-radius: 300px;
    border: 80px solid rgba(247, 71, 128, 0.05);
    background: transparent;
    animation: RotateMoveSingle 5s linear infinite;
    z-index: -1;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
    z-index: 1;
}


@keyframes RotateMoveSingle {
    0% {
        -webkit-transform: rotateZ(0deg) rotate(0deg) translate3d(0, 1%, 0) rotateZ(0deg);
        transform: rotateZ(0deg) rotate(0deg) translate3d(0, 1%, 0) rotateZ(0deg);
    }

    100% {
        -webkit-transform: rotateZ(360deg) rotate(360deg) translate3d(0, 1%, 0) rotateZ(-360deg);
        transform: rotateZ(360deg) rotate(360deg) translate3d(0, 1%, 0) rotateZ(-360deg);
    }

    0% {
        bottom: 0px;
    }

    50% {
        left: -10px;
    }

    75% {
        bottom: 10%;
    }

    100% {
        bottom: 0px;
    }
}

.bg-breadcrumb::before {
    content: "";
    position: absolute;
    top: -15%;
    right: -10%;
    width: 600px;
    height: 600px;
    border-radius: 300px;
    border: 80px solid rgba(247, 71, 128, 0.04);
    background: transparent;
    animation: RotateMoveSingle 5s linear infinite;
    z-index: -1;
}

@keyframes RotateMoveSingle {
    0% {
        -webkit-transform: rotateZ(0deg) rotate(0deg) translate3d(0, 1%, 0) rotateZ(0deg);
        transform: rotateZ(0deg) rotate(0deg) translate3d(0, 1%, 0) rotateZ(0deg);
    }

    100% {
        -webkit-transform: rotateZ(360deg) rotate(360deg) translate3d(0, 1%, 0) rotateZ(-360deg);
        transform: rotateZ(360deg) rotate(360deg) translate3d(0, 1%, 0) rotateZ(-360deg);
    }

    0% {
        top: 0px;
    }

    50% {
        top: 10%;
    }

    100% {
        top: 0px;
    }
}

@media (max-width: 992px) {
    .bg-breadcrumb {
        padding-top: 100px !important;
    }
}

.bg-breadcrumb .breadcrumb-item a {
    color: var(--bs-dark) !important;
}


.breadcrumb-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.breadcrumb-animation li {
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgba(102, 16, 242, 0.07);
    animation: animate 25s linear infinite;
    bottom: -150px;

}

.breadcrumb-animation li:nth-child(1) {
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}


.breadcrumb-animation li:nth-child(2) {
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.breadcrumb-animation li:nth-child(3) {
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}

.breadcrumb-animation li:nth-child(4) {
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}

.breadcrumb-animation li:nth-child(5) {
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.breadcrumb-animation li:nth-child(6) {
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
}

.breadcrumb-animation li:nth-child(7) {
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
}

.breadcrumb-animation li:nth-child(8) {
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
}

.breadcrumb-animation li:nth-child(9) {
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}

.breadcrumb-animation li:nth-child(10) {
    left: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
}

@keyframes animate {

    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100% {
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }

}

/*** Single Page Hero Header End ***/


/*** Hearo Header Start ***/
/* .header::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: var(--bs-light);
    border-radius: 22% 78% 33% 67% / 32% 0% 100% 68%;
    animation: bgMove 5s linear infinite;
    z-index: -1;
}

@keyframes bgMove {
    0%   {right: 0px;}
    50%   {right: 20px;}
    100%  {right: 0px;}
}

.header::before {
    content: "";
    position: absolute;
    bottom: -9%;
    left: -7%;
    width: 400px;
    height: 400px;
    border-radius: 200px;
    border: 30px solid rgba(247, 71, 128, 0.05);
    background: transparent;
    animation: RotateMoveHeader 5s linear infinite;
    z-index: -1;

}

@keyframes RotateMoveHeader {
    0% {
        -webkit-transform: rotateZ(0deg) rotate(0deg) translate3d(0, 1%, 0) rotateZ(0deg);
        transform: rotateZ(0deg) rotate(0deg) translate3d(0, 1%, 0) rotateZ(0deg);
    }
      100% {
        -webkit-transform: rotateZ(360deg) rotate(360deg) translate3d(0, 1%, 0) rotateZ(-360deg);
        transform: rotateZ(360deg) rotate(360deg) translate3d(0, 1%, 0) rotateZ(-360deg);
    }


    0% {bottom: 0px;}
    50%   {left: -10px;}
    75%   {bottom: 9%;}
    100%  {bottom: 0px;}
} */

.hero-header {
    padding-top: 90px;
    padding-bottom: 20px;
    position: relative;
}

/* 
.hero-header::after {
    content: "";
    position: absolute;
    left: 100px;
    bottom: 100px;
    width: 58px;
    height: 50px;
    background: url(../img/sty-1.png) center center no-repeat;
    animation: RotateMoveSty-3 45s linear infinite;
    transition: 0.5s;
    z-index: -1;
    
}

@keyframes RotateMoveSty-3 {
    0%   {left: 100px;}
    40%   {bottom: -0px;}
    50%   {left: 700px;}
    70%   {bottom: 500px;}
    80%   {left: 400px;}
    95%   {bottom: -0px;}
    100%  {left: 100px;}
}

.hero-header::before {
    content: "";
    position: absolute;
    left: 100px;
    bottom: 100px;
    width: 300px;
    height: 300px;
    border-radius: 150px;
    border: 30px solid rgba(102, 16, 242, 0.05);
    background: transparent;
    animation: RotateMoveSty-4 45s linear infinite;
    transition: 0.5s;
    z-index: -1;
    
}

@keyframes RotateMoveSty-4 {
    0%   {left: 100px;}
    40%   {bottom: -0px;}
    50%   {left: 700px;}
    70%   {bottom: 500px;}
    80%   {left: 400px;}
    95%   {bottom: -0px;}
    100%  {left: 100px;}
}
 */

.hero-header .rotate-img {
    position: absolute;
    top: 70px;
    left: 20px;
}

.hero-header .rotate-img .rotate-sty-2 {
    position: absolute;
    top: 100px;
    left: 50px;
    width: 50px;
    height: 50px;
    border-radius: 30px;
    border: 5px solid rgba(247, 71, 128, 0.1);
    background: transparent;
    animation: RotateMoveSty-2 45s linear infinite;
    transition: 0.5s;

}

@keyframes RotateMoveSty-2 {
    0% {
        left: 0px;
    }

    40% {
        top: -30px;
    }

    50% {
        left: 500px;
    }

    70% {
        top: 200px;
    }

    80% {
        left: 100px;
    }

    95% {
        top: -30px;
    }

    100% {
        left: 0px;
    }
}

.hero-header .rotate-img img {
    position: relative;
    animation: RotateMove 30s linear infinite;
    z-index: -1;
}

@keyframes RotateMove {
    0% {
        left: 0px;
    }

    50% {
        left: 200px;
    }

    100% {
        left: 0px;
    }
}


@media (max-width: 992px) {
    .hero-header {
        padding-top: 100px;

    }

    .hero-header .rotate-img img {
        margin-top: 100px;
    }


}

@media (max-width: 991px) {
    #timeline {
        display: flex;
        flex-direction: column;
        border-bottom: 2px solid !important;
    }

    .tl-item {
        width: 100% !important;
        border-bottom: 2px solid;
    }

    /* .tl-item:hover {
        width: 100% !important;
    } */

    .block-ig-tx {
        display: flex;
        flex-direction: column;
        text-align: center;
    }

    .bner-img {
        width: 100%;
        margin: auto;
    }

    .bner-img1 {
        margin-left: 0 !important;
    }

    .display-5 {
        line-height: 1.3;
    }

    .navbar-toggler:focus {
        text-decoration: none;
        outline: 0;
        box-shadow: none;
    }

    .navbar-nav {
        gap: 0px;
    }

    .service-item,
    .service3,
    .service4 {
        margin-top: 50px !important;
    }

    .table>:not(caption)>*>* {
        padding: 5px !important;
        font-size: 9px;
    }


    .accordion-button:not(.collapsed) {
        color: #fff;
        background-color: #060a2d;
        box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
    }

    .accordion-body {
        padding: 20px;
    }

    section.Why-Us.p-2 {
        /* text-align: center; */
        padding: 50px 0px !important;
    }

    /* .container {
        max-width: 720px;
        margin-right: 30px;
        margin-bottom: 30px;
    } */

    .blog .blog-item {
        border-radius: 10px;
        margin-bottom: 30px;

    }

    .box1-ctr1 {
        width: 94% !important;
        margin: auto;
        padding-bottom: 50px;
    }

    .ctr-box {
        bottom: -40px;
    }

    .blog,
    .Why-Us {
        padding: 0px 0px !important;
    }

    .zoom {
        padding-bottom: 20px;
    }


}

@media (max-width:768px) {
    .box1 .feature-content1 .box1-ctr {
        padding-bottom: 100px !important;
    }
}

@media (max-width:600px) {
    .count-no {
        font-size: 35px !important;
    }
}

.block-ig-tx {
    width: 90%;
    margin: auto;
}

.bner-img {
    width: 80% !important;
}

.bner-img1 {
    margin-left: 70px;
}

/*** Hero Header End ***/



/*** Service Start ***/
/* .service .service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.1);
    border-bottom: 2px solid #08cda6;
    border-radius: 0px !important;
    height: 100%;
} */

.service .service-item,
.service .service-item .service-icon,
.service .service-item a {
    transition: 0.5s;
}

/* .service .service-item:hover {
    background: rgba(106, 138, 255, 0.295);
    border: 1px;
    color: #000;
} */


.service .service-item:hover .service-icon,
.service .service-item:hover a {
    background: var(--bs-white) !important;
}

.service .service-item:hover a:hover {
    background: var(--bs-primary) !important;
    color: var(--bs-white);
}

/*** Service End ***/


/*** Features Start ***/
.feature .feature-img {
    background: var(--bs-light);
    border-radius: 58% 42% 21% 79% / 30% 29% 71% 70%;
}

/*** Features End ***/


/*** Pricing Start ***/
.price .price-item {
    position: relative;
    overflow: hidden;
    transition: 0.5s;
}

.price .price-item:hover {
    background: var(--bs-white) !important;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.2);
}

.price .price-item .pice-item-offer {
    position: absolute;
    width: 200px;
    height: 110px;
    top: -45px;
    right: -80px;
    background: var(--bs-primary) !important;
    color: var(--bs-white);
    transform: rotate(42deg);
    display: flex;
    align-items: end;
    justify-content: center;
    padding-bottom: 10px;
}

/*** Pricing End ***/


/*** Blog Start ***/
.blog .blog-item {
    border-radius: 10px;
}

.blog .blog-item .blog-img {
    position: relative;
    overflow: hidden;
    background: rgba(102, 16, 242, 0.2);
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.blog .blog-item .blog-img .blog-info {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    padding: 20px;
    background: rgba(102, 16, 242, 0.2);
    color: var(--bs-white) !important;
    display: flex;
    align-items: end;
    justify-content: space-between;
    transition: 0.5s;
}

.blog .blog-item .blog-img:hover .blog-info {
    background: rgba(0, 0, 0, .4);
}


.blog .blog-item .blog-content {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: #ffffff;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item .blog-img:hover img {
    transform: scale(1.3);
}

/*** Blog End ***/


/*** Testimonial Start ***/
.testimonial {
    position: relative;
    background: var(--bs-light);
    overflow: hidden;
    z-index: 1;
}

.testimonial::after {
    content: "";
    position: absolute;
    top: 30%;
    left: 0;
    width: 80px;
    height: 80px;
    border-radius: 40px;
    background: url(../img/testimonial-img-2.jpg) center center no-repeat;
    animation: TestimonialMoveLeft 100s linear infinite;
    z-index: -1;

}

.testimonial::before {
    content: "";
    position: absolute;
    top: 30%;
    right: 0;
    width: 80px;
    height: 80px;
    border-radius: 40px;
    background: url(../img/testimonial-img-3.jpg) center center no-repeat;
    animation: TestimonialMoveRight 100s linear infinite;
    z-index: -1;

}

@keyframes TestimonialMoveLeft {
    0% {
        left: 0px;
    }

    25% {
        top: 100px;
    }

    50% {
        left: 100%;
    }

    75% {
        top: 80%;
    }

    100% {
        left: 0px;
    }
}

@keyframes TestimonialMoveRight {
    0% {
        right: 0px;
    }

    25% {
        top: 100px;
    }

    50% {
        right: 100%;
    }

    75% {
        top: 80%;
    }

    100% {
        right: 0px;
    }
}

.testimonial .testimonial-carousel.owl-carousel {
    position: relative;
    padding: 0 35px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    width: 65px;
    height: 65px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(102, 16, 242, 0.09);
    color: var(--bs-primary);
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 65px;
    height: 65px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(102, 16, 242, 0.09);
    color: var(--bs-primary);
    transition: 0.5s;
}


.testimonial .testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial .testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--bs-primary);
    color: var(--bs-white) !important;
}


.testimonial-carousel .owl-dots {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot img {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    margin-right: 15px;
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot.active img {
    width: 70px;
    height: 70px;
    border-radius: 40px;
    border: 4px solid var(--bs-secondary);
}

@media (min-width: 900px) {
    .testimonial .testimonial-carousel .testimonial-item .testimonial-inner p.fs-7 {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .testimonial .testimonial-carousel.owl-carousel {
        padding: 0;
    }

    .testimonial .testimonial-carousel .owl-nav .owl-prev {
        margin-top: -250px;
        margin-left: -15px;
    }

    .testimonial .testimonial-carousel .owl-nav .owl-next {
        margin-top: -250px;
        margin-right: -15px;
    }
}

/*** Testimonial End ***/

/*** Contact Start ***/
.contact {
    position: relative;
    overflow: hidden;
    transition: 0.5s;
    z-index: 1;
}

.contact::after {
    content: "";
    position: absolute;
    top: 10%;
    left: -1%;
    width: 400px;
    height: 400px;
    border-radius: 200px;
    border: 60px solid rgba(102, 16, 242, 0.05);
    background: transparent;
    animation: ContactMoveLeft 50s linear infinite;
    z-index: 1;
}

@keyframes ContactMoveLeft {
    0% {
        left: 0px;
    }

    25% {
        top: 100px;
    }

    50% {
        left: 90%;
    }

    75% {
        top: 80%;
    }

    100% {
        left: 0px;
    }
}

.contact::before {
    content: "";
    position: absolute;
    top: 10%;
    right: -1%;
    width: 400px;
    height: 400px;
    border-radius: 200px;
    border: 60px solid rgba(102, 16, 242, 0.05);
    background: transparent;
    animation: ContactMoveRight 50s linear infinite;
    z-index: 1;
}

@keyframes ContactMoveRight {
    0% {
        right: 0px;
    }

    25% {
        top: 100px;
    }

    50% {
        right: 90%;
    }

    75% {
        top: 80%;
    }

    100% {
        right: 0px;
    }
}

/*** Contact End ***/


/*** Footer Start ***/
.footer {
    background: linear-gradient(rgba(102, 16, 242, 0.05), rgba(102, 16, 242, 0.05));
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background: #060a2d;
}

.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-dark);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    letter-spacing: 2px;
    color: var(--bs-primary);
}

/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #08cda6;
    padding: 5px 0;
    font-size: 12px;
    color: #fff;
    letter-spacing: 0.9px;
}

/*** copyright end ***/


span.heading-1 {
    text-transform: uppercase;
    font-size: 30px;
    color: #000;
}

i.heading-2 {
    font-size: 35px;
    letter-spacing: 1px;
    color: #000;
    font-weight: 200;
    font-family: "Merriweather", serif;
}

.sm-line {
    color: #000;
    font-size: 28px;
}



.service1 {
    background: linear-gradient(147deg, #060a2d -16.56%, #060a2d85 98.08%)
}

.service2 {
    margin-top: 50px;
    background: linear-gradient(147deg, #060a2d -16.56%, #060a2d85 98.08%)
}

.service3 {
    margin-top: 100px;
    background: linear-gradient(147deg, #060a2d -16.56%, #060a2d85 98.08%)
}

.service4 {
    margin-top: 150px;
    background: linear-gradient(147deg, #060a2d -16.56%, #060a2d85 98.08%)
}

.service-content h4 {
    padding-left: 20px;
    padding-top: 20px;
    color: #fff;
    font-size: 23px;
    /* padding: 0px 45px; */
}

.icon-img img {
    width: 60px;
}

.service-box-1 {
    padding: 25px;
    transform: 0;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.1);
    border-bottom: 2px solid #08cda6;
    border-radius: 0px !important;
    height: 100%;
}

.service-content h6 {
    /* padding-left: 20px; */
    padding-top: 20px;
    color: #fff;

    /* padding: 0px 45px; */
}

/* .service-icon.d-inline-block img {
    width: 50px;
}

.service-item.text-center.rounded {
    padding: 30px 0px; 
}

.service-content {
    padding: 0px 50px;
} */

.service-content p {
    padding-left: 20px;
    color: #fff;
}

.ifa-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


.sidebar {
    grid-area: sidebar;
}

.content-1 {
    grid-area: content-1;
}

.content-2 {
    grid-area: content-2;
}

.content-3 {
    grid-area: content-3;
}

.box1.feature-content1 {
    background: #087c930a;
    padding: 25px 10px;
    margin: 3px 0px;
    border: 1px solid #f0f8ff;
    border-radius: 20px;
    box-shadow: 2px 1px 10px -5px #5f5f5f9c;
}

.ifa-content p {
    font-size: 14px;
}

.ifa-content a {
    font-size: 17px;
    margin-bottom: 0;
    font-weight: 800;
}

h3.counter-heading {
    font-size: 1.5rem;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 600;
}

.count-no {
    font-size: 55px;
}

.tablec {
    background-color: #dbeafe;
    color: #000;
    padding: 10px;
}

.table>:not(caption)>*>* {
    padding: 12px;
    font-style: italic;
    letter-spacing: 1px;
}

thead,
tbody,
tfoot,
tr .tb {
    border-color: inherit;
    border-style: solid;
    border-width: 0;
    border-radius: 20px !important;
}


.marquee {
    position: relative;
    width: 100vw;
    max-width: 100%;
    height: 130px;
    /* overflow: hidden; */
    white-space: nowrap;
    opacity: .3;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #ffffff;
    font-size: 100px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    color: transparent;
}

.Why-Us {
    background: #ffe0fd;
    background: linear-gradient(90deg, rgba(255, 224, 253, 1) 0%, rgba(227, 231, 255, 1) 50%, rgba(230, 255, 255, 1) 100%);
}

.slide2 {
    /* border: 1px solid #fff; */
    border-radius: 20px;
    padding: 20px;
    margin: 0px;
    /* background: #b6bffa;
    background: linear-gradient(90deg, rgba(182, 191, 250, 1) 0%, rgba(255, 221, 196, 1) 50%, rgba(255, 207, 249, 1) 100%); */
}

/* .header {
    background: #d2d7fc;
    background: linear-gradient(90deg, rgba(210, 215, 252, 1) 0%, rgba(247, 229, 215, 1) 50%, rgba(245, 223, 242, 1) 100%);
} */

.ctr-box {
    bottom: 15px;
    position: absolute;
    right: 0;
}

.box1-ctr {
    padding: 20px 10px !important;
}

.circle {
    border: 1px solid;
    padding: 5px;
    border-radius: 30px;
}

.zoom {
    transition: transform .2s ease-in-out;
    margin: 0 auto;
    border-radius: 30px;
}

.zoom:hover {
    transform: scale(1.1);
    /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}

.WhyUs_tab__UQ4m_:first-child.WhyUs_tabActive__18QR3:before {
    border-left: none;
}

.WhyUs_tab__UQ4m_:first-child:before {
    transform: skew(0deg);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .1);
}

.WhyUs_tabActive__18QR3:after,
.WhyUs_tabActive__18QR3:before {
    border-top: 4px solid #36f;
    background-color: #fff;
    border-bottom: none;
}

.WhyUs_tab__UQ4m_:after,
.WhyUs_tab__UQ4m_:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    border-radius: 4px 0 0 0;
    background: #f5f5f5;
    z-index: -1;
    transform-origin: bottom;
    transform: skew(-18deg);
    border: 1px solid #e4e9f2;
    box-shadow: 10px 7px 12px -5px rgba(0, 0, 0, .1);
    box-sizing: border-box;
}

/* .WhyUs_tabActive__18QR3:after, .WhyUs_tabActive__18QR3:before {
    border-top: 4px solid #36f;
    background-color: #fff;
    border-bottom: none;
}
.WhyUs_tab__UQ4m_:after {
    left: auto;
    right: 0;
    transform: skew(18deg);
    border-radius: 0 4px 4px 0;
    background-color: #f5f5f5;
    border-left: 0;
}
.WhyUs_tab__UQ4m_:after, .WhyUs_tab__UQ4m_:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    border-radius: 4px 0 0 0;
    background: #f5f5f5;
    z-index: -1;
    transform-origin: bottom;
    transform: skew(-18deg);
    border: 1px solid #e4e9f2;
    box-shadow: 10px 7px 12px -5px rgba(0, 0, 0, .1);
    box-sizing: border-box;
} */

/* button#home-tab:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 140%;
    height: 100%;
    border-radius: 4px 0 0 0;
    background: #f5f5f5;
    z-index: -1;
    transform-origin: bottom;
    border-top: 4px solid #186bff;
    box-shadow: 10px 7px 12px -5px rgba(0, 0, 0, .1);
    box-sizing: border-box;
} */

.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
    /* color: #495057;
    background-color: #fff;
    transform: skew(-15deg); */
    border-top: 1px solid #060a2d;
    /* padding: 10px 70px; */
    border-radius: 0px;
}

.WhyUs_tab__UQ4m_:after,
.WhyUs_tab__UQ4m_:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 4px 0 0 0;
    background: #f5f5f5;
    z-index: -1;
    transform-origin: bottom;
    transform: skew(0deg);
    box-sizing: border-box;
}


.nav-tabs .nav-link {
    transform: skew(0deg);
    padding: 10px 70px;
}

section {
    overflow: hidden;
}

.sticky-top .navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: #fff !important;
}

.footer-item .text-dark,
.footer .footer-item a,
.navbar-light .navbar-nav .nav-link {
    color: #ffffff !important;
}

.navbar-light {
    background: #060a2d !important;
}

.slide2 .text-dark {
    color: #000000 !important;
}

.blog,
.Why-Us,
.table-1 {
    padding: 60px 0px !important;
}

.block-ig-tx.d-flex.align-items-center {
    margin-bottom: 50px;
}

.text-secondary1 {
    color: #08cda6;
}

.why-heading {
    font-size: 20px;
}

.display-8 {
    font-size: 25px;
}

/* product-css */
.adv_sec {
    width: 100%;
    padding-top: 20px;
}

.adv_in {
    width: 100%;
    /* padding-top: 60px; */
}

.adv_box1 {
    width: 100%;
    position: relative;
    transition: 0.3s ease-in-out;
    text-align: center;
    margin-bottom: 100px;
    position: relative;
    -webkit-box-shadow: -10px 17px 46px -25px rgba(0, 0, 0, 0.68);
    -moz-box-shadow: -10px 17px 46px -25px rgba(0, 0, 0, 0.68);
    box-shadow: -10px 17px 46px -25px rgba(0, 0, 0, 0.68);
    padding: 15px 5px 15px 0;
    min-height: 270px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.adv_box1 .media h1 {
    /* align-items: center !important;
    display: flex; */
    text-align: left;
    font-size: 60px;
    color: #060a2d1a;
    font-weight: bold;
    top: -40px;
    position: absolute;
}

.adv_box1 img {
    max-width: 100%;
    -webkit-filter: invert(100%);
    filter: invert(100%);
}

/* .adv_box1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0px;
    width: 100%;
    height: 100%;
    background: url(../images/bx.png) no-repeat center center;
    background-size: contain;
    opacity: 0.1;
} */

.adv_in .row .col-12:nth-child(1) .adv_box1 {
    background: #f4bfbf;
    color: #000;
}

.adv_in .row .col-12:nth-child(2) .adv_box1 {
    background: #ffd9c0;
    color: #000;
}

.adv_in .row .col-12:nth-child(3) .adv_box1 {
    background: #faf0d7;
    color: #000;
}

.adv_in .row .col-12:nth-child(4) .adv_box1 {
    background: #8cc0de;
    color: #000;
}

.adv_in .row .col-12:nth-child(5) .adv_box1 {
    background: #effffd;
    color: #000;
}

.adv_in .row .col-12:nth-child(6) .adv_box1 {
    background: #b8fff9;
    color: #000;
}

.adv_in .row .col-12:nth-child(7) .adv_box1 {
    background: #85f4ff;
    color: #000;
}

.adv_in .row .col-12:nth-child(8) .adv_box1 {
    background: #42c2ff;
    color: #000;
}

.adv_in .row .col-12:nth-child(9) .adv_box1 {
    background: #f0ffc2;
}

.adv_box1 .media-body h5 {
    font-size: 25px;
    color: #000;
    font-weight: 500;
    text-align: left;
}

.adv_box1 .media-body p {
    font-size: 15px;
    color: #000;
    text-align: justify;
    text-align: left;
}

.adv_box1 .media {
    align-items: center !important;
}

.adv_box1:hover {
    background: #fff !important;
}

.specra-type {
    color: #000;
    text-align: left;
    margin-bottom: 20px;
    margin-top: 15px;
}

p.size-gd {
    font-size: 14px;
    color: #898989;
    display: -webkit-box;
    /* -webkit-line-clamp: 5; */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.media-body h5 {
    margin-top: 20px;
    margin-top: 13px;
}

#timeline {
    display: flex;
    background-color: #031625;
}

#timeline:hover .tl-item {
    width: 23.3333%;
}

.tl-item {
    transform: translate3d(0, 0, 0);
    position: relative;
    width: 25%;
    height: 100vh;
    min-height: 600px;
    color: #fff;
    overflow: hidden;
    transition: width 0.5s ease;
}

.tl-item:before,
.tl-item:after {
    transform: translate3d(0, 0, 0);
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.tl-item:after {
    background: rgba(3, 22, 37, 0.85);
    opacity: 1;
    transition: opacity 0.5s ease;
}

.tl-item:before {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, black 75%);
    z-index: 1;
    opacity: 0;
    transform: translate3d(0, 0, 0) translateY(50%);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.tl-item:hover {
    width: 100% !important;
}

.tl-item:hover:after {
    opacity: 0;
}

.tl-item:hover:before {
    opacity: 1;
    transform: translate3d(0, 0, 0) translateY(0);
    transition: opacity 1s ease, transform 1s ease 0.25s;
}

.tl-item:hover .tl-content {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.75s ease 0.5s;
}

.tl-item:hover .tl-bg {
    filter: grayscale(0);
}

.tl-content {
    transform: translate3d(0, 0, 0) translateY(25px);
    position: relative;
    z-index: 1;
    text-align: center;
    margin: 0 1.618em;
    top: 55%;
    opacity: 0;
}

.tl-content h1 {
    font-family: "Pathway Gothic One", Helvetica Neue, Helvetica, Arial, sans-serif;
    text-transform: uppercase;
    color: #fff;
    font-size: 1.44rem;
    font-weight: normal;
}

.tl-year {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 1;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
}

.tl-year p {
    font-family: "Pathway Gothic One", Helvetica Neue, Helvetica, Arial, sans-serif;
    font-size: 1.728rem;
    line-height: 0;
    margin-top: 25px;
    margin-bottom: 25px;
}

.tl-bg {
    transform: translate3d(0, 0, 0);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center center;
    transition: filter 0.5s ease;
    filter: grayscale(100%);
}



.center-heading {
    text-align: center;
}

.center-heading .section-title {
    font-weight: 400;
    font-size: 28px;
    color: #3B566E;
    letter-spacing: 1.1px;
    line-height: 38px;
    margin-bottom: 20px;
}

.center-heading.colored .section-title {
    color: #ffffff;
}

.center-text {
    text-align: center;
    font-weight: 400;
    font-size: 16px;
    color: #6F8BA4;
    line-height: 28px;
    letter-spacing: 1px;
    margin-bottom: 50px;
}

.center-text.colored {
    color: #C7E5FF;
}

.center-text p {
    margin-bottom: 30px;
}

.services-small-item {
    display: block;
    background: #fff;
    box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.06);
    border-radius: 5px;
    padding: 20px 28px;
    text-align: center;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    position: relative;
    z-index: 2;
    margin-bottom: 30px;
    height: 100%;
}

.services-small-item:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    border-radius: 5px;
    background-image: linear-gradient(135deg, #80d0c7 0%, #13547a 100%);
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    opacity: 0;
}

.services-small-item.active:before,
.services-small-item:hover:before {
    opacity: 1;
}

.services-small-item.active .icon:before,
.services-small-item:hover .icon:before {
    opacity: .26;
}

.services-small-item.active .icon i,
.services-small-item:hover .icon i {
    background: -webkit-linear-gradient(#fff, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services-small-item.active .services-title,
.services-small-item:hover .services-title {
    color: #ffffff;
}

.services-small-item.active p,
.services-small-item:hover p {
    color: #ffffff;
}

.services-small-item.active .button i,
.services-small-item:hover .button i {
    background-image: linear-gradient(135deg, #fff 0%, #fff 100%) !important;
    color: #2b708b !important;
}

.services-small-item:hover {
    margin-top: -15px;
}

.services-small-item .icon {
    width: 139px;
    height: 90px;
    margin: auto;
    position: relative;
    /* margin-bottom: 20px; */
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}


.services-small-item .icon i {
    display: block;
    height: 67px;
    line-height: 67px;
    position: absolute;
    width: 100%;
    top: 22px;
    z-index: 2;
    font-size: 28px;
    background-image: linear-gradient(135deg, #80d0c7 0%, #09334b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.services-small-item .services-title {
    font-weight: 400;
    line-height: 26px;
    font-size: 16px;
    color: #3B566E;
    letter-spacing: 0.7px;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.services-small-item p {
    font-weight: 400;
    font-size: 15px;
    color: #6F8BA4;
    letter-spacing: 0.88px;
    line-height: 26px;
    position: relative;
    z-index: 2;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    margin-bottom: 30px;
}

.services-small-item .button {
    position: relative;
    z-index: 2;
}

.services-small-item .button i {
    width: 42px;
    height: 42px;
    background-image: linear-gradient(135deg, #80d0c7 0%, #13547a 100%);
    line-height: 42px;
    text-align: center;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
    color: #fff;
    padding-left: 3px;
}

.services-small-item:hover+.item-bg {
    bottom: 30px;
}

p.fs-2.fw-bold.text-uppercase.mb-0 {
    font-size: 25px !important;
    letter-spacing: 1px;
    font-weight: 300 !important;
    text-align: left;
}

.process-img {
    background-image: url('../img/advanced-professional.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding-top: 80px !important;
}

.process-img::before {
    position: absolute;
    content: "";
    inset: 0;
    background-color: #05092880;
}

.feature .process-img {
    position: relative;
}

.bg-light-1 {
    background: #f0f8ff9e;
    height: 100%;
}

.service-content1 h4 {
    width: 240px;
    margin: auto;
}

.section-padding {
    margin-bottom: 60px;
}

.spdd {
    margin-top: 100px !important;
}

.section-space {
    padding: 60px 0px !important;
}

.service-bt-banner {
    background-image: url('../img/servic-baner.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 50vh;
    background-attachment: fixed;
}

.section-height {
    padding: 60px 0px;
}

.policy {
    max-width: 900px;
    margin: auto;
    padding-bottom: 70px;
}

button.btn.view {
    background: #060a2d;
    color: #fff;
    font-weight: 200;
    border-radius: 5px;
    width: 100px;
}

.blog-wrap.bg-gray {
    background: #f9f9f9;
    padding: 50px 0px;
    max-width: 1200px;
    margin: auto;
}

.btn-main {
    background: #060a2d;
    color: #fff;
    transition: all 0.2s ease;
    font-weight: 100;
    letter-spacing: 1px;
    padding: 10px 20px;
}

.btn-main:hover {
    background: #ffffff;
    color: #060a2d;
    border: 1px solid;
}

.btn-main:focus {
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(0, 0, 0, 0.048);
}

img.blog-ic {
    width: 20px;
    margin: 0px 10px;
}

.tags a {
    background: #f5f8f9;
    display: inline-block;
    padding: 8px 23px;
    border-radius: 38px;
    margin-bottom: 10px;
    border: 1px solid #eee;
    font-size: 14px;
    text-transform: capitalize;
}

b.blog-st {
    font-weight: 500;
    letter-spacing: 0.6px;
}

.link-style:hover {
    color: #08cda6 !important;
}

.form-control:focus {
    color: #757575;
    background-color: #fff;
    border-color: #dfdfdf;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(206, 206, 206, 0.25);
}

.blog-content {
    height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

button.btn1.py-1.px-3 {
    border: 1px solid #08c7a1;
    margin-top: 10px;
    font-size: 15px;
}

.address-f i {
    color: #fff;
}

.address-f {
    display: flex;
}

.address-f i {
    margin-top: 12px;
}

.form-control {
    background-color: transparent;
}

.youtube-close {
    position: absolute;
    right: -30px;
    top: 0;
    z-index: 999;
    font-size: 2rem;
    font-weight: normal;
    color: #fff;
    opacity: 1;
    background: transparent;
    border: 0;
}

.embed-responsive {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
}

.embed-responsive .embed-responsive-item,
.embed-responsive embed,
.embed-responsive iframe,
.embed-responsive object,
.embed-responsive video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.embed-responsive::before {
    display: block;
    content: "";
}

.embed-responsive-16by9::before {
    padding-top: 56.25%;
}


.loader {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background: transparent;
    margin: 30px auto 0 auto;
    border: solid 2px #424242;
    border-top: solid 2px #1c89ff;
    border-radius: 50%;
    opacity: 0;
}

.check {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translate3d(-4px, 50px, 0);
    opacity: 0;
}

.check span:nth-child(1) {
    display: block;
    width: 10px;
    height: 2px;
    background-color: #fff;
    transform: rotate(45deg);
}

.check span:nth-child(2) {
    display: block;
    width: 20px;
    height: 2px;
    background-color: #fff;
    transform: rotate(-45deg) translate3d(14px, -4px, 0);
    transform-origin: 100%;
}

.loader.active {
    -webkit-animation: loading 2s ease-in-out;
    animation: loading 2s ease-in-out;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.check.active {
    opacity: 1;
    transform: translate3d(-4px, 4px, 0);
    transition: all 0.5s cubic-bezier(0.49, 1.74, 0.38, 1.74);
    transition-delay: 0.2s;
}

@-webkit-keyframes loading {
    30% {
        opacity: 1;
    }

    85% {
        opacity: 1;
        transform: rotate(1080deg);
        border-color: #262626;
    }

    100% {
        opacity: 1;
        transform: rotate(1080deg);
        border-color: #1c89ff;
    }
}

@keyframes loading {
    30% {
        opacity: 1;
    }

    85% {
        opacity: 1;
        transform: rotate(1080deg);
        border-color: #262626;
    }

    100% {
        opacity: 1;
        transform: rotate(1080deg);
        border-color: #1c89ff;
    }
}


#pageloader {
    background: rgba(255, 255, 255, 0.8);
    display: none;
    height: 100%;
    position: fixed;
    width: 100%;
    z-index: 9999;
}

#pageloader img {
    left: 50%;
    margin-left: -32px;
    margin-top: -32px;
    position: absolute;
    top: 50%;
}

#response {
    font-size: 16px;
    color: green !important;
    border: 1px solid green;
    text-align: center;
    padding: 10px;
    font-weight: 600;
    /* margin-top: 48px; */
    display: none;
    background: #fff;
}

#alert {
    font-size: 16px;
    color: Red !important;
    border: 1px solid Red;
    text-align: center;
    padding: 10px;
    font-weight: 600;
    display: none;
}

.choose-fl {
    background-color: #fff !important;
}