/**
 * GENERAL
 */
.elementor-icon svg {
    fill: inherit;
}

.corner-rounded {
	border-radius: 0 0 30px 30px;
}
.corner-rounded.overflow {
	overflow: hidden;
}
@media (min-width: 991px) {
	.corner-rounded {
		border-radius: 0 0 50px 50px;
	}
}


/**
 * 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 {
	z-index: 0 !important;
}

.swiper-button-prev svg,
.swiper-button-next svg {
  display: none !important;
}
.swiper-button-next:after, 
.swiper-button-prev:after {
	font-size: 1rem !important;
	color: #fff;
}
@media (min-width:991px) {
	.swiper-button-prev {
		left: 30px !important;
	}
	.swiper-button-next {
		right: 30px !important;
	}
	.swiper-button-next:after, 
	.swiper-button-prev:after {
		font-size: 2rem !important;
	}	
}

.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-primary);
	opacity: 0.5;
}
.swiper .swiper-pagination-bullet-active {
    width: 20px;
	border-radius: 30px;
	opacity: 1;
}


/**
 * HEADER
 */
.main-header {
	padding: 10px 0;
	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: #fff;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
}
.main-header .elementor-widget-wrap {
	padding: 0 20px;
	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: 75px;
    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;    
} 
.site-navigation ul.menu > li {
	padding: 10px 0;
}
.site-navigation ul.menu > li a .chevron {
    font-size: 0.75rem;
    margin-left: 4px;
    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-primary) !important;
}

.site-navigation ul.menu > li a {
	font-weight: 500;
    white-space: nowrap;
   	font-size: 1.0625rem;
    line-height: 1;
    color: var(--e-global-color-text);
}
.site-navigation ul.menu li ul.sub-menu li a {
	font-size: 1rem;	
}

/* Responsive */
@media (min-width: 991px) {
	.main-header,
	.main-header.sticky {
        padding: 20px 0;
    }     	
	.main-header .custom-logo,
	.main-header.sticky .custom-logo {
		width: 100px;
	}
	
	.site-navigation-toggle-holder {
		display: none;
	}

	.site-navigation ul.menu > li {
		display: inline-flex;
	}
	.site-navigation ul.menu > li:not(:last-child) {
		margin-right: 15px;
	}	
	.site-navigation ul.menu > li a {
    	font-size: 1rem;
    }    

	/* submenu */
	.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: 6px;
	}
	.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 (min-width: 1600px) {
	.main-header {
        padding: 30px 0;
    }	
	.main-header .custom-logo {
		width: 130px;
	}
	
	
	.site-navigation ul.menu > li a {
    	font-size: 1.125rem;
    }    
}
@media (max-width: 991px) {
	.main-header .site-logo,
	.main-header .site-navigation-wrapper {
		width: 50%;
	}

	/* Toggle Holder */
	.site-navigation-toggle-holder {
		margin-left: 15px;
		order: 1;
		line-height: 0;
	}
	.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 {
    	position: relative;
        z-index: 5;
        padding: 0;
        cursor: pointer;
        color: var(--e-global-color-primary);
        font-size: 2rem;
    }
    .site-navigation-toggle-holder .site-navigation-toggle .bi-list::before {
    	display: block;
    }
	.site-navigation-toggle-holder .site-navigation-toggle[aria-expanded="true"] .bi-list::before {
		content: "\F659";
	}

	/* Navigation */
	.site-navigation {
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		width: 220px;
		padding: 60px 0 0 40px;
		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;
}
@media (min-width: 991px) {
	.header-utilities {
        margin-left: 30px;
    } 
}
@media (max-width: 991px) {
	.header-utilities .elementor-button.sm {
        font-size: 0.6rem;
        padding: 6px 12px;
	}
}



/**
 * ARCHIVE HEADER
 */
.archive-header {
	position: relative;
    padding: 50px 0;
    background-color: var(--e-global-color-primary);
   	background-image: url(../../../../uploads/archive-header.webp);
   	background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
	text-align: center;
	z-index: 0;
	overflow: hidden;
	border-radius: 0 0 30px 30px;
}
.archive-header:before {
	content: "";
    position: absolute;
   	inset: 0;
	background: linear-gradient(180deg, rgb(19 70 175 / 90%), rgb(19 70 175 / 80%));
}
.archive-header .elementor-widget-html {
	padding: 0 20px;
	position: relative;
}
.archive-header h1 {
	font-size: 2rem;
    line-height: 1.2;
    font-weight: 300;
    color: #fff;
    position: relative;
    z-index: 1;
}
@media (min-width: 991px) {
	.archive-header {
		padding: 150px 0;
		border-radius: 0 0 50px 50px;
	}	
	.archive-header h1 {
        font-size: 4rem;
    } 
}
@media (min-width: 1600px) {
	.archive-header {
		padding: 200px 0;
	}	
	.archive-header h1 {
        font-size: 5rem;
    } 
}



/**
 * SLIDER
 */
.main-slider {
	background-color: var(--e-global-color-primary);
}
.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 {
	line-height: 1;
	font-weight: 300;
    font-size: 1.125rem;
	margin-bottom: 10px;
}
.main-slider .slide-description {
	line-height: 1.2;
	font-weight: 300;
    font-size: 1.75rem;
}
.main-slider .animation {
	display: none;
}
.main-slider .animation.curr_swiper {
	display: block;
}
.main-slider .animated {
	animation-duration: 1.25s;
}
@media (min-width:767px) {
	.main-slider .slide-heading {
		font-size: 2rem;
		margin-bottom: 20px;
	}
	.main-slider .slide-description {
    	font-size: 4rem;
	}	
}
@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;
	}	
}
@media (min-width:1600px) {
	.main-slider .slide-heading {
		font-size: 4rem;
		margin-bottom: 40px;
	}	
	.main-slider .slide-description {
    	font-size: 6rem;
    }	
}



/**
 * HOME
 */
/* Solution */
.solution .swiper-slide {
	padding-top: 10px;
}
.solution .inner {
    border: 1px solid var(--e-global-color-57305ce);
    border-radius: 30px;
    overflow: hidden;
    transition: all 0.35s ease;
}
.solution .inner:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 35px rgba(0,0,0,0.12);
}
.solution .inner .thumbnail {
	display: block;
	width: 100%;
	overflow: hidden;
	border-radius: 30px;
}
.solution .inner .thumbnail img {
	display: block;
	width: 100%;
	transition: transform 0.45s ease;
}
.solution .inner:hover .thumbnail img {
    transform: scale(1.08);
}
.solution .inner .content {
	padding: 30px;
}
.solution .inner .content h3 {
	margin-bottom: 15px;
}
@media (min-width: 768px) {
	.solution .inner .content {
		padding: 45px;
	}
}


/* Awards */
.awards {
	max-width: 1350px;
	overflow: visible !important;
}
.awards .swiper-wrapper {
	overflow: visible !important;
}
.awards .inner {
    position: relative;
}
.awards .inner::before {
	content: "";
    position: absolute;
	left: 0;
    bottom: 0;
	height: 100%;
    width: 100%;
	background: #000000;
    opacity: 0.8;
    z-index: 1;
    transition: all 0.4s ease;
}
.awards .swiper-slide-active .inner::before {
	opacity: 0;
	visibility: hidden;
}
.awards .inner::after {
	content: "";
	position: absolute;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 60%, #000 100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}
.awards .swiper-slide-active .inner::after {
	opacity: 1;
    visibility: visible;
}
.awards .thumbnail img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
}
.awards .content {
    position: absolute;
    bottom: 30px;
    right: 25%;
    left: 12%;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transform: translateY(60px);
    transition: all 0.4s ease;
}
.awards .swiper-slide-active .content {
	opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.awards .content h3 {
    color: #fff;
    font-size: 1.125rem;
}
.awards .content .btnlink {
    position: absolute;
    top: 15px;
    right: -50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: var(--e-global-color-primary);
    color: #fff;
    border-radius: 50%;
    font-size: 1.125rem;
    line-height: 0;
    transition: all 0.4s ease;
}
.awards .content .btnlink:hover {
	background: var(--e-global-color-secondary);
}
@media (min-width:767px) {
	.awards .content {
    	bottom: 60px;
    }
	.awards .content h3 {
   		font-size: 1.5rem;
   		line-height: 1.4;
    }
	.awards .content .btnlink {
    	top: 10px;
    	width: 50px;
    	height: 50px;
	}
}
@media (min-width:991px) {
	.awards .content {
    	bottom: 80px;
    	right: 30%;
    	left: 15%;
	}
	.awards .content h3 {
   		font-size: 2.15rem;
    }
	.awards .content .btnlink {
    	top: 20px;
    }
}


/* Technology */
.technology .inner {
	padding: 30px;
    background: rgba(255,255,255,0.05);
    border-radius: 30px 30px 0 0;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}
.technology .inner:hover {
	background: rgba(255, 255, 255, 0.1);
}
.technology .inner .icon img {
    width: 70px;
    transition: all 0.4s ease;
}
.technology .inner:hover .icon img {
	transform: translateY(-10px) rotate(5deg);
}
.technology .inner .content {
	margin-top: 20px;
	transition: all 0.4s ease;
}
.technology .inner:hover .content {
    transform: translateY(-10px);
}
.technology .inner .content h3 {
    margin-bottom: 20px;
    color: #fff;
    transition: all 0.4s ease;
}
.technology .inner:hover .content h3 {
	color: var(--e-global-color-secondary);
}
.technology .inner .content p {
	color: rgba(255,255,255,0.8);
	transition: all 0.4s ease;
}
.technology .inner:hover .content p {
	color: #fff;
}
.technology.swiper .swiper-pagination.swiper-pagination-bullets {
	display: none;
}
@media (min-width: 991px) {
	.technology .inner {
		padding: 70px;
	}	
	.technology .inner .content {
		margin-top: 30px;
	}
}



/* Associate */ 
.associate .swiper-slide {
	padding-top: 10px;
}
.associate .inner {
    padding: 10px 0;
    border-radius: 15px;
    border: 1px solid var(--e-global-color-57305ce);
    transition: transform 0.35s ease;
}
.associate .inner:hover {
    transform: translateY(-6px) scale(1.03);
}
.associate .inner img {
	display: block;
}
@media (min-width: 768px) {
	.associate .inner {
		padding: 20px 15px;
		border-radius: 30px;
	}
}



/*instagram*/
#sb_instagram {
	padding: 0!important;
}
#sb_instagram #sbi_images .sbi_item {
	transition: all 0.4s ease !important;
	box-shadow: 0 0 35px 0 rgba(0, 0, 0, 0.08) !important;
	border-radius: 15px !important;
}
#sb_instagram #sbi_images .sbi_item:hover {
	transform: translateY(-10px) !important;
}
#sb_instagram #sbi_images {
	gap: 5px!important;
	padding: 0!important;
}
@media (min-width: 991px) {
	#sb_instagram #sbi_images {
		gap: 30px!important;
	}
	#sb_instagram #sbi_images .sbi_item {
		border-radius: 30px !important;
	}
}


/**
 * policy
 */
.policy h2 {
	margin-bottom: 20px;
}
.policy p:not(:last-child) {
    margin-bottom: 20px;
}
.policy p b {
  color: var(--e-global-color-text);    
}
.policy h3 {
	margin-top: 10px;
	margin-bottom: 15px;
}
.policy ul {
	padding-left: 20px;
	margin-bottom: 10px;
}



/**
 * ABOUT
 */

/* Corevalues */
.corevalue .swiper-slide {
	padding-top: 10px;
}
.corevalue .inner {
	padding: 30px;
	background: #fff;
	border-radius: 30px;
	text-align: center;
	transition: all 0.35s ease;
	border: 1px solid transparent;
}
.corevalue .inner:hover {
    transform: translateY(-10px);
    border-color: var(--e-global-color-primary);
    background-color: transparent;
}
.corevalue .inner .icon {
	margin-bottom: 20px;
}
.corevalue .inner .icon img {
	transition: all 0.4s ease;
}
.corevalue .inner:hover .icon img {
	transform: scale(1.1) rotate(15deg);
}
.corevalue .inner h3 {
	margin-bottom: 20px;
	transition: all 0.4s ease;
}
.corevalue .inner:hover h3 {
	color: var(--e-global-color-primary);
}
@media (min-width: 991px) {
	.corevalue .inner {
		padding: 45px;
	}
	.corevalue .inner .icon {
		margin-bottom: 30px;
	}
}


/* Affiliation */ 
.affiliation .swiper-slide {
	padding-top: 10px;
}
.affiliation .inner {
    padding: 10px 0;
    border-radius: 15px;
    background: var(--e-global-color-accent);
    transition: transform 0.35s ease;
}
.affiliation .inner:hover {
    transform: translateY(-6px) scale(1.03);
}
.affiliation .inner img {
	display: block;
}
@media (min-width: 768px) {
	.affiliation .inner {
		padding: 20px 15px;
		border-radius: 30px;
	}
}



/**
 * SUSTAINIBILITY
 */
.sus-goals .swiper-slide {
	padding-top: 10px;
}
.sus-goals .inner {
	padding: 30px;
	border-radius: 30px;
	text-align: center;
	transition: all 0.4s ease;
	border: 1px solid var(--e-global-color-57305ce);
}
.sus-goals .inner:hover {
    transform: translateY(-10px);
    border-color: var(--e-global-color-primary);
}
.sus-goals .inner .icon {
	margin-bottom: 20px;
}
.sus-goals .inner .icon img {
	transition: all 0.4s ease;
}
.sus-goals .inner:hover .icon img {
	transform: scale(1.1) rotate(15deg);
}
.sus-goals .inner h3 {
	margin-bottom: 20px;
	transition: all 0.4s ease;
}
.sus-goals .inner:hover h3 {
	color: var(--e-global-color-primary);
}
@media (min-width: 991px) {
	.sus-goals .inner {
		padding: 45px;
	}
	.sus-goals .inner .icon {
		margin-bottom: 30px;
	}
}



/**
 * SOLAR SOLUTION
 */
/* Solar System */
.solar-system .swiper-slide {
	padding-top: 10px;
}
.solar-system .inner {
	border: 1px solid var(--e-global-color-57305ce);
    border-radius: 30px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s ease;
}
.solar-system .inner:hover {
	transform: translateY(-10px);
	border-color: var(--e-global-color-primary);
}
.solar-system .inner h3 {
	margin: 30px 0 20px;
	transition: all 0.4s ease;
}
.solar-system .inner:hover h3 {
	color: var(--e-global-color-primary);
}
@media (min-width:767px) {
	.solar-system .inner {
		padding: 50px;
	}
}


/* Solar Solution */
.owl-solution {
	max-width: 1320px;
	overflow: visible !important;
}
.owl-solution .swiper-wrapper {
    overflow: visible !important;
}
.owl-solution .swiper-slide {
	transition: all 0.4s ease;
	opacity: 0.4;
}
.owl-solution .swiper-slide-active {
	opacity: 1;
	z-index: 3;
}

.owl-solution .inner {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--e-global-color-57305ce);
    border-radius: 30px;
    transition: transform 0.4s ease;
}
.owl-solution .swiper-slide-active:hover .inner {
	transform: translateY(-10px);
}
.owl-solution .thumbnail {
	position: relative;
  	overflow: hidden;
  	border-radius: 30px;
}
.owl-solution .thumbnail img {
    width: 100%;
    display: block;
    transition: transform 0.7s ease;
}
.owl-solution .swiper-slide-active:hover .thumbnail img {
	transform: scale(1.08);
}

.owl-solution .content {
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    transform: translateY(180px);
    padding: 30px;
}
.owl-solution .swiper-slide-active .content {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.owl-solution .content h3 {
    margin-bottom: 15px;
}

.owl-solution .swiper-button-next, 
.owl-solution .swiper-button-prev {
    width: 24px;
    height: 24px;
    background: var(--e-global-color-primary);
    color: #fff;
    border-radius: 50%;
    padding: 7px;
    top: 28% !important;
}
.owl-solution .swiper-button-prev svg, 
.owl-solution .swiper-button-next svg {
	display: block!important;
}

@media (min-width:991px) {
	.owl-solution .inner {
    	border: 0;
    	border-radius: 0;
	}
	.owl-solution .content {
        padding: 50px 100px 0;
        border-radius: 50px 50px 0 0;
        background: #fff;
        position: absolute;
        bottom: -1px;
        left: 150px;
        right: 150px;
    }	
	.owl-solution .content h3 {
        font-size: 2rem;
        margin-bottom: 25px;
    }
	.owl-solution .swiper-button-next, 
	.owl-solution .swiper-button-prev {
		width: 40px;
    	height: 40px;
		padding: 12px;
		top: 50% !important;
		margin-top: calc(0px - 20px) !important;
	}
}


/* Solar Benefit */
.solarbenefit .swiper-slide {
	padding-top: 10px;
}
.solarbenefit .inner {
	padding: 30px;
	background: var(--e-global-color-dbf0871);
	border: 1px solid var(--e-global-color-dbf0871);
	border-radius: 30px;
	text-align: center;
	transition: all 0.4s ease;
}
.solarbenefit .inner:hover {
	transform: translateY(-10px);
	border-color: var(--e-global-color-primary);
	background: #fff;
}
.solarbenefit .inner img {
	transition: all 0.4s ease;
}
.solarbenefit .inner:hover img {
    transform: scale(1.1);
}
.solarbenefit .inner h3 {
	margin: 20px 0;
	transition: all 0.4s ease;
}
.solarbenefit .inner:hover h3 {
    color: var(--e-global-color-primary);
}
@media (min-width:767px) {
	.solarbenefit .inner { 
		padding: 50px 45px;
	}
}


/* Solar Projects*/
.archive-project.swiper .swiper-slide {
	padding: 30px 0;
}
.archive-project.swiper .swiper-pagination.swiper-pagination-bullets {
	margin-top: 0;
}



/**
 * EV SOLUTION
 */
.evmarket .swiper-slide {
	padding-top: 10px;
}
.evmarket .content-wrap {
	padding: 30px;
	border: 1px solid var(--e-global-color-57305ce);
	border-radius: 30px;
	text-align: center;
	transition: all 0.4s ease;
}
.evmarket .content-wrap:hover {
	transform: translateY(-10px);
	border-color: var(--e-global-color-secondary);
}
.evmarket .content-wrap img {
	width: 90px;
	transition: all 0.4s ease;
}
.evmarket .content-wrap:hover img {
    transform: scale(1.1);
}
.evmarket .content-wrap h3 {
	margin: 20px 0;
	transition: all 0.4s ease;
}
.evmarket .content-wrap:hover h3 {
    color: var(--e-global-color-secondary);
}
.evmarket.swiper .swiper-pagination-bullet {
	background: var(--e-global-color-secondary);
}
@media (min-width:767px) {
	.evmarket .content-wrap {
		padding: 50px;
	}
}



/**
 * PROJECTS
 */
.project-type {
	display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}
.project-type a {
    display: inline-block;
    padding: 4px 15px;
    border: 1px solid var(--e-global-color-57305ce);
	border-radius: 50px;
	font-size: 0.75rem;
    font-weight: 500;
	transition: all 0.4s ease;
}
.project-type a.active,
.project-type a:hover {
    border-color: var(--e-global-color-primary);
    color: var(--e-global-color-primary);
}
.project-type a:hover {
	transform: translateY(-5px);
}
@media (min-width: 768px) {
	.project-type {
		gap: 10px;
	    margin-bottom: 45px;
	}
	.project-type a {
		padding: 6px 30px;
		font-size: 0.875rem;
	}
}
@media (min-width: 991px) {
	.project-type {
		margin-bottom: 60px;
	}
}


 /* archive projects */
.archive-project:not(.swiper) {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 15px;
}
.archive-project .inner {
    box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}
.archive-project .inner:hover {
    transform: translateY(-10px);
}
.archive-project .img {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}
.archive-project .img img {
    display: block;
    width: 100%;
    transition: all 0.4s ease;
}
.archive-project .inner:hover .img img {
    transform: translateY(-8px) scale(1.06);
}
.archive-project .img .kw {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    font-weight: 700;
    padding: 10px 15px 0;
    font-size: 0.875rem;
    line-height: 1;
    border-radius: 10px 10px 0 0;
    transition: all 0.4s ease;
}
.archive-project .inner:hover .img .kw {
    color: var(--e-global-color-primary);
}
.archive-project .content {
    padding: 15px;
    text-align: center;
    transition: all 0.4s ease;
}
.archive-project .inner:hover .content {
    transform: translateY(-6px);
}
.archive-project .content h3 {
	transition: all 0.4s ease;
}
.archive-project .inner:hover .content h3 {
    color: var(--e-global-color-primary);
}
.archive-project .content span {
    display: inline-block;
    color: #838383;
    border-bottom: 1px solid var(--e-global-color-57305ce);
    text-transform: uppercase;
    padding: 0 20px 8px;
    margin-bottom: 12px;
    font-size: 0.625rem;
    line-height: 1;
    transition: all 0.4s ease;
}
.archive-project .inner:hover .content span {
    border-color: var(--e-global-color-primary);
    color: var(--e-global-color-primary);
}
.archive-project .content p {
    margin-top: 3px;
    font-size: 0.625rem;
}
@media (min-width: 767px) {
	.archive-project:not(.swiper) {
		gap: 30px;
	}	
	.archive-project .inner {
    	box-shadow: 0px 0px 55px 0px rgba(0, 0, 0, 0.08);
    	border-radius: 30px;
	}

	.archive-project .img {
    	border-radius: 30px;
	}
	.archive-project .img .kw {
    	padding: 15px 30px 0;
    	font-size: 1.25rem;
    	border-radius: 20px 20px 0 0;
	}	

	.archive-project .content {
        padding: 45px;
    }
    .archive-project .content span {
    	padding: 0 30px 15px;
    	margin-bottom: 20px;
    	font-size: 0.75rem;
    }
	.archive-project .content p {
		font-size: 0.875rem;
		margin-top: 5px;
	}
}
@media (min-width: 991px) {
	.archive-project:not(.swiper) {
		grid-template-columns: repeat(3, 1fr);
	}
}
@media (max-width: 767px) {
	.archive-project .content h3 {
    	font-size: 1rem;
    }
}



/**
 * CLIENTS
 */
.client-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    text-align: center;
    overflow: hidden;
    gap: 10px;
}
.client-list .inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 15px;
}
.client-list .inner img {
	transition: transform 0.4s ease;
	display: inline-flex;
}
.client-list .inner:hover img {
	transform: translateY(-10px);
}
.client-list .inner h3 {
	display: none;
}
@media (min-width: 767px) {	
	.client-list {
    	gap: 20px;
    }
	.client-list .inner {
    	padding: 30px;
    	border-radius: 20px;
	}
}
@media (min-width: 991px) {
	.client-list {
    	grid-template-columns: repeat(4, 1fr);
    	gap: 30px;
   	}
	.client-list .inner {
    	padding: 40px 0;
    	border-radius: 30px;
	}
}



/**
 * CARRERS
 */
.nojob-status {
    color: var(--e-global-color-secondary);
    padding: 15px;
    border: 1px dashed var(--e-global-color-secondary);
	border-radius: 15px;
} 
@media (min-width: 991px) {
	table.career .elementor-button {
    	padding: 6px 20px;
		font-size: 0.75rem;
    }
}
@media (max-width: 767px) {
	table.career .elementor-button {
	    padding: 5px 15px;
	    font-size: 0.625rem;
	} 
	table.career.responsive-table thead {
		display: none;
	}
	table.career.responsive-table tr {
		display: block;
		margin-bottom: 15px;
		border: 1px solid #f3f3f3;
		padding: 15px;
		border-radius: 15px;
	}
	table.career.responsive-table td {
		display: block;
		padding: 5px !important;
		padding-left: 110px !important;
		position: relative;
	}
	.responsive-table td:before {
		/*content: attr(data-label);*/
		font-weight: 600;
		position: absolute;
		top: 5px;
		left: 0;
		color: var(--e-global-color-text);
	}
	.responsive-table td:nth-child(1):before {
	  content: "Job";
	}
	.responsive-table td:nth-child(2):before {
	  content: "Location";
	}
	.responsive-table td:nth-child(3):before {
	  content: "Experience";
	}
	.responsive-table td:nth-child(4):before {
	  content: "Qualification";
	}
}



/**
 * FRANCHISE
 */

/* Steps */
.steps .swiper-slide {
	padding-top: 10px;
}
.steps .inner {
	padding: 20px 10px;
	border: 1px solid var(--e-global-color-57305ce);
	border-radius: 20px;
	text-align: center;
	transition: all 0.4s ease;
}
.steps .inner:hover {
	transform: translateY(-10px);
	border-color: var(--e-global-color-primary);
}
.steps .inner .icon {
	margin-bottom: 20px;
}
.steps .inner .icon img {
	transition: all 0.4s ease;
	width: 50px;
}
.steps .inner:hover .icon img {
	transform: translateY(-10px) scale(1.1) rotate(5deg);
}
.steps .inner h3 {
	transition: all 0.4s ease;
	font-size: 1.1rem;
}
.steps .inner:hover h3 {
	color: var(--e-global-color-primary);
}
@media (min-width: 991px) {
	.steps .inner {
		padding: 50px;
		border-radius: 30px;
	}
	.steps .inner .icon {
		margin-bottom: 30px;
	}
	.steps .inner .icon img {
		width: 70px;
	}
	.steps .inner h3 {
		font-size: 1.4rem;
	}
}


/* Find A Store */
.store-wrap {
	display: flex;
	flex-direction: column;
	gap: 30px;
}
.store-map {
	width: 100%;
	height: 200px;
	border-radius: 30px;
}

.store-find {
    width: 100%;
    border-radius: 30px;
    padding: 30px;
    background: var(--e-global-color-primary);
}
.store-find .form-group select {
    background-color: #fff;
    border-color: #fff;
    border-radius: 10px!important;
    color: var(--e-global-color-primary) !important;
}
.store-find .store-list {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    height: 240px;
    overflow-Y: scroll;
    padding-right: 30px;
}
.store-find .store-list .inner:not(:last-child) {
	border-bottom: 1px solid rgba(255,255,255,0.1);
   	padding-bottom: 20px;
   	margin-bottom: 20px;
}
.store-find .store-list .inner h3 {
    margin-bottom: 10px;
    font-size: 1.25rem;
    color: #fff;
    font-weight: 500;
}
.store-find .store-list .inner p {
	color: var(--e-global-color-b0badc4);
}
@media (min-width: 767px) {
	.store-wrap {
		flex-direction: row;
	}
	.store-map {
		width: 50%;
		height: 300px;
	}
	.store-find {
    	width: 50%;
 	}
}
@media (min-width: 991px) {
	.store-wrap {
		gap: 50px;
	}
	.store-map {
		width: 60%;
		height: 500px;
	}
	.store-find {
    	width: 40%;
    }
    .store-find .store-list {
    	height: 348px;
	}
}



/**
 * CALCULATOR
 */
.calculator {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 50px;
} 
.calculator .load-form {
	box-shadow: 0 0 35px 0 rgb(0, 0, 0, 0.08);
    padding: 15px 30px 30px;
    border-radius: 30px;
}
.calculator .load-form form label {
    margin-top: 15px;
}
.calculator .load-form form .form-group:last-child {
	margin-bottom: 0!important;
}
.calculator .load-form form .elementor-button {
	margin-top: 20px;
}

.calculator .result {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}
.calculator .result .inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
	gap: 10px;
	transition: all 0.4s ease;
}
.calculator .result .inner:hover {
	transform: translateX(10px);
}
.calculator .result .inner img {
	width: 50px;
}
.calculator .result .inner h2 {
	margin-bottom: 5px;
}
@media (min-width: 768px) {
	.calculator {
		grid-template-columns: repeat(2, 1fr);
		gap: 60px;
	}
	.calculator .result {
    	grid-template-columns: repeat(1, 1fr);
	}
	.calculator .result .inner {
  		flex-direction: row;
    	text-align: left;
    	gap: 30px;
	}
}
@media (min-width: 991px) {
	.calculator {
		gap: 150px;
	}
	.calculator .load-form {
		padding: 30px 50px 50px;
	}
	.calculator .load-form form label {
    	margin-top: 20px;
	}
	.calculator .result {
   		gap: 20px;
	}	
	.calculator .result .inner img {
    	width: 70px;
	}
}



/**
 * CONTACT
 */
.branches .swiper-slide {
	padding-top: 10px;
}
.branches .inner {
	border: 1px solid var(--e-global-color-57305ce);
    border-radius: 30px;
    padding: 30px;
    text-align: center;
    transition: transform 0.4s ease;
}
.branches .inner:hover {
	transform: translateY(-10px);
	border-color: var(--e-global-color-primary);
}
.branches .inner h3 {
	position: relative;
	padding-bottom: 20px;
	margin-bottom: 20px;
	transition: transform 0.4s ease;
}
.branches .inner:hover h3 {
	color: var(--e-global-color-primary);
}
.branches .inner h3:before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 1px;
	background: var(--e-global-color-57305ce);
}
.branches .inner h3:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 1px;
	background: var(--e-global-color-primary);
	transition: width 0.4s ease-in-out;
}
.branches .inner:hover h3:after {
	width: 100%;
}	
.branches .inner p {
	margin-bottom: 15px;
}
@media (min-width: 991px) {
	.branches .inner {
		padding: 50px;
	}
}



/**
 * ARCHIVE PAGE
 */
.archive-page {
	padding: 50px 0;
}
.archive-page .elementor-widget-wrap {
	padding: 0 20px;
}
@media (min-width:991px) {
	.archive-page {
		padding: 120px 0;
	}
}



/**
 * BLOG
 */
.archive-posts.hm .swiper-slide {
	padding: 15px;
}
@media (max-width: 991px) {
	.archive-posts.hm.swiper .swiper-pagination.swiper-pagination-bullets {
		margin-top: 0;
	}
}

.archive-posts:not(.hm) {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
}
.archive-posts .post {
	transition: transform 0.4s ease;
}
.archive-posts .post:hover {
	transform: translateY(-10px);
}
.archive-posts .post .inner {
	position: relative;
	overflow: hidden;
	border-radius: 30px;
	box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.08);
}
.archive-posts .post .thumbnail {
    width: 100%;
    overflow: hidden;
	display: block;
	border-radius: 30px;
    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.4s ease;
}
.archive-posts .post:hover .thumbnail img {
	transform: scale(1.05);
}
.archive-posts .post .content {
    padding: 30px;
	transition: transform 0.4s ease;
}
.archive-posts .post:hover .content {
    transform: translateY(-10px);
}
.archive-posts .post .date {
    font-size: 0.75rem;
    margin-bottom: 10px;
    display: block;
    color: #838383;
}
.archive-posts .post h3 {
	font-size: 1.3rem;
	margin-bottom: 10px;
}
.archive-posts .post p {
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid var(--e-global-color-57305ce);
	font-size: 0.75rem;
}
.archive-posts .post .readmore {
    text-transform: uppercase;
    font-weight: 700;
    display: block;
    font-size: 0.75rem;
    transition: color 0.3s ease;
    color: #838383;
}
.archive-posts .post:hover .readmore {
	color: var(--e-global-color-primary);
}
.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);
	}	
}
@media (min-width: 991px) {
	.archive-posts:not(.hm) {
		grid-template-columns: repeat(3, 1fr);
	}
	.archive-posts .post .content {
        padding: 45px;
    }
    .archive-posts .post .date {
		margin-bottom: 15px;
		font-size: 0.875rem;
	}
	.archive-posts .post h3 {
		font-size: 1.5rem;
		margin-bottom: 15px;
	}	
	.archive-posts .post p {
		font-size: 0.875rem;
	}
}



/**
 * SIGLE BLOG
 */
.single-posts .post-image img,
.single-posts .post-content img {
	display: block;
	width: 100%;
	border-radius: 30px;
}
.single-posts .post-content img {
	border-radius: 20px;
}

.single-posts .post-info ul li {
    display: inline-block;
    text-transform: capitalize;
    font-size: 0.75rem; 
    color: #838383;   
}
.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.8rem;
}

.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,
.single-posts .post-content .wp-block-columns  {
	margin: 20px 0;
}
.single-posts .post-content .wp-block-gallery,
.single-posts .post-content .wp-block-columns {
	display: grid;
}
.single-posts .post-content .wp-block-gallery.two,
.single-posts .post-content .wp-block-columns.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;
}
.single-posts .post-content .wp-block-columns .fb-video,
.single-posts .post-content .wp-block-columns iframe {
	width: 100%;
	height: 100%;
	border-radius: 20px;
}

@media (min-width: 991px) {
	.single-posts .post-info,
	.single-posts .post-title,
	.single-posts .post-content {
		width: 84%;
		margin-left: 8% !important;
	}

	.single-posts .post-image img {
		border-radius: 50px;
	}
	.single-posts .post-content img {
		border-radius: 30px;
	}

	.single-posts .post-info ul li {
		font-size: 1rem;
	}
	.single-posts .post-info ul li:not(:last-child) {
		margin-right: 20px;
	}

	.single-posts .post-title {
		margin: 30px 0 60px;
	}
	.single-posts .post-title h2 {
		font-size: 3.6rem;
	}

	.single-posts .post-content {
		background: #fff;
		margin-top: -80px;
		position: relative;
		padding: 50px 50px 0 50px;
		border-radius: 50px 50px 0 0;
	}
	.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,
	.single-posts .post-content .wp-block-columns  {
		margin: 40px 0;
	}
	.single-posts .post-content .wp-block-gallery.two,
	.single-posts .post-content .wp-block-columns.two,
	.single-posts .post-content .wp-block-gallery.three {
		gap: 30px 30px;
	}
	.single-posts .post-content .wp-block-columns .fb-video,
	.single-posts .post-content .wp-block-columns iframe {
		border-radius: 30px;
	}
}



/**
 * 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-primary) !important;
}
.archive-pagination a:hover {
	color: var(--e-global-color-secondary) !important;
}
@media (min-width: 991px) {
	.archive-pagination {
	   margin-top: 50px;
	}
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    gap: 5px;
    border-top: 1px solid var(--e-global-color-57305ce);
    margin-top: 20px;
    padding-top: 20px;    
}
.post-navigation a {
    font-weight: 500;
    color: var(--e-global-color-primary) !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: var(--e-global-color-secondary) !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-primary);
    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: 84% !important;
        margin-left: 8% !important;
	}
    .post-navigation a {
    	 font-size: 1rem;
    	 max-width: 380px;
	}
	.post-navigation i {
  		top: 4px;
    }
}



/**
 * FOOTER
 */
.main-footer {
	background-color: var(--e-global-color-primary);
	padding-top: 50px;
	font-size: 0.8125rem;
	color: var(--e-global-color-b0badc4);
	border-radius: 30px 30px 0 0;
}
.main-footer .elementor-widget-wrap {
	padding: 0 20px;
}
.main-footer .elementor-widget-wrap h3 {
    font-size: 0.875rem;
    color: #fff;
	margin-bottom: 15px;
}
.main-footer .elementor-widget-wrap a {
	display: inline-block;
	transition: all 0.3s ease-in-out;
}
.main-footer .elementor-widget-wrap a:hover {
	transform: translateX(5px);
	color: var(--e-global-color-secondary);
}

.main-footer .ftrlogo img {
	width: 120px;
    margin-bottom: 15px;
}
.main-footer .authorized {
    display: grid;
    column-gap: 20px;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 10px;
}
.main-footer .authorized .img {
    background: #ffffff;
    padding: 15px 15px 10px;
    border-radius: 10px;
    text-align: center;
    line-height: 1;
}
.main-footer .authorized .img img {
    height: 25px;
    display: inline-block;
    max-width: none;
    width: auto;
}
.main-footer .authorized p {
    margin-top: 12px;
    font-size: 0.75rem;
    text-align: center;
}
.main-footer .iso {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 20px;
    border-width: 1px 0 1px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.15);
    padding: 15px 0;
    margin: 30px 0;    
}
.main-footer .iso span {
    font-weight: 400;
	font-size: 1.125rem;
    color: #fff;
}

.main-footer .ftrright > .elementor-widget-wrap {
    padding: 0;
}

.main-footer .ftrquote .elementor-element {
    display: grid;
    grid-template-columns: 60% 40%;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 30px;
    margin-bottom: 30px;
}
.main-footer .ftrquote h2 {
    color: #ffffff;
	font-size: 1.625rem;
}

.main-footer .social-icon a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 25px;
    height: 25px;
    background: rgba(255,255,255,0.25);
    border-radius: 50%;
    font-size: 0.75rem;
    margin-right: 8px;
    color: #fff;
    transition: all 0.3s ease-in-out;
}
.main-footer .social-icon a:hover {
	background-color: var(--e-global-color-secondary);
	color: #fff;
	transform: translateY(-5px);
}

.main-footer .ftrlinks {
    padding-left: 30px;
}
.main-footer .ftrlinks ul li {
    list-style: none;
	padding-left: 15px;
}
.main-footer .ftrlinks ul li:not(:last-child) {
	margin-bottom: 4px;
}
.main-footer .ftrlinks ul li:before {
    content: "";
    position: absolute;
    top: 8px;
    left: 0px;
    width: 4px;
    height: 4px;
    background: #ffffff70;
    border-radius: 50%;
}
.main-footer .ftrlinks ul li a {
	transition: all 0.3s ease-in-out;
	display: inline-block;
}

.main-footer .efarmev a {
	margin-top: 15px;
    padding: 5px 10px;
    font-size: 0.625rem;
    background: rgba(255,255,255,0.25) !important;
	color: #fff !important;
}

/* copyright */
.main-footer .copyright {
    margin-top: 30px;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.6875rem;
    text-align: center;
    line-height: 1.8;
}

/* whatsapp */
.whatsapp-icon {
    position: fixed;
    bottom: 10px;
    right: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366;
    color: #fff;
    width: 35px;
    height: 35px;
    font-size: 1rem;
    line-height: 1;
    border-radius: 50%;
}
.whatsapp-icon.cal {
    bottom: 50px;
}

@media (min-width: 767px) {
    .main-footer .iso {
        margin: 30px 0 0;
        border-width: 1px 0 0;
        padding: 30px 0 0;
    }
}
@media (min-width: 991px) {
	.main-footer {
        padding-top: 120px;
        font-size: 0.875rem;
        border-radius: 50px 50px 0 0;
    }
	.main-footer .elementor-widget {
		margin-bottom: 40px;
	}
	.main-footer .elementor-widget-wrap h3 {
        margin-bottom: 20px;
        font-size: 1rem;
    }

    .main-footer .ftrlogo img {
        margin-bottom: 30px;
        width: 176px;
    }
	.main-footer .authorized .img {
        padding: 20px 20px 15px;
    }
    .main-footer .authorized .img img {
        height: 30px;
    }
    .main-footer .iso {
        margin-top: 40px;
        padding-top: 40px;
        justify-content: flex-start;
    }

	.main-footer .ftrright {
		padding-left: 80px;
	}
    .main-footer .ftrquote .elementor-element {
        grid-template-columns: 72% 28%;
        padding-bottom: 40px;
        margin-bottom: 50px;
    }	
    .main-footer .ftrquote h2 {
        font-size: 3rem;
    }

    .main-footer .ftraddress {
    	padding-left: 20px;
    }
    .main-footer .efarmev a {
    	font-size: 0.75rem;
	}

	/* copyright */
	.main-footer .copyright {
        margin-top: 80px;
        padding: 40px 0;
        font-size: 0.8125rem;
    }

	/* whatsapp */
	.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: translateX(10px);
    }
    .whatsapp-icon.cal {
    	bottom: 70px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
	.main-footer .ftrleft {
		width: 40%;
	}
	.main-footer .ftrright {
		width: 60%;
	}	
}
@media (max-width: 991px) {	
	.main-footer .ftrcontact, 
	.main-footer .ftraddress {
	    width: 50%;
	}
	.main-footer .ftrlinks {
		display: none;
	}
}
@media (max-width: 767px) {
	.main-footer .ftrquote {
        display: none;
    }
}