/* 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;
  list-style: none;
}
img {
  max-width: 100%;
  image-rendering: -webkit-optimize-contrast;
}
.cf {
  zoom: 1;
}
.cf:before,
.cf:after {
  content: "";
  display: table;
}
.cf:after {
  clear: both;
}
.clear {
  clear: both;
}
*,
*:before,
*:after {
  box-sizing: border-box;
}

html,
body {
  font-family: "Source Sans 3", sans-serif;
  font-size: 18px;
  line-height: 1.5;
  height: 100%;
  width: 100%;
}

.main {
  padding: 75px 0;
}
.wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.black-bg {
  background: #000;
  color: #ffc80c;
}

.dark-bg {
  background: #363636;
  color: #fff;
}
.dark-bg .wrap {
  padding-left: 30px;
  border-left: 10px #ffc80c solid;
}

.overlay {
  position: relative;
}
.overlay:after {
  position: absolute;
  content: "";
  background: rgba(0, 0, 0, 0.7);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.overlay div {
  position: relative;
  z-index: 9;
}

.flex-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 50px;
}
.flex-row .flex-col {
  flex: 1;
}
.col-4 {
  max-width: 33.3333%;
}
.col-3 {
  max-width: 25%;
}

.step-row {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  color: #666;
}
.step-row .step-number {
  font-size: 72px;
  font-weight: 700;
  line-height: 1;
  color: #000;
  border-bottom: 5px #ffc80c solid;
}
.step-row .step-text {
  flex: 1;
}
.step-row .step-text strong {
  color: #000;
}

.icon-row {
  display: flex;
  margin: 8px 0;
}
.icon-row i {
  position: relative;
  top: 6px;
  margin-right: 15px;
  font-size: 14px;
  color: #ffc80c;
}
.icon-row a:hover {
  text-decoration: underline;
}

.hours-row {
  display: flex;
}
.hours-row .hours-col:first-child {
  width: 150px;
  font-weight: 700;
}
.hours-row .hours-col:last-child {
  flex: 1;
  text-align: right;
}

/* TYPOGRAPHY */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  line-height: 1.25;
}
p {
  font-size: 18px;
}
a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
a:hover {
  color: inherit;
}
.bold {
  font-weight: 700;
}
.more-text {
  display: none;
}

.arrow-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.arrow-list li {
  width: calc(50% - 10px);
  font-size: 18px;
  font-weight: 700;
}
.arrow-list li:before {
  margin-right: 10px;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f061";
  color: #ffc80c;
}
.arrow-list li a:hover {
  text-decoration: underline;
}
.arrow-list li ul li {
  width: 100%;
}

.bullet-list li {
  margin-left: 15px;
  list-style: disc;
}

.social ul {
  display: flex;
  align-items: center;
  gap: 0 15px;
}
.social ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  width: 30px;
  height: 30px;
  color: #000;
  border-radius: 50px;
}
.social ul li a:hover {
  background: #ffc80c;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 240px;
  padding: 18px;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  line-height: 1.25;
  color: #333;
  border: 1px #ddd solid;
  box-shadow: 2px 2px 3px #ccc;
}
.btn:hover {
  background: #333;
  color: #fff;
  border: 1px #fff solid;
}
.btn-container {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0 10px;
}
.btn-container .btn {
  width: 240px;
}
.block-btn {
  max-width: 100%;
}
.inline-btn {
  display: inline-flex;
  padding: 12px 35px;
}

/* HEADER */

.header-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
.header-container.scroll .top-header {
  display: none;
}
.header-container.scroll .bottom-header {
  background: #000;
}

.top-header {
  background: linear-gradient(
    to right,
    rgba(85, 85, 85, 0) 0%,
    rgba(53, 53, 53, 0.65) 100%
  );
  padding: 10px 0;
}
.top-header .wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0 10px;
}
.top-header .top-nav ul {
  display: flex;
  align-items: center;
}
.top-header .top-nav ul li {
  border-right: 1px #fff solid;
}
.top-header .top-nav ul li:last-child {
  border-right: none;
}
.top-header .top-nav ul li a {
  display: block;
  padding: 0 25px;
  font-size: 12px;
  text-transform: uppercase;
  color: #fff;
}
.top-header .top-nav ul li a.active {
  color: #ffc80c;
}
.top-header .top-nav ul li a:hover {
  color: #ffc80c;
}

.bottom-header .wrap {
  display: flex;
  align-items: center;
  max-width: 1700px;
}
.bottom-header .logo {
  width: 171px;
}
.bottom-header nav {
  margin-left: auto;
}

/* NAVIGATION */

nav.primary {
  display: block;
  width: 100%;
  z-index: 999;
}
nav.primary ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  margin: 0;
  padding: 0;
}
nav.primary ul li i {
  font-size: 10px;
}
nav.primary ul li a {
  display: block;
  max-width: 210px;
  padding: 50px 20px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.25;
  color: #fff;
  transition: 0.2s ease-in;
}
nav.primary ul li a.active {
  color: #ffc80c;
}
nav.primary ul li:hover > a {
  color: #ffc80c;
}

nav.primary ul li:hover > ul {
  left: 0;
}
nav.primary ul ul {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: -9999px;
  background: #fff;
  width: 100%;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.1);
}
nav.primary ul ul li {
  display: block;
  position: relative;
  float: none;
  margin: 0;
  font-size: 12px;
}

nav.primary ul ul:before {
  display: block;
  content: "";
  position: absolute;
  left: 50%;
  top: -20px;
  width: 0;
  height: 0;
  border-left: 32px solid transparent;
  border-right: 32px solid transparent;
  border-bottom: 20px solid #fff;
}
nav.primary ul ul li a {
  padding: 50px 35px;
  font-size: 14px;
  font-weight: 400;
  color: #000;
}
nav.primary ul ul li:hover > a {
  color: #b12a1c;
}
nav.primary ul ul li a img {
  display: block;
  width: 115px;
  height: 115px;
  margin: 0 auto 15px;
  border-radius: 50%;
  border: 5px #ffc80c solid;
}

#cssmenu #menu-button {
  display: none;
  background: #ffc80c;
  padding: 15px 20px;
  font-size: 12px;
  text-transform: uppercase;
  text-align: left;
  color: #fff;
  cursor: pointer;
}
#cssmenu #menu-button:after {
  margin-left: auto;
  font-family: "Font Awesome 6 Free";
  font-size: 16px;
  font-weight: 900;
  content: "\f0c9";
}
#cssmenu #menu-button.menu-opened:after {
  content: "\f00d";
}

/* HOME */

.carousel {
  background: #000;
  border-bottom: 2px #ffc80c solid;
}
.carousel-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 675px;
  overflow: hidden;
}
.carousel-cell-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-content {
  display: flex;
  flex-wrap: wrap;
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  padding: 100px 25px;
}
.carousel-content .carousel-content-inner {
  max-width: 900px;
  margin: auto;
  font-size: 18px;
  text-align: center;
  text-shadow: rgba(0, 0, 0, 0.25) 1px 5px 4.75px;
  color: #fff;
}
.carousel-content .carousel-content-inner strong {
  display: block;
  font-size: 90px;
  text-transform: uppercase;
  line-height: 1;
}
.carousel-content .carousel-content-inner p {
  font-size: 48px;
  line-height: 1.25;
}

.carousel .flickity-prev-next-button {
  background: none;
  width: 35px;
  height: 35px;
  color: #ffc80c;
  transition: all 0.2s ease-in-out;
}
.carousel .flickity-prev-next-button:hover {
  background: none;
  color: #fff;
}
.carousel .flickity-page-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 25px;
}
.carousel .flickity-page-dots .dot {
  background: rgba(255, 198, 12, 0.5);
  width: 12px;
  height: 12px;
  margin: 0 5px;
  opacity: 1;
}
.carousel .flickity-page-dots .dot.is-selected {
  background: #ffc80c;
  width: 16px;
  height: 16px;
}

.rental-section {
  background: #000 url(../siteart/bg-rentals.jpg) fixed center center no-repeat;
  background-size: cover;
  padding: 200px 0;
  text-align: center;
  color: #fff;
}
.rental-section h2 {
  margin-bottom: 25px;
  font-size: 60px;
  font-weight: 400;
}
.rental-section h2 span {
  display: block;
  font-size: 24px;
}
.rental-section h3 {
  font-size: 40px;
}
.rental-section p {
  margin: 15px 0 50px;
}
.rental-section .btn {
  margin: auto;
  color: #fff;
  border: 1px #fff solid;
  box-shadow: 2px 2px 3px #e6e6e6;
}
.rental-section .btn:hover {
  background: #fff;
  color: #ffc80c;
  border: 1px #000 solid;
}
.rental-section .more-text {
  margin-bottom: 15px;
}
.rental-section .flex-row {
  text-align: left;
}
.rental-section .flex-row h3 {
  font-size: 24px;
  font-weight: 700;
  color: #ffc80c;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
}
.card-container .card {
  flex: 1;
  position: relative;
  margin: 5px;
  border-top: 5px #ffc80c solid;
  overflow: hidden;
}
.card-container .card img {
  display: block;
  width: 100%;
  transition: all 0.2s ease;
}
.card-container .card .content {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  padding: 20px;
  font-size: 22px;
  text-transform: uppercase;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
  color: #fff;
  transition: all 0.1s ease;
  z-index: 10;
}
.card-container .card .content:after {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #ffc80c;
  content: "\f061";
}
.card-container .card:hover img {
  transform: scale(1.15);
}

.card-container.alt {
  justify-content: center;
}
.card-container.alt .card {
  flex: none;
  width: calc(33.3333% - 10px);
}

.faq-section {
  background: #000 url(../siteart/banner-rentals.jpg) center center no-repeat;
  background-size: cover;
  color: #fff;
  border-top: 5px #ffc80c solid;
}
.faq-section .banner-head {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 20px;
  text-align: center;
  text-transform: uppercase;
  border-bottom: 1px rgba(255, 255, 255, 0.15) solid;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
.faq-section .banner-head h2 {
  font-size: 48px;
}
.faq-section .banner-head:hover {
  background: rgba(0, 0, 0, 0.5);
}
.faq-section .banner-head:after {
  margin-left: 15px;
  font-family: "Font Awesome 6 Free";
  font-size: 24px;
  font-weight: 900;
  color: #ffc80c;
  content: "\f061";
}
.faq-section .banner-head.active:after {
  content: "\f063";
}
.faq-section .banner-body {
  display: none;
  padding: 50px 0;
}

.faq-section .accordion {
  margin-bottom: 15px;
}
.faq-section .accordion .accordion-head {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.45);
  padding: 18px 50px;
  border: 1px #fff solid;
  border-radius: 5px;
  cursor: pointer;
}
.faq-section .accordion .accordion-head h3 {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
}
.faq-section .accordion .accordion-head:after {
  margin-left: auto;
  font-family: "Font Awesome 6 Free";
  font-size: 14px;
  font-weight: 900;
  color: #ffc80c;
  content: "\f107";
}
.faq-section .accordion .accordion-body {
  display: none;
  padding: 30px 50px 15px 50px;
}
.faq-section .accordion .accordion-body a {
  color: #ffc80c;
}
.faq-section .accordion .accordion-body .bullet-list {
  margin: 15px 0;
}
.faq-section .accordion.active .accordion-head:after {
  content: "\f106";
}

.service-section {
  background: #fff url(../siteart/home-cat.png) bottom right no-repeat;
  padding: 200px 0;
}
.service-section h2 {
  font-size: 60px;
  line-height: 1;
}
.service-section h2 strong {
  display: block;
}
.service-section .arrow-list {
  max-width: 500px;
  margin-top: 50px;
}

.pipeline-media {
  margin-top: 50px;
  align-items: flex-start;
}
.pipeline-media video {
  display: block;
  width: 100%;
  border: 2px #ffc80c solid;
}
.pipeline-media .carousel {
  border: 2px #ffc80c solid;
}
.pipeline-media .carousel-cell {
  height: 368px;
}
.pipeline-media .carousel .flickity-page-dots {
  bottom: -35px;
}

/* SUB-PAGES */

.rental-bg {
  background: url(../siteart/bg-sub.png) bottom right no-repeat;
	background-color:#fff;
}

.page-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 400px;
  padding: 200px 20px 50px;
  text-align: center;
  color: #fff;
}
.page-banner.overlay:after {
  background: linear-gradient(
    0deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(0, 0, 0, 0.75) 60%
  );
}
.page-banner h1 {
  font-size: 64px;
  font-weight: 700;
  text-transform: uppercase;
  text-shadow: 0 3px 2px #000;
  line-height: 1;
}
.small-banner {
  min-height: 200px;
  padding: 0;
}

.gallery {
  display: flex;
  width: 100%;
}
.gallery .gallery-img {
  flex: 1;
}
.gallery .gallery-img img {
  display: block;
  width: 100%;
}

.contact-container {
  display: flex;
  justify-content: left;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 25px;
}
.contact-container .contact {
  display: block;
  width: calc(50% - 10px);
  padding: 15px;
  border: 1px #ddd solid;
}
.contact-container .contact a {
  color: #ffc80c;
  overflow-wrap: break-word;
}

.contact-box {
  display: flex;
  flex-wrap: wrap;
  background: #f1f1f1;
  margin-bottom: 35px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.28);
}
.contact-box h3 {
  margin-bottom: 15px;
  font-weight: 700;
}
.contact-box .contact-info {
  width: 25%;
  padding: 30px;
}
.contact-box .contact-map {
  width: 50%;
}
.contact-box .contact-map iframe {
  display: block;
  width: 100%;
}
.contact-box .contact-hours {
  width: 25%;
  padding: 30px;
}
.contact-mini-box {
  display: block;
  background: #f1f1f1;
  padding: 30px;
}
.contact-mini-box .btn {
  max-width: 100%;
  box-shadow: none;
  border: 1px #ccc solid;
}

.testimonial-box {
  background: #f1f1f1;
  padding: 40px 50px 100px 50px;
  border-radius: 10px;
}
.testimonial-box h2 {
  margin-bottom: 10px;
  font-weight: 700;
  text-transform: uppercase;
}
.testimonial-box .carousel {
  background: none;
  border: none;
}
.testimonial-box .carousel-cell {
  height: 250px;
  overflow: auto;
}
.testimonial-box .carousel-cell::-webkit-scrollbar {
  width: 3px;
}
.testimonial-box .carousel-cell::-webkit-scrollbar-track {
  background: #b3b3b3;
  width: 3px;
  border-radius: 10px;
}
.testimonial-box .carousel-cell::-webkit-scrollbar-thumb {
  background: #ffc80c;
  width: 10px;
  border-radius: 10px;
}
.testimonial-box .carousel-content {
  background: none;
  padding: 0;
  color: #666;
}
.testimonial-box .carousel-content img {
  display: block;
  max-width: 150px;
  margin: 25px 0 10px;
}
.testimonial-box .carousel-content strong {
  display: block;
  color: #333;
}
.testimonial-box .carousel .flickity-page-dots {
  display: none;
}
.testimonial-box .carousel .flickity-prev-next-button {
  top: inherit;
  bottom: -75px;
  color: #666;
}
.testimonial-box .carousel .flickity-prev-next-button.previous {
  left: 0;
}
.testimonial-box .carousel .flickity-prev-next-button.next {
  right: inherit;
  left: 40px;
}

/* BLOG */

.blog-post {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 50px;
  margin: 50px 0;
}
.blog-post a:hover {
  text-decoration: underline;
}
.blog-post .blog-image {
  width: 35%;
}
.blog-post .blog-details {
  flex: 1;
}
.blog-post .blog-details h1,
.blog-post .blog-details h2 {
  font-size: 45px;
  font-weight: 700;
}
.blog-post .blog-details p {
  display: block;
  margin: 20px 0;
}
.blog-post .blog-date {
  display: block;
  margin: 20px 0;
  color: #666;
}
.blog-post .blog-date:before {
  margin-right: 10px;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f073";
}
.blog-post .continue-btn,
.blog-post .back-btn {
  font-weight: 700;
  text-transform: uppercase;
}
.blog-post .continue-btn:after {
  margin-left: 10px;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f101";
  color: #ffc80c;
}
.blog-post .back-btn:before {
  margin-right: 10px;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f100";
  color: #ffc80c;
}

.quote-box {
  margin: 35px 0;
  color: #666;
}
.quote-box em {
  display: block;
  margin-bottom: 15px;
  font-size: 32px;
  text-align: center;
}
.quote-box strong {
  display: block;
  text-align: right;
}

.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 50px 0;
}
.blog-pagination a {
  font-weight: 700;
  color: #ffc80c;
}
.blog-pagination a:hover {
  text-decoration: underline;
}
.blog-pagination a span {
  padding: 0 5px;
  font-weight: 400;
  color: #666;
}

/* FORM */

.form input,
.form textarea {
  display: block;
  background: rgba(255, 255, 255, 0.1);
  width: 100%;
  margin-bottom: 15px;
  padding: 20px 25px;
  font-family: "Source Sans 3", sans-serif;
  font-size: 18px;
  color: #fff;
  border: 1px #fff solid;
  border-radius: 3px;
}
.form textarea {
  height: 200px;
}
.form input:focus,
.form textarea:focus {
  outline: none;
}
.form input::placeholder,
.form textarea::placeholder {
  font-family: "Source Sans 3", sans-serif;
  color: #fff;
}
.form input[type="submit"] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: none;
  max-width: 250px;
  margin: auto;
  padding: 20px;
  font-family: "Source Sans 3", sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  border: 1px #ffc80c solid;
  border-radius: 0;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
.form input[type="submit"]:hover {
  background: #ffc80c;
  color: #fff;
}

.CaptchaPanel {
  color: #fff;
}
.CaptchaPanel input {
  max-width: 300px;
  margin: auto;
  padding: 10px;
  font-size: 14px;
}

/* FOOTER */

.footer-container {
  background: #000;
  color: #fff;
}
.contact-frame {
  display: block;
  width: 100%;
  height: 750px;
}
.thanks-box {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.member-section {
  background: #f1f1f1;
  padding: 40px 0;
}
.member-section .wrap {
  display: flex;
  align-items: center;
}
.member-section .member-text {
  padding-right: 50px;
  font-size: 40px;
  font-weight: 700;
  border-right: 5px #ffc80c solid;
}
.member-section ul {
  display: flex;
  align-items: center;
  flex: 1;
  padding-left: 50px;
}
.member-section ul li {
  flex: 1;
}
.member-section ul li img {
  display: block;
  margin: auto;
}

.contact-section {
  background: #000 url(../siteart/bg-footer.jpg) fixed center center no-repeat;
  background-size: cover;
  padding: 200px 0;
  color: #fff;
}
.contact-section h2 {
  font-size: 48px;
  text-transform: uppercase;
  line-height: 1;
}
.contact-section h2 strong {
  display: block;
}
.contact-section .btn {
  margin: 0;
  color: #fff;
  border: 1px #ffc80c solid;
  box-shadow: none;
}
.contact-section .btn:hover {
  background: #ffc80c;
  color: #fff;
}
.contact-section .flex-row .flex-row {
  margin: 50px 0;
}
.contact-section .flex-row .flex-row strong {
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase;
}

.top-footer {
  padding: 20px 0;
  border-bottom: 1px #333 solid;
}
.bottom-footer {
  display: flex;
  align-items: center;
  gap: 10px 50px;
  padding: 50px 0;
  font-size: 12px;
}
.bottom-footer a:hover {
  text-decoration: underline;
}
.bottom-footer .copyright {
  flex: 1;
}
.bottom-footer .footer-links ul {
  display: flex;
  margin-top: 5px;
}
.bottom-footer .footer-links ul li {
  border-right: 1px #fff solid;
}
.bottom-footer .footer-links ul li:last-child {
  border: none;
}
.bottom-footer .footer-links ul li a {
  padding: 0 10px;
  line-height: 1;
}
.bottom-footer .footer-links ul li:first-child a {
  padding-left: 0;
}

/* RESPONSIVE */

#menu-button {
  display: none;
  position: relative;
  z-index: 1000;
}
#menu-button .menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  color: #a4a4a4;
  border: 1px #5c5c5c solid;
  border-radius: 5px;
  cursor: pointer;
}

nav.mobile {
  display: none;
  width: 100%;
  z-index: 999999;
  overflow: auto;
  box-shadow: 5px 0px 10px 0px rgba(0, 0, 0, 0.1);
}
nav.mobile ul {
  padding: 10px 0;
}
nav.mobile ul li i {
  margin-left: 10px;
}
nav.mobile ul li a.active-mobile i {
  transform: rotate(180deg);
}
nav.mobile ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 10px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
}
nav.mobile ul li a:hover {
  color: #ffc80c;
}

nav.mobile ul ul {
  display: none;
  background: #333;
}
nav.mobile ul ul li a {
  padding: 8px;
}

@media screen and (max-width: 1400px) {
  .service-section {
    background-size: 50%;
    padding: 100px 0 125px;
  }

  .contact-box .contact-info {
    flex: none;
    width: 100%;
  }
  .contact-box .contact-map {
    flex: none;
    width: 100%;
  }
  .contact-box .contact-hours {
    flex: none;
    width: 100%;
  }
}
@media screen and (max-width: 1000px) {
  .header-container {
    position: relative;
    background: #454545;
  }
  .header-container #menu-button {
    display: block;
    margin-left: auto;
  }
  .top-header .top-nav ul li a {
    padding: 0 15px;
  }
  .bottom-header .primary {
    display: none;
  }

  .main {
    padding: 40px 0;
  }

  .carousel-cell {
    height: 450px;
  }
  .carousel-content .carousel-content-inner strong {
    font-size: 60px;
  }
  .carousel-content .carousel-content-inner p {
    font-size: 36px;
  }
  .rental-section {
    padding: 100px 0;
  }
  .rental-section h2 {
    font-size: 48px;
  }
  .rental-section h3 {
    font-size: 30px;
  }
  .rental-section .flex-row {
    margin-bottom: 15px;
  }
  .rental-section .flex-row p {
    margin-bottom: 0;
  }
  .member-section .wrap {
    justify-content: center;
    flex-wrap: wrap;
  }
  .member-section .member-text {
    padding: 0 0 15px;
    font-size: 30px;
    text-align: center;
    border: none;
    border-bottom: 5px #ffc80c solid;
  }
  .member-section ul {
    flex: none;
    width: 100%;
    padding: 15px 0;
  }

  .small-banner {
    display: none;
  }
  .page-banner {
    min-height: auto;
    padding: 50px 20px;
  }
  .page-banner h1 {
    font-size: 48px;
  }
  .card-container.alt .card {
    width: calc(50% - 10px);
  }
  .testimonial-box {
    padding: 30px 30px 80px;
  }

  .contact-section {
    padding: 100px 0;
  }
  .contact-section h2 {
    font-size: 36px;
  }
  .contact-section .flex-row .flex-row {
    display: block;
  }
  .bottom-footer .logo {
    width: 140px;
  }
}
@media screen and (max-width: 768px) {
  .flex-row .flex-col {
    flex: none;
    width: 100%;
    max-width: 100%;
  }
  .btn-container .btn {
    flex: 1;
    width: 100%;
    max-width: 100%;
  }

  .card-container .card {
    flex: none;
    width: 100%;
    height: 100px;
    margin: 5px 0;
  }
  .card-container .card img {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .card-container .card:hover img {
    transform: translate(-50%, -50%);
  }
  .card-container.alt .card {
    width: 100%;
    height: 200px;
  }
  .faq-section .banner-head {
    padding: 35px 20px;
  }
  .faq-section .banner-head h2 {
    font-size: 30px;
  }
  .faq-section .banner-head:after {
    margin-left: 10px;
    font-size: 16px;
  }
  .faq-section .accordion .accordion-head {
    padding: 18px 25px 18px 18px;
  }
  .faq-section .accordion .accordion-head h3 {
    font-size: 16px;
  }
  .faq-section .accordion .accordion-body {
    padding: 30px 18px 15px 18px;
  }
  .service-section {
    background-size: 65%;
    padding: 75px 0 100px;
  }
  .service-section h2 {
    font-size: 48px;
  }
  .service-section .arrow-list {
    margin-top: 35px;
  }
  .service-section .arrow-list li {
    width: 100%;
  }
  .member-section ul {
    flex-wrap: wrap;
  }
  .member-section ul li {
    flex: none;
    width: 50%;
    padding: 10px;
  }

  .contact-box .contact-info {
    padding: 20px;
  }
  .contact-box .contact-map iframe {
    height: 250px;
  }
  .contact-box .contact-hours {
    padding: 20px;
  }
  .blog-post .blog-image {
    width: 100%;
  }
  .blog-post .blog-details {
    flex: none;
    width: 100%;
  }
  .blog-post .blog-details h1,
  .blog-post .blog-details h2 {
    font-size: 32px;
  }

  .top-footer .social ul {
    justify-content: center;
  }
  .bottom-footer {
    justify-content: center;
    flex-wrap: wrap;
  }
  .bottom-footer .copyright {
    flex: none;
    width: 100%;
    text-align: center;
  }
  .bottom-footer .footer-links ul {
    justify-content: center;
  }
}
@media screen and (max-width: 480px) {
  .top-header .top-nav {
    display: none;
  }
  .top-header .social {
    width: 100%;
  }
  .top-header .social ul {
    justify-content: center;
  }

  .btn-container .btn {
    flex: none;
  }
  .btn {
    width: 100%;
    max-width: 100%;
  }

  .carousel-cell {
    height: 350px;
  }
  .carousel-content .carousel-content-inner strong {
    font-size: 48px;
  }
  .carousel-content .carousel-content-inner p {
    font-size: 24px;
  }
  .faq-section .banner-head h2 {
    font-size: 24px;
  }
  .service-section h2 {
    font-size: 36px;
  }
  .member-section ul li {
    width: 100%;
  }
  .contact-container .contact {
    width: 100%;
  }
}
