:root{
	--color-blue:#0179EB;
	--color-green:#30A025;
	--color-text:#232629;
}
.top-header-right .elementor-icon-list-icon {
    width: 25px;
    height: 25px;
    line-height: 29px;
    display: block !important;
    text-align: center !important;
    background: var(--color-blue);
    border-radius: 6px;
    margin-right: 5px;
}
.top-header-right .elementor-icon-list-icon svg
{
    margin-right:0 !important;
}
.main-header{
	position:relative;
	width:100%;
}
.logo-box {
    position: absolute;
    top: 0;
    margin-top: -40px;
	z-index:9;
}
.about-section{
	position:relative;
	overflow:hidden;
}
.about-section:before {
    position: absolute;
    content: "";
    width: 450px;
    height: 450px;
    background: transparent;
    border: 80px solid #ebf0f5;
    top: -240px;
    border-radius: 500px;
    left: -100px;
    z-index: 1;
}
.about-section:after {
    position: absolute;
    content: "";
    width: 550px;
    height: 550px;
    background: transparent;
    border: 80px solid #ebf0f5;
    top: -140px;
    border-radius: 500px;
    right: -170px;
    z-index: 1;
}
.custom-subtitle h2 {
    background: #ebf0f5;
    padding: 5px 15px;
    display: inline;
    border-radius: 50px;
}
.elementor-heading-title span {
    color: var(--color-text);
}
.about-right-box{
	position: relative;
    overflow: hidden;
}
.about-right-box:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transition: all .3s linear;
    -ms-transition: all .3s linear;
    transition: all .3s linear;
	background:var(--color-green);
}
.about-right-box:hover:before {
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
}