/*
Theme Name: XT Grid Theme
Author: Xtensive Web Design
Author URI: https://www.xtensive.co.uk
Description: A base theme built with CSS Grid
Version: 1.0
*/
/* Breakpoints */
/* Colors */
.site-header {
  background: linear-gradient(90deg, #244220 0%, #214B23 100%);
  height: 80px; }
  .site-header .container {
    align-items: center;
    justify-content: flex-end;
    padding: 0 1rem;
    height: 80px;
    position: relative; }
  .site-header .logo {
    display: block;
    position: absolute;
    top: 0;
    left: 1rem;
    z-index: 120; }
    .site-header .logo img {
      max-width: 8rem;
      height: auto;
      background: #244220;
      padding: 0.6rem;
      border-radius: 100px; }
  .site-header #mobile-button {
    width: 30px;
    height: 30px;
    display: block;
    appearance: none;
    border: 0;
    background: none;
    padding: 0;
    margin: 0;
    cursor: pointer; }
    @media (min-width: 800px) {
      .site-header #mobile-button {
        display: none; } }
    .site-header #mobile-button.active span {
      background: none; }
      .site-header #mobile-button.active span:before {
        top: 0;
        transform: rotate(45deg); }
      .site-header #mobile-button.active span:after {
        bottom: 0;
        transform: rotate(-45deg); }
    .site-header #mobile-button span {
      width: 100%;
      height: 2px;
      display: block;
      background: #DBC652;
      position: relative;
      transition: .3s; }
      .site-header #mobile-button span:before, .site-header #mobile-button span:after {
        content: ' ';
        position: absolute;
        top: -9px;
        left: 0;
        width: 100%;
        height: 2px;
        background: #DBC652;
        transition: .3s; }
      .site-header #mobile-button span:after {
        top: auto;
        bottom: -9px; }

#mobile-menu {
  display: flex;
  position: fixed;
  width: 100%;
  background: linear-gradient(90deg, #244220 0%, #214B23 100%);
  top: 80px;
  left: 0;
  margin-top: 0;
  padding: 4rem 1.5rem 2rem 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  z-index: 80; }
  @media (min-width: 800px) {
    #mobile-menu {
      display: none; } }
  #mobile-menu .menu-main-menu-container {
    width: 100%; }
    #mobile-menu .menu-main-menu-container .menu {
      width: 100%;
      list-style-type: none;
      padding: 0;
      margin: 0; }
      #mobile-menu .menu-main-menu-container .menu li {
        display: block;
        margin-bottom: 0.5rem;
        opacity: 0;
        transform: translateY(1rem);
        transition: .3s; }
        #mobile-menu .menu-main-menu-container .menu li:last-child {
          margin-bottom: 0; }
        #mobile-menu .menu-main-menu-container .menu li a {
          display: block;
          font-size: 1.2rem;
          text-transform: uppercase;
          color: #FFF;
          text-decoration-color: transparent;
          letter-spacing: 0.2rem;
          transition: .3s; }
          #mobile-menu .menu-main-menu-container .menu li a:hover, #mobile-menu .menu-main-menu-container .menu li a:focus {
            color: #DBC652; }
  #mobile-menu.active {
    opacity: 1;
    visibility: visible; }
    #mobile-menu.active .menu li {
      opacity: 1;
      transform: translateY(0);
      transition-delay: .2s; }
      #mobile-menu.active .menu li:nth-child(2) {
        transition-delay: .3s; }
      #mobile-menu.active .menu li:nth-child(3) {
        transition-delay: .4s; }
      #mobile-menu.active .menu li:nth-child(4) {
        transition-delay: .5s; }
      #mobile-menu.active .menu li:nth-child(5) {
        transition-delay: .6s; }

#main-menu {
  display: none; }
  @media (min-width: 800px) {
    #main-menu {
      display: block; }
      #main-menu .menu {
        display: flex;
        align-items: center;
        list-style-type: none;
        padding: 0;
        margin: 0; }
        #main-menu .menu li a {
          display: block;
          margin-left: 1.5rem;
          font-size: 0.9rem;
          font-weight: 300;
          letter-spacing: 0.1rem;
          color: #FFF;
          text-transform: uppercase;
          text-decoration-color: transparent; }
          #main-menu .menu li a:hover, #main-menu .menu li a:focus {
            color: #DBC652; }
        #main-menu .menu li:last-child a {
          border: 1px solid #DBC652;
          color: #DBC652;
          border-radius: 200px;
          padding: 0.7rem 1.5rem;
          transition: .3s; }
          #main-menu .menu li:last-child a:hover, #main-menu .menu li:last-child a:focus {
            background: #DBC652;
            color: #244220; } }

.site-footer {
  width: 100%;
  padding: 2rem 0;
  background: #244220; }
  .site-footer .container {
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap; }
    .site-footer .container .left {
      width: 100%;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center; }
      @media (min-width: 800px) {
        .site-footer .container .left {
          width: 50%;
          align-items: flex-start;
          text-align: left;
          justify-content: flex-start; } }
      .site-footer .container .left img {
        width: 100%;
        max-width: 150px; }
      .site-footer .container .left .tags {
        width: 100%;
        display: block;
        margin: 2rem 0;
        display: none; }
        @media (min-width: 576px) {
          .site-footer .container .left .tags {
            display: flex; } }
        .site-footer .container .left .tags .btn {
          display: inline-flex;
          background: none;
          border: 1px solid #DBC652;
          color: #DBC652;
          font-size: 0.7rem; }
          .site-footer .container .left .tags .btn:hover, .site-footer .container .left .tags .btn:focus {
            background: #DBC652;
            color: #244220; }
    .site-footer .container .right {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center; }
      @media (min-width: 800px) {
        .site-footer .container .right {
          width: 50%;
          align-items: flex-end;
          text-align: right;
          justify-content: flex-start; } }
      .site-footer .container .right .socials {
        margin-bottom: 2rem; }
        .site-footer .container .right .socials iconify-icon {
          color: #DBC652;
          border: 1px solid #DBC652;
          padding: 0.6rem;
          border-radius: 100px;
          transition: .3s; }
          .site-footer .container .right .socials iconify-icon:hover, .site-footer .container .right .socials iconify-icon:focus {
            background: #DBC652;
            color: #244220; }
      .site-footer .container .right a, .site-footer .container .right address {
        color: #FFF;
        text-decoration-color: transparent;
        font-style: normal;
        margin: 0 0 0.5rem 0; }
    .site-footer .container .footer-bottom {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      font-size: 0.8rem;
      color: #FFF;
      margin-top: 2rem; }
      @media (min-width: 800px) {
        .site-footer .container .footer-bottom {
          justify-content: flex-start;
          text-align: left; } }
      .site-footer .container .footer-bottom a {
        color: #FFF;
        text-decoration-color: transparent; }

.carousel {
  width: 100%;
  height: 600px;
  position: relative; }
  .carousel img {
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .carousel .slide {
    width: 100%;
    height: 600px;
    position: relative; }
  .carousel .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 2rem; }
    .carousel .overlay .container {
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start; }
    .carousel .overlay .title {
      font-size: 1.8rem;
      color: #FFF;
      letter-spacing: 0.3rem;
      text-transform: uppercase;
      padding: 0;
      margin: 0 0 0.5rem 0;
      opacity: 0;
      transform: translateX(-1rem);
      animation: faderight 1s ease;
      animation-delay: .3s;
      animation-fill-mode: forwards; }
      @media (min-width: 800px) {
        .carousel .overlay .title {
          font-size: 2.2rem; } }
    .carousel .overlay .text {
      font-size: 1.2rem;
      color: #FFF;
      padding: 0;
      margin: 0;
      font-weight: 300;
      max-width: 600px;
      opacity: 0;
      transform: translateX(-1rem);
      animation: faderight 1s ease;
      animation-delay: .5s;
      animation-fill-mode: forwards; }
    .carousel .overlay .btn {
      margin-top: 2rem;
      opacity: 0;
      transform: translateX(-1rem);
      animation: faderight 1s ease;
      animation-delay: .7s;
      animation-fill-mode: forwards; }
  .carousel .slick-arrows {
    position: absolute;
    bottom: 1rem;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 1.5rem; }
    .carousel .slick-arrows button {
      appearance: none;
      background: none;
      border: 0;
      cursor: pointer;
      padding: 0;
      margin: 0; }
      .carousel .slick-arrows button iconify-icon {
        display: flex;
        color: #FFF; }

.blog-header {
  width: 100%;
  background: #333;
  padding: 2rem;
  text-align: center; }
  .blog-header h2 {
    color: #FFF; }

.blog-main {
  display: flex;
  flex-wrap: wrap;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 1.25rem;
  padding: 2rem;
  max-width: 75rem;
  margin: 0 auto; }
  @media (min-width: 576px) {
    .blog-main {
      grid-template-columns: repeat(2, 1fr); } }
  @media (min-width: 992px) {
    .blog-main {
      grid-template-columns: repeat(3, 1fr); } }

.blog-post {
  display: flex;
  flex-direction: column;
  text-decoration: none; }
  @media (min-width: 576px) {
    .blog-post {
      width: 48%;
      margin: 0 1%; }
      @supports (display: grid) {
        .blog-post {
          width: 100%;
          margin: 0; } } }
  .blog-post .image {
    width: 100%;
    height: 300px;
    background-size: cover !important;
    background-position: center center !important; }
  .blog-post .meta {
    color: #222;
    text-transform: uppercase;
    font-size: 0.9rem; }
  .blog-post .title {
    color: #222;
    font-size: 1.2rem; }
  .blog-post p {
    color: #222; }

.post-single {
  width: 100%;
  max-width: 75rem;
  padding: 2rem;
  margin: 0 auto; }
  .post-single .attachment-post-thumbnail {
    width: 100%;
    height: auto; }

.share-buttons {
  font-size: 0.7rem;
  line-height: 0.7rem;
  letter-spacing: 0.063rem;
  text-transform: uppercase;
  margin: 0 0 3.75rem;
  z-index: 2;
  position: relative;
  text-align: center;
  list-style-type: none;
  padding: 0;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-content: flex-start; }
  .share-buttons li {
    height: auto;
    flex: 0 1 auto;
    width: calc(33.3333333% - 1px);
    margin-right: 0.063rem; }
    .share-buttons li:last-child {
      width: 33.3333333%;
      margin-right: 0; }
      .share-buttons li:last-child a {
        border-radius: 0 0.188rem 0.188rem 0; }
    .share-buttons li:first-child a {
      border-radius: 0.188rem 0 0 0.188rem; }
  .share-buttons svg {
    fill: #fff;
    margin-right: 0.313rem;
    width: 1rem;
    height: 1rem; }
  .share-buttons a {
    display: block;
    padding: 0.75rem 0.75rem 0.563rem;
    text-align: center;
    color: White; }

.share-twitter {
  background: #1da1f2; }

.share-facebook {
  background: #3b5998; }

.share-pinterest {
  background: #b5071a; }

.error {
  width: 100%;
  height: 100vh;
  background: #f6f6f6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column; }
  .error .content {
    max-width: 61.25rem;
    width: 100%;
    padding: 2rem;
    text-align: center; }
    .error .content h1 {
      font-size: 14rem;
      font-weight: 900;
      margin: 0;
      padding: 0;
      color: #222; }
    .error .content h3 {
      font-size: 5rem;
      font-weight: 900;
      color: #000;
      margin: 0;
      padding: 0; }
    .error .content h4 {
      font-size: 2rem;
      color: #000;
      margin-top: 0.625rem; }
    .error .content a {
      background: #FFF;
      border: 3px solid #222;
      color: #000;
      margin-top: 0.625rem;
      padding: 0.5rem 2rem;
      display: inline-block; }
      .error .content a:hover {
        background: #000;
        text-decoration: none;
        color: #FFF; }

html {
  box-sizing: border-box;
  font-family: "Outfit", serif; }

* {
  box-sizing: inherit; }

body {
  font-size: 16px;
  padding: 0;
  margin: 0; }

p {
  font-size: 1.1rem;
  line-height: 1.7rem;
  font-weight: 300; }

.entry-content .alignwide {
  margin-left: -80px;
  margin-right: -80px; }

.entry-content .alignfull {
  margin-left: calc( -100vw / 2 + 100% / 2 );
  margin-right: calc( -100vw / 2 + 100% / 2 );
  max-width: 100vw; }

.alignfull img {
  width: 100vw; }

.js-scroll {
  opacity: 0;
  transition: opacity 500ms; }

.js-scroll.scrolled {
  opacity: 1; }

.scrolled.fade-in {
  animation: fade-in 1s ease-in-out both; }

@keyframes fadein {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
@keyframes faderight {
  from {
    opacity: 0;
    transform: translateX(-1rem); }
  to {
    opacity: 1;
    transform: translateX(0); } }
@keyframes fadeup {
  from {
    opacity: 0;
    transform: translateY(1rem); }
  to {
    opacity: 1;
    transform: translateY(0); } }
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap; }

.btn, #gform_submit_button_1, #gform_submit_button_4 {
  background: #DBC652;
  padding: 0.7rem 1.5rem;
  border-radius: 200px;
  color: #244220;
  text-decoration-color: transparent;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  border: 0;
  transition: .3s;
  cursor: pointer; }
  .btn:hover, .btn:focus, #gform_submit_button_1:hover, #gform_submit_button_1:focus, #gform_submit_button_4:hover, #gform_submit_button_4:focus {
    background: #244220;
    color: #DBC652; }

#gform_submit_button_4 {
  background: #244220;
  color: #DBC652;
  font-size: 0.9rem; }

h2 {
  font-size: 2rem;
  line-height: 2.5rem;
  letter-spacing: 0.3rem;
  text-transform: uppercase;
  color: #244220;
  font-weight: 300;
  padding: 0;
  margin: 0 0 2rem 0; }

.home-text {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: flex;
  flex-wrap: wrap;
  overflow: visible; }
  @media (min-width: 800px) {
    .home-text {
      justify-content: space-between;
      align-items: center; } }
  .home-text article {
    width: 100%; }
    @media (min-width: 800px) {
      .home-text article {
        width: 50%; } }
    .home-text article h1 {
      font-size: 2rem;
      font-weight: 400;
      text-transform: uppercase;
      letter-spacing: 0.3rem;
      color: #244220;
      padding: 0;
      margin: 0; }
    .home-text article p:last-child {
      margin-bottom: 0; }
    .home-text article .btn {
      margin-top: 1rem;
      display: inline-block; }
  .home-text .image {
    display: none; }
    @media (min-width: 800px) {
      .home-text .image {
        display: flex;
        margin-left: 1rem;
        width: 350px;
        height: 350px;
        border: 1px solid #DBC652;
        border-radius: 100%;
        overflow: hidden;
        position: relative;
        padding: 1rem; } }
  @media (min-width: 800px) and (min-width: 992px) {
    .home-text .image {
      width: 400px;
      height: 400px; } }
    @media (min-width: 800px) {
        .home-text .image .box {
          width: 100%;
          height: 100%;
          background: pink;
          border-radius: 100%;
          overflow: hidden; }
          .home-text .image .box img {
            width: 100%;
            height: 100%;
            object-fit: cover; } }

.home-services {
  width: 100%;
  background: linear-gradient(90deg, #244220 0%, #214B23 100%);
  padding: 4rem 2rem;
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  align-items: center;
  justify-content: center; }
  .home-services .boxes {
    display: grid;
    grid-gap: 2rem;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto; }
    @media (min-width: 800px) {
      .home-services .boxes {
        grid-template-columns: repeat(3, 1fr); } }
  .home-services h2 {
    font-size: 2rem;
    letter-spacing: 0.3rem;
    text-transform: uppercase;
    color: #FFF;
    font-weight: 300;
    text-align: center;
    padding: 0;
    margin: 0 0 2rem 0; }
  .home-services a {
    text-decoration-color: transparent; }
    @media (min-width: 800px) {
      .home-services a {
        text-align: left; } }
    .home-services a:hover .image img, .home-services a:focus .image img {
      transform: scale(1.1, 1.1); }
    .home-services a .image {
      width: 100%;
      height: 300px;
      border-radius: 10px;
      overflow: hidden; }
      .home-services a .image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .3s; }
    .home-services a h3 {
      color: #DBC652;
      text-transform: uppercase;
      letter-spacing: 0.3rem;
      font-weight: 300; }

.home-instagram {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem;
  text-align: center; }
  .home-instagram h2 {
    text-align: center; }

.home-process {
  width: 100%;
  background: linear-gradient(90deg, #244220 0%, #214B23 100%);
  padding: 4rem 2rem;
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  align-items: center;
  justify-content: center; }
  .home-process h2 {
    color: #FFF;
    margin: 0 0 4rem 0; }
  .home-process .steps {
    display: grid;
    grid-gap: 2rem;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto; }
    @media (min-width: 500px) {
      .home-process .steps {
        grid-template-columns: repeat(2, 1fr); } }
    @media (min-width: 800px) {
      .home-process .steps {
        grid-template-columns: repeat(4, 1fr); } }
    .home-process .steps .box span {
      color: #DBC652;
      border-radius: 200px;
      width: 50px;
      height: 50px;
      font-size: 1.1rem;
      border: 1px solid #DBC652;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      position: relative; }
      .home-process .steps .box span:after {
        content: ' ';
        position: absolute;
        width: 60px;
        height: 60px;
        border: 1px solid #DBC652;
        border-radius: 200px;
        top: 50%;
        transform: translateY(-50%); }
    .home-process .steps .box h3 {
      font-weight: 300;
      color: #DBC652;
      text-transform: uppercase;
      font-size: 1.2rem;
      letter-spacing: 0.2rem;
      padding: 0;
      margin: 1rem 0 0 0; }
    .home-process .steps .box p {
      color: #FFF; }

.home-testimonials {
  width: 100%;
  padding: 4rem 2rem;
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  align-items: center;
  justify-content: center;
  flex-direction: column; }
  .home-testimonials h2 {
    margin: 0 0 4rem 0; }
  .home-testimonials .testimonials {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto; }
    .home-testimonials .testimonials .review {
      background: rgba(215, 198, 100, 0.2);
      margin: 0 1rem;
      padding: 2rem;
      border-radius: 8px; }
      .home-testimonials .testimonials .review p {
        margin: 0;
        padding: 0; }
  .home-testimonials .slick-dots {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 2rem; }
    .home-testimonials .slick-dots button {
      font-size: 0;
      appearance: none;
      cursor: pointer;
      background: #DBC652;
      border: 0;
      width: 15px;
      height: 15px; }
    .home-testimonials .slick-dots .slick-active button {
      background: #244220; }

.cta {
  width: 100%;
  position: relative; }
  @media (min-width: 800px) {
    .cta {
      height: 500px; } }
  .cta img {
    width: 100%; }
    @media (min-width: 800px) {
      .cta img {
        height: 100%;
        object-fit: cover; } }
  .cta .overlay {
    width: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center; }
    @media (min-width: 800px) {
      .cta .overlay {
        position: absolute;
        width: 500px;
        border-top: 4px solid #DBC652;
        top: 50%;
        transform: translateY(-50%);
        background: #FFF;
        left: 0;
        right: 0;
        margin: 0 auto;
        border-radius: 10px; } }
    .cta .overlay .btn {
      margin-top: 2rem; }
    .cta .overlay h2 {
      margin: 0 0 0.5rem 0; }
    .cta .overlay p {
      margin: 0; }

.page-header {
  width: 100%;
  height: 350px;
  position: relative; }
  .page-header img {
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .page-header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center; }
    .page-header .overlay h1 {
      font-size: 3rem;
      line-height: 2rem;
      font-weight: 300;
      letter-spacing: 0.2rem;
      color: #FFF;
      padding: 0;
      margin: 0;
      text-transform: uppercase;
      opacity: 0;
      transform: translateY(1rem);
      animation: fadeup 1s ease;
      animation-delay: .3s;
      animation-fill-mode: forwards; }

.services-content {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 4rem 2rem;
  opacity: 0;
  transform: translateY(1rem);
  animation: fadeup 1s ease;
  animation-fill-mode: forwards;
  animation-delay: .5s; }

.std-page {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 4rem 2rem; }

.std-page-small {
  max-width: 800px;
  opacity: 0;
  transform: translateY(1rem);
  animation: fadeup 1s ease;
  animation-delay: .5s;
  animation-fill-mode: forwards; }
  .std-page-small input[type='text'], .std-page-small input[type='email'], .std-page-small input[type='tel'], .std-page-small textarea {
    border: 1px solid #ccc;
    height: 40px;
    background: #fafafa;
    border-radius: 4px; }
  .std-page-small textarea {
    height: 80px; }

.grecaptcha-badge {
  visibility: hidden; }

.services-content-main {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: flex;
  flex-wrap: wrap;
  position: relative; }
  .services-content-main article {
    width: 100%; }
    @media (min-width: 800px) {
      .services-content-main article {
        width: 70%;
        padding-right: 6rem; } }
    .services-content-main article p {
      font-size: 1.2rem;
      line-height: 2rem; }
      .services-content-main article p a {
        color: #244220; }
      .services-content-main article p strong {
        color: #244220;
        font-weight: 500; }
    .services-content-main article li {
      font-size: 1.2rem;
      line-height: 2rem;
      font-weight: 300; }
  .services-content-main aside {
    width: 100%; }
    @media (min-width: 800px) {
      .services-content-main aside {
        width: 30%; } }

.wp-block-gallery {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 1.5rem !important; }
  @media (min-width: 800px) {
    .wp-block-gallery {
      grid-template-columns: repeat(3, 1fr); } }
  .wp-block-gallery .wp-block-image {
    border-radius: 12px;
    overflow: hidden;
    transition: .3s;
    border: 5px solid transparent; }
    .wp-block-gallery .wp-block-image:hover, .wp-block-gallery .wp-block-image:focus {
      border: 5px solid #DBC652; }

.wp-block-gallery.has-nested-images figure.wp-block-image:not(#individual-image) {
  width: 100% !important; }

.form {
  background: #DBC652;
  padding: 2rem;
  border-radius: 10px;
  position: sticky;
  top: 0; }
  .form h2 {
    font-size: 1.5rem;
    font-weight: 600;
    padding: 0;
    margin: 0; }
  .form p {
    padding: 0;
    margin: 0 0 1rem 0; }
  .form .gfield_label {
    font-weight: 300 !important; }
  .form input[type='text'], .form input[type='email'], .form input[type='tel'], .form textarea {
    border: 1px solid #ccc;
    height: 40px;
    background: #fafafa;
    border-radius: 4px; }
  .form .gfield_consent_label a {
    color: #244220; }

.gform_description {
  display: none; }

#form-quote {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  background: #DBC652;
  padding: 0.8rem 1.5rem;
  border-radius: 200px;
  font-size: 0.9rem;
  color: #244220;
  text-decoration-color: transparent;
  text-transform: uppercase; }
  @media (min-width: 800px) {
    #form-quote {
      display: none; } }

/* animation css
opacity: 0;
      -webkit-animation: fadein 2s;
      -moz-animation: fadein 2s;
      -ms-animation: fadein 2s;
      -o-animation: fadein 2s;
      animation: fadein 2s;
      animation-delay: 1s;
      -webkit-animation-fill-mode: forwards;   */

/*# sourceMappingURL=style.css.map */
