:root {
  --color-green: #619421;
  --color-mediumgreen: #58871e;
  --color-lightgray: #f1f1f1;
  --color-text: #454545;
  --color-white: #ffffff;
  --color-black: #010101;

  --global-radius: 25px;

  --header-weight-bold: 800;
  --global-weight-bold: 600;
  --global-weight-medium: 500;
  --global-weight-normal: 400;

  --font-header: 'Montserrat', sans-serif;
  --font-body: 'Montserrat', sans-serif;
}


html {
  min-height: 100%;
  max-height: 100%;
}


a {
	transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}
a, a:focus, button:focus, input:focus, textarea:focus, a:active, button:active {
  outline: none;
}


p:last-child,
p:last-of-type {
  margin-bottom: 0;
}


input::placeholder,
textarea::placeholder {
	color: var(--color-text);
	opacity: 1;
}


#go-to-top {
	position: fixed;
	bottom: 20px;
	right: 20px;
	display: none;
	z-index: 99;
}
#go-to-top span i.fa-circle {
	color: var(--color-black);
	opacity: 0.3;
	-o-transition:.3s;
	-ms-transition:.3s;
	-moz-transition:.3s;
	-webkit-transition:.3s;
	transition:.3s;
}
#go-to-top:hover span i.fa-circle {
	color: var(--color-black);
	opacity: 1;
}


h1 span {
  display: block;
  margin: 0 0 7px 0;
  font-family: var(--font-body);
  font-weight: var(--global-weight-medium);
  font-size: 0.875rem;
  color: var(--color-green);
  line-height: 1;
  text-transform: uppercase;
}


.banner {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.banner.inner-page {
  position: relative;
  height: auto;
  overflow: visible;
}
.banner::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: inset 0 0 0 4000px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: inset 0 0 0 4000px rgba(0, 0, 0, 0.5);
}
.banner-video {
  z-index: -1;
  min-height: 100%;
  min-width: calc(100% + 2px);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  margin-left: -2px;
}


.banner.inner-page {
  position: relative;
  height: auto;
  background: var(--color-white);
}
.banner.inner-page::before {
  display: none;
}
.banner.inner-page .header {
  padding: 30px 0;
}
.banner.inner-page .header.is-stuck {
  padding: 10px 0;
}


.header {
  padding: 35px 0 0 0;
  z-index: 1;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}


.header .top-bar {
  padding: 0;
}
.header .top-bar, .header .top-bar ul {
  background: none;
}
.header .top-bar .top-bar-right {
  margin: 0 auto;
}
.header .dropdown.menu > li > a {
  padding: 0;
  margin: 0 0 0 2rem;
  font-size: 1rem;
  font-weight: var(--global-weight-bold);
  color: var(--color-white);
}
.header .dropdown.menu > li > a:hover {
  color: var(--color-white);
}
.header .dropdown.menu > li > a::after {
  content: '';
  display: block;
  margin: 2px 0 0 0;
  border-bottom: 1px solid var(--color-white);
  transform: scaleX(0);
  -webkit-transform: scaleX(0);
  transition: transform 0.25s ease-in-out;
  -webkit-transition: transform 0.25s ease-in-out;
  transform-origin: 0% 50%;
  -webkit-transform-origin: 0% 50%;
}
.header .dropdown.menu > li > a:hover::after {
  transform: scaleX(1);
  -webkit-transform: scaleX(1);
}


.header.is-stuck {
	background: var(--color-black);
	padding: 10px 0;
	box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.07);
	-webkit-box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.07);
	z-index: 999;
}
.header.is-stuck .logo img {
  width: auto;
  height: 48px;
  margin-bottom: 0;
}
.header.is-stuck .grid-x {
  align-items: center;
}


@media screen and (min-width: 1025px) {
  .header .top-bar-right {
    display: flex;
    align-items: center;
  }
}
.header-social-icons {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.header-social-icons li {
  margin-left: 2rem;
}
.header-social-icons li a {
  font-size: 1.25rem;
  color: var(--color-white);
}


.hero {
  position: absolute;
  transform: translateY(-50%);
  width: 100%;
  text-align: center;
}
.hero-heading {
  font-family: var(--font-header);
  font-size: 3.75rem;
  font-weight: var(--header-weight-bold);
  color: var(--color-white);
  line-height: 1.13;
}
.hero-subheading {
  font-size: 1.5rem;
  font-weight: var(--header-weight-medium);
  color: var(--color-white);
  line-height: 1.25;
  padding: 35px 0 0 0;
}
.hero-btn {
  padding: 50px 0 0 0;
}


.content {
  position: absolute;
  width: 100%;
  top: 100%;
}
.content.inner-page {
  position: relative;
  top: auto;
}


.section {
  padding: 120px 0;
}
.section.section-center {
  text-align: center;
}
.section.section-lightgray {
  background: var(--color-lightgray);
}


/* Carousel Slider */
.carousel-slider {
  display: flex;
}
.carousel-slider-container {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}
/* Arrows Navigation */
.carousel-slider-controls {
  margin: 20px 0 0 0;
  text-align: center;
}
.carousel-slider-controls span {
  margin: 0 15px;
  font-size: 1.5rem;
  color: var(--color-green);
  line-height: 1;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}
.carousel-slider-controls span:hover {
  color: var(--color-black);
}
/* Arrows Navigation Inside Carousel Contariner */
.carousel-slider-container.carousel-slider-controls-inside {
  max-width: calc(100% - 200px);
}
.carousel-slider-container.carousel-slider-controls-inside .carousel-slider-controls span {
  margin: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.carousel-slider-container.carousel-slider-controls-inside .carousel-slider-controls span.carousel-slider-controls-prev {
  left: -100px;
}
.carousel-slider-container.carousel-slider-controls-inside .carousel-slider-controls span.carousel-slider-controls-next {
  right: -100px;
}


.welcome h1 {
  margin-bottom: 2rem;
}
.welcome .gradient-box-loop {
  padding: 80px 0 0 0;
}
.welcome-btn {
  padding: 40px 0 0 0;
}


.gradient-box-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 450px;
  padding: 25px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: var(--global-radius);
  color: var(--color-white);
  overflow: hidden;
}
.gradient-box-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(97,148,33);
  background: linear-gradient(0deg, rgba(97,148,33,1) 0%, rgba(255,255,255,0) 100%);
  opacity: 0.7;
  z-index: 1;
}
.gradient-box-title {
  font-size: 1.25rem;
  font-weight: var(--header-weight-bold);
  z-index: 2;
}
.gradient-box-desc {
  padding: 5px 0 0 0;
  font-weight: var(--global-weight-medium);
  line-height: 1.375;
  z-index: 2;
}
.gradient-box-btn {
  padding: 20px 0 0 0;
  z-index: 2;
}


.services {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  box-shadow: inset 0 0 0 4000px rgba(0, 0, 0, 0.7);
  -webkit-box-shadow: inset 0 0 0 4000px rgba(0, 0, 0, 0.7);
  color: var(--color-white);
}
.services h1 {
  color: var(--color-white);
}
.services .service-box-loop {
  padding: 80px 0 0 0;
}


.service-box-container {
  background: var(--color-white);
  border-radius: var(--global-radius);
  overflow: hidden;
}
.service-box-img {
  position: relative;
  z-index: 1;
}
.service-box-img::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 60px;
  background: var(--color-white);
  border-top-right-radius: 100px;
}
.service-box-img-mask {
  width: 50px;
  height: 50px;
  overflow: hidden;
  position: absolute;
  left: 0;
  bottom: 55px;
}
.service-box-img-mask::before {
  content: '';
  display: block;
  width: 200%;
  height: 200%;
  position: absolute;
  bottom: 0;
  left: 0;
  box-shadow: -50px 50px 0 0 var(--color-white);
  border-radius: 50%;
}
.service-box-container-inner {
  position: relative;
  padding: 0 20px 30px 20px;
  margin: -30px 0 0 0;
  z-index: 2;
}
.service-box-title {
  font-size: 1.25rem;
  font-weight: var(--header-weight-bold);
  color: var(--color-black);
  line-height: 1.2;
  z-index: 2;
}
.service-box-desc {
  padding: 10px 0 0 0;
  color: var(--color-text);
  line-height: 1.375;
}
.service-box-btn {
  padding: 20px 0 0 0;
}





.cta {
  padding: 0;
}
.cta-text {
  padding: 20px 0 0 0;
}
.cta-btn {
  padding: 40px 0 0 0;
}


.parallax {
  padding: 180px 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  box-shadow: inset 0 0 0 4000px rgba(0, 0, 0, 0.35);
  -webkit-box-shadow: inset 0 0 0 4000px rgba(0, 0, 0, 0.35);
  color: var(--color-white);
  text-align: center;
}
.parallax h1 {
  color: var(--color-white);
  margin-bottom: 2rem;
}
.parallax h1 span {
  color: var(--color-white);
}
.parallax-text {
  width: 83%;
  margin: 0 auto;
}
.parallax-btn {
  padding: 40px 0 0 0;
}

.parallax-text.climate-text {
  font-size: 1.15rem;
}

.testimonials h1 {
  margin-bottom: 2rem;
}
.testimonial-logo {
  padding: 20px 0 0 0;
}
.testimonial-logo img {
  max-height: 80px;
  width: auto;
  object-fit: contain;
}


.footer {
  padding: 80px 0;
  background: var(--color-green);
  color: var(--color-white);
}
.footer a {
  color: var(--color-white);
}
.footer a:hover {
  color: var(--color-white);
  text-decoration: underline;
}
.footer-col-title {
  padding: 0 0 20px 0;
  font-size: 1.125rem;
  font-weight: var(--header-weight-bold);
  color: var(--color-white);
  line-height: 1;
}
.footer-address {
  padding: 0 0 15px 0;
}
.footer ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.footer-contact strong {
  display: block;
}
.footer-contact li:not(:last-child) {
  padding: 0 0 15px 0;
}
.footer-links li:not(:last-child) {
  padding: 0 0 5px 0;
}
.footer-social li:not(:last-child) {
  padding: 0 0 20px 0;
}
.footer-social li a {
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
}
.footer-social li i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--color-white);
  border-radius: 50%;
  color: var(--color-green);
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}
.footer-social li a:hover i {
  color: var(--color-green);
}
.footer-social li span {
  margin: 0 0 0 10px;
}


.copyright {
  padding: 25px 0;
  background: var(--color-mediumgreen);
  color: var(--color-white);
}
.copyright a {
  color: var(--color-white);
}
.copyright a:hover {
  color: var(--color-white);
  text-decoration: underline;
}
.copyright-links ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.copyright-links ul li:not(:last-child)::after {
  content: '|';
  display: inline-block;
  margin: 0 5px;
}


.banner.inner-page .header .dropdown.menu > li > a {
  color: var(--color-black);
}
.banner.inner-page .header .dropdown.menu > li > a:hover {
  color: var(--color-black);
}
.banner.inner-page .header .dropdown.menu > li > a::after {
  border-bottom: 1px solid var(--color-black);
}
.banner.inner-page .header.is-stuck {
	background: var(--color-white);
}
.banner.inner-page .header-social-icons li a {
  color: var(--color-green);
}


.page-title-banner {
  padding: 120px 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: inset 0 0 0 4000px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: inset 0 0 0 4000px rgba(0, 0, 0, 0.5);
}
.page-title-banner .hero {
  position: relative;
  transform: none;
  top: auto;
}


.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 10px 0 0 0;
  margin: 0;
  list-style-type: none;
}
.breadcrumbs li {
  font-size: 0.8125rem;
  color: var(--color-white);
  text-transform: uppercase;
}
.breadcrumbs li a {
  color: var(--color-white);
}
.breadcrumbs li a:hover {
  color: var(--color-white);
}
.breadcrumbs li:not(:last-child)::after {
  content: '/';
  display: inline-block;
  margin: 0 5px;
}


.news-loop .cell:nth-child(n+3) {
  padding: 30px 0 0 0;
}
.news-container {
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}
.news-container .news-img {
  overflow: hidden;
  border-top-left-radius: var(--global-radius);
  border-top-right-radius: var(--global-radius);
}
.news-container .news-img img {
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}
.news-container:hover {
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0);
  box-shadow: 0px 0px 10px 0px rgba(0,0,0,0);
}
.news-container:hover .news-img img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
.news-container-inner {
  background: var(--color-lightgray);
  padding: 0 20px 30px 20px;
  border-bottom-left-radius: var(--global-radius);
  border-bottom-right-radius: var(--global-radius);
}
.news-date {
  padding: 15px 0 0 0;
}
.news-date ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.news-date ul li {
  display: inline-block;
  padding-right: 20px;
  font-size: 0.875rem;
}
.news-date ul li i {
  color: var(--color-green);
  padding-right: 5px;
}
.news-date ul li a {
  color: var(--color-text);
}
.news-date ul li a:hover {
  color: var(--color-green);
}
.news-title {
  padding: 15px 0 0 0;
  font-size: 1.25rem;
  font-weight: var(--global-weight-bold);
  color: var(--color-black);
  line-height: 1.2;
}
.news-desc {
  padding: 15px 0 0 0;
}
.news-btn {
  padding: 25px 0 0 0;
}
.news-container.single-news:hover {
  box-shadow: none;
}
.news-container.single-news .news-img img {
  width: 100%;
  height: auto;
}
.news-container.single-news:hover .news-img img {
  -webkit-transform: none;
  transform: none;
}
/* .news-container.single-news .news-date {
  margin-bottom: 0;
}
.news-container.single-news .news-title {
  margin-bottom: 25px;
  margin-top: 20px;
}
.news-container.single-news .news-desc {
  margin-bottom: 35px;
} */
.news-container.single-news .news-tags {
  padding: 15px 0 0 0;
}
.news-container.single-news .news-tags a {
  display: inline-block;
  background: none;
  color: var(--color-text);
  padding: 0;
  margin: 0;
	border-radius: var(--global-radius);
}
.news-container.single-news .news-tags a:hover {
  color: var(--color-green);
}
.news-container.single-news .news-tags ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.news-container.single-news .news-tags ul li {
  display: inline-block;
  padding: 0 5px 0 0;
}
.news-container.single-news .news-tags ul li:after {
  content: ",";
}
.news-container.single-news .news-tags ul li:first-child:after, .news-container.single-news .news-tags ul li:last-child:after {
  content: "";
}
.news-container.single-news .news-tags strong {
  color: var(--color-text);
}
.news-container.single-news .news-container-inner {
  border-radius: var(--global-radius);
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.news-container.single-news .social-icons {
  padding: 30px 0 0 0;
}
ul.news-categories {
  padding: 0;
  margin: 0 0 40px 24px;
}
ul.news-categories li {
  padding-bottom: 10px;
}
ul.news-categories li a {
  color: var(--color-text);
}
ul.news-categories li a:hover {
  color: var(--color-green);
}
ul.news-categories li i {
  color: var(--color-green);
}
ul.latest-news-list {
  padding: 0;
  margin: 0 0 40px 0;
  list-style: none;
}
ul.latest-news-list li {
  padding-bottom: 20px;
}
ul.latest-news-list div.news-date {
  padding: 0;
}
ul.latest-news-list div.news-date ul li {
	padding: 0 0 3px 0;
}
ul.latest-news-list div.news-title {
  padding: 0;
  font-size: 1.125rem;
  line-height: 1.2;
  font-weight: var(--global-weight-bold);
}
ul.latest-news-list div.news-title a {
  color: var(--color-text);
}
ul.latest-news-list div.news-title a:hover {
  color: var(--color-green);
}
.news-tags a {
  display: inline-block;
  background: var(--color-lightgray);
  color: var(--color-text);
  font-weight: var(--global-weight-normal);
  padding: 7px 9px;
  margin: 0 3px 5px 0;
  border-radius: var(--global-radius);
}
.news-tags a:hover {
  background: var(--color-green);
  color: var(--color-white);
}
.news-search {
  padding-bottom: 25px;
  position: relative;
}
.news-search input[type="search"] {
  position: relative;
  height: 3.125rem;
  padding: 1.25rem 5rem 1.25rem 1rem;
  margin: 0;
  background: var(--color-white);
  box-shadow: none;
  border: 1px solid var(--color-green);
  border-radius: var(--global-radius);
  font-size: 1rem;
  color: var(--color-text);
}
.news-search input[type="search"]:focus {
  border: 1px solid var(--color-black);
}
.news-search input[type="submit"] {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  display: block;
  width: 3.125rem;
  height: 3.125rem;
  background: var(--color-green);
  border: none;
  border-top-right-radius: var(--global-radius);
  border-bottom-right-radius: var(--global-radius);
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  color: var(--color-white);
  text-align: center;
  top: 0;
  right: 0;
  cursor: pointer;
  font-size: 1.250rem;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}
.news-search input[type="search"]:focus + input[type="submit"] {
  background: var(--color-black);
  color: var(--color-white);
}


.social-icons {
  display: flex;
}
.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0 10px 0 0;
  background: var(--color-green);
  border-radius: 50%;
  color: var(--color-white);
}
.social-icons a:hover {
  background: var(--color-black);
}


.services.inner-page,
.services.single-page {
  box-shadow: none;
  color: var(--color-text);
}
.services.inner-page h1,
.services.single-page h1 {
  color: var(--color-black);
}
.services.inner-page .service-box-container,
.services-sidebar .service-box-container {
  background: var(--color-lightgray);
}
.services.inner-page .service-box-img::after,
.services-sidebar .service-box-img::after {
  background: var(--color-lightgray);
}
.services.inner-page .service-box-img-mask::before,
.services-sidebar .service-box-img-mask::before {
  box-shadow: -50px 50px 0 0 var(--color-lightgray);
}
.service-img img {
  border-radius: var(--global-radius);
}

/************** About Page **************/
.about-intro .intro-img img {
  border-radius: var(--global-radius);
}

.about-sections .section:not(:first-child) { 
  padding-top: 0;
}


/* parallax padding top */
.parallax-values {
  padding: 100px 0;  
}
.section-values {
  padding-top: 2rem;
}

.value-box-container {  
  padding:10px;
  text-align: center;
  border-radius: var(--global-radius);
  background: rgba(217, 215, 215, 0.65);
}
.value-box-icon img {
  width: 150px;
  height: 150px;
  object-fit: cover;
}
.value-box-title {
  font-weight: var(--global-weight-bold);
  color:var(--color-black);
  padding-top: 1.2rem;
}

.team .green-heading {
  all: unset;
  color: var(--color-green);
}
.team-container {
  padding-top: 2rem; 
}
.member-angela {
  padding-top: 0.5rem;
}
.team-box-img img {
  border-radius: var(--global-radius);  
}
.team-box-name {
  padding-top: 20px;
  font-size: 1.15rem;
  font-weight: var(--global-weight-bold);
}
.team-box-position {
  padding-top: 5px;  
  color: var(--color-mediumgreen);
  font-weight: var(--global-weight-medium);
  line-height: 1.2;
}
.team-box-text {
  padding: 15px 10px;
  line-height: 1.375;
  text-align: justify;
  text-justify: inter-word;
}
.team-box-icon ul {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.team-box-icon li:not(:first-child) {
  margin-left: 1rem;
}
.team-box-icon li i {  
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.05rem;
  background: var(--color-green);
  color: var(--color-white);
  transition: all 0.3s ease-in-out;
} 
.team-box-icon li i:hover {
  background: var(--color-mediumgreen);
} 
/************** About Page End **************/

/************** Contact Page **************/
.contact .green-heading,
.details .green-heading {
  all: unset;
  color: var(--color-green);
}
.contact-intro h1,
.contact-form h1 {
  margin: 0 0 40px 0;
}
.contact-form-field {
  position: relative;
  padding-bottom: 10px;
}
.contact-form-field input:not([type="submit"]),
.contact-form-field textarea {
  min-height: 3.5rem;
  padding-left: 1.9rem;
}
.contact-form-field div.label {
  position: absolute;
  top: -14px;
  left: 30px;
  font-size: 0.9rem;
  color: var(--color-black);
  line-height: 1.25;
  background-color: var(--color-white);
  border-radius: 3px;
  padding: 5px 12px;
  z-index: 1;
}
.contact-form-field textarea {
  max-width: 100%;
  min-height: 180px;
  max-height: 180px;
}
.contact-form-consent {
  padding: 10px 0 15px 0;
  font-size: 0.875rem;
  color: var(--color-text);
}
.contact-form-consent input {
  margin: 0 5px 0 0;
}


/* parallax padding top */
.parallax-details {
  padding: 100px 0;  
}
.details-boxes {
  padding-top: 4rem;
}
.details-box-container {
  height: 100%;
  padding: 30px 20px;
  border-radius: var(--global-radius);
  background: rgba(217, 215, 215, 0.97);
  color: var(--color-text);
  border-radius: var(--global-radius);
  text-align: center
}
.details-box-icon {
  color: var(--color-green);
  font-size: 2.15rem;
}
.details-box-title {
  padding-top: 10px;
  font-size: 1.05rem;
  font-weight: var(--global-weight-bold);
}
.details-box-text {
  padding-top: 5px;
}
.details-box-text a {
  color: var(--color-text);
}
.details-box-text a:hover {
  color: var(--color-green);
}
/************** Contact Page End **************/

/* additional css for contact form 7 plugin */
.contact-form-field p {
  line-height: 1;
}
.contact-form-field .wpcf7-not-valid-tip {
  margin: -10px 0 20px 0;
}
.contact-form-field.upload-files .wpcf7-not-valid-tip {
  margin: 0;
}
.contact-form-consent .wpcf7-list-item {
  margin: 0;
}
.contact-form .wpcf7 form .wpcf7-response-output {
  margin: 20px 0 0 0;
}
.contact-form .wpcf7 form.invalid .wpcf7-response-output,
.contact-form .wpcf7 form.unaccepted .wpcf7-response-output,
.contact-form .wpcf7 form.payment-required .wpcf7-response-output {
  border-color: #dc3232;
  border-radius: var(--global-radius);
}