/*
Theme Name: Crew Child
description: Client Theme - Crew
Template: crew-parent
Version: 1.0.0
Text Domain: crew-child
Author: BCW
*/
.locations{
    display: flex;
    column-gap: 10px;
}
.locations .location,
.footer-phones .phone {
    position: relative;
    padding-right: 15px;
    display: inline-block;
}
.locations .location::after,
.footer-phones .phone::after {
    content: '|';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    padding-left: 8px;
}
.locations .location:last-child::after {
    content: none;
}
.footer-phones .phone:last-child{
    padding-left: 8px;
}
.gallery .gallery-image{
    padding: 10px;
}
.gallery .gallery-image img{
    max-height: 280px;
    object-fit: cover;
}
.vertical-slider {
	overflow: hidden;
	display: flex;
}
.vertical-slider .items {
	transition: transform ease .3s;
}
.vertical-slider .item {
	padding: 20px 0;
	border-bottom: 1px solid var(--color-1);
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.vertical-slider .arrows {
	flex: 0 0 auto;
	margin-left: 20px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	font-size: 30px;
}
.vertical-slider .arrow {
	cursor: pointer;
}
.vertical-slider.first.last .arrows {
	display: none;
}
.vertical-slider.first .prev,
.vertical-slider.last .next {
	opacity: .3;
	cursor: default;
}
.testimonial-section {
	margin: 0 0 40px 0;
}
.testimonial-section .testimonials {
	background-color: var(--color-4);
	padding: 25px 50px;
}
.testimonial-section .testimonial .author {
	font-weight: 700;
	font-size: 24px;
}
.testimonial-section .testimonial-heading {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	margin-bottom: 16px;
}
.testimonial-section .testimonial-heading .location {
	text-transform: uppercase;
	margin-top: 8px;
	font-size: 16px;
}
.testimonial-section .stars {
	display: flex;
	margin-bottom: 16px;
	color: rgb(219, 190, 22);
}
.testimonial-section .images{
    display: flex;
    gap: 10px;
}
.testimonial-section .images .image {
    flex: 0 1 calc(33.33% - 20px);
}
.testimonial .images .image img {
    max-width: 100%;
    height: auto;
}
.jumbotron-sm {
    background: var(--color-1)
}
span.social-header a span{
    color: #fff;
}
span.social-header a span:hover {
    color: var(--color-1)
}
.header-ctas{
	display: flex;
	justify-content: flex-end;
	gap: 10px;
	align-items: stretch;
	margin-bottom: 10px;
}
.header-ctas .btn{
	font-size: 22px;
	background-color: var(--color-4);
}
.header-ctas .btn:hover{
	color: #fff;
	background-color: var(--color-1);
}
@media screen and (max-width: 767px) {
    .locations .location::after,
    .footer-phones .phone::after {
        content: none;
    }
    .locations{
        flex-direction: column;
    }
    .locations .location p{
        margin: 0;
    }
}