* {
	padding: 0;
	margin: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-family: "Poppins", sans-serif;
}
body {
	background-color: #ebedef;
}

#loader {
	background-color: #ffffff;
	height: 15em;
	width: 15em;
	position: absolute;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	left: 50%;
	top: 50%;
	display: -ms-grid;
	display: grid;
	place-items: center;
	border-radius: 5px;
}
#loader:after {
	content: "";
	position: absolute;
	height: 11em;
	width: 11em;
	border: 0.9em solid #a0a0a0;
	border-top-color: #4249ed;
	border-radius: 50%;
	-webkit-animation: spin 1s linear infinite;
	animation: spin 1s linear infinite;
}
@-webkit-keyframes spin {
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
@keyframes spin {
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
#box {
	position: absolute;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	top: 50%;
	left: 50%;
	width: 80vw;
	max-width: 41em;
	min-height: 26em;
	display: none;
}
.img-con {
	position: absolute;
}
.img-con img {
	height: 1px;
	width: 1px;
}
.wrapper {
	background-color: #ffffff;
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	border-radius: 0.6em;
	-webkit-box-shadow: 0 1.8em 3em rgba(1, 17, 39, 0.15);
	box-shadow: 0 1.8em 3em rgba(1, 17, 39, 0.15);
}
.testimonial-container {
	width: 85%;
	height: 100%;
	position: relative;
	margin: auto;
	padding: 1.8em 1.2em;
}
.testimonial-container p {
	color: #8c8c90;
	text-align: center;
	font-size: 0.9em;
	line-height: 2em;
	letter-spacing: 0.05em;
}
.testimonial-container img {
	display: block;
	margin: 1.8em auto 1.25em auto;
	border-radius: 50%;
	width: 4.4em;
}
.testimonial-container h3 {
	color: #2d3d67;
	font-size: 1em;
	text-align: center;
}
.testimonial-container h6 {
	color: #bcc4da;
	font-size: 0.9em;
	letter-spacing: 0.03em;
	font-weight: 400;
	text-align: center;
}
.wrapper button {
	font-size: 1.8em;
	color: #0a69ed;
	height: 2.2em;
	width: 2.2em;
	position: absolute;
	margin: auto;
	top: 0;
	bottom: 0;
	background-color: #ffffff;
	border: none;
	border-radius: 50%;
	-webkit-box-shadow: 0 0 1em rgba(0, 0, 0, 0.25);
	box-shadow: 0 0 1em rgba(0, 0, 0, 0.25);
	cursor: pointer;
}
button#next {
	right: -1.1em;
}
button#prev {
	left: -1.1em;
}
a {
	/*position: relative;*/
	/*display: block;*/
	/*background-color: #ffffff;*/
	color: #0a69ed;
	text-decoration: none;
	font-size: 1.2em;
	font-weight: 600;
	text-align: center;
	padding: 0.9em 0;
	border-radius: 0.3em;
	margin-top: 30px;
}
.fab {
	color: #ff0000;
}
@media screen and (max-width: 650px) {
	.wrapper {
		font-size: 14px;
	}
}
