.about-us .slick-next:before,
.about-us .slick-prev:before {
    display: none;
}

.about-us .slick-prev,
.about-us .slick-next {
    top: unset;
    bottom: -4rem;
}

.team-slider{
	margin-top: 2em;
}

.team-member {
    border-radius: 25px;
}

.team-member .member-info {
    color: var(--color-black);
    width: 100%;
    position: absolute;
    bottom: 0;
    padding: 1em;
    background: var(--color-white);
    transition: all ease .3s;
    opacity: 0;
    border-radius: 0 0 25px 25px;
}

.team-member:hover .member-info {
    opacity: 1;
}

.floating-image{
    right: unset;
    left: 0;
}

.team-member img{
	border-radius: 25px;
}

/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/
/*XS Devices 0 - 767px*/
@media only screen and (max-width: 47.9375em) {
    .about-us .container-fluid .row+.row {
        margin-top: 3em;
    }
	.about-us .slick-prev{
		left: 0;
	}
	.about-us .slick-next{
		right: 15px;
	}
	.team-member img{
		height: 269px;
		object-fit: cover;
	}
}

/*Devices 768px in width*/
@media only screen and (min-width: 48em) {
    .about-us .container-fluid .row+.row {
        margin-top: 3em;
    }
.team-member {
    margin-right: 1em;
	}
}

/*Devices 1024px in width*/
@media only screen and (min-width: 64em) {

    .about-us .container-fluid .row+.row {
        margin-top: 7em;
    }

    .team-member img {
        min-height: 470px;
		object-fit: cover;
    }

    .about-us .slick-list {
        overflow: visible;
    }

    .about-us .slick-next {
        right: -2vw;
    }

    .about-us .slick-prev {
        right: 2vw;
        left: unset;
    }

}

/*Devices 1200px+ in width*/
@media only screen and (min-width: 75em) {

    .about-us .container-fluid .row+.row:before {
        content: '';
        width: 115%;
        height: 200%;
        display: block;
        position: absolute;
        border: 2px solid var(--color-orange);
        z-index: -1;
        left: -4em;
        top: -10em;
        border-radius: 25px;
    }

}