#hero {
	height: 90vh !important;
}
#hero .overlay {
	background: linear-gradient(
		90deg,
		rgba(176, 35, 45, 0.6) 0%,
		rgba(176, 35, 45, 0.1) 100%
	);
}
.about-circles {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.about-circles span {
	border-radius: 100%;
	border: 1px solid #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-animation: radar 1.5s forwards infinite;
	animation: radar 1.5s forwards infinite;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
}

.about-circles span:nth-child(1) {
	width: 35%;
	padding-top: 35%;
	-webkit-animation-delay: 0s;
	animation-delay: 0s;
}

.about-circles span:nth-child(2) {
	width: 60%;
	padding-top: 60%;
	-webkit-animation-delay: 0.6s;
	animation-delay: 0.6s;
}

.about-circles span:nth-child(3) {
	width: 105%;
	padding-top: 105%;
	-webkit-animation-delay: 1s;
	animation-delay: 1s;
}
.circles-img {
	position: relative;
}

.image-circle-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: space-around;
	flex-direction: column;
}

.image-circle-overlay p {
	font-size: 19px;
	color: #fff;
	font-weight: 400 !important;
	margin: 0;
	padding: 0;
}

@-webkit-keyframes radar {
	0% {
		opacity: 0;
		transform: translate(-50%, -50%) scale(0.4);
	}
	50% {
		opacity: 1;
		transform: translate(-50%, -50%) scale(0.7);
	}
	70% {
		opacity: 1;
	}
	100% {
		opacity: 0;
		transform: translate(-50%, -50%) scale(1);
	}
}

@keyframes radar {
	0% {
		opacity: 0;
		transform: translate(-50%, -50%) scale(0.4);
	}
	50% {
		opacity: 1;
		transform: translate(-50%, -50%) scale(0.7);
	}
	70% {
		opacity: 1;
	}
	100% {
		opacity: 0;
		transform: translate(-50%, -50%) scale(1);
	}
}

/*Messaging Section */

#interactive-typing .container {
	background: #f6f6f6;
	border-radius: 10px;
	position: relative;
	padding: 40px 0;
}

#interactive-typing .container .graphic {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	transform: translate(-13%, -22%);
	width: 50%;
	max-width: 220px;
}

@media (min-width: 62em) and (max-width: 64.0525em) {
	#interactive-typing .container .graphic {
		transform: translate(-36%, -22%);
	}
}

@media (min-width: 48em) and (max-width: 61.99em) {
	#interactive-typing .container .graphic {
		transform: translate(-36%, -22%) scale(0.6);
	}
}

@media (max-width: 41.6775em) {
	#interactive-typing .container .graphic {
		transform: translate(0%, -35%);
		width: 100%;
	}
}

#interactive-typing .message-view {
	max-width: 1060px;
	margin: 0 auto;
	height: 45vh;
	overflow-y: scroll;
}

#interactive-typing .message-view .single-bubble {
	background: #fff;
	border-radius: 42px;
	padding: 20px 30px;
	width: 44%;
	box-shadow: 0px 9px 16px 0px rgba(0, 0, 0, 0.06);
	position: relative;
	transform: scale(0);
}

@media (max-width: 41.6775em) {
	#interactive-typing .message-view .single-bubble {
		width: 75%;
	}
}

#interactive-typing .message-view .single-bubble p {
	font-size: 18px;
	margin: 0;
}

#interactive-typing .message-view .single-bubble.question {
	margin: 0 auto 0 40px;
	transform-origin: bottom left;
}

@media (max-width: 41.6775em) {
	#interactive-typing .message-view .single-bubble.question {
		margin: 0 auto 20px 40px;
	}
}

#interactive-typing .message-view .single-bubble.question:after {
	content: url(https://www.cbwebsitedesign.co.uk/wp-content/uploads/2020/03/speech-mark-left-white.png);
	position: absolute;
	bottom: 0;
	left: 0;
	transform: translate(-27%, 37%);
	z-index: -1;
}

#interactive-typing .message-view .single-bubble.answer {
	background: #3e98fb;
	margin: 0 40px 0 auto;
	transform-origin: bottom right;
}

@media (max-width: 41.6775em) {
	#interactive-typing .message-view .single-bubble.answer {
		margin: 0 40px 20px auto;
	}
}

#interactive-typing .message-view .single-bubble.answer p {
	color: #fff;
}

#interactive-typing .message-view .single-bubble.answer:after {
	content: url(https://www.cbwebsitedesign.co.uk/wp-content/uploads/2020/03/speech-mark-right-blue.png);
	position: absolute;
	bottom: 0;
	right: 0;
	transform: translate(34%, 33%);
	z-index: -1;
}

#interactive-typing .message-view .single-bubble.error {
	width: 100%;
	margin: 20px auto;
	background: #ffc107;
	transform-origin: bottom center;
	text-align: center;
}

#interactive-typing .message-view .single-bubble.final {
	width: 100%;
	margin: 20px auto;
	text-align: center;
	background-color: #4caf50;
	transform-origin: bottom center;
	transition: 0.3s background-color;
	cursor: pointer;
}

#interactive-typing .message-view .single-bubble.final p {
	color: #fff;
}

#interactive-typing .message-view .single-bubble.final:hover {
	background-color: #444;
}

#interactive-typing form {
	background: #fff;
	border-radius: 40px;
	width: 95%;
	max-width: 834px;
	margin: 0 auto;
	box-shadow: 0px 9px 16px 0px rgba(0, 0, 0, 0.06);
}

@media (max-width: 61.99em) {
	#interactive-typing form {
		max-width: 90%;
	}
}

#interactive-typing form .row {
	border: 1px solid #bd14ba;
	border-radius: 36.5px;
	padding: 6px 12px;
	margin: 0;
}

#interactive-typing form .typing {
	position: absolute;
	top: 0;
	left: 0;
	transform: translate(-4%, -10%) scale(0.75);
	opacity: 0;
}

#interactive-typing form .btn-form {
	background: #3e98fb;
	background: linear-gradient(
		to right bottom,
		rgb(254, 117, 49),
		rgb(181, 8, 205)
	);
	border-radius: 3rem;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.07em;
	font-weight: 600;
	color: #fff;
	padding: 10px 20px;
	border: none;
	transition: 0.3s all;
}

#interactive-typing form .btn-form:hover {
	box-shadow: 0 20px 38px rgba(0,0,0,.16);
	-ms-transform: translateY(-3px);
	transform: translateY(-3px);
	-webkit-transform: translateY(-3px);
}

#interactive-typing form input {
	width: 100%;
	border: none;
	font-size: 19px;
	font-weight: 300;
    padding-left: 1rem;
}

#interactive-typing form input::-webkit-input-placeholder {
	/* Chrome/Opera/Safari */
	color: #000;
	opacity: 1;
}

#interactive-typing form input::-moz-placeholder {
	/* Firefox 19+ */
	color: #000;
	opacity: 1;
}

#interactive-typing form input:-ms-input-placeholder {
	/* IE 10+ */
	color: #000;
	opacity: 1;
}

#interactive-typing form input:-moz-placeholder {
	/* Firefox 18- */
	color: #000;
	opacity: 1;
}

#interactive-typing form input:focus::-webkit-input-placeholder {
	/* Chrome/Opera/Safari */
	color: transparent;
}

#interactive-typing form input:focus::-moz-placeholder {
	/* Firefox 19+ */
	color: transparent;
}

#interactive-typing form input:focus:-ms-input-placeholder {
	/* IE 10+ */
	color: transparent;
}

#interactive-typing form input:focus:-moz-placeholder {
	/* Firefox 18- */
	color: transparent;
}

#interactive-typing form .invalid-feedback {
	position: absolute;
	bottom: 160%;
	left: 0;
	text-align: left;
	padding: 0 0.55em;
	font-size: 14px;
	opacity: 0;
	visibility: hidden;
}

#interactive-typing form.was-validated .form-control:valid,
#interactive-typing form.was-validated .form-control:invalid {
	background-image: none;
	padding-right: initial;
}

#interactive-typing form .form-control:focus,
#interactive-typing form .form-control.is-invalid:focus,
#interactive-typing form .was-validated .form-control:invalid:focus,
#interactive-typing form .form-control.is-valid:focus,
#interactive-typing form .was-validated .form-control:valid:focus {
	box-shadow: none;
}

#interactive-typing #interactive-navigation {
	max-width: 834px;
	margin: 0 auto;
}

@media (max-width: 61.99em) {
	#interactive-typing #interactive-navigation {
		max-width: 90%;
	}
}

#interactive-typing #interactive-navigation .step {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
}

#interactive-typing #interactive-navigation .step .icon {
	width: 84px;
	height: 84px;
	border: 1px solid #bd14ba;
	border-radius: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

#interactive-typing #interactive-navigation .step p {
	margin: 0;
	padding: 0;
	font-size: 16px;
}

#interactive-typing #interactive-navigation .step p strong {
	font-weight: 600;
}

/* New */

#interactive-typing p {
	color: #212529;
}

.step-text {
    width: auto;
}

@media (min-width: 541px) {
	.step-text {
		margin-left: 20px;
	}
}

@media (max-width: 540px) {
	.step-text {
		text-align: center;
		margin-top: 20px;
	}
	#interactive-typing .graphic {
		display: none;
	}
}
