@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,800;1,400;1,800");
*, ::after, ::before {
  box-sizing: border-box; }

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none; }

blockquote, body, dd, dl, figure, h1, h2, h3, h4, p {
  margin-block-end: 0; }

ol[role=list], ul[role=list] {
  list-style: none; }

body {
  min-height: 100vh;
  line-height: 1.5; }

button, h1, h2, h3, h4, input, label {
  line-height: 1.1; }

a:not([class]) {
  text-decoration-skip-ink: auto; }

img, picture {
  max-width: 100%;
  width: 100%;
  display: block; }

button, input, select, textarea {
  font: inherit; }

:root {
  --green: #8CD303;
  --darkGreen: #85c505;
  --blue: #061a32;
  --black: #222;
  --gray: #878787;
  --lightGray: #c2c2c2;
  --white: #f5f5f5; }

.screen-reader-text {
  display: none; }

* {
  position: relative; }

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  color: var(--white);
  background: var(--blue) url(../src/img/texture.png) top left;
  width: 100%; }

body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-style: normal;
  margin: 0; }

.regular {
  font-weight: 400; }

.bold {
  font-weight: 700; }

a {
  color: var(--green); }

.animate {
  transition: all .15s ease-in-out; }

.container {
  padding-right: 50px;
  padding-left: 50px;
  max-width: 1750px !important;
  width: 100%;
  margin-right: auto;
  margin-left: auto; }
  @media (max-width: 1500px) {
    .container {
      padding-left: 50px;
      padding-right: 50px; } }
  @media (max-width: 1100px) {
    .container {
      padding-left: 25px;
      padding-right: 25px; } }
  @media (max-width: 525px) {
    .container {
      padding-left: 15px;
      padding-right: 15px; } }

.btn, input[type="button"] {
  color: var(--blue);
  background: var(--green);
  padding: 12px 24px;
  display: inline-block;
  font-weight: 800;
  font-style: italic;
  text-decoration: none;
  font-size: 24px;
  border-radius: 8px;
  white-space: nowrap;
  text-transform: uppercase;
  border: 0 solid;
  outline: 1px solid;
  outline-color: rgba(140, 211, 3, 0.8);
  outline-offset: 0px;
  transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1); }
  .btn.secondary, input[type="button"].secondary {
    background: var(--blue);
    color: var(--white); }
  .btn.smaller, input[type="button"].smaller {
    font-size: 18px;
    padding: 10px 16px; }
  .btn.full-width, input[type="button"].full-width {
    width: 100%;
    text-align: center; }
  .btn:hover, input[type="button"]:hover {
    border: 1px solid;
    outline-color: rgba(140, 211, 3, 0);
    outline-offset: 25px; }
  @media (max-width: 1500px) {
    .btn, input[type="button"] {
      padding: 10px 18px;
      font-size: 18px; } }

::placeholder {
  color: var(--lightGray); }

.flex {
  display: flex;
  gap: 50px;
  justify-content: space-between; }
  .flex.center {
    align-items: center; }
  .flex.start {
    align-items: flex-start; }
  .flex.end {
    align-items: flex-end; }
  @media (max-width: 1024px) {
    .flex {
      gap: 25px; } }

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); }
  @media (max-width: 800px) {
    .grid {
      display: block; } }

.border {
  padding: 20px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.25); }
  .border.large {
    border-radius: 16px;
    padding: 32px; }
    @media (max-width: 1500px) {
      .border.large {
        padding: 24px; } }
    @media (max-width: 1000px) {
      .border.large {
        padding: 16px; } }
  .border.green {
    border-color: rgba(140, 211, 3, 0.5); }
  @media (max-width: 1024px) {
    .border {
      padding: 16px; } }

.rounded {
  border-radius: 8px; }
  .rounded.large {
    border-radius: 16px; }

.dark-bg {
  background: #0b1527; }

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5 {
  text-transform: uppercase;
  font-style: italic;
  margin-top: 0; }

h1, .h1 {
  font-weight: 800;
  font-size: 80px;
  line-height: 76px;
  margin: 0 0 36px; }
  h1.smaller, .h1.smaller {
    font-size: 54px;
    line-height: 48px; }
  @media (max-width: 1600px) {
    h1, .h1 {
      font-size: 72px;
      line-height: 74px; }
      h1.smaller, .h1.smaller {
        font-size: 54px;
        line-height: 56px; } }
  @media (max-width: 1024px) {
    h1, .h1 {
      font-size: 60px;
      line-height: 64px;
      margin: 0 0 24px; }
      h1.smaller, .h1.smaller {
        font-size: 48px;
        line-height: 54px; } }
  @media (max-width: 800px) {
    h1, .h1 {
      font-size: 48px;
      line-height: 54px; }
      h1.smaller, .h1.smaller {
        font-size: 38px;
        line-height: 44px; } }
  @media (max-width: 525px) {
    h1, .h1 {
      font-size: 42px;
      line-height: 48px; }
      h1.smaller, .h1.smaller {
        font-size: 32px;
        line-height: 38px; } }

h2, .h2 {
  font-size: 42px;
  line-height: 50px;
  font-weight: 800;
  margin: 0 0 24px;
  text-transform: none; }
  @media (max-width: 1500px) {
    h2, .h2 {
      font-size: 36px;
      line-height: 42px; } }
  @media (max-width: 1024px) {
    h2, .h2 {
      font-size: 32px;
      line-height: 36px; } }
  @media (max-width: 525px) {
    h2, .h2 {
      font-size: 24px;
      line-height: 30px; } }

h3, .h3 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 800;
  margin: 0 0 24px; }
  @media (max-width: 1600px) {
    h3, .h3 {
      font-size: 21px;
      line-height: 26px; } }
  @media (max-width: 1024px) {
    h3, .h3 {
      font-size: 18px;
      line-height: 23px; } }

h4, .h4 {
  font-size: 18px;
  line-height: 25px;
  font-weight: 500;
  color: var(--green);
  margin: 0 0 16px; }
  h4 img, .h4 img {
    display: inline-block;
    height: 18px;
    width: 22px;
    margin-right: 5px; }
  @media (max-width: 800px) {
    h4, .h4 {
      font-size: 15px;
      line-height: 21px; } }

p {
  font-size: 20px;
  line-height: 30px;
  margin: 0 0 24px; }
  p.larger {
    font-size: 22px;
    line-height: 32px; }
  @media (max-width: 1600px) {
    p {
      font-size: 17px;
      line-height: 25px; }
      p.larger {
        font-size: 19px;
        line-height: 26px; } }
  @media (max-width: 1000px) {
    p {
      font-size: 16px;
      line-height: 24px; }
      p.larger {
        font-size: 18px;
        line-height: 24px; } }

.green-text {
  color: var(--green); }

.caption {
  text-transform: uppercase;
  opacity: .35;
  margin-top: 10px; }
  .caption p {
    font-size: 17px !important;
    line-height: 24px !important; }
    .caption p strong {
      display: block;
      font-weight: 800; }
  .caption p:last-child {
    text-align: right; }
  @media (max-width: 1920px) {
    .caption {
      padding: 0 35px; } }
  @media (max-width: 1500px) {
    .caption p {
      font-size: 14px !important;
      line-height: 20px !important; } }
  @media (max-width: 525px) {
    .caption {
      padding: 0 15px; }
      .caption p {
        font-size: 12px !important;
        line-height: 18px !important; } }

section {
  margin-bottom: 100px; }
  @media (max-width: 1500px) {
    section {
      margin-bottom: 75px; } }
  @media (max-width: 800px) {
    section {
      margin-bottom: 50px; } }

.centerline {
  display: block;
  width: 1px;
  height: 100%;
  background: rgba(194, 13, 13, 0.5);
  position: fixed;
  left: calc(50% - 1px);
  top: 0;
  z-index: 100; }

#header {
  padding: 35px 0 25px;
  margin-bottom: 50px;
  background: var(--blue);
  z-index: 100;
  position: sticky;
  top: 0;
  left: 0; }
  #header .logo > img {
    width: 177px;
    height: 50px;
    z-index: 20; }
    @media (max-width: 1600px) {
      #header .logo > img {
        width: 150px;
        height: 42px;
        top: 2px; } }
    @media (max-width: 800px) {
      #header .logo > img {
        width: 125px;
        height: 35px;
        top: 5px; } }
  #header #primary-nav ul {
    margin: 0;
    gap: 30px; }
    #header #primary-nav ul li {
      list-style-type: none; }
      #header #primary-nav ul li a {
        color: var(--white);
        font-style: italic;
        font-weight: 800;
        display: inline-block;
        padding: 8px;
        text-decoration: none;
        margin-left: 8px; }
        #header #primary-nav ul li a.green {
          color: var(--green); }
        #header #primary-nav ul li a.ig {
          top: -4px; }
          #header #primary-nav ul li a.ig img {
            width: 30px;
            height: 30px; }
    @media (max-width: 1024px) {
      #header #primary-nav ul {
        gap: 20px; } }
  #header #mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--green);
    padding: 25px;
    z-index: 10; }
    #header #mobile-nav ul {
      margin: 75px 0 0;
      padding: 0; }
      #header #mobile-nav ul.social {
        margin-top: 50px;
        gap: 10px; }
        #header #mobile-nav ul.social a {
          padding: 5px 20px; }
      #header #mobile-nav ul li {
        list-style-type: none; }
        #header #mobile-nav ul li.phone a {
          border: 1px solid var(--blue);
          border-radius: 6px;
          padding: 10px; }
        #header #mobile-nav ul li.phone span {
          display: inline-block;
          margin-left: 10px; }
        #header #mobile-nav ul li.title {
          margin-top: 25px;
          font-weight: bold; }
        #header #mobile-nav ul li span {
          font-size: 12px;
          display: block;
          float: left;
          color: var(--black);
          line-height: 50px;
          margin-right: 10px; }
        #header #mobile-nav ul li a {
          display: block;
          padding: 5px 0;
          margin: 10px 0;
          color: var(--blue);
          font-size: 24px;
          font-weight: bold;
          font-style: italic;
          text-decoration: none; }
    #header #mobile-nav .social img {
      width: 35px;
      height: 35px; }
  #header #nav-toggle {
    display: none;
    position: relative;
    z-index: 20;
    width: 50px;
    top: -13px;
    padding: 25px 15px 25px;
    margin: 0 0 0 20px;
    cursor: pointer !important; }
    #header #nav-toggle span {
      display: block;
      height: 2px;
      width: 30px;
      background: var(--white);
      margin-bottom: 4px; }
      #header #nav-toggle span:nth-child(3) {
        transition: all 100ms linear;
        transform-origin: 0 0;
        width: 21px;
        left: 9px; }
      #header #nav-toggle span:nth-child(4) {
        transition: none;
        transform-origin: 0 0;
        transform: rotate(45deg);
        left: 6px;
        top: -20px;
        width: 0; }
    @media (max-width: 525px) {
      #header #nav-toggle {
        padding: 25px 20px 10px; } }
  #header:not(.open) #nav-toggle:hover span:nth-child(3) {
    width: 30px;
    left: 0; }
  #header.open {
    background: var(--blue); }
    #header.open .logo img {
      filter: saturate(0) brightness(200%); }
    #header.open #nav-toggle span:nth-child(1), #header.open #nav-toggle span:nth-child(2) {
      width: 0; }
    #header.open #nav-toggle span:nth-child(3) {
      transform: rotate(-45deg);
      left: 4px;
      top: 2px;
      width: 23px; }
    #header.open #nav-toggle span:nth-child(4) {
      width: 24px;
      transition: all 100ms linear .125s; }
    #header.open #mobile-nav {
      display: block; }
      @media (max-width: 700px) {
        #header.open #mobile-nav .other a.mobile {
          display: block; } }
  @media (max-width: 1600px) {
    #header {
      padding: 30px 0; } }
  @media (max-width: 1000px) {
    #header {
      padding: 25px 0 0; }
      #header #primary-nav li:not(#nav-toggle) {
        display: none; }
      #header #nav-toggle {
        display: block; } }
  @media (max-width: 800px) {
    #header {
      margin-bottom: 25px; } }
  @media (max-width: 525px) {
    #header {
      padding: 12px 0 0; } }

.hero {
  align-items: center; }
  .hero.main p {
    font-size: 24px;
    line-height: 34px; }
    @media (max-width: 1500px) {
      .hero.main p {
        font-size: 21px;
        line-height: 26px; } }
    @media (max-width: 525px) {
      .hero.main p {
        font-size: 18px;
        line-height: 23px; } }
  .hero.main .wp-block-columns {
    max-width: 500px;
    margin: 0 auto;
    justify-content: space-between; }
  @media (max-width: 1024px) {
    .hero.main {
      grid-template-columns: 40% 1fr; } }
  .hero .text {
    margin-top: -25px;
    max-width: 750px;
    padding-right: 75px; }
    .hero .text p {
      margin-bottom: 36px; }
    .hero .text li {
      font-size: 21px;
      margin: 0 0 5px; }
      @media (max-width: 525px) {
        .hero .text li {
          font-size: 18px; } }
  .hero.switch .text {
    padding-right: 0;
    padding-left: 75px; }
  @media (max-width: 1750px) {
    .hero.main .image {
      right: -81px; }
      .hero.main .image img {
        border-radius: 8px 0 0 8px; }
      .hero.main .image .caption {
        left: -15px; }
    .hero.switch .image {
      margin-right: unset;
      margin-left: -81px; }
      .hero.switch .image img {
        border-radius: 0 8px 8px 0; }
      .hero.switch .image .caption {
        right: -15px; } }
  @media (max-width: 1024px) {
    .hero .text {
      padding-right: 25px; }
    .hero.switch .text {
      padding-left: 50px; } }
  @media (max-width: 800px) {
    .hero .text {
      margin: unset;
      padding: 0 25px 25px; }
    .hero.main {
      padding-top: 25px; }
      .hero.main .image {
        right: 0; }
    .hero.switch {
      display: flex;
      flex-direction: column; }
      .hero.switch .text {
        order: 1;
        padding: 0 50px 25px; }
      .hero.switch .image {
        margin-left: unset;
        order: 2; }
    .hero .caption {
      left: unset !important;
      right: unset !important; } }
  @media (max-width: 525px) {
    .hero .text {
      padding: 0 0 25px; }
      .hero .text .h1 {
        font-size: 36px;
        line-height: 42px; }
    .hero.switch .text {
      padding: 0 25px 25px; } }

.secondary .border {
  width: 33%; }
  .secondary .border a {
    text-decoration: none; }
  .secondary .border .flex {
    gap: 35px; }
    @media (max-width: 525px) {
      .secondary .border .flex {
        gap: 20px; } }
    .secondary .border .flex img {
      width: 60px;
      height: 98px; }
    .secondary .border .flex p {
      opacity: .5;
      margin-bottom: 0; }

.secondary h4 {
  margin-bottom: 5px; }

@media (max-width: 1024px) {
  .secondary .border {
    text-align: center; }
    .secondary .border .flex {
      flex-direction: column;
      align-items: center; } }

@media (max-width: 525px) {
  .secondary {
    flex-wrap: wrap; }
    .secondary .border {
      width: 100%;
      text-align: left; }
      .secondary .border .flex {
        flex-direction: row; }
        .secondary .border .flex img {
          width: 37px;
          height: 60px; } }

.testimonials h4 {
  text-align: center;
  margin-bottom: 75px; }

.testimonials .splide__slide {
  padding: 0 50px; }
  @media (max-width: 1024px) {
    .testimonials .splide__slide {
      padding: 0 25px; } }

.testimonials li {
  text-align: center; }
  .testimonials li span {
    font-size: 120px;
    line-height: 75px;
    font-weight: 800;
    color: var(--green); }
  .testimonials li h3 {
    margin-bottom: 64px;
    text-transform: none;
    font-weight: 400; }
  .testimonials li p {
    font-size: 19px;
    line-height: 24px; }
    .testimonials li p strong {
      display: block; }

.featured-posts a {
  width: 50%;
  display: block;
  text-decoration: none;
  color: white; }
  .featured-posts a:hover h3 {
    color: var(--green); }
  .featured-posts a .image {
    min-height: 400px;
    background-size: cover;
    background-position: center center; }
    @media (max-width: 1024px) {
      .featured-posts a .image {
        min-height: 250px; } }
  .featured-posts a .h5 {
    margin-top: -40px;
    padding: 0 0 50px 25px;
    opacity: .7; }
  .featured-posts a h3, .featured-posts a p, .featured-posts a .entry-meta {
    padding: 0 25px; }

@media (max-width: 525px) {
  .featured-posts {
    flex-wrap: wrap;
    gap: 50px; }
    .featured-posts a {
      width: 100%; } }

.posts {
  flex-wrap: wrap;
  justify-content: flex-start;
  padding: 75px 0; }
  .posts > a {
    flex-basis: calc(25% - 38px);
    display: block;
    text-decoration: none;
    color: white; }
    .posts > a:hover h3 {
      color: var(--green); }
    .posts > a .image {
      display: block;
      height: 200px;
      border-radius: 8px;
      background-size: cover;
      background-position: center center;
      margin-bottom: 25px; }
    .posts > a p {
      font-size: 16px;
      line-height: 24px; }
  @media (max-width: 1024px) {
    .posts > a {
      flex-basis: calc(50% - 13px); }
    .posts h3 {
      font-size: 24px;
      line-height: 30px; } }
  @media (max-width: 525px) {
    .posts > a .image {
      height: 125px; }
    .posts > a h3 {
      font-size: 16px;
      line-height: 21px; }
    .posts > a p {
      font-size: 12px;
      line-height: 16px;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden; } }

.entry-meta .author > span {
  display: flex; }
  .entry-meta .author > span div {
    padding-top: 5px; }
    .entry-meta .author > span div:first-line {
      font-size: 24px;
      font-weight: 800;
      font-style: italic; }
      @media (max-width: 1024px) {
        .entry-meta .author > span div:first-line {
          font-size: 18px;
          line-height: 23px; } }
  .entry-meta .author > span img {
    width: 75px;
    height: 75px;
    border-radius: 38px;
    margin-right: 20px; }
    @media (max-width: 1024px) {
      .entry-meta .author > span img {
        width: 50px;
        height: 50px; } }

.podcast .container .border {
  display: flex;
  align-items: center; }
  .podcast .container .border .youtube {
    flex-basis: 35%;
    min-width: 35%;
    margin-right: 50px; }
    .podcast .container .border .youtube iframe {
      width: 100% !important;
      aspect-ratio: 16/9 !important;
      height: auto; }
  @media (max-width: 1250px) {
    .podcast .container .border .youtube {
      flex-basis: 45%;
      min-width: 45%; } }
  @media (max-width: 1000px) {
    .podcast .container .border {
      flex-direction: column; }
      .podcast .container .border .youtube {
        flex-basis: 100%;
        min-width: 100%;
        margin: 0 0 25px; } }

.story {
  background: var(--white) url(../src/img/riggys-trucker.webp) top right;
  background-size: cover;
  color: var(--black);
  padding: 100px 0; }
  .story .container div {
    max-width: 650px; }
  @media (max-width: 1350px) {
    .story {
      text-align: center;
      padding: 100px 0 75px; }
      .story .container div {
        margin: 0 auto;
        max-width: 500px; }
      .story::before {
        display: block;
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.85); } }

.mgmt {
  text-align: center; }
  .mgmt .h1 {
    max-width: 875px;
    margin: 0 auto 50px; }
  .mgmt .h2 {
    text-transform: uppercase;
    margin-bottom: 48px; }
  .mgmt p {
    max-width: 900px;
    margin: 0 auto 75px; }
    @media (max-width: 800px) {
      .mgmt p {
        margin-bottom: 50px; } }
  .mgmt .flex {
    margin-bottom: 75px; }
    .mgmt .flex div {
      width: 33%; }
      @media (max-width: 800px) {
        .mgmt .flex div {
          padding: 0; } }
      .mgmt .flex div span {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 25px;
        border-radius: 8px;
        background-size: cover !important;
        font-size: 32px;
        line-height: 30px;
        text-transform: uppercase;
        font-weight: 800;
        font-style: italic;
        height: 300px; }
        @media (max-width: 1024px) {
          .mgmt .flex div span {
            height: 200px;
            font-size: 21px;
            line-height: 27px;
            padding: 15px; } }
        @media (max-width: 800px) {
          .mgmt .flex div span {
            font-size: 18px;
            line-height: 23px; } }
      .mgmt .flex div:nth-child(1) span {
        background: url(../src/img/standard.webp) center center; }
      .mgmt .flex div:nth-child(2) span {
        background: url(../src/img/manages.webp) center center; }
      .mgmt .flex div:nth-child(3) span {
        background: url(../src/img/revenue.webp) center center; }
    @media (max-width: 525px) {
      .mgmt .flex {
        flex-wrap: wrap; }
        .mgmt .flex div {
          width: 100%; } }

.slider {
  width: 500px;
  text-align: center;
  background: var(--white);
  border-radius: 0 50px 50px 0;
  margin: 0 auto;
  right: -25px; }
  .slider #slide-num {
    height: 100px;
    width: 100px;
    position: absolute;
    left: -50px;
    top: 0;
    background: var(--green);
    border: 12px solid var(--white);
    border-radius: 50px;
    z-index: 2;
    text-align: center; }
    .slider #slide-num strong {
      padding: 12px 0 2px;
      display: block;
      font-size: 38px;
      line-height: 30px;
      font-weight: bold; }
    .slider #slide-num span {
      margin-left: 2px;
      font-size: 32px;
      line-height: 32px; }
    .slider #slide-num:hover {
      cursor: pointer; }
  .slider .slides {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    border-radius: 0 50px 50px 0; }
  .slider .slides::-webkit-scrollbar {
    display: none; }
  .slider .slides > div {
    scroll-snap-align: start;
    flex-shrink: 0;
    width: 500px;
    height: 100px;
    padding: 0 0 0 60px;
    transform-origin: center center;
    transform: scale(1);
    transition: transform 0.5s;
    position: relative;
    background: var(--white);
    border-radius: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start; }
    .slider .slides > div label {
      color: var(--black);
      font-size: 15px;
      font-style: italic;
      margin-top: 10px; }
    .slider .slides > div input[type="text"], .slider .slides > div input[type="email"] {
      border: 0;
      color: var(--black);
      font-size: 24px;
      background-color: transparent;
      font-weight: 800;
      font-style: italic;
      outline: 0; }
    .slider .slides > div .flex {
      margin-bottom: 10px; }
      .slider .slides > div .flex label {
        font-size: 18px;
        margin-right: 25px;
        font-weight: bold;
        text-transform: uppercase; }
    .slider .slides > div span {
      display: flex; }
    .slider .slides > div > a.next, .slider .slides > div input[type="submit"] {
      position: absolute;
      right: 12px;
      top: 12px;
      text-decoration: none;
      font-size: 50px;
      font-weight: bold;
      background: var(--lightGray);
      border: 0;
      color: white;
      border-radius: 50px;
      width: 80px;
      height: 80px;
      z-index: 10; }
    .slider .slides > div > a.next:hover {
      background-color: var(--gray); }
    .slider .slides > div input[type="submit"] {
      background: var(--green);
      cursor: pointer; }
      .slider .slides > div input[type="submit"]:disabled {
        opacity: .5;
        background: red; }
        .slider .slides > div input[type="submit"]:disabled:hover {
          background: red;
          cursor: no-drop; }
      .slider .slides > div input[type="submit"]:hover {
        background: var(--darkGreen); }
  @media (max-width: 525px) {
    .slider {
      width: 310px;
      left: 20px; }
      .slider #slide-num {
        height: 75px;
        width: 75px;
        left: -40px; }
        .slider #slide-num strong {
          font-size: 24px;
          line-height: 14px; }
        .slider #slide-num span {
          font-size: 24px;
          line-height: 24px; }
      .slider .slides > div {
        height: 75px;
        padding-left: 35px;
        width: 312px; }
        .slider .slides > div label {
          margin-top: 7px;
          font-size: 13px; }
        .slider .slides > div input[type="text"], .slider .slides > div input[type="email"] {
          font-size: 18px; }
        .slider .slides > div a.next {
          width: 50px;
          height: 50px;
          font-size: 24px;
          line-height: 50px; }
        .slider .slides > div input[type="submit"] {
          height: 50px;
          width: 50px;
          font-size: 24px;
          line-height: 50px; } }

.progress {
  margin: 25px auto;
  width: 300px;
  height: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px; }
  .progress span {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--green);
    height: 20px;
    border-radius: 10px; }

@keyframes splide-loading {
  0% {
    transform: rotate(0); }
  to {
    transform: rotate(1turn); } }

.splide__arrows {
  display: none; }

.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.splide__track--fade > .splide__list > .splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0; }

.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1; }

.splide--rtl {
  direction: rtl; }

.splide__track--ttb > .splide__list {
  display: block; }

.splide__container {
  box-sizing: border-box;
  position: relative; }

.splide__list {
  backface-visibility: hidden;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important; }

.splide.is-initialized:not(.is-active) .splide__list {
  display: block; }

.splide__pagination {
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 15px 0 0 0;
  padding: 0;
  pointer-events: none; }

.splide__pagination li {
  display: inline-block;
  list-style-type: none;
  margin: 0;
  pointer-events: auto; }
  .splide__pagination li button {
    height: 10px;
    border: 0;
    width: 50px;
    border-radius: 25px;
    margin: 0 10px;
    opacity: .1;
    cursor: pointer; }
    @media (max-width: 525px) {
      .splide__pagination li button {
        width: 35px;
        margin: 0 5px; } }
    .splide__pagination li button.is-active {
      opacity: 1;
      background: var(--green); }

.splide:not(.is-overflow) .splide__pagination {
  display: none; }

.splide {
  position: relative;
  visibility: hidden; }

.splide.is-initialized,
.splide.is-rendered {
  visibility: visible; }

.splide__slide {
  box-sizing: border-box;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative; }

.splide__slide img {
  vertical-align: bottom; }

.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

.splide__toggle.is-active .splide__toggle__play,
.splide__toggle__pause {
  display: none; }

.splide__toggle.is-active .splide__toggle__pause {
  display: inline; }

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0; }

.process {
  text-align: center;
  padding: 50px 25px !important; }
  .process .steps {
    margin: 50px auto 0;
    justify-content: center;
    gap: 10px; }
    .process .steps > div {
      padding: 10px 20px;
      transform: skew(-10deg);
      white-space: nowrap; }
      .process .steps > div:nth-child(1) {
        background: #e4cc3b; }
      .process .steps > div:nth-child(2) {
        background: #db933c; }
      .process .steps > div:nth-child(3) {
        background: #497dde; }
      .process .steps > div span {
        transform: skew(10deg);
        font-size: 24px;
        font-weight: 800;
        color: var(--black); }
    @media (max-width: 525px) {
      .process .steps {
        flex-wrap: wrap; } }

.area {
  display: flex; }
  .area img {
    margin-right: 50px;
    width: 450px;
    height: auto;
    align-self: flex-start; }
  .area ul li {
    font-size: 21px; }
  @media (max-width: 1024px) {
    .area img {
      width: 400px;
      margin-right: 30px; } }
  @media (max-width: 820px) {
    .area {
      flex-wrap: wrap; }
      .area img {
        width: 100%;
        object-fit: cover;
        height: 300px;
        margin: 0 0 25px; } }
  @media (max-width: 525px) {
    .area img {
      height: 200px; } }

.pre-dev .h2 {
  color: #e4cc3b; }

.pre-dev .border {
  border-color: #e4cc3b; }

.dev .h2 {
  color: #db933c; }

.dev .border {
  border-color: #db933c; }

.management .h2 {
  color: #497dde; }

.management .border {
  border-color: #497dde; }

@media (max-width: 825px) {
  body.single-location .hero {
    display: block; } }

body.single-location .hero .text {
  padding: 0 50px 0 0;
  text-align: left;
  flex: 1; }
  body.single-location .hero .text p {
    font-size: 21px;
    line-height: 26px; }
  body.single-location .hero .text .address {
    display: none; }
  body.single-location .hero .text .h4 {
    margin-bottom: 8px; }
  body.single-location .hero .text .h3 {
    margin-bottom: 0 !important; }
  @media (max-width: 1350px) {
    body.single-location .hero .text p {
      font-size: 19px;
      line-height: 24px;
      margin-bottom: 15px; }
    body.single-location .hero .text li {
      font-size: 19px;
      line-height: 24px; } }
  @media (max-width: 525px) {
    body.single-location .hero .text {
      padding: 20px 0 0 0; }
      body.single-location .hero .text .address {
        display: block;
        margin-bottom: 20px; }
      body.single-location .hero .text p {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 24px; } }

body.single-location .hero .image {
  flex-basis: 50%; }
  @media (min-aspect-ratio: 2.14 / 1) {
    body.single-location .hero .image {
      flex-basis: 45%; }
      body.single-location .hero .image img {
        max-height: 350px;
        object-fit: cover;
        object-position: top; } }

body.single-location section {
  margin-bottom: 50px; }
  @media (max-width: 1350px) {
    body.single-location section {
      margin-bottom: 35px; } }

body.single-location .splide__track {
  padding: 20px !important; }
  body.single-location .splide__track li {
    margin-right: 20px; }
  @media (max-width: 525px) {
    body.single-location .splide__track {
      padding: 10px !important; } }

body.single-location .secondary .border h2 {
  margin-bottom: 0; }

@media (max-width: 800px) {
  body.single-location .secondary {
    flex-wrap: wrap; }
    body.single-location .secondary > div {
      width: calc(50% - 13px); }
    body.single-location .secondary > div:first-child {
      width: 100%; } }

@media (max-width: 525px) {
  body.single-location .secondary > div {
    width: 100%; } }

body.single-location .detail {
  font-size: 24px;
  margin-bottom: 10px; }
  @media (max-width: 800px) {
    body.single-location .detail {
      font-size: 21px; } }
  @media (max-width: 525px) {
    body.single-location .detail {
      font-size: 18px; } }

@media (max-width: 500px) {
  body.single-location .map {
    display: none; } }

@media (max-width: 800px) {
  body.single-location .map-responsive {
    padding-bottom: 50%; } }

.strike {
  text-decoration: line-through;
  opacity: .5; }

.lot-waitlist {
  text-align: center;
  background: rgba(140, 211, 3, 0.1); }
  .lot-waitlist h4 {
    color: var(--white); }
  .lot-waitlist .h2, .lot-waitlist p {
    text-wrap: balance; }

#form-errors {
  display: none;
  margin-top: 10px;
  color: red; }

.legal {
  font-size: 12px;
  color: var(--gray);
  margin: 25px 0; }

.reviews .wp-gr .grw-row {
  align-items: flex-start !important; }

.reviews .grw-header-inner {
  padding: 25px 25px 0 0 !important; }

.reviews .wp-gr .wp-google-rating {
  color: var(--green) !important; }

.reviews .wp-gr .wp-google-powered {
  color: var(--gray) !important;
  margin-bottom: 20px !important; }

.reviews .wp-star {
  filter: invert(42%) sepia(93%) saturate(1352%) hue-rotate(39deg) brightness(110%) contrast(119%); }

.reviews .wp-gr .grw-review-inner svg {
  display: none; }

@media (max-width: 525px) {
  .reviews .grw-dots {
    position: unset !important;
    left: unset !important;
    transform: unset !important; } }

.reviews .grw-dot {
  width: 40px !important; }

.reviews .wp-gr .grw-dot.active {
  background: var(--green) !important; }

.reviews .wp-gr.wpac.wp-dark .wp-google-name a {
  font-size: 21px !important; }

.reviews .wp-gr.wpac a.wp-google-name {
  color: var(--white) !important; }

.map-responsive, figure.is-provider-youtube .wp-block-embed__wrapper {
  overflow: hidden;
  padding-bottom: 25%;
  position: relative;
  height: 0; }
  @media (max-width: 525px) {
    .map-responsive, figure.is-provider-youtube .wp-block-embed__wrapper {
      padding-bottom: 50%; } }
  .map-responsive iframe, figure.is-provider-youtube .wp-block-embed__wrapper iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute; }

figure.is-provider-youtube .wp-block-embed__wrapper {
  padding-bottom: 56.25%; }

body.single-post, body.page-id-10, body.page-template-default {
  background: var(--white) url(../src/img/texture-inv.png) top left; }
  body.single-post .entry-title, body.page-id-10 .entry-title, body.page-template-default .entry-title {
    color: var(--black);
    max-width: 1050px; }
    @media (max-width: 525px) {
      body.single-post .entry-title, body.page-id-10 .entry-title, body.page-template-default .entry-title {
        font-size: 28px;
        line-height: 34px; } }
  body.single-post .featured-image, body.page-id-10 .featured-image, body.page-template-default .featured-image {
    min-height: 400px;
    background-size: cover;
    background-position: center center;
    border-radius: 8px;
    width: calc(100% + 50px);
    box-shadow: 5px 5px 8px rgba(0, 0, 0, 0.15); }
    @media (max-width: 800px) {
      body.single-post .featured-image, body.page-id-10 .featured-image, body.page-template-default .featured-image {
        left: -25px;
        margin-top: -25px; } }
    @media (max-width: 525px) {
      body.single-post .featured-image, body.page-id-10 .featured-image, body.page-template-default .featured-image {
        min-height: 225px; } }
  body.single-post header, body.page-id-10 header, body.page-template-default header {
    color: var(--black); }
  body.single-post article, body.page-id-10 article, body.page-template-default article {
    max-width: 900px;
    padding: 25px 20px 0;
    margin-bottom: 50px;
    background: white;
    border-radius: 16px; }
  body.single-post .wp-content, body.page-id-10 .wp-content, body.page-template-default .wp-content {
    color: var(--black); }
  body.single-post .entry-meta, body.page-id-10 .entry-meta, body.page-template-default .entry-meta {
    margin: 25px 0; }

.post-categories {
  display: flex;
  margin: 0 0 25px;
  padding: 0; }
  .post-categories li {
    list-style-type: none;
    padding: 0;
    margin: 0; }
    .post-categories li a {
      font-style: italic;
      text-decoration: none;
      text-transform: uppercase; }
  @media (max-width: 525px) {
    .post-categories {
      margin-bottom: 10px; } }

#sidebar {
  position: sticky;
  top: 25px;
  left: 0;
  padding: 25px;
  margin: 0 0 50px auto;
  width: 400px;
  background: var(--blue);
  border-radius: 16px; }
  #sidebar .spotlights .image div {
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 15px;
    height: 250px; }
  #sidebar .spotlights h3 {
    margin-bottom: 0; }
  #sidebar .spotlights a {
    text-decoration: none;
    display: block;
    height: 250px;
    width: 100%;
    color: white;
    background-size: cover;
    margin-bottom: 75px;
    border-radius: 8px; }
  #sidebar .social {
    align-items: center; }
    #sidebar .social img {
      width: 36px;
      height: 36px;
      max-width: 36px; }
  #sidebar p {
    font-size: 18px;
    line-height: 24px; }
  @media (max-width: 1200px) {
    #sidebar {
      display: none; } }

.mobile-ad {
  background: var(--green);
  color: var(--blue);
  border-radius: 0 0 8px 8px;
  padding: 20px 15px 12px 15px;
  margin-bottom: 25px;
  top: -25px; }
  .mobile-ad h2 {
    font-size: 21px;
    line-height: 28px; }
  .mobile-ad img {
    width: 40px;
    margin-right: 20px;
    height: auto;
    float: left;
    filter: invert(100); }
  .mobile-ad .btn {
    display: block;
    text-align: center; }
  @media (min-width: 500px) {
    .mobile-ad {
      display: none; } }

.nf-form-fields-required {
  margin-bottom: 25px; }

.city {
  margin-top: 50px;
  font-size: 21px; }
  .city a {
    text-decoration: none;
    color: var(--lightGray); }
  @media (max-width: 525px) {
    .city {
      font-size: 18px; } }

.difference > div {
  width: 50%; }

.difference iframe {
  flex: 1; }

@media (max-width: 800px) {
  .difference > div {
    width: 100%; }
    .difference > div.border {
      display: none; } }

@media (max-width: 525px) {
  .difference {
    display: none; } }

ul.amenities {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 8px;
  margin: 0;
  padding: 0; }
  ul.amenities li {
    white-space: nowrap;
    margin: 0;
    padding: 8px 12px;
    border-radius: 8px;
    list-style-type: none;
    background: rgba(0, 0, 0, 0.2);
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px; }
    ul.amenities li.base {
      background: none;
      padding: 8px 0; }
      @media (max-width: 525px) {
        ul.amenities li.base {
          display: none; } }
    ul.amenities li svg {
      display: inline-block;
      padding-right: 5px; }
    @media (max-width: 1024px) {
      ul.amenities li {
        padding: 6px 10px;
        font-size: 14px; } }

.locations .location {
  gap: 25px;
  align-items: flex-start;
  margin-bottom: 25px; }
  @media (max-width: 1024px) {
    .locations .location {
      flex-wrap: wrap; } }
  .locations .location img {
    width: 200px;
    height: auto; }
  .locations .location .title, .locations .location .address {
    flex: 1; }
  @media (max-width: 800px) {
    .locations .location img, .locations .location .title, .locations .location .address {
      width: 100%; } }
  .locations .location .promotion {
    display: none; }
  .locations .location.founders .promotion {
    display: block;
    background: var(--green);
    position: absolute;
    left: 0;
    top: 0;
    font-size: 12px;
    z-index: 10;
    color: var(--blue);
    font-weight: bold;
    padding: 10px; }
  .locations .location > div:last-child {
    width: 210px; }
    @media (max-width: 1024px) {
      .locations .location > div:last-child {
        width: 100%; }
        .locations .location > div:last-child .btn {
          width: 100%;
          text-align: center; } }
  .locations .location .title a {
    color: var(--white); }
  .locations .location .title p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 12px; }
    @media (max-width: 1024px) {
      .locations .location .title p {
        margin-bottom: 20px; } }
  .locations .location .title span {
    font-size: 14px; }
  .locations .location .h2 {
    margin-bottom: 10px; }
  .locations .location .h3 {
    margin: 25px 0 0; }
  .locations .location h4 {
    margin-bottom: 15px;
    font-size: 21px; }
    @media (max-width: 525px) {
      .locations .location h4 {
        font-size: 18px; } }
  .locations .location a {
    text-decoration: none; }
  @media (max-width: 525px) {
    .locations .location {
      flex-direction: column;
      gap: 15px;
      padding: 12px; }
      .locations .location .thumb {
        display: block;
        width: 100%; }
        .locations .location .thumb img {
          height: 160px;
          object-fit: cover; }
      .locations .location .h2 {
        margin-bottom: 5px; }
        .locations .location .h2 a {
          display: flex;
          justify-content: space-between; }
      .locations .location .h3 {
        text-align: center; }
      .locations .location p, .locations .location .address {
        display: none; } }

.pin {
  display: inline-block;
  width: 25px;
  color: white; }

.icon-section {
  margin: 75px 0; }
  @media (max-width: 1024px) {
    .icon-section {
      margin: 75px 0 25px; } }
  .icon-section .icon-boxes {
    gap: 75px; }
    @media (max-width: 1024px) {
      .icon-section .icon-boxes {
        gap: 50px;
        flex-direction: column; } }
  .icon-section .icon-box-item {
    flex: 1; }
    @media (max-width: 1024px) {
      .icon-section .icon-box-item {
        display: flex; } }
  .icon-section img {
    width: 100px;
    height: auto;
    margin-bottom: 25px; }
    @media (max-width: 1024px) {
      .icon-section img {
        margin: 0 25px 0 0;
        align-self: flex-start; } }

.rules li {
  font-size: 24px;
  margin-bottom: 24px; }

#general-contact label {
  display: block;
  font-weight: bold; }

#general-contact input, #general-contact select, #general-contact textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0 20px; }

#general-contact textarea {
  height: 200px; }

.post a {
  color: var(--white);
  text-decoration: none; }

.spotlight .post {
  align-items: center; }

.spotlight .image {
  min-width: 50%; }
  .spotlight .image a {
    display: inline-block;
    height: 400px;
    width: 100%;
    background-size: cover;
    background-position: center center; }

@media (max-width: 1250px) {
  .spotlight {
    display: flex;
    flex-direction: column; } }

@media (max-width: 825px) {
  .spotlight .post {
    flex-wrap: wrap; }
    .spotlight .post > div:first-child {
      order: 2; }
    .spotlight .post .image {
      width: 100%;
      order: 1;
      padding: 0;
      border: 0; }
      .spotlight .post .image a {
        height: 250px; } }

.nav-links a, .nav-links span {
  display: inline-block;
  padding: 10px;
  font-size: 24px;
  text-decoration: none; }

#park-modal {
  display: none;
  position: fixed;
  z-index: 500;
  left: 12px;
  top: 12px;
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  background: white;
  border-radius: 16px;
  padding: 25px;
  color: var(--black);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border: 5px solid var(--green); }
  #park-modal.display {
    display: flex; }
  #park-modal #modal-close {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 32px;
    padding: 10px 20px;
    opacity: .3; }
  #park-modal .h2, #park-modal h4 {
    margin-bottom: 5px; }
  #park-modal .price {
    display: flex;
    gap: 25px; }
    #park-modal .price > div {
      border: 1px solid rgba(0, 0, 0, 0.1);
      border-radius: 8px;
      padding: 10px; }
  #park-modal p {
    margin: 25px 0 50px; }
    #park-modal p .btn {
      padding: 20px 40px; }
  #park-modal .phone {
    font-size: 21px;
    color: var(--blue);
    font-weight: 700; }

.wp-content ul {
  margin: 0 0 36px; }
  .wp-content ul li {
    margin: 0 50px 20px 0; }

.wp-content ol {
  margin: 0 0 36px;
  padding: 0 0 0 25px;
  font-size: 24px; }
  .wp-content ol li {
    margin-bottom: 20px; }

.wp-content a {
  color: var(--darkGreen);
  border-bottom: 1px solid var(--darkGreen); }

.wp-content p {
  font-size: 18px;
  line-height: 27px; }
  @media (max-width: 525px) {
    .wp-content p {
      font-size: 16px;
      line-height: 24px; } }

.wp-content h2 {
  font-size: 36px;
  line-height: 48px;
  margin-bottom: 15px; }
  @media (max-width: 525px) {
    .wp-content h2 {
      font-size: 28px;
      line-height: 34px; } }

.wp-content h3 {
  margin-bottom: 10px; }

.wp-content p + h2, .wp-content p + h3, .wp-content p + h4 {
  margin-top: 50px; }
  @media (max-width: 800px) {
    .wp-content p + h2, .wp-content p + h3, .wp-content p + h4 {
      margin-top: 25px; } }

.wp-content .wp-block-image {
  margin: 50px 0; }
  .wp-content .wp-block-image figure {
    margin: 0; }
  .wp-content .wp-block-image img {
    border-radius: 8px;
    height: auto; }

.wp-content .question {
  font-size: 28px;
  line-height: 36px;
  font-weight: 800;
  margin-bottom: 20px; }
  .wp-content .question + p {
    margin-bottom: 50px; }
  @media (max-width: 525px) {
    .wp-content .question {
      font-size: 24px;
      line-height: 30px; } }

.wp-content .wp-block-social-links li {
  list-style-type: none; }
  .wp-content .wp-block-social-links li a {
    border-bottom: 0;
    zoom: 2; }

@media (max-width: 800px) {
  .wp-content .wp-block-columns ul li {
    margin-right: 16px; } }

@media (max-width: 525px) {
  .wp-content .wp-block-columns ul {
    margin: 0 0 24px 0;
    padding-left: 18px; } }

.wp-content figure {
  margin: 0 0 25px; }

.is-layout-flex {
  display: flex;
  gap: 25px; }

#bzOpeningsContainer ul, #bzOpeningsContainer li {
  margin: 0;
  padding: 0; }

#bzOpeningsContainer li {
  list-style-type: none; }
  #bzOpeningsContainer li a {
    display: block;
    padding: 20px;
    border: 1px solid var(--gray);
    border-radius: 8px;
    text-decoration: none;
    color: var(--black); }
    #bzOpeningsContainer li a button {
      display: none; }
    #bzOpeningsContainer li a h2 {
      font-size: 27px; }
    #bzOpeningsContainer li a ul {
      display: flex;
      justify-content: space-between; }
      @media (max-width: 525px) {
        #bzOpeningsContainer li a ul {
          flex-wrap: wrap; }
          #bzOpeningsContainer li a ul li {
            margin-bottom: 10px; } }
      #bzOpeningsContainer li a ul li {
        padding: 4px 8px;
        border-radius: 6px;
        background-color: rgba(0, 0, 0, 0.05); }
    #bzOpeningsContainer li a:hover {
      border-color: var(--green);
      background: rgba(140, 211, 3, 0.1);
      cursor: pointer; }
      #bzOpeningsContainer li a:hover h2 {
        color: var(--green); }

#footer {
  padding-top: 75px;
  border-bottom: 20px solid var(--green);
  background: var(--blue); }
  @media (min-width: 1025px) {
    #footer.trigger-animation .truck {
      animation: drive-in-50 2.5s;
      animation-iteration-count: 1;
      animation-fill-mode: forwards; } }
  @media (max-width: 1024px) {
    #footer.trigger-animation .truck {
      animation: drive-in-center 2.5s;
      animation-iteration-count: 1;
      animation-fill-mode: forwards; } }
  #footer .truck {
    position: absolute;
    left: -1000px;
    bottom: -2px;
    width: 600px;
    height: 162px; }
    @media (max-width: 1024px) {
      #footer .truck {
        width: 300px;
        height: 81px; } }
  #footer .container {
    display: flex;
    justify-content: flex-end;
    padding-left: 550px; }
    @media (max-width: 1024px) {
      #footer .container {
        padding: 0 0 100px;
        justify-content: space-between; } }
    @media (max-width: 525px) {
      #footer .container {
        flex-wrap: wrap; }
        #footer .container ul {
          width: calc(50% - 50px); } }
  #footer ul {
    margin: 0 50px 50px 0; }
    #footer ul li {
      list-style-type: none;
      padding: 3px;
      margin-bottom: 5px; }
      #footer ul li:first-child {
        color: var(--green); }
      #footer ul li a {
        text-decoration: none;
        color: var(--white); }
        #footer ul li a:hover {
          border-bottom: 1px solid var(--white); }
    @media (max-width: 525px) {
      #footer ul {
        margin: 0 25px 25px 0; }
        #footer ul li a {
          font-size: 15px; } }
  @media (max-width: 1000px) {
    #footer {
      padding-top: 25px; }
      #footer ul {
        margin: 0 25px 50px;
        padding: 0; } }

@keyframes drive-in-50 {
  100% {
    left: 50px; } }

@keyframes drive-in-center {
  100% {
    left: calc(50% - 150px); } }
