.newsletter{
	padding-left: 15%;
}
.newsletter input[type="email"] {
	height: 70px;
	border-radius: 5px;
}
.newsletter p{
	display: flex;
	gap: 10px
}
.newsletter input[type="submit"]{
	background-color: #fff;
	border: none;
	color: #000;
	font-family: "Roboto";
	font-size: 1rem;
	width: 30%;
	padding: 0.75rem 1.2rem;
	min-width: 150px;
	border: 1px solid #2e767a;
	border-radius: 30px;
	color: #2e767a;
	font-family: "Montserrat", Sans-serif;
	font-weight: 500;
}

@media only screen and (max-width: 600px) {
	.newsletter{
		padding: 0;
	}
	.newsletter p{
	display: block;
}
	.newsletter input[type="submit"]{
		width: 100%;
		margin-top: 10px
}
}
.hover-image{ 
	opacity: 0;
  transition: opacity 0.4s ease;
}

.hover-image:hover {
  opacity: 1;
}

.hover-img-wrapper {
  position: relative;
  display: inline-block;
}

.hover-img-wrapper img {
  display: block;
  width: 100%;
  height: auto;
}

.hover-img-wrapper .colored-image {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.hover-img-wrapper:hover img:first-child {
  opacity: 0;
}

.hover-img-wrapper:hover .colored-image {
  opacity: 1;
}
.full_name > p {
display: flex;
flex-direction: row;
gap: 10px;
}
.full_name > p > span {
flex: 1;
}
.full_name > p > span > input, .email_address > p > span > input {
	border: 1px solid #666;
	border-radius: 10px;
	padding: .75rem 1rem;
}

.submit_btn > p {
display: flex;
justify-content: flex-start;
flex-direction: row-reverse;
}
.submit_btn > p > input[type=submit] {
	padding: 0.75rem 1.2rem;
	min-width: 150px;
	background-color: #2e767a;
	border: 1px solid #2e767a;
	border-radius: 30px;
	color: #fff;
	font-family: "Montserrat", Sans-serif;
	font-weight: 500;
}

.submit_btn > p > input[type=submit]:hover {
  background-color: #fff;
  color: #2e767a;
  border: 1px solid #2e767a;
  cursor: pointer;
	font-family: "Montserrat", Sans-serif;
	font-weight: 500;
}

/* Arrow Wiggle */

.animated-arrow path[stroke] {
  stroke: #fff !important;
}
.animated-arrow path {
  stroke: #fff !important;
}

.arrow-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.animated-arrow {
  display: block;
  margin: 0 auto;
  width: 160px !important;
  height: auto;
}
.animated-arrow {
  width: 120px;
  color: #2E767A;
  animation: bounceDown 1.2s ease-in-out infinite,
             colorCycle 5s linear infinite;
}

.animated-arrow:hover {
  animation-play-state: paused;
}

@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

@keyframes colorCycle {
  0%   { color: #2E767A; }
  16%  { color: #581DB3; }
  32%  { color: #262C6F; }
  48%  { color: #3779A8; }
  64%  { color: #456293; }
  80%  { color: #442F8C; }
  100% { color: #33687E; }
}

/* overlay animation */

.animated-overlay > .elementor-background-overlay {
  background-position: 1000px -200px;
  transition: background-position 1.8s ease-out;
}

.animated-overlay.in-view > .elementor-background-overlay {
  background-position: 1000px 0;
}

/* contact form response */
.wpcf7 form.sent .wpcf7-response-output {
	color: #fff !important;
}