/* Varialbes */
:root {
	--font-default: 'Rubik', sans-serif;
	--fontawesome: "Font Awesome 5 Pro";
	--black: #000000;
	--dark: #06278a;
	--dark-secondary: #06278a;
	--white: #ffffff; 
	--color-primary: #573326; 
	--color-secondary: #ffb400; 
	--color-heading: #1d2746;
	--color-paragraph: #666666;
	--border-default: #e7e7e7;
	--box-shadow-primary: 0 0 25px rgb(0 0 0 / 8%);
	--box-shadow-secondary: 0 10px 30px 0 rgb(44 130 237 / 40%);
	--box-shadow-tertiary: 0px 2px 12px 0px #e7e7e7;
	--box-shadow-dark: 0px 0px 0px;
	--bg-gray: #eef0f6;
	--bg-gradient: linear-gradient(to right, #1239ac, #00f3dd, #1239ac);

  --brote-gray: #7b7d83;
  --brote-gray-rgb: 123, 125, 131;
  --brote-white: #ffffff;
  --brote-white-rgb: 255, 255, 255;
  --brote-base: #1239ac;
  --brote-base-rgb: 18, 57, 172;
  --brote-primary: #ffb400;
  --brote-primary-rgb: 255, 180, 0;
}

* {
	padding: 0;
	margin: 0;
}

html {
	width: 100%;
	height: 100%;
	position: relative;
	overflow: visible;
}

body {
	font-family:var(--font-default);
	font-size: 16px;
	font-weight: 400;
	line-height: 28px;
	overflow-x: hidden;
	background-color:var(--white);
	color:var(--color-paragraph);
}

html,
body,
.wrapper {
	height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color:var(--color-heading);
	font-weight: normal;
	line-height: 1.2;
	font-family:var(--font-default);
	letter-spacing: 0;
	margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin-bottom: 15px;
}

h1 {
	font-size: 40px;
}

h2 {
	font-size: 36px;
}

h3 {
	font-size: 30px;
}

h4 {
	font-size: 22px;
}

h5 {
	font-size: 20px;
}

h6 {
	font-size: 16px;
}

img {
	border: none;
	outline: none;
	max-width: 100%;
}

label {
	display: inline-block;
	font-weight: normal;
	margin-bottom: 5px;
	max-width: 100%;
}

a,
.btn,
button {
	transition: all 0.35s ease-in-out;
	-webkit-transition: all 0.35s ease-in-out;
	-moz-transition: all 0.35s ease-in-out;
	-ms-transition: all 0.35s ease-in-out;
	-o-transition: all 0.35s ease-in-out;
	outline: medium none;
	font-family:var(--font-default);
}

a img,
iframe {
	border: none;
}

p {
	color:var(--color-paragraph);
	margin: 0 0 15px;
	text-transform: none;
	font-weight: 400;
	font-family:var(--font-default);
}

hr {
	margin-top: 0;
	margin-bottom: 0;
	border: 0;
	border-top: 1px solid #eee;
}

pre {
	display: block;
	margin: 0 0 30px;
	padding: 9.5px;
	word-wrap: break-word;
	word-break: break-all;
	color: #333;
	border: 1px solid #ededed;
	border-radius: inherit;
	background-color: #f9f9f9;
	font-size: 13px;
	line-height: 1.42857143;
}

input:focus,
textarea:focus,
select:focus {
	outline: none;
	box-shadow: inherit;
}

ul {
	margin: 0;
	list-style-type: none;
}

a,
a:active,
a:focus,
a:hover {
	outline: none;
	text-decoration: none;
	color:var(--color-heading);
}

a:hover {
	color:var(--color-heading);
}

a {
	transition: all 0.35s ease-in-out;
	-webkit-transition: all 0.35s ease-in-out;
	-moz-transition: all 0.35s ease-in-out;
	-ms-transition: all 0.35s ease-in-out;
	-o-transition: all 0.35s ease-in-out;
	text-decoration: none;
	font-weight: 500;
}

b,
strong {
	font-weight: 900;
}

.btn.active,
.btn:active {
	background-image: inherit !important;
}

.btn.focus,
.btn:active:focus,
.btn:active:hover,
.btn:focus,
.btn:hover {
	outline: 0;
}

.btn.circle {
	-webkit-border-radius: 40px;
	-moz-border-radius: 40px;
	border-radius: 40px;
}

.btn.active,
.btn:active {
	outline: 0;
	-webkit-box-shadow: inherit;
	box-shadow: inherit;
}

input {
	border: 1px solid #e7e7e7;
	border-radius: inherit;
	box-shadow: inherit;
	min-height: 50px;
}


/* Default CSS */

.container-medium {
	padding: 0 15px;
	margin: auto;
	max-width: 1400px;
}

.container-full {
	padding: 0 15px;
	margin: auto;
}

.container-fill {
	position: relative;
	padding: 0 15px;
	margin: auto;
	max-width: 100%;
	padding: 0;
}

@media (min-width:576px) {
	.container-medium {
		max-width: 540px;
	}
}

@media (min-width:768px) {
	.container-medium {
		max-width: 720px;
	}
}

@media (min-width:992px) {
	.container-medium {
		max-width: 960px;
	}
}

@media (min-width:1200px) {
	.container-medium {
		max-width: 1400px;
		width: 80%;
	}
}

@media (min-width:576px) {
	.container-full {
		max-width: 540px;
	}
}

@media (min-width:768px) {
	.container-full {
		max-width: 720px;
	}
}

@media (min-width:992px) {
	.container-full {
		max-width: 960px;
	}
}

@media (min-width:1200px) {
	.container-full {
		max-width: 1400px;
		width: 90%;
	}
}

@media (min-width: 1400px) {
	.container-full {
		max-width: 84%;
	}
}

.container-fill {
	padding: 0 15px;
}

@media (min-width:576px) {
	.container-fill {
		max-width: 540px;
	}
}

@media (min-width:768px) {
	.container-fill {
		max-width: 720px;
	}
}

@media (min-width:992px) {
	.container-fill {
		max-width: 960px;
	}
}

@media (min-width:1200px) {
	.container-fill {
		width: 100%;
		max-width: 100%;
		padding: 0;
	}
}

@media (max-width:1199px) {
	.container-fill {
		padding: 0 15px;
	}
}

.fixed-bg {
	position: absolute;
	left: 0;
	bottom: 0;
	height: 100%;
	width: 100%;
}

.bg-cover {
	background-position: center center;
	background-size: cover;
}

.bg-fixed {
	background-attachment: fixed;
	background-position: center top;
	background-size: cover;
}

.bg-gray {
	background: var(--bg-gray);
}

.bg-light {
	background-color:var(--white);
}

.bg-dark {
	background-color:var(--dark) !important;
}

.bg-dark-secondary {
	background-color:var(--dark-secondary) !important;
}

.bg-theme {
	background-color:var(--color-primary);
}

.bg-theme-secondary {
	background-color:var(--color-seconary);
}

.bg-gradient {
	background: linear-gradient(90deg, rgba(18, 115, 235, 1) 57%, rgba(0, 212, 255, 1) 100%);
}

.gradient-bg {
	background-image: linear-gradient(90deg, rgba(74, 196, 243, 1) 23%, rgba(9, 168, 228, 1) 100%);
	background-color:var(--color-primary);
}

.text-light h1,
.text-light h2,
.text-light h3,
.text-light h4,
.text-light h5,
.text-light h6,
.text-light p,
.text-light a {
	color: var(--white);
}

.shadow {
	position: relative;
	z-index: 1;
	box-shadow: inherit !important;
}

.shadow.dark::after {
	background: var(--dark);
	content: "";
	height: 100%;
	left: 0;
	opacity: 0.6;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -1;
}

.shadow.dark-hard::after {
	background: var(--dark);
	content: "";
	height: 100%;
	left: 0;
	opacity: 0.7;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -1;
}

.shadow.theme::after {
	background-color:var(--color-primary);
	content: "";
	height: 100%;
	left: 0;
	opacity: 0.5;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -1;
}

.shadow.theme-hard::after {
	background-color:var(--color-primary);
	content: "";
	height: 100%;
	left: 0;
	opacity: 0.7;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -1;
}

.shadow.gradient::after {
	background: linear-gradient(90deg, rgba(6, 39, 138, 0.846376) 20%, rgba(0, 0, 0, 0) 100%);
	content: "";
	height: 100%;
	left: 0;
	opacity: 0.7;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -1;
}

.default-padding,
.default-padding-top,
.default-padding-bottom,
.default-padding-mx {
	position: relative;
}

.default-padding {
	padding-top: 30px;
	padding-bottom: 60px;
}

.default-padding-top {
	padding-top: 120px;
}

.default-padding-bottom {
	padding-bottom: 120px;
}

.default-padding.bottom-less {
	padding-top: 120px;
	padding-bottom: 90px;
}

.default-padding-bottom.bottom-less {
	margin-bottom: -30px;
}

.default-padding-top.bottom-less {
	margin-bottom: -30px;
}

.top-border {
	border-top: 1px solid #e7e7e7;
}

.align-center {
	align-items: center;
}


/* Button */

.btn {
	display: inline-block;
	font-weight: 600;
	text-transform: capitalize;
	-webkit-transition: all 0.35s ease-in-out;
	-moz-transition: all 0.35s ease-in-out;
	-ms-transition: all 0.35s ease-in-out;
	-o-transition: all 0.35s ease-in-out;
	transition: all 0.35s ease-in-out;
	overflow: hidden;
	border-radius: 5px;
	font-size: 15px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.btn-md {
	padding: 17px 40px;
	font-size: 16px;
}

.btn-md i {
	font-size: 18px;
	position: relative;
	top: 3px;
	margin-left: 30px;
}

.btn-md i::after {
	position: absolute;
	left: -19px;
	top: 8px;
	content: "";
	border: 1px solid #ffffff;
	width: 30px;
	height: 1px;
}

.btn-sm {
	padding: 14px 40px;
	font-size: 14px;
}

a:hover,
a:active {
	opacity: 1;
	text-decoration: none;
}

.btn-gradient.btn-sm {
	padding: 16px 40px;
}

.btn.btn-gradient {
	position: relative;
	z-index: 1;
	color: var(--white);
}

.btn.btn-gradient::after {
	position: absolute;
	left: 0;
	top: 0;
	content: "";
	height: 100%;
	width: 100%;
	background-image:var(--bg-gradient);
	background-size: 200% auto;
	text-transform: uppercase;
	display: inline-block;
	color: var(--white) !important;
	background-color:var(--color-primary);
	z-index: -1;
	transition: all 0.35s ease-in-out;
}

.btn.btn-gradient:hover::after,
.btn.btn-gradient:active {
	background-position: -100% 0;
	color: var(--white);
}

.btn.btn-light.effect {
	color:var(--color-heading);
	border: 2px solid transparent;
	box-shadow: 0 10px 30px 0 rgb(44 130 237 / 40%);
	overflow: hidden;
	position: relative;
}

.btn.btn-light.effect::after {
	position: absolute;
	left: 0;
	bottom: 0;
	content: "";
	height: 100%;
	width: 100%;
	background: var(--white);
	z-index: -1;
	transition: all 0.35s ease-in-out;
}

.btn.btn-light.effect::before {
	position: absolute;
	left: 0;
	bottom: 0;
	content: "";
	height: 100%;
	width: 0;
	background:var(--color-primary);
	z-index: -1;
	transition: all 0.35s ease-in-out;
}

.btn.btn-light.effect:hover {
	border: 2px solid var(--color-primary);
	color: var(--white);
	background: transparent;
}

.btn.btn-light.effect:hover::after {
	width: 0;
}

.btn.btn-light.effect:hover::before {
	width: 100%;
}

.btn.btn-theme.effect {
	color: var(--white);
	border: 2px solid var(--color-primary);
	overflow: hidden;
	position: relative;
	z-index: 1;
}

.btn.btn-theme.effect.secondary {
	color: var(--color-heading);
	border: 2px solid var(--color-secondary);
}

.btn.btn-theme.effect::after {
	position: absolute;
	left: 0;
	bottom: 0;
	content: "";
	height: 100%;
	width: 100%;
	background:var(--color-primary);
	z-index: -1;
	transition: all 0.35s ease-in-out;
}

.btn.btn-theme.effect.secondary::after {
	background:var(--color-secondary);
}

.btn.btn-theme.effect::before {
	position: absolute;
	left: 0;
	bottom: 0;
	content: "";
	height: 100%;
	width: 0;
	background: var(--dark);
	z-index: -1;
	transition: all 0.35s ease-in-out;
}

.btn.btn-theme.secondary.effect::before {
	background: var(--dark-secondary);
}

.shadow .btn.btn-theme.effect::before {
	position: absolute;
	left: 0;
	bottom: 0;
	content: "";
	height: 100%;
	width: 0;
	background: var(--white);
	z-index: -1;
	transition: all 0.35s ease-in-out;
}

.btn.btn-theme.effect:hover {
	border: 2px solid var(--dark);
	color: var(--white);
	background: transparent;
}

.btn.btn-theme.secondary.effect:hover {
	border: 2px solid var(--dark-secondary);
}

.shadow .btn.btn-theme.effect:hover {
	border: 2px solid var(--white);
	color:var(--color-heading);
	background: transparent;
}

.btn.btn-theme.effect:hover::after {
	width: 0;
}

.btn.btn-theme.effect:hover::before {
	width: 100%;
}

.btn.btn-dark.effect {
	color: var(--white);
	border: 2px solid var(--dark);
	box-shadow: 0 10px 30px 0 rgb(44 130 237 / 40%);
	overflow: hidden;
	position: relative;
	background: transparent;
	z-index: 1;
}

.btn.btn-dark.secondary.effect {
	border: 2px solid var(--dark-secondary);
}

.btn.btn-dark.effect::after {
	position: absolute;
	left: 0;
	bottom: 0;
	content: "";
	height: 100%;
	width: 100%;
	background: var(--dark);
	z-index: -1;
	transition: all 0.35s ease-in-out;
}

.btn.btn-dark.secondary.effect::after {
	background: var(--dark-secondary);
}

.btn.btn-dark.effect::before {
	position: absolute;
	left: 0;
	bottom: 0;
	content: "";
	height: 100%;
	width: 0;
	background:var(--color-primary);
	z-index: -1;
	transition: all 0.35s ease-in-out;
}

.btn.btn-dark.effect:hover {
	border: 2px solid var(--color-primary);
	color: var(--white);
}

.btn.btn-dark.effect:hover::after {
	width: 0;
}

.btn.btn-dark.effect:hover::before {
	width: 100%;
}

.btn-light.border {
	background: var(--white);
	border: 2px solid #e7e7e7 !important;
}

.btn-theme-border {
	border: 2px solid var(--color-primary);
	overflow: hidden;
	position: relative;
	z-index: 1;
}

.btn-theme-border::after {
	position: absolute;
	left: 0;
	top: 0;
	content: "";
	height: 100%;
	width: 0;
	background:var(--color-primary);
	z-index: -1;
	transition: all 0.25s ease-in-out;
}

.btn-theme-border.circle::after {
	border-radius: 30px;
}

.btn-theme-border:hover::after {
	width: 100%;
}

.btn-theme-border:hover {
	color: var(--white) !important;
}

.btn-dark-border {
	border: 2px solid var(--dark);
	overflow: hidden;
	position: relative;
	z-index: 1;
}

.btn-dark-border::after {
	position: absolute;
	left: 0;
	top: 0;
	content: "";
	height: 100%;
	width: 0;
	background: var(--dark);
	z-index: -1;
	transition: all 0.25s ease-in-out;
}

.btn-dark-border.circle::after {
	border-radius: 30px;
}

.btn-dark-border:hover::after {
	width: 100%;
}

.btn-dark-border:hover {
	color: var(--white) !important;
}

.btn-light-border {
	border: 2px solid var(--white);
	overflow: hidden;
	position: relative;
	z-index: 1;
	color: var(--white);
}

.btn-light-border::after {
	position: absolute;
	left: 0;
	top: 0;
	content: "";
	height: 100%;
	width: 0;
	background: var(--white);
	z-index: -1;
	transition: all 0.35s ease-in-out;
}

.btn-light-border.circle::after {
	border-radius: 30px;
}

.btn-light-border:hover::after {
	width: 100%;
}

.btn-light-border:hover {
	color:var(--color-heading);
}

.btn-theme-effect {
	border: 2px solid var(--color-primary);
	overflow: hidden;
	position: relative;
	z-index: 1;
	color: var(--white);
}

.btn-theme-effect::after {
	position: absolute;
	left: -10%;
	top: -10%;
	content: "";
	height: 120%;
	width: 120%;
	background:var(--color-primary);
	z-index: -1;
	transition: all 0.35s ease-in-out;
}

.btn-theme-effect.circle::after {
	border-radius: 30px;
}

.btn-theme-effect:hover::after {
	width: 0;
}

.btn-theme-effect:hover {
	color:var(--color-heading);
}


/* End Button */

.relative {
	position: relative;
	z-index: 1;
}

.bg-fixed {
	background-attachment: fixed !important;
	background-position: center center !important;
	background-size: cover !important;
}

.bg-cover {
	background-position: center center !important;
	background-size: cover !important;
}

.overflow-hidden {
	overflow: hidden;
}

.overflow-x-hidden {
	overflow-x: hidden;
}

button,
button:focus {
	border: none !important;
	box-shadow: inherit !important;
	outline: inherit !important;
}


/* Start Site Heading */

.site-heading h4 {
	text-transform: uppercase;
	font-weight: 500;
	color: var(--color-primary);
	position: relative;
	z-index: 1;
	display: inline-block;
}

.sub-heading {
	text-transform: uppercase;
	font-weight: 500;
	color:var(--color-primary);
	position: relative;
	z-index: 1;
	display: inline-block;
	font-size: 22px;
}

.heading {
	font-size: 36px;
	font-weight: 600;
	margin-bottom: 25px;
}

.heading strong {
	color: #27a5e2;
}

.mb-0 {
	margin-bottom: 0;
}

.site-heading p {
	margin: 0;
	margin-top: 10px;
}

.site-heading h2 {
	display: block;
	font-weight: 700;
	position: relative;
	margin-bottom: 0;
}

.site-heading .devider {
	display: inline-block;
	width: 50px;
	height: 2px;
	background:var(--color-primary);
	position: relative;
	z-index: 1;
	left: 10px;
}

.site-heading.light .devider {
	background: var(--white);
}

.site-heading .devider:before {
	position: absolute;
	left: -15px;
	top: 0;
	content: "";
	height: 2px;
	width: 10px;
	background:var(--color-primary);
}

.area-title {
	font-size: 40px;
	line-height: 1.2;
}

.site-heading {
	margin-bottom: 60px;
	overflow: hidden;
}

.heading-left {
	margin-bottom: 60px;
}

.heading-left h5 {
	text-transform: uppercase;
	font-weight: 500;
	color:var(--color-primary);
	position: relative;
	z-index: 1;
	display: inline-block;
}

.heading-left h2 {
	display: block;
	font-weight: 700;
	position: relative;
	margin-bottom: 0;
}

.heading-left p {
	margin-bottom: 0;
}

.carousel-shadow .owl-stage-outer {
	margin: -15px -15px;
	padding: 15px;
}

@media only screen and (min-width: 1380px) {
	.left-border::before {
		position: absolute;
		left: 0;
		top: 0;
		content: "";
		height: 100%;
		width: 70px;
		background: #edf5ff;
	}
	.bg-gray.left-border::before {
		background: var(--white);
	}
}


/* ============================================================== 
     # Top Bar 
=================================================================== */

.top-bar-area .container-full {
	padding: 0 30px;
}

.top-bar-area .container-fill {
	padding: 0 30px;
}

.top-bar-area {
	font-family:var(--font-default);
	font-weight: 400;
}

.top-bar-area.transparent {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 9;
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
	overflow: hidden;
}

.top-bar-area .logo img {
    height: 50px;
}

@media (min-width: 1200px) {
	.top-bar-area .logo img {
		height: 55px;
	}
}

.top-bar-area.transparent i {
	color: var(--white) !important;
}

.top-bar-area.inc-border {
	border-bottom: 1px solid #e7e7e7;
}

.top-bar-area li {
	display: inline-block;
	margin-left: 15px;
	padding-left: 18px;
	position: relative;
	z-index: 1;
}

.top-bar-area li:first-child {
	margin: 0;
	padding: 0;
	border: none;
}

.top-bar-area p {
	margin: 0;
	font-weight: 500;
}

.top-bar-area p a {
	text-decoration: underline;
	font-weight: 700;
}

.top-bar-area.inc-border {
	border-bottom: 1px solid #e7e7e7;
}

.top-bar-area .button a {
	display: inline-block;
	padding: 6px 25px;
	color: var(--white);
	position: relative;
	z-index: 1;
	border: 1px solid rgba(255, 255, 255, 0.5);
}

.top-bar-area .item-flex {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.top-bar-area .item-flex.space-between {
	justify-content: space-between;
}

.top-bar-area .social ul {
	margin-left: 30px;
}

.top-bar-area .social ul li::after {
	display: none;
}

.top-bar-area .social li {
	margin-left: 10px;
}

.top-bar-area.inc-pad {
	padding: 15px 0;
}

.top-bar-area.inc-padding {
	padding: 10px 0;
}

.top-bar-area .button i {
	margin-right: 5px;
}

.top-bar-area .info li i {
    margin-right: 5px;
    color: var(--color-primary);
    font-weight: 100;
    font-size: 20px;
    position: relative;
    top: 2px;
}

.top-bar-area.fixed {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 9;
}

.top-bar-area.fixe .row {
	align-items: center;
}

.top-bar-area.fixed {
	padding: 20px 0;
}

.top-bar-area .address-info li {
	text-align: left;
}

.top-bar-area .address-info li .icon,
.top-bar-area .address-info li .info {
	display: inline-block;
}

.top-bar-area .address-info li .icon i {
	margin-right: 10px;
}

.top-bar-area .info a {
	margin-left: 20px;
}

.top-bar-area.fixed .container {
	padding-right: 30px;
}

.top-bar-area.bg-dark .info li i,
.top-bar-area.bg-theme .info li i,
.top-bar-area.bg-gradient .info li i {
	color: var(--white);
}

.top-bar-area.inc-logo {
	padding: 15px 0;
}

.top-bar-area .info-colums ul {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.top-bar-area .info-colums ul .info span {
	display: block;
	font-weight: 700;
	text-transform: uppercase;
}

.top-bar-area .info-colums li i {
	font-size: 35px;
}

.top-bar-area .info-colums ul .info {
	font-size: 14px;
	text-align: left;
}

.top-bar-area .info-colums .info,
.top-bar-area .info-colums .icon {
	display: inline-block;
}

.top-bar-area .info-colums ul li {
	text-align: left;
}

.top-bar-area .info-colums ul li .info {
	line-height: 24px;
}

.top-bar-area .info-colums ul li .icon {
	margin-right: 15px;
}

.top-bar-area .info-colums ul li::after {
	height: 90%;
	top: 5%;
}

.top-bar-area.bg-theme .info-colums ul li::after {
	border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.top-bar-area .info-colums ul li .icon i {
	color:var(--color-primary);
}

.top-bar-area.bg-theme .info-colums ul li .icon i {
	color: var(--white);
}

.top-bar-area.bg-theme {
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}


/* Topbar Multi Content */

.top-bar-area.multi-content {
	position: relative;
	z-index: 1;
	overflow: hidden;
	padding: 20px 0;
	padding-bottom: 60px;
}

.top-bar-area.multi-content .fixed-content p {
	margin: 0;
	position: absolute;
	right: 0;
	z-index: 1;
	color:var(--color-heading);
	padding: 10px 20px;
	top: -20px;
	font-weight: 400;
	padding-left: 35px;
}

.top-bar-area.multi-content .fixed-content p::after {
	position: absolute;
	left: 0;
	top: 0;
	content: "";
	height: 100%;
	width: 400%;
	background: linear-gradient(90deg, rgba(237, 245, 255, 1) 0%, rgba(204, 223, 247, 1) 100%);
	z-index: -1;
	border-radius: 0 0 0 10px;
}

.top-bar-area.multi-content .social li {
	padding: 0;
	border: none;
}

.top-bar-area.multi-content .social li a {
	height: 40px;
	width: 40px;
	line-height: 44px;
	display: inline-block;
	border: 1px solid rgba(255, 255, 255, 0.3);
	text-align: center;
	border-radius: 50%;
	margin: 0;
	color: var(--white);
	font-size: 13px;
}

.top-bar-area.multi-content .social li a i {
	margin: 0;
	color: var(--white);
	font-size: 14px;
	top: 0;
}

@media (min-width: 1024px) {
	.top-bar-area.multi-content .logo a {
		position: relative;
		z-index: 1;
		padding-right: 40px;
	}
	.top-bar-area.multi-content .logo a::after {
		position: absolute;
		right: 0;
		top: -60px;
		content: "";
		height: 200px;
		width: 4000%;
		background: var(--white);
		z-index: -1;
		transform: skewX(-15deg);
	}
}


/* ============================================================== 
     # Bradcrumb 
=================================================================== */

.breadcrumb-area {
	padding: 150px 0;
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.breadcrumb-area.top-pad-extra {
	padding-top: 240px;
}

.breadcrumb-area .row {
	position: relative;
	z-index: 1;
}

.breadcrumb-area .breadcrumb {
	background: transparent none repeat scroll 0 0;
	display: inline-block;
	margin: 0;
	padding: 0;
	position: relative;
	z-index: 1;
}

.breadcrumb-area h1 {
	display: block;
	font-weight: 500;
	text-transform: capitalize;
	font-size: 40px;
	margin-top: -10px;
	margin-bottom: 20px;
}

.breadcrumb>li+li::before {
	content: "\f105";
	font-family: "Font Awesome 5 Pro";
	font-weight: 700;
	padding: 0 5px;
	color: var(--white);
	display: none;
}

.breadcrumb-area .breadcrumb li i {
	margin-right: 5px;
}

.breadcrumb-area .breadcrumb li {
	padding: 0 20px;
	position: relative;
	z-index: 1;
	display: inline-block;
}

.breadcrumb-area .breadcrumb li::after {
	content: "";
	height: 2px;
	left: -10px;
	margin-top: -1px;
	position: absolute;
	top: 50%;
	background: var(--white);
	width: 15px;
}

.breadcrumb-area .breadcrumb li:first-child::after {
	display: none;
}

.breadcrumb-area .breadcrumb a,
.breadcrumb-area .breadcrumb li {
	font-weight: 500;
	text-transform: uppercase;
	color: var(--white);
	font-family:var(--font-default);
}


/* ============================================================== 
     # Banner 
=================================================================== */

body,
.banner-area,
.banner-area div {
	height: 100%;
}

.banner-area.auto-height,
.banner-area.auto-height div {
	height: auto;
}

.banner-area.auto-height .content {
	padding: 150px 0;
}

.banner-area .box-cell {
	display: table-cell;
	vertical-align: middle;
	width: 100%;
}

.banner-area .box-table {
	display: table;
	width: 100%;
}

.banner-area .box-cell,
.banner-area .box-cell div {
	height: auto;
}

.banner-area {
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.banner-area .content {
	position: relative;
	z-index: 9;
	overflow: hidden;
	padding-bottom: 30px;
	padding-top: 30px;
}


/* Animation delays */

.banner-area .carousel-item h1:first-child,
.banner-area .carousel-item h2:first-child,
.banner-area .carousel-item h3:first-child,
.banner-area .carousel-item h4:first-child,
.banner-area .carousel-item h5:first-child,
.banner-area .carousel-item h6:first-child {
	animation-delay: .3s;
}

.banner-area .carousel-item h1:nth-child(2),
.banner-area .carousel-item h2:nth-child(2),
.banner-area .carousel-item h3:nth-child(2),
.banner-area .carousel-item h4:nth-child(2),
.banner-area .carousel-item h5:nth-child(2),
.banner-area .carousel-item h6:nth-child(2) {
	animation-delay: .9s;
}

.banner-area .carousel-item p {
	animation-delay: 1.1s;
}

.banner-area .carousel-item ul {
	animation-delay: 1s;
}

.banner-area .carousel-item a,
.banner-area .carousel-item .button,
.banner-area .carousel-item .bottom {
	animation-delay: 1.2s;
}

.banner-area .carousel-item .bottom {
	animation-delay: 1.2s;
	transition: all 0.35s ease-in-out;
}


/* Carousel Fade Effect */

.carousel-fade .carousel-inner .carousel-item {
	-webkit-transition-property: opacity;
	transition-property: opacity;
}

.carousel-fade .carousel-inner .carousel-item,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
	opacity: 0;
}

.carousel-fade .carousel-inner .active,
.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
	opacity: 1;
}

.carousel-fade .carousel-inner .next,
.carousel-fade .carousel-inner .prev,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
	left: 0;
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
}

.carousel-fade .carousel-control {
	z-index: 2;
}


/* Slider Zoom Effect */

@-webkit-keyframes zoom {
	from {
		-webkit-transform: scale(1, 1);
	}
	to {
		-webkit-transform: scale(1.2, 1.2);
	}
}

@-moz-keyframes zoom {
	from {
		-moz-transform: scale(1, 1);
	}
	to {
		-moz-transform: scale(1.2, 1.2);
	}
}

@-o-keyframes zoom {
	from {
		-o-transform: scale(1, 1);
	}
	to {
		-o-transform: scale(1.2, 1.2);
	}
}

@keyframes zoom {
	from {
		transform: scale(1, 1);
	}
	to {
		transform: scale(1.2, 1.2);
	}
}

.carousel-inner .carousel-item>.slider-thumb {
	-webkit-animation: zoom 20s;
	animation: zoom 20s;
}

.banner-area .carousel-zoom .slider-thumb {
	height: 100%;
	position: absolute;
	width: 100%;
}

.banner-area .carousel-control {
	background: transparent none repeat scroll 0 0;
	height: 60px;
	font-size: 16px;
	line-height: 60px;
	margin-top: -25px;
	opacity: 1;
	padding: 0;
	position: absolute;
	top: 50%;
	width: 60px;
	z-index: 9;
	display: inline-block;
	text-align: center;
	border: 2px solid #fff;
	border-radius: 50%;
	color: var(--white);
	opacity: 0;
}

.banner-area .carousel-control.shadow {
	background: transparent none repeat scroll 0 0;
	color: var(--white);
	font-size: 20px;
	height: 50px;
	line-height: 50px;
	margin-top: -25px;
	opacity: 1;
	padding: 0;
	position: absolute;
	text-shadow: inherit;
	top: 50%;
	width: 50px;
	z-index: 1;
}

.banner-area .carousel-control.shadow::after {
	background: #1e2726 none repeat scroll 0 0;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	content: "";
	height: 100%;
	left: 0;
	opacity: 0.5;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -1;
}

.banner-area .carousel-control.left {
	left: -80px;
}

.banner-area .carousel-control.left::after {
	position: absolute;
	left: 25px;
	top: 50%;
	content: "";
	height: 1px;
	width: 80px;
	background: var(--white);
}

.banner-area .carousel-control.left::before {
	position: absolute;
	left: 20px;
	top: 22px;
	content: "";
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
	border-right: 6px solid #ffffff;
}

.banner-area:hover .carousel-control.left {
	left: 50px;
	opacity: 1;
}

.banner-area:hover .carousel-control.shadow.left {
	left: 20px;
}

.banner-area .carousel-control.right {
	right: -80px;
}

.banner-area:hover .carousel-control.right {
	right: 50px;
	opacity: 1;
}

.banner-area .carousel-control.right::after {
	position: absolute;
	right: 25px;
	top: 50%;
	content: "";
	height: 1px;
	width: 80px;
	background: var(--white);
}

.banner-area .carousel-control.right::before {
	position: absolute;
	right: 20px;
	top: 23px;
	content: "";
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
	border-left: 6px solid #ffffff;
}

.banner-area:hover .carousel-control.shadow.right {
	right: 20px;
}


/* Carousel Contril Right Position */

.banner-area .carousel-control.position-right {
	position: absolute;
	right: -100px;
	left: auto !important;
	margin: 0;
	top: 50%;
	transform: translateX(-50%);
}

.banner-area .carousel-control.position-right.right {
	margin-top: -80px;
}

.banner-area:hover .carousel-control.position-right.left,
.banner-area:hover .carousel-control.position-right.right {
	right: 0;
	left: auto !important;
}


/* Carousel Indicators */

.banner-area .carousel-indicator {
	position: absolute;
	left: 10px;
	bottom: 0;
	width: 100%;
}

.banner-area .carousel-indicators {
	position: absolute;
	right: auto;
	left: 0;
	width: auto;
	height: auto;
	top: 50%;
	bottom: inherit;
	margin: 0;
	padding: 30px 0;
	display: block;
	transform: translateY(-50%);
}

.banner-area .carousel-indicators.right {
	left: auto;
	right: 50px;
	height: auto;
	bottom: auto;
}

.banner-area .carousel-indicators li {
	display: block;
	height: 20px;
	width: 20px;
	margin: 10px 5px;
	border: 6px solid var(--color-primary);
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	background: transparent;
	position: relative;
	z-index: 1;
}

.banner-area .carousel-indicators.theme li {
	border: 2px solid #e7e7e7;
	opacity: 1;
}

.banner-area .carousel-indicators li.active {
	border: 6px solid var(--color-primary);
}

.banner-area .carousel-indicators.theme li.active {
	border: 6px solid var(--color-primary);
}

.banner-area .carousel-indicators li::after {
	position: absolute;
	left: 50%;
	top: 50%;
	content: "";
	height: 5px;
	width: 5px;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	background:var(--color-primary);
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}

.banner-area .carousel-indicators.theme li::after {
	background:var(--color-primary);
}

.banner-area.video-bg-live .mbYTP_wrapper {
	z-index: 1 !important;
}

.double-items>.row div {
	height: auto;
}


/* Content */

.banner-area .animated-bubble {
	position: absolute;
	height: 100%;
	width: 100%;
}

.banner-area .animated-bubble img {
	position: absolute;
	z-index: 9;
}

.banner-area .animated-bubble img:first-child {
	top: 120px;
	left: 50px;
	animation: zoomUpDown 5s linear infinite;
}

.banner-area .animated-bubble img:nth-child(2) {
	top: 30%;
	left: 10%;
	animation: fadeLeftRight 10s linear infinite;
}

.banner-area .animated-bubble img:nth-child(3) {
	top: 17%;
	left: 20%;
	animation: moving 7s linear infinite;
}

.banner-area .animated-bubble img:nth-child(4) {
	bottom: 30%;
	right: 10%;
	animation: moving 10s linear infinite;
}

.banner-area .animated-bubble img:nth-child(5) {
	top: 30%;
	right: 10%;
	animation: fadeLeftRight 10s linear infinite;
}

.banner-area .animated-bubble img:nth-child(6) {
	bottom: 120px;
	right: 20%;
	animation: zoomUpDown 5s linear infinite;
}

.banner-area .animated-bubble img:nth-child(7) {
	bottom: 30%;
	right: 35%;
	animation: fadeLeftRight 5s linear infinite;
}

.banner-area p {
	padding-right: 20%;
}

.banner-area.text-center p,
.banner-area .text-center p {
	padding-right: 12%;
	padding-left: 12%;
}

.banner-area p {
	font-size: 18px;
	line-height: 32px;
}

.banner-area.text-regular .content h4 {
	font-weight: 400;
	text-transform: uppercase;
}

.banner-area.text-regular .content h2 {
	font-weight: 500;
	font-size: 70px;
	line-height: 1;
	margin-bottom: 30px;
}

.banner-area.content-less .content h2 {
	margin-bottom: 0;
}

.banner-area.text-regular .content a {
	margin-top: 20px;
}

.banner-area.content-less .content a {
	margin-top: 40px;
}

.banner-area.text-regular .content .video-play-button {
	margin-top: 0;
	margin-left: 30px;
}

.banner-area .bottom {
	display: flex;
	align-items: center;
	margin-top: 10px;
}

.banner-area.inc-shape .box-cell {
	position: relative;
	z-index: 1;
}

.banner-area.inc-shape .box-cell::after {
	position: absolute;
	left: 0;
	bottom: 0;
	content: "";
	height: 45%;
	width: 45%;
	background: url(assets/img/shape/4.png);
	background-size: contain;
	background-repeat: no-repeat;
	z-index: -1;
	background-position: left bottom;
}

.banner-area.text-multi-weight .content h2 {
	font-size: 80px;
	font-weight: 900;
	line-height: 1;
	margin-bottom: 30px;
}

.banner-area.text-multi-weight .content h2 span {
	display: block;
	font-weight: 200;
}

.banner-area.text-multi-weight .btn {
	box-shadow: inherit;
}

.banner-area.text-multi-weight .content a {
	margin-top: 20px;
}

.banner-area.text-multi-weight .content p {
	padding-right: 30%;
	color:var(--color-heading);
}

.banner-area.bg-theme.text-multi-weight .content p,
.banner-area.shadow.text-multi-weight .content p {
	color: var(--white);
	opacity: 0.9;
}

.banner-area.inc-shape .box-cell::before {
	position: absolute;
	left: 0;
	top: 0;
	content: "";
	height: 100%;
	width: 60%;
	background: rgba(0, 0, 0, 0) linear-gradient(to left, rgba(0, 0, 0, 0) 0%, rgba(255, 255, 255, 1) 96%) repeat scroll 0 0;
	z-index: -1;
}

.banner-area a.video-text span {
	position: relative;
	left: 130px;
	top: -75px;
	font-size: 16px;
	text-transform: uppercase;
	font-weight: 500;
	border-bottom: 1px solid;
	text-align: left;
	display: inline-block;
	line-height: 1;
	padding-bottom: 2px;
}

.banner-area.text-regular .content .video-play-button.video-text {
	margin: 0;
	left: 0;
	width: auto;
}


/* ============================================================== 
     # Infinite Shape Animation  
=================================================================== */

@keyframes fadeLeftRight {
	0%,
	100% {
		transform: translateX(0px);
	}
	50% {
		transform: translateX(100px);
	}
}

@-webkit-keyframes fadeLeftRight {
	0%,
	100% {
		transform: translateX(0px);
	}
	50% {
		transform: translateX(100px);
	}
}

@keyframes fadeRightLeft {
	0%,
	100% {
		transform: translateX(0px);
	}
	50% {
		transform: translateX(-50px);
	}
}

@-webkit-keyframes fadeRightLeft {
	0%,
	100% {
		transform: translateX(0px);
	}
	50% {
		transform: translateX(-50px);
	}
}

@keyframes zoomUpDown {
	0%,
	100% {
		transform: scale(0.5);
	}
	50% {
		transform: scale(0.7);
	}
}

@-webkit-keyframes zoomUpDown {
	0%,
	100% {
		transform: scale(0.5);
	}
	50% {
		transform: scale(0.8);
	}
}


/* Mooving Animation */

@-webkit-keyframes moving {
	0% {
		-webkit-transform: translate(0px, 0px);
		transform: translate(0px, 0px);
	}
	20% {
		-webkit-transform: translate(0px, -30px);
		transform: translate(0px, -30px);
	}
	50% {
		-webkit-transform: translate(-100px, -30px);
		transform: translate(-100px, -30px);
	}
	70% {
		-webkit-transform: translate(-100px, 0px);
		transform: translate(-100px, 0px);
	}
	100% {
		-webkit-transform: translate(0px, 0px);
		transform: translate(0px, 0px);
	}
}

@keyframes moving {
	0% {
		-webkit-transform: translate(0px, 0px);
		transform: translate(0px, 0px);
	}
	20% {
		-webkit-transform: translate(0px, -30px);
		transform: translate(0px, -30px);
	}
	50% {
		-webkit-transform: translate(-100px, -30px);
		transform: translate(-100px, -30px);
	}
	70% {
		-webkit-transform: translate(-100px, 0px);
		transform: translate(-100px, 0px);
	}
	100% {
		-webkit-transform: translate(0px, 0px);
		transform: translate(0px, 0px);
	}
}


/* ============================================================== 
     # Video Button Play
=================================================================== */

.video-play-button {
	color:var(--color-secondary);
	font-size: 30px;
	left: 50%;
	padding-left: 7px;
	position: absolute;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
	-webkit-transform: translateX(-50%) translateY(-50%);
	-moz-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	-o-transform: translateX(-50%) translateY(-50%);
	z-index: 1;
}

.video-play-button:before {
	content: "";
	position: absolute;
	z-index: 0;
	left: 50%;
	top: 50%;
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	display: block;
	width: 80px;
	height: 80px;
	background: var(--white) repeat scroll 0 0;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	-webkit-animation: pulse-border 1500ms ease-out infinite;
	animation: pulse-border 1500ms ease-out infinite;
}

.video-play-button.theme:before,
.video-play-button.theme:after {
	background:var(--color-primary) repeat scroll 0 0;
}

.video-play-button.theme.secondary:before,
.video-play-button.theme.secondary:after {
	background:var(--color-secondary) repeat scroll 0 0;
}

.video-play-button:after {
	content: "";
	position: absolute;
	z-index: 1;
	left: 50%;
	top: 50%;
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	display: block;
	width: 80px;
	height: 80px;
	background: var(--white) repeat scroll 0 0;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	transition: all 200ms;
	-webkit-transition: all 200ms;
	-moz-transition: all 200ms;
	-ms-transition: all 200ms;
	-o-transition: all 200ms;
}

@-webkit-keyframes pulse-border {
	0% {
		-webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
		transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
		opacity: 1;
	}
	100% {
		-webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
		transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
		opacity: 0;
	}
}

@keyframes pulse-border {
	0% {
		-webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
		transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
		opacity: 1;
	}
	100% {
		-webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
		transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
		opacity: 0;
	}
}

.video-play-button i {
	display: block;
	position: relative;
	z-index: 3;
	color:var(--color-primary);
}

.video-play-button.theme i {
	color: var(--white);
}

.video-play-button.theme.secondary i {
	color: var(--white);
}

.video-play-button.relative {
	position: relative;
	display: inline-block;
	left: 30px;
	height: 64px;
	width: 64px;
	line-height: 64px;
	text-align: center;
	margin-top: 0 !important;
	top: 55px;
	margin-left: 10px;
}

.video-play-button.relative::before,
.video-play-button.relative::after {
	height: 64px;
	width: 64px;
	line-height: 64px;
}

.video-play-button.relative i {
	line-height: 66px;
	font-size: 20px;
}


/* Nice Select CSS */

.nice-select {
	-webkit-tap-highlight-color: transparent;
	background-color: #fff;
	border: solid 1px #e8e8e8;
	box-sizing: border-box;
	clear: both;
	cursor: pointer;
	display: block;
	float: left;
	font-family: inherit;
	font-size: 16px;
	font-weight: normal;
	height: 50px;
	line-height: 50px;
	outline: none;
	padding-left: 18px;
	padding-right: 30px;
	position: relative;
	text-align: left !important;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	white-space: nowrap;
	width: 100%;
	margin-bottom: 15px;
}

.nice-select:hover {
	border-color: #dbdbdb;
}

.nice-select:active,
.nice-select.open,
.nice-select:focus {
	border-color: #999;
}

.nice-select:after {
	border-bottom: 2px solid #999;
	border-right: 2px solid #999;
	content: '';
	display: block;
	height: 5px;
	margin-top: -6px;
	pointer-events: none;
	position: absolute;
	right: 12px;
	top: 50%;
	-webkit-transform-origin: 66% 66%;
	-ms-transform-origin: 66% 66%;
	transform-origin: 66% 66%;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transition: all 0.15s ease-in-out;
	transition: all 0.15s ease-in-out;
	width: 5px;
}

.nice-select.open:after {
	-webkit-transform: rotate(-135deg);
	-ms-transform: rotate(-135deg);
	transform: rotate(-135deg);
}

.nice-select.open .list {
	opacity: 1;
	pointer-events: auto;
	-webkit-transform: scale(1) translateY(0);
	-ms-transform: scale(1) translateY(0);
	transform: scale(1) translateY(0);
	overflow-y: auto !important;
	height: auto;
}

.nice-select.disabled {
	border-color: #ededed;
	color: #999;
	pointer-events: none;
}

.nice-select.disabled:after {
	border-color: #96aac1;
}

.nice-select.wide {
	width: 100%;
}

.nice-select.wide .list {
	left: 0 !important;
	right: 0 !important;
}

.nice-select.right {
	float: right;
}

.nice-select.right .list {
	left: auto;
	right: 0;
}

.nice-select.small {
	font-size: 12px;
	height: 36px;
	line-height: 34px;
}

.nice-select.small:after {
	height: 4px;
	width: 4px;
}

.nice-select.small .option {
	line-height: 34px;
	min-height: 34px;
}

.nice-select .list {
	background-color: #fff;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	-moz-box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
	-webkit-box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
	-o-box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
	box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
	box-sizing: border-box;
	margin-top: 4px;
	opacity: 0;
	overflow: hidden;
	padding: 0;
	pointer-events: none;
	position: absolute;
	top: 100%;
	left: 0;
	-webkit-transform-origin: 50% 0;
	-ms-transform-origin: 50% 0;
	transform-origin: 50% 0;
	-webkit-transform: scale(0.75) translateY(-21px);
	-ms-transform: scale(0.75) translateY(-21px);
	transform: scale(0.75) translateY(-21px);
	-webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
	transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
	z-index: 9;
	width: 100%;
}

.nice-select .list:hover .option:not(:hover) {
	background-color: transparent !important;
}

.nice-select .option {
	cursor: pointer;
	font-weight: 400;
	line-height: 40px;
	list-style: none;
	min-height: 40px;
	outline: none;
	padding-left: 18px;
	padding-right: 29px;
	text-align: left;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
	background-color: #f6f6f6;
}

.nice-select .option.selected {
	font-weight: bold;
}

.nice-select .option.disabled {
	background-color: transparent;
	color: #999;
	cursor: default;
}

.no-csspointerevents .nice-select .list {
	display: none;
}

.no-csspointerevents .nice-select.open .list {
	display: block;
}


/* ============================================================== 
     # About
=================================================================== */

.about-us-area .thumb {
	position: relative;
	z-index: 1;
	margin-bottom: 65px;
}

.about-us-area .thumb::before {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    height: 100px;
    width: 100%;
    background: rgba(0, 0, 0, 0) linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(255, 255, 255, 1) 130%) repeat scroll 0 0;
}

.about-us-area .thumb img {
	border-radius: 8px;
}

.about-us-area .thumb img:first-child {
	width: 85%;
}

.about-us-area .thumb img:nth-child(2) {
	position: absolute;
	right: 0;
	bottom: -65px;
	width: 50%;
	border-radius: 50%;
	border: 10px solid var(--color-secondary);
	box-shadow: none;
}

.about-us-area .thumb .experience {
	position: absolute;
	bottom: -70px;
	left: 30px;
}

.about-us-area .thumb h2 {
	font-size: 100px;
	font-weight: 900;
	margin: 0;
	line-height: 105px;
	text-shadow: -5px 5px 0px #eceefe;
	color: var(--color-primary)
}

.about-us-area .thumb h4 {
	margin: 0;
	font-weight: 600;
	font-size: 18px;
}

.about-us-area .about-items {
	position: relative;
}

.about-us-area .about-items .shape {
	position: absolute;
	right: -120px;
	top: 0;
	z-index: -1;
}

.about-us-area .about-items .shape img {
	height: 150px;
	transform: rotate(16deg);
	opacity: 0.2;
}

.about-us-area .info {
	padding-left: 35px;
}

.about-us-area .info h2 {
	font-weight: 600;
	margin-bottom: 25px;
}

.about-us-area .info .bottom-info {
	display: flex;
	align-items: center;
	margin-top: 25px;
}

.about-us-area .info .bottom-info .button {
	margin-right: 30px;
}

.about-us-area .info .bottom-info .contact {
	display: flex;
	align-items: center;
}

.about-us-area .info .bottom-info .contact i {
	display: inline-block;
	font-size: 40px;
	margin-right: 15px;
	color:var(--color-primary);
}

.about-us-area .info .bottom-info .contact .content {
	border-left: 1px solid #dddddd;
	padding-left: 28px;
}

.about-us-area .info .bottom-info .contact .content span {
	display: block;
	margin-bottom: 3px;
}

.about-us-area .info .bottom-info .contact .content h5 {
	margin: 0;
	font-weight: 600;
}

.about-us-area .about-items blockquote {
	background: var(--white);
	box-shadow: 0 0 25px rgb(0 0 0 / 8%);
	padding: 30px;
	border-left: 5px solid var(--color-primary);
	margin-bottom: 30px;
	font-size: 20px;
	line-height: 32px;
	color:var(--color-heading);
	font-weight: 400;
	font-style: italic;
}






/* Animation Rotation */

@keyframes infinite-rotate {
	0% {
		transform: rotate(0deg);
	}
	50% {
		transform: rotate(180deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

@-webkit-keyframes infinite-rotate {
	0% {
		transform: rotate(0deg);
	}
	50% {
		transform: rotate(180deg);
	}
	100% {
		transform: rotate(360deg);
	}
}



/* Tablet Layout: 768px.*/
@media only screen and (min-width: 768px) and (max-width: 991px) {
	.banner-style-five {
		padding-top: 220px;
	}

	.banner-style-five .thumb {
		display: none;
	}
	
	.banner-style-five.auto-height .content {
		padding-bottom: 120px;
	}
	
	.about-style-four .appinment-forms {
		top: 0;
		margin: 0;
		margin-top: 120px;
	}
	
	.about-list-item {
		display: block;
	}
	
	.about-list-item .services-list {
		padding-left: 0;
	}
	
	.about-list-item {
		margin-top: 50px;
	}
	
	.about-list-item .info {
		padding: 0;
		margin-top: 40px;
	}
	
	.process-style-four-box .shape {
		display: none;
	}
	
	.process-style-four-box .single-item:nth-child(2) {
		margin-top: 50px;
	}
	
	.process-style-four-box .single-item {
		margin-top: 50px;
	}
	
	.process-style-four-box  {
		margin-top: -50px;
	}
}


/* Mobile Layout: 320px. */
@media only screen and (max-width: 767px) {
	.banner-style-five {
		padding-top: 90px;
	}
	
	.banner-style-five.auto-height .content {
		padding-bottom: 50px;
	}
	
	.about-style-four .appinment-forms {
		top: 0;
		margin: 0;
		margin-top: 50px;
	}
	
	.about-list-item {
		display: block;
	}
	
	.about-list-item .services-list {
		padding-left: 0;
	}
	
	.about-list-item {
		margin-top: 50px;
	}
	
	.about-list-item .info {
		padding: 0;
		margin-top: 40px;
	}
	
	.process-style-four-box .shape {
		display: none;
	}
	
	.process-style-four-box .single-item:nth-child(2) {
		margin-top: 30px;
	}
	
	.process-style-four-box .single-item {
		margin-top: 30px;
	}
	
	.process-style-four-box .single-item:first-child {
		margin-top: 0;
	}
}


/*--------------------------------------------------------------
# Feature Two
--------------------------------------------------------------*/
.feature-two {
  position: relative;
  display: block;
  padding: 50px 0 0;
}

.feature-two__single {
  position: relative;
  display: block;
  padding-left: 140px;
  margin-bottom: 60px;
  min-height: 120px;
  z-index: 1;
}

.feature-two__single:before {
  position: absolute;
  top: -15px;
  bottom: -15px;
  right: 0;
  left: 58px;
  content: "";
  border: 1px solid #e4e5ea;
  border-radius: 10px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: -1;
}

.feature-two__single:hover:before {
  background-color: var(--color-primary);
  border: 1px solid var(--color-primary);
}

.feature-two__icon {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 120px;
  width: 120px;
  border-radius: 50%;
  background-color: #e4e5ea;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  top: 0;
  left: 0;
}

.feature-two__single:hover .feature-two__icon {
  background-color: #ff5d22;
}

.feature-two__icon:before {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  content: "";
  background-color: var(--brote-white);
  border-radius: 50%;
  z-index: 1;
}

.feature-two__icon img {
  width: auto;
  -webkit-transition: all 500ms linear;
  transition: all 500ms linear;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
  z-index: 1;
  width: 60px;
}

.feature-two__single:hover .feature-two__icon img {
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}

.feature-two__content {
  position: relative;
  display: block;
  top: 12px;
}

.feature-two__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 3px;
}

.feature-two__title a {
  color: var(--color-primary);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.feature-two__single:hover .feature-two__title a {
  color: var(--brote-white);
}

.feature-two__text {
  font-size: 15px;
  width: 94%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.feature-two__single:hover .feature-two__text {
  color: var(--white);
}

.feature-two__star-1 {
  position: absolute;
  bottom: 4px;
  right: 45px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  -webkit-transition-delay: 300ms;
  transition-delay: 300ms;
  -webkit-transform: scale(0);
  transform: scale(0);
}

.feature-two__single:hover .feature-two__star-1 {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.feature-two__star-1 img {
  width: auto;
  opacity: .20;
}

.feature-two__star-2 {
  position: absolute;
  bottom: 20px;
  right: 5px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  -webkit-transition-delay: 200ms;
  transition-delay: 200ms;
  -webkit-transform: scale(0);
  transform: scale(0);
}

.feature-two__single:hover .feature-two__star-2 {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.feature-two__star-2 img {
  width: auto;
  opacity: .20;
}

.feature-two__star-3 {
  position: absolute;
  bottom: -14px;
  right: 8px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  -webkit-transform: scale(0);
  transform: scale(0);
}

.feature-two__single:hover .feature-two__star-3 {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.feature-two__star-3 img {
  width: auto;
  opacity: .20;
}
/***************/
#avens_tile_about {
	padding-top: 60px;
	padding-bottom: 60px;
	overflow: hidden;
	position: relative;
}
.paragraph {
	width: 100%;
	position: relative;
}
.avens_about_content:before {
	top: 0;
	bottom: 0;
	background: #efedeb;
	content: "";
	position: absolute;
	right: 0;
	left: calc(50% - 460px);
	z-index: -999;
}
#avens_tile_about .home_avens_img {
	border: solid 2px;
	border-color: var(--itacon-primary-color);
}
#avens_tile_about .nav-title-wrapper .nav-title {
	font-size: 30px;
	line-height: 1.1;
	font-weight: 700;
	color: #c4c4c4;
	white-space: nowrap;
}
#avens_tile_about .eleone_about_content .title-wrapper {
 //z-index: 10;
}
#avens_tile_about .avens_about_content h2.title {
	font-weight: lighter;
	text-transform: capitalize;
	font-size: 40px;
	color: var(--thm-second);
	line-height: 50px;
	letter-spacing: 0;
	margin-bottom: 20px;
	display: inline-grid;
}
#avens_tile_about .avens_about_content h2.title span {
	font-weight: 800;
	color: var(--color-primary);
}
#avens_tile_about .avens_about_content .leftside {
}
#avens_tile_about .avens_about_content .cta_btnbox {
	display: block;
	margin-top: 120px;
}
 @media (min-width: 1281px) {
#avens_tile_about .nav-title-wrapper {
	margin-bottom: 0;
	position: absolute;
	top: -170px;
	left: -20px;
}
#avens_tile_about .nav-title-wrapper .nav-title {
	text-align: right;
	-webkit-transform: rotate( -90deg);
	transform: rotate( -90deg);
	-webkit-transform-origin: bottom right;
	transform-origin: bottom right;
	position: absolute;
	bottom: 0;
	right: 0;
}
}


#home_products
{
  padding-top:40px;
  padding-bottom: 40px;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: top center;
  background-image: url(../images/background.jpg);
}
.product_collection
{
  margin-top: 50px;
}
.causes-item-current-style1 .causes-item .causes-thumb {
	overflow: hidden;
	position: relative;
	margin-bottom: 30px;
}
.causes-item-current-style1 .causes-item .causes-thumb img {
	transition: 0.4s;
}
 @media (prefers-reduced-motion: reduce) {
.causes-item-current-style1 .causes-item .causes-thumb img {
	transition: none;
}
}
.causes-item-current-style1 .causes-item .causes-thumb .btn-donate-now {
	border: none;
	border-radius: 0;
	bottom: -58px;
	color: #fff;
	display: block;
	font-size: 14px;
	font-weight: 600;
	left: 0;
	letter-spacing: 1px;
	padding:10px 15px;
	position: absolute;
	text-transform: uppercase;
	width: 100%;
	transition: 0.4s;
}
.causes-item-current-style1 .causes-item .causes-thumb .btn-donate-now {
  background-color: var(--color-primary);
}
.causes-item-current-style1 .causes-item:hover .causes-thumb .btn-donate-now {
  bottom: 0;
  opacity: 1;
}
.bg-theme-colored2 {
  background-color: #e7e7e7 !important;
  width: 100%;
	height: 150px;
	margin-top: -70px;
	z-index: -1;
}


 @media (prefers-reduced-motion: reduce) {
.causes-item-current-style1 .causes-item .causes-thumb .btn-donate-now {
	transition: none;
}
}
.causes-item-current-style1 .causes-item .causes-details {
	border: 1px solid #ececeb;
	padding: 40px 50px 6px 49px;
}

 @media (max-width: 1199.98px) {
.causes-item-current-style1 .causes-item .causes-details {
	padding: 30px 24px 0;
}
}
.causes-item-current-style1 .causes-item .causes-details .causes-title {
	margin-bottom: 35px;
	margin-top: 0;
}
.causes-item-current-style1 .causes-item .causes-details .causes-text {
	margin-bottom: 27px;
}
.causes-item-current-style1 .causes-item .progress-item {
	background-color: #eef1f6;
	padding: 15px 50px;
	position: relative;
}
.causes-item-current-style1 .causes-item .progress-item .tm-sc-progress-bar .progress-holder {
	background-color: #fff;
}
.causes-item-current-style1 .causes-item .progress-item .tm-sc-progress-bar.progress-bar-floating-percent .progress-title-holder .percent {
	bottom: 12px;
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	line-height: 1;
	min-width: 53px;
	padding: 9px 0 4px;
	text-align: center;
}
.causes-item-current-style1 .causes-item:hover .causes-thumb img {
	transform: scale(1.1);
}
.causes-item-current-style1 .causes-item:hover .causes-thumb .btn-donate-now {
	bottom: 0;
	opacity: 1;
}
.tm-sc-section-title .title-wrapper .title {
  margin-top: -6px;
  line-height:50px;
  position: relative;
  z-index: 0;
  text-transform: capitalize;
  font-size:40px;
  font-weight: 600;
  color: var(--color-primary);

}
.footer-area {
    padding-top:50px;
    //border-top: solid 5px var(--color-primary);
    position: relative;
    z-index: 1
}
.footer-area.bg-color {
    background-color: #efedeb;
}
.single-footer-widget {
    margin-bottom: 30px
}
.single-footer-widget p
{
	color: var(--black);
}
.single-footer-widget .logo {
    margin-bottom: 15px;
    font-size: 15px;
    display: inline-block
}
.single-footer-widget .logo img
{
	width: 80px;
}
.single-footer-widget .social-link {
    padding-left: 0;
    list-style-type: none;
    margin-bottom: 0;
    margin-top: 18px
}
.single-footer-widget .social-link li {
    display: inline-block;
    margin-right: 10px
}
.single-footer-widget .social-link li:last-child {
    margin-right: 0
}
.single-footer-widget .social-link li a {
    width: 30px;
    height: 30px;
    text-align: center;
    color: #fff;
    background-color: #6b6b84;
    font-size: 18px;
    position: relative;
    border-radius: 2px
}
.single-footer-widget .social-link li a i {
    position: absolute;
    left: 0;
    top: 50%;
    right: 0;
    transform: translateY(-48%)
}
.single-footer-widget .social-link li a:hover {
    background-color: #ff5d22;
    color: #fff
}
.single-footer-widget h3 {
    margin-bottom: 25px;
    font-size: 26px;
    font-weight: 600;
}
.single-footer-widget .footer-links-list {
    padding-left: 0;
    margin-bottom: 0;
    list-style-type: none
}
.single-footer-widget .footer-links-list li {
    margin-bottom: 12px;
    color: #6b6b84;
    font-weight: 600
}
.single-footer-widget .footer-links-list li a {
    color: #000;
    display: inline-block;
    font-weight: normal;
}
.single-footer-widget .footer-links-list li a:hover {
    color: var(--color-primary);
}
.single-footer-widget .footer-links-list li:last-child {
    margin-bottom: 0
}
.single-footer-widget .footer-contact-info {
    padding-left: 0;
    margin-bottom: 0;
    list-style-type: none
}
.single-footer-widget .footer-contact-info li {
    margin-bottom: 13px;
    color: #000;
    position: relative;
    padding-left: 23px;
    font-weight: normal;
}
.single-footer-widget .footer-contact-info li strong
{
    color: var(--color-primary);
}
.single-footer-widget .footer-contact-info li a {
    color: #000;
    display: inline-block
}
.single-footer-widget .footer-contact-info li a:hover {
    color: #ff5d22
}
.single-footer-widget .footer-contact-info li:last-child {
    margin-bottom: 0
}
.single-footer-widget .footer-contact-info li i {
    position: absolute;
    left: 0;
    color: #ff5d22;
    top: 4px
}
.single-footer-widget .footer-contact-info li i.bxs-inbox {
    top: 3px
}
.footer-bottom-area {
    margin-top:0px;
    border-top: 1px solid var(--color-primary);
    padding-top:10px;
    padding-bottom:10px
}
.footer-bottom-area p
{
    margin-bottom: 0px;
    color: var(--black);
}
.footer-bottom-area p i {
    position: relative;
    top: 1.3px
}
.footer-bottom-area p a {
    color: #ff5d22;
    font-weight: 600
}
.footer-bottom-area p a:hover, .footer-bottom-area p strong {
    color: #221638
}
.footer-bottom-area ul {
    text-align: right;
    padding-left: 0;
    margin-bottom: 0;
    list-style-type: none
}
.footer-bottom-area ul li {
    color: #000;
    position: relative;
    display:inline-flex;
    margin-right: 20px
}

.footer-bottom-area ul li:last-child {
    margin-right: 0
}
.footer-bottom-area ul li:last-child:before {
    display: none
}
.footer-bottom-area ul li:before {
    content: "";
    position: absolute;
    right: -12px;
    top: 5.6px;
    width: 1px;
    height: 14px;
    background-color: #6b6b84
}
.footer-bottom-area ul li a {
    display: block;
    color: #000;
    padding-left: 5px;
}
.footer-bottom-area ul li a:hover {
    color: #ff5d22
}
.footer-map {
    position: absolute;
    right: 20%;
    top: 40%;
    transform: translateY(-40%);
    z-index: -1;
    opacity: .8
}
.footer-map img {
    animation: moveleftbounce 5s linear infinite
}
@keyframes moveleftbounce {
0% {
transform:translateX(0)
}
50% {
transform:translateX(-20px)
}
to {
    transform: translateX(0)
}
}
.go-top {
    position: fixed;
    cursor: pointer;
    bottom: -100px;
    right: 20px;
    color: #fff;
    background-color: #221638;
    z-index: 4;
    width: 45px;
    text-align: center;
    height: 45px;
    opacity: 0;
    visibility: hidden;
    border-radius: 50%;
    font-size: 22px;
    transition: .9s;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,.1)
}
.go-top i {
    position: absolute;
    right: 0;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    margin-left: auto;
    margin-right: auto
}
.go-top.active {
    opacity: 1;
    visibility: visible;
    bottom: 20px
}
.go-top:hover {
    background-color: #ff5d22;
    color: #fff;
    transition: .5s;
    box-shadow: 0 4px 6px rgba(50,50,93,.11), 0 1px 3px rgba(0,0,0,.08);
    transform: translateY(-5px)
}

#why_biotech {
	background: rgba(0, 0, 0, 0) url("../images/why_bg.jpg") no-repeat fixed center center / cover !important;
}
.right_side_why {
	padding-left: 80px;
	padding-top: 80px;
	padding-bottom: 40px;
	padding-right: 100px;
	background: rgba(0,0,0, 0.8);
}
.right_side_why .why_details {
}
.right_side_why .why_details h3 {
	font-size: 70px;
	line-height: 1;
	text-transform: uppercase;
	font-weight: lighter;
	letter-spacing: 0.6;
	color: var(--white);
	margin-bottom: 15px;
}
.right_side_why .why_details p
{
	color: var(--white);
}
.right_side_why .why_details {
	color: var(--white);
}
.why_biotech_features {
}
.why_biotech_list {
	margin-bottom: 25px;
}
.why_biotech_list img {
	width: 60px;
}
.why_biotech_list i {
	font-size: 50px;
	color: #7f927b;
	transition: 0.3s;
}
.why_biotech_list i::before {
	margin-bottom: 20px;
	display: block;
}
.why_biotech_list:hover i {
	color: #ffffff;
}
.why_biotech_feature_name {
	font-size: 15px;
	line-height: 24px;
	color: var(--white);
	font-weight: 400;
	text-transform: uppercase;
	margin-top: 10px;
}
.applications-bg {
	padding: 60px 0;
	background-color: #fff
}
.applications .item a {
	position: relative;
	display: block
}
.applications-text h3 {
	text-align: center;
	font-size: 32px;
	color: var(--color-primary);
	padding-bottom: 30px;
	font-weight: 800
}
.pd-top {
	margin-top: 30px
}
.applications .item a:hover .img_box img {
	-ms-transform: translateZ(30px);
	-moz-transform: translateZ(30px);
	-webkit-transform: translateZ(30px);
	transform: translateZ(30px);
	width: 100%;
	height: auto;
	transition: all .4s
}
.applications .item a .img_box {
	-ms-perspective: 900px;
	-moz-perspective: 900px;
	-webkit-perspective: 900px;
	perspective: 900px;
	overflow: hidden
}
.applications .item a .img_box img {
	width: 100%;
	transition: all .4s;
	height: auto
}
.applications .item a .bottom_text {
	position: absolute;
	bottom: 20px;
	left: 0;
	width: 100%;
	padding: 0 20px 0 20px;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex
}
.applications .item a .bottom_text .text {
	font-size: 17px;
	color: #fff;
	border: 2px solid #fff;
	padding: 3px 10px;
	background-color: #00000050;
}
#page_banner {
	padding-top: 40px;
	padding-bottom: 20px;
	background: #fff;
	text-align: center;
	position: relative;
}
#page_banner::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0,.7)), to(rgba(0,0,0,.2)));
	background: linear-gradient(to bottom, rgba(0,0,0,.7) 0%, rgba(0,0,0,.2) 100%);
	pointer-events: none;
}
.btn-scroll-arrow {
	position: absolute;
	bottom: 55px;
	left: 50%;
	margin-left: -22px;
	z-index: 2;
}
.btn-scroll {
	border-radius: 22px;
	width: 44px;
	height: 44px;
	display: block;
	background-image: url(../images/btn__scroll--down.svg);
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: 44px 44px;
	background-color: #1d9cd8;
}
#page_banner p {
	margin: 0 auto;
	width: 100%;
}
#page_banner .contenet-hero {
	padding: 150px 0;
	max-width: 100%;
}
#page_banner .p-relative {
	position: relative;
}
#page_banner .title-page {
	font-size: 17px;
	font-weight: normal;
	margin-bottom: 5px;
	line-height: 1;
	color: #fff;
}
#page_banner .title {
	position: relative;
	color: #fff;
	font-size: 48px;
	font-weight: 700;
}
#page_banner .title strong {
	color: #fff !important;
}
#page_banner .subtitle-page {
	font-size: 18px;
	margin-top: 0;
	color: #fff;
	width: 40%;
	margin: 0 auto;
}

#overview {
    padding-top: 50px;
    padding-bottom: 50px
}

#overview .heading {
    text-align: center
}

#overview .heading h4 {
   color: var(--black);
    font-size: 18px;
    text-transform: uppercase
}

#overview .heading h1 {
    margin-top: 10px;
    color: var(--color-primary);
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 600;
}
#overview .description {
    width: 70%;
    margin:20px auto 20px auto;
}

#overview .description p {
    color: var(--color-paragraph);
    text-align: center
}
#vision_mission {
    padding:30px
}

#vision_mission .heading {
    margin-bottom: 30px
}

#vision_mission .heading h1 {
    letter-spacing: 2px;
    color: var(--color-primary);
    font-size: 40px;
    font-weight: 600;
}

#vision_mission .right {
    text-align: right
}
#vn_statistic
{
	padding-top: 0px;
	padding-bottom: 0px;

}
#vn_statistic
{
	background-attachment: fixed;
	background-image: url(../images/vn_statistic_bg.jpg);
	background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}
.vn_statistic_bg
{
	background-image: url(../images/background_top.png);
	background-size: 100% ;
    top: 0;
    height: 113px;
    z-index: 1;
    position: relative;
    background-repeat: no-repeat;
}
.vn_statistic_bg_bottom
{
	background-image: url(../images/background_bottom.png);
	background-repeat: no-repeat;
	background-size: 100% ;
    bottom: 0;
    height: 112px;
    z-index: 1;
    position: relative;
}
#vn_statistic .heading {
  text-align: center;
}
#vn_statistic .heading h1 {
  color: var(--white);
  text-transform: uppercase;
}
#vn_statistic .description {
  width: 70%;
  margin: 0 auto;
}
#vn_statistic .description p
{
	color: #fff;
	text-align: center;
}
.statistic_content
{
    margin: 0 auto;
    position: relative;
    text-align: center;
}
.statistic_image {
    display: inline-block;
    margin-bottom: 30px;
    line-height: 0;
    max-width: 100%;
}
#vn_statistic .statistic_content h4 {
    font-size: 35px;
    color:var(--white);
    text-align: center;
    font-weight: 900;
}
#vn_statistic .statistic_content .statistic_description p
{
	text-align: center;
	font-weight: 600;
	line-height: 29px;
	font-size: 24px;
	color: var(--white);
}
#vn_experience
{
	padding-top: 50px;
	padding-bottom:50px;
	background: #efedeb;
}


#vn_experience .experience-item {
  margin-bottom: 50px;
}
#vn_experience .experience-item span {
  color: var(--color-primary);
  font-weight: 700;
  position: relative;
}
#vn_experience .experience-item span::before {
  position: absolute;
  content: '';
  right: -100px;
  top: 10px;
  height: 2px;
  width: 70px;
  background: var(--color-primary);
}
#vn_experience .experience-item .title {
  font-size: 38px;
  padding-top: 24px;
  color: var(--color-primary);
  font-weight: 600;
}
#vn_experience .experience-item p {
  color:var(--color-paragraph);
}
#vn_experience .icon_img {
  text-align: center;
}
#vn_experience .icon_head {
  text-align: center;
}
#vn_experience .icon_head .title {
  color: var(--color-primary);
  font-weight:600;
  line-height: 1.2;
}



.video-model .w3nmodel_wrapper {
	width: 900px;
}
.w3nmodel_wrapper {
	display: -webkit-box;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;
	min-height: 100vh;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-moz-align-items: center;
	align-items: center;
	width: 900px;
	margin: 0 auto;
}
.modal-content {
	padding: 0;
	border: none;
	border-radius: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}
button.close {
	position: absolute;
	right: -20px;
	top: -20px;
	border: none;
	outline: none;
	text-shadow: none;
	width: 40px;
	height: 40px;
	background: #000;
	color: var(--secondry-color);
	opacity: 1;
	border-radius: 60px;
	z-index: 3;
}
.inquire-model.video-model .modal-body {
	padding: 0
}
.inquire-model.video-model .w3nmodel_wrapper {
	width: 100%
}
.modal-backdrop {
	background: #fff
}
.modal-backdrop.show {
	opacity: .95
}
.inquire-model .modal-dialog {
	max-width: 100%;
	width: 100%
}
.inquire-model.video-model .w3nmodel_wrapper {
	width: 900px
}


.parallax-image {
  height: 650px;
  position: relative;
}

.about-experience-area {
  padding-top: 40px;
  background: #fff;
}

.about-experience-area .experience-item {
  margin-bottom: 50px;
}
.about-experience-area .experience-item .title {
  font-size: 30px;
  padding-top: 24px;
  text-transform: uppercase;
  color: var(--secondry-color);
}
.about-experience-area .experience-item ul {
  margin-top: 20px;
  margin-bottom: 20px;
}
.about-experience-area .experience-item ul li {
  font-size: 24px;
}
.about-experience-area .experience-item ul li::before {
  content: '-';
  padding-right: 10px;
  color: var(--secondry-color);
}
.about-experience-area .experience-item p {
  color: #000000;
}

#why_global {
	padding: 50px 0 0 0;
	background: #fff;
}
#why_global p {
	color: var(--black-color);
}
#why_global .section-title span
{
	color: var(--color-primary);
}
#why_global h2 {
	font-size: 40px;
	padding-bottom: 24px;
	padding-top: 0px;
	margin-bottom: 0px;
	text-transform: uppercase;
	color: var(--color-primary);
	font-weight: 600;
}
#why_global h3 {
	font-family: var(--font-primary);
	color: var(--primary);
	font-weight: var(--font-semibold);
	font-size: 20px;
	letter-spacing: var(--page-title-letter-space);
	line-height: 1.2;
}
#why_global .why_icon_img {
	padding-top: 50px;
	text-align: center;
	position: relative;
}
#why_global .why_icon_images {
	text-align: center;
}
#why_global .icon_line_theme {
}
#why_global .w3n-logo-ser {
	position: absolute;
	left: 0;
	top: 15px;
	bottom: -450px;
	pointer-events: none;
	opacity: .05
}
#why_global .w3n-logo-ser svg {
	height: 100%;
	width: 100%;
}
#why_global .w3n-logo-ser svg path {
	fill: #000
}
.why_global_left_margin
{
	margin-left:65px;
}
#why_global .ularr li {
	padding:0px 0 14px 60px;
}
#why_global .ularr li::before {
	position: absolute;
	left: 0;
	content: "";
	width: 46px;
	height: 46px;
}
#why_global .ularr li:nth-child(1)::before {
	background: url(../images/why/why_icon_design.svg) no-repeat left center;
}
#why_global .ularr li:nth-child(2)::before {
	background: url(../images/why/why_icon_flexibility.svg) no-repeat left center;
}
#why_global .ularr li:nth-child(3)::before {
	background: url(../images/why/why_icon_range.svg) no-repeat left center;
}
#why_global .ularr li:nth-child(4)::before {
	background: url(../images/why/why_icon_technology.svg) no-repeat left center;
}
#why_global .ularr li:nth-child(5)::before {
	background: url(../images/why/why_icon_sustainability.svg) no-repeat left center;
}
#why_global .ularr li:nth-child(6)::before {
	background: url(../images/why/why_icon_quality.svg) no-repeat left center;
}
#why_global .ularr li .title_sub_sub {
}
.page_inner_title .title_sub_sub {
	line-height: 1.2em;
	color: var(--color-primary);
	font-weight: 400;
	line-height: 1.2;
	margin-bottom: 0px;
	text-transform: capitalize;
	font-size: 20px;
}
#why_global .ularr li p {
	padding-top: 0px;
	color: var(--color-paragraph);
}
.sProductSpec {
    background: #fff;
    z-index: 999;
    padding-top: 40px;
}
.sProductSpec .sProductCard {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.sProductSpec .sProductCard .sProductDetails {
}
.sProductSpec .sProductCard .sProductDetails h2 {
    font-size: 2.125rem;
  line-height: 1.3;
  font-weight: 600;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 25px;
}
.sProductSpec .sProductCard .sProductDetails p
{
  text-align: center;
  width: 60%;
  margin:15px auto;
}
.sProductSpec .sProductCard .sProductDetails ul {
    padding: 0;
    list-style: none;
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}
.sProductSpec .sProductCard .sProductDetails ul li {
    flex: 0 0 25%;
    display: flex;
    align-items: center;
    margin-bottom: 2.5rem;
    position: relative;
    padding-left: 0.3125rem;
}
.sProductSpec .sProductCard .sProductDetails ul li img
{
	width:75px;
}
.sProductSpec .sProductCard .sProductDetails ul li p {
    font-size: 110%;
    padding-left: 0.9375rem;
    font-weight: 500;
    margin: 0px;
    text-align: left;
}

.sProductSpec .sProductCard .sProductImg {
    width: 50%;
    text-align: center;
}
.sProductSpec .features_right h2 {
    color: #000;
    font-weight: 700;
    font-size: 180%;
    text-transform: capitalize;
    margin-bottom: 3.4375rem;
}
.sProductSpec .sProductCard .sProductImg img {
    max-width: 100%;
}

#machine_detail {
	padding: 50px 0;
}
#machine_detail .machine_desc {
	clear: both;
	margin-top: 20px;
}
#machine_detail .machine_desc p {
	color: var(--black);
}
#machine_detail .machine_accessories {
	margin-top: 30px;
}
#machine_detail .machine_accessories .heading {
	text-align: left;
	margin-bottom: 20px;
}
#machine_detail .machine_accessories .heading h3 {
	font-weight: 600;
	text-transform: uppercase;
	font-size: 30px;
	color: var(--secondry-color);
	line-height: 40px;
	letter-spacing: 0;
	margin-bottom: 10px;
	text-align: center;
}
#machine_detail .machine_accessories #productos-ico2 p, #machine_detail .machine_accessories #productos-ico3 p {
	color: #fff;
}
#machine_detail .machine_accessories #productos-ico2 img, #machine_detail .machine_accessories #productos-ico3 img {
	max-width: 200px;
	border-radius: 10px;
	border: solid 2px var(--secondry-color);
}
.mechine_page {
	scroll-behavior: smooth;
}
.gallery {
	margin-bottom:20px;
	min-height: 350px;
	position: relative;
}
.gallery .previews, .gallery .full, .gallery .desc {
	margin-right: 10px;
	display: inline-block;
}
.gallery .desc, .gallery .full {
	width:100%;
}
.gallery .desc h2 {
	margin-top: 0;
}
.gallery .previews a {
	display: block;
	margin-bottom: 3px;
}
.gallery .full {
	position: relative;
}
.gallery .full img {
 //height:315px;
}
.gallery .previews a, .gallery .full {
	border: 3px solid #484848;
}
.gallery .previews a:hover, .gallery .previews a.selected {
	border: 3px solid var(--secondry-color);
}
/*.gallery .full img:hover {
cursor: pointer;
}*/

.table-title {
	position: relative;
	margin-bottom: 6px;
}
.table-title h3 {
	color: var(--secondry-color);
	font-weight: 500;
	padding-bottom: 10px;
	text-transform: uppercase;
	font-size: 22px;
	margin-top: 0;
}
.table-title h3:before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 4px;
	width: 40px;
	height: 1px;
	background-color: #0071bb;
}
.table-title h3:after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 25px;
	height: 1px;
	background-color: #0071bb;
}
.table-responsive {
	min-height: .01%;
	overflow-x: auto;
}
.table-bordered {
	border: 1px solid #ddd;
}
table {
	border: 1px solid #666;
	margin-top: 5px;
	width: 100%;
}
.table-bordered>thead>tr>th, .table-bordered>tbody>tr>th, .table-bordered>tfoot>tr>th, .table-bordered>thead>tr>td, .table-bordered>tbody>tr>td, .table-bordered>tfoot>tr>td {
	border: 1px solid;
	border-color: var(--primary-color);
}
.product-table tr td {
	font-size: 17px;
	color: var(--black);
}
.t-head {
	color: #fff;
	background: #efedeb;
	border-bottom: 1px solid !important;
	border-color:var(--black) !important;
}
td {
	border: 1px solid #666;
	border-collapse: collapse;
	padding: 5px;
	text-align: left;
}
.page-list ul {
  padding: 0px;
    padding-left: 0px;
  margin-bottom: 0;
  padding-left: 15px;
}
.page-list ul li {
  background-image: url(../images/arrow-page.svg);
  background-repeat: no-repeat;
  background-position: 0px 12px;
  padding-left: 25px;
  list-style: none;
  text-align: left;
  padding-top: 1px;
  padding-bottom: 1px;
  font-size: 17px;
  color: #333;
  line-height: 36px;
  background-size: 16px;
}
#global_google_map
{
	margin-bottom: 50px;
}
#global_google_map .map-heading
{
	margin-bottom: 25px;
	text-align: center;
}
#global_google_map .map-heading h2 {
    color: var(--secondry-color);
}
#global_google_map .map-heading h2 span {
    color: #0075bd;
}
#global_google_map .google_map
{
	border: solid 10px #e7e7e7;
}
#contact_global
{
	margin-bottom:50px;
}
.contact-box {
	z-index: 1;
	position: relative
}
.contact-form
{
	background: none;
}
.contact-form .contact-heading {
	padding: 20px;
	border-bottom: 1px solid #f3f3f3;
	padding: 5px;
}
.contact-form .contact-heading h2 {
	font-weight: 600;
	text-transform: capitalize;
	font-size:35px;
	color: var(--color-primary);
	line-height: 50px;
	letter-spacing: 0;
	margin-bottom: 20px;
	font-family: var(--font-default);
}
.contact-form .contact-heading p
{
	color: var(--black);
	font-size: 16px;
	text-transform: capitalize;
	line-height:28px;

}
.contact-form .contact-heading h2 span
{
	color: var(--secondry-color);
}
.contact-form .contact-heading h2 img {
}
.contact-form .contact-heading .dealerform_right_text
{
	width: 90%;
	float: left;
	padding-right: 15px;

}
@media screen and (min-width: 768px) {
.contact-form .contact-heading {
	padding: 25px 30px
}
}
@media screen and (min-width: 1200px) {
.contact-form .contact-heading {
	padding: 10px 0px
}

}
.contact-form .form {
	padding: 20px
}
@media screen and (min-width: 768px) {
.contact-form .form {
	padding: 30px
}
}
@media screen and (min-width: 1200px) {
.contact-form .form {
	padding:20px 0px
}
}
#contact_page_title
{
	padding-top: 50px;
	padding-bottom: 0px;
}
#contact_page_title .heading {
  text-align: center;
}
#contact_page_title .heading h1 {
  font-weight: 600;
text-transform: capitalize;
font-size: 40px;
color: var(--color-primary);
line-height: 50px;
letter-spacing: 0;
margin-bottom: 20px;
display: inline-grid;
font-family: var(--font-default);
}
#contact_page_title .heading h4
{
	color: var(--black);
	font-size: 16px;
	text-transform: capitalize;
}
.contact-details {
	height: 100%;
	background-color:var(--color-primary);
	padding: 20px;
	color: #fff
}
.contact-details hr {
	border-top-color: #c2c5c6;
	margin: 1.5em 0
}
.contact-details .detail-heading {
	font-size: 25px
}
.contact-details .detail-heading1 {
	font-size: 20px
}
.contact-details .green {
	color: #fff
}
.contact-details .contact-factory {
	margin-top: -30px
}
.contact-details .contact-factory+hr {
	margin-top: 0
}
.contact-details .list-unstyled li {
	margin-bottom: 25px;
	font-size: 14px
}
@media screen and (min-width: 576px) {
.contact-details .detail-heading {
	font-size: 36px
}
.contact-details .detail-heading1 {
	font-size: 24px
}
.contact-details .contact-factory {
	margin-top: -45px
}
.contact-details .list-unstyled li {
	font-size: 15px
}
}
@media screen and (min-width: 768px) {
#contact_global .contact-box {
	margin-top: -30px
}
.contact-details .detail-heading {
	font-size: 30px
}
.contact-details .detail-heading1 {
	font-size: 20px
}
.contact-details .contact-factory {
	margin-top: -40px
}
.contact-details .list-unstyled li {
	font-size: 14px
}
}
@media screen and (min-width: 1200px) {
#contact_global .contact-box {
	margin-top: 0px
}
.contact-details {
	padding: 24px 40px
}
.contact-details .detail-heading {
	font-size: 36px
}
.contact-details .detail-heading1 {
	font-size: 24px;
	color: #fff;
}
.contact-details .contact-factory {
	margin-top: -70px
}
.contact-details .list-unstyled li {
	font-size: 16px
}
}
.form label {
    color:var(--color-primary);
    font-weight: 600;
    margin-bottom:0;
}
.form label .mandatory {
    color: var(--secondry-color);
    padding-left: 5px;
}
.form select.form-control {
    height: 40px !important;
    color: #000;
}
.form .form-group select {
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url(../images/select-arrow.svg);
    background-repeat: no-repeat;
    background-position: 96% center;
    color: #fff;
}
.form .form-control {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    outline: none !important;
    height: 40px;
}
.form .form-control:focus
{
	background: #CCC;
	color:#000;
}
.form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #fff;
    border: none;
    background-color: #efedeb;
    background-clip: padding-box;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.form textarea.form-control {
    border: 1px solid #d6e1ee;
    padding: 5px;
    height: auto;
}
.btn-success {
  background-color: #683a0c;
  border-color: #683a0c;
}
.btn {
  border-radius: 0;
  font-size: 17px;
  padding: 0 32px;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
#competitive_edge {
  padding-top: 50px;
  padding-bottom:100px;
  background: url(../images/product_rang_bg.jpg);
  //background:#fff;
}
#competitive_edge .heading {
  text-align: center
}
#competitive_edge .heading .title 
{
  font-size: 2.125rem;
  line-height: 1.3;
  font-weight: 600;
  color: #7ac144;
}
#competitive_edge .heading img {
  width: 10%;
  height: auto;
  margin-top: 0px;
}
#competitive_edge .heading p {
  text-align: center;
  margin:6px auto;
  color: #fff;
  padding: 0;
  font-size:19px;
}
#competitive_edge .feat_box {
  margin-left:40px;
  margin-top: 50px;
}
#competitive_edge .feat_box .image {
  float: left;
  margin-right: 10px;
}
#competitive_edge .feat_box .image img {
  width: auto;
  height: 70px;
}
#competitive_edge .feat_box .desc .bdr {
  background:#7ac144;
  width: 50px;
  height: 5px;
  border-radius: 5px;
  margin-left: 80px;
}
#competitive_edge .feat_box .desc h4 {
  margin-bottom: 0px;
  margin-top: 10px;
  color:#7ac144;
  text-transform: uppercase;
  font-size: 15px;
  font-weight:600;
  letter-spacing: 1px;
}
#competitive_edge .feat_box .desc p {
  text-transform: capitalize;
  margin: 0px;
  padding: 0px;
  color: #fff;
}

.section-padding {
  padding:40px 0;
}
.mb-xl-30 {
  margin-bottom: 30px;
}
#call_to_action {
  padding: 30px 0 80px 0;
  position: relative;
 //overflow: hidden;
  background: #4f4f51;
}
#call_to_action .page_inner_title .title
{
  font-size: 26px;
  line-height: 1.3;
  font-weight: 600;
  color: #fff;
}
#call_to_action .page_inner_title .right_title
{
  font-size: 26px;
  line-height: 1.3;
  font-weight: 600;
  color: var(--color-primary);
}
#call_to_action .heading h2 {
  color: #fff;
  font-weight: 500;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: .04em;
  text-align: center;
}
#call_to_action .heading p {
  text-align: center;
  width: 48%;
  margin: 0 auto;
}

#call_to_action .paddingleftrightzero
{
  padding-left: 0px;
  padding-right: 0px;
}
#call_to_action .two-block-big {
  padding:30px 48px 0px 48px;
  margin-left: 0;
  margin-right:0px;
  min-height: 500px;
  margin-top: -80px;
}
#call_to_action .red-bgshadeblk {
  background: var(--color-primary);
}
#call_to_action .two-block-small {
  padding:30px 48px 0px 48px;
  min-height: 500px;
  background: #f2f2f2;
  background-size: auto;
  margin-left: -0px;
  margin-right: 0;
  margin-top: -80px;
  z-index: 1;
  position: relative;
}

#call_to_action .two-block-small ul {
  padding-top: 0px;
}
#call_to_action .two-block-small .ularr li {
  padding:14px 0 7px 50px;
  list-style: none;
}
#call_to_action .two-block-small ul li {
  display: block;
  margin: 0;
  padding: 10px 0;
  position: relative;
}
#call_to_action .two-block-small ul li::before {
  position: absolute;
  left: 0px;
  content: "";
  width: 32px;
  height: 32px;
  display: none;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNi4wLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB3aWR0aD0iMzJweCIgaGVpZ2h0PSIzMnB4IiB2aWV3Qm94PSIwIDAgMzIgMzIiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDMyIDMyIiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxwb2x5bGluZSBmaWxsPSJub25lIiBzdHJva2U9IiMzMjMyMzIiIHN0cm9rZS13aWR0aD0iMS41IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIHN0cm9rZS1taXRlcmxpbWl0PSIxMCIgcG9pbnRzPSINCgk4LjcsMTcuMiAxMy44LDIyLjMgMjMuMywxMi44ICIvPg0KPHBhdGggZmlsbD0ibm9uZSIgc3Ryb2tlPSIjMzIzMjMyIiBzdHJva2Utd2lkdGg9IjEuNSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiIGQ9Ig0KCU0yMywyLjdDMjAuOSwxLjYsMTguNSwxLDE2LDFDNy43LDEsMSw3LjcsMSwxNnM2LjcsMTUsMTUsMTVzMTUtNi43LDE1LTE1YzAtMy4xLTAuOS01LjktMi41LTguMyIvPg0KPC9zdmc+DQo=) no-repeat left center;
}
#call_to_action .two-block-small .ularr li::before {
  display: block;
  top: 14px;
}
#call_to_action .big_w {
  bottom: -5px;
  height: 230px
}
#call_to_action .big_w img {
  max-width: 100%;
  max-height: 100%;
  opacity: .5
}
#call_to_action .contact_form
{
  margin-top: 10px;
}
#call_to_action .contact_form .form-control {
  height: form-control-height();
  padding: 10px 15px;
  outline: 0;
  background-color: #f4f5f8;
  border: 1px solid #f4f5f8;
  color: #686a6f;
  font-size: 0.9rem;
  width: 100%;
}
#call_to_action .contact_form label
{
  color: #fff;
}
#home_about
{
	padding-top: 40px;
	padding-bottom: 40px;
}

#home_about .container
{
	padding-top: 0px;
	padding-bottom: 0px;
}
#home_about h2
{
	font-size: 39px;
}
#tile_collection {
  margin-top:70px;
  margin-bottom: 60px;
}
.listing--tiles>.listing__item {
	display: block;
	padding-bottom: 15px;
	text-align: left;
	outline: none;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent
}

.listing--tiles > .listing__item .picture {
	position: relative;
	width: 100%;
	padding-top: 60%;
	overflow: hidden;
	margin-bottom:0px;
	-webkit-transition: all ease-in-out 400ms;
	transition: all ease-in-out 400ms;
	border-radius: 20px 0px 20px 0;
	display: inline-block;

}
.listing--tiles>.listing__item .picture img, .listing--tiles>.listing__item .picture video, .listing--tiles>.listing__item .picture canvas, .listing--tiles>.listing__item .picture ng-transclude {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	border: solid 1px #b2afb0;
	border-radius: 20px 0px 20px 0;
}
.listing--tiles>.listing__item:not(:hover) .picture {
	-webkit-box-shadow: none;
	box-shadow: none
}
.picture {
  font-size: 0;
  line-height: 0;
}
.listing--tiles > .listing__item .title {
    font-size: 15px;
    text-transform: capitalize;
    font-weight: 600;
  }
 .listing--tiles > .listing__item .tile_details {
  font-size: 14px;
  margin-bottom: 10px;
  line-height: 17px;
  text-transform: capitalize;
}