/*---------------------------------------------------------------

  Project Name: Alfie - Responsive Onepage HTML Template
  File Name: style.css
  Author: Vivek Singh Bisht
  Author URI: http://themesity.com
  Version: 1.0.0

------------------------------------------------------------------*/
/*----------------------------------------------------------------

// Table of contents //

  - Body
  - Typography
  - Buttons
  - General
  - Preloader
  - Hero section
  - About section
  - Service section
  - Project section
  - Team section
  - Testimonial section
  - Price section
  - Blog section
  - Contact section
  - Footer section
  - Mobile Responsive styles

------------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css?family=Lato:100,300,400,400i,700,900|Oswald:300,400,700');


body {
    background: #ffffff;
    font-family: "Open Sans",sans-serif;
    font-style: normal;
    font-weight: 400;
    overflow-x: hidden;
    line-height: 1.2;
}

/*---------------------------------------
   Typorgraphy              
-----------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Oswald', sans-serif;
  font-weight: normal;
  color: #232332;
  margin-top: 0px;
  font-style: normal;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a { 
    color: inherit;
}
h1 {
    font-size: 40px;
    font-weight: 500;
}
h2 {
    font-size: 35px;
}
h3 {
    font-size: 28px;
}
h4 {
    font-size: 22px;
}
h5 {
    font-size: 18px;
}
h6 {
    font-size: 16px;
}
ul {
    margin: 0px;
    padding: 0px;
}
li { list-style: none }
p {
    color: #626262;
}
/*---------------------------------------
   Buttons               
-----------------------------------------*/
.btn-medium {
  border: 1px solid #e5e5e5;
  color: #fff;
  display: inline-block;
  font-size: 11px;
  height: 45px;
  letter-spacing: 2px;
  line-height: 45px;
  padding: 0 30px;
  text-transform: uppercase;
}
.btn-medium:hover {
  border: 1px solid #555;
  color: #555;
} 
.btn-white:hover{
  background-color: #fff;
}
.fill{
  color: #000;
}
/*---------------------------------------
   General               
-----------------------------------------*/

html{
  -webkit-font-smoothing: antialiased;
}

a {
  color: #029aa2;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  text-decoration: none !important;
}

a:hover, a:active, a:focus {
  color: #f06966;
  outline: none;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.white{
    color: #fff !important;
}
.bg-gray {
    background-color: #f6f6f6;
}
.bg-dark{
    background-color: #222328;
}
.pb80{
    padding-bottom: 80px
}
.pt80{
    padding-top: 80px
}
.mb25{
    margin-bottom: 25px;
}
.mb70 {
    margin-bottom: 72px;
}
.mb20 {
    margin-bottom: 20px;
}
.mt10{
  margin-top: 10px;
}
.mt20{
  margin-top: 20px
}
.mt30{
  margin-top: 30px;
}
.area-title {
  display: inline-block;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 35px;
  margin-bottom: 15px;
  position: relative;
}
.area-heading-style-two {
  margin: 0 auto 70px;
  width: 60%;
}
.area-heading-style-two .area-title {
  margin-bottom: 45px;
}
.area-heading-style-two .area-title::before {
  background: #232323 none repeat scroll 0 0;
  bottom: -20px;
  content: "";
  height: 1px;
  left: 50%;
  position: absolute;
  top: auto;
  transform: translateY(0px) translateX(-50%);
  width: 70px;
}
.area-heading.area-heading-style-two p {
  display: block;
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 25px;
  margin: 0;
  text-transform: none;
}
i{
  color: #333;
}
/*---------------------------------------
  Preloader          
-----------------------------------------*/
.page-loader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 99999;
    overflow: hidden;
    background-color: #fff;
}
.loader {
    height: 14px;
    left: 50%;
    margin: auto;
    position: absolute;
    top: 50%;
    width: 80px;
}
.dot {
    display: inline-block;
    width: 9px;
    height: 9px;
    border-radius: 100%!important;
    background: #1B1D1F;
    position: absolute;
}
.dot_1 {
    animation: animateDot1 1.5s linear infinite;
    left: 16px;
    background: #ff072a;
}
.dot_2 {
    animation: animateDot2 1.5s linear infinite;
    animation-delay: 0.5s;
    left: 28px;
}
.dot_3 {
    animation: animateDot3 1.5s linear infinite;
    left: 16px;
}
.dot_4 {
    animation: animateDot4 1.5s linear infinite;
    animation-delay: 0.5s;
    left: 28px;
}
@keyframes animateDot1 {
0% {
transform: rotate(0deg) translateX(-12px);
}
25% {
transform: rotate(180deg) translateX(-12px);
}
75% {
transform: rotate(180deg) translateX(-12px);
}
100% {
transform: rotate(360deg) translateX(-12px);
}
}
@keyframes animateDot2 {
0% {
transform: rotate(0deg) translateX(-12px);
}
25% {
transform: rotate(-180deg) translateX(-12px);
}
75% {
transform: rotate(-180deg) translateX(-12px);
}
100% {
transform: rotate(-360deg) translateX(-12px);
}
}
@keyframes animateDot3 {
0% {
transform: rotate(0deg) translateX(12px);
}
25% {
transform: rotate(180deg) translateX(12px);
}
75% {
transform: rotate(180deg) translateX(12px);
}
100% {
transform: rotate(360deg) translateX(12px);
}
}
@keyframes animateDot4 {
0% {
transform: rotate(0deg) translateX(12px);
}
25% {
transform: rotate(-180deg) translateX(12px);
}
75% {
transform: rotate(-180deg) translateX(12px);
}
100% {
transform: rotate(-360deg) translateX(12px);
}
}
/*---------------------------------------
    Hero section          
-----------------------------------------*/
.hero_full_screen {
  height: 100vh;
  min-height: 500px;
}
.hero_parallax {
  position: relative;
  display: table;
  width: 100%;
}
.bg-overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  background-color: rgb(34, 34, 34);
}
.opacity-6 {
  opacity: 0.6 !important;
}
.hero_parallax_inner {
  display: table-cell;
  vertical-align: middle;
  position: relative;
}
.parallax-window{
  background: url('../img/background/bg1.jpg') no-repeat fixed;
  background-size: cover;
}
.mouse {
  width: 25px;
  height: 45px;
  border: 1px solid #fff;
  position: absolute;
  bottom: 40px;
  left: 50%;
  margin-left: -12.5px;
  border-radius: 12px;
}
@-webkit-keyframes rotateplane {
  0%   {top:10px;}
  25%  {top:14px;}
  50%  {top:19px;}
  75%  {top:24px;}
  100% {top:28px;}
}
@-moz-keyframes rotateplane {
  0%   {top:10px;}
  25%  {top:14px;}
  50%  {top:19px;}
  75%  {top:24px;}
  100% {top:28px;}
}
@-o-keyframes rotateplane {
  0%   {top:10px;}
  25%  {top:14px;}
  50%  {top:19px;}
  75%  {top:24px;}
  100% {top:28px;}
}
.mouse::after {
  content: "";
  position: absolute;
  height: 5px;
  width: 5px;
  background-color: #fff;
  border-radius: 100%;
  left: 50%;
  top:10px;
  margin-left: -2.5px;
  transition:all 0.3s ease-in;
  -webkit-animation-name: rotateplane; /* Chrome, Safari, Opera */
  -webkit-animation-duration: 2s; /* Chrome, Safari, Opera */
  animation-name: rotateplane;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}
/*---------------------------------------
    About section         
-----------------------------------------*/
.about-single h5 {
  margin-top: 40px;
  margin-bottom: 24px;
}

.about-icon-wrap {
  width: 70px;
  height: 70px;
  line-height: 70px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.about-icon-wrap .fa {
  font-size: 24px;
}
/*---------------------------------------
  Service section        
-----------------------------------------*/
#services-section {
    position: relative;
    z-index: 2;
}
#services-section h1 {
    text-align: center;
    margin-top: -30px;
    margin-bottom: 86px;
}
#services-section h1 span {
    display: inline-block;
    color: #fff;
    font-size: 31px;
    font-family: 'HelveticaBd';
    text-transform: uppercase;
    padding: 10px 70px 15px;
    background: #1ab3bd;
    border-radius: 9px;
    -webkit-border-radius: 9px;
    -moz-border-radius: 9px;
    -o-border-radius: 9px;
}
.services-box2 .row {
    margin-bottom: 35px;
}
.services-box2 .services-post {
    margin-bottom: 35px;
}
.services-box2 .services-post > a {
    float: left;
    width: 65px;
    height: 65px;
    margin: 0;
    -webkit-backface-visibility: hidden;
    text-align: center;
}
.services-box2 .services-post:hover > a {
  background: #30424c;
}
.services-box2 .services-post:hover > a i{
  color: #fff;
}
.services-box2 .services-post > a i {
    font-size: 28px;
    line-height: 65px;
}
.services-box2 .services-post .services-post-content {
    margin-left: 85px;
}
.services-post-content h4 a {
    color: #2e2e2e;
    text-decoration: none;
}
.services-post-content h4 a:hover {
    color: #1ab3bd;
}
.services-post > a i {
    font-size: 24px;
    color: #000;
    display: inline-block;
    height: 100%;
    width: 100%;
    line-height: 36px;
    -webkit-backface-visibility: hidden;
}
/*---------------------------------------
    Project section    
-----------------------------------------*/
.filter
{
    color: #fff;
    padding: 15px 30px;
    border-right: 1px solid #fff;
    display: inline-block;
    position: relative;
}
.fil-btn .active
{
    background-color: #e43c5c;
}
#grid .mix{
    display: none;
}
.aisle-work ul {
    list-style: outside none none;
    margin-bottom: 40px;
    text-align: center;
}
.aisle-work ul li {
    color: #999;
    margin: 5px;
    cursor: pointer;
    font-size: 11px;
    padding: 10px 20px;
    display: inline-block;
    border: 2px solid #fff;
    text-transform: uppercase;
    -webkit-transition: all 0.36s;
            transition: all 0.36s;
}
.aisle-work ul li.active,
.aisle-work ul li:hover { color:#000; }
.grid .mix {
    display: none;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}
.image-wrapper {
    position: relative;
    overflow: hidden;
    -webkit-transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55) 0s;
            transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55) 0s;
}
.image-wrapper img {
    height: auto;
    width: 100% !important;
}
.image-overlay {
    background: rgba(36, 195, 248, 0.6) none repeat scroll 0 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    text-align: center;
    position: absolute;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transform: scale(0);
            transform: scale(0);
    -webkit-transition: all 0.36s ease-out 0s;
            transition: all 0.36s ease-out 0s;
}
.image-wrapper:hover .image-overlay {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
.image-overlay i {
    background: rgba(255, 255, 255, 0.6) none repeat scroll 0 0;
    height: 50px;
    width: 50px;
    color: #fff;
    font-size: 20px;
    margin-top: 60px;
    line-height: 50px;
    text-align: center;
    border-radius: 30px;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    -webkit-transition: all 0.36s ease-out 0s;
            transition: all 0.36s ease-out 0s;
}
.image-overlay i:hover {
    background: #fff none repeat scroll 0 0;
    color: #3ac4fa;
}
.image-wrapper:hover i {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
}
.image-overlay h5 {
    color: #fff;
    margin: 15px 0 5px;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55) 0s;
            transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55) 0s;
}
.image-wrapper:hover .image-overlay h5 {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
}
.image-overlay p {
    color: #fff;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55) 0s;
            transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55) 0s;
}
.image-wrapper:hover .image-overlay p {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
}
.aisle-work > div{
    padding: 1px;
}
/*---------------------------------------
  Team section   
-----------------------------------------*/
.single-team {
  margin-top: 30px;
}
.single-team img {
  width: 100%;
}
.single-team h4 {
  margin: 0;
  font-size: 14px;
  text-transform: uppercase;
}
.team-description {
  margin-top: 15px;
}
.team-social ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.team-social ul li {
  display: inline-block;
  margin-right: 5px;
}
.team-social ul li a {
  display: block;
  color: #fff;
  font-size: 16px;
  background: #000;
  height: 30px;
  width: 30px;
  text-align: center;
  line-height: 30px;
  padding-left: 1px;
  border: 1px solid #333;
}
.team-social ul li a i{
  color: #fff;
}
.team-social ul li a:hover i{
  color: #333;
}
.team-social ul li a:hover {
  border: 1px solid #333;
  background: transparent;
}
/*---------------------------------------
  Testimonial section    
-----------------------------------------*/
#clients {
    text-align: center;
}
#clients .item{
    display: block;
    width: 100%;
    height: auto;
}
.clients-content p {
    max-width: 600px;
    color: #777;
    padding: 0 15px;
    margin: auto;
}
.clients-content h5 {
    margin: 10px 10px 20px;
}
.clients-content h5 span {
    color: #777;
}
.client-photo{
    margin: 10px 0px 30px;
}
.client-photo img {
    margin: 25px auto 0;
    border-radius: 5px;
    display: inline-block;
}
.owl-controls .owl-buttons{
    display: none;
}

/*---------------------------------------
  Price section 
-----------------------------------------*/
.single_pricing {
    box-shadow: 0px 2px 40px 0px rgba(0, 0, 0, 0.08);
    -webkit-transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55) 0s;
      transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55) 0s;
}
.single_pricing h3 {
    font-size: 20px;
    padding: 30px 0 20px;
}
.price {
    padding: 25px 0;
    background: #e9e9e9;
    -webkit-transition: all 0.6s ease 0s;
      transition: all 0.6s ease 0s;
}
.price h4 { font-size: 52px }
.price h4 sub { font-size: 18px }
.price span { font-size: 14px }
.pricing-list {
    list-style: outside none none;
    text-align: center;
    padding: 0 25px;
}
.pricing-list li {
    border-bottom: 1px solid #eee;
    color: #161616;
    padding: 15px 0;
    -webkit-transition: all 0.36s ease 0s;
      transition: all 0.36s ease 0s;
}
.pricing-btn { padding: 25px 0 }
.single_pricing.recommended,
.single_pricing:hover {
    -webkit-transform: scale(1.05);
      transform: scale(1.05);
}
.single_pricing.recommended .price,
.single_pricing:hover .price { background: #fff }
.single_pricing.recommended .price h4,
.single_pricing:hover .price h4 { color: #444 }
/*---------------------------------------
  Blog section
-----------------------------------------*/
.post-creator {
 letter-spacing: 1px;
  color: #7e7e7e;
   font-size: 11px;
}
.blog-pst p{
  padding-top:11px;
    margin: 0px;
}
.blog-pst-img img { 
  max-width: 100%;
}
.blog-pst:hover img {
  -ms-transform: scale(1.03,1.03);
  -webkit-transform: scale(1.03,1.03);
  transform: scale(1.03,1.03) rotate(0.7deg);
    transition: all .3s ease;
    -webkit-transition: all .3s ease; -moz-transition: all .3s ease;}
.blog-pst img {
  transition: all .3s ease;
  -webkit-transition: all .3s ease; 
  -moz-transition: all .3s ease; 
  opacity:1}
.blog-pst-img { 
  width:auto; 
  overflow:hidden;
}
.post-title { 
  font-size: 16px; 
  letter-spacing: 1.7px; 
  font-weight: 600; 
  text-transform: uppercase; 
  display: block; 
  margin-top: 40px; 
  color: #000;
}
.margin-top-5 {
  margin-top: 5% !important;
  margin-bottom: 0px !important;
}
/*---------------------------------------
  Contact section
-----------------------------------------*/
.single-contact-details {
  margin-top: 30px;
  margin-bottom: 40px;
}
.single-contact-details h4 {
  margin-top: 20px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
}
.single-contact-details span {
  font-size: 30px;
  color: #000;
}
.form-control {
  display: block;
  border: 0px;
  width: 100%;
  height: 45px;
  padding: 5px 10px;
  font-size: 16px;
  line-height: 1.42857143;
  color: #333;
  background-color: #f6f6f6;
  background-image: none;
  border-radius: 0px;
  box-shadow: none;
  margin-bottom: 25px;
}
.form-control:focus {
  border-color: #000;
  outline: 0;
  box-shadow: none;
}
.success {
  background: #50B948;
  color: #fff;
  font-weight: 700;
  padding: 20px;
  text-align: center;
}
/*---------------------------------------
  Footer section
-----------------------------------------*/
.footer .footer-widget-section {
  background-color: #1a1c27;
  padding: 50px 0;
}
.footer .footer-logo {
  margin-bottom: 15px;
  margin-right: 0;
  float: none;
  width: auto;
}
.footer .newsletter-subscribe {
  margin-bottom: 30px;
}
.footer-input.form-control {
  height: 52px;
  font-size: 14px;
  line-height: 24px;
  box-shadow: none;
  padding: 15px 20px;
  border-width: 0;
  border-style: solid;
  border-color: rgb(241, 241, 241);
  border-image: initial;
  border-radius: 0px;
  background: #F1F1F1;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}
.input-group-btn:last-child>.btn, .input-group-btn:last-child>.btn-group {
  z-index: 2;
  margin-left: 0;
}
.footer-btn {
  background: #029aa2;
  padding: 15px 20px;
  color: #fff;
}
.footer-btn:hover {
  background: #fff;
  color: #029aa2;
}
.footer .newsletter-subscribe h3 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: -10px;
}
#mc-form .label-text.error {
  color: #ff6b6b!important;
}
#mc-form .label-text.valid {
  color: #38e436!important;
}
.footer .copyright-section {
  background-color: #16171e;
  padding: 18px 0;
}
.footer .copyright-section .copytext {
  font-weight: 600;
  text-transform: uppercase;
}
.footer .social-links li a {
  display: block;
  font-size: 20px;
  color: #4a4a4a;
  width: 32px;
  height: 32px;
}
.footer .social-links li a:hover {
  color: #ff5722;
}
.copytext {
  font-size: 13px;
}
/*---------------------------------------
  Mobile Responsive styles
-----------------------------------------*/
@media all and (max-width:767px){
  .about-single, .count-cont, .single_pricing, .blog-pst{
    margin-bottom: 30px;
  }
  .single-contact-details, .count-cont{
    text-align: center;
  }
}
@media all and (max-width:800px){
  .section-heading, .single_pricing{
    margin-top: 30px;
  }
}