@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700;800&display=swap');
/* 
font-family: 'Open Sans', sans-serif;
*/

:root {
    --stroke-color: #00000059;
    --main-blue: #0068D9;
    --open-sans: 'Open Sans', sans-serif;
  }
  html{
    scroll-behavior: smooth;
  }
body{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}
a{
    text-decoration: none;
}
*{
    box-sizing: border-box;
}
.container , .container-1000 , .container-1100{
    margin-left:Auto;
    margin-right:auto;
    max-width:1200px;
    padding-left: 25px;
    padding-right:25px;
    width: 100%;
}
.container-1000{
    max-width:1000px;
}

section.top-section {
    padding:90px 0px;
    background-color: var(--main-blue);
    text-align: center;
    color: #fff;
    font-family:var(--open-sans);
}
.top-section-content h1 {
    margin-top: 0px;
    font-size: 54px;
    font-weight: bold;
    margin-bottom: 0px;
    /*text-shadow: -1.5px 0 1px var(--stroke-color), 0 0.5px 1px var(--stroke-color), 1.5px 0 1px var(--stroke-color), 0 -1.5px 1px var(--stroke-color);*/
}
section.glossary-testimonial-section {
    padding-bottom: 50px;
}
.top-section-content p {
    font-size: 18px;
    margin:25px 0px;
    line-height: 28px;
}
.s-form-div .input-wrap {
    max-width: 700px;
    background: #fff;
    position: relative;
    margin: auto;
    border-radius: 5px;
}
.s-form-div .input-wrap input {
    width: 100%;
    border: transparent;
    padding: 11.5px;
    outline: transparent;
    border-radius: 5px;
}
.s-form-div .input-wrap input,
 .s-form-div .input-wrap input::placeholder {
    font-size: 18px;
    box-sizing: border-box;
    display: block;
    color: #6D7278;
    font-family: var(--open-sans);
}

.s-form-div .input-wrap input {
    padding-left: 55px!important;
    background: url(../images/search-icon.svg);
    background-repeat: no-repeat;
    background-position: 15px;
}
.mb-30{
    margin-bottom:30px!important;
}
ul.category-wrap {
    margin-left: 0px;
    padding-bottom: 8px;
    padding-left: 0px;
    max-width: 100vw;
    overflow: auto;
    list-style: none;
    display: flex;
    justify-content: start;
    gap: 20px;
    margin-top: 45px;
}
section.alphabet-section {
    position: sticky;
    top: 0px;
    background: #fff;
    z-index: 2;
}
.slick-list{
    width:100%!important;
}
.slick-dots li.slick-active button:before {
    display:none;
}
ul.category-wrap li {
    border-radius: 5px;
    margin-left: 0px;
    transition: 0.3s;
    flex: 0 0 auto;
    border: 1px solid #fff;
}
ul.category-wrap li a.active {
    background: #fff;
    color: var(--main-blue);
}
ul.category-wrap li a {
    padding: 10px 20px;
}
ul.category-wrap li a {
    transition: 0.3s;
    text-transform: capitalize;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    display: block;
}
ul.category-wrap li:hover {
    background-color: #fff;   
}
ul.category-wrap li:hover a{
    color:var(--main-blue);
}
ul.letters {
    padding-left: 0px;
    display: flex;
    overflow: auto;
    padding: 15px 0px;
    margin: 0px;
    row-gap: 15px;
    list-style: none;
    justify-content: center;
    column-gap: 30px;
}
ul.letters::-webkit-scrollbar ,
.category-wrap::-webkit-scrollbar{
    width: 5px;
    height: 5px;
  }
  
  /* Track */
  ul.letters::-webkit-scrollbar-track ,
  .category-wrap::-webkit-scrollbar-track{
    
    border-radius: 10px;
  }
   
  /* Handle */
  ul.letters::-webkit-scrollbar-thumb ,
   .category-wrap::-webkit-scrollbar-thumb{
    background: rgba(201, 201, 201, 0.662); 
    border-radius: 10px;
  }
li.letter a {
    color: #7F96AF;
    text-transform: uppercase;
    text-decoration: none;
    font-family: var(--open-sans);
}
ul.letters a, ul.letters span {
    font-size: 18px;
}
li.letter a:hover , li.letter .active  {
    color: var(--main-blue);
}
span.disabled {
    color: #d8d8d8;
}
.glossary-grid-section {
    background-color: #F4F4F4;
    padding: 30px 0px 270px 0px;
    border-bottom: 1px solid lightgrey;
}
.glossary-grid-wrap {
    display: flex;
    flex-wrap: wrap;
    
   padding-top: 140px;
    margin-top: -110px;
    gap: 30px;
}
.glossary-grid-wrap .glossary-item:not(.glossary-item:first-child):hover, .glossary-grid-wrap.search-wrap .glossary-item:first-child:hover {
    transform: translateY(-10px);
}
.glossary-grid-wrap:before {
    display: none!important;
}
.glossary-item-wrap h2{
    padding-right:25px;
}
.glossary-item-wrap {
    position: relative;
}
.glossary-item .glossary-item-wrap:before {
    content: '';
    width: 24px;
    transition: 0.3s;
    height: 24px;
    opacity: 0;
    right: 0px;
    position: absolute;
    top: 5px;
    display: block; 
    background: url(http://dev-www.docebo.com/wp-content/uploads/2023/07/hover-iconblue-1.png);
    background-size: 24px;
}
.glossary-item:hover  .glossary-item-wrap:before {
    opacity: 1;
}
.glossary-item.folder .glossary-item-wrap:before {
    display: none;
}
.glossary-item {
    width: calc(33.3% - 20px);
    background: #fff;
    transition: 0.4s;
    padding: 30px;
    box-sizing: border-box;
    border-radius: 10px;
}
.glossary-item a{
    text-decoration: none;
    font-family: var(--open-sans);
}
.glossary-item-wrap {
    height: 100%;
}
.glossary-item.folder .glossary-item-wrap{
    align-items:center;
}
.glossary-item-wrap p{
    margin-bottom:0px;
}
.glossary-item-wrap h2 {
    font-weight: normal;
    margin-top:0px;
    margin-bottom: 20px;
    width:100%;
    font-size:26px;
    color: #1A051D;
}
.glossary-item-wrap p {
    color: #333;
    margin-top:0px;
    width:100%;
    line-height: 28px;
font-size: 16px;
}
.current-letter {
    font-size: 120px;
    font-family: var(--open-sans);
    /*line-height: 1.1;*/
    color: var(--main-blue);
}
.folder {
    position: relative;
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
 
}
.folder::before {
    content: '';
    position: absolute;
    top: -18px;
    left: 0px;
    width: 150px;
    height: 35px;
    background: white;
    border-radius: 10px 0 0 0;
    clip-path: path('M 0 0 L 110 0 C 135 2, 125 2, 150 18 L 0 50 z');
}
.folder::after {
    content: '';
    height: 118px;
    width: 8px;
    position: absolute;
    left: 0px;
    background: var(--main-blue);
    top: 50%;
    transform: translateY(-50%);
}
/* single glossary */
.breadcrumb ul {
    padding-left: 0px;
    display: flex;
    list-style: none;
    margin: 0px;
    justify-content: center;
    font-size: 18px;
    flex-wrap: wrap;
    gap: 15px;
}
.breadcrumb ul li.breadcrumb-link a , .breadcrumb ul li.breadcrumb-link {
color: var(--main-blue);
text-decoration: none;
}
.breadcrumb ul li.breadcrumb-span{
    color: #333333;
}
section.single-top-section {
    padding: 60px 0px 150px 0px;
    text-align: center;
}
.single-top-section-content {
    font-family: var(--open-sans);
}   
.single-top-section-content h1 {
    margin: 30px 0px;
    font-size: 54px;
    font-weight: 700;
    line-height: 56px;
    color: #1A051D;
}
ul.content-nav li, .breadcrumb ul li {
    margin-left: 0px;
}
.top-meta {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 30px 0px 10px 0px;
    color: #6D7278;
    font-size: 18px;
}
.meta-data.author {
    position: relative;
}
.meta-data.author:after {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    position: absolute;
    right: -20px;
    background: #D9D9D9;
    top: 50%;
}
.row {
    display: flex;
    flex-wrap: wrap;
}
.col-md-4 {
    width: 24%;
}
.col-md-8 {
    width: 76%;
}
.glossary-testimonial-item-wrap .col-md-4 {
    width: 28%;
}
.glossary-testimonial-item-wrap .col-md-8 {
    width: 72%;
}
.content-nav-wrap {
    position: sticky;
    top: 80px;
    font-family: var(--open-sans);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 4px 4px 24px 0px rgba(0, 0, 0, 0.14);
}
.content-nav-wrap h2 {
    color: #00254D;
    font-weight: 600;
    position: relative;
    font-size: 26px;
}
.col-content-wrap {
    padding-left: 30px;
    font-family: var(--open-sans);
}
.single-glossary #mk-page-introduce {
    display: none;
}
.content-nav-wrap h2 {
    color: #00254D;
    font-weight: 600;
    margin-top: 20px;
    text-align: left;
    position: relative;
    font-size: 26px!important;
}
ul.content-nav {
    list-style: none;
    margin-left: 0px;
    padding-left: 0px;
}
li.letter {
    margin-left: 0px;
}
.content-nav-wrap h2:before {
    content: '';
    width: 50px;
    height: 4px;
    background: var(--main-blue);
    left: 0px;
    top: -15px;
    position: absolute;
}
ul.content-nav {
    list-style: none;
    margin-left: 0px;
    padding-left: 0px;
}
ul.content-nav a {
    text-decoration: none;
    margin-bottom: 10px;
    display: block;
    font-weight: 600;
    font-size: 16px;
    color: #333;
}
.glossary-single-content p:first-child {
    margin-top: 0px;
}
.glossary-single-content p:last-child {
    margin-bottom: 0px;
}
.col-content-wrap h2 {
    color: #1A051D;
    font-size: 42px;
    font-weight: 600;
    margin: 30px 0px;
    line-height: 3rem;
}
/*.col-content-wrap h2:before{*/
/*    display:none!important;*/
/*}*/
.slick-track
{
    display: flex !important;
}
.slick-slide
{
    height: inherit !important;
}
.glossary-testimonial-item .glossary-testimonial-item-wrap, .glossary-testimonial-item a {
    display: block;
    height: 100%;
}
.glossary-testimonial-item-wrap .row {
    align-items: center;
    height: 100%;
}
.col-content-wrap p , .col-content-wrap {
    color: #333;
    font-size: 18px;
    line-height: 28px;
}
section.glossary-related-post, .glossary-testimonial-section , .business-form-section {
    font-family: var(--open-sans);
}
section.glossary-related-post {
    padding: 90px 0px 70px 0px;
}
.m-heading h2 {
    color: #1A051D;
    font-size: 42px;
    text-align: center;
    font-weight: 600!important;
    position: relative;
    margin: 0px;
}
.m-heading.divider-heading {
    margin: 50px 0px 60px 0px;
    position: relative;
}
.m-heading.divider-heading:before {
    content: '';
    position: absolute;
    height: 4px;
    width: 95px;
    background: var(--main-blue);
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
}
.related-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}
.related-item {
    width: calc(33.3% - 33.1px);
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 4px 4px 32px 0px rgba(0, 0, 0, 0.24);
}
.title h3 {
    color: #000;
    text-align: center;
    font-size: 20px;
    margin: 20px 0px;
    font-weight: 500;
}
ul.slick-dots li {
    margin-left: 0pc;
}
.img-wrap {
    padding-top: 95%;
    position: relative;
}
.img-wrap img {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.m-heading p {
    color: #333;
    font-size: 20px;
    text-align: center;
    line-height: 2rem;
    margin: 10px 0px;
}
.glossary-testimonial-section .m-heading p {
    margin: 15px auto;
    max-width: 700px;
}
.container-1100{
    max-width: 1150px;
}
.glossary-testimonial-item-wrap {
    background: var(--main-blue);
    margin: 0px 15px;
    box-shadow: 4px 4px 15px 0px rgba(0, 0, 0, 0.25);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}
img.cs-fea-img {
    height: 100%!important;
    display: block;
    width: 100%!important;
    max-width: 100%!important;
    border-radius: 8px;
}
.glossary-testimonial-item-wrap img:first-child {
    max-width: 100%;
    display: block;
    margin: auto;
}
.glossary-testimonial-item-wrap img:last-child {
	max-width: 80px;
	margin: auto;
	display: block;
	margin-top: 10px;
}
.glossary-testimonial-item:nth-last-child(2) img:last-child, .glossary-testimonial-item:last-child img:last-child{
    max-width: 50px;
}
.glossary-testimonial-item-wrap {
    color: #fff;
    font-size: 15px;
}
.glossary-testimonial-item-wrap .col-md-8{
   padding-left:30px;
 
}
.name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 7px;
}
.glossary-testimonial-item-wrap p {
    line-height: 26px;
    font-weight: 300;
    margin: 0px 0px 25px 0px;
}
.glossary-testimonial {
    margin: 50px 0px;
    width: 100%;
}
.glossary-testimonial ul.slick-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    padding-left: 0px;
    list-style: none;
    gap: 15px;
}
.glossary-testimonial .slick-dots li button:before {
    display: none!important;
}
.designation {
    font-weight: 300;
    font-size: 14px;
}
.glossary-testimonial ul.slick-dots button {
    background: #D9D9D9;
    border: transparent;
    outline: none;
    padding: 0px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    font-size: 0px;
    cursor: pointer;
}

.glossary-testimonial li.slick-active button , 
.glossary-testimonial li:hover button {
    background: var(--main-blue);
}
@media only screen and (max-width: 1160px){
     .glossary-grid-wrap {
        max-width: 721px;
        margin-left: auto;
        margin-right: auto;
    }
    .glossary-item .glossary-item-wrap:before {
    top: -2px;
}
.glossary-item {
        width: calc(50% - 20px);
    }
   
}
@media only screen and (max-width: 1200px){
    section.glossary-grid-section .container {
    width: 100%;
    max-width: 100%;
    padding-left: 24px;
    padding-right: 24px;
}
    .col-content-wrap p {
        font-size: 15px;
        line-height: 1.6;
    }
      ul.letters , ul.category-wrap{
        justify-content: start!important;
    }
    
    .glossary-item-wrap h2 {
        font-size: 18px;
    }
    .glossary-item-wrap p {
        line-height: 1.6;
        font-size: 14px;
    }
      
}
@media only screen and (max-width: 1023px){
    .m-heading p {
    font-size: 15px;
}
    
    .glossary-grid-section {
    padding: 30px 0px 60px 0px;
}
    .col-md-4 {
    width: 29%;
}
.col-md-8 {
    width: 71%;
}
section.single-top-section {
    padding: 60px 0px 60px 0px;
}
.content-nav-wrap h2 {
    font-size: 20px!important;
}

    .single-top-section-content h1 {
        font-size: 45px;
    }
    section.single-top-section {
        padding: 60px 0px 100px 0px;
    }
    .col-content-wrap h2 {
        line-height: normal;
    }
    .m-heading h2 , .col-content-wrap h2 {
        font-size: 35px;
    }
}
@media only screen and (max-width: 768px){
    section.alphabet-section {
        top: 0px;
    }
}
@media only screen and (max-width: 767px){
    .glossary-testimonial-item-wrap img:first-child {
    max-width: 150px;
}
    .glossary-testimonial-item-wrap img:last-child {
    margin-top: 5px;
}
    .glossary-item .glossary-item-wrap:before {
    top: 10px;
}
    section.top-section {
    padding: 90px 0px 50px 0px; 
}
 ul.content-nav a {
    margin-bottom: 7px;
}
    .folder::after {
        height: 70px;
        width: 5px;
    }
     .glossary-item {
        padding: 40px;
    }
    .top-section-content p {
    font-size: 14px;
    line-height: normal;
}
    .col-content-wrap p {
    color: #333;
    font-size: 16px;
    line-height: 24px;
}
.content-nav-wrap h2 {

    font-size: 22px!important;
}
.col-content-wrap h2 {
    margin: 20px 0px;
}
    .glossary-testimonial-item-wrap .col-md-4 , .glossary-testimonial-item-wrap .col-md-8 {
    width: 100%;
}
    .glossary-item-wrap h2 {
    text-align: left;
    font-size: 22px!important;
}
    .top-meta {
    flex-wrap: wrap;
    column-gap: 0px;
    font-size: 14px;
    row-gap: 10px;
}
.top-meta div {
    width: 100%;
}
.breadcrumb ul {
    font-size: 16px;
    gap: 8px;
}
    .related-grid {
        column-gap: 0px;
        row-gap: 30px;
    }
    .related-item {
        width: 100%;
    }
    section.single-top-section {
        padding: 60px 0px 60px 0px;
    }
    .col-content-wrap {
        padding-left: 0px;
        margin-top: 30px;
    }
    section.glossary-related-post {
        padding: 60px 0px;
    }
    .single-top-section-content h1 ,  .m-heading h2 {
        font-size: 30px!important;
        line-height: normal!important;
    }
     .col-content-wrap h2 {
    font-size: 25px!important;
    line-height: normal!important;
}  
.m-heading p {
    font-size: 16px;
    line-height: 1.6rem;
}
    .col-content-wrap h2 {
    text-align: left;
}
    .col-md-8 , 
    .col-md-4{
        width: 100%;
    }
    .glossary-testimonial-item-wrap .col-md-8 {
        text-align: center;
        padding-left: 0px;
        margin-top: 0px;
    }
   
    .top-section-content h1 {
        font-size: 30px;
        line-height: normal;
    }
    .glossary-grid-wrap {
    column-gap: 0px;
    max-width: 343px;
    margin-left: auto;
    margin-right: auto;
}
    .glossary-item {
        width: 100%;
    }
    ul.category-wrap li a {
        font-size: 16px;
    }
    
    .content-nav-wrap h2:before {
        left: 50%;
        transform: translateX(-50%);
    }
    .top-meta {
        margin: 20px 0px 10px 0px;
    }
    .meta-data.author:after{
        display: none;
    }
    .single-top-section-content h1{
        margin-bottom: 0px;
    }
}