<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
	outline: none;
	border: none;
}
a,
a:hover,
a:focus {
	text-decoration: none;
}

.header {
	box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05),
		inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.header .navbar {
	min-height: 4rem;
}

.navbar-toggler, .navbar-toggler:focus {
	outline: none;
	border: none;
	box-shadow: none;
}
.navbar-toggler span {
	display: block;
	width: 35px;
	height: 4px;
	margin: 6px 0;
}

.navbar-brand {
	font-size: 30px;
	font-weight: 600;
}

.navbar-brand img {
	display: block;
	width: 180px;
	height: auto;
}

.nav-link {
	font-size: 16px;
	font-weight: 600;
	padding-left: 15px;
	padding-right: 15px;
	transition: color 0.3s;
}

.home_section {
	position: relative;
	padding: 80px 0;
	color: #ffffff;
}

.home_section:before {
	content: "";
	background: #ecebec 50% / contain no-repeat;
	background-image: url(/static/images/papers.png);
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

@media only screen and (max-width: 1023px) {
	.home_section:before {
		display: block;
		background-size: cover;
	}
}

.home_section:after {
	content: "";
	background-color: rgba(0, 0, 0, 0.75);
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
}

.home_section .container {
	position: relative;
    z-index: 1;
    text-align: center;
}

.search_form {
	display: flex;
	width: 100%;
	max-width: 960px;
	margin: 0 auto;
	border-radius: 6px;
	overflow: hidden;
}

.search_form .search_field {
	color: #8a8a8a;
	width: 100%;
	text-align: left;
	height: 65px;
	padding: 0 20px;
	font-size: 23px;
	border: 0;
	background-color: #fff;
	border-radius: 6px 0 0 6px;
}

.search_form .search_submit {
	display: block;
	position: relative;
	height: 65px;
	color: #fff;
	line-height: normal;
	cursor: pointer;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border-radius: 0px 6px 6px 0px;
}

.search_form .search_submit:after {
	content: "";
	display: block;
	background-color: #0043ec;
	width: 100%;
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: -1;
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transform-origin: left;
	transform-origin: left;
	-webkit-transition: -webkit-transform 0.4s ease-in-out;
	transition: -webkit-transform 0.4s ease-in-out;
	transition: transform 0.4s ease-in-out;
	transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
}

.search_form .search_submit:hover:after {
	-webkit-transform: scaleX(1);
	transform: scaleX(1);
	-webkit-transform-origin: right;
	transform-origin: right;
}

.search_submit i {
	font-size: 25px;
	font-weight: 100;
}

.prepaper_section {
	padding: 40px 0 60px;
	background: #f2f2f2;
}

.sample {
	background: #fff;
	border: 1px solid #e3e3e3;
	padding: 25px;
	box-shadow: 0 2px 2px #ececec;
}

.breadcrumb {
	background-color: #fff;
	margin-bottom: 20px;
	color: #999;
	font-size: 12px;
	line-height: 14px;
}

.single-content {
	padding: 10px 0 60px;
}

.sample-head {
	margin-bottom: 30px;
}

.sample-head__tooltip {
	color: #36751c;
	font-size: 14px;
	max-width: 355px;
	line-height: 24px;
	position: relative;
	border-radius: 5px;
	margin-bottom: 7px;
	padding: 3px 10px 3px 30px;
	background: rgba(152, 225, 122, 0.28);
}

.sample-head__tooltip:before {
	position: absolute;
	content: "";
	top: 10px;
	left: 10px;
	width: 12px;
	height: 10px;
	background: url(/static/images/icon-check-green.svg) no-repeat center;
}

.sample h1 {
	font-size: 24px;
	color: #121212;
	font-weight: 600;
	margin: 0 0 20px;
	line-height: normal;
	font-family: "Lato", serif;
}

.sample h1 span {
	display: none;
}

.sample-head__info {
	display: flex;
	margin-bottom: 25px;
}

.sample-head__preview {
	width: 90px;
	height: 125px;
	flex-shrink: 0;
	margin-right: 15px;
	position: relative;
	background: url(/static/images/banner-sample-icon.jpg) no-repeat center;
	cursor: pointer;
	border-radius: 5px;
	-webkit-box-shadow: 0 2px 4px 0 #cfcfcf;
	box-shadow: 0 2px 4px 0 #cfcfcf;
}

.sample-head__preview:before {
	position: absolute;
	content: "";
	top: 0;
	right: 11px;
	width: 52px;
	height: 16px;
	background: url(/static/images/icon-exclusive.svg) no-repeat center;
}

.sample-head__name {
	color: #1e1d1d;
	line-height: 1.5;
	font-size: 14px;
	margin: 0 0 8px;
	padding: 0;
}

.sample-head__name a {
	color: #4a4a4a;
}

.sample-head__name a:hover {
	text-decoration: none;
}

.sample-head__desc {
	margin-bottom: 6px;
}

.sample-head__desc-item {
	color: #4a4a4a;
	font-size: 14px;
	margin-right: 10px;
	line-height: normal;
}

.sample-head__bottom {
	width: 100%;
	margin: auto;
	max-width: 290px;
	text-align: center;
}

.sample-head__bottom_desktop {
	display: none;
}

.sample-head__link {
	color: #fff;
	display: block;
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 5px;
	text-align: center;
	border-radius: 5px;
	padding: 12px 20px;
	text-decoration: none;
}

.sample-head__alert {
	margin: 0;
	font-size: 12px;
	display: block;
	line-height: 26px;
	color: rgba(74, 74, 74, 0.6);
}

.sample-head__alert br {
	display: none;
}

e-essay * {
	max-width: 100%;
}

.content-block {
	padding: 20px;
	font-size: 20px;
	line-height: 1.5;
	position: relative;
	margin-top: 20px;
	margin-bottom: 50px;
	border: 1px solid #d8dde6;
	box-shadow: 0 3px 13px -5px rgba(0, 0, 0, 0.3);
	width: 100%;
}

.content-block__page {
	position: absolute;
	content: "";
	left: 40px;
	bottom: 25px;
	color: #a1a1a1;
	font-size: 12px;
	font-weight: 700;
}

.content-block__cta {
	position: absolute;
	content: "";
	left: 0;
	right: 0;
	bottom: 45px;
	z-index: 100;
	padding: 20px;
	height: 150px;
	text-align: center;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0.7), #fff);
}

.content-block__cta-link {
	color: #fff !important;
	font-size: 16px;
	font-weight: 700;
	text-align: center;
	border-radius: 5px;
	padding: 16px 28px;
	margin-bottom: 15px;
	display: inline-block;
	text-decoration: none;
}

.content-block ul {
	display: block;
	width: 100%;
}

.content-block ul li {
	list-style-type: none;
	width: 100%;
}

.carousel-control-next,
.carousel-control-prev {
	background: #000;
	height: 50px;
	width: 50px;
	border-radius: 100%;
	top: 50%;
}

.content-block img {
	width: 100%;
	height: auto;
	vertical-align: top;
	border: 0;
}

.single-essay__content .single-essay__content-title {
	font-size: 14px;
	line-height: 30px;
	color: #959fa6;
	text-transform: uppercase;
	border-bottom: 1px solid #e1e4e5;
}

.single-essay__content p {
	color: #797979;
	font-size: 16px;
	line-height: 1.5;
	margin: 0 0 16px;
	padding: 0;
}

@media (min-width: 577px) {
	.sample h1 {
		font-size: 28px;
	}

	.sample h1 span {
		font-size: 33px;
		color: #e14652;
		margin-right: 16px;
		display: inline-block;
	}

	.sample-head__preview {
		width: 100%;
		height: 200px;
		max-width: 145px;
		margin-right: 25px;
	}

	.sample-head__book-cover {
		width: 60px;
		height: 94px;
	}

	.sample-head__tooltip {
		margin-bottom: 20px;
	}

	.sample-head__name {
		margin-bottom: 3px;
	}

	.sample-head__desc {
		margin-bottom: 20px;
	}

	.sample-head__bottom_mobile {
		display: none;
	}

	.sample-head__bottom_desktop {
		display: flex;
		max-width: 100%;
		align-items: center;
	}

	.sample-head__alert {
		text-align: left;
		line-height: normal;
	}

	.sample-head__alert br {
		display: block;
	}

	.sample-head__link {
		margin-right: 20px;
	}
}

.papers__section {
	padding: 50px 0;
}

.ourwriters-4-ban {
	max-width: 540px;
	margin: 0 auto;
	text-align: center;
}

.ourwriters-4-ban-title {
	color: #37373f;
	font-size: 22px;
	margin-bottom: 10px;
}

.ourwriters-4-ban-subtitle {
	color: #464646;
	font-size: 16px;
}

.ourwriters-4-ban-buttons {
	margin-top: 20px;
}

.ourwriters-4-ban-button-blue,
.ourwriters-4-ban-button-orange {
	display: inline-block;
	border-radius: 4px;
	background-color: #f59f1b;
	padding: 8px 10px;
	text-align: center;
	width: 130px;
	color: #fff;
	font-weight: 700;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	white-space: nowrap;
}

.ourwriters-4-ban-or {
	display: inline-block;
	margin: 0 15px;
	color: #999;
	line-height: 40px;
	vertical-align: top;
}

.ourwriters-4-ban-button-orange + .ourwriters-4-ban-button-blue {
	margin-left: 5px;
}

.ourwriters-4-ban-button-orange:hover {
	text-decoration: none;
	color: #ffffff;
	background-color: #dc932a;
}

.ourwriters-4-ban-button-blue {
	border-radius: 5px;
	background-color: #0077a3;
}

.ourwriters-4-ban-button-blue:hover {
	text-decoration: none;
	color: #ffffff;
	background-color: #006084;
}

.ourwriters-4-ban-items:after {
	content: "";
	clear: both;
	display: table;
}

.ourwriters-4-ban-item {
	float: left;
	width: 33.333%;
}

.ourwriters-4-ban-item-ico {
	height: 120px;
	position: relative;
}

.ourwriters-4-ban-item-ico:before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	background-image: url(/static/images/new-landing-icons.svg);
	background-repeat: no-repeat;
}

.ourwriters-4-ban-item-ico1:before {
	background-position: 0 -338px;
	width: 88px;
	height: 89px;
	top: 15px;
}

.ourwriters-4-ban-item-ico2:before {
	background-position: 0 -427px;
	width: 120px;
	height: 121px;
}

.ourwriters-4-ban-item-ico3:before {
	background-position: 0 -548px;
	width: 88px;
	height: 89px;
	top: 15px;
}

@media (max-width: 1200px) {
	.ourwriters-4-left,
	.ourwriters-4-right {
		width: 50%;
	}

	.ourwriters-4-right {
		padding-left: 0;
	}
}

@media (max-width: 767px) {
	.ourwriters-4 {
		padding: 40px 0;
	}

	.ourwriters-4-left,
	.ourwriters-4-right {
		width: 100%;
		float: none;
	}

	.ourwriters-4-left {
		padding: 0;
	}

	.ourwriters-4-left h2 {
		margin-top: 10px;
	}

	.ourwriters-4-right {
		margin-top: 15px;
	}
}

@media (max-width: 460px) {
	.ourwriters-4-ban-item {
		width: 100%;
	}

	.ourwriters-4-ban-item-ico {
		width: 120px;
		margin-right: 10px;
		float: left;
	}

	.ourwriters-4-ban-item-ico1:before,
	.ourwriters-4-ban-item-ico3:before {
		top: 0;
	}

	.ourwriters-4-ban-subtitle {
		padding-top: 40px;
		text-align: left;
	}

	.ourwriters-4-ban-or {
		display: block;
		line-height: 120%;
		margin-bottom: 15px;
	}

	.ourwriters-4-ban-button-orange {
		margin-bottom: 15px;
	}

	.ourwriters-4-ban-button-orange + .ourwriters-4-ban-button-blue {
		margin-left: 0;
	}
}

.landing-tab-aboutus {
	margin-top: 30px;
	padding: 10px 15px 10px;
	border: 1px solid #dbe1e3;
	list-style: none;
	border-radius: 5px;
	background-color: #f5fcff;
	box-shadow: 2px 3px 7px rgba(0, 0, 0, 0.1);
}

.landing-tab-aboutus-icon,
.landing-tab-more-icon,
.landing-tab-ourwriters-icon {
	float: left;
	position: relative;
	width: 53px;
	height: 54px;
	margin-right: 15px;
}

.landing-tab-aboutus-icon:before,
.landing-tab-more-icon:before,
.landing-tab-ourwriters-icon:before {
	content: "";
	background-repeat: no-repeat;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}

.landing-tab-aboutus-icon1:before {
	background-image: url(/static/images/icon-1.svg);
	width: 54px;
	height: 52px;
}

.landing-tab-aboutus-icon2:before {
	background-image: url(/static/images/icon-2.svg);
	width: 58px;
	height: 45px;
}

.landing-tab-aboutus-icon3:before {
	background-image: url(/static/images/icon-3.svg);
	width: 50px;
	height: 55px;
}

.landing-tab-aboutus-icon4:before {
	background-image: url(/static/images/icon-4.svg);
	width: 54px;
	height: 53px;
}

.landing-tab-aboutus-icon5:before {
	background-image: url(/static/images/icon-5.svg);
	width: 58px;
	height: 52px;
}

.landing-tab-aboutus-text,
.landing-tab-aboutus-title,
.landing-tab-more-text,
.landing-tab-more-title,
.landing-tab-ourwriters-text,
.landing-tab-ourwriters-title {
	overflow: hidden;
}

.landing-tab-aboutus-title,
.landing-tab-more-title,
.landing-tab-ourwriters-title {
	color: #5d8082;
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 5px;
}

.landing-tab-aboutus-text,
.landing-tab-more-text,
.landing-tab-ourwriters-text {
	color: #464646;
}
</pre></body></html>