/*!
Theme Name: Astra Child
Author: Nazim Husain
Author URI: https://nazimansari.com
Description: Custom child theme
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: astrachild
Template: astra
Version: 1.0
*/

/**********
* GLOBAL *
**********/

:root {
	--primary: #5a48ff;
	--gradiant: linear-gradient(285.55deg, #5a48ff 45.39%, #026be3 98.66%);
	--gray: #e7ecf7;
	--headline: #181c39;
	--text: #4e5168;

	/* Images */
	--Call: url('/wp-content/themes/astra-child/assets/img/call.svg');
	--Mail: url('/wp-content/themes/astra-child/assets/img/mail.svg');
	--Location: url('/wp-content/themes/astra-child/assets/img/location.svg');
	--CaretRight: url('/wp-content/themes/astra-child/assets/img/caret-right.svg');
	--DoubleCheck: url('/wp-content/themes/astra-child/assets/img/double-check.svg');
	--Clock: url('/wp-content/themes/astra-child/assets/img/clock.svg');
	--ClockGray: url('/wp-content/themes/astra-child/assets/img/clock-gray.svg');
	--CaretDown: url('/wp-content/themes/astra-child/assets/img/caret-down.svg');
}

html {
	scroll-behavior: smooth;
}

body {
	/* -webkit-font-smoothing: auto; */
}

a:focus,
button:focus {
	outline: none;
}

.page-template .site-content > .ast-container,
.archive .site-content > .ast-container,
.single .site-content > .ast-container {
	display: block;
	max-width: 100%;
	padding: 0 !important;
}

.site-container {
	max-width: 1240px;
	padding: 90px 20px;
	margin: 0 auto;
}

.section-head {
	margin-bottom: 50px;
}

.section-head .section-title {
	margin-bottom: 0;
}

.section-head .divider {
	display: flex;
	align-items: center;
	justify-content: center;
	grid-gap: 40px;
	gap: 40px;
}

.section-head .divider::before,
.section-head .divider::after {
	content: '';
	height: 1px;
	background-color: #e8eaf6;
	flex: 1;
}

.section-title {
	font-size: 30px;
	line-height: 40px;
	font-weight: 600;
	color: var(--headline);
}

.section-head .desc {
	max-width: 700px;
	margin: 25px auto 0;
	text-align: center;
}

.desc {
	font-size: 18px;
	line-height: 30px;
	font-weight: 400;
	color: var(--text);
	margin-bottom: 0;
}

.desc p {
	margin-bottom: 0;
}

.desc p:not(:last-child) {
	margin-bottom: 25px;
}

.btn a,
.btn button {
	display: inline-block;
	font-size: 16px;
	line-height: 26px;
	font-weight: 600;
	padding: 12px 36px;
	border-radius: 5px;
	color: var(--headline);
	background: var(--primary);
	transition: 0.3s ease-in-out;
}

/* Slick Slider */
#page .slick-list {
	margin: 0 -10px;
	/* padding-right: 18% !important; */
}

#page .slick-track {
	display: flex;
}

#page .slick-slide {
	margin: 0 10px;
	height: initial;
}

#page .slick-prev,
#page .slick-next {
	top: 32%;
	width: 50px;
	height: 50px;
	z-index: 99;
	background-color: #fff;
	box-shadow: 0 3px 6px rgb(0, 0, 0, 10%);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	cursor: pointer;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
	transition: 0.3s all;
}

#page .slick-prev:hover,
#page .slick-next:hover {
	background-color: #f2f1ff;
}

#page .slick-prev,
#page .slick-next {
	top: 50%;
}

#page .slick-prev {
	left: -70px;
}

#page .slick-next {
	right: -67px;
}

#page .slick-prev:before,
#page .slick-next:before {
	content: '';
	width: 26px;
	height: 26px;
	background: var(--CaretRight) no-repeat center center/cover;
	background-size: 26px 26px;
	display: inline-block;
}

#page .slick-prev:before {
	transform: rotate(180deg);
}

#page .slick-dots {
	bottom: -40px;
}

#page .slick-dots li button {
	box-shadow: none;
}

#page .slick-dots li {
	margin: 5px 0 0;
	font-size: 16px;
}

#page .slick-dots li button:before {
	font-size: 9px;
	color: #e9ecf0;
	opacity: 1;
}

#page .slick-dots li.slick-active button:before {
	color: #978bff;
}

/* Featured Slick Slider */
.featured-statistics .slick-slide.slick-current {
	box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 10px 0px;
	border: 0;
}

.featured-statistics .slick-slide {
	transform: scale(1) translate(620px);
	transition: transform 1s ease, opacity 1s ease;
	opacity: 0.5;
	/* 	margin: 0 10px !important; */
}

.featured-statistics .slick-slide.slick-center + .slick-slide {
	transform: scale(1) translate(-620px);
	z-index: 10;
}

.featured-statistics .slick-slide.slick-center + .slick-slide + .slick-slide {
	transform: scale(1) translate(620px);
	z-index: 5;
}

.featured-statistics .slick-slide.slick-active {
	transform: scale(1) translate(620px);
}

.featured-statistics .slick-slide.slick-center {
	opacity: 1;
	margin: 0;
	transform: scale(1.035);
	z-index: 30;
}

/* Posts  Grid*/
.posts.grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 20px;
}

/* Card */
.posts .card {
	background: #ffffff;
	border: 1px solid #5e607524;
	border-radius: 8px;
}

.posts .card .title {
	margin-bottom: 0;
	color: var(--headline);
}

.posts .card .title a {
	display: block;
	font-size: 16px;
	line-height: 26px;
	font-weight: 500;
	color: var(--headline);
}

.posts .card.card-article-2 .title a {
	font-size: 18px;
	line-height: 28px;
}

.posts .card .title a:hover {
	color: var(--primary);
}

/* Card Article */
.posts .card-article {
	padding: 14px 20px;
	display: flex;
	align-items: center;
	grid-gap: 14px;
}

.posts .card-article-2 {
	padding: 20px;
}

.posts .card-article-2 .thumbnail {
	margin-bottom: 20px;
}

.posts .card-article-2 .thumbnail img {
	border-radius: 5px;
	width: 100%;
}

.posts .card-article img {
	flex: 0 0 40px;
}

.posts .card-article .title {
	flex: 1;
}

/* Card Features*/
.posts .card-features {
	border-radius: 20px;
	padding: 40px;
	display: flex !important;
	align-items: center;
	grid-gap: 40px;
	margin: 16px 10px !important;
}

.posts .card-features .thumbnail {
	flex: 0 0 44%;
}

.posts .card-features .thumbnail img {
	border-radius: 10px;
}

.posts .card-features .content {
	flex: 1;
}

.posts .card-features .title {
	margin-bottom: 12px;
}

.posts .card-features .title a {
	font-size: 24px;
	line-height: 38px;
}

.posts .card-features .excerpt {
	font-size: 16px;
	line-height: 30px;
	color: #4e5168;
	margin-bottom: 18px;
}

.posts .card-features .read-more {
	display: inline-block;
	font-size: 17px;
	line-height: 22px;
	color: var(--headline);
}

.posts .card-features .read-more:hover {
	color: var(--primary);
}

.posts .card-features .read-more:hover span {
	border-color: var(--primary);
}

.posts .card-features .read-more:hover path {
	fill: var(--primary);
}

.posts .card-features .read-more span {
	border-bottom: 1px solid var(--headline);
}

.posts .card-features .read-more svg {
	margin-left: 5px;
}

.progress-bar {
	background: var(--primary);
	height: 3px;
	width: 0%;
	position: fixed;
	top: 0;
	z-index: 888;
}

/* Social Sharing */
.social-share {
	display: none;
	position: fixed;
	bottom: 10px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 9999;
	width: 100%;
	padding: 0 5px;
	text-align: center;
}

.social-share.active {
	display: block;
}

.social-share .ns-buttons {
	display: flex;
	align-items: center;
	justify-content: center;
	grid-gap: 20px;
	margin-bottom: 0;
}

.social-share .ns-buttons .ns-inline-cta {
	margin-bottom: 0;
	color: #fff;
}

/* Header */
.site-header .ast-primary-header-bar {
	background: var(--gradiant);
}

.site-header .site-branding {
	padding: 0;
}

.home .site-header .ast-primary-header-bar,
.archive .site-header .ast-primary-header-bar {
	background: none;
}

/************
* HOMEPAGE *
************/

.home .section-title {
	text-align: center;
}

/* Hero */
.home .hero,
.archive .hero {
	margin-top: -80px;
	background: var(--gradiant);
}

.hero {
	background: var(--gradiant);
}

.home .hero .site-container,
.archive .hero .site-container {
	padding-top: 150px;
}

.hero .section-head {
	max-width: 700px;
	margin: 0 auto 50px;
}

.hero .section-title,
.hero .desc {
	color: #fff;
}

.hero .section-title {
	font-size: 50px;
	line-height: 66px;
	font-weight: 700;
	text-align: center;
}

.hero .search-box {
	max-width: 430px;
	margin: 0 auto;
}

.hero .search-box .probox {
	border-radius: 50px !important;
	border: 0 !important;
	padding: 18px 20px !important;
	display: flex;
	align-items: center;
	background: #4337e3 !important;
}

.hero .search-box #ajaxsearchlite1 .probox input {
	font-size: 16px !important;
	color: #fff !important;
}

.hero .search-box .probox .proinput input::placeholder {
	color: #fff !important;
	opacity: 1;
}

.hero .search-box .probox .promagnifier {
	box-shadow: none !important;
}

.hero .search-box .probox .innericon svg {
	fill: #fff !important;
}

.hero .search-box .probox .proclose svg {
	background: none !important;
}

.hero .search-box .probox .asl_simple-circle {
	border: 4px solid #fff;
}

.hero .search-box .probox .autocomplete {
	display: none;
}

.hero .search-box div.asl_m {
	z-index: 22;
}

#ajaxsearchliteres1 {
	padding: 8px;
	border-radius: 10px;
}

#ajaxsearchliteres1 .results .item .asl_content h3,
#ajaxsearchliteres1 .results .item .asl_content h3 a {
	display: block;
	font-family: inherit;
	color: var(--headline);
	font-size: 16px;
	line-height: 28px;
	text-shadow: none;
}

#ajaxsearchliteres1 .results .item .asl_content h3:hover,
#ajaxsearchliteres1 .results .item .asl_content h3 a:hover {
	color: var(--primary);
}

.hero .features {
	margin-top: 70px;
}

.hero .features .title {
	text-align: center;
	font-size: 17px;
	line-height: 24px;
	font-weight: 500;
	letter-spacing: 1px;
	color: #fff;
	margin-bottom: 50px;
}

.features .wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	grid-gap: 50px 125px;
	gap: 50px 125px;
}

.features img {
	width: auto;
	height: 30px;
	object-fit: contain;
}

/* Our Team */
.profile-card {
	border: 1px solid var(--gray);
	padding: 40px 25px;
	text-align: center;
	border-radius: 20px;
}

.profile-card .avatar {
	width: 166px;
	height: 166px;
	margin: 0 auto;
	border-radius: 100px;
}

.profile-card .name {
	display: block;
	font-size: 17px;
	line-height: 27px;
	font-weight: 500;
	color: #0f0f0f;
	margin: 10px 0 5px;
}

.profile-card .name:hover {
	color: var(--primary);
}

.profile-card .designation {
	font-size: 14px;
	line-height: 24px;
	color: #3f3f43;
}

.social-links {
	display: flex;
	justify-content: center;
	grid-gap: 18px;
	gap: 18px;
	padding: 24px 0 22px;
}

.social-links a {
	display: flex;
	transition: all 0.3s linear;
}

.social-links a:hover {
	transform: translateY(-3px);
}

.profile-card .bio {
	font-size: 14px;
	line-height: 28px;
	color: #3f3f43;
	text-align: left;
}

.profile-card .bio a {
	text-decoration: underline;
}

.profile-card .bio a:hover {
	text-decoration: none;
}

.post-section {
	text-align: left;
}

.post-section .post-heading {
	font-size: 13px;
	line-height: 22px;
	color: #3f3f43;
	letter-spacing: 1px;
	display: flex;
	align-items: center;
	grid-gap: 20px;
}

.post-section .post-heading:after {
	content: '';
	width: 100%;
	height: 1px;
	display: inline-block;
	background: var(--gray);
}

.post-section .post-list {
	margin-top: 20px;
}

.post-section .post-list .title {
	margin-bottom: 0;
	font-size: 14px;
	line-height: 22px;
}

.post-section .post-list .title:not(:last-child) {
	margin-bottom: 10px;
}

.post-section .post-list .title a {
	display: block;
	font-size: 14px;
	line-height: 22px;
	color: var(--headline);
	font-weight: 400;
}

.post-section .post-list .title a:hover {
	color: var(--primary);
}

/* Solutions */
.solutions .site-container {
	padding-top: 20px;
}

.solutions .section-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	grid-gap: 30px;
}

.solutions .section-head .section-title {
	flex: 0 0 35%;
	font-size: 40px;
	line-height: 58px;
	text-align: left;
}

.solutions .section-head .desc {
	flex: 0 0 50%;
	margin: 0;
	text-align: left;
	max-width: 100%;
}

.solutions .wrapper {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-gap: 20px;
	gap: 20px;
}

.solutions .block {
	background: linear-gradient(180deg, #f2f7ff 0%, #ffffff 80%);
	border: 1px solid rgba(94, 96, 117, 0.14);
	border-radius: 8px;
	padding: 24px;
	text-align: center;
}

.solutions .block:hover .title {
	text-decoration: underline;
}

.solutions .block:hover .icon {
	transform: scale(1.1);
}

.solutions .block .icon {
	margin-bottom: 20px;
	transition: all 0.3s linear;
}

.solutions .block .title {
	font-size: 16px;
	line-height: 25px;
	color: var(--headline);
	font-weight: 500;
}

/* Top Statistics */
.top-statistics {
	background: linear-gradient(180deg, #ffffff 0%, #f3f7ff 100%);
}

.top-statistics .site-container {
	padding-top: 20px;
}

/* Companies Statistics */
.companies-statistics .posts.grid {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	grid-gap: 20px;
}

.companies-statistics .card-article {
	padding: 15px 30px;
}

.companies-statistics .card-article .title {
	transition: all 0.2s linear;
	font-size: 16px;
	line-height: 26px;
	font-weight: 500;
}

.companies-statistics .card-article:hover .title {
	color: var(--primary);
}

/* Featured Statistics */
.featured-statistics {
	overflow-x: hidden;
}

.featured-statistics .site-container {
	padding-top: 20px;
	padding-bottom: 110px;
}

.featured-statistics .posts.grid {
	display: block;
}

/* Footer */
.site-footer .site-primary-footer-wrap {
	background: linear-gradient(90deg, #1a1c1f 0%, #1b1241 100%);
}

.site-footer .ast-builder-grid-row-4-equal .ast-builder-grid-row {
	grid-template-columns: 32% 0.7fr 1fr 24%;
}

.site-footer .widget .widget-title,
.site-footer .widget .wp-block-heading {
	font-size: 21px;
	line-height: 30px;
	color: #fff;
	font-weight: 700;
	margin-bottom: 25px;
}

.site-footer .widget p,
.site-footer .widget ul li,
.site-footer .widget ul li a {
	color: #fff;
	font-size: 15px;
	line-height: 24px;
	font-weight: 400;
}

.site-footer .widget ul li a:hover {
	text-decoration: underline;
}

.site-footer .widget ul li:not(:last-child) {
	margin-bottom: 12px;
}

.site-footer .widget p {
	font-size: 16px;
	line-height: 26px;
	margin-bottom: 18px;
	margin-bottom: 0;
}

.site-footer .widget#block-9 p {
	font-size: 14px;
}

.site-footer .site-footer-section-4 ul li {
	background: var(--Call) no-repeat left top;
	background-position: 0 2px;
	background-size: 15px 15px;
	padding-left: 25px;
}

.site-footer .site-footer-section-4 ul li:nth-child(2) {
	background: var(--Mail) no-repeat left top;
	background-position: 0 5px;
	background-size: 15px 15px;
}

.site-footer .site-footer-section-4 ul li:nth-child(3) {
	background: var(--Location) no-repeat left top;
	background-position: 0 5px;
	background-size: 16px 16px;
}

.site-footer .social-links {
	justify-content: start;
	grid-gap: 14px;
	gap: 14px;
	padding: 0;
}

/***********
* ARCHIVE *
***********/

.archive .page-content .desc {
	background: #fff;
	font-size: 16px;
	padding: 25px 25px 35px 25px;
	border-radius: 10px;
	border: 1px solid var(--gray);
	position: relative;
	margin-bottom: 40px;
}

.archive .desc .desc-content {
	height: 150px;
	overflow: hidden;
	transition: all 0.4s;
}

.archive .desc .desc-content.active {
	height: auto;
	overflow: visible;
}

.archive .page-content .desc .read-more {
	position: absolute;
	right: 25px;
	bottom: 10px;
	/* color: var(--primary); */
	text-decoration: underline;
	padding-right: 20px;
	cursor: pointer;
}

.archive .page-content.desc .read-more:after {
	content: '';
	background: var(--CaretDown) no-repeat;
	background-position: 0 0;
	background-size: 12px 12px;
	width: 12px;
	height: 12px;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.4s;
}

.archive .page-content .desc .desc-content.active .read-more:after {
	transform: translateY(-50%) rotate(180deg);
}

/* Pagination */
.pagination {
	text-align: center;
	margin-top: 50px;
	display: flex;
	grid-gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
}

.pagination .page-numbers {
	border: 1px solid #e1e6f1;
	padding: 7px 16px;
	border-radius: 5px;
	color: #222;
	background: #fff;
	font-size: 18px;
	line-height: 26px;
	transition: 0.3s ease-in-out;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
	background: var(--primary);
	color: #fff;
	border: 1px solid var(--primary);
}

/* Page Header */
.author .page-header .site-container {
	max-width: 1015px;
}

.page-header .site-container {
	max-width: 840px;
	padding: 70px 20px;
}

.page-header .section-title {
	margin-bottom: 0;
	font-size: 44px;
	line-height: 60px;
	text-align: center;
	font-weight: 700;
}

.page-header .desc {
	max-width: 700px;
	margin: 25px auto 0px;
	text-align: center;
}

/* Page Content */
.archive .page-content {
	background: #f3f7ff;
}

.page-content .site-container {
	padding-top: 50px;
}

/* Author box */
.author-box {
	display: flex;
	/* align-items: center; */
	grid-gap: 60px;
	gap: 60px;
}

.author-box .author-avatar {
	flex: 0 0 160px;
}

.author-box .author-avatar > img {
	border-radius: 100px;
}

.author-box .author-info {
	flex: 1;
}

.author-box .social-links {
	padding: 20px 0 0;
}

.author-box .name,
.author-box .bio {
	text-align: left;
}

.author-box .bio {
	max-width: 100%;
	text-align: left;
	font-size: 18px;
	line-height: 32px;
	margin-top: 20px;
}

.author-box .bio .read-more {
	color: #fff;
	font-weight: 500;
	text-decoration: underline;
	letter-spacing: 0.5px;
}

.author-box .bio .read-more:hover {
	text-decoration: none;
}

/*********** 
* Our Team *
************/

/* Page Header */
.page-header {
	background: #f3f7ff;
}

.page-template-our-team .page-header .desc {
	color: #4e5168;
}

/* Page Content */
.page-template-our-team .page-content .wrapper {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 20px;
}

/*********** 
* About Us *
************/

/* Page Header */
.page-template-about .page-header .site-container {
	max-width: 1240px;
}

.page-template-about .page-header .section-title {
	max-width: 800px;
	margin: 0 auto;
}

.page-template-about .page-header .desc {
	max-width: 750px;
}

.stats {
	margin-top: 50px;
	background: #ffffff;
	border: 1px solid #d8e5ff;
	border-radius: 10px;
	padding: 40px 60px;
	display: flex;
	justify-content: space-between;
}

.stats .block {
	text-align: center;
}

.stats .block:not(:last-child) {
	border-right: 1px solid #d8e5ff;
	margin-right: 50px;
	padding-right: 60px;
}

.stats .number {
	font-size: 34px;
	line-height: 1;
	color: var(--primary);
}

.stats .title {
	font-size: 16px;
	line-height: 24px;
	color: #535353;
	margin-top: 14px;
}

/* Evolution */
.evolution .site-container {
	display: flex;
	grid-gap: 110px;
}

.evolution .left-block {
	flex: 0 0 38.5%;
}

.evolution .section-title {
	font-size: 40px;
	line-height: 58px;
}

.evolution img {
	margin-top: 60px;
}

.evolution .right-block {
	flex: 1;
}

.evolution .right-block .block:not(:last-child) {
	margin-bottom: 45px;
}

/* Sticky Years */
.evolution .right-block {
	display: flex;
	align-items: start;
}

.evolution .sticky-year {
	display: inline-block;
	font-size: 38px;
	line-height: 1;
	font-weight: 600;
	color: #181c39;
	text-align: end;
	position: sticky;
	top: 20px;
}

.evolution .right-block .block {
	display: flex;
	grid-gap: 50px;
	gap: 50px;
	align-items: flex-start;
}

.evolution .block .year {
	flex: 0 1 auto;
	font-size: 38px;
	line-height: 1;
	font-weight: 600;
	color: #181c39;
	text-align: end;
	position: sticky;
	top: 20px;
}

.evolution .block .year-text {
	flex: 1;
	line-height: 30px;
	color: #4e5168;
}

/* Companies */
.companies.features {
	background: #5a48ff;
}

.companies .site-container {
	padding: 75px 20px 100px;
}

.companies .section-title {
	max-width: 750px;
	margin: 0 auto;
	text-align: center;
	color: #fff;
	font-size: 30px;
	line-height: 44px;
	margin-bottom: 65px;
}

/***************
* SINGLE POST *
***************/

/* Post Header */
.post-header {
	background: #f3f7ff;
}

.post-header .site-container {
	padding: 70px 20px;
}

.defualt-post .post-header .site-container {
	display: flex;
	grid-gap: 60px;
	align-items: center;
	padding: 50px 20px;
}

.defualt-post .post-header .left-block {
	flex: 1;
}

.defualt-post .post-header .right-block {
	flex: 0 0 45%;
}

.post-header .breadcrumbs {
	margin-bottom: 20px;
}

.post-header .breadcrumbs a,
.post-header .breadcrumbs span {
	display: inline-block;
	font-size: 14px;
	line-height: 22px;
	color: var(--headline);
	font-weight: 500;
}

.post-header .breadcrumbs .sep {
	font-size: 16px;
	margin: 0 6px;
}

.post-header .breadcrumbs a:hover {
	color: var(--primary);
}

.post-header .breadcrumbs a:first-child::before {
	content: '';
	width: 16px;
	height: 16px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'%3E%3Cpath d='m1 7 1.333-1.333m0 0L7 1l4.667 4.667m-9.334 0v6.666A.667.667 0 0 0 3 13h2m6.667-7.333L13 7m-1.333-1.333v6.666A.667.667 0 0 1 11 13H9m-4 0a.666.666 0 0 0 .667-.667V9.667A.667.667 0 0 1 6.333 9h1.334a.667.667 0 0 1 .666.667v2.666A.667.667 0 0 0 9 13m-4 0h4' stroke='%23181C39' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	display: inline-block;
	background-repeat: no-repeat;
	background-size: 16px 16px;
	margin-right: 6px;
	position: relative;
	top: 2px;
}

.post-header .entry-title {
	font-size: 40px;
	line-height: 58px;
	margin-bottom: 28px;
	font-weight: 700;
}

.post-header .thumbnail img {
	border-radius: 10px;
}

.post-header .post-meta {
	display: flex;
	grid-gap: 20px 30px;
	gap: 20px 30px;
	font-size: 14px;
	line-height: 20px;
}

.post-header .post-meta .date {
	background: var(--Clock) no-repeat left top;
	background-position: 0 3px;
	background-size: 14px 14px;
	padding-left: 24px;
}

.post-header .post-meta .read-time {
	background: var(--DoubleCheck) no-repeat left top;
	background-position: 0 6px;
	background-size: 20px 9px;
	padding-left: 30px;
}

.post-header .authors {
	display: flex;
	align-items: center;
	grid-gap: 40px;
	gap: 40px;
	margin-top: 44px;
	position: relative;
}

.post-header .authors .block {
	display: flex;
	align-items: center;
	grid-gap: 18px;
}

.post-header .authors .block img {
	border-radius: 100px;
	width: 70px;
	height: 70px;
}

.post-header .authors .author-info {
	font-size: 14px;
	line-height: 1.2;
}

.post-header .authors .author-info .name {
	display: block;
	font-weight: 500;
	margin-top: 15px;
	color: var(--headline);
}

.post-header .authors .author-info .name:hover {
	color: var(--primary);
}

/* Author Popup */
.author-popup {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	width: 480px;
	z-index: 100;
}

.author-popup .popup-body {
	background: #fff;
	border: 1px solid #e7efff;
	padding: 25px 20px;
	border-radius: 10px;
}

.author-popup .head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	grid-gap: 20px;
	gap: 20px;
	margin-bottom: 20px;
}

.author-popup .head > img {
	width: 60px !important;
	height: 60px !important;
}

.author-popup .head .name {
	font-size: 17px;
	line-height: 28px;
	font-weight: 500;
	margin-bottom: 4px;
}

.author-popup .head .meta-info {
	display: flex;
	align-items: center;
	font-size: 14px;
	line-height: 20px;
}

.author-popup .head .meta-info div:not(:last-child) {
	border-right: 2px solid #e7efff;
	padding-right: 15px;
	margin-right: 15px;
}

.author-popup .head .social-links {
	padding-top: 0px;
}

.author-popup .head .social-links img {
	width: 30px;
	height: 30px;
}

.author-popup .bio {
	font-size: 14px;
	line-height: 26px;
}

.author-popup .bio a {
	text-decoration: underline;
}

.author-popup .bio a:hover {
	text-decoration: none;
}

.author-popup .post-section {
	margin-top: 25px;
}

/* Seen On */
.as-seen-on {
	background: #f9fbff;
}

.as-seen-on .site-container {
	padding: 30px 20px;
}

.as-seen-on .wrapper {
	display: flex;
	grid-gap: 30px 40px;
	gap: 30px 40px;
}

.as-seen-on .title {
	flex: 0 0 100px;
	font-size: 16px;
	color: #595959;
}

.as-seen-on .logo-wrapper {
	display: flex;
	grid-gap: 30px 58px;
	gap: 30px 58px;
	overflow-x: auto;
	padding-bottom: 10px;
}

.as-seen-on img {
	flex: 1;
	height: 28px;
	object-fit: contain;
	filter: grayscale(100%) contrast(10%) brightness(1.3);
	transition: 0.3s;
}

.as-seen-on img:hover {
	filter: none;
}

/* Post Content */
.defualt-post .post-content .site-container {
	display: flex;
	grid-gap: 76px;
	gap: 76px;
}

.single .post-content .site-container {
	padding: 50px 20px;
}

.defualt-post .post-content .sidebar {
	flex: 0 0 310px;
}

.post-content .sidebar .block,
.single-company #ez-toc-container {
	background: #fff;
	border: 1px solid #e7efff;
	padding: 30px 10px;
	border-radius: 10px;
}

.single-company #ez-toc-container {
	display: block;
}

.single-company #ez-toc-container {
	padding: 30px 30px;
}

.single-company #ez-toc-container nav {
	margin-top: 25px;
}

.single-company #ez-toc-container ul li a {
	padding: 0;
	margin-bottom: 15px;
}

.single-company #ez-toc-container ul li:last-child a {
	margin-bottom: 0;
}

.single-company #ez-toc-container ul li a:hover {
	background: #fff;
	border-radius: 0px;
	color: var(--primary);
}

/* TOC */
.post-content .sidebar #toc {
	position: sticky;
	top: 20px;
}

.post-content .sidebar #toc {
	padding-right: 10px;
	padding-bottom: 0;
}

#ez-toc-container {
	display: none;
	padding: 0;
	border: 0;
	margin: 0;
	background: none;
	box-shadow: none;
}

#ez-toc-container .ez-toc-cssicon {
	left: 0px;
	top: -32px;
}

#toc .ez-toc-cssicon-toggle-label {
	display: none;
}

#toc #ez-toc-container {
	display: block;
}

#toc #ez-toc-container nav {
	max-height: 700px;
	overflow: auto;
}

#toc #ez-toc-container nav::-webkit-scrollbar {
	width: 2px;
	border-radius: 5px;
}

#toc #ez-toc-container nav::-webkit-scrollbar-thumb {
	background: #b4acff;
	border-radius: 10px;
}

#toc #ez-toc-container .ez-toc-title {
	margin: 0 20px 0px 10px;
}

div#ez-toc-container .ez-toc-title {
	display: block !important;
	font-size: 18px;
	line-height: 30px;
	color: #2d2e35;
}

div#ez-toc-container nav {
	margin-top: 15px;
}

div#ez-toc-container ul.ez-toc-list {
	max-height: 420px;
	overflow: auto;
	padding-right: 10px;
}

div#ez-toc-container ul {
	margin: 0 !important;
}

div#ez-toc-container ul ul {
	margin-left: 10px !important;
}

div#ez-toc-container ul li a,
div#ez-toc-container ul li a:visited {
	display: block;
	font-size: 16px;
	line-height: 28px;
	font-weight: 400;
	color: #2d2e35;
	margin: 0 0 3px;
	padding: 6px 10px;
}

#ez-toc-container ul li a:hover {
	background: #f3f7ff;
	color: var(--primary);
	text-decoration: none;
	border-radius: 4px;
}

#toc .active > a:first-child {
	background: #f3f7ff;
	color: var(--primary);
}

/* #ez-toc-container a:visited {
color: #4a4a4c;
} */

#toc .toc-foot {
	border-top: 1px solid #e7efff;
	display: block;
	margin-left: -10px;
	margin-right: -10px;
	/* text-align: center; */
	padding: 7px 20px;
	margin-top: 20px;
}

#toc .toc-foot span {
	font-size: 14px;
	line-height: 22px;
	color: #2d2e35;
}

#toc .toc-foot svg {
	position: relative;
	top: 4px;
	margin-left: 5px;
}

.defualt-post .post-content .content-wrapper {
	flex: 1;
}

.post-content .entry-content h2.wp-block-heading {
	background: #f3f7ff;
	border-left: 6px solid #5a48ff;
	padding: 8px 25px;
	border-radius: 5px;
}

.post-content .entry-content .wp-block-heading {
	margin: 30px 0 24px;
}

.post-content .entry-content .wp-block-image {
	margin: 30px 0;
}

.post-content .entry-content .wp-block-image figcaption {
	text-align: center;
	font-size: 13px;
}

body .ns-inline a.ns-button {
	margin: 0 10px 0 0 !important;
}

.single .ewd-ulb-autoplay {
	display: none !important;
}

.post-content .wp-block-table thead {
	border-bottom: 0;
}

.post-content .wp-block-table thead tr {
	background: #5a48ff;
}

.post-content .wp-block-table thead th {
	border-color: transparent;
	color: #fff;
	font-size: 18px;
	line-height: 24px;
	font-weight: 500;
	padding: 14px;
}

.post-content .wp-block-table td {
	border: none;
	border-top: 1px solid #d8e5ff;
	border-bottom: 1px solid #d8e5ff;
	text-align: center;
	font-size: 16px;
	line-height: 24px;
	padding: 15px;
}

.post-content .wp-block-table tr td:last-child {
	border-right: 1px solid #d8e5ff;
}

/* Sources */
.sources {
	margin-top: 50px;
	margin-bottom: 40px;
	border: 3px dashed #c9dbff;
	padding: 30px 30px 40px;
	border-radius: 10px;
}

.sources .wrapper {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	justify-content: space-between;
	grid-gap: 12px 20px;
	gap: 12px 20px;
}

.sources .title {
	font-size: 24px;
	line-height: 1;
	font-weight: 600;
	margin-bottom: 30px;
}

.sources .wrapper a {
	font-size: 16px;
	line-height: 26px;
	color: #3a2fa3;
}

.sources .wrapper a:hover {
	text-decoration: underline;
}

/* Yoast FAQs  */
.wp-block-yoast-faq-block {
	margin-top: 35px;
	margin-bottom: 0;
}

.wp-block-yoast-faq-block .schema-faq-section {
	border-bottom: 1px solid #e6ecf8;
	padding-bottom: 14px;
}

.wp-block-yoast-faq-block .schema-faq-section:not(:last-child) {
	margin-bottom: 14px;
}

.wp-block-yoast-faq-block .schema-faq-question {
	display: block;
	font-size: 18px;
	line-height: 24px;
	margin: 0;
	font-weight: 500;
	cursor: pointer;
	position: relative;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-right: 22px;
	cursor: pointer;
}

.wp-block-yoast-faq-block .schema-faq-question:after {
	content: '';
	background: var(--CaretDown) no-repeat;
	background-position: 0 0;
	background-size: 12px 12px;
	width: 12px;
	height: 12px;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.4s;
}

.wp-block-yoast-faq-block .active .schema-faq-question:after {
	transform: translateY(-50%) rotate(-180deg);
}

.wp-block-yoast-faq-block p.schema-faq-answer {
	display: none;
	font-size: 16px;
	line-height: 26px;
	margin: 15px 0 10px;
	color: #2d2e35;
}

/* Auhtor Box */
.single .author-box {
	grid-gap: 35px;
	gap: 35px;
	padding: 40px;
	border: 1px solid #c9dbff;
	border-radius: 10px;
	margin-top: 50px;
}

.single .author-box .author-avatar {
	flex: 0 0 100px;
}

.single-post .social-links {
	grid-gap: 12px;
	gap: 12px;
	padding: 15px 0 0;
}

.single .author-box .name {
	font-size: 16px;
	line-height: 24px;
	color: var(--headline);
	font-weight: 500;
}

.single .author-box .bio {
	font-size: 15px;
	line-height: 30px;
	color: #2d2e35;
	margin-top: 12px;
}

.single .author-box .bio a {
	color: #2d2e35;
}

/* Comments */

#comments {
	max-width: 850px;
	margin: 20px auto 0;
	padding-left: 20px;
	padding-right: 20px;
}

.single-post #comments {
	margin-top: 50px;
	padding: 0;
}

.single-post .ast-comment-list li.depth-1 {
	padding-left: 0;
	padding-top: 0;
}

#comments .ast-comment {
	padding-top: 30px;
	padding-bottom: 20px;
}

#comments .comment-respond {
	padding-left: 0;
	padding-right: 0;
	padding-top: 0;
}

#comments .comments-title {
	padding: 0;
}

#comments .comments-title {
	font-size: 26px;
	font-weight: 700;
	margin-bottom: 20px;
}

#comments .comment-respond {
	padding-top: 30px;
}

#comments .ast-comment-meta {
	display: block;
	padding-left: 42px;
	color: var(--headline);
}

#comments .ast-comment-meta cite {
	display: block;
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	margin-bottom: 6px;
}

#comments .ast-comment-meta a {
	color: var(--headline);
	font-size: 17px;
}

#comments .ast-comment-meta b,
#comments .ast-comment-meta strong {
	font-weight: 500;
}

#comments a.comment-reply-link {
	padding: 0;
}

#comments .ast-comment-meta a time {
	color: var(--text);
	font-size: 12px;
	display: block;
}

#comments .review-title {
	font-size: 19px;
	font-weight: 600;
}

#comments .rating {
	margin: 5px 0;
}

#comments .ast-comment-cite-wrap {
	margin-left: 0px;
}

#comments .ast-comment-avatar-wrap img {
	box-shadow: none;
}

#comments .ast-comment .comment-reply-link:hover {
	background: none;
	color: var(--ast-global-color-0);
	text-decoration: underline;
}

#comments .ast-comment-content.comment p {
	font-size: 16px;
	line-height: 1.9em;
}

#comments .comment-form p {
	margin-bottom: 20px;
}

#comments .comment-form-textarea textarea,
#comments .ast-grid-common-col input {
	background: #fbfbfb;
	box-shadow: none;
	border-color: #e1e1e1;
	border-radius: 4px;
	margin-bottom: 0;
	font-size: 16px;
	line-height: 26px;
	color: var(--headline);
}

#comments .ast-grid-common-col input {
	height: 50px;
}

#comments .form-submit .submit {
	background: var(--primary);
	height: 50px;
	border-radius: 4px;
}

/* More Statistics */
.more-statistics {
	margin-top: 50px;
}

.more-statistics .section-title {
	font-size: 24px;
	line-height: 32px;
	font-weight: 600;
	margin-bottom: 40px;
}

.more-statistics .posts.grid {
	grid-template-columns: repeat(3, 1fr);
}

.more-statistics .card-article .title a {
	font-size: 15px;
	line-height: 24px;
}

/****************
* COMPANY POST *
****************/

/* Post Header */
.company-post .post-header .site-container,
.company-post .post-content .site-container {
	max-width: 1080px;
}

.company-post .post-header .thumbnail {
	border-radius: 10px 10px 0 0;
	height: 400px;
	object-fit: cover;
}

.company-post .post-header .entry-title {
	background: #fff;
	border-bottom: 3px solid #5a48ff;
	padding: 10px 25px;
	border-radius: 0 0 10px 10px;
	font-size: 32px;
	line-height: 44px;
}

.company-post .post-header .wrapper {
	border: 3px solid #c6d3ef;
	padding: 40px;
	border-radius: 5px;
	margin-top: 120px;
}

.company-post .post-header .post-head {
	background: #f3f7ff;
	display: inline-flex;
	align-items: center;
	grid-gap: 40px;
	margin: -90px 0 0 -20px;
	padding: 0 20px;
	vertical-align: top;
}

.company-post .post-header .post-head .title {
	margin-bottom: 5px;
	font-size: 30px;
	line-height: 42px;
	font-weight: 700;
}

.company-post .post-header .post-head .left {
	flex: 0 0 88px;
}

.company-post .post-header .post-head .right {
	flex: 1;
}

.company-post .post-header .post-meta {
	align-items: center;
}

.company-post .post-header .post-meta .cat {
	font-size: 18px;
	line-height: 30px;
	font-weight: 500;
	color: #6f7286;
}

.company-post .post-header .post-meta .date {
	color: #6f7286;
}

.company-details {
	margin-top: 25px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 25px;
}

.company-details .block .title {
	font-size: 15px;
	line-height: 25px;
	color: #6f7286;
}

.company-details .block .content {
	font-size: 15px;
	line-height: 27px;
	color: #181c39;
	font-weight: 600;
	margin-top: 8px;
}

.company-details .block .content p {
	margin-bottom: 0 !important;
}

.company-post .companies-statistics {
	margin-top: 50px;
}

/**************
 * CONTACT US *
 **************/

/* Page Content */
.page-template-contact .page-content .site-container {
	padding-top: 70px;
	display: flex;
	grid-gap: 70px;
	gap: 70px;
}

.page-template-contact .page-content .left-block {
	flex: 0 0 45%;
}

.page-template-contact .page-content .right-block {
	flex: 1;
}

.contact-info .desc {
	font-size: 16px;
}

.contact-info .block {
	display: flex;
	grid-gap: 30px;
}

.contact-info .block:not(:last-child) {
	margin-bottom: 40px;
}

.contact-info .block .left {
	flex: 0 0 72px;
	width: 72px;
	height: 72px;
	padding: 10px;
	border-radius: 50px;
	background: #f8f8f8;
	display: flex;
	justify-content: center;
	align-items: center;
}

.contact-info .block .right {
	flex: 1;
}

.contact-info .block img {
	width: 28px;
	height: auto;
}

.contact-info .mail .right,
.contact-info .call .right {
	display: flex;
	align-items: center;
}

.contact-info .block a,
.contact-info .block p {
	color: var(--text);
}

.contact-info .block a:hover {
	text-decoration: underline;
}

.contact-info .block .right span,
.contact-info .block .right a {
	display: block;
	margin-bottom: 10px;
}

.contact-info .block .right span {
	margin-bottom: 16px;
}

.contact-info .block .right span:last-child,
.contact-info .block .right a:last-child {
	margin-bottom: 0;
}

.contact-form {
	padding: 40px;
	border-radius: 10px;
	background: #fafafe;
	border: 1px solid #ebebff;
}

.contact-form .wpforms-container {
	margin: 0 !important;
}

.contact-form .wpforms-field {
	padding: 10px 0 !important;
}

.contact-form .wpforms-field input,
.contact-form .wpforms-field textarea {
	border: 1px solid #ebebeb !important;
	box-shadow: none !important;
	font-size: 16px !important;
	border-radius: 5px !important;
	height: 48px;
}

.contact-form .wpforms-field textarea {
	height: 140px !important;
}

.contact-form .wpforms-submit-container .wpforms-submit {
	padding: 12px 40px;
	font-size: 16px;
	line-height: 1;
	background: var(--primary) !important;
	height: 48px !important;
}

.contact-form .wpforms-submit-container .wpforms-submit:hover {
	opacity: 0.95;
}

/************************
 * Statistics and Facts *
 ************************/

.saf .site-container {
	max-width: 1080px;
	padding-top: 60px;
}

.saf .wrapper {
	border-radius: 20px;
	background: #f3f7ff;
	border: 1px solid #e3e8f3;
}

.saf .wrapper:not(:last-child) {
	margin-bottom: 40px;
}

.saf .wrapper .banner {
	height: 400px;
	object-fit: cover;
	border-radius: 20px 20px 0 0;
}

.saf .wrapper .content {
	padding: 25px 30px 30px;
}

.saf .content h2,
.saf .content h3 {
	margin-bottom: 25px;
	font-size: 28px;
	line-height: 38px;
	color: var(--headline);
}

/* .saf .content h2 a,
.saf .content h3 a {
	color: var(--headline);
} */

.saf .content h2 a:hover,
.saf .content h3 a:hover {
	color: var(--primary);
	text-decoration: underline;
}

.saf .content .desc {
	font-size: 16px;
	line-height: 30px;
}

.saf .content .desc p:not(:last-child) {
	margin-bottom: 20px;
}

.saf .content hr.seprator {
	background: #c6d3ef;
	display: block;
	margin-top: 30px;
	margin-bottom: 30px;
}

.saf .card-article .title {
	font-size: 16px;
	line-height: 26px;
	font-weight: 500;
}

.saf .card-article:hover .title {
	color: var(--primary);
}

/****************
* MEDIA QUERIES *
*****************/

@media (max-width: 1200px) {
	/* Featured Slick Slider */
	.featured-statistics .slick-slide {
		transform: scale(1) translate(510px);
	}

	.featured-statistics .slick-slide.slick-center + .slick-slide {
		transform: scale(1) translate(-510px);
		z-index: 10;
	}

	.featured-statistics .slick-slide.slick-center + .slick-slide + .slick-slide {
		transform: scale(1) translate(510px);
		z-index: 5;
	}

	.featured-statistics .slick-slide.slick-active {
		transform: scale(1) translate(510px);
	}
}

@media (max-width: 1080px) {
	.featured-statistics .slick-slide {
		transform: none;
	}

	.featured-statistics .slick-slide.slick-center + .slick-slide {
		transform: none;
		z-index: 10;
	}

	.featured-statistics .slick-slide.slick-center + .slick-slide + .slick-slide {
		transform: none;
		z-index: 5;
	}

	.featured-statistics .slick-slide.slick-active {
		transform: none;
	}

	.featured-statistics .slick-slide {
		transition: transform 0.5s ease, opacity 0.5s ease;
		opacity: 1;
	}

	.featured-statistics .slick-slide.slick-center {
		transform: none;
	}

	/*********** 
	* About Us *
	************/

	/* Page Header */
	.stats {
		padding: 30px;
	}

	.stats .block:not(:last-child) {
		margin-right: 25px;
		padding-right: 25px;
	}

	.stats .number {
		font-size: 30px;
	}

	/* More Statistics */
	.more-statistics .posts.grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 980px) {
	/* Global */
	/* Posts Grid*/
	.posts.grid {
		grid-template-columns: repeat(3, 1fr);
	}

	/************
	* HOMEPAGE *
	************/
	/* Solutions */
	.solutions .section-head {
		justify-content: flex-start;
	}

	.solutions .section-head .section-title {
		flex: 0 0 40%;
		font-size: 32px;
		line-height: 42px;
	}

	.solutions .section-head .desc {
		flex: 1;
	}

	.solutions .wrapper {
		grid-template-columns: repeat(4, 1fr);
	}

	/* Footer */
	.site-footer .ast-builder-grid-row-4-equal .ast-builder-grid-row {
		grid-template-columns: 25% 0.7fr 1fr 20%;
	}

	/************
	* ABOUT US *
	************/

	/* Evolution */
	.evolution .site-container {
		grid-gap: 40px;
	}

	.evolution .right-block .block {
		grid-gap: 30px;
	}

	.evolution .sticky-year,
	.evolution .block .year {
		font-size: 30px;
	}

	/***************
	* SINGLE POST *
	***************/

	/* Post Header */
	.defualt-post .post-header .site-container {
		grid-gap: 30px;
	}

	.post-header .entry-title {
		font-size: 34px;
		line-height: 46px;
	}

	/* Post Content */
	.single .post-content .site-container {
		padding: 40px 20px 50px;
	}

	.defualt-post .post-content .site-container {
		padding: 40px 20px 50px;
		grid-gap: 40px;
		gap: 40px;
	}

	.defualt-post .post-content .sidebar {
		flex: 0 0 260px;
	}

	/* Sources */
	.sources .wrapper {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 767px) {
	/**********
	* GLOBAL *
	**********/

	.site-container {
		max-width: 100%;
		padding: 50px 20px;
	}

	.section-head {
		margin-bottom: 30px;
	}

	.section-head .divider {
		grid-gap: 20px;
	}

	.section-title {
		font-size: 24px;
		line-height: 34px;
	}

	.desc {
		font-size: 16px;
		line-height: 28px;
	}

	.section-head .desc {
		max-width: 100%;
		margin: 15px auto 0;
	}

	/* Posts */

	/* Card */
	.posts .card .title a {
		font-size: 15px;
		line-height: 24px;
	}

	.posts .card.card-article-2 .title a {
		font-size: 17px;
		line-height: 26px;
	}

	/* Card Article */
	.posts .card-article img {
		flex: 0 0 35px;
		width: 35px;
	}

	.posts .card-article-2 {
		padding: 20px;
	}

	/* Card Features*/
	.posts .card-features {
		border-radius: 10px;
		padding: 20px 20px 25px;
		display: block !important;
	}

	.posts .card-features .thumbnail {
		margin-bottom: 14px;
	}

	.posts .card-features .title {
		margin-bottom: 12px;
	}

	.posts .card-features .title a {
		font-size: 20px;
		line-height: 28px;
	}

	.posts .card-features .excerpt {
		font-size: 15px;
		line-height: 25px;
		margin-bottom: 10px;
	}

	.posts .card-features .read-more {
		font-size: 16px;
	}

	/*  Header */
	.site-header .site-logo-img img {
		max-width: 110px;
		width: 110px;
	}

	/************
	* HOMEPAGE *
	************/

	.home .section-title {
		text-align: center;
	}

	/* Hero */
	.home .hero,
	.archive .hero {
		margin-top: -66px;
	}

	.home .hero .site-container {
		padding-top: 116px;
	}

	.hero .section-head {
		max-width: 100%;
		margin: 0 auto 30px;
	}

	.hero .section-title {
		font-size: 30px;
		line-height: 40px;
	}

	.hero .search-box {
		max-width: 100%;
	}

	.hero .search-box .probox {
		padding: 14px 15px !important;
	}

	#ajaxsearchliteres1 .results .item .asl_content h3,
	#ajaxsearchliteres1 .results .item .asl_content h3 a {
		font-size: 15px;
	}

	.hero .features {
		margin-top: 50px;
		overflow: hidden;
	}

	.features .title {
		font-size: 15px;
		margin-bottom: 30px;
	}

	.features .wrapper {
		display: flex;
		flex-wrap: nowrap;
		grid-gap: 40px;
		gap: 40px;
		justify-content: start;
		overflow-x: auto;
	}

	.features img {
		display: inline-block;
		height: 22px;
		margin-bottom: 10px;
	}

	/* Our Team */
	.profile-card {
		padding: 30px 20px;
		border-radius: 10px;
	}

	.profile-card .avatar {
		width: 120px;
		height: 120px;
	}

	.profile-card .name {
		font-size: 16px;
		line-height: 25px;
		margin: 10px 0 5px;
	}

	.profile-card .designation {
		font-size: 13px;
		line-height: 23px;
	}

	.profile-card .social-links {
		grid-gap: 15px;
		gap: 15px;
		padding: 18px 0 20px;
	}

	.post-section .post-heading {
		grid-gap: 15px;
	}

	.post-section .post-list {
		margin-top: 15px;
	}

	.post-section .post-list .title:not(:last-child) {
		margin-bottom: 8px;
	}

	/* Solutions */
	.solutions .section-head {
		display: block;
	}

	.solutions .section-head .section-title {
		font-size: 28px;
		line-height: 36px;
	}

	.solutions .section-head .desc {
		margin-top: 18px;
	}

	.solutions .wrapper {
		grid-template-columns: repeat(3, 1fr);
		grid-gap: 15px;
	}

	.solutions .block {
		padding: 20px 15px;
	}

	.solutions .block .icon {
		width: 40px;
		height: 40px;
	}

	.solutions .block .title {
		font-size: 14px;
		line-height: 22px;
	}

	/* Footer */
	.site-footer .ast-builder-grid-row-4-equal .ast-builder-grid-row {
		grid-template-columns: repeat(1, 1fr);
		grid-gap: 25px;
	}

	.site-footer .widget .widget-title,
	.site-footer .widget .wp-block-heading {
		font-size: 18px;
		line-height: 28px;
		margin-bottom: 20px;
	}

	.site-footer .widget p {
		font-size: 15px;
		line-height: 25px;
		margin-bottom: 15px;
		margin-bottom: 0;
	}

	.site-footer .widget#block-9 p {
		font-size: 14px;
	}

	.site-footer .site-footer-section-4 ul li {
		background: var(--Call) no-repeat left top;
		background-position: 0 2px;
		background-size: 15px 15px;
		padding-left: 25px;
	}

	.site-footer .site-footer-section-4 ul li:nth-child(2) {
		background: var(--Mail) no-repeat left top;
		background-position: 0 5px;
		background-size: 15px 15px;
	}

	.site-footer .site-footer-section-4 ul li:nth-child(3) {
		background: var(--Location) no-repeat left top;
		background-position: 0 5px;
		background-size: 16px 16px;
	}

	/**********
	* ARCHIVE *
	**********/

	.archive .desc {
		margin: -50px -20px 30px -25px;
		border-radius: 0;
		font-size: 15px;
		line-height: 27px;
	}

	.archive .desc p {
		margin-bottom: 20px;
	}

	.archive .desc .read-more {
		font-size: 14px;
	}

	/* Pagination */
	.pagination {
		margin-top: 40px;
		grid-gap: 10px;
	}

	.pagination .page-numbers {
		padding: 6px 17px;
		font-size: 15px;
		line-height: 24px;
		display: inline-block;
	}

	/* Page Header */
	.page-header .site-container {
		max-width: 100%;
		padding: 50px 20px;
	}

	.page-header .section-title {
		font-size: 30px;
		line-height: 40px;
	}

	.page-header .desc {
		max-width: 100%;
		margin: 20px auto 0px;
	}

	/* Hero */
	.archive .hero .site-container {
		padding-top: 100px;
	}

	/* Author box */
	.author-box {
		display: block;
	}

	.author-box .author-avatar {
		margin-bottom: 30px;
		text-align: center;
	}

	.author-box .author-avatar > img {
		width: 120px;
		height: 120px;
	}

	.author-box .social-links {
		padding: 15px 0 0;
	}

	.author-box .name {
		font-size: 25px;
		line-height: 35px;
		text-align: center;
	}

	.author-box .bio {
		text-align: center;
		font-size: 16px;
		line-height: 28px;
		margin-top: 10px;
	}

	/*********** 
	* Our Team *
	************/

	/* Page Content */
	.page-template-our-team .page-content .wrapper {
		grid-template-columns: repeat(2, 1fr);
	}

	/*********** 
	* About Us *
	************/

	/* Page Header */
	.page-template-about .page-header .section-title {
		max-width: 100%;
	}

	.page-template-about .page-header .desc {
		max-width: 100%;
	}

	.stats {
		margin-top: 30px;
		padding: 30px 20px;
		flex-wrap: wrap;
		justify-content: center;
		grid-gap: 25px 20px;
	}

	.stats .block {
		flex: 0 0 calc(50% - 15px);
		text-align: center;
	}

	.stats .block:not(:last-child) {
		border-right: 0;
		padding-right: 0;
		margin-right: 0;
	}

	.stats .number {
		font-size: 24px;
	}

	.stats .title {
		font-size: 14px;
		line-height: 22px;
		margin-top: 10px;
	}

	/* Evolution */
	.evolution .site-container {
		display: block;
	}

	.evolution .left-block {
		margin-bottom: 30px;
	}

	.evolution .section-title {
		font-size: 26px;
		line-height: 36px;
	}

	.evolution img {
		margin-top: 30px;
	}

	.evolution .right-block .block:not(:last-child) {
		margin-bottom: 30px;
	}

	.evolution .right-block {
		display: flex;
		align-items: start;
	}

	.evolution .sticky-year,
	.evolution .block .year {
		font-size: 28px;
	}

	.evolution .right-block .block {
		grid-gap: 25px;
		gap: 25px;
	}

	.evolution .block .year-text {
		font-size: 15px;
		line-height: 25px;
	}

	/* Companies */

	.companies .site-container {
		padding: 50px 20px;
	}

	.companies .section-title {
		max-width: 100%;
		font-size: 20px;
		line-height: 30px;
		margin-bottom: 40px;
	}

	.companies .wrapper {
		grid-gap: 20px 30px;
		flex-wrap: wrap;
		overflow-x: visible;
	}

	/***************
	* SINGLE POST *
	***************/

	/* Post Header */
	.post-header .site-container {
		padding: 50px 20px;
	}

	.defualt-post .post-header .site-container {
		flex-direction: column-reverse;
		grid-gap: 25px;
		padding: 30px 20px;
	}

	.defualt-post .post-header .right-block {
		flex: 0 0 100%;
	}

	.post-header .breadcrumbs {
		margin-bottom: 10px;
	}

	.post-header .breadcrumbs a {
		font-size: 13px;
		line-height: 24px;
	}

	.post-header .breadcrumbs a:first-child::before {
		width: 15px;
		height: 15px;
		background-size: 15px 15px;
		top: 2px;
	}

	.post-header .entry-title {
		font-size: 24px;
		line-height: 36px;
		margin-bottom: 22px;
	}

	.post-header .post-meta {
		flex-wrap: wrap;
		grid-gap: 10px 20px;
		gap: 10px 20px;
		font-size: 13px;
	}

	.post-header .post-meta .date {
		background-position: 0 4px;
		background-size: 13px 13px;
		padding-left: 20px;
	}

	.post-header .post-meta .read-time {
		background-size: 18px 9px;
		padding-left: 24px;
	}

	.post-header .authors {
		display: flex;
		align-items: center;
		grid-gap: 20px;
		gap: 20px;
		margin-top: 25px;
	}

	.post-header .authors .block {
		display: inline-flex;
		align-items: center;
		grid-gap: 12px;
	}

	.post-header .authors .block img {
		width: 50px;
		height: 50px;
	}

	.post-header .authors .author-info {
		font-size: 14px;
		line-height: 1.4;
	}

	.post-header .authors .author-info .text {
	}

	.post-header .authors .author-info .name {
		font-weight: 500;
		margin-top: 8px;
	}

	/* Seen On */

	.as-seen-on .site-container {
		padding: 20px 20px;
	}

	.as-seen-on .wrapper {
		gap: 20px;
	}

	.as-seen-on .title {
		flex: 0 0 85px;
		font-size: 15px;
	}

	.as-seen-on .logo-wrapper {
		grid-gap: 34px;
		gap: 34px;
	}

	.as-seen-on img {
		height: 22px;
	}

	/* Post Content */
	.defualt-post .post-content .site-container {
		display: block;
	}

	.defualt-post .post-content .sidebar {
		display: none;
	}

	/* TOC */
	#toc #ez-toc-container {
		display: none;
	}

	.single-company #toc #ez-toc-container {
		display: block;
	}

	#ez-toc-container {
		display: block;
		background: #fff;
		border: 1px solid #e7efff;
		padding: 20px !important;
		border-radius: 10px;
	}

	#ez-toc-container nav {
		margin-top: 15px !important;
	}

	#ez-toc-container ul.ez-toc-list {
		max-height: auto;
		overflow: auto;
		padding-right: 0;
	}

	#ez-toc-container ul li a {
		font-size: 15px !important;
		margin: 0 0 10px !important;
		background: none;
		padding: 0 !important;
	}

	#ez-toc-container ul li:last-child a {
		margin-bottom: 0 !important;
	}

	#ez-toc-container ul li a:hover {
		background: none;
		border-radius: 0;
	}

	.post-content .entry-content h2.wp-block-heading {
		padding: 8px 15px;
	}

	.post-content .entry-content .wp-block-heading {
		margin: 30px 0 24px;
	}

	.post-content .entry-content .wp-block-image {
		margin: 25px 0;
	}

	.post-content .wp-block-table table {
		width: 100%;
		min-width: 520px;
		overflow-x: auto;
		white-space: nowrap;
	}

	.post-content .wp-block-table thead th {
		font-size: 15px;
		padding: 12px;
	}

	.post-content .wp-block-table td {
		font-size: 14px;
		padding: 12px;
	}

	/* Sources */
	.sources {
		margin-top: 30px;
		margin-bottom: 30px;
		padding: 25px 20px 30px;
	}

	.sources .wrapper {
		grid-template-columns: repeat(4, 1fr);
		grid-gap: 12px 20px;
		gap: 12px 20px;
	}

	.sources .title {
		font-size: 20px;
		margin-bottom: 25px;
	}

	.sources .wrapper a {
		font-size: 15px;
		line-height: 24px;
	}

	/* Yoast FAQs  */
	.wp-block-yoast-faq-block {
		margin-top: 25px;
	}

	.wp-block-yoast-faq-block .schema-faq-section {
		padding-bottom: 12px;
	}

	.wp-block-yoast-faq-block .schema-faq-section:not(:last-child) {
		margin-bottom: 8px;
	}

	.wp-block-yoast-faq-block .schema-faq-question {
		font-size: 16px;
		line-height: 25px;
		padding-right: 20px;
		padding-top: 10px;
		padding-bottom: 10px;
	}

	.wp-block-yoast-faq-block .schema-faq-question:after {
		background-size: 11px 11px;
		width: 11px;
		height: 11px;
	}

	.wp-block-yoast-faq-block p.schema-faq-answer {
		font-size: 15px;
		line-height: 25px;
		margin: 12px 0 8px;
	}

	/* Auhtor Box */
	.single .author-box {
		padding: 25px 20px;
		margin-top: 30px;
	}

	.single .author-box .author-avatar > img {
		width: 80px;
		height: 80px;
	}

	.single .author-box .author-avatar {
		margin-bottom: 25px;
	}

	/* Comments */
	#comments {
		max-width: 100%;
	}

	.single-post #comments .comments-title {
		font-size: 20px;
		font-weight: 700;
		margin-bottom: 20px;
	}

	.ast-separate-container .ast-comment-list li.depth-1 {
		padding-bottom: 0 !important;
	}

	#comments .ast-comment-meta {
		padding-left: 30px;
		padding-bottom: 0;
	}

	#comments .ast-comment-meta cite {
		font-size: 15px;
		margin-bottom: 3px;
	}

	#comments .ast-comment-content.comment p {
		font-size: 15px;
	}

	#reviews .ast-comment-list li.depth-1 {
		padding-left: 0px;
		padding-right: 0px;
	}

	#comments .ast-comment-meta a {
		font-size: 16px;
	}

	#comments .ast-comment-cite-wrap {
		margin-left: 0px;
	}

	#comments .ast-comment-avatar-wrap img {
		max-width: 2.75em;
		object-fit: cover;
	}

	#comments .comment-form-textarea textarea {
		margin-bottom: 0;
	}

	#comments .ast-grid-common-col input {
		margin-bottom: 0;
	}

	/* More Statistics */
	.more-statistics {
		margin-top: 40px;
	}

	.more-statistics .section-title {
		font-size: 20px;
		line-height: 30px;
		margin-bottom: 30px;
	}

	/****************
	* COMPANY POST *
	****************/

	/* Post Header */
	.company-post .post-header .site-container {
		max-width: 100%;
		padding-top: 30px;
		padding-bottom: 30px;
	}

	.company-post .post-header .thumbnail {
		height: 200px;
	}

	.company-post .post-header .entry-title {
		font-size: 22px;
		line-height: 30px;
		padding: 8px 20px;
	}

	.company-post .post-header .wrapper {
		padding: 20px;
		margin-top: 50px;
	}

	.company-post .post-header .post-head {
		grid-gap: 20px;
		align-items: start;
		margin: 0;
		padding: 0;
	}

	.company-post .post-header .post-head .title {
		font-size: 20px;
		line-height: 30px;
	}

	.company-post .post-header .post-head .left {
		flex: 0 0 50px;
	}

	.company-post .post-header .post-meta {
		grid-gap: 5px 20px;
		gap: 5px 20px;
	}

	.company-post .post-header .post-meta .cat {
		font-size: 15px;
		line-height: 26px;
	}

	.company-post .post-header .post-meta .date {
		background: var(--ClockGray) no-repeat left top;
		background-position: 0 3.5px;
		background-size: 12px 12px;
		padding-left: 19px;
	}

	.company-details {
		margin-top: 30px;
		grid-template-columns: repeat(3, 1fr);
		grid-gap: 20px;
	}

	.company-details .block .title {
		font-size: 14px;
		line-height: 24px;
	}

	.company-details .block .content {
		font-size: 14px;
		line-height: 26px;
		margin-top: 3px;
	}

	/* Post Content */
	.company-post .companies-statistics {
		margin-top: 40px;
	}

	/**************
 * CONTACT US *
 **************/

	/* Banner */

	.page-template-contact .page-content .site-container {
		padding-top: 50px;
		display: block;
	}

	.page-template-contact .page-content .left-block {
		margin-bottom: 30px;
	}

	.contact-info .desc {
		font-size: 15px;
	}

	.contact-info .block {
		grid-gap: 15px;
	}

	.contact-info .block:not(:last-child) {
		margin-bottom: 20px;
	}

	.contact-info .block .left {
		flex: 0 0 40px;
		width: 40px;
		height: 40px;
	}

	.contact-info .block img {
		width: 16px;
	}

	.contact-info .block .right span,
	.contact-info .block .right a {
		display: block;
		margin-bottom: 8px;
	}

	.contact-info .block .right span {
		margin-bottom: 12px;
	}

	.contact-form {
		padding: 30px 20px;
	}

	.contact-form .wpforms-field input,
	.contact-form .wpforms-field textarea {
		font-size: 15px !important;
		height: 44px;
	}

	.contact-form .wpforms-field textarea {
		height: 90px !important;
	}

	.contact-form .wpforms-submit-container .wpforms-submit {
		width: 100%;
		font-size: 15px;
		height: 44px !important;
	}

	.contact-form .wpforms-submit-container .wpforms-submit:hover {
		opacity: 0.95;
	}

	/************************
 * Statistics and Facts *
 ************************/

	.saf .site-container {
		max-width: 100%;
		padding-top: 40px;
	}

	.saf .wrapper {
		border-radius: 10px;
	}

	.saf .wrapper:not(:last-child) {
		margin-bottom: 25px;
	}

	.saf .wrapper .banner {
		height: 180px;
		border-radius: 10px 10px 0 0;
	}

	.saf .wrapper .content {
		padding: 20px 20px 25px;
	}

	.saf .content h2,
	.saf .content h3 {
		margin-bottom: 20px;
		font-size: 22px;
		line-height: 32px;
	}

	.saf .content .desc {
		font-size: 15px;
		line-height: 28px;
	}

	.saf .content .desc p:not(:last-child) {
		margin-bottom: 15px;
	}

	.saf .content hr.seprator {
		margin-top: 20px;
		margin-bottom: 20px;
	}

	.saf .card-article .title {
		font-size: 15px;
		line-height: 25px;
	}
}

@media (max-width: 580px) {
	/* Global */
	/* Posts Grid*/
	.posts.grid {
		grid-template-columns: repeat(1, 1fr);
		grid-gap: 15px;
	}

	/* Social Sharing */
	.social-share {
		bottom: 30px;
	}

	.social-share .ns-buttons {
		display: block;
	}

	.social-share .ns-buttons .ns-inline-cta {
		margin-bottom: 10px;
		font-size: 16px;
	}

	.social-share .ns-buttons-wrapper {
		justify-content: center;
		grid-gap: 10px 0;
	}

	/************
	* HOMEPAGE *
	************/
	/* Solutions */
	.solutions .wrapper {
		grid-template-columns: repeat(2, 1fr);
	}

	/* Companies Statistics */
	.companies-statistics .posts.grid {
		grid-gap: 15px;
		flex-direction: column;
	}

	.companies-statistics .card-article {
		padding: 15px 30px;
		flex: 0 0 calc(50% - 7.5px);
	}

	.companies-statistics .card-article {
		padding: 12px 20px;
	}

	/*********** 
	* Our Team *
	************/

	/* Page Content */
	.page-template-our-team .page-content .wrapper {
		grid-template-columns: repeat(1, 1fr);
	}

	/***************
	* SINGLE POST *
	***************/

	/* Post Header */
	.post-header .authors {
		display: block;
	}

	.post-header .authors .block:not(:last-child) {
		margin-bottom: 20px;
		margin-right: 20px;
	}

	/* Author Popup */
	.author-popup {
		width: 100%;
	}

	.author-popup .popup-body {
		padding: 20px 15px;
	}

	.author-popup .head {
		flex-wrap: wrap;
		margin-bottom: 15px;
	}

	.author-popup .head > img {
		display: none;
	}

	.author-popup .head .name {
		font-size: 16px;
		line-height: 26px;
		margin-bottom: 4px;
	}

	.author-popup .head .meta-info {
		flex-wrap: wrap;
		font-size: 13px;
		line-height: 18px;
		row-gap: 8px;
	}

	.author-popup .head .meta-info div:not(:last-child) {
		border-right: 1px solid #e7efff;
		padding-right: 10px;
		margin-right: 10px;
	}

	.author-popup .head .social-links img {
		width: 25px;
		height: 25px;
	}

	.author-popup .bio {
		font-size: 13px;
		line-height: 24px;
	}

	.author-popup .post-section {
		margin-top: 20px;
	}

	.author-popup .post-section .post-list {
		margin-top: 12px;
	}

	.author-popup .post-section .post-list .title a {
		font-size: 13px;
		line-height: 22px;
	}

	/* Sources */
	.sources .wrapper {
		grid-template-columns: repeat(2, 1fr);
		grid-gap: 12px 30px;
		gap: 12px 30px;
	}

	/* More Statistics */
	.more-statistics .posts.grid {
		grid-template-columns: repeat(1, 1fr);
	}

	/****************
	* COMPANY POST *
	****************/

	/* Post Header */
	.company-details {
		grid-template-columns: repeat(2, 1fr);
	}
}
