h1, h2, h3, h4, h5, h6, a{
  color: #4f9d33;
}
h1, h2, h3, h4, h5, h6, a, p, span{
  word-break: keep-all;
}
.textBig p{
  font-size: 2.5rem;
}
p a{
  text-decoration: none;
  font-weight: 600;
  display: inline;
}
.two-columns {
  column-count: 2;
  column-gap: 32px;
}
@media screen and ( max-width: 1200px ){
  h2{
    font-size: 35px!important;
  }
  .two-columns {
    column-count: 1;
    column-gap: 0;
  }
}
footer{
  background-image: url('../images/circlesFooter.svg');
  color: white!important;
}
footer a{
  color: white!important;
}
footer ul{
  display: block;
  margin: 0;
  padding: 0;
}
footer ul li{
  display: inline-block;
}
footer ul li a{
  font-size: 1.2rem!important;
}
footer ul li:after{
  content: "-";
  margin: 0 10px;
}
footer ul li:last-child:after{
  content: "";
  margin: 0;
}
footer p.fs-1{
  font-size: 4rem!important;
  line-height: 1.2!important;
}
/* ====== CALL TO ACTION ====== */
#callToAct{
	position: fixed;
	right: 0;
	top: 50%;
  transform: translate(0, -50%);
	z-index: 5;
}
.email-options {
  display: none;
  flex-direction: column;
  position: absolute;
  left: -250px;
  top: 0;
  background: white;
  color: #000;
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 0;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  width: max-content;
  z-index: 999;
  width: 250px;
}
.email:hover .email-options {
  display: flex;
}
.callLink{
	display: block;
	margin-bottom: 5px;
	width: 55px;
	height: auto;
}
@media screen and ( max-width: 1200px ){
	#callToAct{
		top: auto;
		bottom: 0;
	}
	.callLink{
		margin: 10px 0;
		width: 35px;
		height: auto;
	}
  footer p.fs-1{
    margin-top: 20px;
    font-size: 1.5rem!important;
  }
  footer ul li:after{
    content: "";
    margin: 0;
  }
}
#carouselIndicatorsCats .carousel-control-prev-icon, #carouselIndicatorsHire .carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}
#carouselIndicatorsCats .carousel-control-next-icon, #carouselIndicatorsHire .carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.greenCircleBg #carouselIndicatorsCats .carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
    filter: invert(100%);
}
.greenCircleBg #carouselIndicatorsCats .carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    filter: invert(100%);
}
.carousel-item-next, .carousel-item-prev, .carousel-item.active{
  display: flex!important;
}
#carouselIndicatorsCats .carousel-control-next, #carouselIndicatorsCats .carousel-control-prev{
  top: auto;
}
#carouselIndicatorsCats .carousel-control-prev{
  left: 30%;
}
#carouselIndicatorsCats .carousel-control-next{
  right: 30%;
}
.whatIcon{
  height: 100px;
}
@supports (display: grid) {
  .grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto 1fr auto;

    grid-template-areas:
      "header header header"
      "title title footer"
      "main main main";
    @media screen and (max-width: 500px) {
      grid-template-columns: 1fr;
      grid-template-rows: 0.3fr 1fr auto 1fr;
      grid-template-areas:
        "header"
        "title"
        "main"
        "footer";
    }
  }

  .grid-item {
    color: #fff;
    padding: 3.5em 1em;
    font-size: 1em;
    font-weight: 700;
  }
  .postsFeed .grid-item{
    color: black;
  }
  .postsFeed .grid-item .greenTxt{
    color: #4f9d33;
  }
  .main {
    grid-area: main;
    padding: 0;
    overflow-x: hidden;
    overflow-y: hidden;
  }

  .footer {
    grid-area: footer;
    padding: 0.6em;
  }

  .catitems {
    position: relative;
    width: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
    white-space: nowrap;
    transition: all 0.2s;
    will-change: transform;
    user-select: none;
    cursor: pointer;
  }

  .item {
    display: inline-block;
    min-height: 200px;
    min-width: 200px;
		width: 30%;
    margin: 2em 1em;
  }
}

a {
  display: block;
  text-decoration: none;
  &:hover {
    cursor: pointer;
  }
}


.hovHidden{
	opacity: 0;
	text-wrap: wrap;
}
.hover:hover{
	background: rgba(0,0,0,0.5);
}
.hover:hover .hovHidden{
	opacity: 1;
}
.hover h3{
	color: white;
}
.square{
  aspect-ratio: 1 / 1;
}
.square h3{
  text-wrap: wrap;
}

@media screen and ( max-width: 992px ){
  .square h3{
    font-size: 1.3rem;
  }
}
/* ====== HOME HEADER ====== */
.scrolling-wrapper {
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  animation: scrolling-wrapper 35s linear infinite;
}

.scrolling-wrapper p {
  display: inline-block;
}
.section-scroll {
  pointer-events: none;
  user-select: none;
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 100%;
  transform: translate(-50%, -50%);
  overflow: hidden;
  z-index: 3;
}

.hero-section {
  position: fixed;
  height: 100vh; /* full screen height */
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 3rem;
  z-index: -1;
}
.content-section {
  background: white!important;
}
.hero-spacer {
  height: 200vh; /* same height as hero-section */
}

.bannerHome{
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-scroll p {
  font-size: 7vw;
  color: gray;
}
.bannerWrap .section-scroll{
	mix-blend-mode: difference;
	color: white;
}
.bannerWrap .section-scroll p{
	text-transform: none;
}
.bannerWrap.greenTxt .section-scroll{
	mix-blend-mode: normal;
	color: #4f9d33!important;
}
.greenTxt .section-scroll p {
  font-size: 11vw;
  color: #4f9d33!important;
}


 {
    position: relative;
    height: 100vh; /* Full viewport height */
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.pin-content {
    position: sticky;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 80%;
    height: 100vh; /* Ensures the content stays visible */
    background-color: rgba(255, 255, 255, 0.8); /* Slight transparency */
    padding: 20px;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease-out;
}
.circle-videoContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100vw;
    height: 100dvh;
    background-color: #000;
    overflow: hidden;
    clip-path: circle(300px at center);
}
.overlay-vid2 {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}
.circle-videoContainer video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.banner-scroll-text {
    width: 20%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 999;
    mix-blend-mode: difference;
}
.banner-scroll-text h1 {
    font-size: clamp(16px, 1.2vw, 25px);
    line-height: 1.3;
    color: gray;
}
.spin{
  height: 95%;
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  -webkit-animation:spin 4s linear infinite;
    -moz-animation:spin 4s linear infinite;
    animation:spin 16s linear infinite;
}
@-moz-keyframes spin {
    100% { -moz-transform: translate(-50%, -50%) rotate(360deg); }
}
@-webkit-keyframes spin {
    100% { -webkit-transform: translate(-50%, -50%) rotate(360deg); }
}
@keyframes spin {
    100% {
        -webkit-transform: translate(-50%, -50%) rotate(360deg);
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.circle-wrapper {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: transform 0.3s ease-out;
}
.circle-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}
.circle-overlay-content {
    position: absolute;
    text-align: center;
    color: white;
}
.circle-overlay-content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}
.circle-overlay-content p {
    font-size: 1.2rem;
}

@media screen and (max-width: 768px) {
    .circle-wrapper {
        width: 250px;
        height: 250px;
    }

    .circle-overlay-content h1 {
        font-size: 2.5rem;
    }

    .circle-overlay-content p {
        font-size: 1rem;
    }
}

@keyframes scrolling-wrapper {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}


/* ====== GENERIC HEADER ====== */
.header{
  height: 100vh;
  min-height: 600px;
  color: white!important;
}
.header h1{
  color: white!important;
  font-size: 160px;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: -35px;
}
.headerTitle{
  padding-top: 100px;
  background-image: url('../images/headerCircle.png');
  background-repeat: no-repeat;
  background-position: left;
  background-size: auto 100%;
}

.headerSmall{
  min-height: 400px;
  color: #4f9d33!important;
}
.headerSmall h1{
  color: #4f9d33!important;
  font-size: 90px;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: -35px;
}

.semi-circle {
  position: absolute;
  bottom: 0;
  left: -200px;
  width: 700px;
  height: 350px;
  background-color: rgba(0, 128, 0, 0.6);
  border-top-left-radius: 700px;
  border-top-right-radius: 700px;
  mix-blend-mode: darken;
}

@media screen and ( max-width: 1200px ){
  .header h1{
    font-size: 40px;
    margin-bottom: -15px;
  }
  .semi-circle {
    left: -200px;
    width: 400px;
    height: 200px;
    background-color: rgba(0, 128, 0, 0.6);
    border-top-left-radius: 400px;
    border-top-right-radius: 400px;
  }
  .circle-videoContainer {
    background-color: #fff;
    overflow: hidden!important;
    clip-path: none!important;
  }
  .overlay-vid2{
    background: #fff;
  }
  .banner-scroll-text{
    width: auto;
  }
  .circle-videoContainer video {
    display: none;
  }
  .section-scroll p {
    font-size:20vw;
  }
}
@media screen and ( max-width: 1200px ){
  .siteLogo img{
    height: 100px!important;
  }
}

/* ====== NAV BURGER ====== */
#bar{
  z-index: 1000;
}
#sideNavigation .dropdown-menu, #sideNavigation .dropdown-menu.show{
  position: static!important;
  transform: none!important;
  width: 100%;
  border: none!important;
  background-color: transparent!important;
  margin: 0;
  padding: 0;
}
.dropdown-menu{
  height: 0;
  max-height: 0;
  opacity: 0;
  transition: 0.8s;
}
.dropdown-menu.show{
  height: auto;
  opacity: 1;
  max-height: 1000px;
  transition: 0.8s;
}
.dropdown-item.active, .dropdown-item:active, .dropdown-item:focus, .dropdown-item:hover{
	background: none!important;
}
.navbar-toggle{
	z-index: 100000;
	display: inline;
  position: fixed;
	right: 0;
	top: 0;
	width: auto;
	margin: 0;
	background-color: white;
}
.hamburger {
  padding: 12px 12px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: white;
	border-radius: 0;
  border: 0;
  overflow: visible;
}
.hamburger:hover {
  opacity: 0.7;
}
.hamburger.is-active:hover {
  opacity: 0.7;
}
.hamburger.is-active .hamburger-inner, .hamburger.is-active .hamburger-inner::before, .hamburger.is-active .hamburger-inner::after {
  background-color: #51a233;
  color: transparent;
}
.hamburger-box {
  width: 55px;
  height: 18px;
  display: inline-block;
  position: relative;
  margin-top: 10px;
}
.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 55px;
  height: 3px;
  background-color: transparent;
  font-size: 19px;
  color: #51a233;
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: 0;
  transform: rotate(90deg);
}
.hamburger-inner::after {
  bottom: 0;
  transform: rotate(90deg);
}
.hamburger--spin .hamburger-inner {
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin .hamburger-inner::before {
  transition: top 0.3s 0.5s ease-in, opacity 0.1s ease-in;
}
.hamburger--spin .hamburger-inner::after {
  transition: bottom 0.3s 0.5s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.3s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spin.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.3s ease-out, opacity 0.3s 0.3s ease-out;
}
.hamburger--spin.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.3s ease-out, transform 0.3s 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
#sideNavigation{
  color: black!important;
}
#sideNavigation p a{
  font-size: 1em!important;
  text-transform: lowercase;
}
#overlay{
  position: fixed;
  z-index: 1500;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0.7;
  transition: opacity 0.3s;
    -moz-transition: opacity 0.3s;
    -webkit-transition: opacity 0.3s;
  display: none;
}
#sideNavigation #menu-header-menu, #socialNav{
  transition: opacity 0.3s;
    -moz-transition: opacity 0.3s;
    -webkit-transition: opacity 0.3s;
  opacity: 0;
}
#socialNav{
	text-align: left;
}
#navLink{
  width: 40px;
  height: auto;
}
.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 10000;
    top: 0;
    right: 0;
    background-color: white;
    overflow-x: hidden;
    padding-top: 60px;
    transition: 0.5s;
    text-align: right;
}
.sidenav a, .sidenav a:not([href]):not([tabindex]) {
    text-decoration: none;
    font-size: 2rem;
    color: black;
    display: block;
    transition: 0.15s;
    margin-bottom: 15px;
		margin-right: 10px;
}
.sidenav a .footLogo{
	width: 30px;
	height: auto;
}
.sidenav a.social{
  display: inline-block;
}
.sidenav #socialNav a, .sidenav #socialNav a:not([href]):not([tabindex]) {
    border-bottom: none;
}
.sidenav a:hover, .offcanvas a:focus{
    color: black;
}
.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}
.sidenav li{
  display: block;
	text-align: left
}
#main {
    padding: 20px;
}
body {
  overflow-x: hidden;
}
.topnav {
    overflow: hidden;
    top: 0;
}
.topnav a {
    display: inline;
    padding: 0;
    text-decoration: none;
    position: relative;
    border: none;
}
.topnav p a {
    float: none;
    display: inline;
    text-align: left;
    padding: 0;
    text-decoration: none;
    width: auto;
}
.topnav>p{
    margin: 8px 15px;
}
.topnav a.active {
    background-color: #4CAF50;
    color: black;
}
a svg{
  transition:all .5s ease;
  &:hover{
    #transform:rotate(180deg);
  }
}
#ico{
  display: none;
}
#sideNavigation #socialNav, #sideNavigation #menu-header-menu{
  margin: 30px 50px;
	padding: 0;
}
.menu{
  transition: all 0.5s ease;
  a{
    display: inline-block;
    color: black;
    margin: 3px 0;
    text-decoration: none;
		font-size: 2rem;
  }
}
@media(max-width: 992px){
  .sidenav ul{
    display: block;
  }
  .sidenav li{
    display: block;
    width: 100%;
    margin-bottom: 20px;
  }
  ul .sub-menu {
    padding-inline-start: 0;
  }
  .sub-menu li{
    display: block;
    width: 100%;
    margin-bottom: 5px;
  }
  .sub-menu li a{
    font-weight: 300;
  }
  .menu{
    margin-right: 0;
  }
}
@media screen and ( max-width: 1200px ){
  .menu{
    a{
  		font-size: 1.2rem;
    }
  }
}
/* ====== NAV BURGER ====== */

/* ====== SEARCH ====== */
.wp-block-search__button.wp-element-button{
  color: white;
  background: rgb(81, 162, 51);
  border: none;
}
.dotWrapper {
    height: 145.76vw;
    left: 50%;
    position: relative;
    -webkit-transform: translate(-50%);
    transform: translate(-50%);
    width: 91.1vw;
}
@media only screen and (min-width: 1024px) {
    .dotWrapper {
        height: 36.846vw;
        width: 80.1vw;
    }
}
.dot {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    border-radius: 50%;
    cursor: pointer;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    justify-content: center;
    overflow: hidden;
    padding: 4.005vw;
    position: absolute;
    -webkit-transition: width 1s, height 1s, top 1s, left 1s;
    transition: width 1s, height 1s, top 1s, left 1s;
}
.dot .headline-kpi {
    font-size: 8vw;
    text-align: center;
    -webkit-transition: all 1s;
    transition: all 1s;
}
@media only screen and (min-width: 1024px) {
    .dot .headline-kpi {
        font-size: 2vw;
        line-height: 3rem;
    }
}
.dot .content {
    -ms-flex-item-align: center;
    -webkit-align-self: center;
    align-self: center;
    display: none;
    text-align: center;
    -webkit-transition: all 1s;
    transition: all 1s;
    width: 28.836vw;
    width: 200px;
}
@media only screen and (min-width: 1024px) {
    .dot .content {
        width: 300px;
        font-size: 12px;
    }
}
@media only screen and (min-width: 1440px) {
    .dot .content {
        width: 400px;
        font-size: 18px;
    }
}
@media only screen and (min-width: 1920px) {
    .dot .content {
        width: 450px;
        font-size: 20px;
    }
}
.dot.large .headline-kpi {
    font-size: 10vw;
    -webkit-transition: all 1s;
    transition: all 1s;
}
@media only screen and (min-width: 1440px) {
    .dot.large .headline-kpi {
        font-size: 3vw;
        line-height: 4rem!important;
    }
}
@media only screen and (min-width: 1024px) {
    .dot.large .headline-kpi {
        font-size: 2vw;
        line-height: 2.5rem!important;
    }
}
.dot.large .content {
    display: inline-block;
}
#dot1 {
    background-color: #4f9d33;
    color: white!important;
}
#dot1.small {
    height: 37.351vw;
    left: 7.288vw;
    top: 108.44544vw;
    width: 37.351vw;
}
#dot1.medium {
    height: 50.105vw;
    left: 28.6965vw;
    top: 95.61856vw;
    width: 50.105vw;
}
#dot1.large {
    height: 74.702vw;
    left: 2.733vw;
    top: 70.98512vw;
    width: 74.702vw;
}
@media only screen and (min-width: 1024px) {
    #dot1.small {
        height: 19.224vw;
        left: 0;
        top: 17.61239vw;
        width: 19.224vw;
    }
    #dot1.medium {
        height: 25.632vw;
        left: 0;
        top: 11.20118vw;
        width: 25.632vw;
    }
    #dot1.large {
        height: 36.846vw;
        left: 0;
        top: 0;
        width: 36.846vw;
    }
}
#dot2 {
    background: transparent;
    border: 1px solid #000;
}
#dot2.small {
    height: 37.351vw;
    left: 53.749vw;
    top: 62.38528vw;
    width: 37.351vw;
}
#dot2.medium {
    height: 50.105vw;
    left: 37.5332vw;
    top: 25.07072vw;
    width: 50.105vw;
}
#dot2.large {
    height: 74.702vw;
    left: 20.2242vw;
    top: 43.43648vw;
    width: 74.702vw;
}
@media only screen and (min-width: 1024px) {
    #dot2.small {
        height: 19.224vw;
        left: 24.1902vw;
        top: 6.26382vw;
        width: 19.224vw;
    }
    #dot2.medium {
        height: 25.632vw;
        left: 36.846vw;
        top: 5.15844vw;
        width: 25.632vw;
    }
    #dot2.large {
        height: 36.846vw;
        left: 17.7822vw;
        top: 0;
        width: 36.846vw;
    }
}
#dot3 {
    background-color: #86477f;
    color: white!important;
}
#dot3.small {
    height: 37.351vw;
    left: 13.665vw;
    top: 0;
    width: 37.351vw;
}
#dot3.medium {
    height: 50.105vw;
    left: 4.555vw;
    top: 0;
    width: 50.105vw;
}
#dot3.large {
    height: 74.702vw;
    left: 0;
    top: 0;
    width: 74.702vw;
}
@media only screen and (min-width: 1024px) {
    #dot3.small {
        height: 19.224vw;
        left: 60.876vw;
        top: 0;
        width: 19.224vw;
    }
    #dot3.medium {
        height: 25.632vw;
        left: 54.468vw;
        top: 2.39499vw;
        width: 25.632vw;
    }
    #dot3.large {
        height: 36.846vw;
        left: 43.254vw;
        top: 0;
        width: 36.846vw;
    }
}
@media screen and ( max-width: 1200px ){
  #dot3.large, #dot2.large, #dot1.large {
      height: auto!important;
      left: auto!important;
      top: auto!important;
      bottom: auto!important;
      width: 90vw!important;
  }
  .dotWrapper {
      height: auto;
  }
  .dot {
      border-radius: 0;
      cursor: default;
      overflow: hidden;
      padding: 1rem;
      position: relative;
      margin-bottom: 20px;
  }
}
.post{
  border-bottom: 1px solid black;
}
.post p{
  color: #4f9d33;
}
.arrowTopCorner{
  top: -10px;
  right: 10px;
  font-size: 30px;
}
.videosHeader{
  color: white!important;
  background: url('../images/videosBg.jpg');
  background-size: cover;
  background-repeat: no-repeat;
}
.videosHeader h2{
  color: white!important;
}
.videosLink h3{
  font-size: 1.25rem;
}
.catLabel{
  color: white!important;
  background: #104547;
  padding: 10px 25px;
  margin-top: 20px;
}
.catLabel ul{
  margin: 0;
  padding: 0;
}
.catLabel ul li{
  display: inline;
}

.catLinks{
  display: flex;
  justify-content: space-between;
  padding: 0;
}
.catLinks li{
  display: inline-block;
}
.catLinks li a{
  margin: 0;
}
.catLinks li a::before{
  display: inline-block;
  content: '';
  height: 20px;
  width: 20px;
  border: 1px solid #4f9d33;
  border-radius: 50%;
  bottom: -4px;
  position: relative;
  margin-right: 5px;
}
.catLinks li a:hover::before{
  background: rgba(79,157,51,0.2);
}
.catLinks li.current-cat a::before{
  background: rgba(79,157,51,1);
}
.btn.btn-primary, .field-wrap>div input[type=checkbox], .field-wrap button, .field-wrap input[type=button], .field-wrap input[type=submit]{
  border-radius: 0;
  border: none;
  border-bottom: 1px solid #4f9d33;
  background: transparent;
  color: #4f9d33;
  text-wrap: nowrap;
}
.btn.btn-primary:after, .wp-block-button__link.wp-element-button:after{
  content: "\2197";
  margin-left: 10px;
}
.is-style-outline .wp-block-button__link.wp-element-button{
  background: transparent;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  padding-left: 0;
  padding-right: 0;
}
.circleSpin{
  transform: translatex(-50%) translatey(-50%);
	width: 500px;
  height: 500px;
  top: 200px;
  position: absolute;
}
.circleSpinAuto{
	width: 50%;
  height: auto;
  top: 0;
  margin: auto;
  position: relative;
  -webkit-animation:spinner 4s linear infinite;
    -moz-animation:spinner 4s linear infinite;
    animation:spinner 16s linear infinite;
}
@-moz-keyframes spinner {
    100% { -moz-transform: rotate(360deg); }
}
@-webkit-keyframes spinner {
    100% { -webkit-transform: rotate(360deg); }
}
@keyframes spinner {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
.circleSpinRight{
  transform: translatex(-50%) translatey(-50%);
	width: 500px;
  height: 500px;
  top: 200px;
  right: -400px;
  position: absolute;
}
.inFront{
  z-index: 2;
}
figure.position-absolute.inFront{
  max-height: calc(100% + 250px);
  overflow: hidden;
}
.socialLogo img{
  width: 50px!important;
  height: auto!important;
  margin: 0 20px;
}
.img120 img{
  width: 120%!important;
  max-width: none!important;
}
.topminus{
  top: -150px;
  position: relative;
}
.rightalign{
  position: relative;
}
.rightalign img{
  right: 0;
  position: absolute;
}
.benefitsOverlay{
  top: 0;
  width: 100%;
  mix-blend-mode: hard-light;
  pointer-events: none;
}
.alignBottom{
  bottom: 0;
}

.centerBit{
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  width: 70%;
}
.centerBit img{
  min-width: 70%;
  left: 50%;
  top: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
}
.spinnyBit{
  aspect-ratio: 1/1;
}
.spinny{
  width: 95%;
  margin: 0;
  -webkit-animation:spinny 16s linear infinite;
    -moz-animation:spinny 16s linear infinite;
    animation:spinny 16s linear infinite;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@-moz-keyframes spinny {
    100% { -moz-transform: rotate(360deg); }
}
@-webkit-keyframes spinny {
    100% { -webkit-transform: rotate(360deg); }
}
@keyframes spinny {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.kt-tabs-wrap .wp-block-kadence-tab{
  padding: 80px 50px!important;
}
a.kt-tab-title{
  margin: 0!important;
}

@media screen and ( max-width: 1200px ){
  .circleSpinRight, .circleSpin{
    display: none;
  }
  figure.position-absolute.inFront, .size-full.position-absolute{
    position: relative!important;
  }

}
#timeline .carousel{
  background: #f9f5f1;
}
#timeline .carousel-indicators [data-bs-target]{
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid rgb(79, 157, 51);
}
#timeline .carousel-indicators p{
  width: auto!important;
  min-width: 100px;
  text-indent: 0;
  height: auto!important;
  border-radius: 0!important;
  background-color: transparent!important;
  border: none!important;
  color: rgb(79, 157, 51);
  opacity: 1;
}
#timeline .carousel-indicators{
  flex-direction: column;
  width: 80px;
  margin: auto!important;
  top: 50%;
  transform: translate(0, -50%);
  bottom: auto;
}
#timeline .lineSeparater{
  border-right: 1px solid rgb(79, 157, 51);
}
#timeline .carousel-indicators > div:last-child > div.d-flex.flex-column > .lineSeparater{
  display: none;
}
#timeline .carousel-inner{
  min-height: 600px;
  display: flex;
}
.progress-container{
  bottom: 0;
  left: 0;
}
.progress-bar{
  width: 0;
  height: 100%;
  background-color: rgb(79, 157, 51);
  transition: width 5s linear;
}

.cursor {
	position: fixed;
	left: 0;
	top: 0;
	z-index: 10000;
	pointer-events: none;
	opacity: 0;
	visibility: hidden;
	transition: opacity .3s, visibility .3s;
}
.cursor.cursor--hover {
	opacity: 1;
	visibility: visible;
}
.cursor__inner {
	display: flex;
	justify-content: center;
	align-items: center;
	transform: translate(-50%, -80%) scale(.7);
	width: 120px;
	height: 120px;
	background: #4f9d33;
	color: #fff;
	border-radius: 50%;
	font-size: 29px;
	font-weight: 300;
	transition: transform .3s;
}
@supports (display: grid) {

  #hireCarousel .item {
    display: inline-block;
    min-height: 200px;
    min-width: 200px;
		width: 80%;
    margin: 2em 1em;
  }
}

.darkGreyBg{
  background: #484443;
  color: white;
}
.darkGreyBg p{
  text-wrap: wrap;
}
.darkGreyBg .btn-primary{
  color: white;
}
.darkGreenBg{
  background: #104547;
  color: white;
}
.gallery {
	max-width: 100%;
	overflow: hidden;
}
.gallery .inner {
	position: relative;
	overflow: hidden;
	display: block;
	width: auto;
	max-width: 800px;
}
.gallery img {
	display: none;
}
.mainBit {
	position: relative;
	width: 100%;
	height: 500px;
	overflow: hidden;
	background: #ccc;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	overflow: hidden;
	margin-bottom: 20px;
}
.mainBit:before {
content: "";
position: absolute;
left: 0;
bottom: 0;
width: 100%;
height: 100px;
}
.main-selected {
	animation: crossfade 0.5s ease;
	-webkit-animation: crossfade 0.5s ease;
	-moz-animation: crossfade 0.5s ease;
}
@keyframes crossfade {
	0% { opacity: 0.7; }
	100% { opacity: 1; }
}

@-webkit-keyframes crossfade {
	0% { opacity: 0.7; }
	100% { opacity: 1; }
}

@-moz-keyframes crossfade {
	0% { opacity: 0.7; }
	100% { opacity: 1; }
}
.mainBit span {
	position: absolute;
	display: block;
	text-align: center;
	font-size: 16px;
	font-family: sans-serif;
	color: #fff;
	bottom: 10px;
	left: 0;
	right: 0;
}
.thumb-roll {
position: relative;
width: auto;
overflow-x: auto;
overflow-y: hidden;

white-space: nowrap;
}
.thumb {
	display: inline-block;
	position: relative;
	width: 100px;
	height: 100px;
	margin-right: 20px;
	background: #ccc;
	overflow: hidden;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	overflow: hidden;
	cursor: pointer;
}
.thumb:last-of-type {
	margin-right: 0px;
}
.thumb:after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	box-shadow: inset 5px 5px 0px rgba(79, 157, 51, 0), inset -5px -5px 0px rgba(79, 157, 51, 0);
}
.thumb.current:after {
	box-shadow: inset 5px 5px 0px rgba(79, 157, 51, 1), inset -5px -5px 0px rgba(79, 157, 51, 1);
	background: rgba(255,255,255,0.4);
	cursor: default;
}
.thumb:hover:after {
	box-shadow: inset 5px 5px 0px rgba(79, 157, 51, 1), inset -5px -5px 0px rgba(79, 157, 51, 1);
}
.formFilter label, .formFilter select{
  display: block;
}
.formFilter select{
  width: 100%;
  background: transparent!important;
  border: none!important;
}
.formFilter label{
  color: #4f9d33;
  margin-bottom: 10px;
}
.formFilter button{
  padding: 5px 30px;
  border-radius: 30px;
  background: transparent!important;
  color: #4f9d33;
  border: 1px solid #4f9d33;
}
.compatible h3{
  font-size: 1.2rem;
}
.kt-tab-inner-content-inner{
  padding: 0 4rem;
}
.has-background.pt-5.pb-5{
  padding-left: 5rem;
  padding-right: 5rem;
}

@media screen and ( max-width: 1200px ){
  .has-background.pt-5.pb-5{
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .kt-tab-inner-content-inner{
    padding: 0;
  }
  .spinny img{
    left: 50%;
    top: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
  }
  
}
