
/*
**
*** FOR FOOTER HEAD -- Working stages
**
*/
.working-stages .stages-component {
    display: flex;
	grid-gap: 15px;
	align-content: center;
	flex-wrap: wrap;
	text-align: center;
	font-family: system-ui;
}
.working-stages .stages-component > div {
	flex: 1 1 25%;
	padding: 15px;
	transition: all .7s;
	border: solid 1px #ffffff88;
}
.working-stages .stages-component div:hover {
	background-position:left bottom;
	transform: translate(0, -15px);
}
.working-stages .stages-component .planning {
    background: linear-gradient(to right, var(--cyan) 50%, transparent 50%);
    background-size: 200% 100%;
    background-position: right bottom;
}
.working-stages .stages-component .development {
    background: linear-gradient(to right, var(--green) 50%, transparent 50%);
    background-size: 200% 100%;
    background-position: right bottom;
}
.working-stages .stages-component .published {
    background: linear-gradient(to right, var(--yellow) 50%, transparent 50%);
    background-size: 200% 100%;
    background-position: right bottom;
}
.working-stages .stages-component span {
    display: block;
}
.working-stages .stages-component span:nth-child(1) {
    font-weight: bold;
	font-size: 60px;
}
.working-stages .stages-component span:nth-child(2) {
    font-weight: bold;
	font-size: 30px;
}/*.. end of working stages ..*/


/*
**
*** FOR FOOTER HEAD -- Work together
**
*/
.work-together .work-together-card {
	position: relative;
    display: flex;
    flex-direction: column;
	border: solid 1px #ffffff88;
    align-items: center;
    height: 100%;
    width: 100%;
}
.work-together .work-together-card::after {
    content: "";
    background: var(--orange);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0);
	transition: all .6s;
	z-index: 0;
}
.work-together .work-together-card:hover .htext.num2:after {
    transform: rotate(0deg);
}
.work-together .work-together-card:hover::after {
    transform: translate(-50%, -50%) scale(1);
}
.work-together .card-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    z-index: 1;
    padding: 35px;
}
.work-together .card-content:hover {
    color: inherit;
}
.work-together .work-together-card .ptext {
    display: block;
    font-size: 26px;
	text-align: center;
}
.work-together .work-together-card .htext {
    display: block;
	font-family: system-ui;
    font-size: 150px;
    font-weight: 900;
    line-height: 1.1;
}
.work-together .htext.num2:after {
    content: "\f0a9";
	display: inline-block;
    font-family: 'FontAwesome';
	font-size: 85%;
    margin-left: 15px;
    transform: rotate(-45deg);
	transition: all .5s;
} /* end of work together */


@media (max-width: 828.98px) {
	/* Working stages */	
	.working-stages .stages-component div {
		flex: 1 1 100%;
	}/* end of working stages */
	
	/* Let's work together */
	.work-together .work-together-card .htext {
		font-size: 45px;
	}
	.work-together .work-together-card .ptext {
		font-size: 20px;
	}
	.work-together .card-content {
		padding: 15px;
	}/* end of let's work together */
}/* END OF FOR FOOTER HEAD*/




/*.. Footer globals ..*/
.site-footer {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding-top: 25px;
	background: #000000fc;
    background-size: cover;
    background-repeat: no-repeat;
}						
.site-footer a {
	display: inline-block;	
	font-size: 18px;
	margin: 0;
	padding: 3px 5px;
	letter-spacing: 0;
	opacity: .9;
	transition: all .5s;
}
.site-footer a:hover {
	transform: translateX(8px);
}
.site-footer .overlay {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(to top right, #000000, #0f0018, #110018, #000000);
	opacity: .93;
}/*.. End of footer globals ..*/


/*.. Footer body ..*/
.site-footer .footerComponent {
	position: relative;
}
.site-footer .footerBody {
    margin-bottom: 3rem;
}
.site-footer .footerBodyMenu {
    display: grid;
    grid-gap: 20px;	
    grid-template-columns: auto auto auto auto;
	justify-items: stretch;
}
.footerBodyMenu .footerMenu li {
	list-style: none;
}
.site-footer .footerBodyMenu h3 {
    font-size: 16px;
    margin-bottom: 8px;
}/*.. End of footer body ..*/


/*
**
*** Footer partnership
**
*/
.footerBody .partnership {
    display: grid;
    grid-template-columns: auto auto auto auto;
    grid-gap: 25px;
    justify-items: center;
    align-items: center;
	margin-top: 35px;
}
.footerBody .partnership img {
    min-width: 120px;
    max-width: 120px;
	filter: invert(.95) grayscale(1);
	cursor: pointer;
	opacity: .5;
	transition: all .5s;
}
.footerBody .partnership img:hover {
	filter: invert(.95) grayscale(0);
    transform: scale(.95);
	opacity: 1;
}/* End of partnership */


/*
**
*** Footer bottom
**
*/
.site-footer .footerBottom {
    background: black;
	padding: 10px 0;
}
.site-footer .footerBottomMenuList {
	flex: 0 0 20%;
}
.footerBottom .footerBottomComponent {
	display: flex;
	flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
	font-size: 10px;
}
.footerBottom .footerBottomMenuList menu, .footerBottom .footerCopyright {
	display: flex;
    justify-content: space-between;
    align-items: center;
	font-size: 12px;
	color: #999;
}
.footerBottomMenuList li {
	margin-left: 8px;
	list-style: none;
}
.footerBottomMenuList a {
	padding: 5px;
}/*.. End of footer bottom ..*/


@media (max-width: 878.98px) {
	.site-footer .footerBodyMenu {
		flex-wrap: wrap;
		grid-template-columns: auto auto;
	}
}
@media (max-width: 728.98px) {
	.site-footer .footerBodyMenu h3 {
        font-size: 14px;
    }
	.site-footer a {
		font-size: 14px;
	}
	.footerBottomComponent .footerCopright {
		flex: 0 0 100%;
		margin-bottom: 15px;
		font-size: 12px;
	}
	.footerBottomComponent .footerBottomMenuList {
		flex: 0 0 60%;
		margin-top: 5px;
		font-size: 10px;
	}
	.footerBottom .footerBottomComponent {
        text-align: center;
		justify-content: center;		
	}
	.footerBody .partnership {
		grid-template-columns: auto auto;
	}
	.footerBody .partnership img {
		min-width: 90px;
		max-width: 90px;
	}
	.site-footer .brain-models {
		flex-wrap: wrap;
	}
	.site-footer .brain-models img {
		width: 85%;
		margin-bottom: 15px;
	}
}