a {
	color: #326bae;
	text-decoration: none;
	transition: all 250ms ease-in-out;
}
a:hover, a:focus {
	color: #212122;
	outline: none;
	text-decoration: none;
}



/*  ~~~~~~~~~~~~~~~~~~~~~~  Styles for the header logo  ~~~~~~~~~~~~~~~~~~~  */
.header-logo img {
	width: 100%;
	height: auto;
	max-width: 266px;
}
@media (max-width: 991px) {
	.header-logo img {
		max-width: 115px;
	}
}


/*  ~~~~~~~~~~~~~~~~~~~~~~  Header links  ~~~~~~~~~~~~~~~~~~~  */
.header-info-links a {
	font-family: 'Manrope', sans-serif;
	text-transform: uppercase;
	color: #212122;
	font-weight: 600;
	font-size: calc(.8rem + .1vw);
	letter-spacing: .005em;
	transition: all 250ms ease-in-out;
}
.header-info-links:hover a {
	color: #326bae;
}



/*  ~~~~~~~~~~~~~~~~~~~~~~~~  Button styles  ~~~~~~~~~~~~~~~~~~~~~  */
.btn-slide {
	font-family: 'Fira Sans', sans-serif;
	font-size: calc(.87rem + .2vw) !important;
	font-weight: 700 !important;
	letter-spacing: .01em;
	word-spacing: 0.125em;
	line-height: calc(.55rem + .7vw);
	background: #ff5f57;
	color: #fff;
	text-transform: uppercase;
	border-width: 2px;
	border-radius: 0;
	border-color: #212122 !important;
	padding: 14px 10px;
	position: relative;
	z-index: 1;
	overflow: hidden;
	box-shadow: 0 2px 8px 1px rgba(0,0,0,.25) !important;
	outline: none  !important;
	transition: all 0.2s;
}
.btn-slide:hover {
	color: #212122;
	cursor: pointer;
}
.btn-slide::after {
	content: "";
	background: #fff133;
	position: absolute;
	z-index: -1;
	padding: 14px 10px;
	display: block;
}
.btn-slide[class^="slide"]::after {
	transition: all 0.2s;
}
.btn-slide[class^="slide"]:hover::after {
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	transition: all 0.25s;
}
.btn-slide.slide_from_left::after {
	top: 0;
	bottom: 0;
	left: -100%;
	right: 100%;
}

