/* CTA icon (arrow) */
.ctaicon {
	color: black;
}

.ctaicon:before {
	position: relative;
}

@media screen and (max-width: 992px) {
	.ctaicon {
		display: none !important;
	}
}


/* CTA1 */
.cta1 {
  position: relative;
  margin: auto;
  padding: 8px 16px;
  line-height: 16px;
  transition: all 0.2s ease;
}

.cta1 .ctaicon {
	font-size: 14px;
	line-height: 14px;
	padding-left: 8px;
}

.cta1:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  border-radius: 18px;
  background: #E10B17;
  width: 36px;
  height: 36px;
  transition: all 0.3s ease;
  z-index: -1;
}

.cta1 span {
  position: relative;
  font-size: 14px;
  line-height: 14px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  vertical-align: middle;
  color: black; 
}

.cta1 span:not(:first-child) {
	margin-left: -2px;
}

.cta1:hover:before {
  width: 100%;
  background: #E10B17;
}

.cta1:hover span, .cta1:hover i {
  color: white;
}

.cta1:active {
  transform: scale(0.96);
}

/* CTA FORM - Page Contact */
.ctaform {
  position: relative;
  margin: auto;
  padding: 15px 23px;
  transition: all 0.2s ease;
}

.ctaform:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  border-radius: 24px;
  background: #E10B17;
  width: 48px;
  height: 48px;
  transition: all 0.3s ease;
  z-index: -1;
}

.ctaform span {
  position: relative;
  font-size: 18px;
  line-height: 18px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  vertical-align: middle;
  color: black; 
  display: inline-block;
}

.ctaform:hover:before {
  width: 100%;
  background: #E10B17;
}

.ctaform:hover span, .ctaform:hover i {
  color: white;
}

.ctaform:active {
  transform: scale(0.96);
}

.ctaform .ctaicon {
	color: black;
	line-height: 18px;
	font-size: 18px;
	padding-left: 9px;
}

.ctaform .ctaicon:before {
	position: relative;
	top: 2px;
}

@media screen and (max-width : 1023px) {
	.ctaform {
		padding: 10px 14px;
		display: block;
		text-align: left;
	}
	
	.ctaform > * {
		display: inline-block;
	}
	
	.ctaform .ctaicon {
		font-size: 14px !important;
		padding-left: 4px;
	}

	.ctaform span {
		font-size: 14px !important;
	}
	
	.ctaform:before {
		border-radius: 18px;
		width: 36px;
		height: 36px;
	}
}

@media screen and (max-width: 519px) {
	.ctaform span {
		font-size: 12px !important;
	}
}


/* CTARef */
.ctaref {
  position: relative;
  margin: auto;
  padding: 10px 11px;
  transition: all 0.2s ease;
}

.ctaref:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  border-radius: 28px;
  background: #E10B17;
  width: 39px;
  height: 39px;
  transition: all 0.3s ease;
}

.ctaref span {
  position: relative;
  font-size: 18px;
  line-height: 23px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  vertical-align: middle;
  color: black; 
}

.ctaref svg {
  position: relative;
  top: 0;
  margin-left: 10px;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: #111;
  stroke-width: 2;
  transform: translateX(-5px);
  transition: all 0.3s ease;
}

.ctaref:hover svg {
  stroke: white;
}

.ctaref:hover:before {
  width: 100%;
  background: #E10B17;
}

.ctaref:hover span {
  color: white;
}

.ctaref:active {
  transform: scale(0.96);
}

