:root { 
	--primary-color: #1B68A8;
	--secondary-color: #3089D1;
	--heading-color: #000000;
	--text-color: #;
	--primary-font-family: 'Inter', sans-serif;
	--secondary-font-family: 'Poppins', sans-serif;
	scroll-behavior: smooth;
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: var(--primary-font-family);
	font-size: 15px;
	font-weight: normal;
	line-height: normal;
	color: var(--text-color);
    position: relative;
}
p {
	font-size: 15px;
	font-weight: 400;
	line-height: 28px;
	color: #42535c;
	margin: 0 0 15px;
    text-align: left;
}
h1 {
	font-size: 46px;
	font-weight: 700;
	line-height: 62px;
	color: #26292D;
	margin: 0 0 15px;
    font-family: 'Inter', sans-serif;
}
h2 {
	font-weight: bold;
	font-size: 36px;
	line-height: 44px;
	color: var(--primary-color);
	margin: 0 0 15px;
    font-weight: 500;
}
h3 {
	font-size: 30px;
	font-weight: 600;
	line-height: 36px;
	color: var(--heading-color);
	margin: 0 0 15px;
}
h4 {
	font-weight: normal;
	font-size: 25px;
	line-height: 30px;
	color: var(--heading-color);
	margin: 0 0 15px;
}
h5 {
	font-weight: bold;
	font-size: 18px;
	color: var(--heading-color);
	margin: 0 0 15px;
}
h6 {
	font-size: 16px;
	font-weight: 500;
	line-height: 26px;
	color: #0d82b7;
	margin: 0 0 15px;
}

.heading-color{
    color: var(--heading-color) !important;
}

.ml-10{
    margin-left:10px !important;
}
.mr-10{
    margin-right:10px !important;
}
.ml-20{
    margin-left:20px !important;
}
.mr-20{
    margin-right:20px !important;
}
.mt-20{
    margin-top:20px !important;
}
.mb-10{
    margin-bottom:10px !important;
}
.mb-20{
    margin-bottom:20px !important;
}
.mb-30{
    margin-bottom:30px !important;
}
.mw-50 {
    max-width: 50% !important;
}

.gap-5 {
    gap: 5px !important;
}

.gap-20 {
    gap: 20px !important;
}

.gap-30 {
    gap: 30px !important;
}

.gap-40 {
    gap: 40px !important;
}


.gap-50 {
    gap: 50px !important;
}

.gap-16 {
    gap: 16px !important;
}

.pt-80 {
    padding-top: 80px !important;
}

.flex-1 {
    flex: 1 1 auto;
}
img,
 iframe {
	max-width: 100%;
	height: auto;
	vertical-align: top;
}
input {
    border: 1px solid #959595;
    font-weight: normal;
    font-size: 16px;
    font-family: var(--primary-font-family);
    padding: 11px 15px;
	border-radius: 8px;
    -webkit-border-radius: 8px;
	outline: none;
    -moz-border-radius: 8px;
	height: 47px;
}
.btn {
    background: linear-gradient(to right,#049BF5 -10%, #195AAE 90%);
    font-weight: 700;
    color: #fff;
    padding: 0px 17px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    height: 48px;
    border: none;
    cursor: pointer;
	line-height: 48px;
    width: 150px;
    text-align: center;
}
.btn:hover {
	color: #fff;
	background: rgb(48,137,209);
}

a {
	color: var(--primary-color);
	outline: none;
	text-decoration:none;
	display: inline-block;
}
a:hover {
	color: var(--secondary-color);
}
ul{
    list-style: none;
}
.text-danger {
    color: #FB0E38 !important;
}
.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}
.container:after {
	clear: both;
	display: block;
	content: "";
}

/* useful */
.d-flex{
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
}
.flex-wrap{
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.justify-center{
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
}
.justify-between{
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: space-between;
}
.justify-end{
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    -ms-justify-content: flex-end;
    justify-content: flex-end;
    -ms-flex-pack: flex-end;
}
.justify-start{
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -ms-flex-pack: flex-start;

}
.align-start{
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start;
}
.align-center{
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
}
.align-end{
    -webkit-align-items: flex-end;
    -moz-align-items: flex-end;
    -ms-align-items: flex-end;
    align-items: flex-end;
}
.pull-right{
    float: right!important;
}
.text-center{
	text-align:center !important;
}
.text-justify{
	text-align:justify !important;
}
.row{
	display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
	-webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
	width:100%;
}
.col-5{
	width:50%;
}
.image-box-shadow {
    background: #FFFDFD !important; 
    box-shadow: 2px 2px 10px 2px rgb(0 20 255 / 15%) !important; 
    border-radius: 16px !important;
}
.header {
    position: relative;
	z-index: 99; 
}
.fixed-header .body-content{
    padding-top: 80px;
}
body:has([id="coming-soon-strip"]) .body-content {
    padding-top: 120px;
}
.fixed-header .header{
    width: 100%;
    position: fixed;
    background: #ffffff;
    padding-bottom: 10px;
}
.mobile-header-actions {
    display: none;
    align-items: center;
    gap: 15px;
}

.mobile-try-free-btn {
    display: none;
    background: linear-gradient(to right,#049BF5 -10%, #195AAE 90%);
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.mobile-try-free-btn:hover {
    background: linear-gradient(90deg, #1a6fc7 0%, #0a6a96 100%);
    color: #fff !important;
}

.toggle-menu {
    display: none;
    width: 30px;
    height: 30px;
    font-size: 24px;
    text-align: center;
    line-height: 30px;
}
.toggle-menu.active i:before{
    content:'\f00d';
}
.header-menu li{
    color: #1D2023;
	position: relative;
}
.header-menu>ul>li+li {
    margin-left: 36px;
}
.header-menu li a {
    font-size: 16px;
    color: #1D2023;
    padding: 30px 0;
}
.header-dark .header-menu li a {
    color: white;
}
.header-dark li a:hover, .footer-dark li a:hover {
    color: rgba(106, 210, 255, 1) !important;
}
.header-dark .toggle-menu svg {
    color: white;
}
.header-menu li:hover>a, .header-menu li:hover, .header-menu li.active>a {
    color: var(--primary-color);
} 
.header-menu li .dropdown-menu-icon { 
    font-size: 12px;
    vertical-align: middle;
    transition: transform 0.5s ease;
    transform: rotate(0deg);
}

.header-menu li:hover .dropdown-menu-icon{
    transform: rotate(180deg)
}

.header-menu .menu-btn {
	text-align:center;
}

.header-menu .menu-btn a{
    background: linear-gradient(to right,#049BF5 -10%, #195AAE 90%);
    color: #fff;
    padding: 12px 17px 13px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    font-weight: 600;
}

/* Book Demo button: border-only default, invert on hover */
.header-menu .book-demo-btn a{
    background: transparent;
    border: 1px solid rgba(38, 41, 45, 1);
    color: var(--Black-Color, rgba(38, 41, 45, 1));
    font-weight: 600;
    font-style: normal;
    font-size: 16.1px;
    line-height: 112%;
    letter-spacing: 0;
    text-align: center;
    vertical-align: middle;
    padding: 12px 16.5px 13px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
}
.header-dark .header-menu .book-demo-btn a{
    color:white;
    font-weight: 600;
    font-style: normal;
    font-size: 16.1px;
    line-height: 112%;
    letter-spacing: 0;
    text-align: center;
    vertical-align: middle;
    padding: 12px 17px 13px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
}
.header-dark .header-subtitle {
    color: white !important;
}
.header-dark .header-subtitle-description {
    color: rgba(255, 255, 255, 0.8) !important;
}
.header-menu .book-demo-btn a:hover{
    background: var(--Black-Color, rgba(38, 41, 45, 1));
    color: #fff;
}
.header-menu .menu-btn a:hover, .header-menu .menu-btn:hover a {
	color: #fff;
	background: rgb(48,137,209);
}

.header-menu .menu-btn span {
    display: block;
    color: rgb(29, 32, 35);
    font-weight: bold;
    font-size: 10px;
	position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 4px;
}
.header-menu li:hover .sub-menu {
	opacity: 1;
    visibility: visible;
    margin-top: 0px;
}
.header-menu li .sub-menu a {
    display: block;
}

.header-menu li .sub-menu ul {
  display: block;
  flex-direction: column;
  list-style: none;
}

.header-menu li .sub-menu li {
  width: 100%;;
}

.header-menu li .sub-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0px;
  font-size: 15px;
  color: #1D2023;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.hero {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 140px 0;
    background: linear-gradient(150deg, #1C79D429 0%, #FFFFFF 50%, #FFFFFF 100%);
}

.hero-content {
    width: 50%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding-left: 5%;
}

.hero-content p {
    max-width: 600px;
}

.hero-image {
    position: absolute;
    right: -30%;
}

.hero-image picture {
    position: relative;
    display: block;
}

.hero-image picture::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 50%);
    pointer-events: none;
}

.hero-image img {
    height: 100%;
    max-height: 600px;
    width: auto;
    display: block;
}

.hero span {
    color: rgb(29, 32, 35);  
    font-size: 14px;
}

@media only screen and (min-width: 1921px) {
    .hero {
        justify-content: center;
        gap: 200px;
        margin: 0 auto;
        padding-left: 5%;
        padding-right: 5%;
    }
    .hero-content {
        width: auto;
        padding-left: 0;
    }
    .hero-image {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 50%;
        max-width: 600px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    .hero-image img {
        width: auto;
    }
}

@media only screen and (min-width: 1551px) and (max-width: 1920px) {
    .hero-image {
        right: -10% !important;
    }
    .hero-content{
        padding-left: 10% !important;
    }
}

@media only screen and (min-width: 1201px) and (max-width: 1550px) {
    .hero-content {
        width: 70% !important;
    }

    .hero-content h1 {
        font-size: 58px !important;
        line-height: 80px !important;
    }
}

@media only screen and (max-width: 1200px) and (min-width: 768px) {
    .hero-content {
        padding-left: 10% !important;
    }

    .hero-content h1 {
        font-size: 48px !important;
        line-height: 70px !important;
    }
}

@media only screen and (min-width: 501px) and (max-width: 767px) {
    .hero-content h1 {
        font-size: 32px !important;
        line-height: 48px !important;
    }
}

@media only screen and (max-width: 500px) {
    .hero-content h1 {
        font-size: 28px !important;
        line-height: 40px !important;
    }

    .hero-content p {
        font-size: 16px !important;
        line-height: 24px !important;
    }

    .mobile-announcement-banner p {
        font-size: 14px !important;
    }
}

/* Below 1024px - wrap content and image */
@media only screen and (max-width: 1024px) {
    .hero {
        flex-direction: column;
        min-height: auto;
        padding: 50px 0;
    }
    .hero-content {
        width: 100%;
        padding-left: 5%;
        padding-right: 5%;
        margin-bottom: 30px;
    }
    .hero-image {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
        text-align: center;
        min-height: 400px;
    }
    .hero-image img {
        max-height: 500px;
        width: auto;
        margin: 0 auto;
    }
}
.home-blogs {
    padding: 60px 0 !important; 
}
.home-blogs .rms-blogs-list{
    margin-top: 0 !important;
}
.faq-section-home {
    padding: 60px;
    padding-bottom: 60px;
    
}
.home-faq {
    display:block !important; 
    width: 100% !important;
}
.home-faq ul ul {
    list-style-type: disc; 
    padding-left: 30px; 
    margin: 10px 0 20px 0;
}
.home-faq ul ul li {
    border: none; 
    color: rgb(66, 83, 92);
}
.get-started-form {
    max-width: 373px;
}
.get-started-form input[type="email"] {
    width: calc(100% - 143px);
}
.get-started-form .btn {
    margin-left: 12px;
	width: 126px;
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

#videoPlayer{
    width: 100%;
    height: 100%;
}
.brands-carousel .owl-stage{
    display: flex;
    align-items: center;

}
section {
    position: relative;
    z-index: 0;
}
.bg-f6{
    background-color: #f6f6f6 !important;
}
/*------ video testimonial----- */
.review-videos-sec{
    padding: 60px 0;
    position: relative;
}
.review-videos-sec .container{
    max-width:  1122px;
}
.review-videos-sec h2{
    color: #26292d;
}
.review-videos-cont {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    margin-top: 80px;
    gap: 90px;
}
.client-company {
    font-size: 27px;
    color: #868889;
    font-weight: 700;
}
.additional-text {
    margin-top: 25px;
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.additional-text .ers-content {
    font-size: 1.2rem;
    font-style: italic;
    color: #4a4a4a;
    line-height: 1.6;
    padding: 7px 0px;
    margin-bottom: 0px;
}
.review-videos-sec> svg {
    position: absolute;
    width: 100%;
    top: 15%;
    z-index: -1;
    opacity: 0.8;
}

.company-sec {
    padding-top: 30px;
    margin-top: 30px;
	padding-bottom: 60px;
}
.company-sec h2{
    font-size: 24px; 
    color: #26292d;
}
.company-sec-title{
    font-size: 24px;
    font-weight: bold;
    line-height: 44px;
    margin: 0 0 15px;
    color: rgba(38, 41, 45, 1)
}
.videoPlayer,
.videoPlayerSmall{
    max-width: 640px;
    height: 100%;
}
.videoPlayerLoading{
    opacity: 0;
    width: 0px;
    height: 0px;
}
.videoPlayerSmall{
    display: none;
}
.company-logos {
    margin-top: 25px;
}
.company-logos li {
    width: 20%;
    padding: 16px 10px;
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
}

.features-content p {
    color: #26292D;
}
.features-content p:last-child {
    margin-bottom: 0;
}
.features-item {
    align-items: top;
    padding-top: 60px;
    padding-bottom: 60px;
    position: relative;
	z-index:0;
}
.features-item:first-child {
    margin-top: 0px;
}

.features-item p {
    font-size: 16px;
}

.features-sec.features-sec-rms h2 {
  font-weight: 500;
  font-style: normal;
  font-size: 42px;
  line-height: 60px;
  letter-spacing: 0;
  vertical-align: middle;
}


.features-sec.features-sec-rms p {
  font-family: 'Segoe UI', sans-serif;
  font-size: 18px;
  line-height:30.4px;
  vertical-align: middle;
}


.features-sec-rms .tabs-sec .lottie-player,
.features-sec-rms .tabs-sec video {
    width: 100%;
    position: relative;
    opacity: 0;
    animation: videoAnimator .7s forwards;
}
@keyframes videoAnimator {
    0%{
        opacity:0;
        transform: scale(.9);
        }
    100%{
        opacity:1;
        transform: scale(1);
    }
}
.features-sec-rms .tabs-sec .tab-teaser .tab-menu ul {
    display: flex;
    gap: 4px;
    padding-top: 20px;
}
.features-sec-rms .tabs-sec .tab-teaser .tab-menu ul li a{
    font-size: 16px !important;
    padding: 7px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.features-sec-rms .features-item .container>div{
    align-items: top;
}
.features-sec-rms .features-item .container .features-content{
    margin: 0px;
}
.features-sec-rms .tabs-sec{
    margin-bottom: 0px;
}
.inner-title-intro-container{
    color: var(--text-color);
    font-size: 16px;
    text-align: center;
    background-color: #f6f6f6;
    max-width: 100%;
    padding: 20px 0;
}
.inner-title-intro-container>p{
    max-width: 1140px;
    margin: 0 auto;
    text-align: center;
}
.related-blogs{
    padding-top: 30px;
    padding-bottom: 30px;
}
.related-blogs h2{
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 42px;
    line-height: 60px;
    letter-spacing: 0%;
    color: #000000;
    vertical-align: middle;
    text-align: center;
}

.related-blogs h2{

    font-style: Semi Bold;
    letter-spacing: 0%;
    color: #000000;
}

.rms-blogs-list{
    
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}
.rms-blogs-list>div:hover{
    transform: scale(1.07);
}
.rms-blogs-list>div{
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: min-content 1fr;
    overflow: hidden;
    box-shadow: 0px 0px 10px 5px rgb(224, 224, 224);
    border-radius: 15px;
    transition: .3s;
}
.rms-blogs-list>div>div:last-child{
    padding: 20px;
}
.rms-blogs-list>div h3{
    font-weight: bold;
	font-size: 18px;
	color: var(--heading-color);
    line-height: 29px;
}
.rms-blogs-list>div p,
.rms-blogs-list>div h3,
.rms-blogs-list>div h3>a{
    color: #000000;
    margin: 0px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-clamp: 4;
    -webkit-line-clamp: 4;
}
.rms-blogs-list>div h3>a{
    line-clamp: 4;
    -webkit-line-clamp: 3;
}
.rms-blogs-list>div div:first-child{
    overflow: hidden;
}
.faq-section-rms{
    border-bottom: none !important;
}
.faq-section-rms .container #tabs{
    justify-content: space-between;
}
.faq-section-rms .container .faq-left{
    width: 30%;
}
.faq-section-rms .container .faq-right h3{
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    justify-content: space-between;
    gap: 20px;
    margin: 0px;
    font-size: 20px;
    padding: 20px;
    line-height: 28px;
    cursor: pointer;
}
.faq-section-rms .container .faq-right .pull-right{
    float: none !important;
}
.faq-section-rms .accordion-list li .answer {
    padding: 0px 20px 20px 20px;
}
.faq-section-rms .faq-left p{
	color: #0d82b7;
}
.other-features{
    padding-top: 90px;
}
.other-features .container::after{
    content: none;
}
.other-features .container{
    display: grid;
    grid-template-columns: 30% 40%;
    justify-content: space-evenly;
    padding: 30px;
}
.other-features .container>div:last-child{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(2,auto);
    gap: 30px 10px;
    align-content: center;
    align-items: center;
}
.other-features .container>div:last-child>p{
    font-size: 16px;
    margin: 0px;
}
.other-features .container>div:last-child>p>a{
    display: grid;
    grid-template-columns: 1fr 9fr;
    align-items: center;
    gap: 10px;
    text-decoration: underline solid white 1px;
    text-underline-offset: 5px;
}
.other-features .container>div:last-child>p>a:hover{
    text-decoration-color: var(--secondary-color);
}
.other-features .container>div:last-child>p>a>svg{
    max-width: 25px;
    font-size: 25px;
    margin: auto;
}

.management-features-sec.financials-features-sec .features-bg {
    top: 50px;
}
.scheduling-features-sec .features-item:nth-child(3) .features-bg {
    top: 60px;
}
.seamless-third-party-item .features-img img {
    max-width: 500px;
    margin: 0 auto;
    display: table;
	width:100%;
}
.management-features-sec.financials-features-sec h2, .management-features-sec.financials-features-sec p {
    max-width: 428px;
}
.management-features-sec.financials-features-sec .tabs-sec .container {
    max-width: 1200px;
}
.management-features-sec.financials-features-sec .tabs-sec .features-content {
    padding-bottom: 0px;
}
.features-item-bg-middle .features-bg {
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
}
.scheduling-features-sec .features-item:last-child .features-bg {
    top: 40px;
}
.features-content {
    width: 37%;
}
.features-img {
    width: 57.7%;
}
.manual-automatic-item .features-img {
    width: 42%;
}
.features-img lottie-player , .features-img dotlottie-player, .features-img video,
.review-videos-sec video{
    max-width: fit-content;
    width: 100%;
	background: #FFFDFD;
    box-shadow: 4px 4px 20px rgb(0 0 0 / 25%);
    -webkit-box-shadow: 4px 4px 20px rgb(0 0 0 / 25%);
    -moz-box-shadow: 4px 4px 20px rgb(0 0 0 / 25%);
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
}
.review-videos-cont{
    display: grid;
    grid-template-columns: 1fr 2fr;
    margin-top: 80px;
}
.review-videos-cont>div{
    padding: 15px 0px 0px 0px;
}
.video-container{
    position: relative;
    margin-top: 35px;
}
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
    color: grey;
}
.video-container:hover{
    cursor: pointer;
}
#play-button>svg{
    height: 80%;
    width: 80%;
    transition: .1s ease-in-out;
}
.video-container:hover #play-button>svg{
    transform: scale(1.2);
}
.features-sec .features-item:nth-child(even) .row {
    flex-direction: row-reverse;
    -webkit-flex-direction: row-reverse;
    -moz-flex-direction: row-reverse;
}
.tabs-sec[id="tabs"] .container {
    max-width: 1140px;
}
.tab-teaser .tab-box { 
	display:none;
}
.tabs-sec {
    position: relative;
    z-index: 0;
    margin-bottom: 120px;
}
.tabs-bg {
    position: absolute;
    z-index: -1;
    left: 0;
    right: 0;
    top: 0px;
}
.tabs-sec .tab-teaser .tab-box lottie-player,
.tabs-sec .tab-teaser .tab-box dotlottie-player,
.tabs-sec .tab-teaser .tab-box video {
    width: 150%;
    border: 1px solid #E9E9E9;
	background: #FFFDFD;
    box-shadow: 4px 4px 20px rgb(0 0 0 / 25%);
    -webkit-box-shadow: 4px 4px 20px rgb(0 0 0 / 25%);
    -moz-box-shadow: 4px 4px 20px rgb(0 0 0 / 25%);
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    animation: videoAnimator .7s forwards;
}
.tabs-sec .tab-teaser .tab-menu {
    margin-top: 50px;
}
.tabs-sec .tab-teaser .tab-menu ul li {
    width: calc(100%/3 - 80px/3);
    margin-right: 40px;
}
.tabs-sec .tab-teaser .tab-menu ul li a{
    padding: 10px 15px;
}
.tabs-sec .tab-teaser .tab-menu ul li.ui-tabs-active a {
    border-radius: 10px;
    box-shadow: 2px 5px 50px rgb(0 0 0 / 10%);
    position: relative;
    background: #fff;
}
.tabs-sec .tab-teaser .tab-menu ul li.ui-tabs-active a::before {
    content: '';
    display: block;
    width: 0px;
    height: 0px;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 30px solid #fff;
    position: absolute;
    top: -20px;
    left: calc(50% - 30px);
    z-index: 210;
}
@media only screen and ( max-width: 767px ) {
    .tabs-sec .tab-teaser .tab-menu ul li.ui-tabs-active a::before{
        display: none;
    }
    .review-videos-cont {
        grid-template-columns: 1fr; /* vertically align */
        gap: 20px;
    }
    /* .client-company {
        font-size: 1rem;
        text-align: center;
    } */
    .videoPlayer {
        width: 100%; /* scale video to full width */
        height: auto;
    }
}
.tabs-sec .tab-teaser .tab-menu ul li:last-child {
    margin-right: 0px;
}
.tabs-sec .tab-menu ul li h4 {
    color: #42535c;
    margin-bottom: 12px;
}
.tabs-sec .tab-menu ul li p {
    font-weight: normal;
    line-height: 28px;
    color: #42535c;
}
.tabs-sec .tab-menu ul li.ui-tabs-active a h4 {
    font-weight: bold;
	color: var(--primary-color);
}
.tabs-sec .tab-menu ul li.ui-tabs-active a p {
    color: #262727;
}
.integration-sec {
    padding: 60px 0;
}
.integration-sec {
    width: 57%;
}
.integration-sec .tab-menu {
    width: 40%;
}
.integration-sec .tab-menu h2 {
    margin-bottom: 50px;
}
.integration-sec .tab-menu h4 {
   color: #26292D;
   font-size: 22px;
   margin-bottom: 8px;
}
.integration-sec .tab-menu p {
    text-align: justify;
    font-size: 15px;
    font-weight: 500;
}
.integration-sec .tab-menu ul li.ui-tabs-active a h4 {
    font-weight: 600;
    color: var(--primary-color);
}
.integration-sec .tab-menu ul li.ui-tabs-active a p {
    color: #26292D;
}
.integration-sec .tab-menu ul li a{
    padding: 12px 15px;
}
.integration-sec .tab-menu ul li.ui-tabs-active a {
    border-radius: 10px;
    box-shadow: 2px 5px 50px rgb(0 0 0 / 10%);
    position: relative;
    background: #fff;
}
.integration-sec .tab-menu ul li.ui-tabs-active a::before {
    content: '';
    display: block;
    width: 0px;
    height: 0px;
    border-right: 30px solid #fff;
    border-top: 30px solid transparent;
    border-bottom: 30px solid transparent;
    position: absolute;
    left: -20px;
    top: calc(50% - 30px);
    z-index: 210;
}
@media only screen and ( max-width: 767px ) {
    .integration-sec .tab-menu ul li.ui-tabs-active a::before{
        display: none;
    }
}

.integration-sec .tab-menu ul li {
    margin-bottom: 10px;
}
.integration-sec .tab-menu ul li:last-child {
    margin-bottom: 0px;
}
.home-blog-sec {
    margin-bottom: 120px;
}
.blog-bg {
    position: absolute;
    z-index: -1;
    top: 10px;
    left: 0;
    right: 0;
}
.home-blog-sec .container{
    max-width: 1122px;
}
.home-blog-sec .container div {
    margin-left: 0;
}
.home-blog-content {
    width: 37%;
}
.home-blog-content h5 {
    font-weight: bold;
    font-size: 32px;
    color: var(--primary-color);
	margin-bottom: 22px;
}
.home-blog-content h4 {
    font-weight: bold;
    font-size: 22px;
    color: #26292D;
}
.home-blog-content p {
    font-weight: normal;
	font-size: 18px;
    color: #26292D;
}
.blog-author-img {
    font-size: 16px;
    line-height: 26px;
	color: #26292D;
}
.blog-author-img img {
    border-radius: 100%;
	margin-right:20px;
}
.home-blog-content .blog-author {
    margin-top: 30px;
}
.blog-read-more a {
    font-weight: bold;
    font-size: 18px;
    line-height: 28px;
	color: #26292D;
}
.blog-read-more a i{
    font-weight: 900;
	font-size: 16px;
	margin-left:20px;
}
.blog-read-more a:hover{
    color: var(--primary-color);
}
.home-blog-img {
     box-shadow: 4px 4px 20px rgb(0 0 0 / 25%);
    -webkit-box-shadow: 4px 4px 20px rgb(0 0 0 / 25%);
    -moz-box-shadow: 4px 4px 20px rgb(0 0 0 / 25%);
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    overflow: hidden;
	width: 55%;
}
.home-blog-img img{
	width: 100%;
}

/* Team section */
.team-sec {
    background: #EFEEEE;
    padding-top: 50px;
    padding-bottom: 48px;
	margin-bottom: 90px;
}
.home-team-sec {
    padding: 60px 0 !important;
    margin: 0 !important;
}
.home-team-sec .home-team-card {
    max-width: 450px;
    width: 30%;
	padding: 30px 24px 24px 24px;
    gap: 18px;
    height: auto;
}
.home-team-sec .home-team-card .team-card-content{
    min-height: auto !important;
}
.home-team-sec .home-team-card .team-member-img {
    max-width: 124px;
    border-radius: 100%;
    left: 0;
    right: 0;
    margin: 0 auto;
    height: 125px;
    width: 125px;
}
.home-team-sec .home-team-card p {
   font-weight: normal;
	font-size: 14px;
	line-height: 1.6;
    color: #303030;
    text-align: center;
    margin: 0;
}
.team-sec .owl-stage {
    padding-left: 0 !important;
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.team-carousel .item {
    padding: 61px 6px 30px;
	padding-left:22px;
	height: 100%;
}
.team-card, .home-team-card {
    background: #FFFFFF;
    box-shadow: 4px 4px 20px rgb(0 0 0 / 25%);
    -webkit-box-shadow: 4px 4px 20px rgb(0 0 0 / 25%);
    -moz-box-shadow: 4px 4px 20px rgb(0 0 0 / 25%);
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
	position: relative;
	padding: 80px 19px 31px;
	height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.team-card-content {
    min-height: 100px;
}
.team-card .team-member-img {
    max-width: 124px;
    border-radius: 100%;
    top: -61px;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.team-card .team-card-logo img {
    width: auto !important;
    max-width: 100%;
}
.team-card-logo{
	display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
	-webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
	-webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
	min-height:70px;
	margin-top: 15px;
}
.team-card p.name, .home-team-card p.name {
    font-weight: bold;
    font-size: 22px;
    line-height: 30px;
    color: #303030;
    margin-bottom: 10px;
    text-align: center;
}
.team-card span {
    font-weight: 500;
	font-size: 16px;
	line-height: 1.6;
    color: #303030;
	display: block;
	margin-bottom: 10px;
}
.team-card p {
   font-weight: normal;
	font-size: 14px;
	line-height: 1.6;
    color: #303030;
}
/* Team section end */

.financials-features-sec {
    padding-bottom: 80px;
}
.newsletter-sec {
    margin-bottom: 60px;
    margin-top: 65px;
    padding-top: 50px;
    padding-bottom: 30px;
}
.newsletter-sec h6 {
    font-weight: bold;
    font-size: 53px;
	margin-bottom: 40px;
    color: #26292D;
	line-height: normal;
}
.newsletter-sec p {
    font-weight: 600;
	font-size: 18px;
	color: #262727;
	margin-bottom: 25px;
	line-height: 25px;
    text-align: center;
}
.get-submit-btn {
    width: 126px;
}
.get-started-form .get-submit-btn .btn {
    margin-left: 0;
    width: 100%;
}
.newsletter-sec .get-started-form {
    max-width: 373px;
	width: 100%;
    display: table;
    margin: 0 auto;
}
.get-started-form .get-submit-btn span {
    font-weight: 600;
    font-size: 14px;
    line-height: 28px;
    color: #26292D;
}
.newsletter-bg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
	height: 100%;
}
.footer-sec {
    background: #F8F9FB;
    padding-top: 60px;
    padding-bottom: 27px;
    font-family: var(--secondary-font-family);
}
.footer-menu li {
    margin-bottom: 18px;
}
.footer-menu li:last-child {
    margin-bottom: 0px;
}
.footer-menu li a {
    font-weight: 400;
    font-size: 14px;
    color: #303030;
}
.footer-dark .footer-menu li a {
    color: var(--White, rgba(255, 255, 255, 1));
}
.footer-menu li a:hover {
    color: var(--primary-color);
}
.footer-logo {
    width: 20%;
}
.footer-menu {
    width: 100%;
    max-width: 20%;
}
.copyright-row {
    margin-top: 60px;
    color: #303030;
    font-size: 13px;
}
.copyright-row p {
    font-weight: 500;
    font-size: 14px;
    color: #303030;
	margin: 0;
}
.social-links li+li{
	margin-left: 20px;
}
.social-links a {
    display: block;
    width: 36px;
    height: 36px;
    background: #F2F2F2;
    border-radius: 100%;
    text-align: center;
    line-height: 38px;
    color: black;
    border: 1px solid #EEEEEE;
}
.social-links a:hover {
    background:#5CADE5;
    color: #fff;
}

.quick-links-section {
    margin-top: 70px;
    margin-bottom: 20px;
}

.footer-title {
    font-weight: 600;
    font-size: 18px;
    color: #303030;
    margin-bottom: 15px;
    line-height: normal;
    margin-top: 0;
}
.footer-dark .footer-title {
    color: var(--White, rgba(255, 255, 255, 1))
}
.quick-links-nav {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 14px;
    font-weight: 400;
}
.footer-dark .quick-links-nav {
    font-weight: 700;
}
.quick-links-nav a {
    color: #303030;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.3s ease;
}
.footer-dark .quick-links-nav a, .footer-dark .copyright-row {
    color: var(--White, rgba(255, 255, 255, 1));
}
.quick-links-nav a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.quick-links-nav .divider {
    color: #303030;
    font-weight: normal;
    margin: 0 8px;
    font-size: 12px;
}

.inner-title-sec {
    padding-top: 30px;
    margin-top: 40px;
    min-height: 240px;
}
.inner-title-sec h1, .hero h1 {
    font-weight: 700;
    font-size: 62px;
    line-height: 90px;
}
.inner-title-sec h2, .hero p {
    font-size: 20px;
}
.inner-title-bg {
    position: absolute;
    top: 50%;
    bottom: 0;
    z-index: -1;
    left: 0;
    right: 0;
    width: 100%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
}
.inner-title-sec p {
    color: #26292D;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}
.inner-identify-qualified .features-content {
    width: 40%;
}
.inner-real-time .features-content {
    width: 41%;
}
.inner-real-time .features-img{
    width: 56%;
}
.small-features-sec {
    padding-top: 90px;
    padding-bottom: 40px;
}
.management-small-features-sec {
	padding-bottom: 30px;
}
.small-features-sec p{
    color: #26292D;
}
.small-features-title {
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 60px;
}
.small-features-title h2{
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 60px;
    padding-bottom: 60px;
}
.small-features-item {
    width: 45%;
	margin-bottom: 75px;
}
.small-features-items .row {
    max-width: 1070px;
    margin: 0 auto;
    padding: 0 15px;
}
.small-features-sec .container {
    max-width: 1070px;
}
.small-features-item h4{
    font-weight: 600;
	font-size: 22px;
	color: #26292D;
	margin-bottom: 10px;
}
.small-features-item img, .small-features-item video {
    width: 100%;
	margin-bottom:30px;
}
.small-features-items {
    position: relative;
    z-index: 0;
}
.small-features-top-bg {
    position: absolute;
    left: 0;
    top: 30px;
    z-index: -1;
	max-width: 80%;
}
.small-features-bottom-bg {
    position: absolute;
    right: 0;
    bottom: 28%;
	max-width: 80%;
    z-index: -1;
}
.management-small-features-sec .small-features-top-bg {
    left: auto;
    right: 0;
}
.management-small-features-sec .small-features-middle-bg {
    position: absolute;
    left: 0;
    top: 42%;
    max-width: 80%;
    z-index: -1;
}
.management-small-features-sec .small-features-bottom-bg {
    bottom: 16%;
}
.features-item .tab-teaser .tab-menu ul li {
    width: 100% !important;
    margin-right: 0;
    margin: 0 0 10px;
}
.features-item .tab-teaser .tab-menu ul li a {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: #26292D;
}
.features-item .tab-teaser .tab-menu ul li a.active {
    font-weight: bold;
}

.features-item .tab-teaser .tab-menu {
    margin-top: 0;
}
.financials-features-sec .features-content, .management-features-sec .features-content, .scheduling-features-sec .features-content{
    padding-bottom: 25px;
}
.approval-screentabs-sec .features-content {
    padding-bottom: 0;
}
.header-menu li.megamenu-item {
    position: unset;
}
.header-menu .megamenu-item .megamenu-sub-menu .svg-inline--fa{
    font-size: 15px;
    margin-left: 6px;
}
.header-menu li {
    position: relative;
}

.header-menu li .megamenu-sub-menu {
    position: absolute;
    top: 110%;
    left: 43.5%;
    transform: none;
    transition: .3s all;
    opacity: 0;
    padding: 3px 3px;
    visibility: hidden;
    z-index: 9;
    text-align: left; 
}

.header-menu li.megamenu-item:hover .megamenu-sub-menu, .header-menu li.megamenu-item:active .megamenu-sub-menu {
	opacity: 1;
    visibility: visible;
    margin-top: -25px;
}

.megamenu-sub-menu .megamenu-inner-list li {
    width: calc(100% / 6);
}
.megamenu-sub-menu .megamenu-inner-list li a img {
    vertical-align: middle;
    margin-right: 20px;
    max-width: 57px;
}
.megamenu-sub-menu .megamenu-inner-list li a {
    padding: 8px 15px;
    display: flex;
    align-items: center;
}
.faq-section h1 {
    font-family: var(--secondary-font-family);
	margin-bottom: 80px;
	line-height:67.2px;
}
.faq-left {
    width: 34%;
}
.faq-right {
    width: 66%;
}
.faq-left .tab-menu li a {
    font-weight: 400;
    font-size: 18px;
    color: #303030;
}
.faq-left .tab-menu li a.active {
    color: var(--primary-color);
	font-weight: 700;
}
.faq-left .tab-menu li {
    margin-bottom: 15px;
}

.faq-section .tab-menu ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 25px;
    justify-content: center;
}

.faq-section .tab-menu ul li {
    margin: 0;
}

.faq-section .tab-menu ul li a {
    display: block;
    padding: 8px 22px;
    text-decoration: none;
    border: 1px solid #8B8B8B;
    background-color: #ffffff;
    color: #000000;
    font-weight: 500;
    font-size: 22px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    border-radius: 25px;
    position: relative;
    white-space: nowrap;
}

.faq-section .tab-menu ul li a.active,
.faq-section .tab-menu ul li a:hover {
    border-color: #1B68A8;
    background: linear-gradient(to right, #175DB2 -10%, #0594ED 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-color: #ffffff;
}

.faq-container {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 15px;
  padding-bottom: 60px;
  font-family: 'Segoe UI', sans-serif;
}

.faq-container-dark {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 15px;
    padding-bottom: 60px;
    font-family: 'Segoe UI', sans-serif;
  }

/* Responsive styles for FAQ tab menu */
@media only screen and (max-width: 768px) {
  .faq-section .tab-menu ul {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  
  .faq-section .tab-menu ul li {
    width: 100%;
    max-width: 300px;
  }
  
  .faq-section .tab-menu ul li a {
    font-size: 18px;
    padding: 12px 20px;
    white-space: normal;
    text-align: center;
  }
}

@media only screen and (max-width: 480px) {
  .faq-section .tab-menu ul li a {
    font-size: 16px;
    padding: 10px 16px;
  }
}

.faq-page-container{
    max-width: 100%;
    width: 100%;
}

.faq-page-container .faq-container{
    max-width: 1200px;
}

.faq-section .tab-box {
    opacity: 0;
    transition: opacity 1s ease;
}

.faq-section .tab-box.ui-tabs-panel {
    display: block;
}

.faq-section .tab-box.ui-tabs-active {
    opacity: 1;
}

.faq-contact-us{
    padding-bottom: 100px;
}

.faq-contact-us .container{
    max-width: 900px;
}
.faq-container h2{
    font-family: 'Inter', sans-serif;
    font-size: 42px;
    line-height: 60px;
    color: #000000;
    vertical-align: middle;
    padding-bottom: 20px;
    text-align: center;
}

.faq-container-dark h2{
    font-family: 'Inter', sans-serif;
    font-size: 42px;
    line-height: 60px;
    color: #000000;
    vertical-align: middle;
    padding-bottom: 20px;
    text-align: center;
}

.faq-container h3{
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 48px;
    color: #000000;
    vertical-align: middle;
}

.faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 15px;
  cursor: pointer;
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.faq-question-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question {
  font-size: 1.1rem;
  color: #1f2937;
  margin: 0;
}

.faq-icon {
  font-size: 1.5rem;
  color: #4b5563;
  transition: transform 0.3s ease;
}

.faq-answer {
  display: none;
  padding-top: 15px;
  font-size: 0.95rem;
  color: #4b5563;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

ul.list-style-tick{
    list-style: none;
}
ul.list-style-tick  > li::before{
    content: '✓';
    margin-right:10px;
    color: rgb(18,211,33);
}

.faq-page-container .tab-box .accordion-list>li>h2{
    font-size: 20px;
    font-weight: 500;
    text-align: left;
}

.accordion-list li {
    border: 1px solid #D6D6D6;
    box-sizing: border-box;
    border-radius: 16px;
	margin-bottom: 15px;
}
.accordion-list li:last-child {
    margin: 0;
}
.accordion-list>li>h2,
.accordion-list>li>h3,
.accordion-title {
    font-weight: 400;
    font-size: 17px;
    line-height: 28px;
    margin: 0;
    position: relative;
    width: 100%;
    color: var(--heading-color);
    padding: 25px 40px 25px 28px;
    cursor: pointer;
}

.accordion-list li svg{
    transition: .3s all;
    -webkit-transition: .3s all;
    -moz-transition: .3s all;
    -ms-transition: .3s all;
    padding-top: 7px;
}

.calc-list li svg{
    transition: .3s all;
    -webkit-transition: .3s all;
    -moz-transition: .3s all;
    -ms-transition: .3s all;
}
li.active .flip-45{
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
li.active .flip-90{
    -moz-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
}
li.active .flip-180{
    -moz-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
}
.accordion-list li .answer {
    padding: 0px 28px 30px;
	    padding-right: 25px;
}
.accordion-list li .answer p {
    margin: 0;
    font-size: 16px;
    color: #000000;
}
.calc-list li .answer {
    padding: 0px 28px 30px;
	    padding-right: 25px;
}
.calc-list li .answer p {
    margin: 0;
}
.answer p a {
    color: var(--primary-color);
    text-decoration: underline;
}

.faq-container-dark h2 {
    color: #FFFFFF !important;
}

.faq-container-dark .accordion-list li {
    background-color: #18181B;
    border-color: #18181B;
}

.faq-container-dark .accordion-list>li>h2,
.faq-container-dark .accordion-list>li>h3,
.faq-container-dark .accordion-title {
    color: #FFFFFF;
}

.faq-container-dark .accordion-list li .answer,
.faq-container-dark .accordion-list li .answer p {
    color: #FFFFFF;
}

.faq-container-dark .accordion-title i {
    color: #FFFFFF;
}

.faq-container-dark .accordion-list li .answer p a {
    color: #FFFFFF;
    text-decoration: underline;
}

.contact-section {
    padding-top: 90px;
    padding-bottom: 60px;
}
.contact-section h1 {
    /* margin-bottom: 35px; */
	font-family: var(--secondary-font-family);
}
.contact-top {
    margin-top: 60px;
}
.contact-left {
    width: 35%;
}
.contact-right {
    width: 57%;
}
.contact-section .form-box {
    background: #FFFFFF;
    box-shadow: 4px 4px 20px rgb(0 0 0 / 25%);
    -webkit-box-shadow: 4px 4px 20px rgb(0 0 0 / 25%);
    -moz-box-shadow: 4px 4px 20px rgb(0 0 0 / 25%);
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    padding: 30px;
}
.form-box label {
    width: 100%;
    display: block;
    font-weight: 400;
    line-height: 28px;
    color: #000;
    padding-left: 9px;
}
.form-box label::after{
    content: ' *';
    color: red;
}
.form-box input {
    width: 100%;
    border: 1px solid #26292D;
    padding: 15px 20px 15px 20px;
    height: auto;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 25px;
}
.form-box textarea {
    width: 100%;
    border: 1px solid #26292D;
    padding: 15px 20px 15px 20px;
    height: 287px;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 25px;
	resize:none;
    font-family: var(--primary-font-family);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    outline: none;
    -moz-border-radius: 8px;
}
.form-box input::placeholder, .form-box textarea::placeholder{
	color: #9E9E9E;
}
.form-box .btn {
    width: 200px;
    border: none;
    font-weight: 700;
    background: #1B68A8;
    margin: 0;
    margin-top: 25px;
    padding: 11px 20px;
}
.contact-left h6 {
    font-weight: 700;
    font-size: 22px;
    line-height: 28px;
    color: #000;
    margin: 0;
}
.contact-left p strong {
    color: #000;
}
.contact-left ul {
    margin-top: 30px;
}
.contact-left ul li {
    margin-bottom: 35px;
}
.contact-left a {
    color: #26292D;
}
.contact-left .tab-menu li {
    margin-bottom: 15px;
    font-size: 18px;
    line-height: 21.6px;
}
.contact-section.tab-teaser .contact-left {
    width: 36%;
}	
.contact-left .tab-menu li a.active {
    font-weight: bold;
    color: var(--primary-color);
}
.opening-list li {
    background: #FFFFFF;
    border: 1px solid #E9E9E9;
    box-sizing: border-box;
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    padding:23px 25px;
	margin-bottom:16px;
}
.opening-list li h6 {
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    margin: 0;
    color: #26292D;
	width: calc(100% - 120px);
}
.apply-btn {
    font-weight: 600;
    background: #1B68A8;
    margin: 0;
    padding: 9px 15px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    color: #fff;
}
.contact-bottom {
    margin-top: 100px;
}
.contact-hiring-form {
    width: 58%;
}
.contact-hiring-right {
    width: 39%;
	padding-left: 40px;
}
.contact-hiring-right p {
    font-family: var(--secondary-font-family);
}
.popup-box {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 999;
	display: none;
}
.popup-overlay {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
	z-index:-1;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px);
}
.popup-content-box {
    background: #FFFFFF;
    box-shadow: 4px 4px 20px rgb(0 0 0 / 25%);
    -webkit-box-shadow: 4px 4px 20px rgb(0 0 0 / 25%);
    -moz-box-shadow: 4px 4px 20px rgb(0 0 0 / 25%);
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
	width:100%;
	max-width:384px;
	padding: 24px;
    position: relative;
} 
.popup-inner {
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    overflow: auto;
    width: 100%;
    height: 100%;
	    padding: 20px 15px;
}
.popup-content-box h6 {
    font-weight: 700;
    color: #26292D;
    font-family: var(--secondary-font-family);
    max-width: 300px;
    margin: 0 auto 5px;
    font-size: 28px;
    line-height: 44px;
}
.popup-close {
    color: #26292D;
    font-size: 22px;
    position: absolute;
    right: 28px;
    top: 20px;
    cursor: pointer;
}
.popup-content-box p {
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #26292D;
}
.popup-form-field {
    text-align: left;
    margin-top: 30px;
	margin-bottom: 26px;
}
.popup-content-box label {
    font-weight: 400;
    font-size: 14px;
    line-height: 28px;
    width: 100%;
    display: block;
    color: #26292D;
    padding-left: 9px;
}
.popup-form-field input {
    width: 100%;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    border: 1px solid #26292D;
    padding: 11px 20px;
    height: auto;
}
.popup-content-box .btn {
    font-size: 18px;
    width: 100%;
}
.popup-content-box .btn > .fa-loader{
    display: none;
}
.popup-content-box .btn[disabled]{
    cursor: not-allowed;
    background:linear-gradient(to right, #AFCDEB, #7A9BBF)
}
.popup-content-box .btn[disabled] > .fa-loader{
    display: initial;
}
.popup-submit {
    margin-top: 26px;
}

.popup-loading {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #FFFFFF;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    z-index: 10;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #1B68A8;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.popup-loading p {
    color: #1B68A8;
    font-weight: 500;
    font-size: 16px;
    margin: 0;
}

.overflow-hidden{
	overflow:hidden;
}
.single-blog-section {
    padding-top: 110px;
    padding-bottom: 100px;
    border-bottom: 1px solid #e4e4e4;
    background-color: #fbfbfb;
    margin-top: 50px;
}
.single-blog-section .container {
    max-width: 1000px;
    padding-left: 15px !important;
    margin-left: 0;
    margin-right: auto;
}

.single-blog-section h1 {
    font-weight: 600;
    font-size: 42px;
    line-height: 64px;

}
.single-blog-section .entry-image{
    margin-top:30px;
    margin-bottom: 30px;
}
.post-meta-single {
    margin-top: 44px;
    margin-bottom: 80px;
}
.post-author-single img {
    border-radius: 100%;
    margin-right: 20px;
}
.post-author-single label {
    display: inline-block;
    margin: 0;
    vertical-align: middle;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #26292D;
}
.single-share a {
    display: inline-block;
    width: 36px;
    height: 36px;
    border: 1px solid #26292D;
    background: #26292D;
    text-align: center;
    line-height: 36px;
    border-radius: 100%;
    color: #fff;
}
.single-share a+a {
    margin-left: 8px;
}
.single-blog-img img {
    width: 100%;
    border-radius: 15px;
}
.single-blog-img {
    margin-bottom: 42px;
}
.single-blog-section p {
    margin-bottom: 25px;
	color: #26292D;
}
.single-blog-section h4, .single-blog-section h2, .single-blog-section h3, .single-blog-section h5, .single-blog-section h6 {
    color: #26292D;
    font-weight: bold;
    margin-bottom: 15px;
    margin-top: 30px;
}
.single-blog-section h3 {
    font-size: 22px;
}
.single-blog-section h4 {
    font-size: 20px;
}
.single-blog-section ul li, .single-blog-section ol li {
    margin-bottom: 25px;
    color: #26292D;
    font-weight: 400;
    line-height: 28px;
}
.single-blog-section ul li {
    list-style: none;
    position: relative;
    padding-left: 26px;
}
.single-blog-section ul li:before {
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    background: #26292D;
    border-radius: 100%;
    left: 10px;
    top: 10px;
}
.single-blog-section ol {
  list-style-type: none;
}
.single-blog-section ol > li {
    list-style: none;
    position: relative;
    padding-left: 26px;
	/* counter-increment: step-counter; */
}
.single-blog-section ol > li::marker {
    /* content: counter(step-counter) '. '; */
    content: counter(list-item) '. ';
    position: absolute;
    left: 0;
    top: 0;
}
.blog-list-section .blog-list-head {
    padding-top: 127px;
    padding-bottom: 90px;
    background: linear-gradient(180deg, #EEF5FF 0%, #FFFFFF 50%, #FFFFFF 100%);
}

.blog-list-section {
    background: linear-gradient(180deg, #FFFFFF 90%, #EEF5FF 100%);
}
.blog-list-section .blog-list-head > div {
    max-width: 960px;
}
.blog-list-section .blog-list-head h1 {
    font-weight: 600;
    margin: 0;
	line-height: 60px;
    font-size: 60px;
}
.blog-list-section .blog-list-head p {
    font-size: 18px;
    line-height: 29px;
    font-weight: 400;
    color: #26292D;
    padding: 0 107px;
    text-align: center;
}
.blog-filter form {
    border: 1px solid #26292D;
    border-radius: 8px;
}
.blog-filter .search-field {
    border: none;
    font-weight: 400;
    font-size: 16px;
    height: auto;
    padding: 6px;
    width: calc(100% - 80px);
    background: url(../images/search.png);
    background-size: 14px;
    background-repeat: no-repeat;
    background-position: left 13px center;
    padding-left: 30px;
}
.blog-filter input[type="submit"] {
    background: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    font-weight: 400;
    font-size: 16px;
    padding: 0 10px;
    height: auto;
    width: 80px;
}
.blog-filter form {
    border: 1px solid #26292D;
    border-radius: 8px;
    max-width: 226px;
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: 47px;
}
.filter-select {
    border: none;
    outline: none;
    font-size: 16px;
    font-family: var(--primary-font-family);
}
.read-more {
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
    color: #26292D;
    font-family: var(--secondary-font-family);
}
.read-more i {
    font-weight: 900;
    font-size: 14px;
    line-height: 14px;
	margin-left:20px;
	transition: .3s all;
    -webkit-transition: .3s all;
    -moz-transition: .3s all;
    -ms-transition: .3s all;
}
.read-more:hover i {
	margin-left:25px;
}


/* Calculator */

.calc-container {
  border: 1px solid #D6D6D6;
  box-sizing: border-box;
  border-radius: 16px;
  max-width: 720px;
  width: 50%;
  margin: auto;
  margin-bottom: 15px;
  background-color: white;
  padding: 30px;
}
.price-calc>li {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  margin-bottom: 30px;
}
.price-calc li:last-child {
  margin: 0;
}
.price-calc li h3 {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  margin: 0;
  position: relative;
  width: 100%;
  cursor: pointer;
}
.price-calc span {
  justify-content: left !important;
  font-weight: 600;
  color: rgb(66, 83, 92);
}
.price-calc .resource-range h5,
.price-calc .modules h5,
.price-calc .billing-term h5 {
  display: block;
}
.price-calc .modules ul h3 span,
.price-calc .billing-term div span {
  font-weight: 600;
  color: rgb(66, 83, 92);
  font-size: 14px;
}
.resource-range span span,
.modules span span,
.billing-term span span {
  padding-left: 4px !important;
}
.modules li h3 span a *{
  padding: 0 0 0 4px;
  font-size: 10px;
}
.price-calc .price-calc-tip {
  padding-left: 2px;
  height: 14px;
  cursor: pointer;
}
.price-calc .tool-tip-box {
  width: 175px;
  border-radius: 6px;
  position: absolute;
  padding: 10px;
  font-size: 12px;
  display: none;
  top: 28px;
  z-index: 9;
  background: #fff;
  text-align: left;
  line-height: normal;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .175);
  -webkit-box-shadow: 0 2px 12px rgba(0, 0, 0, .175);
  border: 1px solid rgba(0, 0, 0, .15);
}
.price-calc .resource-range div,
.price-calc .modules>ul>li{
  display: grid;
  grid-template-columns: 3.5fr 1fr;
  gap: 20px;
  align-items: center;
}
.price-calc .resource-range .rescource-slider {
  padding: 0;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.price-calc .rescource-range-input-box {
  height: 14px;
  border: none;
  color: rgb(66, 83, 92);
  text-align: center;
  padding: 0;
  border-bottom: 1px solid #E1E1E1;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.price-calc .modules .modules-tooltip-container{
  display: none;
  width: max-content;
  z-index: 9;
  background-color: white !important;
  position: absolute;
  top: 100%;
  right:0;
  border-radius: 6px;
  padding: 10px;
  line-height: normal;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .175);
  -webkit-box-shadow: 0 2px 12px rgba(0, 0, 0, .175);
  border: 1px solid rgba(0, 0, 0, .15);
}
.price-calc .modules .modules-tooltip-trigger:hover+.modules-tooltip-container{
  display: grid;
  gap: 10px;
  grid-template-columns: auto auto;
}
.price-calc .modules li {
  margin-bottom: 10px;
}
.price-calc .modules .checkbox-block{
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
}
.price-calc .modules .checkbox-block li {
  font-size: 12px;
  line-height: normal;
  height: 25px;
  margin-bottom: auto;
  background-color: transparent;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.price-calc .modules .checkbox-block label{
  padding: 0px;
  display: inline;
}
.price-calc .modules .checkbox-block input {
  border: 1px solid #959595;
  width: 16px;
  height: 16px;
  position:relative !important;
  outline: none;
  padding: 9px;
  border-radius: 4px;
  transform: none;
  top: 0;
  left: 0;
}

.price-calc .modules .checkbox-block input:checked {
  background-color: rgb(99, 162, 17);
  box-shadow: none;
  border: 1px solid rgba(0,0,0,0);
}
.price-calc .modules .checkbox-block input:focus {
  outline: none;
}
.price-calc .modules .checkbox-block input:disabled {
  background-color: rgb(99, 162, 17);
  box-shadow: none;
}
.price-calc .billing-term div {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.price-calc .billing-term div>:nth-child(2) {
  margin-left: -10px;
}
.price-calc .price-calc-divide {
  height: 1px;
  background: var(--primary-color);
  margin: 30px 0;
}

.price-calc .discount h3,
.price-calc .subscription-fee h3 {
  display: block;
  width: auto;
  font-size: 18px;
}

.price-calc .discount div {
  padding-left: 0;
}

.price-calc .discount div h3 {
  padding-left: 0;
  color: rgb(99, 162, 17);
}

.price-calc .subscription-fee div {
  padding-left: 0px;
}

.price-calc .subscription-fee div span {
  font-size: 12px;
  margin-bottom: 20px;
  font-style: italic;
}

.price-calc .subscription-fee div h3 {
  padding-left: 0;
  padding-bottom: 0;
  color: var(--primary-color);
}

.price-calc-email div {
  display: grid;
  grid-template-columns: 2.5fr 0 1fr;
  width: 50%;
  margin: auto;
}

.price-calc-email div input {
  width: 100% !important;
  height: 40px !important;
}

.price-calc-email div button {
  height: 40px !important;
  width: 100% !important;
  line-height: 40px;
}

.calc-success {
  border-color: rgb(99, 162, 17);
}

.price-calc-email .email-acknowlegement {
  font-size: 13px;
  font-weight: 600;
  margin-left: 205px;
  margin-top: 4px;
  color: rgb(99, 162, 17);
  display: none;
}

.processing {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}
/* Author all blogs */
/* Universal Styles for author-blogs*/
#author-blogs-main-container h1,
#author-blogs-main-container h3,
#author-blogs-main-container p {
  margin: 0px !important;
}
/* Styles for main parent container */
#author-blogs-main-container {
  display: grid;
  font-family: var(--secondary-font-family);
  gap: 50px;
  grid-template-columns: 1fr 3fr;
  width: 1110px;
  position: relative;
  margin: auto;
  padding-bottom: 60px;
}
/* Styles for author details on left */
.author-details-container {
  position: sticky;
  top: 106px;
  gap: 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.author-details-avatar {
  border: 1px solid black;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-details-avatar>img {
  height: 94%;
  width: 94%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.author-details-position {
  font-size: .9vw;
  text-align: center;
}

.author-details-name {
  font-size: 1.8vw;
  font-weight: 600;
  text-align: center;
  line-height: normal !important;
}

.author-details-about {
  transition: all .5s;
  font-size: .8vw;
  transition: all .5s ease-in-out;
}

.author-details-about * {
  text-align: center !important;
}

.wrapped {
  overflow: hidden;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 100%);
}

.author-details-showmore {
  transition: 1.5s;
  color: #2684FF;
  font-size: .9vw;
  cursor: pointer;
  text-align: center;
}

.author-details-linkedin {
  width: fit-content;
  margin: auto;
}

/* Styles for blogs on right */

.author-blogs-container {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin: auto;
  margin-top: 10px;
  align-items: start;
  width: fit-content;
}

/* Styles for blogs card */
.author-blogs-card-container {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(3, 1fr);
}

/* Styles for blog cards */
.author-blogs-card {
  box-shadow: 0px 0px 10px 1px rgb(207, 207, 207);
  padding: 14px;
  border-radius: 10px;
  transition: all .3s;
  display: grid;
  grid-template-rows: 9vw;
  gap: 10px;
  cursor: pointer;
}

.author-blogs-card:hover {
  box-shadow: 2px 2px 20px 4px rgb(207, 207, 207);
}

.author-blogs-card:hover {
  transform: scale(105%);
  z-index: 1;
}

.author-blogs-card>div:first-child {
  overflow: hidden;
  display: flex;
  height: 100%;
  width: auto;
  justify-content: center;
}

.author-blogs-card img {
  width: 100%;
  object-fit: cover;
}

.author-blogs-card>div:last-child {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: start;
}

.author-blogs-heading {
  font-weight: 600;
  font-size: 14px;
  line-height: normal;
}

.author-blogs-description {
  font-size: 11px;
  color: #717171;
  font-weight: 400;
}

/* Word Wrapping */
.author-blogs-description,
.author-blogs-heading {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
  line-height: normal;
  text-align: left;
}

.author-blogs-readmore {
  display: flex;
  align-items: center;
  gap: 3px;
  text-decoration: none;
  font-size: 13.5px;
  transition: text-decoration .3s;
  position: relative;
  color: #2684FF;
  font-weight: 500;
  font-style: normal;
}

.author-blogs-readmore::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #289de9;    
  transition: all 0.3s ease;
}

.author-blogs-readmore:hover::after {
  animation: underlineAnimation 0.5s ease-in-out forwards;
}

@keyframes underlineAnimation {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

/* pagination style 1 */

#pagination-container{
    padding-bottom: 90px;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
}
#pagination-dataset{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    justify-content: center;
    border-radius: 8px;
    padding:0.9rem 1rem;
    flex-wrap: wrap;
}
#pagination-dataset .pagination-next svg,#pagination-dataset .pagination-previous svg{
    color: #000000;
    font-size: 0.89rem;
}
#pagination-dataset .pagination-previous{
    width: 113px;
    height: 56px;
    border-radius: 16px;
    transition: all 0.3s ease;
    text-align: center;
    background-color: #ffffff;
}
#pagination-dataset .pagination-previous:hover,#pagination-dataset .pagination-next:hover{
    border: 1px solid #1C79D4;
}

#pagination-dataset .pagination-previous:hover svg{
    color: #289ce9dc;
}
#pagination-dataset .pagination-next{
    width: 113px;
    height: 56px;
    border-radius: 16px;
    text-align: center;
    cursor: pointer;
    background-color: #ffffff;
}
#pagination-dataset .pagination-next:hover svg{
    color: #289ce9dc;
}
#pagination-dataset .pagination-next:disabled,#pagination-dataset .pagination-previous:disabled{
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    color: #808080 !important; 
    transform: scale(1);
}

#pagination-dataset .pagination-next:disabled svg,#pagination-dataset .pagination-previous:disabled svg{
    color: rgb(255, 255, 255);
}

#pagination-dataset>button:disabled{
    cursor: not-allowed !important;
    text-align: center;
    cursor: pointer;
    border-radius: 16px;
    background-color: #ffffff;
    color: #1C79D4;
}
#pagination-dataset .ellipsis{
    border: 1px solid rgba(0, 0, 0, .175);
    cursor: no-drop !important;
    box-shadow: none !important;
    background: transparent !important;
}
#pagination-dataset .ellipsis:hover{
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #1C79D4;
}
#pagination-dataset button{
    text-align: center;
    width: 72px;
    height:56px;
    font-size: 0.99rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
    border-radius: 16px;
    background-color: #ffffff;
    color: #000000;
    font-family: var(--primary-font-family);
}
#pagination-dataset button:hover {
    cursor: pointer;
    transform: scale(1.05);
    color: #1C79D4;
    border: 1px solid #1C79D4;
}

#pagination-dataset button svg,
#pagination-dataset button i {
    width: 14px;
    height: 14px;
    vertical-align: middle;
    color: #1C79D4;
}
  #pagination-dataset>.active {
    color: #1C79D4 !important;
    border: 1px solid #1C79D4;
}
/* Authors blogs styling -------->  */

.author-blogs-pagination-container{
    margin: 0 auto;
}
.author-blogs-pagination-container #pagination-dataset{
    padding: 0.6rem;
    box-shadow: 0px 0px 10px 1px rgb(207, 207, 207);
}
.author-blogs-pagination-container #pagination-dataset>button{
    width: 35px;
    height: 35px;
}
.author-blogs-pagination-container .pagination-next,.author-blogs-pagination-container .pagination-previous{
    width: 35px;
    font-size:1.1vw;
    height: 35px;
} 
/* Media Queries */
/* 1400px */
@media screen and (max-width: 1400px) {
  #author-blogs-main-container {
    gap: 40px;
  }

  /* Author details section on left*/

  .author-details-position {
    font-size: 1.1vw;
  }

  .author-details-name {
    font-size: 2.3vw;
  }

  .author-details-about>p {
    font-size: 1vw;
    line-height: normal !important;
  }

  .author-details-showmore {
    font-size: 1.1vw;
  }

  /* Blogs section on right */
  .author-blogs-card {
    padding: 13px;
  }

  .author-blogs-heading {
    font-size: 1.1vw;
  }

  .author-blogs-description {
    font-size: .8vw;
  }

  .author-blogs-readmore {
    font-size: .8vw;
    font-weight: 500;
  }


  .author-blogs-card-container {
    grid-template-columns: repeat(3, 1fr)
  }

  #pagination-container{
    bottom: 100px;
}
.author-blogs-pagination-container #pagination-dataset{
    padding: 0.4rem;
    font-size: 1.1vw;
}
.author-blogs-pagination-container .pagination-next,.author-blogs-pagination-container .pagination-previous{
    width: 32px;
    height: 32px;
} 

.hero-image img {
    max-width: 775px;
}

.new-small-feature-section h2{
    font-size: 24px;
    line-height: 24px;
}

}

@media only screen and (max-width: 1200px){
h1 {
    font-size: 46px;
    line-height: 52px;
}
h2 {
	font-size: 32px;
    line-height: 40px;
}
h3 {
	font-size: 28px;
	line-height: 34px;
}
h4 {
	font-size: 24px;
	line-height: 30px;
}
.faq-section h1 {
    line-height: normal;
}
.copyright-row{
    padding-left: 282px;
}
.newsletter-trial-span{
    margin-left: 265px !important;
}
.author-bio{
    text-align: center;
}
.author-bio .profile-details{
  align-items: center !important;
}
.author-bio .author-profile{
    flex-direction: column !important;
}
/* Calculator -queries */
.calc-container{
  width: 65%;
}
/* Author all blogs */
#author-blogs-main-container {
  width: 930px;
}
.author-blogs-pagination-container #pagination-dataset{
    padding: 0.3rem;
    font-size: 28px;
}
.author-blogs-pagination-container .pagination-next,.author-blogs-pagination-container .pagination-previous{
    width: 30px;
    font-size:1.1vw;
    height: 30px;
} 
.team-sec {
    padding: 50px 100px;
}

.hero-image img {
    max-width: 775px;
}
.gradient-text, .plain-text {
    font-size:24px;
    line-height: 32px;
}
.new-small-feature-section h2{
    font-size: 24px;
    line-height: 24px;
}

}
.single-blog-section h2 {
    font-size: 24px;
}

@media only screen and (max-width: 1024px){
h1 {
    font-size: 38px;
    line-height: 44px;
}
h2 {
	font-size: 28px;
    line-height: 36px;
}
h3 {
	font-size: 28px;
	line-height: 34px;
}
h4 {
	font-size: 22px;
    line-height: 28px;
}
.integration-sec .tab-menu h2 {
    margin-bottom: 30px;
}
.integration-sec .tab-menu h4 {
    font-size: 20px;
    margin-bottom: 5px;
}
.team-card p.name {
    font-size: 20px;
    line-height: 28px;
}

.team-carousel .item {
    padding: 61px 6px 30px;
    padding-left: 15px;
    height: 100%;
}
.team-card span {
    margin-bottom: 20px;
}
.team-card p {
    font-size: 16px;
    line-height: 24px;
}
.newsletter-sec h6 {
    font-size: 44px;
    margin-bottom: 30px;
}
.newsletter-sec {
    margin-bottom: 60px;
    margin-top: 70px;
    padding-top: 40px;
}
.copyright-row {
    margin-top: 50px;
    color: #303030;
    font-size: 13px;
}
.tabs-sec {
    margin-top: 60px;
}
.features-item, .financials-features-sec .features-item {
    margin-top: 80px;
}
.inner-title-sec {
    padding-top: 50px;
    margin-top: 0;
    min-height: 200px;
}
.small-features-sec {
    padding-bottom: 60px;
}
.contact-section {
    padding-top: 40px;
    padding-bottom: 60px;
}
.contact-top {
    margin-top: 40px;
}
.contact-section .form-box {
    padding: 30px 20px;
}
.form-box textarea {
    height: 230px;
}
.form-box .btn {
    margin: 0;
}

/* Calculator m-queries*/
.calc-container {
  width: 65%;
}
.other-features .container{
    justify-content: space-between;
    grid-template-columns: 30% 60%;
}
.features-sec-rms .tabs-sec .tab-teaser .tab-menu ul li {
    margin: 0px !important;
}
/* Author all blogs */
#author-blogs-main-container {
  gap: 25px;
  grid-template-columns: 1fr 3fr
}
/* Author details section on left*/
.author-details-position {
  font-size: 1.3vw;
}
.author-details-name {
  font-size: 2.5vw;
}
.author-details-about>p {
  font-size: 1.2vw;
}
.author-details-showmore {
  font-size: 1.3vw;
}
.author-details-linkedin {
  width: 25px !important;
  font-size: 12px;
}
/* Blogs section on right */
.author-blogs-heading {
  font-size: 1.4vw;
}
.author-blogs-description {
  font-size: 1vw;
}
.author-blogs-readmore {
  font-size: 1vw;
  font-weight: 400;
}
.author-blogs-card-container {
  gap: 25px;
  grid-template-columns: repeat(3, 1fr)
}
#pagination-container{
    bottom: 100px;
}
.author-blogs-pagination-container #pagination-dataset{
    padding: 0.3rem;
}
.author-blogs-pagination-container #pagination-dataset>button{
    width: 28px;
    font-size:1.3vw;
    margin: 0.2rem;
    height: 28px;
}
.author-blogs-pagination-container .pagination-next,.author-blogs-pagination-container .pagination-previous{
    width: 28px;
    font-size:1.3vw;
    height: 28px;
} 

.team-sec {
    padding: 40px 80px;
}
.hero-image img {
    max-width: 800px;
}
.home-team-sec .home-team-card{
    width: auto;
}
.promo-heading{
    font-size: 24px !important;
    line-height: 28px !important;
    margin-top:20px;
}
.promo-description{
    font-size: 16px;
    line-height: 28px;
}
.milestone-title{
    font-size: 24px !important;
    line-height: 24px;
}
.milestone-subtitle{
    font-size: 16px;
    line-height: 28px;
}
.features-sec.features-sec-rms h2{
    font-size: 24px;
    line-height: 32px;
}
.faq-container{
    font-size:24px;
    line-height: 32px;
}
.faq-container h2{
    font-size: 24px;
    line-height: 32px;
}
.faq-container h2{
    font-size: 24px;
    line-height: 32px;
}
.gradient-text, .plain-text {
    font-size:24px !important;
    line-height: 32px !important;
}
.new-small-feature-section h2{
    font-size: 24px !important;
    line-height: 24px !important;
}

}
@media screen and (max-width:992px) {
  #author-blogs-main-container {
    width: 690px;
  }
}
@media only screen and (max-width: 991.5px){
h1 {
    font-size: 34px;
    line-height: 40px;
}	
h2, .home-blog-content h3 {
	font-size: 26px;
    line-height: 34px;
}
h3 {
	font-size: 28px;
	line-height: 34px;
}
h4 {
	font-size: 20px;
    line-height: 26px;
}
p, .features-item .tab-teaser .tab-menu ul li a, .single-blog-section ul li, .single-blog-section ol li {
    font-size: 16px;
    line-height: 24px;
}
.single-blog-section p, .single-blog-section ul li, .single-blog-section ol li {
    margin-bottom: 15px;
}
.single-blog-section h4 {
    margin-bottom: 20px;
}
.mobile-header-actions {
    display: flex;
}
.toggle-menu {
    display: inline-block;
}
.mobile-try-free-btn {
    display: inline-block;
}
.site-logo {
    margin-top: 0;
	max-width: 135px;
}
.header-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #fff;
    z-index: 999;
    padding: 20px 15px; 
	display: none;
    box-shadow: 0px 5px 10px rgb(0 0 0 / 5%);
    -webkit-box-shadow: 0px 5px 10px rgb(0 0 0 / 5%);
    -moz-box-shadow: 0px 5px 10px rgb(0 0 0 / 5%);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.header-menu.menu-closed {
    opacity: 0;
    transform: translateY(-10px);
}

.header-menu.menu-open {
    opacity: 1;
    transform: translateY(0);
}	
.header .row {
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
}
.header-menu>ul>li+li {
    margin-left: 0;
}	
.header-menu li {
    width: 100%;
}
.header-menu li a {
    padding: 20px 20px;
    display: block;
    width: 100%;
}
.header-menu li.megamenu-item {
    position: relative;
}
.sub-menu-toggle{
    display: block !important;
}
.sub-menu-hover{
    display: none;
}

.header-menu li .dropdown-menu-icon {
    position: absolute;
    right: 0;
    width: 13px;
    height: 13px;
    line-height: 30px;
    font-size: 14px;
	text-align: center;
	transition: .3s all;
    -webkit-transition: .3s all;
    -moz-transition: .3s all;
    -ms-transition: .3s all;
}
.header-menu li .dropdown-menu-icon.active {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
}
.header-menu li .sub-menu .container {
    padding: 0;
}
.megamenu-sub-menu .megamenu-inner-list li {
    width: 100%;
}
.megamenu-sub-menu .megamenu-inner-list li a img {
    display: none;
}
.header-menu li.megamenu-item:hover .megamenu-sub-menu {
    margin-top: 0;
}
.megamenu-sub-menu .megamenu-inner-list li a {
    display: block;
    width:100%;
}
.header-menu .menu-btn span {
    position: relative;
    top: auto;
    display: inline-block;
    margin-left: 10px;
}
.header-menu li .sub-menu {
    margin: 0;
    opacity: 0;
    visibility: hidden;
    position: relative;
    box-shadow: none;
    padding: 0;
    width: 100%;
    left: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    -webkit-transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    -moz-transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    -ms-transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.header-menu li .sub-menu.open {
    opacity: 1;
    visibility: visible;
    max-height: 500px;
}
.header-menu li .sub-menu a {
    font-size: 14px;
}
.tabs-sec .tab-teaser .tab-menu ul li {
    width: calc(100%/3 - 60px/3);
    margin-right: 20px;
}
.tabs-sec .tab-menu ul li p{
	font-size: 16px;
    line-height: 24px;
}
.features-item, .financials-features-sec .features-item {
    margin-top: 60px;
}
.integration-sec {
    margin-top: 60px;
    margin-bottom: 80px;
}
.home-blog-content h3 {
    font-size: 28px;
}
.home-blog-content h6 {
    font-size: 20px;
}
.home-blog-content .blog-author {
    flex-direction: column-reverse;
    -webkit-flex-direction: column-reverse;
    -moz-flex-direction: column-reverse;
}
.home-blog-content .blog-author {
    margin-top: 0px;
}
.blog-author-img {
    width: 100%;
	margin-top: 20px;
}
.home-blog-content p {
    font-size: 16px;
}
.blog-author-img img {
    margin-right: 10px;
}
.home-blog-content .blog-read-more {
    width: 100%;
}
.blog-read-more a {
    font-size: 16px;
    line-height: 28px;
}
.newsletter-sec {
    margin-bottom: 30px;
    margin-top: 50px;
    padding-top: 40px;
}
.newsletter-sec h6 {
    font-size: 38px;
    margin-bottom: 25px;
}
.newsletter-sec p {
    font-size: 16px;
}
.footer-logo {
    width: 25%;
}
.footer-menu {
    max-width: 18%;
}
.faq-section {
    padding-top: 50px;
    padding-bottom: 80px;
}
.accordion-list>li>h2,
.accordion-list>li>h3 {
    font-size: 18px;
    padding: 15px 30px 15px 20px;
}
.accordion-list>li>h2:after,
.accordion-list>li>h3:after {
    right: 18px;
}
.accordion-list li .answer {
    padding: 0px 19px 20px;
    padding-right: 20px;
}
.calc-list li h5 {
    font-size: 18px;
    padding: 15px 30px 15px 20px;
}
.calc-list li h5:after {
    right: 18px;
}
.calc-list li .answer {
    padding: 0px 19px 20px;
    padding-right: 20px;
}
.contact-section h1 {
    margin-bottom: 20px;
}
.opening-list li {
    padding: 18px 20px;
}
.single-blog-section {
    padding-top: 60px;
    padding-bottom: 50px;
}
.single-blog-section h1 {
    font-weight: 700;
    font-size: 30px;
    line-height: 38.2px;
}
.post-meta-single {
    margin-top: 35px;
    margin-bottom: 40px;
}
.single-blog-img {
    margin-bottom: 25px;
}
.copyright-row{
    padding-left: 160px;
}
.newsletter-trial-span{
    margin-left: 145px !important;;
}
/* Calculator m-queries*/
.calc-container {
  width: 660px;
  padding: 20px;
}
.price-calc li{
  margin-bottom: 20px;
}
.rms-blogs-list{
    grid-template-columns: 1fr;
}
.rms-blogs-list>*{
    width: 70%;
    margin: auto;
}
.rms-blogs-list>div img{
    width: 100%;
}
.faq-section-rms .container .faq-right h3{
    font-size: 18px;
    padding: 15px;
}
.faq-section-rms .accordion-list li .answer {
    padding: 0px 15px 15px 15px;
}
.inner-title-intro-container>p{
    max-width: 960px;
}
.author-blogs-pagination-container #pagination-dataset{
    padding: 0.2rem;
}
.author-blogs-pagination-container #pagination-dataset>button{
    margin: 0.1rem;
}
.review-videos-cont {
    grid-template-columns: 1fr;
    gap: 30px;
}
.review-videos-cont>.details{
    order: 2;
}
.review-videos-cont>.video-container{
    order: 1;
}
/* .client-company{
    text-align: center;
    font-size: 1.2rem; 
} */
.videoPlayer {
    width: 100%;
    height: auto; 
}
.quick-trial-span-icon{
    padding-top: 6px !important;
}
.hero-image img {
    max-width: 700px;
}
.promo-heading{
    font-size: 24px !important;
    line-height: 28px !important;
}
.promo-description{
    font-size: 16px;
    line-height: 28px;
}
.milestone-title{
    font-size: 24px !important;
    line-height: 28px !important;
}
.milestone-subtitle{
    font-size: 16px;
    line-height: 28px;
}
.features-sec.features-sec-rms h2{
    font-size: 24px;
    line-height: 32px;
}
.faq-container{
    font-size:24px;
    line-height: 32px;
}
.faq-container h2{
    font-size: 24px;
    line-height: 32px;
}
.gradient-text, .plain-text {
    font-size:24px !important;
    line-height: 24px !important;
}
.new-small-feature-section h2{
    font-size: 24px !important;
    line-height: 24px !important;
}
.main-menu-card-container {
    flex-direction: column;
    gap: 0px !important;
    padding: 0px !important;
    box-shadow: none !important;
    border-radius: 0 !important;
  }
  .header-subtitle {
    font-weight: 400 !important;
  }
  .main-menu-icon-box {
    width: 45px !important;
    height: 45px !important;
    box-shadow: none !important;
    background: none !important;
    margin: 5px !important;
  }
  .header-subtitle-description{
    display: none;
  }
  .main-menu-column {
    gap: 0px !important;
  }
   .main-menu-text{
     flex-direction: row;
     width: 100%;
     justify-content: space-between;
     align-items: center;
   }
   .main-menu-feature{
     gap: 0px !important;
   }
   .header-subtitle {
     display: flex;
     justify-content: space-between;
     align-items: center;
     width: 100%;
   }
   .header-subtitle span {
     margin-left: auto;
     flex-shrink: 0;
   }
   .header-subtitle span i {
     font-size: 12px;
     color: #289ce9;
   }
   .button-container{
    display: flex;
    width: 100%;
    text-align: center;
    padding-top: 25px;
    gap: 25px;
    margin: 0px 30px;
   }
   .header-menu li{
    border-bottom: 0.5px solid rgba(0, 0, 0, 0.1);
   }
   .header-menu .button-container li{
    border-bottom: none;
   }
   .quick-links-section .footer-title{
    text-align: center;
   }
   .quick-links-nav{
    gap: 3px;
   }
}

@media only screen and (max-width: 767.5px){
h1 {
    font-size: 30px;
    line-height: 36px;
}
h2, .home-blog-content h3 {
	font-size: 24px;
    line-height: 32px;
}
h3 {
	font-size: 28px;
	line-height: 34px;
}
h4 {
	font-size: 20px;
    line-height: 26px;
}
.company-sec {
    padding-top: 50px;
}
.company-logos li {
    width: 33.33%;
    padding: 16px 10px;
}
.tabs-sec .tab-teaser .tab-menu ul li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
}
.tabs-sec .tab-menu ul li h4 {
    margin-bottom: 8px;
}
.tabs-sec .tab-teaser .tab-menu {
    margin-top: 30px;
}
.financials-features-sec {
    padding-bottom: 60px;
}
.features-item, .financials-features-sec .features-item {
    margin-top: 30px;
}
.features-content, .inner-identify-qualified .features-content, .inner-real-time .features-content {
    width: 100%;
}
.features-img, .inner-real-time .features-img, .manual-automatic-item .features-img {
    width: 100%;
	margin-bottom: 30px;
}
.hero {
    flex-direction: column;
    min-height: auto;
    padding: 30px 0;
}
.hero-content {
    width: 100%;
    margin-bottom: 30px;
    padding-left: 5%;
    padding-right: 5%;
}
.hero-image {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 100%;
    text-align: center;
    min-height: 300px;
}
.hero-image img {
    max-height: 400px;
    width: auto;
    margin: 0 auto;
}
.features-item:nth-child(odd) .row, .features-sec .features-item:nth-child(even) .row, .home-blog-sec .row {
	flex-direction: column-reverse;
    -webkit-flex-direction: column-reverse;
    -moz-flex-direction: column-reverse;
}
.integration-sec .tab-main-box {
    width: 100%;
}
.integration-sec {
    margin-top: 10px;
    margin-bottom: 50px;
}
.integration-sec .tab-menu {
    width: 100%;
	margin-top: 20px;
}
.integration-sec .tab-menu h2 {
    margin-bottom: 20px;
}
.integration-sec .tab-menu ul li {
    margin-bottom: 0;
}
.home-blog-sec {
    margin-bottom: 60px;
}
.home-blog-content, .home-blog-img {
    width: 100%;
}
.home-blog-content h3 {
    margin-bottom: 15px;
}
.home-blog-content h6 {
    font-size: 16px;
    margin-bottom: 5px;
}
.home-blog-content {
    margin-top: 30px;
}
.team-card {
    padding: 70px 15px 25px;
    width: 100%;
}
.team-card .team-member-img {
    max-width: 95px;
    top: -45px;
}
.team-carousel .item {
    padding: 46px 6px 30px;
    padding-left: 15px;
    height: 100%;
}
.team-card p.name {
    font-size: 18px;
    line-height: 26px;
}
.team-card span {
    margin-bottom: 10px;
    font-size: 16px;
}
.team-card p {
    font-size: 14px;
    line-height: 22px;
}
.team-card-logo {
    margin-top: 15px;
}
.team-sec {
    padding-bottom: 30px;
	margin-bottom: 50px;
}
.newsletter-sec h6 {
    font-size: 28px;
    margin-bottom: 15px;
    line-height: 36px;
}
.newsletter-sec {
    margin-bottom: 20px;
    margin-top: 10px;
    padding-top: 40px;
}
.footer-sec {
    padding-top: 40px;
    padding-bottom: 25px;
}
.footer-logo {
    width: 100%;
	-webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -ms-flex-pack: flex-start;
}
.footer-menu {
    max-width: 50%;
    margin-top: 30px;
}
.footer-menu li {
    margin-bottom: 10px;
}
.copyright-row {
    margin-top: 40px;
    color: #303030;
    font-size: 13px;
    padding-left: 0;
}
.copyright-row .social-links {
    width: 100%;
    margin-top: 20px;
}
.small-features-item {
    width: 47%;
    margin-bottom: 25px;
}
.small-features-item h4 {
    font-size: 20px;
}
.small-features-sec {
    padding-bottom: 40px;
}
.management-small-features-sec .small-features-middle-bg {
    top: 47%;
}
.financials-features-sec .features-content, .management-features-sec .features-content {
    padding-bottom: 0;
    margin-top: -20px;
}
.scheduling-features-sec .features-content {
    padding-bottom: 0;
}
.faq-left {
    width: 100% !important;
    margin-bottom: 20px;
}
.faq-right {
    width: 100%;
}
.faq-section h1 {
    margin-bottom: 30px;
}
.faq-section {
    padding-top: 30px;
    padding-bottom: 60px;
}
.faq-left .tab-menu li a {
    font-size: 16px;
}
.accordion-list>li>h2,
.accordion-list>li>h3 {
    font-size: 16px;
    /* padding: 12px 30px 12px 15px; */
    line-height: 22px;
}
.accordion-list li .answer {
    padding: 0px 15px 15px;
    padding-right: 20px;
}
.accordion-list>li>h2:after,
.accordion-list>li>h3:after {
    right: 14px;
}
.accordion-list li {
    margin-bottom: 10px;
}
.calc-list li h5 {
    font-size: 16px;
    padding: 12px 30px 12px 15px;
    line-height: 22px;
}
.calc-list li .answer {
    padding: 0px 15px 15px;
    padding-right: 20px;
}
.calc-list li h5:after {
    right: 14px;
}
.calc-list li {
    margin-bottom: 10px;
}
.contact-left {
    width: 100%;
    margin-bottom: 20px;
}
.contact-right {
    width: 100%;
}
.contact-left ul {
    margin-top: 10px;
}
.contact-left h6 {
    font-size: 18px;
}
.contact-left ul li {
    margin-bottom: 20px;
}
.contact-section .form-box {
    padding: 20px 15px 30px;
}
.form-box input, .form-box textarea {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 18px;
}
.contact-section.tab-teaser .contact-left {
    width: 100%;
}
.contact-left .tab-menu li {
    margin-bottom: 12px;
    font-size: 16px;
}
.opening-list li {
    padding: 10px 15px;
    margin-bottom: 12px;
}
.opening-list li h6 {
    font-size: 16px;
    line-height: 24px;
}
.apply-btn {
    font-size: 14px;
	padding: 7px 15px 10px;
}
.contact-bottom {
    margin-top: 40px;
}
.contact-hiring-form {
    width: 100%;
}
.contact-hiring-right {
    width: 100%;
    padding-left: 0;
    margin-bottom: 20px;
}
.contact-bottom {
    flex-direction: column-reverse;
    -webkit-flex-direction: column-reverse;
    -moz-flex-direction: column-reverse;
}
.single-blog-section ul li:before, .single-blog-section ol li:before {
    left: 0;
}
.single-blog-section ul li {
    padding-left: 15px;
}
.single-blog-section {
    padding-top: 30px;
    padding-bottom: 40px;
}
.single-blog-section h1 {
    font-size: 24px;
    line-height: 31.2px;
}
.post-author-single img {
    margin-right: 10px;
}
.blog-filter {
    width: 100%;
    margin-top: 20px;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    -ms-justify-content: flex-end;
    justify-content: flex-end;
    -ms-flex-pack: flex-end;
}
.blog-filter form {
    margin-right: 20px;
}
.newsletter-trial-span{
    margin-left: 55px !important;;
}
.blog-left-section{
    padding-left: 15px !important;
    padding-right: 15px !important;
}
.blog-index{
    margin-bottom: 15px !important;
}
/* Calculator m-queries*/
.calc-container {
  width: 480px;
  padding: 15px;
}
.price-calc li{
  margin-bottom: 10px;
}
.price-calc li h3,
.price-calc .subscription-fee h5,
.price-calc .discount h5 {
  font-size: 16px;
}
.price-calc-email div {
  width: 70%;
}
.other-features .container{
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    gap: 20px;
    justify-content: initial;
    padding: 30px 0;
}
.other-features .container>div:last-child{
    gap: 20px 10px;
}
.features-sec-rms .tabs-sec .tab-teaser .tab-menu ul {
    padding: 0px;
}
.features-sec-rms .tabs-sec .tab-teaser .tab-menu ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    padding: none;
}
.rms-blogs-list>*{
    width: 85%;
}
.faq-section-rms .container .faq-right h3{
    font-size: 16px;
    line-height: 22px;
    padding: 12px;
}
.faq-section-rms .accordion-list li .answer {
    padding: 0px 12px 12px 12px;
}

/* Author all blogs */
#author-blogs-main-container {
  max-width: 500px;
  gap: 25px;
  grid-template-columns: 1fr 1.8fr;
}
/* Author details section on left*/
.author-details-position {
  font-size: 1.7vw;
}
.author-details-name {
  font-size: 3.2vw;
}
.author-details-about>p {
  font-size: 1.6vw;
}
.author-details-showmore {
  font-size: 1.7vw;
}
.author-details-linkedin {
  width: 20px !important;
  font-size: 10px;
}
/* Author blogs section on right */
.author-blogs-card {
  grid-template-rows: 16vw;
  padding: 11px;
}
.author-blogs-heading {
  font-size: 1.8vw;
}
.author-blogs-description {
  font-size: 1.3vw;
}
.author-blogs-readmore {
  font-size: 1.3vw;
  font-weight: 300;
}
.author-blogs-card-container {
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
/* Pagination */
#pagination-dataset * {
  font-size: 12px;
}
.inner-title-intro-container>p{
    text-align: justify;
    padding: 0px 15px;
}
.author-blogs-pagination-container #pagination-dataset{
    padding: 0.3rem;
}
.author-blogs-pagination-container #pagination-dataset .pagination-next svg,.author-blogs-pagination-container #pagination-dataset .pagination-previous svg{
    font-size: 1.8vw;
}
.author-blogs-pagination-container #pagination-dataset>button {
    font-size: 1.8vw;
}
.team-sec {
    padding: 40px 65px;
}
.hero-image img {
    max-width: 550px;
}
.promo-heading{
    font-size: 24px !important;
    line-height: 28px !important;
}
.promo-description{
    font-size: 16px;
    line-height: 28px;
}
.milestone-title{
    font-size: 24px !important;
    line-height: 24px;
}
.milestone-subtitle{
    font-size: 16px;
    line-height: 28px;
}
.features-sec.features-sec-rms h2{
    font-size: 24px;
    line-height: 32px;
}
.faq-container{
    font-size:24px;
    line-height: 32px;
}
.faq-container h2{
    font-size: 24px;
    line-height: 32px;
}
.faq-container h2{
    font-size: 24px;
    line-height: 32px;
}
.gradient-text, .plain-text {
    font-size:24px !important;
    line-height: 24px !important;
}
.new-small-feature-section h2{
    font-size: 24px !important;
    line-height: 24px !important;
}

}
@media only screen and (max-width: 580px){
.container{ padding-left: 15px; padding-right: 15px;}
h2, .home-blog-content h3 {
    font-size: 22px;
    line-height: 28px;
}
.get-started-form input[type="email"] {
    width: 100%;
}
.get-started-form .btn {
    margin-left: 0;
    width: 200px;
    margin-top: 20px;
}
.company-logos li {
    width: 50%;
    padding: 10px 10px;
}
.newsletter-sec h6 {
    font-size: 24px;
    margin-bottom: 15px;
    line-height: 32px;
}
.get-submit-btn {
    margin-left: 0;
    width: 126px;
    float: none;
    text-align: left;
}
.get-started-form .get-submit-btn .btn {
    margin-left: 0;
    width: 150px;
}
.social-links li+li {
    margin-left: 15px;
}	
.inner-title-sec {
    padding-top: 30px;
    margin-top: 0;
    min-height: auto;
}
.inner-title-bg{
	display:none;
}
.small-features-item {
    width: 100%;
    margin-bottom: 25px;
}
.small-features-item img, .small-features-item lottie-player, .small-features-item dotlottie-player {
    width: 100%;
    margin-bottom: 20px;
}
.blog-filter-buttons {
    gap: 6px;
}
.blog-filter-btn {
    padding: 6px 12px;
    font-size: 13px;
}
.small-features-title {
    margin-bottom: 40px;
}
.small-features-bottom-bg {
    bottom: 0px;
}
.popup-content-box {
    padding: 24px 15px;
}
.popup-form-field input {
    padding: 10px 15px;
}
.popup-submit {
    margin-top: 35px;
}
.blog-meta-author {
    width: 100%;

}
.blog-filter {
    width: 100%;
}
.blog-filter form {
    margin-right: 0;
    width: 100%;
	max-width: 100%;
    margin-bottom: 20px;
}	
.blog-left-section{
    padding-left: 15px !important;
}
.blog-search-container input {
    width: 255px !important;
}
.blog-search-container > input {
    width: 100% !important;
    max-width: 564px;
}
.blog-filter-buttons {
    gap: 8px;
    margin-top: 24px;
    padding: 0 15px;
}
.blog-filter-btn {
    padding: 8px 16px;
    font-size: 14px;
}
.calc-container{
  margin-top: 20px;
}
.other-features .container{
    padding: 20px 15px;
}
.rms-blogs-list>*{
    width: 100%;
}
.inner-title-intro-container>p{
    max-width: 540px;
}
.author-blogs-pagination-container #pagination-dataset{
    padding: 0.2rem;
}
.author-blogs-pagination-container #pagination-dataset>button {
    font-size: 1.8vw;
    width:  22px;
    height: 22px;
}
.author-blogs-pagination-container #pagination-dataset .pagination-next,.author-blogs-pagination-container #pagination-dataset .pagination-previous{
    width:  22px;
    height: 22px;
}
.author-blogs-pagination-container #pagination-dataset .pagination-next svg,.author-blogs-pagination-container #pagination-dataset .pagination-previous svg{
    font-size: 12px;
}
#pagination-container {
    width: 100%;
}
#pagination-dataset {
    padding:0.8rem 0.5rem;;
    gap: 0;
    justify-content: space-evenly;
    flex-wrap: wrap;
}
#pagination-dataset .pagination-next i,#pagination-dataset .pagination-previous i{
    font-size: 12px;
}

.team-sec {
    padding: 40px 15px !important;
}
.hero-image img {
    max-width: 400px;
}
.promo-heading{
    font-size: 24px !important;
    line-height: 28px !important;
}
.promo-description{
    font-size: 16px;
    line-height: 28px;
}
.milestone-title{
    font-size: 24px !important;
    line-height: 22px;
}
.milestone-subtitle{
    font-size: 16px;
    line-height: 28px;
}
.features-sec.features-sec-rms h2{
    font-size: 24px;
    line-height: 32px;
}
.faq-container{
    font-size:24px;
    line-height: 32px;
}
.faq-container h2{
    font-size: 24px;
    line-height: 32px;
}
.faq-container h2{
    font-size: 24px;
    line-height: 32px;
}
.gradient-text, .plain-text {
    font-size:24px !important;
    line-height: 24px !important;
}
.new-small-feature-section h2{
    font-size: 24px !important;
    line-height: 24px !important;
}

}
@media (max-width: 576px) {
    .inner-title-intro-container>p{
        max-width: 540px;
    }
}
@media only screen and (max-width: 500px){
  /* Calculator m-queries */
  .calc-container{
    width: 90%;
  }
  .price-calc>li:nth-child(-n+3) {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  
  .price-calc>li:nth-child(n+5):nth-child(-n+7){
    grid-template-columns: 1.5fr 1fr;
    justify-content: space-between;
  }
  .price-calc-email div {
    width: 100%;
  }
  .price-calc .modules .checkbox-block {
    justify-content: flex-end;
  }
  .price-calc li h3,
  .price-calc .subscription-fee h5,
  .price-calc .discount h5 {
    font-size: 14px;
  }
  .price-calc .modules ul h3 span,
  .price-calc .billing-term div span {
    font-size: 13px;
  }
  .price-calc .rescource-range-input-box {
    font-size: 13px;
  }
  .price-calc-email div * {
    font-size: 13px !important;
  }
  .price-calc .modules .modules-tooltip-trigger:hover+.modules-tooltip-container{
    grid-template-columns: auto;
    gap: 0px;
    top: 0;
    right: 18px;
  }
  .other-features .container>div:last-child{
      grid-template-columns: 1fr;
      grid-template-rows: repeat(4, 1fr);
  }
  .author-blogs-pagination-container{
    margin: 0;
    width: 95%;
  }
  .author-blogs-pagination-container #pagination-dataset{
    padding: 0.3rem;
}
.author-blogs-pagination-container #pagination-dataset>button {
    width: 20px;
    height: 20px;
}
.author-blogs-pagination-container #pagination-dataset .pagination-next, .author-blogs-pagination-container #pagination-dataset .pagination-previous {
    width: 20px;
    height: 20px;
}
.author-blogs-pagination-container #pagination-dataset .pagination-next svg, .author-blogs-pagination-container #pagination-dataset .pagination-previous svg{
    font-size: 0.6rem;
}
#pagination-dataset .pagination-next, #pagination-dataset .pagination-previous {
    padding: 0.1rem;
    font-size: 12px;
}
.promo-heading{
    font-size: 24px !important;
    line-height: 28px !important;
}
.promo-description{
    font-size: 16px;
    line-height: 28px;
}
.milestone-title{
    font-size: 24px !important;
    line-height: 22px;
}
.milestone-subtitle{
    font-size: 16px;
    line-height: 28px;
}
.features-sec.features-sec-rms h2{
    font-size: 24px;
    line-height: 32px;
}
.faq-container{
    font-size:24px;
    line-height: 32px;
}
.faq-container h2{
    font-size: 24px;
    line-height: 32px;
}
.faq-container h2{
    font-size: 24px;
    line-height: 32px;
}
.gradient-text, .plain-text {
    font-size:24px !important;
    line-height: 24px !important;
}
.new-small-feature-section h2{
    font-size: 24px !important;
    line-height: 24px !important;
}
.cta-heading{
    text-align: center;
    font-size: 30px !important;
    line-height: 40px !important;
}
.cta-subheading{
    font-size: 16px !important;
}
.cta-benefits{
    font-size: 15px !important;
}
.cta-gradient-section{
    padding: 40px 20px !important;
}
/*Demo Page Responsiveness*/
.demo-heading {
    font-size: 30px !important;
    line-height: 35px !important;
}

.demo-subheading {
    font-size: 15px !important;
    line-height: 24px !important;
    margin-bottom: 0px !important;
}

.calendly-demo-wrapper {
    padding: 30px 15px !important;
}

.calendly-demo-wrapper .container {
    flex-direction: column !important;
    gap: 20px !important;
    max-width: 100% !important;
}

.calendly-demo-wrapper .container > div:first-child {
    order: 2 !important;
}

.calendly-demo-wrapper .container .row {
    order: 1 !important;
    margin-left: 0 !important;
}

.calendly-demo-wrapper iframe {
    min-width: 100% !important;
    width: 100% !important;
    height: 500px !important;
    margin-left: 0 !important;
}

.calendly-demo-wrapper p {
    font-size: 18px !important;
    margin-bottom: 0px !important;
}

.calendly-demo-wrapper ul.blue-bullets {
    margin-bottom: 20px !important;
}

.calendly-demo-wrapper ul.blue-bullets li {
    font-size: 14px !important;
    line-height: 22px !important;
}

.ratings-badges {
    flex-direction: row !important;
    align-items: center !important;
    gap: 15px !important;
}

.ratings-badges a {
    margin-right: 0 !important;
    margin-bottom: 10px !important;
    height: 60px !important;
}

.ratings-badges img {
    width: auto !important;
    height: 60px !important;
}

.demo-svgs {
    display: none !important;
}

#fallback {
    font-size: 13px !important;
}
.company-sec{
    padding: 30px 0 0 0 !important;
    margin: 0 !important;
}
.trust-line{
    display: none;
}
.cs-right-section{
    width: 400px !important;
    position: relative !important;
    padding: 40px 20px !important;
}
.bg-circle{
    display: none;
}
.quick-links-nav{
    gap: 0px;
}
.footer-logo{
    padding-left: 90px;
    padding-top: 50px;
}
.banner-decor{
    display: none;
}
.img-decor{
    display: none;
}
.quick-links-nav{
    justify-content: space-evenly;
}
}
@media only screen and (max-width: 425px){
    .features-sec-rms .tabs-sec .tab-teaser .tab-menu ul {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 1fr);
      }
      .author-blogs-pagination-container #pagination-dataset .pagination-next:disabled, .author-blogs-pagination-container #pagination-dataset .pagination-previous:disabled {
        width: 15px;
        height: 15px;
    }
  }
@media screen and (max-width: 468px) {
  /* author all blogs */
  #author-blogs-main-container {
    width: 95%;
    grid-template-columns: 1fr 1fr;
  }
  /* Author details section on left*/

  .author-details-position {
    font-size: 2.7vw;
  }
  .author-details-name {
    font-size: 5.5vw;
  }
  .wrapped {
    max-height: 100px !important;
  }
  .author-details-about>p {
    font-size: 2.4vw;
  }
  .author-details-showmore {
    font-size: 2.7vw;
  }
  .author-details-linkedin {
    width: 18px !important;
    font-size: 9px;
  }
  /* Author blogs section on right */
  .author-blogs-card {
    grid-template-rows: 27vw;
    padding: 9px;
  }
  .author-blogs-heading {
    font-size: 2.2vw;
  }
  .author-blogs-description {
    font-size: 1.7vw;
  }
  .author-blogs-readmore {
    font-size: 1.7vw;
    font-weight: 300;
  }
  .author-blogs-card-container {
    grid-template-columns: 1fr;
  }
  /* Pagination */
  .author-blogs-pagination-container #pagination-dataset>button {
    width: 15px;
    font-size: 2.4vw;
    height: 15px;
    margin: 0;
}
.author-blogs-pagination-container #pagination-dataset .pagination-next,.author-blogs-pagination-container #pagination-dataset .pagination-previous  {
    width: 15px;
    height: 15px;
}

#pagination-dataset button {
    width: 30px;
    height: 40px;
}
#pagination-dataset .pagination-next, #pagination-dataset .pagination-previous {
    width: 50px;
    height: 40px;
}
#pagination-container{
    width: 100%;
}
#pagination-dataset {
    justify-content: space-evenly;
    gap: 0;
    flex-wrap: wrap;
}
.hero-image img {
    max-width: 400px;
}
.promo-heading{
    font-size: 24px !important;
    line-height: 28px !important;
}
.promo-description{
    font-size: 16px;
    line-height: 28px;
}
.milestone-title{
    font-size: 24px !important;
    line-height: 22px;
}
.milestone-subtitle{
    font-size: 16px;
    line-height: 28px;
}
.features-sec.features-sec-rms h2{
    font-size: 24px;
    line-height: 32px;
}
.faq-container{
    font-size:24px;
    line-height: 32px;
}
.faq-container h2{
    font-size: 24px;
    line-height: 32px;
}
.faq-container h2{
    font-size: 24px;
    line-height: 32px;
}
.gradient-text, .plain-text {
    font-size:24px !important;
    line-height: 24px !important;
}
.new-small-feature-section h2{
    font-size: 24px !important;
    line-height: 24px !important;
}

}
/*
Try now button
*/
a.try-now-button{
    background: linear-gradient(to right,#049BF5 -10%, #195AAE 90%);
    color: #fff;
    padding: 6px 20px;
    border-radius: 22px;
    -webkit-border-radius: 22px;
    -moz-border-radius: 22px;
    width: 120px;
}
a.try-now-button:hover {
	color: #fff;
	background: linear-gradient(to right,#049BF5 -10%, #195AAE 90%);
}

/* Blog Index */
.blog-left-section{
    position: sticky;
    top: 150px;
    border: 0.67px solid rgba(229, 231, 235, 1);
    border-radius: 16px;
    padding: 25px;
    background-color:#F9FAFB;
    max-width: 370px;
}
.blog-right-section{
    position: relative; 
}
.blog-index-title{
    color: #2F3941;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
}
.blog-nav li{
    list-style-type: none;
}
.blog-nav li a{
    display: block;
    margin-top: 25px;
}
.blog-left-section div{
    font-size: 13px;
}
.blog-nav a.d-flex {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    color: #000;
    text-decoration: none;
    padding-bottom: 10px;
}

.blog-nav .text-content {
    margin-right: 10px;
    font-size: 15px;
    position: relative;
    color: #000;
    transition: font-size 0.3s, color 0.3s, border-bottom 0.3s;
    width: 100%;
}

.blog-nav a.d-flex::before,
.blog-nav a.d-flex:hover::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
}

.blog-nav a.d-flex{
    transition: all .2s ;
}
.blog-nav a.d-flex:hover {
    transform: scale(1.08);
}
@media screen and (max-width:768px) {
    .blog-left-section>.blog-nav{
        max-height: calc(95vh - 215.6px);
        overflow-y:scroll;
        overflow-x:hidden;
        margin: auto;
        scrollbar-width: thin; /* Options: auto, thin, none */
        scrollbar-color: #dedede transparent; /* Thumb color | Track color */
    }
    .blog-nav>li{
        width: 90%;
        margin: auto;
    }
    .blog-left-section>span{
        padding-left: 5%;
        display: block;
    }
    .blog-left-section>.blog-nav::-webkit-scrollbar {
        width: 8px;
    }
    .blog-left-section>.blog-nav::-webkit-scrollbar-track {
        background: transparent;
    }
    .blog-left-section>.blog-nav::-webkit-scrollbar-thumb {
        background-color: #dedede;
        border-radius: 10px;
    }
    .blog-left-section li:last-child{
        padding-bottom: 15px;
    }
    .inner-title-intro-container>p{
        max-width: 720px;
    }
}
@media (max-width: 992px) {
    .inner-title-intro-container>p{
        max-width: 960px;
    }
}
@media (max-width: 1200px){
    .single-blog-section .container {
        max-width: 940px;
    }
    .inner-title-intro-container>p{
        max-width: 1140px;
    }
}
@media screen and (max-width:1392px) {
    .blog-left-section>.blog-nav{
        max-height: calc(95vh - 182.8px);
    }
    #pricing-container .text-center{
        right: 5%;
    }
}

@media (max-width: 1800px){
    .single-blog-section .container {
        max-width: 1200px;
    }
}



/* Blog Table */
.blog-table{
    width: 100% !important;
    color: #26292D; 
    border-collapse: collapse; 
    margin-bottom: 10px;
}
.blog-table tbody tr th,td{
    border: 1px solid #26292D;
    border: 1px solid #26292D;
}
.blog-table-center{
    text-align: center;
}
.blog-table-padd tbody tr th, td{
    padding: 5px;
}


/*  */
.trial-processing > div > .btn > .fa-loader{
    display: inline-block;
    margin-right: 3px;
}
.trial-processing > div > .btn{
    opacity: 0.6;
    cursor: not-allowed;
}
.trial-processing > div > input{
    pointer-events: none;
}
.trial-err .trial-request-err{
    display: block !important;
}
.trial-err > div > input{
    border: 1px solid crimson !important;
}
/* Home Trial Request */
.quick-trial{
    min-width: 370px;
}
.quick-trial > div > input{
    border-right: 0;
    width: 260px;
    padding-right: 20px;
    border-radius: 10px 0px 0px 10px;
    height: 48px;
}
.quick-trial > div > button {
    padding: 0;
    border-radius: 0px 10px 10px 0px;
    font-size: 16px;
    width: 110px;
    outline: none;
    font-weight: 700;
    text-decoration: none;
    font-family: var(--primary-font-family);
}
.quick-trial > div > button > .fa-loader {
    display: none;
}
.quick-err{
    display: none;
    font-size: 10px;
    margin: 1px 0 0 0;
    width: 336px;
    border-radius: 6px;
    color: crimson;
}
.quick-toast{
    display: none;
    width:336px; 
    margin-top:7px; 
    background-color: rgb(34, 126, 34); 
    font-size:13px; 
    color: #fff; 
}
.quick-trial-span{
    margin-left: -17px !important;
    width: 251px;
}
.quick-trial-span-icon{
    height: 9.5px; 
    width: 9.5px; 
    padding-top: 9px; 
    margin:0 3px 0 20px !important; 
    color: rgb(34, 126, 34);
}
.quick-trial-span p{
    font-size: 10px; 
    font-weight: bold;
}

/* Newsletter Trail Request */
.newsletter-trial > .div{
    margin: auto; 
    position: relative;
    justify-content: center;
    align-items: center;
}
.newsletter-trial > div > input{
    border-right: 0;
    width: 260px;
    padding-right: 20px;
    border-radius: 10px 0px 0px 10px;
    height: 48px;
}
.newsletter-trial > div > button {
    padding: 0;
    border-radius: 0px 10px 10px 0px;
    font-size: 16px;
    width: 110px;
    outline: none;
    font-weight: 700;
    text-decoration: none;
    font-family: var(--primary-font-family);
}
.newsletter-trial > div > button > .fa-loader {
    display: none;
}
.newsletter-err{
    display: none;
    text-align: left;
    font-size: 10px;
    margin: auto;
    width: 360px;
    border-radius: 6px;
    color: crimson;
}
.newsletter-toast{
    display: none;
    width:336px; 
    margin: 7px 372px;
    background-color: rgb(34, 126, 34); 
    font-size:13px; 
    color: #fff; 
    margin-top: 7px;
}
.newsletter-trial-span p{
    font-size: 10px; 
    font-weight: bold;
}
.newsletter-trial-span{
    margin-left: 355px;
    display: flex;
    align-items: baseline;
    width: 251px;
}
.grecaptcha-badge{
    visibility: hidden; 
}

/* Blog Listing Search */
.blog-search-container {
    position: relative;
}

.blog-search-container > input {
    padding-left: 58px;
    border-radius: 12px;
    width: 564px;
    border: 1px solid rgba(229, 231, 235, 1);
    height: 48px;
    box-shadow: 0px 5px 24px 0px rgba(0, 0, 0, 0.1);
}

.blog-search-container > .fa-magnifying-glass {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    cursor: pointer;
    height: 28px;
}

.blog-filter-btn {
    padding: 14px 24px;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0px 5px 24px 0px rgba(0, 0, 0, 0.1);
    color: #26292D;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    font-family: inherit;
}

.blog-filter-btn:hover {
    border-color: rgba(28, 121, 212, 0.5);
    transform: translateY(-1px);
}

.blog-filter-btn.active {
    background: #1C79D4;
    color: #ffffff;
    border-color: #1C79D4;
    font-weight: 500;
    box-shadow: 0px 10px 15px -3px rgba(28, 121, 212, 0.4);
}

.blog-filter-btn.active:hover {
    background: #1C79D4;
    border-color: #1C79D4;
}

/* Blog Author Bio */
.author-bio {
    padding: 20px;
    width: 100%;
    background: #FBFBFB;
    border-top: 1px #C7C7C7 solid;
    border-bottom: 1px #C7C7C7 solid;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: inline-flex;
}

.author-bio .author-profile {
    justify-content: flex-start;
    align-items: center;
    gap: 36px;
    display: inline-flex;
    padding-bottom: 5px;
    padding-top: 5px;
}

.author-bio .profile-image {
    width: 250.21px;
    height: 251.99px;
    position: relative;
}

.author-bio .profile-pic {
    width: 234.12px;
    height: 234.12px;
    position: absolute;
    left: 8.94px;
    top: 8.94px;
    border-radius: 9999px;
}

.author-bio .image-overlay {
    width: 250.21px;
    height: 251.99px;
    position: absolute;
    border-radius: 9999px;
    border: 1px black solid;
}

.author-bio .profile-details {
    padding-left: 30px;
    padding-right: 30px;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 6px;
    display: inline-flex;
}

.author-bio .profile-name {
    width: 100%;
    position: relative;
    color: black;
    font-size: 36px;
    font-family: Poppins;
    font-weight: 700;
    word-wrap: break-word;
    transition: .3s ease-in-out;
}

.author-bio .profile-name:hover{
  cursor: pointer;
  color: #2684FF;
}

.author-bio .profile-role {
    width: 100%;
    color: #959595;
    font-size: 16px;
    font-family: Poppins;
    font-weight: 400;
    word-wrap: break-word;
}

.author-bio .profile-description {
    max-width: 872px;
    color: #959595;
    font-size: 15px;
    font-family: Poppins;
    font-weight: 400;
    word-wrap: break-word;
}

.author-bio .social-icon,
.author-details-container .social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  aspect-ratio: 1/1;
  background: #000000;
  border-radius: 50%;
  transition: .3s;
}

.author-bio .social-icon svg,
.author-details-container .social-icon svg{
  color: white;
}

.author-bio .social-icon:hover,
.author-details-container .social-icon:hover {
  background:var(--primary-color);
  cursor: pointer;
}
@media only screen and (max-width:425px){
  .quick-trial{
    min-width: 290px;
  }
  .quick-trial>div>input,
  .newsletter-trial > div > input{
    width: 210px;
    height: 40px;
    font-size: 13px;
  }
  .quick-trial>div>button,
    .newsletter-trial > div > button{
    width: 80px;
    font-size: 13px;
    height: 40px;
    line-height: 40px;
  }
  #pagination-dataset {
    padding: 0.8rem 0.2rem;
    flex-wrap: wrap;
  }
}
.intial-state #toast-response{
    display: none;
}
.error-state #toast-response{
    display: block;
}
.error-state input {
    border: 1px solid crimson !important;
}
.toast{
    padding: 10px;
    margin-top: 15px;
    border-radius: 6px;
    box-shadow: 2px 2px 9px rgba(0,0,0,0.2);
    z-index: 1000;
}
@media (max-width:992px) and (max-width:1100px) {
    #pricing-container .text-center{
        right:3% !important;
    }
}
@media screen and (max-width: 891px) {
    .sub-selection {
        padding-top: 8rem;
    }
    #pricing-container .text-center {
        right: 43% !important;
        top: 55px !important;
    }
  
}
@media screen and (max-width:767px) {
    #myForm{
        flex: none !important;
        max-width: 100% !important;
    }
    .stats-list{
        flex-wrap: wrap;
    }
}

/* Why choose us */
.why-choose-us {
    background: #fff;
    padding: 60px 0;
}
.why-choose-us .features-content div {
    gap: 16px;
}

.why-choose-us .features-content div span {
    padding-top: 10px;
}
.why-choose-us .features-content div i, .why-choose-us .features-content div img {
    width: 20px;
    height: 20px;
    max-width: 20px;
}

.promo-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  gap: 20px;
  margin-top: 20px;
  margin-bottom: 100px;
  padding: 0px 35px;
}

.text-content-block {
  max-width: 520px;
}

.promo-heading {
  font-size: 48px; 
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a1a;
  padding-top:15px
}

.highlighted-word {
  color: #1255cc;
}

.promo-description {
  margin: 20px 0;
  font-size: 16px;
  color: #262727;   
  line-height: 1.6;
  margin-bottom: 30px;
}

.cta-button-group {
  margin-top: 40px;
}

.btn-start-trial {
  background: linear-gradient(to right,#049BF5 -10%, #195AAE 90%);
  color: #ffffff;
  border: none;
  border-radius: 6px;
  padding: 10px 20px;
  font-size: 14px;
  font-family: 'Segoe UI', sans-serif;
  cursor: pointer;
  margin-right: 10px;
  display: inline-block;
  text-decoration: none;
  text-align: center;
}

.btn-start-trial:hover {
	color: #fff;
	background: rgb(48,137,209);
}

.faq-submit-btn:hover {
	background: rgb(48,137,209) !important;
}

.btn-schedule-demo {
  background-color: transparent;
  color: #333333;
  border: 1px solid #26292D;
  border-radius: 6px;
  padding: 10px 18px;
  font-size: 13px;
  font-family: 'Segoe UI', sans-serif;
  cursor: pointer;
  transition: background-color 0.3s ease
}

.btn-schedule-demo:hover {
  background-color: #000000;
  color: #fff
}

.image-preview-container {
  flex: 1 1 500px;
  display: flex;
  justify-content: center;
  text-align: center;
  margin-top: 20px;
}

.milestone-section {
  position: relative;
  text-align: center;
  padding: 0px 20px;
  padding-top: 100px;
  padding-bottom: 60px;
  overflow: hidden;
  font-size: 14px;
}

.milestone-grey {
  background-color: #F8F9FB;
}

.milestone-white {
  background-color: #ffffff;
}

.milestone-title {
  font-size: 42px;
  font-weight: 400;
  color: #222222;
  margin-bottom: 30px;
  text-align: center;
}

.milestone-subtitle {
  font-size: 18px;
  color: #26292D;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
  line-height: 30.4px;
  text-align: center;
  font-weight: 400;
}

.milestone-image-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.milestone-image {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

/*blue cta banner*/
.cta-gradient-section {
  background: linear-gradient(rgba(6, 28, 94, 1));
  background: rgba(6, 28, 94, 1);
  color: #ffffff;
  padding: 50px 20px;
  text-align: center;
}

.cta-text-block {
  max-width: fit-content;
  margin: 0 auto;
  position: relative;
}

.cta-heading {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 62px;
  margin: 0 0 15px;
  font-family: 'Inter', sans-serif;
  text-align: center;
}

.cta-subheading {
  font-size: 18px;
  font-weight: 400;
  color: #d0d0d0;
  margin-bottom: 24px;
  text-align: center;
}

.cta-benefits {
  font-size: 20px;
  color: #42DAD1;
  font-weight: 500;
  margin-bottom: 30px;
}

.cta-form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.cta-input {
  padding: 12px 16px;
  width: 250px;
  font-size: 14px;
  border: none;
  border-radius: 6px 0 0 6px;
  outline: none;
}

.cta-button {
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  background-color: #3399ff;
  color: white;
  border: none;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
  transition: background 0.2s ease-in-out;
}

.cta-button:hover {
  background-color: #0077e6;
}

/*bluw to black gradient text*/
.gradient-text {
  line-height: 60px;
  font-size: 42px;
  background: linear-gradient(90deg,rgba(4, 155, 245, 1) 0%, rgba(25, 90, 174, 1) 50%, rgba(38, 49, 122, 1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.gradient-color{
  background: linear-gradient(90deg,rgba(4, 155, 245, 1) 0%, rgba(25, 90, 174, 1) 50%, rgba(38, 49, 122, 1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.plain-text {
  line-height: 60px;
  color: #26292D;
  font-family: 'Inter', sans-serif !important;
  font-size: 42px;
}

.new-small-feature-wrapper {
  --new-feature-bg: #F8F9FB;
  --new-feature-card-bg: #F8F9FB    ;
  --new-feature-muted: #26292D;
  --new-feature-text: #26292D;
  --new-feature-shadow: 0 10px 20px rgba(50, 50, 93, 0.25);
  --new-feature-shadow-strong: 0 10px 20px rgba(16,24,40,0.12);
  --new-feature-space-xxl: 150px;
  --new-feature-space-xl: 40px;
  --new-feature-space-lg: 28px;
  --new-feature-card-radius: 5px;
  --new-feature-card-padding: 30px;
  --new-feature-max-card-width: 500px;
}

.new-small-feature-section {
  padding-bottom: var(--new-feature-space-xxl);
  padding-top: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--new-feature-space-xl);
  background: var(--new-feature-bg);
}

.new-small-feature-heading {
  margin: 0;
  font-size: 42px;
  font-weight: 500;
  text-align: center;
  color: var(--new-feature-text);
  line-height: 1.15;
  padding-bottom: 50px;
}

.new-small-feature-grid {
  display: flex;
  gap: clamp(20px, 4vw, 36px);
  justify-items: center;
}

.new-small-feature-grid div{
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.new-small-feature-card {
  width: 100%;
  max-width: var(--new-feature-max-card-width);
  background: white;
  border-radius: var(--new-feature-card-radius);
  box-shadow: var(--new-feature-shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 5px solid white;
}

.new-small-feature-card-media,
.new-small-feature-card-body {
  transition: transform 0.4s ease;
  position: relative;
  z-index: 1;
}

.new-small-feature-card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background:#F8F9FB;
}

.new-small-feature-grid div:nth-child(1) .new-small-feature-card:nth-child(1) .new-small-feature-card-media {
  padding: 25px 20px 0px 20px;
}

.new-small-feature-grid div:nth-child(1) .new-small-feature-card:nth-child(1)  .new-small-feature-card-media::before {
background: linear-gradient(69.56deg, rgba(161, 196, 253, 0.4) 7.97%, rgba(214, 225, 251, 0.4) 92.35%);
}

.new-small-feature-grid div:nth-child(1) .new-small-feature-card:nth-child(2) .new-small-feature-card-media {
  padding: 20px 55px 0px 55px;
}

.new-small-feature-grid div:nth-child(1) .new-small-feature-card:nth-child(2) .new-small-feature-card-media::before {
  background: linear-gradient(69.72deg, rgba(117, 127, 251, 0.04) 3.71%, rgba(246, 219, 248, 0.53) 89.1%);


}

 .new-small-feature-grid div:nth-child(2) .new-small-feature-card:nth-child(1) .new-small-feature-card-media {
  padding: 70px 0px 10px 40px;
}

 .new-small-feature-grid div:nth-child(2) .new-small-feature-card:nth-child(1) .new-small-feature-card-media::before {
  background: linear-gradient(83.62deg, rgba(255, 232, 249, 0.72) 10.95%, #E1F3E8 95.82%);

}

 .new-small-feature-grid div:nth-child(2) .new-small-feature-card:nth-child(2) .new-small-feature-card-media {
  padding: 15px 0px 0px 0px;
}

 .new-small-feature-grid div:nth-child(2) .new-small-feature-card:nth-child(2) .new-small-feature-card-media::before {
  background: linear-gradient(69.72deg, #F5DCDC 3.71%, #DCEEFF 89.1%);

}

.new-small-feature-card-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(227,242,253,0.8) 0%, rgba(255,224,224,0.8) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.new-small-feature-card-media .media-inner {
  position: relative;
  z-index: 1;
}

.new-small-feature-card img {
  width: 100%;
  height: 100%;
  object-position: bottom right;
}

.new-small-feature-card-body {
  padding: var(--new-feature-card-padding);
  background: #FFFFFF;
}

.new-small-feature-card-title {
  margin: 0 0 -20px;
  font-size: 25px;
  font-weight: 500;
  color: var(--new-feature-text);
}

.new-small-feature-card-desc {
  margin: 0;
  font-size: 16px;
  color: var(--new-feature-muted);
}

/* Hover effect */
.new-small-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.new-small-feature-card:hover .new-small-feature-card-media::before {
  opacity: 1;
}

.new-small-feature-card:hover .new-small-feature-card-media,
.new-small-feature-card:hover .new-small-feature-card-body {
  transform: translateY(-8px);
}

@media (max-width: 768px) {
  .new-small-feature-grid {
    grid-template-columns: 1fr;
    gap: var(--new-feature-space-lg);
  }
}

.new-small-feature-wrapper--reports {
  --new-feature-bg: #F8F9FB;
  --new-feature-card-bg: #F8F9FB    ;
  --new-feature-muted: #26292D;
  --new-feature-text: #26292D;
  --new-feature-shadow: 0 18px 36px -18px rgba(0, 0, 0, 0.10), 0 30px 45px -30px rgba(50, 50, 93, 0.25);
  --new-feature-shadow-strong: 0 0 0 rgba(16,24,40,0.12);
  --new-feature-space-xxl: 150px;
  --new-feature-space-xl: 40px;
  --new-feature-space-lg: 28px;
  --new-feature-card-radius: 5px;
  --new-feature-card-padding: 30px;
  --new-feature-max-card-width: 500px;
}

.new-small-feature-section--reports {
  padding-bottom: var(--new-feature-space-xxl);
  padding-top: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--new-feature-space-xl);
  background: var(--new-feature-bg);
}

.new-small-feature-heading--reports {
  margin-top: -10px;
  margin-bottom: -28px;
  font-size: 42px;
  font-weight: normal;
  text-align: center;
  color: var(--new-feature-text);
  line-height: 1.15;
 
}
.new-small-feature-subheading--reports{   
font-weight: 200;
font-size: 26px;
line-height: 60px;
color:black;
text-align: center;
vertical-align: middle;
}
.new-small-feature-grid--reports {
  display: flex;
  gap: clamp(20px, 4vw, 36px);
  justify-items: center;
}

.new-small-feature-grid--reports div{
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.new-small-feature-card--reports {
  width: 100%;
  max-width: var(--new-feature-max-card-width);
  max-height: 530px;
  background: white;
  border-radius: var(--new-feature-card-radius);
  box-shadow: var(--new-feature-shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 5px solid white;
}

.new-small-feature-card-media--reports,
.new-small-feature-card-body--reports {
  transition: transform 0.4s ease;
  position: relative;
  z-index: 1;
}

.new-small-feature-card-media--reports {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background:#F8F9FB;
}

.new-small-feature-grid--reports div:nth-child(1) .new-small-feature-card--reports:nth-child(1) .new-small-feature-card-media--reports {
  padding: 29px 34px 20px 42px;
}

.new-small-feature-grid--reports div:nth-child(1) .new-small-feature-card--reports:nth-child(1)  .new-small-feature-card-media--reports::before {
  background: linear-gradient(69.56deg, rgba(161, 196, 253, 0.4) 7.97%, rgba(214, 225, 251, 0.4) 92.35%);
}
.new-small-feature-grid--reports div:nth-child(1) .new-small-feature-card--reports:nth-child(2) .new-small-feature-card-media--reports {
  padding: 19px 45px 11px 40px;
}

.new-small-feature-grid--reports div:nth-child(1) .new-small-feature-card--reports:nth-child(2) .new-small-feature-card-media--reports::before {
 background: linear-gradient(69.72deg, rgba(117, 127, 251, 0.04) 3.71%, rgba(246, 219, 248, 0.53) 89.1%);

}

.new-small-feature-grid--reports div:nth-child(1) .new-small-feature-card--reports:nth-child(3) .new-small-feature-card-media--reports {
  padding:18px 45px 4px 49px;

}

.new-small-feature-grid--reports div:nth-child(1) .new-small-feature-card--reports:nth-child(3) .new-small-feature-card-media--reports::before {
  background: linear-gradient(73.8deg, rgba(250, 208, 196, 0.3) -7.21%, rgba(255, 209, 255, 0.3) 80.47%);

}

 .new-small-feature-grid--reports div:nth-child(2) .new-small-feature-card--reports:nth-child(1) .new-small-feature-card-media--reports {
  padding: 15px 55px 0px 55px;

}

 .new-small-feature-grid--reports div:nth-child(2) .new-small-feature-card--reports:nth-child(1) .new-small-feature-card-media--reports::before {
  background:linear-gradient(108.15deg, #D6E1FB -39.25%, rgba(255, 232, 249, 0.72) 103%);
}

 .new-small-feature-grid--reports div:nth-child(2) .new-small-feature-card--reports:nth-child(2) .new-small-feature-card-media--reports {
  padding: 28px 15px 7px 1px;
}

 .new-small-feature-grid--reports div:nth-child(2) .new-small-feature-card--reports:nth-child(2) .new-small-feature-card-media--reports::before {
background: linear-gradient(135deg, rgba(227,242,253,0.8) 0%, rgba(255,224,224,0.8) 100%);
}

.new-small-feature-grid--reports div:nth-child(2) .new-small-feature-card--reports:nth-child(3) .new-small-feature-card-media--reports {
  padding: 0px 23px 10px 26px
}

.new-small-feature-grid--reports div:nth-child(2) .new-small-feature-card--reports:nth-child(3) .new-small-feature-card-media--reports::before {
background: linear-gradient(63.65deg, rgba(161, 140, 209, 0.3) 3.61%, rgba(251, 194, 235, 0.21) 64.3%);                                       
}

.new-small-feature-card-media--reports::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(227,242,253,0.8) 0%, rgba(255,224,224,0.8) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.new-small-feature-card-media--reports .media-inner--reports {
  position: relative;
  z-index: 1;
}

.new-small-feature-card--reports img {
  width: 100%;
  height: 100%;
  object-position: bottom right;
}

.new-small-feature-card-body--reports {
  padding: var(--new-feature-card-padding);
  background: #FFFFFF;
}

.new-small-feature-card-title--reports {
  margin: 0 0 -20px;
  font-size: 25px;
  font-weight: 500;
  color: var(--new-feature-text);
}

.new-small-feature-card-desc--reports {
  margin: 0;
  font-size: 16px;
  color: var(--new-feature-muted);
}

/* Hover effect */
.new-small-feature-card--reports:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.new-small-feature-card--reports:hover .new-small-feature-card-media--reports::before {
  opacity: 1;
}

.new-small-feature-card--reports:hover .new-small-feature-card-media--reports,
.new-small-feature-card--reports:hover .new-small-feature-card-body--reports {
  transform: translateY(-8px);
}

@media (max-width: 768px) {
  .new-small-feature-grid--reports {
    grid-template-columns: 1fr;
    gap: var(--new-feature-space-lg);
  }
}


.explore-feature-section {
  color: #2c2c2c;
  padding: 70px 20px 30px;
  text-align: center;
}

.explore-feature-section h2{
    font-family: Inter;
    font-weight: 600;
    font-style: Bold;
    font-size: 42px;
    line-height: 60px;
    letter-spacing: 0%;
    color: #000000;
    vertical-align: middle;
    text-align: center;
    padding-bottom: 20px;
}

.explore-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 40px;
}

.explore-feature-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  height: 450px;
  width: auto;
}

.explore-feature-card-container{
    max-width: 1400px;
    margin: 0 auto;
}

.explore-feature-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom-left-radius: 20px;
}

.explore-feature-body {
  padding: 20px;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  background-color: rgba(249, 249, 249, 1);
}

.explore-feature-body h5 {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 10px;
  color: #111;
}

.explore-feature-body p {
  font-size: 0.95rem;
  color: #26292D;
  flex-grow: 1;
  line-height: 22px;
}

/* ==== Custom Read More Button ==== */
.new-read-more-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  color: #000;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
  margin-top: 15px;
  padding-left: 10px;
  align-self: flex-start;
}

.new-read-more-btn .new-circle {
  width: 30px;
  height: 30px;
  background-color: #1e88e5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  transition: transform 0.5s ease;
  flex-shrink: 0;
}

.new-read-more-btn .new-circle svg {
  stroke: #fff;
  stroke-width: 1.5;
  width: 30px;
  height: 30px;
  transition: transform 0.4s ease;
}

.new-read-more-btn .new-text {
  position: relative;
  z-index: 3;
  transition: color 0.5s linear(0.51 43.06%, 1.25 96.29%);
  font-size: 18px;
}

.new-read-more-btn::before {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%) scale(0);
  width: 200%;
  height: 200%;
  background-color: #1e88e5;
  border-radius: 50%;
  z-index: 1;
  transition: transform 0.5s ease, left 0.5s ease;
}

.new-read-more-btn:hover::before {
  left: 50%;
  transform: translateX(-50%) translateY(-50%) scale(1.2);
}

.new-read-more-btn:hover .new-text {
  color: #fff;
  transition: transform 0.5s ease, left 0.5s ease;
  transform: translateX(6px);
}

.new-read-more-btn:hover svg {
  transform: translateX(2px);
}

/*bouncing animation*/
.integration-container {
    position: relative;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: center;
    width: 900px;
    height: 500px;
}

.integration-image {
    position: absolute;
    width: auto;
    height: auto;
}

.integration-image-top {
    position: absolute;
    z-index: 2;
    animation: bounceIntegrationUp 2s ease-in-out infinite alternate;
}

.integration-image-bottom {
    position: absolute;
    z-index: 1;
    animation: bounceIntegrationDown 2s ease-in-out infinite alternate;
}

@keyframes bounceIntegrationUp {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-15px);
    }
}
@keyframes bounceIntegrationDown {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(20px);
    }
}

.cta-sec {
  position: relative;
  background-color: transparent;
  padding: 80px 0;
  overflow: hidden;
}

.cta-clip-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}


/* Arcs */
.left-arc,
.right-arc {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: conic-gradient(
    from 135deg,
    rgba(28, 121, 212, 0) 45%,
    #1C79D4 68%
  );
  mask: radial-gradient(farthest-side, transparent calc(100% - 60px), black calc(100% - 59px));
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 60px), black calc(100% - 59px));
  filter: blur(4px);
  opacity: 0.7;
  z-index: 1;
}

.right-arc {
  top: 60px;
  right: -100px;
}

.left-arc {
  bottom: 60px;
  left: -100px;
  transform: rotate(180deg);
}

/* CTA Content */
.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  color: white;
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-size: 43px;
  font-weight: 500;
  background: linear-gradient(180deg, #FFFFFF 64.61%, rgba(28, 121, 212, 0.25) 118.21%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  line-height: 46px;
}

.cta-content p {
  color: #fff;
  font-weight: 400;
  font-size: 10px;
  line-height: 16px;
  text-align: center;
}

.cta-btn {
  display: inline-block;
  background-color: #1C79D4;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 400;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.cta-btn:hover {
  background-color: #1563b0;
  color: white;
}

.btn-start-trial-blue {
  background: #1C79D4;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  padding: 10px 20px;
  font-size: 14px;
  cursor: pointer;
  margin-right: 10px;
}

.btn-start-trial-blue:hover {
	color: #fff;                                         
	background: rgb(48,137,209);
}

/* Scoped style of #not-so-basic-container */
#not-so-basic-container {
  background-color: #fff;
  font-family: 'Inter', sans-serif;
  padding: 8px;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

#not-so-basic-container::before {
  content: "";
  position: absolute;
  top: 200px;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    url("/assets/images/resource-scheduling-software/horizontal-line.svg") no-repeat center center,
    url("/assets/images/resource-scheduling-software/vertical-line.svg") no-repeat center center;
  opacity: 1;
  z-index: 0;
}

#not-so-basic-container h2,
#not-so-basic-container .feature-pill {
  position: relative;
  z-index: 1;
}

#not-so-basic-container h2 {
  font-weight: bold;
  text-align: center;
  padding-top: 100px;
  padding-bottom: 60px;
  font-weight: 500;
}

#not-so-basic-container .feature-pill {
  display: inline-block;
  padding: 15px 22px;
  border-radius: 50px;
  color: #fff;
  font-size: 18px;
  box-shadow: 0 8px 8px rgba(0, 0, 0, 0.15);
  margin: 20px;
  text-align: center;
  white-space: nowrap;
}

/* Colors */
#not-so-basic-container .purple { background-color: #AB47BC; }
#not-so-basic-container .green { background-color: #66bb6a; }
#not-so-basic-container .orange { background-color: #ff7043; }
#not-so-basic-container .teal { background-color: #26a69a; }
#not-so-basic-container .lavender { background-color: #8C9EFF; }
#not-so-basic-container .yellow { background-color: #FFAB00; }
#not-so-basic-container .blue { background-color: #03A9F4; }
#not-so-basic-container .maroon { background-color: #880E4F; }
#not-so-basic-container .pink { background-color: #FF8A80; }


.content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  flex-wrap: wrap;
}

.text-side {
  flex: 1 1 500px;
}

/* Request Cards Section */
.request-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.request-card {
  display: flex;
  align-items: flex-start;
  background: #ffffff;
  padding: 16px 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  gap: 16px;
}

.request-card .icon {
  font-size: 24px;
}

.request-card .text h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.request-card .text p {
  font-size: 14px;
  color: #6b7280;
}

.image-side {
  text-align: center;
}

.image-side img {
  width: 100%;
  max-width: 500px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.simply-request-section {
  padding: 70px 20px;
  text-align: center;
  font-size: 14px;
}

.simply-request-white {
  background-color: #F8F9FB;
}

.simply-request-title {
  font-size: 42px;
  font-weight: 400;
  color: #333333;
  margin-bottom: 20px;
  line-height: 60px;
}

.simply-request-subtitle {
  font-size: 18px;
  color: #26292D;
  max-width: 750px;
  margin: 0 auto 50px;
  line-height: 28px;
  text-align: center;
}

.simply-request-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
  justify-content: center;
  max-width: 1450px;
  margin: 0 auto;
}

.simply-request-features {
  flex: 1 1 33.333%;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.simply-request-feature-card {
  display: flex;
  gap: 15px;
  padding: 15px;
  border-radius: 12px;
  text-align: left;
  align-items: flex-start;
}

.simply-request-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.simply-request-feature-title {
  font-size: 20px;
  font-weight: 600;
  color: #26292D;
  margin-bottom: 6px;
}

.simply-request-feature-text {
  font-size: 14px;
  color: #26292D;
  line-height: 1.5;
}

.simply-request-video-wrapper {
    width: 970px;
    height: 550px;
    overflow: hidden
}

.simply-request-video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

/* Responsive */
@media (max-width: 992px) {
  .simply-request-content {
    flex-direction: column;
    align-items: center;
  }
  
  .simply-request-features,
  .simply-request-video-wrapper {
    max-width: 100%;
  }
}

.trust-cards-container {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  padding-top: 60px;
  padding-bottom: 60px
}

.trust-card-img {
  max-width: 300px;
  height: auto;
  transform: rotate(-3deg)
}

.trust-line {
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.line1 {
  top: 230px;
  left: 33%;
}

.line3 {
  top: 340px;
  left: 33%;
}

.trust-cards-container a:nth-child(1),
.trust-cards-container a:nth-child(3) {
  margin-top: 40px;
}

.trust-card-img {
  -webkit-animation-name: rotate;
  animation-delay: 6s;
  -webkit-animation-duration: 4s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-direction: normal;
  -webkit-transform-origin: 50% 0%;
  -webkit-animation-timing-function: linear;
}
@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(3deg);
  }
  75% {
    -webkit-transform: rotate(-3deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
  }
}
.trust-cards-container a:nth-child(1) .trust-card-img {
  animation-delay: 0s;
}

.trust-cards-container a:nth-child(2) .trust-card-img {
  animation-delay: 2s;
}

.trust-cards-container a:nth-child(3) .trust-card-img {
  animation-delay: 4s;
}

.sub-heading-reports{  
font-weight: 500;
font-size: 23px;
line-height: 60px;
vertical-align: middle;
color:black;
}

.sub-heading-reports{  
font-weight: 500;
font-size: 23px;
line-height: 60px;
vertical-align: middle;
color:black;
}

 .capacity-planning-ul {
margin: -5px 0;
padding-left: 20px;
list-style-type: disc;
}

.capacity-planning-ul li {
margin-bottom: 5px;   
font-size: 15px;
line-height: 25px;
vertical-align: middle;
color:#26292D;
}

.main-menu-card-container {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  gap: 60px;
  max-width: 600px;
  margin: 0 auto;
}

.main-menu-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
  flex: 1;
}

.main-menu-feature {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
  cursor: pointer;
}

.main-menu-feature:hover {
  transform: translateX(4px);
}

.main-menu-icon-box {
  width: 52px;
  height: 52px;
  background: #f2f6ff;
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  transition: background 0.2s ease;
  box-shadow: 0 4px 20px 0 rgba(23, 15, 73, 0.08);
}

.main-menu-icon-box img {
  display: block;
  width: 100%;
}

.main-menu-text {
  display: flex;
  flex-direction: column;
}

.main-menu-text p {
  font-size: 12px;
  line-height: 20px;
  color: #6b7280;
  margin: 4px 0 0;
} 

.header-subtitle {
    font-size: 15px!important;
    margin: 0   !important;
    font-weight: 700;
    color: #0f172a !important;
    align-items: center ;
    gap: 6px !important;
    transition: color 0.2s ease !important;
    line-height: 22px !important;
}
.header-subtitle::after {
    content: "" ;
    font-size: 15px ;
    background: linear-gradient(90deg, rgba(4, 155, 245, 1) 0%, rgba(25, 90, 174, 1) 50%, rgba(38, 49, 122, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.main-menu-feature:hover .main-menu-blue {
    background: linear-gradient(90deg, rgba(4, 155, 245, 1) 0%, rgba(25, 90, 174, 1) 50%, rgba(38, 49, 122, 1) 100%); 
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.megamenu-item .megamenu-sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: transparent;
  box-shadow: none;
  border: none;
  width: auto;
  padding-top: 20px;
  display: block; 
  z-index: 1000;
}

.megamenu-item:hover .megamenu-sub-menu {
  display: block;
}

/* Remove old ul/li list layout */
.megamenu-sub-menu .megamenu-inner-list {
  display: block;
  padding: 0;
  margin: 0;
  list-style: none;
}

.megamenu-sub-menu .main-menu-card-container {
  display: flex;
  gap: 86px;
  background: #fff;
  padding: 38px;
  border-radius: 35px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  width: 750px;
  max-width: 90vw;
}

/* Columns fix */
.main-menu-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 38px;
}

.case-study-section>div {
    background: #061b63;
    padding-top: 140px;
}

.case-study-section>div>div {
    gap: 44px;
}

.case-study-section h1 {
    font-weight: 700;
    font-size: 42.07px;
    line-height: 60px;
    text-align: center;
    vertical-align: middle;
    margin-top: 5px;
    color: #fff;
    margin: 0;
    text-align: center
}

.case-study-section p {
    font-weight: 400;
    line-height: 33px;
    font-size: 18px;
    color: #fff;
    text-align: center;
    margin: 0;
}

.case-study-section a {
    color: #fff;
}

.case-study-section svg {
    width: 100%;
    height: 240px;
}

.case-study-section button {
    font-size: 16px;
    width: 153px;
    height: 44px;
    font-weight: 600;
}

.cs-card{
    height:860px;
    padding: 60px 25px;
}

.cs-card > div{
    height: auto;
    border-radius: 16px;
    opacity: 1;
    box-shadow: 0 18px 36px -18px rgba(0, 0, 0, 0.10), 0 30px 45px -30px rgba(50, 50, 93, 0.25);
    background: #ffffff;
    height: 100%;
}

.cs-card > div > div{
    background: #ffffff;
    padding-bottom: 52px;
    padding-top: 32px;
}
.cs-card h3, p {
    margin: 0;
}

.cs-logo-title {
    font-weight: 500 !important;
    font-size: 22px !important;
    line-height: 30px !important;
    color: rgba(38, 41, 45, 1) !important;
    text-align: justify !important;
    padding: 0  !important;
    margin:0 !important;
}

.card-info p {
    font-weight: 400;
    font-size: 14.88px;
    line-height: 22.5px;
}
.para-icon {
    width: 11px;
    height: 15px;
    margin-top:3px;
    margin-right: 15px;
}

.cs-client-logos{
  max-width: 80px;
  margin-bottom: 1rem;
}

.cs-right-heading{
  font-weight: 600;   
  font-size: 20px;    
  line-height: 30px; 
}

.cs-page-features li {
  margin-left: 1.2rem;
  position: relative;
}

.cs-page-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}

.cs-right-section{
  width: 360px;
  position: absolute;
}

.cs-right-section p{
    margin: 15px 0;
}

.cs-right-content li{
    margin: 15px 0;
}

.cs-heading{
    font-weight: 600;
    font-size: 42px;
    line-height: 60px;
}

.cs-blog-section {
    padding-top: 70px;
    padding-bottom: 100px;
    border-bottom: 1px solid #e4e4e4;
}

.cs-blog-section .container {
    max-width: 810px;
    padding-left: 15px !important;
}

.cs-blog-section h1 {
    font-weight: 600;
    font-size: 42px;
    line-height: 60px;
    margin-bottom: 50px;
}

.cs-blog-section h2{
    margin-top: 50px;
    color:black;
    font-weight: 500;
    font-size: 39px;
    line-height: 60px;
}

.cs-blog-section .entry-image{
    margin-top:30px;
    margin-bottom: 30px;
}

.cs-blog-section p {
    font-size: 18px;
    margin-bottom: 15px;
	color: #26292D;
}

.cs-blog-section h4, .cs-blog-section h3, .cs-blog-section h5, .cs-blog-section h6 {
    color: #26292D;
    font-weight: bold;
    margin-bottom: 15px;
    margin-top: 30px;
}
.cs-blog-section h3 {
    font-size: 22px;
}
.cs-blog-section h4 {
    font-size: 20px;
}
.cs-blog-section ul li, .cs-blog-section ol li {
    margin-bottom: 15px;
    color: #26292D;
    font-weight: 400;
    line-height: 28px;
}
.cs-blog-section ul li {
    list-style: none;
    position: relative;
    padding-left: 26px;
    font-size:18px;
}
.cs-blog-section .container ul li:before {
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    background: #26292D;
    border-radius: 100%;
    left: 10px;
    top: 10px;
}
.cs-blog-section ol {
  list-style-type: none;
}
.cs-blog-section ol > li {
    list-style: none;
    position: relative;
    padding-left: 26px;
}
.cs-blog-section ol > li::marker {
    content: counter(list-item) '. ';
    position: absolute;
    left: 0;
    top: 0;
}

.cs-right-subheading{
    font-weight: 600;
}

.cs-right-content ul > li {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: row;
}

.cs-right-content ul > li > img{
    padding-bottom: 25px;
    padding-right: 10px;
}
.home-team-sec {
  position: relative;
  background: #f7f7f9;
  overflow: hidden;
}

.home-team-sec-top-curve {
  width: 100%;
  height: 150px;
  line-height: 0;
}

.home-team-sec-top-curve svg {
  width: 100%;
  height: 100%;
  display: block;
}

.explore-feature-img-casestudy {
    width: 100%;
    height: 280px;
    border-top-right-radius: 20px;

}
.case-study-logo-wrapper {
    align-items: center;
    height: 80px;
    display: flex;
}
.case-study-logo {
    object-fit: contain;
    align-self: auto;
    max-height: 100%;
    display: block;
}
.case-study-logo-wrapper {
    font-weight: 600;
    font-size: 16px;
    width: 157px;
    height: 57px;
    text-align: center;
    vertical-align: middle;
}
.case-study-sub-desc {
    font-size:16px !important;
    line-height:30px !important;
}
.cs-card a{
    color: black; 
    display:inline-block; 
    margin-top:auto;
}
.case-study-terms-sec-p{
    font-size: 12px;
    font-weight:400;
}

.thin-hr {
  height: 1px;       
  border: none;      
  background: #ddd;   
  margin: 16px 0;     
}

.calendly-demo-wrapper{
    padding: 60px;
}

.calendly-demo-wrapper p {
    font-weight: 600;
    font-size: 32px;
    line-height: 44px;
    vertical-align: middle;
    color: rgba(28, 121, 212, 1);
    margin-bottom: 20px;
}

.calendly-demo-wrapper ul li {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    vertical-align: middle;
    color: rgba(26, 26, 26, 1);
    padding: 10px 0px 10px 0px;
}

.calendly-demo-wrapper ul.blue-bullets {
  list-style: disc;              
  padding-left: 20px;
}

.calendly-demo-wrapper ul.blue-bullets li {
  display: list-item;
}

.calendly-demo-wrapper ul.blue-bullets li::marker {
  color: rgba(28, 121, 212, 1);
  font-size: 20px;
}

.demo-text-block {
  max-width: fit-content;
  margin: 0 auto;
  position: relative;
}

.demo-heading {
  font-size: 50px;
  font-weight: 600;
  color: rgba(38, 41, 45, 1);
  margin-bottom: 16px;
  line-height: 70px;
  margin: 0 0 15px;
  text-align:center;
}

.demo-subheading {
  font-size: 18px;
  font-weight: 400;
  color: rgba(26, 26, 26, 1);
  margin-bottom: 24px;
  text-align: center;
}

.ratings-badges{
    display: flex;
    flex-direction: row ;
    height: auto;
    justify-content: flex-start;
    gap: 60px;
    margin-top: 40px;
}

.ratings-badges a {
    height: 60px;
}


@media screen and (min-width: 1201px) and (max-width: 1500px) {
.cta-gradient-section {
  padding: 50px 20px !important;
}
.demo-heading {
  font-size: 42px !important;
  line-height: 56px !important;
}
.demo-subheading {
  font-size: 17px !important;
  line-height: 26px !important;
  margin: 0 !important;
}
.calendly-demo-wrapper {
  padding: 50px 20px !important;
}
.calendly-demo-wrapper .container {
  gap: 40px !important;
  max-width: 1200px !important;
}
.calendly-demo-wrapper .container .row {
  margin-left: 0px !important;
}
.calendly-demo-wrapper iframe {
  margin-left: 40px !important;
}
.calendly-demo-wrapper p {
  font-size: 22px !important;
  line-height: 32px !important;
}
.calendly-demo-wrapper ul.blue-bullets li {
  font-size: 16px !important;
  line-height: 24px !important;
}
.ratings-badges {
  gap: 30px !important;
}
.trust-line{
    display: none;
}
.explore-feature-card-container{
    max-width: 1240px;
}
.explore-feature-section{
    padding: 0px 20px;
}
.gradient-text{
    font-size: 40px !important;
    line-height: 56px !important;
}
.plain-text{
    font-size: 40px !important;
    line-height: 56px !important;
}
.industry-banner-section h1{
    font-size: 40px !important;
    line-height: 60px !important;
}
.industry-banner-section p{
    font-size: 16px !important;
    line-height: 28px !important;
}
.industry-case-study h2{
    font-size: 38px !important;
    padding-top: 50px !important;
    margin-bottom: -40px !important;
}
.feature-box{
    width: 690px !important;
}
.feature-box h3{
    font-size: 17px !important;
}
}

@media screen and (min-width: 980px) and (max-width: 1200px) {

.site-logo img{
    max-width: 92% !important;
}
.cta-gradient-section{
  padding: 40px 20px !important;
}
.demo-heading{
  font-size: 36px !important;
  line-height: 48px !important;
}
.demo-subheading{
  font-size: 16px !important;
  line-height: 24px;
  margin: 0 !important;
}
.calendly-demo-wrapper{
  padding: 40px 20px !important;
}
.calendly-demo-wrapper .container{
  gap: 0px !important;
  max-width: 1000px;
}
.calendly-demo-wrapper .container .row{
  margin-left: 0px !important;
}
.calendly-demo-wrapper iframe{
  min-width: 370px !important;
  height: 600px;
  margin-left: 20px !important;
}
.calendly-demo-wrapper p{
  font-size: 20px !important;
  line-height: 30px !important;
  margin: 0 !important;
}
.calendly-demo-wrapper ul.blue-bullets li{
  font-size: 15px !important;
  line-height: 22px !important;
}
.ratings-badges{
  gap: 24px !important;
}
.ratings-badges img{
  height: 50px !important;
  width: auto !important;
}
.trust-line{
    display: none;
}
.features-item{
    margin: 0px;
}
.gradient-text{
    font-size: 37px !important;
    line-height: 52px !important;
}
.plain-text{
    font-size: 37px !important;
    line-height: 52px !important;
}
.industry-banner-section h1{
    font-size: 36px !important;
    line-height: 60px !important;
}
.industry-banner-section p{
    font-size: 15px !important;
    line-height: 26px !important;
}
.industry-case-study h2{
    font-size: 36px !important;
    margin-top: -40px !important;
    margin-bottom: -40px !important;
    padding: 0px !important;
}
.benefits-container{
    padding: 0 30px !important;
}
.feature-box{
    width: 460px !important;
}
.feature-box h3{
    font-size: 17px !important;
}
.feature-box p{
    font-size: 12px !important;
}
.benefits-section{
    gap: 40px !important;
}
.benefits-section-right-content img{
    height: 750px !important;
}
.features-img{
    width: 55% !important;
}
.features-content{
    width: 45% !important;
}
.banner-decor{
    left: 40% !important;
}
.industry-engineering-banner-svg>svg:first-child{
    --offset-x: -240px !important;
}
.industry-accounting-banner-svg>svg:first-child{
    --offset-x: -280px !important;
}
.industry-construction-banner-svg>svg:first-child{
    --offset-x: -260px !important;
    height: 200px !important;
    width: 200px !important;
}
.industry-consultancies-banner-svg>svg:nth-child(2){
    --offset-x: 540px !important;
    --offset-y: 400px !important;
}
.industry-consultancies-banner-svg>svg:nth-child(1){
    --offset-x: -300px !important;
    --offset-y: 90px !important;
}
.industry-it-banner-svg>svg:first-child{
    --offset-x: -240px !important;
    --offset-y: 10px !important;
    height: 170px !important;
    width: 170px !important;
}
.industry-it-banner-svg>svg:last-child{
    --offset-x: 490px !important;
    --offset-y:110px !important;
    height: 200px !important;
}
.bg-circle{
    display: none;
}
}

@media screen and (min-width: 501px) and (max-width: 980px) {
.cta-gradient-section{
  padding: 30px 15px !important;
}
.demo-heading{
  font-size: 32px !important;
  line-height: 40px !important;
}
.demo-subheading{
  font-size: 16px !important;
  line-height: 24px !important;
  margin: 0 !important;
}
.calendly-demo-wrapper{
  padding: 30px 15px !important;
}
.calendly-demo-wrapper .container{
  flex-direction: column !important;
  gap: 30px !important;
  max-width: 100% !important;
}
.calendly-demo-wrapper .container > div:first-child{
  order: 2 !important;
}
.calendly-demo-wrapper .container .row{
  order: 1 !important;
  margin-left: 0 !important;
}
.calendly-demo-wrapper iframe{
  min-width: 100% !important;
  width: 100% !important;
  height: 560px !important;
  margin-left: 0 !important;
}
.calendly-demo-wrapper p{
  font-size: 18px !important;
  line-height: 28px !important;
  margin: 15px !important;
}
.calendly-demo-wrapper ul.blue-bullets li{
  font-size: 14px !important;
  line-height: 22px !important;
}
.ratings-badges{
  justify-content: center !important;
  flex-wrap: wrap !important;
  gap: 20px !important;
}
.ratings-badges img{
  height: 50px !important;
  width: auto !important;
}
.demo-svgs{
  display: none !important;
}
.cta-heading{
    text-align: center;
    font-size: 30px !important;
    line-height: 40px !important;
}
.cta-subheading{
    font-size: 16px !important;
}
.cta-benefits{
    font-size: 15px !important;
}
.cta-gradient-section{
    padding: 40px 20px !important;
}
.trust-line{
    display: none;
}
.banner-decor{
    display: none;
}
.img-decor{
    display: none;
}
.bg-circle{
    display: none;
}
.benefits-section{
    gap: 0px !important;
}
}
@media (min-width: 2050px) {
.trust-line{
        display: none;
    }    
.trust-line{
    display: none;
}
}

.industry-banner-section{
    position: relative;
}

.banner-decor {
  position: absolute;
  left: 50%;
  top: var(--offset-y, 0px);
  transform: translateX(calc(-50% + var(--offset-x, 0px)));
  z-index: 1;
}

.img-decor{
    position: absolute;
    z-index: 1;
}

.industry-banner-section>div {
    padding-top: 105px;
}   
.industry-banner-section h1 ,.industry-banner-section p{
    color:rgba(38, 41, 45, 1);
}
.industry-banner-section h1 {
    font-weight: 700;
    font-size: 50px;
    margin:0;
    line-height: 70px;
}
.industry-banner-section p {
    font-weight: 400;
    line-height: 28px;
    font-size: 18px;
}

.industry-banner-section a {
    color: #fff;
    width: 100%;
    font-size: 16px;
    font-weight: 600;
}
.case-card-tag {
    font-size: 17px;
    font-weight: 600;    
}
.industry-banner-section a{
    width: 145.72000122070312px;
    height: 44px;
    border-radius: 8px;
    background: var(--Black-Color, rgba(38, 41, 45, 1));
    border: 1px solid rgba(0, 0, 0, 1);
    margin-top: 5px;
}

.industry-banner-section a:hover{
    background-color: #222;
    opacity: 0.8;
    transform: 0.2 ease-in;
}
.background-light{
    background: rgba(251, 247, 205, 0.5);
}
.industry-case-study h2 {
    font-weight: 500;
    font-size: 42px;
    line-height: 60px;
    margin-bottom: -20px;
}

.industry-banner-section div>div>div>div {
    border-radius: 8px;
    border-width: 0.5px;
    padding-top: 8px;
    padding-right: 16px;
    padding-bottom: 8px;
    padding-left: 16px;
    color: rgba(109, 99, 0, 1);
    background: rgba(255, 249, 185, 1);
    border: 0.5px solid rgba(255, 241, 95, 1)
}

.number-box {
    width: 43px;
    height: 43px;
    background: var(--Primary, rgba(28, 121, 212, 1));
    color: #fff;
    font-weight: 600;
    font-size: 20px;
    line-height: 60px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    margin-right: 16px;
    margin-top: 10px
}
.feature-box {
    background: linear-gradient(90deg, #fff, transparent);
    padding: 25px;
    padding-left: 30px;
    width: 750px;
    height: auto;
    gap: 9px;
    opacity: 1;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    border-bottom-left-radius: 16px;
    margin-top: 20px;
}

.feature-box:hover {
    background: #fff;
    box-shadow: 0 5px 24px 0 rgba(28, 121, 212, 0.15);
}

.feature-text{
    gap:12px
}
.feature-text h3 {
    font-weight: 500;
    font-size: 20px;
    color: rgba(0, 0, 0, 1);
    margin:0;
}
.feature-text p{
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
}

.gap-24{
    gap:24px
}
.gap-44{
    gap:44px;
}

.gap-36{
    gap:36px;
}

.gap-46{
    gap:46px;
}

.benefits-section{
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 110px;
}

.benefits-section-left-content{
    display: flex;
    flex-direction: column;
}

.benefits-section-right-content{
    height: 700px;
    width: 580px;
}

.benefits-container h2{
    margin-bottom: 70px;
}

.benefits-container{
    max-width: 100%;
    padding: 30px;
}

.bg-circle{
    position: absolute;
    z-index: -1;
}

.relative{
    position: relative;
}

.benefits-section-left-content .feature-box:hover .feature-text h3{
    color:  rgba(28, 121, 212, 1);
    transition: color 0.2s ease-in;
}

.header-menu.menu-open { display: block; }
.header-menu.menu-closed { display: none; }

@media (min-width: 991px) {
	.header-menu { display: block !important; }
	.header-menu.menu-open,
	.header-menu.menu-closed { display: block !important; }
	
	.header-menu .sub-menu-toggle {
		display: none !important;
	}
	
	.header-menu .sub-menu-hover {
		display: block !important;
	}
}



/* Mobile Homepage */
.app-page {
    background-color: #000000;
    padding-top: 150px;
}

.app-page .heading-section {
    gap: 42px;
}

@property --a {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

.app-launch-pill {
    --b: 2px;
    --a: 0deg;
    --l: #0000 0% 70%, #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 13px 28px;
    background: linear-gradient(97.03deg, rgba(4, 155, 245, 0.7) 5.85%, rgba(25, 90, 174, 0.7) 38.56%, rgba(38, 49, 122, 0.7) 96.93%);
    border-radius: 44px;
    position: relative;
    overflow: visible;
    transition: all 0.3s ease;
    backdrop-filter: blur(22.32558250427246px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-sizing: border-box;
}

.app-launch-pill::before {
    content: '';
    position: absolute;
    box-sizing: border-box;
    border: solid var(--b) #0000;
    inset: calc(-1 * var(--b));
    width: calc(100% + 2 * var(--b));
    height: calc(100% + 2 * var(--b));
    border-radius: calc(44px + var(--b));
    background: repeating-conic-gradient(from var(--a, 0deg), var(--l, #0000 0% 70%, rgba(43, 127, 255, 0.5))) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: -1;
    filter: var(--f, url(#glow-0));
    opacity: 1;
    animation: repeating-border-rotate 2s linear infinite;
}

@keyframes repeating-border-rotate {
    from {
        --a: 0deg;
    }
    to {
        --a: 360deg;
    }
}

.app-launch-pill-text {
    font-family: Inter, sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: #FFFFFF;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    z-index: 2;
    position: relative;
}

.app-page .heading-section h1 {
    font-weight: 500;
    font-size: 72px;
    line-height: 95px;
    text-align: center;
    color: #FFFFFF;
    margin: 0;
}

.app-page .heading-section h1 .highlight {
    color: #2087EC;
}

.app-page .heading-section p {
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    color: #99A1AF;
    max-width: 750px;
}

.app-page .heading-section h2 {
    color: #FFFFFF;
    font-weight: 400;
    font-size: 48px;
    line-height: 48px;
    text-align: center;
}

.app-page .heading-section div {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.app-page .heading-section div div {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.app-page .heading-section div div[data-tooltip]:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    z-index: 1000;
    margin-bottom: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.app-page .heading-section div div[data-tooltip]:hover::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    margin-bottom: 3px;
}

/* Store Buttons */
.app-page .heading-section a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    box-shadow: 0 6px 32px 0 rgba(16, 31, 57, 0.25);
    backdrop-filter: blur(48px);
    -webkit-backdrop-filter: blur(48px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    text-decoration: none;
    transition: all 0.3s ease;
}

.app-page .heading-section a span {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    color: white;
}

.app-page .heading-section a.disabled {
    pointer-events: none;
    cursor: not-allowed;
}

/* Features Section */
.app-page .features-section {
    gap: 64px;
}

.app-page .features-section div {
    gap: 16px;
}

.app-page .features-section div h2 {
    color: #FFFFFF;
    font-weight: 400;
    font-size: 48px;
    line-height: 48px;
    text-align: center;
}

.app-page .features-section .heading p {
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #99A1AF;
    text-align: center;
}

.app-page .features-section .content {
    gap: 130px;
    flex: 1;
    width: 100%;
    max-width: 1200px;
}

.app-page .features-section .content .heading {
    color: #FFFFFF;
    font-weight: 400;
    font-size: 32px;
    padding-bottom: 30px;
}

.mobile-feature-content-list {
    width: 600px;
    max-width: 100%;
}

.mobile-feature-content-list + div > div {
    position: sticky;
    top: 150px;
}

.mobile-feature-content-list + div video {
    width: 390px;
}

.mobile-feature-content-list + div img {
    width: 390px;
    max-width: 100%;
    height: auto;
}

.mobile-feature-content-list + div > div > img {
    width: 390px;
    max-width: 100%;
    height: auto;
    display: block;
}

/* Mobile Content Items */
.mobile-content-item {
    display: flex;
    align-items: center;
    padding: 0;
    opacity: 1;
    transition: all 0.4s ease;
    transform: translateX(0);
    will-change: transform, opacity;
    transform-origin: center top;
}

.mobile-content-item:focus {
    outline: none;
}

.mobile-content-item-container {
    background: rgba(15, 15, 15, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 25px;
    width: 100%;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-sizing: border-box;
}

.mobile-content-item-container::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: transparent;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0 3px 3px 0;
}

.mobile-content-item-container:hover {
    border-color: rgba(32, 135, 236, 0.3);
    box-shadow: 0 10px 30px rgba(32, 135, 236, 0.2), 0 0 0 1px rgba(32, 135, 236, 0.1);
    transform: translateY(-2px);
}

.mobile-content-item-container:hover::before {
    background: linear-gradient(180deg, #2087EC 0%, #1a6bc7 100%);
    box-shadow: 0 0 8px rgba(32, 135, 236, 0.4);
}

/* Icon-specific hover effects - border and shadow */
.mobile-content-item-container[data-icon="calendar"]:hover {
    border-color: rgba(33, 150, 243, 0.3);
    box-shadow: 0 10px 30px rgba(33, 150, 243, 0.2), 0 0 0 1px rgba(33, 150, 243, 0.1);
}

.mobile-content-item-container[data-icon="grid"]:hover {
    border-color: rgba(233, 30, 99, 0.3);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.2), 0 0 0 1px rgba(233, 30, 99, 0.1);
}

.mobile-content-item-container[data-icon="eye"]:hover {
    border-color: rgba(255, 152, 0, 0.3);
    box-shadow: 0 10px 30px rgba(255, 152, 0, 0.2), 0 0 0 1px rgba(255, 152, 0, 0.1);
}

.mobile-content-item-container[data-icon="electric"]:hover {
    border-color: rgba(76, 175, 80, 0.3);
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.2), 0 0 0 1px rgba(76, 175, 80, 0.1);
}

.mobile-content-item-container[data-icon="fast-entries"]:hover {
    border-color: rgba(33, 150, 243, 0.3);
    box-shadow: 0 10px 30px rgba(33, 150, 243, 0.2), 0 0 0 1px rgba(33, 150, 243, 0.1);
}

.mobile-content-item-container[data-icon="swipe"]:hover {
    border-color: rgba(156, 39, 176, 0.3);
    box-shadow: 0 10px 30px rgba(156, 39, 176, 0.2), 0 0 0 1px rgba(156, 39, 176, 0.1);
}

.mobile-content-item-container[data-icon="bulk-approvals"]:hover {
    border-color: rgba(255, 152, 0, 0.3);
    box-shadow: 0 10px 30px rgba(255, 152, 0, 0.2), 0 0 0 1px rgba(255, 152, 0, 0.1);
}

.mobile-content-item-container[data-icon="conversations"]:hover {
    border-color: rgba(0, 188, 212, 0.3);
    box-shadow: 0 10px 30px rgba(0, 188, 212, 0.2), 0 0 0 1px rgba(0, 188, 212, 0.1);
}

.mobile-content-item-container[data-icon="always-updated"]:hover {
    border-color: rgba(76, 175, 80, 0.3);
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.2), 0 0 0 1px rgba(76, 175, 80, 0.1);
}

.mobile-content-item-container[data-icon="update"]:hover {
    border-color: rgba(33, 150, 243, 0.3);
    box-shadow: 0 10px 30px rgba(33, 150, 243, 0.2), 0 0 0 1px rgba(33, 150, 243, 0.1);
}

.mobile-content-item-container[data-icon="work-wait"]:hover {
    border-color: rgba(156, 39, 176, 0.3);
    box-shadow: 0 10px 30px rgba(156, 39, 176, 0.2), 0 0 0 1px rgba(156, 39, 176, 0.1);
}

.mobile-content-item-container[data-icon="permissions"]:hover {
    border-color: rgba(33, 150, 243, 0.3);
    box-shadow: 0 10px 30px rgba(33, 150, 243, 0.2), 0 0 0 1px rgba(33, 150, 243, 0.1);
}

.mobile-content-item-container[data-icon="quick-access"]:hover {
    border-color: rgba(156, 39, 176, 0.3);
    box-shadow: 0 10px 30px rgba(156, 39, 176, 0.2), 0 0 0 1px rgba(156, 39, 176, 0.1);
}

.mobile-content-item-container[data-icon="consistency"]:hover {
    border-color: rgba(76, 175, 80, 0.3);
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.2), 0 0 0 1px rgba(76, 175, 80, 0.1);
}

/* Icon-specific hover effects - side strip */
.mobile-content-item-container[data-icon="calendar"]:hover::before {
    background: linear-gradient(180deg, #2196F3 0%, #1976D2 100%);
    box-shadow: 0 0 8px rgba(33, 150, 243, 0.4);
}

.mobile-content-item-container[data-icon="grid"]:hover::before {
    background: linear-gradient(180deg, #E91E63 0%, #C2185B 100%);
    box-shadow: 0 0 8px rgba(233, 30, 99, 0.4);
}

.mobile-content-item-container[data-icon="eye"]:hover::before {
    background: linear-gradient(180deg, #FF9800 0%, #F57C00 100%);
    box-shadow: 0 0 8px rgba(255, 152, 0, 0.4);
}

.mobile-content-item-container[data-icon="electric"]:hover::before {
    background: linear-gradient(180deg, #4CAF50 0%, #388E3C 100%);
    box-shadow: 0 0 8px rgba(76, 175, 80, 0.4);
}

.mobile-content-item-container[data-icon="fast-entries"]:hover::before {
    background: linear-gradient(180deg, #2196F3 0%, #1976D2 100%);
    box-shadow: 0 0 8px rgba(33, 150, 243, 0.4);
}

.mobile-content-item-container[data-icon="swipe"]:hover::before {
    background: linear-gradient(180deg, #9C27B0 0%, #7B1FA2 100%);
    box-shadow: 0 0 8px rgba(156, 39, 176, 0.4);
}

.mobile-content-item-container[data-icon="bulk-approvals"]:hover::before {
    background: linear-gradient(180deg, #FF9800 0%, #F57C00 100%);
    box-shadow: 0 0 8px rgba(255, 152, 0, 0.4);
}

.mobile-content-item-container[data-icon="conversations"]:hover::before {
    background: linear-gradient(180deg, #00BCD4 0%, #0097A7 100%);
    box-shadow: 0 0 8px rgba(0, 188, 212, 0.4);
}

.mobile-content-item-container[data-icon="always-updated"]:hover::before {
    background: linear-gradient(180deg, #4CAF50 0%, #2E7D32 100%);
    box-shadow: 0 0 8px rgba(76, 175, 80, 0.4);
}

.mobile-content-item-container[data-icon="update"]:hover::before {
    background: linear-gradient(180deg, #2196F3 0%, #1976D2 100%);
    box-shadow: 0 0 8px rgba(33, 150, 243, 0.4);
}

.mobile-content-item-container[data-icon="work-wait"]:hover::before {
    background: linear-gradient(180deg, #9C27B0 0%, #7B1FA2 100%);
    box-shadow: 0 0 8px rgba(156, 39, 176, 0.4);
}

.mobile-content-item-container[data-icon="permissions"]:hover::before {
    background: linear-gradient(180deg, #2196F3 0%, #1976D2 100%);
    box-shadow: 0 0 8px rgba(33, 150, 243, 0.4);
}

.mobile-content-item-container[data-icon="quick-access"]:hover::before {
    background: linear-gradient(180deg, #9C27B0 0%, #7B1FA2 100%);
    box-shadow: 0 0 8px rgba(156, 39, 176, 0.4);
}

.mobile-content-item-container[data-icon="consistency"]:hover::before {
    background: linear-gradient(180deg, #4CAF50 0%, #2E7D32 100%);
    box-shadow: 0 0 8px rgba(76, 175, 80, 0.4);
}

.mobile-content-item-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    transition: all 0.4s ease;
    gap: 0px !important;
    margin-bottom: 10px;
}

.mobile-content-item-heading h3 {
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    margin: 0;
    transition: all 0.4s ease;
    text-align: left;
}

.mobile-content-item-text p {
    color: #99A1AF;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
    transition: all 0.4s ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Phone Section */
.app-page-phone-section {
    height: 650px;
    background-image: url('/assets/images/bg-diagonal-flow.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent !important;
}

.app-page-phone {
    max-width: 1024px;
    height: auto;
    z-index: 1;
    transform: perspective(1200px) translate(0, -21.5%) scale(1) rotateX(25deg);
}

.bottom-phone {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bottom-phone img {
    position: relative;
    width: 30%;
}


.banner-icon {
    position: absolute;
    width: 48px;
    height: 48px;
    transition: all 0.3s ease;
}

#bottom-buttons-glow svg {
    height: auto;
    width: 700px !important ;
  }


@media (min-width: 2560px) {
    #banner-icons {
        display: block !important;
    }
    
    .banner-icon {
        width: 56px;
        height: 56px;
    }
    
    .banner-icon-calendar {
        top: 523px;
        left: calc(50% - 600px);
    }
    
    .banner-icon-people {
        top: 820px;
        left: calc(50% - 585px);
    }
    
    .banner-icon-search {
        top: 457px;
        left: calc(50% + 500px);
    }
    
    .banner-icon-settings {
        top: 833px;
        left: calc(50% + 575px);
    }
    
    .hero-image img {
        max-width: 900px;
        height: auto;
        border-radius: 5px;
    }
}

@media (min-width: 1920px) and (max-width: 2559px) {
    .banner-icon {
        width: 52px;
        height: 52px;
    }
    
    .banner-icon-calendar {
        top: 490px;
        left: calc(50% - 600px);
    }
    
    .banner-icon-people {
        top: 820px;
        left: calc(50% - 540px);
    }
    
    .banner-icon-search {
        top: 410px;
        left: calc(50% + 500px);
    }
    
    .banner-icon-settings {
        top: 820px;
        left: calc(50% + 575px);
    }
    
    .mobile-feature-content-list + div video {
        width: 560px;
    }
    
    .mobile-feature-content-list + div img {
        width: 400px;
    }
    
    .mobile-feature-content-list + div > div > img {
        width: 600px;
    }
    
    .hero-image img {
        max-width: 900px;
        height: auto;
    }
}

@media (min-width: 1440px) and (max-width: 1919px) {
    .app-page {
        padding-top: 100px;
    }
    
    .app-page .heading-section h1 {
        font-size: 70px;
    }
    
    .app-page .heading-section p {
        font-size: 17px;
    }
    
    .app-page .heading-section {
        padding-top: 100px !important;
    }
    
    .app-page-phone-section {
        height: 650px !important;
    }
    
    .banner-icon {
        width: 50px;
        height: 50px;
    }
    
    .banner-icon-calendar {
        top: 520px;
        left: calc(50% - 600px);
    }
    
    .banner-icon-people {
        top: 820px;
        left: calc(50% - 540px);
    }
    
    .banner-icon-search {
        top: 500px;
        left: calc(50% + 500px);
    }
    
    .banner-icon-settings {
        top: 820px;
        left: calc(50% + 500px);
    }
    
    .mobile-feature-content-list {
        width: 550px;
    }
    
    .mobile-feature-content-list + div video {
        width: 375px;
    }
    
    .mobile-feature-content-list + div img {
        width: 375px;
    }
    
    .mobile-feature-content-list + div > div > img {
        width: 375px;
    }
}

@media (min-width: 1024px) and (max-width: 1439px) {
    .app-page-phone-section {
        height: 550px !important;
    }
    
    .banner-icon {
        width: 48px;
        height: 48px;
    }
    
    .banner-icon-calendar {
        top: 430px;
        left: calc(50% - 450px);
    }
    
    .banner-icon-people {
        top: 630px;
        left: calc(50% - 430px);
    }
    
    .banner-icon-search {
        top: 408px;
        left: calc(50% + 400px);
    }
    
    .banner-icon-settings {
        top: 631px;
        left: calc(50% + 420px);
    }

    .mobile-feature-content-list {
        width: 500px;
        max-width: 100%;
    }
}

@media (max-width: 1648px) {
    .app-page-phone {
        max-width: 850px;
        transform: perspective(1200px) translate(0, -18.5%) scale(1) rotateX(25deg);
    }
}

/* App Page Phone Transform - 1220px and below */
@media (max-width: 1220px) {
    .app-page-phone {
        max-width: 650px;
        transform: perspective(1200px) translate(0, -14.5%) scale(1) rotateX(25deg);
    }
}

@media (max-width: 1023px) {
    .mobile-feature-content-list {
        width: 100%;
    }
    
    .d-flex.flex-row.gap-40 {
        flex-direction: column !important;
        margin-bottom: 45px;
    }
    
    .mobile-feature-content-list + div {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .app-page {
        padding-top: 70px;
    }
    
    .app-page .heading-section {
        gap: 28px;
    }
    
    .app-page .heading-section h1 {
        font-size: 54px;
        line-height: 66px;
    }
    
    .app-page .heading-section p {
        font-size: 16px;
        line-height: 24px;
    }
    
    .app-page .heading-section a {
        padding: 14px 23px;
    }

    .banner-icon-calendar {
        top: 520px;
        left: calc(50% - 300px);
    }
    
    .banner-icon-people {
        top: 820px;
        left: calc(50% - 340px);
    }
    
    .banner-icon-search {
        top: 500px;
        left: calc(50% + 250px);
    }
    
    .banner-icon-settings {
        top: 820px;
        left: calc(50% + 300px);
    }

    .inner-title-sec h1, .hero h1 {
        font-weight: 700;
        font-size: 60px;
        line-height: 80px;
    }
}

@media (max-width: 920px) {
    .app-page-phone {
        max-width: 400px;
        transform: perspective(1200px) translate(0, -11.5%) scale(1) rotateX(25deg);
    }

    .hero-content{
        width: 90%;
    }

    .inner-title-sec h1, .hero h1 {
        font-size: 52px;
        line-height: 70px;
    }
}

@media (max-width: 768px) {
    .app-launch-pill {
        padding: 10px 16px;
        gap: 10px;
        margin-bottom: 24px;
    }
    
    .app-launch-pill-text {
        font-size: 14px;
    }
    
    .app-page-phone-section {
        height: 400px !important;
    }
    
    .mobile-content-item {
        flex-direction: column !important;
        gap: 20px !important;
    }
    
    .mobile-features-section {
        flex-direction: column;
        gap: 2rem;
    }
    
    .mobile-content-item-container {
        padding: 2rem;
    }
    
    .mobile-content-item-heading h3 {
        font-size: 24px;
    }
    
    .mobile-feature-content-list {
        min-height: auto !important;
        margin-bottom: 50px !important;
    }
    
    .mobile-feature-content-list:last-child {
        max-height: none !important;
    }
    
    .mobile-feature-content-list > video,
    .mobile-feature-content-list > img {
        display: block !important;
    }
    
    .mobile-content-item-container > div:first-of-type {
        display: flex !important;
        gap: 20px !important;
        align-items: center !important;
    }
    
    .mobile-content-item-heading > h3 {
        font-size: 18px !important;
    }
    
    .mobile-content-item-icon {
        padding-bottom: 0 !important;
        margin-bottom: 0px !important;
    }

    .app-page .features-section div h2 {
        font-size: 32px;
        line-height: 48px;
        margin: 0px !important;
    }

    .app-page .features-section .heading p {
        font-size: 16px !important;
        line-height: 28px !important;
    }

    .app-page .heading-section h2 {
        font-size: 32px !important;
        line-height: 48px !important;
        margin: 0px !important;
    }

    .hero-content{
        width: 100%;
    }

    .inner-title-sec h1, .hero h1 {
        font-size: 52px;
        line-height: 70px;
    }
}

@media (min-width: 430px) and (max-width: 767px) {
    .app-page .heading-section {
        padding-top: 42px !important;
    }
    
    .app-page .heading-section h1 {
        font-size: 55px !important;
        line-height: 66px !important;
    }

    #bottom-buttons-glow svg {
        width: 400px !important;
    }
    
    .banner-icon {
        display: none !important;
    }
    
    .bottom-phone img {
        width: 55% !important;
    }
}

@media (min-width: 350px) and (max-width: 429px) {
    #bottom-buttons-glow svg {
        display: none !important;
    }

    .mobile-feature-content-list + div > div > img {
        width: 320px !important;
        max-width: 100%;
        height: auto;
        display: block;
    }

    .mobile-feature-content-list + div video {
        width: 320px !important;
    }

    .mobile-feature-content-list {
        width: 320px !important;
        max-width: 100%;
    }

    .app-page .features-section .content {
        gap: 50px !important;
    }
}

@media (max-width: 430px) {
    .app-page .heading-section h1 {
        font-size: 28px !important;
        line-height: 33px !important;
    }

    .bottom-phone img {
        width: 55% !important;
    }

    .banner-icon {
        display: none !important;
    }

    .app-page .features-section div h2 {
        font-size: 26px !important;
        line-height: 30px !important;
        margin: 0px !important;
    }

    .app-page .features-section .heading p {
        font-size: 14px !important;
        line-height: 18px !important;
    }

    .app-page .features-section .content .heading {
        font-size: 22px;
        line-height: 22px;
        padding-bottom: 32px !important;
    }

    .mobile-content-item-container {
        padding: 24px !important;
    }

    .app-page .heading-section h2 {
        font-size: 28px !important;
        line-height: 48px !important;
        margin: 10px !important;
    }

    .app-page .heading-section {
        gap: 16px !important;
    }

    .faq-container-dark h2 {
        font-size: 28px !important;
        line-height: 44px !important;
    }

    .company-sec-title {
        font-size: 20px !important;
        line-height: 32px !important;
        margin: 0px !important;
    }

    .app-page .features-section .content {
        gap: 50px !important;
    }
}

@media (max-width: 430px) {
    .app-page-phone {
        max-width: 300px;
        transform: perspective(1200px) translate(0, -11.5%) scale(1) rotateX(25deg);
    }
}

/* About Us Section */
.about-us-section {
	background: linear-gradient(180deg, #EEF5FF 0%, #FFFFFF 50%, #FFFFFF 100%);
	padding: 130px 0;
}

.about-us h1 {
	font-weight: 600;
	font-size: 50px;
	line-height: 62px;
}

.about-us h2 {
	font-weight: 400;
	font-size: 20px;
	line-height: 44px;
	color: #1B68A8;
}

.about-us h3 {
	font-weight: 500;
	font-size: 36px;
	line-height: 44px;
	padding-top: 120px;
}

.about-us p {
	font-weight: 400;
	font-size: 16px;
	line-height: 30px;
	padding-top: 20px;
	text-align: center;
	max-width: 1000px;
}

.about-us-box.container {
	margin-top: 120px;
	border: 1px solid #DDDFE3;
	border-radius: 26px;
	padding: 36px 154px;
	background-color: #F8F9FB;
}

.about-us-box-item h4 {
	font-weight: 600;
	font-size: 30px;
	line-height: 36px;
	margin: 0;
	text-align: left;
}

.about-us-box-item p {
	margin: 0;
}

@media (max-width: 1500px) and (min-width: 1201px) {
	.about-us h1 {
		font-size: 45px;
		line-height: 56px;
	}

	.about-us-box.container {
		padding: 36px 100px;
	}
}

@media (max-width: 1200px) and (min-width: 981px) {
	.about-us h1 {
		font-size: 40px;
		line-height: 50px;
	}

	.about-us h3 {
		font-size: 32px;
		padding-top: 80px;
	}

	.about-us-box.container {
		padding: 36px 60px;
	}

	.about-us-box-item h4 {
		font-size: 26px;
	}
}

@media (max-width: 980px) and (min-width: 501px) {
	.about-us-section {
		padding: 80px 20px;
	}

	.about-us h1 {
		font-size: 36px;
		line-height: 44px;
	}

	.about-us h2 {
		font-size: 18px;
		line-height: 32px;
	}

	.about-us h3 {
		font-size: 28px;
		line-height: 36px;
		padding-top: 60px;
	}

	.about-us p {
		font-size: 15px;
		line-height: 26px;
	}

	.about-us-box.container {
		margin-top: 80px;
		padding: 20px 20px;
	}

	.about-us-box .d-flex {
		flex-wrap: wrap;
		gap: 0;
	}

	.about-us-box-item {
		width: 50%;
		padding: 30px 20px;
	}

	.about-us-box-item h4 {
		font-size: 24px;
		text-align: center;
	}

	.about-us-box-item p {
		font-size: 14px;
		text-align: center;
	}
}

@media (max-width: 500px) {
	.about-us-section {
		padding: 50px 15px;
	}

	.about-us h1 {
		font-size: 28px;
		line-height: 36px;
		padding: 0 10px;
	}

	.about-us h2 {
		font-size: 16px;
		line-height: 26px;
		padding: 0 10px;
	}

	.about-us h3 {
		font-size: 22px;
		line-height: 30px;
		padding-top: 40px;
	}

	.about-us p {
		font-size: 14px;
		line-height: 24px;
		padding-top: 15px;
	}

	.about-us-box.container {
		margin-top: 50px;
		padding: 24px 15px;
		border-radius: 16px;
	}

	.about-us-box .d-flex {
		flex-wrap: wrap;
		justify-content: space-between;
		gap: 20px;
	}

	.about-us-box-item {
		width: calc(50% - 10px);
		margin-bottom: 0;
		padding: 20px 10px;
		background-color: #FFFFFF;
		border-radius: 12px;
	}

	.about-us-box-item h4 {
		font-size: 24px;
		line-height: 30px;
		text-align: center;
	}

	.about-us-box-item p {
		padding-top: 6px;
		font-size: 12px;
		line-height: 18px;
		text-align: center;
	}
}

@media (max-width: 400px) {
	.about-us-box .d-flex {
		flex-direction: column;
		gap: 16px;
	}

	.about-us-box-item {
		width: 100%;
	}
}

/* Blog List Section */
.blog-card-container {
    width: 100%;
	max-width: 1460px;
	margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.blog-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
}

.blog-card-eyebrow {
    color: rgba(113, 113, 130, 1);
    font-size: 15px;
    line-height: 22.5px;
    font-weight: 400;
    margin: 0;
}
.blog-card-title {
    font-size: 23.4px;
    line-height: 35px;
    font-weight: 500;
    margin: 0;
}
.blog-card-title a {
    color: rgba(38, 41, 45, 1);
}
.blog-list-item:hover .blog-card-title a {
    color: rgba(28, 121, 212, 1);
}
.blog-card-description {
    color: rgba(113, 113, 130, 1);
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    margin: 0;
}
.blog-card-author-name {
    color: rgba(4, 0, 14, 1);
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    margin: 0;
}
.blog-card-author-date {
    color: rgba(113, 113, 130, 1);
    font-size: 14px;
    line-height: 22.5px;
    font-weight: 400;
    margin: 0;
}
.blog-list-item {
    max-width: 453px;
    flex: 0 1 auto;
    border: 2px solid rgba(243, 244, 246, 1);
    border-radius: 26px;
    display: flex;
    flex-direction: column;
}

/* Default for screens larger than 1440px */
@media (min-width: 1441px) {
    .blog-list-item {
        max-width: 453px;
        flex: 0 1 auto;
    }
}


/* Fix for MacBook 1470px width to ensure 3 cards fit */
@media (min-width: 1461px) and (max-width: 1500px) {
    .blog-list-item {
        max-width: 430px;
        flex: 0 1 calc(33.333% - 34px);
    }
    
    .blog-list {
        gap: 40px;
    }
}

.blog-list-item > img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-top-left-radius: 26px;
    border-top-right-radius: 26px;
}

.blog-list-item > div {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-list-item > div > div > img,
.blog-list-item > div > div > a > img {
    width: 50px;
    height: 50px;
    border-radius: 100%;
}

.blog-list-item > div > div > a {
    display: inline-block;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.blog-list-item > div > div > a:hover {
    opacity: 0.8;
}

.breadcrumb-container {
    padding: 0px;
    margin-bottom: 20px;
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #42535c;
    padding: 0px !important;
    margin: 0px !important  ;
}

.breadcrumb-item:not(:last-child)::after {
    content: '/';
    margin: 0 5px;
    color: #6b7280;
}

.breadcrumb-item a {
    color: #1B68A8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-item a:hover {
    color: #3089D1;
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #26292D;
    font-weight: 500;
}

.blog-date-meta .d-flex {
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-date-meta i {
    color: #1B68A8;
    font-size: 16px;
}

.blog-date-meta p {
    margin: 0;
    font-size: 14px;
    color: #42535c;
    font-weight: 400;
}

@media (max-width: 1500px) and (min-width: 1401px) {
    .blog-list-item {
        max-width: 446px;
        flex: 0 1 calc(33.333% - 34px);
        min-width: 0;
    }

    .blog-list-section .blog-list-head h1 {
        font-size: 44px !important;
        line-height: 60px !important;
    }

    .blog-list-section .blog-list-head p {
        font-size: 18px !important;
        line-height: 29px !important;
    }
    
    .blog-list {
        gap: 25px !important;
    }
}

@media (max-width: 1400px) and (min-width: 1025px) {
    .blog-list-item {
        max-width: 403px;
        flex: 0 1 calc(33.333% - 34px);
        min-width: 0;
        margin: -5px !important;
    }
    
    .blog-list {
        gap: 20px !important;
    }

    .blog-list-section .blog-list-head h1 {
        font-size: 44px !important;
        line-height: 60px !important;
    }

    .blog-list-section .blog-list-head p {
        font-size: 18px !important;
        line-height: 29px !important;
    }
}

@media (max-width: 1024px) {
    .blog-list-item {
        max-width: 316px;
        flex: 0 1 calc(33.333% - 34px);
        min-width: 0;
        margin: -5px !important;
    }

    .blog-list-section .blog-list-head h1 {
        font-size: 44px !important;
        line-height: 60px !important;
    }
    
    .blog-list-section .blog-list-head p {
        font-size: 18px !important;
        line-height: 29px !important;
    }
    
    .blog-list {
        gap: 20px !important;
    }

    .blog-filter-btn{
        padding: 14px 16px !important;
        font-size: 16px !important;
        line-height: 24px !important;
    }
}

@media (max-width: 768px) {
    .breadcrumb-nav {
        padding: 15px 0;
    }
    
    .breadcrumb-item {
        font-size: 13px;
    }
    
    .breadcrumb-item:not(:last-child)::after {
        margin: 0 8px;
    }
    
    .blog-date-meta {
        margin-bottom: 20px;
        margin-top: 10px;
    }
    
    .blog-date-meta p {
        font-size: 13px;
    }
    
    .blog-list-item {
        max-width: 762px;
        flex: 0 1 100%;
        width: 100%;
        margin: 0 auto;
    }
    .blog-list-section .blog-list-head h1{
        font-size: 44px !important;
        line-height: 60px !important;
    }

    .blog-list-section .blog-list-head p {
        font-size: 16px !important;
        line-height: 29px !important;
    }

    .blog-filter-btn{
        padding: 14px 16px !important;
        font-size: 16px !important;
        line-height: 24px !important;
    }
}

@media (max-width: 450px) {
    .blog-list-item {
        max-width: 370px;
        flex: 0 1 100%;
        width: 100%;
        margin: 0 auto;
    }

    .blog-list-section .blog-list-head h1 {
        font-size: 32px !important;
        line-height: 40px !important;
    }

    .blog-list-section .blog-list-head p {
        font-size: 14px !important;
        line-height: 29px !important;
        padding: 0px !important;
        max-width: 320px !important;
    }

    .blog-filter-btn {
        font-size: 13px !important;
        line-height: 24px !important;
    }

    .blog-card-container > div.gap-24 {
        gap: 16px !important;
    }

    .blog-list-item div.gap-24 {
        gap: 18px !important;
    }

    .blog-list-section .blog-list-head {
        padding-top: 90px !important;
        padding-bottom: 90px !important;
    }

    .blog-card-container {
        gap: 60px !important;
    }

    .blog-list-item > div {
        padding: 20px !important;
    } 
}

@keyframes skeleton-loading {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}

.skeleton-item {
    opacity: 1;
    padding: 90px;
}

.skeleton-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200px 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
    border-radius: 8px;
}

.skeleton-text {
    height: 16px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200px 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
    border-radius: 4px;
}

.skeleton-eyebrow {
    width: 120px;
    height: 20px;
}

.skeleton-title {
    width: 85%;
    height: 24px;
    margin-top: 4px;
}

.skeleton-description {
    width: 100%;
    height: 16px;
}

.skeleton-description-short {
    width: 70%;
    height: 16px;
}

.skeleton-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200px 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
    flex-shrink: 0;
}

.skeleton-author-name {
    width: 100px;
    height: 16px;
}

.skeleton-date {
    width: 80px;
    height: 14px;
}

/* Sitemap Styles */
.sitemap-container {
    padding: 80px 0 100px;
    background-color: #fff;
    color: #1c1e21;
    font-family: 'Inter', sans-serif;
}

.sitemap-main-title {
    font-size: 48px;
    font-weight: 500;
    margin-bottom: 60px;
    color: #1c1e21;
    text-align: left;
}

.sitemap-section {
    margin-bottom: 60px;
}

.sitemap-section-title {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 30px;
    color: #1c1e21;
}

.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px 40px;
}

.sitemap-col {
    margin-bottom: 10px;
}

.sitemap-col a {
    color: var(--primary-color, #1B68A8);
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.3s ease;
    display: inline-block;
    border-bottom: 1px solid transparent;
    line-height: 1.4;
}

.sitemap-col a:hover {
    border-bottom-color: var(--primary-color, #1B68A8);
}

@media (max-width: 1199px) {
    .sitemap-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .sitemap-main-title {
        font-size: 40px;
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .sitemap-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .sitemap-main-title {
        font-size: 32px;
        margin-bottom: 30px;
    }
    .sitemap-section-title {
        font-size: 24px;
    }
    .sitemap-container {
        padding: 40px 0 60px;
    }
}

@media (max-width: 480px) {
    .sitemap-grid {
        grid-template-columns: 1fr;
    }
    .sitemap-section-title {
        font-size: 22px;
    }
}

/* Security Section */
.security-section {
	background: linear-gradient(180deg, #EEF5FF 0%, #FFFFFF 5%, #FFFFFF 100%);
	padding: 130px 0px 0px 0px ;
}

.security-headers h1 {
    max-width: 960px;
    font-size: 60px;
    line-height: 80px;
    font-weight: 600;
}

.security-headers p {
    max-width: 748px;
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
}

.security-content {
    margin-top: 76px;
    gap: 52px;
}

.badge-container {   
    display: flex;
    align-content: center;
    justify-content: center;
    gap: 140px;
}

.badge-container img {
    width: 150px;
    height: 150px;
    object-fit: contain;
}

.security-content .card-container {
    padding-top: 52px;
    padding-bottom: 52px;
}
.security-content .card-container h2{
    max-width: 482px;
    font-size: 42px;
    padding-bottom: 32px;
    font-weight: 400;
    line-height: 40px;
    color: rgba(38, 41, 45, 1);
}

.security-content .card-container p{
    max-width: 1180px;
    font-size: 18px;
    line-height: 32px;
    font-weight: 400;
    text-align: center;
}

/* Security Cards List */
.security-content .card-list {
    max-width: 1200px;
    width: 100%;
    gap: 32px;
    margin-top: 60px;
}
.card-list{
    display: flex;
    flex-wrap: wrap;
}

/* Security Card Item */
.security-content .card-item {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.06);
    border-top: 0.67px solid rgba(241, 245, 249, 1);
    flex: 0 0 calc(33.333% - 21.33px);
    min-width: 0;
    gap:24px;
}

/* Security Card Icon */
.security-content .card-item .card-icon {
    width: 52px;
    height: 52px;
    object-fit: contain;
    background: rgba(243, 245, 248, 1);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Security Card Heading */
.security-content .card-item h3 {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 500;
    font-style: normal;
    line-height: 28px;
    letter-spacing: 0px;
    color: rgba(15, 23, 43, 1);
    text-align: left;
    margin: 0;
}

/* Security Card Description */
.security-content .card-item p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    line-height: 26px;
    letter-spacing: 0px;
    color: rgba(69, 85, 108, 1);
    margin: 0;
    text-align: left;
    max-width: 100%;
}

.security-content-2 p {
    font-size: 18px;
    line-height: 35px;
    font-weight: 400;
    color: rgba(38, 41, 45, 1);
    max-width: 952px ;
}

.security-content-2 button {
    background: rgba(0, 0, 0, 1);
    color: #FFFFFF;
    padding: 4px 25px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    line-height: 32px;
}
.card-header{
    /* border: 1px solid red; */
    margin-top: 40px;
}

@media (max-width: 1440px) {
    .security-headers h1 {
        font-size: 50px;
    }
    
    .security-headers p {
        font-size: 18px;
    }

    .badge-container {
        gap: 105px;   
    }

    .security-content .card-container h2{
        font-size: 38px;
    }
    
    .security-content .card-container p{
        font-size: 18px;
    }

    .security-content .card-list {
        margin-top: 50px;
    } 

    .security-content .card-item {
        padding: 32px;
        gap:24px;
    }

    .security-content .card-item h3 {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: -8px;
    }

    .security-content .card-item p {
        font-size: 16px;
        line-height: 26px;
    }

    .security-content-2 p {
        font-size: 18px;
    }
    
    .security-content-2 button {
        padding: 7px 22.5px;
        font-size: 14px;
        line-height: 32px;
    }
    .card-list{
        padding: 20px;
    }
    #lock-bottom{
        display: none;
    }
    #lock-top{
         display: none;
    }
}
 
@media (max-width: 1024px) {
    .security-headers h1 {
        font-size: 48px;
    }
    
    .security-headers p {
        font-size: 16px;
    }

    .security-content {
        margin-top: 66px;
        gap: 50px;
    } 

    .badge-container {
        gap: 105px;   
    }
    
    .badge-container img {
        width: 125px;
        height: 125px;
    }

    .security-content .card-container h2{
        font-size: 32px;
    }
    
    .security-content .card-container p{
        font-size: 16px;
    }

    .security-content .card-item {
        padding: 32px;
        gap:20px;
    }

    .security-content .card-item h3 {
        font-size: 18px;
        line-height: 26px;
    }

    .security-content .card-item p {
        font-size: 14px;
        line-height: 26px;
    }

    .security-content-2 p {
        font-size: 16px;
        line-height: 31px;
        max-width: 789px;
        text-align: center;
    }
    
    .security-content-2 button {
        padding: 4px 25px;
        font-size: 14px;
        line-height: 32px;
    }
    .card-list{
        padding: 10px;
    }
    .card-header{
        padding: 10px;
    }
    .security-content .card-item {
        flex: 0 0 calc(50% - 16px);
        max-width: calc(50% - 16px);
        width: auto;
        height: auto;
        min-height: 300px;
    }
}

@media (max-width: 950px) {
    .security-content .card-list {
        gap: 24px;
        padding: 0 20px;
    }
    
    .security-content .card-item {
        flex: 0 0 calc(50% - 12px);
        max-width: calc(50% - 12px);
        width: 100%;
        height: auto;
        min-height: 280px;
        padding: 28px;
    }
    
    .security-content .card-item h3 {
        font-size: 18px;
        line-height: 26px;
    }
    
    .security-content .card-item p {
        font-size: 15px;
        line-height: 24px;
    }
}

@media (max-width: 768px) {
    .security-content .card-list {
        gap: 20px;
        padding: 0 15px;
    }

    .badge-container {
        gap: 38px;
        padding: 2px;
        display: flex;
    }
    
    .security-content .card-item {
        flex: 0 0 calc(50% - 10px);
        max-width: calc(50% - 10px);
        width: 100%;
        height: auto;
        min-height: 260px;
        padding: 24px;
    }
    
    .security-content .card-item h3 {
        font-size: 17px;
        line-height: 24px;
    }
    
    .security-content .card-item p {
        font-size: 14px;
        line-height: 22px;
    }
}

@media (max-width: 640px) {
    .security-content .card-list {
        gap: 16px;
        padding: 0 12px;
    }
    
    .security-content .card-item {
        flex: 0 0 calc(50% - 8px);
        max-width: calc(50% - 8px);
        width: 100%;
        height: auto;
        min-height: 240px;
        padding: 20px;
    }
    
    .security-content .card-item h3 {
        font-size: 16px;
        line-height: 22px;
    }
    
    .security-content .card-item p {
        font-size: 13px;
        line-height: 20px;
    }
}

@media (max-width: 490px) {
    .badge-image{
        height: 90px !important;
        width: 90px !important;
    }
    .security-heading {
        font-size: 40px !important;
        line-height: 60px !important;
    }
    
    .security-content .card-list {
        flex-direction: column;
        gap: 16px;
        padding: 0 15px;
        align-items: stretch;
    }
    
    .security-content .card-item {
        flex: 1 1 100%;
        max-width: 100%;
        width: 100%;
        height: auto;
        min-height: auto;
        padding: 20px;
        align-items: center;
        text-align: center;
    }
    
    .security-content .card-item h3 {
        font-size: 16px;
        line-height: 22px;
    }
    
    .security-content .card-item p {
        font-size: 14px;
        line-height: 22px;
    }
    
    .security-content .card-item .card-icon {
        width: 48px;
        height: 48px;
    }
}

@media (max-width:500px){
    .badge-image{
        height: 90px !important;
        width: 90px !important;
    }
    .security-heading {
        font-size: 40px !important;
        line-height: 60px !important;
    }
}


/* // Pop_Up_Page_Css */
#wraper_over_blog{
    width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 1000;
    height: 100vh;
    width: 100vw;
    top: 0px;
    left: 0px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px);
    overflow-y: hidden;
}
#Security_PopUp_Page{
    background-color: #ffffff;
    border: 1px solid #E2E8F0;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 24px;
    height: 750px;
    width: 645px;
    flex-wrap: wrap;    
}
#Close_the_Security_PopUp{
    background: none;
    border: none;
    position: absolute;
    right: 15px;
    top:20px
}
#background-phone {
    background: #2B7FFF;
    height: 56px;
    width: 56px;
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;

    /* box shadow (card depth) */
    box-shadow: 0 4px 6px -4px #2B7FFF4D;

    /* drop shadow (glow effect) */
    filter: drop-shadow(0 10px 15px #2B7FFF4D);
}


#PopUp-form{
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.div_box{
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.Blog_Input{
    height: 40px;
    width: 412px;
    border: 1px solid #E5E7EB;
    border-radius: 6px;
}
.Blog_Lable{
    font-size: 15px;
    color: black;
    font-weight: lighter;
    line-height: 5px;
}
#Blog_Submit_button{
  height: 40px;
  width: 412px;
  background: linear-gradient(to right, #049BF5, #195AAE, #26317A);
  border-radius: 8px;
  color: white;
  border: none;
  margin-top: 0px;  
  cursor: pointer;
}
#information_section{
    color: #6A7282;
    font-size: 14px;
}
#Blog_PopUp_box-1{
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 8px;
}

@media (max-width:500px){
    #background-phone{
        display: none;
    }
    #Blog_heading{
        font-size: 25px !important;
    }
    .Blog_Input{
        height: 30px;
        width: 300px;
    }
    #Security_PopUp_Page{
        height: 600px;
        width: 400px;
        align-items: center !important;
        border: 1px solid #E2E8F0;
    }
    #Blog_Submit_button{
        height: 36px;
        width: 300px;
        border-radius: 8px;
    }
    #information_section{
        font-size: 10px;
    }
    #PopFormMessage{
        width: 360px !important;
        font-size: 10px !important;
    }
}

.mobile-announcement-banner{
    background: linear-gradient(90deg, rgba(28, 121, 212, 0.4) -50.48%, rgba(28, 121, 212, 0) 97.69%);
    width: 105%;
    height: 48px;
    max-width: 410px;
    border-left: 4px solid #1C79D4;
    gap: 12px;
}

.mobile-announcement-banner p{
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
}

.app-btn {
    border: 1px solid #9B9B9B;
    border-radius: 8px;
    padding: 10px 15px;
    height: 48px;
    color: #A9A9A9;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.app-btn p {
    font-size: 14px !important;
}

.app-btn:hover {
    border-color: #000000;
    color: #000000;
}

.app-store-icon {
    width: 15px;
    height: 15px;
    display: inline-block;
    vertical-align: text-bottom;
}