/*
Theme Name: Foundation Child
Description: Business Name
Template: foundation-parent
Version: 1.0.0
*/
.primary-header .logo-col {
	background-color: #fff;
	padding: 5px;
}
.primary-header .logo-col img {
	max-height: 105px;
}
.feature-section .feature {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.reviews-section{
    padding: 85px 0;
}
#team-sections {
	background-color: var(--color-4);
	padding: 50px 0;
}
#team-slider .carousel-indicators {
	bottom: -40px;
}
#team-slider .carousel-indicators li {
	border: 1px solid;
}
.member-overlay-text {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	text-align: center;
	display: flex;
	flex-flow: column;
	align-items: center;
	justify-content: center;
    color: #fff;
	background: rgba(0, 0, 0, .7);
	font-weight: bold;
	font-size: 18px;
	opacity: 0;
	transition: all ease 1s;
	margin: 10px;
}
.single-member:hover .member-overlay-text {
	opacity: 1;
	transition: all ease 1s;
}
.single-member img {
	width: 100%;
	padding: 10px 0;
}
.single-member {
	position: relative;
	padding: 0 10px;
}
.mobile-team {
	display: none;
}
#team-slider .carousel-indicators li.active {
	background: var(--color-2);
}
.blog-section .post .heading{
    font-size: 22px;
}
.dual-content-section{
    padding: 85px 0;
}
.dual-content-section .dual-content-row{
    gap: 50px;
}
.dual-content-section .col{
    flex: 1 1 50%;
}
table{
    border-spacing: 1px;
}
table td{
    padding: 10px;
    border: 1px solid #000;
}
.mobile-header .nav-base .nav-toggler .icon{
    right: -10px;
}
.menu-item-has-children > a {
	position: relative;
	padding-right: 18px;
}
.menu-item-has-children>a:after {
	content: '\f105';
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
    font-size: 12px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0px;
	transition: transform 0.3s ease;
}
.menu-item-has-children>a:hover:after,
.menu-item-has-children:hover>a:after{
	transform: translateY(-50%) rotate(90deg);
}
.menu-item-has-children .sub-menu {
    background-color: var(--color-2);
}
@media screen and (max-width: 991px) {
	.desktop-team {
		display: none;
	}
	.mobile-team {
		display: block;
	}
}
@media screen and (max-width: 600px) {
    table thead {
        display: none;
        }
    table, 
    table tbody, 
    table tr {
        display: block;
        width: 100%;
        }
    table tr {
        margin-bottom: 25px;
        padding: 15px;
        background-color: #f9f9f9;
        border: 1px solid #eee;
        border-radius: 6px;
        }
    table td {
        display: block;
        width: 100%;
        padding: 6px 0;
        border: none;
        }
    table td:nth-of-type(1)::before { content: "Plan Code: "; color: #666; font-weight: normal; }
    table td:nth-of-type(2)::before { content: "Type: "; color: #666; font-weight: normal; }
    table td:nth-of-type(3)::before { content: "Description: "; color: #666; font-weight: normal; }
    table td:nth-of-type(4)::before { content: "Details & APR: "; color: #666; font-weight: normal; }
    table td:nth-of-type(1) {
        font-size: 1.15rem;
        border-bottom: 1px solid #ddd;
        padding-bottom: 8px;
        margin-bottom: 8px;
        }
}