/* medicaltogether.css --------------------
	
	This file contains the master styles for Medical Together Sponsorship.
	See the File Index (README.TXT) for further information.
	
	© Copyright 2020 Medical Together.
	
*/

.mtfooter .mtfooter-1 {
	transition: 0.4s ease fill;
}

.mtfooter .mtfooter-2 {
	transition: 0.8s ease fill;
	transition-delay: 0.2s;
}

.mtfooter:hover .mtfooter-1 {
	fill: #0070BA;
}

.mtfooter:hover .mtfooter-2 {
	fill: #7EC49F;
}

/* Home */

.mt-home {
	position: relative;
}

.mt-home-sponsors-container {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2%;
}

.mt-home-sponsor {
	margin: 20px 0;
	width: 100% !important;
}

@media screen and (min-width: 768px) {
	.mt-home-sponsors-container {
		grid-template-columns: 1fr 1fr;
	}
}

@media screen and (min-width: 981px) {
	.mt-home-sponsors-container {
		grid-template-columns: 1fr 1fr 1fr;
	}
}

.home-spons-icon {
	height: 75px;
	width: 75px;
	border-radius: 100%;
	float: left;
	margin-right: 20px;
}

.home-spons-icon svg {
	height: 45px;
	width: 45px;
	margin: 15px;
}

.home-spons-cat {
	font-weight: bold;
	font-size: 16pt;
	margin-top: 12.5px;
}

/* Services */

.mt-spons-inner {
	position: relative;
	max-width: 1300px;
	margin: 2.5em auto;
	display: grid;
	gap: 2.5em;
	align-items: center;
}

.mt-services-sponsor {
	width: 100%;
	overflow: auto;
	min-height: 100px;
}

.mt-services-sponsor:nth-child(even) {
	background-color: #F7F7F7;
}

.mt-spons-img {
	background-repeat: no-repeat;
	background-position: left center;
	background-size: contain;
	display: block;
	height: 300px;
	object-fit: cover;
	object-position: center;
	aspect-ratio: 1 / 1;
}

.mt-spons-info {
	position: relative;
	overflow: auto;
	border-bottom: 1pt solid gray;
}

.mt-spons-hours {
	line-height: 1;
	align-self: start;
}

.mt-spons-hours h5 {
	font-size: 14pt;
	font-weight: bold;
	text-transform: uppercase;
	width: 100%;
}

.mt-spons-hours strong {
    display: inline-block;
    width: 110px;
}

.mt-spons-hours > p {
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.mt-spons-desc h1 {
	font-size: 18pt;
	font-weight: 500;
}

.mt-spons-meta {
	margin-top: 25px;
}

@media screen and (min-width: 600px) {

	.mt-spons-meta {
		margin-top: 50px;
	}

}

.mt-spons-cta {
	background-color: grey;
	color: white;
	padding: 5px 10px;
	text-decoration: none;
	display: inline-block;
	margin-bottom: 5px;
	text-align: center;
	height: fit-content;
}

.mt-spons-cta:hover {
	color: white;
	background-color: black;
}

.mt-spons-addr::before,
.mt-spons-phone::before {
	font-family: 'fontawesome';
	margin-right: 5px;
	font-size: 8pt;
}

.mt-spons-addr::before {
	margin-left: 1px;
	content: '\f3c5';
}

.mt-spons-phone {
	font-weight: 600;
}

.mt-spons-phone a {
	font-weight: 400;
}

.mt-spons-phone::before {
	content: '\f095';
}

@media screen and (min-width: 768px) {
	.mt-spons-info {
		border-bottom: none;
		padding-bottom: 0;
	}
	
	.mt-spons-img {
		grid-column-start: 1;
		grid-column-end: 3;
	}
	
	.mt-spons-inner {
		grid-template-columns: 1.5fr 1fr;
	}
}

@media screen and (min-width: 1250px) {
	.mt-spons-inner {
		gap: 3em;
	}
	
	.mt-spons-img {
		grid-column-start: 1;
		grid-column-end: 2;
		height: auto;
	}
	
	.mt-spons-meta {
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	
	.mt-spons-meta-l {
		width: 60%;
	}
	
	.mt-spons-meta-r {
		width: 40%;
		display: flex;
		justify-content: right;
		gap: 5px;
	}
	
	.mt-spons-hours {
		align-self: auto;
	}
	
	.mt-spons-inner {
		grid-template-columns: 1.5fr 3fr 1.5fr;
	}
}