:root {
    /* Colors */
    --color-accent: #10B981;
    --color-text: #666666;
    --color-heading: #111827;
    --color-light-accent:#F3FBF8;
    --color-white:#fff;
  
    /* Fonts */
    --font-primary: 'Outfit', sans-serif;
    --font-text: 'Satoshi', sans-serif;
    
}
.accent-color{
    color: var(--color-accent);
}
.light-text{
    color: #fff;
}
.grey-text{
    color: #959595;
}
.light-accent-bg{
    background-color: var(--color-light-accent);
}
.dark-bg-color{
    background-color: var(--color-heading);
}
.light-bg-color{
    background-color: var(--color-white);
}

/* Typography */
h1,  h2,  h3,  h4,  h5,  h6 {
    font-family: var(--font-primary);
    color: var(--color-heading);
    margin: 0 0 20px 0;
    font-weight: 500;
}
h1{
    font-size: 61px;
    line-height: 68px;
}
h2{
    font-size: 42px;
    line-height: 52px;
}
.h1{
    font-weight: 600;
}
body{
    font-family: var(--font-text);
}
p{
    font-family: var(--font-text);
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    color: var(--color-text);
}
strong{
    font-weight: 600;
    color: var(--color-heading);
}
.upper-heading{
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-accent);
    margin-bottom: 25px;
    display: inline-block;
}

/* Navbar */
.navbar{
    background-color: var(--color-light-accent);
}
.nav-link{
    font-family: var(--font-primary);
    color: var(--color-heading);
    font-size: 17px;
    font-weight: 500;
    line-height: 1;
}
.navbar-nav .nav-link.active{
    color: var(--color-accent);
}
.navbar-nav{
    padding: 17px 0;
    justify-content: center;
    flex-grow: 1;
}
.navbar .btn-default{
    padding: 13px 24px;
}
.navbar-toggler{
    padding: 0;
    font-size: 26px;
}
.navbar-toggler:focus,
.offcanvas-header .btn-close:focus{
    box-shadow: none;
}
.navbar-toggler svg{
    width: 1em;
    height: 1em;
}
.offcanvas-header,.offcanvas-body{
    padding: 20px;
}
.offcanvas-body{
    display: flex;
}
.navbar-toggler:focus-visible{
    outline: none;
}
.desktop-hidden-btn.nav-link{
    color: var(--color-white) !important;
    padding: 16px 24px;
}


/* Banner Section */
.banner-section{
    text-align: center;
    padding: 130px 0 135px;
}
.banner-section .banner-heading{
    margin-bottom: 30px;
}
.banner-section .banner-desc{
    font-size: 18px;
    line-height: 31px;
    width: 40%;
    margin-left: auto;
    margin-right: auto;
}

/* Button */
.btn-default{
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    background-color: var(--color-accent);
    border: 0;
    color: var(--color-white);
    padding: 17px 29px;
    border-radius: 6px;
    transition: all .3s linear;
    text-decoration: none;
}
.btn-default:hover{
    background-color: var(--color-heading);
}

/* Hero */
.hero-section{
    padding: 80px 0 120px;
}
.hero-section .hero-heading{
    width: 90%;
}
.hero-section .hero-para{
    font-size: 18px;
    line-height: 31px;
    width: 80%;
}
.hero-section .hero-btn{
    background-color: var(--color-heading);
    margin-top: 22px;
    display: inline-block;
}
.hero-section .hero-btn:hover{
    background-color: var(--color-accent);
}


/* Sections */
.section-padding{
    padding: 120px 0;
}
.section-para{
    width: 75%;
    margin-left: auto;
    margin-right: auto;
}
.industries-section .img-box-container{
    margin-top: 30px;
}

/* About */
.about-section .container + .container .row>*{
    padding-left: 15px;
    padding-right: 15px;
}
.about-section .container + .container{
    margin-top: 40px;
}

/* Iconbox */
.icon-box{
    background: #FFFFFF;
    box-shadow: 0px 6px 20px 5px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    padding: 50px 35px 30px;
}
.icon-box .i-box-icon{
    background-color: var(--color-accent);
    width: 50px;
    height: 50px;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 35px;
}
.icon-box h4{
    font-size: 21px;
    line-height: 1;
}
.icon-box p{
    font-size: 15px;
    line-height: 26px;
    margin-top: 15px;
}

.icon-box-2 .i-box-icon{
    background-color: var(--color-accent);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 27px;
}
.icon-box-2 h4{
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 12px;
}
.icon-box-2 p{
    font-size: 15px;
    line-height: 26px;
    width: 85%;
    margin-bottom: 0;
}

/* Image Box */
.img-box-container{
    display: grid;
    /*grid-template-columns: repeat(5, 1fr); */
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}
.img-box-container h5{
    text-align: center;
    font-size: 16px;
    margin-top: 25px;
}
.img-box-container .img-box img{
    max-width: 100%;
}

/* Book Demo Form */
.book-demo-form .form-control{
    font-size: 15px;
    font-weight: 500;
    color: #C4C4C4;    
    padding: 15px 20px;
    border-radius: 6px;
    background-color: #272F3C;
    border: 1px solid transparent;
}
.book-demo-form .form-control:focus{
    box-shadow: none;
    border-color: #5e5e5e;
}
textarea.form-control{
    height: 160px;
    resize: none;
}
.book-demo-form .btn{
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    background-color: var(--color-accent);
    border: 0;
    color: var(--color-white);
    padding: 17px 29px;
    border-radius: 6px;
    transition: all .3s linear;
}
.book-demo-form .btn:focus{
    box-shadow: none;
}
.book-demo-form .btn:hover{
    opacity: .8;
}
.contact-email{
    margin-top: 30px;
    display: inline-flex;
    font-size: 15px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    color: #fff;
}
.contact-email svg{
    width: 1em;
    height: 1em;
}
#form-message{
    color: var(--color-accent);
}
/* Recent Post */
.recent-post-section.section-padding{
    padding-bottom: 70px;
}
.recent-post-section .section-title{
    margin-bottom: 67px;
}
.recent-post-section .recent-post{
    margin-bottom: 50px;
}
.post-card {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0px 5px 20px 10px rgba(0, 0, 0, 0.05);
    background: #fff;
    display: block;
    text-decoration: none;
  }
  .post-card:not(.single-post):hover .post-image img{
    transform: scale(1.1);
  }
  .post-image{
    overflow: hidden;
  }
  .post-image img {
    width: 100%;
    min-height: 275px;
    object-fit: cover;
    display: block;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    transition: transform .3s ease-in-out;
  }
  
  .post-content {
    padding: 0 35px 42px;
    margin-top: -14.5px;
  }
  
  .badge {
    display: inline-block;
    background-color: var(--color-accent);
    color: #fff;
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 8px 13px;
    border-radius: 6px;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
  }
  
  .date {
    color: #a0a0a0;
    font-size: 13px;
    margin: 8px 0 20px;
    display: block;
  }
  
  .post-title {
    font-size: 22px;
    line-height: 30px;
    font-weight: 500;
    margin: 0 0 15px;
  }
  .post-title .title-link{
    text-decoration: none;
  }
  
  .post-description {
    font-size: 15px;
    line-height: 26px;
    margin: 0;
  }
  .recent-post-btn{
    margin-bottom: 66px;
    margin-top: 35px;
  }
/* Blog List & Blog Single*/
.blog-list .date,
.single-post  .date{
    margin-top: 18px;
}
.blog-list .post-content{
    padding: 0 100px 70px 70px;
}
.blog-list .post-card:not(:last-of-type){
    margin-bottom: 100px;
}
.blog-list .post-title,
.single-post .post-title{
    font-size: 32px;
    line-height: 46px;
}
.blog-list .post-description,
.single-post .post-description{
    font-size: 17px;
    line-height: 33px;
}
.blog-single-banner{
    background: linear-gradient(to bottom, #F3FBF8 80%, #FFF 20%);
}
.blog-single-banner .post-image{
    margin-top: 70px;
}
.blog-single-banner .post-image img{
    border-radius: 6px;
}
.single-post{
    padding: 80px 0 30px;
}
.single-post .post-description{
    margin-bottom: 20px;
}
.single-post h2{
    font-size: 26px;
    line-height: 36px;
}
.single-post h1,h2{
    margin-bottom: 15px;
}
.single-post .post-subsection{
    margin-top: 50px;
}
.single-post .post-subsection .post-description:not(:last-of-type){
    margin-bottom: 15px;
}
.single-post .post-content{
    margin-top: 0;
}
.single-post .post-description li{
    color: var(--color-text);
}
.single-post .post-description.list-title{
    margin-bottom: 5px;
}

/* Related Post */
.related-post-section{
    border-top:1px solid #e8e8e8;
    margin-top: 30px;
    padding: 100px 0 40px;
}
.related-post-section .post-card{
    margin-bottom: 50px;
}
.related-post-section .post-content{
    padding: 0 35px 42px;
    margin-top: -14.5px;
}
.related-post-section .post-title {
    font-size: 22px;
    line-height: 30px;
    font-weight: 500;
    margin: 0 0 15px;
}
.related-post-section .post-description {
    font-size: 15px;
    line-height: 26px;
    margin: 0;
  }

/* Footer */
.footer{
    background-color: var(--color-heading);
    border-top: 1px solid #363E4C;
    padding: 29px 0 19px;
}
.footer-socials li{
    display: inline-flex;
    margin-right: 12px;
}
.footer-socials li a{
    color: #959595;
    font-size: 18px;
}
.footer-socials li a:hover{
    color: var(--color-accent);
}
.footer-socials li a svg{
    width: 1em;
    height: 1em;
}
.footer-copyrights{
    font-size: 14px;
    color: #959595;
    text-align: right;
    margin: 0;
}
/* Standard syntax */
::placeholder {
    color: #C4C4C4;
    opacity: .7;
  }
  
/* WebKit browsers (Chrome, Safari, newer Edge) */
::-webkit-input-placeholder {
    color: #C4C4C4;
    opacity: .7;
}

/* Firefox */
::-moz-placeholder {
    color: #C4C4C4;
    opacity: .7;
}

/* Internet Explorer 10-11 */
:-ms-input-placeholder {
    color: #C4C4C4;
    opacity: .7;
}

/* Microsoft Edge (legacy) */
::-ms-input-placeholder {
    color: #C4C4C4;
    opacity: .7;
}
  
/* Media Queries */
@media (min-width:992px){
    .desktop-hidden-btn{
        display: none;
    }
}

@media (max-width:1199px){
    .icon-box{
        padding:40px 25px 30px;
    }
    .hero-section .hero-heading{
        font-size: 50px;
        line-height: 60px;
    }
    .features-section .container{
        max-width: 600px;
    }
    .icon-box-2{
        margin-bottom: 60px;
    }
    .features-section.section-padding{
        padding-bottom: 60px;
    }
}

@media (max-width:992px){
    .hero-section .hero-heading{
        margin-top: 60px;
    }
    .about-section .icon-box{
        max-width: 300px;
        margin: 0 auto 50px;
    }
    .about-section.section-padding{
        padding-bottom: 70px;
    }
    .demo-book-section .book-demo-form.form{
        margin-top: 70px;
    }
    .mobile-hidden-btn{
        display: none;
    }
    .navbar-nav{
        display: flex;
        gap: 12px;
    }
    .banner-section .banner-desc {
        width: 60%;
    }
    .banner-section{
        padding:100px 0 105px;
    }
}
@media (max-width:767px){
    .hero-section .hero-heading{
        font-size: 40px;
        line-height: 50px;
    }
    .hero-section .hero-para {
        width: 95%;
    }
    h2{
        font-size: 36px;
        line-height: 46px;
    }
    .about-section .icon-box {
        max-width: 280px;
    }
    .footer-socials,.footer-copyrights{
        text-align: center;
    }
    .footer{
        padding-bottom: 35px;
    }
    .container{
        padding-left: 25px;
        padding-right: 25px;
    }
    .img-box-container .img-box img{
        width: 100%;
    }
    .img-box-container{
        grid-template-columns:repeat(auto-fit, minmax(100px, 1fr));
    }
    .post-card:not(.single-post):hover .post-image img{
        transform: scale(1);
    }
    .banner-section .banner-desc {
        width: 95%;
    }
    .banner-section{
        padding:80px 0 85px;
    }
    .blog-list .post-content {
        padding: 0 30px 50px 30px;
    }
    .blog-list .post-title,
    .single-post .post-title{
        font-size: 28px;
        line-height: 40px;
    }
    .related-post-section .post-title {
        font-size: 22px;
        line-height: 30px;
    }
    .related-post-section .post-content {
        padding: 0 35px 42px !important;
    }
    .single-post .post-content{
        padding-left: 0;
        padding-right: 0;
    }
    .blog-single-banner .post-image {
        margin-top: 20px;
    }
    .single-post{
        padding-top: 50px;
    }
}