/* FONTS
----------------------------------------------------------------------------------------------------*/

html {
	font-family: "Montserrat", Helvetica, Arial, "Lucida Grande", sans-serif;
    font-size:62.50%;
    font-weight:500;
    color:#333333;
}

h1.hidden {
	display:block;
	height:1px;
	overflow:hidden;
	margin:0;
}

h1, h2.lrg {
	font-size:3.6rem;
	font-weight:700;
	line-height: 1.2;
    margin-bottom: 10px;
}

h1 {
	color:#ffffff;
}

h2 {
	font-size:2.1rem;
	font-weight:700;
	color:#000000;
	margin-bottom:2.5rem;
}

p {
	font-size:1.6rem;
	line-height:1.5;
	margin-bottom:25px;
}

p:last-child {
	margin-bottom:0;
}

p strong {
	font-weight:700;
}

p a {
	color:#29ABE2;
}

p.dot-split span {
	display:inline-block;
	font-size:3rem;
	line-height: 1;
    vertical-align: bottom;
    margin:0 10px;
}

/* FONT OPTIONS - ALIGNMENT */

.text-center {
	text-align:center;
}

/* MAIN LAYOUT
----------------------------------------------------------------------------------------------------*/

body, html {
	height:100%;
}

body {
	background-color:#1A1A1A;
	padding-top:120px;
}

.container,
.content,
section {
	position:relative;
	display:block;
	width:100%;
	min-width:1140px;
}

.container:after,
.content:after,
section:after {
	display:block;
	content: " ";
	clear: both;
	height:0;
	width:100%;
	*zoom: 1;
}

.container {
	background-color:#ffffff;
	z-index:10;
}

.content,
section {
    padding:8rem 15px;
    margin:0 auto;
    max-width:1140px;
}

section + section {
	padding-top:0;
}

.container[id*="-content"] {
	min-height:300px;
}

/* TITLE HEADER (CONTENT PAGES) */

#title-header section {
	width:100%;
	max-width:inherit;
	height:300px;
	padding:0;
	overflow:hidden;
}

#title-header img {
	width:auto;
	height:100%;
	min-height:300px;
	object-fit:contain;
}

#title-header header {
	position:absolute;
	top:0;
	left:0;
	display:flex;
	flex-direction:column;
	justify-content: center;
	width:100%;
	height:100%;
	padding:0 15px;
	min-width:1140px;
}

#title-header h1 {
	text-align:center;
	text-shadow: 3px 3px 3px rgba(0,0,0,0.4);
	margin-bottom:0;
}

#title-header.about-us {
	background:url(../images/headers/about-us.jpg) no-repeat center top;
	background-size:cover;
}

#title-header.products {
	background:url(../images/headers/our-products.jpg) no-repeat center top;
	background-size:cover;
}

#title-header.brands {
	background:url(../images/headers/our-brands.jpg) no-repeat center top;
	background-size:cover;
}

#title-header.services {
	background:url(../images/headers/our-services.jpg) no-repeat center top;
	background-size:cover;
}

#title-header.projects {
	background:url(../images/headers/our-projects.jpg) no-repeat center top;
	background-size:cover;
}

#title-header.contact-us {
	background:url(../images/headers/contact-us.jpg) no-repeat center top;
	background-size:cover;
}

#title-header.error-page {
	background:url(../images/headers/error-page.jpg) no-repeat center top;
	background-size:cover;
}

/* CATEGORY GRID */

.category-grid {
	display:grid;
	grid-gap:3rem;
	grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
	margin-bottom:8rem;
}

.category-grid a {
	color:#333333;
	transition: color 200ms;
}

.category-grid .image-wrapper {
	position:relative;
	margin-bottom:5px;
}

.category-grid img {
	width:100%;
	height:auto;
	border:1px solid #1AA0DD;
	padding:3px;
	background-color:#ffffff;
}

.category-grid span {
	display:block;
	font-size:1.6rem;
	font-weight:600;
	line-height:1.5;
	text-align:center;
}

.category-grid .overlay {
	position:absolute;
	top:0;
	left:0;
	display:flex;
	flex-direction:column;
	justify-content: center;
	width:100%;
	height:100%;
	background-color:rgba(0,0,0,0.5);
	opacity:0;
	pointer-events: none;
	transition: all 200ms;
}

.category-grid .overlay .zoom {
	display:inline-block;
	width:50px;
	height:50px;
	margin:0 auto;
	background:#F7931E url(../images/zoom.svg) no-repeat center center;
	border-radius:4px;
	border:none;
	padding:10px;
}

.category-grid a:hover .overlay {
	opacity:1;
	pointer-events: inherit;
}

.category-grid a:hover {
	color:#F7931E;
}

/* PRODUCTS GRID */

.products-grid {
	display:grid;
	grid-gap:1.5rem;
	grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
	margin-bottom:1rem;
}

.products-grid > div {
	margin-bottom:1rem;
}

.products-grid img {
	width:100%;
	height:auto;
	border:1px solid #E2E2E2;
	margin-bottom:10px;
}

.products-grid span {
	display:block;
	font-size:1.6rem;
	font-weight:600;
	line-height:1.5;
	text-align:center;
}

.products-grid span strong {
	display:block;
	font-weight:600;
}

/* IMAGE GRID */

.image-grid {
	display:grid;
	grid-gap:1em;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.image-grid img {
	width:100%;
	height:auto;
	border-radius:10px;
}

/* FLEXBOX PRESETS */

div[class*="flexbox-"] {
	display: flex;
	flex-wrap: wrap;
}

.flexbox-freesize {
  	justify-content: flex-start;
  	width: 100%;
}

.flexbox-absolute-center {
	flex-direction: column;
  	justify-content: center;
	align-items: center;
	width: 100%;
}

.flexbox-justified {
  	justify-content: space-between;
  	width: 100%;
}

.flexbox-centered {
    justify-content: center;
    width: 1140px;
    margin-left:-15px;
    margin-right:-15px;
    margin-bottom:3rem;
}

/* LOGO FLEXBOX */

.logo-flexbox > div {
	flex: 0 0 160px;
	margin:0 14px 30px;
	height:160px;
	background-color:#ffffff;
	border:1px solid #1AA0DD;
}

.logo-flexbox .image-wrapper  {
	display:flex;
	flex-direction:column;
	justify-content: flex-end;
	width:100%;
	height:105px;
}

.logo-flexbox img {
	margin:auto;
	object-fit:contain;
	max-height:90px;
}

.logo-flexbox span {
	display:flex;
	flex-direction:column;
	justify-content:center;
	font-size:1.3rem;
	font-weight:500;
	text-align:center;
	color:#303030;
	line-height:1.3;
	width:100%;
	height:55px;
	padding:0 15px;
}

/* LOGO FLEXBOX - FULL SIZE LOGO */

.logo-flexbox.full .image-wrapper  {
	justify-content:center;
	height:100%;
}

.logo-flexbox.full img {
	max-height:110px;
}

/* INFO BOX FULL / DOUBLE */

div[class*="info-box-"] {
	margin-bottom:1rem;
}

div[class*="info-box-"] > div {
	margin:0 1.5rem;
}

div[class*="info-box-"] img {
	border-radius:5px;
	margin-bottom:2rem;
}

div[class*="info-box-"] ul,
div[class*="info-box-"] ul li {
	margin-bottom:0;
}

.info-box-full > div {
	flex: 0 0 100%;
}

.info-box-double > div {
	flex: 0 0 350px;
}

.info-box-double img {
	margin-bottom:2rem;
}

.info-box-double p strong {
	display:block;
}

/* FLEXBOX CENTERED ORDERED BASELINE */

div[class*="flexbox-"].ordered-baseline > div {
	display:flex;
	flex-direction:column;
	justify-content: flex-end;
	margin:0 2rem;
}

/* FLEX TWO (2 COLUMNS) */

.flex-two section {
	padding:0;
	min-width:inherit;
}

.flex-two > div {
	flex: 0 0 49%;
	margin:0;
}

.flex-two img {
	width:100%;
	height:auto;
}

/* FLEX FOUR (4 COLUMNS) */

.flex-four > div {
	flex: 0 1 255px;
	margin:0;
}

.flex-four .image-wrapper {
	display:flex;
	align-items: flex-end;
	width:100%;
	margin-bottom:15px;
}

.flex-four img {
	width:100%;
	height:auto;
	border:1px solid #1AA0DD;
	padding:3px;
	background-color:#ffffff;
}

.flex-four span {
	display:block;
	font-size:1.6rem;
	line-height:1.4;
}

.flex-four strong {
	font-weight:700;
}

/* LAYOUT OPTIONS - BACKGROUND COLOR */

.bg-lgrey {
	background-color:#EEEEEE;
}

/* NICESCROLL DISABLE CUSTOM SCROLLBAR (UNLESS YOU WANT IT)(CURRENTLY DISABLED) */
/*
.nicescroll-rails {
	display:none !important;
}
*/

/* HEADER
----------------------------------------------------------------------------------------------------*/

#header {
    position:fixed;
    top:0;
    left:0;
    background:#ffffff;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    z-index:101;
}

#header section {
	height:120px;
    padding:0 15px;
}

#header-navigation-container {
	display:flex;
	justify-content: space-between;
	padding:25px 0;
}

/* HEADER LOGO */

#header a#logo,
#header nav {
	display:flex;
    flex-direction:column;
}

#header a#logo {
    flex: 0 0 405px;
    justify-content:center;
    z-index:10;
	transition: all 200ms;
}

#header a#logo img {
	width:100%;
	height:auto;
	transition: all 200ms;
}

/* HEADER NAVIGATION LINKS */

#header nav {
	flex: 0 0 665px;
    justify-content:flex-end;
}

ul#main-navigation {
	display:flex;
	justify-content:flex-start;
	width:100%;
}

ul#main-navigation a {
	position:relative;
	display:block;
	font-size:1.6rem;
	font-weight:500;
	line-height:1.6;
	color:#1AA0DD;
	white-space:nowrap;
	outline:none;
}

ul#main-navigation a:before {
	content: "";
	display:block;
	width:0;
	height:2px;
	background-color:#F38F1E;
	position:absolute;
	left:0;
	bottom:0;
}

ul#main-navigation a,
ul#main-navigation a:before {
	transition: all 200ms;
}

ul#main-navigation > li {
	margin:0 1.5rem 0 0;
}

ul#main-navigation > li:last-child {
	margin-right:0;
}

ul#main-navigation li.active,
ul#main-navigation li a.current,
ul#main-navigation li a.active,
ul#main-navigation li a:hover {
    color:#F38F1E;
}

ul#main-navigation li a.current:before,
ul#main-navigation li a.active:before,
ul#main-navigation li a:hover:before {
    width:100%;
}


/* CONTENT - GENERAL
----------------------------------------------------------------------------------------------------*/

/* GENERAL CLASS */

a,
a:link,
a:focus {
   outline: 0;
   text-decoration:none;
}

.full-image {
	width:100%;
	height:auto;
}

.clear {
	display:block;
	width:100%;
	clear:both;
	float:none;
}

.bordered {
	border:1px solid #E6E6E6;
}

/* BACK TO TOP ICON */

#back-top {
	position:fixed;
	bottom:110px;
	right:45px;
	display:block;
	width:40px;
	height:40px;
	margin:auto;
	border-radius:5px;
	background-color: #ffffff;
	border:1px solid #1F9FDA;
	overflow:hidden;
	opacity:0;
	pointer-events: none;
	transition: all 200ms;
}

#back-top.show {
	opacity:1;
	pointer-events: inherit;
}

#back-top:before {
	content:"";
	display:block;
	width: 14px;
    height: 14px;
    border-top:2px solid #1F9FDA;
    border-left:2px solid #1F9FDA;
    transform: rotate(45deg);
	margin: 15px auto 0;
	transition: border-color 200ms;
}

#back-top:hover {
	background-color:#F29020;
	border-color:#F29020;
}

#back-top:hover:before {
	border-color:#ffffff;
}

/* LINKS BUTTON */

a.link-btn {
	display:inline-block;
    font-size:1.6rem;
    font-weight:500;
    line-height:2.6;
    color:#ffffff;
    background-color:#1AA0DD;
    padding:0 1.6rem;
    border-radius:5px;
	transition: all 200ms;
}

a.link-btn:hover {
	background-color:#F38F1E;
}

/* BACK BUTTON */

a.back-btn {
	position:relative;
    display:inline-block;
    font-size:1.6em;
    font-weight:500;
    line-height:2.5;
    color:#000000;
    padding:0 25px 0 40px;
    border-radius:4px;
    border:1px solid #CCCCCC;
}

a.back-btn,
a.back-btn img {
	transition: all 200ms;
}

a.back-btn img {
	position: absolute;
    top: 12px;
    left: 25px;
}

a.back-btn:hover {
	background-color:#f00;
	color:#ffffff;
}

a.back-btn:hover img {
	filter: brightness(0) saturate(100%) invert(100%) sepia(45%) saturate(2%) hue-rotate(305deg) brightness(105%) contrast(101%);
}

/* LIST STYLE - BULLET LIST */

ul.bullet-list {
	margin-bottom:4rem;
}

ul.bullet-list li {
	position:relative;
	font-size:1.6rem;
	font-weight:500;
	color:#333333;
	line-height:1.4;
	padding-left:18px;
	margin-bottom:1.5rem;
	text-align:left;
}

ul.bullet-list.no-bullet li {
	padding-left:0;
}

ul.bullet-list:not(.no-bullet) li:before {
	position:absolute;
	top:0;
	left:0;
	display:inline-block;
	content: "\2022";
	font-size: 3rem;
    line-height: 0.6;
}

ul.bullet-list li.heading {
	padding:0;
}

ul.bullet-list li.heading {
	font-size:2.1rem;
	font-weight:700;
	color:#000000;
	margin-bottom:1.5rem;
}

ul.bullet-list li.heading:before {
	display:none;
}

/* LIST STYLE - CLEAR LIST */

ul li.clear-list {
	clear:both;
	float:none;
	width:100%;
	height:auto;
	padding:0;
	margin:0;
	border:none;
	background:none;
}

ul li.clear-list:before,
ul li.clear-list:after {
	display:none;
}

/* SLICK SLIDER OVERRIDES */

.slick-next,
.slick-prev {
	border-radius:100%;
	transition: all 200ms;
}

.slick-next {
    right: 20px;
}

.slick-prev {
    left: 20px;
}

.slick-next:before {
	transform: rotate(180deg); 
}

.slick-dots {
	bottom:20px;
}

.slick-dots li button {
	background-color:#ffffff;
}

.slick-dots li.slick-active button {
	background-color: #12D6C3;
	border: 1px solid #12D6C3;
}

.slick-slide img {
	width:auto;
	height:auto;
	min-width:100vw;
	min-height:600px;
	object-fit:contain;
}

/* SLICK SLIDER CUSTOM CSS */

.slide-caption {
	position:absolute;
	top:0;
	left:0;
	right:0;
	width:1140px;
	height:100%;
	padding:60px 15px;
	margin:auto;
	display: flex;
	align-items: flex-end;
	flex-wrap: wrap;
}

.slide-caption h1 {
	display:block;
	font-family: "Montserrat", Helvetica, Arial, "Lucida Grande", sans-serif;
	font-size:3rem;
	font-weight:700;
	line-height:1.2;
	color:#ffffff;
	text-align:left;
	margin:0;
}

/* FANCYBOX OVERRIDE */

.fancybox-overlay {
	background:rgba(0,0,0,0.7);
}

.fancybox-title {
    font-family: "Montserrat", Helvetica, Arial, "Lucida Grande", sans-serif;
    font-size:1.6rem;
    font-weight:600;
    color:#333333;
    text-align:center;
}

/* SECTIONS - HOME
----------------------------------------------------------------------------------------------------*/

/*HOME SLIDER */

#home-slider .slick-track,
#home-slider .slick-slide {
	min-height:600px;
	max-height:600px;
	overflow:hidden;
}

/* PRODUCT CATEGORY FLEXBOX */

#products-category {
	padding-top:2px;
}

#products-category > div {
	position:relative;
	flex:0 0 19.9%;
}

#products-category img {
	width:100%;
	height:auto;
}

#products-category .category-title {
	display:flex;
	flex-direction: column;
	justify-content:center;
	width:100%;
	height:100%;
	position:absolute;
	top:0;
	left:0;
	font-size:2.4rem;
	font-weight:700;
	line-height:1.3;
	text-align:center;
	color:#ffffff;
}

/* HOME - ABOUT US */

#home-about-us section {
	padding:12rem 15px;
}

#home-about-us p {
	line-height:1.7;
}
/* HOME - BRANDS, DISTRIBUTORS & PARTNERS */

#home-brands-distributors-partners section {
	padding-bottom:4rem;
}

#home-brands-distributors-partners h2 {
	margin-bottom:4rem;
}

#home-brands-distributors-partners a {
	display:inline-block;
	font-size:1.8rem;
	font-weight:700;
	color:#1F9FDA;
	line-height:2;
	text-decoration:underline;
	transition: color 200ms;
}

#home-brands-distributors-partners a:hover {
	color:#F29020;
}

/* SECTIONS - ABOUT US
----------------------------------------------------------------------------------------------------*/

#about-us h2 {
	margin-bottom:1.5rem;
}

/* SECTIONS - OUR PRODUCTS
----------------------------------------------------------------------------------------------------*/

#our-products section {
	padding: 8rem 15px 0;
}

#our-products section + section {
	padding-top: 6rem;
}

#our-products section:last-of-type {
	padding-bottom: 12rem;
}

/* SECTIONS - OUR SERVICES
----------------------------------------------------------------------------------------------------*/

.our-services .dot-split + .flexbox-centered {
   margin-bottom:0;
}

/* SECTIONS - OUR PROJECTS
----------------------------------------------------------------------------------------------------*/

#our-projects p:first-child {
	margin-bottom:8rem;
}

/* SECTIONS - CONTACT US
----------------------------------------------------------------------------------------------------*/

/* GOOGLE MAPS */

#map-canvas {
	width:100%;
	height:600px;
}


/* CONTENT - FORMS
----------------------------------------------------------------------------------------------------*/

#enquiry-form-container,
#enquiry-form {
    width:100%;
}

#enquiry-form-success-message {
	display:none;
}

.form {
	position:relative;
	display:block;
	padding:0;
}

.form-row {
	margin-bottom:10px;
	justify-content: flex-start;
}

.form .field {
	position:relative;
	text-align:left;
	min-width:inherit;
	background:none;
	margin-bottom:15px;
	clear:both;
}

.form .field:last-child {
	margin-bottom:0;
}

.form #message.field {
	margin-bottom:17px;
}

.form #captcha.field {
	overflow:hidden;
}

.form label {
	display:block;
	font-size:1.6em;
	font-weight:600;
	line-height:1;
	margin-bottom:6px;
}

.form-control {
	display:block;
    height:25px;
	width:100%;
	padding:0 15px;
	border-top:none;
	border-left:none;
	border-right:none;
	border-bottom:1px solid #E6E6E6;
	background-color:#ffffff;
	background-clip: padding-box;
    font-family: "Montserrat", Helvetica, Arial, "Lucida Grande", sans-serif;
    font-size:1.6em;
    font-weight:500;
	line-height:40px;
    color:#4d4d4d;
	outline:none;
}

textarea.form-control {
	border:1px solid #E6E6E6;
	height:140px;
    border-radius: 8px;
} 

select.form-control {
	padding: 0 12px;
	width:200px;
}

.form-control::-ms-expand {
	background-color: transparent;
	border: 0;
}

.form-control:focus {
	color: #495057;
	background-color: #fff;
	border-color: #80bdff;
	outline: 0;
	box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.form-control::-webkit-input-placeholder {
	color: #6c757d;
	opacity: 1;
}

.form-control::-moz-placeholder {
	color: #6c757d;
	opacity: 1;
}

.form-control:-ms-input-placeholder {
	color: #6c757d;
	opacity: 1;
}

.form-control::-ms-input-placeholder {
	color: #6c757d;
	opacity: 1;
}

.form-control::placeholder {
	color: #6c757d;
	opacity: 1;
}

.form-control:disabled, .form-control[readonly] {
	background-color: #e9ecef;
	opacity: 1;
}

select.form-control:focus::-ms-value {
	color: #495057;
	background-color: #fff;
}

textarea.form-control {
	padding:10px 15px;
	line-height:1.3;
}

.form div#spamtrap {
	visibility:hidden
}

.form .error {
	position:relative;
	display:block;
	margin:0;
	z-index:2;
	float:none;
	clear:both;
}

.form #enquiry-form-server-errors {
	position:relative;
	color:#f00;
	visibility:visible;
}

.form #enquiry-form-server-errors.error div {
	padding:0 0 20px;
}

.form .error div {
	display:block;
	clear:both;
	font-size:1.2em;
	font-size:500;
	line-height:2;
	padding:0;
	margin:0;
    color:#f00;
}

.form .error:before {
	position:absolute;
	top:0;
	left:0;
	width: 0; 
	height: 0; 
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent; 
	border-right:10px solid blue; 
}

.form fieldset#antispam {
	padding:2px;
	border-top:1px solid #EEE;
	border-left:0;
	border-right:0;
	border-bottom:0;
	width:350px;
}

.form fieldset#antispam legend {
	font-size: 0.8em;
	font-weight:bold;
	color:#333;
}

.form .button {
	position:relative;
    background-color:#ffffff;
    font-family: "Montserrat", Helvetica, Arial, "Lucida Grande", sans-serif;
    font-size:1.6rem;
    font-weight:500;
    border:none;
    height:40px;
    width:auto;
    min-width:inherit;
    display:inline-block;
    color:#ffffff;
    background-color:#1AA0DD;
    padding:0 1.6rem;
    border-radius:5px;
	cursor:pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
	transition: background-color 200ms;
}

.form .button:hover {
	background-color:#F38F1E;
}

#enquiry-form-recaptcha {
	position:relative;
	width: 290px;
	overflow:hidden;
}

#enquiry-form-recaptcha:before {
	content:"";
	display:block;
	position:absolute;
	top:0;
	left:0;
	border: 1px solid #d3d3d3;
	pointer-events: none;
	height:76px;
	width:290px;
	border-radius:2px;
	z-index:10;
}

#enquiry-form-recaptcha > div {
	margin-left:-5px;
}

/* spam_trap: This input is hidden. This is here to trick the spam bots*/

.form .spmhidip {
	display:none;
	width:10px;
	height:3px
}
#fg_crdiv {
	font-size: 0.3em;
	opacity: .2;
	-moz-opacity: .2;
	filter: alpha(opacity=20);
}
#fg_crdiv p {
	display:none;
}

.form input[type=submit]:disabled,
.form button:disabled,
.form input[type=submit][disabled=disabled],
.form button[disabled=disabled],
.form input[type=text]:disabled,
.form input[type=text][disabled=disabled],
.form text:disabled,
.form text[disabled=disabled] {
	border-color:#cccccc !important;
    background:#cccccc !important;
}

.form input[type=submit]:disabled,
.form button:disabled,
.form input[type=submit][disabled=disabled],
.form button[disabled=disabled] {
	color:#999999 !important;
}

.form input[type=submit]:disabled .icon,
.form button:disabled .icon,
.form input[type=submit][disabled=disabled] .icon,
.form button[disabled=disabled] .icon {
	filter: brightness(0) saturate(100%) invert(53%) sepia(0%) saturate(1926%) hue-rotate(88deg) brightness(111%) contrast(83%);
}

/* CONTENT - ANIMATION STYLES - SELECTED FROM ANIMATE.CSS (ZOOMIN,FADEINUP,FADEINLEFT)
----------------------------------------------------------------------------------------------------*/

.animated {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-timing-function: ease;
	animation-timing-function: ease;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

/* CUSTOM ANIMATE CSS ADDITION */

.animated.delay-02s {
  -webkit-animation-delay: .2s;
  animation-delay: .2s;
}

.animated.delay-04s {
  -webkit-animation-delay: .4s;
  animation-delay: .4s;
}

.animated.delay-06s {
  -webkit-animation-delay: .6s;
  animation-delay: .6s;
}

.animated.delay-08s {
  -webkit-animation-delay: .8s;
  animation-delay: .8s;
}

/* CONTENT - FOOTER
----------------------------------------------------------------------------------------------------*/

#footer {
	background-color:#1A1A1A;
    text-align:center;
}

#footer section {
    padding: 4rem 15px 10rem;
}

/* FOOTER COPYRIGHT */

#footer p {
	font-size:1.4rem;
	font-weight:500;
	color:#C8C8C8;
	margin:0;
	line-height:1.6;
}

#footer p span {
	display:block;
}

#footer p span,
#footer p span a {
	color:#4E4E4E ;
}

#footer p span a {
	text-decoration:none;
}

/* CONTENT - POST FOOTER
----------------------------------------------------------------------------------------------------*/

#post-footer {
	position:fixed;
	bottom:0;
	left:0;
	background-color:#1F9FDA;
	text-align:center;
	z-index:10;
}

#post-footer section {
	padding:0 15px;
}

#post-footer,
#post-footer span {
	height:60px;
	line-height:60px;
	font-size:1.8rem;
	font-weight:700;
	color:#ffffff;
}

#post-footer span {
	display:inline-block;
	margin:0 20px;
}