.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-content {
    background: #fff;
    /*padding: 20px;*/
    border-radius: 24px;
    position: relative;
    max-width: 800px;
    width: 100%;
    box-shadow: 0px 0px 4px 4px #00000026;
    display: flex;
    /*column-gap: 15px;*/
    align-items: center;

}
.popup-content .popup-left-div{
    width: 50%;
}
.popup-content .popup-right-div{
    padding: 40px 20px 40px 20px;
    width: 50%;
}
.popup-content .popup-right-div span{
    font-size: clamp(18px, 4vw, 22px);
    line-height: clamp(24px, 5vw, 28px);
    color: #4E4E4E;
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
}
.popup-content .popup-right-div h2{
    font-size: clamp(26px, 4vw, 30px);
    line-height: clamp(32px, 5vw, 40px);
    color: #000;
    font-weight: 700;
    margin: 20px 0;
    
}
.popup-content .popup-right-div h2 span{
    font-size: clamp(26px, 4vw, 30px);
    line-height: clamp(32px, 5vw, 40px);
    background: linear-gradient(112deg, #00B3F6 30.76%, #00FF5A 100.43%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}
.popup-content .popup-right-div p{
    font-size: clamp(16px, 4vw, 18px);
    line-height: clamp(20px, 5vw, 24px);
    color: #4E4E4E;
    margin-bottom: 15px;
}
.popup-content .popup-right-div .btn-btn-primary{
    margin-top: 40px;
    display: flex;
    justify-content: center;
}
.popup-content .popup-right-div .btn-btn-primary a{
    gap: 20px;
}
.popup-content .popup-right-div .btn-btn-primary a .span{
    background: linear-gradient(112deg, #00B3F6 30.76%, #00FF5A 100.43%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    text-transform: capitalize;
}
.popup-content .popup-right-div .btn-btn-primary a:hover .span{
    background: #fff;
    -webkit-text-fill-color: #fff;
    -webkit-background-clip: text;
}
.popup-content .popup-right-div .btn-btn-primary svg{
    padding: 5px;
}
.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    /*border-radius: 100%;*/
    /*-webkit-border-radius: 100%;*/
    /*-moz-border-radius: 100%;*/
    /*width: 25px;*/
    /*height: 25px;*/
    /*font-size: 20px;*/
    /*line-height: 20px;*/
}
.popup-close img{
    width: 30px;
}
.popup-content .popup-right-div .btn-btn-primary .border{
    padding: 1px;
    background: linear-gradient(106.82deg, #00B3F6 40.76%, #00FF5A 88.43%);
    border-radius: 100px;
    width: fit-content;
}
.popup-content {
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    /*transform: translate(-50%, -60%);*/
  }
  to {
    opacity: 1;
    /*transform: translate(-50%, -50%);*/
  }
}

@media(max-width:600px){
    .popup-content{
        width: 90%;
    }
    .popup-content .popup-left-div{
        display: none;
    }
    .popup-content .popup-right-div{
        width: 100%;
    }
}

    @media(max-width:567px){
        .thank-you-page .webform-confirmation__message {
            font-size: 24px !important;
        }
        .popup-close{
            right: 5px;
            top: 13px;
        } 
    }





/*blog*/

.blog-hero-section {
    /*background: url(../assets/images/cetrificate-bg.png), #DCF3FA no-repeat;*/
    color: #000000;
    background-position-y: top;
    background-size: cover;
    background-blend-mode: overlay;
    text-align: center;
    padding-top:80px;
    overflow: hidden;
    position: relative;

}
/*.blog-hero-section::before{*/
/*    content: "";*/
/*    width: 100%;*/
/*    height: 35%;*/
/*    background-color: #fff;*/
/*    position: absolute;*/
/*    bottom: 0;*/
/*    right: 0;*/
/*}*/

.blog-hero-wrapper{
    align-items: center;
    justify-content: center;
}
.blog-hero-wrapper .blog-header h1{
    font-size: 40px;
    line-height: 48px;
    font-weight: 800;
    margin-bottom: 50px;
}
.blog-hero-wrapper .blog-header span{
    font-size: 24px;
    line-height: 36px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 22px;
}
.blog-hero-section .blog-author{
    border-radius: 50%;
    overflow: hidden;
}

.blog-author img{
    object-fit: fill;
    width: 64px;
}
.admin-details{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}
.admin-details p{
    margin: 0;
    font-size: 18px;
    line-height: 22px;
    font-weight: 800;
}
.admin-details span{
    font-size: 14px;
    line-height: 19px;
    font-weight: 500;
    margin-bottom: 10px;
}
.blog-body-wrapper{
    margin-top: 35px;
}
.blog-body-wrapper .post-content img{
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}
.post-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    position: relative;
    border-radius: 16px;
}
.post__socials {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    column-gap: 35px;
}
.post__socials button {
    background: transparent;
    border: 0;
}

.blog-sidebar{
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
}
.blog-sidebar-scroll{
    height: 100vh;
    overflow-y: auto;
}
.table-of-contents,
.subscribe-box {
    margin-top: 20px;
}
.table-of-contents h4,
.subscribe-box h4 {
    text-align: center;
}
.subscribe-box-1{
    background: linear-gradient(106.82deg, rgba(0, 179, 246, 0.06) 40.76%, rgba(0, 255, 90, 0.06) 88.43%);
    color: #000000;
    border-radius: 4px;
    padding: 16px;
    margin-bottom: 25px;
}
.subscribe-box-1 p{
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    margin-bottom: 25px;
    color: #6D6D6D;
}
.subscribe-box-1 input{
    width: 100%;
    height: 36px;
    border-radius: 4px;
    margin-bottom: 12px;
}
.subscribe-box-1 .btn-dark{
    width: 100%;
    border-radius: 4px;
    height: 36px;
    
}
.subscribe-box-2{
    background: #000000;
    color: #fff;
    border-radius: 4px;
    padding: 16px;
}
.subscribe-box-2 p{
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    margin-bottom: 30px;
}
.subscribe-box-2 button{
    width: 100%;
    height: 40px;
    padding: 10px 20px;
    font-size: 12px;
    /*line-height: 20px;*/
    font-weight: 800;
    border-radius: 4px;
    background: #fff;
    border: 0;
}
.dt-section{
    padding-top:80px;
    padding-bottom:80px
}
.dt-section.p-t-0{
    padding-top:0;
}
.table-of-contents h2{
    font-size: 18px;
    line-height: 22px;
    padding-bottom: 15px;
    border-bottom: 1px solid black;
    /*padding-left: 10px;*/
    margin-bottom: 6px;
}
.table-of-contents ol{
    padding: 0 0 0 15px;
    
}
.table-of-contents ol li{
    padding: 10px 0;
    border-bottom: 1px solid lightgray;
    /*white-space: nowrap;*/
    /*overflow: hidden;*/
    /*text-overflow: clip;*/
    font-weight: 400;
    line-height: 18px;
    font-size: 12px;
    list-style: auto !important;
}
.table-of-contents ol li a{
    text-decoration: none;
    color: #6D6D6D;
    
}

.author-profile-wrapper{
    padding: 60px 0;
}
.author-profile{
    width: 800px;
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    background: linear-gradient(106.82deg, rgba(0, 179, 246, 0.06) 40.76%, rgba(0, 255, 90, 0.06) 88.43%);
    border-radius: 12px;
    margin-left: auto;
    margin-right: auto;
    padding: 32px 40px;
    display: flex;
}
.author-profile-name{
    margin-top: 10px;
    font-size: 18px; 
}
.author-profile-designation{
    margin-bottom: 25px;
    font-size: 16px;
    font-weight: 500;
    /*color: #FCD596;*/
    color: black;
}
.author-qoutes{
    font-size: 16px;
}

#lets-connect-sticky {
    width: 100%;
    height: auto;
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    background: black;
    z-index: 999;
    padding: 10px;
    text-align: center;
}

#lets-connect-sticky a {
    padding: 10px 20px;
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    text-align: center;
    text-decoration: none;
}

@media screen and (max-width: 991px){
    .author-profile {
        width: 85%;
    }
    
}




@media screen and (max-width: 768px){
    .blog-hero-section::before{
        display: none;
    }
    .blog-hero-wrapper .blog-header h1{
    font-size: 20px;
    line-height: 28px;
    font-weight: 800;
    margin-bottom: 30px;
    }
    .blog-hero-wrapper .blog-header span{
    font-size: 14px;
    line-height: 24px;
    /*margin-bottom: 22px;*/
    }
    .post__socials {
        flex-direction: row;
        padding: 20px 0;
        justify-content: center;
    }
  
    .subscribe-box-1{
        margin-bottom: 0;
    }
    .subscribe-box-1 input{
        font-size: 12px;
    }
    .subscribe-box-2 button{
    height: auto;
    padding: 10px 20px;
    font-size: 12px;
    line-height: 20px;
    
}
}




/*Blogs View*/

    .blogs-hero-section {
            /*background: url(cetrificate-bg.png), #DCF3FA no-repeat;*/
            color: #000000;
            background-position-y: top;
            background-size: cover;
            background-blend-mode: overlay;
            text-align: center;
            padding: 80px 0;
            overflow: hidden;
            position: relative;
        }


        /* Default style end*/


.blogs-hero-wrapper{
    display: flex;
    flex-direction: column;
    gap: 52px;
}

.blogs-header{
    gap: 30px;
}
.blogs-header h1{
    font-size: 56px;
    font-weight: 800;
}
.blogs-header p{
    font-size: 24px;
    line-height: 36px;
    font-weight: 500;
}
.blogs-search-bar form{
    display: flex;
    
}
.blogs-search-bar{
    text-align: center;
    align-self: center;
}
.blogs-search-bar .js-form-item{
    margin-bottom: 0 !important;
}
.blogs-search-bar .form-email, .button{
    font-size: 18px;
    height: 48px;
    border: none;
    width: auto;
}
.blogs-search-bar .form-email{
    padding: 12px 16px;
    border-radius: 4px 0 0 4px ;
    max-width: 500px;
    width: auto;
}
.blogs-search-bar .button{
    padding: 12px 26px;
    border-radius: 0 4px 4px 0;
    background: #000;
    color: #fff;
    position: relative;
    left: -6px;
    top: -30px;
}
.blogs-search-bar span{
    font-size: 18px;
    font-weight: 500;
    line-height: 36px;
    font-style: italic;
    color: #6D6D6D;
}


.grid-menu{
    width: 100%;
}

.grid-menu ul{
    list-style: none;
    display: inline-flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    gap: 24px;
    align-items: center;
}
.grid-menu ul li a{
    display: inline-block;
    font-size: 18px;
    font-weight: 500;
    /*line-height: 36px;*/
    text-decoration: none;
    color: #000000;
    padding: 12px 26px;
    border-radius: 4px;
    border: 1px solid #000;
}
.grid-menu ul li a:focus{
    outline: none;
    border: 1px solid #000;
    color: #fff;
    background: #000;
}
.grid-menu ul li input{
    padding: 12px 26px;
    border-radius: 4px;
    border: none;
    width: 100%;
    margin: 0 0 0 30px;
    background: lightgray;
    color: black;
    font-size: 18px;
}

.blogs-grid-wrapper {
    padding: 40px 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-gap: 20px;
}
.blogs-grid-item{
    max-width: 350px;
    min-width: auto;
    background-color: #f4f4f4;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: #d5d5d5 4px 7px 13px 4px;
    overflow: hidden;
}

.blogs-grid-item-img img{
    height: 240px;
    object-fit: cover;
}
.blogs-grid-item-content{
    padding: 20px;
}
.blogs-grid-item-content-header-title{
    gap: 15px;
}
.blogs-grid-item-content-header-title h3 a{
    font-size: 18px;
    line-height: 22px;
    font-weight: 800;
    text-decoration: none;
    color: #000;
}
.blogs-grid-item-content-header-title h3{
    font-size: 18px;
    line-height: 22px;
    font-weight: 800;
    text-decoration: none;
}
.blogs-grid-item-content-header-title span{
    font-size: 14px;
    line-height: 19px;
    font-weight: 400;
    color: #6D6D6D;
    text-transform: uppercase;
}
.blogs-grid-item-content-header-date{
    font-size: 14px;
    line-height: 19px;
    font-weight: 400;
    color: #6D6D6D;
}


@media screen and (max-width: 768px) {

    .blogs-hero-wrapper{
        gap: 20px;
    }

    .blogs-header h1{
        font-size: 24px;
        line-height: normal;
        font-weight: 800;
    }
    .blogs-header p{
        font-size: 16px;
        line-height: 24px;
        font-weight: 500;
    }
    .blogs-header{
        gap: 20px;
    }
    
    .blogs-search-bar .form-email, .button{
        font-size: 12px;
        height: auto;
    }
    .blogs-search-bar .form-email{
        padding: 8px 16px;
        border-radius: 4px 0 0 4px ;
        width: 270px;
    }
    .blogs-search-bar .button{
        padding: 8px 22px;
        border-radius: 0 4px 4px 0;
        background: #000;
        color: #fff;
        
    }

    .blogs-search-bar span {
        font-size: 12px;

    }


    .grid-menu ul{
        display: inline-flex;
        flex-wrap: wrap;
        padding: 0;
        margin: 0;
        gap: 16px;
        align-items: center;
        margin-top: 15px;
        margin-bottom: 15px;
    }
    .grid-menu ul li a{
        font-size: 12px;
        font-weight: 500;
        line-height: 19px;
        color: #000000;
        padding: 6px 18px;
        border-radius: 4px;
    }
    .grid-menu ul li input{
        margin: 0;
        padding: 8px 20px;
        font-size: 12px;
    }
    .blog-sidebar{
            position: unset;
            margin-top: auto;
        }
    .blog-sidebar-flex{
        display: flex;
        justify-content: space-between;
        gap: 15px;
    }



    
}
@media screen and (max-width: 480px) {
    
    .blogs-search-bar .form-email{
        width: 180px !important;
    }

    .blogs-grid-wrapper {
        padding: 20px 0;
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        grid-gap: 20px;
    }
    .blogs-grid-item{
        width: 100% !important;
    }
    .blogs-grid-item-img img{
        height: auto;
    }

    .blogs-grid-item-content-header-title h3{
    font-size: 14px;
    line-height: 19px;
    
    }
    .blogs-grid-item-content-header-title span{
        font-size: 12px;
        line-height: 19px;
        
    }
    .blogs-grid-item-content-header-date span{
        font-size: 12px;
        line-height: 19px;
    }
    
    .author-profile {
    width: 100%;
    padding: 20px;
    display: block;
    }
   .author-profile-image img {
    width: 40px;
    height: 40px;
    margin-right: 8px;
    }
    #lets-connect-sticky {
        display: block;
    }
}



/*Case Study Css Code Start */

/*Hero Section*/
.cs-hero-section{
        background: linear-gradient(106.82deg, rgba(0, 179, 246, 0.4) 40.76%, rgba(0, 255, 90, 0.4) 88.43%);
    }
    .cs-hero-section .cs-hero-contents{
        display: flex;
        flex-direction: column;
        row-gap: 10px;
        justify-content: center;
        align-items: center;
        max-width: 875px;
        margin: 0 auto;
    }
    .cs-hero-section .cs-hero-contents span{
        font-size: clamp(12px, 4vw, 16px);
        font-weight: 400;
        line-height: clamp(16px, 5vw, 20px);
        color: #036A96;
    }
    .cs-hero-section .cs-hero-contents .brand-name{
        border: 1px solid;
        border-image-source: linear-gradient(106.82deg, rgba(0, 179, 246, 0.5) 40.76%, rgba(0, 255, 90, 0.5) 88.43%);
        background: #FFFFFF52;
        backdrop-filter: blur(52.5px);
        max-width: 548px;
        max-height: 58px;
        border-radius:40px;
        color: #036A96;
        padding: clamp(10px, 2vw, 16px) clamp(20px, 4vw, 40px);
        margin-bottom: clamp(18px, 4vw, 30px);
    }
    .cs-hero-section .cs-hero-contents .brand-name p{
        font-size: clamp(16px, 4vw, 20px);
        font-weight: 600;
        line-height: clamp(20px, 5vw, 25px);
        text-align: center;
    }
    .cs-hero-section .cs-hero-contents h1{
        font-size: clamp(28px, 4vw, 48px);
        font-weight: 700;
        line-height: clamp(38px, 5vw, 64px);
        text-align: center;
    }
    
    /*Case Study Content Section*/
    
     .cs-content-section .cs_main_wrapper{
       display: flex;
       gap: 30px;
   }
   .cs_main_wrapper .left-text-block{
       width: 100%;
       max-width: 696px;
   }
   .cs_main_wrapper .right-text-block{
       width: 100%;
       max-width: 488px;
   }
   .left-text-block .cs_points{
       padding: 20px 0;
       position: relative;
   }
   .left-text-block .cs_points::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 1px; 
      background: linear-gradient(106.82deg, #00B3F6 40.76%, #00FF5A 88.43%);
    }
   .left-text-block h2{
       font-weight: 700;
       font-size: clamp(24px, 4vw, 36px);
       line-height: clamp(34px, 5vw, 46px);
       margin-bottom: 24px;
   }
   .left-text-block h3{
       font-size: clamp(18px, 4vw, 24px);
       line-height: clamp(26px, 5vw, 36px);
       font-weight: 700;
       margin: 15px 0;
       color:#036A96;
   }
   .left-text-block h4{
       font-size: clamp(14px, 4vw, 18px);
       line-height: clamp(16px, 5vw, 28px);
       font-weight: 700;
       margin-bottom: 8px;
       display: flex;
       align-items: center;
       column-gap: 10px;
       color:#036A96;
   }
   .left-text-block p{
       font-size: clamp(14px, 4vw, 18px);
       line-height: clamp(22px, 5vw, 28px);
       font-weight: 400;
       padding-bottom: 15px;
       display: flex;
       align-items: flex-start;
       column-gap: 10px;
   }
   .left-text-block img{
       width: 100%;
       height: auto;
       display: block;
       object-fit: cover;
       margin: clamp(20px, 3vw, 30px) 0;
       padding-bottom: 20px;
   }
   
   .right-text-block .sticky-container{
       position: sticky;
       top: 90px;
       padding: 1px;
   }
   .right-text-block .sticky-card-text{
        position: relative;
        background:#ebfafb;
        border-radius: clamp(12px, 4vw, 32px);
        padding: clamp(20px, 3vw, 32px);
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
   }
   .right-text-block .sticky-card-wrapper {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(106.82deg, #00B3F6 40.76%, #00FF5A 88.43%);
        border-radius: clamp(12px, 4vw, 32px);
        z-index: -1;
        
    }
    .right-text-block .sticky-card-text h3{
        font-size: clamp(20px, 4vw, 28px);
       line-height: clamp(30px, 5vw, 40px);
       font-weight: 600;
       margin: clamp(10px, 3vw, 15px) 0;
    }
    .right-text-block .sticky-card-text p{
        font-size: clamp(14px, 4vw, 18px);
       line-height: clamp(22px, 5vw, 28px);
       font-weight: 400;
       padding-bottom: 15px;
       color: #6E6E6E;
    }
    .right-text-block .sticky-card-text p strong{
        color: black;
        font-weight: 400;
    }
    .right-text-block .sticky-card-text ul{
        margin: 15px 0 30px 0;
        padding-left: 20px;
        
    }
    .right-text-block .sticky-card-text ul li{
       font-size: clamp(14px, 4vw, 18px);
       line-height: clamp(22px, 5vw, 28px);
       font-weight: 400;
       margin-bottom: 10px;
       color: #6E6E6E;
       list-style: square;
    }
    .right-text-block .sticky-card-text ul li strong{
        color: black;
        font-weight: 400;
    }
   
   @media(max-width: 767px){
       .cs-content-section .cs_main_wrapper{
           flex-direction: column-reverse;
       }
   }
