/* colour scheme */

:root {
  --gold: #c8beaa;
  --warm-grey: #a19690;
  --text-grey: #808080;
  --bg: #faf5f0;
  --col-mwt: #9bd2ca;
}

/* web fonts */

@font-face {
    font-family: 'Magenta Regular';
    font-style: normal;
    font-weight: normal;
    src: local('Magenta Regular'), url('/assets/webfonts/Magenta Demo.woff') format('woff');
    }

/* global styling */

html {
  scroll-behavior: smooth;
}

body {
	color: #000;
	font-family: 'Work Sans', sans-serif;
	font-size: 16px;
	line-height: 1.2;
	/*margin-top: 75px;*/
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
	color: #000;
	font-family: 'Magenta Regular';
	line-height: 1.5;
	margin-bottom: 0;
	overflow: hidden;
	position: relative;
	width: 100%;
}

.h2, .h3, .h4, .h5, .h6, h2, h3, h4, h5, h6 {
	text-align: center;
}

.h2:before, .h2:after, .h3:before, .h3:after, .h4:before, .h4:after, .h5:before, .h5:after, .h6:before, .h6:after, h2:before, h2:after, h3:before, h3:after, h4:before, h4:after, h5:before, h5:after, h6:before, h6:after {
	border-bottom: 2px solid var(--col-mwt);
	content: "";
	display: inline-block;
	margin: 0 1em 0 -55%;
	vertical-align: middle;
	width: 50%;
}
.h2:after, .h3:after, .h4:after, .h5:after, .h6:after, h2:after, h3:after, h4:after, h5:after, h6:after {
	margin: 0 -55% 0 1em;
}

h1 {
	font-size: 4.5rem;
}

h2 {
	font-size: 4rem;
}

a.anchor {
	display: block;
	position: relative;
	top: -62px;
	visibility: hidden;
}

section {
	padding-left: 100px;
	padding-right: 100px;
	width: calc(100%-200px);
}

.transp5 {
	-webkit-transition: all .5s ease-in-out;
	-moz-transition: all .5s ease-in-out;
	-ms-transition: all .5s ease-in-out;
	-o-transition: all .5s ease-in-out;
	transition: all .5s ease-in-out;
}

.img-low {
	height: auto;
	max-width: 900px;
	width: 100%;
}

.textbox {
	padding: 3rem 0;
}

.bg {
	background-color: var(--bg);
}

.bg-img {
	background: url('/assets/img/bg-branches.jpg') no-repeat fixed center;
	background-size: cover;
}

.bg-txt {
	background: url('/assets/img/mwt-bgtxt.svg') no-repeat bottom;
	background-size: 100%;
	min-height: 400px;
	padding-bottom: 1rem;
}

.title {
	position: relative;
}

.title:after {
	background-color: var(--col-mwt);
	content: '';
	display: block;
	left: -100px;
	height: 78px;
	position: absolute;
	top: 0;
	width: calc(100% + 100px);
	z-index: -1;
}

@media screen and (max-width: 768px) {
	.textbox {
		padding: 1rem;
	}
}

.imgbox {
	display: block;
	height: 100%;
	position: relative;
	width: 100%;
}

@media screen and (max-width: 991px) {
	.imgbox {
		min-height: 500px;
	}
}

.img-centre {
	left: 50%;
	/*object-fit: cover;*/
	position: absolute;
	top: 50%;
	
	height: auto;
	width: auto;
	
	max-height: 250px;
	max-width: 400px;
	
	/*margin: 1rem;*/
	
	border: 2px solid var(--gold);
	box-shadow: 3px 3px 15px rgba(0,0,0,.25);
}

.top-portfolio .img-centre {
	height: 100%;
	width: 100%;
	
	object-fit: cover;
	
	max-height: none;
	max-width: none;
	
	border: none;
}

.img100pc {
	height: 100%;
	width: 100%;
}
.z-1 {
	z-index: 1;
}

.t50 {
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.tx50 {
	-webkit-transform: translatex(-50%);
	-moz-transform: translatex(-50%);
	-ms-transform: translatex(-50%);
	-o-transform: translatex(-50%);
	transform: translatex(-50%);
}

.down {
	bottom: 0;
	color: #fff;
	font-size: 2rem;
	left: 50%;
	opacity: .25;
	position: absolute;
	z-index: 3;
}

.down:hover {
	color: #fff;
	opacity: 1;
}

.top {
	background-color: rgba(255,255,255,.5);
	bottom: 2rem;
	color: #666;
	font-size: 1rem;
	padding: .7rem 1rem;
	position: fixed;
	right: 0;
	z-index: 3;
	-webkit-transform: translatex(100%);
	-moz-transform: translatex(100%);
	-ms-transform: translatex(100%);
	-o-transform: translatex(100%);
	transform: translatex(100%);
}

.top.show {
	-webkit-transform: translatex(0%);
	-moz-transform: translatex(0%);
	-ms-transform: translatex(0%);
	-o-transform: translatex(0);
	transform: translatex(0%);
}

.top:hover {
	background-color: rgba(255,255,255,1);
	color: #666;
}

/* navigation */

.header {
	background-color: var(--col-mwt);
	padding: 3rem 0 1rem;
	text-align: center;
}

.header .mwt-logo {
	display: block;
	height: 75px;
	margin: auto;
	width: auto;
}

.nav-burger {
	display: none;
}

.navbar {
	background-color: rgba(255,255,255,1);
	justify-content: flex-end;
	padding: 1.5rem;
	z-index: 100;
}

.navbar a {
	color: #000;
	text-transform: uppercase;
}

.navbar .navbar-brand {
	color: var(--gold);
	font-family: 'Cinzel', serif;
	font-size: 2.5rem;
	font-weight: 500;
}

.navbar.smaller .navbar-brand {
	font-size: 1rem;
}

.navbar .nav a {
	font-size: 1rem;
	font-weight: 500;
	padding-left: 1rem;
	
	-webkit-transition: all .5s ease-in-out;
	-moz-transition: all .5s ease-in-out;
	-ms-transition: all .5s ease-in-out;
	-o-transition: all .5s ease-in-out;
	transition: all .5s ease-in-out;

}

.navbar .nav a:hover {
	color: var(--gold);
	text-decoration: none;
}

.navbar .nav .active a {
	color: var(--gold);
	font-weight: 400;
}

.navbar.smaller .nav .active a {
	color: #666;
}

.navbar-fixed-top {
	position: fixed;
	top: 0;
	width: 100%;
}

.navbar.smaller {
	background-color: #fff;
	background-color: rgba(255,255,255,1);
}

@media screen and (max-width: 768px) {
	.navbar .navbar-brand {
		font-size: 1.5rem;
	}
	.nav {
		background-color: #fff;
		left: 0;
		padding: 1em 2em;
		position: fixed;
		top: 0;
		width: 100%;
		z-index: 50;

		-webkit-transform: translateY(-100%);
		-moz-transform: translateY(-100%);
		-ms-transform: translateY(-100%);
		-o-transform: translateY(-100%);
		transform: translateY(-100%);
		
		-webkit-transition: all 1s ease-in-out;
		-moz-transition: all 1s ease-in-out;
		-ms-transition: all 1s ease-in-out;
		-o-transition: all 1s ease-in-out;
		transition: all 1s ease-in-out;
	}
	.nav.active {
		-webkit-transform: translateY(0%);
		-moz-transform: translateY(0%);
		-ms-transform: translateY(0%);
		-o-transform: translateY(0%);
		transform: translateY(0%);
	}
	.nav li {
		width: 80%;
	}
	.navbar .nav a {
		font-size: 2.5rem;
	}
	.navbar .nav .active a {
		color: #666;
	}
	.nav li a {
		display: block;
		float: left;
		margin-left: 0;
		padding: .25em .5em;
	}
	.nav-burger {
		background-color: transparent;
		border: none;
		display: block;
		height: 40px;
		padding: 0;
		position: fixed;
		right: 15px;
		top: 10px;
		width: 40px;
		z-index: 100;
	}
	.nav-burger:before , .nav-burger:after {
		background-color: var(--gold);
		content: '';
		height: 2px;
		left: 20px;
		position: absolute;
		width: 40px;
		
		-webkit-transform: translate(-50%, -50%);
		-moz-transform: translate(-50%, -50%);
		-ms-transform: translate(-50%, -50%);
		-o-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);

		-webkit-transition: all 0.5s ease-in-out;
		-moz-transition: all 0.5s ease-in-out;
		-ms-transition: all 0.5s ease-in-out;
		-o-transition: all 0.5s ease-in-out;
		transition: all 0.5s ease-in-out;
	}
	.nav-burger:before {
		top: 10px;
	}
	.nav-burger:after {
		top: 30px;
	}
	.nav-burger:focus {
		outline: none;
	}
	.nav-burger span {
		background-color: var(--gold);
		display: block;
		height: 2px;
		margin: 19px 0;
		width: 40px;
		
		-webkit-transition: all 0.5s ease-in-out;
		-moz-transition: all 0.5s ease-in-out;
		-ms-transition: all 0.5s ease-in-out;
		-o-transition: all 0.5s ease-in-out;
		transition: all 0.5s ease-in-out;
	}
	.nav-burger.active span {
		opacity: 0;
	}
	.nav-burger.active:before {
		left: 0px;
		top: 20px;
		transform: rotate(-45deg);
	}
	.nav-burger.active:after {
		left: 0px;
		top: 20px;
		transform: rotate(45deg);
	}
}

/* copy blocks */

.copy {
	column-count: 2;
	column-gap: 100px;
	line-height: 1.75;
}

.copy p {
	-webkit-column-break-inside: avoid; /* Chrome, Safari, Opera */
          page-break-inside: avoid; /* Firefox */
               break-inside: avoid-column; /* IE 10+ */
}

.copy.intro p:first-child {
	font-size: 1.2rem;
	font-weight: 600;
}

.copy .read-more {
	color: var(--col-mwt);
	font-weight: 700;
}

/* hero image */

.top-content {
	position: relative;
}

.top-content:after {
	background-color: var(--col-mwt);
	content: '';
	display: block;
	left: 0;
	height: 78px;
	position: absolute;
	bottom: 0;
	width: 100%;
	z-index: -1;
}

.top-content .hero {
	height: auto;
	width: 100%;
}

/* carousel */

.top-content .carousel-item {
    height: 600px;
    /*min-height: 400px;*/
}

.top-content.locations .carousel-item {
	height: 75vh;
}
 
.top-content .carousel-item img {
    height: 100%;
    object-fit: cover;
}

/* round images */

.circles {
	border: 2px solid var(--gold);
	box-shadow: 3px 3px 15px rgb(0 0 0 / 25%);
	border-radius: 50%;
	display: block;
	height: auto;
	margin: 0 15%;
	overflow: hidden;
	padding-top: 70%;
	position: relative;
	width: 70%;
}

.circles .img-centre {
	border: none;
	height: 100%;
	margin: 0;
	max-height: none;
	max-width: none;
	object-fit: cover;
	width: 100%;
}

/* portfolio */

.portfolio {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
}

.previews .portfolio {
	flex-wrap: nowrap;
}

.portfolio li {
	flex-basis: 33.333333%;
	flex-grow: 0;
}

.portfolio li a {
	display: block;
	height: auto;
	overflow: hidden;
	padding-bottom: 60%;
	position: relative;
	width: 100%;
}

.portfolio li a img {
	height: 102%;
	position: absolute;
	width: 102%;
}

.portfolio li a:hover img {
	height: 120%;
	width: 120%;
}

.portfolio li a h3 {
	background-color: rgba(161,150,144,.75);
	bottom: 0;
	color: #fff;
	display: block;
	font-size: 1.1rem;
	font-weight: 400;
	left: 0;
	margin-bottom: 0;
	padding: .5rem 2rem;
	position: absolute;
	text-align: center;
	text-transform: capitalize;
	width: 100%;
	z-index: 2;
}

.top-portfolio {
	display: block;
	height: 75vh;
	overflow: hidden;
	position: relative;
	width: 100%;
}

.top-portfolio img {
	height: 105%;
	width: 105%;
}

.top-portfolio h1 {
	bottom: 3rem;
	color: #fff;
	font-size: 3rem;
	left: 50%;
	margin: 0;
	padding: 0 2rem;
	position: absolute;
	text-align: center;
	width: 100%;
	z-index: 2;
}

.desc-portfolio {
	font-size: 1.5rem;
	padding: 0 3rem 2rem;
	/*text-align: center;*/
}

.gallery {
	background-color: var(--warm-grey);
	display: block;
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
	
}

.gallery li {
	display: block;
	/*float: left;*/
	height: auto;
	overflow: visible;
}

.gallery .gallery-item , .gallery .gallery-sizer {
	width: 50%;
}

.gallery li img {
	display: block;
	height: auto;
	width: 100%;
}

.gallery li a:hover img {
	opacity: .5;
}

@media screen and (max-width: 768px) {
	.previews .portfolio {
		flex-wrap: wrap;
	}
	.portfolio li {
		flex-basis: 50%;
	}
}

@media screen and (max-width: 480px) {
	.portfolio li {
		flex-basis: 100%;
	}
	.gallery .gallery-item, .gallery .gallery-sizer {
		width: 100%;
	}
}

/* location images */

.location-imgs {
	align-content: space-between;
	align-items: center;
	column-gap: 50px;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	list-style: none;
	margin: 0;
	margin-bottom: -25px;
	padding: 0;
	padding-left: 50px;
}

.location-imgs li {
	flex: 1 1 0px;
}

/* contact */

form {
	width: 100%;
}

form input , form textarea , form button {
	background-color: rgba(0,0,0,.1);
	border: none;
	border-radius: 0;
	padding: 10px 25px;
	width: 100%;
}

form input:focus , form textarea:focus {
	background-color: var(--col-mwt);
	outline: none;
}

form button {
	background-color: var(--col-mwt);
	font-size: 1.5rem;
	font-weight: bold;
	text-transform: uppercase;
}

/* testimonials */

.test-quote {
	display: block;
	font-size: .9rem;
	padding: 0 4rem;
	position: relative;
	text-align: left;
}

.test-quote p:last-child {
	margin-bottom: 0;
}

/*.test-quote:before , .test-quote:after {
	color: var(--gold);
	display: block;
	font-family: FontAwesome;
	font-family: 'Cinzel', serif;
	font-size: 5rem;
	line-height: 5.5rem;
	position: absolute;
	top: 0;
}

.test-quote:before {
	content: '\201C';
	left: 0;
}

.test-quote:after {
	content: '\201D';
	right: 0;
}*/

.test-name {
	color: #000;
	font-size: .9rem;
	font-weight: 600;
	padding: 0 4rem;
}

.testimonial-imgs {
	align-items: start;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	list-style: none;
	margin: 0;
	margin-top: 6rem;
	padding: 0;
	padding-bottom: 1.5rem;
	position: relative;
	width: 100%;
}

.testimonial-imgs:after {
	background-color: var(--col-mwt);
	/*bottom: 0;*/
	content: '';
	height: 4rem;
	position: absolute;
	top: 310px;
	width: 100%;
	z-index: -2;
}

.testimonial-imgs li {
	display: flex;
	flex: 1 1 0px;
	flex-direction: column;
}

.testimonial-imgs li:first-child {
	margin-left: 100px;
}

.testimonial-imgs li:last-child {
	margin-right: 100px;
}

.testimonial-imgs li .test-img-box {
	background-image: url('../img/test-img-bg.png');
	background-size: 100% 100%;
	display: block;
	margin: auto;
	margin-bottom: 3rem;
	padding: 1.5rem;
	position: relative;
}

.testimonial-imgs li .test-img-box:before {
	content:url('../img/mwt-roundel-col.svg');
	display: block;
	height: 100px;
	left: -50px;
	position: absolute;
	top: -50px;
	width: 100px;
	z-index: 10;
}

.testimonial-imgs li .test-img-box:after {
	background-image: url('../img/test-img-shadow.png');
   -moz-background-size:100% 100%;
    -webkit-background-size:100% 100%;
	background-size: 100% 100%;
	content: '';
	display: block;
	height: 100%;
	left: 12px;
	position: absolute;
	top: 8px;
	width: 100%;
	z-index: -1;
}

.testimonial-imgs li .test-img-box img {
	display: block;
	height: auto;
	max-height: 300px;
	max-width: 300px;
	width: auto;
}

/* fleet */

.fleet {
	align-items: flex-end;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 10%;
	justify-content: space-evenly;
	list-style: none;
	margin: 5rem 0 0 0;
	padding: 0;
	width: 100%;
}

.fleet li {
	/*flex-basis: 26.666%;*/
	margin-bottom: 4rem;
}

.fleet li a {
	display: flex;
	flex-direction: column;
}

.fleet li .taxi-img-box {
	/*display: block;
	overflow: hidden;
	padding-bottom: 60%;
	position: relative;
	width: 100%;*/
	
	background-image: url(../img/test-img-bg.png);
    background-size: 100% 100%;
    display: block;
    margin: auto;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    position: relative;
}

.fleet li .taxi-img-box img {
	/*border: none;
	box-shadow: none;
	height: 100%;
	object-fit: contain;
	width: 100%;*/
	
	display: block;
	filter: grayscale(100%);
    height: auto;
    image-rendering: crisp-edges;
    max-height: 300px;
    max-width: 300px;
    width: auto;
}

.fleet li a:hover .taxi-img-box img {
	filter: grayscale(0%);
}

.fleet li .taxi-img-box:after {
    background-image: url(../img/test-img-shadow.png);
    -moz-background-size: 100% 100%;
    -webkit-background-size: 100% 100%;
    background-size: 100% 100%;
    content: '';
    display: block;
    height: 100%;
    left: 12px;
    position: absolute;
    top: 8px;
    width: 100%;
    z-index: -1;
}

.fleet li h2 {
	font-family: 'Work Sans', sans-serif;
	font-size: 1.25rem;
	font-weight: 600;
	text-transform: capitalize;
}

.fleet li h2:before , .fleet li h2:after {
	display: none;
}

.fleet li a:hover , .fleet li a:hover h2 {
	color: var(--text-grey);
	text-decoration: none;
}

#taxi {
	margin-top: 5rem;
	padding-bottom: 75px;
	position: relative;
}

#taxi:after {
	background-color: var(--col-mwt);
	bottom: 0;
	content: '';
	height: 120px;
	left: 0;
	position: absolute;
	width: 100%;
	z-index: -1;
}

#taxi .carousel-item {
	height: 600px;
}

#taxi .carousel-item img {
	height: 100%;
	object-fit: contain;
	width: 100%;
}

#taxi .carousel-indicators {
	margin-bottom: 0;
}

#taxi .carousel-indicators li {
	background: transparent;
	height: 50px;
	overflow: hidden;
	position: relative;
	width: 75px;
}

#taxi .carousel-indicators li img {
	border: none;
	height: 100%;
	object-fit: cover;
	position: absolute;
	width: 100%;
}

#taxi .carousel-control-next, #taxi .carousel-control-prev {
	width: 6%;
}

#taxi .carousel-control-next-icon , #taxi .carousel-control-prev-icon {
    width: 40px;
    height: 40px;
}

#taxi .carousel-control-next-icon {
    background-image: url('../img/gall-next.svg');
}

#taxi .carousel-control-prev-icon {
    background-image: url('../img/gall-prev.svg');
}

.back {
	background-color: var(--col-mwt);
	border-radius: 50%;
	color: #000;
	display: block;
	font-size: 15px;
	height: 80px;
	line-height: 16px;
	margin: 3rem auto 0;
	padding: 16px 10px;
	text-align: center;
	text-transform: uppercase;
	width: 80px;
}

.back:hover {
	color: #fff;
	text-decoration: none;
}

/* footer */

.base-logo {
	padding: 4rem;
}

.base-logo-img {
	display: block;
	margin: auto;
	height: 200px;
}

.footer {
	background-color: var(--col-mwt);
	color: #000;
	display: block;
	font-size: .9rem;
	padding: 2em 100px;
	text-align: center;
	width: 100%;
}

.footer .locations li {
	display: inline-block;
	font-style: italic;
}

.footer .locations li a {
	color: #fff;
	display: block;
	font-style: normal;
	font-weight: 600;
	padding: 0 .25rem;
}

.footer .locations li a:hover {
	color: var(--text-grey);
	text-decoration: none;
}

.footer .contacts span {
	display: inline-block;
	font-style: italic;
	width: 45px;
}

.footer .contacts .phone span {
	width: 60px;
}

.footer .social a {
	color: #fff;
	font-size: 2rem;
	margin-right: .5rem;
}

.footer .social a:hover {
	color: var(--text-grey);
}

.footer strong {
	color: #fff;
	font-size: 1rem;
}

.locations {
	padding: 0;
}

/* responsive */

@media screen and (max-width: 1279px) {
	section {
		padding-left: 50px;
		padding-right: 50px;
	}
	.copy {
		column-gap: 50px;
	}
	.testimonial-imgs li .test-img-box:before {
		height: 80px;
		left: -40px;
		top: -40px;
		width: 80px;
	}
	.testimonial-imgs li .test-img-box {
		padding: 1rem;
	}
	.testimonial-imgs li .test-img-box img {
		max-height: 200px;
		max-width: 150px;
	}
	.test-quote , .test-name {
		padding: 0 2rem;
	}
	.base-logo-img {
		height: 150px;
	}
	.testimonial-imgs:after {
		height: 3rem;
		top: 210px;
	}
}

@media screen and (max-width: 991px) {
	.fleet li h2 {
		font-size: 1rem;
	}
}

@media screen and (max-width: 767px) {
	.header .mwt-logo {
		height: 50px;
	}
	.copy {
		column-count: 1;
	}
	h1 {
		font-size: 3.5rem;
		line-height: 1;
	}
	h2 {
		font-size: 3rem;
	}
	.test-quote, .test-name {
		padding: 0;
	}
	.bg-txt {
		min-height: auto;
	}
	.testimonial-imgs {
		flex-direction: column;
		padding: 0 65px;
	}
	.testimonial-imgs:after {
		display: none;
	}
	.testimonial-imgs li {
		margin-bottom: 3rem;
	}
	.testimonial-imgs li:first-child {
		margin-left: 0;
	}
	.testimonial-imgs li:last-child {
		margin-bottom: 0;
		margin-right: 0;
	}
	.img-low {
		width: 75%;
	}
	.h2:before, .h2:after, .h3:before, .h3:after, .h4:before, .h4:after, .h5:before, .h5:after, .h6:before, .h6:after, h2:before, h2:after, h3:before, h3:after, h4:before, h4:after, h5:before, h5:after, h6:before, h6:after {
		margin: 0 0.5em 0 -45%;
	}
	.h2:after, .h3:after, .h4:after, .h5:after, .h6:after, h2:after, h3:after, h4:after, h5:after, h6:after {
		margin: 0 -45% 0 0.5em;
	}
	.fleet li {
		flex-basis: 45%;
		margin-bottom: 4rem;
	}
}

@media screen and (max-width: 480px) {
	section {
		padding-left: 15px;
		padding-right: 15px;
	}
	.header .mwt-logo {
		height: auto;
		width: 80%;
	}
	.testimonial-imgs {
		padding: 0 30px;
	}
	.footer {
		padding-left: 15px;
		padding-right: 15px;
	}
	.base-logo-img {
		height: auto;
		width: 70%;
	}
	.h2:before, .h2:after, .h3:before, .h3:after, .h4:before, .h4:after, .h5:before, .h5:after, .h6:before, .h6:after, h2:before, h2:after, h3:before, h3:after, h4:before, h4:after, h5:before, h5:after, h6:before, h6:after {
		display: none;
	}
	.fleet li {
		flex-basis: 100%;
		margin-bottom: 4rem;
	}
}