
body {

	height:auto;
	width:auto;
  color: black;
  font-size: 20px;
  background-color: #fff;
  line-height: 1.6;
  letter-spacing: .08rem;
  font-weight: 400; }



.heading-primary {
  font-size: 40px;
  font-weight: 500;

 
}

.heading-secondary {
  font-size: 18px;
  letter-spacing: 2px;
  margin: 2rem 0;
  
}

.heading-tertiary {
  font-size: 2.2rem;
  font-weight: 700;
 
}

p {
  
  font-size: 16px;
  font-weight: 400;
  color: black;
  line-height: 1.8;
  margin: 1rem 0; }

ul,
ol {
  padding: 0;
  margin: 0; }

li {
  list-style: none; }

img {
  width: 100%;
  height: auto; }

a,
a:hover
a:focus,
a:active {
  text-decoration: none;
  outline: none;
  color: #353434; }

button,
button:hover,
button:focus,
button:active {
  text-decoration: none;
  outline: none; }

.padding {
  padding: 120px 0;
  position: relative; }

/*------------ PRELOADER --------*/
#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  overflow: hidden; }

.no-js #loader-wrapper {
  display: none; }

#loader {
  position: relative;
  top: 50%;
  margin: 0 auto;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  border: .2rem solid transparent;
  border-color:#fff;
  z-index: 1000;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22); }

#loader:before {
  content: "";
  position: absolute;
  top: .5rem;
  left: .5rem;
  right: .5rem;
  bottom: .5rem;
  border-radius: 50%;
  border: .2rem solid transparent;
  border-top-color: #00b09b;
  -webkit-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite; }

#loader:after {
  content: "";
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  border-radius: 50%;
  border: .2rem solid transparent;
  border-top-color: #00b09b;
  -webkit-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite; }

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

#loader-wrapper .loader-section {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 999; }

#loader-wrapper .loader-section.section-left {
  left: 0; }

#loader-wrapper .loader-section.section-right {
  right: 0; }

/* Loaded styles */
.loaded #loader-wrapper .loader-section.section-left {
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); }

.loaded #loader-wrapper .loader-section.section-right {
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); }

.loaded #loader {
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out; }

.loaded #loader-wrapper {
  visibility: hidden;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: all 0.3s 1s ease-out;
  -o-transition: all 0.3s 1s ease-out;
  transition: all 0.3s 1s ease-out; }

/*----------------- BUTTON STYLE----------------- */
.button:link,
.button:visited {
  margin: 10px auto 0;
  padding: 14px 15px;
  color: #353434;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  overflow: hidden;
  letter-spacing: .08em;
  border-radius: .2rem;
  -webkit-text-shadow: 0 0 1px rgba(0, 0, 0, 0.2), 0 1px 0 rgba(0, 0, 0, 0.2);
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.2), 0 1px 0 rgba(0, 0, 0, 0.2);
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease; }

.button.btn-hover {
  cursor: pointer;
  position: relative;
  border: 3px solid #182da5;
  -webkit-transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1) 0s;
  transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1) 0s; }

.button.btn-hover:hover {
  color: #000 !important;
  background-color: transparent;
  text-shadow: inherit; }

.button.btn-hover:hover:before {
  left: 0%;
  right: auto;
  width: 100%; }

.button.btn-hover:before {
  display: block;
  position: absolute;
  top: 0px;
  right: 0px;
  height: 100%;
  width: 0px;
  z-index: -1;
  content: '';
  color: #000 !important;
  background: #5057e0;
  background: -webkit-linear-gradient(to left, #48d6d3, #5057e0);
  background: linear-gradient(to left, #48d6d3, #5057e0);
  -webkit-transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1) 0s;
  transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1) 0s; }

/*------ Scroll to Top------- */
#scroll-to-top {
  cursor: pointer;
  position: fixed;
  bottom: 20px;
  right: 20px;
  border-radius: 50%;
  display: none;
  z-index: 9;
  background: #5057e0;
  background: -webkit-linear-gradient(to left, #48d6d3, #5057e0);
  background: linear-gradient(to left, #48d6d3, #5057e0);
  color: #fff;
  transition: all .3s;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  -o-transition: all .3s;
  -ms-transition: all .3s; }

#scroll-to-top i {
    display: block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 14px; }

#scroll-to-top:hover {
  background: #5057e0;
  background: -webkit-linear-gradient(to left, #48d6d3, #5057e0);
  background: linear-gradient(to left, #48d6d3, #5057e0);
  color: #fff; }

/*------- hr style------ */
.hr-title {
  display: flex;
  flex-direction: row;
  align-items: center; }

.headerhr {
  flex-grow: 1;
  height: 2px;
  margin: 0 0 0 1rem;
  background-color: blue; }

/* --------------------------------------
  3. NAVIGATION
-----------------------------------------*/
.navbar {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  border: 0;
  background: transparent;
  z-index: 99;
  min-height: 50px;
  font-family: sans-serif;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.6); }

.navbar-brand .logo {
  width: 90%;
  height: 90%;
  margin-left: 2rem; }

.navbar .icon-bar {
  color: #353434;
  margin-right: 15px; }

.navbar .navbar-nav .active {
  color: black !important; }

.navbar-collapse .navbar-nav .nav-link {
  text-align: center;
  color: #353434;
  padding: 10px;
  margin: 1rem;
  font-weight: 500;
  letter-spacing: .5px; }

.nav-scroll {
  background:#fff;
  transition: background-color .5s ease 0s;
  position: fixed;
  border-style:solid;
  border-color:blue;
  top: -100px;
  left: 0;
  width: 100%;
  height:160px;
  -webkit-transition: -webkit-transform .5s;
  transition: -webkit-transform .5s;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s;
  -webkit-transform: translateY(100px);
  transform: translateY(80px);
  -webkit-box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.05); }
  
.nav-scroll .icon-bar {
  color: #353434;
  margin-right: 15px; }

.nav-scroll .navbar-nav .active {
  color: blue !important; }

.nav-scroll .navbar-nav .nav-link {
  color: #353434; }

/*------ width < 991px ------*/
@media (max-width: 991px) {
  .navbar .navbar-nav .active {
    color: #00b09b !important; }
  .navbar-collapse {
    background: #fff; } }

/* line */
nav .line li a {
  position: relative; }

nav .line li a:after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 0%;
  content: '.';
  color: transparent;
  background: #353434;
  height: 1px;
  -webkit-transition: all .5s;
  transition: all .5s; }

.nav-scroll .line li a:after {
  background: blue; }

nav .line li a:hover:after {
  width: 100%; }

/*---------------------------------------
  4. HEADER                
-----------------------------------------*/
/*--------------home------------------*/
.home {
  padding: 200px 0px 150px;
  top:30px;
  background: url("../img/header.jpg") no-repeat center;
  background-size: cover; 
  position: relative; }

/*-------home title subtitle link-----------------*/
.hero-content .content .title {
  font-size: 50px;
  line-height: 70px;
  color: black;
  font-weight: 800; }

.hero-content .content .subtitle {
  font-size: 20px;
  line-height: 28px;
  color: black;
  margin-top: 25px; }

.hero-content .button {
  font-size: 18px;
  z-index: 1; }

.hero-content .content a {
  margin-top: 20px;
  display: inline-block;
  font-size: 18px;
  padding: 12px 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 20px 44px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.12) 0px 20px 44px;
  -moz-box-shadow: rgba(0, 0, 0, 0.12) 0px 20px 44px;
  -o-box-shadow: rgba(0, 0, 0, 0.12) 0px 20px 44px;
  -ms-box-shadow: rgba(0, 0, 0, 0.12) 0px 20px 44px;  
  font-weight: 400;
  background-color: transparent; }
.hero-content .content a i {
  padding-left: 1rem;}
.hero-img {
  padding-left: 50px; }

/*------ width < 991px ------*/
@media (max-width: 991px) {
  .hero-img {
    padding-left: 0px; } }

/*------ width < 768px ------*/
@media (max-width: 768px) {
  .hero-content {
    text-align: center;
	
	} }

/* --------------------------------------
  5. ABOUT
-----------------------------------------*/
.about .hr-title h2 {
  flex-grow: 0; }



/* --------------------------------------
  8. SERVICES
-----------------------------------------*/
.services {
  background: url("../img/header.jpg") ;
  background-size: cover; }

.content-box {
  margin: 25px auto; }

.hr-title .outer-circle {
  flex-grow: 0; }

.content-box-icon i{
  width: 100px;
  height: 100px;
  line-height: 100px;
  font-size: 4rem;
  text-align: center;
  color: blue;
  position: relative;
  border-radius: 50%; }

.outer-circle {
  background-image: linear-gradient(#48d6d3, #96c93d, #5057e0);
  width: 100px;
  height: 100px;
  border-style: solid;
  border-color: transparent;
  border-radius: 50%;
  border-width: 0;
  -webkit-animation: rotateCircle 2s linear infinite;
  animation: rotateCircle 2s linear infinite;
  padding: 2px;
  display: table; }

.outer-circle .inner-circle {
  background: #fff;
  height: 100px;
  width: 100px;
  border-style: solid;
  border-color: transparent;
  border-radius: 50%;
  border-width: 1px;
  -webkit-animation: rotateCircle 2s linear infinite reverse;
  animation: rotateCircle 2s linear infinite reverse;
  display: table;
  text-align: center; }


/* --------------------------------------
  10. PORTFOLIO
-----------------------------------------*/
.portfolio {
  background: #48d6d3;
  color: #48d6d3;
  margin-top: 60px;
  margin-bottom: 60px;
  }

.portfolio .port-title {
  float: none;
  margin: 0 auto;
  margin-bottom: 20px; }



.portfolio .filter-port {
  margin: 0 auto;
  text-align: center;
  margin-bottom: 60px;
  margin-left: 15px; }

.portfolio .filter-port .btn {
  z-index: 1;
  color: #353434; }

.portfolio .filter-port li {
  padding: 7px 30px;
  cursor: pointer;
  font-size: 16px;
  margin: 0 1px;
  border-radius: 2px;
  -o-border-radius: 2px;
  -ms-border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  display: inline-block; }

.portfolio .filter-port .active {
  color: #fff;
  box-shadow: 0 0.5em 0.5em -0.4em #5057e0; }

.portfolio .filtr-item {
  padding:10px; }

.portfolio .port-caption {
  position: relative; }

.portfolio .port-caption img {
  height: 300px;
  width: 400px;
  max-width: 100%;  
  border-radius: 2px; }

.portfolio .port-caption .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transition: ease-out .3s;
  -moz-transition: ease-out .3s;
  -o-transition: ease-out .3s;
  transition: ease-out .3s;
  opacity: 0;
  -webkit-transform: translateX(10px);
  -moz-transform: translateX(10px);
  -ms-transform: translateX(10px);
  -o-transform: translateX(10px);
  transform: translateX(10px); }

.portfolio .port-caption .overlay:focus {
  outline: none; }

.portfolio .port-caption .overlay span,
.portfolio .port-caption .overlay i {
  color: #fff; }

.portfolio .filtr-item:hover .overlay {
  margin: 1.5rem;
  background: #00b09b;
  background: -webkit-linear-gradient(to left, rgba(150, 201, 61, 0.5), rgba(0, 176, 155, 0.5));
  background: linear-gradient(to left, rgba(150, 201, 61, 0.5), rgba(0, 176, 155, 0.5));
  opacity: 1;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  -moz-transform: translateX(0);
  transform: translateX(0); }

.portfolio .port-caption .info-content {
  position: absolute;
  top: 20px;
  left: 20px;
  text-align: right; }

.portfolio .port-caption .info-content h4 {
  color: #fff;
  font-size: 20px;
  position: relative; }



.portfolio .port-caption .view-more {
  position: cover;
  bottom: 20px;
  right: 20px;
  text-align: right; }

.portfolio .port-caption:focus,
.portfolio .filtr-item:focus,
.portfolio .port-caption img:focus,
.portfolio .port-caption a:focus {
  outline: none; }



/*------ width < 575px ------*/
@media (max-width: 500px) {
  .portfolio .port-title p {
    padding: 0;
  }
  .portfolio .filter-port {
    padding: 0 30px;
  }
  .portfolio .filter-port li {
    margin-bottom: 20px;
  }

}

/* --------------------------------------
  11.TEAM
-----------------------------------------*/
.team .team-info {
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  text-align: center; }

.team .team-info:before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 176, 155, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all .35s ease 0s; }

.team .team-info:hover:before {
  opacity: 1; }

.team .team-info .view-content {
  width: 90%;
  height: 90%;
  position: absolute;
  top: 5%;
  left: 5%; }

.team .team-info .view-content:after,
.team .team-info .view-content:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  transition: all .7s ease 0s; }

.team .team-info .view-content:before {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  transform: scale(0, 1);
  transform-origin: 0 0 0; }

.team .team-info .view-content:after {
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  border-right: 1px solid rgba(255, 255, 255, 0.5);
  transform: scale(1, 0);
  transform-origin: 100% 0 0; }

.team .team-info:hover .view-content:after,
.team .team-info:hover .view-content:before {
  opacity: 1;
  transform: scale(1);
  transition-delay: .15s; }

.team .team-info .title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-top: 60px;
  opacity: 0;
  transform: translate3d(0, -50px, 0);
  transition: transform .5s ease 0s; }

.team .team-info:hover .title {
  opacity: 1;
  transform: translate3d(#000); }

.team .team-info .post {
  font-size: 14px;
  color: #fff;
  padding: 10px;
  background: #48d6d3;
  background: -webkit-linear-gradient(to left, #96c93d, #48d6d3);
  background: linear-gradient(to left, #96c93d, #48d6d3);
  opacity: 0;
  border-radius: 0 19px;
  transform: translate3d(0, -50px, 0);
  transition: all .7s ease 0s;
  text-transform: capitalize;
  display: inline-block; }

.team .team-info .icon {
  padding: 0; }

.team .team-info:hover .post {
  opacity: 1;
  transform: translate3d(#000);
  transition-delay: .15s; }

.team .team-info .icon {
  width: 100%;
  margin: 0;
  position: absolute;
  bottom: -10px;
  left: 0;
  opacity: 0;
  z-index: 1;
  transition: all .7s ease 0s; }

.team .team-info:hover .icon {
  bottom: 20px;
  opacity: 1;
  transition-delay: .15s; }

.team .team-info .icon li {
	font-size: 14px;
  display: inline-block; }

.team .team-info .icon li a {
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: #fff;
  color: #48d6d3;
  border-radius: 50%;
  font-size: 14px;
  margin-right: 5px;
  transition: all .4s ease 0s; }

.team .team-info .icon li a:hover {
  color: #fff;
  background: #48d6d3;
  background: -webkit-linear-gradient(to left, #96c93d, #48d6d3);
  background: linear-gradient(to left, #96c93d, #48d6d3); }

/*------ width < 991px ------*/
@media only screen and (max-width: 991px) {
  .team .team-info {
    margin-bottom: 30px; } }

/* ------------------------------
  12. READY
---------------------------------*/
.ready {
  background: url("../img/z.jpg") no-repeat fixed center;
  background-size: cover; }

.ready .cta {
  padding: 5rem;
  background: rgba(255, 255, 255, 0.7); }

.ready .button {
  z-index: 1; }

.ready .button:hover {
  animation: animate 1s linear infinite; }

/*------ animate ------*/  
@keyframes animate {
  0% {
    box-shadow: 0 0 0 0 rgba(247, 202, 24, 0.4); }
  100% {
    box-shadow: 0 0 0 20px rgba(247, 202, 24, 0); } }



/* ----------------------------------------------------------------
  17. Clients Logo
-----------------------------------------------------------------*/
.clients {
  padding: 80px 0;
  background: #00b09b;
  background: -webkit-linear-gradient(to left, #96c93d, #00b09b);
  background:  url("../img/z.jpg") no-repeat fixed center; }

.clients .owl-carousel {
  margin-bottom: -20px; }

.clients .client-logo {
  opacity: 1; }

.clients .client-logo:hover {
  opacity: .7; }

.clients img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-transition: all .5s;
  transition: all .5s; }

.clients img:hover {
  -webkit-filter: none;
  filter: none; }

/* --------------------------------------
  18. CONTACT
-----------------------------------------*/
.contact {
  
  background: url("../img/about-bg.png") no-repeat center;
  background-size: cover; }

.contact .cont-title p {
  font-size: 20px;
  font-weight: 400; }

.contact .info {
  margin-top: 30px; }

.contact .info li {
  margin-bottom: 15px; }

.contact .info li:last-child {
  margin-bottom: 0; }

.contact .info li .icon,
.contact .info li i {  
  float: left;
  color: black;
  background: blue;
  
 
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 14px;
  border-radius: 50px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  z-index: 1; }

.contact .info li p {
  display: inline-block;
  color: black;
  margin-left: 15px;
  font-size: 15px;
  text-align:left;  
  }

.contact .info li h5 span {
  font-weight: 700;
  margin-left: 15px;
  display: inline-block;
  font-size: 16px; }


/* --------------------------------------
  19. FOOTER
-----------------------------------------*/
.footer {
	margin-top: 100px;
    direction:rtl;
 }

hr{
	background-color:black;
	width:100px;
    height:2px;
	position:center;
}

 p {
  text-align: right;
  margin-top: 20px;
  }

.copyright {
  text-align: right;
  margin-top: 20px; }

.copyright h5 {
  font-size: 16px;
}

