/* =======================================================================
KAGE - Portfolio & Agency HTML Template
======================================================================= */

/*

    1. TYPOGRAPHY
    2. GLOBAL STYLES  
    3. NAVIGATION
    4. MAIN CONTAINER
    5. HEADER
    6. QUOTE
    7. ABOUT US
    8. RESUME
    9. SERVICES
    10. FUN FACTS
    11. PORTFOLIO
    12. WORK WITH US
    13. PRICES
    14. TESTIMONIALS
    15. CLIENTS
    16. BLOG
    17. CONTACT
    18. FOOTER
    19. CONTACT PAGE   

*/

/*---------------------------------------
  1. TYPOGRAPHY                
-----------------------------------------*/
  
/* FONTS */
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600');
@import url('https://fonts.googleapis.com/css?family=Poppins:700');

/* --------------------------------------
  2. GLOBAL STYLES
-----------------------------------------*/
body {
  background: #FFF;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  overflow-x: hidden;
  color: #1c1c1c;
}
ul,ol {
	padding: 0;
	margin: 0;
}
li {
	list-style: none;
}
a {
	color:#1c1c1c;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
a:hover {
	text-decoration: none;
  color: #1c1c1c;
}
a:focus {
	text-decoration: none;
}
p,span,h1,h2,h3,h4,h5,a {
  margin:0;
  letter-spacing: 0.5px;
  line-height: 27px;
}
img {
  max-width: 100%;
  height: auto;
}
.clear {
	clear:both;
}
.sections {
  padding: 120px 0;
}
.s-container {
  padding: 0 30px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  display: block;
}
.s-title {
  text-align: center;
  margin: 0 auto;
  float: none;
  margin-bottom: 60px;
}
.s-title h5 {
  font-size: 14px;
  color: #616161;
  line-height: 1;
  margin-bottom: 20px;
  font-style: italic;
}
.s-title h4 {
  position: relative;
  font-family: 'Poppins', sans-serif;
  color: #222;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  padding-bottom: 22px;
}
.s-title h4:after {
  content: "";
  width: 60px;
  height: 2px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
}
.s-title p {
  padding-top: 22px;
  color: #6f6f6f;
  font-size: 13.5px;
  font-weight: 400;
}
/* PRELOADER */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #fff;
  z-index: 9999999999999
}
.load-circle {
  margin: 45vh auto;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #e8e8e8;
  border-top: 2px solid #212121;
  -webkit-animation: rotate 1.2s infinite linear;
  animation: rotate 1.2s infinite linear
}
@-webkit-keyframes rotate {
  0% {
    transform: rotate(0)
  }
  100% {
    transform: rotate(360deg)
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0)
  }
  100% {
    transform: rotate(360deg)
  }
}

/* --------------------------------------
  3. NAVIGATION
-----------------------------------------*/
.navigation {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  background-color: #f6f6f6;
  z-index: 9999999;
  width: 80px;
}
.navigation .humberger-menu {
  cursor: pointer;
  padding: 27px 40px;
}
.navigation .humberger-menu span {
  position: absolute;
  right: 0;
  left: 0;
  margin: 0 auto;
  width: 27px;
  height: 2px;
  transition: .4s;
  -webkit-transition: .4s;
  -moz-transition: .4s;
  -o-transition: .4s;
  -ms-transition: .4s;
  top: 28px;
  z-index: 99999999999;
  background-color: #1c1c1c;
}
.navigation .humberger-menu span:after {
  content: "";
  position: absolute;
  right: 0;
  width: 27px;
  height: 2px;
  transition: .4s;
  -webkit-transition: .4s;
  -moz-transition: .4s;
  -o-transition: .4s;
  -ms-transition: .4s;
  top: 8px;
  background-color: #1c1c1c;
  cursor: pointer;
}
.navigation .humberger-menu span:before {
  content: "";
  position: absolute;
  right: 0;
  width: 27px;
  height: 2px;
  transition: .4s;
  -webkit-transition: .4s;
  -moz-transition: .4s;
  -o-transition: .4s;
  -ms-transition: .4s;
  top: -8px;
  cursor: pointer;
  background-color: #1c1c1c;
}
.navigation .social-ic {
  text-align: center;
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.navigation .social-ic li a {
  padding-top: 10px;
  display: block;
}
.sidebar {
  position: fixed;
  left: -450px;
  top: 0;
  height: 100%;
  background-color: #f6f6f6;
  border-right: 1px solid #ebebeb;
  width: 450px;
  z-index: 1;
  padding: 60px 20px 20px 80px;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  box-shadow: 0 5px 10px 0 rgba(255, 255, 255,0.20);
  -webkit-box-shadow: 0 5px 10px 0 rgba(255, 255, 255,0.20);
  -ms-box-shadow: 0 5px 10px 0 rgba(255, 255, 255,0.20);
  -o-box-shadow: 0 5px 10px 0 rgba(255, 255, 255,0.20);
  -moz-box-shadow: 0 5px 10px 0 rgba(255, 255, 255,0.20);
  z-index: 999999;
}
.sidebar a {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 25px;
  line-height: 40px;
  margin-bottom: 20px;
  position: relative;
}
.sidebar a:before {
  content: '';
  position: absolute;
  left: 0;
  top: 15px;
  width: 10px;
  height: 10px;
  background-color: #1c1c1c;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
}
.sidebar .active,
.sidebar a:hover {
  padding-left: 20px;
}
.sidebar .active:before {
  opacity: 1;
}
.sidebar a:hover::before {
  opacity: 1;
}
.sidebar .menu-info {
  position: absolute;
  bottom: 20px;
  left: 60px;
  padding: 0 20px;
}
.humberger-menu-active span {
  background: transparent !important;
}
.humberger-menu-active span:after {
  top: 0;
  transform: rotate(315deg);
  -webkit-transform: rotate(315deg);
  -moz-transform: rotate(315deg);
  -o-transform: rotate(315deg);
  -ms-transform: rotate(315deg);
}
.humberger-menu-active span:before {
  top: 8px !important;
  transform: rotate(-315deg);
  -webkit-transform: rotate(-315deg);
  -moz-transform: rotate(-315deg);
  -ms-transform: rotate(-315deg);
  -o-transform: rotate(-315deg);
}
.slide-nav-active {
  left: 0;
}

/* --------------------------------------
  4. MAIN CONTAINER
-----------------------------------------*/
.main-container {
  padding-left: 80px;
}

/* --------------------------------------
  5. HEADER
-----------------------------------------*/
.header-s {
  position: relative;
}
.header-s .headbg {
  padding-left: 0;
  padding-right: 0;
}
.header-s .header-bg {
  background: url('../img/bigFirstPhoto.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  height: 100vh;
  width: 100%;
  position: relative;
  overflow-x: hidden!important;
}
.header-s .header-bg .header-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(255,255,255,.4);
}
.header-s .header-cnt {
  height: 100vh;
  background: url('../img/plus.png') repeat;
}
.header-s .middle-c {
  color: #FFF;
  position: absolute;
  width: 110%;
  top: 42.5%;
  left: -90px;
  -webkit-transform: translate(0,-50%);
  -moz-transform: translate(0,-50%);
  -ms-transform: translate(0,-50%);
  -o-transform: translate(0,-50%);
  transform: translate(0,-50%);
}
.header-s .middle-c .capt {
  margin: 0 auto;
  margin-top: 50px;
  float: left;
  text-align: left;
}
.header-s .middle-c h4 {
  font-size: 85px;
  line-height: 90px;
  color: #1c1c1c;
}
.header-s .middle-c h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 85px;
  line-height: 90px;
  color: #1c1c1c;
}
.header-s .middle-c p {
  font-size: 25px;
  margin-top: 10px;
  color: #1c1c1c;
  margin-bottom: 40px;
  display: block;
}
.header-s .middle-c p span {
  font-family: 'Poppins', sans-serif;
}
.header-s .middle-c a {
  display: inline-block;
  font-size: 12px;
  padding: 11px 50px;
  letter-spacing: 2px;
  font-family: 'Poppins', sans-serif;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  border: 1px solid #1c1c1c;
  color: #1c1c1c;
  margin-right: 15px;
}
.header-s .middle-c a:hover {
  background-color: #1c1c1c;
  color: #FFF;
}
.header-s .middle-c .cta-btn {
  color: #FFF;
}
.header-s .middle-c .cta-btn:hover {
  border-color: #1c1c1c;
}
.header-s .middle-c span {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  text-decoration: underline;
}
.header-s .middle-c .typed-cursor {
  text-decoration: none;
}
.typed-cursor {
  opacity: 1;
  -webkit-animation: blink 1s infinite;
  -moz-animation: blink 1s infinite;
  animation: blink 1s infinite
}
@keyframes blink {
  0% {
      opacity: 1
  }
  50% {
      opacity: 0
  }
  100% {
      opacity: 1
  }
}
@-webkit-keyframes blink {
  0% {
      opacity: 1
  }
  50% {
      opacity: 0
  }
  100% {
      opacity: 1
  }
}
@-moz-keyframes blink {
  0% {
      opacity: 1
  }
  50% {
      opacity: 0
  }
  100% {
      opacity: 1
  }
}
.header-s .about-btn {
  font-family: 'Poppins', sans-serif;
  position: absolute;
  right: 30px;
  bottom: 80px;
  transform: rotate(-90deg);
  z-index: 99;
}
.header-s .about-btn a:before {
  content: '\f104';
  position: absolute;
  bottom: 0px;
  left: -15px;
  font-family: fontawesome;
  font-size: 24px;
  color: #1c1c1c;
  -webkit-animation: secdownmoving 1000ms linear 0s infinite;
  -o-animation: secdownmoving 1000ms linear 0s infinite;
  animation: secdownmoving 1000ms linear 0s infinite;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
@keyframes secdownmoving{
  0%{
    -webkit-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
    transform: translateX(0px);
  }
  50%{
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    -o-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  100%{
    -webkit-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
    transform: translateX(0px);
  }
}

/* --------------------------------------
  6. QUOTE
-----------------------------------------*/
.quote {
  background-color: #1c1c1c;
  color: #FFF;
  text-align: center;
  padding: 110px 0 110px 0;
  position: relative;
}
#particles-overl {
  height: 70vh;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.quote .small-p {
  float: none;
  margin: 0 auto;
}
.quote .small-p h3 {
  font-size: 30px;
  font-weight: 300;
  line-height: 54px;
}

/* --------------------------------------
  7. ABOUT US
-----------------------------------------*/
.about-us .about-ct h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  line-height: 25px;
  margin-bottom: 20px;
}
.about-us .about-ct p {
  color: #666;
}
.about-us .about-ct a {
  display: inline-block;
  font-size: 12px;
  padding: 11px 30px;
  letter-spacing: 2px;
  font-family: 'Poppins', sans-serif;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  border: 1px solid #1c1c1c;
  color: #FFF;
  background-color: #1c1c1c;
  margin-top: 30px;
}
.about-us .about-ct a .icon,
.about-us .about-ct a i {
  padding-right: 5px;
}
.about-us .about-ct a:hover {
  background-color: #FFF;
  color: #1c1c1c;
}
.about-skills {
  padding-left: 60px;
}
.about-skills li span {
  font-family: 'Poppins', sans-serif;
  color: #212121;
  font-size: 12.5px;
}
.about-skills .skills-left {
  padding: 0 30px 0 0;
}
.about-skills .skills-right {
  padding: 0 0 0 30px;
}
.about-skills .skills-bottom {
  padding: 30px 0 0 0;
}
.about-skills li {
  margin-bottom: 30px;
}
.about-skills li:last-child {
  margin-bottom: 0;
}
.about-skills li .progress-bar {
  position: relative;
  background: 0 0;
  box-shadow: none;
}
.about-skills li .progress {
  position: relative;
  background: 0 0;
  height: 22px;
  box-shadow: none;
  margin-bottom: 0;
}
.about-skills li .progress, .skills-background {
  border: none;
}
.about-skills li .progress::before {
  position: absolute;
  background: #dcdcdc;
}
.about-skills li .progress-bar::before {
  position: absolute;
  -webkit-transition: ease-out .7s;
  -moz-transition: ease-out .7s;
  -o-transition: ease-out .7s;
  transition: ease-out .7s;
}
.about-skills li .progress-bar::before,
.progress::before {
  content: '';
  top: 50%;
  width: 100%;
  height: 2px;
  left: 0;
}
.about-skills li .progress-bar span {
  position: absolute;
  top: 0px;
  right: 0;
  background: #fff;
  padding: 1px 5px;
  color: #111;
  font-weight: 500;
  font-size: 11px;
  line-height: 16px;
}

/* --------------------------------------
  8. RESUME
-----------------------------------------*/
.resume {
  background-color: #f6f6f6;
  border-left: 1px solid #ebebeb;
}
.resume .s-title {
  margin-bottom: 152px;
}
.resume .education {
  float: right;
}
.resume .column-left {
  width: 95%;
  padding-top: 30px;
  padding-right: 50px;
  border-right: 2px solid #eee;
  text-align: right;
}
.resume .column-left .icon {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  color: #fff;
  background: #3b414c;
  position: absolute;
  top: -40px;
  right: calc(5% - 6px);
}
.resume .item {
  margin-bottom: 60px;
  position: relative;
}
.resume .item:last-child {
  margin-bottom: 0;
}
.resume .item h6 {
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
}
.sm-titl {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
}
.resume .item .date {
  font-size: 13px;
  font-family: 'Dosis', sans-serif;
  margin-bottom: 16px;
  display: inline-block;
  font-style: italic;
}
.resume .item p {
  line-height: 27px;
  margin: 0;
  font-size: 14px;
  color: #555;
}
.resume .column-left .item:after {
  left: calc(100% + 48px);
}
.resume .item:after {
  content: "";
  position: absolute;
  top: 5px;
  left: -54px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #888;
}
.resume .column-right {
  width: 95%;
  margin-left: 5%;
  padding-top: 30px;
  padding-left: 50px;
  border-left: 2px solid #eee;
}
.resume .column-right .icon {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  color: #fff;
  background: #3b414c;
  position: absolute;
  top: -40px;
  left: calc(5% - 6px);
}

/* --------------------------------------
  9. SERVICES
-----------------------------------------*/
.services {
  padding: 120px 0 30px 0;
}
.serv-content .serv-item {
  margin-bottom: 90px;
}
.serv-content .serv-item .icon,
.serv-content .serv-item i {
  float: left;
  font-size: 35px;
}
.serv-content .serv-item .serv-info {
  margin-left: 70px;
}
.serv-content .serv-item .serv-info h5 {
  text-transform: uppercase;
  margin-bottom: 10px;
  padding-bottom: 15px;
  position: relative;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
}
.serv-content .serv-item .serv-info h5:after {
  content: "";
  width: 30px;
  height: 2px;
  background: #1c1c1c;
  position: absolute;
  left: 0;
  bottom: 0;
}
.serv-content .serv-item .serv-info p {
  font-size: 13px;
  color: #888;
  font-weight: 400;
}

/* --------------------------------------
  10. FUN FACTS
-----------------------------------------*/
.facts {
  background: #232323;
  color: #FFF;
}
.facts .fact-item {
  text-align: center;
}
.facts .counting-icon i,
.facts .counting-icon span {
  font-size: 45px;
  padding-top: 0;
}
.facts h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0;
  line-height: 20px;
  margin-top: 5px;
  font-family: 'Poppins', sans-serif;
  color: #bbb;
}
.facts .count {
  padding: 25px 0;
  display: inline-block;
  font-size: 35px;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 3px;
}

/* --------------------------------------
  11. PORTFOLIO
-----------------------------------------*/
.work {
  background-color: #f6f6f6;
  border-left: 1px solid #ebebeb;
}
.work {
  padding: 120px 0 110px 0;
}
.work .filter-work {
  margin: 0 auto;
  text-align: center;
  margin-bottom: 45px;
}
.work .filter-work a {
  border: 1px solid #FFF;
  background-color: #FFF;
  color: #555;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 12px;
  margin: 0 1.5px;
  letter-spacing: 1.5px;
  -webkit-transition: ease-out .2s;
  -moz-transition: ease-out .2s;
  -o-transition: ease-out .2s;
  transition: ease-out .2s;
  padding: 7px 16px;
  border-radius: 4px;
  -o-border-radius: 4px;
  -ms-border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  display: inline-block;
  font-weight: 400;
}
.work .filter-work a:first-child {
  padding-left: 22px;
  border-radius: 100px 0 0 100px;
}
.work .filter-work a:last-child {
  padding-right: 22px;
  border-radius: 0 100px 100px 0;
}
.work .filter-work .is-checked {
  color: #FFF;
}
.work .work-item {
  padding: 0 0px 10px 14px;
  width: 33%;
}
.work .work-caption {
  position: relative;
}
.work .work-caption img {
  height: auto;
  width: 100%;
  max-width: 100%;
}
.work .work-caption .overlay {
  position: absolute;
  top: 7px;
  left: 7px;
  right: 7px;
  bottom: 7px;
  -webkit-transition: ease-out .3s;
  -moz-transition: ease-out .3s;
  -o-transition: ease-out .3s;
  transition: ease-out .3s;
  opacity: 0;
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -ms-transform: translateY(10px);
  -o-transform: translateY(10px);
  transform: translateY(10px);
}
.work .work-caption .overlay:focus {
  outline: none;
}
.work .work-caption .overlay span {
  color: #FFF;
}
.work .work-item:hover .overlay {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  -moz-transform: translateY(0);
  transform: translateY(0);
}
.work .work-caption .info-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  text-align: left;
}
.work .work-caption .info-content h4 {
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  position: relative;
  font-family: 'Poppins', sans-serif;
}
.work .work-caption .info-content p {
  font-family: 'Poppins', sans-serif;
  font-size: 12.5px;
  color: #dadada;
  font-style: italic;
}
.work .work-caption:focus,
.work .work-item:focus, 
.work .work-caption img:focus,
.work .work-caption a:focus {
  outline: none;
}
.white-popup {
  position: relative;
  background: #fff;
  width: auto;
  max-width: 640px;
  margin: 0 auto;
}
.white-popup div {
  padding: 30px;
  text-align: center;
}
.white-popup div h3 {
  margin-bottom: 25px;
  text-align: center;
  font-size: 16.5px;
  font-weight: 600;
  color: #000;
}
.white-popup div p {
  font-size: 14px;
  text-align: left;
  line-height: 27px;
}
.white-popup img {
  width: 100%;
  height: auto;
}
.mfp-close {
  left: 0;
}
.mfp-close:hover {
  color: #FFF;
}
.mfp-close-btn-in .mfp-close {
  color: #FFF;
}
.mfp-bg {
  z-index: 99999999;
}
.mfp-wrap {
  z-index: 99999999;
}

/* --------------------------------------
  12. WORK WITH US
-----------------------------------------*/
.work-us {
  background: url('http://via.placeholder.com/1350x750');
  color: #FFF;
  text-align: center;
  position: relative;
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.work-us h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
}
.work-us h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 40px;
  line-height: 45px;
  margin: 25px 15px 35px 15px;
}
.work-us a {
  display: inline-block;
  font-size: 13.5px;
  padding: 13px 50px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #212121;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  font-weight: 600;
  background: #FFF;
}
.work-us a:hover {
  background-color: #1c1c1c;
  color: #FFF;
}

/* --------------------------------------
  13. PRICES
-----------------------------------------*/
.price {
  background-color: #f6f6f6;
  border-left: 1px solid #ebebeb;
}
.price-table .item {
  background: #FFF;
  padding: 50px;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
}
.price-c .best .item {
  -webkit-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.1);
  background-image: url(../img/pattern/patt.png);
  background-position: 0 0;
  background-repeat: repeat;
}
.price .item .type {
  margin: 0 0 50px;
}
.price .item .type h5 {
  font-size: 25px;
  letter-spacing: 3px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}
.price .item .mount {
  margin: 0 0 50px;
}
.price .item .mount h3 {
  font-size: 55px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}
.price .item .mount h3 span {
  font-size: 25px;
  font-weight: 400;
  padding-right: 5px;
}
.price .item .p-feat {
  margin: 0 0 50px;
  width: 100%;
}
.price .item .p-feat p {
  padding-bottom: 15px;
  margin-bottom: 10px;
  color: #7e7e7e;
  font-size: 13.5px;
  font-weight: 400;
}
.price .item .p-feat p:last-child {
  border-width: 0;
  margin-bottom: 0;
}
.price .item .order a {
  width: 90%;
  color: #333;
  border: 1px solid #333;
  display: inline-block;
  font-size: 12px;
  padding: 9px 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #212121;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  font-weight: 400;
}
.price .order a:hover {
  color: #FFF;
}
.price .best .item a {
  color: #FFF;
}

/* --------------------------------------
  14. TESTIMONIALS
-----------------------------------------*/
.testimonials .t-item .testimonial-box {
  border: 1px solid #eee;
  padding: 40px 30px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}
.testimonials .t-item .testimonial-box:hover {
  color: #FFF;
}
.testimonials .t-item .testimonial-box h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
}
.testimonials .t-item .testimonial-box:hover h3 {
  color: #FFF;
}
.testimonials .t-item .testimonial-box h4 {
  font-size: 13px;
}
.testimonials .t-item .testimonial-box h4 span {
  font-family: 'Poppins', sans-serif;
}
.testimonials .t-item .testimonial-box p {
  margin-top: 30px;
  font-size: 13.5px;
}
.owl-theme .owl-nav.disabled+.owl-dots {
  margin-top: 0;
}
.owl-theme .owl-dots .owl-dot span {
  width: 11px;
  height: 11px;
  margin: 0 8px;
  background: transparent !important;
  border:2px solid #fff !important;
}
.owl-theme .owl-dots .owl-dot:focus {
  outline: none;
}
.owl-theme .owl-dots .active span {
  background: #fff !important;
}

/* --------------------------------------
  15. CLIENTS
-----------------------------------------*/
.clients {
  background-color: #f6f6f6;
  border-left: 1px solid #ebebeb;
}
.clients .owl-carousel {
  padding: 0 15px;
}

/* --------------------------------------
  16. BLOG
-----------------------------------------*/
.blog {
  padding: 120px 0 90px 0;
}
.blog .blog-item {
  border: 1px solid #e6e6e6;
  display: inline-block;
  width: 100%;
  padding: 40px;
  overflow: hidden;
  position: relative;
  margin-bottom: 30px;
}
.blog .blog-item a:focus {
  color: #111;
}
.blog .blog-item .categ {
  font-weight: 600;
  font-size: 13px;
}
.blog .blog-item a:hover {
  color: #212121;
}
.blog .blog-item h4 {
  font-size: 16px;
  line-height: 1.5;
  margin-top: 15px;
  margin-bottom: 25px;
  font-family: 'Poppins', sans-serif;
}
.blog .blog-item p {
  color: #555;
  font-weight: 400;
  font-size: 13.5px;
  margin-bottom: 25px;
}
.blog .blog-item .post-link a {
  font-size: 13px;
  font-weight: 600;
  -webkit-transition: ease-out .3s;
  -moz-transition: ease-out .3s;
  -o-transition: ease-out .3s;
  transition: ease-out .3s;
}
.blog .feature-box-img {
  bottom: 0;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  background-size: cover;
  background-position: center center;
}
.blog .feature-box-img:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(12,12,12,.7);
  opacity: 0;
}
.blog .blog-item:hover a,
.blog .blog-item:hover i,
.blog .blog-item:hover span,
.blog .blog-item:hover .feature-box-img,
.blog .blog-item:hover .feature-box-img::after,
.blog .blog-item:hover p {
  color: #FFF;
  opacity: 1;
}
.blog .ppagination {
  text-align: center;
  margin: 0 auto;
  display: inline-block;
}
.blog .ppagination ul {
  display: inline-block;
}
.blog .ppagination li {
  position: relative;
  display: block;
  float: left;
  margin: 0px 10px 0 0px;
}
.blog .ppagination li a {
  position: relative;
  display: inline-block;
  line-height: 55px;
  height: 55px;
  font-size: 16px;
  min-width: 55px;
  color: #222222;
  font-weight: 400;
  text-align: center;
  background: none;
  border: 1px solid #e6e6e6;
  text-transform: capitalize;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -o-border-radius: 50px;
  -ms-border-radius: 50px;
}
.blog .ppagination li a.active {
  color: #FFF;
}
.blog .ppagination li a:hover {
  color: #FFF;
}

/* --------------------------------------
  17. CONTACT
-----------------------------------------*/
.contact {
  background-color: #1c1c1c;
}
.contact .s-title h5 {
  color: #bbb;
}
.contact .s-title h4 {
  color: #FFF;
}
.contact .s-title p {
  color: #bbb;
}
.contact .pinfo h3 {
  font-family: 'Poppins', sans-serif;
  line-height: 40px;
  font-size: 35px;
  color: #FFF;
}
.contact .pinfo span {
  color: #bbb;
  font-size: 17px;
  font-weight: 400;
  margin: 25px 0;
  display: block; 
}
.contact .pinfo p {
  font-weight: 400;
  font-size: 14px;
  color: #bbb;
}
.contact .sc-icon {
  margin-top: 30px;
}
.contact .sc-icon span {
  width: 40px;
  height: 40px;
  line-height: 37px;
  text-align: center;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  -webkit-border-radius: 50%;
  color: #e0e0e0;
  background: transparent;
  border: 2px solid #e0e0e0;
  transition: all .3s;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  -o-transition: all .3s;
  -ms-transition: all .3s;
  display: inline-block;
  margin: 0 7px;
  font-size: 14px;
}
.contact .sc-icon span:first-child {
  margin-left: 0;
}
.contact .pconform {
  padding-left: 40px;
}
.contact .contact-item:last-child {
  margin-bottom: 0;
}
.contact .contact .item:last-child {
  margin-bottom: 0;
}
.contact .pconform span {
  display: block;
  margin-bottom: 5px;
  font-weight: 400;
}
.contact .pconform textarea,
.contact .pconform input {
  width: 100%;
  float: left;
  font-size: 15px;
  padding: 15px;
  border: none;
  background: #191919;
  border: 1px solid #191919;
  color: #FFF;
  -webkit-transition: ease-out .3s;
  -moz-transition: ease-out .3s;
  -o-transition: ease-out .3s;
  transition: ease-out .3s;
}
.contact .contact-item {
  margin-bottom: 25px;
  padding-right: 0;
}
.contact .contact-item textarea {
  height: 180px;
}
.contact .contact-item input:focus,
.contact .contact-item textarea:focus {
  outline: none;
}
.contact .contact-item .button {
  width: 100%;
  padding: 15px 60px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  word-spacing: 1px;
  transition: all .3s;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  -o-transition: all .3s;
  -ms-transition: all .3s;
  margin-bottom: 0;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  color: #FFF;
}
.contact .contact-item .button:hover {
  color: #FFF;
}
.contact .contact-item .parsley-required {
  color: #a94442;
  float: left;
  margin: 7px 0 0 0;
}
.contact .parsley-type {
  color: #a94442;
  float: left;
  margin: 7px 0 0 0;
}
.contactmap #map{
  height: 500px;
  position: relative;
}
#map{
  height: 500px;
  position: relative;
}

/*---------------------------------------
  18. FOOTER                
-----------------------------------------*/
footer {
  text-align: center;
}
footer .sc-icon span {
  width: 45px;
  height: 45px;
  line-height: 45px;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  -webkit-border-radius: 50%;
  color: #FFF;
  background: #171717;
  transition: all .3s;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  -o-transition: all .3s;
  -ms-transition: all .3s;
  display: inline-block;
  margin: 0 7px;
}
footer .sc-icon a:hover span {
  color: #FFF;
}
.sub-footer {
  text-align: center;
  padding: 20px 0;
  margin-top: 25px;
}
.sub-footer span {
  font-weight: 400;
}

/*---------------------------------------
  19. CONTACT PAGE                
-----------------------------------------*/
.contact-p {
  background: #fafafa;
}
.contact-f {
  float: none;
  text-align: center;
  background: #FFF;
  margin: 80px auto;
  padding: 60px 30px;
  -webkit-box-shadow: 0 5px 7px 0 rgba(0,0,0,0.20);
  -moz-box-shadow: 0 5px 7px 0 rgba(0,0,0,0.20);
  box-shadow: 0 5px 7px 0 rgba(0,0,0,0.20);
}
.contact-f h3 {
  font-size: 19px;
  margin-top: 30px;
}
.contact-success i {
  color: #8cc152;
}
.contact-nosuccess i {
  color: #e9573f;
}
.footer .f-co a {
  color: #232323;
}

/*---------------------------------------
  19. COOKIE CONSENT                
-----------------------------------------*/
#cookieConsent {
	text-align: center;
    background-color: rgba(0,0,0,0.8);
    min-height: 26px;
    font-size: 14px;
    color: #ccc;
    line-height: 26px;
    padding: 8px 0 8px 30px;
    font-family: "Open Sans",sans-serif;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
    z-index: 9999;
}
#cookieConsent a {
    color: #4B8EE7;
    text-decoration: none;
}
#closeCookieConsent {
    float: right;
    display: inline-block;
    cursor: pointer;
    height: 20px;
    width: 20px;
    margin: -15px 0 0 0;
    font-weight: bold;
}
#closeCookieConsent:hover {
    color: #FFF;
}
#cookieConsent a.cookieConsentOK {
    background-color: #00B4DB;
    color: #FFFFFF;
    display: inline-block;
    border-radius: 5px;
    padding: 0 20px;
    cursor: pointer;
    float: center;
    margin: 0 60px 0 10px;
}
#cookieConsent a.cookieConsentOK:hover {
    background-color: #000;
}
/*Cookie Consent End*/