/*
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: #000;
  display: flex;
  flex-wrap: wrap;
  position: fixed;
  width: 100%;
  z-index: 100; }
  .site-header .container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem; }
  .site-header .logo img {
    max-width: 15rem;
    height: auto; }
    @media (min-width: 992px) {
      .site-header .logo img {
        max-width: 15rem; } }
  .site-header #mobile-button {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    border: 0;
    background: none;
    cursor: pointer;
    -webkit-appearance: none; }
    .site-header #mobile-button .iconify {
      width: 25px;
      height: 25px;
      color: #FFF; }
      .site-header #mobile-button .iconify:hover, .site-header #mobile-button .iconify:focus {
        color: #EFD734; }
    @media (min-width: 992px) {
      .site-header #mobile-button {
        display: none; } }
  .site-header #close-button {
    position: absolute;
    top: 50px;
    right: 1rem;
    -webkit-appearance: none;
    background: none;
    border: 0;
    cursor: pointer; }
    .site-header #close-button .iconify {
      width: 25px;
      height: 25px;
      color: #FFF; }

#mobile-menu {
  width: 100%;
  height: 100%;
  position: relative;
  background: #000;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  height: 0;
  margin: 0;
  padding: 0;
  transition: .3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; }
  @media (min-width: 992px) {
    #mobile-menu {
      display: none; } }
  #mobile-menu.active {
    opacity: 1;
    visibility: visible;
    height: 300px;
    transition: .3s; }
  #mobile-menu .menu-main-menu-container {
    width: 100%; }
  #mobile-menu .menu {
    text-align: left; }
    #mobile-menu .menu li a {
      display: block;
      padding: 0.5rem 0;
      color: #FFF;
      text-transform: uppercase;
      transition: .3s; }
      #mobile-menu .menu li a:hover, #mobile-menu .menu li a:focus {
        color: #EFD734; }
  #mobile-menu .sub-menu {
    list-style-type: none;
    padding: 0;
    border-top: 1px solid #CCC;
    border-bottom: 1px solid #CCC;
    display: none; }
    #mobile-menu .sub-menu.active {
      display: block; }

#main-menu {
  display: none; }
  @media (min-width: 992px) {
    #main-menu {
      display: flex; } }
  #main-menu .menu {
    position: relative; }
  #main-menu .menu li {
    position: relative; }
  #main-menu .menu li .sub-menu {
    opacity: 0;
    visibility: hidden;
    transition: .3s; }
  #main-menu .menu li:hover .sub-menu {
    opacity: 1;
    visibility: visible; }
  #main-menu .sub-menu {
    position: absolute;
    top: 35px;
    right: 0;
    padding-left: 0;
    max-width: 300px;
    min-width: 150px;
    background: #eee; }
    #main-menu .sub-menu a {
      display: block;
      padding: 0.5rem; }

.menu {
  list-style-type: none;
  padding-left: 0; }
  .menu li {
    padding: 0.5rem 0; }
    @media (min-width: 992px) {
      .menu li {
        display: inline;
        padding: 0.5rem 1rem; } }
  .menu a {
    color: #FFF;
    font-size: 1.2rem;
    text-transform: uppercase;
    font-weight: 900;
    text-decoration: none;
    transition: .3s; }
    .menu a:hover {
      color: #EFD734; }

.site-header-alt {
  position: relative; }
  .site-header-alt a {
    color: #FFF;
    font-size: 1.2rem;
    text-transform: uppercase;
    font-weight: 900;
    text-decoration: none;
    transition: .3s; }
    .site-header-alt a:hover, .site-header-alt a:focus {
      color: #EFD734; }

footer {
  background: #000;
  width: 100%;
  text-align: center;
  padding: 1rem; }
  footer p {
    color: #FFF; }
    footer p a {
      color: #FFF;
      text-decoration: none; }
      footer p a:focus, footer p a:hover {
        color: #EFD734; }

.flexslider {
  max-height: 600px;
  overflow: hidden;
  margin: 0;
  border: 0 !important; }

.slide-img {
  width: 100%;
  height: 600px;
  background-size: cover !important;
  background-position: center center !important;
  position: relative; }
  .slide-img .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center; }

.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: #000;
    text-transform: uppercase;
    font-size: 0.9rem; }
  .blog-post .title {
    color: #000;
    font-size: 1.2rem; }
  .blog-post p {
    color: #000; }

.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: #EFD734;
  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: #000; }
    .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 #000;
      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: rustica, sans-serif;
  font-size: 16px; }

* {
  box-sizing: inherit; }

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

.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; } }
@-moz-keyframes fadein {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
@-webkit-keyframes fadein {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
@-ms-keyframes fadein {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
@-o-keyframes fadein {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
@-webkit-keyframes slideInFromRight {
  from {
    -webkit-transform: translate3d(400%, 0, 0);
    transform: translate3d(400%, 0, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
@keyframes slideInFromRight {
  from {
    -webkit-transform: translate3d(400%, 0, 0);
    transform: translate3d(400%, 0, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
.slideInFromRight {
  -webkit-animation-name: slideInFromRight;
  animation-name: slideInFromRight; }

@keyframes bounceInUp {
  from,
  40%,
  55%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.1, 0.6, 0.34, 1);
    animation-timing-function: cubic-bezier(0.1, 0.6, 0.34, 1); }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0); }
  40% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  55% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0); }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp; }

.yellow-btn {
  background: #EFD734;
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: 900;
  font-size: 1.2rem;
  text-transform: uppercase;
  text-decoration: none; }
  .yellow-btn:hover, .yellow-btn:focus {
    background: #000;
    color: #EFD734; }

.home-hero {
  width: 100%;
  background: #EFD734;
  overflow: hidden;
  padding-top: 94px; }
  .home-hero .container {
    padding: 4rem 2rem 0 2rem;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column-reverse;
    position: relative; }
    @media (min-width: 801px) {
      .home-hero .container {
        flex-direction: row;
        height: 600px; } }
    .home-hero .container .left {
      height: 400px;
      overflow: hidden;
      position: relative;
      animation: bounceInUp 3s; }
      .home-hero .container .left .man-pic {
        width: 350px; }
      @media (min-width: 801px) {
        .home-hero .container .left {
          width: 40%;
          height: 600px; } }
    .home-hero .container .right {
      animation: bounceInUp 2s; }
      .home-hero .container .right h1 {
        padding: 0;
        margin: 0 0 2rem 0;
        font-size: 2rem;
        line-height: 2rem;
        text-transform: uppercase; }
      .home-hero .container .right ul {
        list-style-type: none;
        padding-left: 0;
        margin-bottom: 2rem; }
      .home-hero .container .right ul > li {
        background-image: url("/wp-content/uploads/2022/04/tick.png");
        padding: 4px 10px 0 50px;
        background-position: 0 0;
        background-repeat: no-repeat;
        background-size: contain; }
      .home-hero .container .right li {
        margin: 0 0 1rem 0;
        font-size: 1.3rem; }
      .home-hero .container .right p strong {
        font-size: 1.5rem;
        letter-spacing: 0.1rem; }
      @media (min-width: 801px) {
        .home-hero .container .right {
          width: 60%; } }

.van-pic {
  position: absolute;
  bottom: 0;
  left: 100px;
  width: 400px;
  -webkit-animation: slideInFromRight 3s;
  animation: slideInFromRight 3s; }

.home-text {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: flex;
  flex-wrap: wrap; }
  .home-text .text {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center; }
    @media (min-width: 801px) {
      .home-text .text {
        width: 60%;
        margin-right: 5%;
        margin-bottom: 0; } }
    .home-text .text h2, .home-text .text h3 {
      font-size: 2rem;
      text-transform: uppercase;
      padding: 0;
      margin: 0 0 1rem 0; }
    .home-text .text a {
      background: #EFD734;
      color: #000;
      padding: 0.5rem 1rem;
      border-radius: 6px;
      font-weight: 900;
      font-size: 1.2rem;
      text-transform: uppercase;
      text-decoration: none; }
      .home-text .text a:hover, .home-text .text a:focus {
        background: #000;
        color: #EFD734; }
  .home-text .image img {
    width: 100%;
    height: 100%;
    object-fit: cover; }
  @media (min-width: 801px) {
    .home-text .image {
      width: 35%; } }

.paralax {
  width: 100%;
  height: 300px;
  background-size: cover !important;
  background-attachment: fixed !important;
  position: relative; }
  @media (hover: none) {
    .paralax {
      background-attachment: scroll !important; } }
  .paralax .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center; }
    .paralax .overlay h3 {
      font-size: 2rem;
      line-height: 2rem;
      color: #EFD734;
      text-transform: uppercase; }

.what-we-do {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem;
  text-align: center; }
  .what-we-do h3 {
    font-size: 2rem;
    padding: 0;
    margin: 0 0 1rem 0;
    text-transform: uppercase; }
  .what-we-do p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem; }
  .what-we-do .subheading {
    margin-top: 4rem;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    padding: 0; }

.logos {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 2rem; }
  @media (min-width: 375px) {
    .logos {
      grid-template-columns: repeat(2, 1fr); } }
  @media (min-width: 801px) {
    .logos {
      grid-template-columns: repeat(3, 1fr); } }
  @media (min-width: 992px) {
    .logos {
      grid-template-columns: repeat(4, 1fr); } }
  .logos .logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 4rem; }
    .logos .logo h4 {
      font-size: 1.2rem;
      text-transform: uppercase;
      padding: 0;
      margin: 0.5rem 0 0 0; }
  .logos .icon {
    background: #EFD734;
    border-radius: 100%;
    padding: 2rem; }
    .logos .icon .iconify {
      width: 100px;
      height: 100px; }

.contact-form {
  width: 100%;
  background: #EFD734;
  padding: 4rem 2rem;
  text-align: center; }
  .contact-form h3 {
    font-size: 2rem;
    padding: 0;
    margin: 0;
    text-transform: uppercase; }
  .contact-form p {
    font-size: 1.2rem;
    padding: 0;
    margin: 0; }
  .contact-form #gform_wrapper_3 {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    margin-top: 4rem;
    text-align: left; }
    .contact-form #gform_wrapper_3 .gfield_label, .contact-form #gform_wrapper_3 label {
      font-weight: 400 !important; }
    .contact-form #gform_wrapper_3 #gform_submit_button_3 {
      -webkit-appearance: none;
      background: #000;
      color: #EFD734;
      padding: 0.5rem 2rem;
      border-radius: 6px;
      border: 0;
      font-size: 1.5rem;
      cursor: pointer;
      font-weight: 900;
      text-transform: uppercase; }
      .contact-form #gform_wrapper_3 #gform_submit_button_3:hover, .contact-form #gform_wrapper_3 #gform_submit_button_3:focus {
        background: rgba(0, 0, 0, 0.8); }
  .contact-form .gform_wrapper.gravity-theme .gform_footer, .contact-form .gform_wrapper.gravity-theme .gform_page_footer {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center; }

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

/* 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 */
