/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Vars
# Global
# Landing Page
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Vars
--------------------------------------------------------------*/

/*--------------------------------------------------------------
  # Global
  --------------------------------------------------------------*/

body {
  font-family: "Outfit", sans-serif;
  overflow-x: hidden !important;
}

h2 {
  color: var(--body-heading-color);
  font-size: 30px;
  line-height: 1.3;
  margin: 0 0 15px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

h3 {
  color: var(--body-heading-color);
  font-size: 20px;
  line-height: 1.3;
  margin: 0 0 15px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

h2 strong {
  color: var(--secondary-color);
}

p {
  color: #fff;
  font-size: 13.5px;
  margin: 0 0 15px;
  line-height: 1.4;
}

a,
a:active,
a:focus {
  outline: none;
}

#page {
  overflow-x: hidden !important;
}

.post,
.page {
  margin: 0;
}

.home .entry-header,
.entry-footer {
  display: none;
}

.entry-content,
.hentry {
  margin: 0;
}

.button,
.home #primary .right .content-wrap p:last-of-type a {
  display: inline-block;
  text-decoration: none;
  text-transform: none;
  background-color: transparent;
  border: 1.5px solid;
  padding: 9px 22px;
  font-size: 16px;
  text-shadow: none;
  box-shadow: none;
  border-radius: 5px;
  font-weight: 500;
  transition: 0.35s ease all;
}

.button.green-o,
.home #primary .right .content-wrap p:last-of-type a {
  color: var(--body-heading-color);
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.button.green-o:hover,
.home #primary .right .content-wrap p:last-of-type a:hover {
  background-color: transparent;
  color: var(--secondary-color);
}

/*--------------------------------------------------------------
    # Landing Page
    --------------------------------------------------------------*/

.home #primary {
  width: 100%;
  height: 100vh;
  position: relative;
  display: flex;
  flex-wrap: wrap;
}

.home #primary .left {
  width: 50%;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  position: relative;
}
.home #primary .left::before {
  position: absolute;
  content: "";
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.4;
}
.home #primary .left img {
  z-index: 99;
}

.home #primary .right {
  width: 50%;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.home #primary .right .accent {
  position: absolute;
  right: 0;
  top: 0;
  width: 30%;
  max-width: 267px;
}
.home #primary .right .content-wrap > div {
  color: var(--body-text-color);
}
.home #primary .right .content-wrap {
  padding: 50px;
  max-width: 650px;
  margin: 50px auto 0;
}

.home #primary .right .content-wrap h2 {
  max-width: 480px;
}

.home #primary .right .content-wrap p:last-of-type a {
  margin-top: 30px;
  margin-bottom: 10px;
}

.home #primary .right .content-wrap > span:last-of-type {
  margin-top: 30px;
  display: block;
  color: #fff;
  font-weight: 300;
  font-size: 13px;
}

.home #primary .right .content-wrap span strong {
  color: var(--secondary-color);
}

.home #primary .right .content-wrap span strong:nth-of-type(2) {
  margin: 0 5px;
  font-weight: 300;
}

.home #primary .right .content-wrap span a {
  color: var(--body-text-color);
  text-decoration: none;
}

.home #primary .right .contact-form {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  background-color: var(--primary-color);
  right: -100%;
  display: flex;
  align-items: center;
  transition: 0.5s ease all;
}

.home #primary .right .contact-form.slide {
  right: 0;
  justify-content: center;
}

.home #primary .right .contact-wrap {
  position: relative;
  background-color: var(--primary-color);
}

.home #primary .right .contact-wrap h2 {
  font-weight: 500;
}

.home #primary .right .contact-wrap .back {
  color: var(--secondary-color);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  position: absolute;
  right: 50px;
  top: 8px;
  font-weight: 300;
}

.home #primary .right .contact-wrap span strong {
  color: var(--secondary-color);
}

body #gform_1 {
  padding-bottom: 20px;
}

body .gform_wrapper.gravity-theme .gform_fields {
  grid-row-gap: 8px;
}

body .gform_wrapper.gravity-theme .gfield input.large,
body .gform_wrapper.gravity-theme .gfield select.large,
body .gform_wrapper.gravity-theme .gfield textarea {
  font-family: "Outfit";
  border: 1px solid #fff;
  border-radius: 6px;
  font-size: 13.5px;
  font-weight: 500;
  font-style: italic;
  padding: 8px 20px;
  outline: none;
}

body .gform_wrapper.gravity-theme .gfield textarea {
  max-height: 140px;
  border-radius: 6px;
  resize: none;
}

body .gform_wrapper.gravity-theme .gform_footer {
  margin: 0;
  padding: 16px 0 0;
}

body .gform_wrapper.gravity-theme .gform_footer input {
  font-family: "Outfit", sans-serif;
  border-radius: 6px;
  color: #fff;
  background-color: var(--secondary-color);
  border: 2px solid;
  border-color: var(--secondary-color);
  font-weight: 600;
  padding: 10px 22px;
  font-size: 16px;
  cursor: pointer;
  line-height: 1.3 !important;
  transition: 0.35s ease all;
}

body .gform_wrapper.gravity-theme .gform_footer input:hover {
  background-color: transparent;
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}

body #gform_confirmation_message_1 {
  color: #fff;
}

.home .coffee-foot {
  position: absolute;
  background-color: transparent;
  padding: 5px 20px 7px;
  bottom: 0;
  height: 36px;
  right: 0;
  z-index: 10;
}

.home .coffee-foot a {
  color: #fff;
  text-decoration: none;
  font-weight: 300;
  font-size: 11px;
  font-style: italic;
}
.error-404 {
  background-color: var(--primary-color);
  display: grid;
  height: 100vh;
  place-items: center;
  text-align: center;
}
.error-404 h1 {
  color: var(--body-heading-color);
  font-size: 50px;
}
.error-404 a {
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
  background-color: transparent;
  border: 1.5px solid;
  padding: 9px 22px;
  font-size: 16px;
  text-shadow: none;
  box-shadow: none;
  border-radius: 30px;
  font-weight: 500;
  transition: 0.35s ease all;
  color: var(--primary-color);
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}
img.new-logo-spot {
  width: 250px;
  margin-bottom: 20px;
}
.socials {
  display: flex;
  column-gap: 20px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.socials .social {
  text-decoration: none;
  color: var(--secondary-color);
  transition: all 0.3s ease-in-out;
}
.socials .social:hover {
  color: var(--secondary-color);
}
.socials .social svg {
  height: 40px;
  width: 40px;
}
.center-align {
  text-align: center;
}
h4.social-heading {
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 20px;
  color: var(--body-text-color);
}
.tel-email {
  display: flex;
  flex-wrap: wrap;
  /* justify-content: space-between; */
  align-items: center;
  row-gap: 10px;
  column-gap: 30px;
  margin-bottom: 10px;
}
.socials a {
  color: #fff;
}
.socials a:hover {
  color: var(--secondary-color);
}
.email a,
.tel a,
.tel div {
  color: var(--body-text-color);
  font-size: 13px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.email a:hover,
.tel a:hover {
  color: var(--secondary-color);
}
@media (max-width: 810px) {
  .home #primary .left,
  .home #primary .right {
    width: 100%;
    min-height: 50vh;
  }
  .home .coffee-foot {
    text-align: center;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .home #primary .right .content-wrap {
    margin: 0px auto 0;
  }
}

@media (max-width: 439px) {
  .home #primary {
    height: auto;
  }
  .home #primary .right .content-wrap {
    padding: 50px 35px;
    max-width: 650px;
  }
  .home #primary .right .contact-wrap .back {
    right: 35px;
  }
  .home #primary .right .content-wrap span {
    margin-top: 30px;
  }
  body #gform_1 {
    padding-bottom: 0;
  }
  .home .coffee-foot {
    position: relative;
    bottom: auto;
  }
  .home #primary .right .contact-form.slide {
    right: 0;
    flex-direction: column;
    padding: 20px 30px;
    justify-content: unset;
  }
}
