/********** Template CSS **********/
:root {
    --primary: #4294E3;
    --secondary: #8F12FD;
    --light: #F0F6FF;
    --dark: #262B47;
}


/*** 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;
}


/*** Heading ***/
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;
}


/*** Gradient Text & BG ***/
.text-primary-gradient {
    background: #000000;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
    text-align: center;
}

.text-secondary-gradient {
    background: #000000;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
}

.bg-primary-gradient {
    background: linear-gradient(to bottom right, #4e0405, #dc3545);
}

.bg-secondary-gradient {
    background: linear-gradient(to bottom right, #4e0405, #dc3545);
}


/*** Button ***/
.btn {
    transition: .5s;
}

.btn.btn-primary-gradient,
.btn.btn-secondary-gradient {
    position: relative;
    overflow: hidden;
    border: none;
    color: #FFFFFF;
    font-weight: 500;
    font-size: 18px;
    z-index: 1;
}

.btn.btn-primary-gradient::after,
.btn.btn-secondary-gradient::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: .5s;
    z-index: -1;
    opacity: 0;
}

.btn.btn-primary-gradient,
.btn.btn-secondary-gradient::after {
    background: linear-gradient(to bottom right, #4e0405, #dc3545);
}

.btn.btn-secondary-gradient,
.btn.btn-primary-gradient::after {
    background: linear-gradient(to bottom right, #4e0405, #dc3545);
}

.btn.btn-primary-gradient:hover::after,
.btn.btn-secondary-gradient:hover::after {
    opacity: 1;
}

.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: normal;
    border-radius: 50px;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
    border: none;
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
}


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 25px;
    padding: 45px 0;
    font-family: 'Jost', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--light) !important;
    outline: none;
    transition: .5s;
}

.navbar-light .navbar-nav .nav-link::before {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    border: 10px solid;
    border-color: var(--light) transparent transparent transparent;
    transition: .5s;
}

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

.navbar-light .navbar-nav .nav-link:hover::before,
.navbar-light .navbar-nav .nav-link.active::before {
    top: 0;
}

.navbar-light .navbar-brand h1 {
    color: #FFFFFF;
}

.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: #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(--dark) !important;
    }

    .navbar-light .navbar-nav .nav-link::before {
        display: none;
    }

    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link.active {
        color: var(--primary) !important;
    }

    .navbar-light .navbar-brand h1 {
        background: linear-gradient(to bottom right, var(--primary), var(--secondary));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

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

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: #FFFFFF;
    }

    .sticky-top.navbar-light .navbar-nav .nav-link::before {
        border-top-color: var(--primary);
    }

    .sticky-top.navbar-light .navbar-brand h1 {
        background: linear-gradient(to bottom right, var(--primary), var(--secondary));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
}


/*** Hero Header ***/
.hero-header {
    margin-bottom: 6rem;
    padding: 16rem 0 0 0;
    background:
        url(../bg-circle.html),
        url(../bg-triangle.html),
        url(../bg-bottom.html),
        linear-gradient(to bottom right, var(--primary), var(--secondary));
    background-position:
        left 0px top 0px,
        right 0px top 50%,
        center bottom;
    background-repeat: no-repeat;
}

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


/*** Feature ***/
.feature-item {
    transition: .5s;
    box-shadow: 0px 10px 10px 0px rgb(34 32 31);
}

.feature-item:hover {
    margin-top: -15px;
    box-shadow: 0px 10px 10px 0px rgb(34 32 31);
}


/*** Pricing ***/
.pricing .nav {
    padding: 2px;
}

.pricing .nav-link {
    padding: 12px 30px;
    font-weight: 500;
    color: var(--dark);
    background: #FFFFFF;
}

.pricing .nav-item:first-child .nav-link {
    border-radius: 30px 0 0 30px;
}

.pricing .nav-item:last-child .nav-link {
    border-radius: 0 30px 30px 0;
}

.pricing .nav-link.active {
    color: #FFFFFF;
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
}


/*** Screenshot ***/
.screenshot-carousel {
    position: relative;
    width: 253px;
    height: 500px;
    padding: 15px;
    margin-right: 30px;
}

.screenshot-carousel::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(../screenshot-frame.html) center center no-repeat;
    background-size: 253px 500px;
    z-index: 1;
}

.screenshot-carousel .owl-item img {
    position: relative;
    width: 223px;
    height: 470px;
}

.screenshot-carousel .owl-dots {
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.screenshot-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 5px 0;
    width: 15px;
    height: 15px;
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
    border-radius: 15px;
    transition: .5s;
}

.screenshot-carousel .owl-dot::after {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    top: 5px;
    left: 5px;
    background: #FFFFFF;
    border-radius: 5px;
}

.screenshot-carousel .owl-dot.active {
    box-shadow: 0 0 10px var(--dark);
}


/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: linear-gradient(to bottom right, #4e0405, #dc3545);
}

.testimonial-carousel .owl-item.center .testimonial-item h5,
.testimonial-carousel .owl-item.center .testimonial-item p {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: linear-gradient(to bottom right, #4e0405, #dc3545);
    border-radius: 60px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: linear-gradient(to bottom right, #4e0405, #dc3545);
}


/*** Footer ***/
.footer {
    margin-top: 0rem;
    padding-top: 2rem;
    /* background:
        url(../img/bg-circle.png),
        url(../img/bg-triangle.png),
        url(../img/bg-top.png),
        linear-gradient(to bottom right, #4e0405, #dc3545); */
    background-position: 100% 100%;
    background-color: #000000;
        
    background-repeat: no-repeat;
}

.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: normal;
    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;
}

.footer .copyright {
    padding: 15px 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;
}


/* add extra css */

.top-sec {
    font-family: 'Lato', sans-serif;
    /* border-top: 3px dashed #cb0100;
    border-bottom: 3px dashed #d00000; */
    font-size: 20px;
    font-weight: 700;
    background: #250565;
    color: #fff;
}

.top-sec-1{
    display: flex;
}
.top-num1 ul {
    margin: 0 !important;
   
}
.top-num1{
    display: flex;
    justify-content: center;
}
.top-num1 ul li {
    display: inline-block;
    padding: 8px 8px 8px;
    text-transform: capitalize;
    font-size: 22px;
    color: #fff;
    font-family: 'Keania One', cursive;
    
}
.top-num1 ul li i {
    color: #fff;
    font-size: 22px;
    padding: 0 6px 0 0;
}

.top-line1 {
    text-transform: capitalize;
    text-align: center;
    color: #fff;
    font-size: 18px;
    padding: 10px 0;
    display: inline-block;
    font-family: 'Keania One', cursive;
}
.top-line {
    padding: 0px;
}
@media (max-width: 768px){
.top-num1 ul {
    padding: 0;
    text-align: center;
}
.top-sec-1{
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.top-line1{
    display: ;
    font-family: 'DM Sans Merlin';
}


}
@media (max-width: 425px){
    .top-num1 ul {
        padding: 0;
        display: none;
    }
  
}

.bot-sec {
    float: left;
    width: 100%;
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    background: #BE1E2D;
    color: #fff;
    text-transform: uppercase;
    padding-top: 5px;
    font-family: math;
    /* border-top: 3px dashed #cb0100;
    border-bottom: 3px dashed #d00000; */
    letter-spacing: 1px;
}

/* best services start */
.contact_us {
    border-bottom: 4px solid #000;
    border-radius: 20px;
    padding: 8px 20px;
    background-color: #ffc702;
    color: #000;
    font-size: 19px;
    font-weight: 600;
}
.contact_us:hover{
    color: #000;
}

#about {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
}
#about h2 {
    color: #BE1E2D !important;
    margin-bottom: 20px !important;
}
#about h2,
#about h3,
#about h4,
#about h5 {
    color: #BE1E2D !important;
    margin-bottom: 20px !important;
}
#about p {
    text-align: justify;
    color: #000000;
    font-size: 17px;
}
#about ul li {
    color: #000;
}
#feature {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
}
#feature h1 {
    margin-bottom: 40px !important;
    color: #be1e2d;
}
#feature h5 {
    font-size: 25px;
    background-color: #be1e2d;
    padding: 7px 0px;
    color: #ffffff;
}
#feature p {
    color: #000000;
    text-align: center;
    font-size: 18px;
}
#feature .btn-s {
    text-align: center;
    margin: 20px;
}
#feature .feature-item {
    background-color: #ffffff;
}
.awards {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
}
.awards h1 {
    margin-bottom: 40px !important;
    color: #be1e2d;
}
#pricing {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
}
#pricing h1 {
    margin-bottom: 40px !important;
    color: #be1e2d;
}
#review {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
}
#review h1 {
    margin-bottom: 40px !important;
    color: #be1e2d;
}
.rez {
    font-size: 17px;
    color: #000000;
    font-weight: 500;
}
#counter {
    padding-top: 60px !important;
    padding-bottom: 20px !important;
}
#counter i {
    font-size: 70px;
}
#counter h2 {
    color: #BE1E2D !important;
    font-size: 50px;
}
#counter p {
    font-size: 18px;
    color: #000000;
    font-weight: 500;
    font-family: "Jost", sans-serif;
}
.logo1 {
    padding: 15px 15px !important;
}

.m-b15 {
    margin-bottom: 15px;
}
.m-t30 {
    margin-top: 30px;
}



@keyframes pulsate {
    0% {
        transform: scale(0.9, 0.9);
        opacity: 1;
    }

    50% {
        transform: scale(1.2, 1.2);
        opacity: 1;
    }

    100% {
        transform: scale(0.9, 0.9);
        opacity: 1;
    }
}

@keyframes callb {
    0% {
        transform: scale(0.9);
    }

    20% {
        transform: scale(1);
    }

    40% {
        transform: scale(1.1);
    }

    60% {
        transform: scale(1.2);
    }

    80% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1.4);
    }
}

@keyframes calla {
    0% {
        box-shadow: 0px 0px 0px 4px rgba(162, 162, 162, 0.8);
    }

    20% {
        box-shadow: 0px 0px 0px 6px rgba(162, 162, 162, 0.6);
    }

    40% {
        box-shadow: 0px 0px 0px 8px rgba(162, 162, 162, 0.4);
    }

    60% {
        box-shadow: 0px 0px 0px 10px rgba(162, 162, 162, 0.2);
    }

    80% {
        box-shadow: 0px 0px 0px 12px rgba(162, 162, 162, 0.1);
    }

    100% {
        box-shadow: 0px 0px 0px 14px rgba(162, 162, 162, 0);
    }
}

.fix {
    display: block;
}

.fixed {
    position: fixed;
    padding: 0px;
    bottom: 20px;
    left: 0;
    right: 0;
    background: transparent;
    /* /border-top: 1px solid #e2e2e2;
/display: none;
/; */
}

.ff5 {
    padding: 0px;
}

.end {
    margin: 0;
    padding: 0;
    text-align: center;
}

.end li {
    display: inline;
    text-align: left;
    list-style: none;
    position: absolute;
    text-align: center;
    height: 60px;
    bottom: 10px;
    width: 60px;
    border-radius: 1px solid #000;
    animation-name: calla;
    animation-duration: 0.8s;
    animation-iteration-count: infinite;
    background: #df0505;
    line-height: 60px;
    border-radius: 50%;
}

.ph-fx {
    left: 20px;
}

.end li a {
    text-decoration: none;
    position: absolute;
    z-index: 9;
    margin: 0 auto;
    left: 0;
    right: 0;
}

.ph-fx a i {
    color: #fff !important;
}

.end li a i {
    font-size: 34px;
    animation: pulsate 1s ease-out;
    animation-iteration-count: infinite;
    -webkit-animation: pulsate 1s ease-out;
    animation-iteration-count: 1;
    -webkit-animation-iteration-count: infinite;
    display: block;
    height: 30px;
    width: 32px;
    line-height: 57px;
    color: #fff;
    margin: 0 auto;
    z-index: 99;
}

.end li {
    display: inline;
    text-align: left;
    list-style: none;
    position: absolute;
    text-align: center;
    height: 60px;
    bottom: 10px;
    width: 60px;
    border-radius: 1px solid red;
    animation-name: calla;
    animation-duration: 0.8s;
    animation-iteration-count: infinite;
    background: red;
    line-height: 60px;
    border-radius: 50%;
}

.wh-fx {
    right: 20px;
    background: #1d9c13 !important;
}

.end li a {
    text-decoration: none;
    position: absolute;
    z-index: 9;
    margin: 0 auto;
    left: 0;
    right: 0;
}

.end li a i {
    font-size: 34px;
    animation: pulsate 1s ease-out;
    animation-iteration-count: infinite;
    -webkit-animation: pulsate 1s ease-out;
    animation-iteration-count: 1;
    -webkit-animation-iteration-count: infinite;
    display: block;
    height: 30px;
    width: 32px;
    line-height: 50px;
    color: #fff;
    margin: 0 auto;
    z-index: 99;
}