@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Pacifico&family=Space+Grotesk:wght@300..700&display=swap");
:root {
  --white: #fff;
  --black: #2E323B;
  --yellow: #FDC600;
  --clear: transparent;
  --pacifico: "Pacifico", cursive;
  --outfit: "Outfit", sans-serif;
  --spaceGrotesk: "Space Grotesk", sans-serif;
}

body {
  background-color: var(--clear);
  position: relative;
}

/* generic */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--spaceGrotesk);
  color: var(--black);
  text-transform: capitalize;
}

h1 span, h2 span, h3 span, h4 span, h5 span, h6 span {
  font-family: var(--pacifico);
  color: var(--yellow);
}

p, a {
  font-family: var(--outfit);
  font-size: 16px;
  line-height: 24px;
  color: var(--black);
}

.button {
  border-radius: 2rem;
  padding: 1rem 4rem;
  transition: 1s;
  text-decoration: none;
}

.button.dark,
.button.product:hover {
  background-color: var(--black);
  color: var(--white);
  border: 1px solid var(--black);
}

.button.dark:hover,
.button.product {
  background-color: var(--clear);
  color: var(--black);
  border: 1px solid var(--black);
}

.button.white {
  background-color: var(--clear);
  color: var(--white);
  border: 1px solid var(--white);
}

.button.white:hover {
  background-color: var(--white);
  color: var(--black);
  border: 1px solid var(--white);
}

ul {
  list-style: none;
}

h2 {
  font-size: 54px;
  line-height: 64px;
}

h4 {
  font-size: 24px;
  line-height: 30px;
}

.mt-10 {
  margin-top: 5rem;
}

.mb-10 {
  margin-bottom: 5rem;
}

.fullWidth {
  width: 100%;
}

.fullBoth {
  width: 100%;
  height: 100%;
}

.fullHeight {
  height: 100%;
}

.anim-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

@keyframes slide-in {
  from {
    transform: translateY(0%);
  }
  to {
    transform: translateY(50%);
  }
}
@keyframes dash {
  from {
    stroke-dashoffset: 250;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes type {
  0% {
    width: 0%;
  }
  50% {
    width: 100%;
  }
  100% {
    width: 0%;
  }
}
.js-animate-element {
  opacity: 0;
}
.js-animate-element.bottom-animation {
  transform: translateY(150px);
}
.js-animate-element.right-animation {
  transform: translateX(150px);
}
.js-animate-element.left-animation {
  transform: translateX(-150px);
}
.js-animate-element.top-animation {
  transform: translateY(-150px);
}
.js-animate-element.insight {
  transform: translateY(0) translateX(0);
  opacity: 1;
  transition: 1s all ease;
}

header {
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  position: relative;
}
header .overlay {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.25) 10%, rgba(0, 0, 0, 0.25) 100%);
}
header .headerImage {
  position: relative;
}
header h1 {
  color: var(--white);
  font-size: 96px;
  line-height: 90px;
}
header h1 span {
  text-transform: lowercase;
}
header p {
  font-size: 16px;
  line-height: 24px;
  color: var(--white);
  margin: 4rem auto;
}

.branding {
  padding: 3.5rem 0;
}
.branding img {
  margin-top: 1rem;
}
.branding .homeLink {
  float: left;
  height: 100%;
  width: 35%;
}

#menu-header-menu {
  background: #fff;
  border-radius: 50px;
  padding: 0.5rem 2.5rem;
}
#menu-header-menu li {
  display: inline-block;
  text-align: center;
  font-size: 16px;
  line-height: auto;
}
#menu-header-menu li a {
  text-decoration: none;
}
#menu-header-menu li a:hover {
  color: var(--yellow);
}
#menu-header-menu .borderRight:after {
  content: "";
  border-left: 1px solid var(--black);
  padding: 0.5rem 0;
  margin: 0 1.5rem;
}
#menu-header-menu .button.dark {
  padding: 1rem 4rem;
  text-align: center;
  position: relative;
  right: -30px;
}
#menu-header-menu .button.dark a {
  color: var(--white);
  transition: 1s;
}
#menu-header-menu .button.dark:hover > a {
  color: var(--black);
}

.homepageTitle {
  max-width: 700px;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.scrollSection {
  height: 200px;
  width: 70px;
  background: url("../images/scrollSection.svg") no-repeat center center;
  position: absolute;
  bottom: 0;
  left: calc(50% - 35px);
}
.scrollSection img {
  position: relative;
  top: 24px;
  left: 18px;
}
.scrollSection:hover > img {
  animation: slide-in 0.75s;
  animation-iteration-count: 10;
}

.mainPages {
  height: 185px;
  background: var(--black);
}

.navbar {
  z-index: 5;
}
.navbar .hidden {
  display: none;
}

.navbar-toggler {
  position: absolute;
  right: 0;
  top: -2.6rem;
}
.navbar-toggler-icon {
  background-image: none;
}

#navbar-hamburger img,
#navbar-close img {
  width: 2rem;
  margin-top: 0.6rem;
}

/* Footer */
footer {
  background-color: var(--black);
  padding: 3rem 0;
  clear: both;
}
footer a {
  color: var(--white);
  transition: 1s;
}
footer a:hover {
  color: var(--yellow);
}
footer p {
  font-size: 16px;
  line-height: 31px;
  color: var(--white);
}
footer .designed {
  font-size: 16px;
  line-height: 24px;
  font-weight: bold;
  display: flex;
}
footer .designed p {
  align-self: end;
}

.imageContent .content {
  display: inline;
}
.imageContent .content h2 {
  margin-bottom: 2rem;
}
.imageContent p {
  margin-bottom: 4rem;
}

.home {
  position: relative;
}
.home .hompageTopLine-animated {
  overflow: hidden;
  width: 100%;
  position: absolute;
  top: 100vh;
  z-index: -1;
}
.home .homepageMiddle-animated {
  overflow: hidden;
  width: 100%;
  position: absolute;
  z-index: -1;
  top: 155vh;
}
.home .mulitpleSwoops-animated {
  overflow: hidden;
  width: 100%;
  position: absolute;
  bottom: 75vh;
  z-index: -1;
}

.path {
  stroke-dasharray: 10;
  animation: dash 5s linear;
  /* animation: dash 2s steps(100000) infinite; */
  width: 100%;
  overflow: hidden;
  animation-iteration-count: infinite;
}

.process {
  margin-top: 10rem;
}

.processBox {
  border: 1px solid var(--black);
  padding: 3rem;
  border-radius: 20px;
  background: var(--white);
}
.processBox img {
  margin-bottom: 3rem;
  height: 10rem;
}
.processBox:hover > img {
  transform: scale(1.2);
}

.reviews h2,
.reviews p {
  color: var(--white);
}
.reviews p {
  margin: 2rem auto 3rem;
  max-width: 365px;
}
.reviews .seeMore {
  margin: 3rem auto auto;
}
.reviews .reviewBlock {
  background: var(--white);
  border-radius: 20px;
  margin: 0 auto 1.5rem;
  padding: 1.3rem 2.2rem;
}
.reviews .reviewBlock h3 {
  margin: 0.8rem auto;
}
.reviews .reviewBlock p {
  color: var(--black);
  min-height: 100px;
  margin: unset;
}
.reviews .reviewBlock mg {
  margin: 0 0.2rem;
}
.reviews {
  background: var(--black);
  padding: 4rem;
  border-radius: 35px;
}

.reviewsPage {
  margin: 5rem auto;
}
.reviewsPage h2 {
  margin: 0 auto 4rem;
}

/* accordion */
.faqBlock h2 {
  margin: 2rem auto;
}

.accordion {
  background: none;
  color: #444;
  cursor: pointer;
  padding: 2rem 1rem;
  width: 100%;
  border: none;
  border-bottom: 1px solid #D9D9D9;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
  min-height: 122px;
  display: flex;
}
.accordion span {
  font-family: var(--outfit);
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: var(--yellow);
  margin-right: 3rem;
  align-content: center;
}
.accordion h3 {
  font-family: var(--outfit);
  font-size: 16px;
  line-height: 24px;
  color: var(--black);
  display: inline-block;
  width: 80%;
  align-content: space-evenly;
  margin-bottom: 0;
}
.accordion.active {
  background-color: #ccc;
}
.accordion.active:after {
  content: url("../images/minus.svg");
  width: 20px;
  height: auto;
}
.accordion:hover {
  background-color: #ccc;
}
.accordion:after {
  content: url("../images/plus.svg");
  color: var(--black);
  font-weight: bold;
  margin-left: 5px;
  display: flex;
  align-self: center;
  height: 25px;
}

.panel {
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.contactForm {
  margin: 5rem auto;
}

.location h2 {
  margin: 2rem auto;
}
.location p {
  margin-top: 2rem;
  margin-bottom: 5rem;
}

.contactPage .mulitpleSwoops-animated {
  overflow: hidden;
  width: 100%;
  position: absolute;
  top: 30vh;
  z-index: -1;
}

/* Localhost */
#wpforms-form-99 input, #wpforms-form-99 textarea {
  border: 1.25px solid var(--black);
  border-radius: 10px;
  font-family: var(--outfit);
  font-size: 16px;
  line-height: 24px;
}
#wpforms-form-99 .button.dark {
  font-family: var(--outfit);
  background-color: var(--black);
  color: var(--white);
  border: 1px solid var(--black);
  border-radius: 2rem;
  padding: 0px 2.3rem;
  transition: 1s;
  margin-top: 1rem;
}
#wpforms-form-99 .button.dark:hover {
  font-family: var(--outfit);
  background: var(--clear);
  color: var(--black);
  border: 1px solid var(--black);
}

/* Staging */
#wpforms-form-63 input, #wpforms-form-63 textarea {
  border: 1.25px solid var(--black);
  border-radius: 10px;
  font-family: var(--outfit);
  font-size: 16px;
  line-height: 24px;
}
#wpforms-form-63 .button.dark {
  font-family: var(--outfit);
  background-color: var(--black);
  color: var(--white);
  border: 1px solid var(--black);
  border-radius: 2rem;
  padding: 0px 2.3rem;
  transition: 1s;
  margin-top: 1rem;
}
#wpforms-form-63 .button.dark:hover {
  font-family: var(--outfit);
  background: var(--clear);
  color: var(--black);
  border: 1px solid var(--black);
}

.articleContent {
  margin: 5rem auto 10rem;
}
.articleContent h2 {
  margin: auto auto 5rem;
}
.articleContent p {
  font-size: 20px;
  line-height: 32px;
}

.singleProduct {
  margin: 5rem auto;
}

.woocommerce .quantity .qty {
  width: 7.5em;
  padding: 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid #d9d9d9;
  margin-right: 2rem;
  text-align: left;
}

/* .woocommerce .quantity .qty::-webkit-outer-spin-button,
.woocommerce .quantity .qty::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
.woocommerce .quantity .qty[type="number"] {
	-moz-appearance: textfield;
} */
.single_add_to_cart_button .button .button .alt {
  background-color: var(--black);
  color: var(--white);
  border: 1px solid var(--black);
  border-radius: 2rem;
  padding: 1rem 4rem;
  transition: 1s;
}
.single_add_to_cart_button .button .button .alt:hover {
  background-color: var(--clear);
  color: var(--black);
  border: 1px solid var(--black);
}

.quoteCart {
  margin: 5rem auto;
}

.woocommerce-cart table {
  width: 100%;
}
.woocommerce-cart table.cart .product-thumbnail {
  padding: 2rem;
  width: 250px;
  text-align: center;
  font-weight: bold;
}
.woocommerce-cart table.cart .product-thumbnail a {
  display: block;
  width: 100%;
  margin-bottom: 1rem;
}
.woocommerce-cart table.cart .product-remove a {
  font-size: 48px;
  font-weight: lighter;
  text-decoration: none;
}
.woocommerce-cart table.cart img {
  object-fit: contain;
  width: 100%;
}
.woocommerce-cart table.cart input {
  width: 7.5em;
  padding: 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid #d9d9d9;
  margin-right: 2rem;
  text-align: left;
}
.woocommerce-cart-form thead, .woocommerce-cart-form__cart-item {
  border-bottom: solid 1px var(--black);
}
.woocommerce-cart-form .button.dark {
  margin: 2rem auto;
}

@media (max-width: 2000px) {
  .hompageTopLine-animated {
    top: 120vh !important;
  }
  .homepageMiddle-animated {
    top: 175vh !important;
  }
  .mulitpleSwoops-animated {
    bottom: 105vh !important;
  }
}
@media (max-width: 1600px) {
  .hompageTopLine-animated {
    top: 130vh !important;
  }
  .homepageMiddle-animated {
    top: 195vh !important;
  }
  .mulitpleSwoops-animated {
    bottom: 125vh !important;
  }
}
@media (max-width: 1400px) {
  .hompageTopLine-animated {
    top: 145vh !important;
  }
  .homepageMiddle-animated {
    top: 210vh !important;
  }
  .mulitpleSwoops-animated {
    bottom: 155vh !important;
  }
}
@media (max-width: 1081px) {
  h1 {
    font-size: 60px !important;
    line-height: 72px !important;
  }
  .imageContent img {
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
  }
  .reviews .reviewBlock {
    padding: 1.3rem;
    min-height: 275px;
  }
  .processBox {
    min-height: 520px;
  }
}
@media (max-width: 991px) {
  .mainPages {
    height: 115px;
  }
  #menu-header-menu {
    background: var(--black);
  }
  #menu-header-menu li {
    display: block;
    margin: 2rem auto;
    text-align: left;
    border-bottom: 1px solid var(--white);
    padding: 0 0 1rem;
  }
  #menu-header-menu li a {
    color: var(--white);
  }
  #menu-header-menu .button {
    border-radius: unset;
  }
  #menu-header-menu .button.dark {
    position: unset;
    text-align: unset;
    background: none;
    padding: unset;
    border-radius: unset;
    padding: 0 0 1rem;
  }
  #menu-header-menu .borderRight::after {
    content: "";
    border-left: unset;
    padding: unset;
    margin: unset;
  }
  .navbar-toggler {
    border: unset;
  }
  .navbar-toggler:focus {
    box-shadow: unset;
  }
  .navbar-toggler-icon {
    width: 2.5rem;
  }
  .imageContent .content h2 {
    font-size: 36px;
    line-height: 48px;
  }
  .imageContent .content p {
    font-size: 14px;
    line-height: 22px;
  }
  .process {
    margin-top: 5rem;
  }
  h2 {
    font-size: 36px;
    line-height: 48px;
  }
  .accordion {
    padding: 0 2.2rem 0 0;
  }
}
@media (max-width: 768px) {
  header h1 {
    font-size: 56px;
    line-height: 64px;
  }
  header p {
    margin: 2rem auto;
  }
  header .scrollSection {
    left: 42%;
  }
  header .branding {
    padding: 1rem;
  }
  h2 {
    font-size: 36px;
    line-height: 48px;
  }
  .imageContent {
    margin-bottom: -2rem;
  }
  .imageContent .content {
    padding: 1.5rem !important;
    margin: 2.5rem auto 0rem;
  }
  .faqBlock .accordion:after {
    position: absolute;
    right: 1.2rem;
  }
  .process {
    margin-top: 4rem;
  }
  .process .processBox {
    margin-bottom: 2rem;
  }
  .button {
    width: 100%;
    display: inline-block;
    text-align: center;
  }
  .reviews {
    margin-top: 5rem;
    padding: 4rem 2rem;
  }
  .contactForm div.wpforms-container-full button[type=submit] {
    width: 100%;
  }
  .contactForm div.wpforms-container .wpforms-form .wpforms-field {
    margin-left: 0;
    width: 100%;
  }
  .hompageTopLine-animated,
  .homepageMiddle-animated,
  .mulitpleSwoops-animated {
    display: none;
  }
}
