.rotator_wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.rotator {
	width: 95%;
    max-width: 500px;
	min-height: 195px;
	border-radius: 20px;
	position: relative;
}

.rotator .side {
	position: absolute;
	text-align: center;
	width: 100%;
	height: 100%;
	padding: 20px 50px;
	color: #fff;
	border-radius: 20px;
}
.rotator .content {
	line-height: 1.5em;
}
.rotator .content h1 {
	position: relative;
}
.rotator .content p {
	margin-top: 50px;
	line-height: 2em;
}
.rotator .back .content p {
	margin-top: 0px;
}
.rotator .content h1:before {
	content: "";
	position: absolute;
	bottom: -20px;
	height: 3px;
	background-color: #3e3;
	width: 70px;
	left: 50%;
	transform: translateX(-50%);
}
.rotator .front {
	z-index: 2;
	background-size: 100vh;
	background-size: cover;
	background: #AAC994;
}
.rotator .back {
	background-color: #1ABC9C;
	z-index: 0;
	padding-top: 10px;
}
.rotator form {
	text-align: left;
}
.rotator .back h1 {
	margin: 0;
}
.rotator form label,
.rotator form input {
	display: block;
}
.rotator form input,
.rotator form textarea {
	background: transparent;
	border: 0;
	border-bottom: 2px solid #444;
	padding: 5px;
	width: 100%;
	color: #fff;
}
.rotator .fbox-content-sm h3 {
	font-size: 1.3rem;
}
.rotator form label {
	margin: 15px 0;
}
.rotator form input[type="submit"] {
	display: block;
	width: auto;
	margin: 10px auto;
	padding: 5px 10px;
	border: 3px solid #555;
	border-radius: 4px;
	color: #fff;
	cursor: pointer;
}
/* my button style  */
.rotator .white-mode {
	text-decoration: none;
	padding: 7px 10px;
	background-color: #122;
	border-radius: 3px;
	color: #fff;
	transition: 0.35s ease-in-out;
	position: fixed;
	left: 15px;
	bottom: 15px;
	font-family: "Montserrat";
}

.rotator .white-mode:hover {
	background-color: #fff;
	color: #122;
}
