/********** Template CSS **********/
:root {
    --primary:   #25b760;
    --secondary: #205234;
    --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: linear-gradient(to bottom right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-secondary-gradient {
    background: linear-gradient(to bottom right, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-primary-gradient {
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
}

.bg-secondary-gradient {
    background: linear-gradient(to bottom right, var(--secondary), var(--primary));
}


/*** Button ***/
.btn {
    transition: .5s;
}

.btn.btn-primary-gradient,
.btn.btn-secondary-gradient {
    position: relative;
    overflow: hidden;
    border: none;
    color: #FFFFFF;
    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, var(--primary), var(--secondary));
}

.btn.btn-secondary-gradient,
.btn.btn-primary-gradient::after {
    background: linear-gradient(to bottom right, var(--secondary), var(--primary));
}

.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-dark .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(--primary) !important;
    outline: none;
    transition: .5s;
}
.navbar-dark .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(--primary) transparent transparent transparent;
    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: 50px;
}
/* Reset default margin and padding */
body, html {
  margin: 0;
  padding: 0;
}

/* Set the maximum width for the content container to 32 inches on wide screens */
.container {
  max-width: 32in;
  margin: 0 auto; /* Center the content horizontally */
}



pd-top-40{
    padding-top: 20px;
}





.hero-inner-container{
    /*width: 100vw;*/
    padding: 0px 10px;
    padding-top: 100px;
    display: flex;
    max-width: 1300px;
    border: 1px solid red;
    flex-direction: row;
    justify-content: space-between;
    margin: 0px auto;
}
.hero-text-container,
.hero-media-container{
    max-width: 550px;
    /*border: 1px solid black;*/
}
.hero-media-container{
    border: 1px solid red;
}
.hero-text-container{
    margin-top: 70px;
    padding: 25px;
}

.img-box{
    /*border: 1px solid red;*/
    overflow: hidden;
}

.img-box img{
    width: 100%;
    scale: 0.87;
}



.infor-section-container{
    height: 500px;
    /*border: 1px solid blue;*/
    width: 100wv;
    overflow: hidden;
    position: relative;
    margin-bottom: 30px;
}
/*** bg-img-carousel-container ***/
.infor-section-inner-container{
    position: relative;
}
.infor-box{
    position: relative;
    left: 70px;
    /*border: 1px solid red;*/
}


.bg-img-carousel-container{
    z-index: 0;
    position: absolute;
    /*float: right;*/
    top: 0px;
    right: 0px;
    width: 50%;
    /*border: 1px solid black;*/
    overflow: hidden;
    height: 500px;
    
}
.bg-img-carousel{
    position: relative;
    width: 100%;
    height: 100%;
    /*background: red;*/
    height: 500px;
}
.cover-img,
.cover-img img{
    background: black;
    width: 100%;
    height: 100%;
    height: 500px;
    object-fit: cover;
}
.infor-text-container{
    /*background: orange;*/
    position: relative;
    z-index: 2;
    /*border: 1px solid red;*/
    width: 100%;
    left: 0px;
    top: 0px;
    height: 500px;
 background: rgb(25,157,78);
background: linear-gradient(90deg, rgba(25,157,78,1) 0%, rgba(37,183,96,1) 7%, rgba(37,183,96,1) 60%, rgba(255,255,255,0.4528011033514968) 82%, rgba(255,255,255,0) 100%); 
}

.large-nav-container{
    background: #fff;
    position: relative;
}


.feature-item-bg>h5{
    color:#fff !important;
}
.feature-item-bg>p{
    color:#fff !important;
}


.footer .footer-link {
    color: rgba(255,255,255,0.8);
}


@media screen and (max-width: 992px){
    
    .infor-text-container,
    .infor-section-container{
        height: 500px;
    }
    .infor-text-container{
            
    background: rgb(25,157,78);
    background: linear-gradient(0deg, rgba(25,157,78,1) 0%, rgba(37,183,96,1) 7%, rgba(37,183,96,1) 40%, rgba(255,255,255,0.4528011033514968) 72%, rgba(255,255,255,0) 100%); 
    }
    .bg-img-carousel-container{
        /*top: auto;*/
        /*bottom: 0px;*/
        height: 500px;
        width: 100%;
    }
    
    .infor-box{
        display: flex;
        align-items: end;
        height: calc(100% - 55px);
        top: auto;
        bottom: 0px;
    }
    .bg-img-carousel{
        
        height: 100%;
        width: 100%;
    }
    .marquee-container{
        position: relative;
        background: rgb(0,0,0);
        background: linear-gradient(180deg, rgba(0,0,0,0.4471988624551383) 0%, rgba(0,0,0,0.10224072539171902) 72%, rgba(0,0,0,0.0074229520909926405) 100%);   
    }


    .infor-box{
        left: 0px;
    }
    .hero-inner-container{
        flex-direction: column;
        padding-top: 10px;
        /*border: 1px solid black;*/
    }
    .hero-text-container,
    .hero-media-container{
        /*width: unset;*/
        max-width: 600px;
        /*border: 1px solid black;*/
        margin: 40px auto;
        margin-bottom: 0px;
    }
    .hero-media-container{
        padding-top: 40px;
    }
}


/* Add the rest of the original styles from the provided CSS */

/* Media rule for screen widths up to 991.98px */
@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;
    }
    /* Adjust the top padding of hero-header */
    .hero-header {
        padding: 1rem 0 0 0; /* You can adjust this value as needed */
    }
    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 5px 0;
        margin-left: 0;
        color: var(--light) !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 rule for screen widths from 992px and above */
@media (min-width: 992px) {
    .navbar-light {
        /*position: absolute;*/
        width: 100%;
        top: 0;
        left: 0;
        z-index: 999;
    }
     .hero-header {
       
    .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: 3rem;
    padding: 8rem 0 0 0;
   
    background-position:
        left 0px top 0px,
        right 0px top 0%,
        center bottom;
    background-repeat: no-repeat;background: rgb(37,183,96);
    
    background: linear-gradient(90deg, rgba(37,183,96,1) 0%, rgba(37,183,96,1) 58%, rgba(255,255,255,1) 100%);
}


/*** Feature ***/
.feature-item {
    position: relative;
    margin-bottom: 3rem;
    /* padding: 8rem 0 0 0; */
    transition: .5s;
    background-position: center;
    background-size: cover;
    background-repeat: none;
    color: var(--primary);
    color: #fff;
    
}
.feature-item-bg{
    background: black;
    /*padding: 8rem 0 0 0;*/
    background: linear-gradient(0deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.3) 46%, rgba(0,0,0,0.0) 100%);
    position: relative;
    z-index: none;
    width: 100%;
    height: 100%;
}
.feature-item:hover {
    margin-top: -15px;
    box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .08);
}


/*** 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;

}

.screenshot-carousel::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  
    background-size: 253px 500px;
    z-index: 1;
}

.screenshot-carousel .owl-item img {
    position: relative;
  
}

.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;
}
.owl-carousel .img-fluid{
    filter: drop-shadow(0 0 0.75rem crimson);
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
}

.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, var(--primary), var(--secondary));
    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, var(--secondary), var(--primary));
}



/*** Footer ***/
.footer {
    margin-top: 3rem;
    padding-top: 3rem;
    background:
        /*url(../img/bg-circle.png),*/
        /*url(../img/bg-triangle.png),*/
        /*url(../img/bg-top.png),*/
        linear-gradient(to bottom right, var(--primary), var(--secondary));
    background-position:
        left 0px bottom 0px,
        right 0px top 50%,
        center top;
    background-repeat: no-repeat;
     width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.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 .footer-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: #fff;
    font-weight: normal;
    transition: .3s;
}

.footer .footer-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;
}

