/*
Custom CSS Code for Oxygen V1.0

*/

html {
  scroll-behavior: smooth;
}

.wpc-config-element .wpc-primary-btn, .wpc-config-element .wpcf7-submit {
  border-radius: 0px !important;
  background: #036729 !important;
  color: #fff !important;
  padding: 20px 30px !important;
  display: inline !important;
  height: auto !important;
}
.wpc-summary-list-child-title {
  text-transform: none !important;
}

.wpc-config-element .wpc-close-btn {
  background: #036729 !important;
}

/*
Fluid Typography with Clamp
https://oxygenbuilder.com/2020/08/23/tutorial-implementing-fluid-typography-for-headings-in-oxygen/
https://web-development.space/tools/px-to-vw/
*/

/*
@media (max-width:1120px) {
  h1 {
    font-size: clamp(30px, 4vw, 50px);
  }

  h2 {
    font-size: clamp(24px, 3.5vw, 40px);
  }

  h3 {
    font-size: clamp(22px, 2.3vw, 26px);
  }

  h4 {
    font-size: clamp(18px, 1.7vw, 20px);
  }

}

*/