html {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 100%;
    height: 100%;
    background: #fff;
    scroll-behavior: smooth;
}
/* html {
    font-size: calc(1em + 1vw);
}
*/
body {
    padding: 0;
    margin: 0;
    height: 100%;
    font-family: "Poppins", arial, sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: #4D4D4D;
    overflow-x: hidden;
}
body.fixed{
    overflow: hidden;
}
h1, h2, h3, h4, h5, h6 {
    font-family: "Poppins", arial, sans-serif;
    font-weight: bold;
    color: #202020;
}
p{
    margin-bottom: 1em;
}
.container-custom{
    width: 100%;
    padding:0 20px;
}
.btn-anim:before, .btn-anim::before{
    content: "";
    display: block;
    position: absolute;
    z-index: 1;
    width: 0;
    height: 100%;
    top:0;
    left: 0;
    background:#34855a;
    -webkit-transition: all 300ms ease-out;
    -o-transition: all 300ms ease-out;
    transition: all 300ms ease-out;
}
.btn-anim:hover:before, .btn-anim:hover::before{
    width: 100%;
    -webkit-transition: all 300ms ease-out;
    -o-transition: all 300ms ease-out;
    transition: all 300ms ease-out;
}
.btn-anim span{
    position: relative;
    z-index: 2;
    left:0;
    color: #000;
    -webkit-transition: all 300ms ease-out;
    -o-transition: all 300ms ease-out;
    transition: all 300ms ease-out;
}
.btn-anim span:before, .btn-anim span::before{
    content: "";
    display: block;
    position: absolute;
    z-index: 2;
    top:calc(50%);
    left: -15px;
    width: 0;
    height: 1px;
    background:#fff;
    -webkit-transition: all 300ms ease-out;
    -o-transition: all 300ms ease-out;
    transition: all 300ms ease-out;
}
.btn-anim:hover span{
    left: 10px;
    color: #fff;
    -webkit-transition: all 300ms ease-out;
    -o-transition: all 300ms ease-out;
    transition: all 300ms ease-out;
}
.btn-anim:hover span:before, .btn-anim:hover span::before{
    width: 10px;
    height: 1px;
    -webkit-transition: all 300ms ease-out;
    -o-transition: all 300ms ease-out;
    transition: all 300ms ease-out;
}



.grecaptcha-badge{
    display: none;
}




/********************** native scrollbar custom ************************/
/* width */
::-webkit-scrollbar {
    height: 10px;
    width: 10px;
}
/* button */
::-webkit-scrollbar-button {
    background: transparent;
}
/* Handle */
::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 5px;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #FF524D;
}
/* Track */
::-webkit-scrollbar-track {
    background: transparent;
}
/* The track NOT covered by the handle. ::-webkit-scrollbar-track-piece {
    background: #000;
}
/* Corner */
::-webkit-scrollbar-corner {
    background: #fff;
}
/* Resizer */
::-webkit-resizer {
    background: #fff;
}
/******************* general styles *******************/



/*********************** modal ****************************/
.modal-login{
    max-width: 450px;
}
.modal-login-logo{
    width: 115px; margin:0 auto;
}
.modal-login-logo img{
    width: 100%;
}
.modal-login-pic{
    width: 300px; margin:0 auto;
}
.modal-login-pic img{
    width: 100%;
}
.modal-login-content{
    max-width: 340px;
    margin:0 auto;
}
.btn-login-google{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-weight: 600;
}
.logo-google-g{
    display: inline-block;
}
.logo-google-g img{
    height: 20px;
}





/************ button top ****************/
#back-top {
    display: inline-block;
    background-color: #ff9800;
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 50%;
    position: fixed;
    bottom: 70px;
    right: 15px;
    -webkit-transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
    -o-transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
    transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}
#back-top i {
    color: #000;
    font-size: 22px;
    line-height: 40px;
}
#back-top.show {
    opacity: 0.7;
    visibility: visible;
}
#back-top.show:hover {
    cursor: pointer;
    background-color: #ff9800;
    color: #fff;
    opacity: 1;
}
#back-top.show:active {
    background-color: #ff9800;
    color: #fff;
    opacity: 1;
}





/*********************************** main styles ************************/
.main-page-wrapper {
    position: relative;
    overflow-x: hidden;
    /*margin-top:60px;*/
}
.main-page-content-wrapper {
    position: relative;
}





/****************************** main nav *******************************/
.main-nav-wrapper{
    position: relative; z-index: 9999;
    width: 100%; height: 50px;
    left: 0; top:0;
    background: #fff;
}
.main-nav-wrapper-inner{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 50px;
    padding-right: 0;
}
.main-logo-wrapper {
    position: relative;
    left: 50px; /*top:10px;*/
    -webkit-transition: all 200ms ease-out;
    -o-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
}
.main-logo-wrapper img {
    height:25px;
    -webkit-transition: all 200ms ease-out;
    -o-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
}

.main-nav-list-wrapper{
    display: none;
}
.main-nav-list{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin:0; padding:0;
    list-style: none;
}
.main-nav-list li a{
    display: block;
    padding:5px 15px;
    color: #202020; text-decoration: none; font-weight: 600;
    -webkit-transition: all 200ms ease-out;
    -o-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
}
.main-nav-list li a:hover,
.main-nav-list li.active a{
    color: #FF524D;
    -webkit-transition: all 200ms ease-out;
    -o-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
}
.main-nav-list li a.btn-outline-primary:hover{
    color: #fff;
}
.main-nav-solution-dropdown-menu li a{
    font-weight: 400;
}

.main-nav-user-wrapper{
    display: none;
}

.btn-main-nav-language-selector{
    background: none;
    border: none;
    display: block;
    padding:5px 15px;
    color: #202020; text-decoration: none; font-weight: 600;
    -webkit-transition: all 200ms ease-out;
    -o-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
}
.btn-main-nav-language-selector:hover{
    color: #FF524D;
    -webkit-transition: all 200ms ease-out;
    -o-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
}



.main-nav-wrapper.scrolled{
    position: fixed;
    z-index: 9999;
    top:0; left: 0;
    width: 100%; height: 50px;
    background: #fff;
    border-bottom:1px solid #E4E8EC;
    -webkit-box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 4%);
            box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 4%);
}
.main-nav-wrapper.scrolled .main-nav-wrapper-inner{
    height: 50px;
}
.main-nav-wrapper.scrolled .main-logo-wrapper img{
    height: 25px;
}







.mobile-main-nav-user{
    /*position: absolute;*/
    /*right:10px;*/
    width: 50px; height: 50px;
}
.btn-mobile-main-nav-user i{
    font-size: 1.7rem; color: #FF524D; line-height: 1.3;
}
.btn-mobile-main-nav-user::after{
    display: none;
}
.mobile-main-nav-user.dropdown .dropdown-menu{
    width: 200px;
}
.mobile-main-nav-user.dropdown .dropdown-menu a{
    font-weight: 600;
}

.main-nav-user-logged-wrapper{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-right: 10px;
}
.main-nav-user-logged-text{
    display: none;
}
.btn-main-nav-user-logged{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.btn-main-nav-user-logged::after{
    display: none;
    margin-left: 10px;
}
.main-nav-user-logged-avatar{
    width: 38px; height: 38px;
    border-radius: 50%;
    background-size: cover;
    overflow: hidden;
}


div.burger {
    height: 50px;
    width: 30px;
    position: absolute;
    z-index: 99999;
    top: -10px;
    left: 20px;
    cursor: pointer;
}
div.x, div.y, div.z {
    position: absolute;
    margin: auto;
    top: 0px;
    bottom: 0px;
    background: #FF524D;
    border-radius:2px;
    -webkit-transition: all 200ms ease-out;
    -o-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
}
div.x, div.y, div.z {
    height: 3px;
    width: 26px;
}
div.y{
   top: 18px;
}
div.z{
   top: 37px;
}
div.collapse{
    top: 20px;
    /*background:#4a89dc;*/
    -webkit-transition: all 70ms ease-out;
    -o-transition: all 70ms ease-out;
    transition: all 70ms ease-out;
}
div.rotate30{
    -ms-transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
    -webkit-transition: all 50ms ease-out;
    -o-transition: all 50ms ease-out;
    transition: all 50ms ease-out;
}
div.rotate150{
    -ms-transform: rotate(150deg);
    -webkit-transform: rotate(150deg);
    transform: rotate(150deg);
    -webkit-transition: all 50ms ease-out;
    -o-transition: all 50ms ease-out;
    transition: all 50ms ease-out;
}
div.rotate45{
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 100ms ease-out;
    -o-transition: all 100ms ease-out;
    transition: all 100ms ease-out;
}
div.rotate135{
    -ms-transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    -webkit-transition: all 100ms ease-out;
    -o-transition: all 100ms ease-out;
    transition: all 100ms ease-out;
}
div.burger.open .collapse:not(.show){
    display: block;
}
div.burger.open div.x,
div.burger.open div.y,
div.burger.open div.z{
    background: #fff;
}
/*
div.navbar{
   height:73px;
   background:#385e97;
}
*/
div.circle{
    border-radius: 50%;
    width: 0px;
    height: 0px;
    position:absolute;
    z-index: 999;
    top: 20px;
    left: 36px;
    background:#FF524D;
    opacity:1;
    -webkit-transition: all 300ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
    -o-transition: all 300ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
    transition: all 300ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
}
div.circle.expand{
    width:1200px;
    height:1200px;
    top: -560px;
    left: -565px;
    -webkit-transition: all 400ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
    -o-transition: all 400ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
    transition: all 400ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
}
div.menu {
    height: auto;
    width: 360px;
    z-index: 9991;
    position: relative;
    top: 25px;
    left: 0px;
}
div.menu ul{
    margin:0; padding:0;
}
div.menu ul li {
    list-style: none;
    opacity:0;
    width:100%;
    margin-bottom: 15px;
    text-align:center;
    font-size:0px; color: #fff;
    -webkit-transition: all 70ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
    -o-transition: all 70ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
    transition: all 70ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
}
div.menu ul li a {
    display: block;
    padding:10px 0;
    color:#fff;
    text-transform:uppercase;
    text-decoration:none;
}

div.menu li.animate{
    font-size:18px;
    opacity:1;
    -webkit-transition: all 150ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
    -o-transition: all 150ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
    transition: all 150ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
}
/*
div.menu li.animate:nth-of-type(1){
    top:120px;
    transition-delay: 0.0s;
}
div.menu li.animate:nth-of-type(2){
    top:190px;
    transition-delay: 0.03s;
}
div.menu li.animate:nth-of-type(3){
    top:260px;
    transition-delay: 0.06s;
}
div.menu li.animate:nth-of-type(4){
    top:330px;
    transition-delay: 0.09s;
}
div.menu li.animate:nth-of-type(5){
    top:400px;
    transition-delay: 0.12s;
}
div.menu li.animate:nth-of-type(6){
    top:470px;
    transition-delay: 0.15s;
}
*/
div.menu{
    display: none;
}
div.menu.open{
    display: block;
}
div.collapse.mobile-main-nav-dropdown-menu-wrapper{
    background: none;
}
.mobile-main-nav-dropdown-menu-container{
    max-width: 250px;
    padding:5px 0; margin:0 auto;
    border-top:1px dashed #fab4b2; border-bottom:1px dashed #fab4b2;
}
div.menu ul li ul li{
    margin-bottom: 0;
}
div.menu ul li ul li a{
    padding:5px 0;
    font-size: 16px; text-transform: capitalize;
}



/*********************** homepage banner ********************/
.homepage-banner-wrapper{
    position: relative;
}
.homepage-banner-container{
    position: relative;
}
.homepage-banner-content h1{
    font-size: 2rem;
}
.homepage-banner-content p{
    font-size: 1.15rem;
}
.homepage-banner-pic{
    position: relative;
    width: 120%;
    left:-30px; top:-60px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.homepage-banner-pic img{
    width: 100%;
}


/****************************** homepage how ************************/
.homepage-how-can-we-help-content-before-wrapper,
.homepage-how-can-we-help-content-after-wrapper{
    padding-bottom: 20px;
}
.homepage-how-can-we-help-content-before-wrapper::before{
    content: "";
    position: absolute; z-index: 0;
    top:20%; right:-2px;
    width: 3px; height: 50px;
    background-color: #FF524D;
}
.homepage-how-can-we-help-content-pic{
    position: relative;
    /*padding:0 20px;*/
    margin-bottom: 20px;
    overflow: hidden;
}
.homepage-how-can-we-help-content-pic img{
    display: block;
    max-width: 100%;
}
.homepage-how-can-we-help-content-pic.before-awetomate{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
}
.homepage-how-can-we-help-content-pic.desktop{
    display: none;
}
.homepage-how-can-we-help-content-pic.mobile{
    display: block;
}

@-webkit-keyframes body-sad {
    0%   {bottom:7%;}
    30%  {bottom:3.5%;}
    70%  {bottom:3.5%;}
}

@keyframes body-sad {
    0%   {bottom:7%;}
    30%  {bottom:3.5%;}
    70%  {bottom:3.5%;}
}
@-webkit-keyframes head-sad {
    0%   {bottom:29%;}
    40%  {bottom:22%;}
    70%  {bottom:22%;}
}
@keyframes head-sad {
    0%   {bottom:29%;}
    40%  {bottom:22%;}
    70%  {bottom:22%;}
}
@-webkit-keyframes mouth-sad {
    0%   {bottom:31.5%;}
    40%  {bottom:23.7%;}
    70%  {bottom:23.7%;}
}
@keyframes mouth-sad {
    0%   {bottom:31.5%;}
    40%  {bottom:23.7%;}
    70%  {bottom:23.7%;}
}
@-webkit-keyframes body-happy {
    0%   {bottom:3%;}
    30%  {bottom:8%;}
    40%  {bottom:6%;}
    70%  {bottom:6%;}
}
@keyframes body-happy {
    0%   {bottom:3%;}
    30%  {bottom:8%;}
    40%  {bottom:6%;}
    70%  {bottom:6%;}
}
@-webkit-keyframes head-happy {
    0%   {bottom:28%;}
    30%  {bottom:30%;}
    35%  {bottom:29%;}
    70%  {bottom:29%;}
}
@keyframes head-happy {
    0%   {bottom:28%;}
    30%  {bottom:30%;}
    35%  {bottom:29%;}
    70%  {bottom:29%;}
}
@-webkit-keyframes mouth-happy {
    0%   {bottom:30%; -webkit-transform: scale(80%); transform: scale(80%); -webkit-transform-origin: center; transform-origin: center;}
    30%  {bottom:32%; -webkit-transform: scale(100%); transform: scale(100%); -webkit-transform-origin: center; transform-origin: center;}
    35%  {bottom:31%; -webkit-transform: scale(100%); transform: scale(100%); -webkit-transform-origin: center; transform-origin: center;}
    50%  {bottom:31%; -webkit-transform: scale(100%); transform: scale(100%); -webkit-transform-origin: center; transform-origin: center;}
    100%  {bottom:30%; -webkit-transform: scale(80%); transform: scale(80%); -webkit-transform-origin: center; transform-origin: center;}
}
@keyframes mouth-happy {
    0%   {bottom:30%; -webkit-transform: scale(80%); transform: scale(80%); -webkit-transform-origin: center; transform-origin: center;}
    30%  {bottom:32%; -webkit-transform: scale(100%); transform: scale(100%); -webkit-transform-origin: center; transform-origin: center;}
    35%  {bottom:31%; -webkit-transform: scale(100%); transform: scale(100%); -webkit-transform-origin: center; transform-origin: center;}
    50%  {bottom:31%; -webkit-transform: scale(100%); transform: scale(100%); -webkit-transform-origin: center; transform-origin: center;}
    100%  {bottom:30%; -webkit-transform: scale(80%); transform: scale(80%); -webkit-transform-origin: center; transform-origin: center;}
}

.homepage-how-can-we-help-content-pic-person{
    position: absolute;
    z-index: 1;
    width: 47%;
    bottom:-6%;
    overflow: hidden;
}
.homepage-how-can-we-help-content-pic-person img{
    width: 100%;
}
.homepage-how-can-we-help-content-pic-person.before-awetomate{
    right:0; margin-right:15px;
}
.homepage-how-can-we-help-content-pic-person.after-awetomate{
    left:0; margin-left:15px;
}
.homepage-how-can-we-help-content-pic-person-body{
    position: absolute;
    z-index: 2;
    width: 50%;
    bottom:6%;
}
.homepage-how-can-we-help-content-pic-person-body img{
    width: 100%;
}
.homepage-how-can-we-help-content-pic-person-body.before-awetomate{
    right:28%; bottom:7%;
    -webkit-animation: body-sad 3s ease-out infinite;
            animation: body-sad 3s ease-out infinite;
}
.homepage-how-can-we-help-content-pic-person-body.after-awetomate{
    left:22%; bottom:3%;
    -webkit-animation: body-happy 2s ease-out infinite;
            animation: body-happy 2s ease-out infinite;
}
.homepage-how-can-we-help-content-pic-person-head{
    position: absolute;
    z-index: 2;
    width: 50%;
    bottom:29%;
}
.homepage-how-can-we-help-content-pic-person-head img{
    width: 100%;
}
.homepage-how-can-we-help-content-pic-person-head.before-awetomate{
    right:24%;
    -webkit-animation: head-sad 3s ease-in-out infinite;
            animation: head-sad 3s ease-in-out infinite;
}
.homepage-how-can-we-help-content-pic-person-head.after-awetomate{
    left:26%; bottom:28%;
    -webkit-animation: head-happy 2s ease-in-out infinite;
            animation: head-happy 2s ease-in-out infinite;
}
.homepage-how-can-we-help-content-pic-person-mouth{
    position: absolute;
    z-index: 2;
    width: 12%;
    bottom:31.5%;
}
.homepage-how-can-we-help-content-pic-person-mouth img{
    width: 100%;
}
.homepage-how-can-we-help-content-pic-person-mouth.before-awetomate{
    right:47%;
    -webkit-animation: mouth-sad 3s ease-in-out infinite;
            animation: mouth-sad 3s ease-in-out infinite;
}
.homepage-how-can-we-help-content-pic-person-mouth.after-awetomate{
    width: 20%;
    left:37%; bottom:30%;
    -webkit-animation: mouth-happy 2s ease-in-out infinite;
            animation: mouth-happy 2s ease-in-out infinite;
}

.homepage-how-can-we-help-content-mobile .homepage-how-can-we-help-content-pic{
    margin-bottom:0;
}
.homepage-how-can-we-help-content-mobile .homepage-how-can-we-help-content-pic-person.before-awetomate{
    right:48.6%; bottom:3%;
    margin-right: 0;
    -webkit-transform:translateX(50%);
        -ms-transform:translateX(50%);
            transform:translateX(50%)
}
.homepage-how-can-we-help-content-mobile .homepage-how-can-we-help-content-pic-person.after-awetomate{
    left:50%; bottom:5%;
    margin-left: 0;
    -webkit-transform:translateX(-50%);
        -ms-transform:translateX(-50%);
            transform:translateX(-50%)
}

.btn-how-can-we-help-detail i{
    position: relative;
    top:2px;
    font-size: 1.15rem;
    -webkit-transition: all 200ms ease-out;
    -o-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
}
.btn-how-can-we-help-detail i.open{
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
    -webkit-transition: all 200ms ease-out;
    -o-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
}

.homepage-how-can-we-help-content-detail-item-wrapper{
    width: 100%;
}
.homepage-how-can-we-help-content-detail-item-wrapper::before{
    content: "";
    display: block;
    margin-left:50%;
    width: 2px; height: 25px;
    background-color: #DEDEDE;
}
.homepage-how-can-we-help-content-detail-item-wrapper:first-child:before{
    display: none;
}
.homepage-how-can-we-help-content-detail-before-wrapper{
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
}

.homepage-how-can-we-help-content-desktop{
    display: none;
}
.homepage-how-can-we-help-content-mobile .homepage-how-can-we-help-content-pic-header,
.homepage-how-can-we-help-content-mobile .homepage-how-can-we-help-content-pic-info{
    text-align: center;
}
.homepage-how-can-we-help-content-detail{
position: relative;
width: 100%;
height: 100%;
padding: 20px;
background: #F4F6F7;
border-radius: 10px;
border: #F4F6F7 solid 1px;
}

.homepage-how-can-we-help-content-detail::after{
content: '';
position: absolute;
border-style: solid;
border-width: 0 15px 15px;
border-color: #F4F6F7 transparent;
display: block;
width: 0;
z-index: 1;
margin-left: -15px;
top: -15px;
left: 50%;
}

.homepage-how-can-we-help-content-detail::before{
content: '';
position: absolute;
border-style: solid;
border-width: 0 15px 15px;
border-color: #F4F6F7 transparent;
display: block;
width: 0;
z-index: 0;
margin-left: -15px;
top: -16px;
left: 50%;
}






/***************************** homepage graph *************************/
.homepage-graph-wrapper{
    position: relative;
    z-index: 1;
    background-color: #fafafa;
    overflow: hidden;
}
.homepage-graph-wrapper-bg{
    position: absolute; z-index: -1;
    bottom:-20%; right:-2%;
    opacity: .7;
}
.homepage-graph-wrapper-bg img{
    height: 100%;
}
.homepage-graph-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.homepage-graph-item-wrapper{
    position: relative;
    margin:30px 0;
    width: 375px;
}
.homepage-graph-item-graph{
    position: absolute;
    width: 160px;
    overflow: hidden;
}
.counter {
    /*display: inline-flex;*/
    /*cursor:pointer;*/
    width:200px;
    height:200px;;
    /*max-width:100%;*/
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    /*
    justify-content:center;
    align-items:center;*/
    /*font-size: calc(1em + 1vmin);*/
    -webkit-transition: height .2s ease-in-out;
    -o-transition: height .2s ease-in-out;
    transition: height .2s ease-in-out;
    background: #fafafa;
    border-radius:50%;
    /*box-shadow:0px 1px 10px 2px rgba(0,0,0,0.2);
    margin:1em 0;*/
    -webkit-transform: rotate(130deg);
        -ms-transform: rotate(130deg);
            transform: rotate(130deg);
}
.percentage {
    display: none;
    position:absolute;
    text-align:center;
    top:50%;
    left:0;
    right:0;
    vertical-align:middle;
    -webkit-transform:translate3d(0,-50%,0);
            transform:translate3d(0,-50%,0);
}
.counter canvas {
    position:absolute;
    top:0;
    left:0;
}
.homepage-graph-item-text{
    position: relative;
    height: 200px;
    padding-left: 65px; padding-top:50px;
    z-index:2;
}
.homepage-graph-item-text h1{
    font-size: 2.5rem;
}
.homepage-graph-item-text h5{
    font-size: 1rem;
}








/************************** homepage features *****************************/
.homepage-features-item-pic{
    margin-bottom: 30px;
}
.homepage-features-item-pic img{
    width: 100%;
}
.homepage-features-item-content-detail{
    position:relative;
    margin-left: 20px; padding-left: 30px;
}
.homepage-features-item-content-detail::before{
    content:"";
    position: absolute;
    z-index: 0;
    display: block;
    width: 3px; height: 50px;
    left:-3px; top:0;
    background-color: #FF524D;
}






/************************** homepage what we do *****************************/
.homepage-what-we-do-wrapper{
    background-color: #fafafa;
}
.homepage-what-we-do-deployment-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.homepage-what-we-do-deployment-item-wrapper{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap:20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    min-width: 350px;
    padding:0 1.5rem 1.5rem 1.5rem;
}
.homepage-what-we-do-deployment-item-pic{
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 80px;
}
.homepage-what-we-do-deployment-item-pic img{
    width: 100%;
}
.homepage-what-we-do-deployment-item-content{
    font-weight: 500;
}

.homepage-what-we-do-list-item-wrapper{
    position: relative;
    padding:30px 7%;
    text-align: center;
    border-bottom: 1px solid #DEDEDE;
}
.homepage-what-we-do-list-item-wrapper::after{
    content: "";
    display: block;
    position: absolute;
    width: 50px;
    height: 3px;
    bottom:-2px; left:50%; margin-left: -25px;
    background-color: #FF524D;
}
.homepage-what-we-do-list-item-wrapper:last-child{
    border:none;
}
.homepage-what-we-do-list-item-wrapper:last-child::after{
    display: none;
}
.homepage-what-we-do-list-item-pic{
    width: 100px;
    margin:0 auto 1.5rem auto;
}
.homepage-what-we-do-list-item-pic img{
    width: 100%;
}




/************************* footer **********************/
.main-footer-wrapper{
    background: #4D4D4D;
    color: #fff;
}
.main-footer-nav{
    text-align: center;
}
.main-footer-nav-list{
    margin:0; padding:0;
    list-style: none;
    display: inline-block;
    padding-left: 1.2rem; padding-right: 1.2rem;
    border-bottom:1px solid #797979;
}
.main-footer-nav-list li{
    display: inline-block;
}
.main-footer-nav-list a{
    display: block;
    padding:.6rem 1rem;
    color: #fff;
    text-decoration: none;
}
.main-footer-nav-list a:hover{
    color: #FF524D;
}
.aux-footer-nav{
    text-align: center;
}
.aux-footer-nav-list{
    margin:0; padding:0;
    list-style: none;
    display: inline-block;
}
.aux-footer-nav-list li{
    display: inline-block;
}
.aux-footer-nav-list a{
    display: block;
    padding:.6rem 1rem;
    color: #A6A6A6;
    text-decoration: none;
    font-size: .85rem;
}
.aux-footer-nav-list a:hover{
    color: #FF524D;
}
.main-footer-copyright{
    padding-top:4rem; padding-bottom: 2rem;
    font-size: .85rem;
    text-align: center;
}






/**************************************** responsive breakpoints *********************************/
@media (min-width: 480px) {
    .main-nav-user-logged-text,
    .btn-main-nav-user-logged::after{
        display: block;
    }
}

@media (min-width: 600px) {
    .homepage-how-can-we-help-content-desktop{
        display: block;
    }
    .homepage-how-can-we-help-content-mobile{
        display: none;
    }
    .homepage-how-can-we-help-content-wrapper,
    .homepage-how-can-we-help-content-detail-container{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: stretch;
            -ms-flex-align: stretch;
                align-items: stretch;
        width: 100%;
    }
    .homepage-how-can-we-help-content-before-wrapper,
    .homepage-how-can-we-help-content-after-wrapper,
    .homepage-how-can-we-help-content-detail-before-wrapper,
    .homepage-how-can-we-help-content-detail-after-wrapper{
        position: relative;
        width: 50%;
    }
    .homepage-how-can-we-help-content-before-wrapper,
    .homepage-how-can-we-help-content-detail-before-wrapper{
        border-right: 1px solid #DEDEDE;
    }
    .homepage-how-can-we-help-content-pic.desktop{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .homepage-how-can-we-help-content-pic.mobile{
        display: none;
    }
    .homepage-how-can-we-help-content-pic-header.before-awetomate,
    .homepage-how-can-we-help-content-pic-info.before-awetomate{
        padding-right: 15%;
        text-align: right;
    }
    .homepage-how-can-we-help-content-pic-header.after-awetomate,
    .homepage-how-can-we-help-content-pic-info.after-awetomate{
        padding-left: 15%;
    }
    .homepage-how-can-we-help-content-detail-before-wrapper{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        width: 50%;
        padding-right:7%; padding-bottom: 40px;
    }
    .homepage-how-can-we-help-content-detail-after-wrapper{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        width: 50%;
        padding-left:7%; padding-bottom: 40px;
    }
    .homepage-graph-item-text h1{
        font-size: 3rem;
    }
    .homepage-graph-item-text h5{
        font-size: 1.25rem;
    }

}

@media (min-width: 640px) {
    .homepage-banner-wrapper{
        padding-bottom:60px;
    }
    .homepage-banner-container{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .homepage-banner-content{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -ms-flex-negative: 0;
            flex-shrink: 0;
        width: 50%;
        padding:0 20px 0 0;
        margin: 0;
    }
    .homepage-banner-pic{
        top:20px; left: unset; right:5%;
    }
    .homepage-banner-pic img{
        width: 140%;
    }
    .homepage-we-do-list-wrapper .title{
        margin-bottom: 3rem;
    }
    .homepage-what-we-do-list-container{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -webkit-box-align: stretch;
            -ms-flex-align: stretch;
                align-items: stretch;
    }
    .homepage-what-we-do-list-item-wrapper{
        width: 50%;
    }
    .homepage-what-we-do-list-item-wrapper:nth-child(1){
        border-right: 1px solid #DEDEDE;
    }
    .homepage-what-we-do-list-item-wrapper:nth-child(1)::before{
        content: "";
        position: absolute;
        display: block;
        width: 3px;
        height: 50px;
        top:0; right:-2px;
        background-color: #FF524D;
    }
    .homepage-what-we-do-list-item-wrapper:nth-child(1)::after{
        margin-left: 0; left: 0;
    }
    .homepage-what-we-do-list-item-wrapper:nth-child(2)::after{
        margin-left: 0; left: auto; right: 0;
    }
    .homepage-what-we-do-list-item-wrapper:nth-child(3){
        border-bottom:none;
        border-right: 1px solid #DEDEDE;
    }
    .homepage-what-we-do-list-item-wrapper:nth-child(3)::before{
        content: "";
        position: absolute;
        display: block;
        width: 3px;
        height: 50px;
        bottom:0; right:-2px;
        background-color: #FF524D;
    }
    .homepage-what-we-do-list-item-wrapper:nth-child(3)::after{
        display: none;
    }
}

@media (min-width: 800px) {
    .homepage-how-can-we-help-content-detail-item-wrapper{
        width: 250px;
    }
    .homepage-features-item-wrapper{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        gap: 30px;
    }
    .homepage-features-item-pic{
        -ms-flex-negative: 0;
            flex-shrink: 0;
        width: 50%;
    }
}

@media (min-width: 1000px) {
    .container-custom{
        max-width: 1600px;
        padding:0 40px;
        margin:0 auto;
    }
    div.burger,
    div.menu,
    div.circle{
        display: none;
   }
   .mobile-main-nav-user{
       display: none;
   }
   .main-logo-wrapper{
       left: 0px;
   }
   .main-nav-list-wrapper,
   .main-nav-user-wrapper{
       display: block;
   }

    .homepage-graph-item-wrapper{
        margin-left: 30px; margin-right: 30px;
    }

}

@media (min-width: 1200px) {
    .main-nav-language-selector-wrapper{
      padding-left: 10px;
    }
    .homepage-banner-content{
        margin: -15% 0 0 0;
    }
    .homepage-banner-content h1{
        font-size: 3rem;
    }
    .homepage-how-can-we-help-content-pic-header.before-awetomate,
    .homepage-how-can-we-help-content-pic-info.before-awetomate{
        padding-right: 7%;
    }
    .homepage-how-can-we-help-content-pic-header.after-awetomate,
    .homepage-how-can-we-help-content-pic-info.after-awetomate{
        padding-left: 9%;
    }
    .homepage-how-can-we-help-content-detail-before-wrapper{
        padding-right: 5%;
    }
    .homepage-how-can-we-help-content-detail-after-wrapper{
        padding-left: 5%;
    }
    .homepage-how-can-we-help-content-pic-person{
        width: auto;
    }

}

@media (min-width: 1366px) {
    .main-nav-wrapper,
    .main-nav-wrapper-inner{
        height: 85px;
    }
    .main-logo-wrapper{
        width: 256px;
    }
    .main-logo-wrapper img{
        height: 35px;
    }
    .homepage-what-we-do-list-item-wrapper{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap:30px;
    }
    .homepage-what-we-do-list-item-pic{
        -ms-flex-negative: 0;
            flex-shrink: 0;
    }
    .homepage-what-we-do-list-item-content{
        text-align: left;
    }
}


@media (min-width: 1600px) {
    .container-custom{
        max-width: 1600px;
        margin:0 auto;
    }
    .main-logo-wrapper{
        left: 0;
    }
    .homepage-what-we-do-list-container{
        background: url(../images/dot-matrix-bg2.svg) no-repeat top center;
    }
}
