/* Tipografía (asegúrate de importar en tu HTML) */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans&family=Oswald:wght@500&display=swap');

/* --** Reset CSS **-- */
* {
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
	border: 0;
	font-family: inherit;
	font-size: 100%;
	font-weight: inherit;
	margin: 0;
	outline: 0;
	padding: 0;
	vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
	display: block;
}

html,
body,
button,
input,
select,
textarea {
	font-family: Arial;
	font-size: 12px;
	color: #8c806e;
}

ul,
ol {
	margin-top: 0;
	margin-bottom: 10px;
}

ul ul {
	margin-bottom: 0;
}

li {
	font-size: 13px;
	margin: 5px 0px 10px 0px;
}

pre {
	overflow: auto;
}

table {
	border-collapse: separate;
	border-spacing: 0;
}

caption,
th,
td {
	font-weight: normal;
	text-align: left;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
}

blockquote,
q {
	-webkit-hyphens: none;
	-moz-hyphens: none;
	-ms-hyphens: none;
	hyphens: none;
	quotes: none;
}

a img {
	border: 0;
}

a,
input {
	outline: none;
}

a {
	color: rgba(255, 0, 102, 0);
}

a:hover {
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 5px 0px 15px 0px;
	clear: both;
	font-weight: lighter;
}

h1 {
	font-size: 36px;
}

h2 {
	font-size: 30px;
}

h3 {
	font-size: 24px;
}

h4 {
	font-size: 20px;
}

h5 {
	font-size: 18px;
}

h6 {
	font-size: 14px;
}

p {
	font-size: 13px;
	margin: 5px 0px 15px 0px;
}

img {
	-ms-interpolation-mode: bicubic;
	border: 0;
	height: auto;
	max-width: 100%;
	vertical-align: middle;
	display: block;
}

figure {
	margin: 0;
}

::-webkit-input-placeholder {
	color: rgba(51, 51, 51, 0.7);
}

:-moz-placeholder {
	color: rgba(51, 51, 51, 0.7);
}

::-moz-placeholder {
	color: rgba(51, 51, 51, 0.7);
	opacity: 1;
	/* Since FF19 lowers the opacity of the placeholder by default */
}

:-ms-input-placeholder {
	color: rgba(51, 51, 51, 0.7);
}

input:focus,
textarea:focus {
	background-color: #fff;
	border: 1px solid #c1c1c1;
	border: 1px solid rgba(51, 51, 51, 0.3);
	color: #333;
}

input:focus,
select:focus {
	outline: 2px solid #c1c1c1;
	outline: 2px solid rgba(51, 51, 51, 0.3);
}

.hide {
	display: none;
}

.clear {
	clear: both;
	height: 0px;
	overflow: hidden;
}

/* <<< Design Holder >>> */
.DesignHolder {
	position: relative;
	display: block;
	width: 100%;
	min-height: 100%;
}

/* <<< Layout Frame >>> */
.LayoutFrame {
	margin: 0 auto;
	width: 100%;
	display: block;
}

/* <<< Body >>> */
body {
	background: #ebebeb;
}

/* <<< Header >>> */
header {
	width: 100%;
	position: fixed;
	top: 0px;
	left: 0px;
	height: 80px;
	background: #ebebeb;
	z-index: 9;
}

header .Center {
	max-width: 1100px;
	margin: auto;
}

header .site-logo {
	padding: 20px 0px 0px 0px;
	width: 220px;
	float: left;
	transition: all 0.3s;
}

header .site-logo img.logo-img {
	max-width: 150px;
	height: auto;
	display: block;
}

/* Versión más pequeña al hacer scroll */
header.smaller {
	padding: 0px;
	height: 55px;
	transition: all 0.3s;
	background: #ffffff;
}

header.smaller .site-logo {
	padding: 10px 0px 0px 0px;
}

header.smaller .site-logo img.logo-img {
	max-width: 140px;
}

/*=========== NAV ============*/
.Navigation {
	float: right;
	width: 68.18%;
	margin-right: 11px;
}

.Navigation ul {
	list-style: none;
	margin: 0px;
	float: right;
}

.Navigation li {
	float: left;
	padding: 0px;
	margin: 0px;
	height: 105px;
	position: relative;
	transition: all 0.3s ease;
}

.Navigation li a {
	padding: 42px 41px 36px 41px;
	font-size: 16px;
	color: #000000;
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
	text-decoration: none;
	display: block;
	transition: all 0.3s ease;
}

.Navigation li span {
	border-bottom: solid 3px #5b3b27;
	background: linear-gradient(to bottom, #ffffff 0%, #ffffff 0%, #ffffff 0%, #ffffff 100%);
	width: 100%;
	height: 78%;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -10;
	opacity: 0;
	transition: all 0.5s ease;
}

.Navigation li:hover span,
.Navigation li.active span {
	opacity: 1;
}

header.smaller .Navigation li a {
	padding: 16px 41px;
}

header.smaller .Navigation li {
	height: 60px;
}

.mobile {
	display: none;
}

.mobile .fa {
	padding: 12px 14px;
	font-size: 31px;
	width: 55px;
	height: 55px;
	color: #fff;
	cursor: pointer;
	background: #43392b;
}

.mobile .fa:hover {
	background: #6b5c45;
}

.mobile.closed .fa-bars {
	display: none;
}

.mobile .fa-times {
	padding: 11px 15px;
	width: 55px;
	height: 55px;
	display: none;
	font-size: 31px;
}

.mobile.closed .fa-times {
	display: block;
}


/* <<< REDES >>> */
.floating-social-icons {
	position: fixed;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	z-index: 999;
	gap: 6px;
	padding: 6px 2px;
}

.floating-social-icons a {
	width: 40px;
	height: 40px;
	background: #000000;
	color: #ffffff;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 20px;
	font-size: 14px;
	transition: all 0.3s ease;
	text-decoration: none;
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}

.floating-social-icons a:hover {
	background: #715734;
	color: #fff;
}

/* Responsivo en móviles */
@media screen and (max-width: 480px) {
	.floating-social-icons a {
		width: 28px;
		height: 28px;
		font-size: 12px;
	}
}

/* =============== INICIO ================ */
.hero-carousel {
	position: relative;
	height: 60vh;
	overflow: hidden;
}

.carousel-slide {
	position: absolute;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	opacity: 0;
	transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
	opacity: 1;
	z-index: 1;
}

.overlay {
	position: absolute;
	bottom: 15%;
	left: 8%;
	max-width: 500px;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 15px;
	padding: 2rem;
	color: #fff;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
	animation: fadeInUp 1s ease forwards;
	opacity: 0;
	transform: translateY(30px);
}

.carousel-slide.active .overlay {
	opacity: 1;
	transform: translateY(0);
}

.overlay h2 {
	font-size: 2.5rem;
	font-weight: 800;
	margin-bottom: 1rem;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
	font-family: 'Oswald', sans-serif;
	text-transform: uppercase;
}

.overlay p {
	font-size: 1.5rem;
	font-weight: 300;
	line-height: 1.5;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
	font-family: 'Open Sans', sans-serif;
}

.overlay .cta-btn {
	display: inline-block;
	margin-top: 1.5rem;
	padding: 0.75rem 1.5rem;
	background-color: #644732;
	color: #ffffff;
	font-weight: 100;
	border-radius: 8px;
	text-decoration: none;
	transition: background-color 0.3s ease;
	font-family: 'Open Sans', sans-serif;
}

.overlay .cta-btn:hover {
	background-color: #bb9f8c;
}

@keyframes fadeInUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.carousel-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(0, 0, 0, 0.4);
	border: none;
	color: white;
	font-size: 2rem;
	cursor: pointer;
	border-radius: 80px;
	padding: 1rem;
	z-index: 2;
}

.carousel-btn.prev {
	left: 10px;
}

.carousel-btn.next {
	right: 10px;
}

.carousel-dots {
	position: absolute;
	bottom: 20px;
	width: 100%;
	text-align: center;
	z-index: 2;
}

.carousel-dots .dot {
	display: inline-block;
	width: 15px;
	height: 15px;
	margin: 0 5px;
	background: #fff;
	border-radius: 50%;
	opacity: 0.5;
	cursor: pointer;
}

.carousel-dots .dot.active {
	opacity: 1;
	background: #393939;
}


/* <<< ABOUT >>> */

.about-section {
	padding: 5rem 2rem;
}

.about-container {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	max-width: 1100px;
	margin: 0 auto;
	gap: 2rem;
}

.about-text {
	flex: 1 1 55%;
	text-align: justify;
	font-family: 'Open Sans', sans-serif;
}

.about-text h2 {
	font-size: 48px;
	font-family: 'Oswald', sans-serif;
	font-weight: 500;
	margin-bottom: 10px;
	text-transform: uppercase;
	color: #4f3333;
}

.about-text p {
	font-size: 1.2rem;
	color: #333;
	line-height: 1.7;
	margin-bottom: 1.2rem;
}

.about-logo {
	flex: 1 1 35%;
	text-align: center;
}

.about-logo img {
	max-width: 100%;
	height: auto;
	transition: transform 0.4s ease;
	cursor: pointer;
}

.about-logo img:hover {
	transform: scale(1.1);
}

@keyframes floatLogo {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-10px);
	}
}

/* Responsive: stack en móviles */
@media (max-width: 768px) {
	.about-container {
		flex-direction: column-reverse;
		text-align: center;
	}

	.about-text {
		text-align: justify;
	}
}


/* <<< Services Section >>> */
.gallery-section {
	padding: 4rem 2rem;
	text-align: center;
	background: #fff;
	font-family: 'Open Sans', sans-serif;
}

.gallery-section h2 {
	font-family: 'Oswald', sans-serif;
	font-size: 48px;
	margin-bottom: 1rem;
	font-weight: 500;
	text-transform: uppercase;
	color: #4f3333;
}

.gallery-intro {
	font-size: 1.2rem;
	max-width: 800px;
	line-height: 1.5;
	margin: 0 auto 2rem;
	color: #555;
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 1.5rem;
	max-width: 1200px;
	margin: auto;
}

.gallery-card {
	background: #f9f9f9;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 12px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease;
	cursor: pointer;
}

.gallery-card:hover {
	transform: scale(1.02);
}

.gallery-card img {
	width: 100%;
	height: 180px;
	object-fit: cover;
}

.caption {
	padding: 1rem;
	font-weight: 600;
	background: #fff;
}

/* MODAL */
.modal {
	display: none;
	position: fixed;
	z-index: 999;
	left: 0;
	top: 0;
	width: 100vw;
	height: 100vh;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.9);
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.modal-content {
	max-width: 90%;
	max-height: 80vh;
	border-radius: 10px;
	margin: auto;
}

.modal-caption {
	margin-top: 1rem;
	color: #fff;
	font-size: 1.1rem;
	text-align: center;
}

.modal .close {
	position: absolute;
	top: 20px;
	right: 40px;
	color: white;
	font-size: 2rem;
	cursor: pointer;
	z-index: 1000;
}

/* <<< Pricing Section >>> */
.TeknicPromo_sec {
	padding: 150px 20px;
	width: 100%;
	display: flex;
	justify-content: center;
}

.TeknicPromo_sec .PromoWrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1100px;
	width: 100%;
	flex-wrap: wrap;
	gap: 40px;
}

.PromoText {
	flex: 1 1 60%;
	text-align: left;
}

.PromoText h2 {
	font-size: 40px;
	font-family: 'Oswald', sans-serif;
	color: #c96106;
	margin-bottom: 10px;
	font-weight: 600;
	text-transform: uppercase;
}

.PromoText h3 {
	font-size: 24px;
	color: #000000;
	font-family: 'Open Sans', sans-serif;
	margin-bottom: 20px;
	font-weight: 300;
}

.PromoText p {
	font-size: 16px;
	line-height: 28px;
	color: #555;
	text-align: justify;
	font-family: 'Open Sans', sans-serif;
}

.PromoButtonBox {
	flex: 1 1 30%;
	text-align: right;
}

.PromoButtonBox img.LogoTeknic {
	max-width: 380px;
	height: auto;
	transition: transform 0.3s ease;
}

.PromoButtonBox img.LogoTeknic:hover {
	transform: scale(1.05);
}

button {
	position: relative;
	display: inline-block;
	cursor: pointer;
	outline: none;
	border: 0;
	vertical-align: middle;
	text-decoration: none;
	background: transparent;
	padding: 0;
	font-size: 1.2rem;
	font-family: inherit;
}

button.learn-more {
	width: 15em;
	height: auto;
	margin-top: 30px;
}

button.learn-more .circle {
	transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
	position: relative;
	display: block;
	margin: 0;
	width: 3rem;
	height: 3rem;
	background: #cd5f0b;
	border-radius: 3rem;
}

button.learn-more .circle .icon {
	transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	background: #fff;
}

button.learn-more .circle .icon.arrow {
	transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
	left: 0.625rem;
	width: 1.125rem;
	height: 0.125rem;
	background: none;
}

button.learn-more .circle .icon.arrow::before {
	position: absolute;
	content: "";
	top: -0.29rem;
	right: 0.0625rem;
	width: 0.625rem;
	height: 0.625rem;
	border-top: 0.125rem solid #fff;
	border-right: 0.125rem solid #fff;
	transform: rotate(45deg);
}

button.learn-more .button-text {
	transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 0.75rem 0;
	margin: 0 0 0 1.85rem;
	color: #9d5f19;
	font-weight: 700;
	line-height: 1.6;
	text-align: center;
	text-transform: uppercase;
}

button:hover .circle {
	width: 100%;
}

button:hover .circle .icon.arrow {
	background: #fff;
	transform: translate(1rem, 0);
}

button:hover .button-text {
	color: #fff;
}

/* ==========================================================================
			COTIZACION
   ========================================================================== */
.cotizacion-section {
	padding: 1rem 1rem;
	background-color: #fff;
	font-family: 'Open Sans', sans-serif;
	width: 100%;
	box-sizing: border-box;
}

.cotizacion-container {
	max-width: 100%;
	width: 100%;
	margin: 0 auto;
	background: #fff;
	padding: 2rem;
	box-sizing: border-box;
}

.cotizacion-container h2 {
	font-family: 'Oswald', sans-serif;
	color: #4f3333;
	font-size: 3.5rem;
	margin-bottom: 1.5rem;
	font-weight: 500;
	text-align: center;
	text-transform: uppercase;
}

.cotizacion-form {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	width: 100%;
}

.form-row {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	width: 100%;
}

.form-row input,
.form-row select {
	flex: 1;
	min-width: 200px;
	padding: 0.75rem;
	font-size: 1rem;
	border: 1px solid #ccc;
	border-radius: 6px;
	box-sizing: border-box;
}

textarea {
	width: 100%;
	padding: 0.75rem;
	font-size: 1rem;
	border: 1px solid #ccc;
	border-radius: 6px;
	resize: vertical;
	box-sizing: border-box;
}

.enviar-btn {
	align-self: center;
	background-color: #412511;
	color: #fff;
	border: none;
	border-radius: 6px;
	padding: 0.75rem 2rem;
	font-family: 'Oswald', sans-serif;
	font-size: 1rem;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.enviar-btn:hover {
	background-color: #95694a;
}


/* ==========================================================================
			FOOTHER
   ========================================================================== */
.Contact_sec {
	width: 100%;
	background-color: #ffffff;
	color: #fff;
	padding-bottom: 8px;
}

.Contact_sec .Contactside {
	padding: 10px 0 30px;
	text-align: center;
}

.Contact_sec .Center {
	max-width: 1100px;
	margin: auto;
	padding: 0 20px;
}

.Contact_sec h3 {
	font-size: 45px;
	font-family: 'Oswald', sans-serif;
	text-transform: uppercase;
	color: #553a21;
	margin-bottom: 20px;
	font-weight: 500;
}

.Contact_sec p {
	font-size: 16px;
	font-family: 'Open Sans', sans-serif;
	color: #090909;
	line-height: 1.7;
}

.ContactInfo i {
	color: #553a21;
	margin-right: 10px;
	font-size: 18px;
	vertical-align: middle;
}

.ContactGrid {
	display: flex;
	max-width: 1100px;
	margin: 0 auto;
	padding: 0;
}

.Map,
.ContactInfo {
	width: 50%;
	min-height: 400px;
}

.Map {
	padding-right: 0;
}

.ContactInfo {
	padding-left: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 40px;
}

.Map iframe {
	border: 0;
	width: 100%;
	height: 100%;
	display: block;
}

.ContactInfo h4 {
	font-size: 26px;
	margin-bottom: 10px;
	color: #94551b;
	font-family: 'Oswald', sans-serif;
}

.ContactInfo p {
	font-size: 15px;
	line-height: 1.6;
	color: #000000;
	margin-bottom: 10px;
}

.ContactInfo a {
	color: #9c5819;
	text-decoration: none;
	transition: color 0.3s ease;
}

.ContactInfo a:hover {
	color: #b09d8a;
}

/* Responsive */
@media (max-width: 768px) {
	.ContactGrid {
		flex-direction: column;
	}

	.Map,
	.ContactInfo {
		width: 100%;
	}

	.ContactInfo {
		padding: 20px;
	}
}

/* <<< Footer Mejorado >>> */
footer {
	background-color: #ebebeb;
	color: #ccc;
	padding: 60px 20px 20px 20px;
	font-family: 'Open Sans', sans-serif;
}

.FooterContainer {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	max-width: 1100px;
	margin: auto;
	gap: 30px;
}

.FooterLeft,
.FooterRight {
	flex: 1 1 300px;
}

.FooterLeft h4,
.FooterRight h4 {
	font-size: 20px;
	color: #735a42;
	text-transform: uppercase;
	margin-bottom: 20px;
	font-family: 'Oswald', sans-serif;
}

.FooterLeft ul,
.SocialIcons {
	list-style: none;
	padding: 0;
	margin: 0;
}

.FooterLeft ul li {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}

.FooterLeft ul li i {
	color: #916941;
	font-size: 18px;
	margin-right: 10px;
}

.FooterLeft ul li a {
	text-decoration: none;
	color: #7d7d7d;
	font-size: 15px;
	transition: color 0.3s ease;
}

.FooterLeft ul li a:hover {
	color: #cebcaa;
}

.RightContent {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}

.SocialIcons {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}

.SocialIcons i {
	font-size: 26px;
	color: #7d7d7d;
	transition: color 0.3s ease;
}

.SocialIcons i:hover {
	color: #cebcaa;
}

.EmpretecLogoFooter img {
	max-width: 240px;
	height: auto;
	filter: brightness(0) invert(1);
}

.Copyright {
	text-align: center;
	padding: 25px 0 0;
	font-size: 14px;
	color: #888;
	border-top: 1px solid #333;
	margin-top: 30px;
}

.FooterContactInfo {
	margin-top: 20px;
	font-size: 14px;
	color: #7d7d7d;
	line-height: 1.6;
}

.FooterContactInfo a:hover {
	color: #cebcaa;
}

/* Responsive */
@media (max-width: 768px) {
	.RightContent {
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
	}

	.FooterContainer {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.FooterLeft,
	.FooterRight {
		flex: 1 1 100%;
	}

	.SocialIcons {
		justify-content: center;
	}

	.EmpretecLogoFooter img {
		margin: auto;
	}
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */
#loader-wrapper {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1000;
}

#loader {
	display: block;
	position: relative;
	left: 50%;
	top: 50%;
	width: 150px;
	height: 150px;
	margin: -75px 0 0 -75px;
	border-radius: 50%;
	border: 3px solid transparent;
	border-top-color: #fff8f3;
	-webkit-animation: spin 2s linear infinite;
	/* Chrome, Opera 15+, Safari 5+ */
	animation: spin 2s linear infinite;
	/* Chrome, Firefox 16+, IE 10+, Opera */
	z-index: 1001;
}

#loader:before {
	content: "";
	position: absolute;
	top: 5px;
	left: 5px;
	right: 5px;
	bottom: 5px;
	border-radius: 50%;
	border: 3px solid transparent;
	border-top-color: #fff5ed;
	-webkit-animation: spin 3s linear infinite;
	/* Chrome, Opera 15+, Safari 5+ */
	animation: spin 3s linear infinite;
	/* Chrome, Firefox 16+, IE 10+, Opera */
}

#loader:after {
	content: "";
	position: absolute;
	top: 15px;
	left: 15px;
	right: 15px;
	bottom: 15px;
	border-radius: 50%;
	border: 3px solid transparent;
	border-top-color: #f8eee5;
	-webkit-animation: spin 1.5s linear infinite;
	/* Chrome, Opera 15+, Safari 5+ */
	animation: spin 1.5s linear infinite;
	/* Chrome, Firefox 16+, IE 10+, Opera */
}

@-webkit-keyframes spin {
	0% {
		-webkit-transform: rotate(0deg);
		/* Chrome, Opera 15+, Safari 3.1+ */
		/* IE 9 */
		transform: rotate(0deg);
		/* Firefox 16+, IE 10+, Opera */
	}

	100% {
		-webkit-transform: rotate(360deg);
		/* Chrome, Opera 15+, Safari 3.1+ */
		/* IE 9 */
		transform: rotate(360deg);
		/* Firefox 16+, IE 10+, Opera */
	}
}

@keyframes spin {
	0% {
		-webkit-transform: rotate(0deg);
		/* Chrome, Opera 15+, Safari 3.1+ */
		/* IE 9 */
		transform: rotate(0deg);
		/* Firefox 16+, IE 10+, Opera */
	}

	100% {
		-webkit-transform: rotate(360deg);
		/* Chrome, Opera 15+, Safari 3.1+ */
		/* IE 9 */
		transform: rotate(360deg);
		/* Firefox 16+, IE 10+, Opera */
	}
}

#loader-wrapper .loader-section {
	position: fixed;
	top: 0;
	width: 51%;
	height: 100%;
	background: #222222;
	z-index: 1000;
	-webkit-transform: translateX(0);
	/* Chrome, Opera 15+, Safari 3.1+ */
	/* IE 9 */
	transform: translateX(0);
	/* Firefox 16+, IE 10+, Opera */
}

#loader-wrapper .loader-section.section-left {
	left: 0;
}

#loader-wrapper .loader-section.section-right {
	right: 0;
}

/* Loaded */
.loaded #loader-wrapper .loader-section.section-left {
	-webkit-transform: translateX(-100%);
	/* Chrome, Opera 15+, Safari 3.1+ */
	/* IE 9 */
	transform: translateX(-100%);
	/* Firefox 16+, IE 10+, Opera */
	transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

.loaded #loader-wrapper .loader-section.section-right {
	-webkit-transform: translateX(100%);
	/* Chrome, Opera 15+, Safari 3.1+ */
	/* IE 9 */
	transform: translateX(100%);
	/* Firefox 16+, IE 10+, Opera */
	transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

.loaded #loader {
	opacity: 0;
	transition: all 0.3s ease-out;
}

.loaded #loader-wrapper {
	visibility: hidden;

	-webkit-transform: translateY(-100%);
	/* Chrome, Opera 15+, Safari 3.1+ */
	/* IE 9 */
	transform: translateY(-100%);
	/* Firefox 16+, IE 10+, Opera */
	transition: all 0.3s 1s ease-out;
}

/* JavaScript Turned Off */
.no-js #loader-wrapper {
	display: none;
}