/*
* ----------------------------------------------------------------------------------------
Author       : perfectcoder
Template Name: Koppa - One Page Parallax Template
Version      : 1.0                                          
* ----------------------------------------------------------------------------------------
*/

/*
* ----------------------------------------------------------------------------------------
* 01.GLOBAL CSS STYLE
* 02.PRELOADER & BOUNCE CCS STYLE
* 03.HOMEPAGE CSS STYLE
* 04.ABOUT US CSS STYLE
* 05.SERVICE CSS STYLE
* 06.CALL TO ACTION CSS STYLE
* 07. PORTFOLIO CSS STYLE
* 08. COMPLETE PROJECT CSS STYLE
* 09.TESTIMONIAL CSS STYLE
* 10.TEAM CSS STYLE
* 11.CONTACT CSS STYLE
* 12.MAP CSS STYLE
* 13.FOOTER CSS STYLE
* ----------------------------------------------------------------------------------------
*/

/*
* ----------------------------------------------------------------------------------------
* 01.GLOBAL STYLE
* ----------------------------------------------------------------------------------------
*/

body {
  font-size: 14px;
  font-weight: 300;
  height: 100%;
  font-family: 'Open Sans', sans-serif;
}

html,
body {
  height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Exo', sans-serif;
}

a {
  text-decoration: none;
  -webkit-transition: all 0.4s;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

img {
  width: 100%;
}

a:hover {
  text-decoration: none;
}

a:focus {
  outline: none;
  text-decoration: none;
}

p {
  line-height: 28px;
}

ul,
li {
  margin: 0;
  padding: 0;
}

fieldset {
  border: 0 none;
  margin: 0 auto;
  padding: 0;
}

.no-padding {
  padding: 0;
}

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

.section-title {
  margin-bottom: 30px;
  text-align: center;
}

.section-title h2 {
  font-size: 40px;
  text-transform: capitalize;
  margin-bottom: 50px;
  font-weight: 600;
  margin-top: 0;
  color: black;
}

.black-title h2 {
  color: #000;
}

a.read-more {
  display: inline-block;
  color: #fff;
  text-transform: uppercase;
  border: 1px solid #0a67ce;
  background-color: #0a67ce;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 12px 20px;
  margin: 0px 10px;
}

a.read-more:hover {
  background: #900000;
  border: 1px solid #900000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.scrollup {
  border-radius: 50%;
  height: 40px;
  width: 40px;
  font-size: 14px;
  color: #fff;
  text-align: center;
  position: fixed;
  bottom: 30px;
  right: 30px;
  line-height: 40px;
  cursor: pointer;
  display: none;
  z-index: 2;
  background: #0a67ce;
}

.scrollup:hover {
  box-shadow: 0 3px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}

/*
* ----------------------------------------------------------------------------------------
* 02.PRELOADER & BOUNCE CCS STYLE
* ----------------------------------------------------------------------------------------
*/

.preloader {
  background: #000;
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 99999;
}

.status-mes {
  width: 45px;
  height: 45px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -22px 0 0 -22px;
  font-size: 10px;
  text-indent: -12345px;
  border-top: 8px solid #222;
  border-right: 8px solid #222;
  border-bottom: 8px solid #222;
  border-left: 8px solid #0a67ce;
  border-radius: 50%;
  -webkit-animation: spinner 1000ms infinite linear;
  animation: spinner 1000ms infinite linear;
  z-index: 10000;
}

@-webkit-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.header-text .home-arrow-down {
  text-align: center;
  position: absolute;
  bottom: -210px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.header-text .home-arrow-down .btn {
  font-size: 40px;
}

.header-text .home-arrow-down .fa {
  color: #fafafa;
  display: inline-block;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-animation-name: home-arrow-down;
  animation-name: home-arrow-down;
  animation-duration: 2s;
  -webkit-animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes home-arrow-down {
  from {
    -webkit-transform: translate3d(0, 0px, 0);
    transform: translate3d(0, 0px, 0);
    filter: alpha(opacity=0);
    opacity: 0;
    -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=0)';
  }
  10% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
    filter: alpha(opacity=100);
    opacity: 1;
    -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=100)';
  }
  to {
    -webkit-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
    filter: alpha(opacity=0);
    opacity: 0;
    -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=0)';
  }
}

@keyframes home-arrow-down {
  from {
    -webkit-transform: translate3d(0, 0px, 0);
    transform: translate3d(0, 0px, 0);
    filter: alpha(opacity=0);
    opacity: 0;
    -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=0)';
  }
  10% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
    filter: alpha(opacity=100);
    opacity: 1;
    -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=100)';
  }
  to {
    -webkit-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
    filter: alpha(opacity=0);
    opacity: 0;
    -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=0)';
  }
}

/*
* ----------------------------------------------------------------------------------------
* 03.HOMEPAGE CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.welcome-area {
  /* height: 100%; */
}

.welcome-image-area {
  position: relative;
  height: 100%;
  background: url(../images/bg/bg.jpg) no-repeat center center;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  z-index: 1;
}

.welcome-image-area:after {
  position: absolute;
  background: -webkit-linear-gradient(
    top,
    transparent 0,
    rgba(16, 16, 16, 0.99) 100%
  );
  background: linear-gradient(
    to bottom,
    transparent 0,
    rgba(16, 16, 16, 0.99) 100%
  );
  filter: unicode(
    "progid: DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#fc101010', GradientType=0)"
  );
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: '';
  z-index: -1;
}

.display-table {
  display: table;
  width: 100%;
  height: 100%;
}

.display-table-cell {
  display: table-cell;
  vertical-align: middle;
}

.header-text {
  margin-top: 60px;
}

.header-text h1 {
  color: #fff;
  font-size: 70px;
  margin-top: 10px;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 2px;
}

.header-top-area {
  position: fixed;
  background: white;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 999;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}

#logos img {
  height: 120px;
  padding: 20px;
  width: auto !important;
}

.logo {
  padding-top: 15px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.logo a img {
  width: 300px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.mainmenu .navbar-nav li {
  margin-right: 30px;
}

.mainmenu .navbar-nav li a {
  text-transform: uppercase;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-right: 0;
  padding-left: 0;
  color: #0a67ce;
  display: block;
  font-size: 14px;
  font-weight: 400;
}

.mainmenu .navbar-nav li a:hover {
  background: none;
  color: #0a67ce;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.nav li a:focus,
.nav li a:hover {
  background: none;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.navbar {
  margin: 0;
}

.menu-bg {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: black;
  box-shadow: 0 2px 10px -1px rgba(87, 97, 100, 0.35);
  background: white;
  border: none;
}

.menu-bg .logo {
  padding-top: 21px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.menu-bg .logo a img {
  width: 150px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.menu-bg .mainmenu .navbar-nav li a {
  color: #0a67ce;
  padding-top: 22px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 13px;
  padding-bottom: 22px;
}

.menu-bg .mainmenu .navbar-nav li a:hover {
  color: #0a67ce;
}

/*
* ----------------------------------------------------------------------------------------
* 04.ABOUT CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.about-us-area {
}

.single-straty {
  margin-bottom: 40px;
}

.single-straty i {
  color: #0a67ce;
  font-size: 30px;
}

.single-straty h2 {
  font-size: 20px;
  margin-bottom: 20px;
  text-transform: capitalize;
  font-weight: 600;
  color: #000;
  margin-top: 20px;
}

/*
* ----------------------------------------------------------------------------------------
* 05.SERVICE CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.service-area {
  background: white;
  padding-top: 60px;
  padding-bottom: 10px;
}

.single-service {
  margin-bottom: 50px;
}

.single-service h4 {
  font-size: 20px;
  margin-bottom: 20px;
  text-transform: capitalize;
  font-weight: 600;
  color: black;
  margin-top: 0;
}

.service-icon {
  float: left;
  margin-right: 20px;
  margin-bottom: 100px;
}

.service-icon i {
  font-size: 40px;
  color: #0a67ce;
}

.single-service p {
  margin-bottom: 0;
  color: black;
}

/*
* ----------------------------------------------------------------------------------------
* 06.CALL TO ACTION CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.call-to-area {
  /* background: url(../images/bg/contact.jpg); */
  background-size: cover;
  padding: 160px 0px;
  position: relative;
  z-index: 1;
}

.call-to-area:after {
  position: absolute;
  background: rgba(0, 0, 0, 0.8);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: '';
  z-index: -1;
}

.call-to-area-text h2 {
  color: #fff;
  font-size: 40px;
  text-transform: capitalize;
  font-weight: 400;
}

.call-to-area-text p {
  text-transform: capitalize;
  color: #fff;
  margin-bottom: 30px;
}

.call-to-area-text a {
  display: inline-block;
  color: #fff;
  text-transform: uppercase;
  border: 1px solid #0a67ce;
  background-color: #0a67ce;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 12px 20px;
  margin: 0px 10px;
}

.call-to-area-text a:hover {
  background: #900000;
  border: 1px solid #900000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/*
* ----------------------------------------------------------------------------------------
* 07.WORK CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.work {
  background: white;
}

.work-inner .mix {
  display: none;
}

ul.work {
  padding: 0;
  list-style: none;
  text-align: center;
  margin-bottom: 30px;
}

ul.work li {
  display: inline-block;
  padding: 5px 10px;
  margin: 0 10px;
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 300;
  color: #0a67ce;
  border: 1px solid transparent;
  cursor: pointer;
  border-radius: 30px;
}

ul.work li:hover {
  border: 1px solid #0a67ce;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

ul.work li.active {
  border: 1px solid #0a67ce;
}

.work .item {
  padding: 0;
  margin: 0;
}

.work .col-md-4 {
  padding: 0;
  margin: 0;
}

.work figure.effect-ruby img {
  height: auto;
  width: 100%;
}

.work .grid figure {
  position: relative;
  float: left;
  overflow: hidden;
  width: 100%;
  height: auto;
  text-align: center;
  cursor: pointer;
  padding: 0;
  margin: 0;
}

.work .grid figure:hover {
  background: #000;
}

.work figure.effect-ruby h2 {
  margin-top: 20%;
  opacity: 0;
  -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=0)';
  font-size: 24px;
  text-transform: capitalize;
  font-weight: 600;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: inline-block;
  color: #0a67ce;
}

.work figure.effect-ruby p {
  font-size: 16px;
  text-transform: capitalize;
  border: none;
  padding: 0;
  margin: 5px 0px;
  color: #fff;
}

.work figure.effect-ruby p strong {
  font-size: 16px;
  text-transform: uppercase;
  margin-right: 5px;
}

.work .item:hover figure.effect-ruby h2 {
  opacity: 1;
  -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=100)';
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/*
* ----------------------------------------------------------------------------------------
* 08.COMPLETE PROJECT CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.complete-project-area {
  padding: 80px 0px;
}

.single-project-complete {
  text-align: center;
}

.single-project-complete i {
  color: #0a67ce;
  font-size: 20px;
}

.single-project-complete h2 {
  font-size: 40px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

.single-project-complete h6 {
  font-size: 18px;
  margin-top: 20px;
  text-transform: capitalize;
  font-weight: 600;
  margin: 0;
}

/*
* ----------------------------------------------------------------------------------------
* 09.TESTIMONIAL CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.testimonial-area {
  background: url(../images/bg/testimonial.jpg);
  background-size: cover;
  position: relative;
  z-index: 1;
}

.testimonial-area:after {
  position: absolute;
  background: rgba(0, 0, 0, 0.8);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: '';
  z-index: -1;
}

.testimonial-list {
  margin-top: 30px;
}

.single-testimonial img {
  width: 60px;
  border-radius: 50%;
  text-align: center;
  margin: 0 auto;
}

.single-testimonial {
  margin-right: 30px;
  text-align: center;
}

.single-testimonial h6 {
  margin-top: 0px;
  font-size: 12px;
  text-transform: capitalize;
  letter-spacing: 3px;
}

.single-testimonial p {
  font-size: 16px;
  font-weight: 300;
  color: #fafafa;
  margin-bottom: 30px;
}

.testi-name {
  text-align: center;
}

.testi-name h2 {
  font-size: 18px;
  margin-top: 20px;
  text-transform: capitalize;
  font-weight: 600;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #fff;
}

.testi-name h3 {
  font-size: 16px;
  font-weight: 300;
  text-transform: capitalize;
  margin-top: 0;
  color: #fafafa;
}

.owl-theme .owl-controls .owl-page span {
  display: block;
  width: 5px;
  height: 5px;
  margin: 5px 7px;
  border-radius: 20px;
  background: #0a67ce;
}

/*
* ----------------------------------------------------------------------------------------
* 10.TEAM CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.team-area {
}

.team-image {
  position: relative;
  margin-top: 30px;
}

.team-description {
  padding: 20px 30px;
  position: absolute;
  left: auto;
  opacity: 0;
  -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=0)';
  bottom: -90px;
  width: 100%;
  text-align: center;
  display: block;
}

.team-image img {
  width: 100%;
}

.single-team:hover .team-description,
.single-team:hover {
  opacity: 1;
  -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=100)';
}

.single-team:hover .team-description {
  bottom: 0px;
}

.team-description h4 {
  font-size: 20px;
  margin-bottom: 20px;
  text-transform: capitalize;
  font-weight: 600;
  color: #fff;
  margin-top: 0;
}

.team-description h3 {
  font-size: 16px;
  margin-bottom: 30px;
  text-transform: capitalize;
  font-weight: 500;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #fff;
}

.team-description p {
  color: #fff;
}

.single-team,
.team-description {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  overflow: hidden;
}

.team-social {
}

.team-social ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.team-social ul li {
  display: inline-block;
  margin: 0px 5px;
}

.team-social ul li a {
  font-size: 14px;
  color: #fafafa;
}

/*
* ----------------------------------------------------------------------------------------
* 11.CONTACT CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.contact-area {
  background: white;
  /* background: url(../images/bg/contact.jpg); */
  /* background-size: cover; */
  position: relative;
  z-index: 1;
  background-attachment: fixed;
}

.contact-area:after {
  position: absolute;
  background: white;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: '';
  z-index: -1;
}

.contact-details-list p {
  margin-bottom: 30px;
  color: black;
}

.single-contact {
  margin-bottom: 22px;
}

.single-contact h3 {
  font-size: 18px;
  margin-top: 20px;
  /* text-transform: capitalize; */
  font-weight: 400;
  color: #0a67ce;
}

.single-contact h3 i {
  margin-right: 20px;
  color: #0a67ce;
}

.form-control {
  display: block;
  border: 0px;
  width: 100%;
  height: 45px;
  padding: 5px 10px;
  font-size: 16px;
  line-height: 1.42857143;
  color: #333;
  background-color: #f7f7f7;
  background-image: none;
  border-radius: 0px;
  box-shadow: none;
  margin-bottom: 15px;
}

.form-control:focus {
  border-color: #000;
  outline: 0;
  box-shadow: none;
}

.contact-form button.btn {
  display: inline-block;
  color: #fff;
  background: none;
  padding: 15px 25px;
  border: 1px solid #0a67ce;
  font-size: 14px;
  border-radius: 0px;
  font-weight: 300;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: #0a67ce;
  text-transform: capitalize;
  border-radius: 30px;
  margin-left: 12px;
}

.contact-form button.btn:hover {
  background: transparent;
  border: 1px solid #0a67ce;
  color: #fff;
  -webkit-transition: all 0.4s;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.input-success,
.input-error {
  margin-bottom: 0;
  margin-top: 10px;
  border-radius: 4px;
  display: none;
}

.input-success {
  border: 1px solid #01b500;
}

.input-error {
  border: 1px solid #ff0000;
}

/*
* ----------------------------------------------------------------------------------------
* 12.MAP CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.gmap {
  height: 500px;
  width: 100%;
}

/*
* ----------------------------------------------------------------------------------------
* 13.FOOTER CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.footer-area {
  background: #000;
  padding: 60px 0px;
}

.single-footer h2 {
  font-size: 20px;
  margin-bottom: 20px;
  text-transform: capitalize;
  font-weight: 600;
  color: #fff;
  margin-top: 20px;
}

.single-footer p {
  color: #fafafa;
}

.single-footer h6 {
  color: #fafafa;
  margin-top: 30px;
}

.footer-socail ul {
  padding: 0;
  margin: 0;
  list-style: none '';
}

.footer-socail ul li {
  margin-right: 20px;
  display: inline-block;
}

.footer-socail ul li a {
  font-size: 30px;
  color: #0a67ce;
}

.newsletter .btn {
  background: #0a67ce;
  color: #fff;
  border-radius: 0;
}
