<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*Style Away, No Globals Please*/

@charset "utf-8";
/* CSS Document */

html, body {
	margin:0px;
	padding:0px;
	height: 100% !important;
	width: 100vw !important;
	overflow-x: hidden !important;
}

.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

body {
	font-family: 'Barlow', sans-serif;
	position: relative;
	background-color: #f9f9f9;
}

* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

body::-webkit-scrollbar {
    width: 0.8em;
    background-color: #222427;
}
 
body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0);
}
 
body::-webkit-scrollbar-thumb {
	-webkit-box-shadow: inset 0 0 9px #a2a2a2;
  background-color: #fff;
  outline: 1px solid slategrey;
}

p {
	color: #1c1c1c;
	font-size: 16px;
	font-weight: 400;
	line-height: 28px;
}

a {
	color: inherit;
	text-decoration: none;
}

h1 {
	font-family: 'Noto Serif', serif;
	color: #1c1c1c;
	font-size: 36px;
	font-weight: 400;
	margin: 0px;
	margin-bottom: 20px;
	position: relative;
}

.bigh1 {
	font-size: 56px;
}

h2 {
	font-family: 'Noto Serif', serif;
	font-weight: 400;
	font-size: 50px;
	margin: 0px;
	color: #e5e5e5;
}

.home h2, .main h2 {
	font-size: 28px;
	color: #fff;
	padding: 2px 25px;
	text-transform: uppercase;
	background-color: #703030;
	font-weight: 400;
	position: relative;
	left: -25px;
}

h3 {
	font-family: 'Archivo', sans-serif;
	letter-spacing: -1px;
	font-size: 26px;
	color: #7e827a;
	text-transform: uppercase;
	font-weight: 600;
	position: relative;
}

h4 {
	font-family: 'Archivo', sans-serif;
	font-size: 20px;
	font-weight: 500;
}

.wrapper {
	width: 1440px;
	position: relative;
	margin: 0 auto;
}

i.navicon {
	position: fixed;
	right: 0px;
	padding: 25px 15px;
	font-size: 24px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 10;
	background-color: #4f1509;
	color: #f0f0f0;
	display: block;
	cursor: pointer;
}

i.navicon:hover {
	background-color: #ffd600;
	color: #000;
}

nav {
	position: fixed;
	overflow: hidden;
	z-index: 9;
	width: 80%;
	height: 100vh;
	background-color: #181818;
	right: -80%;
	-webkit-transition: 0.6s right ease;
	-o-transition: 0.6s right ease;
	transition: 0.6s right ease;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

nav::before {
	z-index: 9;
	content: '';
	background-color: #fff;
	width: 150%;
	height: 200%;
	position: absolute;
	top: -100px;
	left: -100%;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
	opacity: 0.02;
	pointer-events: none;
}

.navslide {
	right: 0px;
	-webkit-transition: 0.6s right ease;
	-o-transition: 0.6s right ease;
	transition: 0.6s right ease;
}

.headermove {
	right: 50% !important;
	-webkit-transition: 0.6s right ease;
	-o-transition: 0.6s right ease;
	transition: 0.6s right ease;
	-webkit-transition-delay: 0.1s;
	-o-transition-delay: 0.1s;
	transition-delay: 0.1s;
}

nav ul {
	position: relative;
	z-index: 11;
	padding: 0px;
	margin: 0px;
	padding-left: 100px;
	display: inline-flex;
	flex-flow: column;
	align-items: flex-start;
}

nav ul li {
	position: relative;
	font-family: 'Noto Serif', serif;
	list-style: none;
	color: #f0f0f0;
	font-size: 30px;
	font-weight: 300;
	text-transform: uppercase;
	margin-bottom: 5px;
	opacity: 1;
	letter-spacing: 0.5px;
	-webkit-filter: blur(0px);
	-ms-filter: blur(1.5px);
	-o-filter: blur(0px);
	filter: blur(0px);
	-webkit-transition: 0.4s opacity ease;
	-o-transition: 0.4s opacity ease;
	transition: 0.4s opacity ease;
}

nav ul li a:hover {
	background-color: #7e827a;
	color: #fff;
}

.fadednav {
	opacity: 0.1;
	-webkit-filter: blur(1.5px);
	-ms-filter: blur(1.5px);
	-o-filter: blur(1.5px);
	filter: blur(1.5px);
	pointer-events: none;
}

.nofade {
	opacity: 1;
	-webkit-filter: blur(0px);
	-o-filter: blur(0px);
	filter: blur(0px);
}

nav ul li a {
	display: block;
	padding: 10px;
	padding-right: 35px;
}

nav ul li ul {
	display: none;
	position: absolute;
	right: -300px;
	margin-left: 20px;
	padding-left: 20px;
	top: 0px;
	width: 300px;
	border-left: solid 1px #888888;
}

.noclick {
	pointer-events: none;
}

nav ul li ul li {
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 300;
	font-size: 18px;
	letter-spacing: 1px;
}

nav ul li ul li a {
	padding: 5px;
}

nav ul li a.sub::after {
	position: absolute;
	content: '\f35f';
	font-family: IonIcons;
	top: 18px;
	right: 10px;
	color: #fff;
	font-size: 20px;
}

.sub {
	cursor: pointer;
}

.contactdetails {
	position: relative;
	overflow: hidden;
	z-index: 11;
}

.contactdetails p {
	font-size: 14px;
	margin: 0px;
	line-height: 30px;
	color: #cfcfcf;
	font-weight: 300;
}

.c {
	background-color: #7e827a;
	display: inline-block;
	padding: 0px 10px;
	float: left;
	clear: both;
	position: relative;
	margin-bottom: 5px !important;
}

.social {
	position: relative;
	overflow: hidden;
	right: 140px;
	z-index: 11;
}

.social i {
	display: block;
	background-color: #e1e1e1;
	color: #4f1509;
	text-align: center;
	padding: 20px;
	font-size: 30px;
	width: 50px;
	height: 50px;
	float: left;
	margin-right: 20px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.social i:hover {
	background-color: #bfbfbf;
}

header {
	position: relative;
	height: 100vh;
	width: 100%;
}

.sitewrap {
	position: relative;
	right: 0px;
	-webkit-transition: 0.6s right ease;
	-o-transition: 0.6s right ease;
	transition: 0.6s right ease;
	-webkit-transition-delay: 0s;
	-o-transition-delay: 0s;
	transition-delay: 0s;
}

.vegas-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
}

header::after, .logosmall::after {
	position: absolute;
	width: 100%;
	height: 100%;
	pointer-events: none;
	top: 0px;
	left: 0px;
	background-color: #171717;
	opacity: 0.3;
	content: '';
}

.contact {
	position: absolute;
	z-index: 1;
	bottom: 0px;
	width: 100%;
	display: flex;
	padding: 0 40px;
	justify-content: space-around;
}

.contact p {
	color: #f1f1f1;
	font-weight: 300;
	font-size: 20px;
	letter-spacing: 1.5px;
}

.contact p b {
	letter-spacing: initial;
	color: #bfbfbf;
}

.contact p i {
}

.logowrapper {
	position: absolute;
	width: 100%;
	height: 100vh;
	top: 0px;
	left: 0px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.logo {
	position: relative;
	z-index: 2;
	padding: 40px;
	top: 0px;
}

.logo::after {
	width: 100%;
	height: 100%;
	content: '';
	position: absolute;
	top: 0px;
	left: 0px;
	background-color: #171717;
	border-radius: 100px;
	-webkit-filter: blur(20px);
	-o-filter: blur(20px);
	filter: blur(20px);
	opacity: 0.4;
	z-index: -1;
}

.logo span {
	font-family: 'Archivo Black', sans-serif;
	color: #f0f0f0;
	text-transform: uppercase;
	font-size: 110px;
	line-height: 50px;
	text-shadow: 1px 1px 5px #272727;
}

.logo p {
	color: #f1f1f1;
	margin: 0px;
	padding: 0px;
	font-size: 20px;
	letter-spacing: 1px;
	padding-left: 34px;
	padding-top: 10px;
	font-weight: 300;
}

.logo img {
	max-height: 300px;
	background-color: #fff;
	padding: 3px;
}

.logosmall {
	height: auto;
	position: relative;
	padding: 100px 0;
	background: url('../images/header.jpg') no-repeat center;
	background-position: center;
}

.homewrapper {
	display: flex;
	align-items: stretch;
	justify-content: center;
	position: relative;
}

.narrowwrapper {
	width: 80%;
	margin: 0 auto;
	position: relative;
	display: flex;
}

.main {
	width: 70%;
	-webkit-box-shadow: none;
	box-shadow: none;
	padding: 40px 100px;
}

.fullmain {
	width: 100%;
	position: relative;
	padding: 40px;
}

.home {
	position: relative;
	float: left;
	width: 50%;
	padding: 40px 100px;
	z-index: 4;
	min-height: 800px;
	-webkit-box-shadow: 6px 0px 3px -2px rgba(0,0,0,0.16);
-moz-box-shadow: 6px 0px 3px -2px rgba(0,0,0,0.16);
box-shadow: 6px 0px 3px -2px rgba(0,0,0,0.16);
}

.home p, .main p {
	text-align: justify;
}

.home ul li, .main ul li {
	font-family: 'Archivo', sans-serif;
	list-style: none;
	position: relative;
	padding-bottom: 8px;
	font-weight: 300;
	color: #7e827a;
	padding-left: 20px;
	font-size: 14px;
}

.home ul, .main ul {
	margin: 0px;
	padding: 20px 0px;
}

.home ul li::before, .main ul li::before {
	font-family: IonIcons;
	left: 0px;
	top: 3px;
	position: absolute;
	content: '\f121';
	color: #703030;
	font-size: 12px;
}

.twocols {
	-webkit-columns: 2;
	-moz-columns: 2;
	-o-columns: 2;
	columns: 2;
}

.twocols li {
	-webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    break-inside: avoid;
}

aside {
	float: right;
	width: 50%;
	position: relative;
	overflow: hidden;
	background: url('../images/sideimg.jpg') no-repeat left center;
	background-size: cover;
	display: flex;
	z-index: 3;
	align-items: flex-start;
}

aside.sidebar {
	width: 30%;
	background-image: none;
	padding-top: 40px;
	display: block;
	overflow: initial;
}

.sidebar img {
	margin-bottom: 20px;
}

.sidecontact {
	overflow: hidden;
}

.sidecontact p {
	background-color: #4f1509;
	padding: 10px;
	color: #efefef;
	display: inline-block;
	clear: both;
	float: left;
	margin: 0px;
	margin-bottom: 10px;
}

.sidecontact p.tel {
	font-family: 'Archivo', sans-serif;
	font-size: 28px;
}

.blurb {
	font-family: 'Archivo', sans-serif;
	font-size: 22px;
	font-weight: 600;
	text-transform: uppercase;
	line-height: 35px;
	display: block;
	position: relative;
	top: -160px;
	left: 60px;
	padding: 20px;
	width: calc(100% - 60px);
	background-color: #bfbfbf;
	color: #4f1509;
	margin-bottom: 20px;
}

.blurb::before {
	position: absolute;
	top: -10px;
	left: -10px;
	height: 100px;
	width: 40px;
	border-top: solid 2px #fff;
	border-left: solid 2px #fff;
	content: '';
}

.blurb::after {
	width: 120px;
	height: 50px;
	position: absolute;
	bottom: -10px;
	right: -10px;
	content: '';
	border-right: solid 2px #bfbfbf;
	border-bottom: solid 2px #bfbfbf;
}

i.listicon {
	display: none;
}

p.highlight {
	background-color: #4f1509;
	display: inline;
	padding: 4px;
	color: #e7e7e7;
	line-height: 34px;
	font-size: 18px;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
}

.whychoose {
	position: absolute;
	top: 0px;
	min-height: 100%;
	background-color: #bfbfbf;
	width: 200px;
	padding: 20px 40px;
	left: 0px;
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: space-around;
}

.whychoose div {
	display: block;
	width: 100%;
}

.whychoose i {
	color: #000;
	font-size: 60px;
	text-align: center;
	display: block;
	width: 100%;
	position: relative;
	z-index: 3;
}

.whychoose i::before {
	position: absolute;
	top: -10px;
	right: 40px;
	color: #000;
	font-size: 60px;
	text-align: center;
	opacity: 0.2;
	z-index: -2;
}

.whychoose div:nth-child(1) i::before {
	content: 'school';
}

.whychoose div:nth-child(2) i::before {
	content: 'how_to_reg';
}

.whychoose div:nth-child(3) i::before {
	content: 'local_offer';
}

.whychoose p {
	font-family: 'Noto Serif', serif;
	font-size: 20px;
	margin: 0px;
	color: #000;
	font-weight: 400;
	text-align: center;
	margin-top: 10px;
}

.servicesfeature {
	padding: 40px 100px;
	position: relative;
	background-color: #4f1509;
	background-size: cover;
	overflow: hidden;
	padding-bottom: 60px;
}

.servicesfeature::before {
	width: 20%;
	height: 100%;
	content: '';
	background-color: #611e11;
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 0;
}

.servicesfeature h2 {
	font-family: 'Noto Serif', serif;
	font-weight: 400;
	font-size: 50px;
	background-color: transparent;
	margin: 0px;
}

.servicesfeature p {
	color: #e5e5e5;
}

.servicesfeature span.servicetitle {
	display: block;
	margin-top: 40px;
	border-right: solid 2px #e5e5e5;
	float: left;
	width: 35%;
	padding-right: 40px;
	position: relative;
	z-index: 1;
}

span.btn {
	display: inline-block;
	background-color: #bfbfbf;
	padding-left: 25px;
	position: relative;
	margin-top: 20px;
}

span.btn:hover {
	background-color: #7e827a;
}

span.btn:hover a, span.btn:hover i {
	color: #fff;
}

span.btn i {
	position: absolute;
	left: 10px;
	top: 10px;
	color: #4f1509;
}

.btn a {
	font-family: 'Archivo', sans-serif;
	display: block;
	padding: 10px 20px;
	color: #4f1509;
	font-weight: 500;
}

.servicemain {
	margin-top: 40px;
	float: right;
	width: 60%;
	position: relative;
	overflow: hidden;
}

.service {
	width: 33.333333%;
	float: left;
	padding: 0 5px;
	position: relative;
	-webkit-transition: opacity 0.6s ease-in-out;
	-o-transition: opacity 0.6s ease-in-out;
	transition: opacity 0.6s ease-in-out;
}

.service p {
	font-family: 'Archivo', sans-serif;
	font-weight: 400;
	font-size: 16px;
	text-transform: uppercase;
	position: absolute;
	display: block;
	margin: 0px;
	padding: 0px;
	bottom: 20%;
	right: 0px;
	z-index: 5;
	opacity: 0;
	text-align: center;
	background-color: #4f1509;
	padding: 10px 20px;
	-webkit-transition: opacity 0.6s ease-in-out;
	-o-transition: opacity 0.6s ease-in-out;
	transition: opacity 0.6s ease-in-out;
}

.service:hover p {
	opacity: 1;
}

.extracontent {
	display: flex;
	align-items: stretch;
	position: relative;
}

.testfeature {
	position: relative;
	padding: 40px;
	background: url('../images/testimg.jpg') no-repeat center;
	background-size: cover;
	padding: 180px 100px;
	padding-bottom: 250px;
}

.testfeature::before {
	position: absolute;
	width: 100%;
	height: 100%;
	content: '';
	top: 0px;
	left: 0px;
	background-color: #171717;
	opacity: 0.7;
	pointer-events: none;
}

.testfeature blockquote {
	position: relative;
	z-index: 3;
	margin: 0 auto;
	width: 60%;
}

.testfeature blockquote p {
	color: #fff;
	font-size: 14px;
	line-height: 25px;
	font-style: italic;
}

.testfeature blockquote i {
	color: #fff;
	display: inline-block;
	width: 30px;
}

.testfeature blockquote p b {
	text-transform: uppercase;
	font-style: normal;
	letter-spacing: 1px;
	font-size: 18px;
}

.testfeature span.btn {
	position: absolute;
	right: 40px;
	bottom: 120px;
}

.testfeature .testtitle {
	position: absolute;
	top: 40px;
	left: 40px;
	font-family: 'Noto Serif', serif;
	font-size: 120px;
	font-weight: 600;
	opacity: 0.3;
	color: #fff;
	width: 100%;
	text-align: center;
	letter-spacing: 2px;
	pointer-events: none;
	-webkit-writing-mode: vertical-lr;
	-ms-writing-mode: vertical-lr;
	writing-mode: vertical-lr;
	pointer-events: none;
}

.testfeature::after {
	position: absolute;
	content: '"';
	top: -65px;
	color: #bfbfbf;
	z-index: 2;
	font-size: 120px;
	-webkit-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	pointer-events: none;
}

.servicefade {
	opacity: 0.2;
	-webkit-transition: opacity 0.6s ease-in-out;
	-o-transition: opacity 0.6s ease-in-out;
	transition: opacity 0.6s ease-in-out;
}

footer {
	 background-color: #bfbfbf;
	 position: relative;
	 padding: 40px;
}

footer::before {
	position: absolute;
	top: -20px;
	height: 2px;
	width: calc(100% - 80px);
	background-color: #bfbfbf;
	content: '';
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
}

footer div {
	position: relative;
	z-index: 3;
}

footer ul {
	padding: 0px;
	margin: 0px;
	display: block;
	text-align: center;
	position: relative;
	z-index: 3;
}

footer ul li {
	font-family: 'Archivo', sans-serif;
	font-weight: 600;
	list-style: none;
	display: inline-block;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #000;
}

footer ul li a:hover {
	color: #fff;
}

footer ul li a {
	display: block;
	padding: 6px;
	margin: 0 10px;
}

footer p {
	margin: 0px;
	font-size: 14px;
}

.footerboxes {
	display: flex;
	align-content: stretch;
	justify-content: space-evenly;
	margin-top: 50px;
}

*:focus {
	border: none;
	outline: none;
}

.accreds {
	display: none;
	position: relative;
	overflow: hidden;
	background-color: #ececec;
	text-align: center;
}

.accreds .slick-track {
	display: flex;
	align-items: stretch;
}

.accreds span {
	float: left;
	width: calc(20% - 1px);
	position: relative;
	display: flex;
	overflow: hidden;
	background-color: #fff;
	-webkit-box-shadow: inset 0 0 16px #ebebeb;
	box-shadow: inset 0 0 16px #ebebeb;
	margin-right: 1px;
	align-content: center;
	justify-content: center;
	align-items: center;
}

.accreds span img {
	display: block;
	margin: 0 auto;
	padding: 30px;
	max-height: 110px;
	align-self: center;
}

.enquiries {
	background-color: #4f1509;
	position: relative;
	overflow: hidden;
	padding: 80px;
}

.enquiries::after {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0px;
	top: 0px;
	content: '';
	background: url('../images/enquiries.jpg') no-repeat center;
	background-size: cover;
	opacity: 0.2;
}

form {
	position: relative;
	z-index: 3;
	color: #fff;
	font-size: 12px;
}

.third {
	width: 33.333333%;
	float: left;
}

form .third {
	margin-right: 10px;
	width: calc(33.333333% - 10px);
}

form .third:nth-of-type(3) {
	margin-right: 0px;
	width: 33.33333333%;
}

.captcha, .captxt, .subbtn {
	width: auto;
	float: left;
	margin-right: 20px;
}

form input, form textarea {
	font-size: 14px !important;
	border-radius: 0px !important;
	padding: 10px !important;
	height: auto !important;
	border: none !important;
}

form input[type="submit"] {
	background-color: #bfbfbf;
	padding: 31.5px 25px !important;
	color: #1c1c1c;
	text-transform: uppercase;
}

form input[type="submit"]:hover {
	background-color: #7e827a;
	color: #fff;
}

form textarea {
	display: block;
	min-height: 100px;
}

.gallery {
	position: relative;
	overflow: hidden;
	padding: 40px 0;
}

.galleryimg {
	float: left;
	width: 20%;
	padding: 5px;
}

.testimonials {
	position: relative;
	overflow: hidden;
}

.review {
	overflow: hidden;
	display: flex;
	align-items: stretch;
	margin-top: 20px;
}

.testimonials blockquote {
	overflow: hidden;
	display: block;
	position: relative;
	border-left: solid 5px #703030;
	margin: 0px;
	margin-left: 20px;
	padding-left: 20px;
	background-color: #f4f4f4;
	padding: 25px;
	width: calc(100% - 80px);
	float: left;
}

.testimonials blockquote p {
	font-size: 14px;
	text-align: left;
}

.stars {
	float: right;
	width: 50px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.stars i {
	display: block;
	text-align: center;
	color: #bfbfbf;
	font-size: 18px;
}

p.author {
	font-family: 'Archivo', sans-serif;
	font-size: 24px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #7e827a;
}


/*Big Lappy*/
@media screen and (max-width: 1440px) {
	body {
		height: auto !important;
	}
}
/*Basic lappy*/
@media screen and (max-width: 1366px) {
	.social {
		display: none;
	}
	nav {
		justify-content: space-evenly;
	}
}
/*iPad Landscape*/
@media screen and (max-width: 1280px) {
	.narrowwrapper {
		width: 100%;
	}
	.narrowwrapper .main {
		padding: 40px;
	}
}
/*iPad Landscape*/
@media screen and (max-width: 1024px) {
	nav ul {
		padding-left: 0px;
	}
	.home {
		width: 60%;
	}
	aside {
		width: 40%;
	}
	.servicemain {
		width: 50%;
	}
	.testfeature blockquote {
		width: 80%;
		margin: initial;
		margin-left: auto;
	}
	.galleryimg {
		width: 25%;
	}
}
/*IPHONE X Landscape*/
@media screen and (max-width: 910px) {
	.contact {
		flex-direction: column;
		padding-bottom: 40px;
	}
	.contact p {
		margin: 0px;
		text-align: center;
	}
	.homewrapper {
		display: block;
	}
	.home {
		float: none;
		width: 100%;
	}
	aside {
		float: none;
		width: 100%;
		padding-top: 350px;
	}
	.whychoose {
		position: relative;
		width: 100%;
		flex-direction: row;
		padding: 40px;
	}
	.whychoose i::before {
		right: 100px;
	}
	.servicesfeature span.servicetitle {
		width: 47%;
	}
	.servicesfeature h2 {
		line-height: 60px;
	}
	.footerboxes div {
		padding: 0 20px;
	}
	.contactdetails {
		display: none;
	}
	.narrowwrapper {
		display: block;
	}
	.main, aside.sidebar {
		float: none;
		width: 100%;
	}
	aside.sidebar {
		padding: 40px;
	}
}
/*iPad Portrait*/
@media screen and (max-width: 768px) {
	.servicesfeature {
		padding: 40px 70px;
	}
	.servicesfeature p {
		font-size: 14px;
	}
	.testfeature .testtitle {
		height: 100%;
		top: 0px;
		letter-spacing: 15px;
	}
	.contactdetails {
		display: none;
	}
	.logo img {
		max-height: 150px;
	}
	.galleryimg {
		width: 33.33333333%;
	}
	form .third {
		width: calc(50% - 10px);
	}
	form .third:nth-of-type(3) {
		width: 100%;
	}
	form .third:nth-of-type(2) {
		margin-right: 0px;
		width: 50%;
	}
	form .third {
		width: 100% !important;
		margin-right: 0px !important;
	}
	.captcha, .captxt, .subbtn {
		width: 100%;
		float: none;
	}
	form input[type="submit"] {
		width: 100%;
		padding: 20px !important;
	}
	form img {
		display: block;
		margin: 0 auto;
		margin-bottom: 20px;
	}
}
/*Phone*/
@media screen and (max-width: 480px) {
	.logo span {
		font-size: 80px;
	}
	.logo p {
		font-size: 16px;
		padding-left: 20px;
		width: 300px;
		text-align: center;
		line-height: 20px;
	}
	.logowrapper {
		align-items: flex-start;
	}
	.logo {
		top: 75px;
	}
	.home {
		padding: 40px;
	}
	.whychoose i::before {
		right: 20px;
	}
	.servicesfeature {
		padding: 40px;
	}
	.servicesfeature span.servicetitle {
		float: none;
		width: 90%;
	}
	.servicemain {
		float: none;
		width: 100%;
	}
	.testfeature .testtitle {
		display: none;
	}
	.testfeature {
		padding: 100px 40px;
		padding-bottom: 160px;
	}
	.testfeature span.btn {
		bottom: 40px;
	}
	.testfeature blockquote {
		margin-right: auto;
	}
	.footerboxes div {
		float: none;
		width: 100%;
		padding-bottom: 40px;
	}
	.footerboxes {
		display: block;
	}
	nav ul li ul {
		top: 70px;
		right: initial;
		left: 0px;
		margin-left: 0px;
	}
	.fadednav {
		opacity: 0.03 !important;
	}
	.logo img {
		max-height: 100px;
		display: block;
		margin: 0 auto;
		padding-left: 0px;
	}
	.galleryimg {
		width: 50%;
	}
	.review {
		align-items: flex-start;
		flex-direction: column;
	}
	.stars {
		order: -1;
		flex-direction: row;
		width: auto;
		padding-bottom: 20px;
	}
	.stars i {
		font-size: 22px;
		margin-right: 10px;
	}
	.testimonials blockquote {
		width: 100%;
	}
}
/*Phone*/
@media screen and (max-width: 425px) { 
	.contact p {
		font-size: 16px;
	}
	.logo {
		padding: 20px;
	}
	.logo::before {
		left: 10px;
	}
	.accreds span img {
		max-height: 90px;
	}
}
/*Phone*/
@media screen and (max-width: 395px) { 
	nav {
		width: 100%;
		right: -100%;
	}
	.logo::before {
		left: 20px;
	}
	.home {
		padding: 20px;
	}
	.whychoose {
		flex-direction: column;
	}
	.whychoose i::before {
		right: 110px;
	}
	.whychoose div {
		padding-bottom: 40px;
	}
	footer ul li {
		display: block;
	}
	aside {
		background-size: contain;
		background-position: top center;
	}
}</pre></body></html>