/*
Author: SoftHopper
Template: Easyart - Personal Portfolio Template
Version: 1.0

Table of contents:
1. General styles
2. Typography
3. Helpers
4. Preloader
5. Buttons
6. Go up button
7. Social-list
7.1 Social-buttons
8. Specing
9. Vertical lines
10. Header and navigation
11. Banner
11.1 Banner Index
11.2 Banner Index.2
11.3 Banner Index.3
11.3 Banner Portfolio Detail
11.4 Banner Blog Post
12. About Me
13. Portfolio
13.1 Portfolio Index
13.2 Portfolio Index.2
14. Portfolio Contact
15. Services
16. Facts
17. Testimonials
18. Clients
19. Blog
20. Contact
21. Footer
22. Extra pages
22.1. Portfolio Detail
22.2. Blog Post
23. Responsive

*/
/* ----------------------------------------
   ----------- 1.GENERAL STYLES -----------
   ---------------------------------------- */
html, body {
 	height: 100%;
}
body {
 	-webkit-font-smoothing: antialiased;
  background: #fff;
 	font-family: 'Poppins', Helvetica, Arial, sans-serif;
 	font-size: 14px;
 	line-height: 1.5;
}
input::-moz-focus-inner {
    border: 0;
}
/* ----------------------------------------
   -------------- 2.TYPOGRAPHY ------------
   ---------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000;
  line-height: 1.5;
}
.number {
 	color: #000;
  line-height: 1.5;
 	margin: 0;
 	padding: 0;
}

p {
 	line-height: 24px;
  margin-bottom: 15px;
}
/* ----------------------------------------
   --------------- 3.HELPERS --------------
   ---------------------------------------- */
.no-padding {
  padding: 0;
  overflow-x: hidden;
}
.img-full {
  width: 100%;
}
.bg-white {
  background-color: #fff !important;
}
.section-title {
  margin-bottom: 96px;
}
.section-title h4 {
  font-weight: 400;
  letter-spacing: 0.08em;
  margin-top: 14px;
  font-size: 14px;
  color: #666666;
}
/* ----------------------------------------
   -------------- 4.PRELOADER -------------
   ---------------------------------------- */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
  background-color: #fff;
  overflow: hidden;
}
.preloader-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
  -moz-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
}
.preloader-icon {
  width: 72px;
  height: 72px;
  display: inline-block;
  padding: 0px;
}
.preloader-icon span {
  position: absolute;
  display: inline-block;
  width: 72px;
  height: 72px;
  border-radius: 100%;
  background-color: #425cbb;
  -webkit-animation: preloader-fx 1.6s linear infinite;
  animation: preloader-fx 1.6s linear infinite;
}
.preloader-icon span:last-child {
  animation-delay: -0.8s;
  -webkit-animation-delay: -0.8s;
}
@keyframes preloader-fx {
  0% {transform: scale(0, 0); opacity:0.5;}
  100% {transform: scale(1, 1); opacity:0;}
}
@-webkit-keyframes preloader-fx {
  0% {-webkit-transform: scale(0, 0); opacity:0.5;}
  100% {-webkit-transform: scale(1, 1); opacity:0;}
}
/* ----------------------------------------
   -------------- 5.BUTTONS ---------------
   ---------------------------------------- */
.btn {
  font-weight: 600;
  color: #fff;
  font-size: 12px;
  padding: 18px 40px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.easyart-btn {
  letter-spacing: 0.015em;
}
.btn-dark {
  background-color: #425cbb;
  border: 1px solid transparent;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.btn-dark:hover,
.btn-dark:active,
.btn-dark:focus,
.btn-dark:active:focus,
.btn-dark.active.focus,
.btn-dark.active:focus,
.btn-dark.focus,
.btn-dark:active:focus,
.btn-dark:focus {
  background-color: transparent;
  color: #425cbb;
  outline: none;
  border: 1px solid #425cbb;
}
.btn-dark2 {
  background-color: #425cbb;
  border: 1px solid transparent;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.btn-dark2:hover,
.btn-dark2:active,
.btn-dark2:focus,
.btn-dark2:active:focus,
.btn-dark2.active.focus,
.btn-dark2.active:focus,
.btn-dark2.focus,
.btn-dark2:active:focus,
.btn-dark2:focus {
  background-color: #fff;
  color: #425cbb;
  outline: none;
  border: 1px solid #fff;
}
/* ----------------------------------------
   ------------ 6.GO UP BUTTON ------------
   ---------------------------------------- */
.button-up {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 40;
  font-size: 20px;
}
.button-up .discover-line {
  width: 72px;
  height: 1px;
  background-color: #b2b2b2;
  display: inline-block;
  vertical-align: middle;
}
.button-up a {
  margin-right: 12px;
  color: #b2b2b2;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.button-up:hover a {
  color: #2e4082;
}
.button-up:hover .discover-line {
  background-color: #2e4082;
}
.button-up .discover-line,
.button-up a {
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
/* ----------------------------------------
   ------------ 7.SOCIAL-LIST -------------
   ---------------------------------------- */
.social-list li {
  display: inline-block;
  margin: 0 14px;
}
.social-list li a {
  font-size: 16px;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.social-list li:first-child {
  margin-left: 0;
}
.social-list li:last-child {
  margin-right: 0;
}
.social-list li:hover a {
  color: #425cbb;
}
/* ----------------------------------------
   ---------- 7.1.SOCIAL-BUTTONS ----------
   ---------------------------------------- */
.socials-btns {
  display: none;
  position: fixed;
  bottom: 70px;
  left: 25px;
  z-index: 40;
}
.socials-btns .social-list li {
  display: block;
  margin: 14px 0;
  text-align: center;
}
.socials-btns .social-list li:last-child {
  margin-bottom: 0;
}
.socials-btns .social-list li a {
  font-size: 14px;
  color: #b2b2b2;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.socials-btns .social-list li:hover a {
  color: #2e4082;
}
/* ----------------------------------------
   -------------- 8.SPECING ---------------
   ---------------------------------------- */
.pd-t-b-72 {
  padding-top: 72px;
  padding-bottom: 72px;
}
.pd-t-96 {
  padding-top: 96px;
}
.pd-t-b-96 {
  padding-top: 96px;
  padding-bottom: 96px;
}
.pd-t-105-b-120 {
  padding-top: 105px;
  padding-bottom: 120px;
}
.pd-t-b-120 {
  padding-top: 120px;
  padding-bottom: 120px;
}
.pd-t-b-144 {
  padding-top: 144px;
  padding-bottom: 144px;
}
.pd-t-144 {
  padding-top: 144px;
}
.pd-b-144 {
  padding-bottom: 144px;
}
/* ----------------------------------------
   ------------ 9.VERTICAL LINES ----------
   ---------------------------------------- */
.vertical-line {
  position: fixed;
  width: 1px;
  height: 100%;
  background-color: #000;
  opacity: 0.04;
}
.line1 {
  left: 16.66vw;
}
.line2 {
  left: 33.33vw;
}
.line3 {
  left: 50vw;
}
.line4 {
  left: 66.66vw;
}
.line5 {
  left: 83.33vw;
}
/* ----------------------------------------
   -------- 10.HEADER AND NAVIGATION ------
   ---------------------------------------- */
.navbar-fixed-top {
  z-index: 99;
}
.navbar-default {
  background-color: transparent;
  border-color: transparent;
  padding: 36px 0;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
  margin-top: 6px;
}
.navbar-default.navbar-light .close-btn .navbar-right > li > a {
  padding: 16px 18px;
}
.navbar-default.navbar-light .navbar-nav > li > a {
  padding: 10px 18px;
  color: #fff;
}
.navbar-default .navbar-nav > li > a {
  color: #191919;
  font-weight: 600;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
  font-size: 14px;
  padding: 10px 18px;
  letter-spacing: 0.020em;
}
.navbar-default .navbar-nav > li > a:hover {
  background-color: transparent;
}
.navbar-default .navbar-nav > li.active > a,
.navbar-default .navbar-nav > li.active > a:focus,
.navbar-default .navbar-nav > li.active > a:hover {
  background-color: transparent;
}
.top-nav-collapse {
  background-color: #fff;
  padding: 18px 0;
  -webkit-box-shadow: 0 0 6px #b8b8b9;
  -moz-box-shadow: 0 0 6px #b8b8b9;
  box-shadow: 0 0 6px #b8b8b9;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.sticky-logo {
  display: none;
}
.top-nav-collapse .sticky-logo {
  display: block;
}
.top-nav-collapse .main-logo {
  display: none;
}
.top-nav-collapse .navbar-nav > li > a,
.top-nav-collapse.navbar-light .navbar-nav > li > a,
.navbar-default.nav-portfolio-detail .navbar-nav > li > a {
  color: #191919;
}
.navbar-default.navbar-light .logo_light {
  display: block;
}
.navbar-default.navbar-light .logo_dark {
  display: none;
}
.top-nav-collapse.navbar-light .logo_dark {
  display: block;
}
.top-nav-collapse.navbar-light .logo_light {
  display: none;
}
.navbar-default .navbar-toggle {
  border: none;
}
.navbar-default.nav-portfolio-detail .navbar-brand .logo_light {
  display: none;
}
.navbar-default.nav-portfolio-detail .navbar-brand .logo_dark {
  display: block;
}
.navbar-default .navbar-toggle:focus,
.navbar-default .navbar-toggle:hover {
  background-color: transparent;
}
.navbar-default .navbar-toggle .icon-bar {
  background-color: #fff;
}
.top-nav-collapse .navbar-toggle .icon-bar {
  background-color: #191919;
}
.header-right {
  list-style: none;
  padding: 0;
  float: right;
}
.menu-search > a, .menu-cart > a, .menu-follow > a {
  padding: 10px 15px !important
}
.header-modal-content {
  display: none;
}
.apfm-container .apfm-close-button {
  top: 30px;
}
.header-search-modal {
  position: relative;
  top: 43vh;
}
.header-search-modal .form-controler {
  padding: 23px !important;
  height: 60px !important;
}
.header-search-modal .btn-default {
  padding: 23px !important;
  height: 60px !important;
}
.header-search-modal .btn.btn-default i {
  font-size: 16px !important;
}
.header-social-block {
  text-align: center;
  position: relative;
  top: 43vh;
}
.header-social-block a {
  display: inline-block;
  padding: 15px;
  font-size: 35px;
}
.search-content:focus,
.social-profile-content:focus {
  outline: none;
}
/* Dropdown Menu */
ul.navbar-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
ul.navbar-nav li {
  position: relative;
}
@media only screen and (min-width: 768px) {
  ul.navbar-nav > li ul.sub-menu,
  ul.navbar-nav > li ul.children {
    position: absolute;
    min-width: 200px;
    background: #191919;
    top: 100%;
    margin-top: 0;
    left: -1px;
    padding: 0;
    z-index: 1000; 
    line-height: 1.4;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.15);
  }
  ul.navbar-nav > li ul.sub-menu li a,
  ul.navbar-nav > li ul.children li a {
    display: block;
    padding: 12px 20px;
    color: #c0c0c0;
    border-top: 1px solid #333;
    font-size: 14px;
    font-weight: 500;
  }
  ul.navbar-nav > li ul.sub-menu li ul.sub-menu,
  ul.navbar-nav > li ul.sub-menu li ul.children {
    right: 100%;
    left: auto;
    top: 0;
    padding: 0;
  }
  ul.navbar-nav li > ul.sub-menu,
  ul.navbar-nav li > ul.children {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.28s ease-in-out;
    -moz-transition: all 0.28s ease-in-out;
    -ms-transition: all 0.28s ease-in-out;
    -o-transition: all 0.28s ease-in-out;
    transition: all 0.28s ease-in-out;
    -moz-transform: scaleY(0);
    -webkit-transform: scaleY(0);
    -o-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 0 0;
    -moz-transform-origin: 0 0;
    -o-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
  }
  ul.navbar-nav li:hover > ul.sub-menu,
  ul.navbar-nav li:focus-within > ul.sub-menu,
  ul.navbar-nav li:focus > ul.sub-menu,
  ul.navbar-nav li:hover > ul.children {
    opacity: 1;
    visibility: visible;
    display: block;
    -moz-transform: scaleY(1);
    -webkit-transform: scaleY(1);
    -o-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
  }
  .other-branding-text .navbar-nav > li > a:hover {
    color: #fff;
  }
  .menu-click {
    display: none;
  }
  body.admin-bar .navbar-fixed-top {
    top: 32px;
  }
}
@media only screen and (max-width: 767px) {
  ul.navbar-nav > li ul.sub-menu,
  ul.navbar-nav > li ul.children {
    display: none;
  }
  .menu-click {
    position: absolute;
    right: 17px;
    top: 4px;
    background: #f0f0f0;
    display: inline-block;
    padding: 8px 12px;
    font-size: 10px;
    line-height: normal;
    z-index: 5;
    cursor: pointer;
  }
  .menu-extend.fa-plus:before {
    content: "\f068";
  } 
  body.admin-bar .navbar-fixed-top {
    top: 45px;
  }
  .navbar-fixed-top.scroll {
    top: 0 !important;
  }
}
/* ----------------------------------------
   --------------- 11.BANNER --------------
   ---------------------------------------- */
.banner {
  width: 100%;
  height: 100vh;
  position: relative;
}
.banner-text {
  position: absolute;
  top: 55%;
  left: 50%;
  text-align: center;
  -webkit-transform: translate(-50%,-50%);
  -moz-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
}
.single-banner-text {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 50%;
  text-align: center;
  -webkit-transform: translate(-50%,-50%);
  -moz-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
}
.banner-text .banner-title {
  color: #000;
  margin-bottom: 8px;
  font-size: 47px;
  font-weight: 800;
  letter-spacing: 0.075em;
  margin-top: 0;
}
.banner-text .banner-subtitle {
  letter-spacing: 0.03em;
  color: #191919;
  font-size: 20px;
  font-weight: 600;
}
.banner-2 .banner-text h2,
.banner-post .banner-text h2 {
  color: #fff;
}
.banner-post .banner-text h2 {
  font-size: 45px;
  margin: 0;
}
.single-banner-text.banner-text h2 {
  font-size: 50px;
  margin: 0;
}
.banner-2 .discover a,
.banner-post .discover a,
.banner-portfolio .discover a {
  color: #fff;
}
.banner-2 .discover a:hover,
.banner-post .discover a:hover,
.banner-portfolio .discover a:hover {
  color: #425cbb;
}
.banner-2 .discover .discover-line,
.banner-post .discover .discover-line,
.banner-portfolio .discover .discover-line  {
  background-color: #fff;
}
.banner-2 .discover:hover .discover-line,
.banner-post .discover:hover .discover-line,
.banner-portfolio .discover:hover .discover-line  {
  background-color: #425cbb;
}
.single-banner-text .entry-meta,
.single-banner-text .entry-category,
.single-banner-text .entry-category a {
  color: #ddd;;
}
.single-banner-text .entry-meta > span:after {
  content: "/";
  padding: 0 10px;
}
.single-banner-text .entry-meta > span:last-of-type:after {
  visibility: hidden;
  padding-right: 0;
}
/* ----------------------------------------
   ----------- 11.1.BANNER INDEX ----------
   ---------------------------------------- */
.banner-1 {
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
}
/* ----------------------------------------
   ---------- 11.2.BANNER INDEX.2 ---------
   ---------------------------------------- */
.banner-2 {
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
}
.banner-2 .banner-text h3 {
  color: #fff;
}
/* ----------------------------------------
   --------- 11.3.BANNER PORTFOLIO --------
   ---------------------------------------- */
.banner-portfolio {
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  max-height: 720px;
}
/* ----------------------------------------
   --------- 11.4.BANNER BLOG POST --------
   ---------------------------------------- */
@media only screen and (min-width: 992px) {
  .col-md-9.main-content {
    border-right: 2px solid #ebebeb;
    padding-right: 45px;
  }
  .col-md-3.sidebar-content {
    padding-left: 45px;
  }
  .col-md-9.main-content.col-md-push-3 {
    border-right: 0 none;
    border-left: 2px solid #ebebeb;
    padding-right: 0;
    padding-left: 45px;
  }
  .col-md-3.sidebar-content.col-md-pull-9 {
    padding-left: 0;
    padding-right: 45px;
  }
} 
.banner-post {
  background-size: cover;
  background-attachment: fixed;
  height: 850px;
}
.banner-post.without-image {
  background: #191919;
  height: 505px !important;
}
.banner-post.without-image .banner-text {
  top: 62%;
}
.banner-post.without-image .banner-text.single-banner-text {
  bottom: -5%;
}
.navbar-default.without-image {
  border-color: #303030;
}
.navbar-default.without-image.top-nav-collapse {
  border-color: transparent;
}
/* ----------------------------------------
   ------------ 13.PORTFOLIO --------------
   ---------------------------------------- */
.work-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background-color: rgba(66,92,187,0.92);
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.work-overlay .work-overlay-txt {
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
  -webkit-transform: translate(-50%,-50%);
  -moz-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
}
.work-overlay .work-overlay-txt h2 {
  margin-bottom: 4px;
}
.work-overlay .work-overlay-txt h2.portfolio-tille,
.work-overlay .work-overlay-txt h4.portfolio-category {
  color: #fff;
}
.work-overlay .work-overlay-txt h2.portfolio-tille {
  font-weight: 700;
  font-size: 31px;
  line-height: 46px;
  letter-spacing: 0.04em;
}
.work-overlay .work-overlay-txt h4.portfolio-category {
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 0.025em;
}
.work-overlay .work-overlay-txt h2.portfolio-tille a:hover,
.work-overlay .work-overlay-txt h4.portfolio-category a:hover {
  color: #f6f6f6;
}

.item-work:hover .work-overlay,
.swiper-slide:hover .work-overlay {
  opacity: 1;
}
/* ----------------------------------------
   --------- 14.PORTFOLIO CONTACT ---------
   ---------------------------------------- */
.portfolio-contact {
  background-size: cover !important;
  background-attachment: fixed;
  padding-left: 15px;
  padding-right: 15px;
}
.portfolio-contact h2 {
  margin-bottom: 30px;
  color: #fff;
}

/* ----------------------------------------
   --------------- 19.BLOG ----------------
   ---------------------------------------- */
.blog-item .blog-content {
  background-color: #fff;
  padding: 30px;
  width: 100%;
}
.blog-item .blog-content .post-meta {
  margin-bottom: 25px;
  font-size: 13px;
  color: #646464;
  font-weight: 400;
  letter-spacing: 0.010em;
}
.blog-item .blog-content .post-meta a {
  color: #425cbb;
}
.blog-item .blog-content .post-meta a:hover {
  color: #222;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.blog-item .blog-content .post-meta span {
  position: relative;
  display: table-cell;
}
.blog-item .blog-content .post-meta span.entry-date {
  white-space: nowrap;
}
.blog-item .blog-content .post-meta span a {
  color: inherit;
}
.blog-item .blog-content .post-meta > span:after {
  content: "/";
  padding: 0 15px;
}
.blog-item .blog-content .post-meta > span:last-of-type:after {
  content: "";
  padding: 0;
}
.blog .post-title {
  margin-bottom: 0;
}
.blog-item .blog-content .post-title h4.entry-title {
  font-weight: 600;
  margin-bottom: 0;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.blog-item .blog-content .post-title a:hover h4 {
  color: #425cbb;
}
.pagination-link {
  text-align: center;
}
/* ----------------------------------------
   -------------- 20.CONTACT --------------
   ---------------------------------------- */
.contact-item {
  margin-left: 24px;
  margin-bottom: 24px;
}
.contact-item:first-child {
  margin-top: 14px;
}
.contact-more h4 {
  color: #425cbb;
  font-weight: 600;
  margin-bottom: 6px;
}
.contact-item .social-list {
  margin-top: 36px;
  margin-bottom: 0;
}
.contact-second form {
  margin-top: 72px;
}
.form-group {
  margin-bottom: 24px;
}
.form-control {
  color: #999999;
  font-size: 14px;
  -webkit-box-shadow: none;
  -moz-webkit-box-shadow: none;
  box-shadow: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid #cccccc;
  height: 45px;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.form-control:hover,
.form-control:active,
.form-control:focus {
  -webkit-box-shadow: none;
  -moz-webkit-box-shadow: none;
  box-shadow: none;
  border-color: #666666;
}
textarea {
  resize: vertical;
  overflow: auto;
}
.help-block{
  margin-top: 10px;
  font-size: 14px;
}
.text-danger {
  font-size: 14px;
  display: inline-block;
  margin-top: 10px;
  margin-left: 142px;
}
.contact-second form .text-danger {
  margin-left: 40px;
}
.has-error .form-control,
.has-error .form-control:focus {
  border: 0;
  border-bottom: 2px solid #b01d1b;
  -webkit-box-shadow: none;
  -moz-webkit-box-shadow: none;
  box-shadow: none;
}
.has-error .help-block,
.text-danger {
  color: #b01d1b;
}
/* ----------------------------------------
   --------------- 21.FOOTER --------------
   ---------------------------------------- */
footer .footer-middle {
  border-top: 2px solid #ebebeb;
  padding-top: 90px;
}
footer .footer-contact i {
  font-size: 16px;
  color: #425cbb;
}
footer .footer-contact p {
  display: inline-block;
  margin-top: 0;
  margin-left: 10px;
  color: #7f7f7f!important;
}
footer .footer-line {
  width: 100%;
  height: 1px;
  background-color: rgba(56,56,56,0.4);
  margin-top: 96px;
  margin-bottom: 96px;
}
footer ul,
footer ol {
  list-style: none;
  padding: 0;
}
footer .copyright {
  font-size: 13px;
  padding: 30px 0;
  letter-spacing: 0.025em;
  color: #777;
}
/* ----------------------------------------
   ------------ 22.EXTRA PAGES ------------
   ---------------------------------------- */
/* ----------------------------------------
   --------- 22.1.PORTFOLIO DETAIL --------
   ---------------------------------------- */
.portfolio-text {
  margin-bottom: 20px;
}
.portfolio-single-title {
  font-weight: 700;
  font-size: 31px;
  line-height: 46px;
  letter-spacing: 0.04em;
  margin-bottom: 0;
  margin-top: 0;
}
.portfolio-spacing .section-title {
  margin-bottom: 0;
}
.portfolio-text:last-child {
  margin-bottom: 0;
}
.portfolio-text h4 {
  color: #425cbb;
  font-weight: 600;
  margin-bottom: 2px;
}
.portfolio-spacing:first-child {
  margin-bottom: 60px;
  margin-top: 0;
}
.portfolio-spacing {
  margin-top: 30px;
}
/* ----------------------------------------
   ------------ 22.2.BLOG POST ------------
   ---------------------------------------- */
.post.sticky .entry-title {
  font-size: 36px;
}
.post .entry-title {
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 20px;
}
.blog-post h2 {
  font-size: 25px;
  line-height: 37px;
  padding: 0 36px;
  margin-bottom: 16px;
}
.blog-post h3 {
  margin-bottom: 12px;
}
.blog-post h4 {
  font-weight: 600;
  margin-top: 20px;
}
.post-content a.read-more {
  display: block;
  color: #646464;
  margin-top: 35px;
  font-weight: 500;
  font-size: 14px;
}
.post-content a.read-more i {
  margin-left: 5px;
}
.loadmore a {
  background-color: #606060;
  color: #ffffff !important;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 30px;
  font-family: Frank Ruhl Libre;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.025em;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
.blog-post .post-img {
  margin-bottom: 72px;
}
.single-related-posts {
  margin-bottom: 75px;
}
.comments-area .comments-title {
  font-size: 20px;
  font-family: inherit;
  font-weight: 500;
  margin-bottom: 30px;
}
.comment-reply-title {
  font-size: 20px;
  font-family: inherit;
  font-weight: 500;
  margin-bottom: 30px;
}
.form-submit .btn {
  border-radius: 30px;
}
.comments .comments-list {
  overflow: hidden;
}
.comments .single-comment {
  margin-bottom: 42px;
  overflow: hidden;
}
.comments .single-comment .single-comment-image {
  float: left;
  width: 60px;
  height: 60px;
  overflow: hidden;
  margin-right: 20px;
}
.comments .single-comment .single-comment-image img {
  width: 60px;
  height: 60px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.comments .single-comment-content {
  overflow: hidden;
}
.comments .single-comment-content .single-comment-content-head {
  overflow: hidden;
  margin-bottom: 10px;
}
.comments .single-comment-content .single-comment-content-head h4,
.comments .single-comment-content .single-comment-content-head span,
.comments .single-comment-content .single-comment-content-head a.comment-reply-link {
  float: left;
  display: block;
  font-size: 14px;
  font-weight: 600;
}
.comment-edit-link {
  color: inherit;
}
.single-comment-content-head .fn a {
  color: inherit;
}
.comments .single-comment-content .single-comment-content-head h4 {
  margin-right: 0;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
}
.comments .single-comment-content .comment-meta-data {
  font-size: 13px;
  color: #777;
  overflow: hidden;
  padding-top: 5px;
}
.comments .single-comment-content .comment-reply-link {
  float: right;
  color: #333;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid #ebebeb;
  padding: 6px 20px;
  border-radius: 30px;
}
.comments .single-comment-content .single-comment-content-head span {
  margin-right: 12px;
}
.comments .single-comment-content .single-comment-content-head a.comment-reply-link {
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.comments .single-comment-content .single-comment-content-head a:hover {
  color: #191919;
}
.comments-respond {
  margin-top: 60px;
}
.comments-respond h3 {
  margin-bottom: 60px;
}
.comment-navigation a {
  font-weight: 500;
  color: #fff;
  font-size: 12px;
  padding: 8px 30px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  border-radius: 3px;
  letter-spacing: 0.015em;
}
.comment-navigation .nav-previous {
  float: left;
}
.comment-navigation .nav-next {
  float: right;
}
/* ----------------------------------------
   ------------- 23.RESPONSIVE ------------
   ---------------------------------------- */
/* Extra small devices (phones, less than 768px) */
@media only screen and (max-width: 767px) {
  .button-up {
    position: fixed;
    bottom: 110px;
    right: -60px;
  }
  .pd-t-b-96 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .pd-t-b-120 {
    padding-top: 72px;
    padding-bottom: 72px;
  }
  .pd-t-144 {
    padding-top: 84px;
  }
  .pd-b-144 {
    padding-bottom: 84px;
  }
  .pd-t-b-144 {
    padding-top: 84px;
    padding-bottom: 84px;
  }
  .banner-text {
    text-align: center;
    right: 0;
    left: 50%;
  }
  .banner-text h1 {
    font-size: 31px;
    line-height: 46px;
  }
  .banner-text h3 {
    font-size: 14px;
    line-height: 24px;
  }
  .section-title {
    margin-bottom: 72px;
  }
  .navbar-default {
    background-color: #fff;
    padding: 17px 0;
    -webkit-box-shadow: 0 0 6px #b8b8b9;;
    -moz-box-shadow: 0 0 6px #b8b8b9;;
    box-shadow: 0 0 6px #b8b8b9;
  }
  .navbar-default.navbar-light .logo_light {
    display: none;
  }
  .navbar-toggle {
    margin-top: 12px;
  }
  .navbar-brand {
    padding: 18px 15px;
  }
  .navbar-default.navbar-light .logo_dark {
    display: block;
  }
  .navbar-default .navbar-toggle .icon-bar {
    background-color: #191919;
  }
  .navbar-default .navbar-nav li a {
    color: #191919!important;
    font-weight: 600;
    padding: 10px 18px;
    letter-spacing: 0.020em;
    display: block;
  }
  .navbar-default .navbar-nav li .sub-menu {
    padding-left: 10px;
  }
  .navbar-default.navbar-light .close-btn .navbar-right > li > a {
    padding: 8px 18px;
  }
  .navbar-default .close-btn {
    display: inline-block;
    float: right;
    margin-top: -48px;
  }
  .navbar-default .close-btn .navbar-right > li > a {
    padding: 8px 18px;
    margin-top: 0;
  }
  .text-danger {
    display: block;
    margin-top: 12px;
  }
}
/* Small devices (tablets, 768px - 991px) */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-default.navbar-light .navbar-nav > li > a {
    padding: 9px 14px;
    color: #fff;
  }
  .top-nav-collapse.navbar-light .navbar-nav > li > a,
  .navbar-default .navbar-nav > li > a {
    padding: 9px 14px;
    color: #191919;
  }
  .button-up {
    position: fixed;
    bottom: 110px;
    right: -46px;
  }
  .socials-btns {
    position: fixed;
    bottom: 36px;
    left: 24px;
  }
  .section-title {
    margin-bottom: 72px;
  }
}

.search-item {
  margin-bottom: 45px;
}
.search-item .blog-content {
  padding-left: 0;
}
@media only screen and (max-width: 767px) {
  .search-item .blog-content {
    padding: 0;
  }
}

/* ----------------------------------------
  ------------- 23.Widgets ------------
  ---------------------------------------- */
.mc4wp-form input[type="email"] {
  padding: 10px 12px;
  font-size: 14px;
  border: 0 none;
  background: #f5f5f5;
  margin-bottom: 10px;
  width: 75%;
}
.mc4wp-form input[type="submit"] {
  border: 0 none;
  padding: 10px 30px;;
  position: relative;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 10px;
}

.feed-wrapper {
  padding-bottom: 18px;
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
}
.feed-wrapper .image-area {
  width: 75px;
  height: 75px;
  float: left;
  margin-right: 15px;
}
.feed-wrapper .image-area .fit-img {
  position: relative;
  overflow: hidden;
}
.feed-wrapper .image-area img {
  width: 100%;
  height: 100%;
}
.feed-wrapper .item-text {
  display: table-cell;
}
.feed-wrapper .item-text h5 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.4em;
  display: block;
  font-weight: bold;
}
.feed-wrapper .item-meta {
  font-size: 12px;
  color: #b3b3b3;
  word-spacing: 0.1em;
}
.feed-wrapper .item-meta a:hover {
  text-decoration: underline;
}

.feed-wrapper:last-child {
  margin-bottom: 0;
  border: 0 none;
}

.follow-us-area .follow-link {
  background: #f5f5f5;
  display: inline-block;
  padding: 10px 20px;
  margin-right: 5px;
  margin-bottom: 5px;
  font-size: 13px;
  font-weight: 500;
  color: #333333;
}
.follow-us-area .follow-link i {
  margin-right: 5px;
}
.follow-us-area .follow-link span {
  text-transform: capitalize;
}
.widget_media_gallery .gallery-item {
  position: relative;
}
.widget_media_gallery .gallery-item .gallery-icon a {
  position: relative;
  display: inline-block;
}
.widget_media_gallery .gallery-item .gallery-icon a:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  background-image: -webkit-gradient(linear,left top,left bottom,from(transparent),color-stop(50%,transparent),color-stop(60%,rgba(0,0,0,0.05)),color-stop(93%,rgba(0,0,0,0.6)),to(rgba(0,0,0,0.59)));
  background-image: -webkit-linear-gradient(transparent 0%,transparent 50%,rgba(0,0,0,0.05) 60%,rgba(0,0,0,0.6) 93%,rgba(0,0,0,0.59) 100%);
  background-image: linear-gradient(transparent 0%,transparent 50%,rgba(0,0,0,0.05) 60%,rgba(0,0,0,0.6) 93%,rgba(0,0,0,0.59) 100%);
}
.widget_media_gallery .gallery-item .gallery-caption {
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
}
.footer-middle .widget {
  margin-bottom: 45px;
}