/*-----------------------------------------------------------------*/
/* WellFemme Webinars Archive Page Styles
/*-----------------------------------------------------------------*/

/* Webinar Grid Styles */
.web-grid-main {
    display: grid;
    grid-template-columns: 1fr;
}

.webinar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 80px 50px;
}

.webinar-grid > a {
    text-decoration: none;
    display: block;
}

.webin-img {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.webin-img img {
    width: 100%;
    min-height: 300px;
    max-height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

.webinar-category {
    background: #1B7895;
    border-radius: 3px;
    display: inline-block;
    position: absolute;
    top: 15px;
    left: 24px;
    padding: 8px 20px;
    color: #FFF;
    font-size: 12px;
    line-height: 18px;
    font-family: "proxima-nova";
    font-weight: normal;
    letter-spacing: 0.5px;
    z-index: 2;
}

.webinar-info-main {
    margin-top: 12px;
}



.webinar-info-main .web-meta {
    background: #FABAAB;
    padding: 9px 18px;
    line-height: 10px;
    display: inline-block;
    border-radius: 18px;
    font-size: 14px;
    color: #FFF;
    margin-bottom: 26px !important;
}

.webinar-info-main h3 {
    margin-top: -16px !important;
    margin-bottom: 12px;
    color: #1B7895;
}
.web-meta-past {
    display: flex;
    align-items: center;
    margin-bottom: 17px;
}

.past-text {
    position: relative;
    padding-right: 29px;
    margin-right: 26px;
}

.past-text:before {
    content: "";
    width: 5px;
    height: 5px;
    background: #FABAAB;
    border-radius: 50%;
    position: absolute;
    right: 0;
    top: 8px;
}

.webinar-info-main h3 {
    margin-top: 17px;
    margin-bottom: 12px;
    color: #1B7895;
}

.auth-post {
    margin: -12px 0px 20px !important;
    display: block;
}

.webinar-info-main p {
    margin-top: -15px;
    color: #6E757B;
    margin-bottom: 20px;
}

.btn-link-box {
    display: flex;
    align-items: center;
    color: #1B7895;
    font-size: 15px;
    font-family: "proxima-nova";
    font-weight: 700;
    margin-top: 30px;
}

.btn-link-box .right-icon {
    margin-left: 24px;
}

/* Pagination */
.pagination {
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
    margin-top: 90px;
}

.pagination a,
.pagination span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 56px;
    height: 56px;
    text-decoration: none;
    border: 1px solid #40c4c4;
    color: #0e6b6b;
    font-weight: bold;
    border-radius: 4px;
    transition: 0.3s;
}

.pagination a.active,
.pagination span.current {
    background-color: #40c4c4;
    color: #fff;
}

.pagination a:hover {
    background-color: #40c4c4;
    color: #fff;
}

.pagination .next-arrow-page,
.pagination .prev-arrow-page {
    display: flex;
    align-items: center;
    justify-content: center;
}

.next-arrow-page:before {
    content: "";
    display: inline-block;
    width: 9px;  
    height: 9px;
    box-sizing: border-box;
    border-right: 2.5px solid currentColor;
    border-top: 2.5px solid currentColor;
    transform: rotate(45deg);
    translate: 1px -1px;
}

.prev-arrow-page:before {
    content: "";
    display: inline-block;
    width: 9px;  
    height: 9px;
    box-sizing: border-box;
    border-left: 2.5px solid currentColor;
    border-bottom: 2.5px solid currentColor;
    transform: rotate(45deg);
    translate: -1px 1px;
}

/* CTA Small Section */
.cta-small {
    background: #BAB0A1;
    padding: 92px 80px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.cta-small:before {
    content: "";
    background: url(../images/icons/cta-overlay-img.svg) no-repeat;
    width: 739px;
    height: 100%;
    position: absolute;
    left: 0;
    top: -16px;
    background-position: left;
    background-size: contain;
    z-index: 0;
}

.cta-small h2 {
    margin: 0;
    color: #FFF;
    position: relative;
    z-index: 1;
}

.cta-small .row {
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-space-bt {
    margin-bottom: 0px;
}

.cta-btn-main {
    text-align: right;
}

.cta-size-lg {
    max-width: 500px;
}

.cta-sub {
    color: #FFF;
    opacity: 0.69;
    margin-bottom: 3px;
    font-size: 16px;
}

/*-----------------------------------------------------------------*/
/* Tablet Styles (768px - 991px)
/*-----------------------------------------------------------------*/

@media (max-width: 991px) {
    
    /* Webinar Grid */
    .webinar-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 50px 40px;
    }
    
    /* Web Col - Past Webinars Layout */
    .web-col {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .webin-img img {
        min-height: 320px;
        max-height: 320px;
    }
    
    .webinar-info-main h3 {
        font-size: 20px;
        line-height: 26px;
    }
    
    /* Pagination */
    .pagination {
        margin-top: 60px;
    }
    
    .pagination a,
    .pagination span {
        width: 48px;
        height: 48px;
    }
    
    /* CTA Small */
    .cta-small {
        padding: 60px 50px;
    }
    
    .cta-small:before {
        width: 500px;
    }
    
    .cta-space-bt {
        margin-bottom: 80px;
    }
}

/*-----------------------------------------------------------------*/
/* Mobile Styles (< 768px)
/*-----------------------------------------------------------------*/

@media (max-width: 767px) {

    
.btn-link-box {
    padding-bottom: 28px !important;

}
    
    /* Webinar Grid */
    .webinar-grid {
        grid-template-columns: 1fr;
        grid-gap: 50px;
    }
    
    /* Web Col - Past Webinars Layout */
    .web-col {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Mobile spacing adjustments for archive layout */
    section.sec-space.web-sec,
    .sec-space.web-sec {
        margin-top: -193px !important;
    }
    
    .webin-img {
        margin-top: -46px !important;
        position: relative;
    }
    
    section.sec-space.webin-sec,
    .sec-space.webin-sec {
        margin-top: -73px !important;
    }
    
    span.webinar-date.font-14.text-theme {
        margin-left: -10px;
    }
    
    .webin-img img {
        min-height: 280px;
        max-height: 280px;
    }
    
    .webinar-category {
        left: 15px;
        top: 15px;
        padding: 6px 15px;
        font-size: 11px;
    }
    
    .webinar-info-main {
        margin-top: 20px;
    }
    
    .webinar-info-main h3 {
        font-size: 20px;
        line-height: 26px;
        margin-top: 12px;
    }
    
    .webinar-info-main .web-meta {
        font-size: 13px;
        padding: 7px 15px;
    }
    
    .web-meta-past {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .past-text {
        padding-right: 20px;
        margin-right: 15px;
    }
    
    .past-text:before {
        top: 6px;
    }
    
    .auth-post {
        font-size: 13px;
        margin: 10px 0px 15px;
    }
    
    .webinar-info-main p {
        font-size: 15px;
        line-height: 24px;
        margin-bottom: 15px;
    }
    
    .btn-link-box {
        font-size: 14px;
        margin-top: 20px;
    }
    
    .btn-link-box .right-icon {
        margin-left: 15px;
    }
    
    /* Pagination */
    .pagination {
        margin-top: 50px;
        gap: 6px;
    }
    
    .pagination a,
    .pagination span {
        width: 44px;
        height: 44px;
        font-size: 14px;
    }
    
    /* CTA Small */
    .cta-small {
        padding: 40px 30px;
        text-align: center;
    }
    
    .cta-small:before {
        opacity: 0.3;
        width: 100%;
    }
    
    .cta-small h2 {
        font-size: 24px;
        line-height: 30px;
        margin-bottom: 20px;
    }
    
    .cta-btn-main {
        text-align: center;
        margin-top: 20px;
    }
    
    .cta-btn-main .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .cta-size-lg {
        max-width: 100%;
    }
    
    .cta-sub {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .cta-space-bt {
        margin-bottom: 50px;
    }
    
    /* Intro Section */
    .webin-sec .row.g-5 {
        --bs-gutter-y: 30px;
    }
    
    .intro-description p {
        font-size: 15px;
        line-height: 24px;
    }
    
    /* Bottom CTA Section */
    .bottom-cta-description p {
        font-size: 15px;
        line-height: 24px;
    }
}

/*-----------------------------------------------------------------*/
/* Small Mobile Styles (< 576px)
/*-----------------------------------------------------------------*/

@media (max-width: 575px) {
    
    /* Webinar Grid */
    .webinar-grid {
        grid-gap: 40px;
    }

    
.btn-link-box {
    padding-bottom: 28px !important;

}
    
    .webin-img img {
        min-height: 240px;
        max-height: 240px;
    }
    
    .webinar-info-main h3 {
        font-size: 18px;
        line-height: 24px;
    }
    
    /* Pagination */
    .pagination {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .pagination a,
    .pagination span {
        width: 40px;
        height: 40px;
        font-size: 13px;
    }
    
    /* CTA Small */
    .cta-small {
        padding: 30px 20px;
    }
    
    .cta-small h2 {
        font-size: 22px;
        line-height: 28px;
    }
}

/*-----------------------------------------------------------------*/
/* Prevent Horizontal Scroll
/*-----------------------------------------------------------------*/

.web-grid-sec {
    overflow: hidden;
}

.container {
    overflow: hidden;
}

.webinar-grid-wrapper {
    width: 100%;
    overflow: hidden;
}

/*-----------------------------------------------------------------*/
/* Loading State (Optional Enhancement)
/*-----------------------------------------------------------------*/

.webinar-grid.loading {
    opacity: 0.6;
    pointer-events: none;
}

/*-----------------------------------------------------------------*/
/* No Results Message
/*-----------------------------------------------------------------*/

.web-grid-main p {
    text-align: center;
    font-size: 18px;
    color: #6E757B;
    padding: 60px 20px;
}

/*-----------------------------------------------------------------*/
/* Accessibility Improvements
/*-----------------------------------------------------------------*/



.pagination a:focus,
.pagination span:focus {
    outline: 2px solid #56C2C2;
    outline-offset: 2px;
}

/*-----------------------------------------------------------------*/
/* Print Styles
/*-----------------------------------------------------------------*/

@media print {
    .pagination,
    .cta-small,
    .btn-col {
        display: none;
    }
    
    .webinar-grid {
        grid-template-columns: 1fr;
    }
}

body {
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 28px;
    color: #6E757B;
    font-weight: 300;
    font-family: "Nunito Sans", sans-serif;
  }
   
  img {
    max-width: 100%;
  }
  
  h1, h2, h3, h4, h5, h6{
    color: #1B7895;
    font-family:"proxima-nova";
    font-weight: 800;
  }
  
  h2 {
    font-size: 36px;
    line-height: 48px;
    font-weight: 800;
    margin-bottom: 30px;
    color: #1B7895;
  }
  h3 {
    font-size: 22px;
    line-height: 28px;
  }
  .font-proxima{
    font-family:"proxima-nova" !important;
  }
  .font-26 {
      font-size: 26px !important;
  }
  .font-20{
      font-size: 20px !important;
  }
  .font-14{
    font-size: 14px;
  }
  .no-pad{
    padding: 0 !important;
  }
  .no-pad-bottom{
    padding-bottom: 0 !important;
  }
  .no-pad-top{
    padding-top: 0 !important;
  }
  .bg-gray{
    background-color: #fbfaf9;
  }
   
  .sec-space {
      padding: 100px 0px;
      position: relative;
  }
  .text-primary {
    color: #1B7895 !important;
  }
  .text-green {
    color: #0B2E4A !important;
  }
  .text-red {
    color: #EE1C25 !important;
  }
  .text-theme {
    color: #56C2C2 !important;
  }
  .font-19{
    font-size: 19px;
  }
  .font-22{
    font-size: 22px;
    line-height: 28px;
    
  }
  .font-18{
    font-size: 18px;
    line-height: 28px;
    
  }
  .text-white h1,
  .text-white h2,
  .text-white h3,
  .text-white h4,
  .text-white h5,
  .text-white h6,
  .text-white p,
  .text-white p a,
  .text-white ul li, 
  .text-white a,
  .text-white h1{
      color:#FFF !important;
  }
  
  .text-white  .blue-label-heading {
      color: #FFF;
  }
   
  .bg-img {
      background-size: cover !important;
  }
  
  img.img-rounded {
      border-radius: 8px;
  }
  .row {
      margin-top: 0;
  }
  .row>* {
      margin-top: 0;
  }
  @media (min-width: 1200px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
      max-width: 1400px;
    }
  }
   
   /*-----------------------------------------------------------------*/
   /*  Header
  /*-----------------------------------------------------------------*/
  
   header nav.navbar {
      padding: 0;
  }
   
  main {
      margin-top: 110px;
  }
  
   
  header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 9;
    padding: 10px 0;
    background: #FFF;
  }
  
  .container-fluid {
    padding-left: 30px;
    padding-right: 30px;
  }
  
  header .nav-link, header .menu-item a {
    color: #1B7895;
   font-family:"proxima-nova";
    font-size: 15px;
    font-weight: 700;
    margin: 0px 20px;
    position: relative;
    text-decoration: none;
  }
  
  /* header .navbar-nav .dropdown.dropdown a:before, header .navbar-nav .menu-item-has-children a:before {
    content: "\f107";
    position: absolute;
    right: -16px;
    top: -3px;
    display: block;
    font-family: 'FontAwesome';
  } */
  header .navbar-nav .dropdown.dropdown a:before, header .navbar-nav .menu-item-has-children a:before {
    content: "";
    position: absolute;
    right: -16px;
    top: 5px;
    display: block;
    width: 10px;
    height: 10px;
    background: url(../images/icons/drop-down-arrow.svg) no-repeat;
  }
   .right-cta-inner .btn{
    /* min-width: 150px; */
    padding: 13px 30px;
  }
  header .btn, header .top-btn a:hover {
    color: #FFF !important;
  }
  header a.nav-link.dropdown-toggle {
    margin-right: 20px;
    position: relative;
  }
   
  
  .top-btn a:after, ul.sub-menu a:after {
    display: none;
  }
  
  header .nav-link:hover, header .nav-link:focus, header .menu-item a:hover {
    color: #1B7895!important;
  }
  
  header li.nav-item.top-search {
    margin-left: 21px;
  }
  
   .sub-menu {
    display: none;
    opacity: 0;
    visibility: hidden;
    top: 130%;
    /* display: block; */
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    width: 287px;
    padding: 11px 30px;
    border: 0;
    left: -39px;
    background: #F7F6F3;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 3px 6px #0000000D;
  }
  
    .sub-menu li {
    list-style: none;
  }
  
  header .navbar-nav .dropdown.dropdown li a:before ,  header .navbar-nav .sub-menu li a:before,  .sub-menu li a:before {
    content: "";
    width: 9px;
    height: 9px;
    left: 0;
    top: 16px;
    position: absolute;
    background: url(../images/icons/sub-menu-icon.svg) no-repeat;
    background-size: contain;
    display: block;
  }
  
  ul.dropdown-menu:before , ul.sub-menu:before {
    content: '';
    position: absolute;
    top: -7px;
    left: 50%;
    margin-left: 0;
    width: 0;
    height: 0;
    border-bottom: solid 7px #ffffff;
    border-left: solid 7px transparent;
    border-right: solid 7px transparent;
    display:none;
  }
  
  header .navbar-nav .dropdown.dropdown li a, .sub-menu li a, .top-item .sub-menu li a {
    position: relative;
    padding: 7px 10px 7px 33px;
    font-family: "Nunito Sans", sans-serif;
    font-size: 16px;
    line-height: 28px;
    color: #6E757B;
    font-weight: 300;
    display: block;
    margin: 0 !important;
  }
  
  a {
    cursor: pointer;
  }
  
  header.fixed {
    position: fixed;
    left: 0;
    right: 0;
    background: #FFF;
    z-index: 999;
    padding: 2px 0;
    box-shadow: 0px 0px 10px rgba(0,0,0,.11);
  }
  
  header.fixed .nav-link, header.fixed .menu-item a {
    color: #000;
  }
  
  header.fixed .nav-link:hover, header.fixed .nav-link:focus, header.fixed .menu-item a {
    color: #000 ;
  }
  
  header.fixed .btn, header.fixed .top-btn a {
    background: #fdd90c;
    color: #000 !important;
    display: inline-block;
  }
  
  header.fixed .searc-icon-dark {
    display: inline-block !important;
  }
  
  header .navbar-nav .dropdown.dropdown li a:hover,  .sub-menu li a:hover {
    background: transparent;
    color: #EE1C25;
  }
  
  header.fixed img.searc-icon-light {
    display: none;
  }
  
  header.fixed img.logo-light {
    display: none;
  }
  
  .navbar-nav li {
    position: relative;
  }
  
  header.fixed .logo-dark {
    display: inline-block !important;
  }
  
  .search-open-header .search-form-main-header {
    display: block !important;
    display: inline-block !important;
    position: absolute;
    right: 10px;
    z-index: 99;
    min-width: 600px;
    top: 69px;
    background: #FFF;
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, .11);
    border-radius: 4px;
  }
  
  .menu-item-has-children {
    margin-right: 10px;
  }
  
  .navbar-expand-lg .navbar-nav {
    position: relative;
  }
  
  header span.input-group-btn .btn {
    padding: 18px 21px !important;
  }
  
  header span.input-group-btn .btn:hover, header span.input-group-btn .btn:focus {
    background: #17782f !important;
  }
  
  header.fixed span.input-group-btn .btn img {
    filter: invert(69%) sepia(87%) saturate(88%) hue-rotate(191deg) brightness(-75%) contrast(105%);
  }
  
  header.fixed span.input-group-btn .btn:hover, header.fixed span.input-group-btn .btn:focus {
    background: #fdd90c !important;
  }
   
  
  .search-top a::after {
    display: none;
  }
  
  header.fixed .current-menu-item .sub-menu li:not(.current-menu-item) a {
    color: #212529!important;
  }
  
  header.fixed .current-menu-item .sub-menu li:not(.current-menu-item) a:hover {
    color: #17782f !important;
  }
  .right-cta-inner .btn {
      margin: 0px 14px;
  }
  
  .search-top {
      margin-left: 10px;
  }
  .right-head {
      margin-left: 24px;
  }
  
  @media (min-width: 992px) {
  
    .navbar-nav {
      align-items: center;
  }
  
    .dropdown:hover .dropdown-menu,  .menu-item-has-children:hover .sub-menu {
      visibility: visible !important;
      top: 100%;
      opacity: 1;
      display: block;
  }
    .sub-menu {
        position: absolute;
    }
  
    header .current-menu-item a {
        opacity: 0.8;
    }
  
    header .navbar-nav .sub-menu li.current-menu-item a {
        opacity: 0.6;
    }
  
    header.fixed .current-menu-item a {
        opacity: 1;
        color: #17782f !important;
    }
  
    header .navbar-nav .sub-menu li a:hover {
        opacity: 1 !important;
    }
  
    header .sub-menu li.current-menu-item a {
        color: #212529 !important;
        opacity: 0.8;
    }
  
    header .sub-menu li.current-menu-item a:before {
        background: #fdd90c;
    }
  }
   
  
  .btn-primary {
    background: #fdd90c;
    color: #000 !important;
  }
  
  .btn-primary:hover, .btn-primary:focus {
    background: #fdd90c !important;
    color: #000 !important;
    box-shadow: none;
    border-color: #fdd90c;
  }
  .btn-outline {
    border-color: #EE1C25 !important;
  }
  
  .btn-outline:hover {
    background: #EE1C25;
    color: #FFF;
  }
   
   /*-----------------------------------------------------------------*/
   /* Button
  /*-----------------------------------------------------------------*/
  
  .btn-col {
    margin-top: 30px;
  }
  
  .btn {
    border-radius: 4px;
    padding: 18px 40px;
    text-align: center;
    font-size: 15px;
    font-weight: bold;
    display: inline-block;
    line-height: 28px;
    border:none;
    /* min-width: 176px; */
    font-family: "proxima-nova",sans-serif;
  }
  
  .btn-primary {
    background: #56C2C2;
    color: #ffffff !important;
  }
  
  .btn-primary:hover, .btn-primary:focus {
    background: #37adad!important;
    color: #ffffff !important;
    box-shadow: none;
     
  }
  
  .btn-orange {
      background: #FABAAB;
  }
  .btn-orange:hover,
  .btn-orange:focus{
      background: #e98c76 !important;
  }
  .btn.btn-primary-dark,
  .btn.btn-primary-dark:focus{
      background: #1B7895 !important;
      color: #FFF;
  }
  
  .btn.btn-primary-dark:hover {
      background: #249dc3;
  }
   /*-----------------------------------------------------------------*/
   /*  Home Banner
  /*-----------------------------------------------------------------*/
   
  .home-banner {
      height: 750px;
      display: flex;
      align-items: center;
      position: relative;
      background-position: center !important;
  }
  .home-banner:before {
      content: "";
      background: #000;
      width: 100%;
      left: 0;
      right: 0;
      top: 0;
      bottom: 0;
      height: 100%;
      position: absolute;
      opacity: 0.2;
  }
  
  .home-banner .container {
      position: relative;
  }
  .home-banner  .banner-title {
      font-size: 52px;
      line-height: 62px;
      max-width: 500px;
  }
  
  .home-banner  .description {
      font-size: 24px;
      font-weight: normal;
      margin-bottom: 46px;
      margin-top: 29px;
  }
  .banner-btn .btn {
      margin-right: 30px;
  }
  
  
   /*-----------------------------------------------------------------*/
   /* About Section
  /*-----------------------------------------------------------------*/
  
  a.video-icon {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
  }
  
  .img-col-video {
      position: relative;
  }
   
  .features-box {
      background: transparent linear-gradient(180deg, #f8f6f4 0%, #D6CFC200 100%) 0% 0% no-repeat padding-box;
      padding: 20px 18px;
      height: 100%;
  }
  
  .features-box h3 {
      margin: 19px 0px 18px;
  }
  
  .features-icon {
      min-height: 97px;
      display: flex;
      align-items: center;
  }
  
   /*-----------------------------------------------------------------*/
   /* Services Section
  /*-----------------------------------------------------------------*/
  
  
  .services-sec {
     background: #D6CFC2 0% 0% no-repeat padding-box;
     position: relative;
  }
  
  .services-sec:before {
      content: "";
      background: transparent radial-gradient(closest-side at 18% 18%, #D6CFC2 0%, #D6CFC2F6 0%, #D6CFC200 100%) 0% 0% no-repeat padding-box;
      mix-blend-mode: multiply;
      opacity: 0.57;
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
  }
  .services-text {
      position: absolute;
      width: 100%;
      display: flex;
      justify-content: space-between;
      bottom: 17px;
      padding: 0px 20px;
  }
  
  .services-box {
      position: relative;
  }
  
  .services-text h3 {
      color: #FFF;
      margin: 0;
  }
  
  span.right-icon {
      width: 33px;
      height: 33px;
      background: #56C2C2;
      border-radius: 50%;
      text-align: center;
      justify-content: center;
      display: flex;
      align-items: center;
  }
  
  span.right-icon img {
      max-width: 11px;
      height: 12px;
      display: inline-block;
      margin-left: 4px;
  }
  
  .container-lg-custom {
      max-width: 1870px;
      margin: auto;
      padding-left: 15px;
      padding-right: 15px;
  }
  
  .services-sec  .head-row {
      margin-bottom: 55px;
  }
  
  .services-media img {
      width: 100%;
      min-height: 466px;
      max-height: 466px;
      object-fit: cover;
  }
  
  .btn-right-col {
      text-align: right;
  }
  
   /* List Style */
  
  ul.list-style {
      padding: 0;
      list-style: none;
      margin-top: 54px;
      margin-bottom: 0;
  }
  
  ul.list-style li {
      font-size: 16px;
      line-height: 25px;
      font-family: "proxima-nova";
      color: #1B7895;
      position: relative;
      padding-left: 52px;
     
  }
  
  span.list-icon {
      position: absolute;
      left: 0;
      top: 4px;
  }
  
  ul.list-style.column-2 {
      display: grid;
      grid-template-columns: repeat(2,1fr);
      grid-gap: 40px 10px;
  }
  ul.list-style.column-2 li {
      max-width: 200px;
  }
  
  .sm-list span.list-icon {
      max-width: 23px;
      top: -3px;
  }
   
  .sm-list.list-style li {
      margin-bottom: 13px;
      padding-left: 36px;
      color: #6E757B;
      font-size: 16px;
      font-family: "Nunito Sans", sans-serif;
  }
  ul.list-style.sm-list {
      margin-top: 40px;
  }
   /*-----------------------------------------------------------------*/
   /* Journey Section
  /*-----------------------------------------------------------------*/
  
  .sec-space.journey-sec {
      background-color: #D6CFC2;
  }
  
  .journey-sec {
      background-image: url('../images/icons/journeybg.svg'), linear-gradient( rgba(214, 207, 194) );
      background-repeat: no-repeat;
      background-position: bottom left!important;
      background-position: left;
      background-size: 1028px;
  }
  
  .journey-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-gap: 46px;
      /* margin-top: 45px; */
  }
  .journey-text {
      background: #bab0a1;
      padding: 28px 39px;
      display: flex;
      justify-content: space-between;
      /* min-height: 90px; */
  }
  
  .journey-col {
      border-radius: 8px;
      overflow: hidden;
  }
  
  .journey-text h3 {
      margin: 0;
  }
    
  .journey-box a {
      text-decoration: none;
  }
  
  .journey-sec .btn-col {
      margin-top: 80px;
  }
  .journey-media img {
      max-height: 379px;
      min-height: 379px;
      object-fit: cover;
  }
  
  
  .step-icon {
      width: 140px;
      height: 140px;
      background: #56C2C2;
      border-radius: 50%;
      text-align: center;
      line-height: 140px;
      display: inline-block;
  }
  
  .step-box {
      text-align: center;
  }
   
  .step-box h3 {
      margin: 40px 0px 29px;
  }
  
  .step-box p {
      max-width: 282px;
      margin: 0px auto;
  }
  
  .sec-head {
      margin-bottom: 80px;
  }
  .sec-head p {
      margin: 0;
  }
  .step-box {
      position: relative;
  }
  
   .step-col:last-child .step-box:before {
      display: none;
  }
  span.step-num {
      width: 29px;
      height: 29px;
      background: #FABAAB;
      display: inline-block;
      border-radius: 50%;
      position: absolute;
      line-height: 29px;
      color: #FFF;
      font-size: 18px;
      font-family: "proxima-nova";
      right: -5px;
      top: 14px;
  }
  
  .step-icon {
      position: relative;
  }
  
  .step-box:before {
      content: "";
      width:221px;
      height: 53px;
      background-image: url('../images/step-line.png');
      position: absolute;
      top: 27px;
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
      /* left: 0; */
      right: -126px;
      margin: auto;
  }
  
  
   /*-----------------------------------------------------------------*/
   /* CTA Section
  /*-----------------------------------------------------------------*/
  
  
  .cta-sec:before {
      content: "";
      position: absolute;
      width: 100%;
      left: 0;
      right: 0;
      top: 0;
      bottom: 0;
      background: #000;
      opacity: 0.2;
  }
  
  .cta-sec {
      min-height: 741px;
      display: flex;
      align-items: center;
  }
  
  .cta-text {
      max-width: 460px;
      position: relative;
  }
  
  .cta-text .btn-col {
      margin-top: 48px;
  }
  
  
   /*-----------------------------------------------------------------*/
   /* Review Section
  /*-----------------------------------------------------------------*/
  
  .review-sec {
      background-color: #F3F1ED;
      background-image: url(../images/icons/bg-flower2.svg);
      background-repeat: no-repeat;
      background-position: bottom right !important;
      background-size: 617px 747px;
  }
  
  .review-media {
      width: 81px;
      height: 81px;
  }
  
  .review-media img {
      width: 81px;
      height: 81px;
      object-fit: cover;
      border-radius: 50%;
  }
  
  .review-col {
      background: transparent linear-gradient(180deg, #d6cfc24f 0%, #D6CFC200 100%) 0% 0% no-repeat padding-box;
      border-radius: 12px;
      padding: 80px;
  }
  
  .review-text {
      font-size: 26px;
      line-height: 40px;
      color: #6E757B;
  }
  
  .star-icon {
      display: flex;
      margin-top: 14px;
  }
  
  .star-icon img {
      width: 12px !important;
      height: 12px;
      margin-right: 6px;
  }
  
  .review-name h5 {
      font-size: 22px;
  }
  
  
  
  .g-5, .gx-5 {
      --bs-gutter-x: 5rem;
  }
  .g-5, .gy-5 {
      --bs-gutter-y: 5rem;
  }
  
  
  .review-carousel .owl-dots .owl-dot span {
      width: 31px !important;
      height: 7px;
      background: #BAB0A1;
  }
  
  .review-carousel  button.owl-dot.active span {
      width: 89px !important;
      background: #56C2C2 !important;
  }
  
  .review-carousel  .owl-dots {
      margin-top: 60px !important;
  }
  
  
  
  /* Blog Sec */
  
  
  
  .web-box1{
    background:  url('../images/icons/blog-pattern2.svg') #BAB0A1 no-repeat;
    background-size: 372px 283px;
    background-position: bottom left;
    background-position-y: -19px;
  }
  .web-box2{
    background: url('../images/icons/blog-pattern1.svg') #56C2C2 no-repeat;
    background-size: 257px 234px;
    background-position: bottom left;
    background-position-y: 0;
  }
  .blog-grid {
      display: grid;
      grid-template-columns: repeat(3,1fr);
      grid-gap: 50px;
  }
  
  span.auth-media {
      width: 43px;
      display: inline-block;
      position: relative;
      margin-right: -15px;
  }
  
  span.auth-media img {
      width: 43px;
      height: 43px;
      object-fit: cover;
      border: 2px solid #FFF;
      border-radius: 50%;
  }
  
  .blog-cat {
      background: #1B7895;
      border-radius: 3px;
      display: inline-block;
      position: absolute;
      top: 15px;
      right: 20px;
      padding: 8px 20px;
      color: #FFF;
      font-size: 12px;
      line-height: 18px;
      font-family: "proxima-nova";
      font-weight: normal;
      letter-spacing: .5px;
  }
  
  .blog-col {
      position: relative;
  }
  
  .blog-box {
      position: relative;
  }
  
  .blog-box h3 {
      font-size: 20px;
      line-height: 28px;
      color: #FFFF;
  }
  
  .blog-text {
      position: absolute;
      bottom: 17px;
      padding: 17px 30px;
      left: 0;
      right: 0;
      margin: 0px auto;
      width: 96%;
      background: #BAB0A1;
      border: 1px solid #FFFFFF31;
      border-radius: 6px;
      opacity: 1;
      backdrop-filter: blur(9px);
      -webkit-backdrop-filter: blur(9px);
  }
  .blog-text h3 {
      margin: 0;
  }
  .webinar-box {
      min-height: 234px;
      padding: 40px 40px;
      border-radius: 8px;
      display: flex;
      height: 100%;
  }
  .web-inner {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      height: 100%;
  }
  .web-auth {
      display: flex;
      align-items: center;
      justify-content: end;
      margin-right: 17px;
  }
  
  .web-auth h5 {
      margin: 0;
      font-size: 16px;
      color: #FFF;
      margin-right: 20px;
  }
  
   
  .blog-lg .blog-media img {
      min-height: 693px;
      max-height: 693px;
  }
  
  .blog-sm .blog-media img {
      min-height: 408px;
      max-height: 408px;
  }
  
   .blog-grid .blog-col:nth-child(2), .blog-grid .blog-col:nth-child(3) {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
  }
   
  
  .blog-box.blog-lg .blog-text {
      background: transparent;
      border: 0;
      backdrop-filter: blur(0px);
  }
   
  .blog-media {
      position: relative;
      overflow: hidden;
  }
  
  .blog-media:before {
      content: "";
      position: absolute;
      width: 100%;
      left: 0;
      right: 0;
      top: 0;
      bottom: 0;
      background: #000;
      opacity: 0.2;
      border-radius: 8px;
  }
  
  
  
  
  /* Footer */
  
  
  footer#footer {
      background-color: #1b7895;
      padding-top: 80px;
      color: #fff;
  }
  .footer__top {
      padding-bottom: 40px;
  }
  .footer_line {
      border-top: 1px solid #4792a9;
      opacity: .5;
      margin: 60px 0px 80px;
  }
  .footer__middle {
      padding-top: 0;
      padding-bottom: 48px;
  }
  .footer-logo {
      margin-bottom: 41px;
  }
  .footer-text-2 {
      font-size: 15px;
      font-weight: 300;
      line-height: 28px;
      max-width: 347px;
  }
  p:last-child {
      margin-bottom: 0;
  }
  .footer__block .footer__title, .footer__block_contact .footer__title {
      font-size: 20px;
      font-weight: 700;
      line-height: 1;
      margin-bottom: 24px;
      color: #FFF;
  }
  .footer__block .footer-nav {
      font-size: 15px;
      font-weight: 400;
  }
  .footer-social-links {
  
      margin-top: 30px;
  }
  .footer-social-links .nav-item {
      margin-right: 10px;
      padding-left: 0;
  }
  
  
  .footer-social-links .nav-link {
      width: 44px;
      height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #fabaab;
      border-radius: 50px;
      overflow: hidden;
      color: #E6E1DA;
  }
  
  .footer__bottom {
      background-color: #14708d;
      padding: 30px;
      text-align: center;
      font-size: 14px;
      font-weight: 300;
  }
  .footer__bottom {
      font-weight: 300;
  }
  .footer__form-control {
      font-size: 14px;
      padding: 16px 30px;
      line-height: 2;
  }
  ul.footer-nav li {
    margin-bottom: 8px;
    position: relative;
    font-weight: 300;
  }
  .footer__block a {
      color: #FFF;
      text-decoration: none;
      font-weight: 300;
      position: relative;
      padding-left: 20px;
  }
  .footer__block a:before {
     content: "";
     position: absolute;
     height: 6px;
     width: 6px;
     border: 1px solid #9FB3D0;
     border-left: 0;
     border-bottom: 0;
     transform: rotate(45deg);
     top: 8px;
     left: 0;
  }
  
  .footer__bottom a {
      color: #FFF;
      text-decoration: none;
  }
  
  .footer__block_contact ul li a {
      color: #FFFF;
      text-decoration: none;
  }
  
  span.add-icon {
      position: absolute;
      left: 0;
  }
  
  .footer__block_contact ul li {
      padding-left: 32px;
  }
  .blog-col a {
      text-decoration: none;
  }
  
   /*-----------------------------------------------------------------*/
   /* Inner Pages
  /*-----------------------------------------------------------------*/
  
  .inner-banner  {
      height: 590px;
      display: flex;
      align-items: center;
      
  }
  .inner-banner.bg-img { 
      display: flex;
      align-items: center;
      justify-content: center;
      background-position: center !important;
  }
  
  .page-header {
      text-align: center;
      position: relative;
  }
  .page-header h1 {
      text-align: center;
      color: #FFF;
      font-size: 46px;
      line-height: 52px;
  }
   
  .inner-banner:before {
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      left: 0;
      right: 0;
      top: 0;
      bottom: 0;
      background: #000;
      opacity: 0.3;
  }
  .banner-bg-primary:before{
    display: none;
  }
  ul.bredcrumb {
      margin: 0px;
      padding: 0px;
  }
  
  ul.bredcrumb li {
      display: inline-block;
      color: rgb(255 255 255);
      font-size:14px;
      position: relative;
      padding-right: 16px;
      line-height: 13px;
  
  }
  
  ul.bredcrumb li a {
      color: rgb(255 255 255);
      text-decoration:none;
  }
  
  ul.bredcrumb li:before {
      content: "";
      height: 100%;
      width: 1px;
      background: rgb(255 255 255);
      position: absolute;
      right: 5px;
      transform: rotate(25deg);
  }
  
  ul.bredcrumb li:last-child:before {
       display:none; 
  }
  
  .services-grid {
      display: grid;
      grid-template-columns: repeat(4,1fr);
      grid-gap: 40px;
      margin-top: 60px;
  }
   
  .services-img img {
      min-height: 381px;
      max-height: 381px;
      width: 100%;
      object-fit: cover;
      border-radius: 8px 8px 0px 0px;
  }
  
  
  .services-sec-main {
     background: #BAB0A1;
     position: relative;
  }
   .services-wrap-box:before {
      content: "";
      background: transparent linear-gradient(180deg, #D6CFC200 0%, rgba(214, 207, 194, .3) 100%) 0% 0% no-repeat padding-box;
      mix-blend-mode: multiply;
      border-radius: 8px;
      width: 100%;
      height: 50%;
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
  }
  
  .services-wrap-box {
      position: relative;
      height: 100%;
  }
  
  .btn-start {
      display: flex;
      align-items: center;
      position: absolute;
      bottom: 31px;
  }
  
  .services-wrap-box a {
      text-decoration: none;
      position: relative;
  }
  span.st-text {
      margin-right: 17px;
      font-size: 15px;
      letter-spacing: 0.8px;
  }
  
  .services-desc {
      margin: 22px 0px;
  }
  .services-detail {/* position: relative; */padding: 30px 45px 60px;}
  
  section.mid-cta-sec {
      padding: 100px 0px 0px;
  }
  
  .mid-cta-box {
      min-height: 495px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: url('../images/icons/mid-cta-pattern.svg') #56C2C2;
      border-radius: 8px;
      padding: 100px;
      background-repeat: no-repeat;
      background-size: cover;
      background-position: left;
      background-position-x: -27px;
      /* margin-bottom: -190px; */
      position: relative;
      z-index: 3;
  }
  
  .mid-cta-box h3 {
      font-size: 38px;
      line-height: 48px;
      color: #FFFF;
      text-align: center;
      max-width: 800px;
  }
  
  /* Custom accordion styling */
  .custom-accordion .accordion-item {
    margin-bottom: 12px;
    border: none;
    border-radius: 8px !important;
    overflow: hidden;
    background: #fcfaf9;
  }
  
  .custom-accordion .accordion-button {
    line-height: 28px;
    font-weight: 600;
    color: #1B7895;
    background-color: #D6CFC22E;
    border: none !important;
    box-shadow: none;
    padding: 16px 35px;
    border-radius: 8px !important;
    font-size: 19px;
    min-height: 80px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .custom-accordion .accordion-button:focus {
    box-shadow: none;
  }
  
  .custom-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2300b7bd'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(-90deg);
    display: none;
  }
  
  .custom-accordion .accordion-button.collapsed::after {
    transform: rotate(0deg);
  }
  
  .custom-accordion .accordion-body {
    /* font-size: 15px; */
    color: #333;
    background: transparent;
    border-top: 0;
    padding: 15px 20px;
  }
  
  .accordion-collaps {
      border: 0 !important;
      box-shadow: none !important;
  }
  
  .head-row {
      margin-bottom: 40px;
  }
  .faq-sec {
      background: #fbfaf9;
      padding-top: 300px;
      margin-top: -190px;
      position: relative;
  }
  .accordion-button  .right-icon {
      transform: rotate(90deg);
      margin-left: 30px;
  }
   
  button.accordion-button:not(.collapsed) .right-icon{
       transform: rotate(-90deg);
       background: #FABAAB;
  }
  
  .cta-details {
      min-height: 587px;
      display: flex;
      justify-content: space-between;
      padding: 100px;
      align-items: flex-end;
      position: relative;
      border-radius: 8px;
      overflow: hidden;
      z-index: 1;
  }
  
  .cta-left {
      max-width: 360px;
      position: relative;
  }
  
  .cta-left h2 {
      margin-bottom: 20px;
  }
  
  .overlay2:before {
      content: "";
      position: absolute;
      width: 100%;
      left: auto;
      right: 0;
      top: 0;
      bottom: 0;
      background: #000;
      opacity: 0.3;
  }
  
  .cta-right {
      margin-left: 30px;
      position: relative;
  }
  
  .container-outer {
      max-width: 1580px;
      margin: auto;
      padding-left: 15px;
      padding-right: 15px;
  }
  
  .services-box-lg  h3 {
      font-size: 29px;
      line-height: 28px;
  }
  
  .services-box-lg .services-img img {
      min-height: 530px;
      max-height: 530px;
  }
  
  .faq-sec-main{
     background: #fbfaf9;
     padding-bottom: 300px;
     margin-bottom: -300px;
  }
  
  .cta-size-sm {
      max-width: 300px;
  }
  .head-row-space {
      margin-bottom: 60px;
  }
  .price-col {
      margin-bottom: 12px;
  }
  
  .price-left  {
      color: #56C2C2;
      font-weight: 600;
  }
   
  .price-info {
      color: #1B7895;
  }
  .book-time {
      margin-left: 40px;
      display: flex;
      align-items: center;
      flex: 1;
  }
  .lead-text-row {
      background: #D6CFC234 0% 0% no-repeat padding-box;
      border: 1px dashed #BAB0A171;
      border-radius: 8px;
      padding: 20px;
      min-height: 147px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 80px 0px;
  }
  
  .how-sec {
      background: #56C2C2 url('../images/icons/cta-pattern-full.svg');
      background-repeat: no-repeat;
      background-position: left;
      background-size: cover !important;
      background-blend-mode: multiply;
  }
  
  .how-grid-row {
      display: grid;
      grid-template-columns: repeat(5,1fr);
      grid-gap: 90px;
  }
  .how-grid-row .step-icon {
      width: 126px;
      height: 126px;
      background-color: rgb(255 255 255 / 10%);
  }
  .how-sec .sec-head{
      margin-bottom: 65px;
  }
  
  .how-grid-row  .step-box:before {
      content: "";
      width: 96px;
      height: 53px;
      background-image: url('../images/step-line-sm.png');
      position: absolute;
      top: 27px;
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
      /* left: 0; */
      right: -93px;
      margin: auto;
  }
  
  .how-grid-row .step-col h3 {
      max-width: 169px;
      margin-left: auto;
      margin-right: auto;
  }
  .book-info {
      display: flex;
  }
  
  .book-icon {
      width: 30px;
  }
  
  .book-icon span {
      width: 30px;
      height: 30px;
      display: inline-block;
      background: #56C2C2;
      border-radius: 50%;
      text-align: center;
      color: #FFF;
      font-weight: bold;
  }
  
  .book-text {
      margin-left: 20px;
  }
  
  .book-text ul li {
      margin-bottom: 8px;
  }
  
  .book-text ul {
      margin-top: 20px;
  }
  .book-head {
      max-width: 546px;
  }
  section.book-sec {
      padding-bottom: 0;
  }
  
  .book-text-size {
      max-width: 285px;
  }
  
  section.meet-sec.sec-space {
      background: transparent radial-gradient(closest-side at 86% 83%, #D6CFC2 0%, #B2A796 0%, #bab0a1 100%) 0% 0% no-repeat padding-box;
  }
  
  .support-row2 {
      margin-top: 30px;
  }
  
  body .list-two-col.sm-list{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    
  }
  .list-space-top{
  margin-top: 22px !important;
  }
  section.support-sec {
      background: #F3F1ED;
      margin-top: 130px;
      overflow: hidden;
      padding-bottom: 530px;
      margin-bottom: -500px;
  }
  section.support-sec .sec-head {
      max-width: 389px;
      margin: 0px auto 60px;
  }
  section.support-sec:before {
      content: "";
      width: 654px;
      height: 715px;
      background-image: url('../images/icons/support-right-pattern.svg');
      position: absolute;
      top: 0;
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
      /* left: 0; */
      right: -100px;
      margin: auto;
  }
  .support-sec::after {
      content: "";
      width: 654px;
      height: 715px;
      background-image: url('../images/icons/support-pattern-left.png');
      position: absolute;
      bottom: 71px;
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
      /* left: 0; */
      left: -100px;
      margin: auto;
  }
  
  .faq-wrap{ 
  margin-top: -187px; 
  background: #FBFAF9; 
  padding-top: 297px;
  }
  .go-head {
      max-width: 400px;
  }
  
  .member-sec  .lead-text-row {
      margin-bottom: 0;
  }
  
  .primary-bg-sec {
      background: #BAB0A1;
  }
  
  .member-head {
      max-width: 230px;
  }
  .member-icon {
      width: 87px;
      height: 87px;
      background: #ADA393;
      border-radius: 50%;
      text-align: center;
      line-height: 87px;
  }
  
  .member-box h3 {
      margin: 30px 0px 20px;
      color: #FFF;
  }
  
  .member-box p {
      color: #FFF;
  }
  .cta-size-lg {
      max-width: 500px;
  }
  
  
  .list-item {
      display: flex;
      align-items: center;
      background: #F5FBFB;
      border-radius: 4px;
      color: #1B7895;
      padding: 20px 20px;
      justify-content: space-between;
      font-weight: 400;
  }
  
  .list-item p {
      margin: 0;
  }
  
  .list-box {
      grid-gap: 15px;
      display: grid;
  }
  
  .two-col-list {
      grid-template-columns: repeat(2, 1fr);
  }
  .four-col-list {
      grid-template-columns: repeat(4, 1fr);
  }
  .box-space-top{
      margin-top: 40px;
  }
  
  .row-space-top {
      margin-top: 100px;
  }
  
  .stats-card {
      background: transparent linear-gradient(180deg, #F7F6F3 0%, #FFFFFF 100%) 0% 0% no-repeat padding-box;
      padding: 45px 40px;
      height: 100%;
      border-radius: 12px;
  }
  .stats-icon {
      width: 36px;
      height: 36px;
      background: #56C2C2;
      text-align: center;
      line-height: 36px;
      border-radius: 50%;
  }
  .stats-card h2 {
      font-size: 79px;
      margin: 42px 0px 10px;
  }
  .stats-card h2 small {
      font-size: 33px;
      display: inline-block;
      margin-left: 20px;
  }
  .book-features-sec {
      background: #F3F1ED url('../images/icons/mono-cta-pattern.svg');
      background-repeat: no-repeat;
      background-position: bottom;
      margin-top: -71px;
      padding-top: 174px;
  }
  
  .card-box {
      background: #FFFFFF 0% 0% no-repeat padding-box;
      box-shadow: 0px 3px 60px #0000000D;
      border-radius: 8px;
      padding: 58px 50px;
      text-align: center;
      height: 100%;
  }
  
  .card-icon {
      width: 87px;
      height: 87px;
      background: #56C2C2;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      margin: auto;
  }
  
  .card-box h3 {
      margin: 30px 0px 15px;
  }
  
  
  .journey-list-col .list-item {
      margin-bottom: 15px;
  }
  
  .journey-text-sec{
      background: #F3F1ED;
  }
  
  .jn-media img {
      min-height: 404px;
      max-height: 404px;
      object-fit: cover;
      width: 100%;
  }
  
  .journey-row-main +  .journey-row-main {
      margin-top: 60px;
  }
  
  .cta-center-text .cta-details {
      flex-wrap: wrap;
      text-align: center;
      justify-content: center;
      align-items: center;
  }
  
  .cta-center-text  .cta-left {
      max-width: 490px;
      margin: auto;
  }
  
  .cta-center-text  .cta-right {
      width: 100%;
  }
  
  
  .g-4, .gy-4 {
      --bs-gutter-y: 2.5rem;
      --bs-gutter-x: 2.5rem;
  }
  
  
  .bg-light-solid{
      background-color: #fbfaf9;
  }
  .bg-dark-solid{
      background-color: #F3F1ED;
  }
  .btn-col .btn + .btn {
      margin-left: 30px;
      display: inline-block;
  }
  
  .overl-text {
      background: #BAB0A1;
      border-radius: 8px;
      padding: 40px 30px;
      max-width: 286px;
      color: #FFF;
      position: relative;
  }
  
  .overl-text p {
      font-size: 18px;
      line-height: 26px;
  }
  
  .overl-text h6 {
      color: #FFF;
      font-size: 79px;
      margin-bottom: 0;
      line-height: 80px;
  }
  
  .overl-text h6 small {
      font-size: 33px;
  }
  
  .overl-text h6 span {
      font-size: 18px;
      display: block;
      line-height: 10px;
  }
  
  .over-icon {
      background: #B2A797;
      width: 54px;
      height: 54px;
      border-radius: 50%;
      text-align: center;
      line-height: 54px;
      position: absolute;
      right: 24px;
      top: 15px;
  }
  
  .over-text-main {
      position: absolute;
      bottom: -47px;
      left: -109px;
  }
  
  .over-img {
      position: relative;
  }
  
  
  .hp-sec{
   background: #FBFAF9 ;
  }
  
  .accordion-style-2 .accordion-item {
      background: #F3F1ED;
  }
  
   
  .accordion-style-2 .accordion-body {
     background: #F3F1ED;
     padding: 0px 34px 28px;
     color: #6E757B;
  }
   
  
  .accordion-style-2   .accordion-button {
        background: #F3F1ED;
  }
  
  .side-bg-right {
      background-size: calc(50% - 40px);
      background-repeat: no-repeat;
      background-position: right;
      overflow: hidden;
  }
  
  .side-text {
      max-width: 640px;
      margin-left: auto;
      padding: 130px 0px;
  }
  .side-img {
      height: 100%;
  }
  .treat-box {
      background-color: #FBFAF9;
      padding: 80px;
      max-width: 1080px;
      margin: 0px auto;
      text-align: center;
      position: relative;
  }
  .treat-box:before{
      content: "";
      background: url('../images/icons/treat-icon.png') no-repeat;
      width: 300px;
      height: 295px;
      position: absolute;
      right: 0;
      top: -34px;
      background-position: right;
      background-size: contain;
  }
  .treat-box .btn-col {
      margin-top: 50px;
  }
  .title-treat {
      max-width: 541px;
      margin: 0px auto 50px;
  }
   
  
  .cta-small {
      background: #BAB0A1;
      padding: 92px 80px;
      border-radius: 8px;
      position: relative;
  }
  .cta-small:before{
      content: "";
      background: url('../images/icons/cta-overlay-img.svg') no-repeat;
      width: 739px;
      height: 100%;
      position: absolute;
      left: 0;
      top: -16px;
      background-position: left;
      background-size: contain;
  }
  .cta-small h2 {
      margin: 0;
      color: #FFF;
  }
  
  .cta-small .row {
      align-items: center;
  }
  
  .cta-left-text {
      max-width: 360px;
  }
  .cta-space-bt {
      margin-bottom: 0px;
  }
  .cta-btn-main {
      text-align: right;
  }
  
   
  .web-wrap {
      display: flex;
      align-items: center;
  }
  
  .web-media {
      width: 100%;
      max-width: 549px;
  }
  
  .web-media img {
      min-height: 451px;
      max-height: 451px;
      object-fit: cover;
      width: 100%;
  }
  
  .btn-link-box {
      display: flex;
      align-items: center;
      color: #1B7895;
      font-size: 15px;
      font-family: "proxima-nova";
      margin-top: 30px;
  }
  
  .web-meta {
      background: #FABAAB;
      padding: 9px 18px;
      line-height: 10px;
      display: inline-block;
      border-radius: 18px;
      font-size: 14px;
      color: #FFF;
      margin-bottom: 20px;
  }
   
  .web-row a {
      text-decoration: none;
  }
  
  .btn-link-box .right-icon {
      margin-left: 24px;
  }
  .web-text p {
      color: #6E757B;
  }
  p.web-lead-info {
      color: #56C2C2 !important;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.5px;
      margin: 18px 0px 18px;
  }
  
  .web-text h3 {
      font-size: 28px;
      line-height: 30px;
  }
  
  .web-text-main {
      padding-left: 100px;
  }
  .web-row + .web-row {
      margin-top: 80px;
  }
  
  .banner-bg-primary{
      background:url('../images/icons/banner-pattern-left.svg')  #BAB0A1 ;
      background-repeat: no-repeat;
  }
  .banner-bg-primary:after{
      content: "";
      background:url('../images/icons/banner-pattern-right.svg');
      width: 830px;
      position: absolute;
      height: 100%;
      right: 0;
  }
  .team-media img {
      width: 100%;
      min-height: 430px;
      max-height: 430px;
      object-fit: cover;
  }
  .team-text h2 {
      margin-bottom: 14px;
  }
  
  .team-text  .designation {
      margin-bottom: 28px;
  }
  
  .team-row-main +  .team-row-main {
      margin-top: 60px;
  }
  .team-sec:before{
      content: "";
      background-image: url(../images/icons/support-pattern-left.png);
      background-repeat: no-repeat;
      width: 654px;
      height: 751px;
      position: absolute;
      left: 0;
      bottom: 0;
      background-size: contain;
      background-position: bottom left;
  }
  
  .seen-sec{
      background: #140004;
      padding: 6px 0px;
  }
  .seen-logo img {
      max-width: 478px;
  }
  .list-custom-space ul.list-style.sm-list {
      margin-top: 19px;
  }
  
  .list-custom-space h4 {
      margin-top: 40px;
  }
  
  .cta-solid-bg-style{
      padding-bottom: 120px; 
  }
  
  .cta-bg-color{
      background: #BAB0A1;
  }
  .cta-bg-color:before{
      content: "";
      background: url('../images/icons/cta-pattern-right.svg') no-repeat;
      width: 1035px;
      height: 100%;
      background-size: contain;
      background-position: right;
      right: 0;
      position: absolute;
      top: 0;
  }
  .cta-size-solid {
      max-width: 400px;
  }
  .cta-sub{
      color: #FFF;
      opacity: .69;
      margin-bottom: 3px;
  }
  .webinar-category {
      background: #1B7895;
      border-radius: 3px;
      display: inline-block;
      position: absolute;
      top: 15px;
      right: 20px;
      padding: 8px 20px;
      color: #FFF;
      font-size: 12px;
      line-height: 18px;
      font-family: "proxima-nova";
      font-weight: normal;
      letter-spacing: .5px;
  }
  
.web-col {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
  .web-grid-main {
      display: grid;
      grid-template-columns: repeat(3,1fr);
      grid-gap: 80px 50px;
  }
  
  .webin-img img {
      width: 100%;
      min-height: 380px;
      max-height: 380px;
      object-fit: cover;
  }
  
  .webinar-grid a {
      text-decoration: none;
  }
  .webinar-info-main p {
      color: #6E757B;
  }
  
  .auth-post {
      margin: 12px 0px 20px;
  }
  
  .webinar-info-main {
      margin-top: 27px;
  }
  .webinar-info-main  .web-meta {
      margin-bottom: 0;
  }
  .webinar-info-main h3 {
      margin-top: 17px;
  }
  

  .past-text {
    position: relative;
    padding-right: 13px;
    margin-right: 13px;
}
  
  .past-text:before {
      content: "";
      width: 5px;
      height: 5px;
      background: #FABAAB;
      border-radius: 50%;
      position: absolute;
      right: 0;
      top: 12px;
  }
  .webin-img {
      position: relative;
  }
  
  .webin-img .webinar-category {
      left: 24px;
      right: auto;
  }
  
   .pagination {
        display: flex;
        gap: 8px;
        justify-content: center;
        align-items: center;
        margin-top: 90px;
      }
  
      .pagination a {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 56px;
        height: 56px;
        text-decoration: none;
        border: 1px solid #40c4c4;
        color: #0e6b6b;
        font-weight: bold;
        border-radius: 4px;
        transition: 0.3s;
      }
  
      .pagination a.active {
        background-color: #40c4c4;
        color: #fff;
      }
  
      .pagination a:hover {
        background-color: #40c4c4;
        color: #fff;
      }
  a.next-arrow-page:before {
    content: "";
      display:inline-block;
      width:9px;  
      height:9px;
      box-sizing:border-box;
      border-right:2.5px solid currentColor;
      border-top:2.5px solid currentColor;
      transform: rotate(45deg);
      translate: 1px -1px;
  }
   
  
  
  
  @media (min-width:1200px) and (max-width:1600px){
  
  .container-outer {
      width: 95%;
  }
  
  .container {
      width: 90%;
  }
  
  .over-img {
      margin-left: 100px;
  }
   
  }
  
  
  
  
  @media (min-width:1200px) and (max-width:1600px){
  
  .services-media img {
      width: 100%;
      min-height: 366px;
      max-height: 366px;
      object-fit: cover;
  }
  
  .side-text {
      max-width: 500px;
  }
  
  
  }
  
  
  
  
  
  
  @media (min-width:1200px) and (max-width:1300px){
  
  .right-cta-inner .btn {
      padding: 13px 16px;
      margin: 0px 7px;
      font-size: 13px;
  }
  
  header .nav-link, header .menu-item a {
      margin: 0px 13px;
      font-size: 13px;
  }
  
  .navbar-brand img {
      max-width: 172px;
  }
  main {
      margin-top: 89px;
  }
  
  .right-head {
      margin-left: 0;
  }
  
   
  }
  
  
  @media (min-width:1301px) and (max-width:1500px){
  
  .right-cta-inner .btn {
      padding: 13px 18px;
      margin: 0px 7px;
      font-size: 15px;
  }
  
  header .nav-link, header .menu-item a {
      margin: 0px 10px;
      font-size: 15px;
  }
  
  .navbar-brand img {
      max-width: 172px;
  }
  main {
      margin-top: 89px;
  }
  
  .right-head {
      margin-left: 0;
  }
  .menu-item-has-children {
      margin-right: 10px;
  }
  
   
  }
  
  
  
  
  
  
  @media (min-width:1501px) and (max-width:1660px){
   header .nav-link, header .menu-item a {
      margin: 0px 7px;
  }
   .right-cta-inner .btn {
      margin: 0px 10px;
  }
  
  .right-head {
      margin-left: 2px;
  }
  
  .menu-item-has-children {
      margin-right: 22px;
  }
      
  }
  
  