/* App - WElcome ------ */
.app-welc h2 {
    font-size: var(--size-l1);
    text-transform: uppercase;
    font-weight: 900;
    line-height: 1.05;	
}

.app-welc .img-decor-1{
    width: 25px!important;
    z-index: -1;
    position: absolute;
    bottom: 30%;
    left: -27px;
    animation: 10s ani-tras-rigt infinite;	
}

.app-welc .img-decor-2 {
    width: 25px!important;
    z-index: -1;
    position: absolute;
    top: 5%;
    right: 3%;
    animation: 7s ani-tras-down infinite;	
	animation-delay: 1.5s;
}

.app-welc .img-bottom {
    position: absolute;
    bottom: -330px;
    left: 0;	
}


@keyframes ani-tras-rigt {
	0%, 100% {
		transform: translatex(0);
	}
	50% {
		transform: translatex(80px);
	}
}

@keyframes ani-tras-down {
	0%, 100% {
		transform: translatey(0);
	}
	50% {
		transform: translatey(40px);
	}
}


/* App - Benefit ---------- */
.app-benefit_content .col-inner {
	border: 1px solid var(--border-basic);
    padding: 30px;
    border-radius: 10px;
    transition: 300ms all;
	background-color: white;
}


.app-benefit_content .col-inner:hover {
    border-top-width: 3px;
    transform: translateY(-6px);
    box-shadow: 0 5px 20px rgb(0 0 0 / 8%);	
}

.app-benefit_content .icon-inner {
	background: currentColor;
    display: flex;
    padding: 15px;
    border-radius: 50%;	
	margin-bottom: 20px;
}

.app-benefit_content .icon-inner svg {
	padding: 0;
	color: white !important;
}

.app-benefit_content .icon-box  h3 {
    font-size: 1.15rem;
    line-height: 1.4;
    margin-bottom: 15px;	
}

.app-benefit_content .icon-box p {
	font-size: 0.95rem;	
	text-align: justify;
}


/* APp - About -------- */
.app-about .icon-box h3 {
    font-weight: bold;
    font-size: 0.95rem;
    text-transform: unset;
    line-height: 1.4;
	
}

.app-about .img-decor {
    position: absolute;
    z-index: -1;
    top: 50%;
    right: 0;
    transform: translateY(-50%);	
}

.app-about .decor-left {
    position: absolute;
    z-index: -1;
    top: 10%;
    left: 0;
}


/* App - Goal --------- */
.app-goal {
	
}

.app-goal .col-wrap > .col-inner {
    border-radius: 12px;
    background-color: #1f145f;
    background: linear-gradient(45deg, #1f145f, #0a1993);	
}

.app-goal .stack .text{
	text-align: center;
}

.app-goal .stack h3{
    color: var(--color-monster);
    font-size: 3.5rem;
    line-height: 1;
    margin-bottom: 12px;	
}

.app-goal .col .stack p {
    font-size: 0.92rem;
    font-weight: 600;
    opacity: 0.8;
	text-align: center;
}


/* App - Price -------- */
.app-price .col-box > .col-inner {
	box-shadow: 0 10px 30px rgb(0 0 0 / 8%);	
	border-radius: 10px;
    overflow: hidden;
}

.app-price .box-header {
    background: var(--primary-color);
    color: white;
    padding: 25px 20px ;	
}

.app-price .col-box  h6 {
    color: white;
    opacity: 1;
    letter-spacing: 0;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;	
}

.app-price .col-box  h3 {
    color: var(--color-monster);
    font-size: 2.2rem;
    line-height: 1.1;	
}

.app-price   .box-body {
    padding: 20px;	
}

.app-price .col-box  ul {
	list-style: none;	
}

.app-price .col-box  li {
    position: relative;
    margin-left: 30px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.4;
}

.app-price .col-box  li:before {
content: '\e876';
    font-family: "material icons";
    font-size: 14px;
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 20px;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: -30px;
    background-color: #33addc30;
    color: var(--secondary);
}









/* Responsive ---------------- */
@media only screen and (max-width: 1024px) {
}

@media only screen and (max-width: 875px) {
	.app-welc .img-bottom {
		bottom: -250px; 
	}
	
	.app-price .col-box {
		padding: 0 8px 35px;
	}
	.app-price .col-box h3 {
		font-size: 1.7rem;
	}
}

@media only screen and (max-width: 575px ) {
	.app-welc .img-bottom {
		bottom: -180px; 
	}
	.app-benefit_content .col-inner {
		padding: 24px; 
	}
	
	.app-about .img-decor {
		bottom: 16px;
		top: unset;
		transform: none;
	}
}