*,
::before,
::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%; /* iOS landscape fix */
}

body {
	margin: 0;
	background-color: #fff5e5;
	color: #1c213d;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
}

p,
a,
li,
input,
label,
textarea,
::placeholder {
	font-size: 20px;
	font-family: 'Open Sans', sans-serif;
}

/* header */

header {
	background-color: #1c213d;
	height: 120px;
	position: sticky;
	top: 0;
	transition: background-color 350ms ease-in-out;
	z-index: 5;
}

.homepage header {
	background: linear-gradient(180deg, rgba(28, 33, 61, 1) 0%, rgba(28, 33, 61, 0) 100%);
}

header.js-is-sticking {
	background-color: #1c213d;
}

header nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 10px;
}

header nav div {
	padding: 0 10px;
	margin-left: 15px;
}

header .desktop-nav nav div a.custom-link,
header .desktop-nav nav menu li a.custom-link {
	text-decoration: none !important;
	transition: all .25s linear;
	outline: none;
}


.desktop-nav .custom-link {
	text-decoration: none !important;
	transition: all .25s linear;
}

header div nav div a:hover,
.desktop-nav .custom-link:hover {
	border-bottom: solid 4px #c9a246;
	margin-bottom: -4px;
}

header nav menu {
	list-style: none;
	display: flex;
	padding: 0 25px;
	margin: 0;
}

header nav menu li {
	padding: 0 15px;
}

header nav menu li a {
	color: #c9a246;
	text-decoration: none;
	transition: all .25s linear;
	text-transform: uppercase;
}

header nav menu li:hover a {
	border-bottom: solid 4px #c9a246;
}

.mobile-nav {
	display: none;
}

/* Services Nav */

.services-nav {
	height: 50px;
	background-color: #c9a246;
}

.services-nav nav menu {
	width: 100%;
	justify-content: space-around;
	align-items: center;
}

.services-nav nav menu li a {
	color: #1c213d;
}

.services-nav nav menu li:hover a {
	border-bottom: solid 4px #1c213d;
}

/* media query for smaller screens */
@media only screen and (max-width: 750px) {
	header .desktop-nav {
		display: none;
	}

	header .mobile-nav {
		display: flex;
		align-items: center;
		height: 120px;
	}

	.mobile-nav .logo {
		height: 90px;
		margin-left: 10px;
		position: relative;
		z-index: 5;
	}

	.mobile-nav .logo img {
		display: block;
		max-width: 100%;
		height: 90px;
	}

	.mobile-nav input + label {
		position: fixed;
		top: 55px;
		right: 40px;
		height: 22px;
		width: 25px;
		z-index: 5;
	}

	.mobile-nav input + label span {
		position: absolute;
		width: 100%;
		height: 2px;
		top: 50%;
		margin-top: -1px;
		left: 0;
		display: block;
		transition: 0.5s;
		background: #c9a246;
	}

	.mobile-nav input + label span:first-child {
		top: 3px;
	}

	.mobile-nav input + label span:last-child {
		top: 19px;
	}

	.mobile-nav label:hover {
		cursor: pointer;
	}

	.mobile-nav input:checked + label span {
		opacity: 0;
		top: 50%;
		color: #0e0e0e;
	}

	.mobile-nav input:checked + label span:first-child {
		opacity: 1;
		transform: rotate(-405deg)
	}

	.mobile-nav input:checked + label span:last-child {
		opacity: 1;
		transform: rotate(405deg)
	}

	.mobile-nav input ~ nav {
		position: fixed;
		top: 120px;
		left: 0;
		right: 0;
		z-index: 3;
		padding: 0;
		background-color: #1c213d;
	}

	.mobile-nav input ~ nav > menu {
		text-align: center;
		list-style: none;
		display: flex;
		flex-direction: column;
		width: 100%;
	}

	.mobile-nav input ~ nav > menu > li > a {
		text-decoration: none;
		text-transform: uppercase;
		color: #c9a246;
		font-weight: bold;
		display: flex;
		flex-direction: column;
		padding: 30px;
	}

	.mobile-nav input ~ nav {
		max-height: 0;
		transition: max-height 1000ms cubic-bezier(0.65, 0, 0.35, 1); /* Courtesy of easings.net */
		overflow: hidden;
	}

	.mobile-nav input:checked ~ nav {
		max-height: 750px; /* arbitrary number bigger than actual height of the nav */
	}

	/* --- fill mobile header with color in case it's not scrolled (has transparent background) after you open the navigation */
	.mobile-nav input ~ label::before {
		background-color: transparent;
		content: '';
		position: fixed;
		inset: 0 0 auto 0;
		height: 120px;
		transition: background-color 350ms ease-in-out;
		transition-delay: 1000ms;
		pointer-events: none;
	}

	.mobile-nav input:checked ~ label::before {
		background-color: #1c213d;
		transition-delay: 0ms;
	}

	.services-nav {
		position: fixed;
		top: 120px;
		width: 100%;
		z-index: 4;
	}

	.mobile-nav input:checked ~ .services-nav {
		opacity: 0;
	}

}

/* Main */
.homepage main {
	margin-top: -120px; /* compensation for the sticking header */
}

.hero {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding-top: 120px;
	padding-bottom: 120px;
	background-image: url(../img/Torronto-Main.jpg);
	background-position: center center;
	background-size: cover;
	position: relative;
	min-height: 100dvh;
}

.hero img {
	max-width: 100%;
	width: 500px;
}


.hero h2 {
	color: #1c213d;
	text-align: center;
	font-family: "Cabin", sans-serif;
	font-size: 25px;
}

.hero div:nth-child(1) {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 0 15px;
	margin-top: 45px;
}

.hero-claim {
	width: 100%;
	max-width: 450px;
	background-color: rgb(201 162 70 / 90%);
	color: #1c213d;
	padding: 20px;
	margin-top: 30px;
	border-radius: 10px;
	box-shadow: 10px 15px 0 #1c213d;
}

.hero div div h3 {
	text-align: center;
	font-size: 25px;
}

.divider {
	height: 60px;
	background-color: #1c213d;
}

.services-main {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
  background-image: url(../img/mapleLeaf.svg), url(../img/mapleLeafLeft.svg);
  background-repeat: no-repeat;
  background-position: right bottom, left top;
  background-size: auto 40%;
}

.services-main h1 {
	font-size: 46px;
	text-align: center;
}

.services-main h2 {
	margin: 0;
}

.services-main p {
	margin: 15px 0 0 0;
}

.services-main .wrapper {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 50px;
	justify-content: center;
	align-items: center;
	max-width: 60%;
	margin: 0 15px 20px 15px;
}

.services-main .service-main {
	min-height: 200px;
	background-color: #fff;
	padding: 15px 45px;
	box-shadow: 10px 15px 0 #1c213d;
	border-radius: 90px;
	margin-bottom: 100px;
	text-align: center;
	text-decoration: none;
	color: #1c213d;
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	translate: 0 0;
	transition: box-shadow 0.3s ease-in-out, background-color 0.3s ease-in-out, translate 0.3s ease-in-out;
}

.services-main .service-main:hover {
	background-color: #b8dbd3;
	box-shadow: 5px 10px 0 #1c213d;
	translate: 5px 5px;
}

.services-main .service-main:nth-child(2) {
	box-shadow: 10px 15px 0 #c9a246;
}

.services-main .service-main:nth-child(2):hover {
	box-shadow: 5px 10px 0 #c9a246;
}

.services-main .service-main:nth-child(3) {
	box-shadow: 10px 15px 0 #b8dbd3;
}

.services-main .service-main:nth-child(3):hover {
	box-shadow: 5px 10px 0 #b8dbd3;
}

.services-main .service-main:nth-child(4) {
	box-shadow: 10px 15px 0 #1c213d;
}

.services-main .service-main:nth-child(4):hover {
	box-shadow: 5px 10px 0 #1c213d;
}

.services-main .service-main:nth-child(5) {
	box-shadow: 10px 15px 0 #c9a246;
}

.services-main .service-main:nth-child(5):hover {
	box-shadow: 5px 10px 0 #c9a246;
}

.services-main .wrapper .service-main a {
	text-decoration: none;
}

.services-main .wrapper .service-main a:hover {
	color: #c9a246;
}

.drive {
	height: 100vh;
	/* padding: 100px 0; */
	background-image: url(../img/apply.jpg);
	background-position: 50% 50%;
	background-size: cover;
	position: relative;
}

.drive .apply-index {
	width: 350px;
	min-height: 200px;
	background-color: #f4f4f4;
	padding: 20px;
	box-shadow: 10px 15px 0 #1c213d;
	border-radius: 90px;
	text-align: center;
	position: absolute;
	bottom: 100px;
	right: 80px;
	text-decoration: none;
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	translate: 0 0;
	transition: box-shadow 0.3s ease-in-out, background-color 0.3s ease-in-out, translate 0.3s ease-in-out;
}

.drive .apply-index:hover {
	background-color: #b8dbd3;
	box-shadow: 5px 10px 0 #1c213d;
	translate: 5px 5px;
}

.drive .apply-index h2 {
	margin: 0;
}

.drive .apply-index p {
	margin: 15px 0 0 0;
}

.drive .apply-index a:hover {
	color: #c9a246;
}

/* Partners Section */

.partners {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background-color: #fff5e5;
}

.partners h1 {
	font-size: 46px;
	text-align: center;
}

.partners .partners-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 50px;
	justify-content: center;
	align-items: center;
	width: 90%;
	margin-bottom: 20px;
	align-self: center;

}

.partners .partners-grid img {
	display: block;
	margin-left: auto;
	margin-right: auto;
	max-width: 100%;
}

/* Media queries for responsiveness */

@media (max-width: 767px) {
	/* Alter the layout to a single column */
	.hero {
		flex-direction: column;
		justify-content: center;
		min-height: 0;
	}

	.hero img {
		max-width: 100%;
		width: 290px;
	}

	.hero h2 {
		font-size: 18px;
	}

	.hero div div h3 {
		font-size: 20px;
	}

	.services-main .wrapper {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		width: 80%;
	}

	.services-main .service-main {
		margin-bottom: 20px;
		width: 100%;
	}

	.drive {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}

	.drive .apply-index {
		position: static;
		align-self: center;
		width: 80%;
	}

	.partners .partners-grid {
		grid-template-columns: 1fr;
	}

	.partners .partners-grid img {
		max-width: 90%;
	}

}


/* Services section */
.service-left {
	margin-top: 50px;
}

.service-left, .service-right {
	display: grid;
	grid-template-columns: repeat(2, 50%);
	min-height: 40vh;
	align-items: center;
}

.service-left .private-driver {
	position: relative;
	padding: 10px;
	margin: 10px;
	height: 90%;
	display: flex;
	align-items: center;
	justify-content: center;

}

.service-left .private-driver::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(../img/driver.jpeg);
	background-size: cover;
	background-position: 50% 50%;
	background-color: #f4f4f4;
	opacity: 0.8; /* Change the opacity value as needed */
	z-index: -1;
	border-radius: 50px;
}


.service-left .private-driver h3 {
	text-align: left;
	font-size: 30px;
	color: #f4f4f4;
	text-shadow: 4px 2px 4px rgb(0 0 0 /80%);
}

.service-left .left-content {
	padding: 20px;
	margin-left: 20px;
}

.service-left .left-content p {
	font-size: 18px;
	margin-bottom: 10px;
	line-height: 20px;
	text-align: justify;
}


.service-right .delivery {
	position: relative;
	padding: 10px;
	margin: 10px;
	height: 90%;
	display: flex;
	align-items: center;
	justify-content: center;
	grid-column-start: 2;
	grid-row-start: 1;
}

.service-right .delivery::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(../img/delivery.jpg);
	background-size: cover;
	background-position: 50% 50%;
	background-color: #0e0e0e;
	opacity: 0.8;
	z-index: -1;
	border-radius: 50px;
}

.service-right .delivery h3 {
	font-size: 30px;
	color: #f4f4f4;
	text-shadow: 4px 2px 4px rgb(0 0 0 /60%);
}

.service-right .right-content {
	padding: 20px;
	margin: 10px;
	font-size: 18px;
	grid-column-start: 1;
}

.service-right .right-content p {
	font-size: 18px;
	margin-bottom: 10px;
	line-height: 20px;
	text-align: justify;
}

.service-left .courier {
	position: relative;
	padding: 10px;
	margin: 10px;
	height: 90%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.service-left .courier::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(../img/courier.png);
	background-size: cover;
	background-position: 50% 50%;
	background-color: #0e0e0e;
	opacity: 0.8; /* Change the opacity value as needed */
	z-index: -1;
	border-radius: 50px;
}


.service-left .courier h3 {
	text-align: left;
	font-size: 30px;
	color: #f4f4f4;
	text-shadow: 4px 2px 4px rgb(0 0 0 /60%);
}

.delivery-process {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 45px;
	z-index: 5;
	margin-bottom: 0;
}


@media screen and (max-width: 750px) {
	.service-left:nth-child(1) {
		margin-top: 95px;
	}

	.service-right, .service-left {
		display: block;
		min-height: auto;
	}

	.private-driver, .delivery, .courier {
		min-height: 150px;
	}

	.right-content, .left-content {
		margin-left: 0;
		padding: 0 20px;
	}

	.delivery-process img {
		max-width: 100%;
		height: auto;
	}


}

@media screen and (max-width: 463px) {
	.services-nav nav menu li a {
		font-size: 15px;
	}
}

@media screen and (max-width: 381px) {
	.services-nav nav menu li a {
		font-size: 10px;
	}
}

/* Driver section */

.driver-hero {
	align-items: center;
	justify-content: center;
	height: 100vh;
	position: relative;
	background-color: #1c213d;
	z-index: -1;
}

.driver-hero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(../img/1tap-drivers.jpg);
	background-size: cover;
	filter: blur(5px);
	z-index: -1;
}

.driver-hero > div {
	background-color: #fff5e538;
	height: 100%;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
}

.driver-hero div .driver-hero-title h1 {
	font-size: 80px;
	color: #1c213d;
	text-shadow: 0px 0px 20px #fff5e5;
	margin: 100px 200px;
}

.driver-hero div .driver-hero-box {
	width: 450px;
	background-color: #c9a24673;
	color: #1c213d;
	padding: 20px;
	margin: 100px 100px;
	border-radius: 10px;
	box-shadow: 10px 15px 0px #1c213d;
	height: fit-content;
}

.driver-hero > div > div p strong {
	font-family: "Poppins";
	font-size: 20px;
}

.must-have {
	background-color: #275179;
	padding: 20px;
	color: #fff5e5;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.driver-hero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(../img/1tap-drivers.jpg);
	background-size: cover;
	filter: blur(5px);
	z-index: -1;
}

.must-have button.apply-here {
	width: 150px;
	height: 60px;
	background-color: #fff5e5;
	border-radius: 10px;
	font-family: "Poppins";
	font-weight: 700;
	color: #1c213d;
	border-width: 0px;
	font-size: 20px;
	box-shadow: 10px 15px 0px #1c213d;
	transition: 0.5s ease-in-out;
}

.must-have button.apply-here:hover {
	background-color: #c9a246;
	color: #1c213d;
	box-shadow: -10px 15px 0px #1c213d;
	cursor: pointer;
	transition: 0.5s ease-in-out;
}


.apply {
	padding: 50px;
	display: none;
}

.apply .container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.apply form {
	width: 90%;
	display: block;
}

.apply h2 {
	margin-bottom: 30px;
	font-size: 40px;
}

.apply .form-group {
	margin-bottom: 20px;
	display: inline-flex;
	flex-direction: row;
}

.apply label {
	font-weight: bold;
	margin-right: 10px;
	margin-left: 10px;
	font-family: "Cabin";
	display: inline-flex;
}

.apply input[type="text"],
.apply input[type="tel"],
.apply input[type="email"],
.apply select {
	width: 100%;
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 10px;
}

.apply button[type="submit"] {
	width: 150px;
	height: 60px;
	background-color: #275179;
	border-radius: 10px;
	font-family: "Poppins";
	font-weight: 700;
	color: #1c213d;
	border-width: 0px;
	font-size: 20px;
	box-shadow: 10px 15px 0px #1c213d;
	margin: 0 100px;
	transition: 0.5s ease-in-out;
}

.apply button[type="submit"]:hover {
	background-color: #c9a246;
	color: #1c213d;
	box-shadow: -10px 15px 0px #1c213d;
	cursor: pointer;
	transition: 0.5s ease-in-out;
}

/* Responsive styles */
@media (max-width: 1400px) {
	.driver-hero > div {
		font-size: 60px;
		grid-template-columns: 1fr;
		justify-content: center;
		align-items: center;
		padding: 0 20px; /* Add horizontal padding */
	}

	.driver-hero > div > div {
		width: auto;
		margin: 20px;
	}

	.driver-hero div .driver-hero-title h1 {
		font-size: 40px;
		margin: 10px;
	}

	.driver-hero div .driver-hero-box {
		margin: 10px;
		width: 80%;
		height: auto;
		font-size: 15px;
	}
}

@media (max-width: 750px) {
	.driver-hero div .driver-hero-title h1 {
		display: none;
	}

	.driver-hero > div {
		padding: 20px;
	}

	.must-have {
		margin-top: 0; /* Remove top margin */
	}

	.driver-hero > div > div p strong {
		font-size: 18px;
	}
}

/* About section */

.about-me {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 50vh;
	align-items: center;
}

.about-me .about-title {
	position: relative;
	padding: 10px;
	margin: 10px;
	height: 90%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.about-me .about-title::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(../img/AdobeStock_598451058.jpeg);
	background-size: cover;
	background-position: 50% 50%;
	background-color: #0e0e0e;
	opacity: 0.8; /* Change the opacity value as needed */
	z-index: -1;
	border-radius: 50px;
}


.about-me .about-title h3 {
	font-size: 35px;
	color: #f4f4f4;
	text-shadow: 4px 2px 4px rgb(0 0 0 /30%);
	margin-left: 30px;
}

.about-me .about-content {
	padding: 30px;
	text-align: justify;
}

.future-plans {
	padding: 20px 80px;
	text-align: justify;
}

@media screen and (max-width: 750px) {
	.about-me {
		margin-top: 10%;
		display: block;
		min-height: auto;
	}

	.about-title {
		min-height: 150px;
	}

	.about-content, .future-plans {
		margin-left: 0;
		padding: 0 20px;
	}

	.about-content h2, .future-plans h2 {
		text-align: center;
	}

}

/* Contact Section */

.contact-me {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 50vh;
	align-items: top;
	background-color: #fff5e5;
	padding: 20px;
	
}

.contact-me .contact-title {
	margin-top: 50px;
	padding: 0 20px;
	color: #1c213d;
}

.contact-me .contact-title h2 {
	font-size: 40px;
	text-shadow: 4px 2px 4px rgb(0 0 0 /20%);
}

.contact-me .contact-title p a {
	text-decoration: none;
	font-weight: bold;
}

.contact-me .contact-form {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	max-width: 800px;
	margin: 20px;
}

.contact-me .contact-form form {
	color: #1c213d;
	width: 100%;
	padding: 30px;
	border-radius: 10px;
}
/* row */
.contact-me .contact-form form div {
	min-height: 80px;
	display:flex;
	justify-content:flex-start;
}
/* colunm */
.contact-me .contact-form form div div{
	width: 48%;
}
.contact-me .contact-form form div div select{
	min-height: 45px;
	border: 1px solid #fff5e5;
	border-radius: 5px;
	padding: 10px;
	box-sizing: border-box;
	font-size: 16px;
	background-color: #fff;
	color: #1c213d;
	outline: none;
	transition: border-color 0.3s;
	margin-bottom: 20px;
	font-weight: bold;
	font-family: Poppins, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}

.contact-me .contact-form form div select:focus {
	border-color: #1c213d;
	border-width: 2px;
}

.contact-me .contact-form form div#service-date-container {
	display: none;
}

.contact-me .contact-form form div#service-date-container label,
.contact-me .contact-form form div#service-date-container input {
	display: block;
}

.contact-me .contact-form form div#service-date-container input[type="date"] {
	border: 1px solid #ccc;
	border-radius: 5px;
	padding: 10px;
	width: 50%;
	box-sizing: border-box;
	font-size: 16px;
}
.contact-me .contact-form form label {
	display: block;
	margin-bottom: 10px;
	font-size: 18px;
	font-weight: bold;
	margin-right: 20px;
}

.contact-me .contact-form form input,
.contact-me .contact-form form textarea {
	border: none;
	border-radius: 5px;
	padding: 10px;
	margin-bottom: 20px;
	width: 100%;
	box-sizing: border-box;
	font-size: 16px;
}

.contact-me .contact-form form textarea {
	height: 200px;
}

.contact-me .contact-form form button[type="submit"] {
	width: 150px;
	height: 60px;
	background-color: #c9a246;
	border-radius: 10px;
	font-family: "Poppins";
	font-weight: 700;
	color: #1c213d;
	border-width: 0px;
	font-size: 20px;
	box-shadow: 10px 15px 0px #1c213d;
	/* margin: 0 100px; */
	transition: 0.5s ease-in-out;
}

.contact-me .contact-form form button[type="submit"]:hover {
	box-shadow: -10px 15px 0px #1c213d;
	cursor: pointer;
	transition: 0.5s ease-in-out;
}

@media screen and (max-width: 750px) {
	.contact-me {
		display: block;
	}

	.contact-me .contact-title {
		min-height: 150px;
	}

	.contact-me .contact-title h2 {
		font-size: 30px;
	}

	.contact-me .contact-form form {
		padding: 20px;
		font-size: 14px;
	}
	.contact-me .contact-form form div{
		display: block;
	}

	.contact-me .contact-form form div#service-date-container input[type="date"]{
		min-width: 180px;
	}
}


/* FOOTER */

footer {
	background-color: #1c213d;
	color: #c9a246;
	padding: 20px 0;
	width: 100%;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	position: relative;
}

.social-menu {
	position: absolute;
	bottom: 0;
	right: 0;
}

.social-menu ul {
	list-style: none;
	display: flex;
}

.social-menu li {
	margin-right: 10px;
}

.social-menu li a {
	color: #c9a246;
	font-size: 14px;
	text-decoration: none;
	transition: color 0.3s ease-in-out;
}

.social-menu a:hover {
	color: #000;
}

.text-center {
	text-align: center;
	font-size: 15px;
}

/* Hide content intended just for screen-readers */
.visually-hidden {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important; /* Fix for https://github.com/twbs/bootstrap/issues/25686 */
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}
  