/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 1.0.1
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/*
    Add your custom styles here
*/



/* general designs */
p:last-child{
	margin: 0 !important;
}



/* home */
/* services section */
.services-accordion .elementor-tab-title,
.services-accordion .elementor-tab-content{
    border-bottom: 1px solid var( --e-global-color-986aafa ) !important;
}
.services-accordion .elementor-tab-title.elementor-active{
    border: none !important;
}
/* industries section */
.industries-wrapper{
    flex-direction: row !important;
    flex-wrap: wrap;
}
.industry-item{
    width: calc((100% / 5) - 24px);
}
.industry-image .elementor-widget-container{
    width: 168px;
    height: 168px;
    border: 3px solid var(--e-global-color-primary);
    border-radius: 100%;
    padding: 33px;
    margin: 0 auto;
    position: relative;
    transition: ease-out 0.3s;
}
.industry-image .elementor-widget-container:after{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border: 1px solid #99C83C;
    border-radius: 100%;
    opacity: 0;
    visibility: hidden;
    transition: ease-out 0.3s;
    pointer-events: none;
}
.industry-image img{
    width: 100%;
    height: 100%;
    transition: ease-out 0.3s;
}
.industry-item:hover .industry-image .elementor-widget-container{
    border-color: #99C83C;
}
.industry-item:hover .industry-image .elementor-widget-container:after{
    width: 90%;
    height: 90%;
    left: 5%;
    top: 5%;
    opacity: 1;
    visibility: visible;
}
.industry-item:hover .industry-image img{
    transform: scale(0.8);
}



/* scroll to top button */
.scrolltop-btn .elementor-icon-box-wrapper{
    width: fit-content;
    margin-left: auto;
    cursor: pointer;
}
.scrolltop-btn .elementor-icon svg{
    box-shadow: 2px 2px 5px rgba(0,0,0,0.15);
    border-radius: 6px;
    transition: ease-out 0.3s;
}
.scrolltop-btn .elementor-icon-box-wrapper:hover svg{
    box-shadow: none;
}



/* cta & footer */
.cta-info .elementor-icon-list-text,
.footer-info .elementor-icon-list-text{
    transition: ease-out 0.3s !important;
}
.cta-info .elementor-icon-list-text:hover,
.footer-info .elementor-icon-list-text:hover{
    opacity: 0.5;
}



/* MOBILE RESPONSIVE */
@media(max-width: 1024px){
    .industry-item{
        width: calc((100% / 4) - 22.5px);
    }
    .industry-image .elementor-widget-container{
        width: 140px;
        height: 140px;
        padding: 28px;
    }
}

@media(max-width: 767px){
    .industry-item{
        width: calc((100% / 3) - 20px);
    }
    .industry-image .elementor-widget-container{
        width: 110px;
        height: 110px;
        border-width: 2px;
        padding: 20px;
    }
    .industry-item:hover .industry-image .elementor-widget-container:after{
        width: 94%;
        height: 94%;
        left: 3%;
        top: 3%;
    }
	.scrolltop-btn .elementor-icon-box-wrapper{
		align-items: center;
	}
	.scrolltop-btn .elementor-icon-box-icon{
		display: inline-flex !important;
	}
}

@media(max-width: 520px){
    .industries-wrapper{
        gap: 20px;
        row-gap: 30px;
    }
    .industry-item{
        width: calc((100% / 2) - 10px);
    }
}

@media(max-width: 380px){
    .industry-image .elementor-widget-container{
        width: 80px;
        height: 80px;
        padding: 15px;
    }
    .industry-item:hover .industry-image .elementor-widget-container:after{
        width: 94%;
        height: 94%;
        left: 3%;
        top: 3%;
    }
    .industry-item .elementor-heading-title{
        font-size: 14px !important;
    }
}