/*!
Theme Name: leanafy
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: leanafy
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

leanafy is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/* ================= GENERAL ================= */
body {
    font-family: 'Satoshi', Arial, sans-serif;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  color: #011D44;
}
a{
    text-decoration: none;
}
h3 {
    font-size: 28px;
    font-weight: 700;
    line-height: 46px;
    color: #011D44;
}

p {
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
}

/* ================= NAVBAR ================= */
.mobile-menu button {
    margin-left: auto;
    display: block;
}
.navbar {
  padding: 15px 0;
}
.header-navigation ul.navbar-nav li.nav-item a.nav-link {
    font-weight: 500;
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;
    color: #3F4C7C;
    fill: #3F4C7C;
    padding-left: 22px;
    padding-right: 22px;
    padding-top: 10px;
    padding-bottom: 10px;
}
.header-navigation ul.navbar-nav li.nav-item.current-menu-item a.nav-link.active
 {
    color: #494CF5;
}
.header-navigation ul.navbar-nav li.nav-item:hover a.nav-link, 
.header-navigation ul.navbar-nav li.nav-item a.nav-link:focus
 {
    color: #000;
    fill: #000;
}
header.primary-header nav.navbar-light {
    background: #FCFBFB;
}
.white-text a {
    color: #48f4e7;
}   
.theme-btn {
    fill: #FFFFFF;
    color: #FFFFFF;
    padding: 1em 1.5em 1em 1.5em;
    line-height: 1;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.6px;
}

.theme-btn.gradient {
    background-color: transparent;
    background-image: linear-gradient(281deg, #494CF5 9.19%, #855DFF 93.59%);
    border-style: solid;
    border-width: 2px 2px 2px 2px;
    border-color: #494CF5;
}

.theme-btn.outlined {
    background-color: #FFFFFF;
    fill: #494CF5;
    color: #494CF5;
    border-style: solid;
    border-width: 2px 2px 2px 2px;
    border-color: #494CF5;
}

.theme-btn.white-bg {
    background-color: #FFFFFF;
    fill: #494CF5;
    color: #494CF5;
    /* border-radius: 40px 40px 40px 40px;
    padding: 1.3em 2em 1.3em 2em; */
    font-style: normal;
}

/* ================= HERO ================= */
.hero-section {
    padding-top: 100px;
    padding-bottom:0;
}
.hero-banner {
    background: radial-gradient(45% 100% at 45% 100%, #A4A4FA 0%, #8672FE 13.39%, rgba(215, 215, 215, 0) 100%), radial-gradient(45% 100% at 55% 100%, #CBCDF9 0%, rgba(122, 128, 252, 0.426) 57.4%, rgba(116, 122, 253, 0) 100%);
}
section.hero-section .hero-content h1 {
    font-size: 64px;
    font-weight: 700;
    line-height: 85px;
    color: #000000;
    margin-bottom: 30px;
}

section.hero-section .hero-content p {
    font-size: 24px;
    font-weight: 400;
    line-height: 33px;
    color: #000000;
    margin-bottom: 30px;
}
.hero-banner-image {
    padding-top: 100px;
}
.hero-section .hero-banner .hero-banner-image img {
    margin-bottom: -80px;
}

section.partners-section {
    padding-top: 150px;
    padding-bottom: 70px;
}

section.partners-section .p-logo img {
    cursor: pointer;
    filter: grayscale(100%);
    opacity: .5;
    transition: all 500ms ease-in;
    max-width: 80%;
}

section.partners-section .p-logo img:hover {
    opacity: 1;
    filter: none;
}

section.partners-section h3 {
    font-size: 24px;
    font-weight: 600;
    line-height: 27px;
    color: #5236FF;
}

section.offering-section {
    padding-top: 40px;
    padding-bottom: 120px;
}

section.offering-section .section-header h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 56px;
    color: #011D44;
    margin-bottom: 20px;
}

section.offering-section .section-header p {
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
}

.offerings-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
  background-color: #E4E7FF4F;
  border-radius: 35px;
  padding: 35px;
  margin-top:30px;
}

.offerings-card:hover {
  transform: translateY(-5px);
}

.offerings-card h5 {
    font-size: 28px;
    font-weight: 700;
    line-height: 33px;
    color: #242331;
}

.offerings-card p {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: #011D44;
    font-weight: 500;
    margin-bottom: 2rem;
}

/* Hide "Read More" by default */
.read-more-btn {
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

/* Show on hover */
.offerings-card:hover .read-more-btn {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Lottie box size */
.lottie-box {
  /* height: 150px; */
}


/* ================= ECOSYSTEM ================= */

.section-title {
    font-size: 45px;
    font-weight: 700;
    line-height: 70px;
    color: #011D44;
}

.section-header p
 {
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
}

.text-primary
 {
    --bs-text-opacity: 1;
    color: #5236FF !important;
}

.ecosystem-content .icon-box span
 {
    font-size: 14px;
}

.ecosystem-content p
 {
    max-width: 490px;
}
.ecosystem-content hr {
    max-width: 450px;
}

.ecosystem-content span {
  font-size: 16px;
  line-height:28px;
  font-weight: 500;
}

.ecosystem-icon-cols
 {
    grid-template-columns: 3fr 3fr;
    gap: 0.35rem;
}

.ecosystem-icon-cols.integration-btn {
    grid-template-columns: 1fr 3fr;
}

.ecosystem-icon-cols.integration-btn .media-body h5 {
    font-weight: 600;
    color: var(--wp--preset--color--neutral-800);
    font-size: 16px;
}

.bg-light {
  background-color: #f9fafc !important;
}

/* ================= COMMITMENT ================= */
section.commitment-section {
    padding-top: 120px;
    padding-bottom: 120px;
}

.commitment-content {
    background-color: transparent;
    background-image: linear-gradient(281deg, #494CF5 9.19%, #855DFF 93.59%);
    padding: 65px;
    text-align: center;
    font-style: italic;
    border-radius: 35px;
}
.commitment-content p {
    font-size: 24px;
    font-weight: 500;
    font-style: italic;
    line-height: 33px;
    color: #FFFFFF;
}
.homeTestimonialsSwiper {
  max-width: 800px;
  margin: auto;
  padding: 20px;
}

.swiper-nav-wrapper {
  position: absolute;
  right: 20px;
  bottom: 15px;
  display: flex;
  gap: 10px;
}

.swiper-button-prev,
.swiper-button-next {
  position: static; /* remove Swiper's default absolute positioning */
  color: #444;
  background: #f5f5f5;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 18px;
}
.homeTestimonialsSwiper .swiper-nav-wrapper .swiper-button-prev, 
.homeTestimonialsSwiper .swiper-nav-wrapper .swiper-button-next {
    position: relative;
    width: 45px;
    height: 45px;
    line-height: 45px;
    background: #B4AFAF;
}
.homeTestimonialsSwiper .swiper-nav-wrapper .swiper-button-prev
{
    left: 0;
    right: auto;
}

.homeTestimonialsSwiper .swiper-nav-wrapper .swiper-button-next
{
    right: 0;
    left: auto;
}
.swiper-button-next:after, .swiper-button-prev:after
 {
    font-size: 25px !important;
    color: #fff !important;
}
.homeTestimonialsSwiper .swiper-slide {
  padding: 0 25px;
  box-sizing: border-box;
}

.homeTestimonialsSwiper p {
  text-align: left;
}

section.text-center .bg-primary {
  border-radius: 25px;
}
section.testimonials-section {
    padding-bottom: 100px;
}

section.book-demo-section {
    padding-top: 60px;
    padding-bottom: 60px;
    background: #f8f8f8;
}

.book-demo-section .form-content {
    background: url(assets/images/book-demo-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    height: 100%;
    padding: 65px;
    display: flex;
    flex-direction: column;
    justify-content: center;
        border-top-left-radius: 45px;
    border-bottom-left-radius: 45px;
}

.book-demo-section .form-area {
    height: 100%;
    background: #fff;
    padding: 0px 35px;
    border-top-right-radius: 45px;
    border-bottom-right-radius: 45px;
}

.book-demo-section .form-content p {
    max-width: 400px;
}
.book-demo-section .form-area {
    height: 100%;
}

/* ================= FOOTER ================= */
footer.primary-footer
 {
    background: #f8f8f8;
    padding-top: 80px;
    padding-bottom: 60px;
}
footer.primary-footer .widget.widget-media img {
    max-width: 170px;
}
footer.primary-footer .widget {
    margin-bottom: 30px;
}
footer.primary-footer .widget .navbar-brand {
    display: block;
    max-width: 114px;
}
footer.primary-footer .widget .widget-title {
    font-size: 18px;
    font-weight: 700;
    color: #1B1C48;
    line-height: 1;
    margin-bottom: 1.5rem;
}
footer.primary-footer .widget ul {
    padding-left: 0px;
}
footer.primary-footer .widget ul li {
    list-style: none;
    margin-bottom: 1rem;
}
footer.primary-footer .widget ul li a
{                                          
    color: #000;
    text-decoration: none;
    display: block;
}
footer.primary-footer .copyright p {
    font-size: 18px;
    line-height: 28px;
}
footer.primary-footer .social-media-links .social-link {
    color: #000;
    font-size: 20px;
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: 45px;
}
.equal>div, .equal>[class*="col-"] {
    display: flex;
    flex-direction: column;
}    



/*
* Wordpress CSS
*/

.section-padding {
    padding: 100px 0;
}

.blog__item {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    height: 100%;
    border: 1px solid #ccc;
    border-radius: 0.42em;
}
.blog__item .blog__item-img
 {
    position: relative;
    overflow: hidden;
    height: 250px;
}
.blog__item .blog__item-img img
 {
    height: 250px;
    width: 100%;
    object-fit: cover;
    border-radius: 0.42em;
}
.blog__item .blog__item-img .blog__item-date
 {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(105.24deg, #845CFE 9.46%, #494CF5 48.69%);
    color: #fff;
    padding: 6px 15px;
    border-radius: 0.75rem;
    font-size: 14px;
    font-weight: 500;
}
.blog__item .blog__item-content {
    padding: 20px;
}
.blog__item .blog__item-content .post_cat
 {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.blog__item .blog__item-content .post_cat a {
    font-size: 12px;
    font-weight: 500;
    text-transform: capitalize;
    text-decoration: none;
    border: 1px solid #ccc;
    padding: 6px 10px;
    line-height: 1;
    letter-spacing: 0.6px;
    border-radius: 30px;
    transition: all 300ms ease-in-out 0s;
}
.blog__item .blog__item-content .entry-title
 {
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 1rem;
}
.blog__item .blog__item-content .entry-title a {
    text-decoration: none;
    color:#000;
}
.blog__item .blog__item-content p {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 1rem;
}

nav.navigation.pagination .nav-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
nav.navigation.pagination .nav-links .page-numbers {
    padding: 0 20px;
    font-size: 16px;
    letter-spacing: 0.6px;
    font-weight: 500;
    line-height: 50px;
    background: #f7f7f5;
    margin: 5px;
    border-radius: 0.25rem;
    box-shadow: 0 11px 21px #d4d8e4;
    background: #fff;
    transition: all 300ms ease-in 0s;
    text-decoration: none;
}
nav.navigation.pagination .nav-links .page-numbers:hover, 
nav.navigation.pagination .nav-links .page-numbers.current {
    fill: #FFFFFF;
    color: #FFFFFF;
    background-color: transparent;
    background-image: linear-gradient(281deg, #494CF5 9.19%, #855DFF 93.59%);
}
nav.navigation.pagination {
    justify-content: center;
}
.header-title-area::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 97.5%;
    height: 1px;
    background: #ccc;
    transform: translateX(-50%);
}
.post-section .post-featured-thumbnail {
    margin-bottom: 2rem;
    border-radius: 20px;
    overflow: hidden;
}
.post-section .post-featured-thumbnail img {
    width: 100%;
    height: auto;
}
.header-title-area {
    position: relative;
}
.post-title-area {
    padding-bottom: 1rem;
}
.post-section .post-title-area .post-title {
    margin: 0;
    font-size: 40px;
    line-height: 1.3;
}
.header-title-area .meta-section {
    border-left: 1px solid #ccc;
}
.header-title-area .meta-section .meta-details {
    height: 100%;
}
.post-section .meta-details .post_date span {
    font-size: 18px;
}
.post-section .post_categories ul       
 {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}
.post-section .post_categories ul li {
    list-style: none;
    display: inline-block;
    margin: 0;
    margin-right: 10px;
}
.post-section .post_categories ul li:last-child {
    margin-right: 0;
}
.post-section .post-content p, .post-section .post-content li {
    color: #212127;
    font-size: 17px;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 1rem;
}
.post-section .post-content h1, .post-section .post-content h2, .post-section .post-content h3, .post-section .post-content h4, .post-section .post-content h5, .post-section .post-content h6 {
    margin-bottom: 1rem;
    font-size: 22px;
    line-height: 1.3;
}
.post-section .post-content table {
    margin-bottom: 1rem;
    border: 1px solid #ccc;
}
.post-section .post-content table tr th, .post-section .post-content table tr td
 {
    border: 1px solid #ccc;
    padding: 1rem;
}
.post-section .post-content p > a
{
    text-decoration: none;
    font-weight: 500;
}
.post-section .post-content a {
    background: linear-gradient(105.24deg, #845CFE 9.46%, #494CF5 48.69%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.post-sidebar {
    height: 100%;
    position: relative;
}
.post-sidebar .widget > ul {
    margin: 0;
    padding: 0;
}
.post-sidebar .widget {
    margin-bottom: 40px;
}
.post-sidebar .widget .wp-block-heading {
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 1.3rem;
    font-weight: 600;
}
.post-sidebar .widget .wp-block-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 0;
}
.post-sidebar .widget .wp-block-categories .cat-item {
    list-style: none;
    margin: 0;
}
.post-sidebar .widget .wp-block-categories .cat-item a {
    border: 1px solid #ccc;
    border-radius: 0.35em;
    text-decoration: none;
    font-size: 15px;
    text-transform: capitalize;
    padding: 5px 10px;
    transition: all 300ms ease-in-out 0s;
    display: inline-block;
    color: #000;
    font-weight: 500;
}
.post-sidebar .widget .wp-block-latest-posts .wp-block-latest-posts__post-title {
    text-decoration: none;
    font-size: 17px;
    margin-bottom: 8px;
    display: block;
    color: #000;
    font-weight: 400;
}
.post-sidebar .widget .wp-block-archives li {
    margin-bottom: 15px;
    list-style: none;
}
ul.wp-block-archives-list.wp-block-archives
 {
    padding: 0;
}
ul.wp-block-archives-list.wp-block-archives a
 {
    text-decoration: none;
    color: #000;
}
ul.wp-block-archives-list.wp-block-archives a:hover, ul.wp-block-archives-list.wp-block-archives a:focus
 {
    color: #494CF5;
}

input#integration-search {
    height: 50px;
}
.multi-select-container {
    display: inline-block;
    position: relative;
}
.multi-select-button
 {
    display: inline-block;
    font-size: 16px;
    padding: 0rem 1rem;
    height: 50px;
    line-height: 50px;
    text-transform: uppercase;
    width: auto;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: -0.5em;
    background-color: #f9f9f9;
    border: medium none;
    border-radius: 10px;
    /* box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2); */
    cursor: default;
    font-family: 'Satoshi', Arial, sans-serif;
    font-weight: 600;
    letter-spacing: 0.6px;
}
.multi-select-button:after {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0.4em 0.4em 0 0.4em;
    border-color: #999 transparent transparent transparent;
    margin-left: 0.4em;
    vertical-align: 0.1em;
}
.multi-select-menu {
    position: absolute;
    left: 0;
    top: 100%;
    float: left;
    min-width: 250px;
    background: #f9f9f9;
    margin-top: 10px;
    border: medium none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    display: none;
    z-index: 1;
    border-radius: 8px;
    padding: 1rem;
}
.multi-select-menu input {
    margin-right: 0.3em;
    vertical-align: 0.1em;
}
.multi-select-container--open .multi-select-menu {
    display: block;
}
.multi-select-menu .multi-select-menuitems label.multi-select-menuitem {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.multi-select-container--open .multi-select-button:after {
    border-width: 0 0.4em 0.4em 0.4em;
    border-color: transparent transparent #999 transparent;
}
.multi-select-menu .multi-select-menuitems label.multi-select-menuitem input[type="checkbox"]
 {
    appearance: none;
    width: 1.3em;
    height: 1.3em;
    margin: 0;
    border: 1px solid #f1f1ff;
    border-radius: 0.25em;
    display: inline-grid;
    place-content: center;
    color: #444cf7;
    background: #ffffff;
    box-shadow: 0 1px 2px 0 rgba(0, 20, 40, 0.04), 0 4px 8px rgba(0, 20, 40, 0.04);
}
.multi-select-menu .multi-select-menuitems label.multi-select-menuitem input[type="checkbox"]::before
 {
    content: "";
    width: 1.3em;
    height: 1.3em;
    border-radius: 0.25em;
    transform: scale(0);
    clip-path: polygon(22% 44%, 10% 60%, 46% 87%, 92% 30%, 75% 17%, 42% 59%);
    transition: all 0.3s ease-in;
    background: #ffffff;
}
.multi-select-menu .multi-select-menuitems label.multi-select-menuitem input[type="checkbox"]:checked
 {
    background-color: #444cf7;
}
.multi-select-menu .multi-select-menuitems label.multi-select-menuitem input[type="checkbox"]:checked::before {
    transform: scale(0.66);
}
div#selected-filters {
    display: flex;
    align-items: center;
    gap: 12px;
}
div#selected-filters .selected-filter {
    border: 1px solid #f9f9f9;
    background: #f9f9f9;
    padding: 0.5em 1em;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 500;
}
div#selected-filters .selected-filter span.remove-filter {
    cursor: pointer;
    font-size: 15px;
}
.integration-item
 {
    background-color: #fff;
    padding: 35px 20px;
    border-radius: 20px;
    height: 100%;
    margin-bottom: 30px;
    text-align: center;
    border: 1px solid #edecec;
}
.integration-item .integration-thumbnail {
    margin-bottom: 1.5rem;
}
.integration-item .integration-thumbnail img {
    width: auto;
    max-height: 35px;
    margin: auto;
}
.integration-item .integration-title {
    font-size: 23px;
    margin-bottom: 1.5rem;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
    cursor: help;
}
.integration-item .integration-title a {
    text-decoration: none;
    color: #1d243c;
}
.integration-item .integration-tags {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 10px;
}
.integration-item .integration-tags span.integration-tag {
    background: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    display: inline-block;
    box-shadow: 0 5px 16px rgb(220 220 220 / 60%);
    font-size: 16px;
    line-height: 1;
    margin: 0;
    text-align: center;
    color: #1C3A62;
    font-weight: 500;
}
.integration-item .integration-content {
    margin-bottom: 0px;
    font-family: 'Satoshi', Arial, sans-serif;
    font-weight: 500;
    letter-spacing: 0.5px;
    font-size: 16px;
    line-height: 28px;
    color: #1C3A62;
}
.integration-item .integration-content p, 
.integration-item .integration-content li {
    font-size: 16px;
    line-height: 28px;
    margin: 0;
    font-weight: 500;
    text-align: center;
    color: #1C3A62;
    font-family: 'Satoshi', Arial, sans-serif;
}
.integration-content-area {
    background-color: #F9F9F9;
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    padding: 45px 45px 45px 45px;
    border-radius: 15px 15px 15px 15px;
}
.integration-content-area .integration-title-area .post-title {
    color: #011D44;
    font-family: 'Satoshi', Arial, sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 56px;
}
.integration-content-area .integration-content p, 
.integration-content-area .integration-content li {
    font-size: 17px;
    color: #011D44;
    line-height: 28px;
}
.integration-section .integration-content-area .integration-content h1, .integration-section .integration-content-area .integration-content h2, .integration-section .integration-content-area .integration-content h3, .integration-section .integration-content-area .integration-content h4, .integration-section .integration-content-area .integration-content h5, .integration-section .integration-content-area .integration-content h6, .integration-section .integration-content-area .integration-content p, .integration-section .integration-content-area .integration-content ul {
    margin-bottom: 1rem;
}
.integration-section .integration-content-area .integration-content p, 
.integration-section .integration-content-area .integration-content li {
    font-size: 17px;
    line-height: 28px;
    letter-spacing: 0.5px;
}
.wp-block-image img {
    margin-bottom: 1.3rem;
}
main.main-section .entry-content p, main.main-section .entry-content li {
    font-size: 17px;
    line-height: 28px;
    font-weight: 500;
}
main.main-section .entry-content p, main.main-section .entry-content ul {
    margin-bottom: 1rem;
    padding-left: 1rem;
}
main.main-section .entry-content h1, main.main-section .entry-content h2, main.main-section .entry-content h3, main.main-section .entry-content h4, main.main-section .entry-content h5, main.main-section .entry-content h6
 {
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 22px;
}
main.main-section .entry-content .custom-style p, 
main.main-section .entry-content .custom-style ul
 {
    margin-bottom: 0;
    padding-left: 0;
}

/* .post-section .post_categories ul li a {
    text-decoration: none;
    background: linear-gradient(105.24deg, #845CFE 9.46%, #494CF5 48.69%);
    border-radius: 30px;
    padding: 15px 41px;
    color: #fff;
    text-transform: capitalize;
    display: inline-block;
} */

@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1200px;
    }   
    .hero-section {
        padding-top: 200px;  
    }
}

@media (min-width: 1200px) {
    .hero-section {
        padding-top: 150px;
    }
    .post-section .post-content {
        padding-right: 45px;
    }
}




@media (max-width:992px) {
    section.hero-section .hero-content h1 {
        font-size: 36px;
        line-height: 52px;
    }
    .section-title {
        font-size: 30px;
        line-height: 50px;
    }
    .commitment-title .section-title {
        text-align: center;
        margin-bottom: 30px;
        font-size: 41px;
    }
    .book-demo-section .form-content {
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
        border-bottom-left-radius: 0;
    }
    .book-demo-section .form-content {
        text-align: center;
    }
    .book-demo-section .form-area {
        border-top-right-radius: 0;
        border-bottom-right-radius: 20px;
        border-bottom-left-radius: 20px;
    }
	.hero-banner-image {
		padding-top: 50px;
	}
}
@media (max-width:768px) {
	section.hero-section .hero-content h1 {
        font-size: 22px;
        line-height: 39px;
    }
	section.hero-section .hero-content p {
		font-size: 19px;
		font-weight: 400;
	}
	.hero-banner-image {
		padding-top: 30px;
	}
	.hero-section .hero-banner .hero-banner-image img {
		max-width: 275px;
	}
	section.offering-section .section-header h2 {
		font-size: 32px;
		line-height: 43px;
	}
	.section-title {
        font-size: 26px;
        line-height: 40px;
    }
	.ecosyststem-image img {
		max-width: 285px;
	}
	.theme-btn {
		padding: 0.7em 1em 0.7em 1em;
		font-size: 14px;
	}
}