@charset "utf-8"; 
/* Rob's Rentals */


/* colors */

:root {
  --red: #a02c39;
  --teal: #3e8c96;
  --blue: #005679;
  --orange: #e88732;
  --gray: #ececec;
}


/* fonts */

@font-face {
    font-family: poppins;
    src: url('fonts/Poppins-Regular.woff2') format('woff2'),
        url('fonts/Poppins-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: poppins;
    src: url('fonts/Poppins-Italic.woff2') format('woff2'),
        url('fonts/Poppins-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: poppins;
    src: url('fonts/Poppins-Bold.woff2') format('woff2'),
        url('fonts/Poppins-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: poppins;
    src: url('fonts/Poppins-SemiBold.woff2') format('woff2'),
        url('fonts/Poppins-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Fira Sans';
    src: url('fonts/FiraSans-Italic.woff2') format('woff2'),
        url('fonts/FiraSans-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}


@font-face {
    font-family: 'Fira Sans';
    src: url('fonts/FiraSans-Regular.woff2') format('woff2'),
        url('fonts/FiraSans-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Fira Sans';
    src: url('fonts/FiraSans-Bold.woff2') format('woff2'),
        url('fonts/FiraSans-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/* base */

html, body {
	padding:0;
	margin:0;
}

html {
	height:100%;
	padding-bottom:1px;
}

* {
	box-sizing: border-box;
}

.clearboth {
	clear:both;
}

a:focus {
	outline:none;
}

a:hover img {
	opacity:0.8;
	filter:alpha(opacity=80);
}

.videooverlay {
	display:none;
	position:fixed;
	top:0;
	bottom:auto;
	right:auto;
	left:0;
	width:100%;
	height:99%;
	padding:1% 0 0 0;
	margin:0;
	text-align:center;
	z-index:9999;
	background:rgba(0,0,0,0.9);
	line-height:1.9em;
	border:none;
}

.closeoverlay {
	position:absolute;
	display:block;
	top:2%;
	bottom:auto;
	left:2%;
	right:auto;
}

.closeoverlay a {
	font-size:1.6em;
	font-weight:bold;
	color:#fff !important;
}

.closeoverlay a:hover {
	color:#eee;
	text-decoration:underline;
}

.videowrapper {
	display:block;
	margin:4em auto 0 auto;
	width:75%;
	height:auto;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px; height: 0; overflow: hidden;
}
 
.video-container iframe,
.video-container object,
.video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	border:0;
}

.img100 {
	width:100%;
}


.centertext {
	text-align: center;
}

/* Mobile Layout */

.showdt, .showdt_inline {
	display: none;
}

body {
	background:var(--gray);
	color:#000;
	font-family: poppins, sans-serif;
	font-size: calc(22px + (24 - 16) * ((100vw - 600px) / (2000 - 600)));
}

a {
	color:#000;
	text-decoration:underline;
}

a:hover {
	color:var(--orange);
	text-decoration:underline;
}

a:visited {
	color:#000;
	text-decoration:underline;
}

.formcell, .formarea {
	display:block;
	width:100%;
	margin:0 0 .2em 0;
	padding:.4em;
	border:none;
	background:#fff;
}


.formarea {
	display:block;
	width:100%;
}


.formbutton {
	display:block;
	border:none;
	background:var(--orange);
	padding:.6em 1.8em;
	font-size:1em;
	color:#fff !important;
	text-align: center;
	text-decoration: none;
	font-weight: bold;
}

.formbutton:hover {
	background: var(--blue);
	text-decoration: none !important;
}

.formbutton_inline {
	display: inline-block;
}

.formbutton img {
	display: inline-block;
	width: 2em;
	margin: 0 .6em 0 0;
}



input::placeholder, textarea::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #000;
  opacity: .7;
}

h1 {
	font-size: 1.6em;
	color:var(--orange);
	text-transform: uppercase;
}

h1 span {
	color:var(--teal);
}

h2 {
	font-size: 1.3em;
}

header {
	position: relative;
	width: 100%;
	background: #000;
}

.headerflex {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1em 5%;
}

.toplogo {
	display: block;
	width: 18%;
}

.menutog {
	width: 12%;
}

.headerphone {
	color: #fff;
	text-decoration: none;
	font-weight: 600;
}

.headerphone:hover {
	text-decoration: none;
}


nav {
	display: none;
}

.menu_main {
	position: absolute;
	left: 0;
	top:100%;
	width: 100%;
	margin: 0;
	padding: 1em;
	background: #000;
	color:#fff;
	text-align: center;
	z-index: 1200;
}

.menu_main li {
	margin: .6em 0;
}

.menu_main a {
	display: block;
	width: 100%;
	padding: .6em 0;
	color:#fff;
	text-decoration: none;
}

.menu_main a:hover {
	background: var(--orange);
	color:#fff;
	text-decoration: none;
}

main {
	width: 100%;
	min-height: 60vh;
	padding: 1em 5%;
}

.xid_home main {
	padding: 0;
}

.slick-slide {
    margin-right: .4em; /* Adjust this value as needed */
}


footer {
	margin: 1em 0 0 0;
	padding: 1em 5%;
	background: var(--blue);
	color:#fff;
	text-align: center;
	width: 100%;
}

footer a {
	color:#fff !important;
	text-decoration: none;
}

.footerpin {
	display: inline-block;
	width: 1.2em;
}

.footicons {
	display: flex;
	justify-content: space-between;
	width: 60%;
	margin: 1em auto;
	padding: 0;
}

.footicons li {
	display: block;
	width: 20%;
	margin:0;
	padding: 0;
}

.footicons li img {
	display: block;
	width: 100%;
}

/* home */

.homecol1 {
	padding: 1em 5% 2em 5%;
	text-align: center;
}

.homelogo {
	display: block;
	width: 80%;
	margin: 1em auto;
}

.persimg {
	display: block;
	width: 100%;
	margin: 0 0 1em 0;
}

/* Tablet Layout: 481px to 768px. Inherits styles from: Mobile Layout. */

@media only screen and (min-width: 481px) {

}

/* Desktop Layout: 769px to a max of 1232px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 769px) {

body {
	font-size: calc(.7vw + .7vh + .4vmin);	
}

.showmob {
	display: none;
}

.showdt {
	display: block;
}

.showdt_inline {
	display: inline-block;
}


.headerflex {
	max-width: 1200px;
	margin: 0 auto;
	padding: 1em 0;
}

.toplogo {
	display: block;
	width: 10%;
}

.headerphone {
	font-size: 1.2em;
}

.menutog {
	width: 4%;
}

main {
	max-width: 1200px;
	min-height: 60vh;
	margin: 0 auto;
	padding: 1em 5%;
}

.menu_main {
	position: absolute;
	left:50%;
	transform: translateX(-50%);
	top:100%;
	width: 100%;
	max-width: 1200px;
	margin: 0;
	padding: 1em;
	background: #000;
	color:#fff;
	text-align: center;
}

.homelogo {
	display: block;
	width: 40%;
	margin: 1em auto;
}

.footercontent {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

.footicons {
	width: 30%;
}

.footicons li {
	display: block;
	width: 15%;
	margin:0;
	padding: 0;
}

.persimg {
	display: block;
	float: left;
	width: 30%;
	margin: 0 2em 1em 0;
}



}