﻿/***** BEGIN RESET *****/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	background: transparent;
	border: 0;
	margin: 0;
	padding: 0;	
}

ol, ul {
	list-style: none;
}

table{border-collapse:collapse; width:100%;}
td{vertical-align:top;}

/* Make HTML 5 elements display block-level for consistent styling */  
header, nav, article, footer, address {  
    display: block;  
} 

/*-------- COLORS --------

*/

/***** END RESET *****/
::-moz-selection {
    background: #000; 
    color: #fff;
    text-shadow: none;
}
::selection {
    background: #000;
    color: #fff;
    text-shadow: none;
}


/* Clearfix */
.cf:before,
.cf:after {
    content: " ";
    display: table;
}
.cf:after {
    clear: both;
}
.cf {
    *zoom: 1;
}

/*-------- BODY STYLES --------*/

body {

}

a:link, a:visited, a:active {text-decoration:none;}
a:hover {text-decoration:none;}


hr{border:#151515 1px solid;}


.mestiza {font-family: "mestiza-sans", sans-serif;}
.poppins {font-family: "poppins", sans-serif;}

.heading1 {font-family: "mestiza-sans", sans-serif;font-weight: 700;text-transform: capitalize;font-size: 60px;line-height: 60px;letter-spacing: 0;text-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;margin-bottom: 1vw;}
.subheading1 {font-family: "poppins", sans-serif;font-weight: 400;font-size: 23px;font-style: italic;}
.heading-lg {font-family: "mestiza-sans", sans-serif;;font-weight: 700;text-transform: capitalize;font-size: 55px;letter-spacing: 1px;line-height: 54px;}
.heading-lg-pop {font-family: "poppins", sans-serif;font-weight: 400;text-transform: capitalize;font-size: 55px;line-height: 54px;text-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;}
.cta-heading {font-family: "poppins", sans-serif;font-weight: 700;text-transform: capitalize;font-size: 20px;letter-spacing: 1px;}
.body {font-family: "poppins", sans-serif;letter-spacing: 1px;line-height: 30px;}


.uppercase {text-transform: uppercase;}
.capitalize {text-transform: capitalize;}
.italic {font-style: italic;}


.black {color: #151515;}
.black-bg {background-color: #151515;}
.not-blk-bg {background-color: #252525;}
.white {color: #fff;}
.white-bg {background-color: #fff;}
.grey {color: #898989;}
.grey-bg {background-color: #D9D9D9;}
.red {color: #E7281C;}
.red-bg {background-color: #E7281C;}


.wid95 {width: 95%;margin: 0 auto;}
.wid90 {width: 90%;margin: 0 auto;}
.wid85 {width: 85%;margin: 0 auto;}
.wid80 {width: 80%;margin: 0 auto;}

.marg-b20 {margin-bottom: 20px;}
.marg-b50 {margin-bottom: 50px;}
.marg-tb20 {margin-bottom: 20px;margin-top: 20px;}
.marg-tb50 {margin-bottom: 50px;margin-top: 50px;}

.padd-tb50 {padding-bottom: 50px;padding-top: 50px;}




/*BUTTONS*/
/* From Uiverse.io by BHARGAVPATEL1244 */ 
.button {
	outline: none;
    cursor: pointer;
    border: none;
    padding: 0.8rem 2rem 0.7rem;
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    position: relative;
    display: inline-block;
    letter-spacing: 0.05rem;
    font-weight: 700;
    font-size: 15px;
    border-radius: 5px;
    overflow: hidden;
    background: #E7281C;
    color: #FFF;
    font-family: "poppins", sans-serif;
    font-weight: 400;
}

.button.blk {background: #E7281C;}
.button.red {background: #151515;}

.button span {
 position: relative;
 z-index: 10;
 transition: color 0.4s;
}

.button:hover span {
 color: #fff;
}

.button::before,
.button::after {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 z-index: 0;
}

.button::before {
 content: "";
 width: 120%;
 left: -10%;
 transform: skew(30deg);
 transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}
.button.blk::before {
 background: #151515;
}
.button.red::before {
 background: #E7281C;
}

.button:hover::before {
 transform: translate3d(100%, 0, 0);
}



a.btn-hvr {
	box-shadow: inset 0 0 0 0 #fff;
	padding: 0.75rem 1rem;
	margin: 0 -.25rem;
	transition: color .3s ease-in-out, box-shadow .3s ease-in-out;
	font-family: "poppins", sans-serif;
	font-weight: 700;
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: 1px;
	position: relative
}
a.btn-hvr:hover {
	color: #fff;
	box-shadow: inset 200px 0 0 0 #E7281C;
}
a.btn-hvr.btn-red {
	background-color: #E7281C;
	color: #fff;
}
a.btn-hvr.btn-red:hover {
	color: #fff;
	background-color:  #B5132E;
}
a.btn-red {
	background-color: #E7281C;
	color: #fff;
}
a.btn-red:hover {
	color: #fff;
	background-color:  #B5132E;
}



a.btn-hvr.white.hero {
	border-left: 3px solid #E7281C;
	background-color: #fff;
	color: #252525;
	font-size: 16px;
	line-height: 1.5;
	text-decoration: none;
	overflow: hidden;
}
a.btn-hvr.white.hero:hover {
	color: #fff;
	box-shadow: inset 400px 0 0 0 #E7281C;
	border-left: 3px solid #E7281C;
	padding-right: 52px;
}
a.btn-hvr.white.hero::after {
	content: "➜";
	position: absolute;
	right: 18px;
	top: 50%;
	transform: translateY(-50%) translateX(-6px);
	opacity: 0;
	transition: all .3s ease;
}
a.btn-hvr.white.hero:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.btn-wrap {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

a.btn-hvr.white.contact {
	border-left: 3px solid #E7281C;
	background-color: transparent;
	color: #fff;
	font-size: 16px;
	line-height: 1.5;
	text-decoration: none;
	overflow: hidden;
}
a.btn-hvr.white.contact:hover {
	color: #fff;
	box-shadow: inset 400px 0 0 0 #E7281C;
	border-left: 3px solid #E7281C;
	padding-right: 52px;
	background-color: #E7281C;
}


/*--- HEADER STYLES ---------------------*/
header {}

.head-wrap {
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    z-index: 999;
    position: relative;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 95%;
    margin: 0 auto;
    position: relative;
    z-index: 999;
}
.head-logo {
    margin: 10px 0;
}
.head-logo a {
    display: flex;
}
.top-bar .wid95 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 14px;
	font-family: "poppins", sans-serif;
}
.top-col {
    display: inline-flex;
    gap: 30px;
}
.top-col.rt a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
	letter-spacing: 1px;
}


/*---BODY--------------------------------*/


.breadcrumbs {
    display: flex;
    font-size: 15px !important;
    color: #403f3b !important;
    padding: 3% 0 2%;
    flex-wrap: wrap;
    align-items: center;
    letter-spacing: 0.05em;
    gap: 10px;
	font-family: "poppins", sans-serif;
}
.breadcrumbs a {
    display: inline-block;
    padding: 12px;
    color: #403f3b;
    font-size: 15px !important;
	font-family: "poppins", sans-serif;
}



.hero-wrap {
    background-size: cover;
	background-repeat: no-repeat;
    background-position: 75% 25%;
    background-color: #151515;
    display: flex;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
    align-items: center;
    width: 100%;
    max-width: 100%;
}
.hero-wrap.home {
	background-image: url("../siteart/hero1.jpg");
    height: 730px;
}
.hero-wrap.main-serv {
	background-image: url("../siteart/main-bg.png");
    height: 645px;
}
.hero-wrap.home::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #151515 0%, /* darkest at bottom */ rgb(0 0 0 / 62%) 30%, rgba(0, 0, 0, 0.4) 60%, rgb(0 0 0 / 35%) 100% /* transparent at top */);
}
.hero-text-wrap {
	margin: 0 10vw;
	z-index: 9;
}
.hero-txt h2 {
    margin-bottom: 20px;
}
.hero-wrap.contact {
	background-image: url("../siteart/spm-tractor-contact.jpg");
    height: 450px;
}
.hero-wrap.contact::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}


.hero-cta-wrap {
    display: flex;
	border-radius: 3px;
	width: 90%;
}
.hero-cta {
    flex: 1;
}
.hero-cta:not(:last-child) {
    border-right: 2px solid #fff; /* white vertical line */
}
/* vertical divider */
/*
.hero-cta:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 50px;         
    width: 2px;
    background: #fff;
}
*/
.cta {
    padding: 20px;
	transition: .25s ease all;
}
.cta p.mestiza {
    font-size: 25px;
    font-weight: 600;
	line-height: 25px;
}
.cta i {
    position: relative;
    display: flex;
    justify-self: right;
	font-size: 35px;
}
.cta p.poppins {
    line-height: 20px;
    margin-top: 5px;
    font-size: 20px;
    letter-spacing: 1px;
}
.cta:hover {
    background-color: #B7140B;
}


.card-btns {
	position: relative;
	z-index: 9;
}
.card-btns .wid90 {
    display: flex;
    gap: 20px;
    margin-top: -50px;
    margin-bottom: 75px;
}
.card {
    height: 650px;
    border-radius: 10px;
    background-size: cover;
	background-position: center;
    box-sizing: border-box;
	position: relative;
    padding: 1.8rem;
    border: 2px solid #c3c6ce;
    transition: 0.5s ease-out;
    overflow: visible;
    flex: 1;
}
.red-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}
/* hover effect */
.card:hover .red-overlay {
  opacity: .80;
}
.card-details {
 color: #fff;
 height: 100%;
 gap: .5em;
 display: grid;
 place-content: center;
 position: relative;
 z-index: 5;
}
.card-button {
 transform: translate(-50%, 125%);
 width: 60%;
 border-radius: 3px;
 border: none;
 background-color: #E7281C;
 color: #fff;
 padding: 1rem 1rem;
 position: absolute;
 left: 50%;
 bottom: 0;
 opacity: 0;
 transition: 0.3s ease-out;
 z-index: 10;
	letter-spacing: 1px;
    line-height: 30px;
    font-size: 18px;
}
/*Text*/
.text-title {
 font-size: 40px;
 font-weight: 600;
 text-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
 text-align: center;
}
/*Hover*/
.card:hover {
 border-color: #E7281C;
 box-shadow: 0 4px 18px 0 rgba(0, 0, 0, 0.25);
 border-radius: 10px;
}
.card:hover .card-button {
 transform: translate(-50%, 50%);
 opacity: 1;
}
/**/
.card.tele {
	background-image: url("../siteart/telehandler.jpg");
}
.card.frk-lift {
	background-image: url("../siteart/forklift.jpg");
}
.card.boom-lift {
	background-image: url("../siteart/boomlift.png");
}
.card.scis-lift {
	background-image: url("../siteart/scissorlift.jpg");
}


section.home.about-wrap {
    margin-top: 120px;
	margin-bottom: 120px;
}
.home.about-wrap {
    display: flex;
	align-items: flex-end;
	gap: 42px;
	position: relative;
    z-index: 999;
}
.col {flex: 1;}
.col.lf h2.heading-lg {
    margin-bottom: 50px;
	margin-top: 10px;
}



section.hero-wrap.main-serv {
    text-align: center;
}
.main-serv p.body {
    width: 65%;
	margin: 25px auto;
	text-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}



/*contact page*/

.home-aside-wrap {
    z-index: 10;
    position: relative;
	margin: 100px auto;
}
.home-aside-wrap .wid90 {
    display: flex;
    justify-content: space-between;
    align-items: center;
	gap: 100px;
}
.contact.home-aside-wrap .wid90 {
    align-items: flex-start;
}
.aside-ctas {
    display: flex;
    flex-direction: column;
    flex: 2;
    gap: 20px;
}
.inv-cta {
    display: flex;
}
.inv-cta a {
	padding: 20px 40px;
    transition: .2s ease-in-out;
    background-color: transparent;
    color: #000;
    font-family: "poppins", sans-serif;
    text-transform: uppercase;
    font-size: 23px;
    letter-spacing: 1px;
    display: flex;
    border: 1px solid #000;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 2vw;
	font-weight: 900;
}
.inv-cta a:hover {
	letter-spacing: 2px;
}
.contact-cta {
    display: flex;
}
.contact-cta.white-bg a {
	padding: 40px;
    transition: .2s ease-in-out;
    background-color: transparent;
    color: #000;
    font-family: "poppins", sans-serif;
    font-size: 23px;
    letter-spacing: 1px;
    display: flex;
    border: 1px solid #000;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 2vw;
	font-weight: 700;
}
.contact-cta a:hover {
	letter-spacing: 2px;
}
.contact-cta.red-bg.white a{
    padding: 40px;
    transition: .2s ease-in-out;
    font-family: "poppins", sans-serif;
    text-transform: capitalize;
    font-size: 23px;
    letter-spacing: 1px;
    display: flex;
    border: 1px solid #E7281C;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 2vw;
	color: #fff;
	font-weight: 700;
}

.contact-cta.blue-bg a:hover {
	letter-spacing: 2px;
}
.aside-about {
    flex: 4;
}
.aside-about h3 {
    margin-bottom: 20px;
}
.aside2-wrap {
	display: flex;
}
.aside2-left {
	background-image: url("../siteart/contact-bg.jpg");
    height: 600px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #fff;
    display: flex;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
    align-items: center;
    width: 100%;
    max-width: 100%;
	flex: 1;
}
.aside2-right {
	flex: 1;
	display: flex;
}
.rt-rt {
	flex: 1;
}
.rt-lf {
	background-image: url("../siteart/cta-contact-bg.png");
    height: 400px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #fff;
    display: flex;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
    align-items: center;
    width: 100%;
    max-width: 100%;
	flex: 1;
}
.rt-rt, .rt-lf {
    display: flex;
    align-items: center;
    justify-content: center;
	padding: 2vw;
}
.box-cta {
    text-align: center;
    display: block;
}
.box-cta h4 {
    margin: 5vw auto;
}



/*--------FORM STYLES--------------------*/

form.custom-form .flex {
    width: 100%;
	gap: 20px;
	display: flex;
}
.custom-form label {
    font-family: "poppins", sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 1px;
	width: 100%;
}
.flex input {
	width: 100%;
    display: flex;
    flex-direction: column;
    margin: 10px 0;
    text-align: left;
    font-family: "poppins", sans-serif;
    padding: 15px 0 15px 5px;
    background-color: #eaeaea;
	border-bottom: 1px solid #ACACAC;
    border-top: none;
    border-left: none;
    border-right: none;
}

textarea#message {
	padding: 15px 10px;
    width: 100%;
	font-family: "poppins", sans-serif;
    color: #000;
    font-size: 16px;
    margin-top: 5px;
	box-sizing: border-box;
	border-bottom: 1px solid #ACACAC;
	background-color: #eaeaea;
    border-top: none;
    border-left: none;
    border-right: none;
	
}

.CaptchaPanel {
    text-align: left!important;
}
.CaptchaWhatsThisPanel a {
	font-family: "poppins", sans-serif;
	color: #061A87;
}
.CaptchaMessagePanel,.CaptchaWhatsThisPanel {
	font-family: "poppins", sans-serif;
	font-size: 15px;
}
input#CaptchaAnswer {
    border-radius: 0;
    display: flex;
    flex-direction: column;
    margin: 10px 0;
    text-align: left;
    font-family: "poppins", sans-serif;
    padding: 15px;
    background-color: #eaeaea;
	border-bottom: 1px solid #ACACAC;
    border-top: none;
    border-left: none;
    border-right: none;
}
button.cta-blue {
    border: none;
    color: #fff;
    background-color: #020070;
    padding: 20px 25px;
    border-radius: 30px;
    font-family: "poppins", sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-transform: capitalize;
    letter-spacing: 1px;
    line-height: 16px;
	cursor: pointer;
}
input.cta-blue {
    border: none;
    cursor: pointer;
    padding: 12px 40px;
    transition: .2s ease-in-out;
    background-color: #358FFC;
    color: #fff;
    font-family: "poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
    text-transform: capitalize;
    font-size: 16px;
    letter-spacing: 1px;
    display: ruby-text;
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
}




/*-------- FOOTER STYLES ----------------*/
footer{}

.foot {
    position: relative;
	background-color: #000;
}
.transition {
    position: absolute;
    top: 0;
    width: 100%;
    margin-top: -6vw;
    z-index: 10;
}
.transition img {
    width: 100%;
}
.foot .wid90 {
    padding-top: 80px;
    padding-bottom: 80px;
}
.foot-logo img {
    width: 100%;
}
.foot-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
	flex-wrap: wrap;
    border-bottom: 1px solid #E7281C;
}
.foot-phone {
    font-size: 40px;
    font-weight: 600;
    letter-spacing: 2px;
}
.foot-phone i {
    font-size: 28px;
	margin-right: 15px;
}
.foot-bot ul {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
	margin-top: 50px;
	gap: 30px;
}


/*----INVENTORY STYLES - KEEP AT BOTTOM OF CSS----*/







/*---------- RESPONSIVE STYLES ----------*/

@media only screen and (min-width: 768px) {
	
}

@media only screen and (min-width:768px) and (max-width: 1130px) {
	
}

@media (max-width: 1600px) {
	.col.lf br {
		display: none;
	}
}
@media (max-width: 1380px) {
	.wid80 {width: 90%;}
	.heading-lg {
		font-size: 40px;
		line-height: 43px;
	}
	.col.lf {
		display: flex;
		justify-content: space-between;
		align-items: flex-end;
/*		column: 50px;*/
	}
	.about-head {flex: 1;margin-right: 20px;}
	.col.lf h2.heading-lg {margin-bottom: 0;}
	.col.rt p {margin: 50px 0;}
	.home.about-wrap {display: block;}
	.btn-wrap {display: -webkit-box;}
	.home-aside-wrap .wid90 {flex-direction: column;}
	.aside-ctas {width: 100%;}
	.aside-about.contact {width: 100%;}
}
@media (max-width: 1250px) {
	.card-btns  {
        margin: 0;
        padding: 75px 0;
        background-color: #151515;
        width: 100%;
		gap: 30px;
	}
	.card-btns .wid90 {
		flex-direction: column;
		gap: 40px;
		margin-top: 0;
	}
	.card-button {padding: .5rem 1rem}
	.card {padding: 6.8rem}
}
@media (max-width: 1100px) {
	.head-logo {padding-left: 22px;}
}
@media (max-width: 992px)  {
	.hero-wrap.home {height: 600px;}
	.hero-text-wrap {bottom: 25%;}
	section.contact-deets {flex-direction: column;flex-wrap: wrap;margin-bottom: 0;}
	.loc-aside {display: flex;gap: 0 7vw;flex-wrap: wrap;}
	.ft-links {display: flex;flex-wrap: wrap;}
	a.btn-grey {font-size: 18px!important;}
	.feature-section {display: grid!important;grid-template-columns: repeat(2, 1fr)!important;}
	.feature-box {border-bottom: 2px solid #ffffff54;}
	.heading-lg {font-size: 40px;line-height: 38px;}
	section.contact-deets .con-col.rt {margin-bottom: 50px;}
	.col.lf {flex-direction: column;align-items: flex-start;}
	.col.lf h2.heading-lg {margin-bottom: 25px;}
	.btn-wrap {display: flex;}
	.heading1 {font-size: 45px;line-height: 45px;}
	.subheading1 {font-size: 18px;}
	.hero-cta-wrap {flex-direction: column;}
	.cta p.poppins {font-size: 18px;}
	.cta {
		display: flex;
		align-items: center;
		padding: 15px 15px 15px 20px;
	}
	.cta div {
		display: flex;
		font-size: 18px !important;
		gap: 10px;
	}
	.cta p.mestiza {font-size: 18px;}
	.cta i {
		margin-right: 30px;
		font-size: 20px;
	}
	.hero-cta:not(:last-child) {
		border-right: none;
		border-bottom: 2px solid #fff; /* white vertical line */
	}
}
@media (max-width: 900px) {
	.home.about-wrap {display: block;flex-direction: column;gap: 75px;}
	.col.rt p {margin-top: 50px;}
	.about-txt h2 {margin-right: 0;}
	.hero-wrap.main-serv h3 {
		font-size: 35px;
		line-height: 38px;
	}
}
@media (max-width: 768px) {
	.heading1 br {display: none}
	.cta-heading {font-size: 16px !important;}
	a.btn-hvr {font-size: 16px !important;}
	.hero-text-wrap {bottom: 35%;}
	.body {
		line-height: 25px;
	}
	.main-serv p.body {
		width: 100%;
	}
	.text-title {font-size: 30px;}
}
@media (max-width: 600px) {
	.head-contact {display: none;}
	.foot {flex-direction: column-reverse;}
	.ft-links {justify-content: center;}
	.icon-area img {max-height: 50px;}
	.con-col.lf.blue-bg {min-width: auto;}
	.foot-top {flex-direction: column-reverse;}
	.foot-phone {font-size: 30px;}
	.foot-bot ul {flex-direction: column;}
	.foot-top {border-bottom: none;}
	form.custom-form .flex {display: block;}
	.contact-cta.red-bg.white a, .contact-cta.white-bg a {font-size: 16px;padding: 40px 10px;letter-spacing: 0;    flex-direction: column;}
	.cta i {display: none;}
	.cta p {font-size: 16px !important;}
	.heading1 {
        font-size: 30px;
        line-height: 32px;
        margin-bottom: 15px;
    }
	.heading-lg {
        font-size: 25px;
        line-height: 30px;
    }
	.hero-cta-wrap {width: 100%;}
	.hero-text-wrap {margin: 0 7vw;}
	.hero-txt .subheading1 {
        font-size: 16px;
        line-height: 20px;
    }
}
@media (max-width: 500px) {
	.top-col.rt a span {display: none;}
}
@media (max-width: 400px) {
	.contact-cta.red-bg.white a, .contact-cta.white-bg a {font-size: 15px;}
	.foot-phone {font-size: 25px; padding: 20px 0;}
	.foot-phone i {font-size: 20px;}
}




