/*
Theme Name: Foundation Child
Description: Business Name
Template: foundation-parent
Version: 1.0.0
*/
.primary-header {
	background-color: var(--color-3);
}
.primary-header .logo-col {
	background-color: var(--color-2);
}
.primary-header .nav-col .info-row a {
    color: var(--color-2);
}

.primary-header .nav-col .menu a:hover, .primary-header .nav-col .menu a:focus, .primary-header .nav-col .menu .current_page_item>a {
    color: var(--color-2);
}
.feature-section {
    color: var(--color-4);
}
.feature-section .feature:not(:last-child):after {
    background-color: var(--color-4);
}
body.ip .content-section,
body.ip .brands-section,
body.ip .team-section{
    margin: 85px 0;
    padding: 0;
}
.team-section .members{
    gap: 10px;
}
.team-section .members .member{
    flex: 1 1 calc(50% - 5px);
    position: relative;
    transition: all ease .3s;
}
.team-section .members .member .content{
    position: absolute;
    top: 0;
    bottom: 0;
    margin: 0px;
    color: #fff;
    transition: all ease .3s;
    background: rgba(0, 0, 0, .7);
    color: #fff;
    opacity: 0;
    transition: all ease 1s;
    padding: 30px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.team-section .members .member:hover .content{
    opacity: 1;
}
.review-section {
	background-color: var(--color-3);
	background-image: url(../images/az-subtle.png);
	text-align: center;
    padding: 60px 0;
    color: var(--color-4);
}
.review-section h2 {
	color: var(--color-4);
	margin-bottom: 50px;
}
.review-section.heading-underline h2:after {
    background-color: var(--color-4);
}
.review-section .reviews .heading {
	font-style: italic;
}
.review-section .owl-carousel {
	max-width: calc(100% - 150px);
	margin: 0 auto;
}
.review-section .owl-carousel .owl-nav {
	font-size: 42px;
	color: var(--color-4);
}
.review-section .owl-carousel .owl-nav button.owl-prev,
.review-section .owl-carousel .owl-nav button.owl-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
.review-section .owl-carousel .owl-nav button.owl-prev {
	left: -75px;
}
.review-section .owl-carousel .owl-nav button.owl-next {
	right: -75px;
}
.review-section .owl-carousel .owl-dots {
	display: flex;
	justify-content: center;
	column-gap: .5em;
	margin-top: 20px;
}
.review-section .owl-carousel .owl-dots .owl-dot {
	border: 1px solid var(--color-4);
	border-radius: 50%;
	width: 14px;
	height: 14px;
}
.review-section .owl-carousel .owl-dots .owl-dot.active {
	background-color: var(--color-4);
}
.service-section .owl-carousel .owl-nav button.owl-prev,
.service-section .owl-carousel .owl-nav button.owl-next {
    font-size: 32px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    filter: drop-shadow(0 0 2px #fff);
}
.service-section .owl-carousel .owl-nav button.owl-next {
    right: 15px;
}
.service-section .owl-carousel .owl-nav button.owl-prev {
    left: 15px;
}
.service-section .content-row {
    display: flex !important;
    align-items: stretch !important;
}
.service-section .image-col {
    display: flex;
}
.service-section .image-col .inner,
.service-section .owl-carousel,
.service-section .owl-stage-outer,
.service-section .owl-stage,
.service-section .owl-item,
.service-section .item {
    height: 100% !important;
}
.service-section .item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}
@media screen and (max-width: 1200px) {
    .team-section .members .member .content{
        font-size: 12px;
    }
}
@media screen and (max-width: 991px) {
    .team-section .members{
        flex-direction: column;
    }
}
@media screen and (max-width: 500px) {
    .team-section .members .member .content{
        position: relative;
        opacity: 1;
        background-color: var(--color-2);
    }
}