@charset "utf-8";
/*------------------------------------------------------------------
[Main Theme Styles]

Project:  Law & Justice - Attorney & Lawyers WordPress theme
Author: Diego Pereira & Thais Barbosa @ Themebear.co
Version:  1.1.4.2
Last change:  27/02/2017
Primary use:  Attorneys & Law Office

/*------------------------------------------------------------------
[Table of contents]

00. Imports
01. General
02. Page Loader
03. Header
04. Footer
05. Section: Hero Slideshow
06. Section: Practice Areas
07. Section: Counters
08. Section: Team
09. Section: About
10. Section: Testimonials
11. Section: Clients
12. Section: News & Posts
13. Section: Sidebar
14. Section: Pagination
15. Section: Comments
16. Contact-form 7
17. Crossbrowser Solutions

-------------------------------------------------------------------*/
/* ==========================================================
! >> 00. IMPORTS - MIXINS / VARIABLES (LESS)
==============	=========================================== */
/*--------------------------------------------------------------
>>> _S BASE STYLES - TABLE OF CONTENTS
----------------------------------------------------------------
            # Normalize
            # Typography
            # Elements
            # Forms
            # Navigation
              ## Links
              ## Menus
            # Accessibility
            # Alignments
            # Clearings
            # Widgets
            # Content
              ## Posts and pages
              ## Asides
              ## Comments
            # Infinite scroll
            # Media
              ## Captions
              ## Galleries
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
  box-sizing: border-box;
}
*,
*:before,
*:after {
  /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
  box-sizing: inherit;
}
body {
  background: #fff;
  /* Fallback for when there is no custom background color defined. */
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
}
blockquote,
q {
  quotes: "" "";
}
hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}
ul,
ol {
  margin: 0 0 1.5em 3em;
}
ul {
  list-style: disc;
}
ol {
  list-style: decimal;
}
li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 1.5em;
}
dt {
  font-weight: bold;
}
dd {
  margin: 0 1.5em 1.5em;
}
img {
  height: auto;
  /* Make sure images are scaled correctly. */
  max-width: 100%;
  /* Adhere to container width. */
}
table {
  margin: 0 0 1.5em;
  width: 100%;
}
/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  border: 1px solid;
  border-color: #ccc #ccc #bbb;
  border-radius: 3px;
}
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
  border-color: #ccc #bbb #aaa;
}
button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
  border-color: #aaa #bbb #bbb;
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
  color: #666;
  border: 1px solid #ccc;
  border-radius: 3px;
}
select {
  border: 1px solid #ccc;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
  color: #111;
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"] {
  padding: 3px;
}
textarea {
  padding-left: 3px;
  width: 100%;
}
/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
  color: royalblue;
}
a:visited {
  color: purple;
}
a:hover,
a:focus,
a:active {
  color: midnightblue;
}
a:focus {
  outline: thin dotted;
}
a:hover,
a:active {
  outline: 0;
}
/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.main-navigation {
  clear: both;
  display: block;
  float: left;
  width: 100%;
}
.main-navigation ul {
  display: none;
  list-style: none;
  margin: 0;
  padding-left: 0;
}
.main-navigation li {
  float: left;
  position: relative;
}
.main-navigation a {
  display: block;
  text-decoration: none;
}
.main-navigation ul ul {
  float: left;
  position: absolute;
  top: 1.5em;
  left: -999em;
  z-index: 99999;
}
.main-navigation ul ul ul {
  left: -999em;
  top: 0;
}
.main-navigation ul ul a {
  width: 200px;
}
.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
  left: auto;
}
.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
  left: 100%;
}
/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
  display: block;
}
@media screen and (min-width: 37.5em) {
  .menu-toggle {
    display: none;
  }
  .main-navigation ul {
    display: block;
  }
}
.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
  margin: 0 0 1.5em;
  overflow: hidden;
}
.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
  float: left;
  width: 50%;
}
.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
  float: right;
  text-align: right;
  width: 50%;
}
/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}
/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
  outline: 0;
}
/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em;
}
.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em;
}
.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
  content: "";
  display: table;
  table-layout: fixed;
}
.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
  clear: both;
}
/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
  margin: 0 0 1.5em;
}
/* Make sure select elements fit in widgets. */
.widget select {
  max-width: 100%;
}
/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
  display: block;
}
.hentry {
  margin: 0 0 1.5em;
}
.byline,
.updated:not(.published) {
  display: none;
}
.single .byline,
.group-blog .byline {
  display: inline;
}
.page-content,
.entry-content,
.entry-summary {
  margin: 1.5em 0 0;
}
.page-links {
  clear: both;
  margin: 0 0 1.5em;
}
/*--------------------------------------------------------------
## Asides
--------------------------------------------------------------*/
.blog .format-aside .entry-title,
.archive .format-aside .entry-title {
  display: none;
}
/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
  word-wrap: break-word;
}
.bypostauthor {
  display: block;
}
/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
  /* Theme Footer (when set to scrolling) */
  display: none;
}
/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
  display: block;
}
/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}
/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}
/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}
.wp-caption img[class*="wp-image-"] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}
.wp-caption-text {
  text-align: center;
}
/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
  margin-bottom: 1.5em;
}
.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%;
}
.gallery-columns-2 .gallery-item {
  max-width: 50%;
}
.gallery-columns-3 .gallery-item {
  max-width: 33.33%;
}
.gallery-columns-4 .gallery-item {
  max-width: 25%;
}
.gallery-columns-5 .gallery-item {
  max-width: 20%;
}
.gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}
.gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}
.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}
.gallery-columns-9 .gallery-item {
  max-width: 11.11%;
}
.gallery-caption {
  display: block;
}
.color1 {
  color: #666668;
}
.color2 {
  color: #111111;
}
.color3 {
  color: #ebebeb;
}
.color4 {
  color: #000000;
}
.color5 {
  color: #79560c;
}
.font1 {
  font-family: Montserrat, sans-serif;
}
.font2 {
  font-family: Roboto, sans-serif;
}
.anima1 {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.anima-none {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  transition: none !important;
}
.anima-transform {
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  transition-property: transform;
}
.background-cover,
.bg-cover {
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.vertically-centered {
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  position: absolute;
  top: 50%;
}
.horizontally-centered {
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  position: absolute;
  left: 50%;
}
.absolute-centered {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
.no-transform {
  transform: none !important;
  -webkit-transform: none !important;
  -moz-transform: none !important;
  -o-transform: none !important;
}
.responsive-image {
  width: 100%;
}
.no-pl {
  padding-left: 0 !important;
}
.no-pr {
  padding-right: 0 !important;
}
.no-padding {
  padding: 0 !important;
}
.clean-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.clean-list li {
  padding-left: 0;
  margin-left: 0;
}
.clearfix:after {
  content: '';
  display: block;
  clear: both;
}
.position-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}
/* ==========================================================
! >> 01. General
========================================================== */
html {
  padding-top: 0;
  margin-top: 0 !important;
}
body {
  color: #414042;
  font-family: Roboto, sans-serif;
  font-size: 18px;
  line-height: 24px;
  display: block;
  padding-left: 12px;
  padding-right: 12px;
}
@media (min-width: 768px) {
  body {
    padding-left: 0;
    padding-right: 0;
  }
}
body.admin-bar {
  margin: 0;
}
@media (min-width:992px) {
  body.admin-bar {
    padding-top: 32px;
  }
}
p {
  font-size: 14px;
  font-weight: 300;
}
a {
  color: #666668;
}
a:hover {
  color: #111111;
}
html,
body {
  overflow-x: hidden;
  width: 100%;
}
#body-content {
  background: #ffffff;
}
.page-wrapper {
  margin-top: 77px;
  width: 100%;
}
@media (min-width: 768px) {
  .page-wrapper {
    margin-top: 94px;
  }
}
@media (min-width:992px) {
  .page-wrapper {
    margin-top: 144px;
  }
}
@media (min-width: 1400px) {
  .page-wrapper {
    margin-top: 255px;
  }
}
h1,
h2 {
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Montserrat, sans-serif;
  font-weight: bold;
}
h3,
h4,
h5,
h6 {
  margin-bottom: 7px;
  font-family: Montserrat, sans-serif;
  font-weight: bold;
}
.h3,
.h4,
.h5,
.h6 {
  margin-bottom: 7px;
  font-family: Montserrat, sans-serif;
  font-weight: bold;
}
.title2 {
  text-transform: uppercase;
  font-size: 24px;
  line-height: 1.3;
  position: relative;
}
@media (min-width: 768px) {
  .title2 {
    font-size: 32px;
    margin-bottom: 20px;
  }
}
h1 {
  text-transform: uppercase;
  font-size: 24px;
  line-height: 1.3;
  position: relative;
}
@media (min-width: 768px) {
  h1 {
    font-size: 32px;
    margin-bottom: 20px;
  }
}
@media (min-width: 768px) {
  h1 {
    font-size: 30px;
  }
}
h2 {
  text-transform: uppercase;
  font-size: 24px;
  line-height: 1.3;
  position: relative;
}
@media (min-width: 768px) {
  h2 {
    font-size: 32px;
    margin-bottom: 20px;
  }
}
@media (min-width: 768px) {
  h2 {
    font-size: 26px;
  }
}
a {
  text-decoration: none !important;
}
a:focus {
  border: none;
  outline: none;
}
.list-inline {
  margin: 0;
  padding: 0;
}
#MobileMenu {
  color: #000000;
  cursor: pointer;
  font-size: 35px;
  top: 11px;
  right: 15px;
  position: relative;
}
@media (min-width: 768px) {
  #MobileMenu {
    top: 17px;
    font-size: 40px;
  }
}
#MobileMenu.menu-clicked:before {
  content: "\f00d";
}
.primary-btn {
  font-family: Montserrat, sans-serif;
  display: inline-block;
  border: 2px solid #666668 !important;
  color: #666668 !important;
  background-color: transparent;
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none !important;
  padding: 15px 35px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  text-align: center;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.primary-btn.light-color {
  color: #ffffff !important;
  border: 2px solid #ffffff !important;
}
.primary-btn.light-color:before {
  transform: translate(0, -100%);
  -webkit-transform: translate(0, -100%);
  -moz-transform: translate(0, -100%);
  background-color: #666668;
}
.primary-btn.light-color:hover {
  color: #ffffff;
  border-color: #666668 !important;
}
.primary-btn.light-color:hover:before {
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
}
.primary-btn:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #666668;
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(0, 100%);
  -webkit-transform: translate(0, -100%);
  -moz-transform: translate(0, -100%);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  z-index: -1;
}
.primary-btn:hover {
  color: #ffffff !important;
}
.primary-btn:hover:before {
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
}
.primary-btn .btn-icon {
  margin-right: 15px;
  display: inline-block;
  margin-top: -14px;
}
@media (min-width: 1400px) {
  .primary-btn .btn-icon {
    margin-top: 0;
  }
}
.social-icons {
  overflow: hidden;
  list-style: none;
  margin: 0;
  padding: 0;
}
.social-icons li {
  padding-left: 0;
  margin-left: 0;
}
.social-icons a {
  display: block;
  height: 30px;
  width: 30px;
  background-color: #666668;
  border: 1px solid #666668;
  text-align: center;
  font-size: 18px;
  padding-top: 2px;
  color: #ffffff;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.social-icons a:hover {
  background-color: #111111;
}
.top-bar-append {
  display: block;
}
@media (min-width:992px) {
  .top-bar-append {
    display: none;
  }
}
.text-light {
  color: #ffffff !important;
}
.title-section {
  text-transform: uppercase;
  font-size: 30px;
  line-height: 40px;
  position: relative;
  font-family: Montserrat, sans-serif;
}
.title-section:after {
  display: none;
}
@media (min-width: 768px) {
  .title-section:after {
    content: "";
    width: 108px;
    height: 8px;
    background-color: #666668;
    display: inline-block;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    position: absolute;
    top: 50%;
    margin-left: 10px;
  }
}
@media (min-width: 768px) {
  .title-section {
    font-size: 35px;
    margin-bottom: 40px;
    line-height: 50px;
  }
}
@media (min-width: 1400px) {
  .title-section {
    margin-bottom: 60px;
    font-size: 42px;
  }
}
.title1 {
  text-transform: uppercase;
  font-size: 28px;
  line-height: 1.3;
  position: relative;
  font-family: Montserrat, sans-serif;
}
.title1:after {
  display: none;
}
@media (min-width: 768px) {
  .title1:after {
    content: "";
    width: 108px;
    height: 8px;
    background-color: #666668;
    display: inline-block;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    position: absolute;
    top: 50%;
    margin-left: 10px;
  }
}
@media (min-width: 768px) {
  .title1 {
    font-size: 35px;
    margin-bottom: 40px;
    line-height: 1.3;
  }
}
.line-block {
  content: "";
  width: 100px;
  height: 4px;
  margin-bottom: 20px;
  background-color: #666668;
  display: block;
  margin-left: 0;
}
body .kc_text_block {
  text-align: left;
}
body .kc-row-container {
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width:992px) {
  body .kc-row-container {
    padding-left: 0;
    padding-right: 0;
  }
}
.section.with-dark-bg {
  color: #ffffff;
}
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #666668;
  font-size: 20px;
  height: 30px;
  width: 30px;
  color: #ffffff;
  text-align: center;
  font-size: 18px;
  padding-top: 1px;
  cursor: pointer;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
}
.back-to-top-hide {
  visibility: hidden;
  opacity: 0;
  transform: translateY(20px);
  -webkit-transform: translateY(20px);
  -moz-transform: translateY(20px);
}
.tags a {
  display: inline-block;
  text-align: center;
  color: #ffffff;
  background-color: #666668;
  font-size: 14px;
  line-height: 14px;
  padding: 10px 18px;
  margin: 0 4px 8px 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.tags a:hover {
  background-color: #111111;
}
.owl-carousel.owl-theme.common-carousel {
  padding: 0;
}
@media (min-width: 768px) {
  .owl-carousel.owl-theme.common-carousel {
    padding: 0;
  }
}
.owl-carousel.owl-theme.common-carousel .owl-next,
.owl-carousel.owl-theme.common-carousel .owl-prev {
  background: none;
  font-size: 50px;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  position: absolute;
  top: 50%;
}
@media (min-width: 768px) {
  .owl-carousel.owl-theme.common-carousel .owl-next,
  .owl-carousel.owl-theme.common-carousel .owl-prev {
    padding: 0 20px;
  }
}
.owl-carousel.owl-theme.common-carousel .owl-next {
  right: -20px;
}
@media (min-width: 768px) {
  .owl-carousel.owl-theme.common-carousel .owl-next {
    right: 0;
  }
}
.owl-carousel.owl-theme.common-carousel .owl-prev {
  left: -20px;
}
@media (min-width: 768px) {
  .owl-carousel.owl-theme.common-carousel .owl-prev {
    left: 0;
  }
}
.content-area.posts {
  padding-top: 0;
}
.page-heading {
  background-color: #222;
  padding: 20px 0;
  padding-top: 65px !important;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .page-heading {
    padding: 20px 0;
  }
}
.page-heading.no-margin {
  margin-bottom: 0 !important;
}
.page-heading .page-title {
  font-size: 32px;
  line-height: 1.1;
  margin-bottom: 0;
  color: #ffffff;
  text-transform: uppercase;
  position: relative;
}
@media (min-width: 768px) {
  .page-heading .page-title:after {
    content: "";
    display: none;
    height: 2px;
    width: 200px;
    max-width: 100%;
    background-color: #ffffff;
    position: absolute;
    margin: 30px;
  }
}
.page-heading .taxonomy-description {
  color: #ffffff;
  margin-bottom: 0;
}
.page-heading .taxonomy-description p {
  margin: 0;
  opacity: 0.7;
  font-style: italic;
  font-size: 12px;
}
#content {
  padding-top: 65px;
}
@media (min-width: 768px) {
  #content {
    padding-top: 110px;
  }
}
.admin-bar #content {
  padding-top: 80px;
}
html .kc_col-sm-12 {
  padding-left: 0;
  padding-right: 0;
}
table thead th {
  background: #666668;
  color: #ffffff;
  border: 1px solid #fff;
  padding: 8px;
  padding-top: 12px;
  padding-bottom: 12px;
}
table td,
table tbody th {
  border: 1px solid #ddd;
  padding: 8px;
  font-size: 12px;
}
/* ==========================================================
! 02. Page Loader
========================================================== */
#page-loader {
  display: none;
  visibility: hidden;
  width: 100%;
  height: 100%;
  color: #ffffff;
  opacity: 1;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  -webkit-transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  font-family: Montserrat, sans-serif;
}
@media (min-width: 768px) {
  #page-loader {
    display: block;
    visibility: visible;
  }
}
#page-loader:before {
  content: '';
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: #111111;
  z-index: 1;
  -webkit-transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}
#page-loader:after {
  content: '';
  display: block;
  position: fixed;
  z-index: 1;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: #111111;
  -webkit-transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}
.loader-out {
  opacity: 0;
}
.loader-out:before {
  transform: translateX(-600px);
  -moz-transform: translateX(-600px);
  -webkit-transform: translateX(-600px);
  opacity: 0;
}
.loader-out:after {
  transform: translateX(600px);
  -moz-transform: translateX(600px);
  -webkit-transform: translateX(600px);
  opacity: 0;
}
.loading-wrapper {
  width: 250px;
  position: fixed;
  top: 50%;
  margin-top: -70px;
  left: 50%;
  margin-left: -125px;
  opacity: 1;
  -webkit-transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  z-index: 9;
  transform: translateY(0px);
  -moz-transform: translateY(0px);
  -webkit-transform: translateY(0px);
}
.loading-wrapper-hide {
  opacity: 0;
  -webkit-transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  transform: translateY(-20px);
  -moz-transform: translateY(-20px);
  -webkit-transform: translateY(-20px);
}
.tp-loader {
  z-index: 10000;
  position: relative;
}
.loader-name {
  color: #ffffff;
  opacity: 0.8;
  text-align: center;
  letter-spacing: 0px;
  padding-left: 2px;
  padding-right: 2px;
  font-weight: bold;
  margin-top: 45px;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  margin-bottom: 35px;
}
.loader-name img {
  max-width: 230px;
}
.loader-job {
  border: 1px solid #ffffff;
  padding: 5px;
  text-align: center;
  font-weight: 200;
  margin-top: 5px;
  color: #ffffff;
  font-size: 13px;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.loader-left {
  -webkit-transform: translateX(-40px);
  -moz-transform: translateX(-40px);
  -o-transform: translateX(-40px);
  transform: translateX(-40px);
  opacity: 0;
}
.loader-right {
  -webkit-transform: translateX(40px);
  -moz-transform: translateX(40px);
  -o-transform: translateX(40px);
  transform: translateX(40px);
  opacity: 0;
}
.loader-up {
  -webkit-transform: translateY(-80px);
  -moz-transform: translateY(-80px);
  -o-transform: translateY(-80px);
  transform: translateY(-80px);
  opacity: 0 !important;
}
.loader-down {
  -webkit-transform: translateY(80px);
  -moz-transform: translateY(80px);
  -o-transform: translateY(80px);
  transform: translateY(80px);
  opacity: 0;
}
.loader-hide {
  opacity: 0;
}
.loader {
  display: inline-block;
  text-align: center;
  margin: 0 auto;
  width: 30px;
  height: 30px;
  position: relative;
  border: 4px solid #Fff;
  top: 50%;
  animation: loader 2s infinite ease;
}
.loader-inner {
  vertical-align: top;
  display: inline-block;
  width: 100%;
  background-color: #fff;
  animation: loader-inner 2s infinite ease-in;
}
.loader-animation {
  text-align: center;
}
.mask-loading {
  widows: 100%;
  background-color: transparent;
}
.spinner {
  width: 50px;
  height: 50px;
  position: relative;
  margin: 0 auto;
}
.double-bounce1,
.double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #fff;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: sk-bounce 2s infinite ease-in-out;
  animation: sk-bounce 2s infinite ease-in-out;
}
.double-bounce2 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}
@-webkit-keyframes sk-bounce {
  0%,
  100% {
    -webkit-transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
  }
}
@keyframes sk-bounce {
  0%,
  100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
/* ==========================================================
! 03. Header
========================================================== */
#top-bar {
  background-color: #111111;
  color: #ffffff;
  padding-top: 7px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  display: block;
  z-index: 999;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  height: 45px;
}
@media (min-width:992px) {
  #top-bar {
    display: block;
  }
}
#top-bar a {
  color: #ffffff;
  font-weight: 300;
}
#top-bar .top-bar-item {
  border-left: 1px dotted rgba(255, 255, 255, 0.5);
  padding-top: 3px;
  font-size: 11px;
  opacity: 0.9;
  font-weight: lighter;
  font-style: italic;
  padding-right: 3px;
  margin-left: 0;
}
@media (min-width:992px) {
  #top-bar .top-bar-item {
    padding: 0 15px;
    font-size: 12px;
  }
}
#top-bar .top-bar-item:first-child {
  padding-left: 0;
  border-left: none;
  margin-top: 2px;
}
@media (min-width: 1400px) {
  #top-bar .top-bar-item:first-child {
    margin-top: 0;
  }
}
#top-bar .top-bar-item .fa {
  color: #666668;
  margin-right: 10px;
}
#top-bar .social-icons-wrapper {
  display: none;
}
@media (min-width:992px) {
  #top-bar .social-icons-wrapper {
    display: block;
  }
}
#top-bar .social-icons {
  margin-top: 1px;
}
#top-bar .social-icons a {
  width: 25px;
  height: 25px;
  font-size: 13px;
  padding-top: 5px;
  line-height: 1;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
#top-bar.topbar-hide {
  transform: translateY(-100%);
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  opacity: 0;
}
.navbar-collapse {
  border-top: 0 !important;
  margin-top: 20px;
  background: rgba(0, 0, 0, 0.9);
}
.navbar-collapse a {
  color: #fff !important;
}
@media (min-width: 768px) {
  .navbar-collapse {
    background-color: transparent;
    margin-top: 0;
    display: block;
    width: 100%;
    text-align: right;
    padding-right: 0;
    margin-right: 0;
  }
}
@media (min-width: 768px) {
  .masthead-wrapper {
    display: flex;
    align-items: center;
  }
}
.navbar-default {
  background-color: transparent !important;
  border: 0;
  padding: 0;
  margin: 0;
}
.navbar-default .navbar-toggle {
  background-color: #ffffff;
  color: #666668;
  position: relative;
  top: 0px;
}
.navbar-default .navbar-toggle .icon-bar {
  background-color: #666668;
}
.navbar-default .navbar-nav {
  border: 0 !important;
}
@media (min-width:992px) {
  .navbar-default .navbar-nav {
    padding-top: 3px;
    display: inline-block;
    float: none;
  }
}
.navbar-default .navbar-nav a {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 768px) {
  .navbar-default .navbar-nav a {
    color: #000000 !important;
  }
}
@media (min-width: 768px) {
  .navbar-default .navbar-nav a:hover {
    color: #000000 !important;
  }
}
.navbar-default .navbar-nav > li {
  margin-left: 2px;
}
.navbar-default .navbar-nav > li.active > a {
  border-color: #666668;
  background-color: transparent;
}
@media (min-width: 768px) {
  .navbar-default .navbar-nav > li.active > a {
    color: #000000 !important;
  }
}
.navbar-default .navbar-nav > li > a {
  font-family: Montserrat, sans-serif;
  display: block;
  text-transform: uppercase;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  border: none;
  font-weight: bold;
  border: 2px solid transparent;
  position: relative;
}
@media (min-width: 768px) {
  .navbar-default .navbar-nav > li > a {
    color: #000000 !important;
  }
}
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a.active {
  background-color: transparent;
  border-color: #666668;
}
@media (min-width: 768px) {
  .navbar-default .navbar-nav > li > a:hover,
  .navbar-default .navbar-nav > li > a.active {
    color: #000000 !important;
  }
}
.navbar-default .navbar-nav > li > a:hover:after,
.navbar-default .navbar-nav > li > a.active:after {
  opacity: 1;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
}
@media (min-width: 768px) {
  .navbar-default .navbar-nav > li > a {
    font-size: 14px;
    line-height: 20px;
    padding: 10px 5px;
  }
}
@media (min-width: 1200px) {
  .navbar-default .navbar-nav > li > a {
    font-size: 15px;
    line-height: 20px;
    padding: 10px 20px;
  }
}
.navbar-default .navbar-nav > li:first-child a {
  margin-left: 0;
}
.navbar-default .navbar-nav > li:first-child:before {
  display: none;
}
.navbar-default .navbar-nav .dropdown ul {
  padding-top: 0;
  padding-bottom: 0;
  border: 0;
}
.navbar-default .navbar-nav .dropdown li {
  margin: 0;
  padding: 0;
}
.navbar-default .navbar-nav .dropdown li,
.navbar-default .navbar-nav .dropdown a {
  margin: 0;
  display: block;
}
.navbar-default .navbar-nav .dropdown li:hover,
.navbar-default .navbar-nav .dropdown a:hover,
.navbar-default .navbar-nav .dropdown li:focus,
.navbar-default .navbar-nav .dropdown a:focus,
.navbar-default .navbar-nav .dropdown li:active,
.navbar-default .navbar-nav .dropdown a:active {
  background-color: transparent;
}
.navbar-default .navbar-nav .dropdown.open > a {
  background-color: transparent;
}
@media (min-width: 768px) {
  .navbar-default .navbar-nav .dropdown.open .dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    visibility: visible;
  }
}
.navbar-default .navbar-nav .dropdown-menu {
  background: #666668 !important;
  text-align: center;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 768px) {
  .navbar-default .navbar-nav .dropdown-menu {
    transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    display: block;
    visibility: hidden;
    opacity: 0;
  }
}
@media (min-width:992px) {
  .navbar-default .navbar-nav .dropdown-menu {
    text-align: left;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    overflow: hidden;
  }
}
.navbar-default .navbar-nav .dropdown-menu a {
  color: #fff !important;
  padding-top: 12px;
  padding-bottom: 12px;
  background-color: transparent !important;
}
.navbar-default .navbar-nav .dropdown-menu a:hover {
  background: #555557;
}
.navbar-default .navbar-nav .open .dropdown-menu > .active > a,
.navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus,
.navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover {
  background-color: transparent !important;
}
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:focus,
.dropdown-menu > .active > a:hover {
  background: #555557;
}
#masthead {
  position: fixed;
  left: 0;
  width: 100%;
  padding: 10px 0;
  z-index: 10;
  background-color: #ffffff;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  z-index: 8888;
  border-bottom: 1px solid #eee;
  margin: 0;
  top: 45px;
}
#masthead .header-logo {
  width: 314px;
  display: block;
}
#masthead .header-logo .site-title {
  margin-bottom: 0;
  font-size: 32px;
  line-height: 1;
  margin-top: 0px;
  font-weight: bold;
  text-transform: uppercase;
  color: #666668 !important;
}
#masthead .header-logo .site-title a {
  color: #666668 !important;
  text-decoration: none;
}
#masthead .header-logo .site-description {
  color: #666668 !important;
  opacity: 0.8;
}
#masthead .header-logo p {
  margin: 0;
}
#masthead .header-logo img {
  max-width: 160px;
}
@media (min-width: 768px) {
  #masthead .header-logo img {
    max-width: 100%;
  }
}
#masthead .custom-logo-link {
  display: inline-block;
  padding-top: 8px;
  padding-bottom: 8px;
}
#masthead.header-stick {
  position: fixed;
  top: 0;
  background: rgba(255, 255, 255, 0.9);
}
@media (min-width: 768px) {
  #masthead.header-stick:hover {
    opacity: 1;
  }
  #masthead.header-stick .logo {
    width: 150px;
    margin-top: 3px;
  }
}
.admin-bar #masthead {
  top: 77px;
}
.admin-bar #masthead.header-stick {
  top: 0;
}
@media (min-width:992px) {
  .admin-bar #masthead.header-stick {
    top: 32px;
  }
}
.admin-bar #top-bar {
  top: 32px;
}
/* ==========================================================
! 04. Footer
========================================================== */
#colophon {
  background-color: #222222;
  color: rgba(255, 255, 255, 0.7);
  padding-top: 0px;
}
#colophon .footer-top {
  padding-top: 40px;
  padding-bottom: 40px;
}
#colophon .widget-title {
  margin-top: 15px;
  font-size: 15px;
}
@media (min-width:992px) {
  #colophon .widget-title {
    margin-top: 0;
  }
}
#colophon div,
#colophon p,
#colophon a,
#colophon li {
  font-weight: lighter;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.5;
}
#colophon .widget {
  margin-bottom: 0;
}
#colophon .widget li {
  border-bottom: 1px dotted rgba(255, 255, 255, 0.3);
  padding-top: 0;
  padding-left: 15px;
  margin-bottom: 10px;
  background-position: 5px 5px!important;
}
#colophon .footer-bottom {
  background-color: #111111;
  margin-top: 0px;
  font-size: 14px;
  padding-top: 20px;
  padding-bottom: 20px;
}
#colophon .footer-bottom p {
  font-size: 14px;
  margin-bottom: 0;
}
#colophon .footer-bottom .site-quote {
  padding-top: 7px;
}
#colophon .footer-logo {
  margin-bottom: 10px;
}
#colophon .footer-contact .fa {
  color: #666668;
  margin-right: 10px;
  font-size: 25px;
  position: absolute;
  left: 0;
}
#colophon .footer-contact .fa.fa-envelope {
  font-size: 16px;
}
#colophon .footer-contact li {
  position: relative;
  padding-left: 35px;
  font-size: 13px;
  line-height: 20px;
  margin-bottom: 10px;
}
@media (min-width: 1200px) {
  #colophon .footer-contact li {
    font-size: 12px;
  }
}
#colophon .footer-title {
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 5px;
  text-transform: uppercase;
}
#colophon .footer-title.with-border {
  border-bottom: 1px solid #666668;
}
#colophon .tags {
  margin-top: 20px;
}
#colophon .footer-links a {
  display: block;
  border: 1px solid #666668;
  padding: 12px;
  margin-top: 10px;
  font-size: 13px;
  text-align: left;
  text-transform: uppercase;
}
@media (min-width: 1200px) {
  #colophon .footer-links a {
    padding: 8px;
    margin-top: 8px;
    font-size: 10px;
  }
}
#colophon .footer-links .footer-links-icon {
  margin-right: 10px;
}
@media (min-width: 1200px) {
  #colophon .tags a {
    font-size: 10px;
    line-height: 10px;
    padding: 5px 18px 6px;
  }
}
.footer-social-icons .social-icons-list {
  margin: 0;
  padding: 0;
}
.footer-social-icons .social-icons-list li {
  display: inline-block;
  list-style: none;
  border-bottom: 0 !important;
}
.footer-social-icons .social-icons-list a {
  display: inline-block;
  text-align: center;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border: 0;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  color: #ffffff !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background: #555;
  padding-top: 7px;
}
.footer-social-icons .social-icons-list a:hover {
  opacity: 0.8;
  color: #ffffff !important;
  background: #666668;
}
/* ==========================================================
 05. SECTION: Hero Slideshow
========================================================== */
.owl-carousel .owl-controls {
  display: none;
}
@media (min-width:992px) {
  .owl-carousel .owl-controls {
    display: block;
  }
}
.owl-carousel .owl-controls .owl-prev,
.owl-carousel .owl-controls .owl-next {
  display: none;
  text-indent: -99999px;
}
@media (min-width: 768px) {
  .owl-carousel .owl-controls .owl-prev,
  .owl-carousel .owl-controls .owl-next {
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    position: absolute;
    top: 50%;
    display: block;
    font-size: 80px !important;
    background-color: transparent;
    opacity: 1;
    margin: 0;
    padding: 0;
    width: 21px;
    height: 37px;
    overflow: hidden;
    text-indent: -99999px;
    opacity: 0.3;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .owl-carousel .owl-controls .owl-prev:hover,
  .owl-carousel .owl-controls .owl-next:hover {
    opacity: 0.7;
  }
}
.owl-carousel .owl-controls .owl-prev {
  left: 0;
  background: url('https://drameh.com/wp-content/themes/law-and-justice/css/../img/slide-prev.png') no-repeat center center transparent !important;
}
@media (min-width: 1200px) {
  .owl-carousel .owl-controls .owl-prev {
    left: 50px;
  }
}
.owl-carousel .owl-controls .owl-next {
  right: 0;
  background: url('https://drameh.com/wp-content/themes/law-and-justice/css/../img/slide-next.png') no-repeat center center transparent !important;
}
@media (min-width: 1200px) {
  .owl-carousel .owl-controls .owl-next {
    right: 50px;
  }
}
.owl-carousel .owl-controls .owl-dot span {
  height: 10px;
  width: 10px;
  background-color: transparent;
  border: 2px solid #666668;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.owl-carousel .owl-controls .owl-dot span:hover,
.owl-carousel .owl-controls .owl-dot span:focus,
.owl-carousel .owl-controls .owl-dot span:active {
  background: #666668;
}
.owl-carousel .owl-controls .owl-dot.active span {
  height: 10px;
  width: 10px;
  border: 2px solid #666668;
  background-color: #666668;
}
.owl-carousel .owl-dots {
  margin-top: 15px;
}
.main-carousel {
  background: #ccc;
  width: 100%;
}
.main-carousel .owl-pagination {
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  position: absolute;
  left: 50%;
  bottom: 0;
}
.main-carousel .primary-btn {
  min-width: inherit;
  font-size: 14px;
  line-height: 1;
  max-width: 452px;
}
@media (min-width: 768px) {
  .main-carousel .primary-btn {
    line-height: 1;
  }
}
.main-carousel .owl-controls {
  margin-top: 0;
}
.main-carousel .owl-dots {
  width: 100%;
  margin-top: 0;
  position: absolute;
  bottom: 10px;
  left: 0;
  background-color: transparent !important;
}
.featured-slide {
  position: relative;
  min-height: 600px;
  padding: 40px 0;
  color: #ffffff;
  text-align: center;
  background-position: center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  width: 100%;
}
.featured-slide:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.featured-slide .slide-inner {
  width: 100%;
  padding: 30px 15px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 9;
}
@media (min-width: 768px) {
  .featured-slide .slide-inner {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
  }
}
@media (min-width: 1400px) {
  .featured-slide .slide-inner {
    width: 1100px;
  }
}
.featured-slide .slide-title {
  font-size: 30px;
  color: #ffffff;
  font-family: Montserrat, sans-serif;
  text-transform: uppercase;
  margin-bottom: 10px;
  line-height: 1.1;
  opacity: 0;
  transform: translateY(-20px);
  -webkit-transform: translateY(-20px);
  -moz-transform: translateY(-20px);
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
@media (min-width: 768px) {
  .featured-slide .slide-title {
    font-size: 40px;
  }
}
@media (min-width:992px) {
  .featured-slide .slide-title {
    font-size: 50px;
  }
}
@media (min-width: 1400px) {
  .featured-slide .slide-title {
    font-size: 60px;
  }
}
.featured-slide .slide-title.active {
  -webkit-transition: all 0.9s ease-in-out;
  -moz-transition: all 0.9s ease-in-out;
  transition: all 0.9s ease-in-out;
  opacity: 1;
  transform: translateY(0px);
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
}
.featured-slide .slide-icon {
  width: 150px;
  height: 100px;
  background: url('https://drameh.com/wp-content/themes/law-and-justice/css/../img/balance-icon-small.png') no-repeat center center;
  display: inline-block;
  margin-bottom: 10px;
  border-bottom: 1px solid #fff;
  padding-bottom: 20px;
  opacity: 0;
}
.featured-slide .slide-icon.active {
  -webkit-transition: all 0.9s ease-in-out;
  -moz-transition: all 0.9s ease-in-out;
  transition: all 0.9s ease-in-out;
  opacity: 1;
  transition-delay: 1.8s;
  -webkit-transition-delay: 1.8s;
}
.featured-slide .slide-text {
  opacity: 0;
  transform: translateY(20px);
  -webkit-transform: translateY(20px);
  -moz-transform: translateY(20px);
}
.featured-slide .slide-text.active {
  -webkit-transition: all 0.9s ease-in-out;
  -moz-transition: all 0.9s ease-in-out;
  transition: all 0.9s ease-in-out;
  opacity: 1;
  transition-delay: 0.9s;
  -webkit-transition-delay: 0.9s;
  transform: translateY(0px);
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
}
.featured-slide .primary-btn {
  opacity: 0;
}
.featured-slide .primary-btn.active {
  -webkit-transition: all 0.9s ease-in-out;
  -moz-transition: all 0.9s ease-in-out;
  transition: all 0.9s ease-in-out;
  opacity: 1;
  transition-delay: 1.8s;
  -webkit-transition-delay: 1.8s;
}
.featured-slide p {
  font-size: 16px;
  font-weight: lighter;
  line-height: 1.5;
  margin-bottom: 30px;
}
/* ==========================================================
! 06. Section: Practice Areas
========================================================== */
.quover-features {
  background-color: #666668;
  overflow: hidden;
  font-family: Montserrat, sans-serif;
  margin-bottom: 30px;
}
@media (min-width:992px) {
  .quover-features {
    max-height: 240px;
    margin-bottom: 0;
  }
}
.quover-features .container-fluid {
  padding: 0px !important;
}
@media (min-width: 768px) {
  .quover-features .container-fluid {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media (min-width:992px) {
  .quover-features:hover .practice-areas-item {
    width: 31%;
  }
}
.quover-features .practice-areas-item {
  padding: 0;
  position: relative;
  overflow: hidden;
  height: 240px;
  text-align: center;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (min-width:992px) {
  .quover-features .practice-areas-item {
    width: 33.32%;
    float: left;
  }
}
.quover-features .practice-areas-item:nth-child(1) {
  background-color: #222222;
}
.quover-features .practice-areas-item:nth-child(2) {
  background-color: #333333;
}
.quover-features .practice-areas-item:nth-child(3) {
  background-color: #444444;
}
.quover-features .practice-areas-item:nth-child(4) {
  background-color: #555555;
}
.quover-features .practice-areas-item:nth-child(5) {
  background-color: #444444;
}
.quover-features .practice-areas-item:nth-child(6) {
  background-color: #333333;
}
.quover-features .practice-areas-item:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: -100%;
  background-color: #000;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
@media (min-width:992px) {
  .quover-features .practice-areas-item:hover {
    width: 38%;
    background: #555557 !important;
  }
}
.quover-features .practice-areas-item .practice-areas-item-wrapper {
  color: #fff;
  display: block;
  text-align: center;
  padding-top: 60px;
}
.quover-features .practice-areas-item .practice-areas-title {
  font-size: 14px;
  line-height: 1.3;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
  font-weight: normal;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .quover-features .practice-areas-item .practice-areas-title {
    font-size: 16px;
    letter-spacing: 2px;
  }
}
.quover-features .practice-areas-item-icon {
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
@media (min-width: 1400px) {
  .quover-features .practice-areas-item-icon {
    margin-bottom: 25px;
  }
}
.quover-features .practice-areas-item-icon img {
  max-width: 50px;
}
@media (min-width: 768px) {
  .quover-features .practice-areas-item-icon img {
    max-width: 70px;
  }
}
@media (min-width:992px) {
  .quover-features .practice-areas-item-icon img {
    max-width: 100%;
  }
}
/*============================================================================
  >> 07. Section: Counters
============================================================================
 */
.counter-col {
  text-align: center;
}
.counter-title {
  font-size: 60px;
  color: #666668;
  font-weight: bold;
  font-family: Montserrat, sans-serif;
}
@media (min-width:992px) {
  .counter-title {
    font-size: 80px;
  }
}
.counter-text {
  color: #ffffff;
  font-size: 22px;
  line-height: 30px;
  text-transform: uppercase;
  margin-bottom: 0;
}
@media (min-width:992px) {
  .counter-text {
    font-size: 28px;
  }
}
@media (min-width: 1200px) {
  .counter-text {
    font-size: 30px;
  }
}
.counter-col {
  margin-bottom: 30px;
}
.counter-col:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .counter-col {
    margin-bottom: 0;
  }
}
/* ==========================================================
! 08. Section: Team
========================================================== */
.section-team .owl-carousel.common-carousel {
  padding: 0;
}
@media (min-width: 768px) {
  .section-team .owl-carousel.common-carousel {
    padding: 0 40px;
  }
}
.section-team .slide {
  text-align: center;
}
.team-carousel {
  margin-bottom: 20px;
}
.team-item {
  position: relative;
  display: inline-block;
  overflow: hidden;
  text-align: center;
  margin: 0;
  padding: 0;
  cursor: -webkit-grab;
  cursor: -moz-grab;
}
.team-item figcaption {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.team-item figcaption:before,
.team-item figcaption:after {
  position: absolute;
  top: 10px;
  right: 10px;
  bottom: 10px;
  left: 10px;
  content: '';
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  pointer-events: none;
}
.team-item figcaption:before {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.team-item figcaption:after {
  border-right: 1px solid #fff;
  border-left: 1px solid #fff;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
}
.team-item figcaption:hover {
  background-color: rgba(17, 17, 17, 0.88);
}
.team-item figcaption:hover .team-caption {
  opacity: 1;
}
.team-item .team-caption {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  width: 100%;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.team-item .team-item-heading {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 20px;
  line-height: 1;
  top: -15px;
  margin-top: 20px;
  font-family: Montserrat, sans-serif;
  color: #ffffff;
}
.team-item .team-item-text {
  font-size: 16px;
  bottom: -15px;
  color: #666668;
}
.team-item:hover figcaption:before,
.team-item:hover figcaption:after {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}
.team-item > img {
  width: 100%;
}
/* ==========================================================
! 09. Section: About
========================================================== */
.section-about p {
  font-size: 16px;
  line-height: 1.6;
  font-weight: lighter;
  margin-bottom: 8px;
}
/* ==========================================================
! 10. Section: Testimonials
========================================================== */
blockquote {
  margin-top: 15px;
  margin-bottom: 15px;
  margin-left: 0;
  font-style: italic;
  font-size: 14px;
  font-weight: normal;
}
.section-testimonials {
  padding: 20px 0;
  font-family: Montserrat, sans-serif;
}
.section-testimonials .testimonial-carousel {
  cursor: -webkit-grab;
  cursor: -moz-grab;
}
.section-testimonials .testimonial-carousel blockquote {
  border-left: none;
  padding: 0;
  margin: 0;
  max-width: 900px;
  margin: 0 auto!important;
  text-align: center;
  position: relative;
  padding-top: 85px;
}
.section-testimonials .testimonial-carousel blockquote:before {
  content: "";
  background: url(https://drameh.com/wp-content/themes/law-and-justice/css/../img/quote2.png) no-repeat;
  width: 66px;
  height: 62px;
  top: 0;
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  position: absolute;
  left: 50%;
}
.section-testimonials .testimonial-carousel p {
  width: 100%;
  margin: 0 auto 30px;
}
.section-testimonials .testimonial-carousel footer {
  font-family: Roboto, sans-serif;
  color: #666668;
  font-size: 14px;
  margin-top: 20px;
}
/* ==========================================================
! 11. Section: Clients
========================================================== */
.client-item {
  line-height: 170px;
  width: 225px;
  max-width: 100%;
  height: 170px;
}
.client-item img {
  vertical-align: middle;
  width: auto !important;
  max-width: 100% !important;
  line-height: 170px;
  display: inline-block !important;
}
.clients-carousel {
  margin-bottom: 20px;
}
.clients-carousel .slide {
  height: 170px;
  line-height: 170px;
  cursor: -webkit-grab;
  cursor: -moz-grab;
}
/* ==========================================================
! 12. Section: News & Posts
========================================================== */
.section-news {
  padding-bottom: 20px;
}
.section-news .news-date {
  width: 100%;
  height: 70px;
  text-align: center;
  margin-bottom: 20px;
  color: #ffffff;
  background-color: #666668;
  font-size: 20px;
  line-height: 26px;
  text-transform: uppercase;
  padding-top: 15px;
  padding-left: 24px;
  padding-right: 24px;
}
@media (min-width: 768px) {
  .section-news .news-date {
    height: 110px;
    font-size: 24px;
    line-height: 30px;
    padding-top: 20px;
    margin-bottom: 0;
  }
}
.section-news .post {
  background: none;
}
.section-news .news-title {
  color: #666668;
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 3px;
}
.section-news .news-text {
  color: #414042;
  font-size: 14px;
  margin-bottom: 5px;
}
.section-news .read-more {
  color: #666668;
  font-size: 13px;
  line-height: 1.3;
  font-weight: bold;
  margin-bottom: 0;
  text-align: left;
}
@media (min-width: 1200px) {
  .section-news .read-more {
    text-align: right;
  }
}
.section-news .news-title,
.section-news .news-text,
.section-news .read-more,
.section-news .news-date {
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
.section-news .news-item {
  border-bottom: 4px solid #e7e7e7;
  padding: 20px;
}
@media (min-width: 768px) {
  .section-news .news-item {
    padding: 20px 0px;
    height: 150px;
  }
}
.section-news .news-item:hover .news-title,
.section-news .news-item:hover .news-text,
.section-news .news-item:hover .read-more {
  color: #414042;
}
.section-news .news-item:hover .news-date {
  background-color: #414042;
}
.section-news .news-item-wrapper {
  clear: both;
}
.section-news .post {
  margin-bottom: 0;
}
.post-element {
  background-color: #f4f4f4;
  margin-bottom: 35px;
}
.post-element .post-featured-image {
  overflow: hidden;
  text-align: center;
  background: #111;
}
.post-element .post-featured-image img {
  max-width: 100%;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-border-radius: 0 6px 0 0;
  -moz-border-radius: 0 6px 0 0;
  border-radius: 0 6px 0 0;
}
.post-element .post-featured-image p {
  margin: 0;
  line-height: 1;
  padding: 0;
}
.post-element .post-content {
  padding: 25px 15px;
}
@media (min-width: 768px) {
  .post-element .post-content {
    padding: 30px;
  }
}
.post-element .entry-title {
  font-size: 25px;
  line-height: 1.3;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc;
}
.post-element .entry-title a {
  color: #414042;
}
@media (min-width: 768px) {
  .post-element .entry-title {
    font-size: 28px;
  }
}
.post-element .entry-content {
  margin-top: 0;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 300;
}
.post-element .entry-content p,
.post-element .entry-content ul,
.post-element .entry-content ol {
  font-size: 16px;
}
.post-element .entry-content p {
  line-height: 1.6;
  margin-bottom: 20px;
}
.post-element .entry-content ul,
.post-element .entry-content ol {
  padding-left: 0;
  margin-left: 0;
  list-style-position: inside;
}
.post-element .entry-content ul li,
.post-element .entry-content ol li {
  padding-top: 1px;
  padding-bottom: 1px;
}
.post-element .entry-content ul ul,
.post-element .entry-content ol ul,
.post-element .entry-content ul ol,
.post-element .entry-content ol ol {
  padding-left: 15px;
}
.post-element .entry-content .primary-btn {
  margin-top: 10px;
  font-size: 10px;
}
.post-element .entry-meta-content {
  margin-bottom: 12px;
  display: block;
  font-size: 11px;
  font-style: italic;
  opacity: 0.8;
  letter-spacing: 0.5px;
  padding-bottom: 5px;
}
.post-element .entry-meta-content a {
  color: #666668;
  font-weight: light;
  text-decoration: none !important;
}
.post-element .entry-meta-content a:before {
  content: "|";
  padding: 0 5px;
}
.post-element .entry-meta-content a:first-child:before {
  content: "";
  padding: 0;
}
.post-element .entry-meta-content a:hover {
  text-decoration: underline;
}
.post-element .entry-footer {
  background: #eee;
  padding: 20px;
  margin-top: 30px;
  position: relative;
  top: 30px;
}
@media (min-width: 768px) {
  .post-element .entry-footer {
    margin-left: -30px;
    margin-right: -30px;
  }
}
.post-element .entry-footer .cat-links {
  display: inline-block;
  padding-right: 10px;
}
.post-element .entry-footer .cat-links a {
  display: inline-block;
  background: transparent;
  color: #ffffff;
  text-transform: uppercase;
  border: 0;
  background-color: #aaa;
  font-size: 10px;
  font-family: Roboto, sans-serif;
  font-weight: bold;
  padding: 4px 12px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin-bottom: 3px;
  font-style: italic;
}
.post-element .entry-footer .cat-links a:hover {
  background-color: #666668;
  color: #ffffff;
  text-decoration: none;
}
.post-element .entry-footer .tags-links {
  display: inline-block;
  padding-right: 8px;
}
.post-element .entry-footer .tags-links a {
  display: inline-block;
  background: transparent;
  border-left: 0px solid;
  border-color: #ccc;
  font-size: 11px;
  font-weight: lighter;
  font-family: Roboto, sans-serif;
  font-weight: bold;
  padding: 4px 4px;
  margin-right: 2px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin-bottom: 3px;
  font-style: italic;
}
.post-element .entry-footer .tags-links a:hover {
  text-decoration: none;
}
.post-element .entry-footer .comments-link {
  display: block;
  float: right;
  text-transform: uppercase;
}
.post-element .entry-footer .comments-link a {
  display: inline-block;
  color: #ffffff;
  font-weight: bold;
  padding: 4px 8px;
  font-size: 12px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #666668;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}
.post-element .entry-footer .comments-link a:hover {
  text-decoration: none;
  background-color: #111111;
}
.post-element .entry-footer .post-edit-link {
  font-size: 9px;
  text-transform: uppercase;
  font-style: italic;
  border: 0;
  background: #666668;
  color: #fff;
  padding: 2px 12px;
  display: inline-block;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.post-element .entry-footer .post-edit-link:hover {
  color: #fff;
  background: #111111;
}
.post-element .primary-btn {
  font-size: 14px;
  line-height: 20px;
  padding: 12px 30px;
  font-weight: bold;
}
.post-password-form label {
  display: inline-block;
  width: 85%;
  margin-right: 5px;
}
.post-password-form input[type=submit] {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  background: #666668;
  color: #ffffff;
  border: 0;
  height: 38px;
  position: relative;
  padding-left: 20px;
  padding-right: 20px;
  top: -1px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-weight: bold;
}
.post-password-form input[type=submit]:hover {
  background: #111111;
}
.post-password-form input[type=password] {
  display: inline-block;
  margin-left: 5px;
  height: 40px;
  width: 100%;
  padding-left: 10px;
}
.sticky .post-element {
  border: 6px solid #ddd;
}
.sticky .entry-meta {
  display: none;
}
.post-block .post-block-col {
  padding: 0;
}
.post-block.post {
  margin-bottom: 35px;
}
@media (min-width:992px) {
  .post-block.post {
    margin-bottom: 0;
  }
}
.post-block .post-content {
  max-width: 640px;
  margin-right: auto;
  margin-left: auto;
  padding: 30px;
}
@media (min-width: 768px) {
  .post-block .post-content {
    padding: 60px 30px;
  }
}
@media (min-width:992px) {
  .post-block .post-content {
    padding: 100px 30px;
  }
}
@media (min-width: 1200px) {
  .post-block .post-featured-image,
  .post-block .post-featured-image > a,
  .post-block .post-featured-image img {
    height: 100%;
    display: block;
  }
}
.about-author {
  background-color: #e1e1e1;
  padding: 30px;
}
.about-author .author-image {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .about-author .author-image {
    margin-bottom: 0;
  }
}
.nav-links a {
  display: inline-block;
  padding: 4px;
  padding-left: 12px;
  padding-right: 12px;
  background: #666668;
  font-size: 11px;
  font-style: italic;
  color: #ffffff;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}
.nav-links .nav-previous a:before {
  content: '« ';
}
.nav-links .nav-next a:after {
  content: ' »';
}
.post-element-aside,
.post-element-link {
  border: 2px solid #111111;
  padding-top: 0;
}
.post-element-aside p,
.post-element-link p {
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 10px;
  margin-top: 0;
}
.post-element-link {
  display: block;
  background: #666668;
  color: #ffffff !important;
  font-size: 14px;
  background-image: url('https://drameh.com/wp-content/themes/law-and-justice/css/../img/ico-link-bg.png');
  background-position: -20px center;
  background-repeat: no-repeat;
  padding: 20px;
  border: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.post-element-link:hover {
  text-decoration: none;
  padding-left: 30px;
}
.post-element-link p {
  font-size: 14px;
  margin-bottom: 0;
}
.post-link-title {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 5px;
  color: #ffffff;
  margin-top: 0;
  margin-bottom: 5px !important;
}
.post-element-quote {
  background-image: url('https://drameh.com/wp-content/themes/law-and-justice/css/../img/quote-bg1.png');
  background-position: -10px -10px;
  background-repeat: no-repeat;
  position: relative;
  padding-top: 10px;
  padding-bottom: 10px;
}
.post-element-quote:after {
  display: block;
  content: '';
  background-image: url('https://drameh.com/wp-content/themes/law-and-justice/css/../img/quote-bg2.png');
  background-position: 10px 20px;
  background-repeat: no-repeat;
  width: 127px;
  height: 96px;
  position: absolute;
  right: 0;
  bottom: 0;
}
@media (min-width: 768px) {
  .post-element-quote {
    padding-left: 80px;
    padding-right: 80px;
  }
}
.post-element-quote p {
  font-size: 14px;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 5px;
}
.post-element-quote .quote-author {
  font-weight: bold;
  font-size: 12px;
}
.post-element-quote blockquote {
  padding-left: 0;
  border-left: 0;
}
.post-element-video iframe {
  width: 100% !important;
}
/* ==========================================================
! 13. Section: Sidebar
========================================================== */
.sidebar-area {
  margin-top: 40px;
}
@media (min-width:992px) {
  .sidebar-area {
    margin-top: 0;
  }
}
.sidebar-area select {
  width: 100%;
  height: 35px;
}
.widget {
  margin-bottom: 50px;
}
.widget ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.widget ul li {
  padding-left: 0;
  margin-left: 0;
}
.widget ul li,
.widget ul a {
  font-size: 12px;
  color: #414042;
  font-weight: normal;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
.widget ul a {
  display: inline-block;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding-left: 0;
}
.widget ul a:hover {
  color: #666668;
  border-color: #111111;
}
.widget ul li {
  border-bottom: 1px dotted #666668;
  padding: 14px 0;
  display: block;
  padding-left: 25px;
  background: url('https://drameh.com/wp-content/themes/law-and-justice/css/../img/aside-arrow.png') no-repeat 5px 22px;
}
.widget ul li a:hover {
  padding-left: 3px;
}
.widget ul li:first-child a {
  padding-top: 0;
}
.widget ul li ul li {
  padding-top: 3px;
  padding-bottom: 3px;
  border-bottom: 0;
  background: url('https://drameh.com/wp-content/themes/law-and-justice/css/../framework/img/list-style-mini.png') no-repeat 5px 11px;
}
.widget ul li ul li ul li {
  font-style: italic;
  font-size: 10px;
}
.widget .widget-title {
  color: #666668;
  border-bottom: 2px solid #414042;
  padding-bottom: 10px;
  margin-bottom: 10px;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: bold;
}
.search-form {
  position: relative;
}
.search-form label {
  display: block;
  width: 100%;
  position: relative;
}
.search-form .search-submit {
  background: url(https://drameh.com/wp-content/themes/law-and-justice/css/../img/lens.png) no-repeat center center transparent !important;
  border: 0;
  width: 19px;
  height: 19px;
  overflow: hidden;
  text-indent: -9999px;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  position: absolute;
  top: 50%;
  right: 20px;
}
.search-form .search-field {
  width: 100% !important;
  max-width: 100% !important;
  height: 50px;
  padding-left: 20px;
  font-size: 14px;
  background-color: #eee;
  border: none;
}
@media (min-width: 1400px) {
  .search-form .search-field {
    height: 70px;
  }
}
.widget .search-field {
  background-color: #f6f6f6;
}
/* ==========================================================
! 14. Section: Pagination
========================================================== */
.pagination {
  text-align: center;
  margin: 0;
  display: block;
  margin-top: 40px;
}
.pagination a {
  display: inline-block;
  width: 35px;
  height: 35px;
  border: 2px solid #666668;
  font-size: 15px;
  font-weight: bold;
  margin-right: 20px;
  color: #414042;
  text-align: center;
  padding-top: 5px;
}
.pagination a:last-child {
  margin-right: 0;
}
.pagination a:hover {
  background-color: #666668;
  color: #ffffff;
}
@media (min-width: 768px) {
  .pagination a {
    width: 43px;
    height: 43px;
    border-width: 3px;
    padding-top: 8px;
  }
}
/* ==========================================================
! 15. Section: Comments
========================================================== */
.comments-title,
.comment-reply-title {
  text-transform: uppercase;
  font-size: 28px;
  line-height: 1.3;
  position: relative;
  font-family: Montserrat, sans-serif;
  font-size: 22px !important;
  margin-top: 40px;
}
.comments-title:after,
.comment-reply-title:after {
  display: none;
}
@media (min-width: 768px) {
  .comments-title:after,
  .comment-reply-title:after {
    content: "";
    width: 108px;
    height: 8px;
    background-color: #666668;
    display: inline-block;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    position: absolute;
    top: 50%;
    margin-left: 10px;
  }
}
@media (min-width: 768px) {
  .comments-title,
  .comment-reply-title {
    font-size: 35px;
    margin-bottom: 40px;
    line-height: 1.3;
  }
}
.comments-title:after,
.comment-reply-title:after {
  display: none;
}
.comment-reply-title {
  margin-top: 10px !important;
  margin-bottom: 10px;
}
.comments-area {
  padding: 0;
  display: block;
}
.comments-area .comment-form {
  display: block;
  padding-bottom: 0;
  margin-bottom: 20px;
  margin-top: 20px;
}
.comments-area .title-section {
  margin-bottom: 30px;
}
.comments-area .comment-reply-title {
  font-weight: bold;
  margin-top: 0;
  font-size: 24px;
}
.comments-area input[type=submit] {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin-top: 15px;
  font-size: 14px;
  box-shadow: 0 !important;
  background: #666668;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: normal;
  letter-spacing: 2px;
  border: 0;
  font-size: 12px;
  padding: 20px;
  margin-top: 0;
}
.comments-area .comment-form-author,
.comments-area .comment-form-email {
  width: 49%;
  display: inline-block;
  padding-right: 5px;
}
.comments-area input[type=text],
.comments-area input[type=email],
.comments-area input[type=url] {
  height: 40px;
  padding-top: 2px;
  padding-left: 10px;
  width: 100%;
  display: block;
  border: 1px solid;
  border-bottom: 2px solid;
  border-right: 2px solid;
  border-color: #111111;
  background: transparent;
  color: #111;
  font-style: italic;
  font-size: 12px;
  font-family: Roboto, sans-serif;
}
.comments-area label {
  font-size: 16px;
  font-weight: bold;
  font-style: italic;
  opacity: 0.8;
  display: block;
}
.comments-area textarea {
  border: 1px solid;
  border-bottom: 2px solid;
  border-right: 2px solid;
  border-color: #111111;
  padding: 12px;
  width: 100% !important;
  color: #111;
  font-style: italic;
  font-size: 12px;
  font-family: Roboto, sans-serif;
}
ol.comment-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
ol.comment-list > li {
  padding: 15px;
  margin-bottom: 15px;
  background: #ececec;
}
@media (min-width: 768px) {
  ol.comment-list > li {
    padding: 30px;
  }
}
ol.comment-list ol.children {
  list-style: none;
  margin-left: 0;
  padding-top: 10px;
  padding-bottom: 10px;
}
ol.comment-list ol.children > li {
  background: #eee;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
  margin-bottom: 10px;
}
ol.comment-list ol.children > li > ol.children li {
  border-left: 2px solid #ddd;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.comment-author {
  padding-top: 5px;
}
.comment-author .fn {
  font-size: 16px;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .comment-author .fn {
    font-size: 18px;
  }
}
.comment-author .fn a {
  color: #414042;
}
.comment-author .says {
  opacity: 0.8;
  font-size: 16px;
}
@media (min-width: 768px) {
  .comment-author .says {
    font-size: 18px;
  }
}
.comment-author img.avatar {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  float: left;
  margin-right: 20px;
  margin-top: -5px;
}
.comment-metadata {
  font-size: 12px;
  font-weight: 300;
}
.comment-metadata a {
  color: #414042;
}
.comment-meta {
  min-height: 64px;
  margin-bottom: 20px;
}
.comment-reply-link {
  display: inline-block;
  color: #666668;
  font-weight: bold;
  margin-bottom: 20px;
}
.comment-content {
  font-size: 14px;
  margin-bottom: 0px;
  padding-bottom: 0px;
}
.comment-content ul {
  padding: 0;
  list-style: inside;
}
.comment-body .reply a {
  font-weight: bold;
  font-size: 14px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.pingback {
  font-weight: bold;
  font-size: 14px;
}
/* ==========================================================
!  16. Contact-form 7
========================================================== */
div.wpcf7 p {
  margin-bottom: 15px;
}
div.wpcf7 input[type=text],
div.wpcf7 input[type=email] {
  width: 100%;
  height: 50px;
  padding-left: 10px;
  margin-top: 5px;
  border: 1px solid #555;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
div.wpcf7 textarea {
  border: 1px solid #555;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  height: 150px;
}
div.wpcf7 input[type=submit] {
  padding: 15px 45px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  border: 0;
  background: #666668;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 4px;
}
html .contact-form .form-control {
  height: 48px;
  background: none;
  border: 2px solid #fff!important;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  padding-left: 20px;
  color: #fff !important;
  font-family: Roboto, sans-serif;
  font-style: italic;
}
html .contact-form .form-control::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #ffffff;
  opacity: 0.7;
}
html .contact-form .form-control::-moz-placeholder {
  /* Firefox 19+ */
  color: #ffffff;
  opacity: 0.7;
}
html .contact-form .form-control:-ms-input-placeholder {
  /* IE 10+ */
  color: #ffffff;
  opacity: 0.7;
}
html .contact-form .form-control:-moz-placeholder {
  /* Firefox 18- */
  color: #ffffff;
  opacity: 0.7;
}
@media (min-width:992px) {
  html .contact-form .form-control {
    height: 55px;
  }
}
@media (min-width: 1200px) {
  html .contact-form .form-control {
    height: 67px;
  }
}
html .contact-form textarea.form-control {
  min-height: 200px;
  resize: none;
  padding-top: 20px;
  width: 100% !important;
}
@media (min-width: 768px) {
  html .contact-form textarea.form-control {
    min-height: 270px;
  }
}
html .contact-form .form-group {
  margin-bottom: 35px;
}
html .contact-form .form-group:last-child {
  margin-bottom: 0;
}
html .contact-form .primary-btn {
  font-size: 24px;
  width: 100%;
  border: 0;
  color: #ffffff;
}
html .contact-form input.wpcf7-submit {
  font-size: 24px;
  width: 100%;
  border: 0;
  color: #ffffff;
  background: #666668;
  text-transform: uppercase;
  font-size: 18px;
  height: 60px;
}
html .contact-form span.wpcf7-not-valid-tip {
  background: #ff0000;
  padding: 3px;
  display: inline-block;
  width: auto;
  color: #fff;
  margin-top: 3px;
  font-size: 12px;
  font-style: italic;
}
div.wpcf7-response-output {
  margin: 0 !important;
  background: #f4f4f4;
  border: 0 !important;
  font-size: 12px;
  color: #111;
  text-align: center;
  padding-top: 15px;
  padding-bottom: 15px;
}
.contact-box {
  font-size: 11px;
  line-height: 1.6;
}
.contact-box h3 {
  font-size: 18px;
  margin-bottom: 3px;
}
.contact-box h3:first-child {
  margin-top: 0;
}
.contact-box p {
  font-weight: normal;
  line-height: 1.2;
  margin-bottom: 15px;
}
.contact-box a {
  font-weight: bold;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.heading-details {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
  display: block;
}
.section-contact .form-wrap {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .section-contact .form-wrap {
    margin-top: 0;
  }
}
/* ==========================================================
! 17. CROSSBROWSER SOLUTIONS
========================================================== */
.ie9 .main-carousel .slide-inner {
  position: static;
  transform: none;
  -webkit-transform: none;
  -moz-transform: none;
}
