/*-----------------------------------------------------------------------------------

Theme Name: Arco
Description: The Multi-Purpose Onepage Template

Main Color   : #2AAFC0

-----------------------------------------------------------------------------------*/
/* ----------------------------------------------------------------

== Table Of Content

01 Basics
02 Buttons
03 Navbar
04 Header
05 Hero
06 section-box
07 Services
08 Numbers
09 Works
10 Team
11 Price
12 Testimonials
13 Blog
14 Subscribe
15 Contact-Info
16 Contact
17 Footer
18 Responsive


---------------------------------------------------------------- */
/* ----------------------------------------------------------------
[ 01 Start Basics ]
-----------------------------------------------------------------*/
* {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	outline: none;
	list-style: none;
	word-wrap: break-word;
}

.ltr_text {
	display: inline-block;
	direction: ltr;
}

.secondary_font {
	font-family: "secondary-font", "primary-font", "segoe ui", "tahoma";
}

body {
	color: #000;
	line-height: 1.3;
	font-weight: 400;
	font-size: 14px;
	font-family: "primary-font", "segoe ui", "tahoma";
	overflow-x: hidden !important;
	direction: rtl;
}

p {
	font-size: 14px;
	font-weight: 400;
	color: #7f7f7f;
	line-height: 2;
	margin: 0;
}

img {
	width: 100%;
	height: auto;
}

span, a, a:hover {
	display: inline-block;
	text-decoration: none;
	color: inherit;
}

.section-padding {
	padding: 120px 0;
}

.section-head {
	margin-bottom: 80px;
}
.section-head h6 {
	color: #333;
	font-size: 13px;
	font-weight: 400;
	display: inline-block;
	padding: 0 15px;
	position: relative;
	max-width: calc(100% - 80px);
}
.section-head h6:before, .section-head h6:after {
	content: '';
	width: 40px;
	height: 1px;
	background-color: #2AAFC0;
	position: absolute;
	bottom: 10px;
}
.section-head h6:before {
	right: -40px;
}
.section-head h6:after {
	left: -40px;
}
.section-head h4 {
	font-size: 31px;
	font-weight: 600;
	margin-bottom: 15px;
	font-family: "secondary-font", "primary-font", "segoe ui", "tahoma";
}

.bg-gray {
	background: #f7f7f7;
}

.o-hidden {
	overflow: hidden;
}

.position-re {
	position: relative;
}

.full-width {
	width: 100% !important;
}

.lg-line-height {
	line-height: 1.85;
}

.bg-img {
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center top;
}

.bg-fixed {
	background-attachment: fixed;
}

.bg-center {
	background-position: center center !important;
}

.valign {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: -moz-box;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	align-items: center;
}

.v-middle {
	position: absolute;
	width: 100%;
	top: 50%;
	right: 0;
	-webkit-transform: translate(0%, -50%);
	-moz-transform: translate(0%, -50%);
	-ms-transform: translate(0%, -50%);
	-o-transform: translate(0%, -50%);
	transform: translate(0%, -50%);
	z-index: 1;
}

.owl-theme .owl-nav.disabled + .owl-dots {
	margin-top: 15px;
	line-height: .7;
}

.owl-theme .owl-dots .owl-dot span {
	width: 8px;
	height: 8px;
	margin: 0 7px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	background: #ddd;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
	background: #2AAFC0;
}

/* ----------------------------------------------------------------
[ End Basics ]
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
[ 02 Start Buttons ]
-----------------------------------------------------------------*/
.butn {
	padding: 14px 30px;
	background: #fff;
	border: 1px solid transparent;
	position: relative;
	z-index: 3;
	margin-right: 10px;
	margin-left: 10px;
	-webkit-box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
	-webkit-transition: all .4s;
	-o-transition: all .4s;
	-moz-transition: all .4s;
	transition: all .4s;
	cursor: pointer;
	outline: none !important;
	overflow: hidden;
}
.butn span {
	position: relative;
	z-index: 2;
	-webkit-transition-delay: 0s;
	-moz-transition-delay: 0s;
	-o-transition-delay: 0s;
	transition-delay: 0s;
	color: inherit;
}
.butn:before, .butn:after {
	content: '';
	width: 0;
	height: 100%;
	background: #fff;
	position: absolute;
	right: 0;
	top: 0;
	-webkit-transition: width 0.4s;
	-o-transition: width 0.4s;
	-moz-transition: width 0.4s;
	transition: width 0.4s;
	z-index: 1;
	opacity: .4;
}
.butn:after {
	-webkit-transition-delay: 0s;
	-moz-transition-delay: 0s;
	-o-transition-delay: 0s;
	transition-delay: 0s;
	background: #fff;
	opacity: 1;
}
.butn:hover:before, .butn:hover:after {
	width: 100%;
}
.butn:hover:after {
	-webkit-transition-delay: .2s;
	-moz-transition-delay: .2s;
	-o-transition-delay: .2s;
	transition-delay: .2s;
}
.butn:hover span {
	-webkit-transition-delay: .2s;
	-moz-transition-delay: .2s;
	-o-transition-delay: .2s;
	transition-delay: .2s;
}

.butn-bg {
	background: #2AAFC0;
	border-color: #2AAFC0;
	color: #fff;
}
.butn-bg:hover,
.butn-bg:hover span {
	color: #2AAFC0;
}

.butn-light {
	background: #fff;
	color: #2AAFC0;
}
.butn-light:before,
.butn-light:after {
	background: #2AAFC0;
}
.butn-light:hover,
.butn-light:hover span {
	color: #fff;
}

/* ----------------------------------------------------------------
[ End Buttons ]
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
[ 03 Start Navbar ]
-----------------------------------------------------------------*/
.navbar {
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
	background: transparent;
	z-index: 9;
	height: 80px;
	padding: 0;
}
.navbar .icon-bar {
	color: #fff;
}
.navbar .navbar-nav a,
.navbar .navbar-nav .nav-link {
	font-size: 13px;
	font-weight: 600;
	color: #eee;
	margin: 15px 5px;
	-webkit-transition: all .5s;
	-o-transition: all .5s;
	-moz-transition: all .5s;
	transition: all .5s;
	display: block;
	padding: .5rem 0;
}
.navbar .navbar-nav .active {
	color: #2AAFC0 !important;
}

.nav-scroll {
	background: #fff;
	border-bottom: 1px solid rgba(12, 12, 12, 0.04);
	padding: 0;
	position: fixed;
	top: -100px;
	right: 0;
	width: 100%;
	-webkit-transition: -webkit-transform .5s;
	transition: -webkit-transform .5s;
	-o-transition: -o-transform .5s;
	-moz-transition: transform .5s, -moz-transform .5s;
	transition: transform .5s;
	transition: transform .5s, -webkit-transform .5s, -moz-transform .5s, -o-transform .5s;
	transition: transform .5s, -webkit-transform .5s;
	-webkit-transform: translateY(100px);
	-moz-transform: translateY(100px);
	-ms-transform: translateY(100px);
	-o-transform: translateY(100px);
	transform: translateY(100px);
}
.nav-scroll .icon-bar {
	color: #222;
}
.nav-scroll .navbar-nav a,
.nav-scroll .navbar-nav .nav-link {
	color: #222;
}
.nav-scroll .navbar-nav .logo {
	padding: 15px 0;
	color: #111;
}

.logo img {
	max-height: 50px;
	width: auto;
}

/* ----------------------------------------------------------------
[ End Navbar ]
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
[ 04 Start Header ]
-----------------------------------------------------------------*/
.header {
	min-height: 100vh;
	overflow: hidden;
}
.is_ie .header {
	height: 100vh;
}
.header[data-overlay-dark]:before,
.header[data-overlay-light]:before {
	content: '';
}
.header[data-overlay-dark]:before {
	background: #000;
}
.header[data-overlay-light]:before {
	background: #fff;
}
.header .caption {
	padding-right: 15px;
	padding-left: 15px;
}
.header .caption .o-hidden {
	display: inline-block;
}
.header .caption h4 {
	font-weight: 400;
	line-height: 1.85;
	-webkit-animation-delay: .2s;
	-moz-animation-delay: .2s;
	-o-animation-delay: .2s;
	animation-delay: .2s;
	font-family: "secondary-font", "primary-font", "segoe ui", "tahoma";
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	backface-visibility: hidden;
}
.header .caption h1 {
	margin: 0 0 12px;
	font-size: 62px;
	font-family: "secondary-font", "primary-font", "segoe ui", "tahoma";
	line-height: 1.85;
	-webkit-animation-delay: .6s;
	-moz-animation-delay: .6s;
	-o-animation-delay: .6s;
	animation-delay: .6s;
}
.header .caption p {
	font-size: 15px;
	font-weight: 400;
	color: #eee;
	-webkit-animation-delay: 1s;
	-moz-animation-delay: 1s;
	-o-animation-delay: 1s;
	animation-delay: 1s;
}
.header .caption p span {
	margin: 0 5px;
	padding-left: 14px;
	position: relative;
}
.header .caption p span:last-child {
	padding: 0;
}
.header .caption p span:last-child:after {
	display: none;
}
.header .caption p span:after {
	content: '';
	width: 7px;
	height: 7px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	background: #2AAFC0;
	position: absolute;
	top: 10px;
	left: 0;
	opacity: .5;
}
.header .caption .butn {
	-webkit-animation-delay: 1.2s;
	-moz-animation-delay: 1.2s;
	-o-animation-delay: 1.2s;
	animation-delay: 1.2s;
}

.slider .owl-item, .slider-fade .owl-item {
	height: 100vh;
	position: relative;
}
.slider .item, .slider-fade .item {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	width: 100%;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}
.slider .item .caption, .slider-fade .item .caption {
	z-index: 9;
}
.slider .owl-theme .owl-dots, .slider-fade .owl-theme .owl-dots {
	position: absolute;
	bottom: 5vh;
	width: 100%;
}

.creative {
	min-height: -webkit-calc(100vh + 100px);
	min-height: -moz-calc(100vh + 100px);
	min-height: calc(100vh + 100px);
	padding-bottom: 100px;
}
.is_ie .creative {
	height: -webkit-calc(100vh + 100px);
	height: -moz-calc(100vh + 100px);
	height: calc(100vh + 100px);
}
.creative .svg {
	position: absolute;
	bottom: -10px;
	right: 0;
	width: 100%;
	z-index: 2;
}
.creative .svg svg {
	fill: #fff;
	width: 101%;
}

.wave:after {
	content: '';
	position: absolute;
	bottom: -1px;
	right: -5%;
	width: 110%;
	height: 100px;
	background-image: url(../img/wave.png);
	-moz-background-size: 100% 100%;
	-o-background-size: 100% 100%;
	background-size: 100% 100%;
	background-position: center bottom;
	z-index: 7;
}

.bg-vid {
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

#particles-js {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

/* ----------------------------------------------------------------
[ End Header ]
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
[ 05 Start Hero ]
-----------------------------------------------------------------*/
.hero .intro h3 {
	margin-bottom: 5px;
	font-family: "secondary-font", "primary-font", "segoe ui", "tahoma";
}
.hero .intro h4 {
	position: relative;
	padding-bottom: 30px;
	margin-bottom: 30px;
	font-weight: 400;
	font-family: "secondary-font", "primary-font", "segoe ui", "tahoma";
}
.hero .intro h4:after {
	content: '';
	width: 60px;
	height: 2px;
	background: #2AAFC0;
	position: absolute;
	bottom: 0;
	right: -webkit-calc(50% - 30px);
	right: -moz-calc(50% - 30px);
	right: calc(50% - 30px);
}
.hero .intro p {
	width: 90%;
	margin: auto;
}
.hero .item .icon-img {
	width: auto;
	max-width: 200px;
	max-height: 200px;
	margin-bottom: 30px;
}
.hero .item .icon {
	width: 80px;
	height: 80px;
	line-height: 90px;
	border: 1px solid #eee;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	font-size: 40px;
	color: #2AAFC0;
	margin-bottom: 40px;
	position: relative;
}
.hero .item .icon:after {
	content: '';
	width: 20px;
	height: 1px;
	background: #2AAFC0;
	position: absolute;
	right: -webkit-calc(50% - 10px);
	right: -moz-calc(50% - 10px);
	right: calc(50% - 10px);
	bottom: -20px;
}
.hero .item h5 {
	margin-bottom: 15px;
	font-weight: 600;
	font-size: 21px;
	font-family: "secondary-font", "primary-font", "segoe ui", "tahoma";
}
.hero .hero-img {
	padding: 0 30px;
	position: relative;
}
.hero .hero-img img {
	position: relative;
	z-index: 2;
}
.hero .hero-img:after {
	content: '';
	position: absolute;
	top: -30px;
	right: 0px;
	bottom: 30px;
	left: 60px;
	background: #2AAFC0;
	background: -webkit-gradient(linear, right bottom, right top, from(#2AAFC0), to(#6976c5));
	background: -webkit-gradient(linear, left bottom, left top, from(#2AAFC0), to(#6976c5));
	background: -webkit-linear-gradient(bottom, #2AAFC0, #6976c5);
	background: -moz-linear-gradient(bottom, #2AAFC0, #6976c5);
	background: -o-linear-gradient(bottom, #2AAFC0, #6976c5);
	background: linear-gradient(to top, #2AAFC0, #6976c5);
	z-index: -1;
}
.hero .hero-img:before {
	content: '';
	position: absolute;
	top: -20px;
	right: 10px;
	bottom: 40px;
	left: 70px;
	background: #fff;
	z-index: 1;
}
.hero .content {
	padding-top: 30px;
}
.hero .content .sub-title {
	margin: 10px 0 15px;
	line-height: 2;
}
.hero .content p {
	margin-top: 15px;
}
.hero .content .butn {
	margin-right: 0;
}

/* ----------------------------------------------------------------
[ End Hero ]
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
[ 06 section-box ]
-----------------------------------------------------------------*/
.section-box .half-img {
	background-position: 50% 50%;
}
.section-box .half-content {
	padding: 30px;
}
.section-box .box-white {
	padding: 100px 10%;
	background: #fff;
	-webkit-box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.08);
	-moz-box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.08);
	box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.08);
}
.section-box .skills {
	margin-bottom: -20px;
}
.section-box .skills .skill-item {
	margin-bottom: 30px;
}
.section-box .skills .skill-item h6 {
	font-size: 14px;
	margin-bottom: 10px;
}
.section-box .skills .skill-progress {
	width: 100%;
	height: 26px;
	border: 4px solid #f7f7f7;
	background: #f7f7f7;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	position: relative;
	-webkit-box-shadow: 0px -10px 30px rgba(0, 0, 0, 0.08) inset;
	-moz-box-shadow: 0px -10px 30px rgba(0, 0, 0, 0.08) inset;
	box-shadow: 0px -10px 30px rgba(0, 0, 0, 0.08) inset;
}
.section-box .skills .skill-progress .progres {
	position: absolute;
	height: 100%;
	width: 0;
	right: 0;
	top: 0;
	background: #2AAFC0;
	background: -webkit-gradient(linear, right top, left top, from(#2AAFC0), to(#6976c5));
	background: -webkit-linear-gradient(right, #2AAFC0, #6976c5);
	background: -moz-linear-gradient(right, #2AAFC0, #6976c5);
	background: -o-linear-gradient(right, #2AAFC0, #6976c5);
	background: linear-gradient(to left, #2AAFC0, #6976c5);
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	-webkit-transition: all 1s;
	-o-transition: all 1s;
	-moz-transition: all 1s;
	transition: all 1s;
}
.section-box .skills .skill-progress .progres:before {
	content: attr(data-value);
	padding: 4px 10px 3px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	font-size: 10px;
	color: #fff;
	background: #2AAFC0;
	background: -webkit-gradient(linear, right top, left top, from(#2AAFC0), to(#6976c5));
	background: -webkit-linear-gradient(right, #2AAFC0, #6976c5);
	background: -moz-linear-gradient(right, #2AAFC0, #6976c5);
	background: -o-linear-gradient(right, #2AAFC0, #6976c5);
	background: linear-gradient(to left, #2AAFC0, #6976c5);
	position: absolute;
	top: -35px;
	left: 0;
}
.section-box .skills .skill-progress .progres:after {
	content: "";
	width: 0;
	height: 0;
	border-right: 3px solid transparent;
	border-left: 3px solid transparent;
	border-top: 5px solid #2AAFC0;
	position: absolute;
	top: -12px;
	left: 16px;
}
.section-box .accordion {
	margin-bottom: -10px;
}
.section-box .accordion .item {
	margin-bottom: 30px;
}
.section-box .accordion .title {
	padding: 10px 20px;
	background: #fff;
	-webkit-box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
	box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
	cursor: pointer;
	position: relative;
}
.section-box .accordion .title:after {
	content: '\f067';
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	font-size: 12px;
	position: absolute;
	top: 17px;
	left: 20px;
}
.section-box .accordion .title h6 {
	font-size: 16px;
	font-weight: 600;
}
.section-box .accordion .accordion-info {
	display: none;
	padding: 0px 15px;
	margin-top: 30px;
	border-right: 1px dotted #ccc;
}
.section-box .accordion .accordion-info .spac {
	margin-top: 30px;
	padding-right: 30px;
}
.section-box .accordion .accordion-info .spac h6 {
	position: relative;
	margin-bottom: 15px;
}
.section-box .accordion .accordion-info .spac h6:after {
	content: "";
	width: 6px;
	height: 6px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	background: #555;
	position: absolute;
	top: 3px;
	right: -15px;
}
.section-box .accordion .accordion-info .spac ul {
	padding-right: 30px;
}
.section-box .accordion .accordion-info .spac li {
	margin-bottom: 10px;
	position: relative;
	font-size: 15px;
}
.section-box .accordion .accordion-info .spac li:after {
	content: "";
	width: 6px;
	height: 6px;
	border: 1px solid #222;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	position: absolute;
	top: 9px;
	right: -15px;
}
.section-box .accordion .active {
	display: block;
}
.section-box .accordion .active .title {
	color: #fff;
	background: #2AAFC0;
	background: -webkit-gradient(linear, right top, left top, from(#2AAFC0), to(#6976c5));
	background: -webkit-linear-gradient(right, #2AAFC0, #6976c5);
	background: -moz-linear-gradient(right, #2AAFC0, #6976c5);
	background: -o-linear-gradient(right, #2AAFC0, #6976c5);
	background: linear-gradient(to left, #2AAFC0, #6976c5);
	-webkit-box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
	box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
}
.section-box .accordion .active .title:after {
	content: '\f068';
}
.section-box .vid-butn {
	font-size: 70px;
	color: #2AAFC0;
	position: relative;
	width: 70px;
	height: 70px;
	line-height: 70px;
	z-index: 3;
}
.section-box .vid-butn:hover:after {
	-webkit-transform: scale(2, 2);
	-moz-transform: scale(2, 2);
	-ms-transform: scale(2, 2);
	-o-transform: scale(2, 2);
	transform: scale(2, 2);
	opacity: 0;
	-webkit-transition: all .5s;
	-o-transition: all .5s;
	-moz-transition: all .5s;
	transition: all .5s;
}
.section-box .vid-butn:after {
	content: '';
	position: absolute;
	top: -10px;
	bottom: -10px;
	left: -10px;
	right: -10px;
	background: rgba(255, 255, 255, 0.4);
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	z-index: -1;
	-webkit-transition: all .2s;
	-o-transition: all .2s;
	-moz-transition: all .2s;
	transition: all .2s;
}
.section-box .vid-butn:before {
	content: '';
	position: absolute;
	top: -5px;
	bottom: -5px;
	left: -5px;
	right: -5px;
	background: rgba(255, 255, 255, 0.6);
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	z-index: -1;
}
.section-box h3 {
	font-family: "secondary-font", "primary-font", "segoe ui", "tahoma";
}

/* ----------------------------------------------------------------
[ End section-box ]
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
[ 07 Start Services ]
-----------------------------------------------------------------*/
.services .item {
	text-align: center;
	padding: 30px 15px;
}
.services .item .icon-img {
	width: auto;
	max-width: 200px;
	max-height: 200px;
	margin-bottom: 25px;
}
.services .item .icon {
	font-size: 40px;
	color: #2AAFC0;
	margin-bottom: 12px;
}
.services .item h6 {
	margin-bottom: 10px;
	font-weight: 600;
	font-family: "secondary-font", "primary-font", "segoe ui", "tahoma";
}
.services .bord {
	border-right: 1px solid #eee;
	border-left: 1px solid #eee;
}
.services hr {
	height: 1px;
	width: 100%;
	border: 0;
	display: block;
	background: #eee;
}

/* ----------------------------------------------------------------
[ End Services ]
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
[ 08 Start Numbers ]
-----------------------------------------------------------------*/
.numbers .icon {
	font-size: 45px;
	color: #2AAFC0;
	margin-bottom: 15px;
}
.numbers .icon::before {
	vertical-align: middle;
}
.numbers h3 {
	font-size: 55px;
	font-weight: 700;
	margin-bottom: 10px;
}
.numbers h6 {
	font-weight: 400;
	font-family: "secondary-font", "primary-font", "segoe ui", "tahoma";
}

/* ----------------------------------------------------------------
[ End Numbers ]
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
[ 09 Start Works ]
-----------------------------------------------------------------*/
.works .row {
	margin-right: 0;
	margin-left: 0;
}
.works .gallery {
	overflow: hidden;
}
.works .filtering .filter {
	display: inline-block;
	padding: 2px 10px;
	border: 1px solid #eee;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
}
.works .filtering span {
	margin: 0 5px;
	padding: 8px 15px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
	cursor: pointer;
}
.works .filtering .active {
	background: #2AAFC0;
	background: -webkit-gradient(linear, right top, left top, from(#2AAFC0), to(#6976c5));
	background: -webkit-linear-gradient(right, #2AAFC0, #6976c5);
	background: -moz-linear-gradient(right, #2AAFC0, #6976c5);
	background: -o-linear-gradient(right, #2AAFC0, #6976c5);
	background: linear-gradient(to left, #2AAFC0, #6976c5);
	-webkit-box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.2);
	box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.2);
	color: #fff;
}
.works .item-img {
	position: relative;
	margin-top: 30px;
}
.works .item-img:hover .item-img-overlay {
	-webkit-transform: scale(1, 1);
	-moz-transform: scale(1, 1);
	-ms-transform: scale(1, 1);
	-o-transform: scale(1, 1);
	transform: scale(1, 1);
	opacity: 1;
}
.works .item-img-overlay {
	position: absolute;
	top: 10px;
	right: 10px;
	left: 10px;
	bottom: 10px;
	background: rgba(255, 255, 255, 0.95);
	opacity: 0;
	-webkit-transform: scale(0, 0);
	-moz-transform: scale(0, 0);
	-ms-transform: scale(0, 0);
	-o-transform: scale(0, 0);
	transform: scale(0, 0);
	-webkit-transition: all .5s;
	-o-transition: all .5s;
	-moz-transition: all .5s;
	transition: all .5s;
}
.works .item-img-overlay:after {
	content: '';
	position: absolute;
	top: -5px;
	bottom: -5px;
	right: -5px;
	left: -5px;
	background: rgba(255, 255, 255, 0.5);
	z-index: -1;
}
.works .item-img-overlay .icon {
	font-size: 20px;
	width: 40px;
	height: 40px;
	line-height: 40px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	background: #f1f1f1;
	margin: 15px 5px 0;
	-webkit-transition: all .5s;
	-o-transition: all .5s;
	-moz-transition: all .5s;
	transition: all .5s;
}
.works .item-img-overlay .icon:hover {
	background: #2AAFC0;
	color: #fff;
}
.works .item-img-overlay .icon:before {
	line-height: 2;
}
.works .item-img-overlay p {
	color: #2AAFC0;
	font-weight: 400;
}
.works .item-img-overlay h6 {
	font-weight: 600;
	font-size: 17px;
	margin-top: 5px;
}

/* ----------------------------------------------------------------
[ End Works ]
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
[ 10 Start Team ]
-----------------------------------------------------------------*/
.team .item {
	border: 1px solid rgba(42, 175, 192, 0.3);
	-webkit-border-radius: 89px;
	-moz-border-radius: 89px;
	border-radius: 89px;
	overflow: hidden;
	position: relative;
}
.team .item:hover {
	background: #2AAFC0;
	background: -webkit-gradient(linear, right top, left top, from(#2AAFC0), to(#6976c5));
	background: -webkit-linear-gradient(right, #2AAFC0, #6976c5);
	background: -moz-linear-gradient(right, #2AAFC0, #6976c5);
	background: -o-linear-gradient(right, #2AAFC0, #6976c5);
	background: linear-gradient(to left, #2AAFC0, #6976c5);
	color: #fff;
}
.team .item:hover .team-img {
	border-color: #2AAFC0;
}
.team .item:hover span {
	color: #eee !important;
}
.team .item:hover p {
	color: #ccc;
}
.team .item .team-img {
	float: right;
	width: 176px;
	height: 176px;
	border: 5px solid #fff;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	overflow: hidden;
}
.team .item .info {
	padding: 15px 0 15px 15px;
	margin-right: 200px;
}
.team .item .info h6 {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 5px;
}
.team .item .info span {
	font-size: 13px;
	margin-bottom: 10px;
	color: #2AAFC0;
}
.team .item .info p {
	margin-bottom: 10px;
	font-size: 14px;
}
.team .item .info .icon {
	margin: 0 5px;
}

/* ----------------------------------------------------------------
[ End Team ]
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
[ 11 Start Price ]
-----------------------------------------------------------------*/
.price .pricing-tables {
	padding: 0 50px;
	margin-bottom: -15px;
}
.price .item {
	padding: 30px;
	margin-bottom: 30px;
	background: #fff;
	-webkit-box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.1);
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}
.price .item .type {
	position: relative;
	padding-bottom: 15px;
	margin-bottom: 15px;
	border-bottom: 1px solid #eee;
}
.price .item .type img {
	position: absolute;
	bottom: -10px;
	right: -30px;
	width: -webkit-calc(100% + 60px);
	width: -moz-calc(100% + 60px);
	width: calc(100% + 60px);
}
.price .item .type h4 {
	font-size: 20px;
	font-weight: 600;
}
.price .item .value {
	margin: 30px 0;
}
.price .item .value h3 {
	font-size: 55px;
}
.price .item .value h3 span {
	font-size: 15px;
}
.price .item .value .per {
	font-size: 13px;
	margin-top: 5px;
	color: #2AAFC0;
}
.price .item .features {
	text-align: right;
	overflow: hidden;
	padding: 12px 0;
}
.price .item .features ul {
	margin-bottom: 0;
}
.price .item .features li {
	margin-bottom: 7px;
	line-height: 1.85;
}
.price .item .features li:last-child {
	margin-bottom: 0;
}
.price .item .features li .true {
	color: #3ff312;
}
.price .item .features li .false {
	color: #ec126d;
}
.price .item .features i {
	float: left;
	font-size: 11px;
	margin-top: 4px;
}
.price .item .order {
	margin-top: 30px;
}
.price .item .order .butn {
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}
.price .item.active {
	color: #fff;
	position: relative;
	-webkit-transform: scale(1.05, 1.05);
	-moz-transform: scale(1.05, 1.05);
	-ms-transform: scale(1.05, 1.05);
	-o-transform: scale(1.05, 1.05);
	transform: scale(1.05, 1.05);
	z-index: 2;
	overflow: hidden;
	background-repeat: no-repeat;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}
.price .item.active:after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: #2AAFC0;
	background: -webkit-gradient(linear, right top, right bottom, from(#2AAFC0), to(#6976c5));
	background: -webkit-gradient(linear, left top, left bottom, from(#2AAFC0), to(#6976c5));
	background: -webkit-linear-gradient(top, #2AAFC0, #6976c5);
	background: -moz-linear-gradient(top, #2AAFC0, #6976c5);
	background: -o-linear-gradient(top, #2AAFC0, #6976c5);
	background: linear-gradient(to bottom, #2AAFC0, #6976c5);
	z-index: -1;
	opacity: .9;
}
.price .item.active .value .per {
	color: #eee;
}

/* ----------------------------------------------------------------
[ End Price ]
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
[ 12 Start Testimonials ]
-----------------------------------------------------------------*/
.testimonials .icon {
	width: 80px;
	margin-bottom: 15px;
}
.testimonials h5 {
	font-weight: 400;
	margin-bottom: 80px;
}
.testimonials .item .client-img {
	width: 90px;
	height: 90px;
	margin: 0 auto 15px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	overflow: hidden;
	border: 5px solid rgba(200, 200, 200, 0.15);
}
.testimonials .item h6 {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 30px;
}
.testimonials .item h6 span {
	display: block;
	color: #2AAFC0;
	font-size: 14px;
	font-weight: 400;
	margin-top: 5px;
}
.testimonials .item p {
	padding: 30px;
	color: #eee;
	font-size: 17px;
	background: rgba(255, 255, 255, 0.1);
	background: -webkit-gradient(linear, right top, left top, from(transparent), color-stop(rgba(200, 200, 200, 0.1)), to(transparent));
	background: -webkit-linear-gradient(right, transparent, rgba(200, 200, 200, 0.1), transparent);
	background: -moz-linear-gradient(right, transparent, rgba(200, 200, 200, 0.1), transparent);
	background: -o-linear-gradient(right, transparent, rgba(200, 200, 200, 0.1), transparent);
	background: linear-gradient(to left, transparent, rgba(200, 200, 200, 0.1), transparent);
}
.testimonials .owl-theme .owl-nav [class*=owl-] {
	width: 40px;
	height: 40px;
	line-height: 35px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2);
	margin: 20px 5px 0;
}
.testimonials .owl-theme .owl-nav [class*=owl-]:hover {
	background: #2AAFC0;
}

/* ----------------------------------------------------------------
[ End Testimonials ]
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
[ 13 Start Blog ]
-----------------------------------------------------------------*/
.blog .item {
	-webkit-box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.08);
	-moz-box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.08);
	box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.08);
	background: #fff;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}
.blog .item .post-img {
	padding: 15px;
}
.blog .item .post-img .img {
	overflow: hidden;
}
.blog .item .post-img .img a {
	display: block;
}
.blog .item .post-img:hover img {
	-webkit-transform: scale(1.1, 1.1);
	-moz-transform: scale(1.1, 1.1);
	-ms-transform: scale(1.1, 1.1);
	-o-transform: scale(1.1, 1.1);
	transform: scale(1.1, 1.1);
}
.blog .item .post-img img {
	-webkit-transition: all .5s;
	-o-transition: all .5s;
	-moz-transition: all .5s;
	transition: all .5s;
}
.blog .item .cont {
	padding: 15px 15px 30px;
}
.blog .item .info {
	margin-bottom: 10px;
}
.blog .item .info span {
	color: #999;
	font-size: 12px;
	margin: 0 5px 5px;
}
.blog .item h6 {
	font-size: 20px;
	margin-bottom: 20px;
}

.blog-nav {
	position: static !important;
	background: #fff !important;
	margin: 0;
}
.blog-nav .logo {
	color: #1c1c1c !important;
}
.blog-nav .navbar-nav li a {
	color: #1c1c1c !important;
	font-weight: 600;
}

.min-header {
	height: 30vh;
	min-height: 250px;
	max-height: 350px;
	background: #1c1c1c;
	background-position: center;
	background-size: cover;
	position: relative;
}
.min-header h5 {
	font-weight: 800;
	color: #ccc;
}
.min-header a {
	color: #fff;
}

.blogs .posts .post {
	margin-bottom: 50px;
	border-bottom: 1px solid #eee;
}
.blogs .posts .post .content {
	padding: 0 15px 50px 15px;
	background: #fff;
}
.blogs .posts .post .post-img {
	text-align: center;
}
.blogs .posts .post .post-img img {
	width: auto;
	max-width: 100%;
}
.blogs .posts .post .post-img + .content {
	padding-top: 50px;
}
.blogs .posts .post .content .post-title h5 {
	font-weight: 700;
	font-size: 20px;
	margin-bottom: 10px;
}
.blogs .posts .post .content .meta {
	margin-bottom: 20px;
}
.blogs .posts .post .content .meta li {
	display: inline-block;
	font-size: 12px;
	color: #777;
	margin: 5px;
	line-height: 1.85;
}
.blogs .posts .post .content p {
	font-weight: 400;
	margin-bottom: 1rem;
}
.blogs .posts .post .content li {
	font-size: 14px;
    font-weight: 400;
    color: #7f7f7f;
    line-height: 2;
	list-style-position: inside;
}
.blogs .posts .post .content ul li {
	list-style-type: disc;
}
.blogs .posts .post .content ol li {
	list-style-type: auto;
}
.blogs .posts .post .content .spical {
	padding: 15px;
	margin: 30px 0;
	border-right: 2px solid #111;
	background: #f7f7f7;
	font-size: 15px;
}
.blogs .posts .post .share-post {
	margin-top: 30px;
	padding-top: 20px;
	border-top: 1px dashed #eee;
	text-align: right;
}
.blogs .posts .post .share-post span {
	font-weight: 700;
}
.blogs .posts .post .share-post ul {
	float: left;
}
.blogs .posts .post .share-post ul li {
	display: inline-block;
	margin: 0 10px;
}
.blogs .posts .title-g h3 {
	font-weight: 800;
	font-size: 25px;
	font-family: "secondary-font", "primary-font", "segoe ui", "tahoma";
}
.blogs .posts .comments-area .comment-box {
	padding-bottom: 30px;
	margin-bottom: 30px;
	border-bottom: 1px solid #eee;
}
.blogs .posts .comments-area .comment-box:last-child {
	margin-bottom: 0;
}
.blogs .posts .comments-area .comment-box .author-thumb {
	width: 80px;
	float: right;
}
.blogs .posts .comments-area .comment-box .comment-info {
	margin-right: 100px;
}
.blogs .posts .comments-area .comment-box .comment-info h6 {
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 10px;
	overflow: hidden;
}
.blogs .posts .comments-area .comment-box .comment-info .comment-date {
	float: left;
	margin: 5px 15px 0 15px;
	font-size: 12px;
	color: #777;
	font-weight: normal;
}
.blogs .posts .comments-area .comment-box .comment-info em {
	font-style: normal;
    line-height: 1.85;
    color: #aaa;
	display: block;
    margin-top: 10px;
}
.blogs .posts .comments-area .comment-box .comment-info em i {
	vertical-align: middle;
}
.blogs .posts .comments-area .comment-box .comment-info .reply {
	margin-top: 10px;
	font-weight: 600;
}
.blogs .posts .comments-area .comment-box .comment-info .reply i {
	padding-left: 5px;
	font-size: 12px;
	vertical-align: -1px;
}
.blogs .posts .comments-area .comment-box .comment-box {
	padding-top: 30px;
	padding-bottom: 0;
	margin-top: 30px;
	margin-bottom: 0;
	margin-right: 50px;
	border-top: 1px solid #eee;
	border-bottom: 0;
}
.blogs .posts .comments-area .navigation {
	line-height: 1.85;
	overflow: hidden;
	margin-bottom: -5px;
	padding-top: 10px;
}
.blogs .posts .comments-area .navigation .nav-previous {
	float: right;
}
.blogs .posts .comments-area .navigation .nav-next {
	float: left;
}
.blogs .posts .comment-form .form input[type='text'],
.blogs .posts .comment-form .form input[type='email'],
.blogs .posts .comment-form .form textarea {
	width: 100%;
	border: 0;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	padding: 15px;
	background: #f4f4f4;
	text-align: right;
}
.blogs .posts .comment-form .form .has-error input[type='text'],
.blogs .posts .comment-form .form .has-error input[type='email'],
.blogs .posts .comment-form .form .has-error textarea {
	background: #fff2f2;
}
.blogs .posts .comment-form .form textarea {
	height: 159px;
	min-height: 159px;
	max-width: 100%;
	line-height: 1.85;
}
.blogs .posts .pagination {
	display: block;
	text-align: center;
}
.blogs .posts .pagination li {
	display: inline-block;
	margin: 3px;
	border: 1px solid #ddd;
	min-width: 30px;
	text-align: center;
}
.blogs .posts .pagination li a,
.blogs .posts .pagination li span {
	padding: 5px 10px;
}
.blogs .posts .pagination li i {
	vertical-align: middle;
}
.blogs .side-bar .widget {
	margin-bottom: 50px;
}
.blogs .side-bar .widget:last-child {
	margin-bottom: 0;
}
.blogs .side-bar .widget .widget-title {
	border-bottom: 1px solid #eee;
	margin-bottom: 30px;
}
.blogs .side-bar .widget .widget-title h6 {
	position: relative;
	padding-bottom: 15px;
	font-size: 14px;
	font-weight: 600;
	font-family: "secondary-font", "primary-font", "segoe ui", "tahoma";
}
.blogs .side-bar .widget .widget-title h6:after {
	content: '';
	width: 30px;
	height: 1px;
	background: #2AAFC0;
	position: absolute;
	bottom: 0;
	right: 0;
}
.blogs .side-bar .widget li {
	margin-bottom: 10px;
	color: #777;
	line-height: 1.85;
}
.blogs .side-bar .widget li:last-child {
	margin: 0;
}
.blogs .side-bar .search form input {
	width: -webkit-calc(100% - 52px);
	width: -moz-calc(100% - 52px);
	width: calc(100% - 52px);
	height: 50px;
	padding: 0 10px;
	border: 0;
	background: #f7f7f7;
}
.blogs .side-bar .search form button {
	width: 50px;
	height: 50px;
	line-height: 50px;
	background: #1c1c1c;
	color: #fff;
	border: 0;
	float: left;
	cursor: pointer;
	outline: none;
}
.blogs .side-bar .search form button .fa {
	vertical-align: middle;
}
.blogs .side-bar .widget li .post-date {
	display: block;
	color: #aaa;
	line-height: 1.85;
	font-size: 12px;
	margin-top: 5px;
}
.comment_reply_to {
	font-size: 13px;
	margin-bottom: 5px;
}
.comment_reply_to small a {
	margin-right: 30px;
	color: #1c1c1c;
}
.comment-notes,
.logged-in-as {
	font-size: 13px;
	margin-bottom: 10px;
}
.post-info {
	line-height: 2;
	color: #7f7f7f;
	margin-top: 22px;
}
.post-info + .post-info {
	margin-top: 5px;
}
.post-info a {
	color: #000;
}

/* ----------------------------------------------------------------
[ End Blog ]
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
[ 14 Start Subscribe ]
-----------------------------------------------------------------*/
.subscribe {
	-moz-background-size: auto;
	-o-background-size: auto;
	background-size: auto;
	background-repeat: repeat;
}
.subscribe h4 {
	font-weight: 600;
	margin-bottom: 50px;
	font-family: "secondary-font", "primary-font", "segoe ui", "tahoma";
}
.subscribe form {
	position: relative;
}
.subscribe input {
	padding: 14px 20px 14px 160px;
	width: 100%;
	height: 46px;
	margin: auto;
	border: 0;
	background: #fff;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
	-webkit-box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
	text-align: right;
}
.subscribe .butn {
	cursor: pointer;
	padding: 10px 0;
	width: 140px;
	border: 1px solid transparent;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
	position: absolute;
	top: 3px;
	left: -7px;
	-webkit-box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
	background: -webkit-gradient(linear, right top, left top, from(#2AAFC0), to(#6976c5));
	background: -webkit-linear-gradient(right, #2AAFC0, #6976c5);
	background: -moz-linear-gradient(right, #2AAFC0, #6976c5);
	background: -o-linear-gradient(right, #2AAFC0, #6976c5);
	background: linear-gradient(to left, #2AAFC0, #6976c5);
}
.subscribe .butn:hover {
	border-color: #2AAFC0;
}

/* ----------------------------------------------------------------
[ End Subscribe ]
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
[ 15 Start Contact-Info ]
-----------------------------------------------------------------*/
.contact-info .info {
	padding: 100px 5%;
}
.contact-info .info .gradient {
	position: relative;
	z-index: 3;
}
.contact-info .info .item {
	margin-bottom: 50px;
}
.contact-info .info .item .icon {
	float: right;
	font-size: 35px;
	color: #2AAFC0;
}
.contact-info .info .item .cont {
	margin-right: 60px;
}
.contact-info .info .item h6 {
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 5px;
}
.contact-info .info .social a {
	width: 35px;
	height: 35px;
	line-height: 34px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	color: #fff;
	background: rgba(200, 200, 200, 0.1);
	font-size: 15px;
	text-align: center;
}
.contact-info .info .social a .fab {
	vertical-align: middle;
}
.contact-info .info .social a:hover {
	background: #2AAFC0;
}
.contact-info .map {
	position: relative;
	min-height: 400px;
}
.contact-info .map #ieatmaps {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
}
.contact-info .map #ieatmaps iframe {
	width: 100% !important;
	height: 100% !important;
}

/* ----------------------------------------------------------------
[ End Contact-Info ]
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
[ 16 Start Contact ]
-----------------------------------------------------------------*/
.contact .form .wpcf7-form-control-wrap {
	width: 100%;
}
.contact .form .ltr_input {
	direction: ltr;
}
.contact .form input, .contact .form textarea {
	width: 100%;
	padding: 15px;
	background: #f4f4f4;
	border: 0;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	text-align: right;
}
.contact .form .has-error input, .contact .form .has-error textarea {
	background: #fff2f2;
}
.contact .form textarea {
	height: 159px;
	min-height: 159px;
	max-width: 100%;
	line-height: 1.85;
}
.contact .form .submit {
	font-size: 16px;
	font-weight: 600;
	width: 100%;
	padding: 11px 10px 12px;
	color: #fff;
	background: #2AAFC0;
	background: -webkit-gradient(linear, right top, left top, from(#2AAFC0), to(#6976c5));
	background: -webkit-linear-gradient(right, #2AAFC0, #6976c5);
	background: -moz-linear-gradient(right, #2AAFC0, #6976c5);
	background: -o-linear-gradient(right, #2AAFC0, #6976c5);
	background: linear-gradient(to left, #2AAFC0, #6976c5);
	-webkit-box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
	box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
	border: 0;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
	cursor: pointer;
	text-align: center;
}
.contact .form .submit:hover {
	background: #2AAFC0;
}
.contact .form .messages button.close {
	margin-top: -3px;
	margin-left: -8px;
	outline: none;
}
.wpcf7 {
	direction: rtl;
}
div.wpcf7 .ajax-loader,
div.wpcf7 .wpcf7-spinner {
	position: absolute;
	right: 0;
	left: 0;
	bottom: -40px;
	margin: auto;
}
span.wpcf7-not-valid-tip {
	font-size: 12px;
	line-height: 2;
}
div.wpcf7-response-output {
	line-height: 2;
}

/* ----------------------------------------------------------------
[ End Contact ]
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
[ 17 Start Footer ]
-----------------------------------------------------------------*/
footer {
	background: #111;
	padding: 80px 0;
}
footer .social a {
	color: #fff;
	font-size: 13px;
	width: 35px;
	height: 35px;
	line-height: 34px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	background: #222;
	margin: 15px 5px;
}
footer .social a:hover {
	background: #2AAFC0;
}
footer .social a .fab {
	vertical-align: middle;
}
footer p {
	color: #999;
	font-weight: 400;
	font-size: 12px;
}

/* ----------------------------------------------------------------
[ End Footer ]
-----------------------------------------------------------------*/
.clients .owl-carousel .owl-stage {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
}
.clients .owl-item a {
	vertical-align: middle;
}
[data-overlay-dark] span.ltr_text {
	color: inherit;
}
.all_posts_button {
	margin-top: 90px;
}
.navbar-nav > .menu-item-has-children > a:after {
	content: "\f0d7";
	font: normal normal normal 14px/1 "Font Awesome 5 Free";
	font-weight: 900;
	color: inherit;
	margin-right: 7px;
	display: inline-block;
	vertical-align: middle;
}
.contact_side {
	padding-top: 80px;
	padding-bottom: 80px;
}
.about-columns {
	margin-bottom: -50px;
}
.achievements-row {
	margin-bottom: -70px;
}
.team-columns {
	margin-bottom: -15px;
}

/* ----------------------------------------------------------------
[ 18 Responsive ]
-----------------------------------------------------------------*/
@media screen and (max-width: 991.98px) {
	.all_posts_button {
		margin-top: 40px;
	}

	.mb-md50 {
		margin-bottom: 50px;
	}

	.mb-md30 {
		margin-bottom: 30px;
	}

	.mb-md0 {
		margin-bottom: 0;
	}

	.pb-md70 {
		padding-bottom: 70px;
	}

	.bgimg-height {
		height: 400px;
	}

	.bg-fixed {
		background-attachment: scroll !important;
	}

	.navbar {
		padding-right: 30px;
		padding-left: 15px;
	}
	.navbar .navbar-collapse {
		max-height: -webkit-calc(100vh - 80px);
		max-height: -moz-calc(100vh - 80px);
		max-height: calc(100vh - 80px);
		overflow: auto;
		background: #111;
		text-align: center;
		max-width: 720px;
		position: absolute;
		top: 80px;
		left: 0;
		right: 0;
		margin: auto;
	}
	.navbar .navbar-collapse .navbar-nav {
		margin: 10px 0;
	}
	.navbar .navbar-collapse.collapsing {
		overflow: hidden;
	}
	.navbar .navbar-nav a,
	.navbar .nav-link {
		margin: 10px auto !important;
	}

	.nav-scroll .navbar-collapse a,
	.nav-scroll .navbar-collapse .nav-link {
		color: #fff !important;
	}
	.nav-scroll .navbar-collapse .active {
		color: #2AAFC0 !important;
	}
	.navbar-toggler {
		outline: none !important;
		line-height: 1.5;
	}
	.navbar-toggler .fas {
		vertical-align: middle;
	}

	.header {
		background-attachment: scroll !important;
		background-position: 50% 0% !important;
	}
	.header.bg-center {
		background-position: center center !important;
	}
	.header .caption h4 {
		font-size: 26px;
	}
	.header .caption h1 {
		font-size: 45px;
	}

	.services .item {
		padding: 0;
	}
	.services .bord {
		border: 0;
	}
	.services hr {
		display: none;
	}

	.contact_side form .col-md-6 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
		padding-left: 15px !important;
		padding-right: 15px !important;
	}

	.menu-item-has-children .sub-menu {
		background: #222;
		display: none;
	}
	.menu-item-has-children .sub-menu .menu-item:hover {
		background: #333;
	}
	.menu-item-has-children .sub-menu .menu-item a {
		margin: 0 !important;
		line-height: 2;
	}

	.services-columns {
		margin-bottom: -50px;
	}
	.price .pricing-tables {
		margin-bottom: -50px;
	}
	.price .item {
		margin-bottom: 50px;
	}
}
@media screen and (max-width: 767.98px) {
	.mb-sm50 {
		margin-bottom: 50px;
	}

	.mb-sm30 {
		margin-bottom: 30px;
	}

	.section-box h3 {
		font-size: 25px;
		line-height: 1.85;
	}

	.hero .intro h3 {
		font-size: 28px;
	}

	.hero .intro h4 {
		font-size: 20px;
	}

	.subscribe h4 {
		font-size: 20px;
		margin-bottom: 30px;
	}

	.bgimg-height-sm {
		height: 400px;
	}

	.header .caption h4 {
		font-size: 16px;
	}
	.header .caption h1 {
		font-size: 25px;
	}
	.header .caption p {
		font-size: 14px;
	}
	.header .caption p span {
		font-size: 12px;
	}

	.portfolio .filtering span {
		margin-bottom: 10px;
	}
	.navbar .navbar-collapse {
		max-width: 540px;
	}
	.side-bar {
		margin-top: 100px;
	}
	.creative {
		min-height: -webkit-calc(100vh + 60px);
		min-height: -moz-calc(100vh + 60px);
		min-height: calc(100vh + 60px);
		padding-bottom: 60px;
	}
	.is_ie .creative {
		height: -webkit-calc(100vh + 60px);
		height: -moz-calc(100vh + 60px);
		height: calc(100vh + 60px);
	}
	.wave:after {
		height: 60px;
	}
	.contact form .col-md-6,
	.comment-form form .col-md-6 {
		padding-left: 15px !important;
		padding-right: 15px !important;
	}

	.section-padding,
	.contact_side {
		padding-top: 100px;
		padding-bottom: 100px;
	}
	.section-box .box-white {
		padding-top: 80px;
		padding-bottom: 80px;
	}
}
@media screen and (max-width: 575.98px) {
	.navbar .navbar-collapse {
		max-width: none;
	}
}
@media screen and (max-width: 480.98px) {
	.section-head h4 {
		font-size: 25px;
	}

	.section-box .accordion .title h6 {
		line-height: 1.5;
		font-size: 14px;
	}

	.section-box .half-content {
		padding: 15px;
	}

	.works .filtering .filter {
		border: 0;
		padding: 0;
	}

	.works .filtering span {
		margin: 0 0 5px;
	}

	.team .item {
		text-align: center;
		padding: 30px;
	}
	.team .item .team-img {
		float: none;
		width: 180px;
		height: 180px;
		margin: auto;
	}
	.team .item .info {
		margin-top: 25px;
		margin-right: 0;
	}

	.price .pricing-tables {
		padding: 0 30px;
	}

	.subscribe input {
		width: 100%;
		margin-bottom: 15px;
		-webkit-border-radius: 30px;
		-moz-border-radius: 30px;
		border-radius: 30px;
	}

	.subscribe .butn {
		-webkit-border-radius: 30px;
		-moz-border-radius: 30px;
		border-radius: 30px;
	}
	.creative {
		min-height: -webkit-calc(100vh + 40px);
		min-height: -moz-calc(100vh + 40px);
		min-height: calc(100vh + 40px);
		padding-bottom: 40px;
	}
	.is_ie .creative {
		height: -webkit-calc(100vh + 40px);
		height: -moz-calc(100vh + 40px);
		height: calc(100vh + 40px);
	}
	.wave:after {
		height: 40px;
	}
	.blogs .posts .comments-area .comment-box .author-thumb {
		width: 50px;
	}
	.blogs .posts .comments-area .comment-box .comment-info {
		margin-right: 70px;
	}
	.blogs .posts .comments-area .comment-box .comment-box {
		margin-right: 35px;
	}
}
@media screen and (min-width: 768px) {
	.contact_side .section-head {
		margin-top: -13px;
	}
}
@media screen and (min-width: 992px) {
	.navbar-expand-lg .navbar-nav {
		margin-left: -13px;
	}
	.navbar-expand-lg .navbar-nav a,
	.navbar-expand-lg .navbar-nav .nav-link {
		padding-left: .5rem;
		padding-right: .5rem;
	}

	.menu-item-has-children {
		position: relative;
	}
	.menu-item-has-children .sub-menu {
		position: absolute;
		top: 100%;
		right: 0;
		min-width: 150px;
		background: #111;
		visibility: hidden;
		opacity: 0;
		margin-top: -10px;
		transition: all 200ms;
	}
	.menu-item-has-children:hover > .sub-menu {
		visibility: visible;
		opacity: 1;
		margin-top: 0;
	}
	.menu-item-has-children .sub-menu .menu-item {
		padding: 5px 10px;
	}
	.menu-item-has-children .sub-menu .menu-item:hover {
		background: #222;
	}
	.menu-item-has-children .sub-menu .menu-item a {
		color: #eee;
		margin: 0;
	}
}
@media screen and (min-width: 1450px) {
	.creative {
		min-height: -webkit-calc(100vh + 140px);
		min-height: -moz-calc(100vh + 140px);
		min-height: calc(100vh + 140px);
		padding-bottom: 140px;
	}
	.is_ie .creative {
		height: -webkit-calc(100vh + 140px);
		height: -moz-calc(100vh + 140px);
		height: calc(100vh + 140px);
	}
	.wave:after {
		height: 140px;
	}
}
@media screen and (min-width: 992px) and (max-width: 1199.98px) {
	.price .item .value h3 span {
		display: block;
		margin: -10px 0 20px;
	}
}
@media screen and (min-width: 992px) and (max-width: 1329.98px) {
	.menu-item-has-children:last-child .sub-menu {
		right: auto;
		left: 0;
	}
}
