/**
 * GENERAL
 */
.elementor-icon svg {
	fill: inherit;
}

.prinson {
	width: calc(100% - 24px);
	margin: 0 auto;
	border-radius: 24px;
	overflow: hidden;
}	
.prinson.noradius {
	border-radius: 0;
}
@media (min-width:991px) {
	.prinson {
		width: calc(100% - 60px);
	}
}


/**
 * ANIMATION
 */
.animat {
    opacity: 0; 
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.animat.visible {
    opacity: 1;
    transform: translateY(0);
    position: relative;
}
.animat.elementor-element {
	transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}


/**
 * SWIPER
 */
.swiper .swiper-pagination.swiper-pagination-bullets {
	bottom: 0;
	position: relative;
	margin-top: 20px;
}
.swiper .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
    margin: 0 2px!important;
	background: var(--e-global-color-accent);
	opacity: 0.5;
}
.swiper .swiper-pagination-bullet-active {
    width: 20px;
	border-radius: 30px;
	opacity: 1;
}


/**
 * HEADER
 */
.main-header {
	padding: 15px;
	z-index: 9999;
	transition: top 0.3s ease, box-shadow 0.3s ease;
}
.main-header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--e-global-color-secondary);
	border-bottom: 1px solid rgba(255,255,255,0.03);
}
.main-header .elementor-widget-wrap {
	padding: 0 15px;
	align-content: center !important;
    align-items: center;
} 
.main-header .elementor-element {
    display: inline-block;
    position: relative;
    width: auto;
}
.main-header .custom-logo-link {
    display: block;
}
.main-header .custom-logo {
    display: block;
    width: 120px;
    transition: width 0.3s ease;
}
.main-header .site-navigation-wrapper .elementor-widget-wrap {
	justify-content: flex-end;
}

/*--SiteNavigation--*/
.site-navigation,
.site-navigation ul.menu,
.site-navigation ul.menu li {
    position: relative;
    display: block;
    line-height: 0;
} 
.site-navigation ul.menu > li {
	padding: 10px 0;
}
.site-navigation ul.menu > li a {
    font-weight: 500;
    white-space: nowrap;
    font-size: 1.25rem;
    line-height: 1;
    color: var(--e-global-color-primary);
}
.site-navigation ul.menu > li a .chevron {
    font-size: 0.875rem;
    margin-left: 5px;
    vertical-align: middle;
    display: inline-block;
}
.site-navigation ul.menu li:hover > a, 
.site-navigation ul.menu li.current-menu-item > a,
.site-navigation ul.menu li.current_page_parent > a,
.site-navigation ul.menu li.current-menu-parent > a,
.site-navigation ul.menu li.current-menu-ancestor > a,
.site-navigation ul.menu li.current-product-type-ancestor > a,
.site-navigation ul.menu li.current_page_item > a {
	color: var(--e-global-color-accent) !important;
}
.site-navigation ul.menu li ul.sub-menu li a {
	font-size: 1rem;
	color: var(--e-global-color-primary);
}

/*--Responsive Media Queries--*/
@media (min-width: 991px) {
	.main-header {
		padding: 26px 0;
	}	
	.main-header.sticky {
		padding: 15px 0;
	}
	.main-header .custom-logo {
		width: 180px;
	}
	.main-header.sticky .custom-logo {
		width: 140px;
	}

	.site-navigation-toggle-holder {
		display: none;
	}

	.site-navigation ul.menu > li {
		display: inline-flex;
	}
	.site-navigation ul.menu > li:not(:last-child) {
		margin-right: 30px;
	}
	.site-navigation ul.menu > li a {
    	font-size: 1rem;
    	color: var(--e-global-color-text);
	}

	/*sub-menu*/
	.site-navigation ul.menu li > ul.sub-menu {
		position: absolute;
		top: 100%;
		left: 0;
		z-index: 7;
		padding: 30px 0;
		background-color: #fff;		
		border-radius: 12px;
		opacity: 0;
		visibility: hidden;
		box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.15);
		transform: translateY(10px);
    	transition: transform 0.5s ease;
    }
    .site-navigation ul.menu li > ul.sub-menu::before {
		content: "";
		position: absolute;
		top: -8px;
		left: 16px;
		width: 0;
		height: 0;
		border-left: 8px solid transparent;
		border-right: 8px solid transparent;
		border-bottom: 8px solid #fff;
		filter: drop-shadow(0 -1px 2px rgba(0, 0, 0, 0.1));
	}
	.site-navigation ul.menu li > ul.sub-menu li > ul.sub-menu {
		top: 0;
		left: 100%;
		margin-left: 8px;
	}
	.site-navigation ul.menu li > ul.sub-menu li > ul.sub-menu::before {
		top: 16px;
		left: -8px;
		border-top: 8px solid transparent;
		border-bottom: 8px solid transparent;
		border-right: 8px solid #fff;
		border-left: none;
		filter: drop-shadow(-1px 0 2px rgba(0, 0, 0, 0.1));
	}
	.site-navigation ul.menu li:hover > ul.sub-menu {
	    opacity: 1;
	    visibility: visible;
	    transform: translateY(0);
	}
	.site-navigation ul.menu li ul.sub-menu li {
		padding-left: 30px;
		padding-right: 30px;
	}
	.site-navigation ul.menu li ul.sub-menu li:not(:last-child) {
		margin-bottom: 12px;
	}
	.site-navigation ul.menu li ul.sub-menu li a .chevron {
    	transform: rotate(-90deg);
    	transition: transform 0.3s ease;
	}
	.site-navigation ul.menu li ul.sub-menu li a:hover .chevron {
    	transform: rotate(90deg);
	}
}
@media (max-width: 991px) {
	.main-header .site-logo {
		width: 45%;
	}
	.main-header .site-logo .elementor-widget-wrap {
		padding-right: 0;
	}
	.main-header .site-navigation-wrapper {
		width: 55%;
	}	

	/* Toggle Holder */
	.site-navigation-toggle-holder {
		margin-left: 15px;
		order: 1;
	}
	.site-navigation-toggle-holder.active::after {
    	content: '';
    	position: fixed;
    	inset: 0;
    	background-color: rgba(0, 0, 0, 0.7);
    	z-index: 1;
    	transition: background-color 0.3s ease-in-out;
    	pointer-events: none;
	}
	.site-navigation-toggle-holder .site-navigation-toggle {
        color: #fff;
        font-size: 1.75rem;
        cursor: pointer;
        position: relative;
        z-index: 5;
        padding: 0;
    }
	.site-navigation-toggle-holder .site-navigation-toggle[aria-expanded="true"] .bi-list::before {
		content: "\F659";
		color: var(--e-global-color-accent);
	}

	/* Navigation */
	.site-navigation {
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		width: 220px;
		padding: 80px 0 0 50px;
		background-color: #fff;
		transform: translateX(100%);
		transition: transform 0.4s ease-in-out;
		overflow-y: auto;
		z-index: 5;
	}
	.site-navigation.dropdown {
		transform: translateX(0);
		box-shadow: -8px 0 15px rgba(0, 0, 0, 0.2);
	}	
	.site-navigation ul.menu li ul.sub-menu {
		padding: 15px 0 0 15px;
	}
	.site-navigation ul.menu li ul.sub-menu li:not(:last-child) {
	    margin-bottom: 10px;
	}
}

/*--Utilities--*/
.header-utilities {
    display: flex !important;
    gap: 0;
    line-height: 0;
}
@media (min-width: 991px) {
	.header-utilities {
        margin-left: 60px;
    } 
}
@media (max-width: 991px) {
	.header-utilities .btnsm .elementor-button {
		font-size: 0.625rem;
	    padding: 6px 24px 6px 12px;
	}
	.header-utilities .btnsm .elementor-button:hover {
    	padding: 6px 12px 6px 24px;
	}
	.header-utilities .btnsm .elementor-button::after {
    	right: 8px;
    	width: 10px;
    	height: 10px;
	}
	.header-utilities .btnsm .elementor-button:hover::after {
    	right: calc(100% - 20px);
	}
}


/**
 * ARCHIVE HEADER
 */
.archive-header {
    width: calc(100% - 24px);
    padding: 24px 15px;
    background-color: var(--e-global-color-secondary);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-image: url(../../../../uploads/archive-header.webp);
    text-align: center;
    z-index: 0;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
}
.archive-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 105, 255, 0.4);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1;
}
.archive-header .elementor-widget-html {
	padding: 0 15px;
	position: relative;
    z-index: 2;
}
.archive-header h1 {
    color: #fff;
    font-size: 1.8rem;
    line-height: 1.2;
    font-weight: 400;
    margin-bottom: 8px;
    letter-spacing: -1px;
}
.archive-header p {
    color: #fff;
    font-size: 0.6875rem;
    line-height: 1.3;
    width: 90%;
    margin: 0 auto;
}
@media (min-width: 991px) {
	.archive-header {
        padding: 80px 0;
        width: calc(100% - 60px);
    }
	.archive-header h1 {
        font-size: 4rem;
        margin-bottom: 15px;
    }
    .archive-header p {
    	width: 27%;
    	font-size: 0.9375rem;
    	line-height: 1.4;
	}    
}


/**
 * SLIDER
 */
.main-slider {
	background-color: var(--e-global-color-secondary);
}
.main-slider .swiper-slide .slide-bg {
	width: 100%;
	height: 100%;
	object-fit: cover;
	pointer-events: none;
	-webkit-user-drag: none;
	display: block;
}
.main-slider .slide-content {
	position: absolute;
	inset: 0;
	margin: 0 auto;
	width: 75%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center; /* flex-start - center - flex-end */
	text-align: center;
	color: #fff;
}
.main-slider .slide-heading {
    font-size: 1.125rem;
	line-height: 1;
	font-weight: 300;
	margin-bottom: 10px;
}
.main-slider .slide-description {
    font-size: 1.75rem;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: -1px;
}
.main-slider .animation {
	display: none;
}
.main-slider .animation.curr_swiper {
	display: block;
}
.main-slider .animated {
	animation-duration: 1.25s;
}
.main-slider .swiper-button-next, 
.main-slider .swiper-button-prev {
	color: #ffffff;
	height: 16px;
	width: 16px;
	margin-top: calc(0px - 8px) !important;
}
@media (min-width:767px) {
	.main-slider .slide-heading {
		font-size: 1.5rem;
		margin-bottom: 20px;
	}
	.main-slider .slide-description {
    	font-size: 3.125rem;
	}	
}
@media (min-width:991px) {
	.main-slider .slide-heading {
		font-size: 3rem;
		margin-bottom: 30px;
	}	
	.main-slider .slide-description {
    	font-size: 5rem;
    	line-height: 1.1;
	}
	.main-slider .swiper-button-next, 
	.main-slider .swiper-button-prev {
		height: 24px;
		width: 24px;
		margin-top: calc(0px - 12px) !important;
	}	
}




/**
 * HOME
 */

/*ProCategory*/
.pro-cat {
    height: auto;
    display: flex;
}
.pro-cat .div-flex {
	cursor: pointer;
	transition: flex .4s;
	flex: 1 1 0%;
}
.pro-cat .div-flex:not(:last-child) {
    margin-right: 5px;
}
.pro-cat .div-flex.active {
    flex: 3 1 0%;
}
.pro-cat .inner {
	position: relative;
	overflow: hidden;
    border-radius: 12px;
}
.pro-cat .inner::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(11,35,71,0) 50%, rgba(11,35,71,0.85));
}
.pro-cat .inner .img {
    display: block;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 220px;
}
.pro-cat .inner .content {
	display: block;
	position: absolute;
    bottom: 20px;
    left: 20px;
    visibility: hidden;
    opacity: 0;
	z-index: 1;
	transition: all 0.6s ease-in-out;
	transform: translate(100px, 100px);
}
.pro-cat .div-flex.active .inner .content,
.pro-cat .div-flex:hover .inner .content {
    visibility: visible;
    opacity: 1;
    transform: translate(0, 0);
}
.pro-cat .inner .content h3 {
    font-size: 1.2rem;
}
@media (min-width:767px) {	
	.pro-cat .div-flex:not(:last-child) {
    	margin-right: 10px;
	}
	.pro-cat .inner {
		border-radius: 24px;
 	}
	.pro-cat .inner .img {
    	height: 380px;
	}
}
@media (min-width:991px) {
	.pro-cat .div-flex:not(:last-child) {
    	margin-right: 20px;
	}
	.pro-cat .inner .img {
    	height: 680px;
	}
	.pro-cat .inner .content {
		bottom: 50px;
    	left: 50px;
    }
	.pro-cat .inner .content h3 {
    	font-size: 2rem;
	}	
}


/*-- We Work --*/
.we-work {
	padding-top: 10px !important;
}
.we-work .swiper-slide {
	transition: transform 0.4s ease;	
}
.we-work .swiper-slide:hover {
	transform: translateY(-10px);
}
.we-work .inner {
	padding: 30px;
	text-align: center;
	border-radius: 24px;
	transition: all 0.4s ease;	
	background: var(--e-global-color-secondary);
}
.we-work .inner .icon {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 80px;
	height: 80px;
	background: var(--e-global-color-accent);
	border-radius: 50%;
	transition: all 0.4s ease;
}
.we-work .swiper-slide:hover .inner .icon {
	transform: translateY(-10px);
}
.we-work .inner h3 {
	margin: 20px 0 15px;
	transition: all 0.4s ease;
}
.we-work .swiper-slide:hover .inner h3 {
	transform: translateY(-10px);
	color: var(--e-global-color-accent);
}
.we-work .inner p {
	transition: all 0.4s ease;
}
.we-work .swiper-slide:hover .inner p {
	transform: translateY(-10px);
}
@media (min-width: 767px) {
	.we-work .inner {
		padding: 50px;
	}
	.we-work .inner .icon {
		width: 100px;
		height: 100px;
	}
	.we-work .inner h3 {
		margin: 35px 0 20px;
	}	
}


/*-- Gallery --*/
.owlgallery {
	max-width: 1320px;
	overflow: visible !important;
}
.owlgallery .swiper-slide {
	transition: all 0.7s ease;
	opacity: 0.4;
}
.owlgallery .swiper-slide-active {
	opacity: 1;
	z-index: 3;
}
.owlgallery .thumbnail {
	position: relative;
  	overflow: hidden;
   	border-radius: 24px;
   	transition: all 0.5s ease;
}
.owlgallery .thumbnail img {
    width: 100%;
    display: block;
}
.owlgallery .swiper-button-next, 
.owlgallery .swiper-button-prev {
    width: 24px;
    height: 24px;
    margin-top: calc(0px - 12px) !important;
    background: var(--e-global-color-accent);
    color: #fff;
    border-radius: 50%;
    padding: 7px;
}
.owlgallery .swiper-button-prev {
	margin-left: 12px !important;
}
.owlgallery .swiper-button-next {
	margin-right: 12px !important;
}
@media (min-width:991px) {	
	.owlgallery .swiper-button-next, 
	.owlgallery .swiper-button-prev {
		width: 40px;
    	height: 40px;
		padding: 12px;
		margin-top: calc(0px - 20px) !important;
	}
}




/**
 * ABOUT US
 */
.core-value .inner {
	padding: 15px 30px 0;
	text-align: center;
	border-radius: 24px;
	transition: all 0.4s ease;	
}
.core-value .swiper-slide:hover .inner {
	transform: translateY(-15px);
}
.core-value .inner .icon {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 80px;
	height: 80px;
	background: var(--e-global-color-accent);
	border-radius: 50%;
}
.core-value .inner h3 {
	margin: 20px 0 15px;
	transition: all 0.4s ease;
}
.core-value .swiper-slide:hover .inner h3 {
	color: var(--e-global-color-accent);
}
@media (min-width: 767px) {
	.core-value {
		margin-right: -1px!important;
	}
	.core-value .swiper-slide {
		border-right: 1px solid var(--light-border);
	}
	.core-value .inner {
		padding: 30px;
	}
	.core-value .inner .icon {
		width: 100px;
		height: 100px;
	}
	.core-value .inner h3 {
		margin: 35px 0 20px;
	}	
}


/*-- Our Brands --*/
.owl-brands .swiper-slide {
    padding-top: 10px;
}
.owl-brands .inner {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s ease;
}
.owl-brands .inner:hover {
	background: var(--e-global-color-secondary);
	border-color: var(--e-global-color-secondary);
	transform: translateY(-10px);
}

.owl-brands .img {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 40px;
    background: var(--e-global-color-secondary);
    border-radius: 24px;
    transition: all 0.4s ease;
}
.owl-brands .inner:hover .img {
	background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}
.owl-brands .img img {
	transition: transform 0.4s ease;    
}
.owl-brands .inner:hover .img img {
    transform: scale(1.05);
}

.owl-brands .content {
    margin-top: 25px;
    transition: all 0.4s ease;
}
.owl-brands .inner:hover .content {
	transform: translateY(-10px);
}
.owl-brands .content h3 {
    margin-bottom: 15px;
    transition: all 0.4s ease;
}
.owl-brands .inner:hover .content h3 {
	color: var(--e-global-color-accent);
}
.owl-brands .content p {
	margin-bottom: 25px;
}

@media (min-width: 767px) {
	.owl-brands .inner {
    	padding: 50px;
	}
	.owl-brands .content {
    	margin-top: 40px;
	}
	.owl-brands .content h3 {
    	margin-bottom: 25px;
	}
	.owl-brands .content p {
		margin-bottom: 40px;
	}
}




/**
 * PRODUCTS
 */
.whypick {
	padding-top: 10px !important;
}
.whypick .swiper-slide {
	transition: transform 0.4s ease;	
}
.whypick .swiper-slide:hover {
	transform: translateY(-10px);
}
.whypick .inner {
	border: 1px solid var(--light-border);
	padding: 30px;
	text-align: center;
	border-radius: 24px;
	transition: all 0.4s ease;	
}
.whypick .swiper-slide:hover .inner {
	border-color: var(--e-global-color-accent);
}
.whypick .inner .icon {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 80px;
	height: 80px;
	background: var(--e-global-color-accent);
	border-radius: 50%;
	transition: all 0.4s ease;
}
.whypick .swiper-slide:hover .icon {
	transform: translateY(-10px);
}
.whypick .inner h3 {
	margin: 20px 0 15px;
	transition: all 0.4s ease;
}
.whypick .swiper-slide:hover h3 {
	transform: translateY(-10px);
}
.whypick .inner p {
	transition: all 0.4s ease;
}
.whypick .swiper-slide:hover p {
	transform: translateY(-10px);
}
@media (min-width: 767px) {
	.whypick .inner {
		padding: 50px 70px;
	}
	.whypick .inner .icon {
		width: 100px;
		height: 100px;
	}
	.whypick .inner h3 {
		margin: 35px 0 20px;
	}	
}




/**
 * Partners
 */
.brand-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 5px;
}
.brand-list .brand-col {
	transition: transform 0.4s ease;
}
.brand-list .brand-col:hover {
	transform: translateY(-10px);
}
.brand-list .inner {
    background: var(--e-global-color-secondary);
    padding: 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.brand-list .inner h3 {
    display: none;
}
.brand-list .inner img {
	display: inline-flex;
}
@media (min-width: 767px) {
	.brand-list {
		grid-template-columns: repeat(4, 1fr);
		gap: 15px;
	}
	.brand-list .inner {
    	padding: 30px 40px;
    	border-radius: 24px;
	}
}
@media (min-width: 991px) {
	.brand-list {
		gap: 30px;
	}
	.brand-list .inner {
    	padding: 50px;
    }
}




/**
 * CSR
 */
.owlcsr {
	max-width: 1320px;
	overflow: visible !important;
}
.owlcsr .swiper-slide {
	transition: all 0.7s ease;
	opacity: 0.4;
}
.owlcsr .swiper-slide-active {
	opacity: 1;
	z-index: 3;
}

.owlcsr .inner {
	position: relative;
	border-radius: 24px;
	overflow: hidden;
}
.owlcsr .thumbnail {
  position: relative;
  overflow: hidden;
}
.owlcsr .thumbnail img {
    width: 100%;
    display: block;
}
.owlcsr .content {
	padding: 20px;
	background: var(--e-global-color-secondary);
	text-align: center;
	opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    transform: translateX(-50%) translateY(30px);
}
.owlcsr .swiper-slide-active .content {
	opacity: 1;
	visibility: visible;
	transform: translateX(0) translateY(0);
}
.owlcsr .content h3 {
	margin-bottom: 10px;
}

.owlcsr .swiper-button-next, 
.owlcsr .swiper-button-prev {
    width: 24px;
    height: 24px;
    background: var(--e-global-color-accent);
    color: #fff;
    border-radius: 50%;
    padding: 7px;
    top: 28% !important;
}
.owlcsr .swiper-button-prev {
	margin-left: 12px !important;
}
.owlcsr .swiper-button-next {
	margin-right: 12px !important;
}

@media (min-width:991px) {	
	.owlcsr .thumbnail::after {
		content: "";
	  	position: absolute;
	  	inset: 0;
	  	background: linear-gradient(to bottom, rgba(0,0,0,0) 50%, rgba(0,0,0,0.95));
	  	z-index: 1;
	}
	.owlcsr .content {
    	padding: 0;
    	text-align: left;
    	position: absolute;
    	bottom: 60px;
    	left: 120px;
    	right: 200px;
    	z-index: 2;
    	background: transparent;
    	color: #fff;
	}
	.owlcsr .content h3 {
    	font-size: 1.8rem;
    	margin-bottom: 15px;
	}
	.owlcsr .swiper-button-next, 
	.owlcsr .swiper-button-prev {
		width: 40px;
    	height: 40px;
		padding: 12px;
		top: 50% !important;
		margin-top: calc(0px - 20px) !important;
	}
}




/**
 * ARCHIVE PAGE
 */
.archive-page {
	padding: 40px 15px;
}
.archive-page .elementor-widget-wrap {
	padding: 0 15px;
}
@media (min-width:768px) {
	.archive-page {
		padding: 80px 15px;
	}
}
@media (min-width:991px) {
	.archive-page {
		padding: 120px 0;
	}
}


/**
 * BLOG
*/
.archive-posts.hm {
	padding-top: 10px;
}
.archive-posts:not(.hm) {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
}
.archive-posts .post {
	transition: transform 0.4s ease;
}
.archive-posts .post:hover {
	transform: translateY(-10px);
}
.archive-posts .post .inner {
	position: relative;
	border-radius: 24px;
	background: var(--e-global-color-secondary);
	overflow: hidden;
}
.archive-posts .post .heading {
    padding: 20px 30px;
    transition: transform 0.4s ease;
}
.archive-posts .post:hover .heading {
    transform: translateY(-6px);
}
.archive-posts .post h3 {
	font-size: 1.125rem;
	line-height: 1.4;
	transition: color 0.3s ease;
}
.archive-posts .post:hover h3 {
	color: var(--e-global-color-accent);
}
.archive-posts .post .date {
    font-size: 0.75rem;
    margin-bottom: 10px;
    display: block;
}
.archive-posts .post .thumbnail {
    width: calc(100% - 20px);
    overflow: hidden;
    border-radius: 24px;
    margin: 0 auto;
    display: block;
    transition: transform 0.4s ease;
}
.archive-posts .post:hover .thumbnail {
    transform: translateY(-6px);
}
.archive-posts .post .thumbnail img {
    display: block;
    width: 100%;
    transition: transform 0.5s ease;
}
.archive-posts .post:hover .thumbnail img {
	transform: scale(1.05);
}
.archive-posts .post .content {
    padding: 20px 30px;
	transition: transform 0.4s ease;
}
.archive-posts .post:hover .content {
    transform: translateY(-6px);
}
.archive-posts .post p {
	position: relative;
	padding-bottom: 20px;
	margin-bottom: 20px;
}
.archive-posts .post p:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
}
.archive-posts .post p:after {
	content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    background: var(--e-global-color-accent);
    transition: width 0.4s ease-in-out;
}
.archive-posts .post:hover p:after {
	width: 100%;
}
.archive-posts .post .readmore {
    text-transform: uppercase;
    font-weight: 700;
    display: block;
    font-size: 0.75rem;
    transition: color 0.3s ease;
}
.archive-posts .post:hover .readmore {
	color: var(--e-global-color-accent);
}
.archive-posts .post .readmore:after {
    content: "\F285";
    font-family: bootstrap-icons !important;
    float: right;
}
@media (min-width: 767px) {
	.archive-posts:not(.hm) {
		grid-template-columns: repeat(2, 1fr);
	    gap: 30px;
	}	
}
@media (min-width: 991px) {
	.archive-posts:not(.hm) {
		grid-template-columns: repeat(3, 1fr);
	}
	.archive-posts .post .heading {
        padding: 30px 40px;
    }
    .archive-posts .post .date {
		margin-bottom: 15px;
		font-size: 0.875rem;
	}
	.archive-posts .post h3 {
		font-size: 1.25rem;
	}
    .archive-posts .post .thumbnail {
        width: calc(100% - 30px);
    }
	.archive-posts .post .content {
        padding: 30px 40px;
    }
}


/**
 * Pagination
 */
.archive-pagination {
    float: left;
    width: 100%;
    text-align: center;
	margin-top: 30px;
}
.archive-pagination a {
    margin: 0 6px;
    text-transform: uppercase;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--e-global-color-accent) !important;
}
.archive-pagination a:hover {
	color: #fff !important;
}
@media (min-width: 991px) {
	.archive-pagination {
	   margin-top: 50px;
	}
}




/**
 * SIGLE BLOG
 */
.single-posts .post-image img,
.single-posts .post-content img {
	display: block;
	width: 100%;
	border-radius: 24px;
}
.single-posts .post-content img {
	border-radius: 12px;
}

.single-posts .post-info ul li {
    display: inline-block;
    text-transform: capitalize;
}
.single-posts .post-info ul li:not(:last-child) {
	margin-right: 8px;
}
.single-posts .post-info ul li i {
    margin-right: 2px;
    top: 1px;
    position: relative;
}

.single-posts .post-title {
	margin: 15px 0 25px;
}
.single-posts .post-title h2 {
    font-size: 1.5rem;
}

.single-posts .post-content {
	margin-top: 15px;
}
.single-posts .post-content p {
	margin-top: 10px;
}
.single-posts .post-content h3 {
	margin-top: 20px;
}
.single-posts .post-content strong {
	font-weight: 600;
}

.single-posts .post-content ul,
.single-posts .post-content ol {
	padding-left: 20px;
	margin-top: 15px;
}
.single-posts .post-content > ul li,
.single-posts .post-content > ol li {
	margin-top: 10px;
}

.single-posts .post-content figure {
	margin: 0;
}
.single-posts .post-content .wp-block-image.one,
.single-posts .post-content .wp-block-gallery {
	margin: 20px 0;
}
.single-posts .post-content .wp-block-gallery {
	display: grid;
}
.single-posts .post-content .wp-block-gallery.two {
	grid-template-columns: repeat(2, 1fr);
	gap: 15px 15px;
}
.single-posts .post-content .wp-block-gallery.three {
	grid-template-columns: repeat(3, 1fr); 
	gap: 5px 5px;
}

@media (min-width: 991px) {
	.single-posts .post-info,
	.single-posts .post-title,
	.single-posts .post-content {
		width: 80%;
		margin-left: 10% !important;
	}	
	
	.single-posts .post-info ul li:not(:last-child) {
		margin-right: 15px;
	}

	.single-posts .post-title {
		margin: 20px 0 60px;
	}
	.single-posts .post-title h2 {
		font-size: 3.125rem;
	}

	.single-posts .post-content {
		margin-top: 40px;
	}
	.single-posts .post-content h3 {
		margin-top: 40px;
	}
	.single-posts .post-content p {
		margin-top: 20px;
	}
	.single-posts .post-content ul {
		margin-top: 30px;
	}	

	.single-posts .post-content .wp-block-image.one,
	.single-posts .post-content .wp-block-gallery {
		margin: 40px 0;
	}
	.single-posts .post-content .wp-block-gallery.two,
	.single-posts .post-content .wp-block-gallery.three {
		gap: 30px 30px;
	}	 	
}


/**
 * Pagination
 */
.post-navigation {
    display: flex;
    justify-content: space-between;
    gap: 5px;
    border-top: 1px solid var(--light-border);
    margin-top: 20px;
    padding-top: 20px;    
}
.post-navigation a {
    font-weight: 500;
    color: var(--e-global-color-accent) !important;
    font-size: 0.75rem;
    display: inline-block;
    max-width: 140px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: middle;
    transition: all 0.3s ease-in-out;
    padding-top: 1px;
    padding-left: 25px;
    position: relative;
}
.post-navigation .nav-next a {
    padding-right: 25px;
    padding-left: 0;
}
.post-navigation a:hover {
	color: #fff !important;
	transform: translateX(10px);
}
.post-navigation i {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--e-global-color-accent);
    color: #fff;
    border-radius: 50%;
    font-size: 0.75rem;
    position: absolute;
    top: 0px;
    left: 0;
}
.post-navigation .nav-next i {
    right: 0;
    left: auto;
}
@media (min-width: 991px) {
	.post-navigation {
        margin-top: 50px;
        padding-top: 50px;
        width: 80% !important;
		margin-left: 10% !important;
    }
    .post-navigation a {
    	 font-size: 1rem;
    	 max-width: 380px;
	}
	.post-navigation i {
  		top: 4px;
    }
}




/**
 * SIDEBAR TOGGLE
 */
.ftr-toggle a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50px;
    font-size: 0.875rem;
    line-height: 1;
    background: #fff2d6;
    color: #e7a104;
    transition: all 0.35s ease;
    position: fixed;
    right: 5px;
    top: 50%;
    z-index: 99;
	opacity: 0;
  	transform: translateX(50px);
  	animation: slideInRight 0.6s ease-out forwards;
  	animation-delay: 0.2s;
}
.ftr-toggle a:nth-child(2) {
    margin-top: 35px;
    background: #d6fff9;
    color: #04e7c5;
    animation-delay: 0.4s;
}
.ftr-toggle a:last-child {
    margin-top: 70px;
    color: #be11e9;
    background: #f7d6ff;
    animation-delay: 0.6s;
}
.ftr-toggle a i {
    transition: all 1s ease;
}
.ftr-toggle a::after {
    content: attr(aria-label);
    position: absolute;
    left: 40px;
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0;
    transition: all 0.35s ease;
    white-space: nowrap;
}

/* Hover */
.ftr-toggle a:hover {
    width: 120px;
    background: #e7a104;
    justify-content: flex-start;
    color: #fff;
}
.ftr-toggle a:nth-child(2):hover {
	background: #04e7c5;
}
.ftr-toggle a:last-child:hover {
	background: #be11e9;
}
.ftr-toggle a:hover i {
    left: 20px;
    position: relative;
    transform: rotate(-360deg);
}
.ftr-toggle a:hover::after {
    opacity: 1;
}

/* Keyframes */
@keyframes slideInRight {
	0% {
    	opacity: 0;
    	transform: translateX(50px);
  	}
  	100% {
    	opacity: 1;
    	transform: translateX(0);
  	}
}

/* Responsive */
@media (min-width: 767px) {
	.ftr-toggle a {
		width: 40px;
	    height: 40px;
		font-size: 1.125rem;
	}
	.ftr-toggle a:nth-child(2) {
    	margin-top: 45px;
	}
	.ftr-toggle a:last-child {
    	margin-top: 90px;
	}
	.ftr-toggle a::after {
    	font-size: 0.875rem;
    	left: 50px;
    }

    /*-HoverAnimation-*/
	.ftr-toggle a:hover {
	    width: 140px;
	 }
}




/**
 * Footer
 */
.main-footer {
	width: calc(100% - 24px);
	margin: 0 auto 12px;
	padding-top: 40px;
	border-radius: 24px;
	font-size: 0.8125rem;
    background-color: var(--e-global-color-secondary);
}
.main-footer .elementor-widget-wrap {
	padding: 0 30px;
}
.main-footer h3 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 10px;
}
.main-footer a {
	display: inline-block;
	transition: all 0.3s ease-in-out;
}
.main-footer a:hover {
	transform: translateX(5px);
}

.main-footer .address img {
    width: 160px;
}
.main-footer .address .sicon a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
	width: 25px;
    height: 25px;
    margin-right: 5px;
    border-radius: 5px;
    transition: 1s;
    background: var(--light-bg-color);
    font-size: 0.75rem;
    line-height: 1;
    transition: all 0.3s ease-in-out;
}
.main-footer .address .sicon a:hover {
	background: var(--e-global-color-accent);
	color: #fff;
	transform: translateY(-5px);
}

.main-footer .right-col > .elementor-widget-wrap {
	padding: 0;
}
.main-footer .support {
    border-bottom: 1px solid var(--light-border-alt);
    padding-bottom: 15px;
    margin-bottom: 30px;
    width: calc(100% - 60px);
    margin-left: auto;
    margin-right: auto;
}
.main-footer .support strong {
    color: #fff;
    font-size: 2rem;
    line-height: 1.2;
    font-weight: 400;
    letter-spacing: -1px;
}

.main-footer .inner {
	display: flex;
}
.main-footer .ftrlist ul li {
    list-style: none;
	padding-left: 15px;
}
.main-footer .ftrlist ul li:not(:last-child) {
	margin-bottom: 2px;
}
.main-footer .ftrlist ul li:before {
    content: "";
    position: absolute;
    top: 7px;
    left: 0;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--light-bg-color);
    transition: all 0.3s ease;
}
.main-footer .ftrlist ul li:hover:before {
	background: var(--e-global-color-accent);
}

/*-copyright-*/
.main-footer .copyright {
	margin-top: 30px;
	padding: 20px 0;
	border-top: 1px solid var(--light-border-alt);
}
.main-footer .copyright .elementor-element {
    display: flex;
    flex-direction: column;
	text-align: center;
    gap: 3px;
    font-size: 0.6875rem;
}

.whatsapp-icon {
    position: fixed;
    bottom: 8px;
    right: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366;
    color: #fff;
    width: 30px;
    height: 30px;
    font-size: 1rem;
    line-height: 1;
    border-radius: 50%;
}
.whatsapp-icon:hover {
	background-color: #119d45;
    color: #fff;
}

@media (min-width: 767px) {
	.main-footer .address {
		border-right: 1px solid var(--light-border-alt);
	}
}
@media (min-width: 991px) {
	.main-footer {
        width: calc(100% - 60px);
        margin-bottom: 30px;
        padding-top: 100px;
        font-size: 0.9rem;
    }
    .main-footer .elementor-widget-wrap {
		padding: 0 15px;
	}
	.main-footer .elementor-widget-wrap .elementor-widget {
		margin-bottom: 35px;
	}
	.main-footer h3 {
        margin-bottom: 20px;
    }	

	.main-footer .address {
        padding-right: 80px;
        padding-top: 15px;
    }
   	.main-footer .address img {
        width: 240px;
    }
    
    .main-footer .right-col {
        padding-left: 100px;
    }
    .main-footer .support {
    	padding-bottom: 30px;
    	margin-bottom: 50px;
    	width: calc(100% - 30px);
    }
    .main-footer .support strong {
        font-size: 4rem;
        line-height: 1;
    }
   	
   	.main-footer .ftrlist ul li:before {
		top: 10px;
	}
	.main-footer .ftrlist ul li:not(:last-child) {
		margin-bottom: 7px;
	}
	.main-footer .ftrlist {
	    padding-left: 50px;
	}	

	/*-copyright-*/	
	.main-footer .copyright {
		margin-top: 80px;
		padding: 40px 0;
	}
	.main-footer .copyright .elementor-element {
    	flex-direction: row;
        justify-content: space-between;
        font-size: 0.8125rem;
    }
	.whatsapp-icon {
        bottom: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 1.4rem;
        transition: all 0.3s ease-in-out;
    }
    .whatsapp-icon:hover {
    	transform: translateY(-10px);
    }
}
@media (min-width: 767px) and (max-width: 991px) {
	.main-footer .address {
		width: 40%;
		padding-right: 30px;
	}
	.main-footer .right-col {
        width: 60%;
        padding-left: 50px;
    }
}
@media (max-width: 991px) {
	.main-footer .contact {
		width: 60%;
	}
	.main-footer .contact .elementor-widget-wrap {
		padding-right: 15px;
	}
	.main-footer .qlinks {
		width: 40%;
	}
	.main-footer .qlinks .elementor-widget-wrap {
		padding-left: 15px;
	}
	.main-footer .prange {
		display: none;
	}
}
@media (max-width: 767px) {
	.main-footer .right-col {
		margin-top: 30px;
	}
}