/*

*/

/*
======================================
[ CSS TABLE CONTENT ]
======================================
    [Table of contents]

	1. General
		+ Text Colors
		+ Divider lines
		+ Paddings
		+ Opacity styles
		+ fonts
		+ Icon Boxes
		+ Text Boxes
		+ Buttons
		+ Opacity styles
		+ buttons

	2. Image boxes
		+ section-side-image
		+ background-imgholder
		+ image-left
		+ image-holder
		+ nodisplay-image
	
	3. Lists
		+ iconlist
		+ clientlogo-list
		+ side-nav-list
		+ category-links
		+ tags 
	
	4. Menu Backgrounds
		+ Headers
	
	5. Topbar Styles
		+ topbar
		+ toplist
	
	6. Logo
		+ logo
	
	7. Section Titles
		+ section titles
	
	8. Page Section Styles
		+ Section Styles
	
	9. Footer Styles
		+ footer logo
		+ lists
	
	
	10. Parallax Sections
	
	11. Overlay Styles
		+ Section Overlay
		+ video overlay
	
	12. Social Links
		+ social-icons-1
		+ social-icons-2
		+ social-icons-3
	
	13. Feature boxs
	
	
======================================
[ END CSS TABLE CONTENT ]
======================================
*/


/* =========== General ============= */

:root {
  --hue-color: 240;
  --scroll-thumb-color: hsl(var(--hue-color), 12%, 80%);
  --scroll-thumb-color-light: hsl(var(--hue-color), 22%, 80%);
  --color-fff: #fff;
  --color-333: #333;
  --border: hsl(var(--hue-color), 22%, 80%);
}

// Scroll Bar
::-webkit-scrollbar {
  width: 0.6rem;
  background-color: var(--scroll-bar-color);
  border-radius: 0.5rem;
}

::-webkit-scrollbar-thumb {
  background-color: var(--scroll-thumb-color);
  border-radius: 0.5rem;
  &:hover {
    background-color: var(--scroll-thumb-color-light);
  }
}

body {
	font: 14px 'Open Sans', sans-serif;
	font-weight: normal;
	font-style: normal;
	line-height: 23px;
	color: #727272;
}

/* a link Styles
 ------------------------------ */
 
a, .btn {
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
}
a:hover {
	text-decoration: none;
}
a:focus, a:hover {
	color: #101010;
}
a {
	outline: medium none !important;
	color: #727272;
}
.uppercase {
	text-transform: uppercase;
}

/* Headungs
 ------------------------------ */
 
h1, h2, h3, h4, h5, h6 {
	font-family: 'Montserrat', sans-serif;
	/*font-family: 'Roboto', sans-serif;*/
	font-weight: normal;
	color: #272727;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
	color: inherit;
}
h1 {
	font-size: 40px;
	line-height: 40px;
	margin-bottom: 20px;
	font-style: normal;
	font-weight: 300;
}
h1.less-mar-1 {
	margin-bottom: 10px;
}
h1.less-mar-2 {
	margin-bottom: 5px;
}
h2 {
	font-size: 35px;
	line-height: 35px;
	margin-bottom: 20px;
	font-style: normal;
	font-weight: 300;
}
h2.nomargin {
	margin-bottom: 0px;
}
h2.less-mar-1 {
	margin-bottom: 3px;
}
h2.less-mar-2 {
	margin-bottom: 5px;
}
h2.less-mar-3 {
	margin-bottom: 7px;
}
h2.less-mar-4 {
	margin-bottom: 9px;
}
h3 {
	font-size: 27px;
	line-height: 30px;
	margin-bottom: 18px;
	font-style: normal;
}
h3.nomargin {
	margin-bottom: 0px;
}
h3.less-mar-1 {
	margin-bottom: 3px;
}
h3.less-mar-2 {
	margin-bottom: 5px;
}
h3.less-mar-3 {
	margin-bottom: 7px;
}
h3.less-mar-4 {
	margin-bottom: 9px;
}
h4 {
	font-size: 22px;
	line-height: 25px;
	margin-bottom: 18px;
	font-style: normal;
}
h4.nomargin {
	margin-bottom: 0px;
}
h4.less-mar-1 {
	margin-bottom: 3px;
}
h4.less-mar-2 {
	margin-bottom: 5px;
}
h4.less-mar-3 {
	margin-bottom: 7px;
}
h4.less-mar-4 {
	margin-bottom: 9px;
}
h5 {
	font-size: 18px;
	line-height: 23px;
	margin-bottom: 16px;
	font-style: normal;
}
h5.nomargin {
	margin-bottom: 0px;
}
h5.less-mar-1 {
	margin-bottom: 3px;
}
h5.less-mar-2 {
	margin-bottom: 5px;
}
h5.less-mar-3 {
	margin-bottom: 7px;
}
h5.less-mar-4 {
	margin-bottom: 9px;
}
h6 {
	font-size: 16px;
	line-height: 21px;
	margin-bottom: 14px;
	font-style: normal;
}
h6.nomargin {
	margin-bottom: 0px;
}
h6.less-mar-1 {
	margin-bottom: 3px;
}
h6.less-mar-2 {
	margin-bottom: 5px;
}
h6.less-mar-3 {
	margin-bottom: 7px;
}
h6.less-mar-4 {
	margin-bottom: 9px;
}
.nopadding {
	padding: 0 !important;
	margin: 0 !important;
}
.h1, .h2, .h3, h1, h2, h3, h4 {
	margin-top: 0;
}
ul {
	list-style-type: none;
}

/*=============== Text Colors ============= */

.text-white {
	color: #fff;
}
.text-dark {
	color: #242424;
}
.text-light {
	color: #acacac;
}
.text-primary {
	color: #04ce47;
}
.text-gray {
	color: #727272;
}
.text-gray-2 {
	color: #a1a1a1;
}
a:hover.text-hover-primary {
	color: #04ce47;
}
/*=============== Margins ============= */

.margin-bottom {
	margin-bottom: -55px;
}
.margin-bottom-2 {
    margin-bottom: 20px;
}
.margin-bottom-3 {
    margin-bottom: 30px;
}
.margin-bottom-4 {
    margin-bottom: 40px;
}
.margin-bottom-5 {
    margin-bottom: 50px;
}
.margin-top {
	margin-top: 0px;
}
.margin-top-1 {
    float: left;
    margin-top: 10px;
    width: 100%;
}
.margin-top-2 {
    float: left;
    margin-top: 20px;
    width: 100%;
}
.margin-top-3 {
    float: left;
    margin-top: 30px;
    width: 100%;
}
.margin-top-4 {
    float: left;
    margin-top: 40px;
    width: 100%;
}
.margin-top-5 {
    float: left;
    margin-top: 50px;
    width: 100%;
}
.margin-top-6 {
    float: left;
    margin-top: 60px;
    width: 100%;
}
.margin-top-7 {
    float: left;
    margin-top: 70px;
    width: 100%;
}
.col-divider-margin {
	width: 100%;
	float: left;
	margin-top: 60px;
}
.col-divider-margin-1 {
	width: 100%;
	float: left;
	margin-top: 10px;
}
.col-divider-margin-2 {
	width: 100%;
	float: left;
	margin-top: 20px;
}
.col-divider-margin-3 {
	width: 100%;
	float: left;
	margin-top: 30px;
}
.col-divider-margin-4 {
	width: 100%;
	float: left;
	margin-top: 40px;
}
.col-divider-margin-5 {
	width: 100%;
	float: left;
	margin-top: 50px;
}
.col-divider-margin-6 {
	width: 100%;
	float: left;
	margin-top: 60px;
}
.nobottom-margin {
	margin-bottom: 0px;
}

.margin-left-1 {
    margin-left: 10px;
}
.margin-left-2 {
    margin-left: 20px;
}
.margin-left-3 {
    margin-left: 30px;
}
.margin-left-4 {
    margin-left: 40px;
}
.margin-left-5 {
    margin-left: 50px;
}
.margin-left-6 {
    margin-left: 60px;
}
.margin-left-7 {
    margin-left: 70px;
}
.colmargin {
	margin: 0 0 0 0;
}
.col-centered {
	float: none;
	margin: 0 auto;
}

/* font weight
 ------------------------------ */
.f-weight-1 {
	margin-bottom: 0px;
}

/*=============== Divider lines ============= */
 .divider-line {
	float: left;
	width: 100%;
}
.divider-line.dashed {
	border-bottom: 1px dashed;
}
 .divider-line.solid {
	border-bottom: 1px solid;
}
.divider-line.dark {
	border-bottom-color:#444444;
}
.divider-line.dark-2 {
	border-bottom-color:#343333;
}
.divider-line.white {
	border-bottom-color:#fff;
}
.divider-line.light {
	border-bottom-color:#f1f1f1;
}
.divider-line.light-2 {
	border-bottom-color:#ebebeb;
}
 .divider-line.top-padding {
	padding-top: 20px;
}
 .divider-line.bottom-margin {
	margin-bottom: 20px;
}
.divider-line.margin {
	margin: 20px 0;
}
.divider-line.margin-2 {
	margin: 40px 0;
}
/*=============== Paddings ============= */
 
.no-top-padding {
	padding-top: 0;
}

/* padding top
 ------------------------------ */
.padding-top-1 {
	padding-top: 10px;
}
.padding-top-2 {
	padding-top: 20px;
}
.padding-top-3 {
	padding-top: 30px;
}
.padding-top-4 {
	padding-top: 40px;
}
.padding-top-5 {
	padding-top: 50px;
}
.padding-top-6 {
	padding-top: 60px;
}

/* left padding
 ------------------------------ */
 
.padding-left-1 {
	padding-left: 10px;
}
.padding-left-2 {
	padding-left: 20px;
}
.padding-left-3 {
	padding-left: 30px;
}
.padding-left-4 {
	padding-left: 40px;
}
.padding-left-5 {
	padding-left: 50px;
}
.padding-left-6 {
	padding-left: 60px;
}
.padding-left-7 {
	padding-left: 70px;
}
.padding-left-8 {
	padding-left: 80px;
}

/* right padding
 ------------------------------ */
 
.padding-right-1 {
	padding-right: 10px;
}
.padding-right-2 {
	padding-right: 20px;
}
.padding-right-3 {
	padding-right: 30px;
}
.padding-right-4 {
	padding-right: 40px;
}
.padding-right-5 {
	padding-right: 50px;
}
.padding-right-6 {
	padding-right: 60px;
}
.padding-right-7 {
	padding-right: 70px;
}
.padding-right-8 {
	padding-right: 80px;
}
.no-padding-top {
	padding-top: 0px;
}

/*=============== Opacity styles ============= */
.opacity-1 {
	opacity:0.1;
}
.opacity-2 {
	opacity:0.1;
}
.opacity-3 {
	opacity:0.3;
}
.opacity-4 {
	opacity:0.4;
}
.opacity-5 {
	opacity:0.5;
}
.opacity-6 {
	opacity:0.6;
}
.opacity-7 {
	opacity:0.7;
}
.opacity-8 {
	opacity:0.8;
}

/*=============== fonts ============= */

.droid-serif {
	font-family: 'Droid Serif', serif;
}
.ubuntu {
	font-family: 'Ubuntu', sans-serif;
}
.oswald {
	font-family: 'Oswald', sans-serif;
}
.muli {
	font-family: 'Muli', sans-serif;
}
.great-vibes {
	font-family: 'Great Vibes', cursive;
}
.old-standardtt {
	font-family: 'Old Standard TT', serif;
}
.dosis {
	font-family: 'Dosis', sans-serif;
}
.roboto-slab {
	font-family: 'Roboto Slab', serif;
}
.gfs-didot {
	font-family: 'GFS Didot', serif;
}
.raleway {
	font-family: "Raleway", sans-serif;
}
.gloria-hallelujah {
	font-family: 'Gloria Hallelujah', cursive;
}
.love-ya-like-a-sister {
	font-family: 'Love Ya Like A Sister', cursive;
}
.michroma {
	font-family: 'Michroma', sans-serif;
}
.sacramento {
	font-family: 'Sacramento', cursive;
}
.yesteryear {
	font-family: 'Yesteryear', cursive;
}
.playfair {
	font-family: 'Playfair Display', serif;
}
.jockey-one {
	font-family: 'Jockey One', sans-serif;
}
.pompiere {
	font-family: 'Pompiere', cursive;
}
.raleway {
	font-family: 'Raleway', sans-serif;
}
.six-caps {
	font-family: 'Six Caps', sans-serif;
}
.cinzel-decorative {
	font-family: 'Cinzel Decorative', cursive;
}

.montserrat {
	font-family: 'Montserrat', sans-serif;
}
.libre-baskerville {
	font-family: 'Libre Baskerville', serif;
}



/* line height
 ------------------------------ */
 .line-height-1{
	 line-height:18px;
	}
 .line-height-2{
	 line-height:20px;
	}
 .line-height-3{
	 line-height:30px;
	}
	
 .line-height-4{
	 line-height:40px;
	}
	
 .line-height-5{
	 line-height:50px;
	}
	
 .line-height-6{
	 line-height:60px;
	}


/* letter spacing
 ------------------------------ */
 .lspace-sm{
	letter-spacing:5px;
	}
.lspace-1{
	letter-spacing:10px;
	}
.lspace-2{
	letter-spacing:20px;
	}
.lspace-3{
	letter-spacing:30px;
	}
.lspace-4{
	letter-spacing:40px;
	}
.lspace-5{
	letter-spacing:50px;
	}
	
	
/* font weight styles
 ------------------------------ */
 
.font-weight-1 {
	font-weight: 100;
}
.font-weight-2 {
	font-weight: 200;
}
.font-weight-3 {
	font-weight: 300;
}
.font-weight-4 {
	font-weight: 400;
}
.font-weight-5 {
	font-weight: 500;
}
.font-weight-6 {
	font-weight: 600;
}
.font-weight-7 {
	font-weight: 700;
}
.font-weight-8 {
	font-weight: 800;
}
.font-weight-b {
	font-weight: bold;
}
/*=============== Columns without padding ============= */
.no-gutter > [class*='col-'] {
padding-right:0;
padding-left:0;
}

/*=============== site main structure ============= */

.site-wrapper {
    width: 100%;
    margin: 0px auto;
    background-color: #FFF;

}
.wrapper-boxed {
    margin: auto;
    background-color: #FFF;
}

/*=============== image Boxes ============= */

.imgbox-dxlarge, .imgbox-xlarge, .imgbox-large, .imgbox-xmedium, .imgbox-medium, .imgbox-smedium, .imgbox-small, .imgbox-tiny, .imgbox-xtiny {
	padding: 0px;
	margin: 0 auto;
	text-align: center;
	transition: all 0.3s ease-out 0s;
}
.imgbox-dxlarge {
	width: 300px;
	height: 300px;

}
.imgbox-dxlarge-2 {
	width: 200px;
	height: 200px;

}
.imgbox-xlarge {
	width: 135px;
	height: 135px;
}
.imgbox-large {
	width: 120px;
	height: 120px;
}
.imgbox-xmedium {
	width: 110px;
	height: 110px;
}
.imgbox-medium {
	width: 100px;
	height: 100px;
}
.imgbox-smedium {
	width: 90px;
	height: 90px;
}
.imgbox-small {
	width: 80px;
	height: 80px;
}
.imgbox-tiny {
	width: 70px;
	height: 70px;
}
.imgbox-xtiny {
	width: 60px;
	height: 60px;
}

/* icon rounded
 ------------------------------ */
 
.imgbox-dxlarge.round, .imgbox-dxlarge-2.round, .imgbox-xlarge.round, .imgbox-large.round, .imgbox-xmedium.round, .imgbox-medium.round, .imgbox-smedium.round, .imgbox-small.round, .imgbox-tiny.round, .imgbox-xtiny.round {
	border-radius: 100%;
}
/* imgboxes alignments
 ------------------------------ */
 
.imgbox-dxlarge.center, .imgbox-dxlarge-2.center, .imgbox-xlarge.center, .imgbox-large.center, .imgbox-xmedium.center, .imgbox-medium.center, .imgbox-smedium.center, .imgbox-small.center, .imgbox-tiny.center, .imgbox-xtiny.center {
	margin: 0 auto;
}
.imgbox-dxlarge.left, .imgbox-dxlarge-2.left, .imgbox-xlarge.left, .imgbox-large.left, .imgbox-xmedium.left, .imgbox-medium.left, .imgbox-smedium.left, .imgbox-small.left, .imgbox-tiny.left, .imgbox-xtiny.left {
	float: left;
	margin: 0px 20px 0px 0px;
}
.imgbox-dxlarge.right, .imgbox-dxlarge-2.right, .imgbox-xlarge.right, .imgbox-large.right, .imgbox-xmedium.right, .imgbox-medium.right, .imgbox-smedium.right, .imgbox-small.right, .imgbox-tiny.right, .imgbox-xtiny.right {
	float: right;
	margin: 0px 0px 0px 20px;
}

/* imgboxe background colors
 ------------------------------ */	
.imgbox-dxlarge.dark, .imgbox-dxlarge-2.dark, .imgbox-xlarge.dark, .imgbox-large.dark, .imgbox-xmedium.dark, .imgbox-medium.dark, .imgbox-smedium.dark, .imgbox-small.dark, .imgbox-tiny.dark, .imgbox-xtiny.dark {
	color: #fff;
	background-color: #101010;
}
.imgbox-dxlarge.white, .imgbox-dxlarge-2.white, .imgbox-xlarge.white, .imgbox-large.white, .imgbox-xmedium.white, .imgbox-medium.white, .imgbox-smedium.white, .imgbox-small.white, .imgbox-tiny.white, .imgbox-xtiny.white {
	color: #242424;
	background-color: #fff;
}
.imgbox-dxlarge.gray, .imgbox-dxlarge-2.gray, .imgbox-xlarge.gray, .imgbox-large.gray, .imgbox-xmedium.gray, .imgbox-medium.gray, .imgbox-smedium.gray, .imgbox-small.gray, .imgbox-tiny.gray, .imgbox-xtiny.gray {
	color: #fff;
	background-color: #474747;
}

/* imgboxs with stroke
 ------------------------------ */	
.imgbox-dxlarge.outline-gray, .imgbox-dxlarge-2.outline-gray, .imgbox-xlarge.outline-gray, .imgbox-large.outline-gray, .imgbox-xmedium.outline-gray, .imgbox-medium.outline-gray, .imgbox-smedium.outline-gray, .imgbox-small.outline-gray, .imgbox-tiny.outline-gray, .imgbox-xtiny.outline-gray {
	color: #fff;
	background-color: none;
	border: 1px solid #727272;
}
.imgbox-dxlarge.outline-gray-2, .imgbox-dxlarge-2.outline-gray-2, .imgbox-xlarge.outline-gray-2, .imgbox-large.outline-gray-2, .imgbox-xmedium.outline-gray-2, .imgbox-medium.outline-gray-2, .imgbox-smedium.outline-gray-2, .imgbox-small.outline-gray-2, .imgbox-tiny.outline-gray-2, .imgbox-xtiny.outline-gray-2 {
	color: #242424;
	background-color: none;
	border: 1px solid #e4e4e4;
}
.imgbox-dxlarge.outline-white, .imgbox-dxlarge-2.outline-white, .imgbox-xlarge.outline-white, .imgbox-large.outline-white, .imgbox-xmedium.outline-white, .imgbox-medium.outline-white, .imgbox-smedium.outline-white, .imgbox-small.outline-white, .imgbox-tiny.outline-white, .imgbox-xtiny.outline-white {
	color: #fff;
	background-color: none;
	border: 1px solid #fff;
}
.imgbox-dxlarge.outline-dark, .imgbox-dxlarge-2.outline-dark, .imgbox-xlarge.outline-dark, .imgbox-large.outline-dark, .imgbox-xmedium.outline-dark, .imgbox-medium.outline-dark, .imgbox-smedium.outline-dark, .imgbox-small.outline-dark, .imgbox-tiny.outline-dark, .imgbox-xtiny.outline-dark {
	color: #161616;
	background-color: none;
	border: 1px solid #161616;
}
/*=============== Icon Boxes ============= */

.iconbox-dxlarge, .iconbox-xlarge, .iconbox-large, .iconbox-xmedium, .iconbox-medium, .iconbox-smedium, .iconbox-small, .iconbox-tiny, .iconbox-xtiny {
	padding: 0px;
	margin: 0 auto;
	text-align: center;
	transition: all 0.3s ease-out 0s;
}
.iconbox-dxlarge {
	width: 200px;
	height: 200px;
	font-size: 46px;
	color: #242424;
	border: none;
	line-height: 135px;
}
.iconbox-xlarge {
	width: 135px;
	height: 135px;
	font-size: 46px;
	color: #242424;
	line-height: 135px;
}
.iconbox-large {
	width: 120px;
	height: 120px;
	font-size: 46px;
	color: #242424;
	line-height: 114px;
}
.iconbox-xmedium {
	width: 110px;
	height: 110px;
	font-size: 38px;
	color: #242424;
	line-height: 106px;
}
.iconbox-medium {
	width: 100px;
	height: 100px;
	font-size: 32px;
	color: #242424;
	line-height: 100px;
}
.iconbox-smedium {
	width: 90px;
	height: 90px;
	font-size: 26px;
	color: #242424;
	line-height: 90px;
}
.iconbox-small {
	width: 80px;
	height: 80px;
	font-size: 26px;
	color: #242424;
	line-height: 80px;
}
.iconbox-tiny {
	width: 70px;
	height: 70px;
	font-size: 26px;
	color: #242424;
	line-height: 74px;
}
.iconbox-xtiny {
	width: 60px;
	height: 60px;
	font-size: 18px;
	color: #242424;
	line-height: 60px;
}
.digit {
	width: 32px;
	height: 32px;
	text-align: center;
	font-size: 14px;
	color: #fff;
	left: 115px;
	top: 115px;
	line-height: 36px;
	border-radius: 100%;
	background-color: #fd602c;
	transition: all 0.3s ease-out 0s;
}
.iconbox-xlarge.no-lineheight {
	line-height: 0;
}

/* icon rounded
 ------------------------------ */
 
.iconbox-dxlarge.round, .iconbox-xlarge.round, .iconbox-large.round, .iconbox-xmedium.round, .iconbox-medium.round, .iconbox-smedium.round, .iconbox-small.round, .iconbox-tiny.round, .iconbox-xtiny.round {
	border-radius: 100%;
}
/* iconboxes alignments
 ------------------------------ */
 
.iconbox-dxlarge.center, .iconbox-xlarge.center, .iconbox-large.center, .iconbox-xmedium.center, .iconbox-medium.center, .iconbox-smedium.center, .iconbox-small.center, .iconbox-tiny.center, .iconbox-xtiny.center {
	margin: 0 auto;
}
.iconbox-dxlarge.left, .iconbox-xlarge.left, .iconbox-large.left, .iconbox-xmedium.left, .iconbox-medium.left, .iconbox-smedium.left, .iconbox-small.left, .iconbox-tiny.left, .iconbox-xtiny.left {
	float: left;
	margin: 0px 20px 0px 0px;
}
.iconbox-dxlarge.right, .iconbox-xlarge.right, .iconbox-large.right, .iconbox-xmedium.right, .iconbox-medium.right, .iconbox-smedium.right, .iconbox-small.right, .iconbox-tiny.right, .iconbox-xtiny.right {
	float: right;
	margin: 0px 0px 0px 20px;
}

/* iconboxe background colors
 ------------------------------ */	
.iconbox-dxlarge.dark, .iconbox-xlarge.dark, .iconbox-large.dark, .iconbox-xmedium.dark, .iconbox-medium.dark, .iconbox-smedium.dark, .iconbox-small.dark, .iconbox-tiny.dark, .iconbox-xtiny.dark {
	color: #fff;
	background-color: #101010;
}
.iconbox-dxlarge.white, .iconbox-xlarge.white, .iconbox-large.white, .iconbox-xmedium.white, .iconbox-medium.white, .iconbox-smedium.white, .iconbox-small.white, .iconbox-tiny.white, .iconbox-xtiny.white {
	color: #242424;
	background-color: #fff;
}
.iconbox-dxlarge.gray, .iconbox-xlarge.gray, .iconbox-large.gray, .iconbox-xmedium.gray, .iconbox-medium.gray, .iconbox-smedium.gray, .iconbox-small.gray, .iconbox-tiny.gray, .iconbox-xtiny.gray {
	color: #fff;
	background-color: #474747;
}

/* iconboxs with stroke
 ------------------------------ */	
.iconbox-dxlarge.outline-gray, .iconbox-xlarge.outline-gray, .iconbox-large.outline-gray, .iconbox-xmedium.outline-gray, .iconbox-medium.outline-gray, .iconbox-smedium.outline-gray, .iconbox-small.outline-gray, .iconbox-tiny.outline-gray, .iconbox-xtiny.outline-gray {
	color: #fff;
	background-color: none;
	border: 1px solid #727272;
}
.iconbox-dxlarge.outline-gray-2, .iconbox-xlarge.outline-gray-2, .iconbox-large.outline-gray-2, .iconbox-xmedium.outline-gray-2, .iconbox-medium.outline-gray-2, .iconbox-smedium.outline-gray-2, .iconbox-small.outline-gray-2, .iconbox-tiny.outline-gray-2, .iconbox-xtiny.outline-gray-2 {
	color: #242424;
	background-color: none;
	border: 1px solid #e4e4e4;
}
.iconbox-dxlarge.outline-white, .iconbox-xlarge.outline-white, .iconbox-large.outline-white, .iconbox-xmedium.outline-white, .iconbox-medium.outline-white, .iconbox-smedium.outline-white, .iconbox-small.outline-white, .iconbox-tiny.outline-white, .iconbox-xtiny.outline-white {
	color: #fff;
	background-color: none;
	border: 1px solid #fff;
}
.iconbox-dxlarge.outline-dark, .iconbox-xlarge.outline-dark, .iconbox-large.outline-dark, .iconbox-xmedium.outline-dark, .iconbox-medium.outline-dark, .iconbox-smedium.outline-dark, .iconbox-small.outline-dark, .iconbox-tiny.outline-dark, .iconbox-xtiny.outline-dark {
	color: #161616;
	background-color: none;
	border: 1px solid #161616;
}

/* Icons Plain
 ------------------------------ */	
 
.icon-plain-large {
	font-size: 80px;
	color: #242424;
	transition: all 0.3s ease-out 0s;
}
.icon-plain-medium {
	font-size: 60px;
	color: #242424;
	transition: all 0.3s ease-out 0s;
}
.icon-plain-small {
	font-size: 40px;
	color: #242424;
	transition: all 0.3s ease-out 0s;
}
.icon-plain-msmall {
	font-size: 32px;
	color: #242424;
	transition: all 0.3s ease-out 0s;
}
.icon-plain-tiny {
	font-size: 20px;
	color: #242424;
	transition: all 0.3s ease-out 0s;
}
.icon-plain-small.rightline {
	border-right: 1px solid #3F3F3F;
}
.icon-plain-medium.rightline {
	margin: 0px 20px 50px 0px;
	border-right: 1px solid #FFC153;
}
.icon-plain-small.dark {
	color: #242424;
}

/* plain icon alignments
 ------------------------------ */
 
.icon-plain-large.center, .icon-plain-medium.center, .icon-plain-small.center, .icon-plain-msmall.center, .icon-plain-tiny.center {
	margin: 0 auto;
}
.icon-plain-large.left, .icon-plain-medium.left, .icon-plain-small.left, .icon-plain-msmall.left, .icon-plain-tiny.left {
	float: left;
	margin: 0px 20px 0px 0px;
}
.icon-plain-large.right, .icon-plain-medium.right, .icon-plain-small.right, .icon-plain-msmall.right, .icon-plain-tiny.right {
	float: right;
	margin: 0px 0px 0px 20px;
}

/* plain icon colors
 ------------------------------ */
 
.icon-plain-large.dark, .icon-plain-medium.dark, .icon-plain-small.dark, .icon-plain-msmall.dark, .icon-plain-tiny.dark {
	color: #242424;
}
.icon-plain-large.white, .icon-plain-medium.white, .icon-plain-small.white, .icon-plain-msmall.white, .icon-plain-tiny.white {
	color: #fff;
}
.icon-plain-large.green, .icon-plain-medium.green, .icon-plain-small.green, .icon-plain-msmall.green, .icon-plain-tiny.green {
	color: #fd602c;
}
.icon-plain-large.gray, .icon-plain-medium.gray, .icon-plain-small.gray, .icon-plain-msmall.gray, .icon-plain-tiny.gray {
	color: #727272;
}

/*============ Text Boxes ============ */
	
.text-box-right {
	display: block;
	padding: 0px 0px 0px 99px;
	margin: 0px;
	text-align: left;
}
.text-box-right.less-padding {
	padding: 0px 0px 0px 65px;
}
.text-box-left {
	display: block;
	padding: 0px 90px 0px 0;
	margin: 0px;
	text-align: right;
}
.item-holder {
	width: 100%;
	padding: 0px;
	margin: 0px;
}
.text-box {
	width: 100%;
	float: left;
}
.text-box.white {
	background-color: #fff;
}
.text-box.primary {
	background-color: #04ce47;
}
.text-box.white-transparent-1 {
	background-color:rgba(255, 255, 255, 0.9);
}
.text-box.light {
	background-color: #f5f5f5;
}
.text-box.dark {
	background-color: #242424;
}
.text-box.xdark {
	background-color: #000;
}
.text-box.border-light{
	border: 1px solid #ececec;
}
/* text boxes with borders
 ------------------------------ */
.text-box-right.border, .text-box-left.border, .item-holder.border, .text-box-inner.border, .text-box.border {
	border: 1px solid #f1f1f1;
}
.text-box-right.border-top, .text-box-left.border-top, .item-holder.border-top, .text-box-inner.border-top, .text-box.border-top {
	border-top: 1px solid #f1f1f1;
}
.text-box-right.border-bottom, .text-box-left.border-bottom, .item-holder.border-bottom, .text-box-inner.border-bottom, .text-box.border-bottom {
	border-bottom: 1px solid #f1f1f1;
}
.text-box-right.border-left, .text-box-left.border-left, .item-holder.border-left, .text-box-inner.border-left, .text-box.border-left {
	border-left: 1px solid #f1f1f1;
}
.text-box-right.border-right, .text-box-left.border-right, .item-holder.border-right, .text-box-inner.border-right, .text-box.border-right {
	border-right: 1px solid #f1f1f1;
}

/* text boxe padding
 ------------------------------ */
 
 .text-box.sbox-padd-left {
	padding-left:0px;
}

.text-box.padding-1 {
	padding: 10px;
}
.text-box.padding-2 {
	padding: 20px;
}
.text-box.padding-3 {
	padding: 30px;
}
.text-box.padding-4 {
	padding: 40px;
}
.text-box.padding-5 {
	padding: 50px;
}
.text-box.padding-6 {
	padding: 60px;
}
.text-box.padding-7 {
	padding: 70px;
}
.text-box.padding-8 {
	padding: 80px;
}
.text-box.padding-9 {
	padding: 90px;
}

/* text boxes margin and paddings
 ------------------------------ */
 
 /* left box
 ------------------------------ */
 
.item-holder.marginbottom {
	margin: 0 0 40px 0;
}
.text-box-left.more-padding-1 {
	padding: 0px 120px 0px 0px;
}
.text-box-left.more-padding-2 {
	padding: 0px 150px 0px 0px;
}
.text-box-left.less-padding-1 {
	padding: 0px 70px 0px 0;
}
.text-box-left.less-padding-2 {
	padding: 0px 50px 0px 0;
}
/* right box
 ------------------------------ */
 
.text-box-right.more-padding-1 {
	padding: 0px 0px 0px 120px;
}
.text-box-right.more-padding-2 {
	padding: 0px 0px 0px 140px;
}
.text-box-right.more-padding-3 {
	padding: 0px 0px 0px 160px;
}
.text-box-right.more-padding-4 {
	padding: 0px 0px 0px 170px;
}
.text-box-right.less-padding-1 {
	padding: 0px 0px 0px 70px;
}
.text-box-right.less-padding-2 {
	padding: 0px 0px 0px 50px;
}
.text-box-right.less-padding-3 {
	padding: 0px 0px 0px 40px;
}
.text-box-right.less-padding-4 {
	padding: 0px 0px 0px 80px;
}
/*============ Buttons ============ */

a.read-more {
	color: #04ce47;
}
a.read-more:hover {
	color: #101010;
}
a.read-more.white {
	color: #fff;
}
a.read-more.white:hover {
	color: #101010;
}
a.read-more.dark {
	color: #101010;
}
a.read-more.dark:hover {
	color: #04ce47;
}
a.read-more.dark-2 {
	color: #101010;
}
a.read-more.dark-2:hover {
	color: #727272;
}
a.read-more.primary {
	color: #04ce47;
}
a.read-more.primary:hover {
	color: #101010;
}

/* button styles
 ------------------------------ */
 
.btn {
	padding: 10px 36px;
	margin: 0px;
	box-shadow: none;
	border-radius: 0;
}
.btn.btn-large {
	padding: 15px 60px;
}
.btn.btn-medium {
	padding: 10px 30px;
}
.btn.btn-small {
	padding: 8px 18px;
}
.btn.btn-small-2 {
	padding: 4px 18px;
}
.btn.btn-fullwidth {
	width:100%;
}
.btn.btn-half-fullwidth {
	width:50%;
}
/* button radius
 ------------------------------ */ 
.btn.btn-xround {
	border-radius: 20px;
}
.btn.btn-xround-2 {
	border-radius: 30px;
}
.btn.btn-round {
	border-radius: 5px;
}
.btn.top-margin {
	margin-top: 20px;
}

/* button right margins
 ------------------------------ */ 
.btn.btn-mar-right-1 {
	margin-right:10px
}
.btn.btn-mar-right-2 {
	margin-right:20px
}
.btn.btn-mar-right-3 {
	margin-right:30px
}
.btn.btn-mar-right-4 {
	margin-right:40px
}
.btn.btn-mar-right-5 {
	margin-right:50px
}
/* button left margins
 ------------------------------ */ 
.btn.btn-mar-left-1 {
	margin-left:10px
}
.btn.btn-mar-left-2 {
	margin-left:20px
}
.btn.btn-mar-left-3 {
	margin-left:30px
}
.btn.btn-mar-left-4 {
	margin-left:40px
}
.btn.btn-mar-left-5 {
	margin-left:50px
}


/* button background colors
 ------------------------------ */

/* button white
 ------------------------------ */
.btn.btn-white {
	color: #101010;
	background-color: #fff;
}
.btn.btn-white:hover {
	color: #fff;
	background-color: #101010;
}
/* button white transparent
 ------------------------------ */
.btn.btn-white-tr {
	color: #101010;
	background-color: rgba(255, 255, 255, 0.6);
}
.btn.btn-white-tr:hover {
	color: #101010;
	background-color: #fff;
}

/* button dark
 ------------------------------ */
.btn.btn-dark {
	color: #fff;
	background-color: #101010;
}
.btn.btn-dark:hover {
	color: #fff;
	background-color: #3e3e3e;
}
/* button dark-2
 ------------------------------ */
.btn.btn-dark-2 {
	color: #fff;
	background-color: #161616;
}
.btn.btn-dark-2:hover {
	color: #161616;
	background-color: #fff;
}
/* button dark-3
 ------------------------------ */
.btn.btn-dark-3 {
	color: #727272;
	background-color: #101010;
}
.btn.btn-dark-3:hover {
	color: #727272;
	background-color: #242424;
}
/* button light
 ------------------------------ */
.btn.btn-light {
	color: #101010;
	background-color: #f5f5f5;
}
.btn.btn-light:hover {
	color: #727272;
	background-color: #101010;
}
/* button golden yellow
 ------------------------------ */
.btn.btn-prim {
	color: #fff;
	background-color: #04ce47;
}
.btn.btn-prim:hover {
	color: #fff;
	background-color: #101010;
}

.btn.text-dark {
	color: #101010;
}
/* button with border
 ------------------------------ */
.btn.btn-border {
	color: #242424;
	border: 2px solid;
}
.btn.btn-border.less-bor {
	border: 1px solid;
}
.btn.btn-border.border-1x {
	border: 1px solid;
}
.btn.btn-border.border-2x {
	border: 2px solid;
}
.btn.btn-border.border-3x {
	border: 3px solid;
}
.btn.btn-border.border-4x {
	border: 4px solid;
}



/* button border white
 ------------------------------ */
.btn.btn-border.white {
	color: #fff;
	border-color:#fff;
}
.btn.btn-border:hover.white {
	color:#242424;
	background-color:#fff;
	border-color:#fff;
}
/* button border dark
 ------------------------------ */
.btn.btn-border.dark {
	border-color:#101010;
}
.btn.btn-border:hover.dark {
	color:#fff;
	background-color:#101010;
	border-color:#101010;
}

/* button border dark
 ------------------------------ */
.btn.btn-border.dark-2 {
	color:#fff;
	border-color:#545454;
}
.btn.btn-border:hover.dark-2 {
	color:#101010;
	background-color:#fff;
	border-color:#fff;
}

/* button border light
 ------------------------------ */
.btn.btn-border.light {
	border-color:#e4e4e4;
}
.btn.btn-border:hover.light {
	color:#fff;
	background-color:#101010;
	border-color:#101010;
}

/* button border extra light
 ------------------------------ */
.btn.btn-border.xlight {
	border-color:#f5f5f5;
}
.btn.btn-border:hover.xlight {
	color:#727272;
	background-color:#101010;
	border-color:#101010;
}

/* button border orange-2
 ------------------------------ */
.btn.btn-border.prim {
	color:#04ce47;
	border-color:#04ce47;
}
.btn.btn-border:hover.prim {
	color:#fff;
	background-color:#04ce47;
	border-color:#04ce47;
}

/* button border gray
 ------------------------------ */
.btn.btn-border.gray {
	color:#fff;
	border-color:#727272;
}
.btn.btn-border:hover.gray {
	color:#fff;
	background-color:#5c5b5b;
	border-color:#5c5b5b;
}

/* button border gray-2
 ------------------------------ */
.btn.btn-border.gray-2 {
	color:#101010;
	border-color:#727272;
}
.btn.btn-border:hover.gray-2 {
	color:#fff;
	background-color:#5c5b5b;
	border-color:#5c5b5b;
}

/* button border xdark
 ------------------------------ */
.btn.btn-border.xdark {
	color:#161616;
	border-color:#161616;
}
.btn.btn-border:hover.xdark {
	color:#fff;
	background-color:#161616;
	border-color:#161616;
}

/* button border white on hover golden yellow
 ------------------------------ */
.btn.btn-border.white.gyellow {
	color:#fff;
	border-color:#fff;
}
.btn.btn-border:hover.white.gyellow {
	color:#fff;
	background-color:#04ce47;
	border-color:#04ce47;
}

/* Appstore buttons
 ------------------------------ */ 

.btn.appstore {
	width: 200px;
	padding: 10px 25px;
	margin: 0px;
	text-align: left;
}
.btn.appstore.right-margin {
	margin-right: 10px;
}
.btn.appstore.gyellow {
	background-color: #04ce47;
}
.btn.appstore span {
	margin: 0px;
	float: left;
	padding: 0;
	text-align: left;
}
.btn.appstore span i {
	font-size: 40px;
	color: #fff;
	padding: 0 20px 0 0;
}
.btn.appstore p {
	font-size: 12px;
	display: block;
	margin: 0;
	padding: 0 25px 0 20px;
	text-align: left;
}
.btn.appstore .big {
	margin: 0px;
	font-size: 18px;
	padding: 0;
}
.btn.appstore.gyellow:hover {
	background-color: #fff;
}
.btn.appstore.gyellow:hover p, .btn.appstore.gyellow:hover .big, .btn.appstore.gyellow:hover span i {
	color: #101010;
}
/* Appstore button white
 ------------------------------ */
.btn.appstore.white {
	background-color: #fff;
}
.btn.appstore.white span i {
	font-size: 40px;
	color: #101010;
	padding: 0 20px 0 0;
}
.btn.appstore.white:hover {
	background-color: #04ce47;
}
.btn.appstore.white:hover p, .btn.appstore.white:hover .big, .btn.appstore.white:hover span i {
	color: #fff;
}


/*============ Image Boxes ============ */

.section-side-image {
	position: relative;
	padding: 0px;
	margin: 0px;
}
.section-side-image .img-holder {
	overflow: hidden;
	height: 100%;
	padding: 0px;
	top: 0px;
	position: absolute;
}
.background-imgholder.top-padd {
	padding-top: 80px;
}
.section-side-image .text-inner {
	padding: 120px 120px 120px 0;
}
.section-side-image .text-inner-2 {
	padding: 80px;
}
.section-side-image .text-inner-3 {
	padding: 80px 80px 0px 80px;
}
.section-side-image .text-inner.two {
	padding: 0px 80px 0px 0;
}
.section-side-image .text-inner-4 {
	padding: 0 0 0 0;
}
.section-side-image .text-inner-5 {
	padding: 120px 120px 120px 0;
}
.section-side-image .text-inner-6 {
	padding: 110px;
}
.background-imgholder {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	z-index: 0;
	background-size: cover !important;
	background-position: 50% 50% !important;
}

/* side image 2
 ------------------------------ */
.section-side-image-2 {
	position: relative;
	padding: 0px;
	margin: 0px;
}
.section-side-image-2 .img-holder {
	overflow: hidden;
	height: 100%;
	padding: 0px;
	top: 0px;
	position: absolute;
}
.section-side-image-2 .background-imgholder-2.top-padd {
	padding-top: 80px;
}
.section-side-image-2 .text-inner.two {
	padding: 0px 80px 0px 0;
}
.section-side-image-2 .background-imgholder-2 {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	z-index: 0;
	background-size: cover !important;
	background-position: 50% 50% !important;
}
.image-holder {
	width: 100%;
	float: left;
}
.image-holder.less-width-1 {
    width: 80%;
}
.image-holder.less-width-2 {
    width: 75%;
}
.image-holder.less-width-3 {
    width: 70%;
}
.image-left {
    color: #fff;
    float: left;
    margin: 0;
    padding: 0 20px 0 0;
    transition: all 0.3s ease-out 0s;
}
.img-align-left {
	float: left;
	margin-right: 20px;
	margin-bottom: 20px;
}
.nodisplay-image {
	display: none;
}
/* image overflow hidden
 ------------------------------ */
.overflow-hidden {
	overflow: hidden;
}

/*============ Lists ============ */

.iconlist {
	width: 100%;
	padding: 0px;
	margin: 0px;
}
.iconlist li {
	padding: 0px;
	margin: 0 0 15px 0;
	display: block;
	font-size:16px;
	line-height: 23px;
}
.iconlist li i {
	color: #04ce47;
	padding: 0 15px 0 0;
}
.iconlist.gyellow li i {
	color: #04ce47;
	padding: 0 15px 0 0;
}
.iconlist.dark li i {
	color: #101010;
}
.iconlist.less-margin li {
	margin: 0 0 13px 0;
}
.iconlist.white li i {
	color: #fff;
}
.iconlist.white-2 li {
	color: #fff;
}
.iconlist.medium li i {
	color: #727272;
}


/* icon list style 2
 ------------------------------ */
.iconlist-2 {
	width: 100%;
	padding: 0px;
	margin: 0px 0px 10px 0px;
	float: left;
}
.iconlist-2 .icon {
	width: 18px;
	height: 18px;
	padding: 0px;
	margin: 3px 0px 0px 0px;
	float: left;
	font-size: 14px;
	text-align: center;
	line-height: 15px;
	color: #cc0000;
	border-radius: 100%;
}
.iconlist-2 .text {
	padding: 0px 0 0 28px;
	margin: 0px;
	display: block;
}

.iconlist-2 .icon.dark {
	color: #101010;
}
.iconlist-2 .icon.light {
	color: #f5f5f5;
}
.iconlist-2 .icon.white {
	color: #fff;
}
.iconlist-2 .icon.gyellow {
	color: #04ce47;
}
/* =========== client logos ============= */

.clients-list.grid-cols-2 li {
    width: 50%;
}
.clients-list.grid-cols-3 li {
    width: 33.33%;
}
.clients-list.grid-cols-4 li {
    width: 25%;
}
.clients-list.grid-cols-5 li {
    width: 16%;
}
.clients-list.grid-cols-6 li {
    width: 16.66%;
}

.clients-list {
	padding-left:0px;
    overflow: hidden;
}
.clients-list li {
	position: relative;
	width: 20%;
    float: left;
    padding: 25px 0;
	transition: all 0.3s ease-out 0s;   
}
.clients-list li a img {
    width: 100%;
}
.clients-list li a, .clients-list li img {
    display: block;
    margin:0 auto;
    width: 75%;
}
.clients-list li::before, .clients-list li::after {
    content: "";
    position: absolute;
}
.clients-list li::before {
    height: 100%;
	top: 0;
    left: -1px;
	border-left: 1px solid #e9e9e9;
}
.clients-list li::after{
    width: 100%;
	height: 0;    
    left: 0;
    top: auto;
    bottom: -1px;
	border-bottom: 1px solid #e9e9e9;
}
.clients-list.border-dark li::before {
	border-left: 1px solid #333333;
}
.clients-list.border-dark li::after{
	border-bottom: 1px solid #333333;
}
.clients-list.noborder li::after{
	border-bottom: none;
}
.clients-list.noborder li::before{
	border-left: none;
}
/* logo hover styles
 ------------------------------ */
 
.clients-list.hover-1 li:hover {
	background-color:#f5f5f5;
}
.clients-list.hover-2 li:hover {
	background-color:#f5f5f5;
}
.clients-list.hover-3 li:hover {
	background-color:#f5f5f5;
}
.clients-list.hover-4 li a {
	opacity:0.4;
}
.clients-list.hover-4 li a:hover {
	opacity:1;
}
.clients-list.hover-5 li a {
	opacity:0.8;
}
.clients-list.hover-5 li a:hover {
	opacity:1;
}
.clients-list.hover-6 li {
	opacity:0.8;
}
.clients-list.hover-6 li:hover {
	background-color:#f5f5f5;
}
/* side navigation list
 ------------------------------ */
.side-nav-list {
	width: 100%;
	padding: 0px;
	margin: 0px;
	float: left;
}
.side-nav-list li {
	width: 100%;
	padding: 0px;
	margin: 0 0 2px 0;
	float: left;
}
.side-nav-list li a {
	width: 100%;
	padding: 15px 25px;
	margin: 0px;
	font-weight: normal;
	float: left;
	background-color: #f6f6f6;
}
.side-nav-list li a:hover, .side-nav-list li a.active {
	color: #fff;
	background-color: #04ce47;
}
/* side navigation list
 ------------------------------ */
.category-links {
	width: 100%;
	padding: 0px;
	margin: 0px;
	float: left;
}
.category-links li {
	width: 100%;
	padding: 10px 0;
	margin: 0 0 0 0;
	float: left;
	border-bottom: 1px solid #eeeeee;
}
.category-links li a:hover, .category-links li a.active {
	color: #04ce47;
}
.category-links li:last-child {
	border-bottom: none;
}

/* blog1 tags
 ------------------------------ */	
.tags {
	padding: 0px;
	margin: 0px;
}
.tags li {
	padding: 0px;
	margin: 0;
}
.tags li a {
	padding: 5px 15px 5px 15px;
	margin: 0 10px 10px 0;
	float: left;
	color: #727272;
	background-color: #e7e7e7;
}
.tags li a:hover, .tags li a.active {
	color: #fff;
	background-color: #dbdc33;
}

.tags.two li a {
	color: #242424;
	background-color: #fff;
	border:1px solid #e4e4e4;
}
.tags.two li a:hover, .tags.two li a.active {
	color: #fff;
	background-color: #42d1aa;
	border:1px solid #42d1aa;
}

/*tags 2
 ------------------------------ */	
.tags-2 {
	padding: 0px;
	margin: 0px;
}
.tags-2 li {
	padding: 0px;
	margin: 0;
}
.tags-2 li a {
	padding: 5px 15px 5px 15px;
	margin: 0 10px 10px 0;
	float: left;
	color: #727272;
	border:1px solid #e4e4e4;
	background-color: #fff;
}
.tags-2 li a:hover, .tags-2 li a.active {
	color: #fff;
	border:1px solid #04ce47;
	background-color: #04ce47;
}


/* sidebar works list
 ------------------------------ */	
.sidebar-works {
	width: 100%;
	padding: 0px;
	margin: 0px;
}
.sidebar-works li {
	width:32%;
	padding: 0px;
	margin: 4px 4px 0 0;
	float: left;
}
.sidebar-works li a img {
	width:100%;
}
.sidebar-works li:last-child {
	margin: 4px 0 0 0;
}

/*============ Menu Backgrounds ============ */

/* Sticky bg
 ------------------------------ */
#header {
	position: relative;
	background: #101010;
	padding: 0;
	width: 100%;
	z-index: 999;
}


/*============ Topbar Styles ============ */

/* Topbar
 ------------------------------ */
 
.topbar {
	float: left;
	width: 100%;
	padding: 0;
	margin: 0px;
}
.topbar.white {
	background-color: #fff;
	border-bottom: 1px solid #efefef;
}
.topbar.light {
	background-color: #f6f6f6;
}
.topbar.dark {
	background-color: #101010;
}
.topbar.fulldark {
	background-color: #000;
	border-bottom: 1px solid #262626;
}
.topbar.gyellow {
	background-color: #04ce47;
}
.topbar.more-padding {
	padding: 20px 0 80px 0;
}

.topbar-transparent {
	position:relative;
	float: left;
	width: 100%;
	padding: 0;
	margin: 0px;
	z-index:99;
}
.topbar-transparent.min-height {
	min-height:120px;
}
.topbar-transparent.dark {
	background-color:#101010;
}
.topbar-transparent.bborder {
	border-bottom:1px solid rgba(255, 255, 255, 0.2);
}
.topbar-transparent.light {
	background-color:#f5f5f5;
}
.topbar-transparent.dark .toplist li a:hover {
    color: #fff;
}
.topbar-transparent.text-white .toplist li, .topbar-transparent.text-white .toplist li a {
    color: #fff;
}

.topbar.no-boder {
	border-bottom:none;
}
.topbar.more-padd-1 {
	padding: 25px 0;
}

.topbar .border-r {
	border-right:1px solid #e5e5e5;
}
.topbar .padd-left {
	padding-left:30px;
}
/* Topbar list
 ------------------------------ */
.toplist {
	float: right;
	padding: 0px;
	margin: 0px;
}
.toplist li {
	float: left;
	color: #8d8c8c;
	text-align: right;
	font-size: 14px;
	margin: 0px;
	padding: 0 10px 0 10px;
}
.toplist li.lineright {
	border-right: 1px solid #e4e4e4;
}
.toplist li a {
	color: #8d8c8c;
}
.toplist li a:hover {
	color: #101010;
}
.toplist.toppadding {
	padding-top: 10px;
}
a.topbar-btn {
	float: left;
	color: #101010;
	text-align: center;
	font-size: 14px;
	margin: 0px;
	border-radius: 2px;
	padding: 5px 15px;
	background-color: #fff;
}
.topbar-padding {
	padding: 7px 0 15px 0;
}
.topbar-left-items {
	float: left;
	margin: 0;
	padding: 0;
	width: 37%;
}
.topbar-middle-logo {
	float: left;
	margin: 0;
	padding: 10px 0;
	width: 26%;
	text-align: center;
	background-color: #04ce47;
}
.topbar-middle-logo.no-bgcolor {
	background:none;
}
.topbar-right-items {
	float: left;
	margin: 0;
	padding: 0;
	width: 37%;
}

/* topbar dark list color
 ------------------------------ */
.topbar.dark .toplist li a:hover {
	color: #fff;
}
.topbar.fulldark .toplist li a:hover {
	color: #fff;
}
.topbar.dark .toplist li.lineright {
	border-right: 1px solid #727272;
}
.topbar.fulldark .toplist li.lineright {
	border-right: 1px solid #3a3a3a;
}
.topbar.white .toplist li a:hover {
	color: #101010;
}
/* topbar logo middle
 ------------------------------ */
.topbar-middle-logo.nobg {
	background: none;
}
/* topbar btn
 ------------------------------ */
a.topbar-btn:hover, a.topbar-btn.active {
	color: #FFF !important;
	background-color: #04ce47;
}

/* topbar white top list color
 ------------------------------ */
.topbar.white .toplist li a {
	color: #727272;
}
.topbar.white .toplist li {
	color: #727272;
}
/* topbar orange toplist color
 ------------------------------ */
.topbar.gyellow .toplist li {
	color: #04ce47;
}
.topbar.gyellow .toplist li a {
	color: #04ce47;
}
/* topbar right items two
 ------------------------------ */
.topbar-right-items.two {
	width: 50%;
}

/*============ Section Titles ============ */

/* title container
 ------------------------------ */
 
.title{
	transition: all 0.3s ease-out 0s;
}

 /* title container
 ------------------------------ */

.sec-title-container {
	width:100%;
	float:left;
	padding-bottom:120px;
}
.sec-title-container.less-padding-1 {
	padding-bottom:60px;
}
.sec-title-container.less-padding-2 {
	padding-bottom:50px;
}
.sec-title-container.less-padding-3 {
	padding-bottom:40px;
}
.sec-title-container.less-padding-4 {
	padding-bottom:30px;
}
.sec-title-container.less-padding-5 {
	padding-bottom:20px;
}
.sec-title-container.less-padding-6 {
	padding-bottom:15px;
}
/* page title
 ------------------------------ */
.section-title {
	font-weight: 400;
}
/* subtitle
 ------------------------------ */
.sub-title {
	width: 48%;
	font-size: 16px;
	margin: 0 auto 70px auto;
}
/* title line
 ------------------------------ */
.title-line-1 {
	width: 125px;
	height:4px;
	margin:12px auto 0 auto;
	border-bottom:1px solid #e7e7e7;
	border-top:1px solid #e7e7e7;
}
.title-line-1.align-left {
	width: 125px;
	margin:12px auto 0 0;
}
.title-line-1.transp {
	border-bottom:1px solid rgba(255, 255, 255, 0.3);
	border-top:1px solid rgba(255, 255, 255, 0.3);
}
.title-line-2 {
	width:260px;
	height:1px;
	margin:12px auto 0 auto;
	background-color:#e7e7e7;
}
.title-line-2.align-left {
	width: 260px;
	margin:12px auto 0 0;
}
/* featurebox title line
 ------------------------------ */
.feabox-title-line {
	width:60px;
	height:2px;
	margin:0 auto 0 0;
	background-color:#101010;
}
.feabox-title-line.center {
	width:60px;
	height:2px;
	margin:0 auto;
	background-color:#101010;
}

/*============ Footer Styles Sections ============ */

 /* footer section
 ------------------------------ */ 
 .fo-map {
	width: 100%;
	float:left;
}
 .fo-map {
	background-size:100%;
}
.fo-sec-1 {
	position:relative;
	width: 100%;
	padding: 110px 0 0 0;
	margin:0;
	float: left;
}
.fo-sec-1 .newsletter-box{
	position: absolute;
	width:100%;
	float:left;
	left:0px;
	top:-238px;
	padding:70px;
	background-color:#04ce47;
}
.fo-sec-1 .newsletter-box input{
	width:80%;
	height:60px;
	float:left;
	padding:15px;
	border:1px solid #fff;
	background-color:#fff;
}
.fo-sec-1 .newsletter-box .submit-btn{
	width:20%;
	height:60px;
	float:left;
	padding:0px;
	border:1px solid #101010;
	background-color:#101010;
}

/* footer section 2
 ------------------------------ */ 
.fo-sec-2 {
	position:relative;
	width: 100%;
	padding: 30px 0 0 0;
	margin:0;
	float: left;
}
.fo-sec-2 .social-iconbox {
	position: absolute;
	width:265px;
	float:left;
	left:40%;
	top:-107px;
	padding: 0px;
	margin: 0px;
	z-index:2;
	background-color:#fff;
}
.fo-sec-2 .social-iconbox .side-shape1 {
	position: absolute;
	width:13px;
	height:28px;
	float:left;
	left: -13px;
	top: -1px;
	padding: 0px;
	margin: 0px;
}
.fo-sec-2 .social-iconbox .side-shape1.right-icon {
	left: 265px;
	top: -1px;
}
.fo-sec-2 ul.sc-icons{
	width:100%;
	margin:0px;
	padding:0px;
	text-align:center;
}
.fo-sec-2 .sc-icons li{
	display:inline-block;
}
.fo-sec-2 .sc-icons li a{
	padding:15px 10px;
	display:inline-block;
}

 /* footer section 3
 ------------------------------ */ 
.fo-sec-3 {
	position:relative;
	width: 100%;
	padding: 110px 0 0 0;
	margin:0;
	float: left;
}
.fo-sec-3 .primary-box{
	position: absolute;
	width:100%;
	float:left;
	left:0px;
	top:-150px;
	padding:50px;
	background-color:#04ce47;
}


 /* footer latest posts
 ------------------------------ */ 
.fo-posts {
	width: 100%;
	padding: 0px;
	margin: 0 0 25px 0;
	float: left;
}
.fo-posts .post-info {
	font-size: 12px;
	color: #727272;
}
.fo-posts-info {
	font-size: 12px;
	color: #727272;
}
.fo-posts a:hover, .fo-posts a.active {
	color: #04ce47;
}
.fo-posts .post-info.text-light {
	color: #d0d0d0;
}
 /* footer title bottom line
 ------------------------------ */ 
.fo-title-bottom-line {
    width: 34px;
    height: 2px;
    color: #fff;
    float: left;
    display: block;
    margin-bottom: 40px;
    background-color: #fff;
} 
.fo-title-bottom-line.dark {
    background-color: #101010;
}
.fo-title-bottom-line.white {
    background-color: #fff;
}
.fo-title-bottom-line.gyellow {
    background-color: #04ce47;
} 

 /* footer newsletter
 ------------------------------ */ 
.fo-newsletter-1 {
	border: 1px solid #3b3b3b;
	border-width: 1px 0 1px 1px;
	color: #727272;
	float: left;
	font-size: 13px;
	font-weight: normal;
	height: 50px;
	line-height: 39px;
	padding: 0 7px;
	width: 70%;
	background-color:transparent;
}
.fo-newsletter-submit-1 {
	background-color: #3b3b3b;
	border: 1px solid #3b3b3b;
	float: left;
	height: 50px;
	margin: 0;
	padding: 5px 10px;
}
.fo-newsletter-submit-1.gyellow {
	color:#fff;
	background-color: #04ce47;
	border: 1px solid #04ce47;
}
 /* footer newsletter 2
 ------------------------------ */ 
.fo-newsletter-2 {
	border: 1px solid #101010;
	border-width: 1px 0 1px 1px;
	color: #727272;
	float: left;
	font-size: 13px;
	font-weight: normal;
	height: 50px;
	line-height: 39px;
	padding: 0 7px;
	width: 66%;
	background-color:transparent;
}
.fo-newsletter-submit-2 {
	background-color: #101010;
	border: 1px solid #101010;
	float: left;
	height: 50px;
	margin: 0;
	padding: 5px 20px;
}

/* footer appointment form
 ------------------------------ */ 
.fo-appointment-form {
	padding: 0px;
	width: 100%;
	float:left;
}
.fo-appointment-form input {
	border: 1px solid #212121;
	color: #727272;
	float: left;
	font-size: 13px;
	font-weight: normal;
	height: 35px;
	line-height: 39px;
	padding: 0 7px;
	width: 100%;
	margin:0 0 15px 0;
	background-color:transparent;
}
.fo-appointment-form textarea {
	border: 1px solid #212121;
	color: #727272;
	float: left;
	font-size: 13px;
	font-weight: normal;
	height: 70px;
	min-height:70px;
	resize: none;
	line-height: 39px;
	padding: 0 7px;
	width: 100%;
	margin:0 0 15px 0;
	background-color:transparent;
}
.fo-appointment-form .submit-btn {
    background-color: #04ce47;
    border: 1px solid #04ce47;
    float: left;
    height: 40px;
    margin: 0;
	color:#fff;
    padding: 0 10px;
}
/* Footer title
 ------------------------------ */
 
.footer-title {
	color: #fff;
	float: left;
}
.footer-title-bottomstrip {
	width: 10%;
	height: 3px;
	margin-right: 95%;
	color: #fff;
	float: left;
	display: block;
	margin-bottom: 40px;
	background-color: #fff;
}
.footer-title-bottomstrip.gyellow {
	background-color: #04ce47;
}
.footer-title-bottomstrip-2 {
	width: 34px;
	height: 2px;
	color: #fff;
	float: left;
	display: block;
	margin-bottom: 40px;
	background-color: #fff;
}
.footer-title-bottomstrip-3 {
	width: 34px;
	height: 2px;
	color: #fff;
	float: left;
	display: block;
	margin-bottom: 30px;
	background-color: #101010;
}
.footer-title-bottomstrip.dark {
	background-color: #101010;
}
.footer-title-bottomstrip-2.dark {
	background-color: #101010;
}
.footer-title-bottomstrip-2.gyellow {
	background-color: #04ce47;
}
/* ---------- Footer quick links ---------- */

.footer-quick-links {
	width: 100%;
	padding: 0 0 0 0;
	margin: 0px;
}
.footer-quick-links li {
	padding: 25px 15px;
	margin: 40px 0 10px 0;
	display: inline-block;
}
.footer-quick-links li a {
	padding:3px 0;
	margin:0;
	color: #727272;
	float: left;
	display: inline-block;
}
.footer-quick-links li a:hover {
	color: #fff;
}
.footer-quick-links li a i {
	padding:0 10px 0 0;
}
/* ---------- Footer quick links ---------- */

.footer-quick-links-2 {
	width: 100%;
	padding: 0 0 0 0;
	margin: 0px;
}
.footer-quick-links-2 li {
	padding: 0px;
	margin: 0px;
	display: inline-block;
}
.footer-quick-links-2 li a {
	padding: 0 35px 20px 0;
	margin:0;
	color: #727272;
	float: left;
	display: inline-block;
}
.footer-quick-links-2 li a:hover {
	color: #fff;
}
.footer-quick-links-2 li a i {
	padding:0 10px 0 0;
}
.footer-quick-links-2.top-padding {
    padding: 60px 0 0 0;
}
/* ---------- Footer quick links 3 ---------- */

.footer-quick-links-3 {
	width: 100%;
	padding: 0 0 0 0;
	margin: 0px;
	display:block;
}
.footer-quick-links-3 li {
	width: 100%;
	padding: 0px;
	margin: 0px;
	float:left;
	display:block;
}
.footer-quick-links-3 li a {
	padding:3px 0;
	margin:0;
	color: #727272;
	float: left;
	display:block;
}
.footer-quick-links-3 li a:hover {
	color: #101010;
}
.footer-quick-links-3 li a i {
	padding:0 10px 0 0;
}
.footer-quick-links-3.top-padding {
    padding: 60px 0 0 0;
}

/* ---------- Footer quick links 4---------- */

.footer-quick-links-4 {
	width: 100%;
	padding: 0 0 0 0;
	margin: 0px;
}
.footer-quick-links-4 li {
	width:100%;
	padding:0px;
	margin:0;
	display: inline-block;
}
.footer-quick-links-4 li a {
	padding:3px 0;
	margin:0;
	color: #bababa;
	float: left;
	display: inline-block;
}
.footer-quick-links-4 li a:hover {
	color: #fff;
}
.footer-quick-links-4 li a i {
	padding:0 10px 0 0;
}
.footer-quick-links-4.dark-hover li a:hover {
	color: #101010;
}

.footer-quick-links-4.hover-dark li a:hover {
	color: #101010;
}

.footer-quick-links-5 {
	padding:0px;
	margin:0px;
}
.footer-quick-links-5 li {
	padding:5px 0;
}
.footer-quick-links-5 li a {
	color: #000;
}
.footer-quick-links-5 li a:hover {
	color: #727272;
}


.footer-quick-links-6 {
	padding:0px;
	margin:0px;
}
.footer-quick-links-6 li {
	padding:5px 0;
}
.footer-quick-links-6 li a {
	color: #fff;
}
.footer-quick-links-6 li a:hover {
	color: #000;
}


/* ---------- Footer social links ---------- */
.footer-social-icons {
    width: 100%;
    padding: 0px;
	margin:15px 0 15px 0;
}
.footer-social-icons li {
    padding: 0px;
	margin: 0px;
	display: inline-block;
}
.footer-social-icons li a {
    width: 36px;
    height: 36px;
    text-align: center;
    line-height: 40px;
    display: inline-block;
    padding: 0px;
    color: #fff;
    background-color: #101010;
}
.footer-social-icons.round li a {
	border-radius:100%;
}
.footer-social-icons li a:hover, .footer-social-icons li a.active {
    color: #e28220 !important;
}
.footer-social-icons.icons-plain li a {
    background: none;
}

.footer-social-icons.dark li a {
    color: #101010;
	border-radius:100%;
    background-color: #fff;
}
.footer-social-icons.dark li a:hover, .footer-social-icons.dark li a.active {
    color: #04ce47;
}


.footer-social-icons.primary li a {
    color: #101010;
	border-radius:100%;
	margin-top:20px;
    background-color: #04ce47;
}
.footer-social-icons.primary.left-align {
	text-align:left;	
}
.footer-social-icons.left-align {
	text-align:center;	
	font-size: 30px !important;
}
/* ---------- Footer social links 2 ---------- */
.footer-social-icons-2 {
    width: 100%;
    padding: 0px;
	text-align: center;
	margin:20px 0 20px 0;
}
.footer-social-icons-2 li {
    padding: 0px;
	margin: 0px;
	display: inline-block;
}
.footer-social-icons-2 li a {
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    display: inline-block;
    padding: 0px;
	font-size:16px;
    color: #101010;
	border:1px solid #e4e4e4;
    background-color: #fff;
}
.footer-social-icons-2 li a:hover {
    color: #fff;
	border:1px solid #04ce47;
    background-color: #04ce47;
}
.footer-social-icons-2 li a:hover, .footer-social-icons-2 li a.active {
    color: #fff;
	border:1px solid #04ce47;
    background-color: #04ce47;
}
.footer-social-icons-2.dark-hover li a:hover, .footer-social-icons-2.dark-hover li a.active {
    color: #fff;
	border:1px solid #101010;
    background-color: #101010;
}

/* ---------- Footer flickr gallery ---------- */

ul.footer-flickr {
	width: 100%;
	padding:0;
	margin: 0px;
}
.footer-flickr li {
	width:80px;
	padding:0;
	margin:0 0 11px 0;
	float:left;
}
.footer-flickr li.mar-r {
	margin-right:11px;
}

/* ---------- Footer opening list ---------- */
.fo-opening-list {
	float: left;
	padding: 0;
	width: 100%;
}
.fo-opening-list li {
	color: #727272;
	float: left;
	padding: 8px 0;
	width: 100%;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.fo-opening-list li:first-child {
	padding-top: 0px;
}
.fo-opening-list li:last-child {
	border-bottom: none;
}

/*============ css arrows ============ */

/*.arrow-down {
	width: 0;
	height: 0;
	border-left: 20px solid transparent;
	border-right: 20px solid transparent;
	border-top: 20px solid #fd602c;
}
.arrow-up {
	width: 0;
	height: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-bottom: 5px solid black;
}
.arrow-right {
	width: 0;
	height: 0;
	border-top: 60px solid transparent;
	border-bottom: 60px solid transparent;
	border-left: 60px solid green;
}
.arrow-left {
	width: 0;
	height: 0;
	border-top: 20px solid transparent;
	border-bottom: 20px solid transparent;
	border-right: 20px solid #fff;
}*/
/*============ section background images ============ */
.sec-bgimg-1 {
	width: 100%;
	float: left;
	padding: 0;
	margin: 0px;
	text-align: center;
	background-position: 100% 0;
	background-position: center;
	z-index: 1;
}
.sec-bgimg-1.bd {
	background: url(../images/footer-bg/bd-1.jpg);
}
.sec-bgimg-1.by2 {
	background: url(../images/footer-bg/by2-1.jpg);
}
.sec-bgimg-1.ch {
	background: url(../images/footer-bg/ch-1.jpg);
}

/*============ Page Section Styles ============ */

/* section background dark
 ------------------------------ */
.section-dark {
	background-color: #000;
}
.section-dark-2 {
	background-color: #222931;
}
.section-dark-3 {
	background-color: #242424;
}
.section-dark-4 {
	background-color: #152435;
}
.section-medium-dark {
	background-color: #fff;
}
.section-fulldark {
	background-color: #000;
}
.section-medium-dark-2 {
	background-color: #1c1c1c;
}
.section-medium-dark-3 {
	background-color: #101010;
}

/* section background light
 ------------------------------ */
.section-light {
	background-color: #f5f5f5;
}

.section-light-2 {
	background-color: #f9f8f7;
}
.section-light-3 {
	background-color: #f8f8f8;
}
/* section background white
 ------------------------------ */
.section-white {
	background-color: #fff;
}

/* section background golden yellow
 ------------------------------ */
.section-primary {
	background-color: #04ce47;
}
.section-secondary {
	background-color: #f82453;
}
/* section copyright
 ------------------------------ */
.section-copyrights {
	margin: 0;
	text-align: center;
	background-color: #1a1a1a;
}
/* section big map
 ------------------------------ */
.section-big-map {
	width: 100%;
	margin: 0;
	text-align: center;
	background: #161616 url(../images/site-img46.png) center 150px no-repeat;
}
/* section pattren 1
 ------------------------------ */
.section-pattren-1 {
	width: 100%;
	height: 100%;
	margin: 0;
	background: url(../images/bg-pattrens/pattren1.jpg) 0 0 repeat;
}
.section-pattren-2 {
	width: 100%;
	height: 100%;
	margin: 0;
	background: url(../images/bg-pattrens/pattren2.jpg) 0 0 repeat;
}
.section-pattren-3 {
	width: 100%;
	height: 100%;
	margin: 0;
	background: url(../images/bg-pattrens/pattren3.jpg) 0 0 repeat;
}
.section-pattren-4 {
	width: 100%;
	height: 100%;
	margin: 0;
	background: url(../images/bg-pattrens/pattren4.png) 0 0 repeat;
}
.section-pattren-5 {
	width: 100%;
	height: 100%;
	margin: 0;
	background: url(../images/bg-pattrens/pattren4.jpg) 0 0 repeat;
}
.section-pattren-6 {
	width: 100%;
	height: 100%;
	margin: 0;
	background: url(../images/bg-pattrens/pattren6.jpg) 0 0 repeat;
}
.section-pattren-7 {
	width: 100%;
	height: 100%;
	margin: 0;
	background: url(../images/bg-pattrens/pattren7.jpg) 0 0 repeat;
}
.section-pattren-8 {
	width: 100%;
	height: 100%;
	margin: 0;
	background: url(../images/bg-pattrens/pattren8.jpg) 0 0 repeat;
}
.section-pattren-9 {
	width: 100%;
	height: 100%;
	margin: 0;
	background: url(../images/bg-pattrens/pattren9.png) 0 0 repeat;
}
.section-pattren-10 {
	width: 100%;
	height: 100%;
	margin: 0;
	background: url(../images/bg-pattrens/pattren10.jpg) 0 0 repeat;
}
.section-pattren-11 {
	width: 100%;
	height: 100%;
	margin: 0;
	background: url(../images/bg-pattrens/pattren11.jpg) 0 0 repeat;
}
.section-pattren-12 {
	width: 100%;
	height: 100%;
	margin: 0;
	background: url(../images/bg-pattrens/pattren12.jpg) 0 0 repeat;
}
.section-pattren-13 {
	width: 100%;
	height: 100%;
	margin: 0;
	background: url(../images/bg-pattrens/pattren13.jpg) 0 0 repeat;
}
.section-pattren-14 {
	width: 100%;
	height: 100%;
	margin: 0;
	background: url(../images/bg-pattrens/pattren14.jpg) 0 0 repeat;
}
.section-pattren-15 {
	width: 100%;
	height: 100%;
	margin: 0;
	background: url(../images/bg-pattrens/pattren15.jpg) 0 0 repeat;
}
.section-pattren-16 {
	width: 100%;
	height: 100%;
	margin: 0;
	background: url(../images/bg-pattrens/pattren16.jpg) 0 0 repeat;
}
.section-pattren-17 {
	width: 100%;
	height: 100%;
	margin: 0;
	background: url(../images/bg-pattrens/pattren17.jpg) 0 0 repeat;
}
.section-pattren-18 {
	width: 100%;
	height: 100%;
	margin: 0;
	background: url(../images/bg-pattrens/pattren18.jpg) 0 0 repeat;
}
.section-pattren-19 {
	width: 100%;
	height: 100%;
	margin: 0;
	background: url(../images/bg-pattrens/pattren19.jpg) 0 0 repeat;
}

.section-pattren-20 {
	width: 100%;
	height: 100%;
	margin: 0;
	background: url(../images/bg-pattrens/pattren20.jpg) 0 0 repeat;
}

.section-pattren-21 {
	width: 100%;
	height: 100%;
	margin: 0;
	background: url(../images/bg-pattrens/pattren21.jpg) 0 0 repeat;
}

.section-pattren-22 {
	width: 100%;
	height: 100%;
	margin: 0;
	background: url(../images/bg-pattrens/pattren22.jpg) 0 0 repeat;
}

.section-pattren-23 {
	width: 100%;
	height: 100%;
	margin: 0;
	background: url(../images/bg-pattrens/pattren23.jpg) 0 0 repeat;
}

.section-pattren-24 {
	width: 100%;
	height: 100%;
	margin: 0;
	background: url(../images/bg-pattrens/pattren24.jpg) 0 0 repeat;
}
.section-pattren-25 {
	width: 100%;
	height: 100%;
	margin: 0;
	background: url(../images/bg-pattrens/pattren25.jpg) 0 0 repeat;
}
.section-pattren-26 {
	width: 100%;
	height: 100%;
	margin: 0;
	background: url(../images/bg-pattrens/pattren26.jpg) 0 0 repeat;
}
.section-pattren-27 {
	width: 100%;
	height: 100%;
	margin: 0;
	background: url(../images/bg-pattrens/pattren27.jpg) 0 0 repeat;
}
.section-pattren-28 {
	width: 100%;
	height: 100%;
	margin: 0;
	background: url(../images/bg-pattrens/pattren28.jpg) 0 0 repeat;
}
.section-pattren-29 {
	width: 100%;
	height: 100%;
	margin: 0;
	background: url(../images/bg-pattrens/pattren29.jpg) 0 0 repeat;
}
.section-pattren-30 {
	width: 100%;
	height: 100%;
	margin: 0;
	background: url(../images/bg-pattrens/pattren30.png) 0 0 repeat;
}
.section-pattren-31 {
	width: 100%;
	height: 100%;
	margin: 0;
	background: #151515 url(../images/bg-pattrens/pattren31.png) 0 0 repeat;
}
.section-pattren-32 {
	width: 100%;
	height: 100%;
	margin: 0;
	background:#f5f5f5 url(../images/bg-pattrens/pattren32.png) 0 0 repeat;
}
.section-pattren-33 {
	width: 100%;
	height: 100%;
	margin: 0;
	background:url(../images/bg-pattrens/pattren32.png) 0 0 repeat;
}



.section-bgimg-1 {
	width: 100%;
	height: auto;
	margin: 0;
	float:left;
	background: url(http://via.placeholder.com/2000x1500) center center repeat;
}
.section-bgimg-3 {
	width: 100%;
	height: auto;
	margin: 0;
	float:left;
	background: url(../images/bim3.png) center center repeat;
}
.section-bgimg-4 {
	width: 100%;
	height: auto;
	margin: 0;
	float:left;
	background: url(../images/bim4.jpg) center center repeat;
}
.section-bgimg-5 {
	width: 100%;
	height: auto;
	margin: 0;
	float:left;
	background: url(../images/bim5.jpg) center center repeat;
}
.section-bgimg-6 {
	width: 100%;
	height: auto;
	margin: 0;
	float:left;
	background: url(http://via.placeholder.com/2000x1300) center center repeat;
}
.section-bgimg-7 {
	width: 100%;
	height: auto;
	margin: 0;
	float:left;
	background: url(../images/bim7.jpg) center center repeat;
}
.section-bgimg-8 {
	width: 100%;
	height: auto;
	margin: 0;
	float:left;
	background: url(../images/bim8.jpg) center center repeat;
}
.section-bgimg-9 {
	width: 100%;
	height: auto;
	margin: 0;
	float:left;
	background: url(http://via.placeholder.com/2000x1300) center center repeat;
}
.section-bgimg-10 {
	width: 100%;
	height: auto;
	margin: 0;
	float:left;
	background: url(../images/bim10.jpg) center center repeat;
}
.section-bgimg-11 {
	width: 100%;
	height: auto;
	margin: 0;
	float:left;
	background: url(../images/bim11.jpg) center center repeat;
}
.section-bgimg-12 {
	width: 100%;
	height: auto;
	margin: 0;
	float:left;
	background: url(../images/bim12.jpg) center center repeat;
}
.section-bgimg-13 {
	width: 100%;
	height: auto;
	margin: 0;
	float:left;
	background: url(../images/bim13.jpg) center center repeat;
}
.section-bgimg-14 {
	width: 100%;
	height: auto;
	margin: 0;
	float:left;
	background: url(../images/bim14.jpg) center center repeat;
}
.section-bgimg-15 {
	width: 100%;
	height: auto;
	margin: 0;
	float:left;
	background: url(../images/bim15.jpg) center center repeat;
}
.section-bgimg-16 {
	width: 100%;
	height: auto;
	margin: 0;
	float:left;
	background: url(../images/bim16.jpg) center center repeat;
}













/* Section Paddings
 ------------------------------ */
.sec-padding {
	padding: 70px 0 70px 0;
}
.sec-padding-2 {
	padding: 100px 0 100px 0;
}
.sec-padding-3 {
	padding: 100px 0 100px 0;
}
.sec-padding-4 {
	padding: 70px 0 70px 0;
}
.sec-padding-5 {
	padding: 50px 0 50px 0;
}
.sec-padding-6 {
	padding: 30px 0 30px 0;
}




.sec-bpadding-2 {
	padding-bottom: 100px;
}
.sec-tpadding-2 {
	padding-top: 100px;
}
.sec-tpadding-2.less-padding {
	padding-top: 20px;
}
.sec-tpadding-3 {
	padding-top: 100px;
}
.sec-bpadding-3 {
	padding-bottom: 100px;
}
.sec-tpadding-4 {
	padding-top: 80px;
}
.sec-bpadding-4 {
	padding-bottom: 80px;
}
.sec-bpadding.less-padding {
	padding-bottom: 30px;
}


.sec-dummy-top-padding {
	padding-top: 0px;
}
/* Section minus margins
 ------------------------------ */
.sec-m-margin-1 {
	margin-top:0px;
}
/*============ Page Section pattrens ============ */

.sec-pattren-1{
	width:100%;
	background:url(../images/bg-pattrens/pattren1.jpg) repeat;
}
.sec-pattren-2{
	width:100%;
	background:url(../images/bg-pattrens/pattren2.jpg) repeat;
}
.sec-pattren-3{
	width:100%;
	background:url(../images/bg-pattrens/pattren3.jpg) repeat;
}
.sec-pattren-4{
	width:100%;
	background:url(../images/bg-pattrens/pattren4.jpg) repeat;
}
.sec-pattren-5{
	width:100%;
	background:url(../images/bg-pattrens/pattren5.jpg) repeat;
}

/*============ Footer Styles ============ */

.footer-logo {
	margin-bottom: 35px;
}
.about_img{
    position: relative ;
    /*left: 7% ;*/
}
/* Footer Useful Links
 ------------------------------ */
	
.fo-usefull-links {
	padding: 0px;
	margin: 0px;
}
.fo-usefull-links li {
	padding: 0px;
	margin: 0 0 10px 0;
	display: block;
	border-bottom: 1px solid #2e2e2e;
}
.fo-usefull-links li a {
	padding: 0px;
	margin: 0 0 10px 0;
	display: block;
	color: #727272;
	line-height: 23px;
}
.fo-usefull-links li a:hover {
	color: #fff;
}
.fo-usefull-links li i {
	color: #727272;
	padding: 0 10px 0 0;
}
.fo-usefull-links li:last-child {
	border-bottom:none;
}

/* useful links 2
 ------------------------------ */
.fo-usefull-links-2 {
	padding: 0px;
	margin: 0px;
}
.fo-usefull-links-2 li {
	padding: 0px;
	margin: 0 0 10px 0;
	display: block;
	border-bottom: 1px solid #e4e4e4;
}
.fo-usefull-links-2 li a {
	padding: 0px;
	margin: 0 0 10px 0;
	display: block;
	color: #727272;
	line-height: 23px;
}
.fo-usefull-links-2 li a:hover {
	color: #242424;
}
.fo-usefull-links-2 li i {
	color: #727272;
	padding: 0 10px 0 0;
}
.fo-usefull-links-2 li:last-child {
	border-bottom:none;
}
.fo-usefull-links-2.no-border li {
	border-bottom:none;
}
/* useful links 3
 ------------------------------ */
.fo-usefull-links-3 {
	padding: 0px;
	margin: 0px;
}
.fo-usefull-links-3 li {
	padding: 0px;
	margin: 0 0 10px 0;
	display: block;
	border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.fo-usefull-links-3 li a {
	padding: 0px;
	margin: 0 0 10px 0;
	display: block;
	color: #fff;
	line-height: 23px;
}
.fo-usefull-links-3 li a:hover {
	color: #242424;
}
.fo-usefull-links-3 li i {
	color: #fff;
	padding: 0 10px 0 0;
}
.fo-usefull-links-3 li:last-child {
	border-bottom:none;
}
.fo-usefull-links-3.no-border li {
	border-bottom:none;
}
/* Footer Address
 ------------------------------ */
	
.fo-address-info {
	padding: 0px;
	margin: 0px;
}
.fo-address-info li {
	width:100%;
	padding: 0px 0px 10px 0px;
	margin: 0 0 10px 0;
	display: block;
	color: #727272;
	line-height: 23px;
	border-bottom:1px solid #282828;
}
.fo-address-info.border-light li {
	border-bottom:1px solid #2f2d2d;
}
.fo-address-info li i {
	color: #727272;
	padding: 0 10px 0 0;
}
.fo-address-info li:last-child {
	border-bottom:none;
}
.fo-address-info.no-border li {
	border-bottom:none;
}
/* Footer Address 2
 ------------------------------ */
	
.fo-address-info-2 {
	padding: 0px;
	margin: 0px;
}
.fo-address-info-2 li {
	padding: 0px 0px 10px 0px;
	margin: 0 0 10px 0;
	display: block;
	color: #727272;
	line-height: 23px;
	border-bottom: 1px solid #e4e4e4;
}
.fo-address-info-2 li i {
	color: #727272;
	padding: 0 10px 0 0;
}
.fo-address-info-2 li:last-child {
	border-bottom:none;
}
.fo-address-info-2.no-border li {
	border-bottom:none;
}

/* Footer Address 3
 ------------------------------ */
	
.fo-address-info-3 {
	padding: 0px;
	margin: 0px;
}
.fo-address-info-3 li {
	padding: 0px 0px 10px 0px;
	margin: 0 0 10px 0;
	display: block;
	color: #fff;
	line-height: 23px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.fo-address-info-3 li i {
	color: #fff;
	padding: 0 10px 0 0;
}
.fo-address-info-3 li:last-child {
	border-bottom:none;
}
.fo-address-info-3.no-border li {
	border-bottom:none;
}


/* Footer Tags
 ------------------------------ */	
 
.footer-tags {
	padding: 0px;
	margin: 0px;
}
.footer-tags li {
	padding: 0px;
	margin: 0;
}
.footer-tags li a {
	padding: 5px 15px 5px 15px;
	margin: 0 10px 10px 0;
	float: left;
	color: #727272;
	border: 1px solid #2e2e2e;
}
.footer-tags li a:hover, .footer-tags li a.active {
	border: 1px solid #04ce47;
	color: #04ce47;
}
.footer-tags.border-light li a {
	border: 1px solid #ebebeb;
}

/* Footer Posts
 ------------------------------ */
.footer-post-info {
	padding: 0px;
}
.footer-post-info span {
	font-size: 13px;
	color: #494747;
	margin-right: 5px;
}
.fo-postimg-inner {
	width: 80px;
	height: 80px;
	padding: 0px;
	margin: 0px;
	float: left;
	border-radius: 100%;
}
.opening-list {
	float: left;
	padding: 0;
	width: 100%;
}
.opening-list li {
	color: #727272;
	float: left;
	padding: 8px 0;
	width: 100%;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.opening-list li:first-child {
	padding-top: 0px;
}
.opening-list li:last-child {
	border-bottom: none;
}
.opening-list.dark-border li {
	border-bottom: 1px solid #f1f1f1;
}
/* Footer copyright box
 ------------------------------ */	
 
.fo-copyright-holder {
	position:relative;
	width:100%;
	float:left;
	padding: 0px;
	margin: 0px;
	color: #000;
	font-size: 20px !important;
}
.fo-copyright-holder .social-iconbox {
	position: absolute;
	width:265px;
	float:left;
	left:40%;
	top:-57px;
	padding: 0px;
	margin: 0px;
	background-color:#fff;
}
.fo-copyright-holder .social-iconbox.bg-dark {
	background-color:#101010;
}
.fo-copyright-holder .social-iconbox .side-shape1 {
	position: absolute;
	width:13px;
	height:28px;
	float:left;
	left: -13px;
	top: -1px;
	padding: 0px;
	margin: 0px;
}
.fo-copyright-holder .social-iconbox .side-shape1.right-icon {
	left: 265px;
	top: -1px;
}
.fo-copyright-holder .sc-icons{
	width:100%;
	float:left;
	padding: 0px;
	margin: 0px;
}
.fo-copyright-holder .sc-icons li{
	padding: 0px;
	margin: 0px;
	display:inline-block;
}
.fo-copyright-holder .sc-icons li a{
	float:left;
	font-size:15px;
	padding: 15px 10px;
	margin: 0px;
	display:inline-block;
}






/* Footer top social box
 ------------------------------ */	
 
.fo-top-holder {
	position:relative;
	width:100%;
	float:left;
	padding: 60px 0 0 0;
	margin: 0px;
}
.fo-top-holder .social-iconbox {
	position: absolute;
	width:265px;
	float:left;
	left:38%;
	top:26px;
	padding: 0px;
	margin: 0px;
	background-color:#04ce47;
}
.fo-top-holder .social-iconbox.bg-dark {
	background-color:#101010;
}
.fo-top-holder .social-iconbox .side-shape1 {
	position: absolute;
	width:13px;
	height:28px;
	float:left;
	left: -18px;
	top: -1px;
	padding: 0px;
	margin: 0px;
}
.fo-top-holder .social-iconbox .side-shape1.right-icon {
	left: 265px;
	top: -1px;
}
.fo-top-holder .sc-icons{
	width:100%;
	float:left;
	padding: 0px;
	margin: 0px;
}
.fo-top-holder .sc-icons li{
	padding: 0px;
	margin: 0px;
	display:inline-block;
}
.fo-top-holder .sc-icons li a{
	float:left;
	font-size:15px;
	color:#fff;
	padding: 15px 10px;
	margin: 0px;
	display:inline-block;
}








/* Footer contact info with big icons
 ------------------------------ */	
 
.contact-info-holder {
	position: relative;
	width: 100%;
	padding: 0px;
}
.contact-info-holder .iconbox-xmedium {
	color: #04ce47;
}
.contact-info-holder:hover .iconbox-xmedium, .contact-info-holder.active .iconbox-xmedium {
	color: #fff;
	background-color: #04ce47;
}


/*============ Overlay Styles ============ */
.section-overlay {
	position: relative;
	width: 100%;
	padding: 0px;
	margin: 0px;
	left: 0px;
	top: 0px;
	float: left;
	z-index: 2;
}
.video-overlay {
	position: relative;
	width: 100%;
	padding: 0px;
	margin: 0px;
	left: 0px;
	top: 0px;
	float: left;
	z-index: 2;
}
.overlay {
	/*position: absolute;*/
	width: 100%;
	height: 100%;
	padding: 0px;
	margin: 0px;
	float: left;
	z-index: 10;
}

/*video padding
 ------------------------------ */
.video-tpadd {
	padding-top: 100px;
}
.video-bpadd {
	padding-bottom: 100px;
}

/* Overlay opacity styles
 ------------------------------ */
 
.bg-opacity-1 {
	background-color: rgba(0, 0, 0, 0.1);
}
.bg-opacity-2 {
	background-color: rgba(0, 0, 0, 0.2);
}
.bg-opacity-3 {
	background-color: rgba(0, 0, 0, 0.3);
}
.bg-opacity-4 {
	background-color: rgba(0, 0, 0, 0.4);
}
.bg-opacity-5 {
	background-color: rgba(0, 0, 0, 0.5);
}
.bg-opacity-6 {
	background-color: rgba(0, 0, 0, 0.6);
}
.bg-opacity-7 {
	background-color: rgba(0, 0, 0, 0.7);
}
.bg-opacity-8 {
	background-color: rgba(0, 0, 0, 0.8);
}
.bg-opacity-9 {
	background-color: rgba(0, 0, 0, 0.9);
}
/* Overlay Background colors
 ------------------------------ */
 /* Background light
 ------------------------------ */
.section-overlay.light {
	background-color: rgba(246, 246, 246, 0.9);
}
.section-overlay.light-2 {
	background-color: rgba(246, 246, 246, 0.8);
}
.section-overlay.light-3 {
	background-color: rgba(246, 246, 246, 0.7);
}
.section-overlay.light-4 {
	background-color: rgba(246, 246, 246, 0.6);
}
.section-overlay.light-5 {
	background-color: rgba(246, 246, 246, 0.5);
}
 /* Overlay Background dark
 ------------------------------ */
.section-overlay.dark {
	background-color: rgba(0, 0, 0, 0.7);
}
.section-overlay.dark-2 {
	background-color: rgba(0, 0, 0, 0.3);
}
.section-overlay.dark-3 {
	background-color: rgba(0, 0, 0, 0.9);
}
.section-overlay.dark-4 {
	background-color: rgba(0, 0, 0, 0.4);
}
 /* Overlay Background golden yellow
 ------------------------------ */
.section-overlay.primary {
	background-color: rgba(245, 30, 70, 0.9);
}
.parallax-overlay.primary {
	background-color: rgba(245, 30, 70, 0.9);
}
.parallax-overlay.light {
	background-color: rgba(246, 246, 246, 0.9);
}
.parallax-overlay.light-2 {
	background-color: rgba(246, 246, 246, 0.8);
}
.parallax-overlay.light-3 {
	background-color: rgba(246, 246, 246, 0.7);
}
.parallax-overlay.light-4 {
	background-color: rgba(246, 246, 246, 0.6);
}
.parallax-overlay.light-5 {
	background-color: rgba(246, 246, 246, 0.5);
}
/*============ Social Links ============ */	

.social-icons-1 {
	width: 100%;
	margin: 30px 0 0 0;
	list-style-type: none;
}
.social-icons-1 li {
	display:inline-block;
}
.social-icons-1 li a {
	font-size: 16px;
	padding: 0 20px 0 0;
	color: #fff;
	display:inline-block;
}
.social-icons-1 li a:hover, .social-icons-1 li a.active {
	color: #04ce47;
}

/* social icons 2
 -----------------------------------------------*/

.social-icons-2 {
	width: 100%;
	margin: 30px 0 0 0;
	list-style-type: none;
}
.social-icons-2 li {
	display:inline-block;
}
.social-icons-2 li a {
	width: 36px;
    height: 36px;
    text-align: center;
    line-height: 40px;
    display: inline-block;
    padding: 0px;
    color: #101010;
    background-color: #fff;
}
.social-icons-2 li a:hover, .social-icons-2 li a.active {
	color: #04ce47;
}

/* social icons 3
 -----------------------------------------------*/

.social-icons-3 {
	width: 100%;
	margin: 30px 0 0 0;
	list-style-type: none;
}
.social-icons-3.margin-left {
	margin: 10px 0 0 -40px;
}
.social-icons-3 li {
	display:inline-block;
}
.social-icons-3 li a {
	width: 36px;
    height: 36px;
    text-align: center;
    line-height: 37px;
    display: inline-block;
    padding: 0px;
    color: #101010;
	border:1px solid #e4e4e4;
    background-color: #fff;
}
.social-icons-3 li a:hover, .social-icons-3 li a.active {
	color: #fff;
	border:1px solid #101010;
    background-color: #101010;
}



/*============ Blog Posts ============ */

/* post image holder
 -----------------------------------------------*/
 
.blog-img-holder {
	width: 100%;
	padding: 0px;
	margin: 0px;
}
/* post date boxes
 -----------------------------------------------*/

.post-date-box {
	position: absolute;
	width: 90px;
	height: 90px;
	float: left;
	font-size: 25px;
	color: #fff;
	padding: 22px 0 0 0;
	margin: 0;
	z-index: 2;
	text-align: center;
	background-color: #04ce47;
	transition: all 0.3s ease-out 0s;
}
.post-date-box span {
	font-size: 13px;
	color: #fff;
	display: block;
}
.post-date-box .arrow-down {
	position: absolute;
	left: 25px;
	top: 81px;
	float: left;
	z-index: 3;
	border-top: 20px solid #04ce47;
}
/* Date box colors
 -----------------------------------------------*/	
.post-date-box.gyellow {
	background-color: #04ce47;
}
/* post author image holder
 -----------------------------------------------*/	
 
.post-author-image {
	position: absolute;
	width: 80px;
	height: 80px;
	right: 35px;
	top: 247px;
	float: left;
}
.post-author-image.round {
	border-radius: 100%;
	border: 5px solid #fff;
	text-align: center;
}
/* post info icons
 -----------------------------------------------*/
 
.post-infoicon {
	padding: 3px 12px 3px 12px;
	margin: 0 5px 0 0;
	color: #fff;
	float: left;
	font-size: 12px;
	border-radius: 20px;
	background-color: #04ce47;
}
.post-infoicon.dark {
	background-color: #161616;
}


/*============ Footer Newsletter ============ */

.newsletter .email-input {
	background-color: #FFF;
	border: 0px none;
	color: #999;
	float: left;
	font-size: 13px;
	font-weight: normal;
	height: 39px;
	line-height: 39px;
	padding: 0px 7px;
	width: 75%;
}
.newsletter .email-input.dark {
	background-color: #2d2d2d;
	color: #727272;
}
.newsletter .input-submit {
	background-color: #fd602c;
	border: 0px none;
	color: #FFF;
	cursor: pointer;
	float: left;
	height: 39px;
	padding: 0px 20px;
}
.newsletter .input-submit.gyellow {
	background-color: #04ce47;
}
.newsletter .input-submit.white {
	color: #161616;
	background-color: #fff;
}
.newsletter .input-submit.dark {
	color: #727272;
	background-color: #2d2d2d;
}

/*============ Video wrapers ============ */

.video-wrapper {
	overflow: hidden;
	width: 100%;
	padding:0px;
	height: auto;
}
.video-wrapper video {
	width: 100%;
}

/*video padding
 ------------------------------ */
.video-padding-top {
	padding-top: 100px;
}
.video-padding-bottom {
	padding-bottom: 100px;
}

/*============ Progress bar ============ */

/*style 1
 ------------------------------ */
.progressbar-style1 {
	margin-top: 10px;
	margin-bottom: 38px;
	font-weight: 400;
	letter-spacing: 1px;
	overflow: visible;
	height: 10px;
	color: #fff;
	background: #04ce47;
	border-radius: 0px;
	box-shadow: none;
	text-transform: uppercase;
}
.progressbar-style1 .progress-bar {
	position: relative;
	overflow: visible;
	background-color: #101010;
	font-size: 13px;
	color: #04ce47;
	line-height:44px;
	padding: 0px 0 0 0px;
	text-align: left;
	border:2px solid #04ce47;
}
.progressbar-style1 .progress-bar.yellow-3 {
	background-color: #f7c800;
}

/*style 2
 ------------------------------ */
.progressbar-style2 {
	margin-top: 10px;
	margin-bottom: 45px;
	font-weight: 400;
	letter-spacing: 1px;
	overflow: visible;
	height: 3px;
	color: #161616;
	background: #ccc;
	border-radius: 0px;
	box-shadow: none;
	text-transform: uppercase;
}
.progressbar-style2 .progress-bar {
	position: relative;
	overflow: visible;
	background-color: #161616;
	font-size: 13px;
	color: #161616;
	padding: 3px 0 0 0;
	text-align: left;
}

/*style 3
 ------------------------------ */
.progressbar-style3 {
	margin-top: 10px;
	margin-bottom: 45px;
	font-weight: 400;
	letter-spacing: 1px;
	overflow: visible;
	height: 8px;
	color: #161616;
	background: #fff;
	border-radius: 0px;
	box-shadow: none;
	text-transform: uppercase;
}
.progressbar-style3 .progress-bar {
	position: relative;
	overflow: visible;
	background-color: #e9b444;
	font-size: 13px;
	color: #fff;
	padding: 8px 0 0 0;
	text-align: left;
}
/*style 4
 ------------------------------ */
.progressbar-style4 {
	margin-top: 10px;
	margin-bottom: 45px;
	font-weight: 400;
	letter-spacing: 1px;
	overflow: visible;
	height: 8px;
	color: #161616;
	background: #e7e7e7;
	border-radius: 0px;
	box-shadow: none;
	text-transform: uppercase;
}
.progressbar-style4 .progress-bar {
	position: relative;
	overflow: visible;
	background-color: #ff9320;
	font-size: 13px;
	color: #727272;
	padding: 8px 0 0 0;
	text-align: left;
}
/*style 5
 ------------------------------ */
.progressbar-style5 {
	margin-top: 10px;
	margin-bottom: 45px;
	font-weight: 400;
	letter-spacing: 1px;
	overflow: visible;
	height: 8px;
	color: #161616;
	background: #f5f5f5;
	border-radius: 0px;
	box-shadow: none;
	text-transform: uppercase;
}
.progressbar-style5 .progress-bar {
	position: relative;
	overflow: visible;
	background-color: #101010;
	font-size: 13px;
	color: #101010;
	padding: 8px 0 0 0;
	text-align: left;
}

/*style 6
 ------------------------------ */
.progressbar-style6 {
	margin-top: 10px;
	margin-bottom: 45px;
	font-weight: 400;
	letter-spacing: 1px;
	overflow: visible;
	height: 8px;
	color: #161616;
	background: #04ce47;
	border-radius: 0px;
	box-shadow: none;
	text-transform: uppercase;
}
.progressbar-style6 .progress-bar {
	position: relative;
	overflow: visible;
	background-color: #101010;
	font-size: 13px;
	color: #101010;
	padding: 8px 0 0 0;
	text-align: left;
}


/*style 7
 ------------------------------ */
.progressbar-style7 {
	margin-top: 10px;
	margin-bottom: 45px;
	font-weight: 400;
	letter-spacing: 1px;
	overflow: visible;
	height: 8px;
	color: #161616;
	background: #fff;
	border-radius: 0px;
	box-shadow: none;
	text-transform: uppercase;
}
.progressbar-style7 .progress-bar {
	position: relative;
	overflow: visible;
	background-color: #04ce47;
	font-size: 13px;
	color: #fff;
	padding: 8px 0 0 0;
	text-align: left;
}



/*============ Newsletter ============ */

.email-input {
	background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
	border: 1px solid rgba(255, 255, 255, 0.4);
	color: #fff;
	float: left;
	font-size: 14px;
	font-weight: normal;
	height: 65px;
	line-height: 39px;
	padding: 0 15px;
	width: 87%;
}
.email-submit {
	background-color: #fff;
	border: 1px solid #fff;
	color: #242424;
	float: left;
	margin: 0px;
	padding: 20px 30px;
	text-transform: uppercase;
	transition: all 0.3s ease-out 0s;
}
.email-submit:hover {
	background-color: #242424;
	border: 1px solid #242424;
	color: #fff;
}

/*============ css progress circles ============ */

.knob {
	display: none;
}
div.demo {
	position: relative;
	text-align: center;
	width: 280px;
	float: left
}
div.demo > p {
	font-size: 20px
}
div.demo .title {
	position: absolute;
	text-align: center;
	width: 100%;
	font-size: 40px;
	float: left;
	top: 60px;
}
div.demo .title span {
	text-align: center;
	width: 100%;
	font-size: 20px;
	float: left;
	margin-top: 10px;
}

/*============ Page Scroll to Top ============ */

.scrollup {
	width: 40px;
	height: 40px;
	opacity: 1;
	position: fixed;
	bottom: 22px;
	right: 20px;
	display: none;
	text-indent: -9999px;
	background: #e28220 url(../images/scroll-top-arrow.png) no-repeat 15px 16px !important;
	z-index: 999;
}

/*============ google maps ============ */
.map{
    width: 100%;
    height: 300px;
    border: 1px solid #e4e4e4;
}
.map p{
	margin: 10px;
	color: #333;
}

/*============ blog ============ */

.blog-post-info {
	width: 100%;
}
.blog-post-info span {
	font-size: 13px;
	color: #b9b9b9;
	margin-right: 15px;
}

/*============ onepage sidebar content holder ============ */
.wrapper-main {
padding-left: 300px;
background-color: #fff;
}


/*============ header inner ============ */

.header-inner-tmargin {
    width: 100%;
    float: left;
    margin-top: -145px;
}
.header-inner-tmargin.less-mar {
    margin-top: -41px;
}
.header-inner {
	position:relative;
    width: 100%;
    /*height: 500px;*/
    float: left;
	overflow:hidden;
}
.header-inner.less-height {
    /*height: 1200px;*/
}
.header-inner .overlay {
	/*position:absolute;*/
    width: 100%;
    height: 100%;
    float: left;
	/*overflow:hidden;*/
	z-index:2;
	background-color:rgba(0, 0, 0, 0.5);
}
.header-inner .text {
    position: absolute;
    width: 100%;
	height:1000px;
    padding:16% 0 0 0;
	top:100px;
    margin: 0px;
    float: left;
    z-index: 3;
}
.header-inner .text .title {
	font-size:45px;
	font-weight:500;
	text-shadow: 2px 2px #3f3e3c;
	position: relative;
    top: 50%;
    left: 6%;
}
.header-inner .text .sub-title {
	width:100%;
	font-size:18px;
}

/* less height
 ------------------------------ */
.header-inner.less-height {
    /*height: 1000px;*/
}
.header-inner.less-height .text {
    height: 135px;
    padding:0% 0 0 0;
}

/*============ pagenation ============ */
.pagenation-holder {
	border-bottom: 1px solid #f0f0f0;
	float: left;
	margin: 0;
	padding: 25px 0 10px;
	width: 100%;
}
.pagenation-holder .breadcrumb {
	float:right;
	margin-bottom:0px;
	background-color:#fff;
}
.pagenation-holder .breadcrumb li {
    display: inline;
}
.pagenation-holder .breadcrumb li.current a {
	color:#04ce47;
}
.pagenation-holder .breadcrumb li+li:before {
    content:"» ";
}


/*============ 5 and 7 custom cols ============ */

.seven-cols .col-md-1, .seven-cols .col-sm-1, .seven-cols .col-lg-1 {
    width: 14.2857%;
}
.five-cols .col-md-1, .five-cols .col-sm-1, .five-cols .col-lg-1 {
    width: 20%;
}


/* footer newsletter
 ------------------------------ */
.bb-newsletter {
	width: 25%;
	height: 50px;
	float: left;
	padding: 10px;
	color:#fff;
	margin-right:20px;
	border-radius:40px;
	text-align:center;
	border: 1px solid rgba(255, 255, 255, 0.4);
	background:none;
	}
.bb-newsletter-email {
	width: 55%;
	height: 50px;
	float: left;
	padding: 10px;
	color:#fff;
	margin-right:20px;
	border-radius:40px;
	text-align:center;
	border: 1px solid rgba(255, 255, 255, 0.4);
	background:none;
	}
.bb-newsletter-btn {
    width: 15%;
    height: 50px;
    float: left;
    padding: 0px;
	margin-top:5px;
	color:#101010;
	text-transform:uppercase;
    border-radius:40px;
	border: 1px solid #04ce47;
	background-color: #04ce47;
}


/* footer newsletter 2
 ------------------------------ */
.co-newsletter {
	width: 25%;
	height: 50px;
	float: left;
	padding: 10px;
	color:#101010;
	margin-right:20px;
	border-radius:40px;
	text-align:center;
	border: 1px solid rgba(0, 0, 0, 0.4);
	background:none;
	}
.co-newsletter-email {
	width: 55%;
	height: 50px;
	float: left;
	padding: 10px;
	color:#101010;
	margin-right:20px;
	border-radius:40px;
	text-align:center;
	border: 1px solid rgba(0, 0, 0, 0.4);
	background:none;
	}
.co-newsletter-btn {
    width: 15%;
    height: 50px;
    float: left;
    padding: 0px;
	margin-top:5px;
	color:#727272;
	text-transform:uppercase;
    border-radius:40px;
	border: 1px solid #101010;
	background-color: #101010;
}


/*----------------------------RESPONSIVE STYLES------------------------------- */
/* ---------- MAX 1024PX ---------- */
@media screen and (max-width: 1024px) {	
.col-divider-margin {
    margin-top: 30px;
}
.text-box-right {
    padding: 0px 0px 0px 100px;
}
.wrapper-main {
width:100%;
padding-left:230px;
background-color: #fff;
}
.wrapper-main .container {
width:100%;
}
.header-inner.less-height .text {
    padding: 13% 0 0;
}
.header-inner .text {
    padding: 25% 0 0;
}
}
	
@media screen and (max-width: 1025px) {
.contact100-form{
    padding: 43px 88px 57px 230px !important;
}
.col-divider-margin {
    margin-top: 20px;
}
.col-divider-margin-1, .col-divider-margin-2, .col-divider-margin-3, .col-divider-margin-4, .col-divider-margin-5, .col-divider-margin-6 {
	margin-top: 20px;
}
.sec-m-margin-1 {
    margin-top: 0px;
}
.topbar-transparent {
	background-color:#101010;
}
.wrapper-main {
padding-left:0px;
}
.header-inner-tmargin {
    margin-top: 0px;
}
}	

	
	
/* ---------- MAX 991PX ---------- */
@media only screen and (max-width: 991px) {
.margin-bottom {
	margin-bottom: 30px;
}
.col-divider-margin {
    margin-top: 20px;
}
.col-divider-margin-1, .col-divider-margin-2, .col-divider-margin-3, .col-divider-margin-4, .col-divider-margin-5, .col-divider-margin-6 {
	margin-top: 20px;
}
.margin-left-1, .margin-left-2, .margin-left-3, .margin-left-4, .margin-left-5, .margin-left-6, .margin-left-7 {
    margin-left:0px;
}
.padding-top-1, .padding-top-2, .padding-top-3, .padding-top-4, .padding-top-5, .padding-top-6 {
	padding-top: 40px;
}
.padding-left-1, .padding-left-2, .padding-left-3, .padding-left-4, .padding-left-5, .padding-left-6, .padding-left-7, .padding-left-8 {
	padding-left: 40px;
}
.padding-right-1, .padding-right-2, .padding-right-3, .padding-right-4, .padding-right-5, .padding-right-6, .padding-right-7, .padding-right-8 {
	padding-right: 40px;
}
.text-box.padding-1, .text-box.padding-2, .text-box.padding-3, .text-box.padding-4, .text-box.padding-5, .text-box.padding-6, .text-box.padding-7, .text-box.padding-8, .text-box.padding-9 {
	padding: 40px;
}
.btn.btn-mar-left-1, .btn.btn-mar-left-2, .btn.btn-mar-left-3, .btn.btn-mar-left-4, .btn.btn-mar-left-5 {
	margin-left:0px
}
.sec-title-container.less-padding-1, .sec-title-container.less-padding-2, .sec-title-container.less-padding-3, .sec-title-container.less-padding-4,
.sec-title-container.less-padding-5, .sec-title-container.less-padding-6 {
    padding-bottom: 30px;
}
.header-inner {
    height: 385px;
}
.header-inner.less-height {
    height: 385px;
}
.header-inner.less-height .text {
    padding: 16% 0 0;
}
.header-inner .text {
    padding: 16% 0 0;
}

.sec-padding {
	padding: 100px 0 100px 0;
}

.section-side-image .text-inner-6 {
    padding: 40px;
}
}



/* ---------- MAX 800PX ---------- */
@media only screen and (max-width: 800px) {
	
.margin-bottom {
	margin-bottom: 30px;
}	
.margin-bottom-4, .margin-bottom-5 {
    margin-bottom: 20px;
}	
.margin-top-3, .margin-top-4, .margin-top-5, .margin-top-6, .margin-top-7 {
    margin-top: 20px;
}	
.col-divider-margin {
    margin-top: 20px;
}	
.col-divider-margin-1, .col-divider-margin-2, .col-divider-margin-3, .col-divider-margin-4, .col-divider-margin-5, .col-divider-margin-6 {
	margin-top: 20px;
}	
.margin-left-1, .margin-left-2, .margin-left-3, .margin-left-4, .margin-left-5, .margin-left-6, .margin-left-7 {
    margin-left:0px;
}	
.padding-top-1, .padding-top-2, .padding-top-3, .padding-top-4, .padding-top-5, .padding-top-6 {
	padding-top: 40px;
}	
.padding-left-1, .padding-left-2, .padding-left-3, .padding-left-4, .padding-left-5, .padding-left-6, .padding-left-7, .padding-left-8 {
	padding-left: 40px;
}	
.padding-right-1, .padding-right-2, .padding-right-3, .padding-right-4, .padding-right-5, .padding-right-6, .padding-right-7, .padding-right-8 {
	padding-right: 40px;
}	
.text-box.padding-1, .text-box.padding-2, .text-box.padding-3, .text-box.padding-4, .text-box.padding-5, .text-box.padding-6, .text-box.padding-7, .text-box.padding-8, .text-box.padding-9 {
	padding: 40px;
}	
.btn.btn-mar-left-1, .btn.btn-mar-left-2, .btn.btn-mar-left-3, .btn.btn-mar-left-4, .btn.btn-mar-left-5 {
	margin-left:0px
}
.sec-title-container.less-padding-1, .sec-title-container.less-padding-2, .sec-title-container.less-padding-3, .sec-title-container.less-padding-4,
.sec-title-container.less-padding-5, .sec-title-container.less-padding-6 {
    padding-bottom: 30px;
}
.sec-padding {
	padding: 60px 0 60px 0;
}
.sec-more-padding-1 {
	padding: 60px 0 60px 0;
}
.sec-bpadding-2, .sec-bpadding-3, .sec-bpadding-4 {
	padding-bottom: 60px;
}
.sec-tpadding-2, .sec-tpadding-3, .sec-tpadding-4 {
	padding-top: 60px;
}
.section-xmore-padding, .section-less-padding, .section-less-padding-2 {
	padding: 60px 0 60px 0;
}
.sec-moreless-padding {
	padding: 60px 0 60px 0;
}
.thumbs li {
    width: 10%;
}
.fo-copyright-holder .social-iconbox {
    left: 33%;
	top: -87px;
}
.fo-sec-3 {
    padding: 244px 0 0 0;
}
.header-inner {
    height: 310px;
}
.header-inner.less-height {
    height: 310px;
}
.section-side-image .text-inner-6 {
    padding: 40px;
}

.sec-padding-4 {
    padding: 0 0 0 0;
}


 
}



/* ---------- MAX 768PX ---------- */
@media only screen and (max-width: 768px) {

.margin-bottom {
	margin-bottom: 30px;
}
.margin-bottom-4, .margin-bottom-5 {
    margin-bottom: 20px;
}	
.margin-top-3, .margin-top-4, .margin-top-5, .margin-top-6, .margin-top-7 {
    margin-top: 20px;
}
.col-divider-margin {
    margin-top: 20px;
}
.col-divider-margin-1, .col-divider-margin-2, .col-divider-margin-3, .col-divider-margin-4, .col-divider-margin-5, .col-divider-margin-6 {
	margin-top: 20px;
}
.margin-left-1, .margin-left-2, .margin-left-3, .margin-left-4, .margin-left-5, .margin-left-6, .margin-left-7 {
    margin-left:0px;
}
.padding-top-1, .padding-top-2, .padding-top-3, .padding-top-4, .padding-top-5, .padding-top-6 {
	padding-top: 40px;
}
.padding-top-1, .padding-top-2, .padding-top-3, .padding-top-4, .padding-top-5, .padding-top-6 {
	padding-top: 40px;
}
.padding-left-1, .padding-left-2, .padding-left-3, .padding-left-4, .padding-left-5, .padding-left-6, .padding-left-7, .padding-left-8 {
	padding-left: 40px;
}
.padding-right-1, .padding-right-2, .padding-right-3, .padding-right-4, .padding-right-5, .padding-right-6, .padding-right-7, .padding-right-8 {
	padding-right: 40px;
}
.text-box.padding-1, .text-box.padding-2, .text-box.padding-3, .text-box.padding-4, .text-box.padding-5, .text-box.padding-6, .text-box.padding-7, .text-box.padding-8, .text-box.padding-9 {
	padding: 40px;
}
.btn.btn-mar-left-1, .btn.btn-mar-left-2, .btn.btn-mar-left-3, .btn.btn-mar-left-4, .btn.btn-mar-left-5 {
	margin-left:0px
}
.sec-title-container.less-padding-1, .sec-title-container.less-padding-2, .sec-title-container.less-padding-3, .sec-title-container.less-padding-4,
.sec-title-container.less-padding-5, .sec-title-container.less-padding-6 {
    padding-bottom: 30px;
}
.sec-padding {
	padding: 60px 0 60px 0;
}
.sec-more-padding-1 {
	padding: 60px 0 60px 0;
}
.sec-bpadding-2, .sec-bpadding-3, .sec-bpadding-4 {
	padding-bottom: 60px;
}
.sec-tpadding-2, .sec-tpadding-3, .sec-tpadding-4 {
	padding-top: 60px;
}
.section-xmore-padding, .section-less-padding, .section-less-padding-2 {
	padding: 60px 0 60px 0;
}
.sec-moreless-padding {
	padding: 60px 0 60px 0;
}
.fo-copyright-holder .social-iconbox {
    left: 33%;
	top: -87px;
}
.header-inner {
    height: 325px;
}
.header-inner.less-height {
    height: 325px;
}
.five-cols .col-md-1, .five-cols .col-sm-1, .five-cols .col-lg-1 {
    width: 100%;
}

}



/* ---------- MAX 767PX ---------- */
@media only screen and (max-width: 767px) {
	
.margin-bottom {
	margin-bottom: 30px;
}	
.margin-bottom-4, .margin-bottom-5 {
    margin-bottom: 20px;
}	
.margin-top-3, .margin-top-4, .margin-top-5, .margin-top-6, .margin-top-7 {
    margin-top: 20px;
}	
.col-divider-margin {
    margin-top: 20px;
}	
.col-divider-margin-1, .col-divider-margin-2, .col-divider-margin-3, .col-divider-margin-4, .col-divider-margin-5, .col-divider-margin-6 {
	margin-top: 20px;
}		
.margin-left-1, .margin-left-2, .margin-left-3, .margin-left-4, .margin-left-5, .margin-left-6, .margin-left-7 {
    margin-left:0px;
}
.padding-top-1, .padding-top-2, .padding-top-3, .padding-top-4, .padding-top-5, .padding-top-6 {
	padding-top: 40px;
}
.padding-left-1, .padding-left-2, .padding-left-3, .padding-left-4, .padding-left-5, .padding-left-6, .padding-left-7, .padding-left-8 {
	padding-left: 40px;
}
.padding-right-1, .padding-right-2, .padding-right-3, .padding-right-4, .padding-right-5, .padding-right-6, .padding-right-7, .padding-right-8 {
	padding-right: 40px;
}
.text-box.padding-1, .text-box.padding-2, .text-box.padding-3, .text-box.padding-4, .text-box.padding-5, .text-box.padding-6, .text-box.padding-7, .text-box.padding-8, .text-box.padding-9 {
	padding: 40px;
}
.btn.btn-mar-left-1, .btn.btn-mar-left-2, .btn.btn-mar-left-3, .btn.btn-mar-left-4, .btn.btn-mar-left-5 {
	margin-left:0px
}
.sec-title-container.less-padding-1, .sec-title-container.less-padding-2, .sec-title-container.less-padding-3, .sec-title-container.less-padding-4,
.sec-title-container.less-padding-5, .sec-title-container.less-padding-6 {
    padding-bottom: 30px;
}

}


@media screen and (max-width: 640px) {
.margin-bottom {
	margin-bottom: 30px;
}	
.margin-bottom-4, .margin-bottom-5 {
    margin-bottom: 20px;
}	
.margin-top-3, .margin-top-4, .margin-top-5, .margin-top-6, .margin-top-7 {
    margin-top: 20px;
}
.col-divider-margin {
    margin-top: 20px;
}
.col-divider-margin-1, .col-divider-margin-2, .col-divider-margin-3, .col-divider-margin-4, .col-divider-margin-5, .col-divider-margin-6 {
	margin-top: 20px;
}
.margin-left-1, .margin-left-2, .margin-left-3, .margin-left-4, .margin-left-5, .margin-left-6, .margin-left-7 {
    margin-left:0px;
}
.padding-top-1, .padding-top-2, .padding-top-3, .padding-top-4, .padding-top-5, .padding-top-6 {
	padding-top: 40px;
}
.padding-left-1, .padding-left-2, .padding-left-3, .padding-left-4, .padding-left-5, .padding-left-6, .padding-left-7, .padding-left-8 {
	padding-left: 40px;
}
.padding-right-1, .padding-right-2, .padding-right-3, .padding-right-4, .padding-right-5, .padding-right-6, .padding-right-7, .padding-right-8 {
	padding-right: 40px;
}
.lspace-sm, .lspace-1, .lspace-2, .lspace-3, .lspace-4, .lspace-5{
	letter-spacing:0px;
}
.text-box.padding-1, .text-box.padding-2, .text-box.padding-3, .text-box.padding-4, .text-box.padding-5, .text-box.padding-6, .text-box.padding-7, .text-box.padding-8, .text-box.padding-9 {
	padding: 40px;
}
.btn.btn-mar-left-1, .btn.btn-mar-left-2, .btn.btn-mar-left-3, .btn.btn-mar-left-4, .btn.btn-mar-left-5 {
	margin-left:0px
}
.sec-title-container.less-padding-1, .sec-title-container.less-padding-2, .sec-title-container.less-padding-3, .sec-title-container.less-padding-4,
.sec-title-container.less-padding-5, .sec-title-container.less-padding-6 {
    padding-bottom: 30px;
}
.sec-padding {
	padding: 40px 0 40px 0;
}
.sec-more-padding-1 {
	padding: 40px 0 40px 0;
}
.sec-bpadding-2, .sec-bpadding-3, .sec-bpadding-4 {
	padding-bottom: 40px;
}
.sec-tpadding-2, .sec-tpadding-3, .sec-tpadding-4 {
	padding-top: 40px;
}
.section-xmore-padding, .section-less-padding, .section-less-padding-2 {
	padding: 40px 0 40px 0;
}
.sec-moreless-padding {
	padding: 40px 0 40px 0;
}
#style-customizer{ 
display:none;
}
 .text-box.sbox-padd-left {
	padding-left:80px;
}
.fo-sec-1 .newsletter-box {
    top: 0;
}
.fo-sec-1 {
   top:0px;
   padding: 315px 0 0 0;
}
.fo-copyright-holder .social-iconbox {
    left: 29%;
    top: -67px;
}
.section-side-image .text-inner-5 {
    padding: 40px 40px 40px 40px;
}
.header-inner {
    height: 270px;
}
.header-inner.less-height {
    height: 270px;
}


.sec-padding-4 {
    padding: 0 0 0 0;
}









}

.layer4{
    /*height: 700px;*/
}
.layer4 .header-inner{
    /*height: 700px;*/
}

@media screen and (max-width: 480px) {
.margin-bottom {
	margin-bottom: 30px;
}
.margin-bottom-4, .margin-bottom-5 {
    margin-bottom: 20px;
}	
.margin-top-3, .margin-top-4, .margin-top-5, .margin-top-6, .margin-top-7 {
    margin-top: 20px;
}
.col-divider-margin {
    margin-top: 20px;
}
.col-divider-margin-1, .col-divider-margin-2, .col-divider-margin-3, .col-divider-margin-4, .col-divider-margin-5, .col-divider-margin-6 {
	margin-top: 20px;
}
.margin-left-1, .margin-left-2, .margin-left-3, .margin-left-4, .margin-left-5, .margin-left-6, .margin-left-7 {
    margin-left:0px;
}
.padding-top-1, .padding-top-2, .padding-top-3, .padding-top-4, .padding-top-5, .padding-top-6 {
	padding-top: 30px;
}
.padding-left-1, .padding-left-2, .padding-left-3, .padding-left-4, .padding-left-5, .padding-left-6, .padding-left-7, .padding-left-8 {
	padding-left: 30px;
}
.padding-right-1, .padding-right-2, .padding-right-3, .padding-right-4, .padding-right-5, .padding-right-6, .padding-right-7, .padding-right-8 {
	padding-right: 30px;
}
.lspace-sm, .lspace-1, .lspace-2, .lspace-3, .lspace-4, .lspace-5{
	letter-spacing:0px;
}
.text-box.padding-1, .text-box.padding-2, .text-box.padding-3, .text-box.padding-4, .text-box.padding-5, .text-box.padding-6, .text-box.padding-7, .text-box.padding-8, .text-box.padding-9 {
	padding: 30px;
}
.btn.btn-mar-left-1, .btn.btn-mar-left-2, .btn.btn-mar-left-3, .btn.btn-mar-left-4, .btn.btn-mar-left-5 {
	margin-left:0px
}
.topbar .border-r {
    border-right: none;
}
.topbar .padd-left {
    padding-left: 0px;
}
.sec-title-container.less-padding-1, .sec-title-container.less-padding-2, .sec-title-container.less-padding-3, .sec-title-container.less-padding-4,
.sec-title-container.less-padding-5, .sec-title-container.less-padding-6 {
    padding-bottom: 30px;
}
.sec-padding {
	padding: 40px 0 40px 0;
}
.sec-more-padding-1 {
	padding: 40px 0 40px 0;
}
.sec-bpadding-2, .sec-bpadding-3, .sec-bpadding-4 {
	padding-bottom: 40px;
}
.sec-tpadding-2, .sec-tpadding-3, .sec-tpadding-4 {
	padding-top: 40px;
}
.section-xmore-padding, .section-less-padding, .section-less-padding-2 {
	padding: 40px 0 40px 0;
}
.sec-moreless-padding {
	padding: 40px 0 40px 0;
}
#style-customizer{ 
display:none;
}
.fo-copyright-holder .social-iconbox {
    left: 12%;
	top: -67px;
}
.fo-sec-3 {
    padding: 287px 0 0 0;
}
.section-side-image .text-inner-5 {
    padding: 40px 40px 40px 40px;
}
.header-inner .text .title {
    font-size: 20px;
}
.header-inner .text .sub-title {
    font-size: 14px;
}
.header-inner {
    height: 225px;
}
.header-inner.less-height {
    height: 225px;
}
.clients-list.grid-cols-6 li {
    width: 50%;
}

.section-side-image .text-inner {
    padding: 40px 40px 40px 40px;
}

.sec-title-container {
    padding-bottom: 70px;
}
.layer4{
    height: 1140px;
}
.layer4 .header-inner{
    height: 1140px;
}
.layer4 .notee{
    margin-left: 15% !important;
}
.layer4 .notee1{
    margin-left: 15% !important;
}
.layer4 .validate-form{
    left: 93% !important;
}
}



/* ---------- MAX 360PX ---------- */
@media screen and (max-width: 360px) {
.margin-bottom {
	margin-bottom: 30px;
}
.margin-bottom-4, .margin-bottom-5 {
    margin-bottom: 20px;
}	
.margin-top-3, .margin-top-4, .margin-top-5, .margin-top-6, .margin-top-7 {
    margin-top: 20px;
}
.col-divider-margin {
    margin-top: 20px;
}
.col-divider-margin-1, .col-divider-margin-2, .col-divider-margin-3, .col-divider-margin-4, .col-divider-margin-5, .col-divider-margin-6 {
	margin-top: 20px;
}
.margin-left-1, .margin-left-2, .margin-left-3, .margin-left-4, .margin-left-5, .margin-left-6, .margin-left-7 {
    margin-left:0px;
}
.padding-top-1, .padding-top-2, .padding-top-3, .padding-top-4, .padding-top-5, .padding-top-6 {
	padding-top: 25px;
}
.padding-left-1, .padding-left-2, .padding-left-3, .padding-left-4, .padding-left-5, .padding-left-6, .padding-left-7, .padding-left-8 {
	padding-left: 25px;
}
.padding-right-1, .padding-right-2, .padding-right-3, .padding-right-4, .padding-right-5, .padding-right-6, .padding-right-7, .padding-right-8 {
	padding-right: 25px;
}
.lspace-sm, .lspace-1, .lspace-2, .lspace-3, .lspace-4, .lspace-5{
	letter-spacing:0px;
}
.iconbox-dxlarge.left, .iconbox-xlarge.left, .iconbox-large.left, .iconbox-xmedium.left, .iconbox-medium.left, .iconbox-smedium.left, .iconbox-small.left, .iconbox-tiny.left, .iconbox-xtiny.left {
    margin: 0px 0px 20px 0px;
}
.imgbox-dxlarge.left, .imgbox-dxlarge-2.left, .imgbox-xlarge.left, .imgbox-large.left, .imgbox-xmedium.left, .imgbox-medium.left, .imgbox-smedium.left, .imgbox-small.left, .imgbox-tiny.left, .imgbox-xtiny.left {
    float: left;
    margin: 0px 0 20px 0px;
}
.text-box-right {
    width:100%;
    padding: 0 0 0 0;
}
.text-box-left {
	width:100%;
    padding: 0 0 0 0;
}
.text-box.padding-1, .text-box.padding-2, .text-box.padding-3, .text-box.padding-4, .text-box.padding-5, .text-box.padding-6, .text-box.padding-7, .text-box.padding-8, .text-box.padding-9 {
	padding: 25px;
}
.text-box-left.more-padding-1, .text-box-left.more-padding-2, .text-box-left.less-padding-1, .text-box-left.less-padding-2 {
	padding: 0px 0px 0px 0px;
}
.text-box-right.more-padding-1, .text-box-right.more-padding-2, .text-box-right.more-padding-3, .text-box-right.more-padding-4, .text-box-right.less-padding-1, .text-box-right.less-padding-2, .text-box-right.less-padding-3 {
	padding: 0px 0px 0px 0px;
}
.btn.btn-mar-left-1, .btn.btn-mar-left-2, .btn.btn-mar-left-3, .btn.btn-mar-left-4, .btn.btn-mar-left-5 {
	margin-left:0px
}
.btn.btn-large {
    padding: 15px 30px;
}
.section-side-image .text-inner-2 {
    padding: 40px;
}
.section-side-image .text-inner {
	padding: 40px 40px 40px 0;
}
.section-side-image .text-inner.two {
	padding: 0px 40px 0px 0;
}
.section-side-image-2 .background-imgholder-2.top-padd {
	padding-top: 40px;
}
.section-side-image-2 .text-inner.two {
	padding: 0px 40px 0px 0;
}
.section-side-image .text-inner-5 {
    padding: 40px 40px 40px 40px;
}
.sec-title-container.less-padding-1, .sec-title-container.less-padding-2, .sec-title-container.less-padding-3, .sec-title-container.less-padding-4,
.sec-title-container.less-padding-5, .sec-title-container.less-padding-6 {
    padding-bottom: 30px;
}
.sec-padding {
	padding: 40px 0 40px 0;
}
.sec-more-padding-1 {
	padding: 40px 0 40px 0;
}
.sec-bpadding-2, .sec-bpadding-3, .sec-bpadding-4 {
	padding-bottom: 40px;
}
.sec-tpadding-2, .sec-tpadding-3, .sec-tpadding-4 {
	padding-top: 40px;
}
.section-xmore-padding, .section-less-padding, .section-less-padding-2 {
	padding: 40px 0 40px 0;
}
.sec-moreless-padding {
	padding: 40px 0 40px 0;
}
.fo-copyright-holder .social-iconbox {
    left: 5%;
}
.fo-sec-1 .newsletter-box {
    padding: 35px;
}
.fo-sec-2 .social-iconbox {
    left: 14%;
    top: -67px;
}
.section-side-image .text-inner-3 {
    padding: 30px 30px 0px 30px;
}
.fo-sec-3 {
    padding: 328px 0 0 0;
}
.text-box-right {
    width: 100%;
    padding: 0 0 0 0;
    float: left;
}
.text-box-right.less-padding-4 {
    padding: 0px 0px 0px 0px;
}
.header-inner {
    height: 195px;
}
.header-inner.less-height {
    height: 195px;
}
.sec-title-container {
    padding-bottom: 40px;
}

.sec-padding-4 {
    padding: 0 0 0 0;
}

.section-side-image .text-inner {
    padding: 40px 40px 40px 40px;
}





}


/* ---------- MAX 320PX ---------- */
@media only screen and (max-width: 320px) {
.margin-bottom {
	margin-bottom: 30px;
}
.margin-bottom-4, .margin-bottom-5 {
    margin-bottom: 20px;
}	
.margin-top-3, .margin-top-4, .margin-top-5, .margin-top-6, .margin-top-7 {
    margin-top: 20px;
}
.col-divider-margin {
    margin-top: 20px;
}
.col-divider-margin-1, .col-divider-margin-2, .col-divider-margin-3, .col-divider-margin-4, .col-divider-margin-5, .col-divider-margin-6 {
	margin-top: 20px;
}
.margin-left-1, .margin-left-2, .margin-left-3, .margin-left-4, .margin-left-5, .margin-left-6, .margin-left-7 {
    margin-left:0px;
}
.padding-top-1, .padding-top-2, .padding-top-3, .padding-top-4, .padding-top-5, .padding-top-6 {
	padding-top: 20px;
}
.padding-left-1, .padding-left-2, .padding-left-3, .padding-left-4, .padding-left-5, .padding-left-6, .padding-left-7, .padding-left-8 {
	padding-left: 20px;
}
.padding-right-1, .padding-right-2, .padding-right-3, .padding-right-4, .padding-right-5, .padding-right-6, .padding-right-7, .padding-right-8 {
	padding-right: 20px;
}
.lspace-sm, .lspace-1, .lspace-2, .lspace-3, .lspace-4, .lspace-5{
	letter-spacing:0px;
}
.iconbox-dxlarge.left, .iconbox-xlarge.left, .iconbox-large.left, .iconbox-xmedium.left, .iconbox-medium.left, .iconbox-smedium.left, .iconbox-small.left, .iconbox-tiny.left, .iconbox-xtiny.left {
    margin: 0px 0px 20px 0px;
}
.imgbox-dxlarge.left, .imgbox-dxlarge-2.left, .imgbox-xlarge.left, .imgbox-large.left, .imgbox-xmedium.left, .imgbox-medium.left, .imgbox-smedium.left, .imgbox-small.left, .imgbox-tiny.left, .imgbox-xtiny.left {
    float: left;
    margin: 0px 0 20px 0px;
}
.text-box-right {
    width:100%;
    padding: 0 0 0 0;
}
.text-box-left {
	width:100%;
    padding: 0 0 0 0;
}
.text-box.padding-1, .text-box.padding-2, .text-box.padding-3, .text-box.padding-4, .text-box.padding-5, .text-box.padding-6, .text-box.padding-7, .text-box.padding-8, .text-box.padding-9 {
	padding: 20px;
}
.text-box-right.more-padding-1, .text-box-right.more-padding-2, .text-box-right.more-padding-3, .text-box-right.more-padding-4, .text-box-right.less-padding-1, .text-box-right.less-padding-2, .text-box-right.less-padding-3 {
	padding: 0px 0px 0px 0px;
}
.btn.btn-mar-left-1, .btn.btn-mar-left-2, .btn.btn-mar-left-3, .btn.btn-mar-left-4, .btn.btn-mar-left-5 {
	margin-left:0px
}
.btn.btn-large {
    padding: 15px 30px;
}
.section-side-image .text-inner {
	padding: 40px 40px 40px 0;
}
.section-side-image .text-inner.two {
	padding: 0px 40px 0px 0;
}
.section-side-image-2 .background-imgholder-2.top-padd {
	padding-top: 40px;
}
.section-side-image-2 .text-inner.two {
	padding: 0px 40px 0px 0;
}
.sec-title-container.less-padding-1, .sec-title-container.less-padding-2, .sec-title-container.less-padding-3, .sec-title-container.less-padding-4,
.sec-title-container.less-padding-5, .sec-title-container.less-padding-6 {
    padding-bottom: 30px;
}
.sec-padding {
	padding: 30px 0 30px 0;
}
.sec-more-padding-1 {
	padding: 30px 0 30px 0;
}
.sec-bpadding-2, .sec-bpadding-3, .sec-bpadding-4 {
	padding-bottom: 30px;
}
.sec-tpadding-2, .sec-tpadding-3, .sec-tpadding-4 {
	padding-top: 30px;
}
.section-xmore-padding, .section-less-padding, .section-less-padding-2 {
	padding: 30px 0 30px 0;
}
.sec-moreless-padding {
	padding: 30px 0 30px 0;
}
.fo-copyright-holder .social-iconbox {
    left: 16%;
    top: -59px;
}

.fo-copyright-holder .social-iconbox {
    width: 71%;
}
.fo-copyright-holder .social-iconbox .side-shape1.right-icon {
    left: 213px;
}
.fo-sec-2 .social-iconbox {
    left: 9%;
    top: -57px;
}
.fo-sec-3 {
    padding: 409px 0 0 0;
}
.fo-copyright-holder .social-iconbox .side-shape1 {
    left: -13px;
    top: 1px;
}
.fo-copyright-holder .social-iconbox .side-shape1.right-icon {
    left: 205px;
	top: 1px;
}
.header-inner {
    height: 170px;
}
.header-inner.less-height {
    height: 170px;
}
.sec-title-container {
    padding-bottom: 35px;
}

}
.logo-middle img{
	position: relative;
	top: -41px;
}
.menu{
	position: relative !important;
	left: 0%;
}

.header-section ul li > a{
	color: #fff !important;
	font-size: 19px !important;
	font-weight: 600 !important;
	font-style: oblique !important;
}
.header-section ul li:hover > a{
color: #e28220 !important;
}
.carousel-control .glyphicon-chevron-right, .carousel-control .icon-next , .carousel-control .glyphicon-chevron-left, .carousel-control .icon-prev{
color: #e28220 !important;
}
.carousel-indicators li{
	border: 1px solid #e28220 !important;
    /* background-color: #e28220 !important; */
}
.carousel-indicators .active{
	background-color: #e28220 !important;
}
.ce-title-line.align-left{
	background-color: #e28220 !important;
	width: 20% !important;
	height: 4px !important;
}
.about{
	background-color: #e3e3e3 !important;
	padding: 0px 0 220px 0 !important;
}
.about_img {
	height: 400px;
}
.btn.btn-prim{
	background-color: #1E2C3A !important;
	color:#e28220 !important ;
	font-size: 18px !important;
	font-weight: 500 !important;
}
.btn.btn-prim:hover{
	background-color: #e28220 !important;
	color:#1E2C3A  !important ;
}
.about p{
	font-size: 17px !important;
	font-weight: 600 !important;
	color: #000;
    font-family: 'Montserrat', sans-serif;
}
.about h2{
	color: #1E2C3A !important;
}
.features-section-eight {
    position: relative;
}
.features-section-eight .auto-container {
    max-width: 1330px;
}
.auto-container {
    position: static;
    max-width: 1230px;
    padding: 0px 30px;
    margin: 0 auto;
}
.sec-title-two {
    position: relative;
    margin-bottom: 40px;
}
.centered {
    text-align: center;
}
.centered {
    margin-left: auto;
    margin-right: auto;
}
.sec-title-two .title {
    position: relative;
    color: #d43396;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.sec-title-two h2 {
    position: relative;
    font-size: 40px;
    color: #394963;
    line-height: 1.2em;
    font-weight: 700;
    margin-top: 10px;
    font-family: 'Lato', sans-serif;
}
.features-section-eight .inner-container {
    position: relative;
    padding-top: 110px;
}
.features-section-eight .inner-container .circles-boxed {
    position: absolute;
    top: 100px;
    left: 0px;
    right: 0px;
    bottom: 0px;
}
.features-section-eight .inner-container .circles-boxed .circle-one {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 885px;
    width: 885px;
    border-radius: 50%;
    margin-left: -442px;
    margin-top: -442px;
    background-color: rgba(207,49,146,0.03);
}
.features-section-eight .inner-container .circles-boxed .circle-two {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 700px;
    width: 700px;
    border-radius: 50%;
    margin-left: -350px;
    margin-top: -350px;
    background-color: rgba(207,49,146,0.03);
}
.features-section-eight .inner-container .circles-boxed .circle-three {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 500px;
    width: 500px;
    border-radius: 50%;
    margin-left: -250px;
    margin-top: -250px;
    background-color: rgba(207,49,146,0.03);
}
.features-section-eight .inner-container .circles-boxed .circle-four {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 365px;
    width: 365px;
    border-radius: 50%;
    margin-left: -182px;
    margin-top: -182px;
    background-color: rgba(207,49,146,0.03);
}
.features-section-eight .left-column {
    position: relative;
    z-index: 5;
}
@media (min-width: 992px){
.col-lg-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
}}
@media (min-width: 768px){
.col-md-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}}
@media (min-width: 576px){
.col-sm-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}}
.features-section-eight .left-column .inner-column {
    position: relative;
    margin-right: -56px;
    padding-top: 140px;
}
.feature-block-five {
    position: relative;
    margin-bottom: 60px;
    cursor: pointer;
    z-index: 1;
}
.feature-block-five .inner-box {
    position: relative;
    text-align: right;
    padding-top: 8px;
    min-height: 70px;
    padding-right: 100px;
}
.feature-block-five.active .inner-box .icon-box {
    transform: scale(1.5);
    box-shadow: 0px 5px 15px 2px grey;
}
.box1{
	background-image: linear-gradient(to bottom right, #c8cdd1, #818f97) !important;
	position: relative !important;
	top: -300px !important;
	right: -45% !important;
}
.box2{
	position: relative !important;
	top: -275px !important;
	right: 10% !important;
	background-image: linear-gradient(to bottom right, #c8cdd1, #818f97) !important;}
.box3{
	position: relative !important;
	top: -250px !important;
	right: -15% !important;
	background-image: linear-gradient(to bottom right, #c8cdd1, #818f97) !important;}
.box4{
	position: relative !important;
	top: -280px !important;
	right: -125% !important;
	background-image: linear-gradient(to bottom right, #c8cdd1, #818f97) !important;}
.box5{
	position: relative !important;
	top: -165px !important;
	right: 40% !important;
	background-image: linear-gradient(to bottom right, #c8cdd1, #818f97) !important;}
.box6{
	position: relative !important;
	top: -130px !important;
	right: -35% !important;
	background-image: linear-gradient(to bottom right, #c8cdd1, #818f97) !important;}
.box7{
	position: relative !important;
	top: -54px !important;
	right: 5% !important;
	background-image: linear-gradient(to bottom right, #c8cdd1, #818f97) !important;}
.box8{
	position: relative !important;
	top: -86px !important;
	right: 88% !important;
	background-image: linear-gradient(to bottom right, #c8cdd1, #818f97) !important;}
.box9{
	position: relative !important;
	top: -290px !important;
	right: 235% !important;
	background-image: linear-gradient(to bottom right, #c8cdd1, #818f97) !important;}
.feature-block-five .inner-box .icon-box {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 150px;
    height: 150px;
    line-height: 72px;
    border-radius: 50%;
    text-align: center;
    font-size: 28px;
    color: #ffffff;
    display: inline-block;
    background-color: #4188ca;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    transition: all 500ms ease;
}
.feature-block-five img{
	width: 130px;
    position: relative;
    top: -27px;
}
.feature-block-five .box2 img{
	width: 110px !important;
    top: -14px;
}
.box9 img , .box8 img{
	width: 125px !important;
    position: relative;
    top: -20px !important;
}
.box9 img {
	width: 90px !important;
}
.box6 img{
	width: 105px !important;
    position: relative;
    top: -16px !important;
}
.box6 h3 , .box5 h3{
	left: -10% !important;
}
.box9 h3 , .box8 h3 , .box7 h3{
	left: 0% !important;
}
.box4 img{
	
	width: 115px;
	position: relative;
	top: -18px;
	left: 10px;
	
}
.flaticon-smartphone:before {
    content: "\f12d";
}
.feature-block-five .inner-box h3 {
    position: relative;
    color: #394963;
    font-size: 14px;
    line-height: 1.3em;
    font-weight: 700;
    font-family: 'Lato', sans-serif;
	left: -18%;
    position: relative;
    top: -17px;
}
.feature-block-five .inner-box .line{
    
	left: 20%;
    position: relative;
}
.feature-block-five .inner-box .text {
    position: relative;
    color: #7f8897;
    font-size: 18px;
    margin-top: 5px;
    font-family: 'Lato', sans-serif;
}
.features-section-eight .image-column {
    position: relative;
    text-align: center;
}
.features-section-eight .image-column .inner-column {
    position: relative;
}
.features-section-eight .image-column .inner-column .image {
    position: relative;
    z-index: 1;
    display: inline-block;
    width: 67%;
    height: 450px;
    border-radius: 28px;
    box-shadow: 0px 0px 25px rgb(0 0 0 / 10%);
    background: url(../images/resource/mokeup-3.png) center center no-repeat;
    background-size: 100% 100%;
    opacity: 1;
    overflow: hidden;
}
.features-section-eight .image-column .inner-column .image .image-box {
    position: absolute;
    left: 12px;
    top: 52px;
    width: 286px;
    height: 546px;
    overflow: hidden;
}
.features-section-eight .image-column .inner-column .image.appeared .image-box img {
    -webkit-animation: slideInUp 0.5s linear 1;
    -moz-animation: slideInUp 0.5s linear 1;
    -ms-animation: slideInUp 0.5s linear 1;
    animation: slideInUp 0.5s linear 1;
}
.features-section-eight .image-column .inner-column .image .image-box img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.icon-box{
	animation-duration: 2s;
	animation-delay: 0.9s;
}
.line{
	position: relative;
	left: 43%;
	width: 10% !important;
	background-color: #e28220 !important;
    height: 6px !important;
	margin: 15px 88% 0 auto;
}
.image-column h1{
color: #e28220 !important;
font-size: 54px !important;
    font-weight: 300 !important;
	text-align: center;
	position: relative;
    top: 25px;
}
.image-column p{
	color: #e28220 !important;
	font-size: 50px !important;
		font-weight: 600 !important;
		position: relative;
		left: -10px;
		width: 432px;
		top: 2px;
		/* text-align: end; */
	}
	.image-column img{
		position: relative;
    left: -2px;
	top: 10px;
		}
.partners{
			background-color: #c1c1c1 !important;
			position: relative;
    top: -220px;
	margin-bottom: -220px;
		}
.products h2{ 
color: #e28220 !important;
font-size: 50px;
    font-weight: 600;
    padding-top: 35px;

}
.wood{
	width: 150px;
}
.wood h1 {
    background-color: #e28220;
    color: #1E2C3A;
    width: max-content;
    padding: 20px 20px 20px 20px;
	margin: 30px 30px 30px 30px;
}
.wood_inner h1{
	border: 4px solid #e28220;
	color: #1E2C3A;
	width: max-content;
	padding: 20px 20px 20px 20px;
	margin: 30px 30px 30px 30px;
}
.single-products-catagory{
	border-top-right-radius: 25px;
	border-top-left-radius: 25px;
}
.border1{
	border-top: 10px solid #e28220;
	border-top-right-radius: 25px;
	border-top-left-radius: 25px;
}
.border2{
	border-top: 5px solid #4b7a80;
	border-top-right-radius: 25px;
	border-top-left-radius: 25px;
	width: 100%;
	height: 70px;
	background-color: #4b7a80;
	position: relative;
	top: -5px;
}
.border2 h1{
	text-align: center;
	font-weight: 500;
    font-size: 36px;
    position: relative;
    top: -10px;
    color: #fff;
}
.header_nav{
	display: flex;
}
.line1{
	position: relative;
    left: 79px;
	top:50%;
    width: 15% !important;
    background-color: #e28220 !important;
    height: 6px !important;
    margin: 15px 88% 0 auto;
}
.des{
	color: #000;
    opacity: 1;
	font: 24px 'Open Sans', sans-serif;
	line-height: 30px;
	font-weight: 500;
	margin: 35px;
}
.about1 h2{
	margin-top: 0px;
	color: #1E2C3A;
	font-size: 45px !important;
	font-weight: 700;
}
.about1 span{
	font-weight: 600;
}
.des1{
	color: #000;
    opacity: 1;
    font: 20px 'Montserrat', sans-serif;
    line-height: 25px;
    font-weight: 500;
    margin: 20px 40px 20px 40px;
}
.pos{
	position: relative;
    top: 20px;
    left: 80px;
    width: 85%;
    margin-bottom: 0%;
}
.team{
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}
.des2{
	color: #000;
    opacity: 1;
    font: 22px 'Montserrat', sans-serif;
    line-height: 27px;
    font-weight: 500;
    margin: 45px 60px 0px 60px;
    position: relative;
    left: 2%;
	top: -5px;
}
.line3{
	position: relative;
    left: -7%;
    width: 5% !important;
    background-color: #e28220 !important;
    height: 6px !important;
    margin: 15px 88% 0 auto;
}
.high{
	height: 250px !important;
}
.cp-feature-box-1 .img-box .text-box .sc-icons-box{
	background-color: #e28220 !important;
}
.title_team{
	font-size: 25px;
    font-weight: 500;
    color: #21445b;
}
.orang{
	color: #fff;
	font-size: 24px;
    font-weight: 700;
    background-color: #e28220 !important;
}
.ce-feature-box-12 .img{
	background-color: #e28220 !important;
}
/* contact */
.container-contact100 {
	width: 100%;  
	min-height: 100vh;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	padding: 15px;
	background: transparent;
	position: relative;
	z-index: 1;
  }
  
  .contact100-map {
	position: absolute;
	z-index: -2;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
  }
  
  .wrap-contact100 {
	width: 670px;
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	position: relative;
  }
  
  /*==================================================================
  [ Title form ]*/
  .contact100-form-title {
	width: 100%;
	position: relative;
	z-index: 1;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	align-items: center;
  
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
  
	padding: 64px 15px 64px 15px;
  }
  
  .contact100-form-title-1 {
	font-family: Poppins-Bold;
	font-size: 20px;
	color: #fff;
	line-height: 1.2;
	text-align: center;
	padding-bottom: 7px;
  }
  
  .contact100-form-title-2 {
	font-family: Poppins-Regular;
	font-size: 15px;
	color: #fff;
	line-height: 1.5;
	text-align: center;
  }
  
  
  .contact100-form-title::before {
	content: "";
	display: block;
	position: absolute;
	z-index: -1;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(54,84,99,0.7);
  }
  
  
  /*==================================================================
  [ Form ]*/
  
  .contact100-form {
	width: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 43px 88px 57px 205px;
  }
  
  .layer{
      /*height: 700px;*/
  }
  .layer .header-inner{
       /*height: 1300px;*/
  }
  /*------------------------------------------------------------------
  [ Input ]*/
  
  .wrap-input100 {
	width: 100%;
	position: relative;
	border-bottom: 1px solid #b2b2b2;
  }
  
  .label-input100 {
	font-family: Poppins-Regular;
	font-size: 25px;
	color: #fff;
	line-height: 1.2;
	text-align: left;
  
	/*position: absolute;*/
	top: 14px;
	left: -199px;
	width: 290px;
	/*width: 290px;*/
    padding: 2rem 0;
    display: block;
  
  }
  
  /*---------------------------------------------*/
  .input100 {
	font-family: Poppins-Regular;
	font-size: 20px;
	color: #fff;
	line-height: 1.2;
  
	display: block;
	width: 100%;
	background: transparent;
	padding: 0 5px;
  }
  
  .focus-input100 {
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	pointer-events: none;
  }
  
  .focus-input100::before {
	content: "";
	display: block;
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 0;
	height: 1px;
  
	-webkit-transition: all 0.6s;
	-o-transition: all 0.6s;
	-moz-transition: all 0.6s;
	transition: all 0.6s;
  
	background: #e28220 !important;
  }
  
  
  /*---------------------------------------------*/
  input.input100 {
	height: 45px;
	border: none !important;
	background-color: #fff;
	color: #000;
  }
  
  textarea.input100 {
	min-height: 115px;
	padding-top: 14px;
	padding-bottom: 13px;
	border: none;
	font-size: 20px;
background-color: #fff;
	color: #000;
	}
  
  .text-right {
 text-align: right !important; 
}
  .input100:focus + .focus-input100::before {
	width: 100%;
  }
  
  .has-val.input100 + .focus-input100::before {
	width: 100%;
  }
  
  
  /*------------------------------------------------------------------
  [ Button ]*/
  .container-contact100-form-btn {
	width: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	padding-top: 8px;
	position: relative;
    right: -63%;
  }
  
  .contact100-form-btn {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 20px;
	min-width: 160px;
	height: 50px;
	background: rgba(0,0,0,0.1);
	border: 3px solid #fff;
	font-family: Poppins-Regular;
	font-size: 26px;
	color: #fff;
	line-height: 1.2;
  
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	-moz-transition: all 0.4s;
	transition: all 0.4s;
  }
  
  .contact100-form-btn i {
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	-moz-transition: all 0.4s;
	transition: all 0.4s;
	color: #e28220 !important;
  }
  
  .contact100-form-btn:hover {
	background-color: #333333;
  }
  
  .contact100-form-btn:hover i {
	-webkit-transform: translateX(10px);
	-moz-transform: translateX(10px);
	-ms-transform: translateX(10px);
	-o-transform: translateX(10px);
	transform: translateX(10px);
  }
  
  
  /*------------------------------------------------------------------
  [ Responsive ]*/
   
  @media (max-width: 576px) {
	.contact100-form {
	  padding: 43px 15px 57px 117px;
	}
	.box1 {
		top: -155px !important;
		right: 20% !important;
	}
		.box2 {
		top: -140px !important;
		right: 18% !important;
	}
		.box3 {
		top: -120px !important;
		right: 13% !important;
	}
		.box4 {
		top: -105px !important;
		right: 15% !important;
	}
		.box5 {
		top: 0px !important;
		right: 10% !important;
	}
		.box6 {
		top: 10px !important;
		right: 5% !important;
	}
		.box7 {
		top: 80px !important;
		right: 5% !important;
	}
	.box8 {
		top: 90px !important;
		right: 5% !important;
	}
	.box9 {
		top: 105px !important;
		right: 5% !important;
	}
	.logo-middle {
    margin: -12px auto;
}
.features-section-eight .image-column{
    top: -120px !important;
}
.image-column p{
    font-size: 32px !important;
    left: -70px;
}
.right-column{
    position: relative;
    top: -90px;
}
  }
 
  @media (max-width: 480px) {
	.contact100-form {
	  padding: 40px 5px 57px 0px;
	}
  .layer{
      height: 1090px !important;
  }
  .layer .header-inner{
       height: 1090px !important;
  }
	.label-input100 {
	  text-align: left;
	  position: unset;
	  top: unset;
	  left: unset;
	  width: 100%;
	  padding: 0 5px;
	}
  }
   
  
  /*------------------------------------------------------------------
  [ Alert validate ]*/
  
  .validate-input {
	position: relative;
  }
  
  .alert-validate::before {
	content: attr(data-validate);
	position: absolute;
	max-width: 70%;
	background-color: #fff;
	border: 1px solid #c80000;
	border-radius: 2px;
	padding: 4px 25px 4px 10px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	right: 2px;
	pointer-events: none;
  
	font-family: Poppins-Medium;
	color: #c80000;
	font-size: 13px;
	line-height: 1.4;
	text-align: left;
  
	visibility: hidden;
	opacity: 0;
  
	-webkit-transition: opacity 0.4s;
	-o-transition: opacity 0.4s;
	-moz-transition: opacity 0.4s;
	transition: opacity 0.4s;
  }
  
  .alert-validate::after {
	content: "\f06a";
	font-family: FontAwesome;
	display: block;
	position: absolute;
	color: #c80000;
	font-size: 15px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	right: 8px;
  }
  
  .alert-validate:hover:before {
	visibility: visible;
	opacity: 1;
  }
  
  @media (max-width: 992px) {
	.alert-validate::before {
	  visibility: visible;
	  opacity: 1;
	}
  }
.note{
	font-size: 18px;
    color: #fff;
    margin-left: 2% !important;
    margin-top: 0% !important;
}
.note li::marker{
	color: #e28220 !important;
	font-size: 20px;
}
.note1{
	font-size: 18px;
    color: #fff;
    margin-left: 2% !important;
    margin-top: 0% !important;
}
.note1 li::marker{
	color: #e28220 !important;
	font-size: 20px;
}
/*.contain{*/
/*	margin-top: 5%;*/
/*}*/
.cube{
	width: 400px;
	/*height: 300px;*/
	/*border: 20px solid rgba(255, 255, 255, 0.1);*/
	position: relative;
    top: 5px;
    left: 25%;
}
.move span{
	color: #e28220 !important;
	position: relative;
    top: -55px;
}
.move{
	color: #fff;
	/*position: relative;*/
    top: -235px;
	left: 22% ;
    display: block;
    border: 20px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 1rem;
}
.move h1{
	color: #fff;
	font-size: 95px;
}
.add{
	position: relative;
    left: 12%;
    top: -10px;
}
.add h4{
	font-size: 35px;
	color: #e28220 !important;
}
.add span{
	font-size: 20px;
    color: #fff;
    margin-left: 4%;
}
.whats{
	/*position: relative;*/
	top: 0px;
	left: 15%;
}
.not{
    margin-top: -25% !important;
}
.not1{
    margin-top: 3% !important;
}
.whats h4{
	color: #04ce47 !important;
	font-size: 15px;
	position: relative;
    /*left: -9%;*/
    top: 10px;
}
.register{
	margin-top: 5%;
}
.register .note{
	color: #000;
	font-size: 20px;
	margin-top: 10%;
    margin-bottom: 20%;
    margin-left: 15%;
}
.register a{
	color: #1E2C3A;
	font-size: 40px;
    font-weight: 600;
	margin-left: 15%;
    margin-bottom: 8px;
}
.exist h2{
	margin-top: 20px;
    color: #e28220 !important;
    font-size: 45px !important;
}
.exist span{
	font-size: 35px !important;
	color: #1E2C3A;
	position: relative;
	left: 80%;
    font-weight: 500;
}
.register_detail label{
	font-size: 48px;
	color: #cccccc !important;
}
.register_detail .input1{
	font-family: Poppins-Regular;
    font-size: 24px;
    color: #000 !important;
    line-height: 1.2;
    display: block;
    width: 100%;
    background: transparent !important;
    padding: 0 5px;
	height: 55px;
	border: 5px solid #ccc !important;
}
.register_detail input:focus , .register_detail input:required{
    background-color: #fff !important;
}
.register_detail .enter{
	margin-left: 5%;
	font-size: 30px;
	background-color: #a1a1a2;
	color: #fff;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px;
}
.register_detail h3{
	text-align: center;
	font-size: 20px;
	color: #fff !important;
	border-radius: 4px;
	-webkit-border-radius:20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
	border: 2px solid #e28220 !important;
	width: fit-content;
    padding: 5px 5px 5px 5px;
	margin-left: 10px;
	cursor: pointer;
}
.register_detail .pass{
	display: flex;
	position: relative;
    left: 31%;
}
.register_detail .data h1{
	color: #fff;
	font-size: 50px;
	position: relative;
    left: -15%;
}
.register_detail .data .sub_data h2 , .register_detail .data .sub_data label{
	color: #e28220 !important;
	font-size: 25px;
	font-weight: 400;
}
.register_detail .data .sub_data{
	display: flex;
	margin-bottom: -1%;
}
.register_detail .data_detail{
	margin-left: -10% !important;
    margin-top: 5% !important;
}
.register_detail .data .sub-title h2{
	margin-left: 5% !important;
    margin-top: -3px !important;
}
.register_detail .data .sub-title .text1{
	height: 250px !important;
	color: #e28220 !important;
	font-size: 25px !important;
	width: 100% !important;
	padding: 6px 12px !important;
	line-height: 1.42857143 !important;
	background-color: #fff !important;
	background-image: none;
	border: 1px solid #ccc !important;
	border-radius: 4px !important;
	transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
	box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%), 0 0 8px rgb(102 175 233 / 60%);
	-webkit-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
	-moz-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
	-ms-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
	-o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
	-webkit-border-radius: 4px !important;
	-moz-border-radius: 4px !important;
	-ms-border-radius: 4px !important;
	-o-border-radius: 4px !important;
}
.register_detail .data_detail .btn{
	z-index: 2;
    margin-left: -1px;
	padding: 6px 25px;
    margin: 0px;
    box-shadow: none;
    border-radius: 4px;
    border: 5px solid #e28220;
	font-size: 20px;
	background-color: #808080;
}
.btn-file input[type=file] {
    position: absolute;
    top: 0;
    right: 0;
    min-width: 100%;
    min-height: 100%;
    text-align: right;
    opacity: 0;
    background: none repeat scroll 0 0 transparent;
    cursor: inherit;
    display: block;
}
.register_detail .data_detail .submit{
	z-index: 2;
	padding: 6px 7px;
	color: #fff;
	position: relative;
	top: 90px;
	height: 70px;
    margin: 0px;
    box-shadow: none;
    border-radius: 4px;
	font-size: 28px;
	background-color: #e28220;
}
.foc{
	left: 15% !important;
}
.valid{
	left: 10% !important;
}
.label1{
	font-size: 21px !important;
	left: -245px !important;
}
.contain1{
	margin-left: 1% !important;
}
.newbtn{
	z-index: 2;
    margin-left: -1px;
	padding: 6px 0px;
    margin: 0px;
    box-shadow: none;
    border-radius: 4px;
    border: 5px solid #e28220;
	font-size: 20px;
	background-color: #808080;
	position: relative;
    /* top: 100px; */
    right: 25%;
    top: 25px;
}
.linereq{
	position: relative;
    left: 40%;
    width: 20% !important;
    background-color: #e28220 !important;
    height: 6px !important;
    margin: 15px 88% 0 auto;
}
.feature-block-five .box7 img{
	width: 96px !important;
	top: -19px !important;
}
.feature-block-five .box1 img{
	width: 120px !important;
	top: -23px !important;
}
.feature-block-five .box3 img{
	width: 120px !important;
	top: -19px !important;
}
.home .slide-controls-2 .owl-theme .owl-controls .owl-page.active span{
	background-color: #e28220;
    border: 1px solid #e28220;
}
.home .slide-controls-2 .owl-theme .owl-controls .owl-page span{
    border: 1px solid #e28220;
}
.cat1{
	margin-left: 50px; 
}
.layer1{
	    /*height: 350px;*/
	}
	.layer1 .header-inner{
	    /*height: 350px;*/
	}
	.layer2{
	    /*height: 700px;*/
	}
	.layer2 .header-inner{
	    /*height: 700px;*/
	}
	.layer5{
	    /*height: 700px;*/
	}
	.layer5 .header-inner{
	    /*height: 700px;*/
	}
		@media screen and (max-width: 4000px) {
	  .layer .move{
	       left: 115%;
	   }
	   .layer .not {
    margin-top: 0% !important;
}
	}
	@media screen and (max-width: 3000px) {
	    .container-contact100-form-btn{
	        top: -110px !important;
	    }
	   .layer .not {
    margin-top: 0% !important;
}
	}
	
	@media screen and (max-width: 1921px) {
	    .container-contact100-form-btn{
	        top: -40px !important;
	    }
	}
	
@media screen and (max-width: 480px){
    	.layer2{
	    height: 1010px;
	}
	.layer2 .header-inner{
	    height: 1010px;
	}
   .layer5{
	    height: 800px;
	}
	.layer5 .header-inner{
	    height: 800px;
	}
	.layer5 .validate-form {
    position: relative;
    top: -72%;
    left: 110%;
}
.layer5 .notee {
    margin-top: -105% !important;
}
	.features-section-eight .image-column .inner-column .image{
		top: -110px;
		width: 100%;
	}
	.register_detail .pass{
	    left: -10% !important;
	}
	.layer1{
	    height: 650px;
	}
	.layer1 .header-inner{
	    height: 650px;
	}
	.form-group{
	    margin-right: 0 !important;
	}
		.exist{
	    padding: 10px;
	}
	.move{
	    left: 10% ;
	}
	.box1 {
		top: -190px !important;
		right: 10% !important;
	}
	.box2 {
		top: -175px !important;
		right: 10% !important;
	}
	.box3 {
		top: -160px !important;
		right: 10% !important;
	}
	.box4 {
		top: -145px !important;
		right: 10% !important;
	}
	.box5 {
		top: -40px !important;
		right: 0% !important;
	}
	.image-column p {
		font-size: 40px !important;
		left: -15px;
	}
	.box6 {
		top: -25px !important;
		right: 0% !important;
	}
	.box7 {
		top: 55px !important;
		right: 0% !important;
	}
	.box8 {
		top: 75px !important;
		right: 0% !important;
	}
	.box9 {
		top: 100px !important;
		right: 0% !important;
	}
	.features-section-eight .image-column {
    top: -50px !important;
    left: 15px;
}
	.line111{
	    left: -13%;
	}
	.cat1{
		margin-left: 0px !important; 
	}
	.border2 h1{
		font-size: 20px;
	}
	.auto-container{
		padding: 0px 0px !important;
	}
	.features-section-eight .left-column .inner-column{
		margin-right: 0px;
	}
	.pos{
		left: 20px;
	}
	.line3 {
		left: 1%;
		width: 22% !important;
	}
	.des2 {
		font: 20px 'Open Sans', sans-serif;
		margin: 45px 0px 0px 10px;
		left: 0%;
	}
	.logo-middle img {
    position: relative;
    top: -110px;
    left: 95px;
}
.poss {
    position: relative;
    right: 0% !important;
}
.raleway {
    margin-top: -20px;
}
.raleway1 {
    margin-top: 0px;
}
.note{
    margin-top: -110% !important;
    margin-left: 3% !important;
}
.note1{
    margin-top: 10% !important;
    margin-left: 3% !important;
}
.validate-form{
    position: relative;
    top: -77%;
    left: 108%;
}
.newbtn{
    right: 0% !important;
}
.container-contact100-form-btn{
    right: -23% !important;
}
.add {
    position: relative;
    left: 2%;
    top: 35px;
}
.features-section-eight .logo-middle img{
    position: relative;
    top: -83px;
    left: 10px;
}
 .notee{
        margin-top: -125% !important;
    }
    .notee1{
        margin-top: -10% !important;
    }
    .layer2 .validate-form {
    position: relative;
    top: -73% !important;
    left: 90% !important;
}
	}
	.demoo .owl-carousel .owl-wrapper-outer{
	    height: 265px;
	}
	.demoo .owl-theme .owl-controls{
	    margin-top: 0px !important;
	}
	.cen{
	    text-align: center;
	}
	.centered h2{
	    margin-top: 0px !important;
	    margin-bottom: 0px !important;
	}
	.clients-list {
	    margin-top: -20px !important;
    margin-bottom: -20px !important;
	}
	.section-dark h4{
	    margin-top: 0px !important;
    margin-bottom: -20px !important;
	}
	p {
    margin: 0 0 0px !important;
}
.poss{
    position: relative;
    /*right: 30%;*/
}
.modal-open{
    padding-right: 0px !important;
}
body{
    padding-right: 0px !important;
}
@media (max-width: 368px) {
	.contact100-form {
	  padding: 43px 15px 57px 117px;
	}
	.box1 {
		top: -185px !important;
		right: -10% !important;
	}
		.box2 {
		top: -155px !important;
		right: -10% !important;
	}
		.box3 {
		top: -135px !important;
		right: -10% !important;
	}
		.box4 {
		top: -120px !important;
		right: -10% !important;
	}
		.box5 {
		top: -15px !important;
		right: -10% !important;
	}
		.box6 {
		top: -5px !important;
		right: -10% !important;
	}
		.box7 {
		top: 70px !important;
		right: -10% !important;
	}
	.box8 {
		top: 85px !important;
		right: -10% !important;
	}
	.box9 {
		top: 105px !important;
		right: -10% !important;
	}
	.logo-middle {
    margin: -12px auto;
}
.features-section-eight .image-column{
    top: -25px !important;
    left: 15px;
}
.image-column p{
    font-size: 32px !important;
    left: -50px;
}
.right-column{
    position: relative;
    top: -90px;
}
  }
  
// Edit 10/10
// 11/10
// 03:45
// 01:47
// 3:37
// 11:10
// 4 : 35
// 10:37
// 2:11
// 2022
.page-en {
  color: red;
}
.section-dark {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}
.section-dark
  .container
  .row
  .col-md-4.col-xs-12.clearfix.margin-bottom
  div
  span.text-light {
  word-break: break-all;
}
@media screen and (max-width: 200px) and (max-width: 500px) {
  .section-dark
    .container
    .row
    .col-md-4.col-xs-12.clearfix.margin-bottom
    div
    span.text-light {
    word-break: break-all;
  }
}
.section-medium-dark {
  padding: 15px 0 !important;
}
.home .container .row .about {
  padding: 20px 0 100px 0 !important;
}
.home .container .row .about .container .row .col-md-6.padding-left-6 {
  margin-bottom: 60px;
}
.home
  .container
  .row
  .about
  .container
  .row
  .col-md-6.padding-left-6
  .col-md-6.col-sm-12.nopadding
  .sec-title-container.poss.less-padding-3.text-right {
  right: 0 !important;
}
.home
  .container
  .row
  .about
  .container
  .row
  .col-md-6.padding-left-6
  .col-md-6.col-sm-12.nopadding
  .sec-title-container.poss.less-padding-3.text-right
  h2.font-weight-6.less-mar-1.line-height-4 {
  text-align: center !important;
}
.home
  .container
  .row
  .about
  .container
  .row
  .col-md-6.padding-left-6
  .col-md-6.col-sm-12.nopadding
  .poss {
  right: 0 !important;
}
.home
  .container
  .row
  .about
  .container
  .row
  .col-md-6.padding-left-6
  .col-md-6.col-sm-12.text-center {
  margin-bottom: 30px !important;
}
.home
  .container
  .row
  .about
  .container
  .row
  .col-md-6.padding-left-6
  .col-md-6.col-sm-12.text-center
  .logo-middle {
  width: -webkit-fit-content !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
  height: -webkit-fit-content !important;
  height: -moz-fit-content !important;
  height: fit-content !important;
  display: inline-block !important;
}
.home
  .container
  .row
  .about
  .container
  .row
  .col-md-6.padding-left-6
  .col-md-6.col-sm-12.text-center
  .logo-middle
  a {
  width: 100% !important;
  overflow: hidden !important;
}
@media screen and (max-width: 250px) and (max-width: 500px) {
  .home
    .container
    .row
    .about
    .container
    .row
    .col-md-6.padding-left-6
    .col-md-6.col-sm-12.text-center
    .logo-middle
    a
    img {
    top: 0 !important;
    left: 0 !important;
  }
}
.home .container .row .about .container .row .col-md-6.padding-left-6 a {
  margin-top: 30px;
}
@media screen and (max-width: 250px) and (max-width: 992px) {
  .home
    .container
    .row
    .about
    .container
    .about_img.col-md-6.col-sm-10.col-xs-11.margin-bottom {
    left: 2% !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home .container .row .about .container .col-md-6 {
    width: 45%;
  }
}
@media only screen and (min-width: 992px) {
  .home .container .row .about .container .col-md-6 {
    width: 45%;
  }
}
@media only screen and (min-width: 1280px) {
  .home .container .row .about .container .col-md-6 {
    width: 47%;
  }
}
@media only screen and (min-width: 1440px) {
  .home .container .row .about .container .col-md-6 {
    width: 50%;
  }
}
.home .container .row .partners {
  top: 0 !important;
  margin-bottom: 0 !important;
  padding: 50px 0 !important;
}
.home .container .row .section-dark {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}
.home
  .container
  .row
  .section-dark
  .container
  .row
  .col-md-4.col-xs-12.clearfix.margin-bottom
  div
  span.text-light {
  word-break: break-all;
}
@media screen and (max-width: 200px) and (max-width: 500px) {
  .home
    .container
    .row
    .section-dark
    .container
    .row
    .col-md-4.col-xs-12.clearfix.margin-bottom
    div
    span.text-light {
    word-break: break-all;
  }
}
.home .container .row .section-medium-dark {
  padding: 15px 0 !important;
}
.features-section-eight .auto-container .about1 {
  margin: 30px 0 0 0 !important;
}
.features-section-eight .auto-container .about1 h2 {
  padding: 10px 20px !important;
}
.features-section-eight .auto-container .des1 {
  padding: 30px 10px 60px 10px !important;
}
.pos {
  left: 15px !important;
}
.pos h2 {
  margin-right: 0 !important;
}
div div p.des2 {
  left: 0 !important;
  width: 90%;
}
.features-section-eight .auto-container .sec-title-two {
  margin-top: 60px;
}
.features-section-eight .auto-container .sec-title-two .logo-middle {
  margin: 30px auto !important;
  width: 100% !important;
  height: -webkit-fit-content !important;
  height: -moz-fit-content !important;
  height: fit-content !important;
}
.features-section-eight .auto-container .sec-title-two .logo-middle a {
  top: 0 !important;
  margin: auto !important;
  display: block !important;
}
.features-section-eight .auto-container .sec-title-two .logo-middle a img {
  top: 0 !important;
}
@media (max-width: 767px) {
  .features-section-eight .auto-container .inner-container {
    padding-bottom: 150px !important;
  }
}
@media (min-width: 1200px) {
  .features-section-eight .auto-container .inner-container {
    padding-bottom: 50px !important;
  }
}
.features-section-eight
  .auto-container
  .inner-container
  .row
  .left-column
  .inner-column {
  margin-right: 0 !important;
}
@media screen and (max-width: 250px) and (max-width: 992px) {
  .features-section-eight
    .auto-container
    .inner-container
    .row
    .left-column
    .inner-column
    a:first-child
    .feature-block-five.click-block.active
    .inner-box
    .box1 {
    right: 0 !important;
    top: 0 !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .features-section-eight
    .auto-container
    .inner-container
    .row
    .left-column
    .inner-column
    a:first-child
    .feature-block-five.click-block.active
    .inner-box
    .box1 {
    right: -25px !important;
    top: -150px !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .features-section-eight
    .auto-container
    .inner-container
    .row
    .left-column
    .inner-column
    a:first-child
    .feature-block-five.click-block.active
    .inner-box
    .box1 {
    right: 0 !important;
    top: 0 !important;
  }
}
@media (max-width: 767px) {
  .features-section-eight
    .auto-container
    .inner-container
    .row
    .left-column
    .inner-column
    a:first-child
    .feature-block-five.click-block.active
    .inner-box
    .box1 {
    right: 0 !important;
    top: -250px !important;
  }
}
@media screen and (max-width: 250px) and (max-width: 992px) {
  .features-section-eight
    .auto-container
    .inner-container
    .row
    .left-column
    .inner-column
    a:first-child
    .feature-block-five.click-block.active
    .inner-box
    .icon-box {
    right: 0 !important;
    top: 0 !important;
  }
}
@media screen and (max-width: 250px) and (max-width: 992px) {
  .features-section-eight
    .auto-container
    .inner-container
    .row
    .left-column
    .inner-column
    a:nth-child(2)
    .feature-block-five.click-block.active
    .inner-box
    .box2 {
    right: -300px !important;
    top: -360px !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .features-section-eight
    .auto-container
    .inner-container
    .row
    .left-column
    .inner-column
    a:nth-child(2)
    .feature-block-five.click-block.active
    .inner-box
    .box2 {
    right: 250px !important;
    top: -130px !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .features-section-eight
    .auto-container
    .inner-container
    .row
    .left-column
    .inner-column
    a:nth-child(2)
    .feature-block-five.click-block.active
    .inner-box
    .box2 {
    right: -350px !important;
    top: 0 !important;
  }
}
@media (max-width: 767px) {
  .features-section-eight
    .auto-container
    .inner-container
    .row
    .left-column
    .inner-column
    a:nth-child(2)
    .feature-block-five.click-block.active
    .inner-box
    .box2 {
    right: 0 !important;
    top: -215px !important;
  }
}
@media screen and (max-width: 250px) and (max-width: 992px) {
  .features-section-eight
    .auto-container
    .inner-container
    .row
    .left-column
    .inner-column
    a:nth-child(2)
    .feature-block-five.click-block.active
    .inner-box
    .icon-box {
    right: 0 !important;
    top: 0 !important;
  }
}
@media screen and (max-width: 250px) and (max-width: 991px) {
  .features-section-eight
    .auto-container
    .inner-container
    .row
    .left-column
    .inner-column
    a:nth-child(3)
    .feature-block-five.click-block.active
    .inner-box
    .box3 {
    right: 0 !important;
    top: 0 !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .features-section-eight
    .auto-container
    .inner-container
    .row
    .left-column
    .inner-column
    a:nth-child(3)
    .feature-block-five.click-block.active
    .inner-box
    .box3 {
    right: -25px !important;
    top: -85px !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .features-section-eight
    .auto-container
    .inner-container
    .row
    .left-column
    .inner-column
    a:nth-child(3)
    .feature-block-five.click-block.active
    .inner-box
    .box3 {
    right: 0 !important;
    top: 0 !important;
  }
}
@media (max-width: 767px) {
  .features-section-eight
    .auto-container
    .inner-container
    .row
    .left-column
    .inner-column
    a:nth-child(3)
    .feature-block-five.click-block.active
    .inner-box
    .box3 {
    right: 0 !important;
    top: -180px !important;
  }
}
@media screen and (max-width: 250px) and (max-width: 992px) {
  .features-section-eight
    .auto-container
    .inner-container
    .row
    .left-column
    .inner-column
    a:nth-child(3)
    .feature-block-five.click-block.active
    .inner-box
    .icon-box {
    right: 0 !important;
    top: 0 !important;
  }
}
@media screen and (max-width: 250px) and (max-width: 992px) {
  .features-section-eight
    .auto-container
    .inner-container
    .row
    .left-column
    .inner-column
    a:nth-child(4)
    .feature-block-five.click-block.active
    .inner-box
    .box4 {
    right: 0 !important;
    top: 0 !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .features-section-eight
    .auto-container
    .inner-container
    .row
    .left-column
    .inner-column
    a:nth-child(4)
    .feature-block-five.click-block.active
    .inner-box
    .box4 {
    right: 250px !important;
    top: -50px !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .features-section-eight
    .auto-container
    .inner-container
    .row
    .left-column
    .inner-column
    a:nth-child(4)
    .feature-block-five.click-block.active
    .inner-box
    .box4 {
    right: -350px !important;
    top: -15px !important;
  }
}
@media (max-width: 767px) {
  .features-section-eight
    .auto-container
    .inner-container
    .row
    .left-column
    .inner-column
    a:nth-child(4)
    .feature-block-five.click-block.active
    .inner-box
    .box4 {
    right: 0 !important;
    top: -150px !important;
  }
}
@media screen and (max-width: 250px) and (max-width: 992px) {
  .features-section-eight
    .auto-container
    .inner-container
    .row
    .left-column
    .inner-column
    a:nth-child(4)
    .feature-block-five.click-block.active
    .inner-box
    .icon-box {
    right: 0 !important;
    top: 0 !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .features-section-eight
    .auto-container
    .inner-container
    .row
    .right-column
    .inner-column
    a:first-child
    .feature-block-five
    .inner-box
    .box5 {
    right: 0 !important;
    top: 60px !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .features-section-eight
    .auto-container
    .inner-container
    .row
    .right-column
    .inner-column
    a:first-child
    .feature-block-five
    .inner-box
    .box5 {
    right: 0 !important;
    top: 50px !important;
  }
}
@media screen and (max-width: 250px) and (max-width: 786px) {
  .features-section-eight
    .auto-container
    .inner-container
    .row
    .right-column
    .inner-column
    a:first-child
    .feature-block-five
    .inner-box
    .box5 {
    right: 0 !important;
    top: 0 !important;
  }
}
@media (max-width: 767px) {
  .features-section-eight
    .auto-container
    .inner-container
    .row
    .right-column
    .inner-column
    a:first-child
    .feature-block-five
    .inner-box
    .box5 {
    right: 0 !important;
    top: 0px !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .features-section-eight
    .auto-container
    .inner-container
    .row
    .right-column
    .inner-column
    .feature-block-five
    a:first-child
    .inner-box
    .box6 {
    right: 250px !important;
    top: 0 !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .features-section-eight
    .auto-container
    .inner-container
    .row
    .right-column
    .inner-column
    .feature-block-five
    a:first-child
    .inner-box
    .box6 {
    right: -350px !important;
    top: 0 !important;
  }
}
@media screen and (max-width: 250px) and (max-width: 786px) {
  .features-section-eight
    .auto-container
    .inner-container
    .row
    .right-column
    .inner-column
    .feature-block-five
    a:first-child
    .inner-box
    .box6 {
    right: 0 !important;
    top: 0 !important;
  }
}
@media (max-width: 767px) {
  .features-section-eight
    .auto-container
    .inner-container
    .row
    .right-column
    .inner-column
    .feature-block-five
    a:first-child
    .inner-box
    .box6 {
    right: 0 !important;
    top: 30px !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .features-section-eight
    .auto-container
    .inner-container
    .row
    .right-column
    .inner-column
    .feature-block-five
    a:nth-child(2)
    .feature-block-five
    .inner-box
    .box7 {
    right: 0 !important;
    top: 0 !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .features-section-eight
    .auto-container
    .inner-container
    .row
    .right-column
    .inner-column
    .feature-block-five
    a:nth-child(2)
    .feature-block-five
    .inner-box
    .box7 {
    right: 0 !important;
    top: 0 !important;
  }
}
@media screen and (max-width: 250px) and (max-width: 786px) {
  .features-section-eight
    .auto-container
    .inner-container
    .row
    .right-column
    .inner-column
    .feature-block-five
    a:nth-child(2)
    .feature-block-five
    .inner-box
    .box7 {
    right: 0 !important;
    top: 0 !important;
  }
}
@media (max-width: 767px) {
  .features-section-eight
    .auto-container
    .inner-container
    .row
    .right-column
    .inner-column
    .feature-block-five
    a:nth-child(2)
    .feature-block-five
    .inner-box
    .box7 {
    right: 0 !important;
    top: 120px !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .features-section-eight
    .auto-container
    .inner-container
    .row
    .right-column
    .inner-column
    .feature-block-five
    a:nth-child(3)
    .feature-block-five
    .inner-box
    .box8 {
    right: 250px !important;
    top: -40px !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .features-section-eight
    .auto-container
    .inner-container
    .row
    .right-column
    .inner-column
    .feature-block-five
    a:nth-child(3)
    .feature-block-five
    .inner-box
    .box8 {
    right: -350px !important;
    top: 0 !important;
  }
}
@media screen and (max-width: 250px) and (max-width: 786px) {
  .features-section-eight
    .auto-container
    .inner-container
    .row
    .right-column
    .inner-column
    .feature-block-five
    a:nth-child(3)
    .feature-block-five
    .inner-box
    .box8 {
    right: 0 !important;
    top: 0 !important;
  }
}
@media (max-width: 767px) {
  .features-section-eight
    .auto-container
    .inner-container
    .row
    .right-column
    .inner-column
    .feature-block-five
    a:nth-child(3)
    .feature-block-five
    .inner-box
    .box8 {
    right: 0 !important;
    top: 150px !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .features-section-eight
    .auto-container
    .inner-container
    .row
    .right-column
    .inner-column
    .feature-block-five
    a:nth-child(4)
    .feature-block-five
    .inner-box
    .box9 {
    right: 0 !important;
    top: -50px !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .features-section-eight
    .auto-container
    .inner-container
    .row
    .right-column
    .inner-column
    .feature-block-five
    a:nth-child(4)
    .feature-block-five
    .inner-box
    .box9 {
    right: 0 !important;
    top: 0 !important;
  }
}
@media screen and (max-width: 250px) and (max-width: 786px) {
  .features-section-eight
    .auto-container
    .inner-container
    .row
    .right-column
    .inner-column
    .feature-block-five
    a:nth-child(4)
    .feature-block-five
    .inner-box
    .box9 {
    right: 0 !important;
    top: 0 !important;
  }
}
@media (max-width: 767px) {
  .features-section-eight
    .auto-container
    .inner-container
    .row
    .right-column
    .inner-column
    .feature-block-five
    a:nth-child(4)
    .feature-block-five
    .inner-box
    .box9 {
    right: 0 !important;
    top: 180px !important;
  }
}
.cp-feature-box-1 {
  padding-top: 10px !important;
}
@media (min-width: 768px) {
  .cp-feature-box-1 .img-box .text-box {
    padding-top: 20px !important;
  }
}
@media (min-width: 250px) and (max-width: 767px) {
  .cp-feature-box-1 .img-box img {
    width: 100% !important;
  }
}
@media (min-width: 250px) and (max-width: 767px) {
  .cp-feature-box-1 .title_team {
    font-size: 20px !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cp-feature-box-1 .title_team {
    font-size: 18px !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cp-feature-box-1 .title_team {
    font-size: 18px !important;
  }
}
@media (min-width: 1200px) {
  .cp-feature-box-1 .title_team {
    font-size: 25px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cp-feature-box-1 .padding-top-1 {
    padding-top: 20px !important;
  }
}
.cp-feature-box-1:hover .img-box .text-box .sc-icons-box,
.cp-feature-box-1.active .img-box .text-box .sc-icons-box {
  left: 65px !important;
}
.centered {
  padding-bottom: 30px !important;
}
section section .container .ce-feature-box-12 {
  padding-bottom: 30px !important;
}
section section .container .ce-feature-box-12 div.img img {
  width: 100% !important;
}
section section .container .ce-feature-box-12 a.btn {
  margin-bottom: 30px !important;
}
section section .container .ce-feature-box-12 a.btn i {
  margin-left: 10px !important;
}
.layer5 {
  height: auto;
}
@media (min-width: 250px) and (max-width: 767px) {
  .layer5 {
    min-height: 1400px !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .layer5 {
    min-height: 1400px !important;
  }
}
@media (min-width: 250px) and (max-width: 767px) {
  .layer5 .header-inner {
    min-height: 1400px !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .layer5 .header-inner {
    min-height: 1400px !important;
  }
}
@media (max-width: 767px) {
  .layer5 .header-inner .overlay .col-md-6 {
    width: 100% !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .layer5 .header-inner .overlay .col-md-6 {
    width: 100% !important;
  }
}
section section.features-section-eight .auto-container {
  margin: 40px auto !important;
}
@media (min-width: 250px) and (max-width: 767px) {
  section .layer5 {
    min-height: 1400px !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  section .layer5 {
    min-height: 1400px !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  section .layer5 {
    /*min-height: 1400px !important;*/
  }
}
@media (min-width: 1200px) {
  section .layer5 {
    /*min-height: 1200px !important;*/
    /*max-height: 1500px !important;*/
  }
}
@media (min-width: 250px) and (max-width: 767px) {
  section .layer5 .header-inner {
    min-height: 1400px !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  section .layer5 .header-inner {
    min-height: 1400px !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  section .layer5 .header-inner {
    /*min-height: 1400px !important;*/
  }
}
@media (min-width: 1200px) {
  section .layer5 .header-inner {
    /*min-height: 1400px !important;*/
    /*max-height: 1500px !important;*/
  }
}
@media (min-width: 250px) and (max-width: 767px) {
  section .layer5 .header-inner .overlay .col-md-6 {
    width: 100% !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  section .layer5 .header-inner .overlay .col-md-6 {
    width: 100% !important;
  }
}
@media (min-width: 250px) and (max-width: 767px) {
  section section.section-side-image.clearfix.layer5 {
    min-height: 1400px !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  section section.section-side-image.clearfix.layer5 {
    min-height: 1400px !important;
  }
}
@media (min-width: 250px) and (max-width: 767px) {
  section
    section.section-side-image.clearfix.layer5
    .container-fluid
    .row
    .nopadding
    .header-inner
    .overlay
    .col-md-6 {
    width: 100% !important;
    height: auto !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  section
    section.section-side-image.clearfix.layer5
    .container-fluid
    .row
    .nopadding
    .header-inner
    .overlay
    .col-md-6 {
    width: 100% !important;
    height: auto !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  section
    section.section-side-image.clearfix.layer5
    .container-fluid
    .row
    .nopadding
    .header-inner
    .overlay
    .col-md-6
    .contain {
    width: 100% !important;
  }
}
@media (min-width: 250px) and (max-width: 767px) {
  section
    section.section-side-image.clearfix.layer5
    .container-fluid
    .row
    .nopadding
    .header-inner
    .overlay
    .col-md-6
    .contain
    .cube {
    width: 90%;
    margin: 20px auto;
    left: 0;
    height: 200px;
  }
}
@media (min-width: 250px) and (max-width: 767px) {
  section
    section.section-side-image.clearfix.layer5
    .container-fluid
    .row
    .nopadding
    .header-inner
    .overlay
    .col-md-6
    .contain
    .move {
    left: 50%;
    top: -140px !important;
  }
}
@media (min-width: 250px) and (max-width: 767px) {
  section
    section.section-side-image.clearfix.layer5
    .container-fluid
    .row
    .nopadding
    .header-inner
    .overlay
    .col-md-6
    .contain
    .move
    h1 {
    font-size: 35px !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  section
    section.section-side-image.clearfix.layer5
    .container-fluid
    .row
    .nopadding
    .header-inner
    .overlay
    .col-md-6
    .contain
    .move
    h1 {
    font-size: 60px !important;
  }
}
@media (min-width: 250px) and (max-width: 767px) {
  section
    section.section-side-image.clearfix.layer5
    .container-fluid
    .row
    .nopadding
    .header-inner
    .overlay
    .col-md-6
    .contain
    .move
    h1
    span {
    top: -39px !important;
  }
}
@media (min-width: 250px) and (max-width: 767px) {
  section
    section.section-side-image.clearfix.layer5
    .container-fluid
    .row
    .nopadding
    .header-inner
    .overlay
    .col-md-6
    .contain
    p.note1.notee {
    top: 0px !important;
    position: relative !important;
    left: 0% !important;
    width: 90% !important;
    margin: auto !important;
    padding: 20px auto !important;
  }
}
@media (min-width: 250px) and (max-width: 767px) {
  section
    section.section-side-image.clearfix.layer5
    .container-fluid
    .row
    .nopadding
    .header-inner
    .overlay
    .col-md-6
    .contain
    .note {
    display: block !important;
    left: 0 !important;
    width: 90% !important;
    margin: 20px !important;
    top: -50px !important;
    position: relative !important;
    padding: 20px auto !important;
    color: #fff !important;
    font-size: 18px !important;
  }
}
@media (min-width: 992px) {
  section
    section.section-side-image.clearfix.layer5
    .container-fluid
    .row
    .nopadding
    .header-inner
    .overlay
    .col-md-6
    .contain
    .note {
    top: 0 !important;
  }
}
section
  section.section-side-image.clearfix.layer5
  .container-fluid
  .row
  .nopadding
  .header-inner
  .overlay
  .col-md-6
  .contain
  p.note.notee1 {
  top: 0 !important;
}
@media (min-width: 250px) and (max-width: 767px) {
  section
    section.section-side-image.clearfix.layer5
    .container-fluid
    .row
    .nopadding
    .header-inner
    .overlay
    .col-md-6
    .contain
    p.note.notee1 {
    display: block !important;
    left: 0 !important;
    width: 90% !important;
    margin: 20px !important;
    top: -50px !important;
    position: relative !important;
    padding: 20px auto !important;
    color: #fff !important;
    font-size: 18px !important;
  }
}
@media (min-width: 250px) and (max-width: 767px) {
  section
    section.section-side-image.clearfix.layer5
    .container-fluid
    .row
    .nopadding
    .header-inner
    .overlay
    .col-md-6
    .contain
    div.add {
    top: 0px !important;
    position: relative !important;
    left: 0% !important;
    padding: 20px !important;
  }
}
@media screen and (max-width: 10000px) {
  section
    section.section-side-image.clearfix.layer5
    .container-fluid
    .row
    .nopadding
    .header-inner
    .overlay
    .col-md-6
    .contain
    div.add
    h4.marg {
    margin-right: 50px !important;
  }
}
@media screen and (max-width: 1566px) {
  section
    section.section-side-image.clearfix.layer5
    .container-fluid
    .row
    .nopadding
    .header-inner
    .overlay
    .col-md-6
    .contain
    div.add
    h4.marg {
    margin-right: 50px !important;
  }
}
@media screen and (max-width: 1200px) {
  section
    section.section-side-image.clearfix.layer5
    .container-fluid
    .row
    .nopadding
    .header-inner
    .overlay
    .col-md-6
    .contain
    div.add
    h4.marg {
    margin-right: 50px !important;
  }
}
@media screen and (max-width: 992px) {
  section
    section.section-side-image.clearfix.layer5
    .container-fluid
    .row
    .nopadding
    .header-inner
    .overlay
    .col-md-6
    .contain
    div.add
    h4.marg {
    margin-right: 100px !important;
  }
}
@media (min-width: 250px) and (max-width: 767px) {
  section
    section.section-side-image.clearfix.layer5
    .container-fluid
    .row
    .nopadding
    .header-inner
    .overlay
    .col-md-6 {
    width: 100% !important;
  }
}
@media only screen and (max-width: 767px) {
  section
    section.section-side-image.clearfix.layer5
    .container-fluid
    .row
    .nopadding
    .header-inner
    .overlay
    .col-md-6
    form.contact100-form.validate-form {
    margin-top: 10% !important;
    margin: 0 !important;
    left: 0 !important;
    width: 100% !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: column !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
    padding: 0px 20px 100px 20px !important;
  }
}
@media (min-width: 250px) and (max-width: 767px) {
  section
    section.section-side-image.clearfix.layer5
    .container-fluid
    .row
    .nopadding
    .header-inner
    .overlay
    .col-md-6
    form.contact100-form.validate-form
    .wrap-input100 {
    width: 100% !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  section
    section.section-side-image.clearfix.layer5
    .container-fluid
    .row
    .nopadding
    .header-inner
    .overlay
    .col-md-6
    form.contact100-form.validate-form
    .wrap-input100 {
    width: 100% !important;
  }
}
@media (min-width: 1200px) {
  section
    section.section-side-image.clearfix.layer5
    .container-fluid
    .row
    .nopadding
    .header-inner
    .overlay
    .col-md-6
    form.contact100-form.validate-form
    .wrap-input100 {
    width: 100% !important;
  }
}
section
  section.section-side-image.clearfix.layer5
  .container-fluid
  .row
  .nopadding
  .header-inner
  .overlay
  .col-md-6
  form.contact100-form.validate-form
  .wrap-input100:last-child {
  margin-bottom: 15px !important;
}
@media (min-width: 250px) and (max-width: 767px) {
  section
    section.section-side-image.clearfix.layer5
    .container-fluid
    .row
    .nopadding
    .header-inner
    .overlay
    .col-md-6
    form.contact100-form.validate-form
    .wrap-input100
    input,
  section
    section.section-side-image.clearfix.layer5
    .container-fluid
    .row
    .nopadding
    .header-inner
    .overlay
    .col-md-6
    form.contact100-form.validate-form
    .wrap-input100
    textarea {
    width: 100% !important;
    min-width: 150px !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  section
    section.section-side-image.clearfix.layer5
    .container-fluid
    .row
    .nopadding
    .header-inner
    .overlay
    .col-md-6
    form.contact100-form.validate-form
    .wrap-input100
    input,
  section
    section.section-side-image.clearfix.layer5
    .container-fluid
    .row
    .nopadding
    .header-inner
    .overlay
    .col-md-6
    form.contact100-form.validate-form
    .wrap-input100
    textarea {
    width: 100% !important;
    min-width: 150px !important;
  }
}
@media screen and (max-width: 576px) {
  section
    section.section-side-image.clearfix.layer5
    .container-fluid
    .row
    .nopadding
    .header-inner
    .overlay
    .col-md-6
    form.contact100-form.validate-form
    .wrap-input100
    input,
  section
    section.section-side-image.clearfix.layer5
    .container-fluid
    .row
    .nopadding
    .header-inner
    .overlay
    .col-md-6
    form.contact100-form.validate-form
    .wrap-input100
    textarea {
    width: 100%;
    min-width: 250px;
  }
}
@media (min-width: 250px) and (max-width: 767px) {
  section
    section.section-side-image.clearfix.layer5
    .container-fluid
    .row
    .nopadding
    .header-inner
    .overlay
    .col-md-6
    form.contact100-form.validate-form
    .wrap-input100
    textarea {
    height: 90px !important;
    margin-bottom: 25px !important;
  }
}
section
  section.section-side-image.clearfix.layer5
  .container-fluid
  .row
  .nopadding
  .header-inner
  .overlay
  .col-md-6
  form.contact100-form.validate-form
  .container-contact100-form-btn {
  margin-top: 15% !important;
}
section
  section.section-side-image.clearfix.layer5
  .container-fluid
  .row
  .nopadding
  .header-inner
  .overlay
  .col-md-6
  form.contact100-form.validate-form
  .container-contact100-form-btn
  button
  span
  i {
  -webkit-transform: rotate(0deg) !important;
  -ms-transform: rotate(0deg) !important;
  transform: rotate(0deg) !important;
}
@media (min-width: 250px) and (max-width: 767px) {
  section section.section-side-image.clearfix.layer5 .label-input100 {
    left: 50% !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  section section.section-side-image.clearfix.layer5 .label-input100 {
    left: 100% !important;
  }
}
@media (min-width: 250px) and (max-width: 767px) {
  .container-contact100-form-btn {
    right: 0 !important;
  }
}
@media (min-width: 250px) and (max-width: 767px) {
  .contact100-form-btn {
    position: relative;
    right: 0px !important;
  }
}
@media (min-width: 250px) and (max-width: 767px) {
  .validate-form {
    left: 0% !important;
  }
}
@media only screen and (max-width: 600px) {
  .validate-input {
    left: 0% !important;
  }
}
@media only screen and (max-width: 600px) {
  .label-input100 {
    text-align: left;
    position: unset;
    top: unset !important;
    left: unset !important;
    width: 100%;
    padding: 0 5px;
  }
}
@media only screen and (max-width: 785px) {
  .label-input100 {
    text-align: left;
    position: unset;
    top: unset !important;
    left: unset !important;
    width: 100%;
    padding: 0 5px;
  }
}
@media only screen and (max-width: 400px) {
  .label-input100 {
    padding-right: 20px !important;
  }
}
@media (min-width: 250px) and (max-width: 767px) {
  .note {
    left: 0 !important;
    display: none !important;
  }
}
@media (min-width: 250px) and (max-width: 767px) {
  .add {
    left: 0 !important;
  }
}
@media screen and (max-width: 576px) {
  .add {
    top: 65px !important;
  }
}
@media screen and (max-width: 450px) {
  .add {
    top: 65px !important;
  }
}
@media screen and (max-width: 350px) {
  .add {
    top: 65px !important;
  }
}
@media screen and (max-width: 576px) {
  .layer5 .header-inner {
    min-height: 1400px !important;
    max-height: 1500px !important;
  }
}
@media screen and (max-width: 450px) {
  .layer5 .header-inner {
    min-height: 1400px !important;
    max-height: 1500px !important;
  }
}
@media screen and (max-width: 350px) {
  .layer5 .header-inner {
    min-height: 1400px !important;
    max-height: 1500px !important;
  }
}
@media screen and (max-width: 250px) {
  .layer5 .header-inner {
    min-height: 1400px !important;
    max-height: 1500px !important;
  }
}
.layer5 {
  height: auto;
}
@media (min-width: 250px) and (max-width: 767px) {
  .layer5 {
    min-height: 1400px !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .layer5 {
    min-height: 1400px !important;
  }
}
@media (min-width: 250px) and (max-width: 767px) {
  .layer5 .header-inner {
    min-height: 1400px !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .layer5 .header-inner {
    min-height: 1400px !important;
  }
}
@media (min-width: 250px) and (max-width: 767px) {
  .layer5 .header-inner .overlay .col-md-6 {
    width: 100% !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .layer5 .header-inner .overlay .col-md-6 {
    width: 100% !important;
  }
}
@media screen and (max-width: 250px) {
  .layer5 .cube {
    width: 223px;
    height: 300px;
    border: 20px solid rgba(255, 255, 255, 0.1);
    position: relative;
    top: 5px;
    left: 2%;
  }
}
@media (min-width: 992px) {
  .layer5 .note {
    top: 0 !important;
  }
}
@media (min-width: 250px) and (max-width: 767px) {
  .layer5 .note {
    top: 0 !important;
  }
}
@media (min-width: 250px) and (max-width: 767px) {
  .layer5 .add {
    left: 0 !important;
  }
}
.contact100-form {
  padding: 0px 20px 57px 20px !important;
}
.contact100-form .btn-primary{
  margin: auto;
}
section section .auto-container {
  margin: 40px auto !important;
}
section .layer5 {
  height: auto;
}
@media (min-width: 250px) and (max-width: 767px) {
  section .layer5 {
    min-height: 1400px !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  section .layer5 {
    min-height: 1400px !important;
  }
}
@media (min-width: 250px) and (max-width: 767px) {
  section .layer5 .header-inner {
    min-height: 1400px !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  section .layer5 .header-inner {
    min-height: 1400px !important;
  }
}
@media (min-width: 250px) and (max-width: 767px) {
  section .layer5 .header-inner .overlay .col-md-6 {
    width: 100% !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  section .layer5 .header-inner .overlay .col-md-6 {
    width: 100% !important;
  }
}
@media (min-width: 250px) and (max-width: 767px) {
  section section.section-side-image.clearfix.layer5 {
    min-height: 1400px !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  section section.section-side-image.clearfix.layer5 {
    min-height: 1400px !important;
  }
}
@media (min-width: 250px) and (max-width: 767px) {
  section
    section.section-side-image.clearfix.layer5
    .container-fluid
    .row
    .nopadding
    .header-inner
    .overlay
    .col-md-6 {
    width: 100% !important;
    height: auto !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  section
    section.section-side-image.clearfix.layer5
    .container-fluid
    .row
    .nopadding
    .header-inner
    .overlay
    .col-md-6 {
    width: 100% !important;
    height: auto !important;
  }
}
@media screen and (max-width: 250px) {
  section
    section.section-side-image.clearfix.layer5
    .container-fluid
    .row
    .nopadding
    .header-inner
    .overlay
    .col-md-6 {
    width: 100% !important;
    height: auto !important;
  }
}
@media (min-width: 250px) and (max-width: 767px) {
  section
    section.section-side-image.clearfix.layer5
    .container-fluid
    .row
    .nopadding
    .header-inner
    .overlay
    .col-md-6
    .contain
    .move
    h1 {
    font-size: 35px !important;
  }
}
@media (min-width: 250px) and (max-width: 767px) {
  section
    section.section-side-image.clearfix.layer5
    .container-fluid
    .row
    .nopadding
    .header-inner
    .overlay
    .col-md-6
    .contain
    .move
    h1
    span {
    top: -39px !important;
  }
}
@media (min-width: 250px) and (max-width: 767px) {
  section
    section.section-side-image.clearfix.layer5
    .container-fluid
    .row
    .nopadding
    .header-inner
    .overlay
    .col-md-6
    .contain
    p.note1.notee {
    top: -100px;
    position: relative;
  }
}
@media (min-width: 992px) {
  section
    section.section-side-image.clearfix.layer5
    .container-fluid
    .row
    .nopadding
    .header-inner
    .overlay
    .col-md-6
    .contain
    .note {
    top: 0 !important;
  }
}
section
  section.section-side-image.clearfix.layer5
  .container-fluid
  .row
  .nopadding
  .header-inner
  .overlay
  .col-md-6
  .contain
  p.note.notee1 {
  top: 0 !important;
}
@media (min-width: 250px) and (max-width: 767px) {
  section
    section.section-side-image.clearfix.layer5
    .container-fluid
    .row
    .nopadding
    .header-inner
    .overlay
    .col-md-6
    .contain
    p.note.notee1 {
    top: -100px;
    position: relative;
  }
}
@media (min-width: 250px) and (max-width: 767px) {
  section
    section.section-side-image.clearfix.layer5
    .container-fluid
    .row
    .nopadding
    .header-inner
    .overlay
    .col-md-6
    .contain
    div.add {
    top: -100px;
    position: relative;
  }
}
@media screen and (max-width: 10000px) {
  section
    section.section-side-image.clearfix.layer5
    .container-fluid
    .row
    .nopadding
    .header-inner
    .overlay
    .col-md-6
    .contain
    div.add
    h4.marg {
    margin-right: 50px !important;
  }
}
@media screen and (max-width: 1566px) {
  section
    section.section-side-image.clearfix.layer5
    .container-fluid
    .row
    .nopadding
    .header-inner
    .overlay
    .col-md-6
    .contain
    div.add
    h4.marg {
    margin-right: 50px !important;
  }
}
@media screen and (max-width: 1200px) {
  section
    section.section-side-image.clearfix.layer5
    .container-fluid
    .row
    .nopadding
    .header-inner
    .overlay
    .col-md-6
    .contain
    div.add
    h4.marg {
    margin-right: 50px !important;
  }
}
@media screen and (max-width: 992px) {
  section
    section.section-side-image.clearfix.layer5
    .container-fluid
    .row
    .nopadding
    .header-inner
    .overlay
    .col-md-6
    .contain
    div.add
    h4.marg {
    margin-right: 100px !important;
  }
}
@media (min-width: 250px) and (max-width: 767px) {
  section
    section.section-side-image.clearfix.layer5
    .container-fluid
    .row
    .nopadding
    .header-inner
    .overlay
    .col-md-6 {
    width: 100% !important;
  }
}
@media (min-width: 250px) and (max-width: 767px) {
  section
    section.section-side-image.clearfix.layer5
    .container-fluid
    .row
    .nopadding
    .header-inner
    .overlay
    .col-md-6
    form.contact100-form.validate-form {
    padding: 0px 20px 57px 20px !important;
  }
}
@media only screen and (max-width: 600px) {
  section
    section.section-side-image.clearfix.layer5
    .container-fluid
    .row
    .nopadding
    .header-inner
    .overlay
    .col-md-6
    form.contact100-form.validate-form {
    margin-top: 10%;
    margin: 0;
    left: 0 !important;
    padding: 0 !important;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media (min-width: 250px) and (max-width: 767px) {
  section
    section.section-side-image.clearfix.layer5
    .container-fluid
    .row
    .nopadding
    .header-inner
    .overlay
    .col-md-6
    form.contact100-form.validate-form
    .wrap-input100 {
    width: 100% !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  section
    section.section-side-image.clearfix.layer5
    .container-fluid
    .row
    .nopadding
    .header-inner
    .overlay
    .col-md-6
    form.contact100-form.validate-form
    .wrap-input100 {
    width: 100% !important;
  }
}
@media (min-width: 1200px) {
  section
    section.section-side-image.clearfix.layer5
    .container-fluid
    .row
    .nopadding
    .header-inner
    .overlay
    .col-md-6
    form.contact100-form.validate-form
    .wrap-input100 {
    width: 100% !important;
  }
}
section
  section.section-side-image.clearfix.layer5
  .container-fluid
  .row
  .nopadding
  .header-inner
  .overlay
  .col-md-6
  form.contact100-form.validate-form
  .wrap-input100:last-child {
  margin-bottom: 15px !important;
}
@media (min-width: 250px) and (max-width: 767px) {
  section
    section.section-side-image.clearfix.layer5
    .container-fluid
    .row
    .nopadding
    .header-inner
    .overlay
    .col-md-6
    form.contact100-form.validate-form
    .wrap-input100
    input,
  section
    section.section-side-image.clearfix.layer5
    .container-fluid
    .row
    .nopadding
    .header-inner
    .overlay
    .col-md-6
    form.contact100-form.validate-form
    .wrap-input100
    textarea {
    width: 100% !important;
    min-width: 150px !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  section
    section.section-side-image.clearfix.layer5
    .container-fluid
    .row
    .nopadding
    .header-inner
    .overlay
    .col-md-6
    form.contact100-form.validate-form
    .wrap-input100
    input,
  section
    section.section-side-image.clearfix.layer5
    .container-fluid
    .row
    .nopadding
    .header-inner
    .overlay
    .col-md-6
    form.contact100-form.validate-form
    .wrap-input100
    textarea {
    width: 100% !important;
    min-width: 150px !important;
  }
}
@media screen and (max-width: 576px) {
  section
    section.section-side-image.clearfix.layer5
    .container-fluid
    .row
    .nopadding
    .header-inner
    .overlay
    .col-md-6
    form.contact100-form.validate-form
    .wrap-input100
    input,
  section
    section.section-side-image.clearfix.layer5
    .container-fluid
    .row
    .nopadding
    .header-inner
    .overlay
    .col-md-6
    form.contact100-form.validate-form
    .wrap-input100
    textarea {
    width: 100%;
    min-width: 250px;
  }
}
@media (min-width: 250px) and (max-width: 767px) {
  section
    section.section-side-image.clearfix.layer5
    .container-fluid
    .row
    .nopadding
    .header-inner
    .overlay
    .col-md-6
    form.contact100-form.validate-form
    .wrap-input100
    textarea {
    height: 90px !important;
    margin-bottom: 25px !important;
  }
}
section
  section.section-side-image.clearfix.layer5
  .container-fluid
  .row
  .nopadding
  .header-inner
  .overlay
  .col-md-6
  form.contact100-form.validate-form
  .container-contact100-form-btn {
  margin-top: 25% !important;
}
section
  section.section-side-image.clearfix.layer5
  .container-fluid
  .row
  .nopadding
  .header-inner
  .overlay
  .col-md-6
  form.contact100-form.validate-form
  .container-contact100-form-btn
  button
  span
  i {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
@media (min-width: 250px) and (max-width: 767px) {
  section section.section-side-image.clearfix.layer5 .label-input100 {
    left: 50% !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  section section.section-side-image.clearfix.layer5 .label-input100 {
    left: 100% !important;
  }
}
section .layer1 {
  min-height: inherit;
  max-height: 1566px !important;
}
@media (min-width: 250px) and (max-width: 767px) {
  section .layer1 {
    min-height: 1400px !important;
  }
}
@media only screen and (max-width: 767px) {
  section .layer1 {
    min-height: 1400px !important;
  }
}
section
  section.section-side-image.clearfix.layer1
  .container-fluid
  .row
  .nopadding
  .header-inner {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center !important;
  -webkit-justify-content: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
  -webkit-box-align: center !important;
  -webkit-align-items: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
  min-height: 80vh !important;
}
@media (min-width: 250px) and (max-width: 767px) {
  section
    section.section-side-image.clearfix.layer1
    .container-fluid
    .row
    .nopadding
    .header-inner {
    min-height: 1400px !important;
  }
}
@media only screen and (max-width: 767px) {
  section
    section.section-side-image.clearfix.layer1
    .container-fluid
    .row
    .nopadding
    .header-inner {
    min-height: 1400px !important;
  }
}
section
  section.section-side-image.clearfix.layer1
  .container-fluid
  .row
  .nopadding
  .header-inner
  .overlay
  .register_detail {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center !important;
  -webkit-align-items: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
  -webkit-box-pack: center !important;
  -webkit-justify-content: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
  height: 100%;
}
@media only screen and (max-width: 600px) {
  section
    section.section-side-image.clearfix.layer1
    .container-fluid
    .row
    .nopadding
    .header-inner
    .overlay
    .register_detail
    form {
    margin-left: 1% !important;
  }
}
@media only screen and (max-width: 600px) {
  section
    section.section-side-image.clearfix.layer1
    .container-fluid
    .row
    .nopadding
    .header-inner
    .overlay
    .register_detail
    form
    .row
    button.btn.enter {
    position: relative;
    top: 500px !important;
  }
}
@media only screen and (min-width: 768px) {
  section
    section.section-side-image.clearfix.layer1
    .container-fluid
    .row
    .nopadding
    .header-inner
    .overlay
    .register_detail
    form
    .row
    button.btn.enter {
    position: relative;
    top: 400px !important;
    z-index: 100;
  }
}
section
  section.section-side-image.clearfix.layer1
  .container-fluid
  .row
  .nopadding
  .header-inner
  .overlay
  .register_detail
  form
  .row
  div.col-md-12
  .pass {
  left: auto !important;
}
@media (max-width: 767px) {
  .layer .img-holder {
    min-height: 1500px !important;
    overflow-y: auto !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .layer .img-holder {
    min-height: 1750px !important;
    overflow-y: auto !important;
  }
}
@media (min-width: 250px) and (max-width: 767px) {
  .layer .move {
    top: -200px !important;
    margin-left: 0% !important;
    display: block;
    left: 0% !important;
    width: 100% !important;
  }
  .layer .move h1 {
    font-size: 50px !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .layer .move {
    top: -200px !important;
    margin-left: 0% !important;
    display: block !important;
    left: 0% !important;
    width: 100% !important;
  }
}
@media (min-width: 992px) {
  .layer .move {
    top: -238px !important;
    left: 50% !important;
  }
}
@media (min-width: 250px) and (max-width: 767px) {
  .layer .not {
    display: block !important;
  }
}
@media (min-width: 250px) and (max-width: 767px) {
  .layer .note {
    display: block !important;
  }
}
section section.section-side-image.clearfix.layer {
  /*min-height: 1300px !important;*/
}
@media (max-width: 767px) {
  section section.section-side-image.clearfix.layer div.img-holder {
    height: 1350px !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  section section.section-side-image.clearfix.layer div.img-holder {
    height: 1350px !important;
  }
}
@media (max-width: 767px) {
  section
    section.section-side-image.clearfix.layer
    div.container-fluid
    .row
    .nopadding
    div.header-inner {
    min-height: 1500px !important;
    overflow-y: auto !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  section
    section.section-side-image.clearfix.layer
    div.container-fluid
    .row
    .nopadding
    div.header-inner {
    min-height: 1750px !important;
    overflow-y: auto !important;
  }
}
@media (min-width: 992px) {
  section
    section.section-side-image.clearfix.layer
    div.container-fluid
    .row
    .nopadding
    div.header-inner
    div.overlay
    .col-md-6 {
    max-width: 49% !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  section
    section.section-side-image.clearfix.layer
    div.container-fluid
    .row
    .nopadding
    div.header-inner
    div.overlay
    .col-md-6 {
    max-width: 49% !important;
  }
}
@media (max-width: 767px) {
  section
    section.section-side-image.clearfix.layer
    div.container-fluid
    .row
    .nopadding
    div.header-inner
    div.overlay
    .col-md-6 {
    min-width: 100% !important;
    height: -webkit-fit-content !important;
    height: -moz-fit-content !important;
    height: fit-content !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  section
    section.section-side-image.clearfix.layer
    div.container-fluid
    .row
    .nopadding
    div.header-inner
    div.overlay
    .col-md-6 {
    min-width: 100% !important;
    height: -webkit-fit-content !important;
    height: -moz-fit-content !important;
    height: fit-content !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  section
    section.section-side-image.clearfix.layer
    div.container-fluid
    .row
    .nopadding
    div.header-inner
    div.overlay
    .col-md-6 {
    width: 100% !important;
  }
}
@media only screen and (max-width: 991px) {
  section
    section.section-side-image.clearfix.layer
    div.container-fluid
    .row
    .nopadding
    div.header-inner
    div.overlay
    .col-md-6
    .contain
    .cube {
    width: 100% !important;
    left: 0% !important;
  }
}
@media (min-width: 250px) and (max-width: 767px) {
  section
    section.section-side-image.clearfix.layer
    div.container-fluid
    .row
    .nopadding
    div.header-inner
    div.overlay
    .col-md-6
    .contain
    .move {
    left: 0% !important;
  }
  section
    section.section-side-image.clearfix.layer
    div.container-fluid
    .row
    .nopadding
    div.header-inner
    div.overlay
    .col-md-6
    .contain
    .move
    h1 {
    font-size: 55px !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  section
    section.section-side-image.clearfix.layer
    div.container-fluid
    .row
    .nopadding
    div.header-inner
    div.overlay
    .col-md-6
    .contain
    .move {
    left: 0% !important;
  }
  section
    section.section-side-image.clearfix.layer
    div.container-fluid
    .row
    .nopadding
    div.header-inner
    div.overlay
    .col-md-6
    .contain
    .move
    h1 {
    font-size: 55px !important;
  }
}
@media only screen and (min-width: 992px) {
  section
    section.section-side-image.clearfix.layer
    div.container-fluid
    .row
    .nopadding
    div.header-inner
    div.overlay
    .col-md-6
    .contain
    .move {
    /*position: absolute;*/
    left: 0;
    font-size: 25px;
    z-index: 14;
    left: 20px !important;
    top: 50px !important;
  }
}
@media only screen and (min-width: 1200px) {
  section
    section.section-side-image.clearfix.layer
    div.container-fluid
    .row
    .nopadding
    div.header-inner
    div.overlay
    .col-md-6
    .contain
    .move {
    /*width: 55%;*/
  }
}
section
  section.section-side-image.clearfix.layer
  div.container-fluid
  .row
  .nopadding
  div.header-inner
  div.overlay
  .col-md-6
  .contain
  .move
  h1
  span {
  display: block;
}
@media only screen and (max-width: 767px) {
  section
    section.section-side-image.clearfix.layer
    div.container-fluid
    .row
    .nopadding
    div.header-inner
    div.overlay
    .col-md-6
    .contain
    p.note.not {
    display: block !important;
  }
}
@media only screen and (min-width: 768px) {
  section
    section.section-side-image.clearfix.layer
    div.container-fluid
    .row
    .nopadding
    div.header-inner
    div.overlay
    .col-md-6
    .contain
    p.note.not {
    width: 60% !important;
    margin-top: 6% !important;
  }
}
@media only screen and (max-width: 767px) {
  section
    section.section-side-image.clearfix.layer
    div.container-fluid
    .row
    .nopadding
    div.header-inner
    div.overlay
    .col-md-6
    .contain
    p.note1.not1 {
    display: block !important;
  }
}
@media only screen and (min-width: 768px) {
  section
    section.section-side-image.clearfix.layer
    div.container-fluid
    .row
    .nopadding
    div.header-inner
    div.overlay
    .col-md-6
    .contain
    p.note1.not1 {
    width: 60% !important;
  }
}
section
  section.section-side-image.clearfix.layer
  div.container-fluid
  .row
  .nopadding
  div.header-inner
  div.overlay
  div.col-md-6 {
  /*height: -webkit-fit-content !important;*/
  /*height: -moz-fit-content !important;*/
  /*height: fit-content !important;*/
  padding-bottom: 30px !important;
}
@media only screen and (max-width: 767px) {
  section
    section.section-side-image.clearfix.layer
    div.container-fluid
    .row
    .nopadding
    div.header-inner
    div.overlay
    div.col-md-6 {
    width: 100% !important;
  }
}
@media only screen and (max-width: 991px) {
  section
    section.section-side-image.clearfix.layer
    div.container-fluid
    .row
    .nopadding
    div.header-inner
    div.overlay
    div.col-md-6 {
    width: 100% !important;
    left: 0% !important;
  }
}
@media only screen and (min-width: 601px) {
  section
    section.section-side-image.clearfix.layer
    div.container-fluid
    .row
    .nopadding
    div.header-inner
    div.overlay
    div.col-md-6 {
    width: 51% !important;
  }
}
section
  section.section-side-image.clearfix.layer
  div.container-fluid
  .row
  .nopadding
  div.header-inner
  div.overlay
  div.col-md-6
  form.contact100-form.validate-form {
  padding: 0px 30px 5px 0px !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (min-width: 768px) and (max-width: 991px) {
  section
    section.section-side-image.clearfix.layer
    div.container-fluid
    .row
    .nopadding
    div.header-inner
    div.overlay
    div.col-md-6
    form.contact100-form.validate-form
    div.wrap-input100 {
    left: 0% !important;
    width: 100% !important;
  }
}
@media (min-width: 1200px) {
  section
    section.section-side-image.clearfix.layer
    div.container-fluid
    .row
    .nopadding
    div.header-inner
    div.overlay
    div.col-md-6
    form.contact100-form.validate-form
    div.wrap-input100 {
    width: 100% !important;
    left: 0 !important;
  }
}
@media (min-width: 250px) and (max-width: 767px) {
  section
    section.section-side-image.clearfix.layer
    div.container-fluid
    .row
    .nopadding
    div.header-inner
    div.overlay
    div.col-md-6
    form.contact100-form.validate-form
    div.wrap-input100 {
    left: 0 !important;
  }
}
@media (max-width: 767px) {
  section
    section.section-side-image.clearfix.layer
    div.container-fluid
    .row
    .nopadding
    div.header-inner
    div.overlay
    div.col-md-6
    form.contact100-form.validate-form
    div.wrap-input100
    input,
  section
    section.section-side-image.clearfix.layer
    div.container-fluid
    .row
    .nopadding
    div.header-inner
    div.overlay
    div.col-md-6
    form.contact100-form.validate-form
    div.wrap-input100
    textarea {
    width: 100% !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  section
    section.section-side-image.clearfix.layer
    div.container-fluid
    .row
    .nopadding
    div.header-inner
    div.overlay
    div.col-md-6
    form.contact100-form.validate-form
    div.wrap-input100
    input,
  section
    section.section-side-image.clearfix.layer
    div.container-fluid
    .row
    .nopadding
    div.header-inner
    div.overlay
    div.col-md-6
    form.contact100-form.validate-form
    div.wrap-input100
    textarea {
    width: 100% !important;
  }
}
@media only screen and (max-width: 600px) {
  section
    section.section-side-image.clearfix.layer
    div.container-fluid
    .row
    .nopadding
    div.header-inner
    div.overlay
    div.col-md-6
    form.contact100-form.validate-form
    div.newbtn {
    position: relative !important;
    left: 250px !important;
    width: -webkit-fit-content !important;
    width: -moz-fit-content !important;
    width: fit-content !important;
  }
}
@media only screen and (min-width: 600px) {
  section
    section.section-side-image.clearfix.layer
    div.container-fluid
    .row
    .nopadding
    div.header-inner
    div.overlay
    div.col-md-6
    form.contact100-form.validate-form
    div.newbtn {
    left: 10px !important;
  }
}
@media (min-width: 250px) and (max-width: 767px) {
  section .layer.not {
    margin-top: -40% !important;
  }
}

.btn-contact{
    margin: 3rem auto;
}
.alert-danger,  .alert-success {
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translate(-50%, 0%);
    z-index: 11;
    width: 50%;
}