:root {
    --primary: #de3535;
    --secondary: #FBA504;
    --light: #F6F4F9;
    --dark: #04000B
}

#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
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99
}

h1,
h2,
.fw-bold {
    font-weight: 700 !important
}

h3,
h4,
.fw-semi-bold {
    font-weight: 600 !important
}

h5,
h6,
.fw-medium {
    font-weight: 500 !important
}

.btn {
    font-weight: 500;
    transition: .5s
}

.btn:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, .5)
}

.btn-square {
    width: 38px;
    height: 38px
}

.btn-sm-square {
    width: 32px;
    height: 32px
}

.btn-lg-square {
    width: 48px;
    height: 48px
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    border-radius: 50px
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f067";
    font-family: "font awesome 5 free";
    font-size: 10px;
    font-weight: 700;
    vertical-align: middle;
    margin-left: 8px
}

.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    font-family: jost, sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #000000!important;
    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(--secondary) !important
}

.navbar-light .navbar-brand h1 {
    color: #fff
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px
}

@media(max-width:991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: #fff
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #ddd
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--dark) !important
    }

    .navbar-light .navbar-brand h1 {
        color: var(--primary)
    }

    .navbar-light .navbar-brand img {
        max-height: 45px
    }
}

@media(min-width:992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
            background: #fff;
    }

    .sticky-top.navbar-light {
        position: fixed;
        background: #fff
    }

    .sticky-top.navbar-light .navbar-brand h1 {
        color: var(--primary)
    }

    .navbar-light .navbar-nav .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s
    }

    .navbar-light .navbar-nav .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1
    }

    .navbar-light .btn {
        color: var(--dark);
        background: #fff
    }

    .sticky-top.navbar-light .btn {
        color: var(--dark);
        background: var(--secondary)
    }
}

.hero-header {
    margin-bottom: 6rem;
    padding: 8rem 0;
    background: url(../img/blob-top-left.png), url(../img/blob-top-right.png), url(../img/blob-bottom-left.png), url(../img/blob-bottom-right.png), url(../img/blob-center.png), url(../img/bg-bottom.png);
    background-position: left 0 top 0, right 0 top 0, left 0 bottom 0, right 0 bottom 0, center center, center bottom;
    background-repeat: no-repeat;
    /*background-size: 100%;*/
}

@media(max-width:991.98px) {
    .hero-header {
        padding: 6rem 0 9rem
    }
}

.section-title {
    position: relative;
    display: flex;
    align-items: center;
    font-weight: 500;
    text-transform: uppercase
}

.section-title span:first-child,
.section-title span:last-child {
    position: relative;
    display: inline-block;
    margin-right: 30px;
    width: 30px;
    height: 2px
}

.section-title span:last-child {
    margin-right: 0;
    margin-left: 30px
}

.section-title span:first-child::after,
.section-title span:last-child::after {
    position: absolute;
    content: "";
    width: 15px;
    height: 2px;
    top: 0;
    right: -20px
}

.section-title span:last-child::after {
    right: auto;
    left: -20px
}

.section-title.text-primary span:first-child,
.section-title.text-primary span:last-child,
.section-title.text-primary span:first-child::after,
.section-title.text-primary span:last-child::after {
    background: var(--primary)
}

.section-title.text-secondary span:first-child,
.section-title.text-secondary span:last-child,
.section-title.text-secondary span:first-child::after,
.section-title.text-secondary span:last-child::after {
    background: var(--secondary)
}

.section-title.text-white span:first-child,
.section-title.text-white span:last-child,
.section-title.text-white span:first-child::after,
.section-title.text-white span:last-child::after {
    background: #fff
}

.feature-item {
    transition: .5s
}

.feature-item:hover {
    margin-top: -15px
}

.progress {
    height: 5px
}

.progress .progress-bar {
    width: 0;
    transition: 3s
}

.fact {
    margin: 6rem 0;
    background: url(../img/blob-top-left.png), url(../img/blob-top-right.png), url(../img/blob-bottom-left.png), url(../img/blob-bottom-right.png), url(../img/blob-center.png);
    background-position: left 0 top 0, right 0 top 0, left 0 bottom 0, right 0 bottom 0, center center;
    background-repeat: no-repeat
}

.service-item {
    position: relative;
    padding: 45px 30px;
    background: var(--light);
    overflow: hidden;
    transition: .5s
}

.service-item:hover {
    margin-top: -15px;
    padding-bottom: 60px;
    background: var(--primary)
}

.service-item .service-icon {
    margin: 0 auto 20px;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    background: url(../img/blob-primary.png) center center no-repeat;
    background-size: contain;
    transition: .5s
}

.service-item:hover .service-icon {
    color: var(--dark);
    background: url(../img/blob-secondary.png) center center no-repeat;
    background-size: contain
}

.service-item h5,
.service-item p {
    transition: .5s
}

.service-item:hover h5,
.service-item:hover p {
    color: #fff
}

.service-item a.btn {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary);
    background: #fff;
    border-radius: 40px 40px 0 0;
    transition: .5s;
    z-index: 1
}

.service-item a.btn:hover {
    color: var(--dark);
    background: var(--secondary)
}

.service-item:hover a.btn {
    bottom: 0
}

#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    transition: .5s;
    border-bottom: 2px solid transparent
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
    color: var(--primary);
    border-color: var(--primary)
}

.portfolio-item img {
    transition: .5s
}

.portfolio-item:hover img {
    transform: scale(1.1)
}

.portfolio-item .portfolio-overlay {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(98, 34, 204, .9);
    transition: .5s;
    opacity: 0
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1
}

.newsletter {
    margin: 6rem 0;
    background: url(../img/blob-top-left.png), url(../img/blob-top-right.png), url(../img/blob-bottom-left.png), url(../img/blob-bottom-right.png), url(../img/blob-center.png);
    background-position: left 0 top 0, right 0 top 0, left 0 bottom 0, right 0 bottom 0, center center;
    background-repeat: no-repeat
}

.testimonial-carousel .testimonial-item {
    padding: 0 30px 30px
}

.testimonial-carousel .owl-nav {
    display: flex;
    justify-content: center
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: var(--light);
    border-radius: 60px;
    font-size: 22px;
    transition: .5s
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #fff;
    background: var(--primary);
    box-shadow: 0 0 10px rgba(0, 0, 0, .5)
}

.team-item .btn {
    color: var(--primary);
    background: #fff
}

.team-item .btn:hover {
    color: #fff;
    background: var(--primary)
}

.footer {
    margin-top: 6rem;
    padding-top: 9rem;
    background: url(../img/bg-top.png), url(../img/map.png);
    background-position: center top, center center;
    background-repeat: no-repeat;
    background-size: 100%;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgba(256, 256, 256, .1);
    border-radius: 40px;
    transition: .3s
}

.footer .btn.btn-social:hover {
    color: var(--primary)
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: 400;
    transition: .3s
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "font awesome 5 free";
    font-weight: 900;
    margin-right: 10px
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
    color: var(--secondary)
}

.footer .copyright {
    padding: 25px 0;
    font-size: 14px;
    border-top: 1px solid rgba(256, 256, 256, .1)
}

.footer .copyright a {
    color: var(--light)
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1)
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none
}

.footer .copyright a:hover,
.footer .footer-menu a:hover {
    color: var(--secondary)
}

.sdetail img {
    padding: 10px;
    background: #fff;
    box-shadow: 0px 10px 10px 0px #c6c6c6;
    border-radius: 10px;
}
.toke-text {
    background: #6222cc;
    padding: 10px;
    color: #fff;
}
.token-img{
	object-fit: cover;
	height: 250px;
}
.toke-text h3 {
    color: #fff;
}

.pricing_dsc {
        padding: 20px;
        text-align: center;
        box-shadow: 0px 10px 10px 0px #c6c6c6;
        margin-top: 50px;
        transition: .5s;
        border-top: 4px solid #6222cc;
    }
    .pricing_dsc:hover{
        margin-top: 30px;
        transition: .5s;
    }
    .top_dsc_text h3 {
    font-size: 25px;
    color: #fba504;
    text-transform: uppercase;
    font-weight: 800 !important;
}
.innerprice ul {
    list-style: none;
    padding: 0px;
    margin-top: 30px;
    font-size: 15px;
    line-height: 2;
}
.top_dsc_text {
    font-weight: 500;
    font-size: 14px;
}
.pricing_dsc a{
    color: var(--dark);
    transition: .5s;
    background: var(--secondary);
}
.pricing_dsc a:hover{
    color: #fff;
    transition: .5s;
}
.form-title {
    background: #fba504;
    padding: 10px;
    text-align: center;
}
.form-outer {
    background: #fff;
    border-top: 11px solid #6222cc;
    box-shadow: 0px 10px 10px 0px #c6c6c6;
}
.enform {
    padding: 20px;
}
.enform label  {
    margin-top: 10px;
}

/*CUSTOM CSS*/
.swiper {
      width: 100%;
      height: 100%;
    }

    .swiper-slide {
      text-align: center;
      font-size: 18px;
      display: flex;
      justify-content: center;
      align-items: center;
    }
/*
    .swiper-slide img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
*/
    .swiper {
      margin-left: auto;
      margin-right: auto;
    }

.iconcs img{
    max-width: 80px;
    margin-bottom: 20px;
}

.slinner {
    display: flex;
    align-items: center;
    margin-bottom: 10px; 
}
.slinner h5 {
    margin: 0px 5px;
    font-size: 18px;
    color: #fff;
    font-weight: 800;
}
.slinner span {
    color: #fff;
    font-size: 14px;
}
.sllistbtm ul {
    list-style: none;
    padding: 0;
    color: #fff;
    display: flex;
    justify-content: space-between;
}
.sllistbtm ul li {
    margin-right: 50px;
    font-weight: 500;
    font-size: 18px;
}
.nav-rt{
    margin-right: unset !important; 
}
.owl-prev, .owl-next{
    line-height: 0!important;
} 
.cardbox p {
    margin: 0;
    padding: 20px;
    font-size: 20px;
}
.cardbox:hover {
    box-shadow: 0px 0px 10px 0px #e5dddd;
    cursor: pointer;
    transition: 0.3s all ease;
}
.slpouter {
    background: #de3535;
    color: #fff;
}   
.slpouter h4 {
    color: #fff;
    font-size: 25px;

}

.moblayout{
    text-align: center;
    z-index: 3;
    position: relative;
    display: inline-block;
}
.moblayout img{
    max-width: 100%;
    text-align: center;
    width: auto;
    display: inline-block;
}
.moblayoutsl{
        max-width: 330px;
    margin: auto;
    position: absolute;
    bottom: 0px;
    left: 12px;
    z-index: 5;
}
.moblayoutsl img{
    max-width: 100%;
    text-align: center;
    width: auto;
    display: inline-block;
}

.prnouter{
    /*background:linear-gradient(58deg, rgba(234, 248, 255, 0.5) 0%, rgba(178, 215, 250, 0.38) 39.83%, rgba(148, 208, 248, 0.25) 100%);*/
}
.prinner{
    padding: 50px;
    border-radius: 20px;
    background:#fff; 
    background-size: 100% 200%;
    /*trasition effect for background*/
    transition: background 0.5s;
}
.sky-bg{
    background:linear-gradient(58deg, rgba(234, 248, 255, 0.5) 0%, rgba(178, 215, 250, 0.38) 39.83%, rgba(148, 208, 248, 0.25) 100%);
}
.prinner p{
    font-size: 14px;
    color: #000;
}
.prinner h2{
    font-size: 40px;
    color: #000;
}
.prinner h3{
    color: #000;
}
.prinner ul{
    list-style: none;
    padding: 0px;
}
.prinner ul li{
    line-height: 2;
    color: #000;
}
.prinner ul li i{
    color: #ffdd9e;
    margin-right: 5px;
}   
.prinner:hover{
    color: #fff;
    cursor: pointer;

    background: linear-gradient(140deg, #ff4f4f 0%, #de3535 50%, #ec4856 75%);
    transition: 0.5s all ease;
}
.prinner:hover p, .prinner:hover h3, .prinner:hover h2, .prinner:hover ul li{
    color: #fff;
}
.prinner:hover {
  background-position: 100% 100%;
}
.prinner del {
    color: #fff;
    font-size: 25px;
    font-weight: 500;
}
.prnouter .nav {
    background: #fff;
    padding: 10px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.prnouter .nav button{
    padding: 10px 50px;
    border-radius: 40px;
}
.prnouter button:hover{
    color: #000;
}
.finreport {
    padding: 30px;
    background: antiquewhite;
    border-radius: 30px;
}
.prreport {
    padding: 30px;
    background: aliceblue;
    border-radius: 30px;
}
.finreport h3, .prreport h3{
    font-size: 36px
}

.easysteps {
    text-align: center;
}
.easysteps img {
    width: 50px;
    margin-bottom: 15px
}
.enqimg img{
    width: 100%
}
.enform input {
    padding: 15px;
    margin: 20px;
}