/* Start Main Rules */

* {
	box-sizing: border-box;
}

body {
	padding-top: 60px;
	overflow: hidden;
}

h2 {
	text-align: center;
}

/* End Main Rules */
/* Start Loading */

.loading-screen {
	background: #222;
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 99999;
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

.loader {
  color: #EC971F;
  font-size: 90px;
  text-indent: -9999em;
  overflow: hidden;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  margin: 72px auto;
  position: relative;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load6 1.7s infinite ease, round 1.7s infinite ease;
  animation: load6 1.7s infinite ease, round 1.7s infinite ease;
}

@-webkit-keyframes load6 {
  0% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
  5%,
  95% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
  10%,
  59% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
  }
  20% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em;
  }
  38% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em;
  }
  100% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
}

@keyframes load6 {
  0% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
  5%,
  95% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
  10%,
  59% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
  }
  20% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em;
  }
  38% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em;
  }
  100% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
}
@-webkit-keyframes round {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes round {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* End Loading */
/* Start Scroll To Top Button */

.scroll-to-top {
	width: 35px;
	height: 35px;
	background: #333;
	color: #FFF;
	position: fixed;
	right: 30px;
	bottom: 30px;
	text-align: center;
	line-height: 45px;
	z-index: 999;
	transition: all .4s linear;
	border-radius: 3px;
	display: none;
	cursor: pointer;
}

/* End Scroll To Top Button */
/* Start About Section */

.about {
	padding: 30px 0 20px;
}

.about .lead {
	color: #333;
	padding: 10px 25px;
}

/* End About Section */
/* Start Features Section */

.features {
	background: #F7F7F7;
	padding: 10px 0;
}

.features h2 {
	margin: 20px 0;
}

/* End Features Section */
/* Start Testimonials Section */

.testimonials {
	margin-top: 10px;
}

/* End Testimonials Section */
/* Start Prices Section */

.prices-plans {
	background: #F7F7F7;
}

.prices-plans .container {
	padding: 15px 20px;
}

.prices-plans div{
	text-align: center;
}

.prices-plans h3 {
	margin: 10px 0;
}

.prices-plans .row > div {
	padding: 0 10px;
	margin: 10px 0;
}

.price-box {
	padding:15px;
	background: #FFF;
	border-radius: 10px;
	border: 1px solid #DDD;
}

.price-box .cost {
	display: inline-block;
	margin-bottom: 10px;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: #F5F5F5;
	color:#555;
	line-height: 80px;
	text-align: center;
	font-size: 25px;
	font-weight: bold;
	transition: all .2s linear;
}

.prices-plans .row > div:nth-of-type(2n + 0):hover .cost {
	border: #DDD 2px solid;
	transform: rotate(-30deg) scale(1.1, 1.1);
}

.prices-plans .row > div:nth-of-type(2n + 1):hover .cost {
	border: #DDD 2px solid;
	transform: rotate(30deg) scale(1.1, 1.1);
}

/* End Prices Section */
/* Start Our Team Section */

.ourteam {
	background: url("../Images/Backgrounds/OurTeampanner.jpg") no-repeat center 50px fixed;
	background-size: cover;
}

.ourteam > div {
	background: #05050599;
	min-height: 400px;
	color: #FFF;
}

.ourteam h2 {
	margin: 20px 0
}

.ourteam .member {
	text-align: center;
	margin-bottom: 30px;
}

.ourteam img {
	margin-bottom: 5px;
	width: 150px;
	height: 150px;
}

.ourteam h3{
	margin: 10px 0;
}

.ourteam p {
	max-width: 262.5px;
	margin-left: auto;
	margin-right: auto;
}

.team-social-media {
	font-size: 25px;
	cursor: default;
	letter-spacing: -10px;
}

.team-social-media li:hover {
	cursor: pointer;
}

/* End Our Team Section */
/* Start Subscribe Section */

.subscribe {
	background: #F7F7F7;
	padding: 20px 0 30px;
	text-align: center;
}

.subscribe h2 {
	margin: 10px 0;
	color: #777
}

.subscribe p {
	color: #333;
	font-size: 20px;
}

.subscribe div div {
	display: flex;
	justify-content: center;
}

.subscribe input {
	height: 34px;
	border: 1px solid #DDD;
	border-right: none;
	border-radius: 4px 0 0 4px;
	padding-left: 5px;
	outline: none;
}

.subscribe button {
	border-radius: 0 4px 4px 0;
}

/* End Subscribe Section */
/* Start Statiscs Section */

.statiscs {
	background: url('../Images/Backgrounds/section-background.jpg') no-repeat center center fixed;
	background-size: cover;
	text-align: center;
}

.statiscs > div {
	background: #05050599;
	color: #BBB;
	padding: 30px 0;
}

.statiscs .row > div {
	margin-top: 20px;
	transition: all .3s linear;
}

.statiscs .row > div:hover {
	color: #FFF
}

.statiscs h2 {
	margin: 20px 0 10px;
}

.statiscs h3 {
	margin: 10px 0;
}

/* End Statiscs Section */
/* Start Our Skills Section */

.our-skills {
	padding: 20px 0;
}

.our-skills h2 {
	margin: 10px 0 20px;
}

.our-skills h3 {
	margin-top: 0;
}

.progress {
	height: 30px;
	margin-bottom: 14px;
}

.progress div {
	text-align: left;
	padding-left: 10px;
	height: 100%;
	line-height: 30px;
}

/* End Our Skills Section */
/* Start Contact Us Section */

.contact-us {
	background: url('../Images/Backgrounds/Contact-Us.jpg') no-repeat center center fixed;
	background-size: cover;
}

.contact-us > div {
	background: #0007;
	text-align: center;
}

.contact-us .container {
	padding: 20px 30px;
}

.contact-us h2 {
	color: #FFF;
	margin: 10px 0;
}

.contact-us p {
	color: #FFF;
	text-align: center;
	margin-bottom: 15px;
}

.contact-us input {
	width: 100%;
	height: 34px;
	margin-bottom: 10px;
	line-height: 34px;
	padding: 0 10px;
	border: 1px solid #DDD;
	border-radius: 4px;
	outline: none;
}

.contact-us textarea {
	width: 100%;
	height: 78px;
	padding: 5px 10px;
	border-radius: 4px;
	margin-bottom: 5px;
	outline: none;
	resize: none;
}

.contact-us .btn {
	text-align: center;
	width: 100%;
	outline: none;
}

/* End Contact Us Section */
/* Start Our Clients Section */

.our-clients {
	background: #F7F7F7;
	padding: 25px 15px 0;
}

.our-clients .client {
	text-align: center;
	color: #BBB;
	transition: all .3s linear;
	cursor: pointer;
	margin-bottom: 25px;
}

.our-clients .client:hover {
	color: #777;
}

/* End Our Clients Section */
/* Start Footer */

footer {
	background: #222;
	padding: 10px 0 0;
}

footer .container {
	padding: 0 20px;
}

footer h3 {
	margin-bottom: 25px;
}

footer ul {
	padding-left: 10px;
}

footer li {
	list-style: none;
	color: #AAA
}

footer .site-map ul li {
	transition: all .2s linear;
	padding: 9px 0;
}

footer .site-map ul li:hover {
	color: #fff;
	padding-left: 10px;
}

footer .site-map a {
	text-decoration: none;
}

footer ol {
	padding: 0;
}

footer ol li {
	margin-right: 4px;
	float: left;
}

footer ol img {
	width: 32px;
	opacity: 0.8;
	transition: all .2s linear;
}

footer ol img:hover {
	opacity: 1;
}

footer .latest-posts img {
	width: 64px
}

footer .latest-posts .media-body {
	color: #AAA
}

footer .portfolio img {
	width: calc(50% - 5px);
	margin-right: 5px;
	margin-top: 5px;
	opacity: 0.8;
	transition: all .3s linear;
}

footer .portfolio img:hover {
	opacity: 1;
	cursor: pointer
}

footer .rights {
	margin-top: 25px;
	padding: 10px 0;
	background-color: #111;
	text-align: center;
	color: #DDD
}

footer .brand {
	color: #EC971F
}

/* End Footer */

/* Start responive */

@media (min-width: 768px) and (max-width: 992px) {
	footer .portfolio img {
		width: calc(25% - 5px);
	}
}

@media (max-width: 399px) {
	footer .portfolio img {
		width: calc(100%);
	}
}

/* End responive */
/* ################ About Us Page ############### */
/* Start Bread crumb */

.bread-crumb {
	background: #f5f5f5;
	padding: 3px 0;
}

.bread-crumb ol {
	margin: 0;
}

.bread-crumb a {
	color: #444
}

/* End Bread crumb */
/* Start About Us */

.about-us {
	text-align: center;
}

.about-us h1 {
	font-weight: 700;
	font-size: 60px;
}

.about-us hr {
	width: 70%
}

.about-us p {
	margin: 3px 0;
	font-weight: 500;
}

.about-us img {
	width: 100%;
	max-width: 900px;
	margin: 5px auto;
}

/* End About Us */
/* Start About Us Features */

.about-us-features {
	text-align: center;
	padding: 20px 0 10px;
	color: #454545
}

.about-us-features h2 {
	margin-bottom: 35px;
	font-weight: 600;
	font-size: 40px;
	color: #454545;
}

.about-us-features path {
	color: #555
}

.about-us-features h4 {
	font-weight: 600;
	font-size: 25px;
}

.about-us-features p {
	margin-bottom: 25px;
}

/* End About Us Features */
/* Start About Us CEO */

.about-us-ceo {
	padding-top: 20px;
	background: #f5f5f5;
}

.about-us-ceo .row > div {
	float: right
}

.about-us-ceo .row .row div {
	float: left
}

.about-us-ceo h3, .about-us-ceo h4 {
	font-weight: 600;
}

.about-us-ceo ul {
	padding-left: 25px;
}

.about-us-ceo .image {
	text-align: center;
}

.about-us-ceo .contact {
	padding-top: 10px;
	padding-bottom: 10px;
}

.about-us-ceo img {
	height: 350px;
	margin-bottom: -1px;
}

.about-us-ceo .btn {
	background: #454545;
	border-color: #333;
}

.about-us-ceo .btn:hover {
	background: #353535;
}

/* End About Us CEO */
/* ######## Start FAQ ########### */

/* Start FAQ Intro */

.faq {
	text-align: center;
	padding: 15px 0;
}

.faq h1 {
	font-weight: 700;
	font-size: 50px;
	letter-spacing: -2px;
}

.faq hr {
	width: 70%;
	margin-top: 5px;
	margin-bottom: 10px;
}

.faq p {
	margin: 3px 0;
	font-weight: 500;
}

/* End FAQ Intro */
/* Start Accordion */

.faq-accordion {
	font-family: 'Titillium web';
}

.faq-accordion h4 {
	font-weight: 600;
}

.faq-accordion a:hover, .faq-accordion a:focus {
	text-decoration: none;
}

.faq-accordion .question-box {
	margin-bottom: 10px;
}

.faq-accordion .panel-heading a:after {
	float: right;
	font-family: "glyphicons halflings";
	content: "\e080";
	transform: rotate(90deg);
	transition: all .25s linear;
}

.faq-accordion .panel-heading a.collapsed:after {
	transform: rotate(0deg);
}

/* End Accordion */