body {
  background: #fff;
  color: #444;
  font-family: "Open Sans", sans-serif;
}

a {
  color: #443f3c;
  transition: 0.5s;
}

a:hover,
a:active,
a:focus {
  color: #0b6bd3;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}

/* Back to top button */

.back-to-top {
  position: fixed;
  display: none;
  background: #443f3c;
  color: #fff;
  width: 44px;
  height: 44px;
  text-align: center;
  line-height: 1;
  font-size: 16px;
  border-radius: 50%;
  right: 15px;
  bottom: 15px;
  transition: background 0.5s;
  z-index: 11;
	border: 3px solid #fff;
}

.back-to-top i {
  padding-top: 12px;
  color: #fff;
}

/* Prelaoder */

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #f2f2f2;
  border-top: 6px solid #443f3c;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

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

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

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

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
  height: 80px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  padding: 20px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.3);
}

#header.header-scrolled,
#header.header-pages {
  height: 60px;
  padding: 10px 0;
}

#header .logo h1 {
  font-size: 36px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #00366f;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 2px 0;
  max-height: 40px;
}

.main-pages {
  margin-top: 60px;
}

/*--------------------------------------------------------------
# hero Section
--------------------------------------------------------------*/

#hero {
  width: 100%;
  position: relative;
  background: url("../img/hero-bg.jpg") center bottom no-repeat;
  background-size: cover;
  padding: 200px 0 120px 0;
}



#hero .hero-info {
  width: 50%;
  float: left;
}

#hero .hero-info h2 {
  color: #fff;
  margin-bottom: 40px;
  font-size: 48px;
  font-weight: 700;
}

#hero .hero-info h2 span {
  color: #74b5fc;
  text-decoration: underline;
}

#hero .hero-info .btn-get-started,
#hero .hero-info .btn-services {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 0 20px 20px 0;
  color: #fff;
}

#hero .hero-info .btn-get-started {
  background: #443f3c;
  border: 2px solid #443f3c;
  color: #fff;
}

#hero .hero-info .btn-get-started:hover {
  background: none;
  border-color: #fff;
  color: #fff;
}

#hero .hero-info .btn-services {
  border: 2px solid #fff;
}

#hero .hero-info .btn-services:hover {
  background: #443f3c;
  border-color: #443f3c;
  color: #fff;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/* Desktop Navigation */

.main-nav {
  /* Drop Down */
  /* Deep Drop Down */
}

.main-nav,
.main-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav > ul > li {
  position: relative;
  white-space: nowrap;
  float: left;
}

.main-nav a {
  display: block;
  position: relative;
  color: #443f3c;
  padding: 5px 15px;	
  margin: 0 5px 5px 0;
  transition: 0.3s;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}

.main-nav a:hover,
.main-nav .active > a,
.main-nav li:hover > a {
  background: #443f3c;
  text-decoration: none;
  border-radius: 50px;
  transition: 0.5s;
  color: #fff;
}


/* Mobile Navigation */

.mobile-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 9999;
  overflow-y: auto;
  left: -260px;
  width: 260px;
  padding-top: 18px;
  background: rgba(19, 39, 57, 0.8);
  transition: 0.4s;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #fff;
  padding: 10px 20px;
  font-weight: 500;
}

.mobile-nav a:hover,
.mobile-nav .active > a,
.mobile-nav li:hover > a {
  color: #74b5fc;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\f078";
  font-family: FontAwesome;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\f077";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-toggle {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  margin: 18px 18px 0 0;
  color: #004289;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(19, 39, 57, 0.8);
  overflow: hidden;
  display: none;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  left: 0;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/

/* Sections Header
--------------------------------*/

.section-header h3 {
  font-size: 36px;
  color: #283d50;
  text-align: center;
  font-weight: 500;
  position: relative;
}

.section-header p {
  text-align: center;
  margin: auto;
  font-size: 15px;
  padding-bottom: 60px;
  color: #556877;
  width: 100%;
}

/* Section with background
--------------------------------*/

.section-bg {
  background: #ecf5ff;
}

/* About Us Section
--------------------------------*/

#about {
  background: #fff;
  padding: 60px 0;
}

#about .about-container .background {
  margin: 20px 0;
}

#about .about-container .content {
  background: #fff;
}

#about .about-container .title {
  color: #333;
  font-weight: 700;
  font-size: 32px;
}

#about .about-container p {
  line-height: 26px;
}

#about .about-container p:last-child {
  margin-bottom: 0;
}

#about .about-container .icon-box {
  background: #fff;
  background-size: cover;
  padding: 0 0 30px 0;
  color: #fff;
}

#about .about-container .icon-box .icon {
  margin: 20px auto;
  background: #fff;
  width: 64px;
  height: 64px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  border-radius: 50%;
  border: 2px solid #443f3c;
  transition: all 0.3s ease-in-out;
}

#about .about-container .icon-box .icon i {
  color: #443f3c;
  font-size: 24px;
}

#about .about-container .icon-box:hover .icon {
  background: #443f3c;
}

#about .about-container .icon-box:hover .icon i {
  color: #fff;
}

#about .about-container .icon-box .title {
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 18px;
  text-align: center;
}

#about .about-container .icon-box .title a {
  color: #283d50;
}

#about .about-container .icon-box .description {
  margin-left: 80px;
  line-height: 24px;
  font-size: 14px;
}

#about .about-extra {
  padding-top: 60px;
}

#about .about-extra h4 {
  font-weight: 600;
  font-size: 24px;
}

/*Why Us Section
--------------------------------*/

#why-us {
  padding: 60px 0;
  background: linear-gradient(rgba(68,63,60, .5), rgba(68,63,60, .5)), url("../img/cover.jpg");
	background-attachment: fixed;
}

#why-us .section-header h3,
#why-us .section-header p {
  color: #fff;
}


#why-us p{color: #fff;}

#why-us .about-container .icon-box {
  padding: 0 0 30px 0;
}

#why-us .about-container .icon-box .icon {
  margin: 20px auto;
  background: #fff;
  width: 64px;
  height: 64px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  border-radius: 50%;
  border: 2px solid #443f3c;
  transition: all 0.3s ease-in-out;
}

#why-us .about-container .icon-box .icon strong {
  color: #443f3c;
  font-size: 24px;
}

#why-us .about-container .icon-box:hover .icon {
  background: #443f3c;
}

#why-us .about-container .icon-box:hover .icon strong{
  color: #fff;
}

#why-us .about-container .icon-box .title {
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 18px;
  text-align: center;
	color: #fff;
}


/* Projects Us Section
--------------------------------*/

#projects {
  background: #fff;
  padding: 60px 0;
}

#projects .projects-container .background {
  margin: 20px 0;
}

#projects .projects-container .content {
  background: #fff;
  margin-bottom: 50px;
  margin-top: 20px;
  border: 1px solid #443f3c;
  text-align: left;
  position: relative;
  padding: 40px 40px 45px 40px;
  box-shadow: 0px 5px 35px #0000000d;
  border-radius: 0;
  z-index: 5;
  overflow: hidden;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
  margin: 20px 0px 50px 20px;
}

#projects .projects-container .content img{
  width: 100%;
}

#projects .projects-container .title {
  color: #333;
  font-weight: 700;
  font-size: 32px;
}

#projects .projects-container p {
  line-height: 26px;
}

#projects .projects-container p:last-child {
  margin-bottom: 0;
}

#projects .projects-container .icon-box {
  background: #fff;
  background-size: cover;
  padding: 0 0 30px 0;
  color: #fff;
}

#projects .projects-container .icon-box .icon {
  margin: 20px auto;
  background: #fff;
  width: 64px;
  height: 64px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  border-radius: 50%;
  border: 2px solid #443f3c;
  transition: all 0.3s ease-in-out;
}

#projects .projects-container .icon-box .icon i {
  color: #443f3c;
  font-size: 24px;
}

#projects .projects-container .icon-box:hover .icon {
  background: #443f3c;
}

#projects .projects-container .icon-box:hover .icon i {
  color: #fff;
}

#projects .projects-container .icon-box .title {
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 18px;
  text-align: center;
}

#projects .projects-container .icon-box .title a {
  color: #283d50;
}

#projects .projects-container .icon-box .description {
  margin-left: 80px;
  line-height: 24px;
  font-size: 14px;
}

#projects .projects-extra {
  padding-top: 60px;
}

#projects .projects-extra h4 {
  font-weight: 600;
  font-size: 24px;
}



.eq{
	display: flex;
	margin-bottom: 20px;
}

.eqdivs{
	height: 90%;
	margin: 30px 0 30px;
}


/* Contact Section
--------------------------------*/

#contact {
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  padding: 60px 0;
  overflow: hidden;
}

#contact .section-header {
  padding-bottom: 30px;
}

#contact .contact-about h3 {
  font-size: 36px;
  margin: 0 0 10px 0;
  padding: 0;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #443f3c;
}

#contact .contact-about p {
  font-size: 14px;
  line-height: 24px;
  font-family: "Montserrat", sans-serif;
  color: #888;
}

#contact .social-links {
  padding-bottom: 20px;
}

#contact .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #fff;
  color: #443f3c;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  border: 1px solid #443f3c;
}

#contact .social-links a:hover {
  background: #443f3c;
  color: #fff;
}

#contact .info {
  color: #283d50;
}

#contact .info i {
  font-size: 32px;
  color: #443f3c;
  float: left;
  line-height: 1;
}

#contact .info p {
  padding: 0 0 10px 36px;
  line-height: 28px;
  font-size: 14px;
}

#contact .form #sendmessage {
  color: #443f3c;
  border: 1px solid #443f3c;
  display: none;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact .form #errormessage {
  color: red;
  display: none;
  border: 1px solid red;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact .form #sendmessage.show,
#contact .form #errormessage.show,
#contact .form .show {
  display: block;
}

#contact .form .validation {
  color: red;
  display: none;
  margin: 0 0 20px;
  font-weight: 400;
  font-size: 13px;
}

#contact .form input,
#contact .form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

#contact .form button[type="submit"] {
  background: #443f3c;
  border: 0;
  border-radius: 20px;
  padding: 8px 30px;
  color: #fff;
  border: 3px solid #443f3c;
  transition: 0.3s;
}

#contact .form button[type="submit"]:hover {
  background: #fff;
	border: 3px solid #443f3c;
	color: #443f3c;
  cursor: pointer;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
  background: #443f3c;
  padding: 0 0 30px 0;
  color: #eee;
  font-size: 14px;
}


#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  text-align: center;
  font-size: 13px;
  color: #f1f7ff;
}

#footer .credits a {
  color: #bfddfe;
}

#footer .credits a:hover {
  color: #f1f7ff;
}

/*--------------------------------------------------------------
# Responsive Media Queries
--------------------------------------------------------------*/

@media (min-width: 992px) {
  #testimonials .testimonial-item p {
    width: 80%;
  }
}

@media (max-width: 991px) {
  #header {
    height: 60px;
    padding: 10px 0;
  }

  #header .logo h1 {
    font-size: 28px;
    padding: 8px 0;
  }

  #hero {
    padding: 140px 0 60px 0;
  }

  #hero .hero-img {
    width: 100%;
    float: none;
    margin: 0 auto 20px auto;
  }

  #hero .hero-info {
    width: 80%;
    float: none;
    margin: auto;
    text-align: center;
  }

  #why-us .card {
    margin: 0;
  }
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 15px;
  }
}

@media (max-width: 767px) {
  #hero .hero-info {
    width: 100%;
  }

  #hero .hero-info h2 {
    font-size: 34px;
    margin-bottom: 30px;
  }

  .section-header p {
    width: 100%;
  }

  #testimonials .testimonial-item {
    text-align: center;
  }

  #testimonials .testimonial-item .testimonial-img {
    float: none;
    margin: auto;
  }

  #testimonials .testimonial-item h3,
  #testimonials .testimonial-item h4,
  #testimonials .testimonial-item p {
    margin-left: 0;
  }
}

@media (max-width: 574px) {
  #hero {
    padding: 100px 0 20px 0;
  }
}

.js .animate-box {
  opacity: 0; }




.owl-carousel .owl-controls,
 .owl-carousel-posts .owl-controls {
    margin-top: 0; }
  .owl-carousel .owl-controls .owl-nav .owl-next,
   .owl-carousel .owl-controls .owl-nav .owl-prev,
   .owl-carousel-posts .owl-controls .owl-nav .owl-next,
   .owl-carousel-posts .owl-controls .owl-nav .owl-prev {
    top: -5px;
    z-index: 9999;
    position: absolute;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    padding: 0; }
  .owl-carousel .owl-controls .owl-nav .owl-next,
  .owl-carousel-posts .owl-controls .owl-nav .owl-next {
    left: 55px; }
    .owl-carousel .owl-controls .owl-nav .owl-next:hover,
    .owl-carousel-posts .owl-controls .owl-nav .owl-next:hover {
      left: 55px !important; }
  .owl-carousel .owl-controls .owl-nav .owl-prev,
  .owl-carousel-posts .owl-controls .owl-nav .owl-prev {
    left: -10px; }
    .owl-carousel .owl-controls .owl-nav .owl-prev:hover,
    .owl-carousel-posts .owl-controls .owl-nav .owl-prev:hover {
      left: -10px !important; }
  .owl-carousel-posts .owl-controls .owl-nav .owl-next i,
   .owl-carousel-posts .owl-controls .owl-nav .owl-prev i,
   .owl-carousel-fullwidth .owl-controls .owl-nav .owl-next i,
  .owl-carousel-fullwidth .owl-controls .owl-nav .owl-prev i {
    color: #000; }
  .owl-carousel-posts .owl-controls .owl-nav .owl-next:hover i,
  .owl-carousel-posts .owl-controls .owl-nav .owl-prev:hover i,
 .owl-carousel-fullwidth .owl-controls .owl-nav .owl-next:hover i,
  .owl-carousel-fullwidth .owl-controls .owl-nav .owl-prev:hover i {
    color: #000; }
 .owl-theme .owl-controls .owl-nav [class*=owl-] {
    padding: 8px;
    background: #443f3c;
    border: 1px solid #443f3c;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0; }
   .owl-theme .owl-controls .owl-nav [class*=owl-] i {
      border: none; }
    .owl-theme .owl-controls .owl-nav [class*=owl-]:hover {
      background: #443f3c; }
 .owl-carousel .owl-controls .owl-nav .owl-next i,
 .owl-carousel .owl-controls .owl-nav .owl-prev i {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    background: #443f3c; }
 .owl-carousel .owl-controls .owl-nav .owl-next:hover i,
  .owl-carousel .owl-controls .owl-nav .owl-prev:hover i {
    color: #fff; }
  .owl-carousel .owl-dots {
    display: none !important; }
    @media screen and (max-width: 992px) {
       .owl-carousel .owl-dots {
        display: none !important; } }
.item {
    position: relative; }
  .item .pop-up-overlay {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      background: rgba(255, 205, 0, 0.8);
      opacity: 0;
      -webkit-transition: 0.5s;
      -o-transition: 0.5s;
      transition: 0.5s; }
      .item .pop-up-overlay .desc {
        position: absolute;
        top: 50%;
        left: 0;
        bottom: 0;
        right: 0;
        margin-top: -60px;
        padding: 30px; }
        .item .pop-up-overlay .desc h3 {
          color: rgba(255, 255, 255, 0.9);
          margin-bottom: 10px; }
        .item .pop-up-overlay .desc span {
          display: block;
          color: rgba(255, 255, 255, 0.6); }
      .item .pop-up-overlay:hover, .item .pop-up-overlay:focus {
        text-decoration: none; }
    .item:hover .pop-up-overlay, .item:focus .pop-up-overlay {
      opacity: 1; }

.item-2 {
  margin-bottom: 3em; }

.project-wrap {
  position: relative;
  display: block; }
  .project-wrap:before {
    position: absolute;
    top: -20px;
    left: -20px;
    right: 0;
    max-width: 100%;
    height: 500px;
    background: #fafafa;
    content: ''; }

.image-popup-link {
  position: relative;
  display: block; }
  .project-wrap:before {
    position: absolute;
    top: -20px;
    left: -20px;
    right: 0;
    max-width: 100%;
    height: 500px;
    background: #fafafa;
    content: ''; }

.project {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  height: 500px;
  width: 100%;
  display: table;
  overflow: hidden; }
  .project .desc-t {
    display: table;
    height: 500px;
    width: 50%;
    margin: 0 auto; }
    .project .desc-t .desc-tc {
      display: table-cell;
      vertical-align: middle;
      height: 500px; }
  .project .desc {
    background: #fff;
    padding: 2em; }
    .project .desc p {
      margin-bottom: 0;
      color: gray; }
    .project .desc h3 {
      text-transform: uppercase;
      font-size: 20px;
      font-weight: 700;
      position: relative;
      padding-left: 70px;
      line-height: 28px;
      display: block; }
      .project .desc h3 span {
        position: absolute;
        top: 0;
        left: 0;
        width: 55px;
        height: 55px;
        display: table;
        text-align: center; }
        .project .desc h3 span small {
          display: table-cell;
          vertical-align: middle;
          color: #fff;
          background: #0066a8;
          font-size: 20px; }

          .cliemt {
            height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 50px;
            
            
          }

          .client img {
            width: 80%;
            margin: auto;
            display: block;
            margin-bottom: 60px;
          }

          .space-down {
            margin-bottom: 100px;
          }