.pix-navs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    color: #fff;
}

.pix-nav {
    border-left: 1px solid #fff;
    padding: 30px 20px 10px;
    position: relative;
    overflow: hidden;
    transition: all .4s ease;
    color: #fff;
}

.pix-nav:hover {
    padding: 20px;
    color: #193F32;
}

.pix-nav-title {
    font-size: 22px;
    font-weight: 500;
    font-family: "Hepta Slab", Sans-serif;
    line-height: 1.4;
}

.pix-nav-sub-title {
    font-size: 14px;
    position: relative;
}

.pix-nav-title {
	position: relative;
}

.pix-nav:before {
    content: '';
    display: block;
    background: #F1E860;
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    transition: all .3s ease;
}

.pix-nav:hover:before {
    width: 100%;
}

.pix-nav:after {
    content: '';
    display: block;
    background: url(../../images/icon-arrow-right.svg) center no-repeat;
    width: 30px;
    height: 28px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-100%, -50%);
    transition: all .25s ease;
}

.pix-nav:hover:after {
    left: calc(100% - 30px);
}

.grid {
	display: grid;
}

.flex {
	display: flex;
}

.items-end {
	align-items: flex-end;
}

.pix-box {
    background: #fff;
    padding: 20px;
    flex: 1 1 0%;
    transition: all .4s ease;
    overflow: hidden;
    position: relative;
    transition: all .3s ease-in-out;
	color: var(--e-global-color-text) !important;
}

.pix-box:hover {
    flex: 0 0 50%;
    background: #F1E860;
}

.pix-box:before {
    padding-bottom: 55%;
    content: '';
    display: block;
}

.pix-box-text {
    display: grid;
    grid-template-columns: 150px auto;
    grid-gap: 40px;
}

.pix-box-title {
    position: absolute;
    width: 150px;
    top: 20px;
    left: 20px;
    font-family: Hepta Slab;
    font-size: 22px;
    font-weight: bold;
}

.pix-box-desc {
    opacity: 0;
    transition: all .4s ease;
    position: absolute;
    left: 230px;
    width: 400px;
    top: 20px;
}

.pix-box:hover .pix-box-desc {
    opacity: 1;
}

.pix-box-image {
    opacity: 0;
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
    transition: all .3s linear;
}

.pix-box:hover .pix-box-image {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* .pix-member */
.pix-member {
    position: relative;
    overflow: hidden;
}

.pix-member-name-group {
    position: absolute;
    left: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all .45s ease;
    z-index: 99;
    transform: translateY(0);
}

.pix-member:hover .pix-member-name-group {
    bottom: 100%;
    transform: translateY(100%);
}

.pix-member-name-group > div {
    background: #F1E860;
    padding: 12px 20px;
    line-height: 1.4;
}

.pix-member-name {
    font-size: 22px;
/*     font-family: 'Hepta Slab'; */
    font-weight: 500;
    padding-bottom: 0 !important;
}

.pix-member-position {
    font-size: 14px;
    font-weight: 600;
    font-family: 'Inter';
    margin-top: -1px;
}

.pix-member-desc {
    position: absolute;
    left: 0;
    bottom: 0;
    top: 0;
    right: 0;
    z-index: 9;
    background: #193F32;
    padding: 40px;
    color: #fff;
    font-family: 'Inter';
    display: flex;
    align-items: flex-end;
    transform: translateY(100%);
    transition: all .45s ease;
}

.pix-member:hover .pix-member-desc {
    transform: translateY(0);
}

/* testimonial carousel */
.pix-carousel-item {
    background: #dbf9e8;
    display: grid;
    grid-template-columns: 25% 1fr;
    grid-gap: 20px;
}

.pix-carousel-item__thumb img {
	width: 100%;
}

.pix-carousel-item__desc {
    font-family: 'Hepta Slab';
    font-size: 32px;
    line-height: 42px;
    font-weight: 500;
}

.pix-carousel-item__name-group {
    border-left: 1px solid #111111;
    padding-left: 20px;
    padding-top: 50px;
    margin-left: 50px;
    margin-top: 20px;
}

.pix-carousel-item__name {
/*     font-family: 'Hepta Slab'; */
    font-size: 22px;
    font-weight: 500;
}

.pix-carousel-item__position {
/*     font-family: Meta; */
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05px;
}

.pixelplus-button-nav {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 99;
    cursor: pointer;
    background-size: contain !important;
}

.pixelplus-project-button-prev {
    right: 80px;
    background: url('../../images/icon-arrow-prev.svg') center no-repeat;
}

.pixelplus-project-button-next {
    background: url('../../images/icon-arrow-next.svg') center no-repeat;
}

@media (max-width: 768px) {
	.pix-carousel-item {
	    grid-template-columns: 1fr;
	}

	.pix-carousel-item__desc {
		font-size: 16px;
	}

	.pix-carousel-item__name-group {
	    margin-left: 20px;
	    padding-top: 20px;
	}

	.pixelplus-button-nav {
	    width: 40px;
	    height: 40px;
	}

	.pixelplus-project-button-prev {
	    right: 50px;
	}
}

/* a.pix-box-wrapper  */
a.pix-box-wrapper {
    display: block;
    position: relative;
    overflow: hidden;
    color: #fff !important;
}

a.pix-box-wrapper:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #193F32;
    opacity: 0;
    transition: all .4s ease-in-out;
}

.pix-box-box-text {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.pix-box-box-title {
    font-size: 60px;
    font-family: 'Hepta Slab';
    line-height: 1.4;
    width: 80%;
    position: relative;
    transition: all .3s ease-in-out;
}

.pix-box-box-desc {
    margin-top: auto;
    max-width: 70%;
    opacity: 0;
    transition: all .4s ease-in-out;
}

.pix-box-box-link {
	opacity: 0;
	margin-top: 20px;
	transition: all .4s ease-in-out;
}

.pix-box-box-link .pix-button {
	background: #fff !important;
	color: #193F32 !important;
}

.pix-box-box-link .pix-button path {
	stroke: #193F32 !important;
}

.pix-box-box-link:hover .pix-button {
	background: #F1E860 !important;
}

.pix-box-box-title:before {
    content: '';
    display: block;
    width: 60px;
    height: 71px;
    background: url('../../images/arrow-right-white.svg') center/contain no-repeat;
    position: absolute;
    top: 50%;
    transform: translate(calc(-100% - 40px), -50%);
}

a.pix-box-wrapper:hover .pix-box-box-title {
    transform: translateX(100px);
}

a.pix-box-wrapper:hover:before,
.pix-box-wrapper:hover .pix-box-box-desc,
.pix-box-wrapper:hover .pix-box-box-link {
    opacity: 1;
}

@media (max-width: 768px) {
	.pix-box-box-title {
		font-size: 22px;
		width: unset;
		padding-left: 40px;
	}

	.pix-box-box-title:before {
		width: 30px;
	    height: 36px;
	    transform: translate(0, -50%);
	    left: 0;
	}

	a.pix-box-wrapper:hover .pix-box-box-title {
	    transform: translateX(0);
	}

	.pix-box-box-desc {
		max-width: 100%;
	}
}

/* Card */
.pix-card {
    padding: 40px;
    color: #fff;
    transition: all .3s ease;
    overflow: hidden;
	display: block;
	color: #fff;
}

.pix-card:hover {
	color: #fff;
}

.pix-card:hover {
    background: rgb(25 63 50 / 80%);
}

.pix-card-new {
    font-size: 15px;
    font-weight: 500;
    fill: var(--e-global-color-9232856);
    color: var(--e-global-color-9232856);
    background-color: #F1E860;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #0201012E;
    border-radius: 1000px 1000px 1000px 1000px;
    padding: 7px 16px 7px 16px;
    position: absolute;
    top: 20px;
    right: 20px;
    text-transform: uppercase;
    line-height: 1;
}

.pix-card-time {
    font-size: 15px;
    font-weight: 500;
    fill: var(--e-global-color-9232856);
    color: var(--e-global-color-9232856);
    background-color: var(--e-global-color-secondary);
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #0201012E;
    border-radius: 1000px 1000px 1000px 1000px;
    padding: 7px 16px 7px 16px;
    line-height: 1;
    display: inline-block;
    margin: 20px 0;
}

.pix-card-label {
    font-weight: 500;
    margin: 20px 0;
}

.pix-card-name {
    font-weight: 500;
}

.pix-card-member {
    display: grid;
    grid-template-columns: 60px 1fr;
    grid-gap: 20px;
}

.pix-card-member-avatar {
    border-radius: 50px;
    overflow: hidden;
}

.pix-card-desc {
    color: #fff;
    font-family: "Inter", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
}

.pix-card-box {
    transform: translateY(150px);
    transition: all .3s ease;
}

.pix-card:hover .pix-card-box {
    transform: translateY(0);
}

.pix-card-heading {
    color: var(--e-global-color-f4ca4ff);
    font-size: 32px;
    font-weight: 500;
    line-height: 1.2em;
    font-family: 'Hepta Slab';
}

.pix-card:before {
    content: '';
    display: block;
    width: 60px;
    height: 71px;
    background: url('../../images/icon-card-arrow.svg') center no-repeat;
    transform: translateX(-104px);
    transition: all .3s ease;
}

.pix-card:hover:before {
    transform: translateX(0);
}

/* .pix-button */
.pix-button {
    position: relative;
    padding: 8px 24px 8px 51px;
    display: inline-flex;
    background: #DBF9E8;
    color: #193F32;
    text-transform: uppercase;
    border-radius: 100px;
    overflow: hidden;
    transition: all .3s ease;
    line-height: 1;
}

.pix-button:hover {
    padding-right: 51px;
    padding-left: 24px;
    color: #fff;
    background: #193F32;
}

.pix-button span:first-child {
    position: absolute;
    top: 50%;
    left: 0;
    transition: all .3s ease;
    transform: translate(24px, -50%);
}

.pix-button:hover span:first-child {
    transform: translate(-100%, -50%);
}

.pix-button span:last-child {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(100%, -50%);
    transition: all .3s ease;
}

.pix-button:hover span:last-child {
    transform: translate(-24px, -50%);
}

/* .pix-boxes */
@media (max-width: 767px) {
    .pix-boxes {
        flex-direction: column;
    }

    .pix-box {
        width: 100%;
    }

    .pix-box-text {
        grid-template-columns: 1fr;
        grid-gap: 20px;
    }

    .pix-box-title,
    .pix-box-desc {
        position: static;
    }

    .pix-box-desc {
        opacity: 1;
        width: 100%;
    }

    .pix-box-image {
        position: static;
        transform: none;
        margin-bottom: -20px;
        margin-right: -20px;
        opacity: 1;
        justify-content: flex-end;
    }

    .pix-box-image svg {
        width: 50%;
        height: 50%;
    }

    .pix-box:hover .pix-box-image {
        transform: none;
    }

    .pix-box:hover {
        background: #fff;
    }

    .pix-box:before {
        display: none;
    }
}