/** Google Fonts **/
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@400;700&display=swap');

.google-fonts {
	font-family: 'Cinzel', serif;
	font-family: 'Raleway', sans-serif;
	font-family: 'Libre Baskerville', serif;
}

/**  Global style  **/
body.t-dark {
	background: #1D1D1D !important;
	color: rgb(233, 233, 233);
	--black-70: hsl(0, 0%, 87%);
	--black-90: hsl(0, 0%, 100%);
	--shadow: 0 0 10px hsla(0, 0%, 0%, 0.08);
	--white: hsl(240, 8%, 21%);
	--select-box-bg-color: hsl(240, 8%, 21%);
	--border-color-2: hsl(240, 9%, 25%);
	--border-color-1: hsl(240, 9%, 30%);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	height: 100vh;
	color: #24282d;
	position: relative;
}
.circle {
	position: fixed;
	z-index: -1;
	bottom: 0;
	width: 20px;
	aspect-ratio: 1/1;
	background: #97d4ff80;
	box-shadow: 0 0 10px #97d4ff80, 0 0 20px #97d4ff80, 0 0 30px #97d4ff80, 0 0 50px #97d4ff80;
	border-radius: 50%;
	animation: circle-animate 5s linear forwards;

}

@keyframes circle-animate {
	0% {
		transform: translateY(0);
		opacity: 1;
	}

	50% {
		opacity: 1;
	}

	100% {
		transform: translateY(-100vh);
	}
}

.circle::before {
	content: '';
	position: absolute;
	top: 100%;
	left: 25%;
	width: 50%;
	height: 100vh;
	opacity: 0.5s;
	background: linear-gradient(#97d4ff80, transparent);
}

/* body .top_bg {
	position: absolute;
	top: -30px;
	left: -20px;
	z-index: 0;
	opacity: 0.1;
} */

html {
	margin: 0%;
	padding: 0%;
}

.mr-rl {
	margin-left: 4%;
	margin-right: 4%;
}

.site-header {
	padding-top: 2em;
	padding-bottom: 1em;
	margin-left: 4%;
	margin-right: 4%;
}

.header-image {
	margin-top: 1em;
	text-align: center;
	margin-bottom: 2em;
}

a {
	text-decoration: none;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

a:visited {
	color: rgb(160, 160, 160);
}

a:hover {
	color: #ccc;
	text-decoration: none;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

a:active,
a:focus {
	text-decoration: none;
}

/** Global style **/
.section-subtitle {
	position: relative;
	margin: 20px 0 0;
	font-size: 40px !important;
	font-weight: 700;
	font-family: 'Raleway', sans-serif;
	line-height: 16px;
	text-align: center;
}

/** Preloader **/
#preloader {
	background: #000;
	background-size: 10%;
	height: 100vh;
	width: 100%;
	position: fixed;
	z-index: 100;
	transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

#preloader h1 {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 190px;
	font-weight: 700;
	font-family: 'Raleway', sans-serif;
	letter-spacing: 1px;
	opacity: 0.1;
}

#preloader h1 span {
	font-size: 190px;
	font-weight: 500 !important;
	font-family: 'Raleway', sans-serif;
	margin-left: 3px;
	letter-spacing: 1px;
}

#preloader h1 .dots {
	font-size: 50px;
	font-weight: 500 !important;
	margin-left: 1px;
	font-family: 'Cinzel', serif !important;
}

.preloader-extra iframe {
	display: none;
}

.preloader_item .img-box {
	height: 150px;
	width: 150px;
	margin: 30px auto 50px;
	margin-top: 18%;
}

.preloader_item .img-box::before,
.preloader_item .img-box::after {
	content: '';
	position: absolute;
	border-radius: 50%;
	animation: spin 15s linear infinite;
	-webkit-animation: spin 15s linear infinite;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

@-webkit-keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.preloader_item .img-box::before {
	height: 180px;
	width: 180px;
	left: -15px;
	top: -15px;
	border-left: 1px solid transparent;
}

.preloader_item .img-box::after {
	height: 210px;
	width: 210px;
	left: -30px;
	top: -30px;
	border-right: 1px solid transparent;
}

/** style switcher light $ dark mode theme start  **/
.style-switcher {
	width: 250px;
	position: fixed;
	height: 100%;
	background: #fff;
	right: -250px;
	top: 0%;
	z-index: 100;
	padding: 30px;
	box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
	transition: right 0.3s ease;
}

.style-switcher.open {
	right: 0;
}

.style-switcher-toggler {
	font-size: 12px;
	font-family: 'Raleway', sans-serif !important;
	text-transform: uppercase;
	letter-spacing: 1px;
	height: 35px;
	width: 120px;
	position: absolute;
	top: 45%;
	left: -77px;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 0px;
	cursor: pointer;
	transform: rotate(270deg);
}

.style-switcher .preloader_item .img-box {
	height: 70px;
	width: 70px;
	margin: 30px auto 50px;
	margin-top: 12%;
}

.style-switcher .preloader_item .img-box::before,
.style-switcher .preloader_item .img-box::after {
	content: '';
	position: absolute;
	border-radius: 50%;
	animation: spin 15s linear infinite;
	-webkit-animation: spin 15s linear infinite;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

@-webkit-keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.style-switcher .preloader_item .img-box::before {
	height: 100px;
	width: 100px;
	left: -15px;
	top: -15px;
	border-left: 1px solid transparent;
}

.style-switcher .preloader_item .img-box::after {
	height: 130px;
	width: 130px;
	left: -30px;
	top: -30px;
	border-right: 1px solid transparent;
}

.style-switcher .preloader_item h1 {
	text-align: center;
	font-family: 'Raleway', sans-serif !important;
	font-size: 18px;
	font-weight: 600;
	color: #0f0f0f;
}

.style-switcher .preloader_item p {
	text-align: center;
	font-family: 'Raleway', sans-serif !important;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	color: #0f0f0f;
}

.style-switcher h3 {
	font-size: 18px;
	color: #222;
	font-family: sans-serif;
	text-transform: capitalize;
	border-bottom: 1px solid #21759b;
	padding: 0 0 10px;
}

.themes_setting {
	margin-top: 50px;
}

.style-switcher-item {
	padding: 10px 0;
	border-bottom: 1px solid #21759b;
	text-align: center;
}

.style-switcher-item p {
	font-size: 15px;
	color: #fff;
	font-family: sans-serif;
	font-family: 'Raleway', sans-serif !important;
	letter-spacing: 1px;
	margin-bottom: 15px !important;
}

.theme-colors {
	margin-left: 5px;
}

.theme-colors button {
	height: 20px;
	width: 20px;
	border: none;
	border-radius: 50%;
	vertical-align: middle;
	padding: 0px 0px 0px 0px;
	position: relative;
	margin: 0px 12px 0px 0px;
	box-shadow: rgba(143, 143, 143, 0.493) 0px 2px 8px 0px;
}

.theme-colors button::before {
	content: "";
	transition: all 0.3s ease;
	position: absolute;
	width: 15px;
	height: 15px;
	background: #fff;
	left: 50%;
	top: 50%;
	border-radius: 50%;
	transform: translate(-50%, -50%);
	opacity: 0;
}

.theme-colors button.active::before {
	opacity: 1;
}

.theme-colors .color-1 {
	background-color: #134b74;
}

.theme-colors .color-2 {
	background-color: #434343;
}

.theme-colors .color-3 {
	background-color: #129369;
}

.theme-colors .color-4 {
	background-color: #ac320d;
}

.theme-colors .color-5 {
	background-color: #a07416;
}

.style-switcher-item .form-check {
	margin-left: 0px;
}

.form-check-input {
	box-shadow: rgba(46, 255, 46, 0.493) 0px 2px 8px 0px;
}

.form-check-input:checked {
	background-color: #13cc02 !important;
	border-color: #14ec00 !important;
}

.style-switcher-item .form-switch label {
	position: absolute;
	left: 0px;
}

.style-switcher-item .form-switch input {
	position: absolute;
	right: 0px;
}

.form-switch .form-check-input {
	width: 26px !important;
	height: 14px !important;
}

.form-check label {
	font-size: 15px;
	color: #222;
	font-family: sans-serif;
	padding-left: 0px;
}

.setting_footer {
	position: absolute;
	bottom: 20px;
	text-align: center;
}

.setting_footer h1 {
	color: #000;
	font-size: 14px;
	text-align: left !important;
	margin-left: -13px !important;
}

/** style switcher light $ dark mode theme end  **/


/** Our brand name **/
.site-branding {
	margin-bottom: 15px;
	margin-top: -5px;
	text-align: center;
	display: flex;
	justify-content: center;
}

.site-branding .mdi h2 {
	font-size: 48px;
	font-weight: 500;
	font-family: 'Raleway', sans-serif;
	letter-spacing: 1px;
}

.site-branding .mdi h2 .mdi_title {
	font-size: 48px;
	font-weight: 300 !important;
	font-family: 'Raleway', sans-serif;
	margin-left: 3px;
	letter-spacing: 1px;
}

.site-branding .mdi h2 .mdi_dot {
	font-size: 50px;
	font-weight: 500 !important;
	margin-left: 1px;
	font-family: 'Cinzel', serif !important;
}


/** Main navigation section start **/
.main-navigation {
	font-size: 15px;
	font-weight: 500;
	font-style: normal;
	letter-spacing: 2px !important;
	padding: 15px 0;
	font-family: 'Raleway', sans-serif;
	text-transform: capitalize !important;
}

.main-navigation a {
	text-decoration: none;
	font-family: sans-serif;
	letter-spacing: 1px;
}

.main-navigation a:hover {
	text-decoration: none;
}

.main-navigation a.active {
	color: gray;
}

.main-navigation ul {
	list-style: none;
	margin: 0 auto;
	padding: 3px 0;
}

.main-navigation li {
	display: inline;
	float: left;
	margin: 0 1em;
	position: relative;
}

.main-navigation ul ul {
	display: none;
	text-transform: none;
	box-shadow: none;
	opacity: 0.9;
	float: left;
	left: -1em;
	padding: 0.5em 1em;
	position: absolute;
	top: 1.5em;
	z-index: 99999;
	padding-top: 35px;
	transition: all 0.3s;
	font-weight: 400;
	background-color: #fff;
}

.main-navigation ul ul li {
	margin: 0;
	width: 150px;
}

.main-navigation ul li:hover>ul {
	display: block;
}

/** Main navigation section end **/


/** header Section start **/
.header-section {
	height: 100vh;
	min-height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	padding-bottom: 65px;
	padding-top: 40px;
	margin-left: 4%;
	margin-right: 4%;
	overflow: hidden;
}

.header-section .header-map {
	position: absolute;
	top: 0px;
	left: 0px;

}

.header-section .header-map img {
	width: 100vw;
	height: 100%;
	opacity: 0.1;
	object-fit: contain;
}

.text-box {
	margin-top: 130px;
	padding: 10px 0px 0px 40px;
}

.text-box a {
	color: white;
}

.text-box h5 {
	color: white;
	font-family: sans-serif;
	letter-spacing: 1px;
	text-transform: uppercase;
	font-size: 16px;
	font-weight: 700;
}

.text-box h1 {
	color: #fff;
	font-size: 45px;
	font-weight: 600;
	line-height: 50px;
	margin-top: 15px;
	font-family: 'Raleway', sans-serif;
}

.text-box p {
	color: rgb(241, 241, 241);
	font-size: 16px;
	font-family: sans-serif;
	letter-spacing: 0px;
	width: 100%;
	font-weight: 400 !important;
	letter-spacing: 1px;
	margin-bottom: 40px !important;
}

.header_social {
	margin-top: 15px;
}

.text-box a {
	font-size: 20px;
	margin-right: 14px;
}

.text-box a:hover {
	color: #eee;
}

.text-box .second-btn {
	font-size: 12px;
	color: #eee;
	background: #daa520;
	padding: 12px 20px 12px 20px;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-right: 15px;
	text-decoration: none;
	list-style: none;
}

.text-box .second-btn:hover {
	color: #eee;
	background: #111111;
}

/** header Section end **/


/** About us section begin **/
.about-us {
	position: relative;
	padding: 0px;
	border-radius: 5px;
	margin-top: 60px;
	overflow: hidden;
}

.about-us .title-background {
	position: absolute;
	left: 0px;
	bottom: -30px;
}

.about-us .title-background h1 {
	font-size: 220px;
	font-weight: 700;
	z-index: -1;
	opacity: 0.1;
	margin-top: -80px !important;
}

.about-us .about-details h1 {
	font-size: 40px;
	font-weight: 700;
	font-family: 'Raleway', sans-serif;
}

.about-us .about-details p {
	font-weight: 500;
	font-size: 16px;
	font-family: 'Raleway', sans-serif;
	margin-bottom: 20px !important;
}

.about-us .count_details {
	font-size: 38px;
	font-family: sans-serif;
	font-weight: 700;
	text-align: center;
	margin-top: -10px;
}

.about-us .count_details .count_text {
	font-size: 13px;
	font-family: sans-serif;
	font-weight: 500;
	text-transform: uppercase;
	text-align: center;
}

/* Skills */
.media-29101 .skill-mf,
.about-us .skill-mf {
	padding: 0px !important;
	margin: 0px !important;
	padding-right: 0px !important;
	margin-right: 0px !important;
}

.skill {
	padding: 0px !important;
}

.skill-mf span {
	font-size: 15px !important;
	font-weight: 500 !important;
	letter-spacing: 2px !important;
}

.skill-mf .progress {
	height: .6rem !important;
	border-radius: 0px !important;
}

.skill-mf .progress-details {
	margin: 3px 0 16px 0;
	border-radius: 0;
	height: .0rem;
}

.skill-mf .progress-details .progress-line {
	height: .6rem;
	border-radius: 0px;
}

/** For experience **/
.for_experience {
	padding-left: 12px;
}

.for_experience .experience_list,
.credentials_list {
	margin-bottom: 20px;
}

.for_experience .experience_list h1 {
	font-size: 30px;
	font-weight: 600;
	letter-spacing: 1px;
	font-family: 'Raleway', sans-serif;
}

.for_experience p {
	font-size: 16px;
	line-height: 16px;
}

.credentials_list h3 {
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 1px;
	font-family: 'Raleway', sans-serif;
}

/** About us section end **/


/** New services section begin **/
.content {
	margin-top: 0px;
	position: relative;
	overflow: hidden;
	padding: 0px !important;
}

.content .text span {
	position: absolute;
	top: 30px;
	right: 30px;
	font-size: 150px;
	font-weight: 700;
	font-family: sans-serif;
	z-index: -1;
	opacity: 0.2;
}

.owl-1 .owl-nav {
	width: 100%;
	position: absolute;
	top: 50%;
}

.owl-1 .owl-nav .owl-next,
.owl-1 .owl-nav .owl-prev {
	z-index: 92;
	position: absolute;
	top: 50%;
}

.owl-1 .owl-nav .owl-next:active,
.owl-1 .owl-nav .owl-next:focus,
.owl-1 .owl-nav .owl-prev:active,
.owl-1 .owl-nav .owl-prev:focus {
	outline: none;
}

.owl-1 .owl-nav .owl-next span,
.owl-1 .owl-nav .owl-prev span {
	color: #fff;
}

.owl-1 .owl-nav .owl-next span:before,
.owl-1 .owl-nav .owl-prev span:before {
	font-size: 40px !important;
}

.owl-1 .owl-nav .owl-next {
	border: 4px solid blue;
	right: 20px;
}

.owl-1 .owl-nav .owl-prev {
	left: 20px;
}

.owl-1 .owl-dots {
	position: absolute;
	bottom: 40px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}

.owl-1 .owl-dots .owl-dot {
	background: none;
	display: inline-block;
}

.owl-1 .owl-dots .owl-dot>span {
	display: inline-block;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.5);
	margin: 4px;
}

.owl-1 .owl-dots .owl-dot.active>span {
	background: white;
}

.owl-1 .owl-dots .owl-dot:active,
.owl-1 .owl-dots .owl-dot:focus {
	outline: none;
}

.media-29101 .img {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;
}

.media-29101 .text {
	padding: 0px 4px 0px 50px;
	margin-top: 0px;
}

@media (max-width: 991.98px) {
	.media-29101 .text {
		padding: 30px 0px 0px 0px;
		width: 100%;
	}
}

.media-29101 .text .category {
	font-size: 36px;
	font-weight: 600;
	font-family: 'Raleway', sans-serif;
	margin-top: -5px;
}

.media-29101 .text h1 {
	font-size: 14px;
	text-transform: uppercase;
	font-weight: 500;
	letter-spacing: 2px;
	padding: 6px 0px 6px 15px;
	box-shadow: rgba(0, 0, 0, 0.356) 1.95px 1.95px 2.6px;
	display: flex;
	margin-bottom: 14px;
}

.media-29101 .text h2 a {
	color: #000;
}

.media-29101 .text p {
	font-size: 16px;
	font-family: sans-serif;
	letter-spacing: 0px;
	width: 100%;
	font-weight: 400;
	margin-top: -12px;
	margin-bottom: 10px !important;
}

.media-29101 .text p a {
	text-decoration: underline;
}

.about_carousel_nav {
	margin-bottom: 40px;
	display: flex;
	margin-right: 3%;
	margin-left: 3%;
}

.about_carousel_nav a {
	font-size: 20px;
	font-weight: 600;
	list-style: none !important;
	text-decoration: none !important;
	padding: 5px;
	text-align: center;
	letter-spacing: 2px;
	display: inline-block;
	font-family: 'Raleway', sans-serif;
	text-transform: capitalize;
}

.about_carousel_nav a:hover {
	color: #4d4d4d;
	text-decoration: none !important;
}

.about_carousel_nav a.active:before {
	content: "";
	bottom: -1px;
	left: 0;
	right: 0;
	position: absolute;
}

.carousel-nav {
	margin-bottom: 40px;
	display: flex;
	margin-right: 3%;
	margin-left: 3%;
}

.carousel-nav a {
	font-size: 20px;
	font-weight: 600;
	list-style: none !important;
	text-decoration: none !important;
	padding: 5px;
	text-align: center;
	letter-spacing: 2px;
	display: inline-block;
	font-family: 'Raleway', sans-serif;
	text-transform: capitalize;
}

.carousel-nav a:hover {
	color: #4d4d4d;
	text-decoration: none !important;
}

.carousel-nav a.active {
	color: #000;
}

.carousel-nav a.active:before {
	content: "";
	bottom: -1px;
	left: 0;
	right: 0;
	position: absolute;
}

/** New services section over **/


/** Services section start **/
.specs {
	overflow: hidden;
	padding: 60px 5px 120px 20px;
	margin-top: 50px;
	margin-bottom: 40px !important;
	position: relative;
	border-radius: 40px 0px;
}

.specs .text-right {
	text-align: right;
}

.specs .website-process h1 {
	font-size: 30px;
	font-weight: 600;
	font-family: 'Raleway', sans-serif;
	letter-spacing: 1px;
	margin-top: 50px;
}

.specs .website-process h1 ion-icon {
	font-size: 22px;
	margin-left: 0px;
	color: #fff !important;
	padding: 6px;
	transform: translateY(6px);
	border-radius: 4px;
	box-shadow: rgba(0, 0, 0, 0.356) 1.95px 1.95px 2.6px;
}

.specs .website-process p {
	font-size: 16px;
	font-weight: 500;
	text-align: left;
	font-family: 'Raleway', sans-serif;
}

.specs .img-wrapper {
	position: relative;
}

.specs .img-wrapper .absolute {
	position: absolute;
	left: 30px;
	bottom: 0px;
	z-index: 1;
}

.specs .img-wrapper .laptop-img {
	width: 65%;
	margin-top: -30%;
}

.specs .img-wrapper .tablet-img {
	width: 35%;
	margin-left: 90px !important;
}

/** Services section end **/


/** Services page start **/
.services-details {
	margin-bottom: 15%;
}

.web_design,
.web_development {
	margin-top: 70px !important;
}

.web_design h1,
.web_development h1 {
	font-size: 35px;
	font-weight: 600;
	font-family: 'Raleway', sans-serif;
}

.web_design p,
.web_development p {
	font-size: 16px;
	font-weight: 500;
	font-family: sans-serif;
}

.web_design h3,
.web_development h3 {
	font-size: 12px;
	font-weight: 500;
	font-family: 'Raleway', sans-serif;
	text-transform: uppercase;
	background: #134b74;
	padding: 6px 0px 6px 12px;
	color: #fff;
	letter-spacing: 2px;
	margin-bottom: 12px;
	border-left: 4px solid #77A7FB;
}

.web_design_details {
	padding-left: 40px !important;
}

/** Services page end **/


.web_development_laptop {
	width: 90% !important;
}

.web_development_tablet {
	width: 40% !important;
}

/** Contact Section start **/
.contact {
	padding: 7em 0;
	margin-top: 10%;
}

.contact_section {
	margin-top: 60px;
}

.contact_section h1 {
	font-size: 40px;
	font-weight: 700;
	font-family: 'Raleway', sans-serif;
}

.contact_section p {
	font-size: 16px;
	font-weight: 600;
	font-family: 'Raleway', sans-serif;
}

.contact_section h3 {
	font-size: 16px;
	font-weight: 500;
	font-family: sans-serif;
	padding: 10px 0px 10px 0px;
}

.contact_section h3 i {
	font-size: 18px;
}

.contact_form .second_row {
	margin-top: 20px;
}

.contact_form .third_row {
	margin-top: 20px;
}

.contact_form input::placeholder,
.contact_form textarea::placeholder {
	color: #000;
	font-size: 15px;
}

.contact_form input {
	width: 100%;
	outline: none;
	border: none;
	padding: 10px;
	color: #000;
	font-size: 15px;
}

.contact_form textarea {
	width: 100%;
	outline: none;
	border: none;
	padding: 10px;
	color: #000;
	font-size: 15px;
}

.contact_buttton {
	margin-top: 20px;
}

.contact_form button {
	font-size: 15px;
	outline: none;
	border: none;
	padding: 8px 18px;
	color: #fff;
}

.wrapper {
	width: 100%;
}

.order-md-last {
	-webkit-box-ordinal-group: 14;
	-ms-flex-order: 13;
	order: 13;
}

.align-items-stretch {
	-webkit-box-align: stretch !important;
	-ms-flex-align: stretch !important;
	align-items: stretch !important;
}

.d-flex {
	display: -webkit-box !important;
	display: -ms-flexbox !important;
	display: flex !important;
}

.contact-wrap {
	background: #fff;
}

.google_map {
	margin-top: 40px;
	margin-bottom: 15%;
}

.google_map .contact-wrap iframe {
	width: 100%;
	height: 60vh;
}

.mb-4,
.my-4 {
	margin-bottom: 1.5rem !important;
}

#form-message-warning,
#form-message-success {
	display: none;
}

#form-message-warning {
	color: red;
}

/** Contact Section end **/


/** Language logo start **/

/** Related work slider begin **/
.related-work {
	margin-top: 60px;
}

.related-work .related-title {
	font-size: 20px;
	font-weight: 600;
	color: #666666;
	letter-spacing: 1px;
	font-family: 'Raleway', sans-serif;
	text-transform: capitalize;
	background: rgba(241, 241, 241, 0.281);
	box-shadow: rgba(122, 122, 122, 0.15) 1.95px 1.95px 2.6px;
	padding: 10px 0px 5px 15px;
	margin-bottom: 20px;
}

.related-work .related-title img {
	width: 25px;
}

.related-work img {
	width: 100%;
	opacity: 1;
}

.related-work .card {
	outline: none;
	border: none;
	margin-bottom: 30px;
	box-shadow: rgba(122, 122, 122, 0.15) 1.95px 1.95px 2.6px;
}

.related-work .card-body {
	padding: 10px 0px 10px 0px;
}

.related-work .card .card-text {
	font-size: 12px;
	font-weight: 600;
	color: #64625a;
	font-family: 'Raleway', sans-serif;
}

.related-work .card .card-date {
	color: #64625a;
	font-size: 12px;
	text-transform: uppercase;
}

/** Related work slider over **/

/** Second Header **/
.second-header-section {
	height: 40vh;
	min-height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	margin-left: 4%;
	margin-right: 4%;
}

.second-header-section .header-map {
	position: absolute;
	top: 10%;
	left: 60%;
}

.second-header-section .header-map img {
	width: 65%;
}

.second-header-section .row {
	text-align: center;
	padding-top: 7.3vh;
}

.second-header-section .navigation_link h1 {
	text-align: center;
	font-size: 90px;
	color: #fff;
	opacity: .1;
	text-transform: uppercase;
	font-family: sans-serif;
	font-weight: 700;
	letter-spacing: 1px;
}

.second-header-section .navigation_link a {
	font-size: 15px;
	font-family: sans-serif;
	letter-spacing: 1px;
	color: #c4c4c4;
}

.second-header-section .navigation_link a:hover {
	color: #f5f5f5;
	text-decoration: underline;
}

.second-header-section .navigation_link .active {
	color: #f5f5f5;
}

.header-banner {
	background-image: url('./Images/header-bg2.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	margin-left: 4%;
	margin-right: 4%;
	padding: 50px 0px 50px 0px;
}

.header-banner h1 {
	text-align: center;
	color: #fff;
	font-size: 50px;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 2px;
}

.header-banner .extra-link {
	text-align: center;
	color: #fff;
}

.header-banner .extra-link a {
	color: #fff;
	font-size: 15px;
}

.header-banner .extra-link .active {
	color: rgb(175, 175, 175);
}

.header-banner .extra-link span {
	font-size: 17px;
	margin: 0px 4px 0px 4px;
}

.carousel-item {
	height: 400px;
}

.right-col {
	flex-basis: 55%;
}

#picture {
	height: 100%;
	display: block;
	margin: auto;
}

.right-bg {
	position: relative;
}

.right-bg img {
	position: absolute;
	right: 140px;
	top: 44px;
	width: 43%;
}

/** Codebox **/

/** About Page **/
.about_full_details {
	margin-top: 70px;
	margin-left: 4%;
	margin-right: 4%;
	margin-bottom: 80px;
}

.about_full_details .about_details p {
	font-size: 16px;
	font-weight: 500;
	font-family: sans-serif;
}

.about_profile img {
	width: 100%;
	opacity: .8;
}

/** Website add sectin start**/
.website-add {
	margin-top: 10%;
}

.website-add img {
	width: 100%;
}

.gallery-box {
	max-width: 400px;
	position: relative;
	margin: auto;
}

.gallery-box img {
	width: 100%;
	border: 10px solid rgba(255, 255, 255, 0.2);
	box-sizing: border-box;
}

.gallery-box ul {
	position: absolute;
	right: -100px;
	top: 50%;
	transform: translateY(-50%);
}

.gallery-box ul li {
	list-style: none;
	font-size: 16px;
	font-weight: bold;
	padding: 0 30px;
	margin-bottom: 30px;
	cursor: pointer;
	position: relative;
}

.gallery-box .active {
	color: #e7c82f;
}

.gallery-box ul li::after {
	content: '';
	width: 30px;
	height: 2px;
	background: transparent;
	position: absolute;
	top: 8px;
	left: -5px;
}

.gallery-box .active::after {
	background: #e7c82f;
}

.small-icon1 {
	width: 15px;
	position: absolute;
	right: 200px;
	top: -10px;
	opacity: 0.3;
}

.small-icon2 {
	width: 25px;
	position: absolute;
	right: 200px;
	bottom: -100px;
	opacity: 0.3;
}

.small-icon3 {
	width: 25px;
	position: absolute;
	right: 50px;
	top: 200px;
	opacity: 0.5;
	transform: rotate(45deg);
}

.small-icon4 {
	width: 250px;
	position: absolute;
	top: 120px;
	left: -150px;
	opacity: 0.1;
}

.small-icon5 {
	width: 25px !important;
	position: absolute !important;
	bottom: 60px !important;
	left: 50px !important;
	opacity: 0.3 !important;
}

.about__counter {
	padding-top: 70px;
	border-top: 1px solid #e1e1e1;
	margin-top: 30px;
}

/* button {
	position: relative;
	display: inline-block;
	cursor: pointer;
	outline: none;
	border: 0;
	vertical-align: middle;
	text-decoration: none;
	background: transparent;
	padding: 0;
	font-size: 30px;
	font-family: inherit;
  } */
button.learn-more {
	margin-top: 20px;
	width: 17.5rem;
	height: auto;
}

button.learn-more .circle {
	transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
	position: relative;
	display: block;
	margin: 0;
	width: 3rem;
	height: 3rem;
	background: #282936;
	border-radius: 1.625rem;
}

button.learn-more .circle .icon {
	transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	background: #fff;
}

button.learn-more .circle .icon.arrow {
	transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
	left: 0.625rem;
	width: 1.125rem;
	height: 0.125rem;
	background: none;
}

button.learn-more .circle .icon.arrow::before {
	position: absolute;
	content: "";
	top: -0.25rem;
	right: 0.0625rem;
	width: 0.625rem;
	height: 0.625rem;
	border-top: 0.125rem solid #fff;
	border-right: 0.125rem solid #fff;
	transform: rotate(45deg);
}

button.learn-more a {
	font-size: 15px;
	color: #282936;
	font-weight: 600;
	line-height: 1;
	text-align: center;
	text-decoration: none;
	transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
	position: absolute;
	top: 0;
	left: 20px;
	right: 0;
	bottom: 0;
	padding: 0.75rem 0;
	margin: 0 0 0 1.85rem;
	text-transform: uppercase;
}

button:hover .circle {
	width: 100%;
}

button:hover .circle .icon.arrow {
	background: #fff;
	transform: translate(1rem, 0);
}

button:hover a {
	color: #fff;
}


/** About Page **/
.second_title {
	font-size: 32px;
	font-family: 'Raleway', sans-serif;
	font-weight: 700;
	letter-spacing: 1px;
	margin-top: 15px;
	margin-bottom: 20px;
	text-transform: uppercase;
}

.second_gap {
	margin-left: 12px;
}

.my_language ul {
	position: absolute;
	margin-top: 46px;
	top: 50%;
	transform: translateY(-50%);
	/* text-align: center; */
	width: 100%;
	margin-left: -20px;
}

.row_two {
	margin-top: 90px;
}

.my_language ul li {
	position: relative;
	display: inline-block;
	list-style: none;
	margin: 0 10px;
}

.my_language ul li a {
	position: relative;
	display: inline-block;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	font-size: 30px;
	overflow: hidden;
}

.my_language ul li a .box {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 200%;
}

.my_language ul li a .box span {
	position: relative;
	display: block;
	width: 100%;
	height: 50%;
	line-height: 43px;
	transition: 1s;
	padding-left: 7px;
}

.my_language ul li a .box_two span {
	line-height: 43px;
	padding-left: 11px;
}

.my_language ul li a .box_three span {
	line-height: 48px;
	padding-left: 9px;
}

.my_language ul li a .box_four span {
	line-height: 40px;
	padding-left: 5.3px;
}

.my_language ul li a .box_five span {
	line-height: 44px;
	padding-left: 5.5px;
}

.my_language ul li a .box_six span {
	line-height: 44px;
	padding-left: 8px;
}

.my_language ul li a .box_six span {
	line-height: 44px;
	padding-left: 8px;
}

.my_language ul li a .box_seven span {
	line-height: 44px;
	padding-left: 6.5px;
}

.my_language ul li a .box_ten span {
	line-height: 44px;
	padding-left: 9px;
}

.my_language ul li a .box_eleven span {
	line-height: 44px;
	padding-left: 12px;
}

.my_language ul li a .box_tweleve span {
	line-height: 44px;
	padding-left: 6px;
}

.my_language ul li a .box_thirteen span {
	line-height: 48px;
	padding-left: 8px;
}

.my_language ul li a .box_fifteen span {
	line-height: 44px;
	padding-left: 10px;
}

.my_language ul li a .box_sixteen span {
	line-height: 44px;
	padding-left: 6px;
}

.my_language ul li a .box_seventeen span {
	line-height: 42px;
	padding-left: 5px;
}

.my_language ul li a .box_eighteen span {
	line-height: 42px;
	padding-left: 14px;
}

.my_language ul li a .box span img {
	width: 35px;
	opacity: .9;
}

.my_language ul li a .box_two span img {
	width: 27px;
}

.my_language ul li a .box_three span img {
	width: 34px;
}

.my_language ul li a .box_four span img {
	width: 40px;
}

.my_language ul li a .box_five span img {
	width: 40px;
}

.my_language ul li a .box_seven span img {
	width: 38px;
}

.my_language ul li a .box_ten span img {
	width: 32px;
}

.my_language ul li a .box_eleven span img {
	width: 28px;
}

.my_language ul li a .box_tweleve span img {
	width: 38px;
}

.my_language ul li a .box_thirteen span img {
	width: 34px;
}

.my_language ul li a .box_fifteen span img {
	width: 30px;
}

.my_language ul li a .box_sixteen span img {
	width: 40px;
}

.my_language ul li a .box_seventeen span img {
	width: 40px;
}

.my_language ul li a .box_eighteen span img {
	width: 24px;
}

.my_language ul li a .box span img:hover {
	opacity: 1;
}

/************** span of box 1 **************/
.my_language ul li a .box:nth-child(1) span {
	transform: translateY(0);
}

/* .my_language ul li a .box:nth-child(1) span:nth-child(1) {
	background: #fff;
} */

.my_language ul li a .box:nth-child(1) span:nth-child(2) {
	background: rgba(156, 214, 255, 0.349);
}

.my_language ul li:hover a .box:nth-child(1) span {
	transform: translateY(-100%);
}

/************** span of box 2 **************/
.my_language ul li a .box:nth-child(2) span {
	transform: translateY(-100%);
}

.my_language ul li a .box:nth-child(2) span {
	color: #262626;
}

.my_language ul li:hover a .box:nth-child(2) span {
	color: #fff;
}

.my_language ul li:hover a .box:nth-child(2) span {
	transform: translateY(0);
}



/** Portfolio Details start **/
.portfolio_details {
	margin-top: 40px;
}

.portfolio_details .portfolio_title_left h1 {
	font-size: 38px;
	font-family: 'Raleway', sans-serif;
	font-weight: 700;
	margin-bottom: 10px;
}

.portfolio_details .portfolio_title_left p {
	font-size: 16px;
	font-family: sans-serif;
	font-weight: 500;
}

.portfolio_details .portfolio_title_left .portfolio_details_img {
	margin-top: 25px;
	max-height: 720px;
	overflow-x: scroll;
	width: 100%;
}

.portfolio_details .recent_project_title {
	font-size: 16px;
	font-weight: 600;
	font-family: 'Raleway', sans-serif;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #fff;
	padding: 6px 0px 4px 13px;
}

.portfolio_details .portfolio_details_project h1 {
	font-size: 22px;
	margin-top: 25px;
	margin-bottom: 20px;
}

.portfolio_details .portfolio_details_project p {
	margin-top: -8px;
}

.portfolio_details .portfolio_details_project_one h1,
.portfolio_details .portfolio_details_project_two h1 {
	font-size: 22px;
	margin-top: 25px;
}

.portfolio_details .portfolio_details_project_one a,
.portfolio_details .portfolio_details_project_two a {
	font-size: 16px;
	font-family: sans-serif;
	font-weight: 500;
	text-decoration: underline;
}

.recent_portfolio {
	margin-top: 30px;
}

.recent_portfolio .row {
	background: #77a7fb3f;
	margin-left: 0%;
	margin-right: 0%;
	margin-top: 15px;
	padding: 10px 0px 10px 0px;
	border-radius: 5px;
}

.recent_portfolio_details {
	margin-left: -16px;
}

.recent_portfolio_details h1 {
	font-size: 18px;
	text-decoration: underline;
}

.recent_portfolio_details p {
	font-size: 14px;
}


/** Custom Add Start **/
.custom-add {
	padding: 60px 30px 60px 30px;
	border-radius: 4px;
	transform: translateY(15%);
	margin-top: -10%;
	z-index: 100;
}

.custom-add-2 {
	padding: 60px 30px 60px 30px;
	border-radius: 4px;
	transform: translateY(15%);
	margin-top: 3%;
	z-index: 100;
}

.custom-add .inner-content h4,
.custom-add-2 .inner-content h4 {
	color: rgb(46, 46, 46);
	margin-bottom: 0px;
	font-size: 17px;
	font-family: sans-serif;
	letter-spacing: 1px;
	font-weight: 500;
}

.custom-add .inner-content h4 a,
.custom-add-2 .inner-content h4 a {
	font-size: 15px;
	color: #eee;
	background: none;
	padding: 0px;
	letter-spacing: 0px;
	text-transform: none;
	margin-right: 0px;
	text-decoration: none;
	list-style: none;
}

.custom-add .inner-content h4 strong,
.custom-add-2 .inner-content h4 strong {
	font-weight: 600;
	color: #daa520;
}

.custom-add .inner-content p,
.custom-add-2 .inner-content p {
	font-family: 'Raleway', sans-serif;
	letter-spacing: 1px;
	text-transform: capitalize;
	font-size: 40px;
	font-weight: 700;
	color: rgb(46, 46, 46);
}

.custom-add .inner-content em,
.custom-add-2 .inner-content em {
	font-style: normal;
	font-weight: 700;
}

.custom-add .inner-content .col-md-4,
.custom-add-2 .inner-content .col-md-4 {
	text-align: right;
	margin-top: 55px;
}

.custom-add .inner-content a,
.custom-add-2 .inner-content a {
	font-size: 12px;
	color: #eee;
	padding: 12px 20px 12px 20px;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-right: 15px;
	text-decoration: none;
	list-style: none;
}

/** Custom Add End **/


/** Our testimonial section start **/
.testimonial-section {
	padding-top: 30px;
	overflow: hidden;
}

.testimonial-section .title-background {
	position: absolute;
	left: 50%;
	top: 30% !important;
	transform: translate(-50%, -50%);
	margin-right: 4% !important;
}

.testimonial-section .title-background h1 {
	font-size: 150px;
	font-weight: 700;
	z-index: -1;
	opacity: 0.2;
	margin-top: -80px !important;
}

.testimonial-section .img-box {
	height: 150px;
	width: 150px;
	margin: 30px auto 50px;
	margin-top: 100px;
}

.testimonial-section .img-box::before,
.testimonial-section .img-box::after {
	content: '';
	position: absolute;
	border-radius: 50%;
	animation: spin 15s linear infinite;
	-webkit-animation: spin 15s linear infinite;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

@-webkit-keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.testimonial-section .img-box::before {
	height: 180px;
	width: 180px;
	left: -15px;
	top: -15px;
	border-left: 1px solid transparent;
}

.testimonial-section .img-box::after {
	height: 210px;
	width: 210px;
	left: -30px;
	top: -30px;
	border-right: 1px solid transparent;
}

.testimonial-item h3 {
	text-transform: uppercase;
	text-align: center;
	font-size: 18px;
	font-family: sans-serif;
	letter-spacing: 1px;
}

.testimonial-item .text-1 {
	font-size: 15px !important;
	font-family: sans-serif;
	font-weight: 500;
}

.testimonial-item .text-2 {
	font-size: 16px !important;
	font-family: sans-serif;
	font-weight: 500;
}

.testimonial-section .carousel-control-prev,
.testimonial-section .carousel-control-next {
	position: relative !important;
	height: 35px !important;
	width: 35px !important;
	display: inline-block !important;
	border-radius: 50% !important;
	margin: 0 4px !important;
	top: -230px;
}

.testimonial-section .decoration-imgs-item {
	position: absolute;
	border-radius: 50%;
	opacity: 0.7;
}

.testimonial-section .decoration-imgs-item:nth-child(1) {
	height: 60px;
	width: 60px;
	left: 5%;
	top: 25%;
}

.testimonial-section .decoration-imgs-item:nth-child(2) {
	height: 80px;
	width: 80px;
	left: 90%;
	top: 30%;
}

.testimonial-section .decoration-imgs-item:nth-child(3) {
	height: 40px;
	width: 40px;
	left: 10%;
	top: 50%;
}

/** Our testimonial section end **/



/** Communication section start **/
.quick-contact {
	padding-top: 10px;
}

.quick-contact h2 {
	font-size: 28px;
	font-family: 'Cinzel', serif;
	color: #111111;
	line-height: 28px;
	text-transform: uppercase;
	margin-bottom: 30px;
}

.input-container {
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	margin-bottom: 15px;
}

.contact-icon {
	padding: 15px;
	font-size: 20px;
	background: #888;
	color: white;
	width: 50px;
	text-align: center;
}

.input-field {
	font-size: 15px;
	width: 100%;
	padding: 15px;
	outline: none;
	border: 1px solid #888;
}

.input-field:focus {
	border: 2px solid dodgerblue;
}


/** website build roadmap start **/
.website-roadmap {
	margin-top: 40px;
}

.website-roadmap .card {
	outline: none;
	border: none;
}

.website-roadmap .card img {
	width: 40px;
}

.website-roadmap .card h1 {
	margin-top: 10px;
	font-size: 18px;
	text-transform: uppercase;
	letter-spacing: 2px;
}

/** website build roadmap end **/


/** Web packages and services start **/
.web-packages {
	background: linear-gradient(rgba(0, 0, 0, 0.863)100%, rgba(0, 0, 0, 0.938)100%), url('./Images/add-banner.jpg') no-repeat center center fixed;
	-webkit-background: linear-gradient(rgba(0, 0, 0, 0.863)100%, rgba(0, 0, 0, 0.938)100%), url('./Images/add-banner.jpg') no-repeat center center fixed;
	background-size: cover;
	background-position: top;
	padding: 100px 40px 100px 40px;
	margin-top: 50px;
}

.web-packages img {
	width: 80px;
}

.web-packages h2 {
	color: rgb(236, 236, 236);
	margin-top: 20px;
	font-size: 25px;
	font-weight: 700;
}

.web-packages p {
	color: rgb(219, 219, 219);
	font-family: sans-serif;
	font-size: 16px;
}

.web-packages .right-web {
	text-align: right;
}

.web-packages .right-web .web-details h2 {
	text-align: right;
}

.web-packages .right-web .web-details p {
	text-align: right;
}

.mt-60 {
	margin-top: 60px;
}

.section-block-grey {
	padding: 0px;
}

.serv-section-2 {
	position: relative;
	border: 1px solid #eee;
	background: rgb(236, 236, 236);
	box-shadow: 0px 10px 30px 0px rgba(50, 50, 50, 0.16);
	border-radius: 5px;
	overflow: hidden;
	padding: 0px 0px 0px 5px;
	margin-top: 20px;
}

.serv-section-2:before {
	position: absolute;
	top: 0;
	right: 0px;
	z-index: 0;
	content: " ";
	width: 45px;
	height: 35px;
	background: #e7c82f;
	border-bottom-left-radius: 136px;
	transition: all 0.4s ease-in-out;
	-webkit-transition: all 0.4s ease-in-out;
}

.serv-section-2-icon {
	position: absolute;
	top: -2px;
	right: 5px;
	max-width: 50px;
	z-index: 1;
	text-align: center;
}

.serv-section-2-icon img {
	width: 22px;
	margin-top: 3px;
	transition: all 0.4s ease-in-out;
	-webkit-transition: all 0.4s ease-in-out;
}

.serv-section-desc {
	position: relative;
}

.serv-section-2 h4 {
	color: #333;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.5;
	text-transform: uppercase;
}

.serv-section-2 h5 {
	color: #333;
	font-size: 14px;
	font-weight: 400;
	line-height: 1;
	margin-top: 5px;
}

.section-heading-line-left {
	content: '';
	display: block;
	width: 100px;
	height: 2px;
	background: #e7c82f;
	border-radius: 25%;
	margin-top: 10px;
	margin-bottom: 5px;
}

.serv-section-2 p {
	margin-top: 25px;
	padding-right: 50px;
}

.serv-section-2:hover .serv-section-2-icon i {
	color: #e7c82f;
}

.serv-section-2:hover:before {
	background: #fff;
}

/** Web packages and services end **/


/** Other packages begin **/
.other-packages {
	margin-top: 60px;
	margin-bottom: 60px;
}

.other-packages .other-box {
	margin-top: 30px;
}

.other-packages .other-box h1 img {
	width: 30px;
	margin-right: 20px;
}

.other-packages .other-box h1 {
	color: #24282d;
	font-size: 16px;
	font-family: sans-serif;
	box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
	padding: 10px 0px 10px 20px;
}

.ser-lang {
	margin-top: 60px;
}

/** Other packages over **/



/** Portfolio page begin **/
.portfolio_page {
	margin-top: 60px;
	margin-bottom: 15%;
}

.portfolio-page .tab-content {
	margin-top: 30px;
}

.nav-tabs {
	border-bottom: none !important;
}

.portfolio-page ul {
	margin: 0px;
}

.portfolio-page ul li a {
	margin: 0px !important;
	padding: 0px !important;
}

.portfolio-page ul li a span {
	color: #495057 !important;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
	color: #daa520 !important;
	font-size: 18px;
	background-color: #fff;
	border: none !important;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link {
	color: #495057;
	font-size: 18px;
	background-color: #fff;
	border: none !important;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link:hover {
	color: #8d8b86 !important;
}

/* .portfolio-page .portfolio-details{
	padding-right: 40px;
} */
.portfolio-page h1 {
	font-size: 30px;
	font-weight: 600;
	font-family: 'Raleway', sans-serif;
}

.portfolio-page .post-user {
	display: flex;
	margin-top: 20px;
}

.portfolio-page .post-user p {
	font-size: 13px;
	font-weight: 500;
}

.portfolio-page .post-user a {
	color: #e7c82f;
}

.portfolio-page .post-user .user-name {
	margin-right: 30px;
}

.portfolio-page .post-img {
	margin-top: 30px;
}

.portfolio-page .hr-line {
	margin-top: 40px;
}

.portfolio-page .post-text p,
.portfolio-page .html-details p {
	font-size: 15px;
	font-weight: 500;
	font-family: 'Raleway', sans-serif;
	margin-top: 10px;
	padding-right: 20px;
}

.portfolio-page .post-code-title {
	margin-top: 30px;
	border: 1px solid rgb(133, 133, 133);
	border-left: 4px solid rgb(133, 133, 133);
	padding: 10px 0px 5px 15px;
}

.portfolio-page .post-code-title h1 {
	font-size: 20px;
	color: rgb(133, 133, 133);
	;
}

.portfolio-page .html-code {
	background: #313131;
	height: 300px;
	margin-top: 30px;
	overflow: scroll;
}

.portfolio-page .html-code xmp {
	color: rgb(228, 228, 228);
	font-size: 14px;
	padding: 0px 20px 0px 20px;
}

.portfolio-page .download-btn {
	display: flex;
	justify-content: space-between;
	margin-top: 40px;
}

.portfolio-page .download-btn a {
	background: #daa520;
	color: #fff;
	font-size: 15px;
	padding: 10px 20px 10px 20px;
}

.portfolio-page .download-btn a:hover {
	background: #daa520;
	color: #000;
	list-style: none;
	text-decoration: none;
}

.portfolio-page .download-btn a i {
	margin-right: 10px;
}

/** popular post **/
.sidebar-widget {
	margin-top: 30px;
	margin-bottom: 60px;
}

.popular-work {
	margin-top: 60px;
}

.widget-title {
	font-size: 20px;
	font-weight: 600;
	margin: 0 0 30px 0;
	color: #666666;
	letter-spacing: 1px;
	font-family: 'Raleway', sans-serif;
	text-transform: capitalize;
	background: rgba(241, 241, 241, 0.281);
	box-shadow: rgba(122, 122, 122, 0.15) 1.95px 1.95px 2.6px;
	padding: 10px 0px 10px 15px;
}

.widget-title img {
	width: 25px;
	margin-right: 5px;
}

.last-post {
	padding: 10px;
	margin-bottom: 20px;
	display: flex;
}

.last-post .thumb {
	overflow: hidden;
	margin-right: 15px;
}

.last-post .thumb img {
	width: 90px;
}

.last-post .content {
	overflow: hidden;
}

.last-post .content span {
	font-size: 13px;
	margin: 0 0 10px 0;
	line-height: 18px;
	color: #000;
}

.last-post .content h4 a {
	text-decoration: none;
	font-family: 'Raleway', sans-serif;
	font-size: 15px;
	font-weight: 600;
	color: #000;
	text-decoration: underline;
}

.last-post .content h4 a:hover {
	color: #f17e39;
}

.categories ul li:before {
	content: '-';
	color: #aaaaaa;
	margin-right: 10px;
}

.thumbs {
	margin-left: -6px;
	overflow: hidden;
}

.thumbs li {
	list-style: none;
	float: left;
	margin: 6px;
	width: 76px;
	height: 76px;
	overflow: hidden;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

.thumbs li img {
	display: block;
	width: 100%;
	padding: 3px;
	background-color: #f1f4f5;
}

.thumbs li a img {
	border: none;
}

.popular-post {
	padding: 20px 10px 20px 10px;
	background: #f7f7f7;
}

.popular-post h5 {
	font-size: 22px;
	color: #daa520;
	text-transform: uppercase;
	margin-bottom: 10px;
	letter-spacing: 1px;
	font-family: sans-serif;
}

.popular-post h5 i {
	font-size: 18px;
	color: #daa520;
	margin-top: -5px !important;
}

.popular-post a {
	font-size: 15px;
	color: #111111;
}

.facebook,
.recent {
	margin-top: 50px;
}

/** For portfolio images **/


/** Portfolio page over **/


/* Set a style for the submit button */
.btn {
	font-size: 16px !important;
	background-color: #282936 !important;
	color: white !important;
	padding: 15px 20px !important;
	border: none !important;
	cursor: pointer !important;
	width: 100% !important;
	opacity: 0.9 !important;
}

.btn:hover {
	opacity: 1 !important;
}


/** Classes section start **/
.classes {
	background: linear-gradient(rgba(255, 255, 255, 0.6)0%, rgba(255, 255, 255, 0.6)100%), url("./Images/banner.jpg");
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	z-index: 2;
	background-attachment: fixed;
}

.classes p,
.photo-classes p {
	padding-right: 0px !important;
	margin-right: 4%;
	margin-left: 4%;
}


/** Our Video section start **/
.work {
	overflow: hidden;
	background: #fff;
	margin-left: 4.3%;
	margin-right: 4.3%;
}

.work__gallery {
	margin-right: -10px;
}

.work__item {
	height: 311px !important;
	width: calc(16.67% - 10px);
	margin-right: 10px;
	margin-bottom: 10px;
	float: left;
	position: relative;
	overflow: hidden;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	background-size: cover;
}

.work__item:hover .work__item__hover {
	bottom: 0;
}

.work__item.large__item {
	height: 633px !important;
	width: calc(33.33% - 10px);
	background-size: cover;
}

.work__item.wide__item {
	width: calc(33.33% - 10px);
	height: 311px !important;
	background-size: cover;
}

.work__item .play-btn {
	display: inline-block;
	color: #ffffff;
	font-size: 20px;
	height: 50px;
	width: 50px;
	line-height: 50px;
	text-align: center;
	border: 1px solid rgba(255, 255, 255, 0.7);
	border-radius: 50%;
}

.grid-sizer {
	width: calc(16.67% - 10px);
}

.work__item__hover {
	background: rgba(0, 0, 0, 0.5);
	position: absolute;
	left: 0;
	bottom: -300px;
	width: 100%;
	padding: 25px 30px 20px;
	-webkit-transition: all, 0.5s;
	-o-transition: all, 0.5s;
	transition: all, 0.5s;
	text-align: center;
}

.work__item__hover h4 {
	font-size: 16px !important;
	color: #ffffff;
	font-weight: 500 !important;
	letter-spacing: 1px;
}

.work__item__hover ul li {
	color: #adadad;
	list-style: none;
	font-size: 16px;
	margin-right: 23px;
	position: relative;
	display: inline-block;
}

.work__item__hover ul li:after {
	position: absolute;
	right: -18px;
	top: 1px;
	content: "/";
}

.work__item__hover ul li:last-child {
	margin-right: 0;
}

.work__item__hover ul li:last-child:after {
	display: none;
}

/** Work page start **/
.swiper-container {
	--swiper-navigation-color: #ffffff;
	--swiper-theme-color: #ffffff;
}

.swiper-slide {
	background-color: #0f0f0f;
}

.swiper-slide::before {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 70%;
	background-color: #3d405b00;
	z-index: 1;
	background: linear-gradient(to top, #1d3553 0%, rgba(29, 53, 83, 0.987) 8.1%, rgba(29, 53, 83, 0.951) 15.5%, rgba(29, 53, 83, 0.896) 22.5%, rgba(29, 53, 83, 0.825) 29%, rgba(29, 53, 83, 0.741) 35.3%, rgba(29, 53, 83, 0.648) 41.2%, rgba(29, 53, 83, 0.55) 47.1%, rgba(29, 53, 83, 0.45) 52.9%, rgba(29, 53, 83, 0.352) 58.8%, rgba(29, 53, 83, 0.259) 64.7%, rgba(29, 53, 83, 0.175) 71%, rgba(29, 53, 83, 0.104) 77.5%, rgba(29, 53, 83, 0.049) 84.5%, rgba(29, 53, 83, 0.013) 91.9%, rgba(29, 53, 83, 0) 100%);
}

.swiper-slide img {
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.swiper-slide__title {
	font-family: "Montserrat", sans-serif;
	color: #ffffff;
	position: absolute;
	left: 10%;
	top: 75%;
	transform: translate(0, -50%);
	z-index: 2;
	letter-spacing: -2px;
	opacity: 0.5;
	transition: 0.3s;
}

.swiper-slide h1 {
	font-size: 2.8rem;
	letter-spacing: 1px;
}

.swiper-slide h2 {
	font-size: 4rem;
}

.swiper-slide.swiper-slide-active .swiper-slide__title {
	opacity: 1;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
	background-image: url("./Images/icon/prev.png") !important;
	left: 10px !important;
	right: auto !important;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
	background-image: url("./Images/icon/next.png") !important;
	right: 10px !important;
	left: auto !important;
}

.swiper-pagination-bullet-active {
	opacity: 1;
	background: rgb(201, 201, 201) !important;
}


/** Portfolio section start **/
.portfolio {
	position: relative;
	padding-top: 20px;
	overflow: hidden;
}

.portfolio .title-background {
	position: absolute;
	left: -20px;
	top: -18px !important;
}

.portfolio .title-background h1 {
	font-size: 200px;
	font-weight: 700;
	z-index: -1;
	color: #c9c9c9;
	opacity: 0.1;
	margin-top: 0px !important;
}

.portfolio h1 {
	font-size: 40px;
	font-weight: 700;
	font-family: 'Raleway', sans-serif;
}

.portfolio p {
	width: 90%;
	font-weight: 500;
	font-size: 16px;
	font-family: 'Raleway', sans-serif;
	margin-bottom: 5px !important;
}

.portfolio .service-title {
	padding-bottom: 40px;
}

.portfolio .section-subtitle {
	margin: 25px 0px 20px 0px;
}

.portfolio .service-title h1 {
	text-align: left;
	font-weight: 500;
	font-size: 16px;
	font-family: 'Raleway', sans-serif;
	letter-spacing: 1px;
	line-height: 26px;
}

.portfolio .ios-toolbar button {
	height: 12px;
	width: 12px;
	border: none;
	border-radius: 50%;
	vertical-align: middle;
	padding: 0px 0px 12px 0px;
	position: relative;
	margin: 8px -6px 8px 10px;
	box-shadow: rgba(143, 143, 143, 0.493) 0px 2px 8px 0px;
}

.portfolio .ios-toolbar button::before {
	content: "";
	transition: all 0.3s ease;
	position: absolute;
	width: 10px;
	height: 10px;
	background: #fff;
	left: 50%;
	top: 50%;
	border-radius: 50%;
	transform: translate(-50%, -50%);
	opacity: 0;
}

.portfolio .ios-toolbar button::after {
	opacity: 1;
}

.portfolio .ios-toolbar .ios-1 {
	background: #FF5F57;
}

.portfolio .ios-toolbar .ios-2 {
	background: #FFBD2E;
}

.portfolio .ios-toolbar .ios-3 {
	background: #28CA41;
}

/* .portfolio .ios-toolbar{
	display: flex;
} */
.portfolio .ios-toolbar p {
	text-align: center;
	margin-top: -23px;
	margin-bottom: 5px;
	color: #fff;
}

.portfolio .ios-toolbar p a {
	font-size: 12px;
	letter-spacing: 0px;
	text-transform: uppercase;
	font-weight: 600;
}

.portfolio .work-box {
	padding: 0px 5px 0px 5px;
	border-radius: 5px;
	position: relative;
}

.portfolio .ribbon {
	position: absolute;
	z-index: 100;
	width: 120px;
	height: 120px;
	overflow: hidden;
}

.ribbon.top-right {
	top: 0px;
	right: -6px;
}

.ribbon.top-right.ribbon-default>small {
	zoom: 1;
	filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#043152', endColorstr='#043152');
	background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Y0ZjRmNCIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2RkZGRkZCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
	background-size: 100%;
	position: absolute;
	display: block;
	width: 100%;
	padding: 8px 16px;
	text-align: center;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 65%;
	color: #fff;
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	top: 16px;
	left: 27px;
}

.ribbon.top-right.ribbon-default>small:before,
.ribbon.top-right.ribbon-default>small:after {
	position: absolute;
	content: " ";
}

.ribbon.top-right.ribbon-default>small:before {
	left: 0;
}

.ribbon.top-right.ribbon-default>small:after {
	right: 0;
}

.ribbon.top-right.ribbon-default>small:before,
.ribbon.top-right.ribbon-default>small:after {
	bottom: -3px;
	border-left: 3px solid transparent;
	border-right: 3px solid transparent;
}



.work-box {
	margin-bottom: 3rem;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.work-box a:hover {
	text-decoration: none !important;
	list-style: none !important;
}

.work-box:hover img {
	-webkit-transform: scale(1.3);
	transform: scale(1.3);
	text-decoration: none;
	list-style: none;
}

.work-img {
	display: block;
	overflow: hidden;
}

.work-img img {
	transition: all 1s;
}

.work-content {
	padding: 10px 4px 15px 4px;
}

.work-content .w-more {
	font-size: 13px;
	font-family: 'Raleway', sans-serif;
	letter-spacing: 1px;
}

.work-content .w-more h1 {
	font-size: 15px !important;
	font-family: sans-serif;
	letter-spacing: 1px;
	font-weight: 500 !important;
	line-height: 20px;
	margin-top: 5px;
}

.work-content .portfolio-name {
	display: flex;
	justify-content: space-between;
	text-decoration: none !important;
}

.work-content .portfolio-name a {
	font-size: 15px;
	font-weight: 600;
	text-transform: capitalize;
	text-decoration: none;
	list-style: none;
	font-family: 'Raleway', sans-serif;
}

.work-content .w-like .num-like {
	font-size: .7rem;
}

.w-title a {
	font-size: 18px !important;
	font-weight: 600 !important;
	text-transform: capitalize;
	text-decoration: none;
	list-style: none;
	font-family: 'Raleway', sans-serif !important;
}

.w-title a:hover {
	text-decoration: none !important;
	list-style: none !important;
}

.service-title h1 {
	font-size: 16px !important;
	font-family: sans-serif;
	letter-spacing: 0px;
	width: 100%;
	margin-bottom: 50px !important;
	font-weight: 500 !important;
	padding: 0px 190px 0px 190px;
}

.service-title h1 a {
	color: #7e7e7e;
}

.service-title h5 {
	color: #949494;
	font-size: 35px !important;
	font-weight: 700 !important;
	text-transform: uppercase;
	font-family: 'Raleway', sans-serif;
	margin: 0px 0px 10px 7px;
	letter-spacing: 1px;
}

.class-info {
	border-radius: 0 0 2px 2px;
	padding: 10px 8px 10px 8px;
	position: relative;
}

.class-info .tags {
	font-size: 13px;
}

.class-info .tags span {
	font-size: 16px !important;
	font-weight: 700 !important;
	letter-spacing: 1px;
	font-family: sans-serif;
}

.class-info a:hover {
	text-decoration: none;
	list-style: none;
}

.class-info h3 {
	text-transform: uppercase;
	font-size: 17px;
	font-weight: 600;
	font-family: 'Raleway', sans-serif;
	margin-top: 10px;
}

.class-info p {
	font-size: 16px;
	font-family: sans-serif;
	letter-spacing: 0px;
	width: 100%;
	font-weight: 500;
}

.class-info p a {
	font-weight: 500;
}

.class-info .date {
	display: flex;
	justify-content: space-between;
}

.class-info .date {
	display: flex;
	justify-content: space-between;
}

.class-info .date p {
	color: #464646;
	font-size: 12px;
	font-weight: 500;
	font-family: sans-serif;
	letter-spacing: 0px;
	text-transform: capitalize;
}

.class-info .date p i {
	margin-right: 5px;
}

.class-info img {
	border-radius: 2px 2px 0 0;
}

.team h2,
.group-classes h2 {
	font-size: 35px;
	font-family: sans-serif;
	font-weight: 500;
}

.group-classes h3 {
	font-size: 25px;
	font-family: sans-serif;
	font-weight: 500;
}

.team p,
.group-classes p {
	font-family: sans-serif;
	font-size: 15px;
	color: #888;
}

/* In GroupClasses page */
.services-gym h6 {
	color: #ccc;
	font-size: 25px;
}

.services-gym h2 {
	font-size: 38px;
	font-weight: 600;
	color: #F3D920;
	letter-spacing: 1px;
}

.class-thumb {
	margin-bottom: 40px;
}


/** Team section start **/
.team {
	padding: 4%;
}

.team__item {
	margin-top: 30px;
	text-align: center;
	margin-bottom: 40px;
}

.team p {
	font-family: sans-serif;
	font-size: 15px;
	color: #888;
	padding: 0 15% 0 15%;
}

.team__item__pic {
	margin-bottom: 28px;
}

.team__item__pic img {
	width: 60%;
}

.team__item__text h5 {
	color: #111111;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 6px;
	text-align: center !important;
}

.team__item__text span {
	font-size: 22px;
	font-family: "Cormorant Garamond", serif;
	color: #767b67;
	display: block;
	font-style: italic;
	margin-bottom: 12px;
}

.team__item__social a {
	font-size: 16px;
	color: #444444;
	margin-right: 22px;
	display: inline-block;
}

.team__item__social a:last-child {
	margin-right: 0;
}

@font-face {
	font-family: 'Genericons';
	src: url('fonts/genericons-regular-webfont.eot');
	src: url('fonts/genericons-regular-webfont.eot?#iefix') format('embedded-opentype'), url('fonts/genericons-regular-webfont.woff') format('woff'), url('fonts/genericons-regular-webfont.ttf') format('truetype'), url('fonts/genericons-regular-webfont.svg#genericonsregular') format('svg');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'behance';
	src: url('fonts/behance.eot?61221480');
	src: url('fonts/behance.eot?61221480#iefix') format('embedded-opentype'), url('fonts/behance.woff?61221480') format('woff'), url('fonts/behance.ttf?61221480') format('truetype'), url('fonts/behance.svg?61221480#behance') format('svg');
	font-weight: normal;
	font-style: normal;
}

/*--------------------------------------------------------------1.0 - Reset--------------------------------------------------------------*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
	border: 0;
	font-family: inherit;
	font-size: 100%;
	font-style: inherit;
	font-weight: inherit;
	margin: 0;
	outline: 0;
	padding: 0;
	vertical-align: baseline;
}

html {
	font-size: 62.5%;
	/* Corrects text resizing oddly in IE6/7 when body font-size is set using em units http://clagnut.com/blog/348/#c790 */
	overflow-y: scroll;
	/* Keeps page centered in all browsers regardless of content height */
	-webkit-text-size-adjust: 100%;
	/* Prevents iOS text size adjust after orientation change,without disabling user zoom */
	-ms-text-size-adjust: 100%;
	/* www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/ */
}

*,
*:before,
*:after {
	/* apply a natural box layout model to all elements;see http://www.paulirish.com/2012/box-sizing-border-box-ftw/ */
	-webkit-box-sizing: border-box;
	/* Not needed for modern webkit but still used by Blackberry Browser 7.0;see http://caniuse.com/#search=box-sizing */
	-moz-box-sizing: border-box;
	/* Still needed for Firefox 28;see http://caniuse.com/#search=box-sizing */
	box-sizing: border-box;
}

body {
	background: #fff;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
nav,
section {
	display: block;
}

ol,
ul {
	list-style: none;
}

table {
	/* tables still need 'cellspacing="0"' in the markup */
	border-collapse: separate;
	border-spacing: 0;
}

caption,
th,
td {
	font-weight: normal;
	text-align: left;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
}

blockquote,
q {
	quotes: "" "";
}

a:hover,
a:active,
a:focus {
	outline: 0;
}

a img {
	border: 0;
}

/*--------------------------------------------------------------2.0 Responsive Grid--------------------------------------------------------------*/
.container {
	margin: 0 20px;
}

.column {
	margin-bottom: 1em;
}

@media (min-width:1024px) {
	.column {
		float: left;
		margin-bottom: 0;
		padding: 0 15px;
	}

	.column.full {
		width: 100%;
		float: none !Important;
	}

	.column.five-sixths {
		width: 83.4%;
	}

	.column.four-fifths {
		width: 80%;
	}

	.column.three-fourths {
		width: 75%;
	}

	.column.two-thirds {
		width: 66.7%;
	}

	.column.half {
		width: 50%;
	}

	.column.third {
		width: 33.3%;
	}

	.column.fourth {
		width: 25%;
	}

	.column.fifth {
		width: 20%;
	}

	.column.sixth {
		width: 16.6%;
	}

	.column.flow-opposite {
		float: right;
	}

	.column.centered {
		margin-left: 15%;
		width: 70%;
	}
}

@media (min-width:1090px) {
	.container {
		margin: 0 auto;
		width: 960px;
	}
}

/*--------------------------------------------------------------3.0 Typography--------------------------------------------------------------*/
body {
	letter-spacing: 1px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 700;
	margin-top: 20px;
	margin-bottom: 10px;
}

h1 {
	font-size: 36px;
}

h3 {
	font-size: 24px;
}

h4 {
	font-size: 18px;
}

h5 {
	font-size: 14px;
}

h6 {
	font-size: 12px;
}

p {
	margin-bottom: 1.5em;
}

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

b,
strong {
	font-weight: bold;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	border-left: 5px solid #ffd700;
	margin-bottom: 20px;
	padding: 10px 20px;
}

address {
	font-style: italic;
	margin-bottom: 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", Courier, monospace;
	font-size: 15px;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code,
kbd,
tt,
var {
	background: #eee;
	color: #222;
	font: 15px Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
	padding: 0;
	white-space: normal;
}

abbr,
acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark,
ins {
	background: #fff9c0;
	text-decoration: none;
}

sup,
sub {
	font-size: 75%;
	height: 0;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	bottom: 1ex;
}

sub {
	top: .5ex;
}

small {
	font-size: 75%;
}

big {
	font-size: 125%;
}

/*--------------------------------------------------------------4.0 Elements--------------------------------------------------------------*/
hr {
	background-color: #e5e5e5;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
	margin-top: 1.5em;
}

img {
	height: auto;
	/* Make sure images are scaled correctly. */
	max-width: 100%;
	/* Adhere to container width. */
}

ul,
ol {
	margin: 0 0 1.5em 3em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li>ul,
li>ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: bold;
	color: #0a0700;
}

dd {
	margin-bottom: 1.5em;
}

figure {
	margin: 0;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	line-height: 2;
	margin-bottom: 40px;
	width: 100%;
}

table th {
	font-weight: bold;
	padding: 10px 10px 10px 0;
	text-align: left;
}

table td {
	padding: 10px 10px 10px 0;
}

table tr {
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
}

/*--------------------------------------------------------------6.3 Menus--------------------------------------------------------------*/
.menu {
	display: table;
	margin: 0 auto;
}

/* Small menu */
.menu-toggle {
	display: none;
}

/* Paging Navigation */
.pagination {
	clear: both;
	padding: 15px 15px 30px 15px;
	overflow: hidden;
	text-align: center;
}

.pagination a {
	padding: 5px 10px;
	margin-right: 2px;
	background: #ccc;
	color: #fff;
	text-decoration: blink;
}

.pagination a:hover,
.pagination .current {
	padding: 5px 10px;
	margin-right: 2px;
	background: #ffd700;
	color: #fff;
}

.paging-navigation {
	padding: 0 15px;
}

.comment-navigation .nav-previous,
.paging-navigation .nav-previous,
.post-navigation .nav-previous {
	float: left;
	width: 50%;
	padding-bottom: 2.5em;
}

.comment-navigation .nav-next,
.paging-navigation .nav-next,
.post-navigation .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}

/*--------------------------------------------------------------7.0 Accessibility--------------------------------------------------------------*/
/* Text meant only for screen readers */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
}

.screen-reader-text:hover,
.screen-reader-text:active,
.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
	/* Above WP toolbar */
}

/*--------------------------------------------------------------8.0 Alignments--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin: 0.5em 1.5em 1em 0;
}

.alignright {
	display: inline;
	float: right;
	margin: 0.5em 0 1em 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin: 0 auto;
}

/*--------------------------------------------------------------11.0 Site Content--------------------------------------------------------------*/
#secondary {
	padding-top: 2em;
}

/*--------------------------------------------------------------11.1 Posts and pages--------------------------------------------------------------*/

/* Entry Content */
#contact {
	padding-left: 3%;
	padding-right: 3%;
}

.contact-us {
	padding-left: 70px !important;
}

.google-map iframe {
	margin-top: 4%;
	width: 100%;
	height: 60vh;
}

.entry-content {
	white-space: normal;
}

.entry-content p:last-child {
	margin-bottom: 0;
}

a.more-link {
	position: relative;
	text-decoration: none;
	font-style: italic;
	text-transform: lowercase;
	margin-left: 3px;
}

a.more-links:before {
	content: '...';
	text-decoration: none;
	margin-right: 3px;
}

a.more-link {
	text-decoration: underline;
}

.entry-content ul li,
.entry-content ol li,
#comments ul li,
#comments ul li {
	margin-bottom: 12px;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 1em 0;
}

.no-results .page-content {
	margin: 1.5em 0;
	padding-bottom: 1em;
}

/* Entry Meta */
.entry-meta {
	font-size: 13px;
	font-style: italic;
	font-weight: 300;
	letter-spacing: 1px;
	;
}

.entry-meta a {
	color: #7f7f7f !important;
	text-decoration: none;
}

.entry-meta a:hover {
	text-decoration: underline;
}

.entry-meta .comments-link:before {
	content: " - ";
}

.byline,
.updated {
	display: none;
}

.single .byline,
.group-blog .byline {
	display: inline;
}

/* Page Links */
.page-links {
	clear: both;
	margin: 0 0 1.5em;
	word-spacing: 18px;
}

/* Entry Footer */
.entry-footer {
	font-style: italic;
	padding-top: 1em;
	padding-bottom: 0.5em;
}

.single-portfolio .entry-footer {
	padding: 0;
}

.entry-footer a {
	color: #7f7f7f !important;
	text-decoration: none;
}

.entry-footer a:hover {
	text-decoration: underline;
}

.blog .entry-footer,
.search-results .entry-footer,
.archive .entry-footer {
	padding-bottom: 2em;
}

.page .entry-footer {
	border-bottom: 0;
}

.entry-meta {
	margin-top: 5px;
}

/* Entry Navigation */
.meta-nav {
	font-size: 13px;
}

.nav-links a {
	text-decoration: none;
}

/* Archives Page */
.page-header {
	margin-bottom: 1.5em;
}

.page-title {
	line-height: 1;
	margin-top: 0;
	text-transform: capitalize;
}

.page-title:before {
	content: "#";
}

.page-header p {
	font-style: italic;
	margin-bottom: 0.5em;
}

/* 404 Page */

/* Go to top */
.smoothup {
	bottom: 50px;
	display: none;
	position: fixed;
	right: 10px;
	transition: all 0.2s ease-in-out 0s;
}

a.smoothup {
	text-decoration: none;
}


/*--------------------------------------------------------------11.5 Comments--------------------------------------------------------------*/
.comment-list {
	list-style: none;
	margin-left: 0;
}

.comment-body {
	border-bottom: 1px solid #f2f2f2;
	padding: 20px 0;
}

.comment-author {
	float: left;
}

.comment-author img {
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	border-radius: 50%;
	display: block;
}

.comment-meta {
	padding-bottom: 20px;
}

.comment-meta .fn {
	color: #24282d;
	font-weight: 900;
	font-style: normal;
	text-transform: uppercase;
}

.comment-meta .fn a {
	color: #404040;
	text-decoration: none;
}

.comment-meta-details {
	color: #7f8d8c;
	font-size: 0.90em;
	font-style: italic;
	line-height: 1.3;
	padding-top: 5px;
	text-align: center;
	text-align: left;
}

.comment-meta-details a {
	text-decoration: none;
}

.comment-content {
	margin-left: 80px;
}

.comment-content a {
	word-wrap: break-word;
}

.comment-list .children {
	list-style: none;
	margin-left: 80px;
	position: relative;
}

.comment-list .children .depth-5 {
	padding-top: 30px;
}

/*--------------------------------------------------------------12.0 Footer--------------------------------------------------------------*/
.site-footer {
	padding: 100px 0px 50px 0px;
	text-align: center;
	background-color: #202020;
	color: #999;
}

.site-footer img {
	width: 150px;
	text-align: center;
	margin-bottom: 30px;
}

.site-footer .site-branding .mdi h2 {
	color: rgb(202, 202, 202) !important;
	text-decoration: none !important;
}

.site-footer h1 {
	text-align: center;
	font-size: 17px;
	font-weight: 500;
	letter-spacing: 1px;
	text-transform: uppercase;
	font-family: sans-serif;
}

.site-footer h1 a {
	color: rgb(202, 202, 202);
	text-decoration: none !important;
	list-style: none;
}



/*--------------------------------------------------------------13.0 Infinite scroll--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .paging-navigation,
/* Older / Newer Posts Navigation (always hidden) */
.infinite-scroll.neverending .site-footer {
	/* Theme Footer (when set to scrolling) */
	display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------14.0 Media--------------------------------------------------------------*/
.page-content img.wp-smiley,
.entry-content img.wp-smiley,
.comment-content img.wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure embeds and iframes fit their containers */
embed,
iframe,
object {
	max-width: 100%;
}

/*--------------------------------------------------------------14.1 Captions--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin: 0 auto;
}

.wp-caption-text {
	font-style: italic;
	line-height: 24px;
	text-align: center;
}

.wp-caption .wp-caption-text {
	margin: 1em 0;
}

/*--------------------------------------------------------------14.2 Galleries--------------------------------------------------------------*/
.gallery {
	margin-bottom: 1.5em;
}

.gallery-item {
	display: inline-block;
	margin-bottom: 10px;
	padding-right: 2.6%;
	text-align: center;
	vertical-align: top;
	width: 100%;
}

.gallery-item img {
	height: auto;
	width: 100%;
}

.gallery-columns-2 .gallery-item {
	max-width: 50%;
}

.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	max-width: 20%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}

.gallery-caption {
	display: none;
}

/*--------------------------------------------------------------15.0 Shortcodes--------------------------------------------------------------*/
/*--------------------------------------------------------------15.1 Responsive Slider--------------------------------------------------------------*/
/* Browser Resets*********************************/
.flex-container a:active,
.flexslider a:active,
.flex-container a:focus,
.flexslider a:focus {
	outline: none;
}

.slides,
.flex-control-nav,
.flex-direction-nav {
	margin: 0;
	padding: 0;
	list-style: none;
}

/* Icon Fonts*********************************/
/* FlexSlider Necessary Styles*********************************/
.flexslider {
	margin: 0;
	padding: 0;
}

.flexslider .slides>li {
	display: none;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}

/* Hide the slides before the JS is loaded. Avoids image jumping */
.flexslider .slides img {
	width: 100%;
	display: block;
}

.flex-pauseplay span {
	text-transform: capitalize;
}

/* Clearfix for the .slides element */
.slides:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}

html[xmlns] .slides {
	display: block;
}

* html .slides {
	height: 1%;
}

/* No JavaScript Fallback */
/* If you are not using another script,such as Modernizr,make sure you * include js that eliminates this class on page load */
.no-js .slides>li:first-child {
	display: block;
}

/* FlexSlider Default Theme*********************************/
.flexslider {
	margin: 0 0 30px;
	background: #fff;
	position: relative;
	zoom: 1;
}

.flex-viewport {
	max-height: 2000px;
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
}

.loading .flex-viewport {
	max-height: 300px;
}

.flexslider .slides {
	zoom: 1;
}

.carousel li {
	margin-right: 5px;
}

/* Direction Nav */
.flex-direction-nav {
	height: 0;
}

.flex-direction-nav a {
	text-decoration: none;
	display: block;
	width: 40px;
	height: 40px;
	margin: -20px 0 0;
	position: absolute;
	top: 50%;
	z-index: 10;
	overflow: hidden;
	opacity: 0;
	cursor: pointer;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	transition: all .3s ease;
}

.flex-direction-nav .flex-prev {
	left: -50px;
}

.flex-direction-nav .flex-next {
	right: -50px;
	text-align: right;
}

.flexslider:hover .flex-prev {
	opacity: 1;
	left: 0;
	color: #64625a;
}

.flexslider:hover .flex-next {
	opacity: 1;
	right: 0;
	color: #64625a;
}

.flexslider:hover .flex-next:hover,
.flexslider:hover .flex-prev:hover {
	opacity: 1;
}

.flex-direction-nav .flex-disabled {
	opacity: 0 !important;
	filter: alpha(opacity=0);
	cursor: default;
}

.flex-direction-nav a:before {
	font-family: "Genericons";
	font-size: 40px;
	line-height: 1;
	display: inline-block;
	content: '\f503';
}

.flex-direction-nav a.flex-next:before {
	content: '\f501';
}

/* Pause/Play */
.flex-pauseplay a {
	display: block;
	width: 20px;
	height: 20px;
	position: absolute;
	bottom: 5px;
	left: 10px;
	opacity: 0.8;
	z-index: 10;
	overflow: hidden;
	cursor: pointer;
	color: #000;
}

.flex-pauseplay a:before {
	font-family: "flexslider-icon";
	font-size: 20px;
	display: inline-block;
	content: '\f004';
}

.flex-pauseplay a:hover {
	opacity: 1;
}

.flex-pauseplay a.flex-play:before {
	content: '\f003';
}

/* Control Nav */
.flex-control-nav {
	display: none;
	width: 100%;
	position: absolute;
	bottom: -40px;
	text-align: center;
}

.flex-control-nav li {
	margin: 0 6px;
	display: inline-block;
	zoom: 1;
	display: inline;
}

.flex-control-paging li a {
	width: 11px;
	height: 11px;
	display: block;
	background: #666;
	background: rgba(0, 0, 0, 0.5);
	cursor: pointer;
	text-indent: -9999px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-o-border-radius: 20px;
	border-radius: 20px;
	-webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
	-o-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
	box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
}

.flex-control-paging li a:hover {
	background: #333;
	background: rgba(0, 0, 0, 0.7);
}

.flex-control-paging li a.flex-active {
	background: #000;
	background: rgba(0, 0, 0, 0.9);
	cursor: default;
}

.flex-control-thumbs {
	margin: 5px 0 0;
	position: static;
	overflow: hidden;
}

.flex-control-thumbs li {
	width: 25%;
	float: left;
	margin: 0;
}

.flex-control-thumbs img {
	width: 100%;
	display: block;
	opacity: .7;
	cursor: pointer;
}

.flex-control-thumbs img:hover {
	opacity: 1;
}

.flex-control-thumbs .flex-active {
	opacity: 1;
	cursor: default;
}

@media screen and (max-width:860px) {
	.flex-direction-nav .flex-prev {
		opacity: 1;
		left: 10px;
	}

	.flex-direction-nav .flex-next {
		opacity: 1;
		right: 10px;
	}
}

.slide-title {
	display: none;
}

/*--------------------------------------------------------------15.2 Dropcap--------------------------------------------------------------*/
.dropcap {
	float: left;
	font-size: 52px;
	font-weight: bold;
	line-height: 0.8;
	padding: 0 6px 0 0;
}

/*--------------------------------------------------------------15.3 Buttons--------------------------------------------------------------*/

a.button {
	text-decoration: none;
}

a:hover.button {
	color: #fff;
	opacity: 0.6;
}

/* Colors */
.grey {
	background-color: #ccc;
}

.yellow {
	background-color: #FBCB43;
}

.green {
	background-color: #34B67A;
}

.red {
	background-color: #E57368;
}

.blue {
	background-color: #77A7FB;
}

.purple {
	background-color: #955BA5;
}

.black {
	background-color: #202020;
}

/* Size */
.extra-small {
	font-size: 12px;
	padding: 5px 10px;
}

.small {
	font-size: 14px;
	padding: 10px 15px;
}

.medium {
	font-size: 16px;
	padding: 15px 20px;
}

.large {
	font-size: 18px;
	padding: 20px 25px;
}

.extra-large {
	font-size: 20px;
	padding: 25px 30px;
}

/* Type */
.square {
	border-radius: 0;
}

.round {
	border-radius: 3px;
}

.pill {
	border-radius: 30px;
}

/* Display */
.inline {
	display: inline;
}

.block {
	display: block;
}

/*--------------------------------------------------------------15.4 Alerts--------------------------------------------------------------*/
.alert {
	color: #fff;
	font-size: 18px;
	margin: 0 0 1em;
	padding: 3% 5%;
	text-align: center;
	width: 100%;
}

/* Text Align */
.left {
	text-align: left;
}

.right {
	text-align: right;
}

/*--------------------------------------------------------------15.5 Icons--------------------------------------------------------------*/
.genericon {
	display: inline-block;
	font-family: 'Genericons';
	font-size: 32px;
	font-style: normal;
	font-weight: normal;
	height: 32px;
	line-height: 1;
	text-decoration: inherit;
	vertical-align: top;
	width: 32px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* IE7 and IE6 hacks */
.genericon {
	overflow: auto;
	zoom: 1;
	display: inline;
}

/* Post formats */
.genericon-standard:before {
	content: '\f100';
}

.genericon-aside:before {
	content: '\f101';
}

.genericon-image:before {
	content: '\f102';
}

.genericon-gallery:before {
	content: '\f103';
}

.genericon-video:before {
	content: '\f104';
}

.genericon-status:before {
	content: '\f105';
}

.genericon-quote:before {
	content: '\f106';
}

.genericon-link:before {
	content: '\f107';
}

.genericon-chat:before {
	content: '\f108';
}

.genericon-audio:before {
	content: '\f109';
}

/* Social icons */
.genericon-github:before {
	content: '\f200';
}

.genericon-dribbble:before {
	content: '\f201';
}

.genericon-twitter:before {
	content: '\f202';
}

.genericon-facebook:before {
	content: '\f203';
}

.genericon-facebook-alt:before {
	content: '\f204';
}

.genericon-wordpress:before {
	content: '\f205';
}

.genericon-googleplus:before {
	content: '\f206';
}

.genericon-linkedin:before {
	content: '\f207';
}

.genericon-linkedin-alt:before {
	content: '\f208';
}

.genericon-pinterest:before {
	content: '\f209';
}

.genericon-pinterest-alt:before {
	content: '\f210';
}

.genericon-flickr:before {
	content: '\f211';
}

.genericon-vimeo:before {
	content: '\f212';
}

.genericon-youtube:before {
	content: '\f213';
}

.genericon-tumblr:before {
	content: '\f214';
}

.genericon-instagram:before {
	content: '\f215';
}

.genericon-codepen:before {
	content: '\f216';
}

.genericon-polldaddy:before {
	content: '\f217';
}

.genericon-googleplus-alt:before {
	content: '\f218';
}

.genericon-path:before {
	content: '\f219';
}

.genericon-skype:before {
	content: '\f220';
}

.genericon-digg:before {
	content: '\f221';
}

.genericon-reddit:before {
	content: '\f222';
}

.genericon-stumbleupon:before {
	content: '\f223';
}

.genericon-pocket:before {
	content: '\f224';
}

.genericon-dropbox:before {
	content: '\f225';
}

/* Meta icons */
.genericon-comment:before {
	content: '\f300';
}

.genericon-category:before {
	content: '\f301';
}

.genericon-tag:before {
	content: '\f302';
}

.genericon-time:before {
	content: '\f303';
}

.genericon-user:before {
	content: '\f304';
}

.genericon-day:before {
	content: '\f305';
}

.genericon-week:before {
	content: '\f306';
}

.genericon-month:before {
	content: '\f307';
}

.genericon-pinned:before {
	content: '\f308';
}

/* Other icons */
.genericon-search:before {
	content: '\f400';
}

.genericon-unzoom:before {
	content: '\f401';
}

.genericon-zoom:before {
	content: '\f402';
}

.genericon-show:before {
	content: '\f403';
}

.genericon-hide:before {
	content: '\f404';
}

.genericon-close:before {
	content: '\f405';
}

.genericon-close-alt:before {
	content: '\f406';
}

.genericon-trash:before {
	content: '\f407';
}

.genericon-star:before {
	content: '\f408';
}

.genericon-home:before {
	content: '\f409';
}

.genericon-mail:before {
	content: '\f410';
}

.genericon-edit:before {
	content: '\f411';
}

.genericon-reply:before {
	content: '\f412';
}

.genericon-feed:before {
	content: '\f413';
}

.genericon-warning:before {
	content: '\f414';
}

.genericon-share:before {
	content: '\f415';
}

.genericon-attachment:before {
	content: '\f416';
}

.genericon-location:before {
	content: '\f417';
}

.genericon-checkmark:before {
	content: '\f418';
}

.genericon-menu:before {
	content: '\f419';
}

.genericon-refresh:before {
	content: '\f420';
}

.genericon-minimize:before {
	content: '\f421';
}

.genericon-maximize:before {
	content: '\f422';
}

.genericon-404:before {
	content: '\f423';
}

.genericon-spam:before {
	content: '\f424';
}

.genericon-summary:before {
	content: '\f425';
}

.genericon-cloud:before {
	content: '\f426';
}

.genericon-key:before {
	content: '\f427';
}

.genericon-dot:before {
	content: '\f428';
}

.genericon-next:before {
	content: '\f429';
}

.genericon-previous:before {
	content: '\f430';
}

.genericon-expand:before {
	content: '\f431';
}

.genericon-collapse:before {
	position: absolute;
	content: '\f432';
	border-radius: 4px;
	right: 10px;
	color: #fff;
	z-index: 100;
	padding: 3px 2px 3px 5px;
}

.genericon-dropdown:before {
	content: '\f433';
}

.genericon-dropdown-left:before {
	content: '\f434';
}

.genericon-top:before {
	content: '\f435';
}

.genericon-draggable:before {
	content: '\f436';
}

.genericon-phone:before {
	content: '\f437';
}

.genericon-send-to-phone:before {
	content: '\f438';
}

.genericon-plugin:before {
	content: '\f439';
}

.genericon-cloud-download:before {
	content: '\f440';
}

.genericon-cloud-upload:before {
	content: '\f441';
}

.genericon-external:before {
	content: '\f442';
}

.genericon-document:before {
	content: '\f443';
}

.genericon-book:before {
	content: '\f444';
}

.genericon-cog:before {
	content: '\f445';
}

.genericon-unapprove:before {
	content: '\f446';
}

.genericon-cart:before {
	content: '\f447';
}

.genericon-pause:before {
	content: '\f448';
}

.genericon-stop:before {
	content: '\f449';
}

.genericon-skip-back:before {
	content: '\f450';
}

.genericon-skip-ahead:before {
	content: '\f451';
}

.genericon-play:before {
	content: '\f452';
}

.genericon-tablet:before {
	content: '\f453';
}

.genericon-send-to-tablet:before {
	content: '\f454';
}

.genericon-info:before {
	content: '\f455';
}

.genericon-notice:before {
	content: '\f456';
}

.genericon-help:before {
	content: '\f457';
}

.genericon-fastforward:before {
	content: '\f458';
}

.genericon-rewind:before {
	content: '\f459';
}

.genericon-portfolio:before {
	content: '\f460';
}

.genericon-heart:before {
	content: '\f461';
}

.genericon-code:before {
	content: '\f462';
}

.genericon-subscribe:before {
	content: '\f463';
}

.genericon-unsubscribe:before {
	content: '\f464';
}

.genericon-subscribed:before {
	content: '\f465';
}

.genericon-reply-alt:before {
	content: '\f466';
}

.genericon-reply-single:before {
	content: '\f467';
}

.genericon-flag:before {
	content: '\f468';
}

.genericon-print:before {
	content: '\f469';
}

.genericon-lock:before {
	content: '\f470';
}

.genericon-bold:before {
	content: '\f471';
}

.genericon-italic:before {
	content: '\f472';
}

.genericon-picture:before {
	content: '\f473';
}

.genericon-fullscreen:before {
	content: '\f474';
}

/* Generic shapes */
.genericon-uparrow:before {
	content: '\f500';
}

.genericon-rightarrow:before {
	content: '\f501';
}

.genericon-downarrow:before {
	content: '\f502';
}

.genericon-leftarrow:before {
	content: '\f503';
}

/*--------------------------------------------------------------15.6 Highlights--------------------------------------------------------------*/
.highlight {
	color: #fff;
}

/*--------------------------------------------------------------15.7 Dividers--------------------------------------------------------------*/
.divider {
	background: none;
	display: block;
	margin: 20px auto;
	height: 0;
	width: 100%;
}

/* Colors */
.divider.grey {
	border-color: #ccc;
}

.divider.yellow {
	border-color: #FBCB43;
}

.divider.green {
	border-color: #34B67A;
}

.divider.red {
	border-color: #E57368;
}

.divider.blue {
	border-color: #77A7FB;
}

.divider.purple {
	border-color: #955BA5;
}

.divider.black {
	border-color: #202020;
}

/* Type */
.solid {
	border-top: 1px solid #ccc;
}

.dashed {
	border-top: 1px dashed #ccc;
}

.dotted {
	border-top: 1px dotted #ccc;
}

.filled {
	border-top: 5px solid #ccc;
}

.double-solid {
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	height: 5px;
}

.double-dashed {
	border-top: 1px dashed #ccc;
	border-bottom: 1px dashed #ccc;
	height: 5px;
}

.double-dotted {
	border-top: 1px dotted #ccc;
	border-bottom: 1px dotted #ccc;
	height: 5px;
}

/*--------------------------------------------------------------15.8 Archive--------------------------------------------------------------*/
ul.shortcode-archive {
	list-style: none;
	margin: 0;
	padding-bottom: 1em;
}

ul.shortcode-archive li {
	margin-bottom: 5px;
}

.shortcode-archive-title:before {
	content: '\f436';
	font-family: 'Genericons';
}

.shortcode-archive-title {
	text-transform: uppercase;
}

.shortcode-date {
	color: #ccc;
	padding-left: 10px;
}

/*--------------------------------------------------------------16.0 Media Queries--------------------------------------------------------------*/
@media (max-width:600px) {
	.entry-meta {
		font-size: 12px !important;
	}
}

@media screen and (min-width:1024px) {
	.row-shortcode {
		margin: 0 -15px;
		padding-bottom: 2em;
	}

	.page-template-layoutspage-left-sidebar-php .column {
		float: right !important;
	}

	.page-template-layoutspage-no-sidebar-php .column {
		float: none !important;
	}

	.page .column,
	.archive .column,
	.search .column {
		float: left;
	}
}

@media screen and (max-width:860px) {
	.flex-direction-nav .flex-prev {
		opacity: 1;
		left: -10px;
	}

	.flex-direction-nav .flex-next {
		opacity: 1;
		right: 10px;
	}
}

@media screen and (max-width:1023px) {
	#secondary {
		border-top: 1px solid #404040;
	}

	.widget_search input[type="search"] {
		width: 30%;
	}
}

/* Masonry */
@media (min-width:480px) {
	.bloggrid article {
		width: 46%;
		margin-right: 4%;
	}

	.bloggrid article:nth-child(2n+2) {
		margin-right: 0;
	}
}

.bloggrid .entry-footer {
	padding-top: 0;
}

/* WooCommerce */
.woocommerce .woocommerce-ordering select {
	padding: 5px;
}

.woocommerce a.button {
	background-color: #f4f5f6;
	color: #333;
	border: 1px solid rgba(0, 0, 0, 0.1);
	font-size: 11px;
	text-transform: uppercase;
	border-radius: 0;
	padding: 10px;
}

.woocommerce nav.woocommerce-pagination ul li span,
.woocommerce nav.woocommerce-pagination ul li a {
	padding: 8px 12px;
}

.woocommerce span.onsale {
	min-height: 50px;
	min-width: 50px;
	padding: .30px;
	line-height: 50px;
	font-weight: 400;
	background-color: #ACE096;
}

.woocommerce div.product .woocommerce-tabs .panel h2,
.related.products h2,
.woocommerce #reviews h3,
.cart_totals h2,
.upsells.products h2 {
	font-weight: 400;
	font-size: 17px;
	margin-top: 0;
}

.woocommerce form h3,
.woocommerce-account h2,
.woocommerce-account h3 {
	font-size: 17px;
	font-weight: 400;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
	background: #f4f5f6;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text,
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
	border-radius: 0;
}

.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
	background-color: #222;
}

.woocommerce #respond input#submit.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover {
	background-color: #000;
}

.woocommerce div.product form.cart,
.woocommerce div.product p.cart {
	margin-bottom: 2em;
	margin-top: 2em;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
	text-transform: uppercase;
	font-size: 12px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li:before {
	left: -3px;
	border-width: 0;
	box-shadow: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li,
.woocommerce table.shop_table,
#add_payment_method #payment,
.woocommerce-checkout #payment,
.select2-drop.select2-drop-above,
.select2-container .select2-choice {
	border-radius: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li:after {
	border-bottom-left-radius: 0;
	border-width: 0;
	box-shadow: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li:after,
.woocommerce div.product .woocommerce-tabs ul.tabs li:before {
	width: 0;
}

.posted_in a {
	text-decoration: none;
	font-style: italic;
}

.posted_in a:before {
	content: '#';
}

.woocommerce div.product form.cart .variations label {
	text-transform: capitalize;
}

.woocommerce div.product form.cart .variations select {
	min-width: 55%;
	padding: 5px;
}

.woocommerce #reviews #comments ol.commentlist li img.avatar {
	width: 42px;
	height: auto;
	border: 0;
	padding: 0;
}

.woocommerce nav.woocommerce-pagination {
	margin-bottom: 30px;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
	font-size: 14px;
}

.woocommerce #coupon_code {
	min-width: 150px;
}

.woocommerce div.product form.cart .button {
	vertical-align: middle;
	float: left;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 11px;
	min-height: 31px;
}

.woocommerce ul.products li.product {
	transition: all 0.3s;
}

.woocommerce ul.products li.product:hover {
	border: 1px solid #eee;
	padding: 20px;
	transition: all 0.3s;
}

.woocommerce ul.products li.product h3 {
	font-size: 1.1em;
	font-weight: 400;
}

.woocommerce form.login,
.woocommerce form.register {
	padding: 20px;
	margin: 1em 0;
	border-radius: 0px;
	max-width: 480px;
}

.wpcmsdev-button {
	border: 0 !Important;
	border-radius: 0 !Important;
	background-image: none !Important;
}

.wpcmsdev-accordion .accordion-item-title a,
.wpcmsdev-tabs .headings a,
.wpcmsdev-toggle .toggle-title a {
	background-image: none !Important;
}

.wpcmsdev-accordion,
.wpcmsdev-tabs .headings a:first-child,
.wpcmsdev-tabs .headings a:last-child,
.wpcmsdev-toggle {
	border-radius: 0 !Important;
}

h3#reply-title,
.comments-title {
	font-weight: 400;
	margin-top: 0;
	font-size: 16px;
	text-transform: uppercase;
}

form.comment-form {
	margin-bottom: 30px;
}

.wpcmsdev-columns {
	margin-left: -15px;
	margin-right: -15px;
}

/* CUSTOM STYLE */
body {
	font-family: 'Roboto';
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Oswald';
}

.site-title {
	font-family: 'Herr Von Muellerhoff';
}

body {
	font-size: 14px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-style: normal;
	font-weight: 700;
	letter-spacing: 0px;
	text-align: left;
	text-transform: none;
}

h1 {
	font-size: 36px;
}

h2 {
	font-size: 30px;
}

h3 {
	font-size: 24px;
}

h4 {
	font-size: 18px;
}

h5 {
	font-size: 14px;
}

h6 {
	font-size: 12px;
}

.site-title {
	font-size: 60px;
	font-style: normal;
	font-weight: 300;
	letter-spacing: 2px;
	text-align: center;
	text-transform: none;
}

.entry-meta,
.cat-links,
.tags-links,
.comments-link,
.edit-link {
	font-size: 13px;
	font-style: italic;
	font-weight: 300;
	letter-spacing: 0px;
	text-align: left;
	text-transform: none;
}

#comments label,
#review_form label {
	min-width: 60px;
	display: inline-block;
}

.done {
	background: #9CCA17;
	color: #fff;
	padding: 10px;
	margin-top: 15px;
	text-align: center;
	display: none;
}