/**
* @template:  Beone.

	Version : 1.0
	Author: Hisham007

TABLE OF CONTENTS

	* Global
		+ Navbar
		+ Header
		+ Hero
		+ Bloks
		+ We-do
		+ Services Tabs
		+ Numbers
		+ Portfolio
		+ Team
		+ Clients
		+ Blog
			- blog page
		+ Subscribe
		+ Price
		+ Contact
		+ Footer
		+ Responsive
		
		
*/
@import url(main.css);
/* -------------------------------------------------------
                     Global 
-------------------------------------------------------- */
body {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #232323;
}

h1, h2 {
  font-family: 'Raleway', sans-serif;
}

p {
  font-size: 15px;
  color: #7e7e7e;
  line-height: 30px;
  font-family: 'Source Sans Pro', sans-serif;
}

.ptop {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  letter-spacing: 1px;
}

.ctit {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
}

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

.section-bord {
  border-bottom: 1px solid #f4f4f4;
}

.head {
  margin-bottom: 80px;
  text-align: center;
}
.head .ctit {
  margin-bottom: 12px;
  letter-spacing: 4px;
  font-size: 11px;
  color: #bfa67a;
}
.head h4 {
  font-weight: 300;
  font-size: 28px;
  color: #444;
  letter-spacing: 1px;
}

.owl-theme .owl-dots .owl-dot span {
  width: 30px;
  height: 2px;
  border-radius: 0;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #bfa67a;
}

.button {
  display: inline-block;
  padding: 10px 30px;
  font-size: 16px;
  margin: 0 5px;
}

.btn-bord {
  border: 1px solid #fff;
  background: transparent;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.btn-bg {
  color: #eee;
  border: 1px solid #bfa67a;
  background: #bfa67a;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.btn-bg:hover {
  background: transparent;
  border-color: #eee;
}

.btn-bord:hover {
  color: #bfa67a;
  border-color: #bfa67a;
}

.loading {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999999;
}
.loading .circle {
  width: 60px;
  height: 60px;
  margin-left: calc(50% - 30px);
  border-radius: 50%;
  border: 2px solid #eee;
  border-top-color: #bfa67a;
  -webkit-animation: rotate linear 1s infinite;
  animation: rotate linear 1s infinite;
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/* -------------------------------------------------------
                     Navbar 
-------------------------------------------------------- */
.navbar-custom {
  padding: 20px 0 30px;
  background: none;
  border: none;
  border-radius: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
}
.navbar-custom {
  background-color: #000000;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

/* Styl po scrollu */
.navbar-custom.nav-scroll {
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* opcjonalny cień */
}
/* Icon colors and navbar icon images on scroll */
.navbar-custom .nav-icon {
  filter: none;
  transition: filter 0.3s ease;
}
.navbar-custom.nav-scroll .nav-icon {
  /* For white PNG/SVG icons, invert and darken to make them appear black on white background */
  filter: invert(1) grayscale(100%) brightness(0.1);
}

/* Generic icon color switching (font icons, text icons) */
.navbar-custom i,
.navbar-custom .fa,
.navbar-custom .icon,
.navbar-custom .dynamic-color {
  color: #ffffff;
}
.navbar-custom.nav-scroll i,
.navbar-custom.nav-scroll .fa,
.navbar-custom.nav-scroll .icon,
.navbar-custom.nav-scroll .dynamic-color {
  color: #000000;
}

/* SVG icon paths fill/stroke switching */
.navbar-custom svg,
.navbar-custom svg path,
.navbar-custom svg use {
  fill: #ffffff;
  stroke: #ffffff;
  transition: fill 0.3s ease, stroke 0.3s ease;
}
.navbar-custom.nav-scroll svg,
.navbar-custom.nav-scroll svg path,
.navbar-custom.nav-scroll svg use {
  fill: #000000;
  stroke: #000000;
}
.navbar-custom .logo {
  width: 100px;
  float: left;
  padding-top: 15px;
}
.navbar-custom .navbar-nav > li > a {
  margin: 0 !important;
  color: #eee;
  padding: 0 !important;
  padding-bottom: 30px !important;
}
.navbar-custom .navbar-nav > li > a:hover, .navbar-custom .navbar-nav > li > a:focus {
  background: transparent;
}
.navbar-custom .navbar-nav > li > a:hover {
  color: #bfa67a;
}
.navbar-custom .navbar-nav > li {
  font-size: 14px;
  margin: 25px 15px 0;
  padding: 5 10px;
  background: none;
  cursor: pointer;
  position: relative;
}
.navbar-custom .navbar-nav > li .active {
  color: #bfa67a !important;
}

.nav-scroll {
  background: #fff;
  -webkit-box-shadow: 0px 0px 10px #f1f1f1;
          box-shadow: 0px 0px 10px #f1f1f1;
  min-height: 60px;
  padding: 0 !important;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transition: all .5s;
  transition: all .5s;
}
.nav-scroll .logo span {
  display: none;
}
.nav-scroll .navbar-nav > li > a {
  color: #111 !important;
  padding-bottom: 20px !important;
}

.nav .open > a, .nav .open > a:focus, .nav .open > a:hover {
  background: transparent;
  border: 0;
}

.nav .dropdown .dropdown-menu {
  left: -10px;
  top: 40px;
  padding: 0;
  border-radius: 0;
  background: #fff;
  border: 1px solid #f7f7f7;
  border-left: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.nav .dropdown .dropdown-menu li a {
  font-size: 13px;
  color: #000;
  padding: 10px 10px 10px 15px;
  border-left: 4px solid transparent;
  -webkit-transition: padding .5s;
  transition: padding .5s;
}
.nav .dropdown .dropdown-menu li a:hover {
  border-color: #bfa67a;
  background: transparent;
  padding-left: 25px;
}
.nav .dropdown .dropdown-menu li a:focus {
  background: transparent;
}

/* -------------------------------------------------------
                     Header 
-------------------------------------------------------- */
.header {
  height: 100vh;
  background-size: cover;
  position: relative;
  overflow: hidden;
}
.header .caption {
  margin-top: 50px;
  color: #fff;
}
.header .caption h1 {
  margin: 30px auto;
  font-weight: 100;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.header .caption h1 span {
  font-weight: 600;
}
.header .caption h6 {
  letter-spacing: 8px;
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 50px;
}
.header .overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
}
.header .owl-theme .owl-nav [class*=owl-] {
  background: rgba(0, 0, 0, 0.2);
  padding: 30px 10px;
  position: absolute;
  top: calc(50% - 30px);
  border-radius: 0;
  display: none;
}
.header .owl-theme .owl-nav .owl-prev {
  left: -4px;
}
.header .owl-theme .owl-nav .owl-next {
  right: -4px;
}
.header:hover .owl-theme .owl-nav [class*=owl-] {
  display: block;
}

.demo1 {
  background-image: url(../img/bg1.jpg);
  background-attachment: fixed;
}
.demo1 .overlay {
  background: rgba(0, 0, 0, 0.5);
}

.demo2 {
  background-image: url(../img/bg2.jpg);
  background-attachment: fixed;
}
.demo2 .overlay {
  background: rgba(0, 0, 0, 0.2);
}
.demo2 .caption h1 {
  font-size: 60px;
}
.demo2 .caption .play-icon {
  width: 60px;
  height: 60px;
  line-height: 60px;
  border: 1px solid #fff;
  border-radius: 50%;
  font-size: 18px;
  margin-bottom: 15px;
  -webkit-transition: all .5s;
  transition: all .5s;
}
.demo2 .caption .play-icon:hover {
  color: #bfa67a;
  border-color: #bfa67a;
}

.demo3 {
  background-image: url(../img/bg3.jpg);
  background-attachment: fixed;
}
.demo3 .overlay {
  background: rgba(0, 0, 0, 0.5);
}

.sub-header {
  height: 70vh;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}
.sub-header .overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
}
.sub-header .caption {
  margin-top: 50px;
  color: #fff;
}
.sub-header .caption h1 {
  font-size: 50px;
  margin-bottom: 15px;
}

/* -------------------------------------------------------
                     Hero 
-------------------------------------------------------- */
.hero-blok {
  background: #111;
  color: #fff;
}
.hero-blok .blok-info {
  margin: 30px 0 0 0;
}
.hero-blok .blok-info h6 {
  font-size: 16px;
  margin-bottom: 10px;
}
.hero-blok .blok-info h5 {
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 30px;
}
.hero-blok .blok-info p {
  width: 90%;
  margin-bottom: 30px;
  color: #999;
}
.hero-blok .blok-info button {
  padding: 8px 28px;
  color: #fff;
  background: #bfa67a;
  border: 1px solid #bfa67a;
  -webkit-transition: all .5s;
  transition: all .5s;
}
.hero-blok .blok-info button:hover {
  background: transparent;
}
.hero-blok .blok-info .owl-theme .owl-nav {
  float: right;
  margin-top: 0;
}
.hero-blok .blok-info .owl-theme .owl-nav [class*=owl-] {
  background: transparent;
  border: 0;
  font-size: 20px;
  font-weight: 100 !important;
}

.hb-gray {
  background: #f2f4ec;
  color: #111;
}
.hb-gray .blok-info button:hover {
  color: #111;
}
.hb-gray .blok-info .owl-theme .owl-nav [class*=owl-] {
  color: #111;
}

.hero-v2 .item {
  text-align: center;
  padding: 0 20px;
}
.hero-v2 .item .icon {
  width: 80px;
  height: 80px;
  line-height: 75px;
  border-radius: 50%;
  font-size: 30px;
  background: #f2f4ec;
  border: 4px solid #f2f4ec;
  margin-bottom: 30px;
}
.hero-v2 .item .icon:hover {
  background: transparent;
}
.hero-v2 .item h6 {
  margin-bottom: 15px;
}

.hero-tab .content {
  text-align: center;
  margin-bottom: 100px;
  padding: 0 20px;
}
.hero-tab .content h6 {
  margin-bottom: 30px;
  font-weight: 700;
}
.hero-tab .content p {
  font-size: 16px;
}
.hero-tab .items {
  padding: 0;
}
.hero-tab .hero-tabs {
  padding: 30px 30px 0;
}
.hero-tab .hero-tabs ul {
  overflow: hidden;
  margin-bottom: 30px;
}
.hero-tab .hero-tabs ul li {
  display: inline-block;
  padding: 0 5px 15px;
  margin: 0 30px 0 0;
  cursor: pointer;
}
.hero-tab .hero-tabs ul li h6 {
  font-weight: 400;
  letter-spacing: 1px;
}
.hero-tab .hero-tabs ul .active {
  border-bottom: 1px solid #111;
}
.hero-tab .hero-tabs .tab-content .item {
  display: none;
}
.hero-tab .hero-tabs .tab-content .active {
  display: block;
}
.hero-tab .hero-tabs .tab-content p {
  margin-bottom: 15px;
}
.hero-tab .hero-tabs .tab-content button {
  margin-top: 15px;
  color: #777;
  border: 1px solid #eee;
  padding: 10px 30px;
  background: transparent;
  -webkit-transition: all .5s;
  transition: all .5s;
}
.hero-tab .hero-tabs .tab-content button:hover {
  background: #bfa67a;
  border-color: #bfa67a;
  color: #fff;
}

.ht-center ul {
  text-align: center;
}
.ht-center ul .icon {
  font-size: 40px;
  margin-bottom: 15px;
}
.ht-center ul li {
  margin: 0 30px !important;
}
.ht-center .active {
  border: 0 !important;
  color: #bfa67a;
}

.mp-hero {
  padding-bottom: 0;
}
.mp-hero .content {
  text-align: center;
  padding: 0px 100px;
}
.mp-hero .content h6 {
  margin-bottom: 15px;
  padding-bottom: 15px;
  font-size: 14px;
  position: relative;
}
.mp-hero .content h6:after {
  content: "";
  width: 30px;
  height: 2px;
  background: #555;
  position: absolute;
  bottom: 0;
  left: calc(50% - 15px);
}
.mp-hero .content .spe {
  margin-bottom: 30px;
  color: #444;
}
.mp-hero .content p {
  font-size: 16px;
  color: #777;
}
.mp-hero .content a {
  padding: 10px 30px;
  margin-top: 50px;
  border: 1px solid #ccc;
  -webkit-transition: all .5s;
  transition: all .5s;
}
.mp-hero .content a:hover {
  color: #fff;
  background: #bfa67a;
  border-color: #bfa67a;
}

/* -------------------------------------------------------
                     Bloks 
-------------------------------------------------------- */
.bloks .blok1-img {
  background-image: url(../img/2.jpg);
  background-size: cover;
  background-attachment: fixed;
  min-height: 550px;
}
.bloks .blok2-img {
  background-image: url(../img/3.jpg);
  background-size: cover;
  background-attachment: fixed;
  min-height: 550px;
}
.bloks .blok1-content {
  padding: 80px 80px 0;
  min-height: 550px;
  background: #111;
  color: #fff;
}
.bloks .blok1-content h5 {
  letter-spacing: 4px;
  margin-bottom: 10px;
  color: #bfa67a;
}
.bloks .blok1-content h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
}
.bloks .blok1-content p {
  color: #999;
}
.bloks .blok1-content .accordion {
  margin-top: 30px;
}
.bloks .blok1-content .accordion .item {
  margin-bottom: 20px;
}
.bloks .blok1-content .accordion .item .icon {
  float: left;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  background: #222;
  color: #bfa67a;
  margin-top: 10px;
}
.bloks .blok1-content .accordion .item:last-child {
  margin-bottom: 0;
}
.bloks .blok1-content .accordion .item .accordion-icon h6 {
  border-bottom: 1px solid #444;
  padding: 15px 0;
  margin-left: 60px;
  cursor: pointer;
}
.bloks .blok1-content .accordion .item .accordion-info {
  display: none;
  padding: 10px 0 0;
  margin-left: 60px;
}
.bloks .blok1-content .accordion .item .accordion-info.active {
  display: block;
}
.bloks .blok2-content {
  padding: 80px 80px 0;
  min-height: 550px;
  background: #111;
  color: #fff;
}
.bloks .blok2-content h5 {
  letter-spacing: 4px;
  margin-bottom: 10px;
  color: #bfa67a;
}
.bloks .blok2-content p {
  color: #999;
}
.bloks .blok2-content .skills {
  margin-top: 50px;
}
.bloks .blok2-content .skills .item {
  margin-bottom: 30px;
}
.bloks .blok2-content .skills .item .skills-progress {
  width: 80%;
  height: 2px;
  background: #222;
  font-size: 0;
  margin-top: 10px;
  position: relative;
}
.bloks .blok2-content .skills .item .skills-progress span {
  height: 100%;
  width: 0;
  background: #bfa67a;
  position: relative;
}
.bloks .blok2-content .skills .item .skills-progress span:after {
  content: attr(data-value);
  color: #fff;
  font-size: 14px;
  position: absolute;
  top: -22px;
  right: 0px;
}

.serv-bloks {
  background: #f2f4ec;
}
.serv-bloks .item {
  padding: 50px 30px;
  background: #fff;
  text-align: center;
  -webkit-box-shadow: 0px 0px 5px #eee;
          box-shadow: 0px 0px 5px #eee;
}
.serv-bloks .item .icon {
  font-size: 40px;
  color: #555;
  margin-bottom: 30px;
}
.serv-bloks .item h5 {
  margin-bottom: 30px;
  padding-bottom: 30px;
  position: relative;
  font-size: 18px;
  letter-spacing: 1px;
}
.serv-bloks .item h5:after {
  content: "";
  width: 50px;
  height: 1px;
  background: #bfa67a;
  position: absolute;
  bottom: 0;
  left: calc(50% - 25px);
}

/* -------------------------------------------------------
                     We-do 
-------------------------------------------------------- */
.we-do .item {
  padding: 0 5px;
}
.we-do .item .icon {
  float: left;
  font-size: 35px;
  color: #888;
}
.we-do .item .info {
  margin-left: 70px;
}
.we-do .item .info h5 {
  margin-bottom: 10px;
  padding-bottom: 15px;
  position: relative;
}
.we-do .item .info h5:after {
  content: "";
  width: 30px;
  height: 2px;
  background: #bfa67a;
  position: absolute;
  left: 0;
  bottom: 0;
}

.mp-process {
  background-image: url(../img/1.jpg);
  background-size: cover;
  background-attachment: fixed;
  color: #fff;
  text-align: center;
  position: relative;
}
.mp-process:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}
.mp-process .container {
  position: relative;
  z-index: 2;
}
.mp-process .head h4 {
  color: #fff;
}
.mp-process .item .circle {
  width: 120px;
  height: 120px;
  border: 2px solid #eee;
  border-radius: 50%;
  text-align: center;
  line-height: 120px;
  margin: 0 auto 30px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.mp-process .item .circle .icon {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  font-size: 30px;
}
.mp-process .item .one {
  border-top-color: #bfa67a;
}
.mp-process .item .two {
  border-top-color: #bfa67a;
  border-right-color: #bfa67a;
}
.mp-process .item .three {
  border-top-color: #bfa67a;
  border-right-color: #bfa67a;
  border-bottom-color: #bfa67a;
}
.mp-process .item .four {
  border-color: #bfa67a;
}
.mp-process .item h6 {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 17px;
}

/* -------------------------------------------------------
                    Services Tabs
-------------------------------------------------------- */
.services-tab {
  padding-bottom: 0;
}
.services-tab .tabs-icon li {
  display: inline-block;
  padding: 0 40px;
  cursor: pointer;
  color: #888;
  position: relative;
}
.services-tab .tabs-icon li:before {
  content: "";
  width: 1px;
  height: 90%;
  background: #eee;
  position: absolute;
  top: 5%;
  right: 0;
}
.services-tab .tabs-icon li:last-child:before {
  display: none;
}
.services-tab .tabs-icon li span {
  font-size: 40px;
  margin-bottom: 15px;
}
.services-tab .tabs-icon .active {
  color: #bfa67a;
}
.services-tab .services-content {
  margin-top: 100px;
}
.services-tab .services-content .item {
  display: none;
}
.services-tab .services-content .item .img {
  background-size: cover;
  background-position: 50% 0%;
}
.services-tab .services-content .item .img1, .services-tab .services-content .item .img3 {
  background-image: url(../img/4.jpg);
}
.services-tab .services-content .item .img2, .services-tab .services-content .item .img4 {
  background-image: url(../img/5.jpg);
}
.services-tab .services-content .item .content {
  padding: 30px;
  background: #f2f4ec;
  text-align: center;
}
.services-tab .services-content .item .content .bord {
  padding: 80px 50px;
  border: 5px solid #fff;
  position: relative;
  z-index: 2;
}
.services-tab .services-content .item .content .icon {
  font-size: 200px;
  font-weight: bold;
  color: #ddd;
  position: absolute;
  bottom: 15%;
  right: 10%;
  z-index: 1;
  opacity: .4;
}
.services-tab .services-content .item .content h5 {
  margin-bottom: 10px;
}
.services-tab .services-content .item .content h3 {
  font-weight: 700;
  font-size: 50px;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.services-tab .services-content .item .content p {
  padding: 0 30px;
  margin-bottom: 30px;
}
.services-tab .services-content .item .content button {
  border: 1px solid #bfa67a;
  text-transform: uppercase;
  padding: 10px 25px;
  background: #bfa67a;
  color: #fff;
  -webkit-transition: all .5s;
  transition: all .5s;
}
.services-tab .services-content .item .content button:hover {
  background: transparent;
  color: #bfa67a;
}
.services-tab .services-content .active {
  display: block;
}

.mp-serv-tab {
  background: #f2f4ec;
}
.mp-serv-tab .tabs-icon li {
  display: inline-block;
  padding: 0 40px;
  cursor: pointer;
  color: #888;
  position: relative;
}
.mp-serv-tab .tabs-icon li:before {
  content: "";
  width: 1px;
  height: 90%;
  background: #eee;
  position: absolute;
  top: 5%;
  right: 0;
}
.mp-serv-tab .tabs-icon li:last-child:before {
  display: none;
}
.mp-serv-tab .tabs-icon li span {
  font-size: 40px;
  margin-bottom: 15px;
}
.mp-serv-tab .tabs-icon .active {
  color: #bfa67a;
}
.mp-serv-tab .services-content {
  margin-top: 50px;
}
.mp-serv-tab .services-content .item {
  display: none;
}
.mp-serv-tab .services-content .item .img {
  background-size: cover;
  background-position: 50% 0%;
}
.mp-serv-tab .services-content .item .img1, .mp-serv-tab .services-content .item .img3 {
  background-image: url(../img/4.jpg);
}
.mp-serv-tab .services-content .item .img2, .mp-serv-tab .services-content .item .img4 {
  background-image: url(../img/5.jpg);
}
.mp-serv-tab .services-content .item .content {
  background: #fff;
  text-align: center;
}
.mp-serv-tab .services-content .item .content .bord {
  padding: 80px 0;
  border: 5px solid #fff;
  position: relative;
  z-index: 2;
}
.mp-serv-tab .services-content .item .content .icon {
  font-size: 200px;
  font-weight: bold;
  color: #ddd;
  position: absolute;
  bottom: 15%;
  right: 10%;
  z-index: 1;
  opacity: .2;
}
.mp-serv-tab .services-content .item .content h5 {
  margin-bottom: 15px;
}
.mp-serv-tab .services-content .item .content h3 {
  font-weight: 700;
  font-size: 50px;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.mp-serv-tab .services-content .item .content p {
  padding: 0 30px;
  margin-bottom: 30px;
}
.mp-serv-tab .services-content .item .content button {
  border: 1px solid #bfa67a;
  text-transform: uppercase;
  padding: 10px 30px;
  background: #bfa67a;
  color: #fff;
  -webkit-transition: all .5s;
  transition: all .5s;
}
.mp-serv-tab .services-content .item .content button:hover {
  background: transparent;
  color: #111;
}
.mp-serv-tab .services-content .active {
  display: block;
}

/* -------------------------------------------------------
                     Numbers 
-------------------------------------------------------- */
.numbers {
  background-image: url(../img/1.jpg);
  background-size: cover;
  background-attachment: fixed;
  color: #fff;
  padding: 80px 0;
  overflow: hidden;
  position: relative;
}
.numbers .container {
  position: relative;
  z-index: 2;
}
.numbers:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(37, 37, 37, 0.8);
  z-index: 1;
}
.numbers .item {
  text-align: center;
  border-right: 1px solid #888;
}
.numbers .item .icon {
  font-size: 30px;
  color: #bfa67a;
  margin-bottom: 15px;
}
.numbers .item h2 {
  font-weight: 700;
  font-size: 40px;
  margin-bottom: 15px;
}
.numbers .item h6 {
  font-weight: 400;
}
.numbers .last {
  border: 0;
}

/* -------------------------------------------------------
                     Portfolio 
-------------------------------------------------------- */
.portfolio {
  overflow: hidden;
}
.portfolio .filtering span {
  padding: 10px;
  margin: 15px;
  color: #999;
  letter-spacing: 1px;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  cursor: pointer;
}
.portfolio .filtering .active {
  color: #111;
}
.portfolio .item-img {
  padding: 4px;
  position: relative;
  overflow: hidden;
}
.portfolio .item-img:after {
  content: "";
  width: 100%;
  height: 300%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background: rgba(255, 255, 255, 0.05);
  position: absolute;
  top: -30%;
  left: -100%;
  opacity: 0;
  -webkit-transition: left .5s;
  transition: left .5s;
  z-index: 9;
}
.portfolio .item-img:hover:after {
  left: 100%;
  opacity: 1;
}
.portfolio .item-img:hover .item-img-overlay {
  opacity: 1;
}
.portfolio .item-img:hover h6, .portfolio .item-img:hover h5 {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.portfolio .item-img h6 {
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 15px;
  -webkit-transform: translateY(-15px);
          transform: translateY(-15px);
  -webkit-transition: all .5s;
  transition: all .5s;
}
.portfolio .item-img h6:after {
  content: "";
  width: 30px;
  height: 2px;
  background: #bfa67a;
  position: absolute;
  bottom: 0;
  left: calc(50% - 15px);
}
.portfolio .item-img h5 {
  font-size: 22px;
  -webkit-transform: translateY(15px);
          transform: translateY(15px);
  -webkit-transition: all .5s;
  transition: all .5s;
}
.portfolio .item-img .icons {
  position: absolute;
  bottom: 1px;
  right: 2px;
}
.portfolio .item-img .icon {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border: 1px solid #eee;
  margin: 0 -1px;
  -webkit-transition: all .5s;
  transition: all .5s;
}
.portfolio .item-img .icon:hover {
  background: #bfa67a;
  border-color: #bfa67a;
}
.portfolio .item-img-overlay {
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  opacity: 0;
  -webkit-transition: all .5s;
  transition: all .5s;
  z-index: 2;
}
.portfolio .load {
  margin: 30px auto 0;
  border: 1px solid #eee;
  padding: 12px 30px;
  color: #555;
  -webkit-transition: all .5s;
  transition: all .5s;
}
.portfolio .load:hover {
  background: #111;
  border-color: #111;
  color: #fff;
}
.portfolio .process {
  background: #111;
  color: #fff;
  padding: 80px 0;
}
.portfolio .process .icon {
  font-size: 40px;
  font-weight: 700;
  margin: 5px auto;
  float: left;
}
.portfolio .process .info-item {
  margin-left: 70px;
}
.portfolio .process .info-item h5 {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}
.portfolio .process .info-item p {
  color: #999;
  position: relative;
  z-index: 2;
}
.portfolio .process .info-item span {
  color: #151515;
  font-size: 100px;
  font-weight: bold;
  position: absolute;
  bottom: -20px;
  right: 20px;
  z-index: 1;
}
.portfolio .process-v1 {
  background: #111;
  padding: 80px 0;
  color: #fff;
}
.portfolio .process-v1 .icon {
  font-size: 50px;
  margin: 15px auto;
  float: left;
}
.portfolio .process-v1 .info-item {
  margin-left: 70px;
}
.portfolio .process-v1 .info-item h5 {
  margin-bottom: 15px;
}
.portfolio .process-v1 .info-item p {
  color: #999;
}

/* -------------------------------------------------------
                     Team 
-------------------------------------------------------- */
.team1 .item {
  position: relative;
}
.team1 .item:hover .info {
  opacity: 1;
}
.team1 .item .info {
  padding-top: 50%;
  text-align: center;
  color: #fff;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  opacity: 0;
  -webkit-transition: all .5s;
  transition: all .5s;
}
.team1 .item .info h5 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #bfa67a;
}
.team1 .item .info h6 {
  font-size: 16px;
  margin-bottom: 30px;
}
.team1 .item .social-icon {
  color: #fff;
  text-align: center;
  opacity: 0;
  -webkit-transition: all .5s;
  transition: all .5s;
}
.team1 .item .social-icon span {
  margin: 10px;
  opacity: 0;
  -webkit-transition: all .7s;
  transition: all .7s;
}
.team1 .item .social-icon .totop {
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}
.team1 .item .social-icon .tobotm {
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
}
.team1 .item:hover .social-icon {
  opacity: 1;
}
.team1 .item:hover .totop, .team1 .item:hover .tobotm {
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  opacity: 1;
}

.team .skills h5 {
  font-style: normal;
  font-weight: 600;
  margin: 20px auto 15px;
}
.team .skills p {
  margin-bottom: 30px;
}
.team .skills .info {
  margin-bottom: 30px;
}
.team .skills .info h6 {
  margin-bottom: 10px;
}
.team .skills .info .skills-progress {
  width: 80%;
  height: 2px;
  font-size: 0;
  margin-bottom: 30px;
  background: #f2f4ec;
}
.team .skills .info .skills-progress span {
  width: 0;
  height: 100%;
  background: #bfa67a;
  position: relative;
  -webkit-transition: all .5s;
  transition: all .5s;
}
.team .skills .info .skills-progress span:after {
  content: attr(data-value);
  font-size: 10px;
  position: absolute;
  top: 5px;
  right: -5px;
}
.team .team-item {
  margin-bottom: 30px;
}
.team .team-img {
  position: relative;
}
.team .team-img .social-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-top: 50%;
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  text-align: center;
  opacity: 0;
  -webkit-transition: all .5s;
  transition: all .5s;
}
.team .team-img .social-icon span {
  margin: 10px;
  opacity: 0;
  -webkit-transition: all .7s;
  transition: all .7s;
}
.team .team-img .social-icon .totop {
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}
.team .team-img .social-icon .tobotm {
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
}
.team .team-img:hover .social-icon {
  opacity: 1;
}
.team .team-img:hover .totop, .team .team-img:hover .tobotm {
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  opacity: 1;
}
.team .team-info {
  position: relative;
  background: #fff;
  text-align: center;
  -webkit-box-shadow: 0px 0px 15px #f4f4f4;
          box-shadow: 0px 0px 15px #f4f4f4;
  margin-top: -50px;
  margin-left: 5%;
  width: 90%;
  padding: 20px;
}
.team .team-info h6 {
  margin-bottom: 10px;
  letter-spacing: 0px;
  color: #bfa67a;
}
.team .team-info h5 {
  font-size: 14px;
  letter-spacing: 1px;
}

/* -------------------------------------------------------
                     Clients 
-------------------------------------------------------- */
.clients {
  background-image: url('/images/prod1.png');
  background-size: cover;
  background-attachment: fixed;
  color: #fff;
}

.clients .client-say h4 {
  text-transform: uppercase;
  font-size: 18px;
  margin-bottom: 50px;
  padding-bottom: 20px;
  position: relative;
}
.clients .client-say h4:after {
  content: "";
  position: absolute;
  left: calc(50% - 20px);
  bottom: 0;
  width: 40px;
  height: 2px;
  background: #eee;
}
.clients .client-say .icon {
  font-size: 40px;
  margin-bottom: 30px;
}
.clients .client-say h5 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 15px;
}
.clients .client-say p {
  color: #ccc;
  font-family: 'Playfair Display', serif;
  margin-bottom: 15px;
  font-size: 18px;
  letter-spacing: 1px;
}
.clients .client-say h6 {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.clients .owl-theme .owl-dots .owl-dot span {
  width: 30px;
  height: 2px;
  border-radius: 0;
}
.clients .owl-theme .owl-dots .owl-dot.active span,
.clients .owl-theme .owl-dots .owl-dot:hover span {
  background: #bfa67a;
}

.client-light {
  background: transparent;
  background: #fff;
  color: #111;
}
.client-light .client-say .image {
  width: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 30px;
}
.client-light .client-say p {
  color: #333;
  margin-bottom: 15px;
}
.client-light .client-say h6 {
  margin-bottom: 30px;
}

/* -------------------------------------------------------
                     Blog 
-------------------------------------------------------- */
.blog-v1 .item .img {
  position: relative;
}
.blog-v1 .item .img img {
  margin-bottom: 30px;
}
.blog-v1 .item .content h5 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.blog-v1 .item .content .date {
  margin-bottom: 20px;
}
.blog-v1 .item .content .date span {
  margin-right: 10px;
  color: #999;
  font-size: 11px;
  text-transform: uppercase;
}
.blog-v1 .item .content p {
  margin-bottom: 20px;
}
.blog-v1 .item .info {
  padding: 8px 10px;
  background: #f2f4ec;
}
.blog-v1 .item .info span {
  padding: 5px 10px;
  background: #fff;
  color: #777;
  border-radius: 20px;
}
.blog-v1 .item .info .more {
  color: #bfa67a;
  padding: 5px 15px;
}

.blog {
  background: #f2f4ec;
}
.blog .item {
  text-align: center;
}
.blog .item .img {
  position: relative;
}
.blog .item .img .date {
  position: absolute;
  top: 20px;
  left: 20px;
  text-align: center;
}
.blog .item .img .date span {
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: #fff;
  font-weight: 600;
  font-size: 12px;
  display: block;
}
.blog .item .img .date span:first-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.blog .item .content {
  padding: 30px 20px;
  background: #fff;
}
.blog .item .content h5 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.blog .item .content p {
  margin-bottom: 20px;
}
.blog .item .content span {
  padding: 8px 25px;
  border: 1px solid #bfa67a;
  background: transparent;
  color: #bfa67a;
  border-radius: 20px;
  -webkit-transition: all .5s;
  transition: all .5s;
}
.blog .item .content span:hover {
  background: #bfa67a;
  color: #fff;
}

.posts {
  padding-right: 15px;
}
.posts .item {
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid #eee;
}
.posts .item .share {
  float: left;
  text-align: center;
  width: 80px;
}
.posts .item .share li {
  padding: 14px 0;
  border-top: 1px solid #eee;
}
.posts .item .share li:first-child {
  border: 0;
}
.posts .item .share span {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  color: #888;
}
.posts .item .share span:hover {
  color: #bfa67a;
}
.posts .item .share .icon {
  margin-bottom: 8px;
}
.posts .item .content {
  margin-left: 80px;
}
.posts .item .content .post-img {
  margin-bottom: 50px;
  width: 100%;
}
.posts .item .content .post-img img {
  width: 100%;
}
.posts .item .content .post-info h5 {
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.posts .item .content .post-info .spacial {
  font-size: 18px;
  font-style: italic;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.posts .item .content .mor-inf {
  margin-bottom: 30px;
}
.posts .item .content .mor-inf li {
  display: inline-block;
  margin-right: 15px;
  font-size: 11px;
  text-transform: uppercase;
  color: #999;
  letter-spacing: 1px;
}
.posts .item .content .mor-inf li a:hover {
  color: #bfa67a;
}
.posts .item .content .mor-inf li .icon {
  margin-right: 5px;
}
.posts .item .content .more {
  padding: 12px 30px;
  background: #222;
  color: #eee;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 1px;
  margin-top: 30px;
  -webkit-transition: all .5s;
  transition: all .5s;
}
.posts .item .content .more:hover {
  background: #bfa67a;
}
.posts .comm {
  padding-bottom: 30px;
  border-bottom: 1px solid #eee;
}
.posts .comm .comm-item {
  margin-bottom: 50px;
}
.posts .comm .comm-item .user-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  float: left;
  background: #eee;
}
.posts .comm .comm-item .comnts {
  margin-left: 70px;
}
.posts .comm .comm-item .comnts h6 {
  margin-bottom: 5px;
}
.posts .comm .comm-item .comnts span {
  font-size: 11px;
  color: #888;
  margin-right: 15px;
  margin-bottom: 15px;
}
.posts .comm .comm-item .comnts span i {
  margin-right: 5px;
}
.posts .comm .comm-reply {
  margin-left: 70px;
}
.posts .lev-comm input, .posts .lev-comm textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #f4f4f4;
  margin-bottom: 15px;
  font-size: 12px;
}
.posts .lev-comm textarea {
  height: 140px;
  max-width: 100%;
  max-height: 140px;
}
.posts .lev-comm input[type="submit"] {
  background: #222;
  border-color: #222;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  -webkit-transition: all .5s;
  transition: all .5s;
}
.posts .lev-comm input[type="submit"]:hover {
  background: #bfa67a;
  border-color: #bfa67a;
}
.posts .numb span {
  padding: 10px 16px;
  border: 1px solid #eee;
  font-size: 12px;
  color: #888;
  letter-spacing: 1px;
  text-transform: uppercase;
  -webkit-transition: all .5s;
  transition: all .5s;
}
.posts .numb span:hover {
  background: #bfa67a;
  border-color: #bfa67a;
  color: #fff;
}
.posts .numb .active {
  border-color: #555;
  color: #555;
}

.side-bar {
  padding-left: 15px;
}
.side-bar .widget {
  margin-bottom: 80px;
}
.side-bar .widget .search {
  position: relative;
}
.side-bar .widget .search input {
  width: 100%;
  padding: 9px;
  font-size: 14px;
  border: 1px solid #eee;
}
.side-bar .widget .search ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #999;
  font-size: 13px;
}
.side-bar .widget .search ::-moz-placeholder {
  /* Firefox 19+ */
  color: #999;
  font-size: 13px;
}
.side-bar .widget .search :-ms-input-placeholder {
  /* IE 10+ */
  color: #999;
  font-size: 13px;
}
.side-bar .widget .search :-moz-placeholder {
  /* Firefox 18- */
  color: #999;
  font-size: 13px;
}
.side-bar .widget .search .icon {
  position: absolute;
  top: 9px;
  right: 9px;
  color: #ddd;
}
.side-bar .widget .about-bar img {
  margin-bottom: 30px;
}
.side-bar .widget .follow span {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border: 1px solid #eee;
  border-radius: 50%;
  font-size: 14px;
  color: #777;
  margin: 0 2px;
  -webkit-transition: all .5s;
  transition: all .5s;
}
.side-bar .widget .follow span:hover {
  border-color: #bfa67a;
  background: #bfa67a;
  color: #fff;
}
.side-bar .widget .lpost .item {
  margin-bottom: 30px;
  overflow: hidden;
}
.side-bar .widget .lpost .sm-img {
  width: 30%;
  float: left;
}
.side-bar .widget .lpost .info {
  margin-left: 35%;
}
.side-bar .widget .lpost .info h5 {
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.side-bar .widget .lpost .info span {
  font-size: 11px;
  color: #999;
  letter-spacing: 1px;
}
.side-bar .widget .catg h5 {
  font-size: 13px;
  margin-bottom: 15px;
  color: #888;
  padding-left: 15px;
  position: relative;
}
.side-bar .widget .catg h5:before {
  content: "\f105";
  position: absolute;
  left: 0;
  top: 1px;
  font-family: "FontAwesome";
  color: #ccc;
}
.side-bar .widget .catg h5 span {
  float: right;
}
.side-bar .widget .tags span {
  font-size: 12px;
  padding: 5px 10px;
  border: 1px solid #eee;
  color: #888;
  margin: 2px;
  -webkit-transition: all .5s;
  transition: all .5s;
}
.side-bar .widget .tags span:hover {
  background: #bfa67a;
  border-color: #bfa67a;
  color: #fff;
}

.side-tit {
  padding-bottom: 20px;
  margin-bottom: 50px;
  border-bottom: 1px solid #eee;
}
.side-tit h6 {
  font-size: 14px;
  color: #333;
}

.column {
  padding-right: 0 !important;
}
.column .item .content {
  margin-left: 0 !important;
}

/* -------------------------------------------------------
                     Subscribe 
-------------------------------------------------------- */
.subscribe {
  padding: 80px 0;
  background-image: url(../img/2.jpg);
  background-size: cover;
  background-attachment: fixed;
  color: #fff;
  text-align: center;
  position: relative;
}
.subscribe:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(37, 37, 37, 0.8);
  z-index: 1;
}
.subscribe .container {
  position: relative;
  z-index: 2;
}
.subscribe .ctit {
  font-size: 18px;
  margin-bottom: 50px;
  padding-bottom: 20px;
  position: relative;
}
.subscribe .ctit:after {
  content: "";
  position: absolute;
  left: calc(50% - 20px);
  bottom: 0;
  width: 40px;
  height: 2px;
  background: #eee;
}
.subscribe .social-icon {
  margin-bottom: 30px;
}
.subscribe .social-icon span {
  font-size: 60px;
  margin: 0 30px;
}
.subscribe input[type="email"] {
  width: 70%;
  border: 0;
  padding: 12px;
  background: #fff;
}
.subscribe button {
  padding: 12px 30px;
  border: 0;
  margin-left: -5px;
  background: #111;
  color: #fff;
}

/* -------------------------------------------------------
                    Price
-------------------------------------------------------- */
.price .prc-item {
  border: 1px solid #eee;
  border-radius: 4px;
  padding: 50px;
  text-align: center;
}
.price .prc-item .type {
  padding-bottom: 15px;
}
.price .prc-item .main-price {
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 30px 0;
  margin: 25px auto;
}
.price .prc-item .main-price h3 {
  margin-bottom: 15px;
  font-size: 60px;
}
.price .prc-item .main-price h3 span {
  font-size: 20px;
  position: relative;
  margin-top: 0px;
}
.price .prc-item .main-price .per {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}
.price .prc-item .features p {
  padding: 4px 0;
  font-size: 15px;
}
.price .button {
  width: 100%;
  border: 1px solid #eee;
  background: transparent;
  color: #444;
  padding: 14px;
  text-align: center;
  margin-top: 30px;
  -webkit-transition: all .5s;
  transition: all .5s;
}
.price .button:hover {
  background: #bfa67a;
  border-color: #bfa67a;
  color: #fff;
}
.price .active {
  background: #111;
  color: #eee;
}
.price .active .main-price {
  border-color: #555;
}
.price .active .button {
  background: #bfa67a;
  border-color: #bfa67a;
  color: #fff;
}

.price-center .prc-item {
  text-align: center;
}
.price-center .prc-item .main-price h3 {
  margin-bottom: 15px;
  display: block;
}

/* -------------------------------------------------------
                     Contact 
-------------------------------------------------------- */
.contact-bg-img {
  background-image: url(../img/2.jpg);
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  color: #eee;
}
.contact-bg-img:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(12, 12, 12, 0.7);
  z-index: 1;
}
.contact-bg-img .container {
  position: relative;
  z-index: 2;
}
.contact-bg-img .head h4 {
  color: #eee;
}
.contact-bg-img .info {
  margin-bottom: 80px;
}
.contact-bg-img .info .item span {
  font-size: 30px;
  margin-bottom: 30px;
}
.contact-bg-img .info .item p {
  color: #eee;
}
.contact-bg-img input, .contact-bg-img textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #999;
  background: transparent;
  padding: 10px;
  margin: 0;
  margin-bottom: 10px;
}
.contact-bg-img input:focus, .contact-bg-img textarea:focus {
  border-color: #bfa67a;
}
.contact-bg-img textarea {
  max-width: 100%;
  max-height: 120px;
  height: 120px;
}
.contact-bg-img input[type="submit"] {
  background: transparent;
  color: #eee;
  padding: 12px;
  margin-top: 10px;
  margin-bottom: 0;
  border: 1px solid #999;
  border-radius: 30px;
  -webkit-transition: all .5s;
  transition: all .5s;
}
.contact-bg-img input[type="submit"]:hover {
  background: #fff;
  color: #111;
}

.contact .info {
  margin-bottom: 80px;
}
.contact .info .item span {
  font-size: 30px;
  margin-bottom: 30px;
}
.contact .info .item p {
  color: #222;
}
.contact form {
  padding: 100px 50px;
  -webkit-box-shadow: 0px 0px 40px #f4f4f4;
          box-shadow: 0px 0px 40px #f4f4f4;
}
.contact input, .contact textarea {
  width: 100%;
  border: 0;
  border: 1px solid #f4f4f4;
  background: #f4f4f4;
  padding: 10px;
  margin: 0;
  margin-bottom: 10px;
  -webkit-transition: all .5s;
  transition: all .5s;
}
.contact input:focus, .contact textarea:focus {
  border-bottom-color: #999;
}
.contact textarea {
  max-width: 100%;
  max-height: 160px;
  height: 160px;
}
.contact input[type="submit"] {
  background: #111;
  border: 1px solid #111;
  border-radius: 30px;
  padding: 12px 0;
  color: #fff;
  margin-bottom: 0;
  -webkit-transition: all .5s;
  transition: all .5s;
}
.contact input[type="submit"]:hover {
  background: #bfa67a;
  border-color: #bfa67a;
}

/* -------------------------------------------------------
                    Footer
-------------------------------------------------------- */
footer {
  background: #111;
  color: #fff;
}
footer .main-footer {
  padding: 80px 0;
}
footer .main-footer .logo {
  width: 120px;
  margin-bottom: 15px;
}
footer .main-footer .social-icon span {
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin: 0 5px;
  color: #888;
  background: transparent;
  -webkit-transition: all .5s;
  transition: all .5s;
}
footer .main-footer .social-icon span:hover {
  background: transparent;
  color: inherit;
}
footer .sub-footer {
  text-align: center;
  padding: 20px 0;
  border-top: 2px solid #151515;
}

/* -------------------------------------------------------
                     Responsive 
-------------------------------------------------------- */
@media screen and (max-width: 767px) {
  .navbar-custom .logo {
    margin-left: 20px;
  }
  .navbar-custom .navbar-toggle {
    background: none;
    margin-top: 15px;
    border: none;
  }
  .navbar-custom .navbar-toggle:hover, .navbar-custom .navbar-toggle:focus {
    background: transparent;
  }
  .navbar-custom .navbar-toggle .icon-bar {
    background: #fff;
  }
  .navbar-custom .navbar-nav li a {
    color: #111 !important;
  }
  .navbar-custom .navbar-nav > li > a {
    padding-bottom: 0 !important;
  }
  .navbar-custom .navbar-collapse {
    text-align: center;
    border: none;
    background: #fff;
    margin-top: 5px;
    /*width: 100% !important;*/
  }
  .navbar-custom .nav .dropdown .dropdown-menu {
    text-align: center;
    margin-top: 20px;
  }

  .nav-scroll .navbar-toggle .icon-bar {
    background: #111;
  }

  .header h1 {
    font-size: 50px !important;
    line-height: 1.8;
  }

  .header h6 {
    font-size: 16px;
  }

  .services-tab .tabs-icon li,
  .mp-serv-tab .tabs-icon li,
  .portfolio .filtering span,
  .contact .info .item,
  .contact-bg-img .info .item {
    margin-bottom: 30px;
  }

  .services-tab .tabs-icon li,
  .mp-serv-tab .tabs-icon li {
    padding: 0 20px;
  }

  .bloks .blok2-content .skills .item .skills-progress {
    width: 100%;
  }

  .subscribe .social-icon span {
    font-size: 40px;
    margin: 0 15px;
  }

  .contact-bg-img .info .item span {
    margin-bottom: 15px;
  }

  .portfolio .item-img {
    width: 100%;
    padding: 4px 0;
  }

  .portfolio .filtering span {
    padding: 5px 15px;
    margin: 0;
    font-size: 14px;
  }

  .mp-hero .content {
    padding: 0;
  }

  .ht-center ul li {
    margin: 0 15px 15px !important;
  }
}
@media screen and (max-width: 991px) {
  .header, .sub-header, .contact-bg-img {
    background-position: 50% 50% !important;
  }

  .hero .content {
    padding: 0;
  }

  .we-do .item {
    margin-bottom: 100px;
  }

  .bloks .blok2-img {
    margin-top: -30px;
  }

  .hero-v2 .item,
  .hero-tab .hero-img,
  .hero-blok .blok-img,
  .hb-gray .blok-info,
  .serv-bloks .item,
  .portfolio .process-info,
  .team .item,
  .team1 .item,
  .numbers .item,
  .price .prc-item,
  .blog-v1 .item,
  .blog .item,
  .mp-process .item {
    margin-bottom: 50px;
  }

  .numbers .item {
    border: 0;
  }

  .posts {
    margin-bottom: 80px;
    padding: 0;
  }

  .side-bar {
    padding: 0;
  }
}

.image-section {
  background-color: #111;
  min-height: 48vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 0;
}

.image-container {
  width: 100%;
  max-width: 625px;
  margin: 0 auto;
  padding: 0 15px;
}

.image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-wrapper img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* -------------------------------------------------------
                     The End 
-------------------------------------------------------- */

/*# sourceMappingURL=style.css.map */