/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Grid
# Class
# Forms
# Button
# Header
# Main Menu
# Page Title & Breadcrumb
# Post and Page
# Navigation
# Layout Content
# Widgets
# Media
# Singlular
# Comments
# Footer
# VC Elements
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
/* Custom Mixin */
/* Set Font Default */
/*--------------------------------------------------------------
# Class
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Button
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
/* CMS Button */
/*--------------------------------------------------------------
# Main Menu
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Page Title & Breadcrumb
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Post and Page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Comments
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# VC Elements
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Layout Content
--------------------------------------------------------------*/
/*
Theme Name: Induxe
Adding support for languages written in a Right To Left (RTL) direction is easy -
it's just a matter of overwriting all the horizontal positioning attributes
of your CSS stylesheet in a separate stylesheet file named rtl.css.
//codex.wordpress.org/Right-to-Left_Language_Support
*/
@-o-keyframes moveUp {
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    opacity: 1;
  }
}
@-ms-keyframes moveUp {
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes moveUp {
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    opacity: 1;
  }
}
@keyframes moveUp {
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes spin-rotate-left {
  to {
    transform: rotate(30deg);
  }
  from {
    transform: rotate(175deg);
  }
}
@-webkit-keyframes spin-rotate-left {
  to {
    transform: rotate(30deg);
  }
  from {
    transform: rotate(175deg);
  }
}
@keyframes spin-rotate-right {
  from {
    transform: rotate(-175deg);
  }
  to {
    transform: rotate(-30deg);
  }
}
@-webkit-keyframes spin-rotate-right {
  from {
    transform: rotate(-175deg);
  }
  to {
    transform: rotate(-30deg);
  }
}
@keyframes spin-rotate-all {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
@-webkit-keyframes spin-rotate-all {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
@keyframes spin-fade-in-first {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes spin-fade-in-first {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes spin-fade-in-second {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes spin-fade-in-second {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes markerWave {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.8;
  }
  20% {
    opacity: 0.8;
  }
  100% {
    -webkit-transform: scale(5.5);
    transform: scale(5.5);
    opacity: 0;
  }
}
@keyframes markerWave {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.8;
  }
  20% {
    opacity: 0.8;
  }
  100% {
    -webkit-transform: scale(5.5);
    transform: scale(5.5);
    opacity: 0;
  }
}
@-webkit-keyframes rotateplane {
  0% {
    -webkit-transform: perspective(120px);
  }
  50% {
    -webkit-transform: perspective(120px) rotateY(180deg);
  }
  100% {
    -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg);
  }
}
@keyframes rotateplane {
  0% {
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    transform: perspective(120px) rotateX(0deg) rotateY(0deg);
  }
  50% {
    -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
  }
  100% {
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}
@-webkit-keyframes ct-bounce {
  0%, 100% {
    -webkit-transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
  }
}
@keyframes ct-bounce {
  0%, 100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
@-webkit-keyframes ct-bounce2 {
  0%, 100% {
    -webkit-transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.08);
  }
}
@keyframes ct-bounce2 {
  0%, 100% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
  50% {
    transform: scale(1.08);
    -webkit-transform: scale(1.08);
  }
}
@-webkit-keyframes ct-stretchdelay {
  0%, 40%, 100% {
    -webkit-transform: scaleY(0.4);
  }
  20% {
    -webkit-transform: scaleY(1);
  }
}
@keyframes ct-stretchdelay {
  0%, 40%, 100% {
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4);
  }
  20% {
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
  }
}
@-webkit-keyframes ct-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
  }
}
@keyframes ct-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes ct-cubeGridScaleDelay {
  0%, 70%, 100% {
    -webkit-transform: scale3D(1, 1, 1);
    transform: scale3D(1, 1, 1);
  }
  35% {
    -webkit-transform: scale3D(0, 0, 1);
    transform: scale3D(0, 0, 1);
  }
}
@keyframes ct-cubeGridScaleDelay {
  0%, 70%, 100% {
    -webkit-transform: scale3D(1, 1, 1);
    transform: scale3D(1, 1, 1);
  }
  35% {
    -webkit-transform: scale3D(0, 0, 1);
    transform: scale3D(0, 0, 1);
  }
}
@-webkit-keyframes ct-foldCubeAngle {
  0%, 10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
    transform: perspective(140px) rotateX(-180deg);
    opacity: 0;
  }
  25%, 75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
    transform: perspective(140px) rotateX(0deg);
    opacity: 1;
  }
  90%, 100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
    transform: perspective(140px) rotateY(180deg);
    opacity: 0;
  }
}
@keyframes ct-foldCubeAngle {
  0%, 10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
    transform: perspective(140px) rotateX(-180deg);
    opacity: 0;
  }
  25%, 75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
    transform: perspective(140px) rotateX(0deg);
    opacity: 1;
  }
  90%, 100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
    transform: perspective(140px) rotateY(180deg);
    opacity: 0;
  }
}
@keyframes ball {
  0% {
    transform: translate(0, 0);
  }
  5% {
    transform: translate(8px, -14px);
  }
  10% {
    transform: translate(15px, -10px);
  }
  17% {
    transform: translate(23px, -24px);
  }
  20% {
    transform: translate(30px, -20px);
  }
  27% {
    transform: translate(38px, -34px);
  }
  30% {
    transform: translate(45px, -30px);
  }
  37% {
    transform: translate(53px, -44px);
  }
  40% {
    transform: translate(60px, -40px);
  }
  50% {
    transform: translate(60px, 0);
  }
  57% {
    transform: translate(53px, -14px);
  }
  60% {
    transform: translate(45px, -10px);
  }
  67% {
    transform: translate(37px, -24px);
  }
  70% {
    transform: translate(30px, -20px);
  }
  77% {
    transform: translate(22px, -34px);
  }
  80% {
    transform: translate(15px, -30px);
  }
  87% {
    transform: translate(7px, -44px);
  }
  90% {
    transform: translate(0, -40px);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes barUp1 {
  0% {
    transform: scale(1, 0.2);
  }
  40% {
    transform: scale(1, 0.2);
  }
  50% {
    transform: scale(1, 1);
  }
  90% {
    transform: scale(1, 1);
  }
  100% {
    transform: scale(1, 0.2);
  }
}
@keyframes barUp2 {
  0% {
    transform: scale(1, 0.4);
  }
  40% {
    transform: scale(1, 0.4);
  }
  50% {
    transform: scale(1, 0.8);
  }
  90% {
    transform: scale(1, 0.8);
  }
  100% {
    transform: scale(1, 0.4);
  }
}
@keyframes barUp3 {
  0% {
    transform: scale(1, 0.6);
  }
  100% {
    transform: scale(1, 0.6);
  }
}
@keyframes barUp4 {
  0% {
    transform: scale(1, 0.8);
  }
  40% {
    transform: scale(1, 0.8);
  }
  50% {
    transform: scale(1, 0.4);
  }
  90% {
    transform: scale(1, 0.4);
  }
  100% {
    transform: scale(1, 0.8);
  }
}
@keyframes barUp5 {
  0% {
    transform: scale(1, 1);
  }
  40% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1, 0.2);
  }
  90% {
    transform: scale(1, 0.2);
  }
  100% {
    transform: scale(1, 1);
  }
}
@-moz-keyframes headerSlideDown {
  0% {
    margin-top: -150px;
  }
  100% {
    margin-top: 0;
  }
}
@-ms-keyframes headerSlideDown {
  0% {
    margin-top: -150px;
  }
  100% {
    margin-top: 0;
  }
}
@-webkit-keyframes headerSlideDown {
  0% {
    margin-top: -150px;
  }
  100% {
    margin-top: 0;
  }
}
@keyframes headerSlideDown {
  0% {
    margin-top: -150px;
  }
  100% {
    margin-top: 0;
  }
}
@-webkit-keyframes ct-rotate {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes ct-rotate {
  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
  }
}
@-webkit-keyframes ct-bounce {
  0%, 100% {
    -webkit-transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
  }
}
@-webkit-keyframes video-icon-animation {
  from {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 1;
  }
  to {
    -webkit-transform: scale(2, 2);
    transform: scale(2, 2);
    opacity: 0;
  }
}
@keyframes video-icon-animation {
  from {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 1;
  }
  to {
    -webkit-transform: scale(2, 2);
    transform: scale(2, 2);
    opacity: 0;
  }
}
@-webkit-keyframes in-top {
  from {
    -webkit-transform: perspective(500px) rotateX(-90deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(500px) rotateX(0deg);
  }
}
@keyframes in-top {
  from {
    transform: perspective(500px) rotateX(-90deg);
    opacity: 1;
  }
  to {
    transform: perspective(500px) rotateX(0deg);
  }
}
@-webkit-keyframes out-top {
  from {
    -webkit-transform: perspective(500px) rotateX(0deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(500px) rotateX(-90deg);
    opacity: 1;
  }
}
@keyframes out-top {
  from {
    transform: perspective(500px) rotateX(0deg);
    opacity: 1;
  }
  to {
    transform: perspective(500px) rotateX(-90deg);
    opacity: 1;
  }
}
@-webkit-keyframes in-bottom {
  from {
    -webkit-transform: perspective(500px) rotateX(90deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(500px) rotateX(0deg);
  }
}
@keyframes in-bottom {
  from {
    transform: perspective(500px) rotateX(90deg);
    opacity: 1;
  }
  to {
    transform: perspective(500px) rotateX(0deg);
  }
}
@-webkit-keyframes out-bottom {
  from {
    -webkit-transform: perspective(500px) rotateX(0deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(500px) rotateX(90deg);
    opacity: 1;
  }
}
@keyframes out-bottom {
  from {
    transform: perspective(500px) rotateX(0deg);
    opacity: 1;
  }
  to {
    transform: perspective(500px) rotateX(90deg);
    opacity: 1;
  }
}
@-webkit-keyframes in-left {
  from {
    -webkit-transform: perspective(500px) rotateY(90deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(500px) rotateY(0deg);
  }
}
@keyframes in-left {
  from {
    transform: perspective(500px) rotateY(90deg);
    opacity: 1;
  }
  to {
    transform: perspective(500px) rotateY(0deg);
  }
}
@-webkit-keyframes out-left {
  from {
    -webkit-transform: perspective(500px) rotateY(0deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(500px) rotateY(90deg);
    opacity: 1;
  }
}
@keyframes out-left {
  from {
    transform: perspective(500px) rotateY(0deg);
    opacity: 1;
  }
  to {
    transform: perspective(500px) rotateY(90deg);
    opacity: 1;
  }
}
@-webkit-keyframes in-right {
  from {
    -webkit-transform: perspective(500px) rotateY(-90deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(500px) rotateY(0deg);
  }
}
@keyframes in-right {
  from {
    transform: perspective(500px) rotateY(-90deg);
    opacity: 1;
  }
  to {
    transform: perspective(500px) rotateY(0deg);
  }
}
@-webkit-keyframes out-right {
  from {
    -webkit-transform: perspective(500px) rotateY(0deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(500px) rotateY(-90deg);
    opacity: 1;
  }
}
@keyframes out-right {
  /* In Out Fade */
  from {
    transform: perspective(500px) rotateY(0deg);
    opacity: 1;
  }
  to {
    transform: perspective(500px) rotateY(-90deg);
    opacity: 1;
  }
}
@-webkit-keyframes in-top-fade {
  from {
    -webkit-transform: translateY(-120%);
  }
  to {
    -webkit-transform: translateY(0%);
  }
}
@keyframes in-top-fade {
  from {
    transform: translateY(-120%);
  }
  to {
    transform: translateY(0%);
  }
}
@-webkit-keyframes out-top-fade {
  from {
    -webkit-transform: translateY(0%);
  }
  to {
    -webkit-transform: translateY(-120%);
  }
}
@keyframes out-top-fade {
  from {
    transform: translateY(0%);
  }
  to {
    transform: translateY(-120%);
  }
}
@-webkit-keyframes in-bottom-fade {
  from {
    -webkit-transform: translateY(120%);
  }
  to {
    -webkit-transform: translateY(0%);
  }
}
@keyframes in-bottom-fade {
  from {
    transform: translateY(120%);
  }
  to {
    transform: translateY(0%);
  }
}
@-webkit-keyframes out-bottom-fade {
  from {
    -webkit-transform: translateY(0%);
  }
  to {
    -webkit-transform: translateY(120%);
  }
}
@keyframes out-bottom-fade {
  from {
    transform: translateY(0%);
  }
  to {
    transform: translateY(120%);
  }
}
@-webkit-keyframes in-left-fade {
  from {
    -webkit-transform: translateX(-120%);
  }
  to {
    -webkit-transform: translateX(0%);
  }
}
@keyframes in-left-fade {
  from {
    transform: translateX(-120%);
  }
  to {
    transform: translateX(0%);
  }
}
@-webkit-keyframes out-left-fade {
  from {
    -webkit-transform: translateX(0%);
  }
  to {
    -webkit-transform: translateX(-120%);
  }
}
@keyframes out-left-fade {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-120%);
  }
}
@-webkit-keyframes in-right-fade {
  from {
    -webkit-transform: translateX(120%);
  }
  to {
    -webkit-transform: translateX(0%);
  }
}
@keyframes in-right-fade {
  from {
    transform: translateX(120%);
  }
  to {
    transform: translateX(0%);
  }
}
@-webkit-keyframes out-right-fade {
  from {
    -webkit-transform: translateX(0%);
  }
  to {
    -webkit-transform: translateX(120%);
  }
}
@keyframes out-right-fade {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(120%);
  }
}
@-webkit-keyframes video-icon-animation {
  from {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 1;
  }
  to {
    -webkit-transform: scale(2, 2);
    transform: scale(2, 2);
    opacity: 0;
  }
}
@keyframes video-icon-animation {
  from {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 1;
  }
  to {
    -webkit-transform: scale(2, 2);
    transform: scale(2, 2);
    opacity: 0;
  }
}
@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
@-webkit-keyframes anim-moema-1 {
  60% {
    -webkit-transform: scale3d(0.8, 0.8, 1);
    transform: scale3d(0.8, 0.8, 1);
  }
  85% {
    -webkit-transform: scale3d(1.1, 1.1, 1);
    transform: scale3d(1.1, 1.1, 1);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes anim-moema-1 {
  60% {
    -webkit-transform: scale3d(0.8, 0.8, 1);
    transform: scale3d(0.8, 0.8, 1);
  }
  85% {
    -webkit-transform: scale3d(1.1, 1.1, 1);
    transform: scale3d(1.1, 1.1, 1);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@-webkit-keyframes anim-moema-2 {
  to {
    opacity: 0;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes anim-moema-2 {
  to {
    opacity: 0;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes icon-bounce {
  0%, 100%, 20%, 50%, 80% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  60% {
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}
html {
  box-sizing: border-box;
}
a {
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
  color: #ff5e14;
}
a, a:hover, a:focus, a:before, a:after {
  outline: none;
  text-decoration: none;
}
a:hover, a:focus {
  color: #e06909;
}
.site {
  overflow: hidden;
}
p {
  margin-bottom: 15px;
  font-size: 15px;
}
body {
  background-color: #fff;
  font-size: 16px;
  line-height: 1.867;
  color: #808258;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-weight: 400;
  letter-spacing: 0;
  font-family: Poppins, sans-serif;
}
body.single-portfolio .wpb_text_column {
  font-size: 15px;
  line-height: 2.13;
}
body.ovhidden {
  overflow: hidden;
}
.site {
  position: relative;
}
.fac-normal {
  font-weight: 400;
}
.pxl-empty:empty {
  display: none !important;
}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  color: #262626;
  clear: both;
  line-height: 1.25;
  margin: 0 0 15px;
  letter-spacing: 0.03em;
}
.heading-default-font h1, .heading-default-font h2, .heading-default-font h3, .heading-default-font h4, .heading-default-font h5, .heading-default-font h6, .heading-default-font .h1, .heading-default-font .h2, .heading-default-font .h3, .heading-default-font .h4, .heading-default-font .h5, .heading-default-font .h6 {
  letter-spacing: -0.03em;
}
@media screen and (min-width: 992px) {
  .heading-default-font h3.ct-heading-tag {
    line-height: 1;
  }
}
.heading-default-font .error-404-content h2 {
  line-height: 1;
}
h1, .h1 {
  font-size: 48px;
}
h2, .h2 {
  font-size: 35px;
}
h3, .h3 {
  font-size: 22px;
}
h4, .h4 {
  font-size: 20px;
}
h5, .h5 {
  font-size: 18px;
}
h6, .h6 {
  font-size: 16px;
}
img {
  width: auto;
  max-width: 100%;
  height: auto;
}
label {
  margin-bottom: 0;
}
table {
  border-bottom: 1px solid #ededed;
  border-collapse: collapse;
  border-spacing: 0;
  line-height: 2;
  margin: 0 0 20px;
  width: 100%;
  -webkit-border-radius: 0;
  -khtml-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
}
table th {
  color: ;
}
caption, td {
  font-weight: normal;
  text-align: left;
}
.table > tbody > tr > td, .table > tbody > tr > th, .table > tfoot > tr > td, .table > tfoot > tr > th, .table > thead > tr > td, .table > thead > tr > th {
  padding: 13px 8px;
}
th {
  font-weight: 700;
}
td {
  border-top: 1px solid #ededed;
  padding: 6px 10px 6px 0;
  /*--- Definition Lists ---*/
}
dl {
  margin: 0 0 0 25px;
}
dl dt {
  font-weight: normal;
  line-height: 26px;
  text-transform: uppercase;
  font-weight: 700;
  color: #000;
}
dl dd {
  line-height: normal;
  margin-bottom: 20px;
}
dl dd a {
  color: #000;
}
dl dd a:hover {
  color: #dc0008;
}
code, kbd {
  background-color: transparent;
  border-radius: 4px;
  color: inherit;
  font-size: 100%;
  padding: 2px 4px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}
ins {
  color: #fff;
  border: none;
  padding: 2px;
  text-decoration: none;
  background-color: #dc0008;
}
pre {
  margin: 0 0 30px;
  padding: 20px;
  color: #ddd;
  background-color: #222;
  white-space: pre;
  text-shadow: 0 1px 0 #000;
  border-radius: 5px;
  border-bottom: 1px solid #555;
  box-shadow: 0 1px 5px rgba(0, 0, 0, .4) inset, 0 0 20px rgba(0, 0, 0, 10.2) inset;
}
ol {
  list-style: outside none decimal;
}
ul {
  padding-left: 0;
  margin: 0 0 15px;
}
ul li {
  list-style-position: inside;
  color: #232323;
}
blockquote {
  overflow: hidden;
  font-size: 18px;
  line-height: 30px;
  font-style: italic;
  position: relative;
  z-index: 1;
  color: #232323;
  clear: both;
  border-left: 4px solid #dc0008;
  background-color: rgba(128, 130, 88, 0.09);
  padding: 16px 20px 16px 80px;
}
blockquote p {
  margin-bottom: 0 !important;
  font-size: inherit;
}
blockquote cite {
  font-style: normal;
  display: block;
  font-size: inherit;
  margin-top: 18px;
  color: #808258;
}
blockquote:before {
  content: '\f10d';
  font-family: "FontAwesome";
  color: #dc0008;
  font-size: 35px;
  position: absolute;
  left: 20px;
  top: 20px;
  font-style: normal;
}
.dlab-divider {
  height: 1px;
  width: 100%;
  margin: 30px 0;
  background-color: #d3d3d3;
}
.single-hentry li > ul, .single-hentry li > ol {
  margin-top: 12px;
  margin-bottom: 12px;
}
dl + h2 + ul {
  padding-left: 35px;
}
dl + h2 + ul ul {
  padding-left: 35px;
}
dl + h2 + ul ul li {
  list-style: outside;
}
.post-password-form label {
  display: block;
  max-width: 60%;
}
.post-password-form input {
  margin: 10px 0;
}
@media screen and (max-width: 767px) {
  .post-password-form label {
    max-width: 60%;
  }
}
#tslOverlay {
  background-color: transparent !important;
}
@font-face {
  font-family: 'Gilroy Light';
  src: url('../fonts/main/gilroy-light-webfont.woff2') format('woff2'), url('../fonts/main/gilroy-light-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Gilroy Bold';
  src: url('../fonts/main/gilroy-bold-webfont.woff2') format('woff2'), url('../fonts/main/gilroy-bold-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
.ft-gilroy-l {
  font-family: 'Gilroy Light';
}
.ft-gilroy {
  font-family: 'Gilroy Bold';
}
.wp-image-space {
  margin-bottom: 23px;
  padding-top: 53px;
}
.fac.icon-fal {
  font-weight: 300;
}
.fac.icon-far {
  font-weight: 400;
}
.fac.icon-fab {
  font-family: "Font Awesome 5 Brands";
}
.col-flex-wrap {
  flex-wrap: wrap;
  display: flex;
}
.col-space-custom1.vc_column_container {
  padding-left: 210px;
}
.ft-heading2 {
  font-family: 'Poppins', sans-serif !important;
}
.yellow-color {
  color: #ffc80a;
}
.ct-primary-color {
  color: #dc0008;
}
.wp-block-cover .alignleft {
  margin-right: 30px;
}
.button-custom a {
  line-height: 40px !important;
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  padding: 0 25px;
}
.icon-slide-1, .icon-slide-2 {
  position: relative;
}
.icon-slide-1:before, .icon-slide-2:before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -khtml-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 15px;
  font-family: FontAwesome;
  font-size: 25px;
}
@media screen and (max-width: 767px) {
  .icon-slide-1:before, .icon-slide-2:before {
    display: none;
  }
}
.icon-slide-1:before {
  left: 20px;
  content: "\f095";
}
.icon-slide-2:before {
  content: "\f15c";
}
.btn-video {
  height: 80px;
  width: 80px;
  line-height: 80px;
  text-align: center;
  background-color: #dc0008;
  font-size: 14px;
  color: #fff;
  -webkit-border-radius: 80px;
  -khtml-border-radius: 80px;
  -moz-border-radius: 80px;
  -ms-border-radius: 80px;
  -o-border-radius: 80px;
  border-radius: 80px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -khtml-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.btn-video:hover, .btn-video:focus {
  background-color: #232323;
  color: #fff;
}
.line-color-slide {
  display: inline-block;
  width: 5px;
  height: 15px;
  background-color: #dc0008;
}
.primary-color {
  color: #dc0008;
}
@media screen and (max-width: 767px) {
  .entry-video .btn-video {
    height: 60px;
    width: 60px;
    line-height: 60px;
  }
}
.sub-title {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 500;
}
.d-table {
  display: table;
}
.d-table-cell {
  display: table-cell;
  vertical-align: middle;
}
.bg-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.screen-reader-text {
  display: none;
}
#content[tabindex="-1"]:focus {
  outline: 0;
}
#content.zindex, .vc_row.zindex {
  position: relative;
  z-index: 9999;
}
.alignleft, .alignright, .aligncenter {
  margin-top: 6px;
  margin-bottom: 30px;
}
.alignleft {
  display: inline;
  float: left;
  margin-right: 30px;
  margin-bottom: 15px !important;
}
.alignright {
  display: inline;
  float: right;
  margin-left: 30px;
  margin-bottom: 15px !important;
}
.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.bg-overlay {
  position: relative;
}
.bg-overlay:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: inherit;
  display: block;
}
.text-block {
  line-height: 1.75;
}
.text-block1 {
  font-size: 14px;
  line-height: 30px;
}
.bg-gradient {
  background-color: ;
  background-image: -webkit-gradient(linear, left top, right top, from(), to());
  background-image: -webkit-linear-gradient(left, , );
  background-image: -moz-linear-gradient(left, , );
  background-image: -ms-linear-gradient(left, , );
  background-image: -o-linear-gradient(left, , );
  background-image: linear-gradient(left, , );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='', endColorStr='', gradientType='1');
}
.el-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.box-white {
  background-color: #fff;
  border: 1px solid #e5e5e5;
  -webkit-border-radius: 6px;
  -khtml-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  border-radius: 6px;
  padding: 29px;
}
.box-white .menu li {
  font-size: 18px;
  line-height: 29px;
  font-weight: 600;
}
.bg-primary {
  background-color: #dc0008 !important;
}
.bg-secondary {
  background-color: #232323 !important;
}
.br-radius {
  -webkit-border-radius: 4px;
  -khtml-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
}
.ct-box {
  padding: 30px;
  -webkit-border-radius: 5px;
  -khtml-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  background-color: #fff;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.12);
  -khtml-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.12);
  -ms-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.12);
  -o-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.12);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.12);
}
.ct-bgimage {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.row-visible {
  overflow: visible !important;
}
.ct-close {
  display: inline-block;
  height: 32px;
  line-height: 32px;
  width: 30px;
  cursor: pointer;
  position: relative;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
}
.ct-close:before, .ct-close:after {
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
  content: "";
  background-color: #282828;
  display: block;
  height: 2px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 22px;
  top: 21px;
}
.ct-close:before {
  top: 15px;
  -webkit-transform: rotate(45deg);
  -khtml-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.ct-close:after {
  -webkit-transform: rotate(-45deg);
  -khtml-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 15px;
}
.ct-close:hover:before, .ct-close:hover:after {
  background-color: #e06909;
}
.ct-icon-plus {
  height: 10px;
  width: 10px;
  position: relative;
  display: inline-block;
}
.ct-icon-plus:before, .ct-icon-plus:after {
  content: "";
  background-color: #dc0008;
  position: absolute;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
}
.ct-icon-plus:before {
  width: 100%;
  height: 2px;
  top: 4px;
  left: 0;
}
.ct-icon-plus:after {
  width: 2px;
  height: 100%;
  left: 4px;
  top: 0;
}
.text-while {
  color: #fff;
}
.inline-block {
  display: inline-block;
  vertical-align: middle;
}
.text-right, .align-right {
  text-align: right;
}
.text-left, .align-left {
  text-align: left;
}
.text-center, .align-center {
  text-align: center;
}
.style-none {
  list-style: none;
  margin: 0;
}
.z-index-0 {
  z-index: 0;
}
.z-index-1 {
  z-index: 1;
}
.subtitle, .woocommerce .woocommerce-product-category a {
  font-size: 20px;
  line-height: 1.5;
  color: #dc0008;
}
.text-gradient {
  background-color: ;
  background-image: -webkit-gradient(linear, left top, right top, from(), to());
  background-image: -webkit-linear-gradient(left, , );
  background-image: -moz-linear-gradient(left, , );
  background-image: -ms-linear-gradient(left, , );
  background-image: -o-linear-gradient(left, , );
  background-image: linear-gradient(left, , );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='', endColorStr='', gradientType='1');
  background-color: transparent;
  background-clip: text;
  -o-background-clip: text;
  -ms-background-clip: text;
  -moz-background-clip: text;
  -webkit-background-clip: text;
  text-fill-color: transparent;
  -o-text-fill-color: transparent;
  -ms-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  -webkit-text-fill-color: transparent;
}
.text-gradient2 {
  background-color: #dc0008;
  background-image: -webkit-gradient(linear, left top, right top, from(#dc0008), to(#232323));
  background-image: -webkit-linear-gradient(left, #dc0008, #232323);
  background-image: -moz-linear-gradient(left, #dc0008, #232323);
  background-image: -ms-linear-gradient(left, #dc0008, #232323);
  background-image: -o-linear-gradient(left, #dc0008, #232323);
  background-image: linear-gradient(left, #dc0008, #232323);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#dc0008', endColorStr='#232323', gradientType='1');
  background-color: transparent;
  background-clip: text;
  -o-background-clip: text;
  -ms-background-clip: text;
  -moz-background-clip: text;
  -webkit-background-clip: text;
  text-fill-color: transparent;
  -o-text-fill-color: transparent;
  -ms-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  -webkit-text-fill-color: transparent;
}
@media screen and (min-width: 1200px) {
  .rm-padding-right {
    padding-right: 0 !important;
  }
}
@media screen and (min-width: 992px) {
  .flex {
    display: flex;
    display: -webkit-flex;
    display: -ms-flex;
    flex-wrap: wrap;
  }
  .flex .flex-col {
    display: flex !important;
    display: -webkit-flex !important;
    display: -ms-flex !important;
    flex-wrap: wrap;
    align-items: center;
    -webkit-align-items: center;
    -ms-align-items: center;
  }
  .flex-two {
    display: flex;
    display: -webkit-flex;
    display: -ms-flex;
    flex-flow: row wrap;
  }
  .flex-two .flex-col {
    flex: 1 0 0px;
    -webkit-flex: 1 0 0px;
    -ms-flex: 1 0 0px;
    display: flex !important;
    display: -webkit-flex !important;
    display: -ms-flex !important;
    flex-wrap: wrap;
    align-items: center;
    -webkit-align-items: center;
    -ms-align-items: center;
  }
}
@media screen and (min-width: 992px) {
  .text-left-lg {
    text-align: left !important;
  }
  .text-right-lg {
    text-align: right !important;
  }
}
@media screen and (max-width: 1199px) {
  .align-center-md {
    text-align: center;
  }
  .align-left-md {
    text-align: left;
  }
  .align-right-md {
    text-align: right;
  }
}
@media screen and (max-width: 991px) {
  .text-center-md {
    text-align: center !important;
  }
  .text-left-md {
    text-align: left !important;
  }
  .text-right-md {
    text-align: right !important;
  }
  .align-center-sm {
    text-align: center;
  }
  .align-left-sm {
    text-align: left;
  }
  .align-right-sm {
    text-align: right;
  }
}
@media screen and (max-width: 767px) {
  .text-center-sm {
    text-align: center !important;
  }
  .text-left-sm {
    text-align: left !important;
  }
  .text-right-sm {
    text-align: right !important;
  }
  .align-center-xs {
    text-align: center;
  }
  .align-left-xs {
    text-align: left;
  }
  .align-right-xs {
    text-align: right;
  }
}
@media screen and (min-width: 1200px) {
  .site-revolution + .header-layout10 {
    margin-top: -75px;
  }
}
input::-moz-placeholder, textarea::-moz-placeholder {
  color: inherit;
  opacity: 1;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}
input::-o-placeholder, textarea::-o-placeholder {
  color: inherit;
  opacity: 1;
}
input::-ms-placeholder, textarea::-ms-placeholder {
  color: inherit;
  opacity: 1;
}
input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], input[type="tel"], input[type="number"], 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, select, .nice-select {
  background-color: #fff;
  border: 1px solid #e9e9e9;
  color: #777;
  padding: 6px 25px;
  line-height: normal;
  font-size: 14px;
  height: 48px;
  -webkit-transition: all 200ms linear 0ms;
  -khtml-transition: all 200ms linear 0ms;
  -moz-transition: all 200ms linear 0ms;
  -ms-transition: all 200ms linear 0ms;
  -o-transition: all 200ms linear 0ms;
  transition: all 200ms linear 0ms;
  -webkit-box-shadow: none;
  -khtml-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
  width: 100%;
  outline: none;
}
input[type="text"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="password"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="number"]: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, select:focus, .nice-select:focus {
  outline: 0;
  border-color: #dc0008;
}
select {
  height: 60px;
}
textarea {
  line-height: normal;
  padding-top: 18px;
  padding-bottom: 18px;
  height: 150px;
}
.ct-select form {
  position: relative;
  background-color: #fff;
  -webkit-border-radius: 4px;
  -khtml-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
}
.ct-select select {
  height: 39px;
  line-height: 37px;
  font-size: 15px;
  background-color: transparent;
  position: relative;
  z-index: 99;
  -webkit-appearance: none;
  -khtml-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}
.ct-select i {
  position: absolute;
  right: 14px;
  top: 50%;
  -webkit-transform: translate(0px, -50%);
  -khtml-transform: translate(0px, -50%);
  -moz-transform: translate(0px, -50%);
  -ms-transform: translate(0px, -50%);
  -o-transform: translate(0px, -50%);
  transform: translate(0px, -50%);
}
.wpcf7-form .input-filled {
  position: relative;
  margin-bottom: 30px;
  z-index: 1;
}
.wpcf7-form .input-filled > i {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0px, -50%);
  -khtml-transform: translate(0px, -50%);
  -moz-transform: translate(0px, -50%);
  -ms-transform: translate(0px, -50%);
  -o-transform: translate(0px, -50%);
  transform: translate(0px, -50%);
  right: 43px;
  font-size: 15px;
  color: #dc0008;
  z-index: 9;
}
.wpcf7-form .input-filled.wpcf7-textarea-wrap > i {
  top: 27px;
  -webkit-transform: translate(0px, 0%);
  -khtml-transform: translate(0px, 0%);
  -moz-transform: translate(0px, 0%);
  -ms-transform: translate(0px, 0%);
  -o-transform: translate(0px, 0%);
  transform: translate(0px, 0%);
}
.wpcf7-form .wpcf7-form-control-wrap {
  display: block;
}
.wpcf7-form .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
  display: none;
}
.wpcf7-form .wpcf7-form-control-wrap .wpcf7-not-valid {
  border-color: #f13c3c !important;
}
.wpcf7-form .wpcf7-response-output {
  border: medium none;
  font-style: italic;
  padding: 0;
  margin: 0;
  font-size: 14px;
}
.wpcf7-form .wpcf7-response-output.wpcf7-mail-sent-ok {
  color: #398f14;
}
.wpcf7-form .wpcf7-response-output.wpcf7-validation-errors {
  color: #f13c3c;
}
.wpcf7-form .wpcf7-form-control:not(.wpcf7-submit) {
  height: 50px;
  border: 2px solid #eaedf4;
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
  padding-left: 28px;
  padding-right: 28px;
  font-size: 15px;
  font-weight: 600;
}
.wpcf7-form .wpcf7-form-control:not(.wpcf7-submit):focus {
  border-color: #dc0008;
}
.wpcf7-form .wpcf7-form-control.wpcf7-textarea {
  height: 125px;
  padding-top: 22px;
}
.wpcf7-form button.wpcf7-submit {
  line-height: 50px;
  padding: 0 70px;
}
.wpcf7-form button.wpcf7-submit i {
  font-size: 12px;
}
.wpcf7-form .ajax-loader {
  display: none !important;
}
.wpcf7-form .wpcf7-menu {
  display: block;
}
.wpcf7-form .wpcf7-menu select {
  background-color: transparent;
  -webkit-appearance: none;
  -khtml-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  position: relative;
  z-index: 99;
}
.wpcf7-form .wpcf7-menu select option {
  padding: 5px;
}
.ct-contact-form-default.style2 .wpcf7-form .wpcf7-form-control:not(.wpcf7-submit) {
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
  border-color: #e9e9e9;
  font-weight: 400;
}
.ct-contact-form-default.style2 .wpcf7-form .wpcf7-form-control:not(.wpcf7-submit):focus {
  border-color: #dc0008;
}
.ct-contact-form-default.style2 .wpcf7-form .wpcf7-form-control.wpcf7-textarea {
  height: 160px;
}
.ct-contact-form-default.style2 .wpcf7-form button.wpcf7-submit {
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
}
.ct-contact-form-default.style2 .wpcf7-form button.wpcf7-submit:before {
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
}
.ct-contact-form-default.style2 .wpcf7-form .wpcf7-response-output {
  text-align: center;
}
#ui-datepicker-div {
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.24);
  border: none;
  padding: 0;
}
#ui-datepicker-div .ui-datepicker-header {
  background-color: #dc0008;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-border-radius: 3px 3px 0 0;
  -khtml-border-radius: 3px 3px 0 0;
  -moz-border-radius: 3px 3px 0 0;
  -ms-border-radius: 3px 3px 0 0;
  -o-border-radius: 3px 3px 0 0;
  border-radius: 3px 3px 0 0;
  font-weight: normal;
  padding: 0;
}
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-prev, #ui-datepicker-div .ui-datepicker-header .ui-datepicker-next {
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  margin: 0;
  top: 0;
}
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-prev span, #ui-datepicker-div .ui-datepicker-header .ui-datepicker-next span {
  display: none;
}
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-prev:before, #ui-datepicker-div .ui-datepicker-header .ui-datepicker-next:before {
  font-family: "Material-Design-Iconic-Font";
  font-size: 16px;
  color: rgba(255, 255, 255, 0.4);
}
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-prev {
  left: 0;
}
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-prev:before {
  content: "\f2f4";
}
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-next {
  right: 0;
}
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-next:before {
  content: "\f2f6";
}
#ui-datepicker-div .ui-datepicker-title {
  color: #fff;
  font-size: 16px;
  line-height: 40px;
  margin: 0 40px;
}
#ui-datepicker-div .ui-datepicker-title select {
  font-size: inherit;
  color: #fff;
  line-height: normal;
  height: inherit;
  background-color: transparent;
  -webkit-appearance: none;
  -khtml-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  margin: 0;
  padding: 0;
  width: inherit;
  border: none;
}
#ui-datepicker-div .ui-datepicker-title select option {
  padding: 0;
}
#ui-datepicker-div .ui-datepicker-calendar {
  background-color: transparent;
  border: none;
  margin: 0;
}
#ui-datepicker-div .ui-datepicker-calendar thead {
  background-color: #dc0008;
}
#ui-datepicker-div .ui-datepicker-calendar th span {
  text-transform: uppercase;
  color: #fff;
}
#ui-datepicker-div .ui-datepicker-calendar td {
  font-size: 12px;
}
#ui-datepicker-div .ui-datepicker-calendar td a, #ui-datepicker-div .ui-datepicker-calendar td span {
  background-color: transparent;
  border: medium none;
  text-align: center;
}
#ui-datepicker-div .ui-datepicker-calendar td a.ui-state-active, #ui-datepicker-div .ui-datepicker-calendar td span.ui-state-active, #ui-datepicker-div .ui-datepicker-calendar td a.ui-state-highlight, #ui-datepicker-div .ui-datepicker-calendar td span.ui-state-highlight {
  background-color: #dc0008;
  color: #fff;
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
}
#ui-datepicker-div .ui-datepicker-calendar td a.ui-state-highlight, #ui-datepicker-div .ui-datepicker-calendar td span.ui-state-highlight {
  background-color: rgba(220, 0, 8, 0.7);
}
form .select2-container--default {
  width: 100% !important;
}
form .select2-container--default .select2-selection {
  border: 1px solid #e9e9e9;
  height: 48px;
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
}
form .select2-container--default .select2-selection .select2-selection__rendered {
  line-height: 48px;
  padding-left: 25px;
  padding-right: 45px;
  font-size: 14px;
  color: #777;
}
form .select2-container--default .select2-selection .select2-selection__arrow {
  right: 20px;
  top: 50%;
  color: #777;
  height: 20px;
  width: 20px;
  line-height: 20px;
  -webkit-transform: translate(0, -50%);
  -khtml-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
form .select2-container--default .select2-selection .select2-selection__clear {
  height: 20px;
  line-height: 20px;
  position: absolute;
  right: 30px;
  text-align: center;
  top: 50%;
  -webkit-transform: translate(0px, -50%);
  -khtml-transform: translate(0px, -50%);
  -moz-transform: translate(0px, -50%);
  -ms-transform: translate(0px, -50%);
  -o-transform: translate(0px, -50%);
  transform: translate(0px, -50%);
  width: 20px;
  color: #8f8f8f;
}
form .select2-container--default .select2-selection .select2-selection__placeholder {
  color: rgba(55, 55, 55, 0.87);
}
.select2-container.select2-container--open .select2-dropdown {
  border-color: #e7e8e9;
}
.select2-container.select2-container--open .select2-dropdown .select2-search__field {
  border: 1px solid #e7e8e9;
  padding-left: 15px;
  padding-right: 15px;
}
.select2-container.select2-container--open .select2-results li.select2-results__option--highlighted {
  background-color: #dc0008;
}
.ct-field-checkbox {
  position: relative;
  padding-left: 27px;
}
.ct-field-checkbox .icon-check {
  border: 1px solid #e1e3e3;
  border-radius: 1px;
  display: block;
  height: 17px;
  width: 17px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
  -khtml-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  z-index: 1;
}
.ct-field-checkbox .icon-check:before {
  content: "\f00c";
  font-size: 13px;
  color: #dc0008;
  position: absolute;
  top: -4px;
  left: 1px;
  font-family: FontAwesome;
  opacity: 0;
}
.ct-field-checkbox input {
  bottom: 0;
  height: 100%;
  left: 0;
  position: absolute;
  width: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 3;
}
.ct-field-checkbox input:checked + .icon-check:before {
  opacity: 1;
}
.nice-select {
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
  padding-right: 40px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
}
.nice-select:after {
  content: "\f2f9";
  font-family: "Material-Design-Iconic-Font";
  font-size: 20px;
  color: #c9cce4;
  position: absolute;
  right: 28px;
  top: 50%;
  -webkit-transform: translate(0px, -50%);
  -khtml-transform: translate(0px, -50%);
  -moz-transform: translate(0px, -50%);
  -ms-transform: translate(0px, -50%);
  -o-transform: translate(0px, -50%);
  transform: translate(0px, -50%);
}
.nice-select span.current {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 56px;
}
.nice-select .option {
  text-overflow: ellipsis;
  overflow: hidden;
}
.nice-select.open .list {
  width: 100%;
  max-height: 250px;
  overflow: auto;
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: scale(1) translateY(0);
  -ms-transform: scale(1) translateY(0);
  transform: scale(1) translateY(0);
}
.nice-select.disabled {
  border-color: #ededed;
  color: #999;
  pointer-events: none;
}
.nice-select.disabled:after {
  border-color: #ccc;
}
.nice-select.wide {
  width: 100%;
}
.nice-select.wide .list {
  left: 0 !important;
  right: 0 !important;
}
.nice-select.right {
  float: right;
}
.nice-select.right .list {
  left: auto;
  right: 0;
}
.nice-select.small {
  font-size: 12px;
  height: 36px;
  line-height: 34px;
}
.nice-select.small:after {
  height: 4px;
  width: 4px;
}
.nice-select.small .option {
  line-height: 34px;
  min-height: 34px;
}
.nice-select .list {
  margin-top: 4px !important;
  margin-left: -2px !important;
  margin-right: -2px !important;
  border: 2px solid #e9e9e9;
  background-color: #fff;
  padding: 12px 0px;
  box-sizing: border-box;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  -webkit-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transform: scale(0.75) translateY(-21px);
  -ms-transform: scale(0.75) translateY(-21px);
  transform: scale(0.75) translateY(-21px);
  -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  z-index: 9;
  color: #a7a7c1;
  font-size: 14px;
  width: calc(100% + 4px) !important;
  width: -webkit-calc(100% + 4px) !important;
}
.nice-select .list .selected {
  color: #dc0008;
}
.nice-select .list:hover .option:not(:hover) {
  background-color: transparent !important;
}
.nice-select .option {
  cursor: pointer;
  line-height: normal;
  list-style: none;
  outline: none;
  padding: 6px 22px;
  text-align: left;
  -webkit-transition: all 0.2s;
  -khtml-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  margin-bottom: 0 !important;
}
.nice-select .option:hover {
  color: #dc0008;
}
.nice-select .option.disabled {
  background-color: transparent;
  color: #999;
  cursor: default;
}
.no-csspointerevents .nice-select .list {
  display: none;
}
.no-csspointerevents .nice-select.open .list {
  display: block;
}
body .booked-calendar-wrap .booked-appt-list .timeslot .timeslot-title {
  color: #232323;
}
body #content #booked-profile-page .booked-profile-header, body #content table.booked-calendar th {
  background-color: #dc0008 !important;
}
body #content table.booked-calendar tr:not(.days) th {
  background-color: #dc0008 !important;
  border-color: #dc0008 !important;
}
body #booked-profile-page input[type="submit"].button-primary:hover, body table.booked-calendar input[type="submit"].button-primary:hover, body .booked-list-view button.button:hover, body .booked-list-view input[type="submit"].button-primary:hover, body .booked-modal input[type="submit"].button-primary:hover, body table.booked-calendar .booked-appt-list .timeslot .timeslot-people button:hover, body #booked-profile-page .appt-block .google-cal-button > a:hover {
  background-color: #232323 !important;
  border-color: #232323 !important;
}
#ui-datepicker-div.booked_custom_date_picker table.ui-datepicker-calendar tbody td.ui-datepicker-today a, #ui-datepicker-div.booked_custom_date_picker table.ui-datepicker-calendar tbody td.ui-datepicker-today a:hover, body #booked-profile-page input[type="submit"].button-primary, body table.booked-calendar input[type="submit"].button-primary, body .booked-list-view button.button, body .booked-list-view input[type="submit"].button-primary, body .booked-list-view button.button, body .booked-list-view input[type="submit"].button-primary, body .booked-modal input[type="submit"].button-primary, body table.booked-calendar .booked-appt-list .timeslot .timeslot-people button, body #booked-profile-page .booked-profile-appt-list .appt-block.approved .status-block, body #booked-profile-page .appt-block .google-cal-button > a, body .booked-modal p.booked-title-bar, body table.booked-calendar td:hover .date span, body .booked-list-view a.booked_list_date_picker_trigger.booked-dp-active, body .booked-list-view a.booked_list_date_picker_trigger.booked-dp-active:hover, .booked-ms-modal .booked-book-appt {
  background-color: #dc0008 !important;
  border-color: #dc0008 !important;
}
body #content table.booked-calendar td.today .date span {
  border-color: #232323 !important;
}
body #content table.booked-calendar td.today:hover .date span {
  background-color: #232323 !important;
}
body #content table.booked-calendar td.active:hover .date span {
  color: #fff !important;
  /* Date Time Picker */
}
body .xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_today {
  color: #dc0008 !important;
}
body .xdsoft_datetimepicker .xdsoft_label > .xdsoft_select > div > .xdsoft_option:hover, body .xdsoft_datetimepicker .xdsoft_calendar td:hover, body .xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  background: #232323 !important;
  -webkit-box-shadow: none !important;
  -khtml-box-shadow: none !important;
  -moz-box-shadow: none !important;
  -ms-box-shadow: none !important;
  -o-box-shadow: none !important;
  box-shadow: none !important;
  color: #fff !important;
}
body .xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_today, body .xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default, body .xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current, body .xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current.xdsoft_disabled:hover, body .xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current.xdsoft_disabled:hover body .xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current body .xdsoft_datetimepicker .xdsoft_label > .xdsoft_select > div > .xdsoft_option.xdsoft_current, body .xdsoft_timepicker .xdsoft_time_variant .xdsoft_current {
  background-color: #dc0008 !important;
  -webkit-box-shadow: none !important;
  -khtml-box-shadow: none !important;
  -moz-box-shadow: none !important;
  -ms-box-shadow: none !important;
  -o-box-shadow: none !important;
  box-shadow: none !important;
  color: #fff !important;
}
body .xdsoft_datetimepicker {
  font-family: inherit;
}
.btn, button, .button, input[type="submit"] {
  background-color: #dc0008;
  border: 2px solid #dc0008;
  color: #fff;
  font-size: 15px;
  padding: 0 40px;
  line-height: 50px;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
  position: relative;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  font-weight: 600;
  outline: none;
  white-space: nowrap;
  text-transform: capitalize;
  letter-spacing: -0.03em;
}
.btn:hover, button:hover, .button:hover, input[type="submit"]:hover, .btn:focus, button:focus, .button:focus, input[type="submit"]:focus, .btn:active, button:active, .button:active, input[type="submit"]:active {
  -webkit-box-shadow: none;
  -khtml-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
  outline: none;
  text-decoration: none;
  color: #dc0008;
  background-color: transparent;
}
.btn {
  -webkit-border-radius: 0;
  -khtml-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
}
.btn i {
  margin-left: 8px;
}
.btn.size-lg {
  line-height: 50px;
  padding: 0 32px;
}
.btn.btn-default {
  background-color: #dc0008;
  color: #fff;
}
.btn.btn-default.btn-white {
  background-color: #fff !important;
  color: #808258;
}
.btn.btn-default.btn-white:hover {
  background-color: #232323 !important;
  color: #fff;
}
.btn.btn-secondary {
  background-color: #232323;
  color: #fff;
}
.btn.btn-default, .btn.btn-secondary {
  overflow: visible;
  border: none;
  line-height: 50px;
}
.btn.btn-default.btn-modern-white, .btn.btn-secondary.btn-modern-white {
  color: #dc0008;
}
.btn.btn-default.btn-modern-white:before, .btn.btn-secondary.btn-modern-white:before {
  border-color: #fff;
}
.btn.btn-default.btn-modern-white:after, .btn.btn-secondary.btn-modern-white:after {
  background-color: #fff;
}
.btn.btn-default.btn-modern-white:hover, .btn.btn-secondary.btn-modern-white:hover, .btn.btn-default.btn-modern-white:focus, .btn.btn-secondary.btn-modern-white:focus, .btn.btn-default.btn-modern-white:active, .btn.btn-secondary.btn-modern-white:active {
  color: #fff;
}
.btn.btn-secondary:before {
  border-color: #232323;
}
.btn.btn-secondary:after {
  background-color: #232323;
}
.btn.btn-secondary:hover, .btn.btn-secondary:focus, .btn.btn-secondary:active {
  background-color: #dc0008;
  color: #fff;
}
.btn.btn-aylen {
  background-color: #232323;
  color: #fff;
  border: none;
  line-height: 55px;
}
.btn.btn-aylen:before, .btn.btn-aylen:after {
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  bottom: 100%;
  left: 0;
  z-index: -1;
  -webkit-transition: transform 0.3s;
  -khtml-transition: transform 0.3s;
  -moz-transition: transform 0.3s;
  -ms-transition: transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition-timing-function: ease;
  -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}
.btn.btn-aylen:before {
  background: rgba(220, 0, 8, 0.45);
}
.btn.btn-aylen:after {
  background: #dc0008;
}
.btn.btn-aylen:hover, .btn.btn-aylen:focus, .btn.btn-aylen:active {
  color: #fff;
}
.btn.btn-aylen:hover:before, .btn.btn-aylen:focus:before, .btn.btn-aylen:active:before, .btn.btn-aylen:hover:after, .btn.btn-aylen:focus:after, .btn.btn-aylen:active:after {
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
}
.btn.btn-aylen:hover:after, .btn.btn-aylen:focus:after, .btn.btn-aylen:active:after {
  -webkit-transition-delay: 0.175s;
  transition-delay: 0.175s;
}
.btn.btn-black {
  line-height: 1.42857;
  padding: 12px 30px;
  background-color: #000;
  color: #fff;
  border-radius: 3px;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  border: none;
}
.btn.btn-black:before, .btn.btn-black:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  opacity: 1;
  -webkit-transform: translate(-13%, -190%) rotate(-30deg);
  transform: translate(-13%, -190%) rotate(-30deg);
  border-bottom-width: 2px;
  border-bottom-style: solid;
  border-bottom-color: #fff;
  background-color: rgba(255, 255, 255, .255);
}
.btn.btn-black:hover:before, .btn.btn-black:hover:after {
  opacity: 0;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
.btn.btn-moema {
  background-color: #191f23;
  color: #fff;
  border: none;
  line-height: 55px;
  padding-left: 28px;
  padding-right: 28px;
  overflow: visible;
}
.btn.btn-moema:before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0px;
  bottom: -20px;
  right: 0px;
  background: inherit;
  -webkit-border-radius: 46px;
  -khtml-border-radius: 46px;
  -moz-border-radius: 46px;
  -ms-border-radius: 46px;
  -o-border-radius: 46px;
  border-radius: 46px;
  z-index: -1;
  opacity: 0.4;
  -webkit-transform: scale3d(0.8, 0.5, 1);
  -khtml-transform: scale3d(0.8, 0.5, 1);
  -moz-transform: scale3d(0.8, 0.5, 1);
  -ms-transform: scale3d(0.8, 0.5, 1);
  -o-transform: scale3d(0.8, 0.5, 1);
  transform: scale3d(0.8, 0.5, 1);
}
.btn.btn-moema:hover, .btn.btn-moema:focus, .btn.btn-moema:active {
  -webkit-transition: background-color 0.1s 0.3s, color 0.1s 0.3s;
  -khtml-transition: background-color 0.1s 0.3s, color 0.1s 0.3s;
  -moz-transition: background-color 0.1s 0.3s, color 0.1s 0.3s;
  -ms-transition: background-color 0.1s 0.3s, color 0.1s 0.3s;
  -o-transition: background-color 0.1s 0.3s, color 0.1s 0.3s;
  transition: background-color 0.1s 0.3s, color 0.1s 0.3s;
  color: #fff;
  background-color: #dc0008;
  -o-animation: anim-moema-1 0.3s forwards;
  -ms-animation: anim-moema-1 0.3s forwards;
  -webkit-animation: anim-moema-1 0.3s forwards;
  animation: anim-moema-1 0.3s forwards;
}
.btn.btn-moema:hover:before, .btn.btn-moema:focus:before, .btn.btn-moema:active:before {
  -o-animation: anim-moema-2 0.3s 0.3s forwards;
  -ms-animation: anim-moema-2 0.3s 0.3s forwards;
  -webkit-animation: anim-moema-2 0.3s 0.3s forwards;
  animation: anim-moema-2 0.3s 0.3s forwards;
}
.btn.btn-outline-white {
  background-color: transparent;
  color: #fff;
  border-color: #fff;
  border: none;
  -webkit-box-shadow: 0 0 0 2px #fff inset;
  -khtml-box-shadow: 0 0 0 2px #fff inset;
  -moz-box-shadow: 0 0 0 2px #fff inset;
  -ms-box-shadow: 0 0 0 2px #fff inset;
  -o-box-shadow: 0 0 0 2px #fff inset;
  box-shadow: 0 0 0 2px #fff inset;
  line-height: 55px;
}
.btn.btn-outline-white:before, .btn.btn-outline-white:after {
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  bottom: 100%;
  left: 0;
  z-index: -1;
  -webkit-transition: transform 0.3s;
  -khtml-transition: transform 0.3s;
  -moz-transition: transform 0.3s;
  -ms-transition: transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition-timing-function: ease;
  -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}
.btn.btn-outline-white:before {
  background: rgba(220, 0, 8, 0.45);
}
.btn.btn-outline-white:after {
  background: #dc0008;
}
.btn.btn-outline-white:hover, .btn.btn-outline-white:focus, .btn.btn-outline-white:active {
  color: #fff;
  border-color: #dc0008;
}
.btn.btn-outline-white:hover:before, .btn.btn-outline-white:focus:before, .btn.btn-outline-white:active:before, .btn.btn-outline-white:hover:after, .btn.btn-outline-white:focus:after, .btn.btn-outline-white:active:after {
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
}
.btn.btn-outline-white:hover:after, .btn.btn-outline-white:focus:after, .btn.btn-outline-white:active:after {
  -webkit-transition-delay: 0.175s;
  transition-delay: 0.175s;
}
.btn-align-center {
  text-align: center;
}
.btn-align-right {
  text-align: right;
}
.btn-group .btn + .btn {
  margin-left: 30px;
}
.btn-block {
  display: block;
}
.ct-button-wrapper i {
  margin-left: 4px;
}
.ct-btn-group {
  display: inline-block;
  margin-right: 20px;
  margin-bottom: 20px;
}
.btn-shadow .btn {
  -webkit-box-shadow: 0 16px 32px rgba(220, 0, 8, 0.3);
  -khtml-box-shadow: 0 16px 32px rgba(220, 0, 8, 0.3);
  -moz-box-shadow: 0 16px 32px rgba(220, 0, 8, 0.3);
  -ms-box-shadow: 0 16px 32px rgba(220, 0, 8, 0.3);
  -o-box-shadow: 0 16px 32px rgba(220, 0, 8, 0.3);
  box-shadow: 0 16px 32px rgba(220, 0, 8, 0.3);
}
.ct-double-button a {
  margin-right: 10px;
}
@media screen and (max-width: 575px) {
  .ct-double-button a {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.ct-double-button a:last-child {
  margin-right: 0;
  margin-bottom: 0;
}
.ct-double-button.double-buttom-custom .btn {
  -webkit-border-radius: 4px;
  -khtml-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
}
.ct-double-button.double-buttom-custom .btn:nth-child(2) {
  background-color: #232323 !important;
}
.ct-double-button.btn-db-custom a {
  overflow: hidden !important;
  position: relative;
  height: 45px;
  line-height: 45px;
  padding-left: 25px;
  padding-right: 25px;
}
.ct-double-button.btn-db-custom a:after, .ct-double-button.btn-db-custom a:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  -webkit-transition: all 0.8s;
  -khtml-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -ms-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
  opacity: 1;
  -webkit-transform: translate(-105%, 0);
  transform: translate(-105%, 0);
  border-right-width: 2px;
  border-right-style: solid;
  border-right-color: #fff;
  background-color: rgba(255, 255, 255, .5);
}
.ct-double-button.btn-db-custom a:hover:after {
  opacity: 0;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
#header-wrap {
  position: relative;
  z-index: 999;
  background-color: #fff;
}
#header-wrap #topbar {
  background-color: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, .08);
}
#header-wrap #topbar .container {
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
}
#header-wrap #topbar .topbar-menu {
  flex-grow: 1;
  padding-right: 100px;
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
@media screen and (max-width: 991px) {
  #header-wrap #topbar .topbar-menu {
    padding-right: 35px;
  }
}
#header-wrap #topbar .topbar-menu li {
  display: inline-block;
  margin-right: 5px;
  padding-right: 10px;
  position: relative;
}
#header-wrap #topbar .topbar-menu li:after {
  content: "";
  display: block;
  height: 15px;
  width: 1px;
  background: rgba(35, 35, 35, 0.7);
  position: absolute;
  right: 0px;
  opacity: 0.2;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -khtml-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
#header-wrap #topbar .topbar-menu li:last-child:after {
  background-color: transparent;
}
#header-wrap #topbar .topbar-menu a {
  color: rgba(35, 35, 35, 0.8);
}
#header-wrap #topbar .topbar-menu a:hover {
  color: #dc0008;
}
#header-wrap #topbar .topbar-social {
  margin-bottom: 0;
  list-style: none;
  flex-grow: 1;
}
#header-wrap #topbar .topbar-social li {
  display: inline-block;
}
#header-wrap #topbar .topbar-social + .header-button-group {
  margin-left: 25px;
}
@media screen and (max-width: 991px) {
  #header-wrap #topbar .topbar-social span {
    display: none;
  }
}
#header-wrap #topbar .btn-topbar {
  color: #fff;
  background-color: #dc0008;
  padding: 12px 30px;
  display: inline-block;
  font-size: 13px;
  outline: 0;
  cursor: pointer;
  outline: 0;
  line-height: 1.42857;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
}
#header-wrap #topbar .btn-topbar.btn-effect {
  overflow: hidden;
  position: relative;
}
#header-wrap #topbar .btn-topbar.btn-effect span {
  z-index: 20;
}
#header-wrap #topbar .btn-topbar.btn-effect:after {
  background: #fff;
  content: "";
  height: 155px;
  left: -75px;
  opacity: 0.2;
  position: absolute;
  top: -50px;
  transform: rotate(35deg);
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
  width: 50px;
  z-index: 0;
}
#header-wrap #topbar .btn-topbar.btn-effect:hover:after {
  left: 120%;
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
}
#header-wrap #topbar .topbar-social, #header-wrap #topbar .header-main-social {
  text-align: right;
  margin-left: -8px;
  margin-right: -8px;
  font-size: 15px;
}
#header-wrap #topbar .topbar-social label, #header-wrap #topbar .header-main-social label {
  color: #808258;
  font-weight: 600;
}
#header-wrap #topbar .topbar-social li, #header-wrap #topbar .header-main-social li {
  margin-left: 8px;
  margin-right: 8px;
}
#header-wrap #topbar .topbar-social li a, #header-wrap #topbar .header-main-social li a {
  font-size: 15px;
  color: #808258;
}
#header-wrap #topbar .topbar-social li a:hover, #header-wrap #topbar .header-main-social li a:hover {
  color: #dc0008;
}
@media screen and (max-width: 767px) {
  #header-wrap #topbar {
    display: none;
  }
}
#header-wrap .header-main {
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  -khtml-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  -moz-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  -ms-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  -o-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  position: relative;
  background-color: #fff;
}
#header-wrap .header-main.h-fixed {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  -webkit-animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
  -khtml-animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
  -moz-animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
  -ms-animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
  -o-animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
  animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
  -khtml-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
}
#header-wrap .header-main .row {
  align-items: center;
}
#header-wrap .header-branding, #header-wrap .header-navigation {
  margin-left: 15px;
  margin-right: 15px;
}
#header-wrap .header-branding {
  position: relative;
  margin-top: 10px;
  margin-bottom: 10px;
  flex-grow: 1;
}
#header-wrap .header-branding img {
  max-height: 45px;
}
#header-wrap .header-branding a.logo-dark {
  opacity: 1;
}
#header-wrap .header-branding a.logo-light {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
  -khtml-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  opacity: 0;
}
#header-wrap .header-navigation {
  display: flex;
  align-items: center;
}
#header-wrap .header-button {
  margin-right: 15px;
}
#header-wrap .header-button a {
  letter-spacing: -0.03em;
  text-transform: capitalize;
  line-height: 50px;
}
@media screen and (max-width: 991px) {
  #header-wrap .header-button {
    display: none;
  }
}
#header-wrap .site-menu-right {
  margin-left: 17px;
  padding-left: 17px;
  border-left: 1px solid rgba(35, 35, 35, 0.08);
  position: relative;
  line-height: 70px;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
}
#header-wrap .site-menu-right .menu-right-item {
  display: inline-block;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
  cursor: pointer;
  color: #808258;
}
#header-wrap .site-menu-right .menu-right-item + .menu-right-item {
  margin-left: 21px;
}
#header-wrap .header-button-group {
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: -1px;
}
#header-wrap .header-button-group a i {
  margin-left: 8px;
  font-size: 12px;
  position: relative;
  top: -1px;
}
#header-wrap .header-langague ul {
  list-style: none;
  margin: 0;
}
#header-wrap .header-langague .language-menu > li {
  position: relative;
}
#header-wrap .header-langague .language-menu > li > a {
  position: relative;
  display: inline-block;
  z-index: 1;
  color: #dc0008;
  background-color: transparent;
  border: 2px solid #dc0008;
  line-height: 51px;
  height: 55px;
  padding: 0 40px;
  font-size: 17px;
  overflow: visible;
  -webkit-border-radius: 55px;
  -khtml-border-radius: 55px;
  -moz-border-radius: 55px;
  -ms-border-radius: 55px;
  -o-border-radius: 55px;
  border-radius: 55px;
}
#header-wrap .header-langague .language-menu > li > a:before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  bottom: -20px;
  right: -20px;
  background: inherit;
  -webkit-border-radius: 55px;
  -khtml-border-radius: 55px;
  -moz-border-radius: 55px;
  -ms-border-radius: 55px;
  -o-border-radius: 55px;
  border-radius: 55px;
  z-index: -1;
  opacity: 0;
  -webkit-transform: scale3d(0.8, 0.5, 1);
  -khtml-transform: scale3d(0.8, 0.5, 1);
  -moz-transform: scale3d(0.8, 0.5, 1);
  -ms-transform: scale3d(0.8, 0.5, 1);
  -o-transform: scale3d(0.8, 0.5, 1);
  transform: scale3d(0.8, 0.5, 1);
}
#header-wrap .header-langague .language-menu > li > a:after {
  content: "\f078";
  font-family: "Font Awesome 5 Pro";
  margin-left: 8px;
  font-size: 12px;
  position: relative;
  top: -1px;
}
#header-wrap .header-langague .language-menu > li > a:hover:before {
  opacity: 0.4;
}
#header-wrap .header-langague .language-menu > li .sub-menu {
  list-style: none;
  position: absolute;
  background: #fff;
  top: 100%;
  left: 0;
  z-index: 99;
  visibility: hidden;
  opacity: 0;
  -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
  -khtml-box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 200ms linear 0ms;
  -khtml-transition: all 200ms linear 0ms;
  -moz-transition: all 200ms linear 0ms;
  -ms-transition: all 200ms linear 0ms;
  -o-transition: all 200ms linear 0ms;
  transition: all 200ms linear 0ms;
  clip: rect(1px, 1px, 1px, 1px);
  padding: 26px 30px;
  -webkit-transform: scaleY(0);
  -khtml-transform: scaleY(0);
  -moz-transform: scaleY(0);
  -ms-transform: scaleY(0);
  -o-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-border-radius: 20px;
  -khtml-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  border-radius: 20px;
  transform-origin: 0 0 0;
  -webkit-transform-origin: 0 0 0;
  -ms-transform-origin: 0 0 0;
  -o-transform-origin: 0 0 0;
  min-width: 158px;
}
#header-wrap .header-langague .language-menu > li .sub-menu:before {
  content: '';
  position: absolute;
  top: -16px;
  left: 0;
  height: 30px;
  width: 100%;
}
#header-wrap .header-langague .language-menu > li .sub-menu a {
  padding: 6px 0;
  color: ;
  font-size: 15px;
  padding: 6px 0px;
  position: relative;
  font-weight: 600;
  display: block;
}
#header-wrap .header-langague .language-menu > li .sub-menu a:hover {
  color: #dc0008;
}
#header-wrap .header-langague .language-menu > li:hover > a {
  border-color: #dc0008;
  -webkit-transition: background-color 0.1s 0.3s, color 0.1s 0.3s;
  -khtml-transition: background-color 0.1s 0.3s, color 0.1s 0.3s;
  -moz-transition: background-color 0.1s 0.3s, color 0.1s 0.3s;
  -ms-transition: background-color 0.1s 0.3s, color 0.1s 0.3s;
  -o-transition: background-color 0.1s 0.3s, color 0.1s 0.3s;
  transition: background-color 0.1s 0.3s, color 0.1s 0.3s;
  color: #fff;
  background-color: #dc0008;
  -o-animation: anim-moema-1 0.3s forwards;
  -ms-animation: anim-moema-1 0.3s forwards;
  -webkit-animation: anim-moema-1 0.3s forwards;
  animation: anim-moema-1 0.3s forwards;
}
#header-wrap .header-langague .language-menu > li:hover > a:before {
  -o-animation: anim-moema-2 0.3s 0.3s forwards;
  -ms-animation: anim-moema-2 0.3s 0.3s forwards;
  -webkit-animation: anim-moema-2 0.3s 0.3s forwards;
  animation: anim-moema-2 0.3s 0.3s forwards;
}
#header-wrap .header-langague .language-menu > li:hover > .sub-menu {
  visibility: visible;
  opacity: 1;
  clip: inherit;
  -webkit-transform: scaleY(1);
  -khtml-transform: scaleY(1);
  -moz-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -o-transform: scaleY(1);
  transform: scaleY(1);
  margin-top: 15px;
}
#header-wrap .header-langague + .btn {
  margin-left: 20px;
}
@media screen and (min-width: 1200px) {
  #header-wrap .header-main.h-fixed .primary-menu > li > a, #header-wrap .header-main.h-fixed .site-menu-right {
    line-height: 80px;
  }
  #header-wrap.header-layout6 .header-main.h-fixed .primary-menu > li > a, #header-wrap.header-layout6 .header-main.h-fixed .site-menu-right {
    line-height: 50px;
    color: #232323;
  }
  #header-wrap.header-layout3 .header-main.h-fixed .primary-menu > li > a, #header-wrap.header-layout5 .header-main.h-fixed .primary-menu > li > a, #header-wrap.header-layout10 .header-main.h-fixed .primary-menu > li > a {
    line-height: 50px;
  }
  #header-wrap.header-layout3 .header-main.h-fixed .site-menu-right, #header-wrap.header-layout5 .header-main.h-fixed .site-menu-right, #header-wrap.header-layout10 .header-main.h-fixed .site-menu-right {
    line-height: 70px;
  }
  #header-wrap.header-transparent {
    background-color: transparent;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
  }
  #header-wrap.header-transparent .header-main:not(.h-fixed) {
    background-color: transparent;
  }
  #header-wrap.header-transparent .header-main:not(.h-fixed) .header-branding a.logo-light {
    opacity: 1;
  }
  #header-wrap.header-transparent .header-main:not(.h-fixed) .header-branding a.logo-dark {
    opacity: 0;
  }
  #header-wrap.header-transparent .header-main:not(.h-fixed) .primary-menu > li > a {
    color: #fff;
  }
  #header-wrap.header-transparent .header-main:not(.h-fixed) .primary-menu > li > a:before {
    background-color: #fff;
  }
  #header-wrap.header-transparent .header-main:not(.h-fixed) .site-menu-right .menu-right-item {
    color: #fff;
  }
  #header-wrap.header-transparent .header-main:not(.h-fixed) .site-menu-right .menu-right-item:hover {
    color: #fff;
  }
  #header-wrap.header-layout1 .header-main, #header-wrap.header-layout4 .header-main {
    border-bottom: 1px solid rgba(35, 35, 35, 0.08);
  }
  #header-wrap.header-layout1 .header-branding, #header-wrap.header-layout4 .header-branding {
    flex-grow: inherit;
  }
  #header-wrap.header-layout1 .header-navigation, #header-wrap.header-layout4 .header-navigation {
    position: relative;
    flex-grow: 1;
    justify-content: center;
    -webkit-justify-content: center;
    -ms-justify-content: center;
    -o-justify-content: center;
    justify-content: flex-end;
  }
  #header-wrap.header-layout1 .header-main:not(.h-fixed) .header-button-group .btn, #header-wrap.header-layout4 .header-main:not(.h-fixed) .header-button-group .btn {
    -webkit-border-radius: 0;
    -khtml-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    color: #fff;
    border: 2px solid #dc0008;
    background-color: #dc0008;
  }
  #header-wrap.header-layout1 .header-main:not(.h-fixed) .header-button-group .btn:hover, #header-wrap.header-layout4 .header-main:not(.h-fixed) .header-button-group .btn:hover {
    background-color: #191f23;
    border-color: #191f23;
    color: #fff;
  }
  #header-wrap.header-layout1 .header-main:not(.h-fixed) .header-button-group .language-menu > li > a, #header-wrap.header-layout4 .header-main:not(.h-fixed) .header-button-group .language-menu > li > a {
    border-color: rgba(255, 255, 255, 0.16);
    color: #fff;
  }
  #header-wrap.header-layout1 .header-main:not(.h-fixed) .header-button-group .language-menu > li:hover > a, #header-wrap.header-layout4 .header-main:not(.h-fixed) .header-button-group .language-menu > li:hover > a {
    background-color: #fff;
    color: #dc0008;
    border-color: #fff;
  }
  #header-wrap.header-layout1 .header-main.h-fixed .header-button-group .btn, #header-wrap.header-layout4 .header-main.h-fixed .header-button-group .btn {
    background-color: #dc0008;
    color: #fff;
    border: 2px solid #dc0008;
  }
  #header-wrap.header-layout1 .header-main.h-fixed .header-button-group .btn:hover, #header-wrap.header-layout4 .header-main.h-fixed .header-button-group .btn:hover {
    background-color: transparent;
    color: #dc0008;
  }
  #header-wrap.header-layout4 {
    background-color: rgba(0, 0, 0, .5);
  }
  #header-wrap.header-layout4 #topbar {
    background-color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
  }
  #header-wrap.header-layout4 #topbar .topbar-menu a {
    color: rgba(255, 255, 255, 0.7);
  }
  #header-wrap.header-layout4 .header-main .site-menu-right {
    margin-left: 0;
    border-left: 1px solid rgba(255, 255, 255, .05);
  }
  #header-wrap.header-layout2 .header-main, #header-wrap.header-layout6 .header-main {
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    z-index: 22;
  }
  #header-wrap.header-layout2 .header-main .site-menu-right, #header-wrap.header-layout6 .header-main .site-menu-right {
    margin-left: 0;
    border-left: 1px solid rgba(255, 255, 255, .05);
  }
  #header-wrap.header-layout2 .header-main .menu-right-item, #header-wrap.header-layout6 .header-main .menu-right-item {
    display: inline-block;
    line-height: 70px;
  }
  #header-wrap.header-layout2 .header-main .menu-right-item.h-btn-sidebar, #header-wrap.header-layout6 .header-main .menu-right-item.h-btn-sidebar {
    font-size: 20px;
    color: #fff;
    cursor: pointer;
  }
  #header-wrap.header-layout3 #header-main, #header-wrap.header-layout5 #header-main, #header-wrap.header-layout10 #header-main {
    background-color: #dc0008;
  }
  #header-wrap.header-layout3 .site-header-inner, #header-wrap.header-layout5 .site-header-inner, #header-wrap.header-layout10 .site-header-inner {
    display: flex;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    margin-left: -15px;
    margin-right: -15px;
  }
  #header-wrap.header-layout3 .header-branding, #header-wrap.header-layout5 .header-branding, #header-wrap.header-layout10 .header-branding {
    margin-top: 0;
    margin-bottom: 0;
    max-width: 180px;
    line-height: 75px;
    position: relative;
  }
  #header-wrap.header-layout3 .header-branding a.logo-dark, #header-wrap.header-layout5 .header-branding a.logo-dark, #header-wrap.header-layout10 .header-branding a.logo-dark {
    position: relative;
    z-index: 1;
  }
  #header-wrap.header-layout3 .header-branding:before, #header-wrap.header-layout5 .header-branding:before, #header-wrap.header-layout10 .header-branding:before, #header-wrap.header-layout3 .header-branding:after, #header-wrap.header-layout5 .header-branding:after, #header-wrap.header-layout10 .header-branding:after {
    background-color: #fff;
    content: "";
    position: absolute;
    bottom: 0;
    height: 100%;
    z-index: 0;
  }
  #header-wrap.header-layout3 .header-branding:before, #header-wrap.header-layout5 .header-branding:before, #header-wrap.header-layout10 .header-branding:before {
    right: -50px;
    width: 80%;
    -webkit-transform: skew(30deg);
    -moz-transform: skew(30deg);
    -o-transform: skew(30deg);
    -ms-transform: skew(30deg);
    transform: skew(30deg);
  }
  #header-wrap.header-layout3 .header-branding:after, #header-wrap.header-layout5 .header-branding:after, #header-wrap.header-layout10 .header-branding:after {
    right: 10%;
    width: 2000px;
  }
  #header-wrap.header-layout3 .header-navigation, #header-wrap.header-layout5 .header-navigation, #header-wrap.header-layout10 .header-navigation {
    justify-content: flex-end;
    flex-grow: 1;
  }
  #header-wrap.header-layout3 .site-menu-right, #header-wrap.header-layout5 .site-menu-right, #header-wrap.header-layout10 .site-menu-right {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-width: 0 0 0 1px;
    margin-left: 0;
  }
  #header-wrap.header-layout3 .site-menu-right .menu-right-item, #header-wrap.header-layout5 .site-menu-right .menu-right-item, #header-wrap.header-layout10 .site-menu-right .menu-right-item {
    color: #fff;
  }
  #header-wrap.header-layout7 #topbar .container {
    justify-content: space-between;
  }
  #header-wrap.header-layout7 #topbar .header-branding {
    flex-grow: 0;
    margin-left: 0;
  }
  #header-wrap.header-layout7 #topbar .box-info {
    margin-left: 25px;
    padding-left: 55px;
    position: relative;
    padding-bottom: 15px;
    padding-top: 15px;
  }
  #header-wrap.header-layout7 #topbar .box-info .title-info {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 0;
    font-weight: 500;
    color: #232323;
  }
  #header-wrap.header-layout7 #topbar .box-info .title-info a {
    color: #232323;
  }
  #header-wrap.header-layout7 #topbar .box-info .title-info a:hover {
    color: #dc0008;
  }
  #header-wrap.header-layout7 #topbar .box-info label {
    font-size: 14px;
    color: #808258;
  }
  #header-wrap.header-layout7 #topbar .box-info i {
    position: absolute;
    left: 5px;
    color: #6a1a1f;
    font-size: 35px;
    top: 20px;
  }
  #header-wrap.header-layout7 #topbar .box-info.box-address i {
    font-size: 27px;
  }
  #header-wrap.header-layout7 .header-navigation {
    margin-left: 10px;
    margin-right: 10px;
    display: flex;
    width: 100%;
    justify-content: space-between;
  }
  #header-wrap.header-layout7 .header-navigation .header-branding {
    display: none;
  }
  #header-wrap.header-layout8 #topbar, #header-wrap.header-layout11 #topbar {
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: transparent;
    border-bottom: none;
  }
  #header-wrap.header-layout8 #topbar .topbar-menu li, #header-wrap.header-layout11 #topbar .topbar-menu li {
    color: #fff;
  }
  #header-wrap.header-layout8 #topbar .topbar-menu li a, #header-wrap.header-layout11 #topbar .topbar-menu li a {
    color: #fff;
  }
  #header-wrap.header-layout8 #topbar .topbar-social li, #header-wrap.header-layout11 #topbar .topbar-social li {
    color: #fff;
  }
  #header-wrap.header-layout8 .header-main .inner-row, #header-wrap.header-layout11 .header-main .inner-row {
    display: flex;
    padding-left: 0px;
    padding-right: 0px;
    background-color: #fff;
    width: 100%;
  }
  #header-wrap.header-layout8 .header-main .inner-row .primary-menu > li > a, #header-wrap.header-layout11 .header-main .inner-row .primary-menu > li > a {
    color: #232323;
  }
  #header-wrap.header-layout8 .header-main .inner-row .site-menu-right, #header-wrap.header-layout11 .header-main .inner-row .site-menu-right {
    border-left: 0;
  }
  #header-wrap.header-layout8 .header-main .inner-row .site-menu-right .header-button-group, #header-wrap.header-layout11 .header-main .inner-row .site-menu-right .header-button-group {
    padding: 0;
    border: 0;
    margin-top: 0;
    margin-bottom: 0;
  }
  #header-wrap.header-layout8 .header-main .inner-row .site-menu-right .header-button-group a, #header-wrap.header-layout11 .header-main .inner-row .site-menu-right .header-button-group a {
    display: flex;
    align-items: center;
    margin-right: -16px;
    font-size: 13px;
    line-height: 71px;
    padding: 0 30px;
    margin-left: 30px;
    color: #fff;
    background: #00c6ff;
    position: relative;
  }
  #header-wrap.header-layout8 .header-main .inner-row .site-menu-right .header-button-group a:after, #header-wrap.header-layout11 .header-main .inner-row .site-menu-right .header-button-group a:after {
    content: "";
    width: 40px;
    height: 100%;
    position: absolute;
    left: -12px;
    background: #00c6ff;
    transform: skew(-17deg);
    -moz-transform: skew(-17deg);
    -webkit-transform: skew(-17deg);
    -ms-transform: skew(-17deg);
    -o-transform: skew(-17deg);
    top: 0;
    transition: all 0.8s linear;
    -moz-transition: all 0.8s linear;
    -webkit-transition: all 0.8s linear;
    -ms-transition: all 0.8s linear;
    -o-transition: all 0.8s linear;
  }
  #header-wrap.header-layout8 .header-main .inner-row .primary-menu > li > a:before {
    background-color: #fff;
  }
  #header-wrap.header-layout11 #topbar {
    border-bottom: none;
  }
  #header-wrap.header-layout11 #topbar .topbar-menu li {
    color: #000;
  }
  #header-wrap.header-layout11 #topbar .topbar-menu li a {
    color: #000;
  }
  #header-wrap.header-layout11 #topbar .topbar-social li {
    color: #000;
  }
  #header-wrap.header-layout11 #topbar .topbar-social li a {
    color: #000;
  }
  #header-wrap.header-layout11 #topbar .topbar-social li a:hover {
    color: #dc0008;
  }
  #header-wrap.header-layout11 #topbar .topbar-social li.li-label {
    display: none;
  }
  #header-wrap.header-layout11 .header-main .inner-row .primary-menu > li > a:before {
    background-color: #dc0008;
  }
  #header-wrap.header-layout11 .header-main.h-fixed .site-menu-right .header-button-group a {
    margin-right: 0;
  }
  #header-wrap.header-layout11 .header-main .header-branding {
    display: flex;
    align-items: center;
  }
  #header-wrap.header-layout12 {
    background-color: rgba(255, 255, 255, .3);
  }
  #header-wrap.header-layout12 #topbar {
    background-color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
  }
  #header-wrap.header-layout12 #topbar .topbar-menu a {
    color: rgba(255, 255, 255, 0.9);
  }
  #header-wrap.header-layout12 #topbar .topbar-menu a:hover {
    color: #dc0008;
  }
  #header-wrap.header-layout12 #topbar .header-main-social li a:hover {
    color: #dc0008;
  }
  #header-wrap.header-layout12 .header-main {
    border-bottom: 1px solid rgba(35, 35, 35, 0.08);
  }
  #header-wrap.header-layout12 .header-main .site-menu-right {
    margin-left: 0;
    border-left: 1px solid rgba(255, 255, 255, .05);
  }
  #header-wrap.header-layout12 .header-branding {
    flex-grow: inherit;
  }
  #header-wrap.header-layout12 .header-navigation {
    position: relative;
    flex-grow: 1;
    justify-content: center;
    -webkit-justify-content: center;
    -ms-justify-content: center;
    -o-justify-content: center;
    justify-content: flex-end;
  }
  #header-wrap.header-layout12 .header-main:not(.h-fixed) .header-button-group .btn {
    -webkit-border-radius: 0;
    -khtml-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    color: #fff;
    border: 2px solid #dc0008;
    background-color: #dc0008;
  }
  #header-wrap.header-layout12 .header-main:not(.h-fixed) .header-button-group .btn:hover {
    background-color: #191f23;
    border-color: #191f23;
    color: #fff;
  }
  #header-wrap.header-layout12 .header-main:not(.h-fixed) .header-button-group .language-menu > li > a {
    border-color: rgba(255, 255, 255, 0.16);
    color: #fff;
  }
  #header-wrap.header-layout12 .header-main:not(.h-fixed) .header-button-group .language-menu > li:hover > a {
    background-color: #fff;
    color: #dc0008;
    border-color: #fff;
  }
  #header-wrap.header-layout12 .header-main.h-fixed .header-button-group .btn {
    background-color: #dc0008;
    color: #fff;
    border: 2px solid #dc0008;
  }
  #header-wrap.header-layout12 .header-main.h-fixed .header-button-group .btn:hover {
    background-color: transparent;
    color: #dc0008;
  }
}
@media screen and (max-width: 991px) {
  .header-layout7 #topbar .header-branding {
    display: none;
  }
  .header-layout7 #topbar .header-info {
    justify-content: space-between;
    width: 100%;
  }
}
.header-layout7 .header-info {
  display: flex;
}
.header-layout7 .header-info .box-info {
  margin-left: 25px;
  padding-left: 55px;
  position: relative;
  padding-bottom: 15px;
  padding-top: 15px;
}
.header-layout7 .header-info .box-info:first-child {
  margin-left: 0;
}
.header-layout7 .header-info .box-info .title-info {
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 0;
  font-weight: 500;
  color: #232323;
}
.header-layout7 .header-info .box-info .title-info a {
  color: #232323;
}
.header-layout7 .header-info .box-info .title-info a:hover {
  color: #dc0008;
}
.header-layout7 .header-info .box-info label {
  font-size: 14px;
  color: #808258;
}
.header-layout7 .header-info .box-info i {
  position: absolute;
  left: 5px;
  color: #6a1a1f;
  font-size: 35px;
  top: 20px;
}
.header-layout7 .header-info .box-info.box-address i {
  font-size: 27px;
}
@media screen and (max-width: 991px) {
  .header-layout7 .header-navigation {
    visibility: visible;
  }
  .header-layout7 .header-navigation .header-branding {
    position: absolute !important;
    top: 0;
    left: 0;
  }
  .header-layout7 .header-navigation .site-menu-right {
    display: none;
  }
}
.header-layout8 #topbar, .header-layout11 #topbar {
  padding-top: 10px;
  padding-bottom: 10px;
}
@media screen and (max-width: 991px) {
  .header-layout8 #topbar .topbar-menu, .header-layout11 #topbar .topbar-menu {
    margin-left: -5px;
  }
}
.header-layout8 .header-main .inner-row, .header-layout11 .header-main .inner-row {
  display: flex;
}
.header-layout9 .header-branding-mobile {
  padding-top: 10px;
  padding-bottom: 10px;
  margin: 0 15px;
  flex-grow: 0;
  position: relative;
  z-index: 1000;
}
.header-layout9 .header-branding-mobile:before, .header-layout9 .header-branding-mobile:after {
  background-color: #d2151e;
  content: "";
  position: absolute;
  bottom: 0;
  height: 100%;
  z-index: 1;
}
.header-layout9 .header-branding-mobile:before {
  -webkit-transform: skew(-30deg);
  -khtml-transform: skew(-30deg);
  -moz-transform: skew(-30deg);
  -ms-transform: skew(-30deg);
  -o-transform: skew(-30deg);
  transform: skew(-30deg);
  right: -50px;
  width: 100%;
}
.header-layout9 .header-branding-mobile:after {
  right: 5%;
  width: 1000px;
}
.header-layout9 .header-branding-mobile a.logo-dark {
  opacity: 1;
  z-index: 3;
}
.header-layout9 .header-branding-mobile a.logo-light {
  z-index: 3;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
  -khtml-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  opacity: 0;
}
.header-layout9 .header-branding-mobile .inner-branding {
  position: relative;
  z-index: 2;
}
.header-layout9 .header-branding-mobile img {
  max-height: 58px;
}
.header-layout9 .header-branding-mobile a.logo-light {
  opacity: 1;
}
.header-layout9 .header-branding-mobile a.logo-dark {
  opacity: 0;
}
@media screen and (min-width: 1200px) {
  .header-layout9 .header-branding-mobile {
    display: none;
  }
}
@media screen and (max-width: 1199px) {
  .header-layout9 .header-branding-mobile {
    display: block;
  }
}
@media screen and (max-width: 1199px) {
  .header-layout9 #topbar .header-branding {
    display: none;
  }
  .header-layout9 #topbar .header-info {
    width: 100%;
  }
  .header-layout9 #topbar .header-info .box-info {
    width: 33.3%;
  }
}
.header-layout9 .header-info {
  display: flex;
}
@media screen and (max-width: 991px) {
  .header-layout9 .header-info {
    display: none;
  }
}
.header-layout9 .header-info .box-info {
  margin-left: 25px;
  padding-left: 55px;
  position: relative;
  padding-bottom: 15px;
  padding-top: 15px;
}
.header-layout9 .header-info .box-info:first-child {
  margin-left: 0;
}
.header-layout9 .header-info .box-info .title-info {
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 0;
  font-weight: 500;
  color: #232323;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .header-layout9 .header-info .box-info .title-info {
    font-size: 13px;
    line-height: 20px;
  }
}
.header-layout9 .header-info .box-info .title-info a {
  color: #232323;
}
.header-layout9 .header-info .box-info .title-info a:hover {
  color: #dc0008;
}
.header-layout9 .header-info .box-info label {
  font-size: 14px;
  color: #808258;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .header-layout9 .header-info .box-info label {
    font-size: 13px;
  }
}
.header-layout9 .header-info .box-info i {
  position: absolute;
  left: 5px;
  color: #dc0008;
  font-size: 35px;
  top: 20px;
}
.header-layout9 .header-info .box-info.box-address i {
  font-size: 27px;
}
.header-layout9 .header-main-social {
  position: relative;
  z-index: 1;
  margin-left: -5px;
  margin-right: -5px;
}
@media screen and (max-width: 1199px) {
  .header-layout9 .header-main-social {
    display: none;
  }
}
.header-layout9 .header-main-social li {
  margin-left: 7px;
  margin-right: 7px;
}
.header-layout9 .header-main-social li a {
  color: #fff;
}
@media screen and (max-width: 991px) {
  .header-layout9 .header-navigation {
    visibility: visible;
  }
  .header-layout9 .header-navigation .header-branding {
    position: absolute !important;
    top: 0;
    left: 0;
  }
  .header-layout9 .header-navigation .site-menu-right {
    display: none;
  }
}
.header-layout9 #main-menu-mobile .btn-nav-mobile:before, .header-layout9 #main-menu-mobile .btn-nav-mobile:after, .header-layout9 #main-menu-mobile .btn-nav-mobile span {
  background-color: #fff;
}
.header-layout9 .header-main {
  background-color: #232323 !important;
}
.header-layout9 #main-menu-mobile {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1199px) {
  .header-layout9 #main-menu-mobile {
    position: absolute;
    top: 50%;
    right: 15px;
    -webkit-transform: translate(0, -50%);
    -khtml-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
}
.header-layout9 #main-menu-mobile .header-main-social-mobile {
  margin-bottom: 0;
}
@media screen and (min-width: 1200px) {
  .header-layout9 #main-menu-mobile .header-main-social-mobile {
    display: none;
  }
}
@media screen and (max-width: 575px) {
  .header-layout9 #main-menu-mobile .header-main-social-mobile {
    display: none;
  }
}
.header-layout9 #main-menu-mobile .header-main-social-mobile li {
  display: inline-block;
  margin: 0 10px;
}
.header-layout9 #main-menu-mobile .header-main-social-mobile li a {
  color: #fff;
}
.header-layout9 #main-menu-mobile .header-main-social-mobile li a:hover {
  color: #dc0008;
}
.header-layout9 #main-menu-mobile .header-main-social-mobile + .btn-nav-mobile {
  margin-left: 25px;
}
@media screen and (max-width: 1199px) {
  .header-layout9 .btn-nav-mobile {
    color: #1f2233;
    display: inline-block;
    font-size: 16px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    vertical-align: middle;
    width: 35px;
    border: 1px solid rgba(128, 130, 88, 0.5);
    cursor: pointer;
    position: relative;
    -webkit-transition: all 300ms linear 0ms;
    -khtml-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    -o-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms;
    background-color: #dc0008;
  }
  .header-layout9 .btn-nav-mobile:before, .header-layout9 .btn-nav-mobile:after, .header-layout9 .btn-nav-mobile span {
    -webkit-transition: all 300ms linear 0ms;
    -khtml-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    -o-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms;
    content: "";
    background-color: #fff;
    display: block;
    height: 2px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    width: 22px;
    top: 21px;
  }
  .header-layout9 .btn-nav-mobile:before {
    top: 9px;
  }
  .header-layout9 .btn-nav-mobile span {
    top: 15px;
  }
  .header-layout9 .btn-nav-mobile.opened:before {
    top: 15px;
    -webkit-transform: rotate(45deg);
    -khtml-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .header-layout9 .btn-nav-mobile.opened:after {
    -webkit-transform: rotate(-45deg);
    -khtml-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 15px;
  }
  .header-layout9 .btn-nav-mobile.opened span {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  #header-wrap.header-layout3 .header-navigation, #header-wrap.header-layout5 .header-navigation, #header-wrap.header-layout10 .header-navigation {
    padding-left: 50px;
  }
  #header-wrap.header-layout9 .container {
    max-width: 100%;
    padding-left: 50px;
    padding-right: 50px;
  }
  #header-wrap.header-layout9 #topbar {
    background-color: #343a40;
    border-bottom: none;
  }
  #header-wrap.header-layout9 #topbar .container {
    justify-content: space-between;
  }
  #header-wrap.header-layout9 #topbar .header-branding {
    padding-top: 15px;
    padding-bottom: 15px;
    margin: 0 15px 0 0;
    flex-grow: 0;
    position: relative;
  }
  #header-wrap.header-layout9 #topbar .header-branding:before, #header-wrap.header-layout9 #topbar .header-branding:after {
    background-color: #d2151e;
    content: "";
    position: absolute;
    bottom: 0;
    height: 100%;
    z-index: 1;
  }
  #header-wrap.header-layout9 #topbar .header-branding:before {
    -webkit-transform: skew(-30deg);
    -khtml-transform: skew(-30deg);
    -moz-transform: skew(-30deg);
    -ms-transform: skew(-30deg);
    -o-transform: skew(-30deg);
    transform: skew(-30deg);
    right: -120px;
    width: 100%;
  }
  #header-wrap.header-layout9 #topbar .header-branding:after {
    right: 5%;
    width: 2000px;
  }
  #header-wrap.header-layout9 #topbar .header-branding .inner-branding {
    position: relative;
    z-index: 2;
  }
  #header-wrap.header-layout9 #topbar .header-branding img {
    max-height: 58px;
  }
  #header-wrap.header-layout9 #topbar .header-branding a.logo-light {
    opacity: 1;
  }
  #header-wrap.header-layout9 #topbar .header-branding a.logo-dark {
    opacity: 0;
  }
  #header-wrap.header-layout9 #topbar .box-info {
    margin-left: 25px;
    padding-left: 55px;
    position: relative;
    padding-bottom: 15px;
    padding-top: 15px;
  }
  #header-wrap.header-layout9 #topbar .box-info .title-info {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 0;
    font-weight: 500;
    color: #fff;
  }
  #header-wrap.header-layout9 #topbar .box-info .title-info a {
    color: #fff;
  }
  #header-wrap.header-layout9 #topbar .box-info .title-info a:hover {
    color: #dc0008;
  }
  #header-wrap.header-layout9 #topbar .box-info label {
    font-size: 14px;
    color: #808258;
  }
  #header-wrap.header-layout9 #topbar .box-info i {
    -webkit-transition: all 200ms linear 0ms;
    -khtml-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -ms-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms;
    position: absolute;
    left: 5px;
    color: #d2151e;
    font-size: 35px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -khtml-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  #header-wrap.header-layout9 #topbar .box-info.box-address i {
    font-size: 27px;
  }
  #header-wrap.header-layout9 #topbar .box-info:hover i {
    font-size: 36px;
  }
  #header-wrap.header-layout9 .header-main {
    background-color: #232323;
  }
  #header-wrap.header-layout9 .site-menu-right {
    position: relative;
  }
  #header-wrap.header-layout9 .site-menu-right:before, #header-wrap.header-layout9 .site-menu-right:after {
    position: absolute;
    top: 0;
    bottom: 0;
    content: "";
    height: 100%;
    width: 100%;
    background-color: #d2151e;
  }
  #header-wrap.header-layout9 .site-menu-right:before {
    left: -25px;
    -webkit-transform: skew(30deg);
    -khtml-transform: skew(30deg);
    -moz-transform: skew(30deg);
    -ms-transform: skew(30deg);
    -o-transform: skew(30deg);
    transform: skew(30deg);
  }
  #header-wrap.header-layout9 .site-menu-right:after {
    right: -50px;
  }
  #header-wrap.header-layout9 .header-main-social {
    margin-bottom: 0;
    list-style: none;
    flex-grow: 1;
  }
  #header-wrap.header-layout9 .header-main-social li {
    display: inline-block;
  }
  #header-wrap.header-layout9 .header-main-social li a {
    font-size: 14px;
    color: #fff;
  }
  #header-wrap.header-layout9 .site-menu-right {
    display: flex;
  }
  #header-wrap.header-layout9 .header-navigation {
    margin-left: 15px;
    margin-right: 15px;
    display: flex;
    width: 100%;
    justify-content: space-between;
  }
  #header-wrap.header-layout9 .header-navigation .header-branding {
    display: none;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  #header-wrap.header-layout3 .header-navigation, #header-wrap.header-layout5 .header-navigation, #header-wrap.header-layout10 .header-navigation {
    padding-left: 35px;
  }
}
@media screen and (min-width: 1280px) {
}
@media screen and (max-width: 1199px) {
  #header-wrap.fixed-height {
    height: inherit !important;
  }
  #header-wrap .header-branding {
    margin-top: 15px;
    margin-bottom: 15px;
  }
  #header-wrap .header-branding img {
    max-height: 45px;
  }
  #header-wrap .header-branding.desktop {
    display: none;
  }
  #header-wrap #main-menu-mobile {
    position: absolute;
    top: 50%;
    right: 15px;
    -webkit-transform: translate(0, -50%);
    -khtml-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
  #header-wrap #main-menu-mobile .btn-nav-mobile {
    background-color: #dc0008;
  }
  #header-wrap #header-main.h-fixed {
    position: fixed;
    left: 0;
    width: 100%;
    top: 0;
  }
  #header-wrap #header-main .btn-mobile {
    margin-bottom: 20px;
  }
  #header-wrap .header-btn-nav, #header-wrap .header-btn-phone {
    display: none;
  }
  #header-wrap.header-layout9 .header-main {
    background-color: #232323;
  }
  #header-wrap.header-layout4 .header-branding {
    margin-left: 15px;
    margin-right: 15px;
  }
  .admin-bar #header-main .header-navigation .main-navigation {
    top: 32px;
  }
  body #header-wrap.header-layout5 #header-main, body #header-wrap.header-layout10 #header-main {
    background-color: #fff !important;
  }
  body #header-wrap.header-layout5 #main-menu-mobile .btn-nav-mobile:before, body #header-wrap.header-layout10 #main-menu-mobile .btn-nav-mobile:before, body #header-wrap.header-layout5 #main-menu-mobile .btn-nav-mobile:after, body #header-wrap.header-layout10 #main-menu-mobile .btn-nav-mobile:after, body #header-wrap.header-layout5 #main-menu-mobile .btn-nav-mobile span, body #header-wrap.header-layout10 #main-menu-mobile .btn-nav-mobile span {
    background-color: #fff;
  }
  body #header-wrap.header-layout3 .header-main {
    background-color: #fff !important;
  }
}
@media screen and (max-width: 782px) {
  .admin-bar #header-main .header-navigation .main-navigation {
    top: 46px;
  }
}
.admin-bar #header-wrap #header-main.h-fixed {
  top: 32px;
}
@media screen and (max-width: 782px) {
  .admin-bar #header-wrap #header-main.h-fixed {
    top: 46px;
  }
}
@media screen and (max-width: 600px) {
  .admin-bar #header-wrap #header-main.h-fixed {
    top: 0;
  }
}
ul.menu {
  list-style: none;
  margin: 0;
}
ul.menu ul {
  list-style: none;
  margin: 0;
}
.primary-menu-not-set a {
  display: none;
  font-size: 16px;
  font-weight: 500;
  color: #808258;
  padding: 0 17px;
  line-height: 100px;
}
.primary-menu-not-set a:hover {
  color: #dc0008;
}
.admin-bar .primary-menu-not-set a {
  display: block;
}
.primary-menu > li.megamenu {
  position: static;
}
.primary-menu > li.megamenu > .sub-menu {
  width: 100%;
  left: 0;
}
@media screen and (min-width: 992px) {
  .primary-menu > li.megamenu > .sub-menu {
    padding-top: 25px;
  }
}
.primary-menu > li.megamenu > .sub-menu > li {
  padding-left: 20px;
  padding-right: 20px;
  background-color: transparent;
}
.primary-menu > li.megamenu > .sub-menu .menu li {
  padding-left: 0px;
  padding-right: 0px;
}
.primary-menu > li.megamenu > .sub-menu .menu li a {
  color: #808258;
  border-color: #eee;
}
.primary-menu > li.megamenu > .sub-menu .menu li a:hover {
  background-color: #dc0008;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .primary-menu > li.megamenu > .sub-menu .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .primary-menu > li.megamenu > .sub-menu .vc_row {
    padding-left: 10px !important;
    padding-right: 10px !important;
    position: static !important;
  }
  .primary-menu > li.megamenu > .sub-menu .vc_column_container > .vc_column-inner {
    padding-top: 15px !important;
    border-right: none !important;
  }
  .primary-menu > li.megamenu > .sub-menu .vc_column_container > .vc_column-inner .vc_wp_custommenu {
    margin-bottom: 0 !important;
  }
}
.primary-menu .megamenu .sub-menu {
  left: 0;
  overflow: hidden;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.primary-menu .megamenu .sub-menu > li {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.primary-menu .megamenu .sub-menu > li .container {
  width: 100%;
  max-width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.primary-menu .megamenu .sub-menu .vc_row {
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  width: 100% !important;
  position: static !important;
}
@media screen and (min-width: 1200px) {
  .menu-toggle, #main-menu-mobile, .btn-mobile {
    display: none;
  }
  .main-navigation ul {
    display: block;
  }
  .primary-menu {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .primary-menu li {
    position: relative;
  }
  .primary-menu li a {
    display: block;
    -webkit-transition: all 300ms linear 0ms !important;
    -khtml-transition: all 300ms linear 0ms !important;
    -moz-transition: all 300ms linear 0ms !important;
    -ms-transition: all 300ms linear 0ms !important;
    -o-transition: all 300ms linear 0ms !important;
    transition: all 300ms linear 0ms !important;
  }
  .primary-menu > li {
    display: inline-block;
    vertical-align: middle;
    white-space: nowrap;
    float: left;
  }
  .primary-menu > li > a {
    font-size: 16px;
    font-weight: 600;
    color: #232323;
    padding: 0 17px;
    line-height: 70px;
  }
  .primary-menu > li:last-child > a {
    padding-right: 0;
  }
  .primary-menu > li:hover > a, .primary-menu > li.current_page_item > a, .primary-menu > li.current-menu-item > a, .primary-menu > li.current_page_ancestor > a, .primary-menu > li.current-menu-ancestor > a {
    color: #dc0008;
  }
  .primary-menu > li.menu-item-has-children > a:after {
    content: "\f2f9";
    font-family: 'Material-Design-Iconic-Font';
    font-size: 15px;
    margin-left: 5px;
    font-weight: 600;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    top: 1px;
    margin-top: -2px;
  }
  .primary-menu > li > .sub-menu .sub-menu {
    margin-top: -26px;
    margin-left: 0px;
  }
  .primary-menu > li > .sub-menu .sub-menu:before {
    content: '';
    width: 10px;
    left: -10px;
    top: -20px;
    height: 100%;
    position: absolute;
  }
  .primary-menu > li > ul.back {
    right: 0 !important;
    left: auto !important;
  }
  .primary-menu > li > ul.back li > ul.back {
    right: 100% !important;
    left: auto !important;
  }
  .primary-menu > li > .sub-menu li > ul.back {
    right: 100% !important;
    left: auto !important;
  }
  .primary-menu .sub-menu {
    list-style: none;
    position: absolute;
    background: #fff;
    margin-left: 0;
    top: 100%;
    left: 0px;
    min-width: 220px;
    z-index: 99;
    visibility: hidden;
    opacity: 0;
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    -khtml-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    -webkit-transition: all 200ms linear 0ms;
    -khtml-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -ms-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms;
    clip: rect(1px, 1px, 1px, 1px);
    padding: 26px 0;
    -webkit-transform: scaleY(0);
    -khtml-transform: scaleY(0);
    -moz-transform: scaleY(0);
    -ms-transform: scaleY(0);
    -o-transform: scaleY(0);
    transform: scaleY(0);
    transform-origin: 0 0 0;
    -webkit-transform-origin: 0 0 0;
    -ms-transform-origin: 0 0 0;
    -o-transform-origin: 0 0 0;
  }
  .primary-menu .sub-menu li {
    padding: 0 30px;
  }
  .primary-menu .sub-menu li a {
    color: #808258;
    font-size: 15px;
    padding: 6px 0px;
    position: relative;
    font-weight: 600;
  }
  .primary-menu .sub-menu li > a:hover, .primary-menu .sub-menu li.current_page_item > a, .primary-menu .sub-menu li.current-menu-item > a, .primary-menu .sub-menu li.current_page_ancestor > a, .primary-menu .sub-menu li.current-menu-ancestor > a, .primary-menu .sub-menu li.current-menu-parent > a {
    color: #dc0008;
  }
  .primary-menu .sub-menu li:last-child > a {
    border-bottom: none;
  }
  .primary-menu .sub-menu .sub-menu {
    top: 0;
    left: 100%;
  }
  .primary-menu .sub-menu .vc_row {
    background: #fff;
    padding: 10px;
    -webkit-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.25);
    -khtml-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.25);
    -ms-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.25);
    -o-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.25);
  }
  .primary-menu .sub-menu .menu-item-has-children > a {
    position: relative;
  }
  .primary-menu .sub-menu .menu-item-has-children > a:after {
    content: "\f105";
    font-family: FontAwesome;
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translate(0, -50%);
    -khtml-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    font-size: 18px;
  }
  .primary-menu li:hover, .primary-menu li.focus {
    overflow: visible;
  }
  .primary-menu li:hover > .sub-menu, .primary-menu li.focus > .sub-menu {
    visibility: visible;
    opacity: 1;
    clip: inherit;
    -webkit-transform: scaleY(1);
    -khtml-transform: scaleY(1);
    -moz-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -o-transform: scaleY(1);
    transform: scaleY(1);
  }
  .menu-mobile-close, .header-social-mobile, .header-mobile-search {
    display: none;
  }
  .header-layout1 .primary-menu > li > a {
    border: 1px solid rgba(35, 35, 35, 0.08);
    border-width: 0 0 0 1px;
    position: relative;
  }
  .header-layout1 .primary-menu > li > a:before {
    width: 0;
    -webkit-transition: all 200ms linear 0ms;
    -khtml-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -ms-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms;
    height: 5px;
    content: "";
    background-color: #dc0008;
    display: block;
    position: absolute;
    bottom: 0;
    left: -1px;
    right: -1px;
  }
  .header-layout1 .primary-menu > li > a:hover:before {
    width: calc(100% + 2px);
  }
  .header-layout1 .primary-menu > li:hover > a, .header-layout1 .primary-menu > li.current_page_item > a, .header-layout1 .primary-menu > li.current-menu-item > a, .header-layout1 .primary-menu > li.current_page_ancestor > a, .header-layout1 .primary-menu > li.current-menu-ancestor > a {
    color: #dc0008;
  }
  .header-layout1 .primary-menu > li:hover > a:before, .header-layout1 .primary-menu > li.current_page_item > a:before, .header-layout1 .primary-menu > li.current-menu-item > a:before, .header-layout1 .primary-menu > li.current_page_ancestor > a:before, .header-layout1 .primary-menu > li.current-menu-ancestor > a:before {
    width: calc(100% + 2px);
  }
  .header-layout1 .primary-menu > li:last-child > a {
    padding-right: 17px;
  }
  .header-layout4 .primary-menu > li > a {
    border: 1px solid rgba(35, 35, 35, 0.08);
    border-width: 0 0 0 1px;
    position: relative;
  }
  .header-layout4 .primary-menu > li > a:before {
    width: 0;
    -webkit-transition: all 200ms linear 0ms;
    -khtml-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -ms-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms;
    height: 5px;
    content: "";
    background-color: #dc0008;
    display: block;
    position: absolute;
    bottom: 0;
    left: -1px;
    right: -1px;
  }
  .header-layout4 .primary-menu > li > a:hover:before {
    width: calc(100% + 2px);
  }
  .header-layout4 .primary-menu > li:hover > a, .header-layout4 .primary-menu > li.current_page_item > a, .header-layout4 .primary-menu > li.current-menu-item > a, .header-layout4 .primary-menu > li.current_page_ancestor > a, .header-layout4 .primary-menu > li.current-menu-ancestor > a {
    color: #dc0008;
  }
  .header-layout4 .primary-menu > li:hover > a:before, .header-layout4 .primary-menu > li.current_page_item > a:before, .header-layout4 .primary-menu > li.current-menu-item > a:before, .header-layout4 .primary-menu > li.current_page_ancestor > a:before, .header-layout4 .primary-menu > li.current-menu-ancestor > a:before {
    width: calc(100% + 2px);
  }
  .header-layout2 .primary-menu > li > a, .header-layout4 .primary-menu > li > a {
    border: 1px solid rgba(255, 255, 255, .1);
    border-width: 0 0 0 1px;
    position: relative;
    padding-right: 15px;
  }
  .header-layout2 .primary-menu > li > a:before, .header-layout4 .primary-menu > li > a:before {
    width: 0;
    -webkit-transition: all 200ms linear 0ms;
    -khtml-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -ms-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms;
    content: "";
    background-color: #dc0008 !important;
    display: block;
    position: absolute;
    bottom: 0px;
    left: -1px;
    top: 0px;
    z-index: -1;
  }
  .header-layout2 .primary-menu > li > a:hover:before, .header-layout4 .primary-menu > li > a:hover:before {
    width: calc(100% + 2px);
  }
  .header-layout2 .primary-menu > li:hover > a, .header-layout4 .primary-menu > li:hover > a, .header-layout2 .primary-menu > li.current_page_item > a, .header-layout4 .primary-menu > li.current_page_item > a, .header-layout2 .primary-menu > li.current-menu-item > a, .header-layout4 .primary-menu > li.current-menu-item > a, .header-layout2 .primary-menu > li.current_page_ancestor > a, .header-layout4 .primary-menu > li.current_page_ancestor > a, .header-layout2 .primary-menu > li.current-menu-ancestor > a, .header-layout4 .primary-menu > li.current-menu-ancestor > a {
    color: #fff;
  }
  .header-layout2 .primary-menu > li:hover > a:before, .header-layout4 .primary-menu > li:hover > a:before, .header-layout2 .primary-menu > li.current_page_item > a:before, .header-layout4 .primary-menu > li.current_page_item > a:before, .header-layout2 .primary-menu > li.current-menu-item > a:before, .header-layout4 .primary-menu > li.current-menu-item > a:before, .header-layout2 .primary-menu > li.current_page_ancestor > a:before, .header-layout4 .primary-menu > li.current_page_ancestor > a:before, .header-layout2 .primary-menu > li.current-menu-ancestor > a:before, .header-layout4 .primary-menu > li.current-menu-ancestor > a:before {
    width: calc(100% + 2px);
  }
  .header-layout6 .primary-menu > li > a {
    border: none;
    border-width: 0 0 0 1px;
    position: relative;
    padding-right: 15px;
    line-height: 50px;
  }
  .header-layout6 .primary-menu > li > a:before {
    width: 100%;
    -webkit-transition: all 200ms linear 0ms;
    -khtml-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -ms-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms;
    content: "";
    -webkit-border-radius: 50px;
    -khtml-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    border-radius: 50px;
    border: 2px solid #cc9f5a !important;
    background-color: transparent !important;
    display: block;
    position: absolute;
    bottom: 0px;
    left: -1px;
    top: 0px;
    opacity: 0;
    z-index: -1;
  }
  .header-layout6 .primary-menu > li > a:hover:before {
    opacity: 1;
    border: 2px solid #cc9f5a !important;
    background-color: transparent !important;
  }
  .header-layout6 .primary-menu > li:hover > a, .header-layout6 .primary-menu > li.current_page_item > a, .header-layout6 .primary-menu > li.current-menu-item > a, .header-layout6 .primary-menu > li.current_page_ancestor > a, .header-layout6 .primary-menu > li.current-menu-ancestor > a {
    color: #fff;
  }
  .header-layout6 .primary-menu > li:hover > a:before, .header-layout6 .primary-menu > li.current_page_item > a:before, .header-layout6 .primary-menu > li.current-menu-item > a:before, .header-layout6 .primary-menu > li.current_page_ancestor > a:before, .header-layout6 .primary-menu > li.current-menu-ancestor > a:before {
    opacity: 1;
    border: 2px solid #cc9f5a !important;
    background-color: transparent !important;
    width: calc(100% + 2px);
  }
  .header-layout3 .primary-menu > li, .header-layout5 .primary-menu > li, .header-layout10 .primary-menu > li {
    padding: 10px 5px;
  }
  .header-layout3 .primary-menu > li > a, .header-layout5 .primary-menu > li > a, .header-layout10 .primary-menu > li > a {
    line-height: 50px;
    padding-left: 15px;
    padding-right: 15px;
    color: #fff;
    border: 2px solid transparent;
    -webkit-border-radius: 50px;
    -khtml-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    border-radius: 50px;
  }
  .header-layout3 .primary-menu > li > a:hover, .header-layout5 .primary-menu > li > a:hover, .header-layout10 .primary-menu > li > a:hover {
    border-color: #fff;
  }
  .header-layout3 .primary-menu > li:hover > a, .header-layout5 .primary-menu > li:hover > a, .header-layout10 .primary-menu > li:hover > a, .header-layout3 .primary-menu > li.current_page_item > a, .header-layout5 .primary-menu > li.current_page_item > a, .header-layout10 .primary-menu > li.current_page_item > a, .header-layout3 .primary-menu > li.current-menu-item > a, .header-layout5 .primary-menu > li.current-menu-item > a, .header-layout10 .primary-menu > li.current-menu-item > a, .header-layout3 .primary-menu > li.current_page_ancestor > a, .header-layout5 .primary-menu > li.current_page_ancestor > a, .header-layout10 .primary-menu > li.current_page_ancestor > a, .header-layout3 .primary-menu > li.current-menu-ancestor > a, .header-layout5 .primary-menu > li.current-menu-ancestor > a, .header-layout10 .primary-menu > li.current-menu-ancestor > a {
    border-color: #fff;
  }
  .header-layout3 .primary-menu > li:last-child, .header-layout5 .primary-menu > li:last-child, .header-layout10 .primary-menu > li:last-child {
    padding-right: 5px;
  }
  .header-layout5 .primary-menu > li, .header-layout10 .primary-menu > li {
    padding: 10px 5px;
  }
  .header-layout5 .primary-menu > li > a, .header-layout10 .primary-menu > li > a {
    line-height: 50px;
    padding-left: 15px;
    padding-right: 15px;
    color: #fff;
    -webkit-border-radius: 0px;
    -khtml-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
    border-radius: 0px;
  }
  .header-layout5 .primary-menu > li > a:hover, .header-layout10 .primary-menu > li > a:hover {
    background: #fff;
    color: #232323;
  }
  .header-layout5 .primary-menu > li:hover > a, .header-layout10 .primary-menu > li:hover > a, .header-layout5 .primary-menu > li.current_page_item > a, .header-layout10 .primary-menu > li.current_page_item > a, .header-layout5 .primary-menu > li.current-menu-item > a, .header-layout10 .primary-menu > li.current-menu-item > a, .header-layout5 .primary-menu > li.current_page_ancestor > a, .header-layout10 .primary-menu > li.current_page_ancestor > a, .header-layout5 .primary-menu > li.current-menu-ancestor > a, .header-layout10 .primary-menu > li.current-menu-ancestor > a {
    background-color: #fff;
    color: #232323;
  }
  .header-layout5 .primary-menu > li:last-child, .header-layout10 .primary-menu > li:last-child {
    padding-right: 5px;
  }
  .header-layout7 .primary-menu > li {
    padding-left: 0;
  }
  .header-layout7 .primary-menu > li > a {
    border: 1px solid rgba(255, 255, 255, .1);
    border-width: 0 0 0 1px;
    position: relative;
    padding-right: 22px;
    padding-left: 22px;
  }
  .header-layout7 .primary-menu > li > a:before {
    width: 0;
    -webkit-transition: all 200ms linear 0ms;
    -khtml-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -ms-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms;
    content: "";
    background-color: #6a1a1f !important;
    display: block;
    position: absolute;
    bottom: 0px;
    left: -1px;
    top: 0px;
    z-index: -1;
  }
  .header-layout7 .primary-menu > li > a:hover:before {
    width: calc(100% + 2px);
  }
  .header-layout7 .primary-menu > li:hover > a, .header-layout7 .primary-menu > li.current_page_item > a, .header-layout7 .primary-menu > li.current-menu-item > a, .header-layout7 .primary-menu > li.current_page_ancestor > a, .header-layout7 .primary-menu > li.current-menu-ancestor > a {
    background-color: #6a1a1f !important;
    color: #fff;
  }
  .header-layout7 .primary-menu > li:hover > a:before, .header-layout7 .primary-menu > li.current_page_item > a:before, .header-layout7 .primary-menu > li.current-menu-item > a:before, .header-layout7 .primary-menu > li.current_page_ancestor > a:before, .header-layout7 .primary-menu > li.current-menu-ancestor > a:before {
    width: calc(100% + 2px);
  }
  .header-layout8 .primary-menu > li > a {
    border-width: 0 0 0 1px;
    position: relative;
    color: #232323;
  }
  .header-layout8 .primary-menu > li > a:before, .header-layout8 .primary-menu > li > a:after {
    display: inline-block;
    opacity: 0;
    -webkit-transition: -webkit-transform 0.8s, opacity 0.2s;
    -moz-transition: -moz-transform 0.8s, opacity 0.2s;
    transition: transform 0.8s, opacity 0.2s;
    width: auto;
    height: auto;
  }
  .header-layout8 .primary-menu > li > a:before {
    content: '[';
    -webkit-transform: translateX(20px);
    -moz-transform: translateX(20px);
    transform: translateX(20px);
  }
  .header-layout8 .primary-menu > li > a:after {
    content: ']';
    font-size: 18px;
    -webkit-transform: translateX(20px);
    -moz-transform: translateX(20px);
    transform: translateX(20px);
    position: relative;
    margin-top: 0;
    top: -4px;
    margin-left: 0;
  }
  .header-layout8 .primary-menu > li:hover > a:before, .header-layout8 .primary-menu > li.current_page_item > a:before, .header-layout8 .primary-menu > li.current-menu-item > a:before, .header-layout8 .primary-menu > li.current_page_ancestor > a:before, .header-layout8 .primary-menu > li.current-menu-ancestor > a:before {
    opacity: 1;
    -webkit-transform: translateX(-10px);
    -moz-transform: translateX(-10px);
    transform: translateX(-10px);
    width: auto;
    height: auto;
    position: relative;
  }
  .header-layout8 .primary-menu > li:hover > a:after, .header-layout8 .primary-menu > li.current_page_item > a:after, .header-layout8 .primary-menu > li.current-menu-item > a:after, .header-layout8 .primary-menu > li.current_page_ancestor > a:after, .header-layout8 .primary-menu > li.current-menu-ancestor > a:after {
    opacity: 1;
    -webkit-transform: translateX(10px);
    -moz-transform: translateX(10px);
    transform: translateX(10px);
    width: auto;
    height: auto;
    position: relative;
  }
  .header-layout9 .primary-menu > li {
    padding-left: 0;
  }
  .header-layout9 .primary-menu > li > a {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .1);
    border-width: 0 0 0 1px;
    position: relative;
    padding-right: 16px;
    padding-left: 16px;
  }
  .header-layout9 .primary-menu > li > a:before {
    width: 0;
    -webkit-transition: all 200ms linear 0ms;
    -khtml-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -ms-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms;
    content: "";
    background-color: #d2151e !important;
    display: block;
    position: absolute;
    height: 5px;
    bottom: 0px;
    left: -1px;
  }
  .header-layout9 .primary-menu > li > a:hover:before {
    width: calc(100% + 2px);
  }
  .header-layout9 .primary-menu > li:hover > a, .header-layout9 .primary-menu > li.current_page_item > a, .header-layout9 .primary-menu > li.current-menu-item > a, .header-layout9 .primary-menu > li.current_page_ancestor > a, .header-layout9 .primary-menu > li.current-menu-ancestor > a {
    color: #fff;
  }
  .header-layout9 .primary-menu > li:hover > a:before, .header-layout9 .primary-menu > li.current_page_item > a:before, .header-layout9 .primary-menu > li.current-menu-item > a:before, .header-layout9 .primary-menu > li.current_page_ancestor > a:before, .header-layout9 .primary-menu > li.current-menu-ancestor > a:before {
    width: calc(100% + 2px);
  }
  .header-layout11 .primary-menu > li {
    margin-left: 10px;
    margin-right: 10px;
  }
  .header-layout11 .primary-menu > li > a {
    color: #232323;
    padding-left: 0;
    padding-right: 0;
    position: relative;
  }
  .header-layout11 .primary-menu > li > a:before {
    width: 0;
    -webkit-transition: all 200ms linear 0ms;
    -khtml-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -ms-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms;
    height: 5px;
    content: "";
    background-color: #dc0008;
    display: block;
    position: absolute;
    bottom: 0;
    left: -1px;
    right: -1px;
  }
  .header-layout11 .primary-menu > li:hover > a, .header-layout11 .primary-menu > li.current_page_item > a, .header-layout11 .primary-menu > li.current-menu-item > a, .header-layout11 .primary-menu > li.current_page_ancestor > a, .header-layout11 .primary-menu > li.current-menu-ancestor > a {
    color: #dc0008;
  }
  .header-layout11 .primary-menu > li:hover > a:before, .header-layout11 .primary-menu > li.current_page_item > a:before, .header-layout11 .primary-menu > li.current-menu-item > a:before, .header-layout11 .primary-menu > li.current_page_ancestor > a:before, .header-layout11 .primary-menu > li.current-menu-ancestor > a:before {
    width: calc(100% + 2px);
  }
  .header-layout12 .primary-menu > li > a {
    border-width: 0 0 0 1px;
    position: relative;
    padding-right: 15px;
  }
  .header-layout12 .primary-menu > li > a:before {
    width: 0;
    -webkit-transition: all 200ms linear 0ms;
    -khtml-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -ms-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms;
    content: "";
    background-color: #dc0008 !important;
    display: block;
    position: absolute;
    bottom: 10px;
    left: -1px;
    top: 10px;
    z-index: -1;
  }
  .header-layout12 .primary-menu > li > a:hover:before {
    width: calc(100% + 2px);
  }
  .header-layout12 .primary-menu > li:hover > a, .header-layout12 .primary-menu > li.current_page_item > a, .header-layout12 .primary-menu > li.current-menu-item > a, .header-layout12 .primary-menu > li.current_page_ancestor > a, .header-layout12 .primary-menu > li.current-menu-ancestor > a {
    color: #fff;
  }
  .header-layout12 .primary-menu > li:hover > a:before, .header-layout12 .primary-menu > li.current_page_item > a:before, .header-layout12 .primary-menu > li.current-menu-item > a:before, .header-layout12 .primary-menu > li.current_page_ancestor > a:before, .header-layout12 .primary-menu > li.current-menu-ancestor > a:before {
    width: calc(100% + 2px);
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .primary-menu > li > a {
    padding: 0 14px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .primary-menu > li > a {
    padding: 0 14px;
    font-size: 15px;
  }
  .header-layout3 .primary-menu > li, .header-layout5 .primary-menu > li {
    padding: 10px 0px;
  }
  .header-layout3 .primary-menu > li > a, .header-layout5 .primary-menu > li > a {
    font-size: 13px;
    line-height: 50px;
    padding-left: 12px;
    padding-right: 12px;
    border: 1px solid transparent;
    -webkit-border-radius: 25px;
    -khtml-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
    border-radius: 25px;
  }
  #header-wrap.header-layout1 .header-button-group, #header-wrap.header-layout4 .header-button-group {
    margin-left: 0;
  }
  #header-wrap.header-layout1 .header-button-group .btn, #header-wrap.header-layout4 .header-button-group .btn {
    padding: 0 20px;
    font-size: 15px;
  }
}
@media screen and (max-width: 1199px) {
  .header-1 .primary-menu .megamenu, .header-2 .primary-menu .megamenu, .header-3 .primary-menu .megamenu, .header-4 .primary-menu .megamenu {
    position: relative;
  }
  .header-1 .primary-menu .megamenu .sub-menu, .header-2 .primary-menu .megamenu .sub-menu, .header-3 .primary-menu .megamenu .sub-menu, .header-4 .primary-menu .megamenu .sub-menu {
    padding-left: 0 !important;
  }
  .header-1 .primary-menu .megamenu .sub-menu .menu li:last-child a, .header-2 .primary-menu .megamenu .sub-menu .menu li:last-child a, .header-3 .primary-menu .megamenu .sub-menu .menu li:last-child a, .header-4 .primary-menu .megamenu .sub-menu .menu li:last-child a {
    border-bottom: none;
  }
}
@media screen and (max-width: 1199px) {
  .primary-menu-not-set {
    text-align: center;
  }
  .header-social-mobile {
    display: block;
    text-align: center;
    margin-top: 35px;
    margin-bottom: 25px;
  }
  .header-social-mobile a {
    color: #505050;
    font-size: 16px;
    margin: 0 6px;
  }
  .header-social-mobile a:hover {
    color: #dc0008;
  }
  .menu-mobile-close {
    display: block;
    width: 40px;
    height: 40px;
    background-color: #dc0008;
    line-height: 40px;
    text-align: center;
    color: #fff;
    font-size: 20px;
    position: absolute;
    top: 0;
    right: 0;
    -webkit-transition: all 300ms linear 0ms;
    -khtml-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    -o-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms;
    cursor: pointer;
  }
  .menu-mobile-close:hover {
    background-color: #232323;
    color: #fff;
  }
  .header-mobile-search {
    margin-bottom: 15px;
    position: relative;
    display: block;
  }
  .header-mobile-search .search-submit {
    position: absolute;
    width: 50px;
    height: 100%;
    right: 0;
    line-height: 100%;
    padding: 0;
    border: none;
    background-color: transparent;
    background-image: none;
    color: #999;
    top: 0;
  }
  .header-mobile-search .search-submit:hover {
    color: #dc0008;
  }
  .header-mobile-search .search-field {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    height: 50px;
  }
  .header-mobile-search .search-field:focus {
    border-color: #dc0008;
  }
  .menu-mobile-button {
    display: block;
    margin-bottom: 15px;
    text-align: center;
  }
  .menu-mobile-button .h-btn {
    line-height: 42px;
    background-color: #dc0008;
    padding: 0 26px;
    display: block;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
  }
  .menu-mobile-button .h-btn.h-btn-call {
    padding-left: 62px;
    background-image: url(../images/icon-call.png);
    background-repeat: no-repeat;
    background-position: left 23px center;
  }
  .menu-mobile-button .h-btn:hover {
    background-color: #232323;
    color: #fff;
  }
  .menu-mobile-overlay {
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: 998;
    background-color: rgba(0, 0, 0, 0.4);
    left: 0;
    top: 0;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 300ms linear 0ms;
    -khtml-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    -o-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms;
    cursor: url(../images/close-icon-white.png), auto;
  }
  .menu-mobile-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  .header-navigation {
    position: absolute;
    height: 100vh;
    width: 280px;
    top: 0;
    bottom: 0;
    margin: 0 !important;
    overflow: hidden;
    visibility: hidden;
    z-index: 999;
  }
  .header-navigation .main-navigation {
    overflow: hidden;
    width: 280px;
    padding: 58px 0 45px 0;
    background-color: #fff;
    position: fixed;
    z-index: 1001;
    top: 0;
    height: 100%;
    left: 0;
    right: 0;
    -webkit-transition: all 300ms linear 0ms;
    -khtml-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    -o-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms;
    -webkit-transform: translateX(-100%);
    -khtml-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  .header-navigation .main-navigation .main-navigation-inner {
    height: 100%;
    overflow-y: scroll;
    padding: 0 26px 0 16px;
    margin-right: -10px;
  }
  .header-navigation .main-navigation .main-navigation-inner .primary-menu {
    margin-bottom: 20px;
  }
  .header-navigation .main-navigation .btn {
    letter-spacing: 0px;
    padding-left: 20px;
    padding-right: 20px;
    line-height: 50px;
    display: block;
  }
  .header-navigation .main-navigation .btn i {
    margin-right: 6px;
  }
  .header-navigation .main-navigation .btn + .btn {
    margin-top: 10px;
  }
  .header-navigation.navigation-open {
    z-index: 1001;
    visibility: visible;
  }
  .header-navigation.navigation-open .main-navigation {
    -webkit-transform: translateX(0%);
    -khtml-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
    transform: translateX(0%);
  }
  .primary-menu {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .primary-menu li {
    position: relative;
    list-style: none;
  }
  .primary-menu li a {
    display: block;
    padding: 12px 16px;
    color: #232323;
    font-size: 15px;
  }
  .primary-menu > li > a:hover, .primary-menu > li > a.current, .primary-menu > li.current_page_item > a, .primary-menu > li.current-menu-item > a, .primary-menu > li.current_page_ancestor > a, .primary-menu > li.current-menu-ancestor > a {
    background-color: #f5f5f5;
    color: #dc0008;
  }
  .primary-menu .sub-menu {
    position: relative;
    padding-left: 20px;
    display: none;
  }
  .primary-menu .sub-menu.submenu-open + .main-menu-toggle:before {
    content: '\f2fc';
  }
  .primary-menu li.focus > .sub-menu {
    visibility: visible;
    opacity: 1;
    max-height: none;
    overflow: visible;
  }
  .site-menu-right .widget_shopping_cart {
    display: none;
  }
  #main-menu-mobile .mobile-menu-cart {
    line-height: 32px;
    width: 30px;
    color: #1f2233;
    margin-right: 8px;
    display: inline-block;
    text-align: center;
    cursor: pointer;
  }
  #main-menu-mobile .mobile-menu-cart .widget_shopping_cart {
    top: calc(100% + 19px);
    top: -webkit-calc(100% + 19px);
    top: -ms-calc(100% + 19px);
    top: -o-calc(100% + 19px);
    width: 295px;
    padding-left: 20px;
    padding-right: 20px;
  }
  #main-menu-mobile .mobile-menu-cart .widget_shopping_cart .widget_shopping_cart_footer .buttons .btn {
    letter-spacing: 0px;
  }
  #main-menu-mobile .mobile-menu-cart .h-btn-cart {
    display: block;
    height: 32px;
    width: 30px;
  }
  #main-menu-mobile .btn-nav-mobile {
    color: #1f2233;
    display: inline-block;
    font-size: 16px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    vertical-align: middle;
    width: 35px;
    border: 1px solid rgba(128, 130, 88, 0.5);
    cursor: pointer;
    position: relative;
    -webkit-transition: all 300ms linear 0ms;
    -khtml-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    -o-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms;
  }
  #main-menu-mobile .btn-nav-mobile:before, #main-menu-mobile .btn-nav-mobile:after, #main-menu-mobile .btn-nav-mobile span {
    -webkit-transition: all 300ms linear 0ms;
    -khtml-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    -o-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms;
    content: "";
    background-color: #fff;
    display: block;
    height: 2px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    width: 22px;
    top: 21px;
  }
  #main-menu-mobile .btn-nav-mobile:before {
    top: 9px;
  }
  #main-menu-mobile .btn-nav-mobile span {
    top: 15px;
  }
  #main-menu-mobile .btn-nav-mobile.opened:before {
    top: 15px;
    -webkit-transform: rotate(45deg);
    -khtml-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  #main-menu-mobile .btn-nav-mobile.opened:after {
    -webkit-transform: rotate(-45deg);
    -khtml-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 15px;
  }
  #main-menu-mobile .btn-nav-mobile.opened span {
    display: none;
  }
  .main-menu-toggle {
    -webkit-transition: all 300ms linear 0ms;
    -khtml-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    -o-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms;
    cursor: pointer;
    display: inline-block;
    height: 19px;
    line-height: 19px;
    position: absolute;
    right: 12px;
    text-align: center;
    top: 16px;
    width: 19px;
  }
  .main-menu-toggle:before {
    content: "\f2f9";
    font-family: 'Material-Design-Iconic-Font';
    font-size: 18px;
    color: ;
  }
  .main-menu-toggle + .main-menu-toggle {
    display: none;
  }
}
.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%;
}
#pagetitle {
  padding: 90px 0;
  background-color: #dc0008;
  background-image: url(../images/page-title.jpg);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
#pagetitle:before {
  background-color: #000;
  opacity: 0.5;
  content: "";
  display: block;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  position: absolute;
}
@media screen and (max-width: 991px) {
  #pagetitle {
    padding: 80px 0;
  }
}
#pagetitle .container {
  position: relative;
  z-index: 99;
  margin: auto;
}
#pagetitle .container .page-title-inner {
  padding-left: 100px;
  padding-right: 100px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #pagetitle .container .page-title-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
#pagetitle h1.page-title {
  letter-spacing: 0.01em;
  margin-bottom: 15px;
  padding-left: 2px;
  color: #fff;
}
@media screen and (min-width: 992px) {
  #pagetitle h1.page-title {
    line-height: 50px;
    font-size: 40px;
  }
}
@media screen and (max-width: 991px) {
  #pagetitle h1.page-title {
    font-size: 38px;
  }
}
@media screen and (max-width: 767px) {
  #pagetitle h1.page-title {
    font-size: 25px;
  }
}
#pagetitle .page-subtitle {
  color: #fff;
}
#pagetitle .ct-breadcrumb {
  margin: 13px 0 0;
  list-style: none;
}
#pagetitle .ct-breadcrumb li {
  color: #fff;
  display: inline-block;
  margin-right: 11px;
  font-size: 15px;
  letter-spacing: -0.03em;
}
#pagetitle .ct-breadcrumb li:before {
  content: "|";
  margin-right: 13px;
  color: #fff;
}
#pagetitle .ct-breadcrumb li a {
  color: #fff;
}
#pagetitle .ct-breadcrumb li a:hover {
  color: inherit;
}
#pagetitle .ct-breadcrumb li:first-child:before {
  display: none;
}
#pagetitle .ct-breadcrumb li:last-child {
  margin-right: 0;
}
.entry-video {
  position: relative;
}
.entry-gallery {
  position: relative;
  overflow: hidden;
}
.entry-gallery .owl-nav {
  margin-top: 0;
}
.entry-gallery .owl-nav .owl-next, .entry-gallery .owl-nav .owl-prev {
  height: 50px;
  width: 50px;
  line-height: 46px;
  background-color: transparent;
  position: absolute;
  color: rgba(255, 255, 255, 0.95);
  border-color: rgba(255, 255, 255, 0.95);
  font-size: 30px;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
  margin: 0;
  font-size: 16px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -khtml-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.entry-gallery .owl-nav .owl-next:hover, .entry-gallery .owl-nav .owl-prev:hover {
  color: #fff;
  background-color: #dc0008;
  border-color: #dc0008;
}
.entry-gallery .owl-nav .owl-next {
  right: 40px;
}
.entry-gallery .owl-nav .owl-prev {
  left: 40px;
}
.entry-audio {
  vertical-align: middle;
  display: inherit;
}
.entry-quote {
  width: 100%;
}
.entry-quote .entry-body {
  background-image: url(../images/bg-quote.png);
  background-repeat: repeat;
  background-position: center center;
  border: 1px solid #e9e9e9;
  padding: 40px 30px;
}
.entry-quote .entry-body .entry-meta {
  background-color: transparent;
  margin: 0 0 15px;
  padding: 0;
  border: none;
}
.entry-quote svg {
  height: 56px;
  margin-top: 8px;
  margin-right: 29px;
}
.entry-quote svg path {
  fill: #dc0008;
}
.entry-quote .entry-quote-inner {
  display: flex;
  flex-wrap: nowrap;
}
.entry-quote .entry-quote-inner .entry-title {
  line-height: 1.5;
  margin-bottom: 0;
}
.posts-pagination {
  margin-top: 35px;
}
.posts-pagination .posts-page-links {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
}
.posts-pagination .page-numbers {
  border: 2px solid #ffe2d4;
  text-align: center;
  height: 50px;
  width: 50px;
  line-height: 46px;
  color: #777;
  background-color: #ffe2d4;
  font-size: 18px;
  font-weight: 600;
  display: inline-block;
  margin: 0 10px 5px 10px;
  -webkit-border-radius: 50px;
  -khtml-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  border-radius: 50px;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
}
.posts-pagination .page-numbers.next, .posts-pagination .page-numbers.prev {
  font-size: 22px;
  color: #b4c2e1;
}
.posts-pagination .page-numbers.current, .posts-pagination .page-numbers:hover, .posts-pagination .page-numbers:focus {
  border-color: #dc0008;
  background-color: #dc0008;
  color: #fff;
}
.search-results .posts-pagination {
  margin-top: 45px;
}
.entry-title a {
  color: inherit;
}
.entry-title a:hover {
  color: #dc0008;
}
.single-post .entry-featured .post-image {
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
}
.single-post .sub-post-title {
  font-weight: 600;
  letter-spacing: 0.03em;
}
.blog .entry-featured .post-image {
  -webkit-border-radius: 3px 3px 0 0;
  -khtml-border-radius: 3px 3px 0 0;
  -moz-border-radius: 3px 3px 0 0;
  -ms-border-radius: 3px 3px 0 0;
  -o-border-radius: 3px 3px 0 0;
  border-radius: 3px 3px 0 0;
}
.entry-featured {
  margin-bottom: 30px;
  width: 100%;
}
.entry-featured .post-image {
  position: relative;
}
.entry-featured .post-image a {
  display: block;
}
.entry-featured .post-image img {
  -webkit-transition: all 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  -khtml-transition: all 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  -moz-transition: all 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  -ms-transition: all 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  -o-transition: all 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  transition: all 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
}
.entry-featured .post-image .entry-more {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 20px;
  color: #dc0008;
  background-color: rgba(35, 35, 35, 0.8);
  opacity: 0;
}
.entry-featured .post-image .entry-more i {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -khtml-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.entry-featured .bg-overlay:before {
  background-color: rgba(35, 35, 35, 0.85);
  opacity: 0;
}
.reduxon .entry-featured .post-image img {
  width: 100%;
}
.entry-meta, .item-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 0 8px;
}
.entry-meta li, .item-meta li {
  position: relative;
  display: inline-block;
  color: #777;
  font-size: 15px;
  padding: 0 23px 0 0;
}
.entry-meta li a, .item-meta li a {
  color: inherit;
}
.entry-meta li a:hover, .item-meta li a:hover {
  color: #dc0008;
}
.entry-meta li i, .item-meta li i {
  color: #dc0008;
  margin-right: 6px;
  position: relative;
  top: -1px;
}
.entry-meta li:last-child, .item-meta li:last-child {
  padding-right: 0;
}
.single-hentry .entry-title {
  font-size: 22px;
  line-height: 1.3;
  margin-bottom: 7px;
  display: block;
}
.single-hentry .entry-title i {
  margin-right: 5px;
}
@media screen and (max-width: 767px) {
  .single-hentry .entry-title {
    font-size: 20px;
  }
}
.single-hentry .post-image {
  position: relative;
  overflow: hidden;
}
.single-hentry .post-image img {
  -webkit-transition: all 10s;
  -khtml-transition: all 10s;
  -moz-transition: all 10s;
  -ms-transition: all 10s;
  -o-transition: all 10s;
  transition: all 10s;
}
.single-hentry .post-image img:hover {
  -webkit-transform: scale(1.2);
  -khtml-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}
.single-hentry .entry-meta {
  margin: 0 0 29px;
  position: relative;
  z-index: 99;
}
@media screen and (max-width: 575px) {
  .single-hentry .entry-meta {
    margin-bottom: 0;
  }
}
.single-hentry .entry-featured + .entry-body {
  z-index: 9;
}
@media screen and (max-width: 575px) {
  .single-hentry .entry-featured + .entry-body {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.single-hentry .entry-featured + .entry-body .entry-meta {
  border: none;
  display: inline-block;
  margin-bottom: 17px;
}
.single-hentry.post .sub-post-title {
  margin-bottom: 10px;
}
.single-hentry.post .entry-meta {
  margin-top: -3px;
  margin-bottom: 7px;
}
.single-hentry.post .entry-meta li {
  padding-right: 2px;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  color: #dc0008;
}
.single-hentry.post .entry-meta li:after {
  content: "";
  display: inline-block;
  margin-left: 5px;
  margin-right: 3px;
  height: 10px;
  width: 1px;
  position: relative;
  top: 0px;
  background-color: #dc0008;
}
.single-hentry.post .entry-meta li a {
  color: #dc0008;
}
.single-hentry.post .entry-meta li:last-child {
  margin-right: 0;
}
.single-hentry.post .entry-meta li:last-child:after {
  display: none;
}
.single-hentry.archive {
  margin-bottom: 30px;
}
.single-hentry.archive .entry-footer {
  padding-top: 18px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 -10px;
}
.single-hentry.archive .entry-footer > div {
  padding: 0 10px;
}
.single-hentry.archive .entry-footer .entry-readmore {
  flex-grow: 1;
}
.single-hentry.archive .entry-footer .entry-readmore .btn-readmore {
  font-weight: 500;
}
.single-hentry.archive .entry-footer .entry-readmore .btn-readmore i {
  display: inline-block;
  margin-left: 10px;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
}
.single-hentry.archive .entry-footer .entry-readmore .btn-readmore:hover {
  background-color: #232323;
}
.single-hentry.archive .entry-footer .entry-readmore .btn-readmore:hover i {
  margin-left: 12px;
}
@media screen and (max-width: 575px) {
  .single-hentry.archive .entry-footer {
    display: block;
  }
  .single-hentry.archive .entry-footer .entry-social-share {
    margin-top: 15px;
  }
}
.single-hentry.archive:last-child {
  margin-bottom: 0px;
  padding-bottom: 0;
  border-bottom: none;
}
.single-hentry.archive .entry-body {
  -webkit-border-radius: 4px;
  -khtml-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  border: 1px solid #eee;
  padding: 20px;
}
.single-hentry.archive .entry-body .entry-content {
  margin-bottom: 16px;
}
.single-hentry.archive .entry-body .entry-meta {
  margin-bottom: 7px;
}
.single-hentry.archive .entry-body .entry-meta li {
  padding-right: 2px;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  color: #dc0008;
}
.single-hentry.archive .entry-body .entry-meta li:after {
  content: "";
  display: inline-block;
  margin-left: 5px;
  height: 10px;
  width: 1px;
  position: relative;
  top: 0px;
  background-color: #dc0008;
}
.single-hentry.archive .entry-body .entry-meta li a {
  color: #dc0008;
}
.single-hentry.archive .entry-body .entry-meta li:last-child {
  margin-right: 0;
}
.single-hentry.archive .entry-body .entry-meta li:last-child:after {
  display: none;
}
.single-hentry.archive .entry-body .btn-readmore {
  padding: 12px 30px;
  display: inline-block;
  font-size: 13px;
  line-height: 1.42857;
  border-radius: 3px;
  font-weight: 600;
  color: #fff;
  background-color: #dc0008;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  vertical-align: middle;
}
.single-hentry.archive .entry-body .btn-readmore i {
  margin-left: 5px;
  position: relative;
  top: 1px;
}
.single-hentry.archive .entry-body .btn-readmore:hover {
  background-color: #232323;
}
.single-hentry.archive .entry-featured {
  margin-bottom: 0;
}
.single-hentry.archive .entry-featured + .entry-body {
  -webkit-border-radius: 0 0 4px 4px;
  -khtml-border-radius: 0 0 4px 4px;
  -moz-border-radius: 0 0 4px 4px;
  -ms-border-radius: 0 0 4px 4px;
  -o-border-radius: 0 0 4px 4px;
  border-radius: 0 0 4px 4px;
}
.single-hentry .entry-social-share {
  position: relative;
}
.single-hentry .entry-social-share ul {
  list-style: none;
  margin: 0;
  position: absolute;
  top: 0;
  right: 60px;
  height: 50px;
  width: 180px;
}
.single-hentry .entry-social-share ul li {
  display: inline-block;
  -webkit-transform: translateX(100%) rotate(0);
  -khtml-transform: translateX(100%) rotate(0);
  -moz-transform: translateX(100%) rotate(0);
  -ms-transform: translateX(100%) rotate(0);
  -o-transform: translateX(100%) rotate(0);
  transform: translateX(100%) rotate(0);
  -webkit-transition: all 0.5s;
  -khtml-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  position: relative;
  opacity: 0;
}
.single-hentry .entry-social-share ul li + li {
  margin-left: 6px;
}
@media screen and (max-width: 575px) {
  .single-hentry .entry-social-share ul {
    right: auto;
    left: 70px;
  }
  .single-hentry .entry-social-share ul li {
    -webkit-transform: translateX(-100%) rotate(0);
    -khtml-transform: translateX(-100%) rotate(0);
    -moz-transform: translateX(-100%) rotate(0);
    -ms-transform: translateX(-100%) rotate(0);
    -o-transform: translateX(-100%) rotate(0);
    transform: translateX(-100%) rotate(0);
  }
}
.single-hentry .entry-social-share span, .single-hentry .entry-social-share a {
  font-size: 18px;
  height: 50px;
  width: 50px;
  line-height: 50px;
  -webkit-border-radius: 50px;
  -khtml-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  border-radius: 50px;
  text-align: center;
  display: inline-block;
}
.single-hentry .entry-social-share a {
  background-color: #ebf0ff;
  color: #262626;
  visibility: hidden;
}
.single-hentry .entry-social-share a:hover {
  background-color: #dc0008;
  color: #fff;
}
.single-hentry .entry-social-share span {
  color: #fff;
  background-color: #dc0008;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
  cursor: pointer;
  z-index: 99;
  position: relative;
}
.single-hentry .entry-social-share span:hover {
  -webkit-box-shadow: 0 4px 8px rgba(220, 0, 8, 0.38);
  -khtml-box-shadow: 0 4px 8px rgba(220, 0, 8, 0.38);
  -moz-box-shadow: 0 4px 8px rgba(220, 0, 8, 0.38);
  -ms-box-shadow: 0 4px 8px rgba(220, 0, 8, 0.38);
  -o-box-shadow: 0 4px 8px rgba(220, 0, 8, 0.38);
  box-shadow: 0 4px 8px rgba(220, 0, 8, 0.38);
}
.single-hentry .entry-social-share span.opened + ul li {
  opacity: 1;
  -webkit-transition: all 0.3s;
  -khtml-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translateX(0) rotate(-360deg);
  -khtml-transform: translateX(0) rotate(-360deg);
  -moz-transform: translateX(0) rotate(-360deg);
  -ms-transform: translateX(0) rotate(-360deg);
  -o-transform: translateX(0) rotate(-360deg);
  transform: translateX(0) rotate(-360deg);
}
@media screen and (min-width: 576px) {
  .single-hentry .entry-social-share span.opened + ul li:nth-child(3) {
    -webkit-transition-delay: 0;
    transition-delay: 0;
    z-index: 4;
  }
  .single-hentry .entry-social-share span.opened + ul li:nth-child(2) {
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
    z-index: 3;
  }
  .single-hentry .entry-social-share span.opened + ul li:nth-child(1) {
    -webkit-transition-delay: 0.6s;
    transition-delay: 0.6s;
    z-index: 2;
  }
}
.single-hentry .entry-social-share span.opened + ul li a {
  visibility: visible;
}
@media screen and (max-width: 575px) {
  .single-hentry .entry-social-share span.opened + ul li {
    -webkit-transform: translateX(0) rotate(360deg);
    -khtml-transform: translateX(0) rotate(360deg);
    -moz-transform: translateX(0) rotate(360deg);
    -ms-transform: translateX(0) rotate(360deg);
    -o-transform: translateX(0) rotate(360deg);
    transform: translateX(0) rotate(360deg);
  }
  .single-hentry .entry-social-share span.opened + ul li:nth-child(1) {
    -webkit-transition-delay: 0;
    transition-delay: 0;
    z-index: 4;
  }
  .single-hentry .entry-social-share span.opened + ul li:nth-child(2) {
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
    z-index: 3;
  }
  .single-hentry .entry-social-share span.opened + ul li:nth-child(3) {
    -webkit-transition-delay: 0.6s;
    transition-delay: 0.6s;
    z-index: 2;
  }
}
.single-post .format-quote .entry-quote {
  background-image: url(../images/bg-quote.png);
  background-repeat: repeat;
  background-position: center center;
  border: 1px solid #e9e9e9;
  padding: 40px 30px;
  margin-bottom: 30px;
}
.single-post .format-quote .entry-quote .entry-meta {
  background-color: transparent;
  margin: 0 0 10px;
  padding: 0;
  border: none;
}
.single-post .format-quote .entry-body .entry-meta {
  display: none;
}
.single-post .entry-featured + .entry-body .entry-meta {
  margin-bottom: 20px;
}
.single-post .content-area .entry-content h3 {
  font-size: 30px;
  line-height: 1.5;
  margin-bottom: 17px;
}
.single-post .content-area .entry-content .entry-title {
  margin-bottom: 33px;
}
.single-post .content-area .entry-content p {
  margin-bottom: 20px;
}
.single-post .content-area .entry-content-bottom {
  display: flex;
  flex-wrap: wrap;
  padding-top: 30px;
  border-bottom: 1px solid #ebedf2;
}
.single-post .content-area .entry-content-bottom > div {
  margin-bottom: 30px;
}
.single-post .content-area .entry-content-bottom label {
  font-size: 18px;
  color: #232323;
  display: inline-block;
  margin-right: 5px;
}
.single-post .content-area .entry-content-bottom .entry-tags {
  margin-right: 30px;
  flex-grow: 1;
}
.single-post .content-area .entry-content-bottom .entry-tags a {
  border: 1px solid #ebedf2;
  padding: 2px 8px;
  color: #808258;
  margin: 0 3px;
  display: inline-block;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 600;
}
.single-post .content-area .entry-content-bottom .entry-tags a:hover {
  color: #dc0008;
  border-color: #dc0008;
}
.single-post .content-area .entry-content-bottom .entry-social a {
  font-size: 14px;
  color: inherit;
}
.single-post .content-area .entry-content-bottom .entry-social a:hover {
  color: #dc0008;
}
.single-post .content-area .entry-content-bottom .entry-social a + a {
  margin-left: 11px;
}
.single-post .entry-content {
  border-bottom: 1px solid #ececec;
}
.entry-content .page-links {
  clear: left;
  padding-top: 10px;
}
.entry-content .page-links span {
  text-align: center;
  display: inline-block;
  height: 26px;
  width: 26px;
  line-height: 26px;
  color: #fff;
  background-color: #232323;
  font-size: 14px;
  font-weight: 500;
  margin: 0 3px;
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  -khtml-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  -moz-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  -ms-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  -o-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
}
.entry-content .page-links a span {
  background-color: #e0e3e8;
  color: #000;
}
.entry-content .page-links a span:hover {
  background-color: #232323;
  color: #fff;
}
.ct-related-post-wrap {
  border-top: 1px solid #eaeaea;
  margin-top: 40px;
  padding-top: 40px;
}
.ct-related-post-wrap .section-title {
  font-size: 26px;
  margin-bottom: 33px;
}
.ct-related-post-wrap .item-holder {
  border: 1px solid #e9e9e9;
  background-color: #fff;
  padding: 30px;
}
.ct-related-post-wrap .item-featured + .item-holder {
  border-top: none;
}
.ct-related-post-wrap .item-title {
  line-height: 1.41;
}
.ct-related-post-wrap .item-title a {
  color: inherit;
}
.ct-related-post-wrap .item-title a:hover {
  color: #dc0008;
}
.no-results .searchform-wrap {
  position: relative;
}
.no-results .searchform-wrap .search-submit {
  position: absolute;
  right: 3px;
  top: 3px;
  padding-left: 15px;
  padding-right: 15px;
  line-height: 38px;
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
}
.entry-navigation, .post-type-navigation {
  margin-top: 30px;
  position: relative;
}
.entry-navigation .nav-archive, .post-type-navigation .nav-archive {
  position: absolute;
  top: -8px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -khtml-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .entry-navigation .nav-archive, .post-type-navigation .nav-archive {
    display: none;
  }
}
.entry-navigation .nav-archive a, .post-type-navigation .nav-archive a {
  font-size: 28px;
}
.entry-navigation .nav-links, .post-type-navigation .nav-links {
  margin: 0 -15px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}
@media screen and (max-width: 575px) {
  .entry-navigation .nav-links, .post-type-navigation .nav-links {
    display: block;
    margin: 0;
  }
}
.entry-navigation .nav-links .nav-link-prev, .post-type-navigation .nav-links .nav-link-prev, .entry-navigation .nav-links .nav-link-next, .post-type-navigation .nav-links .nav-link-next {
  width: 50%;
  padding: 0 15px;
  max-width: 50%;
}
@media screen and (max-width: 575px) {
  .entry-navigation .nav-links .nav-link-prev, .post-type-navigation .nav-links .nav-link-prev, .entry-navigation .nav-links .nav-link-next, .post-type-navigation .nav-links .nav-link-next {
    padding: 0;
    width: 100%;
    text-align: center;
    max-width: 100%;
  }
}
.entry-navigation .nav-links .nav-link-next, .post-type-navigation .nav-links .nav-link-next {
  text-align: right;
}
@media screen and (max-width: 575px) {
  .entry-navigation .nav-links .nav-link-next, .post-type-navigation .nav-links .nav-link-next {
    text-align: center;
  }
}
.entry-navigation .nav-links span, .post-type-navigation .nav-links span {
  font-size: 14px;
  display: block;
}
.entry-navigation .nav-links h3, .post-type-navigation .nav-links h3 {
  margin: 0 0 2px;
  font-size: 16px;
  line-height: 23px;
}
.entry-navigation .nav-links h3 a, .post-type-navigation .nav-links h3 a {
  color: inherit;
}
.entry-navigation .nav-links h3 a:hover, .post-type-navigation .nav-links h3 a:hover {
  color: #dc0008;
}
.entry-author-info {
  background-color: #232323;
  margin-top: 75px;
  padding: 57px 55px;
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}
@media screen and (max-width: 575px) {
  .entry-author-info {
    display: block;
    text-align: center;
    padding: 40px 30px;
  }
}
.entry-author-info .author-avatar {
  min-width: 100px;
  width: 100px;
  margin-right: 23px;
}
.entry-author-info .author-avatar img {
  -webkit-border-radius: 100px;
  -khtml-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  border-radius: 100px;
  width: 100%;
}
@media screen and (max-width: 575px) {
  .entry-author-info .author-avatar {
    margin: 0 auto 23px auto;
  }
}
.entry-author-info .user-social {
  margin: 0;
  list-style: none;
}
.entry-author-info .user-social li {
  display: inline-block;
  margin: 0 5px;
}
.entry-author-info .user-social li a {
  font-size: 14px;
  color: #a39cd6;
}
.entry-author-info .user-social li a:hover {
  color: #dc0008;
}
.entry-author-info .user-social li:first-child {
  margin-left: 0;
}
.entry-author-info .author-name {
  font-size: 20px;
  margin-bottom: 17px;
  color: #fff;
}
.entry-author-info .author-name a {
  color: inherit;
}
.entry-author-info .author-name a:hover {
  color: #dc0008;
}
.entry-author-info .author-description {
  color: #6a7587;
  font-size: 14px;
  line-height: 27px;
  margin-bottom: 15px;
}
.page-template-blog-classic #primary.col-12 {
  max-width: 840px;
  margin: auto;
}
.single-portfolio {
  font-size: 16px;
}
.type-portfolio .entry-featured {
  margin-bottom: 80px;
}
.type-portfolio .port-des-title, .type-portfolio .port-sub-title {
  font-weight: bold;
  color: #232323;
  font-size: 25px;
  margin-bottom: 30px;
}
@media screen and (min-width: 992px) {
  .type-portfolio .col-portfolio-right {
    padding-left: 50px;
  }
}
.type-portfolio .col-portfolio-right .port-box-info {
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 16px rgba(35, 35, 35, 0.1);
  -khtml-box-shadow: 0px 0px 16px rgba(35, 35, 35, 0.1);
  -moz-box-shadow: 0px 0px 16px rgba(35, 35, 35, 0.1);
  -ms-box-shadow: 0px 0px 16px rgba(35, 35, 35, 0.1);
  -o-box-shadow: 0px 0px 16px rgba(35, 35, 35, 0.1);
  box-shadow: 0px 0px 16px rgba(35, 35, 35, 0.1);
  margin-bottom: 45px;
  padding: 30px;
}
@media screen and (min-width: 992px) {
  .type-portfolio .col-portfolio-right .port-box-info {
    padding: 60px 70px 50px;
  }
}
.type-portfolio .col-portfolio-right .list-portolio-info {
  list-style: none;
}
.type-portfolio .col-portfolio-right .list-portolio-info li {
  margin-bottom: 5px;
}
@media screen and (min-width: 992px) {
  .type-portfolio .col-portfolio-right .list-portolio-info li {
    display: flex;
  }
  .type-portfolio .col-portfolio-right .list-portolio-info li label {
    color: #232323;
    min-width: 80px;
  }
  .type-portfolio .col-portfolio-right .list-portolio-info li a {
    margin-left: 5px;
    color: #808258;
  }
  .type-portfolio .col-portfolio-right .list-portolio-info li a:hover {
    color: #dc0008;
  }
}
.type-portfolio .col-portfolio-right .list-portolio-info li label {
  margin-right: 15px;
}
.widget {
  margin-bottom: 30px;
}
.widget.mb-20 {
  margin-bottom: 20px;
}
.widget:last-child {
  margin-bottom: 0;
}
.widget select {
  max-width: 100%;
}
.widget.rm-margin1 {
  margin-bottom: 14px;
}
.widget.rm-margin2 {
  margin-bottom: 20px;
}
#secondary .widget ul {
  margin-top: -4px;
}
#secondary .widget .widget-content > ul {
  padding-left: 0;
}
#secondary .widget-title {
  text-transform: uppercase;
  margin-bottom: 15px;
}
#secondary .widget_media_gallery .gallery {
  margin-top: 5px;
  margin-left: -2px;
  margin-right: -2px;
  margin-bottom: 0 !important;
}
#secondary .widget_media_gallery .gallery-item {
  width: 25% !important;
  padding: 2px !important;
  margin-bottom: 0 !important;
}
#secondary .widget_media_gallery .gallery-item .gallery-icon {
  width: 100%;
}
#secondary .widget_media_gallery .gallery-item .gallery-icon a {
  display: block;
}
#secondary .widget_media_gallery .gallery-item .gallery-icon a img {
  width: 100%;
}
.logged-in .hide-logged {
  display: none;
}
ul.menu {
  list-style: none;
  margin: 0;
}
.widget_nav_menu.column3 ul.menu {
  margin: 0 -15px;
  overflow: hidden;
}
.widget_nav_menu.column3 ul.menu li {
  width: 33.33%;
  padding: 0 15px;
  float: left;
}
@media screen and (max-width: 767px) {
  .widget_nav_menu.column3 ul.menu li {
    width: 50%;
  }
}
@media screen and (max-width: 575px) {
  .widget_nav_menu.column3 ul.menu li {
    width: 100%;
  }
}
.widget_nav_menu.column2 ul.menu {
  margin: 0 -15px;
  overflow: hidden;
}
.widget_nav_menu.column2 ul.menu li {
  width: 50%;
  padding: 0 15px;
  float: left;
}
@media screen and (max-width: 575px) {
  .widget_nav_menu.column2 ul.menu li {
    width: 100%;
  }
}
.widget_categories ul, .widget_nav_menu ul, .widget_pages ul, .widget_archive ul, .widget_meta ul, .widget_recent_entries ul {
  list-style: none;
  margin-bottom: 0;
}
#content .widget_categories ul ul ul ul ul, #content .widget_pages ul ul ul ul ul, #content .widget_nav_menu ul ul ul ul ul, #content .widget_meta ul ul ul ul ul, #content .widget_recent_entries ul ul ul ul ul {
  padding-left: 0;
}
#content .widget_categories .widget-title, #content .widget_nav_menu .widget-title, #content .widget_pages .widget-title, #content .widget_archive .widget-title, #content .widget_meta .widget-title, #content .widget_recent_entries .widget-title {
  margin-bottom: 14px;
}
#content .widget_categories ul li, #content .widget_nav_menu ul li, #content .widget_pages ul li, #content .widget_archive ul li, #content .widget_meta ul li, #content .widget_recent_entries ul li {
  font-size: 0px;
}
#content .widget_categories ul li a, #content .widget_nav_menu ul li a, #content .widget_pages ul li a, #content .widget_archive ul li a, #content .widget_meta ul li a, #content .widget_recent_entries ul li a {
  display: block;
  font-size: 16px;
  padding: 6px 0;
  color: rgba(35, 35, 35, 0.7);
  border-bottom: 1px solid rgba(102, 102, 102, .11);
}
#content .widget_categories ul li a:hover, #content .widget_nav_menu ul li a:hover, #content .widget_pages ul li a:hover, #content .widget_archive ul li a:hover, #content .widget_meta ul li a:hover, #content .widget_recent_entries ul li a:hover {
  color: #dc0008;
}
#content .widget_categories ul li:last-child > a, #content .widget_nav_menu ul li:last-child > a, #content .widget_pages ul li:last-child > a, #content .widget_archive ul li:last-child > a, #content .widget_meta ul li:last-child > a, #content .widget_recent_entries ul li:last-child > a {
  border-bottom: none;
}
#content .widget_categories ul li.current-menu-item > a, #content .widget_nav_menu ul li.current-menu-item > a, #content .widget_pages ul li.current-menu-item > a, #content .widget_archive ul li.current-menu-item > a, #content .widget_meta ul li.current-menu-item > a, #content .widget_recent_entries ul li.current-menu-item > a, #content .widget_categories ul li.current-cat > a, #content .widget_nav_menu ul li.current-cat > a, #content .widget_pages ul li.current-cat > a, #content .widget_archive ul li.current-cat > a, #content .widget_meta ul li.current-cat > a, #content .widget_recent_entries ul li.current-cat > a, #content .widget_categories ul li.current-cat-parent > a, #content .widget_nav_menu ul li.current-cat-parent > a, #content .widget_pages ul li.current-cat-parent > a, #content .widget_archive ul li.current-cat-parent > a, #content .widget_meta ul li.current-cat-parent > a, #content .widget_recent_entries ul li.current-cat-parent > a, #content .widget_categories ul li > a:hover, #content .widget_nav_menu ul li > a:hover, #content .widget_pages ul li > a:hover, #content .widget_archive ul li > a:hover, #content .widget_meta ul li > a:hover, #content .widget_recent_entries ul li > a:hover {
  color: inherit;
  color: #dc0008;
}
#content .widget_categories ul li.current-menu-item > a:before, #content .widget_nav_menu ul li.current-menu-item > a:before, #content .widget_pages ul li.current-menu-item > a:before, #content .widget_archive ul li.current-menu-item > a:before, #content .widget_meta ul li.current-menu-item > a:before, #content .widget_recent_entries ul li.current-menu-item > a:before, #content .widget_categories ul li.current-cat > a:before, #content .widget_nav_menu ul li.current-cat > a:before, #content .widget_pages ul li.current-cat > a:before, #content .widget_archive ul li.current-cat > a:before, #content .widget_meta ul li.current-cat > a:before, #content .widget_recent_entries ul li.current-cat > a:before, #content .widget_categories ul li.current-cat-parent > a:before, #content .widget_nav_menu ul li.current-cat-parent > a:before, #content .widget_pages ul li.current-cat-parent > a:before, #content .widget_archive ul li.current-cat-parent > a:before, #content .widget_meta ul li.current-cat-parent > a:before, #content .widget_recent_entries ul li.current-cat-parent > a:before, #content .widget_categories ul li > a:hover:before, #content .widget_nav_menu ul li > a:hover:before, #content .widget_pages ul li > a:hover:before, #content .widget_archive ul li > a:hover:before, #content .widget_meta ul li > a:hover:before, #content .widget_recent_entries ul li > a:hover:before {
  margin-left: 0;
  opacity: 1;
}
#content .widget_categories ul li.menu-item-has-children > a, #content .widget_nav_menu ul li.menu-item-has-children > a, #content .widget_pages ul li.menu-item-has-children > a, #content .widget_archive ul li.menu-item-has-children > a, #content .widget_meta ul li.menu-item-has-children > a, #content .widget_recent_entries ul li.menu-item-has-children > a {
  border-bottom: 1px solid #e8e8e8;
}
#content .widget_categories ul li .sub-menu, #content .widget_nav_menu ul li .sub-menu, #content .widget_pages ul li .sub-menu, #content .widget_archive ul li .sub-menu, #content .widget_meta ul li .sub-menu, #content .widget_recent_entries ul li .sub-menu {
  padding-left: 12px;
}
#content .widget_categories ul li .sub-menu li a, #content .widget_nav_menu ul li .sub-menu li a, #content .widget_pages ul li .sub-menu li a, #content .widget_archive ul li .sub-menu li a, #content .widget_meta ul li .sub-menu li a, #content .widget_recent_entries ul li .sub-menu li a {
  border-bottom: 1px solid #e8e8e8;
}
#content .widget_categories .current-cat > a, #content .widget_nav_menu .current-cat > a, #content .widget_pages .current-cat > a, #content .widget_archive .current-cat > a, #content .widget_meta .current-cat > a, #content .widget_recent_entries .current-cat > a, #content .widget_categories .current-cat-parent > a, #content .widget_nav_menu .current-cat-parent > a, #content .widget_pages .current-cat-parent > a, #content .widget_archive .current-cat-parent > a, #content .widget_meta .current-cat-parent > a, #content .widget_recent_entries .current-cat-parent > a, #content .widget_categories .current-cat-ancestor > a, #content .widget_nav_menu .current-cat-ancestor > a, #content .widget_pages .current-cat-ancestor > a, #content .widget_archive .current-cat-ancestor > a, #content .widget_meta .current-cat-ancestor > a, #content .widget_recent_entries .current-cat-ancestor > a {
  color: #dc0008;
}
#content .widget_categories .nice-select ul li, #content .widget_nav_menu .nice-select ul li, #content .widget_pages .nice-select ul li, #content .widget_archive .nice-select ul li, #content .widget_meta .nice-select ul li, #content .widget_recent_entries .nice-select ul li {
  border: none;
  font-size: 14px;
  line-height: normal;
  padding: 8px 24px;
  font-weight: 500;
}
#content .widget_recent_entries ul li a {
  border-bottom: none;
}
#content .widget_recent_entries ul li.menu-item-has-children > a {
  border-bottom: none;
}
#content .widget_recent_entries ul li .sub-menu {
  padding-left: 12px;
}
#content .widget_recent_entries ul li .sub-menu li a {
  border-bottom: none;
}
#content .vc_wp_custommenu {
  margin-bottom: 40px !important;
}
#content .vc_wp_custommenu .widgettitle {
  font-size: 30px;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 19px;
  position: relative;
  padding-top: 17px;
}
#content .vc_wp_custommenu .widget_nav_menu ul li + li {
  margin-top: 10px;
}
#content .vc_wp_custommenu .widget_nav_menu ul li a {
  border: none;
  padding: 10px 25px;
  background-color: #fff;
  -webkit-border-radius: 4px;
  -khtml-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  color: #232323;
  display: block;
  font-weight: 600;
  border: 1px solid rgba(0, 0, 0, .1);
  box-shadow: 5px 12px 20px 0 rgba(0, 0, 0, .05);
  transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}
#content .vc_wp_custommenu .widget_nav_menu ul li a:hover {
  background-color: #dc0008;
  color: #fff !important;
}
#content .vc_wp_custommenu .widget_nav_menu ul li.current-menu-item > a, #content .vc_wp_custommenu .widget_nav_menu ul li.current-cat > a, #content .vc_wp_custommenu .widget_nav_menu ul li.current-cat-parent > a, #content .vc_wp_custommenu .widget_nav_menu ul li > a:hover {
  color: #232323;
}
.widget_recent_entries ul li {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
}
.widget_recent_entries ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.widget_recent_entries ul li a {
  font-size: 16px;
  line-height: 28px;
  font-weight: 500;
}
.widget_media_gallery .gallery {
  margin-left: -10px;
  margin-right: -10px;
  margin-top: -10px;
  margin-bottom: -10px;
}
.widget_media_gallery .gallery-item {
  width: 33.33%;
  padding: 10px;
}
.widget_recent_comments li {
  font-size: 16px;
  line-height: 24px;
  color: #6a6a6a;
}
.widget_recent_comments li + li {
  padding-top: 26px;
  margin-top: 8px;
  border-top: 1px solid rgba(0, 0, 0, 0.085);
}
.widget_recent_comments li span {
  color: #4c4c4c;
  font-weight: 500;
}
.widget_recent_comments li a {
  color: #000001;
  font-weight: 500;
}
.widget_recent_comments li a:hover {
  color: #dc0008;
}
.widget_rss ul {
  list-style: none;
  padding: 0;
}
.widget_rss li {
  margin-bottom: 16px;
}
.widget_rss li:last-child {
  margin-bottom: 0;
}
.widget_rss .rsswidget {
  display: inline-block;
  color: #111;
}
.widget_rss .rsswidget .rss-widget-icon {
  margin-top: -2px;
}
.widget_rss .rss-date {
  font-size: 0.875em;
  font-style: italic;
  display: block;
}
.widget_rss cite {
  font-weight: 700;
  font-size: 0.875em;
}
.widget_calendar th, .widget_calendar td {
  text-align: center;
}
.widget_calendar #prev {
  text-align: left;
}
.widget_calendar #next {
  text-align: right;
}
.widget_calendar caption {
  text-align: center;
}
.widget_text p {
  margin-bottom: 0;
}
.widget_archive ul li a, .widget_categories ul li a, .widget_meta ul li a {
  color: #767676;
  text-transform: capitalize;
}
.widget_archive ul li a:hover, .widget_categories ul li a:hover, .widget_meta ul li a:hover {
  color: #dc0008;
}
.widget_archive ul li a:hover:before, .widget_categories ul li a:hover:before, .widget_meta ul li a:hover:before {
  color: #dc0008;
}
.widget_archive ul li a:before, .widget_categories ul li a:before, .widget_meta ul li a:before {
  font-family: 'FontAwesome';
  content: "\f105";
  display: inline-block;
  font-size: 16px;
  margin-right: 10px;
  color: #767676;
}
.widget_cms_check_availability {
  background-color: #fff;
  border: 1px solid #e5e5e5 !important;
  -webkit-border-radius: 6px;
  -khtml-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  border-radius: 6px;
  margin-bottom: 55px !important;
  padding: 30px !important;
}
.widget_cms_check_availability .select2-selection__arrow {
  display: none !important;
}
#secondary .widget_newsletterwidget {
  line-height: 1.714;
}
#secondary .widget_newsletterwidget form {
  margin-top: 20px;
  position: relative;
  display: flex;
  flex-wrap: nowrap;
}
#secondary .widget_newsletterwidget form .tnp-field-email {
  flex-grow: 1;
  margin-bottom: 0;
}
#secondary .widget_newsletterwidget form .tnp-field-email .tnp-email {
  -webkit-border-radius: 25px;
  -khtml-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  -o-border-radius: 25px;
  border-radius: 25px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  height: 50px;
  padding: 10px 20px;
  background-color: transparent;
  font-size: 15px;
  color: #6c757d;
}
#secondary .widget_newsletterwidget form .tnp-field-email .tnp-email:focus {
  border-color: #dc0008 !important;
}
#secondary .widget_newsletterwidget form .tnp-field-button {
  margin-bottom: 0;
}
#secondary .widget_newsletterwidget form .tnp-field-button .tnp-submit {
  background-color: #dc0008;
  border: none;
  line-height: 50px;
  padding: 0 20px;
  font-size: 15px;
  width: inherit;
  -webkit-border-radius: 30px;
  -khtml-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  border-radius: 30px;
}
#secondary .widget_newsletterwidget form .tnp-field-button .tnp-submit:hover {
  background-color: #232323 !important;
}
#secondary .widget_newsletterwidget form .tnp-field {
  margin-right: 15px;
}
#secondary .widget_newsletterwidget form .tnp-field:last-child {
  margin-right: 0;
}
#secondary .widget_newsletterwidget .widget-content .tnp-widget {
  background-color: #f5f6f7;
  margin-top: 20px;
  padding: 30px;
}
#secondary .widget_newsletterwidget .widget-content form {
  display: table;
  width: 100%;
  margin-top: 0;
}
#secondary .widget_newsletterwidget .widget-content .tnp-field.tnp-field-email {
  margin-right: 0;
}
#secondary .widget_newsletterwidget .widget-content .tnp-field.tnp-field-email input {
  -webkit-border-radius: 0;
  -khtml-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  background: #fff none repeat scroll 0 0;
  border: 2px solid #d0d0d0;
  height: 45px;
  margin-bottom: 15px;
  padding: 5px 20px;
}
#secondary .widget_newsletterwidget .widget-content .tnp-field.tnp-field-button .tnp-submit {
  width: 100%;
  -webkit-border-radius: 0;
  -khtml-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  padding: 8px 15px;
  line-height: 2.42857;
  font-weight: 700;
  background-color: #dc0008;
  font-size: 13px;
}
.widget_ct_recent_posts .widget-title {
  margin-bottom: 20px;
}
.widget_ct_recent_posts .entry-brief {
  display: flex;
  flex-wrap: nowrap;
}
.widget_ct_recent_posts .entry-brief:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.widget_ct_recent_posts .entry-brief + .entry-brief {
  padding-top: 12px;
}
.widget_ct_recent_posts .entry-media {
  width: 110px;
  max-width: 110px;
  min-width: 110px;
  margin-right: 15px;
}
.widget_ct_recent_posts .entry-media img {
  width: 100%;
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
}
@media screen and (max-width: 1199px) {
  .widget_ct_recent_posts .entry-media {
    width: 65px;
    margin-right: 15px;
  }
}
.widget_ct_recent_posts .entry-title {
  line-height: 20px;
  margin-bottom: 8px;
  margin-top: 0;
  text-transform: capitalize;
  font-size: 15px;
  color: rgba(35, 35, 35, 0.9);
  font-weight: 500;
  font-family: Poppins, sans-serif;
}
.widget_ct_recent_posts .entry-title a {
  color: inherit;
}
.widget_ct_recent_posts .entry-title a:hover {
  color: #dc0008;
}
.widget_ct_recent_posts .item-date {
  color: #dc0008;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
}
.tagcloud a {
  border: 1px solid #ebedf2;
  background-color: #fff;
  -webkit-border-radius: 40px;
  -khtml-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
  border-radius: 40px;
  padding: 5px 15px;
  font-weight: 600;
  color: #232323;
  font-size: 12px !important;
  display: inline-block;
  margin: 0 0 5px;
  text-transform: capitalize;
}
.tagcloud a:hover {
  background-color: #dc0008;
  border-color: #dc0008;
  color: #fff;
}
.widget_search .widget-title {
  margin-bottom: 10px;
}
.widget_search .search-form {
  position: relative;
}
.widget_search .search-form .search-field {
  border: none;
  padding-left: 10px;
  padding-right: 10px;
  background-color: transparent;
  border: 1px solid rgba(128, 130, 88, 0.1);
}
.widget_search .search-form .search-field:focus {
  border-color: #dc0008;
}
.widget_search .search-form .search-field:focus + .search-submit {
  color: #dc0008;
}
.widget_search .search-form .search-submit {
  padding: 0;
  border: none;
  line-height: 48px;
  width: 50px;
  font-weight: bold;
  text-align: center;
  position: absolute;
  top: 0;
  right: 0;
  color: #232323;
  font-size: 16px;
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
  background-color: transparent;
}
.widget_search .search-form .search-submit:before, .widget_search .search-form .search-submit:after {
  display: none;
}
.ct-social {
  margin: 0;
  list-style: none;
}
.ct-social li {
  display: inline-block;
  margin-right: 10px;
  margin-top: 10px;
}
.ct-social li a {
  font-size: 14px;
  color: #fff;
  background-color: #dc0008;
  height: 35px;
  width: 35px;
  line-height: 35px;
  -webkit-border-radius: 35px;
  -khtml-border-radius: 35px;
  -moz-border-radius: 35px;
  -ms-border-radius: 35px;
  -o-border-radius: 35px;
  border-radius: 35px;
  text-align: center;
  display: block;
  position: relative;
  z-index: 1;
}
.ct-social li a span {
  display: none;
}
.ct-social li a:hover {
  color: #fff;
  background-color: #232323;
}
.ct-social li:last-child {
  margin-right: 0;
}
.widget_cs_social_widget .ct-social {
  margin-top: -10px !important;
}
.ct-newsletter.widget .ct-newsletter-inner {
  background-color: #f5f6f7;
  padding: 20px;
  position: relative;
  overflow: hidden;
}
.ct-newsletter.widget .ct-newsletter-inner:before {
  font-family: 'themify';
  content: "\e75a";
  font-size: 50px;
  font-weight: 700;
  position: absolute;
  right: 0;
  top: 0;
  opacity: 0.05;
}
.ct-newsletter.widget .ct-newsletter-inner .newsletter {
  position: relative;
}
.ct-newsletter.widget .ct-newsletter-inner .newsletter:after {
  color: #000;
  content: "Newslatter";
  font-family: "Montserrat";
  font-size: 50px;
  font-weight: 700;
  opacity: 0.05;
  position: absolute;
  top: -40px;
}
.ct-newsletter.widget .ct-newsletter-inner .ct-newsletter-introduction {
  font-size: 15px;
  font-style: italic;
  margin-bottom: 24px;
}
.ct-newsletter.widget .ct-newsletter-inner .tnp-field {
  position: relative;
  z-index: 1;
}
.ct-newsletter.widget .ct-newsletter-inner .tnp-field-email {
  margin-bottom: 15px;
}
.ct-newsletter.widget .ct-newsletter-inner .tnp-field-email .tnp-email {
  border: 2px solid #d0d0d0;
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
  height: 45px;
  padding: 5px 20px;
}
.ct-newsletter.widget .ct-newsletter-inner .tnp-field-email .tnp-email:focus {
  border-color: #dc0008;
}
.ct-newsletter.widget .ct-newsletter-inner .tnp-field-button .tnp-button {
  line-height: 45px;
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
  width: 100%;
}
#sb_instagram.sbi {
  padding-bottom: 0 !important;
  margin-top: -16px !important;
}
#sb_instagram.sbi #sbi_images {
  float: none;
  padding: 0 !important;
  margin: 0 -8px !important;
  width: initial;
}
#sb_instagram.sbi #sbi_images .sbi_item {
  margin-top: 16px !important;
  padding: 0 8px !important;
}
@media screen and (min-width: 992px) {
  #sb_instagram.sbi.sbi_col_3 .sbi_photo {
    height: 60px !important;
  }
}
.wg-banner {
  position: relative;
  z-index: 1;
  padding: 41px 45px 50px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .wg-banner {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.wg-banner:before {
  content: '';
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(220, 0, 8, 0.9);
}
.wg-banner .wg-banner-title {
  color: #fff;
}
.wg-banner .wg-banner-body {
  padding-top: 128px;
}
.wg-banner .wg-banner-body h4, .wg-banner .wg-banner-body h6 {
  font-family: 'Poppins', sans-serif;
  color: #fff;
  letter-spacing: -0.03em;
}
.wg-banner .wg-banner-body h6 {
  margin-bottom: 2px;
  font-size: 30px;
  font-weight: 200;
}
.wg-banner .wg-banner-body h4 {
  margin-bottom: 0;
  font-size: 40px;
  font-weight: 600;
}
.wg-banner .wg-banner-button {
  margin-top: 83px;
  font-size: 12px;
  letter-spacing: 0.2em;
  width: 100%;
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
  padding: 0 20px;
  background-color: #141414;
}
.wg-banner .wg-banner-button:hover {
  background-color: #0c0c0c;
}
form.newsletter {
  position: relative;
  margin-top: 37px;
}
form.newsletter .tnp-field .tnp-email {
  height: 70px;
  -webkit-border-radius: 70px;
  -khtml-border-radius: 70px;
  -moz-border-radius: 70px;
  -ms-border-radius: 70px;
  -o-border-radius: 70px;
  border-radius: 70px;
  background-color: #fff;
  -webkit-box-shadow: 0 8px 16px rgba(146, 146, 146, 0.2);
  -khtml-box-shadow: 0 8px 16px rgba(146, 146, 146, 0.2);
  -moz-box-shadow: 0 8px 16px rgba(146, 146, 146, 0.2);
  -ms-box-shadow: 0 8px 16px rgba(146, 146, 146, 0.2);
  -o-box-shadow: 0 8px 16px rgba(146, 146, 146, 0.2);
  box-shadow: 0 8px 16px rgba(146, 146, 146, 0.2);
  color: #5f708f;
  padding-left: 40px;
}
form.newsletter .tnp-field .tnp-email:focus {
  -webkit-box-shadow: 0 8px 16px rgba(220, 0, 8, 0.2);
  -khtml-box-shadow: 0 8px 16px rgba(220, 0, 8, 0.2);
  -moz-box-shadow: 0 8px 16px rgba(220, 0, 8, 0.2);
  -ms-box-shadow: 0 8px 16px rgba(220, 0, 8, 0.2);
  -o-box-shadow: 0 8px 16px rgba(220, 0, 8, 0.2);
  box-shadow: 0 8px 16px rgba(220, 0, 8, 0.2);
}
@media screen and (max-width: 575px) {
  form.newsletter .tnp-field .tnp-email {
    height: 50px;
  }
}
form.newsletter .tnp-field .tnp-button {
  position: absolute;
  top: 10px;
  right: 10px;
  line-height: 50px;
}
@media screen and (max-width: 575px) {
  form.newsletter .tnp-field .tnp-button {
    position: static;
    width: 100%;
    margin-top: 20px;
  }
}
.single-service #secondary .widget {
  border: 4px solid rgba(128, 130, 88, 0.1);
  background-color: #fff;
}
.widget_ct_recent_service .widget-title {
  margin-bottom: 20px;
}
.widget_ct_recent_service .service-list .entry-title {
  font-size: 16px;
  font-weight: 500;
  padding-left: 25px;
  position: relative;
  margin-bottom: 12px;
}
.widget_ct_recent_service .service-list .entry-title:before {
  width: 7px;
  height: 7px;
  left: 0;
  top: 10px;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
  -webkit-border-radius: 7px;
  -khtml-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  -o-border-radius: 7px;
  border-radius: 7px;
  content: "";
  position: absolute;
  display: inline-block;
  background-color: #808258;
}
.widget_ct_recent_service .service-list .entry-title:last-child {
  margin-bottom: 0;
}
.widget_ct_recent_service .service-list .entry-title:hover a {
  color: #dc0008;
}
.widget_ct_recent_service .service-list .entry-title:hover:before {
  background-color: #dc0008;
}
.widget_ct_recent_portfolio .widget-title {
  margin-bottom: 20px;
}
.widget_ct_recent_portfolio .portfolio-list .entry-title {
  font-size: 16px;
  font-weight: 500;
  padding-left: 25px;
  position: relative;
  margin-bottom: 12px;
}
.widget_ct_recent_portfolio .portfolio-list .entry-title:before {
  width: 7px;
  height: 7px;
  left: 0;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
  top: 10px;
  -webkit-border-radius: 7px;
  -khtml-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  -o-border-radius: 7px;
  border-radius: 7px;
  content: "";
  position: absolute;
  display: inline-block;
  background-color: #808258;
}
.widget_ct_recent_portfolio .portfolio-list .entry-title:last-child {
  margin-bottom: 0;
}
.widget_ct_recent_portfolio .portfolio-list .entry-title:hover a {
  color: #dc0008;
}
.widget_ct_recent_portfolio .portfolio-list .entry-title:hover:before {
  background-color: #dc0008;
}
#secondary .widget-getintouch {
  background-color: #dc0008 !important;
  border-color: #dc0008 !important;
}
#secondary .widget-getintouch .widget-title {
  border-bottom: 2px solid #fff;
  padding-bottom: 15px;
  margin-bottom: 20px;
  color: #fff;
}
#secondary .widget-getintouch .widget-title:before {
  background-color: transparent;
}
#secondary .widget-getintouch .ct-contact-info-inner {
  list-style: none;
}
#secondary .widget-getintouch .ct-contact-info-inner li {
  padding-left: 30px;
  position: relative;
  color: #fff;
}
#secondary .widget-getintouch .ct-contact-info-inner li + li {
  margin-top: 15px;
}
#secondary .widget-getintouch .ct-contact-info-inner li i {
  position: absolute;
  top: 5px;
  left: 0;
  margin-right: 15px;
}
#secondary .widget-getintouch .ct-contact-info-inner li i.fa-mobile {
  top: 2px;
  font-size: 25px;
}
.page-content .wp-smiley, .entry-content .wp-smiley, .comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}
embed, iframe, object {
  max-width: 100%;
}
.custom-logo-link {
  display: inline-block;
}
.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 {
  padding: 0.8075em 0;
  font-size: 0.875em;
  font-style: italic;
}
.wp-caption-text {
  text-align: center;
}
.gallery {
  margin-bottom: 1.5em;
}
.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%;
}
.gallery-caption {
  display: block;
}
.wp-video .mejs-container {
  min-width: inherit !important;
}
.wp-video .mejs-controls.mejs-offscreen {
  opacity: 1 !important;
  display: block !important;
}
.wp-video .mejs-controls .mejs-time-rail .mejs-time-current {
  background-color: #dc0008;
}
.poppin-light {
  font-family: Poppins, sans-serif !important;
  font-weight: 300;
}
.poppin-light-i {
  font-family: Poppins, sans-serif !important;
  font-weight: 300;
  font-style: italic;
}
.poppin-regular {
  font-family: Poppins, sans-serif !important;
  font-weight: 400;
}
.poppin-regular-i {
  font-family: Poppins, sans-serif !important;
  font-weight: 400;
  font-style: italic;
}
.poppin-medium {
  font-family: Poppins, sans-serif !important;
  font-weight: 500;
}
.poppin-medium-i {
  font-family: Poppins, sans-serif !important;
  font-weight: 500;
  font-style: italic;
}
.poppin-semibold {
  font-family: Poppins, sans-serif !important;
  font-weight: 600;
}
.poppin-semibold-i {
  font-family: Poppins, sans-serif !important;
  font-weight: 600;
  font-style: italic;
}
.poppin-bold {
  font-family: Poppins, sans-serif !important;
  font-weight: bold;
}
.poppin-bold-i {
  font-family: Poppins, sans-serif !important;
  font-weight: bold;
  font-style: italic;
}
.comment-content a {
  word-wrap: break-word;
}
.bypostauthor {
  display: block;
}
.comments-area .comment-list-wrap {
  padding: 40px 0 0;
}
.comments-area .comment-respond {
  margin-top: 72px;
  padding: 30px;
  border: 1px solid #e9e9e9;
}
.comments-area .comment-respond #cancel-comment-reply-link {
  color: #808258;
}
.comments-area .comment-respond #cancel-comment-reply-link:hover {
  color: #dc0008;
}
.comments-area .comment-respond .logged-in-as {
  margin-bottom: 25px;
  font-size: 14px;
}
.comments-area .comment-respond .logged-in-as a {
  color: inherit;
}
.comments-area .comment-respond .logged-in-as a:hover {
  color: #dc0008;
}
.comments-area .no-comments {
  display: none;
}
.comment-meta {
  margin-bottom: 12px;
}
@media screen and (max-width: 575px) {
  .comment-meta {
    justify-content: center;
  }
}
.comment-meta .comment-date {
  text-transform: capitalize;
  font-size: 14px;
  line-height: 20px;
  color: #808258;
  margin-bottom: 15px;
  position: relative;
}
.comment-meta .comment-date:before {
  content: "\f133";
  font-family: FontAwesome;
  font-size: 11px;
  vertical-align: top;
  margin-right: 5px;
  position: relative;
  top: 1px;
}
.comment-title {
  font-size: 18px;
  text-transform: capitalize;
  margin-bottom: 5px;
  font-weight: 600;
  margin-right: 10px;
  color: #232323;
}
.comment-list {
  padding: 0;
  list-style: none;
}
.comment-list li .children {
  padding-left: 120px;
}
@media screen and (max-width: 767px) {
  .comment-list li .children {
    padding-left: 78px;
  }
}
@media screen and (max-width: 575px) {
  .comment-list li .children {
    padding-left: 0;
  }
}
.comment-list li .children li {
  list-style: none;
  margin-top: 42px;
}
.comment-list li .comment-respond {
  margin-top: 30px;
  margin-left: 78px;
}
@media screen and (max-width: 575px) {
  .comment-list li .comment-respond {
    margin-left: 0;
  }
}
.comment-list > li {
  margin-bottom: 53px;
}
.comment-list > li:last-child {
  margin-bottom: 0;
}
.comment-inner {
  display: flex;
  flex-wrap: nowrap;
}
@media screen and (max-width: 575px) {
  .comment-inner {
    display: block;
    text-align: center;
  }
}
.comment-inner img.avatar {
  width: 56px;
  height: 56px;
  min-width: 56px;
  margin-right: 25px;
  margin-top: 0px;
  float: left;
  border: 2px solid #fff;
  -webkit-border-radius: 100px;
  -khtml-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  border-radius: 100px;
}
@media screen and (max-width: 767px) {
  .comment-inner img.avatar {
    width: 60px;
    height: 60px;
    min-width: 60px;
    margin-right: 18px;
  }
}
@media screen and (max-width: 575px) {
  .comment-inner img.avatar {
    float: none;
    margin: 0 auto 22px auto;
  }
}
.comment-date {
  font-size: 14px;
  line-height: 23px;
  color: #dc0008;
}
.comment-content {
  position: relative;
  flex-grow: 1;
  padding: 20px;
  margin-bottom: 0px;
  position: relative;
  border: 1px solid #e9e9e9;
}
.comment-content:before, .comment-content:after {
  content: '';
  position: absolute;
  top: 20px;
  width: 0;
  height: 0;
  border-width: 10px 12px 10px 0;
  border-style: solid;
}
@media screen and (max-width: 575px) {
  .comment-content:before, .comment-content:after {
    display: none;
  }
}
.comment-content:before {
  border-color: transparent #fff transparent #fff;
  z-index: 1;
  left: -12px;
  top: 22px;
}
.comment-content:after {
  border-color: transparent #e9e9e9 transparent #e9e9e9;
  border-width: 12px 14px 12px 0;
  left: -14px;
}
.comment-content .comment-text p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 26px;
}
.comment-respond .comment-reply-title {
  font-size: 16px;
  margin-bottom: 20px;
}
.comment-reply {
  line-height: 1;
  margin-top: 12px;
  text-align: right;
}
.comment-reply a {
  font-size: 16px;
  color: #dc0008;
  text-transform: capitalize;
  font-weight: 500;
}
.comment-reply a:before {
  content: "\f122";
  font-family: FontAwesome;
  margin-right: 8px;
}
.comment-reply a:hover {
  color: #dc0008;
}
.comment-form .form-submit {
  padding-top: 20px;
  margin-bottom: 0;
  font-size: 16px;
}
.comment-form .comment-notes {
  display: none;
}
.comment-form .comment-field {
  position: relative;
  margin-bottom: 20px;
}
.comment-form .comment-field textarea, .comment-form .comment-field input {
  padding-left: 50px;
}
.comment-form .comment-field input {
  height: 40px;
  border: 1px solid #e1e6eb;
}
.comment-form .comment-field input:focus {
  border-color: #dc0008;
}
.comment-form .comment-field i {
  font-size: 16px;
  position: absolute;
  left: 15px;
  border-right: 1px solid #e1e6eb;
  top: 1px;
  height: 38px;
  bottom: 1px;
  text-align: center;
  width: 40px;
  line-height: 40px;
  color: #dc0008;
}
.comment-form .comment-field.comment-form-comment i {
  top: 1px;
  left: 1px;
  border-bottom: 1px solid #e1e6eb;
  border-bottom-right-radius: 4px;
}
.comment-form .comment-field.comment-form-comment textarea {
  height: 120px;
}
.comment-form input:not(.submit), .comment-form textarea {
  -webkit-border-radius: 5px;
  -khtml-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  background-color: #fff;
}
.comment-form .form-submit input {
  background-color: #dc0008;
  border: none;
  border-radius: 4px;
  color: #fff;
  display: inline-block;
  font-weight: 600;
  padding: 0px 40px;
  text-transform: uppercase;
  height: 47px;
  line-height: 47px;
}
.comment-form .form-submit input:hover {
  background-color: #232323;
}
.comment-form-cookies-consent {
  font-size: 14px;
  line-height: 24px;
  padding-left: 20px;
  position: relative;
}
.comment-form-cookies-consent input {
  position: absolute;
  top: 6px;
  left: 0;
}
.site-footer ul {
  list-style: none;
}
.site-footer #ctf.ctf .ctf-item {
  border-top: none;
  padding: 0;
  margin-bottom: 13px;
}
.site-footer #ctf.ctf .ctf-item:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
.site-footer #ctf.ctf .ctf-author-name {
  margin-top: 0;
  color: #fff !important;
  font-weight: 400 !important;
}
.site-footer #ctf.ctf .ctf-author-name:hover {
  color: #dc0008;
}
.site-footer #ctf.ctf .ctf-author-name:before {
  content: '\f099';
  font-family: 'FontAwesome';
  margin-right: 8px;
  color: #dc0008;
  font-size: 15px;
}
.site-footer #ctf.ctf .ctf-tweet-meta {
  font-size: 12px;
  margin-left: 4px;
}
.site-footer #ctf.ctf .ctf-author-avatar + .ctf-author-name:before, .site-footer #ctf.ctf .ctf-author-screenname, .site-footer #ctf.ctf .ctf-screename-sep {
  display: none;
}
.site-footer #ctf.ctf.ctf-super-narrow .ctf-author-box {
  min-height: auto;
}
.site-footer #ctf.ctf .ctf-tweet-actions {
  display: none;
}
.site-footer #ctf.ctf .ctf-tweet-actions a.ctf-reply, .site-footer #ctf.ctf .ctf-tweet-actions a.ctf-retweet, .site-footer #ctf.ctf .ctf-tweet-actions a.ctf-like {
  color: inherit;
}
.site-footer #ctf.ctf .ctf-tweet-actions a.ctf-reply:hover, .site-footer #ctf.ctf .ctf-tweet-actions a.ctf-retweet:hover, .site-footer #ctf.ctf .ctf-tweet-actions a.ctf-like:hover, .site-footer #ctf.ctf .ctf-tweet-actions a.ctf-reply:focus, .site-footer #ctf.ctf .ctf-tweet-actions a.ctf-retweet:focus, .site-footer #ctf.ctf .ctf-tweet-actions a.ctf-like:focus {
  color: #dc0008 !important;
}
.site-footer #ctf.ctf .ctf-twitterlink:hover {
  color: #dc0008;
}
.site-footer #ctf.ctf .ctf-author-box-link {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}
.site-footer .widget-getintouch .widget-title {
  padding-bottom: 0;
  border-bottom: none;
}
.site-footer .widget-getintouch .widget-title:before {
  display: none;
}
.site-footer .widget_recent_comments li {
  color: #b0b0b0;
}
.site-footer .widget_recent_comments li span {
  color: #b0b0b0;
}
.site-footer .tagcloud a {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
}
.site-footer .widget_search .widget-title {
  margin-bottom: 10px;
}
.site-footer .widget_search .search-form {
  position: relative;
}
.site-footer .widget_search .search-form .search-field {
  border-bottom: 1px solid #b0b0b0;
  color: #fff;
}
.site-footer .widget_search .search-form .search-field:focus {
  border-bottom-color: #dc0008;
}
.site-footer .widget_search .search-form .search-field::-webkit-input-placeholder {
  color: #b0b0b0;
  font-size: 13px;
}
.site-footer .widget_search .search-form .search-field::-moz-placeholder {
  color: #b0b0b0;
  font-size: 13px;
}
.site-footer .widget_search .search-form .search-field::-ms-input-placeholder {
  color: #b0b0b0;
  font-size: 13px;
}
.site-footer .widget_search .search-form .search-field::-moz-placeholder {
  color: #b0b0b0;
  font-size: 13px;
}
.site-footer .footer-widget-title, .site-footer .widget-getintouch .widget-title {
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 24px;
}
.site-footer .logo-footer {
  opacity: 0;
}
.site-footer .logo-footer.layout-light {
  display: none;
}
.site-footer .about-footer {
  margin-bottom: 12px;
}
.site-footer ul.menu li {
  margin-bottom: 3px;
}
.site-footer ul.menu li:hover > a, .site-footer ul.menu li.current_page_item > a, .site-footer ul.menu li.current-menu-item > a, .site-footer ul.menu li.current_page_ancestor > a, .site-footer ul.menu li.current-menu-ancestor > a {
  color: #dc0008;
}
@media screen and (min-width: 992px) {
  .site-footer ul.menu {
    margin: 0 -10px;
  }
  .site-footer ul.menu li {
    padding: 0 10px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .site-footer ul.menu {
    margin: 0 -10px;
  }
  .site-footer ul.menu li {
    width: 50%;
    padding: 0 10px;
  }
}
.site-footer .widget_text {
  line-height: 34px;
}
.site-footer .widget_text .textwidget {
  margin-top: -5px;
}
.site-footer .posts-list {
  padding-top: 10px;
}
.site-footer .posts-list .entry-title {
  font-size: 16px;
}
.site-footer .posts-list .entry-brief {
  margin-bottom: 30px;
  padding-bottom: 0;
  border-bottom: none;
}
.site-footer .posts-list .entry-brief .item-date {
  font-style: italic;
  font-size: 14px;
}
.site-footer .posts-list .entry-brief .item-date i {
  display: none;
}
.site-footer .ft-gap {
  height: 1px;
  background-color: #303639;
  position: absolute;
  bottom: 0;
  width: 100%;
  margin: auto;
  left: 0;
  right: 0;
}
.site-footer .top-footer {
  position: relative;
  padding: 75px 0 60px;
  font-size: 16px;
  line-height: 2.1;
}
@media screen and (max-width: 767px) {
  .site-footer .top-footer {
    padding: 75px 0 40px;
  }
}
@media screen and (max-width: 575px) {
  .site-footer .top-footer {
    padding-top: 70px;
    padding-bottom: 30px;
  }
}
.site-footer .contact-info .ct-contact-info-inner li {
  line-height: 36px;
  margin-bottom: 5px;
}
.site-footer .contact-info .ct-contact-info-inner li i {
  margin-right: 8px;
  color: #dc0008;
}
.site-footer .contact-info .ct-contact-info-inner li i.fa-mobile {
  font-size: 23px;
}
.site-footer .top-footer-logo img {
  max-width: 140px;
}
.site-footer .bottom-footer {
  font-size: 15px;
}
@media screen and (max-width: 767px) {
  .site-footer .bottom-footer {
    padding-top: 30px;
    padding-bottom: 30px;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .site-footer .bottom-footer .bottom-footer-logo {
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 768px) {
  .site-footer .bottom-footer .bottom-copyright, .site-footer .bottom-footer .footer-social {
    width: 50%;
  }
}
.site-footer .bottom-footer .bottom-copyright {
  padding: 0 15px;
  color: #b0b0b0;
}
@media screen and (min-width: 768px) {
  .site-footer .bottom-footer .bottom-copyright {
    display: flex;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
  }
}
.site-footer .bottom-footer .bottom-copyright a {
  margin-left: 5px;
}
.site-footer .bottom-footer .footer-social {
  padding: 0 0px;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .site-footer .bottom-footer .footer-social {
    text-align: right;
  }
}
.site-footer .bottom-footer .footer-social li {
  display: inline-block;
}
.site-footer .bottom-footer .footer-social li a {
  width: 60px;
  font-size: 20px;
  height: 70px;
  line-height: 70px;
  color: #3b4044;
  display: block;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .site-footer .bottom-footer .footer-social li a {
    border-right: 1px solid #303639;
  }
}
@media screen and (max-width: 767px) {
  .site-footer .bottom-footer .footer-social li a {
    width: 40px;
  }
}
.site-footer .bottom-footer .footer-social li a:hover {
  color: #fff;
}
@media screen and (min-width: 768px) {
  .site-footer .bottom-footer .footer-social li:first-child a {
    border-left: 1px solid #303639;
  }
}
@media screen and (min-width: 1200px) {
}
@media screen and (max-width: 767px) {
  .site-footer .ct-footer-item + .ct-footer-item {
    margin-top: 45px;
  }
}
.site-footer.footer-layout1 .btn-footer-readmore {
  color: #dc0008 !important;
  text-decoration: underline;
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
  margin-top: 12px;
  letter-spacing: 1px;
}
.site-footer.footer-layout1 .widget-getintouch .widget-title, .site-footer.footer-layout1 .footer-widget-title {
  margin: 0;
  font-size: 24px;
  font-weight: 500;
  padding-bottom: 20px;
  margin-bottom: 30px;
  position: relative;
  color: #fff;
}
.site-footer.footer-layout1 .widget-getintouch .widget-title:after, .site-footer.footer-layout1 .footer-widget-title:after {
  content: "";
  background: #dc0008;
  width: 40px;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.site-footer.footer-layout1 .top-footer-info {
  position: relative;
}
.site-footer.footer-layout1 .top-footer-info:after {
  content: "";
  background: #191f23;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 50%;
  left: 0;
  bottom: 0;
}
.site-footer.footer-layout1 .top-footer-info .ft-contact {
  background-color: #dc0008;
}
@media screen and (min-width: 992px) {
  .site-footer.footer-layout1 .top-footer-info .ft-contact {
    border-radius: 10px;
    display: flex;
  }
}
.site-footer.footer-layout1 .top-footer-info .ft-contact-bx {
  position: relative;
  z-index: 1;
  background-repeat: no-repeat;
}
@media screen and (min-width: 992px) {
  .site-footer.footer-layout1 .top-footer-info .ft-contact-bx {
    background-position: 45px 50%;
    flex: 0 0 33.33%;
    max-width: 33.33%;
    padding: 25px 40px 25px 120px;
  }
}
@media screen and (max-width: 991px) {
  .site-footer.footer-layout1 .top-footer-info .ft-contact-bx {
    background-position: 35px 50%;
    padding: 20px 15px 20px 100px;
  }
}
.site-footer.footer-layout1 .top-footer-info .ft-contact-bx .footer-title-info {
  margin: 0 0 10px 0;
  font-size: 22px;
  font-weight: 500;
  color: #fff;
}
.site-footer.footer-layout1 .top-footer-info .ft-contact-bx p {
  color: #fff;
  line-height: 28px;
  margin-bottom: 0;
}
.site-footer.footer-layout1 .top-footer-info .ft-contact-bx p a {
  color: #fff;
}
@media screen and (min-width: 992px) {
  .site-footer.footer-layout1 .top-footer-info .ft-contact-bx:after {
    content: "";
    height: 100%;
    width: 50px;
    position: absolute;
    right: -15px;
    top: 0;
    z-index: -1;
    background-image: url(../images/icons/right.png);
    background-size: contain;
    background-position: right;
    background-repeat: no-repeat;
    opacity: 0.5;
  }
}
.site-footer.footer-layout1 .top-footer-info .ft-contact-bx:last-child:after {
  opacity: 0;
}
.site-footer.footer-layout1 .top-footer {
  background-color: #191f23;
  background-image: url(../images/bg-footer.png);
  background-repeat: repeat-x;
  background-size: contain;
  background-position: right 30px bottom 15px;
  color: #b0b0b0;
}
.site-footer.footer-layout1 .top-footer a {
  color: #b0b0b0;
}
.site-footer.footer-layout1 .top-footer a:hover {
  color: #dc0008;
}
.site-footer.footer-layout1 .top-footer .ct-social a {
  color: #fff;
}
.site-footer.footer-layout1 .top-footer .ct-social a:hover {
  color: #dc0008;
  background-color: #fff;
}
.site-footer.footer-layout1 .top-footer .widget_nav_menu ul.menu li {
  display: inline-block;
  width: 50%;
  line-height: 22px;
  padding-bottom: 12px;
  float: left;
  color: #808258;
}
.site-footer.footer-layout1 .top-footer .widget_nav_menu ul.menu li a {
  text-decoration: underline;
}
.site-footer.footer-layout1 .top-footer .widget_nav_menu ul.menu li a:before {
  background-color: #fff;
}
.site-footer.footer-layout1 .top-footer .widget_nav_menu ul.menu li a:hover {
  color: #dc0008;
}
.site-footer.footer-layout1 .widget_newsletterwidget {
  line-height: 28px;
}
.site-footer.footer-layout1 .widget_newsletterwidget .footer-widget-title {
  margin-bottom: 27px;
}
.site-footer.footer-layout1 .widget_newsletterwidget form {
  position: relative;
  margin-top: 12px;
}
.site-footer.footer-layout1 .widget_newsletterwidget form:after {
  height: 60px;
  border-radius: 0 4px 4px 0;
  font-size: 18px;
  width: 70px;
  line-height: 60px;
  text-align: center;
  background-color: #dc0008;
  content: "\f1d9";
  font-family: "FontAwesome";
  display: inline-block;
  font-size: 20px;
  color: #fff;
  position: absolute;
  font-weight: normal;
  top: 0px;
  right: 0;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
}
.site-footer.footer-layout1 .widget_newsletterwidget form:hover:after {
  background-color: rgba(220, 0, 8, 0.8);
}
.site-footer.footer-layout1 .widget_newsletterwidget form .tnp-field-email {
  margin-right: 0;
  margin-bottom: 0;
}
.site-footer.footer-layout1 .widget_newsletterwidget form .tnp-field-email .tnp-email {
  height: 60px;
  padding-right: 55px;
  padding-left: 15px;
  background-color: #fff;
  -webkit-border-radius: 5px;
  -khtml-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
}
.site-footer.footer-layout1 .widget_newsletterwidget form .tnp-field-button {
  position: absolute;
  top: 0;
  right: 0;
  border: none;
  margin-bottom: 0;
}
.site-footer.footer-layout1 .widget_newsletterwidget form .tnp-field-button .tnp-submit {
  border: none;
  height: 60px;
  width: 70px;
  background-color: transparent;
  position: relative;
  font-size: 0;
}
.site-footer.footer-layout1 .bottom-footer {
  background-color: #191f23;
  color: #6a7587;
}
.site-footer.footer-layout1 .bottom-footer a {
  color: #dc0008;
}
.site-footer.footer-layout1 .bottom-footer a:hover {
  color: #fff;
}
@media screen and (min-width: 768px) {
  .site-footer.footer-layout1 .bottom-footer-inner {
    display: flex;
    justify-content: space-between;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
  }
}
.site-footer.footer-layout1 .bottom-footer-inner .bottom-footer-logo a {
  display: inline-block;
  background: #dc0008;
  padding: 10px 20px;
}
.site-footer.footer-layout1 .bottom-footer-inner .bottom-footer-logo a img {
  height: 50px;
}
.site-footer-custom .container {
  position: relative;
}
.site-footer-custom .container .ct-scroll-top {
  position: absolute;
  display: none;
}
@media screen and (min-width: 992px) {
  .site-footer-custom .container .ct-scroll-top {
    display: block;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -khtml-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    background-color: #041436;
    right: -55px;
    bottom: auto;
    cursor: pointer;
    height: 70px;
    width: 215px;
    line-height: 70px;
    -webkit-box-shadow: 0 8px 16px rgba(0, 0, 0, );
    -khtml-box-shadow: 0 8px 16px rgba(0, 0, 0, );
    -moz-box-shadow: 0 8px 16px rgba(0, 0, 0, );
    -ms-box-shadow: 0 8px 16px rgba(0, 0, 0, );
    -o-box-shadow: 0 8px 16px rgba(0, 0, 0, );
    box-shadow: 0 8px 16px rgba(0, 0, 0, );
    z-index: 2;
    transform: rotate(-90deg);
  }
}
@media screen and (max-width: 991px) {
  .site-footer-custom .container .ct-scroll-top {
    bottom: 30px;
  }
}
.site-footer-custom .container .ct-scroll-top:hover {
  background-color: #dc0008;
}
.site-footer-custom .container .ct-scroll-top.on i {
  transform: rotate(90deg);
  margin-left: 5px;
}
.site-footer-custom .container .ct-scroll-top-mobile {
  display: none;
  position: absolute;
}
@media screen and (max-width: 991px) {
  .site-footer-custom .container .ct-scroll-top-mobile {
    display: block;
    position: absolute;
    -webkit-border-radius: 5px 0 0 5px;
    -khtml-border-radius: 5px 0 0 5px;
    -moz-border-radius: 5px 0 0 5px;
    -ms-border-radius: 5px 0 0 5px;
    -o-border-radius: 5px 0 0 5px;
    border-radius: 5px 0 0 5px;
    background-color: rgba(220, 0, 8, 0.4);
    right: 0;
    bottom: 35px;
    color: #fff;
    font-size: 15px;
    z-index: 22;
    cursor: pointer;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    -webkit-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.20);
    -khtml-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.20);
    -moz-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.20);
    -ms-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.20);
    -o-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.20);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.20);
    -webkit-transition: all 300ms linear 0ms;
    -khtml-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    -o-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms;
  }
  .site-footer-custom .container .ct-scroll-top-mobile:hover {
    background-color: #dc0008;
  }
}
.ct-scroll-top {
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  color: #fff;
  font-size: 18px;
  display: block;
  -webkit-border-radius: 70px;
  -khtml-border-radius: 70px;
  -moz-border-radius: 70px;
  -ms-border-radius: 70px;
  -o-border-radius: 70px;
  border-radius: 70px;
  position: fixed;
  right: 35px;
  bottom: 0;
  cursor: pointer;
  background-color: #dc0008;
  -webkit-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.20);
  -khtml-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.20);
  -moz-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.20);
  -ms-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.20);
  -o-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.20);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.20);
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
}
.ct-scroll-top:hover {
  background-color: #232323;
  color: #fff;
}
.ct-scroll-top:focus, .ct-scroll-top:active {
  background-color: #dc0008;
  color: #fff;
}
.ct-scroll-top.on {
  opacity: 1;
  visibility: visible;
  bottom: 35px;
}
@media screen and (max-width: 767px) {
  .ct-scroll-top {
    bottom: 76px;
    right: 0;
    height: 35px;
    width: 35px;
    font-size: 15px;
    line-height: 35px;
    -webkit-border-radius: 3px 0 0 3px;
    -khtml-border-radius: 3px 0 0 3px;
    -moz-border-radius: 3px 0 0 3px;
    -ms-border-radius: 3px 0 0 3px;
    -o-border-radius: 3px 0 0 3px;
    border-radius: 3px 0 0 3px;
  }
}
.ct-modal.ct-search-popup .ct-modal-content form {
  padding: 23px 0;
  position: relative;
  border-bottom: 1px solid #fff;
}
.ct-modal.ct-search-popup .ct-modal-content .search-field {
  font-size: 65px;
  height: inherit;
  color: #fff;
  padding: 0;
  border: none;
  background-color: transparent;
  font-weight: normal;
  padding-right: 80px;
}
@media screen and (max-width: 991px) {
  .ct-modal.ct-search-popup .ct-modal-content .search-field {
    font-size: 48px;
    padding-right: 60px;
  }
}
@media screen and (max-width: 767px) {
  .ct-modal.ct-search-popup .ct-modal-content .search-field {
    font-size: 24px;
  }
}
.ct-modal.ct-search-popup .ct-modal-content .search-field:focus {
  -webkit-box-shadow: none;
  -khtml-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}
.ct-modal.ct-search-popup .ct-modal-content .esc-search {
  margin-top: 24px;
  font-size: 15px;
  color: #fff;
}
.ct-modal.ct-search-popup .ct-modal-content .search-submit {
  background-image: none;
  background-color: transparent;
  color: #fff;
  font-size: 42px;
  position: absolute;
  border: none;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -khtml-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  right: 0;
  padding: 5px 0 5px 5px;
  line-height: 1;
}
@media screen and (max-width: 991px) {
  .ct-modal.ct-search-popup .ct-modal-content .search-submit {
    font-size: 36px;
  }
}
@media screen and (max-width: 767px) {
  .ct-modal.ct-search-popup .ct-modal-content .search-submit {
    display: none;
  }
}
.ct-hidden-sidebar {
  width: 380px;
  position: fixed;
  top: 0;
  right: 0;
  background-color: #fff;
  height: 100%;
  padding: 65px 0 40px 0;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
  -webkit-box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  -khtml-box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(380px);
  -khtml-transform: translateX(380px);
  -moz-transform: translateX(380px);
  -ms-transform: translateX(380px);
  -o-transform: translateX(380px);
  transform: translateX(380px);
}
.ct-hidden-sidebar.open {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0px);
  -khtml-transform: translateX(0px);
  -moz-transform: translateX(0px);
  -ms-transform: translateX(0px);
  -o-transform: translateX(0px);
  transform: translateX(0px);
}
.ct-hidden-sidebar .ct-close {
  position: absolute;
  top: 18px;
  right: 30px;
}
.ct-hidden-sidebar .ct-hidden-sidebar-inner {
  height: 100%;
  overflow: auto;
  padding: 0 40px;
}
.ct-hidden-sidebar .ct-hidden-sidebar-inner .widget {
  margin-bottom: 39px;
}
.ct-hidden-sidebar .ct-hidden-sidebar-inner .widget-title {
  text-align: left;
}
.ct-hidden-sidebar .ct-hidden-sidebar-inner .ct-social {
  text-align: left;
}
@media screen and (max-width: 991px) {
  .ct-hidden-sidebar {
    display: none;
  }
}
.ct-hidden-sidebar .logo-sidebar img {
  max-height: 65px;
}
.admin-bar .ct-hidden-sidebar {
  padding-top: 95px;
}
.admin-bar .ct-hidden-sidebar .ct-close {
  top: 50px;
}
.column-footer-custom {
  overflow: hidden;
}
.column-footer-custom .text-footer-custom {
  position: relative;
  margin-bottom: 10px;
}
.column-footer-custom .text-footer-custom:before {
  width: 2000px;
  position: absolute;
  height: 1px;
  content: "";
  display: block;
  background-color: rgba(255, 255, 255, .05);
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -khtml-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}
.hover-effect {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.hover-effect:before, .hover-effect:after {
  background-color: #000;
  content: "";
  height: 100%;
  left: -110%;
  opacity: 0.1;
  position: absolute;
  top: 0;
  -webkit-transition: all 0.5s ease 0s;
  -khtml-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  -webkit-transform: skewX(25deg);
  -khtml-transform: skewX(25deg);
  -moz-transform: skewX(25deg);
  -ms-transform: skewX(25deg);
  -o-transform: skewX(25deg);
  transform: skewX(25deg);
  width: 100%;
  z-index: -1;
}
.hover-effect:hover:before, .hover-effect:focus:before, .hover-effect:active:before {
  left: -10%;
  -webkit-transition: all 0.3s ease 0s;
  -khtml-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.hover-effect:hover:after, .hover-effect:focus:after, .hover-effect:active:after {
  left: -20%;
}
.ct-grid .entry-featured {
  overflow: hidden;
}
.ct-grid .entry-featured img {
  width: 100%;
  -webkit-transition: all 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  -khtml-transition: all 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  -moz-transition: all 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  -ms-transition: all 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  -o-transition: all 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  transition: all 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
}
.item-featured img {
  width: 100%;
  -webkit-transition: all 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  -khtml-transition: all 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  -moz-transition: all 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  -ms-transition: all 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  -o-transition: all 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  transition: all 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
}
.item-featured a.no-thumnail {
  min-height: 280px;
  background-color: #dc0008;
}
.ct-carousel .item-title {
  font-size: 22px;
  line-height: 1.59;
}
.ct-carousel .item-title a:hover {
  color: #dc0008;
}
@media screen and (max-width: 991px) {
  .ct-grid.filter-click .ct-grid-inner .wpb_animate_when_almost_visible {
    opacity: 1;
  }
}
.ct-grid .ct-grid-inner, .ct-grid .grid-item-inner {
  position: relative;
}
.ct-grid .ct-grid-inner.ct-grid-masonry, .ct-grid .grid-item-inner.ct-grid-masonry {
  display: block;
}
.ct-grid .grid-item.ct-animated .grid-item-inner {
  animation: 0.65s ease 0s normal forwards 1 running moveUp;
  -webkit-animation: 0.65s ease 0s normal forwards 1 running moveUp;
  -ms-animation: 0.65s ease 0s normal forwards 1 running moveUp;
  -o-animation: 0.65s ease 0s normal forwards 1 running moveUp;
  -webkit-transform: translateY(200px);
  -khtml-transform: translateY(200px);
  -moz-transform: translateY(200px);
  -ms-transform: translateY(200px);
  -o-transform: translateY(200px);
  transform: translateY(200px);
}
.ct-grid .ct-load-more {
  margin-top: 35px;
  text-align: center;
}
.ct-grid .ct-load-more i {
  margin-left: 0;
}
.ct-grid .ct-load-more i.fa {
  margin-right: 5px;
}
.ct-grid .ct-load-more .loadmore-style2 {
  padding-left: 22px;
  padding-right: 22px;
  -webkit-border-radius: 4px;
  -khtml-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  background-color: #232323;
  border-color: #232323;
}
.ct-grid .ct-load-more .loadmore-style2 i {
  margin-right: 0;
  margin-left: 16px;
}
.ct-grid .ct-load-more .loadmore-style2:hover {
  background-color: #dc0008;
  border-color: #dc0008;
}
.ct-grid .item-title {
  font-size: 22px;
  line-height: 1.59;
}
.ct-grid .item-title a {
  color: inherit;
}
.ct-grid .item-title a:hover {
  color: #dc0008;
}
.ct-grid .ct-grid-pagination {
  margin-top: 30px;
}
.ct-grid .item-featured a {
  display: block;
}
.grid-filter-wrap {
  text-align: center;
  margin-bottom: 30px;
}
.grid-filter-wrap .filter-item {
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
  color: #fff;
  background-color: #232323;
  font-weight: 600;
  padding: 6px 36px 3px;
  display: inline-block;
  -webkit-border-radius: 50px;
  -khtml-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  border-radius: 50px;
  text-transform: uppercase;
  cursor: pointer;
  margin: 0 3px 10px 3px;
  font-size: 14px;
}
.grid-filter-wrap .filter-item.active, .grid-filter-wrap .filter-item:hover {
  background-color: #dc0008;
  color: #fff;
}
.select-filter-wrap.nice-select, .select-order-wrap.nice-select {
  min-width: 160px;
  height: 40px;
  line-height: 40px;
  padding: 0 40px 0 21px;
  display: inline-block;
  width: inherit;
  border: none;
  -webkit-border-radius: 4px;
  -khtml-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.24);
  -khtml-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.24);
  -moz-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.24);
  -ms-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.24);
  -o-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.24);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.24);
  font-size: 15px;
}
.select-filter-wrap.nice-select:after, .select-order-wrap.nice-select:after {
  content: "\f2f9";
  right: 15px;
  font-size: 15px;
}
.select-order-wrap {
  margin-left: 15px;
}
.ct-grid-header {
  align-items: center;
  display: flex;
  display: -webkit-flex;
  display: -ms-flex;
  flex-wrap: nowrap;
  margin-bottom: 45px;
}
.ct-grid-header > h3 {
  margin: 0;
  font-size: 40px;
  letter-spacing: 0.03em;
  flex-grow: 1;
  -webkit-flex-grow: 1;
  -ms-flex-grow: 1;
  -o-flex-grow: 1;
}
@media screen and (max-width: 991px) {
  .ct-grid-header {
    display: block;
  }
  .ct-grid-header > h3 {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 991px) {
  .ct-grid-header .nice-select {
    margin: 15px 0 0;
  }
}
.item-order {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}
.owl-nav {
  text-align: center;
  margin-top: 55px;
}
.owl-nav .owl-prev, .owl-nav .owl-next {
  background-color: transparent;
  display: inline-block;
  font-size: 28px;
  text-align: center;
  margin: 5px;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
  padding: 0;
  letter-spacing: 0px;
  font-weight: 300;
}
.owl-nav .owl-prev i, .owl-nav .owl-next i {
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
  font-weight: 300;
}
.owl-nav .owl-prev:hover, .owl-nav .owl-next:hover {
  color: #dc0008;
}
.ct-nav-carousel .nav-prev, .ct-nav-carousel .nav-next {
  cursor: pointer;
  color: #13287e;
  border: 2px solid #c0c6dd;
  background-color: transparent;
  display: inline-block;
  font-size: 18px;
  height: 60px;
  line-height: 56px;
  -webkit-border-radius: 60px;
  -khtml-border-radius: 60px;
  -moz-border-radius: 60px;
  -ms-border-radius: 60px;
  -o-border-radius: 60px;
  border-radius: 60px;
  text-align: center;
  width: 60px;
  margin: 5px 6px 5px 0;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
  padding: 0;
  letter-spacing: 0px;
  font-weight: 400;
}
.ct-nav-carousel .nav-prev:hover, .ct-nav-carousel .nav-next:hover {
  background-color: #fff;
  color: #13287e !important;
}
.ct-nav-carousel .nav-prev i, .ct-nav-carousel .nav-next i {
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
}
.owl-dots {
  text-align: center;
  margin-top: 30px;
  display: flex;
  justify-content: center;
  padding: 0 4px;
}
.owl-dots .owl-dot {
  -webkit-border-radius: 14px;
  -khtml-border-radius: 14px;
  -moz-border-radius: 14px;
  -ms-border-radius: 14px;
  -o-border-radius: 14px;
  border-radius: 14px;
  background-color: rgba(220, 0, 8, 0.5);
  display: inline-block;
  height: 14px;
  margin: 5px;
  padding: 0;
  border: none;
  width: 14px;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
  position: relative;
}
.owl-dots .owl-dot.active {
  background-color: #dc0008;
}
.owl-dots .owl-dot:before, .owl-dots .owl-dot:after {
  display: none;
}
.ct-carousel-filter {
  margin-bottom: 25px;
  /* Page Loading */
}
.ct-carousel-filter .ct-filter-item {
  font-size: 24px;
  line-height: normal;
  color: rgba(0, 0, 0, 0.33);
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
  margin: 0 38px 10px 0;
  display: inline-block;
}
.ct-carousel-filter .ct-filter-item.ct-filter-active, .ct-carousel-filter .ct-filter-item:hover {
  color: #dc0008;
  cursor: pointer;
}
#ct-loadding {
  height: 100%;
  position: fixed;
  width: 100%;
  z-index: 999999;
  top: 0;
  left: 0;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
  background-color: #fff;
}
#ct-loadding .loading-spin {
  display: block;
  height: 65px;
  margin: -32px auto 0;
  position: relative;
  top: 50%;
  width: 65px;
}
#ct-loadding .loading-spin .spinner {
  width: 60px;
  height: 60px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  -webkit-animation: spin-rotate-all 1s linear infinite;
  animation: spin-rotate-all 1s linear infinite;
}
#ct-loadding .loading-spin .spinner .right-side, #ct-loadding .loading-spin .spinner .left-side {
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  overflow: hidden;
  -webkit-animation: spin-fade-in-first 1.2s linear infinite alternate;
  animation: spin-fade-in-first 1.2s linear infinite alternate;
}
#ct-loadding .loading-spin .spinner .left-side {
  left: 0;
}
#ct-loadding .loading-spin .spinner .right-side {
  right: 0;
}
#ct-loadding .loading-spin .spinner.color-2 .right-side, #ct-loadding .loading-spin .spinner.color-2 .left-side {
  -webkit-animation: spin-fade-in-second 1.2s linear infinite alternate;
  animation: spin-fade-in-second 1.2s linear infinite alternate;
}
#ct-loadding .loading-spin .spinner .bar {
  width: 100%;
  height: 100%;
  -webkit-border-radius: 200px 0 0 200px;
  -khtml-border-radius: 200px 0 0 200px;
  -moz-border-radius: 200px 0 0 200px;
  -ms-border-radius: 200px 0 0 200px;
  -o-border-radius: 200px 0 0 200px;
  border-radius: 200px 0 0 200px;
  border: 6px solid #dc0008;
  position: relative;
}
#ct-loadding .loading-spin .spinner .bar:after {
  content: "";
  width: 6px;
  height: 6px;
  display: block;
  background: #dc0008;
  position: absolute;
  -webkit-border-radius: 6px;
  -khtml-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  border-radius: 6px;
}
#ct-loadding .loading-spin .spinner .right-side .bar {
  -webkit-border-radius: 0 200px 200px 0;
  -khtml-border-radius: 0 200px 200px 0;
  -moz-border-radius: 0 200px 200px 0;
  -ms-border-radius: 0 200px 200px 0;
  -o-border-radius: 0 200px 200px 0;
  border-radius: 0 200px 200px 0;
  border-left: none;
  -webkit-transform: rotate(-10deg);
  -webkit-transform-origin: left center;
  transform: rotate(-10deg);
  transform-origin: left center;
  -webkit-animation: spin-rotate-right 0.75s linear infinite alternate;
  animation: spin-rotate-right 0.75s linear infinite alternate;
}
#ct-loadding .loading-spin .spinner .right-side .bar:after {
  bottom: -6px;
  left: -3px;
}
#ct-loadding .loading-spin .spinner .left-side .bar {
  border-right: none;
  -webkit-transform: rotate(10deg);
  transform: rotate(10deg);
  -webkit-transform-origin: right center;
  transform-origin: right center;
  -webkit-animation: spin-rotate-left 0.75s linear infinite alternate;
  animation: spin-rotate-left 0.75s linear infinite alternate;
}
#ct-loadding .loading-spin .spinner .left-side .bar:after {
  bottom: -6px;
  right: -3px;
}
.ct-spinner2 {
  width: 45px;
  height: 45px;
  background-color: #dc0008;
  margin: 100px auto;
  -webkit-animation: rotateplane 1.2s infinite ease-in-out;
  animation: rotateplane 1.2s infinite ease-in-out;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 0;
  bottom: 0;
}
.ct-spinner3 {
  width: 45px;
  height: 45px;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 0;
  bottom: 0;
}
.ct-spinner3 .double-bounce1, .ct-spinner3 .double-bounce2 {
  width: 100%;
  height: 100%;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  background-color: #dc0008;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: ct-bounce 2s infinite ease-in-out;
  animation: ct-bounce 2s infinite ease-in-out;
}
.ct-spinner3 .double-bounce2 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
.ct-spinner4 {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 0;
  bottom: 0;
  width: 70px;
  height: 40px;
  text-align: center;
  font-size: 10px;
}
.ct-spinner4 > div {
  background-color: #dc0008;
  height: 100%;
  width: 6px;
  display: inline-block;
  -webkit-animation: ct-stretchdelay 1.2s infinite ease-in-out;
  animation: ct-stretchdelay 1.2s infinite ease-in-out;
}
.ct-spinner4 .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}
.ct-spinner4 .rect3 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
.ct-spinner4 .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}
.ct-spinner4 .rect5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}
.ct-spinner5 {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -khtml-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  width: 70px;
  text-align: center;
}
.ct-spinner5 > div {
  width: 18px;
  height: 18px;
  background-color: #dc0008;
  -webkit-border-radius: 100%;
  -khtml-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: ct-bouncedelay 1.4s infinite ease-in-out both;
  animation: ct-bouncedelay 1.4s infinite ease-in-out both;
}
.ct-spinner5 .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.ct-spinner5 .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
.ct-cube-grid {
  width: 40px;
  height: 40px;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 0;
  bottom: 0;
}
.ct-cube-grid .ct-cube {
  width: 33%;
  height: 33%;
  background-color: #dc0008;
  float: left;
  -webkit-animation: ct-cubeGridScaleDelay 1.3s infinite ease-in-out;
  animation: ct-cubeGridScaleDelay 1.3s infinite ease-in-out;
}
.ct-cube-grid .ct-cube1 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
.ct-cube-grid .ct-cube2 {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.ct-cube-grid .ct-cube3 {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
.ct-cube-grid .ct-cube4 {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}
.ct-cube-grid .ct-cube5 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
.ct-cube-grid .ct-cube6 {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.ct-cube-grid .ct-cube7 {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}
.ct-cube-grid .ct-cube8 {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}
.ct-cube-grid .ct-cube9 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
.ct-folding-cube {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 0;
  bottom: 0;
  width: 40px;
  height: 40px;
  -webkit-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
}
.ct-folding-cube .ct-cube {
  float: left;
  width: 50%;
  height: 50%;
  position: relative;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.ct-folding-cube .ct-cube:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #dc0008;
  -webkit-animation: ct-foldCubeAngle 2.4s infinite linear both;
  animation: ct-foldCubeAngle 2.4s infinite linear both;
  -webkit-transform-origin: 100% 100%;
  -ms-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
}
.ct-folding-cube .ct-cube2 {
  -webkit-transform: scale(1.1) rotateZ(90deg);
  transform: scale(1.1) rotateZ(90deg);
}
.ct-folding-cube .ct-cube2:before {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.ct-folding-cube .ct-cube3 {
  -webkit-transform: scale(1.1) rotateZ(180deg);
  transform: scale(1.1) rotateZ(180deg);
}
.ct-folding-cube .ct-cube3:before {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
.ct-folding-cube .ct-cube4 {
  -webkit-transform: scale(1.1) rotateZ(270deg);
  transform: scale(1.1) rotateZ(270deg);
}
.ct-folding-cube .ct-cube4:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}
.ct-loading-stairs {
  height: 100px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translate(0px, -50%);
  -khtml-transform: translate(0px, -50%);
  -moz-transform: translate(0px, -50%);
  -ms-transform: translate(0px, -50%);
  -o-transform: translate(0px, -50%);
  transform: translate(0px, -50%);
  width: 75px;
  margin-top: -25px;
}
.ct-loading-stairs .loader-bar {
  position: absolute;
  bottom: 0;
  width: 10px;
  height: 50%;
  background: #dc0008;
  transform-origin: center bottom;
  -webkit-box-shadow: 1px 1px 0 rgba(0, 0, 0, .2);
  -khtml-box-shadow: 1px 1px 0 rgba(0, 0, 0, .2);
  -moz-box-shadow: 1px 1px 0 rgba(0, 0, 0, .2);
  -ms-box-shadow: 1px 1px 0 rgba(0, 0, 0, .2);
  -o-box-shadow: 1px 1px 0 rgba(0, 0, 0, .2);
  box-shadow: 1px 1px 0 rgba(0, 0, 0, .2);
}
.ct-loading-stairs .loader-bar:nth-child(1) {
  left: 0px;
  -webkit-transform: scale(1, 0.2);
  -khtml-transform: scale(1, 0.2);
  -moz-transform: scale(1, 0.2);
  -ms-transform: scale(1, 0.2);
  -o-transform: scale(1, 0.2);
  transform: scale(1, 0.2);
  animation: barUp1 4s infinite;
  -webkit-animation: barUp1 4s infinite;
  -ms-animation: barUp1 4s infinite;
}
.ct-loading-stairs .loader-bar:nth-child(2) {
  left: 15px;
  -webkit-transform: scale(1, 0.4);
  -khtml-transform: scale(1, 0.4);
  -moz-transform: scale(1, 0.4);
  -ms-transform: scale(1, 0.4);
  -o-transform: scale(1, 0.4);
  transform: scale(1, 0.4);
  animation: barUp2 4s infinite;
  -webkit-animation: barUp2 4s infinite;
  -ms-animation: barUp2 4s infinite;
}
.ct-loading-stairs .loader-bar:nth-child(3) {
  left: 30px;
  -webkit-transform: scale(1, 0.6);
  -khtml-transform: scale(1, 0.6);
  -moz-transform: scale(1, 0.6);
  -ms-transform: scale(1, 0.6);
  -o-transform: scale(1, 0.6);
  transform: scale(1, 0.6);
  animation: barUp3 4s infinite;
  -webkit-animation: barUp3 4s infinite;
  -ms-animation: barUp3 4s infinite;
}
.ct-loading-stairs .loader-bar:nth-child(4) {
  left: 45px;
  -webkit-transform: scale(1, 0.8);
  -khtml-transform: scale(1, 0.8);
  -moz-transform: scale(1, 0.8);
  -ms-transform: scale(1, 0.8);
  -o-transform: scale(1, 0.8);
  transform: scale(1, 0.8);
  animation: barUp4 4s infinite;
  -webkit-animation: barUp4 4s infinite;
  -ms-animation: barUp4 4s infinite;
}
.ct-loading-stairs .loader-bar:nth-child(5) {
  left: 60px;
  -webkit-transform: scale(1, 1);
  -khtml-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  transform: scale(1, 1);
  animation: barUp5 4s infinite;
  -webkit-animation: barUp5 4s infinite;
  -ms-animation: barUp5 4s infinite;
}
.ct-loading-stairs .loader-ball {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 10px;
  height: 10px;
  background: #dc0008;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  animation: ball 4s infinite;
  -webkit-animation: ball 4s infinite;
  -ms-animation: ball 4s infinite;
}
.ct-spinner9-wrap {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0px, -50%);
  -khtml-transform: translate(0px, -50%);
  -moz-transform: translate(0px, -50%);
  -ms-transform: translate(0px, -50%);
  -o-transform: translate(0px, -50%);
  transform: translate(0px, -50%);
  left: 0;
  right: 0;
  width: 45px;
  height: 45px;
  margin: auto;
}
.ct-spinner9 {
  margin: 0 auto;
  width: 45px;
  height: 45px;
  position: relative;
  text-align: center;
  -webkit-animation: ct-rotate 2s infinite linear;
  animation: ct-rotate 2s infinite linear;
}
.ct-spinner9 .dot1, .ct-spinner9 .dot2 {
  width: 60%;
  height: 60%;
  display: inline-block;
  position: absolute;
  top: 0;
  background-color: ;
  background-image: -webkit-gradient(linear, left top, right top, from(), to());
  background-image: -webkit-linear-gradient(left, , );
  background-image: -moz-linear-gradient(left, , );
  background-image: -ms-linear-gradient(left, , );
  background-image: -o-linear-gradient(left, , );
  background-image: linear-gradient(left, , );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='', endColorStr='', gradientType='1');
  -webkit-border-radius: 100%;
  -khtml-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
  -webkit-animation: ct-bounce 2s infinite ease-in-out;
  animation: ct-bounce 2s infinite ease-in-out;
}
.ct-spinner9 .dot2 {
  top: auto;
  bottom: 0;
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
.nav-tabs.ct-tabs {
  border: none;
  margin-bottom: 10px;
}
.nav-tabs.ct-tabs .nav-item {
  margin: 0 0 10px 26px;
}
.nav-tabs.ct-tabs .nav-item:first-child {
  margin-left: 0;
}
.nav-tabs.ct-tabs .nav-item a {
  margin: 0;
  border: none;
  padding: 0;
  font-size: 13px;
  color: rgba(0, 0, 0, );
}
.nav-tabs.ct-tabs .nav-item a.active {
  color: ;
}
.entry-footer .entry-edit-link {
  display: none;
}
div.pp_overlay {
  z-index: 9999 !important;
  opacity: 0.85 !important;
}
.nav-tabs-none {
  border: none;
}
.nav-tabs-none li.nav-item {
  margin: 0;
}
.nav-tabs-none li.nav-item a.nav-link {
  border: none;
  padding: 0;
}
.owl-carousel[data-arrows="false"] .owl-nav, .owl-carousel[data-bullets="false"] .owl-dots {
  display: none;
}
.owl-carousel.nav-middle .owl-nav {
  margin: 0;
}
.owl-carousel.nav-middle .owl-nav .owl-prev, .owl-carousel.nav-middle .owl-nav .owl-next {
  margin: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0%, -50%);
  -khtml-transform: translate(0%, -50%);
  -moz-transform: translate(0%, -50%);
  -ms-transform: translate(0%, -50%);
  -o-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
}
.owl-carousel.nav-middle .owl-nav .owl-prev {
  left: -110px;
}
@media screen and (max-width: 1400px) {
  .owl-carousel.nav-middle .owl-nav .owl-prev {
    left: -70px;
  }
}
@media screen and (max-width: 1280px) {
  .owl-carousel.nav-middle .owl-nav .owl-prev {
    left: 30px;
  }
}
.owl-carousel.nav-middle .owl-nav .owl-next {
  right: -110px;
}
@media screen and (max-width: 1400px) {
  .owl-carousel.nav-middle .owl-nav .owl-next {
    right: -70px;
  }
}
@media screen and (max-width: 1280px) {
  .owl-carousel.nav-middle .owl-nav .owl-next {
    right: 30px;
  }
}
.owl-carousel.dots-style2 .owl-dots .owl-dot {
  width: 20px;
  height: 4px;
  background-color: #cbd1da;
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
}
.owl-carousel.dots-style2 .owl-dots .owl-dot.active {
  background-color: #dc0008;
}
.ct-modal {
  background-color: rgba(0, 0, 0, 0.95);
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  -webkit-transform: translateY(-100%);
  -khtml-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
  opacity: 0;
  -webkit-transition: all 500ms ease-in-out;
  -khtml-transition: all 500ms ease-in-out;
  -moz-transition: all 500ms ease-in-out;
  -ms-transition: all 500ms ease-in-out;
  -o-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
}
.ct-modal .ct-modal-content {
  left: 0;
  margin: auto;
  max-width: 1200px;
  padding: 100px 15px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translate(0px, -50%) scaleX(0);
  -khtml-transform: translate(0px, -50%) scaleX(0);
  -moz-transform: translate(0px, -50%) scaleX(0);
  -ms-transform: translate(0px, -50%) scaleX(0);
  -o-transform: translate(0px, -50%) scaleX(0);
  transform: translate(0px, -50%) scaleX(0);
  position: relative;
  -webkit-transition: all 500ms ease-in-out;
  -khtml-transition: all 500ms ease-in-out;
  -moz-transition: all 500ms ease-in-out;
  -ms-transition: all 500ms ease-in-out;
  -o-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
  transition-delay: 500ms;
}
.ct-modal.open {
  -webkit-transform: translateY(0%);
  -khtml-transform: translateY(0%);
  -moz-transform: translateY(0%);
  -ms-transform: translateY(0%);
  -o-transform: translateY(0%);
  transform: translateY(0%);
  opacity: 1;
}
.ct-modal.open .ct-modal-content {
  -webkit-transform: translate(0px, -50%) scaleX(1);
  -khtml-transform: translate(0px, -50%) scaleX(1);
  -moz-transform: translate(0px, -50%) scaleX(1);
  -ms-transform: translate(0px, -50%) scaleX(1);
  -o-transform: translate(0px, -50%) scaleX(1);
  transform: translate(0px, -50%) scaleX(1);
}
.ct-modal.remove {
  -webkit-transform: translateY(-100%);
  -khtml-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
  opacity: 0;
  transition-delay: 500ms;
}
.ct-modal.remove .ct-modal-content {
  -webkit-transform: translate(0px, -50%) scaleX(0);
  -khtml-transform: translate(0px, -50%) scaleX(0);
  -moz-transform: translate(0px, -50%) scaleX(0);
  -ms-transform: translate(0px, -50%) scaleX(0);
  -o-transform: translate(0px, -50%) scaleX(0);
  transform: translate(0px, -50%) scaleX(0);
  transition-delay: 0ms;
}
.ct-modal .ct-close {
  position: absolute;
  top: 30px;
  right: 30px;
}
.ct-modal .ct-close:before, .ct-modal .ct-close:after {
  background-color: #fff;
}
.ct-modal .ct-close:hover:before, .ct-modal .ct-close:hover:after {
  background-color: #232323;
}
@media screen and (max-width: 991px) {
  .ct-modal .ct-close {
    display: block;
  }
}
@media screen and (max-width: 575px) {
  .ct-modal .ct-modal-content {
    max-width: 300px;
  }
}
.vc_row .ct-row-overlay {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.vc_row .ct-row-overlay.position-left {
  left: 0;
}
.vc_row .ct-row-overlay.position-right {
  right: 0;
}
.vc_row .ct-row-overlay span {
  font-size: 278px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.05);
  position: absolute;
  top: 0;
  left: 0;
  line-height: 1;
}
@media screen and (max-width: 991px) {
  .vc_row .ct-row-overlay span {
    font-size: 150px;
  }
}
@media screen and (max-width: 767px) {
  .vc_row .ct-row-overlay span {
    font-size: 80px;
  }
}
.vc_row .ct-row-overlay + .vc_column-inner {
  position: relative;
  z-index: inherit;
}
.slider-nav .thumbs {
  display: flex;
  flex-wrap: nowrap;
  margin: 0 -2px;
}
.slider-nav .thumb {
  width: 20%;
  padding: 0 2px;
  margin-top: 4px;
  -webkit-transition: all 400ms ease-in-out;
  -khtml-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
  cursor: pointer;
}
.slider-nav .thumb.active {
  opacity: 0.57;
}
.vc_row.bg-image-ps-top {
  background-position: top !important;
}
.vc_row.bg-image-ps-center {
  background-position: center !important;
}
.vc_row.bg-image-ps-bottom {
  background-position: bottom !important;
}
.vc_row.bg-image-ps-left .vc_parallax-inner {
  background-attachment: inherit !important;
  background-position: left 0px center !important;
  background-size: initial !important;
  background-repeat: no-repeat;
}
.vc_row.bg-image-ps-right .vc_parallax-inner {
  background-attachment: inherit !important;
  background-position: right 0px center !important;
  background-size: initial !important;
  background-repeat: no-repeat;
}
.wpb_column.bg-image-cl-ps-top .vc_parallax-inner, .wpb_column.bg-image-cl-ps-top .vc_column-inner {
  background-position: top !important;
}
.wpb_column.bg-image-cl-ps-center .vc_parallax-inner, .wpb_column.bg-image-cl-ps-center .vc_column-inner {
  background-position: center !important;
}
.wpb_column.bg-image-cl-ps-bottom .vc_parallax-inner, .wpb_column.bg-image-cl-ps-bottom .vc_column-inner {
  background-position: bottom !important;
}
.wpb_column.bg-image-cl-ps-left .vc_parallax-inner, .wpb_column.bg-image-cl-ps-left .vc_column-inner {
  background-attachment: inherit !important;
  background-position: left 50px center !important;
  background-size: initial !important;
  background-repeat: no-repeat;
}
.wpb_column.bg-image-cl-ps-right .vc_parallax-inner, .wpb_column.bg-image-cl-ps-right .vc_column-inner {
  background-attachment: inherit !important;
  background-position: right 40px center !important;
  background-size: initial !important;
  background-repeat: no-repeat;
}
body img.mfp-img {
  padding: 0 !important;
}
body .mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.85;
  background-color: #000;
}
body .mfp-container .mfp-content {
  padding: 15px;
}
body .mfp-figure::after {
  display: none;
}
body .mfp-bottom-bar {
  margin-top: 0;
  width: inherit;
  left: 15px;
  right: 15px;
}
body .mfp-image-holder .mfp-close, body .mfp-iframe-holder .mfp-close {
  line-height: 30px;
  height: 30px;
  padding: 0;
  right: 0px;
  text-align: center;
  top: 0;
  width: 30px;
  -webkit-border-radius: 30px;
  -khtml-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  border-radius: 30px;
  letter-spacing: 0px;
  font-weight: normal;
  overflow: hidden;
  background-color: #232323;
  opacity: 1;
}
body .mfp-image-holder .mfp-close:before, body .mfp-iframe-holder .mfp-close:before, body .mfp-image-holder .mfp-close:after, body .mfp-iframe-holder .mfp-close:after {
  display: none;
  background-color: #1d274e;
  background-image: none;
}
.pp_pic_holder .ppt, .pp_pic_holder .pp_gallery {
  display: none !important;
}
.mfp-wrap .mfp-container .mfp-arrow {
  background-color: #232323;
  width: 50px;
  height: 50px;
  -webkit-border-radius: 50px !important;
  -khtml-border-radius: 50px !important;
  -moz-border-radius: 50px !important;
  -ms-border-radius: 50px !important;
  -o-border-radius: 50px !important;
  border-radius: 50px !important;
  opacity: 1;
}
.mfp-wrap .mfp-container .mfp-arrow:before, .mfp-wrap .mfp-container .mfp-arrow:after {
  border: none;
}
.mfp-wrap .mfp-container .mfp-arrow:before {
  font-family: "Material-Design-Iconic-Font";
  font-size: 20px;
  color: #fff;
  margin: 0;
  padding: 0;
  line-height: normal;
  position: absolute;
  top: 50%;
  display: block;
  -webkit-transform: translate(-50%, -50%);
  -khtml-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 1;
  left: 50%;
  width: auto;
  height: auto;
  background-color: transparent;
}
.mfp-wrap .mfp-container .mfp-arrow.mfp-arrow-left {
  margin: -25px 0 0 30px;
}
.mfp-wrap .mfp-container .mfp-arrow.mfp-arrow-left:before {
  content: "\f2ea";
}
.mfp-wrap .mfp-container .mfp-arrow.mfp-arrow-right {
  margin: -25px 30px 0 0;
}
.mfp-wrap .mfp-container .mfp-arrow.mfp-arrow-right:before {
  content: "\f2ee";
}
.wpb_revslider_element {
  margin-bottom: 0 !important;
}
.rev_slider {
  margin-bottom: 0 !important;
}
.rev_slider .rev-btn {
  -webkit-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1) !important;
  -khtml-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1) !important;
  -moz-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1) !important;
  -ms-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1) !important;
  -o-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1) !important;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1) !important;
}
.rev_slider .ft-gilroy-l, .rev_slider .ft-gilroy {
  letter-spacing: -0.03em !important;
}
.rev_slider form.newsletter {
  width: 530px;
}
@media screen and (max-width: 991px) {
  .rev_slider form.newsletter {
    width: 380px;
  }
  .rev_slider form.newsletter .tnp-field .tnp-email {
    padding-left: 30px;
  }
  .rev_slider form.newsletter .tnp-field .tnp-button {
    padding: 0 20px;
  }
}
@media screen and (max-width: 575px) {
  .rev_slider form.newsletter {
    width: 290px;
  }
}
.rev_slider .ct-video-button {
  text-align: center !important;
  height: 120px !important;
  width: 120px !important;
  line-height: 120px !important;
  background-color: ;
  background-image: -webkit-gradient(linear, left top, right top, from(), to());
  background-image: -webkit-linear-gradient(left, , );
  background-image: -moz-linear-gradient(left, , );
  background-image: -ms-linear-gradient(left, , );
  background-image: -o-linear-gradient(left, , );
  background-image: linear-gradient(left, , );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='', endColorStr='', gradientType='1');
  z-index: 1;
}
.rev_slider .ct-video-button:before {
  content: '';
  height: 150px;
  width: 150px;
  -webkit-border-radius: 150px;
  -khtml-border-radius: 150px;
  -moz-border-radius: 150px;
  -ms-border-radius: 150px;
  -o-border-radius: 150px;
  border-radius: 150px;
  background-color: rgba(255, 255, 255, 0.06);
  position: absolute;
  top: -15px;
  left: -15px;
  z-index: -1;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
}
.rev_slider .ct-video-button:hover:before {
  opacity: 0;
}
@media screen and (max-width: 1199px) {
  .rev_slider .ct-video-button {
    height: 80px !important;
    width: 80px !important;
    line-height: 80px !important;
  }
  .rev_slider .ct-video-button:before {
    height: 110px;
    width: 110px;
  }
}
.rev_slider .lt-heading {
  letter-spacing: -0.03em !important;
}
.rev_slider .tp-leftarrow.custom, .rev_slider .tp-rightarrow.custom {
  width: 60px;
  height: 60px;
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
  background-color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transition: all 0.3s linear !important;
  -khtml-transition: all 0.3s linear !important;
  -moz-transition: all 0.3s linear !important;
  -ms-transition: all 0.3s linear !important;
  -o-transition: all 0.3s linear !important;
  transition: all 0.3s linear !important;
  opacity: 0.3;
}
.rev_slider .tp-leftarrow.custom:before, .rev_slider .tp-rightarrow.custom:before, .rev_slider .tp-leftarrow.custom:after, .rev_slider .tp-rightarrow.custom:after {
  color: #232323;
  line-height: 60px;
}
.rev_slider .tp-leftarrow.custom:hover, .rev_slider .tp-rightarrow.custom:hover {
  opacity: 1;
}
.rev_slider .tp-bullets.custom .tp-bullet {
  opacity: 0.9;
  height: 10px;
  width: 10px;
  -webkit-border-radius: 10px;
  -khtml-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
  background: #fff;
}
.rev_slider .tp-bullets.custom .tp-bullet:before {
  content: '';
  height: 16px;
  width: 16px;
  -webkit-border-radius: 16px;
  -khtml-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  border-radius: 16px;
  border: 6px solid transparent;
  position: absolute;
  top: -3px;
  left: -3px;
  -webkit-transition: all 0.3s linear !important;
  -khtml-transition: all 0.3s linear !important;
  -moz-transition: all 0.3s linear !important;
  -ms-transition: all 0.3s linear !important;
  -o-transition: all 0.3s linear !important;
  transition: all 0.3s linear !important;
}
.rev_slider .tp-bullets.custom .tp-bullet.selected {
  background-color: #fff;
}
.rev_slider .tp-bullets.custom .tp-bullet.selected:before {
  border-color: #fff;
}
.ct-newsletter .ct-newsletter-inner .tnp-subscription .tnp-field .tnp-email {
  background: rgba(128, 130, 88, 0.2);
  color: #7589b3;
  padding-left: 25px;
  padding-right: 25px;
  margin-bottom: 10px;
  border: 2px solid rgba(255, 255, 255, .5);
}
.ct-newsletter .ct-newsletter-inner .tnp-subscription .tnp-field.tnp-field-button .tnp-submit {
  height: 50px;
  line-height: 50px;
  background-color: #dc0008;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 55px;
  padding-right: 55px;
  margin-bottom: 0;
}
@media screen and (max-width: 575px) {
  .ct-newsletter .ct-newsletter-inner .tnp-subscription .tnp-field.tnp-field-button .tnp-submit {
    padding-left: 25px;
    padding-right: 25px;
  }
}
.ct-newsletter .ct-newsletter-inner .tnp-subscription .tnp-field.tnp-field-button .tnp-submit:hover {
  background-color: rgba(220, 0, 8, 0.8);
}
.ct-newsletter .ct-newsletter-inner.newsletter-left .newsletter-width .tnp-subscription {
  margin: 15px 0;
}
.ct-newsletter.layout1 .newsletter-width {
  margin-bottom: 21px;
}
@media screen and (max-width: 991px) {
  .ct-newsletter.layout1 .tnp-subscription {
    margin-left: 0;
    margin-right: 0;
  }
}
.ct-newsletter.layout1 .tnp-subscription form {
  position: relative;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  justify-content: space-between;
}
.ct-newsletter.layout1 .tnp-subscription form .tnp-field {
  margin-bottom: 0;
  padding-bottom: 0;
}
.ct-newsletter.layout1 .tnp-subscription form .tnp-field.tnp-field-email {
  flex-grow: 1;
  margin-right: 15px;
}
.ct-newsletter.layout1 .tnp-subscription form .tnp-field.tnp-field-email .tnp-email {
  height: 50px;
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, .5);
  margin-bottom: 0;
  color: #fff;
}
@media screen and (max-width: 1199px) {
  .ct-newsletter.layout1 .tnp-subscription form .tnp-field.tnp-field-email .tnp-email {
    margin-bottom: 22px;
  }
}
.ct-newsletter.layout1 .tnp-subscription form .tnp-field.tnp-field-button {
  flex-grow: 0;
}
.ct-newsletter.layout1 .tnp-subscription form .tnp-field.tnp-field-button .tnp-submit {
  background-color: #dc0008;
  margin-bottom: 0;
  padding-left: 20px;
  padding-right: 20px;
  height: 50px;
  color: #fff;
  text-transform: uppercase;
}
.ct-newsletter.layout2 .ct-newsletter-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0.06em;
}
.ct-newsletter.layout2 .ct-newsletter-introduction {
  color: #808258;
  font-size: 13px;
  line-height: 24px;
  margin-bottom: 23px;
}
@media screen and (max-width: 991px) {
  .ct-newsletter.layout2 .tnp-subscription {
    max-width: 450px;
    margin-left: 0;
    margin-right: 0;
  }
}
.ct-newsletter.layout2 .tnp-subscription form {
  position: relative;
}
@media screen and (min-width: 576px) {
  .ct-newsletter.layout2 .tnp-subscription form {
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    justify-content: space-between;
  }
}
.ct-newsletter.layout2 .tnp-subscription form .tnp-field {
  margin-bottom: 0;
  padding-bottom: 0;
}
@media screen and (min-width: 576px) {
  .ct-newsletter.layout2 .tnp-subscription form .tnp-field.tnp-field-email {
    flex-grow: 1;
    margin-right: 15px;
  }
}
@media (max-width: 360px) {
  .ct-newsletter.layout2 .tnp-subscription form .tnp-field.tnp-field-email {
    margin-right: 0;
  }
}
.ct-newsletter.layout2 .tnp-subscription form .tnp-field.tnp-field-email .tnp-email {
  height: 50px;
  background-color: transparent;
  -webkit-border-radius: 50px;
  -khtml-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, .5);
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .ct-newsletter.layout2 .tnp-subscription form .tnp-field.tnp-field-email .tnp-email {
    margin-bottom: 20px;
  }
}
.ct-newsletter.layout2 .tnp-subscription form .tnp-field.tnp-field-button {
  flex-grow: 0;
}
@media (max-width: 360px) {
  .ct-newsletter.layout2 .tnp-subscription form .tnp-field.tnp-field-button {
    flex-grow: 1;
  }
}
.ct-newsletter.layout2 .tnp-subscription form .tnp-field.tnp-field-button .tnp-submit {
  background-color: #dc0008;
  margin-bottom: 0;
  -webkit-border-radius: 50px;
  -khtml-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  border-radius: 50px;
  padding-left: 25px;
  padding-right: 25px;
  height: 50px;
  color: #fff;
  text-transform: uppercase;
}
@media (max-width: 360px) {
  .ct-newsletter.layout2 .tnp-subscription form .tnp-field.tnp-field-button .tnp-submit {
    width: 100%;
  }
}
.ct-newsletter.layout2.newsletter-left .newsletter-width .tnp-subscription {
  margin: 15px 0;
}
.ct-service-carousel.layout1 .item-featured {
  overflow: hidden;
  background-color: #fff;
  position: relative;
  transition: all 0.5s;
  transform: scale(1);
}
.ct-service-carousel.layout1 .item-featured img {
  transform: scale(1.05);
  transition: all 0.5s;
  transform-style: inherit;
}
.ct-service-carousel.layout1 .item-featured .overlay-bx {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
}
.ct-service-carousel.layout1 .item-featured .overlay-bx .portinner {
  transform: scale(0.2);
  transition: all 0.5s;
}
.ct-service-carousel.layout1 .item-featured .overlay-bx .portinner .item-title {
  font-size: 30px;
  line-height: 32px;
  margin-bottom: 15px;
}
.ct-service-carousel.layout1 .item-featured .overlay-bx .portinner .item-title a {
  color: #fff;
}
.ct-service-carousel.layout1 .item-featured:hover {
  background-color: #232323;
}
.ct-service-carousel.layout1 .item-featured:hover img {
  opacity: 0.2;
}
.ct-service-carousel.layout1 .item-featured:hover .overlay-bx {
  opacity: 1;
  visibility: visible;
}
.ct-service-carousel.layout1 .item-featured:hover .overlay-bx .portinner {
  transform: scale(1);
}
.ct-service-carousel.layout2 .item-featured {
  background-color: #fff;
  position: relative;
  overflow: hidden;
  -webkit-border-radius: 2px;
  -khtml-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  border-radius: 2px;
}
.ct-service-carousel.layout2 .item-featured:before, .ct-service-carousel.layout2 .item-featured:after {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  opacity: 0.4;
  z-index: 1;
  -webkit-transition: all 0.8s linear;
  -khtml-transition: all 0.8s linear;
  -moz-transition: all 0.8s linear;
  -ms-transition: all 0.8s linear;
  -o-transition: all 0.8s linear;
  transition: all 0.8s linear;
}
.ct-service-carousel.layout2 .item-featured:before {
  width: 100%;
  height: 100%;
  opacity: 0;
}
.ct-service-carousel.layout2 .item-body {
  text-align: center;
  padding: 35px 0 20px 0;
}
.ct-service-carousel.layout2 .item-body .item-title {
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 34px;
  color: #232323;
}
.ct-service-carousel.layout2 .item-body .item-title a {
  color: inherit;
}
.ct-service-carousel.layout2 .item-body .item-content {
  margin-bottom: 15px;
}
.ct-service-carousel.layout2 .item-body .btn-learmore {
  -webkit-transition: all 0.8s linear;
  -khtml-transition: all 0.8s linear;
  -moz-transition: all 0.8s linear;
  -ms-transition: all 0.8s linear;
  -o-transition: all 0.8s linear;
  transition: all 0.8s linear;
  background-color: #dc0008;
  color: #fff;
  padding: 12px 30px;
  display: inline-block;
  font-size: 13px;
  outline: 0;
  cursor: pointer;
  outline: 0;
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
}
.ct-service-carousel.layout2 .item-body .btn-learmore:hover {
  background: #dc0008;
}
.ct-service-carousel.layout2 .ct-carousel-item {
  padding: 25px;
  background: #fff;
  -webkit-border-radius: 4px;
  -khtml-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: 6px 6px 35px 0 rgba(0, 0, 0, .05);
  -khtml-box-shadow: 6px 6px 35px 0 rgba(0, 0, 0, .05);
  -moz-box-shadow: 6px 6px 35px 0 rgba(0, 0, 0, .05);
  -ms-box-shadow: 6px 6px 35px 0 rgba(0, 0, 0, .05);
  -o-box-shadow: 6px 6px 35px 0 rgba(0, 0, 0, .05);
  box-shadow: 6px 6px 35px 0 rgba(0, 0, 0, .05);
  margin-bottom: 25px;
  -webkit-transition: all 0.8s;
  -khtml-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -ms-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}
.ct-service-carousel.layout2 .ct-carousel-item:after {
  content: "";
  height: 4px;
  width: 0;
  background-color: #dc0008;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  transform-origin: left;
  -moz-transform-origin: left;
  -ms-transform-origin: left;
  -webkit-transform-origin: left;
  -o-transform-origin: left;
  -webkit-transition: all 0.8s;
  -khtml-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -ms-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}
.ct-service-carousel.layout2 .ct-carousel-item:hover {
  -webkit-transform: translateY(-15px);
  -khtml-transform: translateY(-15px);
  -moz-transform: translateY(-15px);
  -ms-transform: translateY(-15px);
  -o-transform: translateY(-15px);
  transform: translateY(-15px);
}
.ct-service-carousel.layout2 .ct-carousel-item:hover:after {
  width: 100%;
  left: 0;
  right: auto;
  transform-origin: right;
  -moz-transform-origin: right;
  -ms-transform-origin: right;
  -webkit-transform-origin: right;
  -o-transform-origin: right;
}
.ct-service-carousel.layout3 .item-featured {
  overflow: hidden;
}
.ct-service-carousel.layout3 .item-featured img {
  -webkit-transform: scale(1);
  -khtml-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.5s;
  -khtml-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.ct-service-carousel.layout3 .item-body {
  padding: 20px 30px;
  display: flex;
  align-items: center;
}
.ct-service-carousel.layout3 .btn-learmore {
  background-color: #dc0008;
  width: 50px;
  height: 50px;
  -webkit-border-radius: 50px;
  -khtml-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  border-radius: 50px;
  max-width: 50px;
  min-width: 50px;
  text-align: center;
  line-height: 50px;
  font-size: 15px;
  color: #fff;
  font-weight: 300;
  margin-left: auto;
  cursor: pointer;
}
.ct-service-carousel.layout3 .item-title {
  font-size: 24px;
  font-weight: 500;
  line-height: 36px;
  margin-bottom: 0;
}
.ct-service-carousel.layout3 .item-title a {
  color: #232323;
}
.ct-service-carousel.layout3 .ct-carousel-item {
  background-color: #fff;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, .15) !important;
  margin-top: 25px;
  margin-bottom: 25px;
  -webkit-transition: all 0.3s linear !important;
  -khtml-transition: all 0.3s linear !important;
  -moz-transition: all 0.3s linear !important;
  -ms-transition: all 0.3s linear !important;
  -o-transition: all 0.3s linear !important;
  transition: all 0.3s linear !important;
}
.ct-service-carousel.layout3 .ct-carousel-item:hover {
  -webkit-transform: translateY(-15px);
  -khtml-transform: translateY(-15px);
  -moz-transform: translateY(-15px);
  -ms-transform: translateY(-15px);
  -o-transform: translateY(-15px);
  transform: translateY(-15px);
}
.ct-service-carousel.layout3 .ct-carousel-item:hover .item-title a {
  color: #dc0008;
}
.ct-service-carousel.layout3 .ct-carousel-item:hover .item-featured img {
  transform: scale(1.05);
}
.ct-service-carousel.layout3 .owl-stage-outer {
  padding-left: 15px;
  padding-right: 15px;
  margin-left: -15px;
  margin-right: -15px;
}
.ct-service-carousel.layout3 .owl-stage-outer .owl-item {
  opacity: 0;
}
.ct-service-carousel.layout3 .owl-stage-outer .owl-item.active {
  opacity: 1;
}
.ct-image-single .ct-image.img-position-custom {
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 576px) {
  .ct-image-single .ct-image.img-position-custom {
    top: -80px;
  }
}
@media screen and (max-width: 991px) {
  .ct-image-single.text-left.text-991px {
    text-align: center !important;
  }
}
@media screen and (max-width: 767px) {
  .ct-image-single.text-left.text-767px {
    text-align: center !important;
  }
}
.ct-image-single.text-right {
  text-align: right !important;
}
@media screen and (max-width: 991px) {
  .ct-image-single.text-right.text-991px {
    text-align: center !important;
  }
  .ct-image-single.text-right.text-991px-left {
    text-align: left !important;
  }
}
@media screen and (max-width: 767px) {
  .ct-image-single.text-right.text-767px {
    text-align: center !important;
  }
  .ct-image-single.text-right.text-767-left {
    text-align: left !important;
  }
}
.new-leter-form-custom .ct-newsletter .ct-newsletter-inner .tnp-subscription .tnp-field .tnp-email {
  color: #f8f8f8;
}
.new-leter-form-custom .ct-newsletter.layout2 .tnp-subscription form .tnp-field.tnp-field-button .tnp-submit {
  background-color: #191f23 !important;
}
.ct-tabs.layout1 .nav-tabs {
  border-bottom: none;
}
.ct-tabs.layout1 .nav-tabs .nav-item {
  color: inherit;
  margin: 20px 0;
}
@media screen and (max-width: 767px) {
  .ct-tabs.layout1 .nav-tabs .nav-item {
    width: 48%;
    margin-left: 1%;
    margin-right: 1%;
    margin: 12px 0;
  }
}
@media screen and (max-width: 575px) {
  .ct-tabs.layout1 .nav-tabs .nav-item {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}
.ct-tabs.layout1 .nav-tabs .nav-item a {
  color: inherit;
  padding: 15px;
  background: rgba(0, 0, 0, .02);
  border: 1px solid rgba(0, 0, 0, .1);
  border-radius: 8px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  -webkit-transition: all 0.8s;
  -khtml-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -ms-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}
.ct-tabs.layout1 .nav-tabs .nav-item a i {
  font-size: 50px;
  color: inherit;
  margin-bottom: 10px;
  line-height: 50px;
  display: block;
}
.ct-tabs.layout1 .nav-tabs .nav-item a:after {
  content: "";
  background: #dc0008;
  width: 20px;
  opacity: 0;
  height: 20px;
  position: absolute;
  bottom: -18px;
  transform: rotate(45deg) translate(-50%);
  left: 50%;
  -webkit-transition: all 0.8s;
  -khtml-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -ms-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}
.ct-tabs.layout1 .nav-tabs .nav-item a.active {
  background-color: #dc0008;
  -webkit-box-shadow: 0 0 40px -20px #dc0008;
  -khtml-box-shadow: 0 0 40px -20px #dc0008;
  -moz-box-shadow: 0 0 40px -20px #dc0008;
  -ms-box-shadow: 0 0 40px -20px #dc0008;
  -o-box-shadow: 0 0 40px -20px #dc0008;
  box-shadow: 0 0 40px -20px #dc0008;
  color: #fff;
}
.ct-tabs.layout1 .nav-tabs .nav-item a.active i {
  color: #fff;
}
.ct-tabs.layout1 .nav-tabs .nav-item a.active:after {
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .ct-tabs.layout1 .nav-tabs {
    display: flex;
    justify-content: space-between;
  }
  .ct-tabs.layout1 .nav-tabs .nav-item {
    width: 23%;
  }
  .ct-tabs.layout1 .nav-tabs .nav-item a {
    padding: 20px 20px 15px 20px;
  }
}
@media screen and (max-width: 991px) {
  .ct-tabs.layout1 .nav-tabs .nav-item {
    margin-right: 5px;
  }
}
@media screen and (max-width: 575px) {
  .ct-tabs.layout1 .nav-tabs .nav-item {
    margin-right: 0;
    width: 100%;
  }
}
.ct-progress-item .progress-bar {
  width: 0;
  -webkit-transition: width 2s ease 0ms;
  -khtml-transition: width 2s ease 0ms;
  -moz-transition: width 2s ease 0ms;
  -ms-transition: width 2s ease 0ms;
  -o-transition: width 2s ease 0ms;
  transition: width 2s ease 0ms;
}
.ct-progress-layout1 .ct-progress-title {
  color: #dc0008;
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 10px;
  font-weight: 600;
  margin-bottom: 12px;
}
.ct-progress-layout1 .ct-progress.progress {
  -webkit-box-shadow: none;
  -khtml-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
  background-color: rgba(128, 130, 88, 0.5);
  height: 5px;
  -webkit-border-radius: 5px;
  -khtml-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  overflow: visible;
  margin-bottom: 35px;
}
.ct-progress-layout1 .ct-progress.progress .progress-bar {
  background-color: #dc0008;
  position: relative;
  -webkit-box-shadow: none;
  -khtml-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
  overflow: visible;
}
.ct-progress-layout1 .ct-progress.progress .progress-bar span {
  display: inline-block;
  font-size: 16px;
  line-height: 22px;
  padding: 0 0px;
  position: absolute;
  top: -33px;
  font-weight: 600;
  right: 0px;
  color: #dc0008;
}
.ct-google-map .gm-control-active.gm-fullscreen-control {
  line-height: 40px;
}
.wpb_text_column p {
  margin-bottom: 21px;
}
.wpb_text_column.text-heading {
  color: #262626;
}
.wpb_text_column.text-heading-italic {
  font-style: italic;
  font-weight: 600;
  line-height: 2;
}
.ct-video-wrapper {
  text-align: center;
}
.ct-video-wrapper.intro-added {
  position: relative;
}
.ct-video-wrapper.style1 .ct-video-button {
  display: inline-block;
  position: relative;
  font-size: 16px;
  text-align: center;
  color: #fff;
  background-color: #dc0008;
  width: 70px;
  height: 70px;
  line-height: 70px;
  -webkit-border-radius: 70px;
  -khtml-border-radius: 70px;
  -moz-border-radius: 70px;
  -ms-border-radius: 70px;
  -o-border-radius: 70px;
  border-radius: 70px;
  -webkit-box-shadow: 0 16px 32px rgba(220, 0, 8, 0.3);
  -khtml-box-shadow: 0 16px 32px rgba(220, 0, 8, 0.3);
  -moz-box-shadow: 0 16px 32px rgba(220, 0, 8, 0.3);
  -ms-box-shadow: 0 16px 32px rgba(220, 0, 8, 0.3);
  -o-box-shadow: 0 16px 32px rgba(220, 0, 8, 0.3);
  box-shadow: 0 16px 32px rgba(220, 0, 8, 0.3);
  z-index: 1;
}
.ct-video-wrapper.style1 .ct-video-button i {
  vertical-align: middle;
  color: #fff;
}
.ct-video-wrapper.style1 .ct-video-button:hover {
  background-color: #fff;
  -webkit-box-shadow: 0 16px 32px rgba(255, 255, 255, 0.3);
  -khtml-box-shadow: 0 16px 32px rgba(255, 255, 255, 0.3);
  -moz-box-shadow: 0 16px 32px rgba(255, 255, 255, 0.3);
  -ms-box-shadow: 0 16px 32px rgba(255, 255, 255, 0.3);
  -o-box-shadow: 0 16px 32px rgba(255, 255, 255, 0.3);
  box-shadow: 0 16px 32px rgba(255, 255, 255, 0.3);
}
.ct-video-wrapper.style1 .ct-video-button:hover i {
  color: #dc0008;
}
.ct-video-wrapper.style2 .ct-video-button {
  display: inline-block;
  position: relative;
  font-size: 16px;
  color: #070a22;
  background-color: #fff;
  line-height: 100px;
  width: 100px;
  height: 100px;
  -webkit-border-radius: 100px;
  -khtml-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  border-radius: 100px;
  -webkit-box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
  -khtml-box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
  -ms-box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
  -o-box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
}
.ct-video-wrapper.style2 .ct-video-button i {
  vertical-align: middle;
}
.ct-video-wrapper.style2 .ct-video-button:hover {
  background-color: #232323;
  color: #fff;
}
@media screen and (max-width: 991px) {
  .ct-video-wrapper.style2 .ct-video-button {
    height: 80px;
    width: 80px;
    line-height: 80px;
  }
}
.ct-video-wrapper .ct-video-inner img {
  -webkit-border-radius: 5px;
  -khtml-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  width: 100%;
}
.ct-video-wrapper .ct-video-inner img + .ct-video-button {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -khtml-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.ct-video-wrapper.play-fixed {
  position: relative;
}
.ct-video-wrapper.play-fixed .ct-video-button {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-box-shadow: 0 0 0 10px rgba(220, 0, 8, .2);
  -khtml-box-shadow: 0 0 0 10px rgba(220, 0, 8, .2);
  -moz-box-shadow: 0 0 0 10px rgba(220, 0, 8, .2);
  -ms-box-shadow: 0 0 0 10px rgba(220, 0, 8, .2);
  -o-box-shadow: 0 0 0 10px rgba(220, 0, 8, .2);
  box-shadow: 0 0 0 10px rgba(220, 0, 8, .2);
  -webkit-transform: translate(-50%, -50%);
  -khtml-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.ct-video-wrapper.layout2 {
  text-align: left;
}
.ct-video-wrapper.layout2 .ct-video-inner {
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
}
.ct-video-wrapper.layout2 .ct-video-button {
  margin-right: 15px;
}
.vc_tta-tabs .vc_tta-tabs-list {
  margin-left: 23px !important;
  margin-right: 23px !important;
  margin-bottom: 33px !important;
  position: relative;
}
.vc_tta-tabs .vc_tta-tabs-list:after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #e6e9f1;
}
.vc_tta-tabs .vc_tta-tabs-list li {
  padding-left: 40px !important;
  padding-right: 40px !important;
}
@media screen and (max-width: 991px) {
  .vc_tta-tabs .vc_tta-tabs-list li {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}
.vc_tta-tabs .vc_tta-tabs-list li:first-child {
  margin-left: 0px;
}
.vc_tta-tabs .vc_tta-tabs-list li:last-child {
  margin-right: 0;
}
.vc_tta-tabs .vc_tta-tabs-list li a {
  display: block;
  position: relative;
  font-size: 22px;
  color: #232323 !important;
  padding-bottom: 20px !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.vc_tta-tabs .vc_tta-tabs-list li a:before {
  position: absolute;
  content: "";
  display: block;
  width: 100% !important;
  height: 2px;
  bottom: 0px !important;
  z-index: 2;
  right: 0;
  left: 0;
  background-color: transparent;
}
.vc_tta-tabs .vc_tta-tabs-list li.vc_active a {
  color: #dc0008 !important;
}
.vc_tta-tabs .vc_tta-tabs-list li.vc_active a:before {
  background-color: #dc0008;
  opacity: 1;
}
.ct-textbox .ct-textbox-content {
  font-size: 15px;
  line-height: 24px;
  font-weight: 400;
  margin-bottom: 20px;
}
.ct-textbox .ct-textbox-content a:hover {
  color: #dc0008;
}
.ct-textbox.layout1 {
  border: 1px solid rgba(255, 255, 255, .15);
  background-color: rgba(255, 255, 255, .1);
  padding: 30px;
  -webkit-border-radius: 4px;
  -khtml-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
}
.ct-textbox.layout1 .ct-title {
  font-weight: 300;
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 10px;
}
.ct-textbox.layout1 .ct-content {
  font-size: 13px;
}
.ct-textbox.layout2 .ct-textbox-content a:hover {
  color: #dc0008;
}
.ct-textbox.layout3 .ct-title {
  text-decoration: underline;
  font-weight: 500;
  margin-bottom: 10px;
}
.ct-textbox.layout3 .ct-content {
  font-size: 18px;
  line-height: 32px;
  font-weight: 400;
  margin-bottom: 20px;
}
.ct-textbox.layout3.show-border-bottom {
  margin-bottom: 30px;
}
.ct-textbox.layout3.show-border-bottom .ct-content {
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(128, 130, 88, 0.5);
}
@media screen and (max-width: 991px) {
  .ct-textbox.text-left.text-991px {
    text-align: center !important;
  }
}
@media screen and (max-width: 767px) {
  .ct-textbox.text-left.text-767px {
    text-align: center !important;
  }
}
@media screen and (max-width: 991px) {
  .ct-textbox.text-right.text-991px {
    text-align: center !important;
  }
  .ct-textbox.text-right.text-991px-left {
    text-align: left !important;
  }
}
@media screen and (max-width: 767px) {
  .ct-textbox.text-right.text-767px {
    text-align: center !important;
  }
  .ct-textbox.text-right.text-767-left {
    text-align: left !important;
  }
}
@media screen and (min-width: 992px) {
  .ct-button-video {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
}
.ct-button-video > a {
  margin-top: 20px;
}
@media screen and (max-width: 991px) {
  .ct-button-video {
    text-align: center;
  }
  .ct-button-video > a {
    margin-top: 0;
  }
}
.ct-button-video .btn {
  margin-right: 20px;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 45px;
  padding-right: 45px;
  border: none;
  -webkit-border-radius: 70px;
  -khtml-border-radius: 70px;
  -moz-border-radius: 70px;
  -ms-border-radius: 70px;
  -o-border-radius: 70px;
  border-radius: 70px;
  background-color: #dc0008;
  color: #fff;
}
.ct-button-video .btn:hover {
  background-color: #232323;
}
.ct-button-video .ct-video-button {
  display: inline-block;
  position: relative;
  font-size: 16px;
  color: #fff;
  background-color: #fff;
  line-height: 70px;
  width: 70px;
  text-align: center;
  height: 70px;
  -webkit-border-radius: 70px;
  -khtml-border-radius: 70px;
  -moz-border-radius: 70px;
  -ms-border-radius: 70px;
  -o-border-radius: 70px;
  border-radius: 70px;
  -webkit-box-shadow: 0 6px 32px rgba(220, 0, 8, 0.3);
  -khtml-box-shadow: 0 6px 32px rgba(220, 0, 8, 0.3);
  -moz-box-shadow: 0 6px 32px rgba(220, 0, 8, 0.3);
  -ms-box-shadow: 0 6px 32px rgba(220, 0, 8, 0.3);
  -o-box-shadow: 0 6px 32px rgba(220, 0, 8, 0.3);
  box-shadow: 0 6px 32px rgba(220, 0, 8, 0.3);
  z-index: 1;
}
.ct-button-video .ct-video-button i {
  vertical-align: middle;
  color: #dc0008;
}
.ct-button-video .ct-video-button:hover {
  background-color: #dc0008;
  -webkit-box-shadow: 0 16px 32px rgba(255, 255, 255, 0.3);
  -khtml-box-shadow: 0 16px 32px rgba(255, 255, 255, 0.3);
  -moz-box-shadow: 0 16px 32px rgba(255, 255, 255, 0.3);
  -ms-box-shadow: 0 16px 32px rgba(255, 255, 255, 0.3);
  -o-box-shadow: 0 16px 32px rgba(255, 255, 255, 0.3);
  box-shadow: 0 16px 32px rgba(255, 255, 255, 0.3);
}
.ct-button-video .ct-video-button:hover i {
  color: #fff;
}
.ct-button-video.primary-color1 .btn {
  background-color: #dc0008;
}
.ct-button-video.primary-color1 .btn:hover {
  background-color: #232323;
}
.ct-button-video.primary-color1 .ct-video-button {
  -webkit-box-shadow: 0 6px 32px rgba(220, 0, 8, 0.3);
  -khtml-box-shadow: 0 6px 32px rgba(220, 0, 8, 0.3);
  -moz-box-shadow: 0 6px 32px rgba(220, 0, 8, 0.3);
  -ms-box-shadow: 0 6px 32px rgba(220, 0, 8, 0.3);
  -o-box-shadow: 0 6px 32px rgba(220, 0, 8, 0.3);
  box-shadow: 0 6px 32px rgba(220, 0, 8, 0.3);
}
.ct-button-video.primary-color1 .ct-video-button i {
  color: #dc0008;
}
.ct-button-video.primary-color1 .ct-video-button:hover {
  background-color: #dc0008;
  -webkit-box-shadow: 0 16px 32px rgba(255, 255, 255, 0.3);
  -khtml-box-shadow: 0 16px 32px rgba(255, 255, 255, 0.3);
  -moz-box-shadow: 0 16px 32px rgba(255, 255, 255, 0.3);
  -ms-box-shadow: 0 16px 32px rgba(255, 255, 255, 0.3);
  -o-box-shadow: 0 16px 32px rgba(255, 255, 255, 0.3);
  box-shadow: 0 16px 32px rgba(255, 255, 255, 0.3);
}
.ct-button-video.primary-color1 .ct-video-button:hover i {
  color: #fff;
}
.ct-button-video.primary-color2 .btn {
  background-color: #dc0008;
}
.ct-button-video.primary-color2 .btn:hover {
  background-color: #232323;
}
.ct-button-video.primary-color2 .ct-video-button {
  -webkit-box-shadow: 0 6px 32px rgba(220, 0, 8, 0.3);
  -khtml-box-shadow: 0 6px 32px rgba(220, 0, 8, 0.3);
  -moz-box-shadow: 0 6px 32px rgba(220, 0, 8, 0.3);
  -ms-box-shadow: 0 6px 32px rgba(220, 0, 8, 0.3);
  -o-box-shadow: 0 6px 32px rgba(220, 0, 8, 0.3);
  box-shadow: 0 6px 32px rgba(220, 0, 8, 0.3);
}
.ct-button-video.primary-color2 .ct-video-button i {
  color: #dc0008;
}
.ct-button-video.primary-color2 .ct-video-button:hover {
  background-color: #232323;
  -webkit-box-shadow: 0 16px 32px rgba(255, 255, 255, 0.3);
  -khtml-box-shadow: 0 16px 32px rgba(255, 255, 255, 0.3);
  -moz-box-shadow: 0 16px 32px rgba(255, 255, 255, 0.3);
  -ms-box-shadow: 0 16px 32px rgba(255, 255, 255, 0.3);
  -o-box-shadow: 0 16px 32px rgba(255, 255, 255, 0.3);
  box-shadow: 0 16px 32px rgba(255, 255, 255, 0.3);
}
.ct-button-video.primary-color2 .ct-video-button:hover i {
  color: #fff;
}
.ct-button-video.secondary-color .btn {
  background-color: #232323;
}
.ct-button-video.secondary-color .btn:hover {
  background-color: #dc0008;
}
.ct-button-video.secondary-color .ct-video-button {
  -webkit-box-shadow: 0 6px 32px rgba(35, 35, 35, 0.3);
  -khtml-box-shadow: 0 6px 32px rgba(35, 35, 35, 0.3);
  -moz-box-shadow: 0 6px 32px rgba(35, 35, 35, 0.3);
  -ms-box-shadow: 0 6px 32px rgba(35, 35, 35, 0.3);
  -o-box-shadow: 0 6px 32px rgba(35, 35, 35, 0.3);
  box-shadow: 0 6px 32px rgba(35, 35, 35, 0.3);
}
.ct-button-video.secondary-color .ct-video-button i {
  color: #fff;
}
.ct-button-video.secondary-color .ct-video-button:hover {
  background-color: #232323;
  -webkit-box-shadow: 0 16px 32px rgba(255, 255, 255, 0.3);
  -khtml-box-shadow: 0 16px 32px rgba(255, 255, 255, 0.3);
  -moz-box-shadow: 0 16px 32px rgba(255, 255, 255, 0.3);
  -ms-box-shadow: 0 16px 32px rgba(255, 255, 255, 0.3);
  -o-box-shadow: 0 16px 32px rgba(255, 255, 255, 0.3);
  box-shadow: 0 16px 32px rgba(255, 255, 255, 0.3);
}
.ct-button-video.secondary-color .ct-video-button:hover i {
  color: #fff;
}
.ct-button-video.white-color .btn {
  background-color: #fff;
  color: #232323;
}
.ct-button-video.white-color .btn:hover {
  background-color: #dc0008;
  color: #fff;
}
.ct-button-video.white-color .ct-video-button {
  -webkit-box-shadow: 0 6px 32px rgba(255, 255, 255, 0.3);
  -khtml-box-shadow: 0 6px 32px rgba(255, 255, 255, 0.3);
  -moz-box-shadow: 0 6px 32px rgba(255, 255, 255, 0.3);
  -ms-box-shadow: 0 6px 32px rgba(255, 255, 255, 0.3);
  -o-box-shadow: 0 6px 32px rgba(255, 255, 255, 0.3);
  box-shadow: 0 6px 32px rgba(255, 255, 255, 0.3);
}
.ct-button-video.white-color .ct-video-button i {
  color: #232323;
}
.ct-button-video.white-color .ct-video-button:hover {
  background-color: #dc0008;
  -webkit-box-shadow: 0 16px 32px rgba(255, 255, 255, 0.3);
  -khtml-box-shadow: 0 16px 32px rgba(255, 255, 255, 0.3);
  -moz-box-shadow: 0 16px 32px rgba(255, 255, 255, 0.3);
  -ms-box-shadow: 0 16px 32px rgba(255, 255, 255, 0.3);
  -o-box-shadow: 0 16px 32px rgba(255, 255, 255, 0.3);
  box-shadow: 0 16px 32px rgba(255, 255, 255, 0.3);
}
.ct-button-video.white-color .ct-video-button:hover i {
  color: #fff;
}
.ct-button-wrapper.layout2 a {
  position: relative;
  padding-right: 95px;
  height: 60px;
  line-height: 60px;
  background-color: rgba(220, 0, 8, 0.9);
  -webkit-transition: all 0.3s linear !important;
  -khtml-transition: all 0.3s linear !important;
  -moz-transition: all 0.3s linear !important;
  -ms-transition: all 0.3s linear !important;
  -o-transition: all 0.3s linear !important;
  transition: all 0.3s linear !important;
}
.ct-button-wrapper.layout2 a i {
  -webkit-transition: all 0.3s linear !important;
  -khtml-transition: all 0.3s linear !important;
  -moz-transition: all 0.3s linear !important;
  -ms-transition: all 0.3s linear !important;
  -o-transition: all 0.3s linear !important;
  transition: all 0.3s linear !important;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 55px;
  height: 60px;
  line-height: inherit;
  text-align: center;
  color: #fff;
  background-color: #dc0008;
}
.ct-heading.layout1 {
  position: relative;
  z-index: 1;
}
.ct-heading.layout1 .ct-heading-sub {
  letter-spacing: 0.2em;
  font-size: 16px;
  color: #dc0008;
}
.ct-heading.layout1 h3.ct-heading-tag {
  font-size: 35px;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .ct-heading.layout1 h3.ct-heading-tag {
    font-size: 30px;
  }
  .ct-heading.layout1 h3.ct-heading-tag br {
    display: none;
  }
}
.ct-heading.layout1 .ct-heading-tag a {
  color: inherit;
}
.ct-heading.layout1 .ct-heading-tag a:hover {
  color: inherit;
}
.ct-heading.layout1 .ct-heading-tag cite {
  color: #dc0008;
  font-style: inherit;
}
.ct-heading.layout1 .color-primary {
  color: #dc0008;
}
.ct-heading.layout1 .ct-heading-desc cite {
  color: #dc0008;
  font-weight: 600;
  font-style: italic;
  font-size: 17px;
}
.ct-heading.layout2 {
  margin-bottom: 20px;
}
.ct-heading.layout2 .ct-line-color {
  width: 85px;
  height: 3px;
  display: block;
  content: "";
  margin-top: 30px;
  background-color: #dc0008;
}
.ct-heading.layout2 h3.ct-heading-tag {
  font-size: 55px;
  line-height: 60px;
}
@media screen and (max-width: 991px) {
  .ct-heading.layout2 h3.ct-heading-tag {
    font-size: 36px;
    line-height: 1;
  }
}
@media screen and (max-width: 767px) {
  .ct-heading.layout2 h3.ct-heading-tag br {
    display: none;
  }
}
.ct-heading.layout2 .ct-heading-tag {
  margin-bottom: 40px;
}
.ct-heading.layout2 .ct-heading-tag a {
  color: inherit;
}
.ct-heading.layout2 .ct-heading-tag a:hover {
  color: inherit;
}
.ct-heading.layout2 .ct-heading-tag cite {
  color: #dc0008;
}
.ct-heading.layout3 {
  margin-top: 20px;
  margin-bottom: 20px;
}
.ct-heading.layout3 .ct-heading-tag {
  position: relative;
}
.ct-heading.layout3 .ct-heading-tag .ct-fancybox-icon {
  width: 100px;
  height: 100px;
  position: absolute;
  left: -30px;
  top: -20px;
  text-align: center;
}
.ct-heading.layout3 .ct-heading-tag .ct-fancybox-icon i {
  font-size: 85px;
  color: rgba(128, 130, 88, 0.1);
}
.ct-heading.layout3 .ct-line-color {
  width: 85px;
  height: 6px;
  display: block;
  content: "";
  margin-top: 40px;
  background-color: #dc0008;
  position: relative;
  z-index: 1;
}
.ct-heading.layout3 .ct-line-color:before {
  display: block;
  content: "";
  width: 85px;
  height: 3px;
  position: absolute;
  top: 2px;
  left: 100%;
  z-index: 0;
  background-color: rgba(128, 130, 88, 0.3);
}
.ct-heading.layout3 h3.ct-heading-tag {
  font-size: 55px;
  line-height: 60px;
  font-weight: 500;
}
@media screen and (max-width: 991px) {
  .ct-heading.layout3 h3.ct-heading-tag {
    font-size: 36px;
    line-height: 1;
  }
}
@media screen and (max-width: 767px) {
  .ct-heading.layout3 h3.ct-heading-tag br {
    display: none;
  }
}
.ct-heading.layout3 .ct-heading-tag {
  margin-bottom: 40px;
}
.ct-heading.layout3 .ct-heading-tag a {
  color: inherit;
}
.ct-heading.layout3 .ct-heading-tag a:hover {
  color: inherit;
}
.ct-heading.layout3 .ct-heading-tag cite {
  color: #dc0008;
}
.ct-heading.layout3 .ct-heading-desc {
  margin-bottom: 50px;
}
.ct-heading.layout3 .btn.btn-readmore {
  background-color: #010e2a;
  border: none;
  color: #fff;
  line-height: 60px;
  -webkit-border-radius: 50px;
  -khtml-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  border-radius: 50px;
}
.ct-heading.layout3 .btn.btn-readmore:hover {
  background-color: #dc0008;
}
.ct-cta.layout1 .ct-cta-btn .bt-cta {
  display: inline-block;
  white-space: nowrap;
  font-weight: 500;
}
.ct-cta.layout1 .ct-cta-btn .bt-cta.btn-default {
  -webkit-border-radius: 2px;
  -khtml-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  border-radius: 2px;
  background-color: #dc0008;
  color: #fff;
}
.ct-cta.layout1 .ct-cta-btn .bt-cta.btn-default.btn-round {
  -webkit-border-radius: 100px;
  -khtml-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  border-radius: 100px;
}
.ct-cta.layout1 .ct-cta-btn .bt-cta.btn-default-square-color {
  padding: 11px 30px;
  background-color: transparent;
  -webkit-border-radius: 2px;
  -khtml-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  border-radius: 2px;
  border: 2px solid #dc0008;
  color: #dc0008;
}
.ct-cta.layout1 .ct-cta-btn .bt-cta.btn-default-square-color.btn-round {
  -webkit-border-radius: 100px;
  -khtml-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  border-radius: 100px;
}
.ct-cta.layout1 .ct-cta-btn .bt-cta.btn-white-square {
  -webkit-border-radius: 2px;
  -khtml-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  border-radius: 2px;
  background-color: #fff;
  color: #232323;
}
.ct-cta.layout1 .ct-cta-btn .bt-cta.btn-white-square.btn-round {
  -webkit-border-radius: 100px;
  -khtml-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  border-radius: 100px;
}
.ct-cta.layout1 .ct-cta-btn .bt-cta.btn-white-square-color {
  padding: 11px 30px;
  background-color: transparent;
  -webkit-border-radius: 2px;
  -khtml-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  border-radius: 2px;
  border: 2px solid #fff;
  color: #fff;
}
.ct-cta.layout1 .ct-cta-btn .bt-cta.btn-white-square-color:hover {
  background-color: #232323;
}
.ct-cta.layout1 .ct-cta-btn .bt-cta.btn-white-square-color.btn-round {
  -webkit-border-radius: 100px;
  -khtml-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  border-radius: 100px;
}
.ct-cta.layout1 .ct-cta-btn .bt-cta.btn-secondary-square {
  -webkit-border-radius: 2px;
  -khtml-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  border-radius: 2px;
  background-color: #232323;
  color: #fff;
}
.ct-cta.layout1 .ct-cta-btn .bt-cta.btn-secondary-square.btn-round {
  -webkit-border-radius: 100px;
  -khtml-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  border-radius: 100px;
}
.ct-cta.layout1 .ct-cta-btn .bt-cta.btn-secondary-square-color {
  padding: 11px 30px;
  background-color: transparent;
  -webkit-border-radius: 2px;
  -khtml-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  border-radius: 2px;
  border: 2px solid #232323;
  color: #232323;
}
.ct-cta.layout1 .ct-cta-btn .bt-cta.btn-secondary-square-color.btn-round {
  -webkit-border-radius: 100px;
  -khtml-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  border-radius: 100px;
}
.ct-cta.layout1 .ct-cta-btn .bt-cta.btn-black-square {
  -webkit-border-radius: 2px;
  -khtml-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  border-radius: 2px;
  background-color: #000;
  color: #fff;
}
.ct-cta.layout1 .ct-cta-btn .bt-cta.btn-black-square.btn-round {
  -webkit-border-radius: 100px;
  -khtml-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  border-radius: 100px;
}
.ct-cta.layout1 .ct-cta-btn .bt-cta.btn-black-square-color {
  padding: 11px 30px;
  background-color: transparent;
  -webkit-border-radius: 2px;
  -khtml-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  border-radius: 2px;
  border: 2px solid #000;
  color: #000;
}
.ct-cta.layout1 .ct-cta-btn .bt-cta.btn-black-square-color.btn-round {
  -webkit-border-radius: 100px;
  -khtml-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  border-radius: 100px;
}
@media screen and (min-width: 768px) {
  .ct-cta.layout1 {
    display: flex;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
  }
  .ct-cta.layout1 .ct-cta-content {
    flex-grow: 1;
    padding-right: 105px;
    position: relative;
    margin-bottom: 0;
  }
  .ct-cta.layout1 .ct-cta-btn {
    flex-grow: 0;
  }
}
@media screen and (max-width: 767px) {
  .ct-cta.layout1 .ct-cta-content {
    margin-bottom: 35px;
  }
}
.ct-cta.layout1 .ct-cta-tag {
  letter-spacing: 0.03em;
  font-size: 30px;
  margin-bottom: 0;
}
.ct-cta.layout1 .ct-cta-tag + .ct-heading-sub {
  margin-top: 13px;
  line-height: 28px;
  margin-bottom: 0;
  font-weight: 400;
  letter-spacing: 0.03em;
}
.ct-cta.layout1 .ct-cta-btn a {
  padding: 12px 30px;
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  background-color: #232323;
  color: #fff;
  font-size: 13px;
}
@media screen and (max-width: 767px) {
  .ct-cta.layout2 {
    text-align: center;
  }
}
.ct-cta.layout2 .ct-cta-content {
  letter-spacing: 0.03em;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .ct-cta.layout2 .ct-meta .ct-heading-sub {
    border-right: 3px solid #dc0008;
    margin-right: 40px;
    padding-right: 40px;
    display: inline-block;
  }
}
.ct-cta.layout2 .ct-meta .ct-heading-sub {
  font-size: 35px;
  line-height: 45px;
  color: #dc0008;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .ct-cta.layout2 .ct-meta .ct-heading-sub {
    margin-bottom: 25px;
  }
}
.ct-cta.layout2 .ct-meta .btn-default {
  display: inline-block;
  position: relative;
  top: -8px;
}
.ct-cta.layout2 .ct-meta .btn-default.bt-cta {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding-left: 30px;
  padding-right: 30px;
  -webkit-border-radius: 2px;
  -khtml-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  border-radius: 2px;
}
.ct-cta.layout3 .ct-icon i {
  color: #fff;
  font-size: 100px;
  margin-bottom: 50px;
  position: relative;
  -webkit-transition: all 0.3s linear !important;
  -khtml-transition: all 0.3s linear !important;
  -moz-transition: all 0.3s linear !important;
  -ms-transition: all 0.3s linear !important;
  -o-transition: all 0.3s linear !important;
  transition: all 0.3s linear !important;
}
.ct-cta.layout3 .ct-icon i:after {
  -webkit-transition: all 0.3s linear !important;
  -khtml-transition: all 0.3s linear !important;
  -moz-transition: all 0.3s linear !important;
  -ms-transition: all 0.3s linear !important;
  -o-transition: all 0.3s linear !important;
  transition: all 0.3s linear !important;
  content: "\f10b";
  font-size: 45%;
  color: #d2151e;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -khtml-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.ct-cta.layout3 .ct-icon:hover i {
  -webkit-animation: icon-bounce 0.9s linear 1;
  -khtml-animation: icon-bounce 0.9s linear 1;
  -moz-animation: icon-bounce 0.9s linear 1;
  -ms-animation: icon-bounce 0.9s linear 1;
  -o-animation: icon-bounce 0.9s linear 1;
  animation: icon-bounce 0.9s linear 1;
}
.ct-cta.layout3 .bt-cta {
  color: #fff;
  font-size: 36px;
  line-height: 46px;
  font-family: poppins;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 15px;
}
.ct-cta.layout3 .ct-cta-tag {
  color: #fff;
  font-size: 26px;
  font-weight: 600;
  font-family: poppins;
  line-height: 36px;
  margin-bottom: 15px;
}
.ct-cta.layout3 .ct-heading-sub {
  color: #fff;
}
.ct-cta.layout3 .ct-cta-content {
  text-align: center;
}
.ct-client-carousel {
  position: relative;
}
.ct-client-carousel .owl-stage-outer {
  margin-left: -15px;
  margin-right: -15px;
  padding-left: 15px;
  padding-right: 15px;
}
.ct-client-carousel .owl-item {
  padding-top: 15px;
  padding-bottom: 15px;
}
.ct-client-carousel .ct-client-item {
  text-align: center;
  vertical-align: middle;
  padding: 10px;
  background-color: #fff;
  border: 1px solid rgba(128, 130, 88, 0.3);
  -webkit-transition: all 0.3s linear !important;
  -khtml-transition: all 0.3s linear !important;
  -moz-transition: all 0.3s linear !important;
  -ms-transition: all 0.3s linear !important;
  -o-transition: all 0.3s linear !important;
  transition: all 0.3s linear !important;
}
.ct-client-carousel .ct-client-item:hover {
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, .2);
}
.ct-client-carousel .ct-client-item a {
  display: inline-block;
}
.ct-client-carousel .ct-client-item img {
  height: 100px;
  max-height: 100%;
  width: auto;
  display: inline-block;
}
.ct-client-carousel .owl-stage {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.ct-client-carousel .owl-nav {
  margin-top: 0;
}
.ct-client-carousel .owl-nav .owl-prev, .ct-client-carousel .owl-nav .owl-next {
  position: absolute;
  top: 54px;
  line-height: 1;
  -webkit-transition: all 0.3s linear !important;
  -khtml-transition: all 0.3s linear !important;
  -moz-transition: all 0.3s linear !important;
  -ms-transition: all 0.3s linear !important;
  -o-transition: all 0.3s linear !important;
  transition: all 0.3s linear !important;
}
.ct-client-carousel .owl-nav .owl-prev i, .ct-client-carousel .owl-nav .owl-next i {
  font-size: 40px;
  font-weight: 300;
  color: #808258;
}
.ct-client-carousel .owl-nav .owl-prev:hover i, .ct-client-carousel .owl-nav .owl-next:hover i {
  color: #232323;
}
@media (max-width: 1399px) {
  .ct-client-carousel .owl-nav .owl-prev {
    left: 10px;
    opacity: 0;
  }
}
@media screen and (min-width: 1400px) {
  .ct-client-carousel .owl-nav .owl-prev {
    left: -80px;
  }
}
@media (max-width: 1399px) {
  .ct-client-carousel .owl-nav .owl-next {
    right: 10px;
    opacity: 0;
  }
}
@media screen and (min-width: 1400px) {
  .ct-client-carousel .owl-nav .owl-next {
    right: -80px;
  }
}
@media (max-width: 1399px) {
  .ct-client-carousel:hover .owl-nav .owl-prev {
    left: -20px;
    opacity: 1;
  }
  .ct-client-carousel:hover .owl-nav .owl-prev i {
    color: #dc0008;
  }
  .ct-client-carousel:hover .owl-nav .owl-next {
    right: -20px;
    opacity: 1;
  }
  .ct-client-carousel:hover .owl-nav .owl-next i {
    color: #dc0008;
  }
}
.ct-counter-single .ct-counter-digit {
  display: block;
  font-size: 60px;
  line-height: 60px;
  font-weight: 600;
  -webkit-transition: all 0.8s;
  -khtml-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -ms-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
  letter-spacing: 3px;
  margin-bottom: 15px;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 1199px) {
  .ct-counter-single .ct-counter-digit {
    font-size: 35px;
  }
}
.ct-counter-single .ct-counter-title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0;
  -webkit-transition: all 0.8s;
  -khtml-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -ms-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}
.ct-counter-single .ct-counter-inner {
  text-align: center;
  padding: 35px 20px 40px;
  border: 1px solid rgba(255, 255, 255, .2);
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.8s;
  -khtml-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -ms-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
  z-index: 1;
}
.ct-counter-single .ct-counter-inner:hover .ct-counter-icon i {
  color: #fff;
}
.ct-counter-single .ct-counter-inner:hover .ct-counter-digit {
  color: #fff;
}
.ct-counter-single .ct-counter-inner:hover .ct-counter-title {
  color: #fff;
}
.ct-counter-single .ct-counter-inner:hover .ct-separator {
  background-color: #fff;
}
.ct-counter-single.layout1 .ct-counter-icon, .ct-counter-single.layout3 .ct-counter-icon {
  width: 100px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1;
  display: inline-block;
  position: relative;
  z-index: 1;
  padding-top: 18px;
  margin-bottom: 30px;
}
.ct-counter-single.layout1 .ct-counter-icon i, .ct-counter-single.layout3 .ct-counter-icon i {
  -webkit-transition: all 0.8s;
  -khtml-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -ms-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
  color: #dc0008;
}
.ct-counter-single.layout1 .ct-counter-inner, .ct-counter-single.layout3 .ct-counter-inner {
  text-align: center;
  -webkit-border-radius: 10px;
  -khtml-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .2);
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.8s;
  -khtml-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -ms-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
  z-index: 1;
}
.ct-counter-single.layout1 .ct-counter-inner:after, .ct-counter-single.layout3 .ct-counter-inner:after {
  content: "";
  height: 0;
  width: 100%;
  background-color: #dc0008;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  transform-origin: top;
  -moz-transform-origin: top;
  -ms-transform-origin: top;
  -webkit-transform-origin: top;
  -o-transform-origin: top;
  -webkit-transition: all 0.8s;
  -khtml-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -ms-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}
.ct-counter-single.layout1 .ct-counter-inner:hover, .ct-counter-single.layout3 .ct-counter-inner:hover {
  transform: translateY(-15px);
  -moz-transform: translateY(-15px);
  -webkit-transform: translateY(-15px);
  -ms-transform: translateY(-15px);
  -o-transform: translateY(-15px);
  border-color: #dc0008;
}
.ct-counter-single.layout1 .ct-counter-inner:hover:after, .ct-counter-single.layout3 .ct-counter-inner:hover:after {
  height: 100%;
  top: auto;
  bottom: 0;
  transform-origin: bottom;
  -moz-transform-origin: bottom;
  -ms-transform-origin: bottom;
  -webkit-transform-origin: bottom;
  -o-transform-origin: bottom;
}
.ct-counter-single.layout1 .ct-separator {
  display: block;
  height: 2px;
  margin-left: auto;
  margin-right: auto;
  -webkit-transition: all 0.8s;
  -khtml-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -ms-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
  width: 80px;
  background-color: #dc0008;
  margin-bottom: 15px;
  position: relative;
}
.ct-counter-single.layout1 .ct-counter-icon {
  font-size: 80px;
}
.ct-counter-single.layout1 .ct-counter-icon i {
  font-size: 80px;
}
@media screen and (max-width: 991px) {
  .ct-counter-single.layout1 {
    margin-bottom: 25px;
  }
}
.ct-counter-single.layout2 .ct-counter-inner {
  text-align: center;
  border: none;
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
}
.ct-counter-single.layout2 .ct-counter-holder {
  text-align: center;
}
.ct-counter-single.layout2 .ct-counter-holder .ct-counter-icon {
  display: inline-block;
  margin-right: 8px;
}
.ct-counter-single.layout2 .ct-counter-holder .ct-counter-icon i {
  font-size: 45px;
  line-height: 55px;
}
.ct-counter-single.layout2 .ct-counter-holder .ct-counter-digit {
  display: inline-block;
  font-size: 45px;
  line-height: 55px;
}
.ct-counter-single.layout2 .ct-counter-title {
  font-size: 22px;
  line-height: 28px;
  margin-bottom: 15px;
}
.ct-counter-single.layout3 .ct-counter-digit, .ct-counter-single.layout5 .ct-counter-digit {
  margin-bottom: 0;
  letter-spacing: 3px;
}
.ct-counter-single.layout3 .ct-counter-title, .ct-counter-single.layout5 .ct-counter-title {
  font-size: 18px;
  text-transform: capitalize;
}
@media screen and (max-width: 991px) {
  .ct-counter-single.layout3, .ct-counter-single.layout5 {
    margin-bottom: 25px;
  }
}
.ct-counter-single.layout4 .ct-counter-digit {
  color: #dc0008;
}
@media screen and (max-width: 991px) {
  .ct-counter-single.layout4 {
    margin-bottom: 25px;
  }
}
.ct-counter-single.layout4 .ct-counter-icon {
  width: 100px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1;
  display: inline-block;
  position: relative;
  z-index: 1;
  padding-top: 18px;
  margin-bottom: 30px;
  font-size: 60px;
}
.ct-counter-single.layout4 .ct-counter-icon i {
  font-size: 60px;
  -webkit-transition: all 0.8s;
  -khtml-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -ms-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
  color: #dc0008;
}
.ct-counter-single.layout4 .ct-counter-inner {
  text-align: center;
  border: none;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.8s;
  -khtml-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -ms-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
  z-index: 1;
}
.ct-counter-single.layout4 .ct-counter-inner .ct-counter-title {
  font-size: 16px;
  font-weight: 500;
  color: ;
  text-transform: capitalize;
}
@media screen and (max-width: 991px) {
  .ct-counter-single.layout4 .ct-counter-inner {
    padding: 25px 15px;
  }
}
.ct-counter-single.layout5 .ct-counter-icon {
  width: 100px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1;
  display: inline-block;
  position: relative;
  z-index: 1;
  padding-top: 18px;
  margin-bottom: 30px;
}
.ct-counter-single.layout5 .ct-counter-icon i {
  -webkit-transition: all 0.8s;
  -khtml-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -ms-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
  color: #dc0008;
}
.ct-counter-single.layout5 .ct-counter-inner {
  text-align: center;
  padding: 15px 20px;
  -webkit-transition: all 0.8s;
  -khtml-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -ms-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
  z-index: 1;
  border: none;
}
.ct-counter-single.layout5 .ct-counter-digit {
  font-size: 50px;
}
.ct-counter-single.layout5 .ct-counter-title {
  font-size: 16px;
  font-weight: 500;
}
.ct-accordion-layout1 .card {
  border-radius: 0px;
  margin-bottom: 15px;
  padding: 0;
  border: none;
}
.ct-accordion-layout1 .card:last-child {
  margin-bottom: 0;
}
.ct-accordion-layout1 .card .card-header {
  border: 1px solid rgba(128, 130, 88, 0.5);
  padding: 0;
  background-color: transparent;
}
.ct-accordion-layout1 .card .card-header .card-title {
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1.77;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
}
.ct-accordion-layout1 .card .card-header .card-title a {
  flex-grow: 1;
}
.ct-accordion-layout1 .card .card-header .card-title a.collapsed {
  border-bottom: none !important;
}
.ct-accordion-layout1 .card .card-header a {
  display: block;
  color: inherit;
  position: relative;
  cursor: pointer;
  padding: 15px 40px 15px 15px;
}
.ct-accordion-layout1 .card .card-header a:hover {
  color: #232323;
}
.ct-accordion-layout1 .card .card-header a i {
  height: 40px;
  width: 40px;
  color: #232323;
  font-size: 14px;
  line-height: 40px;
  text-align: center;
  position: absolute;
  top: 50%;
  right: 12px;
  background-color: transparent;
  -webkit-transform: translate(0, -50%);
  -khtml-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
}
.ct-accordion-layout1 .card .card-header [aria-expanded="true"] i:before {
  content: "\f2d1";
  font-weight: 400;
}
.ct-accordion-layout1 .card .card-body {
  font-size: 15px;
  border: 1px solid rgba(128, 130, 88, 0.5);
  border-top: none;
  line-height: 2;
  padding: 21px 20px;
  margin-top: -1px;
}
.ct-pricing-wrapper .ct-pricing-inner {
  -webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, .1);
  -khtml-box-shadow: 0 0 30px 0 rgba(0, 0, 0, .1);
  -moz-box-shadow: 0 0 30px 0 rgba(0, 0, 0, .1);
  -ms-box-shadow: 0 0 30px 0 rgba(0, 0, 0, .1);
  -o-box-shadow: 0 0 30px 0 rgba(0, 0, 0, .1);
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, .1);
  padding: 30px;
  text-align: center;
}
.ct-pricing-wrapper .ct-pricing-inner .ct-pricing-title {
  font-weight: 300;
}
.ct-pricing-wrapper .ct-pricing-inner .ct-pricing-meta {
  display: inline-block;
  background: rgba(0, 0, 0, .1);
  border-radius: 10px;
  color: #a0a0a0;
  display: inline-block;
  font-size: 13px;
  margin-top: 20px;
  padding: 15px 25px;
  margin-bottom: 10px;
}
.ct-pricing-wrapper .ct-pricing-inner .ct-pricing-meta .ct-pricing-price {
  font-size: 22px;
}
.ct-pricing-wrapper .ct-pricing-inner .ct-pricing-content {
  margin-bottom: 24px;
}
.ct-pricing-wrapper .ct-pricing-inner .wp-prc-btn {
  margin-top: 20px;
}
.ct-pricing-wrapper .ct-pricing-inner .ct-pricing-button {
  display: inline-block;
  background-color: #dc0008;
  color: #fff;
  font-size: 13px;
  margin-bottom: 10px;
  line-height: 45px;
  padding: 0 45px;
  -webkit-border-radius: 100px;
  -khtml-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  border-radius: 100px;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
}
.ct-pricing-wrapper .ct-pricing-inner .ct-pricing-button:hover {
  background-color: #232323;
}
.ct-pricing-wrapper .ct-pricing-inner.ct-pri-item-active {
  background-color: #ff5e14;
}
@media screen and (min-width: 992px) {
  .ct-pricing-wrapper .ct-pricing-inner.ct-pri-item-active {
    padding: 60px 30px;
    margin: -30px 0;
  }
}
.ct-pricing-wrapper .ct-pricing-inner.ct-pri-item-active .ct-pricing-content {
  color: #fff;
}
.ct-pricing-wrapper .ct-pricing-inner.ct-pri-item-active .ct-pricing-title {
  color: #fff;
}
.ct-pricing-wrapper .ct-pricing-inner.ct-pri-item-active .ct-pricing-meta {
  color: #fff;
}
.ct-pricing-wrapper .ct-pricing-inner.ct-pri-item-active .ct-pricing-button {
  background-color: #fff;
  color: #dc0008;
  font-size: 13px;
}
.item-featured {
  position: relative;
}
.item-featured img {
  width: 100%;
}
.ct-grid-blog-layout1 .item-featured {
  overflow: hidden;
}
.ct-grid-blog-layout1 .item-featured img {
  -webkit-transition: all 0.5s;
  -khtml-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.ct-grid-blog-layout1 .item-featured:hover {
  background-color: #000;
}
.ct-grid-blog-layout1 .item-featured:hover img {
  opacity: 0.3;
  -webkit-transform: scale(1.2);
  -khtml-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}
.ct-grid-blog-layout1 .item-meta {
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
  padding-bottom: 12px;
  position: relative;
}
.ct-grid-blog-layout1 .item-meta li {
  padding: 0;
  display: inline-block;
  color: #dc0008;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
}
.ct-grid-blog-layout1 .item-meta li + li:before {
  content: "|";
  display: inline-block;
  font-weight: 400;
  margin-right: 3px;
  margin-left: 5px;
  opacity: 0.5;
}
.ct-grid-blog-layout1 .item-meta li a {
  color: inherit;
}
.ct-grid-blog-layout1 .item-meta:after {
  content: "";
  width: 50px;
  height: 2px;
  background: #dc0008;
  position: absolute;
  bottom: -1px;
  left: 0;
}
.ct-grid-blog-layout1 .item-body {
  padding: 25px 30px 30px;
}
.ct-grid-blog-layout1 .item-body .item-title {
  letter-spacing: 0.03em;
  margin-top: 20px;
  margin-bottom: 5px;
  font-weight: 600;
  line-height: 34px;
  font-size: 20px;
}
.ct-grid-blog-layout1 .item-footer {
  margin-top: 17px;
}
.ct-grid-blog-layout1 .grid-item-inner {
  margin-bottom: 50px;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, .1);
}
@media screen and (max-width: 991px) {
  .ct-grid-blog-layout1 .grid-item-inner {
    margin-bottom: 20px;
  }
}
.ct-grid-blog-layout1 .item-footer a:before {
  background-color: rgba(220, 0, 8, 0.45);
}
.ct-grid-blog-layout1 .item-footer a:after {
  background-color: #dc0008;
}
.ct-grid-blog-layout1 .item-footer a.btn-aylen {
  text-transform: uppercase;
  background-color: #dc0008;
  color: #fff;
  border: none;
  height: 43px;
  line-height: 43px;
  padding-left: 35px;
  padding-right: 35px;
  font-size: 13px;
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
}
.ct-grid-blog-layout1 .item-footer a.btn-aylen:before, .ct-grid-blog-layout1 .item-footer a.btn-aylen:after {
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  bottom: 100%;
  left: 0;
  z-index: -1;
  -webkit-transition: transform 0.3s;
  -khtml-transition: transform 0.3s;
  -moz-transition: transform 0.3s;
  -ms-transition: transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition-timing-function: ease;
  -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}
.ct-grid-blog-layout1 .item-footer a.btn-aylen:before {
  background: rgba(220, 0, 8, 0.45);
}
.ct-grid-blog-layout1 .item-footer a.btn-aylen:after {
  background: #dc0008;
}
.ct-grid-blog-layout1 .item-footer a.btn-aylen:hover, .ct-grid-blog-layout1 .item-footer a.btn-aylen:focus, .ct-grid-blog-layout1 .item-footer a.btn-aylen:active {
  color: #fff;
}
.ct-grid-blog-layout1 .item-footer a.btn-aylen:hover:before, .ct-grid-blog-layout1 .item-footer a.btn-aylen:focus:before, .ct-grid-blog-layout1 .item-footer a.btn-aylen:active:before, .ct-grid-blog-layout1 .item-footer a.btn-aylen:hover:after, .ct-grid-blog-layout1 .item-footer a.btn-aylen:focus:after, .ct-grid-blog-layout1 .item-footer a.btn-aylen:active:after {
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
}
.ct-grid-blog-layout1 .item-footer a.btn-aylen:hover:after, .ct-grid-blog-layout1 .item-footer a.btn-aylen:focus:after, .ct-grid-blog-layout1 .item-footer a.btn-aylen:active:after {
  -webkit-transition-delay: 0.175s;
  transition-delay: 0.175s;
}
.ct-grid-blog-layout1 .ct-grid-pagination {
  margin-top: 0px;
}
.ct-grid-blog-layout2 .item-featured {
  overflow: hidden;
}
.ct-grid-blog-layout2 .item-featured img {
  -webkit-transition: all 0.5s;
  -khtml-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.ct-grid-blog-layout2 .item-featured:hover {
  background-color: #000;
}
.ct-grid-blog-layout2 .item-featured:hover img {
  opacity: 0.3;
  -webkit-transform: scale(1.2);
  -khtml-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}
.ct-grid-blog-layout2 .item-meta {
  display: block;
}
@media screen and (max-width: 767px) {
  .ct-grid-blog-layout2 .item-meta {
    padding: 15px;
  }
}
.ct-grid-blog-layout2 .item-meta li {
  padding: 0;
  display: inline-block;
  color: #dc0008;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
}
.ct-grid-blog-layout2 .item-meta li + li:before {
  content: "|";
  display: inline-block;
  font-weight: 400;
  margin-right: 3px;
  margin-left: 3px;
  opacity: 0.5;
}
.ct-grid-blog-layout2 .item-meta li a {
  display: inline-block;
}
.ct-grid-blog-layout2 .item-meta {
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
  padding-bottom: 12px;
  position: relative;
}
.ct-grid-blog-layout2 .item-meta:after {
  content: "";
  width: 50px;
  height: 2px;
  background: #dc0008;
  position: absolute;
  bottom: -1px;
  left: 0;
}
.ct-grid-blog-layout2 .item-body {
  padding: 24px 30px;
}
.ct-grid-blog-layout2 .item-body .item-title {
  letter-spacing: 0.03em;
  font-weight: 600;
  font-size: 22px;
  color: #232323;
}
.ct-grid-blog-layout2 .item-body .item-title a {
  color: inherit;
}
@media screen and (min-width: 1200px) {
  .ct-grid-blog-layout2 .item-body .item-title {
    padding-right: 50px;
  }
}
.ct-grid-blog-layout2 .item-body .item-content {
  font-size: 15px;
}
.ct-grid-blog-layout2 .item-footer {
  margin-top: 20px;
}
.ct-grid-blog-layout2 .grid-item-inner {
  margin-bottom: 50px;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, .1);
}
.ct-grid-blog-layout2 .item-footer a:before {
  background-color: rgba(220, 0, 8, 0.45);
}
.ct-grid-blog-layout2 .item-footer a:after {
  background-color: #dc0008;
}
.ct-grid-blog-layout2 .item-footer a.btn-aylen {
  text-transform: uppercase;
  background-color: #dc0008;
  color: #fff;
  border: none;
  height: 43px;
  line-height: 43px;
  padding-left: 35px;
  padding-right: 35px;
  font-size: 13px;
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
}
.ct-grid-blog-layout2 .item-footer a.btn-aylen:before, .ct-grid-blog-layout2 .item-footer a.btn-aylen:after {
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  bottom: 100%;
  left: 0;
  z-index: -1;
  -webkit-transition: transform 0.3s;
  -khtml-transition: transform 0.3s;
  -moz-transition: transform 0.3s;
  -ms-transition: transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition-timing-function: ease;
  -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}
.ct-grid-blog-layout2 .item-footer a.btn-aylen:before {
  background: rgba(220, 0, 8, 0.45);
}
.ct-grid-blog-layout2 .item-footer a.btn-aylen:after {
  background: #dc0008;
}
.ct-grid-blog-layout2 .item-footer a.btn-aylen:hover, .ct-grid-blog-layout2 .item-footer a.btn-aylen:focus, .ct-grid-blog-layout2 .item-footer a.btn-aylen:active {
  color: #fff;
}
.ct-grid-blog-layout2 .item-footer a.btn-aylen:hover:before, .ct-grid-blog-layout2 .item-footer a.btn-aylen:focus:before, .ct-grid-blog-layout2 .item-footer a.btn-aylen:active:before, .ct-grid-blog-layout2 .item-footer a.btn-aylen:hover:after, .ct-grid-blog-layout2 .item-footer a.btn-aylen:focus:after, .ct-grid-blog-layout2 .item-footer a.btn-aylen:active:after {
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
}
.ct-grid-blog-layout2 .item-footer a.btn-aylen:hover:after, .ct-grid-blog-layout2 .item-footer a.btn-aylen:focus:after, .ct-grid-blog-layout2 .item-footer a.btn-aylen:active:after {
  -webkit-transition-delay: 0.175s;
  transition-delay: 0.175s;
}
.ct-grid-blog-layout2 .ct-grid-pagination {
  margin-top: 0px;
}
.ct-blog-carousel.layout1 .owl-stage-outer {
  margin-left: -15px;
  margin-right: -15px;
  padding-left: 15px;
  padding-right: 15px;
}
.ct-blog-carousel.layout1 .item-featured {
  overflow: hidden;
}
.ct-blog-carousel.layout1 .item-featured img {
  -webkit-transition: all 0.5s;
  -khtml-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.ct-blog-carousel.layout1 .item-featured:hover {
  background-color: #000;
}
.ct-blog-carousel.layout1 .item-featured:hover img {
  opacity: 0.3;
  -webkit-transform: scale(1.2);
  -khtml-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}
.ct-blog-carousel.layout1 .item-meta {
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
  padding-bottom: 12px;
  position: relative;
}
.ct-blog-carousel.layout1 .item-meta li {
  padding: 0;
  display: inline-block;
  color: #dc0008;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
}
.ct-blog-carousel.layout1 .item-meta li + li:before {
  content: "|";
  display: inline-block;
  font-weight: 400;
  margin-right: 3px;
  margin-left: 5px;
  opacity: 0.5;
}
.ct-blog-carousel.layout1 .item-meta li a {
  color: inherit;
}
.ct-blog-carousel.layout1 .item-meta:after {
  content: "";
  width: 50px;
  height: 2px;
  background: #dc0008;
  position: absolute;
  bottom: -1px;
  left: 0;
}
.ct-blog-carousel.layout1 .item-body {
  padding: 25px 30px 30px;
}
.ct-blog-carousel.layout1 .item-body .item-title {
  letter-spacing: 0.03em;
  margin-top: 20px;
  margin-bottom: 5px;
  font-weight: 600;
  line-height: 34px;
  font-size: 20px;
}
.ct-blog-carousel.layout1 .item-body .item-title a {
  color: #232323;
}
.ct-blog-carousel.layout1 .item-body .item-title a:hover {
  color: #dc0008;
}
@media screen and (min-width: 1200px) {
  .ct-blog-carousel.layout1 .item-body .item-title {
    padding-right: 50px;
  }
}
.ct-blog-carousel.layout1 .item-footer {
  margin-top: 17px;
}
.ct-blog-carousel.layout1 .grid-item-inner {
  margin-bottom: 50px;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, .1);
}
.ct-blog-carousel.layout1 .item-footer a:before {
  background-color: rgba(220, 0, 8, 0.45);
}
.ct-blog-carousel.layout1 .item-footer a:after {
  background-color: #dc0008;
}
.ct-blog-carousel.layout1 .item-footer a.btn-aylen {
  text-transform: uppercase;
  background-color: #dc0008;
  color: #fff;
  border: none;
  height: 43px;
  line-height: 43px;
  padding-left: 35px;
  padding-right: 35px;
  font-size: 13px;
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
}
.ct-blog-carousel.layout1 .item-footer a.btn-aylen:before, .ct-blog-carousel.layout1 .item-footer a.btn-aylen:after {
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  bottom: 100%;
  left: 0;
  z-index: -1;
  -webkit-transition: transform 0.3s;
  -khtml-transition: transform 0.3s;
  -moz-transition: transform 0.3s;
  -ms-transition: transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition-timing-function: ease;
  -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}
.ct-blog-carousel.layout1 .item-footer a.btn-aylen:before {
  background: rgba(220, 0, 8, 0.45);
}
.ct-blog-carousel.layout1 .item-footer a.btn-aylen:after {
  background: #dc0008;
}
.ct-blog-carousel.layout1 .item-footer a.btn-aylen:hover, .ct-blog-carousel.layout1 .item-footer a.btn-aylen:focus, .ct-blog-carousel.layout1 .item-footer a.btn-aylen:active {
  color: #fff;
}
.ct-blog-carousel.layout1 .item-footer a.btn-aylen:hover:before, .ct-blog-carousel.layout1 .item-footer a.btn-aylen:focus:before, .ct-blog-carousel.layout1 .item-footer a.btn-aylen:active:before, .ct-blog-carousel.layout1 .item-footer a.btn-aylen:hover:after, .ct-blog-carousel.layout1 .item-footer a.btn-aylen:focus:after, .ct-blog-carousel.layout1 .item-footer a.btn-aylen:active:after {
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
}
.ct-blog-carousel.layout1 .item-footer a.btn-aylen:hover:after, .ct-blog-carousel.layout1 .item-footer a.btn-aylen:focus:after, .ct-blog-carousel.layout1 .item-footer a.btn-aylen:active:after {
  -webkit-transition-delay: 0.175s;
  transition-delay: 0.175s;
}
.ct-blog-carousel.layout1 .ct-grid-pagination {
  margin-top: 0px;
}
.ct-blog-carousel.layout2 .owl-stage-outer {
  margin-left: -15px;
  margin-right: -15px;
  padding-left: 15px;
  padding-right: 15px;
}
.ct-blog-carousel.layout2 .item-featured {
  overflow: hidden;
}
.ct-blog-carousel.layout2 .item-featured img {
  -webkit-transition: all 0.5s;
  -khtml-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.ct-blog-carousel.layout2 .item-featured:hover {
  background-color: #000;
}
.ct-blog-carousel.layout2 .item-featured:hover img {
  opacity: 0.3;
  -webkit-transform: scale(1.2);
  -khtml-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}
.ct-blog-carousel.layout2 .item-meta {
  display: block;
}
@media screen and (max-width: 767px) {
  .ct-blog-carousel.layout2 .item-meta {
    padding: 15px;
  }
}
.ct-blog-carousel.layout2 .item-meta li {
  padding: 0;
  display: inline-block;
  color: #dc0008;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
}
.ct-blog-carousel.layout2 .item-meta li + li:before {
  content: "|";
  display: inline-block;
  font-weight: 400;
  margin-right: 3px;
  margin-left: 3px;
  opacity: 0.5;
}
.ct-blog-carousel.layout2 .item-meta li a {
  display: inline-block;
}
.ct-blog-carousel.layout2 .item-meta {
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
  padding-bottom: 12px;
  position: relative;
}
.ct-blog-carousel.layout2 .item-meta:after {
  content: "";
  width: 50px;
  height: 2px;
  background: #dc0008;
  position: absolute;
  bottom: -1px;
  left: 0;
}
.ct-blog-carousel.layout2 .item-body {
  padding: 24px 30px;
}
.ct-blog-carousel.layout2 .item-body .item-title {
  letter-spacing: 0.03em;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.3;
  color: #232323;
}
.ct-blog-carousel.layout2 .item-body .item-title a {
  color: inherit;
}
@media screen and (min-width: 1200px) {
  .ct-blog-carousel.layout2 .item-body .item-title {
    padding-right: 20px;
  }
}
.ct-blog-carousel.layout2 .item-body .item-content {
  font-size: 15px;
}
.ct-blog-carousel.layout2 .item-footer {
  margin-top: 20px;
}
.ct-blog-carousel.layout2 .grid-item-inner {
  margin-bottom: 50px;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, .1);
}
.ct-blog-carousel.layout2 .item-footer a:before {
  background-color: rgba(220, 0, 8, 0.45);
}
.ct-blog-carousel.layout2 .item-footer a:after {
  background-color: #dc0008;
}
.ct-blog-carousel.layout2 .item-footer a.btn-aylen {
  text-transform: uppercase;
  background-color: #dc0008;
  color: #fff;
  border: none;
  height: 43px;
  line-height: 43px;
  padding-left: 35px;
  padding-right: 35px;
  font-size: 13px;
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
}
.ct-blog-carousel.layout2 .item-footer a.btn-aylen:before, .ct-blog-carousel.layout2 .item-footer a.btn-aylen:after {
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  bottom: 100%;
  left: 0;
  z-index: -1;
  -webkit-transition: transform 0.3s;
  -khtml-transition: transform 0.3s;
  -moz-transition: transform 0.3s;
  -ms-transition: transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition-timing-function: ease;
  -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}
.ct-blog-carousel.layout2 .item-footer a.btn-aylen:before {
  background: rgba(220, 0, 8, 0.45);
}
.ct-blog-carousel.layout2 .item-footer a.btn-aylen:after {
  background: #dc0008;
}
.ct-blog-carousel.layout2 .item-footer a.btn-aylen:hover, .ct-blog-carousel.layout2 .item-footer a.btn-aylen:focus, .ct-blog-carousel.layout2 .item-footer a.btn-aylen:active {
  color: #fff;
}
.ct-blog-carousel.layout2 .item-footer a.btn-aylen:hover:before, .ct-blog-carousel.layout2 .item-footer a.btn-aylen:focus:before, .ct-blog-carousel.layout2 .item-footer a.btn-aylen:active:before, .ct-blog-carousel.layout2 .item-footer a.btn-aylen:hover:after, .ct-blog-carousel.layout2 .item-footer a.btn-aylen:focus:after, .ct-blog-carousel.layout2 .item-footer a.btn-aylen:active:after {
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
}
.ct-blog-carousel.layout2 .item-footer a.btn-aylen:hover:after, .ct-blog-carousel.layout2 .item-footer a.btn-aylen:focus:after, .ct-blog-carousel.layout2 .item-footer a.btn-aylen:active:after {
  -webkit-transition-delay: 0.175s;
  transition-delay: 0.175s;
}
.ct-blog-carousel.layout2 .ct-grid-pagination {
  margin-top: 0px;
}
.ct-blog-carousel.layout3 .item-featured {
  overflow: hidden;
}
.ct-blog-carousel.layout3 .item-featured img {
  -webkit-transition: all 0.5s;
  -khtml-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.ct-blog-carousel.layout3 .item-featured:hover {
  background-color: #000;
}
.ct-blog-carousel.layout3 .item-featured:hover img {
  opacity: 0.3;
  -webkit-transform: scale(1.2);
  -khtml-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}
.ct-blog-carousel.layout3 .item-meta {
  margin-bottom: 5px;
  position: relative;
}
.ct-blog-carousel.layout3 .item-meta li {
  padding: 0;
  display: inline-block;
  color: #dc0008;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
}
.ct-blog-carousel.layout3 .item-meta li + li:before {
  content: "|";
  display: inline-block;
  font-weight: 400;
  margin-right: 3px;
  margin-left: 5px;
  opacity: 0.5;
}
.ct-blog-carousel.layout3 .item-meta li a {
  color: inherit;
}
.ct-blog-carousel.layout3 .item-body {
  padding: 25px 0 0;
}
.ct-blog-carousel.layout3 .item-body .item-title {
  letter-spacing: 0.03em;
  margin-bottom: 5px;
  font-weight: 400;
  line-height: 34px;
  font-size: 20px;
  font-family: 'Roboto Condensed', sans-serif;
}
.ct-blog-carousel.layout3 .item-body .item-title a {
  color: #232323;
}
.ct-blog-carousel.layout3 .item-body .item-title a:hover {
  color: #dc0008;
}
@media screen and (min-width: 1200px) {
  .ct-blog-carousel.layout3 .item-body .item-title {
    padding-right: 50px;
  }
}
.ct-blog-carousel.layout3 .item-footer {
  margin-top: 17px;
}
.ct-blog-carousel.layout3 .item-footer a {
  letter-spacing: 0.1em;
}
.ct-blog-carousel.layout3 .grid-item-inner {
  margin-bottom: 50px;
  border-radius: 4px;
  overflow: hidden;
}
.ct-blog-carousel.layout3 .item-footer a:before {
  background-color: rgba(220, 0, 8, 0.45);
}
.ct-blog-carousel.layout3 .item-footer a:after {
  background-color: #dc0008;
}
.ct-blog-carousel.layout3 .item-footer a.btn-aylen {
  text-transform: uppercase;
  background-color: #dc0008;
  color: #fff;
  border: none;
  height: 43px;
  line-height: 43px;
  padding-left: 35px;
  padding-right: 35px;
  font-size: 13px;
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
}
.ct-blog-carousel.layout3 .item-footer a.btn-aylen:before, .ct-blog-carousel.layout3 .item-footer a.btn-aylen:after {
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  bottom: 100%;
  left: 0;
  z-index: -1;
  -webkit-transition: transform 0.3s;
  -khtml-transition: transform 0.3s;
  -moz-transition: transform 0.3s;
  -ms-transition: transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition-timing-function: ease;
  -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}
.ct-blog-carousel.layout3 .item-footer a.btn-aylen:before {
  background: rgba(220, 0, 8, 0.45);
}
.ct-blog-carousel.layout3 .item-footer a.btn-aylen:after {
  background: #dc0008;
}
.ct-blog-carousel.layout3 .item-footer a.btn-aylen:hover, .ct-blog-carousel.layout3 .item-footer a.btn-aylen:focus, .ct-blog-carousel.layout3 .item-footer a.btn-aylen:active {
  color: #fff;
}
.ct-blog-carousel.layout3 .item-footer a.btn-aylen:hover:before, .ct-blog-carousel.layout3 .item-footer a.btn-aylen:focus:before, .ct-blog-carousel.layout3 .item-footer a.btn-aylen:active:before, .ct-blog-carousel.layout3 .item-footer a.btn-aylen:hover:after, .ct-blog-carousel.layout3 .item-footer a.btn-aylen:focus:after, .ct-blog-carousel.layout3 .item-footer a.btn-aylen:active:after {
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
}
.ct-blog-carousel.layout3 .item-footer a.btn-aylen:hover:after, .ct-blog-carousel.layout3 .item-footer a.btn-aylen:focus:after, .ct-blog-carousel.layout3 .item-footer a.btn-aylen:active:after {
  -webkit-transition-delay: 0.175s;
  transition-delay: 0.175s;
}
.ct-blog-carousel.layout3 .ct-grid-pagination {
  margin-top: 0px;
}
.ct-blog-carousel.layout3 .owl-stage-outer {
  margin-left: -15px;
  margin-right: -15px;
  padding-left: 15px;
  padding-right: 15px;
}
.ct-blog-carousel .owl-nav {
  margin-top: 0;
}
.ct-blog-carousel .owl-nav .owl-prev, .ct-blog-carousel .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -khtml-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  line-height: 1;
  -webkit-transition: all 0.3s linear !important;
  -khtml-transition: all 0.3s linear !important;
  -moz-transition: all 0.3s linear !important;
  -ms-transition: all 0.3s linear !important;
  -o-transition: all 0.3s linear !important;
  transition: all 0.3s linear !important;
}
.ct-blog-carousel .owl-nav .owl-prev i, .ct-blog-carousel .owl-nav .owl-next i {
  font-size: 40px;
  font-weight: 300;
  color: #808258;
}
.ct-blog-carousel .owl-nav .owl-prev:hover i, .ct-blog-carousel .owl-nav .owl-next:hover i {
  color: #232323;
}
@media (max-width: 1399px) {
  .ct-blog-carousel .owl-nav .owl-prev {
    left: 10px;
    opacity: 0;
  }
}
@media screen and (min-width: 1400px) {
  .ct-blog-carousel .owl-nav .owl-prev {
    left: -80px;
  }
}
@media (max-width: 1399px) {
  .ct-blog-carousel .owl-nav .owl-next {
    right: 10px;
    opacity: 0;
  }
}
@media screen and (min-width: 1400px) {
  .ct-blog-carousel .owl-nav .owl-next {
    right: -80px;
  }
}
@media (max-width: 1399px) {
  .ct-blog-carousel:hover .owl-nav .owl-prev {
    left: -20px;
    opacity: 1;
  }
  .ct-blog-carousel:hover .owl-nav .owl-prev i {
    color: #dc0008;
  }
  .ct-blog-carousel:hover .owl-nav .owl-next {
    right: -20px;
    opacity: 1;
  }
  .ct-blog-carousel:hover .owl-nav .owl-next i {
    color: #dc0008;
  }
}
.ct-blog-carousel.bog-carousel-custom .item-body .item-title {
  font-size: 22px;
}
@media screen and (min-width: 992px) {
  .ct-blog-carousel.bog-carousel-custom .item-body .item-title {
    padding-right: 100px;
  }
}
.blog-wrapper .group-title {
  margin-bottom: 73px;
}
@media screen and (min-width: 768px) {
  .blog-wrapper .group-title {
    display: flex;
    -ms-flex-align: flex-end;
    -webkit-box-align: flex-end;
    align-items: flex-end;
  }
}
@media screen and (max-width: 991px) {
  .blog-wrapper .group-title {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  .blog-wrapper .group-title {
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .blog-wrapper .group-title .list-title {
    padding-right: 35px;
    flex-grow: 1;
  }
}
@media screen and (max-width: 767px) {
  .blog-wrapper .group-title .list-title {
    margin-bottom: 30px;
  }
}
.blog-wrapper .group-title .main-title {
  font-size: 55px;
  font-weight: bold;
  color: #232323;
}
@media screen and (max-width: 991px) {
  .blog-wrapper .group-title .main-title {
    font-size: 40px;
  }
}
.blog-wrapper .group-title .blog-sub-title {
  font-size: 14px;
  font-weight: 400;
  line-height: 30px;
  color: #808258;
  margin-bottom: -10px;
}
.blog-wrapper .group-title .btn-viewmore {
  flex-grow: 0;
  padding: 15px 45px;
  display: inline-block;
  white-space: nowrap;
  text-transform: uppercase;
  color: #232323;
  border: 1px solid rgba(128, 130, 88, 0.5);
  -webkit-border-radius: 50px;
  -khtml-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  border-radius: 50px;
}
.blog-wrapper .group-title .btn-viewmore i {
  margin-left: 5px;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
}
.blog-wrapper .group-title .btn-viewmore:hover {
  color: #dc0008;
  border-color: #dc0008;
}
.blog-wrapper .group-title .btn-viewmore:hover i {
  margin-left: 7px;
}
.ct-lists {
  margin-bottom: 15px;
}
.ct-lists .ct-list-title {
  font-size: 25px;
  margin-bottom: 45px;
}
.ct-lists ul, .ct-lists ol {
  font-weight: 400;
  list-style: none;
  padding-left: 0;
}
.ct-lists ul li, .ct-lists ol li {
  font-size: 15px;
  margin-bottom: 8px;
}
.ct-lists.layout1 li {
  position: relative;
  padding-left: 0;
}
.ct-lists.layout1 li a {
  cursor: pointer;
}
.ct-lists.layout1 li a:hover {
  color: #dc0008;
}
.ct-lists.layout1.style-1 ul {
  margin-left: -6px;
  margin-right: -6px;
  margin-bottom: 0;
}
.ct-lists.layout1.style-1 li {
  display: inline-block;
  margin-left: 5px;
  padding-right: 15px;
  position: relative;
}
.ct-lists.layout1.style-1 li:after {
  content: "/";
  position: absolute;
  top: 0;
  right: 0;
  display: inline-block;
}
.ct-lists.layout1.style-1 li:last-child:after {
  display: none;
}
.ct-lists.layout1.style-2 li {
  display: block;
}
.ct-lists.layout2 .ct-list-title {
  text-decoration: underline;
  font-weight: 500;
  margin-bottom: 15px;
}
.ct-lists.layout2 ul {
  padding-left: 0;
}
.ct-lists.layout2 li {
  position: relative;
  font-size: 18px;
  line-height: 32px;
  padding-left: 25px;
  padding-top: 5px;
  padding-bottom: 5px;
  margin-bottom: 0;
}
.ct-lists.layout2 li i {
  position: absolute;
  top: 10px;
  left: 0;
  color: #dc0008;
  font-size: 17px;
}
.ct-lists.layout2 li a {
  cursor: pointer;
}
.ct-lists.layout2 li a:hover {
  color: #dc0008;
}
.ct-lists.layout3 .ct-list-title {
  text-decoration: underline;
  font-weight: 500;
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 28px;
}
.ct-lists.layout3 ul {
  padding-left: 0;
}
.ct-lists.layout3 li {
  position: relative;
  font-size: 18px;
  line-height: 32px;
  padding-left: 25px;
  padding-top: 5px;
  padding-bottom: 5px;
  margin-bottom: 0;
}
.ct-lists.layout3 li i {
  position: absolute;
  top: 10px;
  left: 0;
  color: #dc0008;
  font-size: 17px;
}
.ct-lists.layout3 li a {
  cursor: pointer;
}
.ct-lists.layout3 li a:hover {
  color: #dc0008;
}
@media screen and (max-width: 991px) {
  .ct-lists.text-right.text-991px {
    text-align: center !important;
  }
  .ct-lists.text-right.text-991px-left {
    text-align: left !important;
  }
}
@media screen and (max-width: 767px) {
  .ct-lists.text-right.text-767px {
    text-align: center !important;
  }
  .ct-lists.text-right.text-767-left {
    text-align: left !important;
  }
}
.ct-list-post .ct-post-title {
  font-size: 20px;
  color: #232323;
  margin-bottom: 27px;
}
.ct-list-post ul {
  list-style: none;
  padding-left: 0;
}
.ct-list-post ul li {
  position: relative;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
  margin-bottom: 20px;
}
.ct-list-post ul li i {
  color: #808258;
  position: absolute;
  top: 5px;
  opacity: 0;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
  left: -15px;
}
.ct-list-post ul li a {
  color: #808258;
}
.ct-list-post ul li:hover {
  padding-left: 25px;
}
.ct-list-post ul li:hover a {
  color: #dc0008;
}
.ct-list-post ul li:hover i {
  color: #dc0008;
  left: 0;
  opacity: 1;
}
.ct-fancybox-title {
  font-size: 24px;
}
.ct-fancybox-layout1 .image-feature img {
  max-height: 55px;
}
.ct-fancybox-layout1 .ct-fancybox-title {
  margin-bottom: 0;
}
.ct-fancybox-layout2 {
  margin-bottom: 15px;
}
.ct-fancybox-layout2 .ct-fancybox-icon {
  line-height: 1;
  margin-bottom: 15px;
  margin-right: 20px;
}
.ct-fancybox-layout2 .ct-fancybox-icon i {
  font-size: 45px;
  color: #dc0008;
}
.ct-fancybox-layout2 .ct-fancybox-icon i, .ct-fancybox-layout2 .ct-fancybox-icon img {
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
}
.ct-fancybox-layout2 .ct-fancybox-title {
  margin-bottom: 5px;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
  text-decoration: underline;
}
.ct-fancybox-layout2 .ct-fancybox-content {
  font-size: 15px;
}
.ct-fancybox-layout2.fancybox-step .ct-fancybox-icon {
  margin-bottom: 33px;
}
.ct-fancybox-layout2 .ct-fancybox-inner {
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  padding: 30px 30px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid rgba(35, 35, 35, .2);
  background: rgba(35, 35, 35, .2);
  -webkit-transition: all 0.5s;
  -khtml-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.ct-fancybox-layout2 .ct-fancybox-inner:hover {
  background-color: #fff;
}
.ct-fancybox-layout2 .ct-fancybox-inner:hover .ct-fancybox-title {
  text-decoration: none;
  color: #232323 !important;
}
.ct-fancybox-layout2 .ct-fancybox-inner:hover .ct-fancybox-icon {
  color: #232323 !important;
}
.ct-fancybox-layout2 .ct-fancybox-inner:hover .ct-fancybox-icon i, .ct-fancybox-layout2 .ct-fancybox-inner:hover .ct-fancybox-icon img {
  color: #232323 !important;
  -webkit-transform: rotateY(360deg);
  -khtml-transform: rotateY(360deg);
  -moz-transform: rotateY(360deg);
  -ms-transform: rotateY(360deg);
  -o-transform: rotateY(360deg);
  transform: rotateY(360deg);
}
.ct-fancybox-layout2 .ct-fancybox-inner:hover .ct-fancybox-content {
  color: #232323 !important;
}
.ct-fancybox-layout3 .ct-fancybox-front {
  text-align: center;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
}
.ct-fancybox-layout3 .ct-fancybox-icon {
  margin-bottom: 10px;
}
.ct-fancybox-layout3 .ct-fancybox-icon.icon-font {
  font-size: 45px;
  color: #dc0008;
}
.ct-fancybox-layout3 .ct-fancybox-title {
  font-size: 20px;
  margin-bottom: 15px;
}
.ct-fancybox-layout3 .btn-heading {
  padding: 10px 35px;
  color: #dc0008;
  font-size: 13px;
  display: inline-block;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  border: 2px solid #dc0008;
  -webkit-border-radius: 100px;
  -khtml-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  border-radius: 100px;
}
.ct-fancybox-layout4 .ct-fancybox-inner {
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
}
.ct-fancybox-layout4 .ct-fancybox-icon {
  width: 60px;
  line-height: 1;
  margin-bottom: 15px;
  margin-right: 20px;
}
.ct-fancybox-layout4 .ct-fancybox-icon i {
  font-size: 45px;
  color: #dc0008;
}
.ct-fancybox-layout4 .ct-fancybox-icon i, .ct-fancybox-layout4 .ct-fancybox-icon img {
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
}
.ct-fancybox-layout4 .ct-fancybox-icon img {
  max-width: 60px;
}
.ct-fancybox-layout4 .ct-fancybox-title {
  letter-spacing: 0.03em;
  margin-bottom: 10px;
  font-weight: 600;
  color: #232323;
  font-size: 18px;
  line-height: 24px;
}
.ct-fancybox-layout4 .ct-fancybox-content {
  color: #808258;
}
.ct-fancybox-layout5 .ct-fancybox-inner {
  border: 1px solid rgba(128, 130, 88, 0.2);
  -webkit-border-radius: 4px;
  -khtml-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  padding: 30px;
  font-size: 14px;
  margin-bottom: 15px;
}
@media screen and (min-width: 992px) {
  .ct-fancybox-layout5 .ct-fancybox-inner {
    display: flex;
  }
}
.ct-fancybox-layout5 .ct-fancybox-icon {
  width: 60px;
  line-height: 1;
  margin-bottom: 15px;
  margin-top: 25px;
  margin-right: 20px;
}
@media screen and (max-width: 991px) {
  .ct-fancybox-layout5 .ct-fancybox-icon {
    margin-bottom: 25px;
    margin-top: 15px;
  }
}
.ct-fancybox-layout5 .ct-fancybox-icon i {
  font-size: 45px;
  color: #dc0008;
}
.ct-fancybox-layout5 .ct-fancybox-icon i, .ct-fancybox-layout5 .ct-fancybox-icon img {
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
}
.ct-fancybox-layout5 .ct-fancybox-icon img {
  max-width: 60px;
}
.ct-fancybox-layout5 .ct-fancybox-title {
  letter-spacing: 0.03em;
  margin-bottom: 10px;
  font-weight: 600;
  color: #232323;
  font-size: 18px;
  line-height: 24px;
}
.ct-fancybox-layout5 .ct-fancybox-content {
  font-size: 14px;
  color: #808258;
}
.ct-fancybox-layout6 {
  margin-bottom: 30px;
}
.ct-fancybox-layout6 .ct-fancybox-front {
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  background-color: #fff;
  padding: 15px 30px 30px;
  font-size: 14px;
  border: 1px solid #ebedf2;
  -webkit-box-shadow: 0 10px 20px 0 rgba(0, 0, 0, .1);
  -khtml-box-shadow: 0 10px 20px 0 rgba(0, 0, 0, .1);
  -moz-box-shadow: 0 10px 20px 0 rgba(0, 0, 0, .1);
  -ms-box-shadow: 0 10px 20px 0 rgba(0, 0, 0, .1);
  -o-box-shadow: 0 10px 20px 0 rgba(0, 0, 0, .1);
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, .1);
  text-align: center;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
}
.ct-fancybox-layout6 .ct-fancybox-icon {
  margin-bottom: 10px;
}
.ct-fancybox-layout6 .ct-fancybox-icon.icon-font {
  font-size: 45px;
  color: #dc0008;
}
.ct-fancybox-layout6 .ct-fancybox-title {
  font-size: 20px;
  margin-bottom: 15px;
}
.ct-fancybox-layout6 .ct-fancybox-content {
  font-size: 15px;
  margin-bottom: 25px;
}
.ct-fancybox-layout6 .btn-heading {
  background-color: #dc0008;
  color: #fff;
  font-size: 13px;
  padding: 12px 30px;
  display: inline-block;
  font-weight: 600;
  line-height: 1.42857;
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
}
.ct-fancybox-layout6 .btn-heading:hover {
  background-color: #232323;
}
.ct-fancybox-layout7 {
  margin-bottom: 30px;
  box-shadow: 20px 10px 40px 0 rgba(0, 0, 0, .05);
}
.ct-fancybox-layout7 .ct-fancybox-front {
  background-color: #fff;
  padding: 15px 30px 30px;
  font-size: 14px;
  text-align: center;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
}
.ct-fancybox-layout7 .ct-fancybox-icon {
  margin-bottom: 10px;
}
.ct-fancybox-layout7 .ct-fancybox-icon.icon-font {
  font-size: 45px;
  color: #dc0008;
}
.ct-fancybox-layout7 .ct-fancybox-title {
  font-size: 20px;
  margin-bottom: 15px;
}
.ct-fancybox-layout7 .ct-fancybox-content {
  font-size: 15px;
  margin-bottom: 25px;
}
.ct-fancybox-layout7 .btn-heading {
  background-color: #ffeae4;
  padding: 15px 20px;
  text-transform: uppercase;
  font-size: 13px;
}
.ct-fancybox-layout7 .btn-heading:hover {
  background-color: #dc0008;
  color: #fff;
}
.ct-fancybox-layout8 .ct-fancybox-inner {
  padding: 50px 30px;
  background: #fff;
  text-align: center;
  border-radius: 4px;
  position: relative;
  margin-bottom: 15px;
}
.ct-fancybox-layout8 .ct-fancybox-inner .ct-fancybox-icon {
  position: relative;
  z-index: 1;
  width: 80px;
  display: inline-block;
  text-align: center;
  margin-bottom: 20px;
}
.ct-fancybox-layout8 .ct-fancybox-inner .ct-fancybox-icon:after {
  content: "";
  width: 100%;
  height: 100%;
  background: #6a1a1f;
  position: absolute;
  left: 0;
  z-index: -1;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
  border-radius: 10px 10px 10px 10px;
  transform: scale(1.3) rotate(15deg);
  opacity: 0.05;
}
.ct-fancybox-layout8 .ct-fancybox-inner .ct-fancybox-icon:hover:after {
  transform: scale(1.3) rotate(-15deg);
  opacity: 0.8;
}
.ct-fancybox-layout8 .ct-fancybox-inner .ct-fancybox-title {
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 10px;
  line-height: 32px;
}
.ct-fancybox-layout8 .ct-fancybox-inner .ct-fancybox-content {
  color: #232323;
  font-size: 15px;
  opacity: 0.7;
}
.step-arrow {
  position: relative;
}
.step-arrow:before {
  content: '';
  width: 135px;
  height: 56px;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../images/step.png);
  position: absolute;
  top: 0;
  right: -67px;
}
.ct-fancybox-carousel .owl-stage-outer {
  margin-left: -15px;
  margin-right: -15px;
  padding: 30px 15px;
}
.ct-fancybox-carousel .grid-item {
  margin-bottom: 40px;
}
.ct-fancybox-carousel .owl-nav {
  margin-top: 0;
}
.ct-fancybox-carousel .owl-nav .owl-prev, .ct-fancybox-carousel .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -khtml-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  line-height: 1;
  -webkit-transition: all 0.3s linear !important;
  -khtml-transition: all 0.3s linear !important;
  -moz-transition: all 0.3s linear !important;
  -ms-transition: all 0.3s linear !important;
  -o-transition: all 0.3s linear !important;
  transition: all 0.3s linear !important;
}
.ct-fancybox-carousel .owl-nav .owl-prev i, .ct-fancybox-carousel .owl-nav .owl-next i {
  font-size: 40px;
  font-weight: 300;
  color: #808258;
}
.ct-fancybox-carousel .owl-nav .owl-prev:hover i, .ct-fancybox-carousel .owl-nav .owl-next:hover i {
  color: #232323;
}
@media (max-width: 1399px) {
  .ct-fancybox-carousel .owl-nav .owl-prev {
    left: 10px;
    opacity: 0;
  }
}
@media screen and (min-width: 1400px) {
  .ct-fancybox-carousel .owl-nav .owl-prev {
    left: -80px;
  }
}
@media (max-width: 1399px) {
  .ct-fancybox-carousel .owl-nav .owl-next {
    right: 10px;
    opacity: 0;
  }
}
@media screen and (min-width: 1400px) {
  .ct-fancybox-carousel .owl-nav .owl-next {
    right: -80px;
  }
}
@media (max-width: 1399px) {
  .ct-fancybox-carousel:hover .owl-nav .owl-prev {
    left: -20px;
    opacity: 1;
  }
  .ct-fancybox-carousel:hover .owl-nav .owl-prev i {
    color: #dc0008;
  }
  .ct-fancybox-carousel:hover .owl-nav .owl-next {
    right: -20px;
    opacity: 1;
  }
  .ct-fancybox-carousel:hover .owl-nav .owl-next i {
    color: #dc0008;
  }
}
.ct-fancybox-carousel.layout1 .ct-fcb-icon {
  color: #d2151e;
  display: block;
  margin-bottom: 20px;
}
.ct-fancybox-carousel.layout1 .ct-fcb-icon i {
  font-size: 80px;
  line-height: 80px;
}
.ct-fancybox-carousel.layout1 .fancybox-title {
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 0;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.ct-fancybox-carousel.layout1 .fancybox-title a {
  color: inherit;
}
.ct-fancybox-carousel.layout1 .fancybox-title:hover {
  color: #dc0008;
}
.ct-fancybox-carousel.layout1 .fancybox-title:hover a {
  color: inherit;
}
.ct-fancybox-carousel.layout1 .grid-item-inner {
  background-color: #fff;
  padding: 15px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .05);
  -khtml-box-shadow: 0 5px 10px rgba(0, 0, 0, .05);
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, .05);
  -ms-box-shadow: 0 5px 10px rgba(0, 0, 0, .05);
  -o-box-shadow: 0 5px 10px rgba(0, 0, 0, .05);
  box-shadow: 0 5px 10px rgba(0, 0, 0, .05);
  text-align: center;
  position: relative;
}
@media screen and (min-width: 992px) {
  .ct-fancybox-carousel.layout1 .grid-item-inner {
    padding: 40px 45px;
  }
}
.ct-fancybox-carousel.layout1 .grid-item-inner:after {
  content: "";
  height: 5px;
  background: #dc0008;
  width: 0;
  position: absolute;
  bottom: 0;
  right: -1px;
  transition: all 0.8s;
  -moz-transition: all 0.8s;
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  -o-transition: all 0.8s;
}
.ct-fancybox-carousel.layout1 .grid-item-inner:hover .fancybox-title a {
  color: #dc0008;
}
.ct-fancybox-carousel.layout1 .grid-item-inner:hover:after {
  width: 100%;
  transform-origin: right;
  -moz-transform-origin: right;
  -webkit-transform-origin: right;
  -ms-transform-origin: right;
  -o-transform-origin: right;
  right: auto;
  left: 0;
}
.ct-fancybox-carousel.layout1 .fancybox-holder {
  text-align: center;
}
.ct-fancybox-carousel.layout2 .item-featured {
  position: relative;
  padding: 20px 20px 0;
  margin-bottom: 15px;
}
.ct-fancybox-carousel.layout2 .item-featured img {
  width: 220px;
  box-shadow: rgba(0, 0, 0, .1) 0 0 30px 0;
  border-radius: 500px;
  border-width: 10px;
  border-style: solid;
  border-color: #fff;
  border-image: initial;
  transition: all 0.5s ease 0s;
}
.ct-fancybox-carousel.layout2 .item-featured .ct-fcb-icon {
  position: absolute;
  bottom: 10px;
  right: 10px;
}
.ct-fancybox-carousel.layout2 .item-featured .ct-fcb-icon i {
  display: block;
  font-size: 40px;
  width: 70px;
  height: 70px;
  border-radius: 40px;
  text-align: center;
  line-height: 70px;
  background: #fff;
  color: #dc0008;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, .2);
}
.ct-fancybox-carousel.layout2 .item-featured:hover img {
  border: 10px solid #dc0008;
}
.ct-fancybox-carousel.layout2 .fancybox-holder {
  text-align: center;
}
.ct-fancybox-carousel.layout2 .fancybox-title {
  font-weight: 500;
  font-size: 20px;
  line-height: 32px;
  margin-bottom: 5px;
}
.ct-fancybox-carousel.layout2 .fancybox-content {
  line-height: 28px;
  margin-bottom: 24px;
}
.ct-fancybox-carousel.layout3 .ct-fcb-icon {
  color: #d2151e;
  display: block;
  margin-bottom: 20px;
}
.ct-fancybox-carousel.layout3 .ct-fcb-icon i {
  font-size: 70px;
  line-height: 70px;
}
.ct-fancybox-carousel.layout3 .fancybox-title {
  letter-spacing: 0.03em;
  font-size: 20px;
  font-weight: 400;
  color: #000;
  line-height: 32px;
}
.ct-fancybox-carousel.layout3 .fancybox-title:hover {
  color: #0086f0;
}
.ct-fancybox-carousel.layout3 .fancybox-title:hover a {
  color: #0086f0;
}
.ct-fancybox-carousel.layout3 .item-number {
  background-color: #eee;
  width: 50px;
  height: 50px;
  display: block;
  line-height: 50px;
  font-size: 22px;
  color: #000;
  border-radius: 50px;
  margin-left: auto;
  margin-right: auto;
  -webkit-transition: all 0.5s;
  -khtml-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.ct-fancybox-carousel.layout3 .fancybox-content {
  text-align: center;
}
.ct-fancybox-carousel.layout3 .grid-item-inner {
  background-color: #fff;
  padding: 15px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .05);
  -khtml-box-shadow: 0 5px 10px rgba(0, 0, 0, .05);
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, .05);
  -ms-box-shadow: 0 5px 10px rgba(0, 0, 0, .05);
  -o-box-shadow: 0 5px 10px rgba(0, 0, 0, .05);
  box-shadow: 0 5px 10px rgba(0, 0, 0, .05);
  text-align: center;
  position: relative;
  -webkit-transition: all 0.5s;
  -khtml-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
@media screen and (min-width: 992px) {
  .ct-fancybox-carousel.layout3 .grid-item-inner {
    padding: 40px 45px;
  }
}
.ct-fancybox-carousel.layout3 .grid-item-inner:hover {
  -webkit-transform: translateY(-15px);
  -khtml-transform: translateY(-15px);
  -moz-transform: translateY(-15px);
  -ms-transform: translateY(-15px);
  -o-transform: translateY(-15px);
  transform: translateY(-15px);
}
.ct-fancybox-carousel.layout3 .grid-item-inner:hover .fancybox-title a {
  color: #dc0008;
}
.ct-fancybox-carousel.layout3 .grid-item-inner:hover .item-number {
  color: #fff;
  background-color: #0086f0;
}
.ct-fancybox-carousel.layout4 .owl-stage-outer {
  overflow: inherit;
}
.ct-fancybox-carousel.layout4 .owl-item {
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
  opacity: 0.5;
}
.ct-fancybox-carousel.layout4 .owl-item.active {
  opacity: 1;
}
.ct-fancybox-carousel.layout4 .item-featured {
  position: relative;
  margin-bottom: 20px;
}
.ct-fancybox-carousel.layout4 .item-featured .ct-fcb-icon {
  background: #dc0008;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 60px;
  line-height: 65px;
  text-align: center;
  z-index: 1;
  font-size: 30px;
  color: #fff;
}
.ct-fancybox-carousel.layout4 .item-featured .ct-fcb-icon i {
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
}
.ct-fancybox-carousel.layout4 .item-featured .ct-fcb-icon:after {
  background: #dc0008;
  height: 100%;
  content: "";
  width: 100%;
  right: -10px;
  bottom: 0;
  position: absolute;
  z-index: -1;
  -webkit-transform: skew(19deg);
  -khtml-transform: skew(19deg);
  -moz-transform: skew(19deg);
  -ms-transform: skew(19deg);
  -o-transform: skew(19deg);
  transform: skew(19deg);
}
.ct-fancybox-carousel.layout4 .fancybox-title {
  font-weight: 600;
}
.ct-fancybox-carousel.layout4 .fancybox-title a {
  color: #dc0008;
}
.ct-fancybox-carousel.layout4 .ct-fcb-more {
  height: 38px;
  line-height: 38px;
  padding-left: 25px;
  padding-right: 25px;
  background-color: #dc0008;
  font-size: 13px;
  color: #fff;
  display: inline-block;
  position: relative;
  overflow: hidden;
}
.ct-fancybox-carousel.layout4 .ct-fcb-more:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  opacity: 1;
  -webkit-transform: translate(-105%, 0);
  transform: translate(-105%, 0);
  border-right-width: 1px;
  border-right-style: solid;
  border-right-color: #fff;
  background-color: rgba(255, 255, 255, .5);
}
.ct-fancybox-carousel.layout4 .fancybox-content {
  margin-bottom: 20px;
}
.ct-fancybox-carousel.layout4 .ct-fancybox-item:hover .ct-fcb-more:before {
  opacity: 0;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
.ct-dowload {
  padding: 25px 25px 20px 20px;
  -webkit-border-radius: 4px;
  -khtml-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  background-color: #dc0008;
}
.ct-dowload .ct-post-title {
  color: #fff;
  margin-top: 0;
  margin-bottom: 20px;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
}
.ct-dowload ul {
  padding-left: 0;
  list-style: none;
}
.ct-dowload ul li + li {
  margin-top: 10px;
}
.ct-dowload ul li a {
  -webkit-border-radius: 4px;
  -khtml-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #232323;
  display: block;
  text-align: center;
  color: #fff;
}
.ct-dowload ul li a:hover {
  background-color: #fff;
  color: #dc0008;
}
.ct-dowload ul li i {
  display: inline-block;
}
.ct-pricing-layout1 {
  padding: 54px 40px 60px;
  background-color: #fff;
  text-align: center;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
}
.ct-pricing-layout1 .ct-pricing-title {
  margin-bottom: 38px;
  font-size: 35px;
}
.ct-pricing-layout1 .ct-pricing-title cite {
  font-size: 20px;
  line-height: inherit;
  font-style: normal;
}
.ct-pricing-layout1 .ct-pricing-meta {
  font-size: 55px;
  line-height: 1;
  color: #dc0008;
  letter-spacing: -0.03em;
  margin-bottom: 60px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .ct-pricing-layout1 .ct-pricing-meta {
    font-size: 45px;
  }
}
@media screen and (max-width: 991px) {
  .ct-pricing-layout1 .ct-pricing-meta {
    font-size: 45px;
  }
}
.ct-pricing-layout1 .ct-pricing-meta span {
  display: inline-block;
}
.ct-pricing-layout1 .ct-pricing-meta .ct-pricing-price span {
  color: #262626;
  letter-spacing: -15px;
  margin-left: -6px;
}
.ct-pricing-layout1 .ct-pricing-meta .ct-pricing-time {
  font-size: 18px;
  color: #262626;
  line-height: inherit;
}
.ct-pricing-layout1 .ct-pricing-content {
  list-style: none;
  margin: 0 0 72px;
  font-size: 15px;
}
.ct-pricing-layout1 .ct-pricing-content i {
  margin-right: 4px;
}
.ct-pricing-layout1 .ct-pricing-content li + li {
  margin-top: 15px;
}
.ct-pricing-layout1 .ct-pricing-button a {
  background-color: #fff1e5;
}
.ct-pricing-layout1 .ct-pricing-button i {
  font-size: 12px;
}
.ct-pricing-layout1.is-featured {
  -webkit-box-shadow: 0 10px 32px rgba(213, 213, 213, 0.53);
  -khtml-box-shadow: 0 10px 32px rgba(213, 213, 213, 0.53);
  -moz-box-shadow: 0 10px 32px rgba(213, 213, 213, 0.53);
  -ms-box-shadow: 0 10px 32px rgba(213, 213, 213, 0.53);
  -o-box-shadow: 0 10px 32px rgba(213, 213, 213, 0.53);
  box-shadow: 0 10px 32px rgba(213, 213, 213, 0.53);
}
.ct-pricing-layout1.is-featured .ct-pricing-button a {
  background-color: #dc0008;
  color: #fff;
}
.ct-pricing-layout1.is-featured .ct-pricing-button a:before {
  background: rgba(0, 0, 0, );
}
.ct-pricing-layout1.is-featured .ct-pricing-button a:after {
  background: ;
}
.ct-contact-info .ct-contact-title {
  font-size: 25px;
  font-weight: bold;
  color: #272e33;
}
.ct-contact-info .ct-contact-info-item {
  font-size: 15px;
  position: relative;
  padding-left: 35px;
  line-height: 1.7em;
  margin-bottom: 25px;
}
.ct-contact-info .ct-contact-info-item:last-child {
  margin-bottom: 0;
}
.ct-contact-info .ct-contact-info-item i {
  color: #dc0008;
  display: inline-block;
  position: absolute;
  left: 0;
}
.ct-contact-info .type-email .ct-contact-info-content {
  overflow: hidden;
  word-wrap: break-word;
}
.ct-contact-info.layout1 .ct-contact-info-content {
  margin-bottom: 22px;
  color: #808258;
}
.ct-contact-info.layout1 .ct-contact-info-content i {
  font-size: 22px;
  color: inherit;
  top: 8px;
}
.ct-contact-info.layout1 .ct-contact-info-content label {
  text-transform: uppercase;
  display: block;
  color: inherit;
}
.ct-contact-info.layout1 .ct-contact-info-content a {
  color: inherit;
}
.ct-contact-info.layout2 .ct-contact-info-inner {
  background-color: #fff;
  border: 1px solid rgba(255, 255, 255, .15);
  -webkit-border-radius: 4px;
  -khtml-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  padding: 20px;
  position: relative;
  margin-bottom: 15px;
  padding-bottom: 5px;
  overflow: hidden;
}
.ct-contact-info.layout2 .ct-contact-info-inner:hover .ct-icon i {
  transform: scale(1.5) rotate(20deg);
  -webkit-transform: scale(1.5) rotate(20deg);
  -moz-transform: scale(1.5) rotate(20deg);
  -o-transform: scale(1.5) rotate(20deg);
  -ms-transform: scale(1.5) rotate(20deg);
}
.ct-contact-info.layout2 .ct-contact-title {
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 10px;
  font-family: Poppins, sans-serif;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.ct-contact-info.layout2 .ct-contact-info-item {
  margin-bottom: 15px;
  padding-left: 0;
  color: #808258;
  font-weight: 400;
  font-size: 13px;
}
.ct-contact-info.layout2 .ct-contact-info-item a, .ct-contact-info.layout2 .ct-contact-info-item i {
  color: #808258;
}
.ct-contact-info.layout2 .ct-icon {
  bottom: -10px;
  opacity: 0.08;
  position: absolute;
  right: 0;
  width: auto;
  z-index: 2;
}
.ct-contact-info.layout2 .ct-icon i {
  color: #000;
  font-size: 90px;
  transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
}
.ct-contact-info.layout3 .ct-contact-info-inner {
  background-color: rgba(255, 255, 255, .05);
  border: 1px solid #505050;
  font-size: 14px;
  padding: 25px;
  -webkit-border-radius: 4px;
  -khtml-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
}
.ct-contact-info.layout3 .ct-contact-title {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
}
.ct-contact-info.layout3 .ct-contact-title i {
  font-size: 20px;
  color: #dc0008;
  display: inline-block;
  margin-right: 15px;
}
.ct-contact-info.layout3 .ct-contact-title img {
  max-width: 40px;
  min-height: 40px;
}
.ct-contact-info.layout3 .ct-contact-info-item {
  padding-left: 0;
}
.ct-contact-info.layout3 .ct-contact-info-item.type-email {
  margin-bottom: 5px;
}
.ct-contact-info.layout3 .ct-contact-info-item.type-phone {
  margin-bottom: 5px;
}
.ct-contact-info.layout4 .ct-contact-info-inner {
  border: 1px solid #eee;
  -webkit-border-radius: 4px;
  -khtml-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  padding: 30px;
}
.ct-contact-info.layout4 .ct-contact-title {
  font-weight: 500;
  font-size: 28px;
  line-height: 35px;
  margin-bottom: 5px;
}
.ct-contact-info.layout4 .ct-excerpt {
  color: #808258;
  font-size: 16px;
  line-height: 1.86;
  margin-bottom: 25px;
}
.ct-contact-info.layout4 .ct-contact-info-item {
  margin-bottom: 30px;
  padding-left: 60px;
  font-size: 16px;
}
.ct-contact-info.layout4 .ct-contact-info-item i {
  top: 4px;
  left: 0;
  font-size: 15px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(128, 130, 88, 0.5);
  -webkit-border-radius: 2px;
  -khtml-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  border-radius: 2px;
  text-align: center;
  line-height: 38px;
}
.ct-contact-info.layout4 .ct-contact-info-item label {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #232323;
  font-family: Poppins, sans-serif;
  margin-bottom: 5px;
}
.ct-contact-info.layout4 .ct-contact-info-item a {
  color: #808258;
}
.ct-contact-info.layout4 .list-socials {
  padding-left: 0;
  list-style: none;
}
.ct-contact-info.layout4 .list-socials li {
  display: inline-block;
  font-size: 12px;
  padding: 0;
}
.ct-contact-info.layout4 .list-socials li a {
  background-color: #dc0008;
  border: 1px solid rgba(255, 255, 255, .05);
  color: #fff;
  display: block;
  font-size: 14px;
  height: 35px;
  line-height: 34px;
  padding: 0;
  width: 35px;
  text-align: center;
}
.ct-contact-info.layout4 .list-socials li a:hover {
  background-color: #fff;
  color: #232323;
}
.ct-contact-info2 .ct-fancybox-inner {
  background-color: rgba(255, 255, 255, .05);
  border: 1px solid #505050;
  padding: 25px;
  font-size: 14px;
  padding: 20px;
  -webkit-border-radius: 4px;
  -khtml-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
}
.ct-contact-info2 .ct-fancybox-inner label {
  font-size: 18px;
  line-height: 24px;
  display: block;
  font-weight: 600;
  margin-bottom: 15px;
}
.ct-contact-info2 .ct-fancybox-inner label i {
  font-size: 25px;
  position: relative;
  top: 5px;
  display: inline-block;
  text-align: left;
  width: 40px;
  color: #dc0008;
}
.ct-contact-info2 .info-row {
  margin-bottom: 25px;
}
.ct-contact-info2 .info-row:last-child {
  margin-bottom: 0;
}
.ct-contact-info2 .info-row.info-row1 label i {
  color: #dc0008;
}
.ct-contact-info2 .info-row.info-row2 label:after {
  content: "";
  width: 50px;
  height: 1px;
  background: #fff;
  display: inline-block;
  margin-bottom: 5px;
  margin-left: 5px;
  opacity: 0.8;
}
.ct-contact-info2 .info-row.info-row2 label i {
  color: #f8f8f8;
  width: auto;
  font-size: 20px;
  margin-right: 5px;
  height: auto;
  line-height: initial;
  position: relative;
  top: 1px;
}
.vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title {
  background-color: rgba(35, 35, 35, 0.06);
  color: #232323;
}
.vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title {
  background-color: #dc0008;
  color: #808258;
}
.ct-service-list ul {
  padding-left: 0;
  list-style: none;
}
.ct-service-list ul li {
  padding: 5px 5px 5px 30px;
  position: relative;
  font-size: 15px;
}
.ct-service-list ul li:before {
  position: absolute;
  top: 5px;
  left: 0;
  color: #dc0008;
  content: "\e64d";
  font-family: themify;
  font-size: 15px;
}
.ct-contact-form.layout1 {
  background-color: #f7f9fb;
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  padding: 30px;
  position: sticky;
  top: 100px;
}
.ct-contact-form.layout1.ct-box-shadow {
  -webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, .3);
  -khtml-box-shadow: 0 0 30px 0 rgba(0, 0, 0, .3);
  -moz-box-shadow: 0 0 30px 0 rgba(0, 0, 0, .3);
  -ms-box-shadow: 0 0 30px 0 rgba(0, 0, 0, .3);
  -o-box-shadow: 0 0 30px 0 rgba(0, 0, 0, .3);
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, .3);
}
@media screen and (min-width: 992px) {
  .ct-contact-form.layout1.ct-position-top {
    position: relative;
    top: -55px;
  }
}
.ct-contact-form.layout1 br {
  display: none;
}
.ct-contact-form.layout1 .ct-el-title {
  font-weight: 500;
  font-size: 28px;
  line-height: 35px;
  margin-bottom: 15px;
}
.ct-contact-form.layout1 .col-phone .wpcf7-form-control-wrap:before {
  content: "\e621";
}
.ct-contact-form.layout1 .wpcf7-form-control-wrap {
  margin-bottom: 30px;
  position: relative;
}
.ct-contact-form.layout1 .wpcf7-form-control-wrap:before {
  font-family: 'themify';
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 14px;
  color: #dc0008;
}
.ct-contact-form.layout1 .wpcf7-form-control-wrap.your-name:before {
  content: "\e602";
}
.ct-contact-form.layout1 .wpcf7-form-control-wrap.your-email:before {
  content: "\e75a";
}
.ct-contact-form.layout1 .wpcf7-form-control-wrap.your-subject:before, .ct-contact-form.layout1 .wpcf7-form-control-wrap.your-message:before {
  top: 17px;
  content: "\e6c7";
}
.ct-contact-form.layout1 .wpcf7-form-control-wrap {
  margin-bottom: 30px;
  position: relative;
}
.ct-contact-form.layout1 .wpcf7-form-control:not(.wpcf7-submit) {
  padding-left: 35px;
  height: 50px;
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  border: 1px solid rgba(128, 130, 88, 0.15);
  background-color: #fff;
  color: #808258;
  font-weight: 400;
}
.ct-contact-form.layout1 .wpcf7-form-control:not(.wpcf7-submit):focus {
  border-color: #dc0008;
}
.ct-contact-form.layout1 .wpcf7-form-control:not(.wpcf7-submit)::-webkit-input-placeholder {
  color: #808258;
}
.ct-contact-form.layout1 .wpcf7-form-control:not(.wpcf7-submit)::-moz-placeholder {
  color: #808258;
}
.ct-contact-form.layout1 .wpcf7-form-control:not(.wpcf7-submit)::-ms-input-placeholder {
  color: #808258;
}
.ct-contact-form.layout1 .wpcf7-form-control:not(.wpcf7-submit)::-moz-placeholder {
  color: #808258;
}
.ct-contact-form.layout1 .wpcf7-form-control.wpcf7-textarea {
  height: 155px;
  padding-top: 22px;
}
.ct-contact-form.layout1 .wpcf7-form-control.wpcf7-acceptance {
  padding-left: 0;
  padding-right: 0;
  border: none;
  background-color: transparent;
}
.ct-contact-form.layout1 .wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item {
  margin-left: 0;
}
.ct-contact-form.layout1 .wpcf7-form-control.wpcf7-radio {
  padding-left: 0;
  padding-right: 0;
  border: none;
  background-color: transparent;
}
.ct-contact-form.layout1 .wpcf7-form-control.wpcf7-radio .captcha-image {
  display: block;
}
.ct-contact-form.layout1 .wpcf7-submit {
  font-size: 18px;
  font-weight: 600;
  display: block;
  border: none;
  width: 100%;
  text-align: center;
  -webkit-border-radius: 5px;
  -khtml-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  padding: 0px 35px;
  background-color: #dc0008;
  color: #fff;
  text-transform: capitalize;
}
.ct-contact-form.layout1 .wpcf7-submit:hover {
  background-color: #232323;
  color: #fff;
}
.ct-contact-form.layout1 .wpcf7-validation-errors, .ct-contact-form.layout1 .wpcf7-mail-sent-ng {
  padding: 10px 15px;
  color: red;
  background-color: #fff;
}
.ct-contact-form.layout1 .wpcf7-mail-sent-ok {
  color: green;
}
.ct-contact-form.layout2 {
  padding: 30px 25px;
  -webkit-border-radius: 4px;
  -khtml-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  background-color: #fff;
}
.ct-contact-form.layout2 br {
  display: none;
}
.ct-contact-form.layout2 .col-phone .wpcf7-form-control-wrap:before {
  content: "\e621";
}
.ct-contact-form.layout2 .wpcf7-form-control-wrap {
  margin-bottom: 30px;
  position: relative;
}
.ct-contact-form.layout2 .wpcf7-form-control-wrap:before {
  font-family: 'themify';
  position: absolute;
  top: 12px;
  left: 0px;
  font-size: 14px;
  color: #dc0008;
}
.ct-contact-form.layout2 .wpcf7-form-control-wrap.your-name:before {
  content: "\e602";
}
.ct-contact-form.layout2 .wpcf7-form-control-wrap.your-email:before {
  content: "\e75a";
}
.ct-contact-form.layout2 .wpcf7-form-control-wrap.your-subject:before, .ct-contact-form.layout2 .wpcf7-form-control-wrap.your-message:before {
  top: 17px;
  content: "\e6c7";
}
.ct-contact-form.layout2 .wpcf7-form-control:not(.wpcf7-submit) {
  border: none;
  padding-left: 35px;
  border-bottom: 1px solid #e1e6eb;
  background-color: transparent;
}
.ct-contact-form.layout2 .wpcf7-form-control:not(.wpcf7-submit):focus {
  border-bottom-color: #dc0008;
  background-color: transparent;
}
.ct-contact-form.layout2 .wpcf7-form-control:not(.wpcf7-submit)::-webkit-input-placeholder {
  color: #6e819e;
  font-weight: 400;
  font-size: 14px;
}
.ct-contact-form.layout2 .wpcf7-form-control:not(.wpcf7-submit)::-moz-placeholder {
  color: #6e819e;
  font-weight: 400;
  font-size: 14px;
}
.ct-contact-form.layout2 .wpcf7-form-control:not(.wpcf7-submit)::-ms-input-placeholder {
  color: #6e819e;
  font-weight: 400;
  font-size: 14px;
}
.ct-contact-form.layout2 .wpcf7-form-control:not(.wpcf7-submit)::-moz-placeholder {
  color: #6e819e;
  font-weight: 400;
  font-size: 14px;
}
.ct-contact-form.layout2 .wpcf7-form-control.wpcf7-submit {
  display: block;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
}
.ct-contact-form.layout2 .wpcf7-form-control.wpcf7-submit:hover {
  text-decoration: underline;
}
.ct-contact-form.layout2 .wpcf7-form-control.wpcf7-acceptance {
  padding-left: 0;
  padding-right: 0;
  border: none;
  background-color: transparent;
}
.ct-contact-form.layout2 .wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item {
  margin-left: 0;
}
.ct-contact-form.layout2 .wpcf7-form-control.wpcf7-radio {
  padding-left: 0;
  padding-right: 0;
  border: none;
  background-color: transparent;
}
.ct-contact-form.layout2 .wpcf7-form-control.wpcf7-radio .captcha-image {
  display: block;
}
.ct-contact-form.layout2 .wpcf7-response-output {
  margin-top: 30px;
  padding: 10px 15px;
  text-align: center;
}
.ct-contact-form.layout2 .wpcf7-validation-errors, .ct-contact-form.layout2 .wpcf7-mail-sent-ng {
  color: red;
  border: 1px solid red;
}
.ct-contact-form.layout2 .ct-description {
  margin-bottom: 15px;
}
.ct-contact-form.layout2 .wpcf7-mail-sent-ok {
  color: green;
  border: 1px solid green;
}
.ct-contact-form.layout3 br {
  display: none;
}
.ct-contact-form.layout3 .wpcf7-form-control {
  margin-bottom: 30px;
  line-height: 56px;
  height: 56px;
}
.ct-contact-form.layout3 .wpcf7-form-control:not(.wpcf7-submit) {
  border: none;
  padding-left: 35px;
  background-color: #fff;
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  border: 1px solid #e1e6eb;
}
.ct-contact-form.layout3 .wpcf7-form-control:not(.wpcf7-submit):focus {
  border: 1px solid #dc0008;
  background-color: #fff;
}
.ct-contact-form.layout3 .wpcf7-form-control:not(.wpcf7-submit)::-webkit-input-placeholder {
  color: #6e819e;
  font-weight: 400;
  font-size: 14px;
}
.ct-contact-form.layout3 .wpcf7-form-control:not(.wpcf7-submit)::-moz-placeholder {
  color: #6e819e;
  font-weight: 400;
  font-size: 14px;
}
.ct-contact-form.layout3 .wpcf7-form-control:not(.wpcf7-submit)::-ms-input-placeholder {
  color: #6e819e;
  font-weight: 400;
  font-size: 14px;
}
.ct-contact-form.layout3 .wpcf7-form-control:not(.wpcf7-submit)::-moz-placeholder {
  color: #6e819e;
  font-weight: 400;
  font-size: 14px;
}
.ct-contact-form.layout3 .wpcf7-form-control.wpcf7-submit {
  border: none;
}
.ct-contact-form.layout3 .wpcf7-form-control.wpcf7-acceptance {
  padding-left: 0;
  padding-right: 0;
  border: none;
  background-color: transparent;
}
.ct-contact-form.layout3 .wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item {
  margin-left: 0;
}
.ct-contact-form.layout3 .wpcf7-form-control.wpcf7-radio {
  padding-left: 0;
  padding-right: 0;
  border: none;
  background-color: transparent;
}
.ct-contact-form.layout3 .wpcf7-form-control.wpcf7-radio .captcha-image {
  display: block;
}
.ct-contact-form.layout3 .ct-contact-form-inner {
  position: relative;
  z-index: 222;
}
.ct-contact-form.layout3 .list-input .wpcf7-form-control-wrap .wpcf7-number {
  padding-right: 0;
}
.ct-contact-form.layout3 .list-input .wpcf7-form-control.wpcf7-submit {
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  width: 100%;
}
.ct-countdown {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 -15px;
}
.ct-countdown .countdown-item {
  width: 25%;
  padding: 0 15px;
}
.ct-countdown .countdown-item .countdown-item-inner {
  display: inline-block;
  text-align: center;
}
.ct-countdown .countdown-item span {
  display: block;
}
.ct-countdown .countdown-item .countdown-amount {
  font-size: 80px;
  line-height: 1;
  color: #dc0008;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
@media screen and (max-width: 991px) {
  .ct-countdown .countdown-item .countdown-amount {
    font-size: 45px;
  }
}
.ct-countdown .countdown-item .countdown-period {
  font-size: 24px;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media screen and (max-width: 991px) {
  .ct-countdown .countdown-item .countdown-period {
    font-size: 18px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .ct-countdown .countdown-item {
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .ct-countdown .countdown-item {
    margin-top: 35px;
    text-align: center;
  }
}
@media screen and (max-width: 575px) {
  .ct-countdown .countdown-item {
    width: 100%;
  }
}
.ct-grid-team1 .team-featured img {
  width: 100%;
}
.ct-grid-team1 .team-title {
  font-size: 20px;
  margin-top: 0;
  letter-spacing: 0.03em;
  margin-bottom: 10px;
  font-weight: 600;
}
.ct-grid-team1 .team-title a {
  color: #232323;
}
.ct-grid-team1 .team-position {
  color: #dc0008;
  display: block;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.ct-grid-team1 .team-social {
  -webkit-transition: all 0.8s;
  -khtml-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -ms-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
  display: block;
  margin-bottom: -55px;
}
.ct-grid-team1 .team-social a {
  display: inline-block;
  padding: 0;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(0, 0, 0, .2);
  border-radius: 4px;
  font-size: 16px;
  line-height: 30px;
  padding: 0;
}
.ct-grid-team1 .team-holder {
  position: absolute;
  bottom: 0px;
  background: #fff;
  width: 100%;
  padding: 20px 30px;
  text-align: center;
  -webkit-transition: all 0.8s;
  -khtml-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -ms-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}
.ct-grid-team1 .team-holder:after {
  content: "";
  width: 15px;
  height: 15px;
  background: #fff;
  position: absolute;
  top: -7px;
  transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}
.ct-grid-team1 .ct-team-item-inner {
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 5px 5px 30px 0 rgba(0, 0, 0, .1);
  transition: all 0.5s;
}
@media screen and (max-width: 991px) {
  .ct-grid-team1 .ct-team-item-inner {
    margin-bottom: 30px;
  }
}
.ct-grid-team1 .ct-team-item-inner:hover .team-title a {
  color: #fff;
}
.ct-grid-team1 .ct-team-item-inner:hover .team-position {
  color: #fff;
  opacity: 0.6;
}
.ct-grid-team1 .ct-team-item-inner:hover .team-social {
  margin-bottom: 0;
}
.ct-grid-team1 .ct-team-item-inner:hover .team-social a {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .2);
}
.ct-grid-team1 .ct-team-item-inner:hover .team-holder {
  bottom: 0;
  background: #dc0008;
  -webkit-transition: all 0.8s;
  -khtml-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -ms-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}
.ct-grid-team1 .ct-team-item-inner:hover .team-holder:after {
  background: #dc0008;
}
.ct-grid-team2 .ct-team-item-inner {
  position: relative;
  transition: all 0.5s;
  z-index: 1;
  border-radius: 4px;
  box-shadow: 5px 5px 30px 0 rgba(0, 0, 0, .1);
}
@media screen and (max-width: 991px) {
  .ct-grid-team2 .ct-team-item-inner {
    margin-bottom: 30px;
  }
}
.ct-grid-team2 .ct-team-item-inner:after {
  content: "";
  transition: all 0.5s;
  position: absolute;
  background: #fff;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.ct-grid-team2 .ct-team-item-inner:hover .team-holder {
  bottom: -40px;
  transition: all 0.5s;
  opacity: 1;
}
.ct-grid-team2 .ct-team-item-inner:hover .team-featured {
  top: -40px;
  transition: all 0.5s;
}
.ct-grid-team2 .ct-team-item-inner:hover:after {
  height: calc(100% + 80px);
  bottom: -40px;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, .2);
}
.ct-grid-team2 .team-featured {
  margin-bottom: 30px;
  transition: all 0.5s;
  top: 0;
  background-color: #fff;
  position: relative;
}
.ct-grid-team2 .team-featured img {
  width: 100%;
}
.ct-grid-team2 .team-holder {
  bottom: 0;
  position: absolute;
  background: #fff;
  width: 100%;
  display: block;
  padding: 20px 20px;
  transition: all 0.5s;
  opacity: 0;
}
.ct-grid-team2 .team-holder .team-title {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 26px;
  margin-bottom: 5px;
}
.ct-grid-team2 .team-holder .team-title a {
  color: #232323;
}
.ct-grid-team2 .team-holder .team-position {
  display: block;
  color: #000;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  opacity: 0.5;
  margin-bottom: 10px;
}
.ct-grid-team2 .team-holder .team-social {
  display: inline-block;
  margin: 0 -3px;
  padding: 0;
  text-align: center;
}
.ct-grid-team2 .team-holder .team-social a i {
  width: 34px;
  height: 34px;
  line-height: 34px;
  padding: 0;
  font-weight: bold;
  color: #fff;
  -webkit-border-radius: 2px;
  -khtml-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  border-radius: 2px;
  font-size: 14px;
}
.ct-grid-team2 .team-holder .team-social a i.fa-facebook {
  background-color: #3b5998;
}
.ct-grid-team2 .team-holder .team-social a i.fa-twitter {
  background-color: #0e91e3;
}
.ct-grid-team2 .team-holder .team-social a i.fa-pinterest {
  background-color: #d2151e;
}
.ct-grid-team2 .team-holder .team-social a i.fa-skype {
  background-color: #00bcf2;
}
.ct-grid-team3 .grid-item {
  margin-bottom: 30px;
}
.ct-grid-team3 .team-featured img {
  width: 100%;
}
.ct-grid-team3 .wp-team-title {
  position: unset;
}
.ct-grid-team3 .wp-team-title .team-title {
  background-color: #dc0008;
  font-weight: 500;
  bottom: 0;
  position: absolute;
  color: #fff;
  display: block;
  left: 0;
  font-size: 14px;
  letter-spacing: 3px;
  height: 100%;
  transition: all 0.8s;
  writing-mode: vertical-rl;
  top: 0;
  margin: 0;
  transform-origin: left;
  text-align: right;
  line-height: 24px;
  text-transform: uppercase;
  filter: opacity(0.8);
  -ms-filter: opacity(0.8);
}
.ct-grid-team3 .wp-team-title .team-title a {
  color: #fff;
  display: block;
  padding: 25px 10px;
}
.ct-grid-team3 .team-social {
  background-color: #dc0008;
  border-radius: 20px 0 0 20px;
  top: 50%;
  -webkit-transition: all 0.8s;
  -khtml-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -ms-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
  -webkit-transform: translateY(-50%);
  -khtml-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  position: absolute;
  opacity: 0;
  z-index: 2;
  right: 0;
  padding: 15px;
  width: auto;
  left: auto;
  margin-right: -60px;
}
.ct-grid-team3 .team-social .inner-social {
  display: inline-block;
  margin: 0 -3px;
  padding: 0;
  text-align: center;
}
.ct-grid-team3 .team-social .inner-social li {
  display: block;
  margin: 3px 0;
}
.ct-grid-team3 .team-social .inner-social a {
  vertical-align: middle;
  padding: 7px 5px;
  height: auto;
  width: auto;
  -webkit-border-radius: 2px;
  -khtml-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  border-radius: 2px;
  color: #fff;
  font-size: 16px;
}
.ct-grid-team3 .team-social .inner-social a:hover {
  background-color: #e7232d;
}
.ct-grid-team3 .ct-team-item-inner {
  overflow: hidden;
  position: relative;
}
.ct-grid-team3 .ct-team-item-inner:hover .team-social {
  opacity: 1;
  margin-right: 0;
}
.ct-grid-team4 .grid-item-inner {
  background: #000;
  text-align: center;
  box-shadow: 0 0 3px rgba(0, 0, 0, .3);
  overflow: hidden;
  position: relative;
  margin-bottom: 30px;
}
.ct-grid-team4 .grid-item-inner .dlab-media {
  background-color: #fff;
  position: relative;
  overflow: hidden;
}
.ct-grid-team4 .grid-item-inner .dlab-media img {
  -webkit-transition: all 0.55s ease 0s;
  -khtml-transition: all 0.55s ease 0s;
  -moz-transition: all 0.55s ease 0s;
  -ms-transition: all 0.55s ease 0s;
  -o-transition: all 0.55s ease 0s;
  transition: all 0.55s ease 0s;
}
@media screen and (max-width: 575px) {
  .ct-grid-team4 .grid-item-inner .dlab-media img {
    width: 100%;
  }
}
.ct-grid-team4 .grid-item-inner .dlab-info {
  padding: 5px 10px 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: rotate(45deg) translate(-50%, -50%);
  transform-origin: 0 0;
  -webkit-transition: all 0.55s ease 0s;
  -khtml-transition: all 0.55s ease 0s;
  -moz-transition: all 0.55s ease 0s;
  -ms-transition: all 0.55s ease 0s;
  -o-transition: all 0.55s ease 0s;
  transition: all 0.55s ease 0s;
}
.ct-grid-team4 .grid-item-inner .dlab-info:before, .ct-grid-team4 .grid-item-inner .dlab-info:after {
  content: "";
  width: 400px;
  height: 2px;
  background: #dc0008;
  position: absolute;
  top: 0;
  left: 10px;
  transform: translateX(100%);
  -webkit-transition: all 0.55s ease 0s;
  -khtml-transition: all 0.55s ease 0s;
  -moz-transition: all 0.55s ease 0s;
  -ms-transition: all 0.55s ease 0s;
  -o-transition: all 0.55s ease 0s;
  transition: all 0.55s ease 0s;
}
.ct-grid-team4 .grid-item-inner .dlab-info:after {
  top: auto;
  left: auto;
  bottom: 0;
  right: 10px;
  transform: translateX(-100%);
}
.ct-grid-team4 .grid-item-inner .dlab-info .dlab-title {
  font-size: 20px;
  font-weight: 600;
  color: #232323;
  margin: 0 0 5px;
  line-height: 26px;
}
.ct-grid-team4 .grid-item-inner .dlab-info .dlab-title:before, .ct-grid-team4 .grid-item-inner .dlab-info .dlab-title:after {
  content: "";
  width: 2px;
  height: 300px;
  background: #dc0008;
  position: absolute;
  top: 10px;
  right: 0;
  transform: translateY(100%);
  -webkit-transition: all 0.55s ease 0s;
  -khtml-transition: all 0.55s ease 0s;
  -moz-transition: all 0.55s ease 0s;
  -ms-transition: all 0.55s ease 0s;
  -o-transition: all 0.55s ease 0s;
  transition: all 0.55s ease 0s;
}
.ct-grid-team4 .grid-item-inner .dlab-info .dlab-title a {
  color: #232323;
}
.ct-grid-team4 .grid-item-inner .dlab-info .dlab-title:after {
  top: auto;
  right: auto;
  bottom: 10px;
  left: 0;
  transform: translateY(-100%);
}
.ct-grid-team4 .grid-item-inner .dlab-info .dlab-position {
  display: block;
  padding: 5px 10px;
  background: #dc0008;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
  text-transform: capitalize;
}
.ct-grid-team4 .grid-item-inner:hover .dlab-info {
  opacity: 1;
}
.ct-grid-team4 .grid-item-inner:hover .dlab-info:before, .ct-grid-team4 .grid-item-inner:hover .dlab-info:after {
  transform: translate(0, 0);
  transition-delay: 0.15s;
}
.ct-grid-team4 .grid-item-inner:hover .dlab-title:before, .ct-grid-team4 .grid-item-inner:hover .dlab-title:after {
  transform: translate(0, 0);
}
.ct-grid-team4 .grid-item-inner:hover .dlab-media img {
  opacity: 0.5;
}
.ct-grid-team5 .team-featured {
  overflow: hidden;
  position: relative;
  margin-bottom: 23px;
}
.ct-grid-team5 .team-featured .team-social {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  width: 100%;
  height: 100%;
  flex-wrap: wrap;
  margin: 0;
  opacity: 0;
  transition: all 0.5s;
  padding: 0;
  text-align: center;
}
.ct-grid-team5 .team-featured .team-social li {
  width: 50%;
  position: relative;
  padding: 0;
  display: inline-block;
  font-size: 12px;
}
.ct-grid-team5 .team-featured .team-social li a {
  border-radius: 0;
  width: 100%;
  height: 100%;
  display: block;
  vertical-align: middle;
  font-size: 24px;
  color: #fff;
  padding: 30px;
  position: relative;
  transition: all 0.5s;
}
.ct-grid-team5 .team-featured .team-social li a i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.ct-grid-team5 .team-featured .team-social li:nth-child(1) a {
  top: -100%;
  background-color: #3b5998;
}
.ct-grid-team5 .team-featured .team-social li:nth-child(2) a {
  right: -100%;
  background-color: #1ea1f3;
}
.ct-grid-team5 .team-featured .team-social li:nth-child(3) a {
  left: -100%;
  background-color: #3396d1;
}
.ct-grid-team5 .team-featured .team-social li:nth-child(4) a {
  bottom: -100%;
  background-color: #00c6ff;
}
.ct-grid-team5 .team-featured:hover .team-social {
  opacity: 1;
}
.ct-grid-team5 .team-featured:hover .team-social li:nth-child(1) a {
  top: 0;
}
.ct-grid-team5 .team-featured:hover .team-social li:nth-child(2) a {
  right: 0;
}
.ct-grid-team5 .team-featured:hover .team-social li:nth-child(3) a {
  left: 0;
}
.ct-grid-team5 .team-featured:hover .team-social li:nth-child(4) a {
  bottom: 0;
}
.ct-grid-team5 .team-holder {
  text-align: center;
}
.ct-grid-team5 .team-holder .team-title {
  font-weight: 600;
  font-size: 22px;
  line-height: 32px;
  margin-bottom: 0;
}
.ct-grid-team5 .team-holder .team-title a {
  color: #232323;
}
.ct-grid-team5 .team-holder .team-position {
  font-size: 14px;
}
.team-wrapper {
  margin-top: 30px;
}
.team-wrapper .group-title {
  margin-bottom: 40px;
}
@media screen and (min-width: 992px) {
  .team-wrapper .group-title {
    padding-right: 150px;
  }
}
.team-wrapper .sub-title {
  font-size: 16px;
  font-weight: 500;
  color: #808258;
}
.team-wrapper .team-title {
  font-size: 50px;
  font-weight: bold;
}
@media screen and (max-width: 991px) {
  .team-wrapper .team-title {
    font-size: 40px;
  }
}
.team-wrapper .ct-line-color {
  width: 85px;
  height: 3px;
  display: block;
  content: "";
  margin-top: 25px;
  background-color: #dc0008;
}
.ct-team-carousel-layout1 .item-featured {
  overflow: hidden;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
}
.ct-team-carousel-layout1 .item-featured img {
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
}
.ct-team-carousel-layout1 .item-featured img:hover {
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.ct-team-carousel-layout1 .ct-team-item {
  padding-right: 18px;
  text-align: center;
}
.ct-team-carousel-layout1 .ct-team-item .ct-team-item-inner {
  position: relative;
}
.ct-team-carousel-layout1 .ct-team-item .ct-team-item-inner:before {
  position: absolute;
  content: "";
  display: block;
  background-color: rgba(128, 130, 88, 0.05);
  top: 18px;
  right: -18px;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.ct-team-carousel-layout1 .ct-team-item .team-holder {
  padding: 30px 0 30px 30px;
  text-align: center;
}
.ct-team-carousel-layout1 .ct-team-item .item-name {
  font-size: 22px;
  color: #232323;
  font-weight: 600;
  margin-bottom: 5px;
}
.ct-team-carousel-layout1 .ct-team-item .item-name a {
  color: #232323;
}
.ct-team-carousel-layout1 .ct-team-item .item-name a:hover {
  color: ;
}
.ct-team-carousel-layout1 .ct-team-item .item-position {
  font-size: 16px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 8px;
}
.ct-team-carousel-layout1 .ct-team-item .item-social a {
  font-size: 12px;
  height: 28px;
  line-height: 28px;
  width: 28px;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  margin: 5px;
  display: inline-block;
  color: #fff;
  background-color: #e2a73a;
  text-align: center;
}
.ct-team-carousel-layout1 .ct-team-item .item-social a:hover {
  background-color: #232323;
}
.ct-team-carousel-layout1 .owl-item {
  padding: 30px;
  text-align: center;
  border-radius: 10px;
  margin: 30px 0;
  transition: all 0.5s;
}
.ct-team-carousel-layout1 .owl-item.center {
  background-color: #fff;
  box-shadow: 5px 5px 20px 0 rgba(0, 0, 0, .1);
  transition: all 0.5s;
  transform: scale(1.05);
}
@media screen and (min-width: 992px) {
  .ct-team-carousel-layout1 .owl-nav {
    position: absolute;
    top: -100px;
    right: 0;
    margin-top: 0;
  }
}
.ct-team-carousel-layout1 .owl-nav .owl-prev, .ct-team-carousel-layout1 .owl-nav .owl-next {
  border-color: rgba(128, 130, 88, 0.2);
  color: rgba(128, 130, 88, 0.2);
}
.ct-team-carousel-layout1 .owl-nav .owl-prev:hover, .ct-team-carousel-layout1 .owl-nav .owl-next:hover {
  background-color: #dc0008;
  border-color: #dc0008;
  color: #fff;
}
.ct-team-carousel-layout1 .owl-dots .owl-dot {
  margin-left: 5px;
  margin-right: 5px;
  width: 10px;
  height: 6px;
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  background-color: rgba(128, 130, 88, 0.2);
}
.ct-team-carousel-layout1 .owl-dots .owl-dot.active {
  background: #dc0008;
  width: 20px;
}
.ct-team-carousel-layout2 .ct-team-item {
  text-align: center;
}
.ct-team-carousel-layout2 .item-featured {
  background-color: #fff;
  overflow: hidden;
  border-radius: 50%;
  position: relative;
}
.ct-team-carousel-layout2 .item-featured:before, .ct-team-carousel-layout2 .item-featured:after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 13px solid #e6e5e5;
  position: absolute;
  top: 0;
  left: 0;
}
.ct-team-carousel-layout2 .item-featured:after {
  border-color: #6a1a1f #e6e5e5 #e6e5e5 #6a1a1f !important;
  z-index: 1;
  transform: rotate(-10deg);
  -webkit-transition: all 0.8s linear 0ms;
  -khtml-transition: all 0.8s linear 0ms;
  -moz-transition: all 0.8s linear 0ms;
  -ms-transition: all 0.8s linear 0ms;
  -o-transition: all 0.8s linear 0ms;
  transition: all 0.8s linear 0ms;
}
.ct-team-carousel-layout2 .item-featured:hover:after {
  transform: rotate(350deg);
}
.ct-team-carousel-layout2 .item-info {
  padding: 35px 30px 0;
}
.ct-team-carousel-layout2 .item-name {
  font-size: 20px;
  font-weight: bold;
  color: #232323;
  position: relative;
  padding-bottom: 15px;
}
.ct-team-carousel-layout2 .item-name:after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background-color: #232323;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transition: all 0.8s linear 0ms;
  -khtml-transition: all 0.8s linear 0ms;
  -moz-transition: all 0.8s linear 0ms;
  -ms-transition: all 0.8s linear 0ms;
  -o-transition: all 0.8s linear 0ms;
  transition: all 0.8s linear 0ms;
  -webkit-transform: translateX(-50%);
  -khtml-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}
.ct-team-carousel-layout2 .item-name a {
  color: #232323;
}
.ct-team-carousel-layout2 .item-name:hover {
  color: #6a1a1f;
}
.ct-team-carousel-layout2 .item-name:hover a {
  color: #6a1a1f;
}
.ct-team-carousel-layout2 .item-name:hover:after {
  background-color: #6a1a1f;
}
.ct-team-carousel-layout2 .item-position {
  color: #808258;
  font-size: 16px;
  font-style: italic;
  margin-bottom: 10px;
}
.ct-team-carousel-layout2 .item-social a {
  width: 28px;
  height: 28px;
  display: inline-block;
  background-color: #6a1a1f;
  padding: 0;
  border-radius: 40px;
  font-size: 12px;
  line-height: 28px;
  color: #fff;
  -webkit-transition: all 0.8s linear 0ms;
  -khtml-transition: all 0.8s linear 0ms;
  -moz-transition: all 0.8s linear 0ms;
  -ms-transition: all 0.8s linear 0ms;
  -o-transition: all 0.8s linear 0ms;
  transition: all 0.8s linear 0ms;
}
.ct-team-carousel-layout2 .item-social a:hover {
  background-color: #232323;
  color: #fff;
}
.ct-team-carousel-layout3 .item-featured {
  overflow: hidden;
}
.ct-team-carousel-layout3 .item-featured img {
  -webkit-transition: all 0.55s ease 0s;
  -khtml-transition: all 0.55s ease 0s;
  -moz-transition: all 0.55s ease 0s;
  -ms-transition: all 0.55s ease 0s;
  -o-transition: all 0.55s ease 0s;
  transition: all 0.55s ease 0s;
  filter: grayscale(0);
  -webkit-filter: grayscale(0);
  -moz-filter: grayscale(0);
  -o-filter: grayscale(0);
  -ms-filter: grayscale(0);
}
.ct-team-carousel-layout3 .item-info {
  padding: 40px 20px 20px;
  background-color: #fff;
  position: relative;
}
.ct-team-carousel-layout3 .item-social {
  position: absolute;
  top: -15px;
  left: -1px;
  padding: 5px 20px;
  background-color: #d2151e;
}
.ct-team-carousel-layout3 .item-social:after {
  background-color: inherit;
  content: "";
  height: 100%;
  position: absolute;
  right: -10px;
  top: 0;
  -webkit-transform: skewX(20deg);
  -khtml-transform: skewX(20deg);
  -moz-transform: skewX(20deg);
  -ms-transform: skewX(20deg);
  -o-transform: skewX(20deg);
  transform: skewX(20deg);
  width: 20px;
  z-index: 1;
}
.ct-team-carousel-layout3 .item-social a {
  display: inline-block;
  margin-left: 8px;
  margin-right: 8px;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
}
.ct-team-carousel-layout3 .item-name {
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  color: #232323;
  margin-bottom: 0;
  margin-top: 0;
}
.ct-team-carousel-layout3 .item-name a {
  color: inherit;
}
.ct-team-carousel-layout3 .item-name:hover a {
  color: #dc0008;
}
.ct-team-carousel-layout3 .item-position {
  font-family: Poppins, sans-serif;
}
.ct-team-carousel-layout3 .ct-team-item {
  position: relative;
  margin-bottom: 35px;
  margin-top: 35px;
  overflow: hidden;
  -webkit-transition: all 0.55s ease 0s;
  -khtml-transition: all 0.55s ease 0s;
  -moz-transition: all 0.55s ease 0s;
  -ms-transition: all 0.55s ease 0s;
  -o-transition: all 0.55s ease 0s;
  transition: all 0.55s ease 0s;
}
@media screen and (min-width: 992px) {
  .ct-team-carousel-layout3 .ct-team-item {
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.1);
  }
}
.ct-team-carousel-layout3 .ct-team-item:hover {
  -webkit-transform: translateY(-15px);
  -khtml-transform: translateY(-15px);
  -moz-transform: translateY(-15px);
  -ms-transform: translateY(-15px);
  -o-transform: translateY(-15px);
  transform: translateY(-15px);
}
.ct-team-carousel-layout3 .ct-team-item:hover .item-featured img {
  filter: grayscale(1);
  -webkit-filter: grayscale(1);
  -moz-filter: grayscale(1);
  -o-filter: grayscale(1);
  -ms-filter: grayscale(1);
}
.ct-team-carousel-layout3 .owl-item {
  opacity: 0;
  -webkit-transition: all 0.55s ease 0s;
  -khtml-transition: all 0.55s ease 0s;
  -moz-transition: all 0.55s ease 0s;
  -ms-transition: all 0.55s ease 0s;
  -o-transition: all 0.55s ease 0s;
  transition: all 0.55s ease 0s;
}
.ct-team-carousel-layout3 .owl-item.active {
  opacity: 1;
}
@media screen and (min-width: 992px) {
  .ct-team-carousel-layout3 .owl-stage-outer {
    padding-left: 35px;
    padding-right: 35px;
    margin-left: -35px;
    margin-right: -35px;
  }
}
.ct-team-carousel-layout4 .item-featured {
  overflow: hidden;
  -webkit-border-radius: 5px;
  -khtml-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 20px;
}
.ct-team-carousel-layout4 .item-featured img {
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
}
.ct-team-carousel-layout4 .item-featured img:hover {
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.ct-team-carousel-layout4 .ct-team-item {
  text-align: center;
}
.ct-team-carousel-layout4 .ct-team-item .ct-team-item-inner {
  position: relative;
}
.ct-team-carousel-layout4 .ct-team-item .ct-team-item-inner:before {
  position: absolute;
  content: "";
  display: block;
  background-color: rgba(128, 130, 88, 0.05);
  top: 18px;
  right: -18px;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.ct-team-carousel-layout4 .ct-team-item .team-holder {
  padding: 30px 0 30px 30px;
  text-align: center;
}
.ct-team-carousel-layout4 .ct-team-item .item-name {
  font-size: 22px;
  color: #232323;
  font-weight: 400;
  margin-bottom: 5px;
}
.ct-team-carousel-layout4 .ct-team-item .item-name a {
  color: #232323;
}
.ct-team-carousel-layout4 .ct-team-item .item-name a:hover {
  color: ;
}
.ct-team-carousel-layout4 .ct-team-item .item-position {
  font-size: 16px;
  color: #808258;
  display: inline-block;
  margin-bottom: 8px;
}
.ct-team-carousel-layout4 .ct-team-item .item-social a {
  font-size: 15px;
  line-height: 28px;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  margin: 5px;
  display: inline-block;
  text-align: center;
}
.ct-team-carousel-layout4 .ct-team-item .item-social a i {
  color: #808258;
}
.ct-team-carousel-layout4 .ct-team-item .item-social a i.fa-facebook-f, .ct-team-carousel-layout4 .ct-team-item .item-social a i.fa-facebook {
  color: #3b5998;
}
.ct-team-carousel-layout4 .ct-team-item .item-social a i.fa-twitter {
  color: #1ea1f3;
}
.ct-team-carousel-layout4 .ct-team-item .item-social a i.fa-instagram, .ct-team-carousel-layout4 .ct-team-item .item-social a i.fa-pinterest {
  color: #de4e43;
}
.ct-team-carousel-layout4 .ct-team-item .item-social a:hover i {
  color: #dc0008;
}
.ct-team-carousel-layout4 .owl-item {
  text-align: center;
  border-radius: 10px;
  -webkit-transition: all 0.5s;
  -khtml-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.ct-team-carousel-layout4 .owl-item.center {
  background-color: #fff;
  box-shadow: 5px 5px 20px 0 rgba(0, 0, 0, .1);
  transition: all 0.5s;
  transform: scale(1.05);
}
@media screen and (min-width: 992px) {
  .ct-team-carousel-layout4 .owl-nav {
    position: absolute;
    top: -100px;
    right: 0;
    margin-top: 0;
  }
}
.ct-team-carousel-layout4 .owl-nav .owl-prev, .ct-team-carousel-layout4 .owl-nav .owl-next {
  border-color: rgba(128, 130, 88, 0.2);
  color: rgba(128, 130, 88, 0.2);
}
.ct-team-carousel-layout4 .owl-nav .owl-prev:hover, .ct-team-carousel-layout4 .owl-nav .owl-next:hover {
  background-color: #dc0008;
  border-color: #dc0008;
  color: #fff;
}
.ct-team-carousel-layout4 .owl-dots .owl-dot {
  margin-left: 5px;
  margin-right: 5px;
  width: 10px;
  height: 6px;
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  background-color: rgba(128, 130, 88, 0.2);
}
.ct-team-carousel-layout4 .owl-dots .owl-dot.active {
  background: #dc0008;
  width: 20px;
}
.ct-team-carousel-layout5 .dlab-border-left:before, .ct-team-carousel-layout5 .dlab-border-right:before, .ct-team-carousel-layout5 .dlab-border-left:after, .ct-team-carousel-layout5 .dlab-border-right:after {
  position: absolute;
  content: "";
  display: block;
  content: "";
  width: 50px;
  height: 50px;
  background-color: #dc0008;
  position: absolute;
  z-index: -1;
}
.ct-team-carousel-layout5 .dlab-border-left:before {
  bottom: 0;
  left: 0;
}
.ct-team-carousel-layout5 .dlab-border-left:after {
  left: 0;
  top: 0;
}
.ct-team-carousel-layout5 .dlab-border-right:before {
  right: 0;
  bottom: 0;
}
.ct-team-carousel-layout5 .dlab-border-right:after {
  top: 0;
  right: 0;
}
.ct-team-carousel-layout5 .item-featured {
  margin: 5px;
  position: relative;
  border: 3px solid #fff;
  -webkit-transition: all 0.5s ease 0s;
  -khtml-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.ct-team-carousel-layout5 .item-featured:after {
  content: "";
  width: 100%;
  height: 0;
  background: #33343e;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform-origin: 0 0 0;
  -webkit-transition: all 0.5s ease 0s;
  -khtml-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.ct-team-carousel-layout5 .item-info {
  width: 100%;
  position: absolute;
  top: -50%;
  left: 0;
  -webkit-transition: all 0.5s ease 0.2s;
  -khtml-transition: all 0.5s ease 0.2s;
  -moz-transition: all 0.5s ease 0.2s;
  -ms-transition: all 0.5s ease 0.2s;
  -o-transition: all 0.5s ease 0.2s;
  transition: all 0.5s ease 0.2s;
}
.ct-team-carousel-layout5 .item-name {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}
.ct-team-carousel-layout5 .item-position {
  font-size: 14px;
  color: #fff;
  line-height: 26px;
  text-transform: capitalize;
  display: block;
  margin-bottom: 10px;
}
.ct-team-carousel-layout5 .item-social a {
  background-color: #fff;
  display: inline-block;
  margin-left: 5px;
  margin-right: 5px;
  width: 28px;
  height: 28px;
  padding: 0;
  color: #808258;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  font-size: 12px;
  line-height: 28px;
}
.ct-team-carousel-layout5 .item-social a:hover {
  color: #dc0008;
}
.ct-team-carousel-layout5 .grid-item-inner {
  text-align: center;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.ct-team-carousel-layout5 .grid-item-inner:hover .item-featured {
  border-color: #232323;
}
.ct-team-carousel-layout5 .grid-item-inner:hover .item-featured:after {
  height: 100%;
  opacity: 0.85;
}
.ct-team-carousel-layout5 .grid-item-inner:hover .item-info {
  top: 50%;
  transform: translateY(-50%);
}
.ct-team-carousel-layout6 .item-featured {
  overflow: hidden;
}
.ct-team-carousel-layout6 .item-featured img {
  filter: grayscale(1);
  -webkit-filter: grayscale(1);
  -moz-filter: grayscale(1);
  -o-filter: grayscale(1);
  -ms-filter: grayscale(1);
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
}
.ct-team-carousel-layout6 .item-featured img:hover {
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.ct-team-carousel-layout6 .ct-team-item {
  text-align: center;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
}
.ct-team-carousel-layout6 .ct-team-item .ct-team-item-inner {
  position: relative;
}
.ct-team-carousel-layout6 .ct-team-item .ct-team-item-inner:before {
  position: absolute;
  content: "";
  display: block;
  background-color: rgba(128, 130, 88, 0.05);
  top: 18px;
  right: -18px;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.ct-team-carousel-layout6 .ct-team-item .item-name {
  font-size: 22px;
  color: #232323;
  font-weight: 400;
  margin-bottom: 5px;
}
.ct-team-carousel-layout6 .ct-team-item .item-name a {
  color: #232323;
}
.ct-team-carousel-layout6 .ct-team-item .item-name a:hover {
  color: ;
}
.ct-team-carousel-layout6 .ct-team-item .item-info {
  padding: 20px 10px;
  text-align: center;
  background-color: #fff;
}
.ct-team-carousel-layout6 .ct-team-item .item-position {
  font-size: 16px;
  color: #808258;
  display: inline-block;
}
.ct-team-carousel-layout6 .ct-team-item .item-social {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding: 30px 15px 40px;
  opacity: 0;
  margin-bottom: -100px;
  z-index: 2;
  -webkit-transition: all 800ms linear 0ms;
  -khtml-transition: all 800ms linear 0ms;
  -moz-transition: all 800ms linear 0ms;
  -ms-transition: all 800ms linear 0ms;
  -o-transition: all 800ms linear 0ms;
  transition: all 800ms linear 0ms;
}
.ct-team-carousel-layout6 .ct-team-item .item-social a {
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
  display: inline-block;
  background-color: #dc0008;
  color: #fff;
  font-size: 14px;
  height: 35px;
  line-height: 34px;
  padding: 0;
  width: 35px;
}
.ct-team-carousel-layout6 .ct-team-item .item-social a i {
  color: #fff;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
}
.ct-team-carousel-layout6 .ct-team-item .item-social a:hover {
  background-color: #232323;
}
.ct-team-carousel-layout6 .ct-team-item .item-social a:hover i {
  color: #fff;
}
.ct-team-carousel-layout6 .ct-team-item .item-social a:nth-child(1) {
  background-color: #4867aa;
}
.ct-team-carousel-layout6 .ct-team-item .item-social a:nth-child(2) {
  background-color: #1da1f2;
}
.ct-team-carousel-layout6 .ct-team-item .item-social a:nth-child(3) {
  background-color: #0274b3;
}
.ct-team-carousel-layout6 .ct-team-item .item-social a:nth-child(4) {
  background-color: #cc2127;
}
.ct-team-carousel-layout6 .ct-team-item:hover {
  -webkit-transform: translateY(-10px);
  -khtml-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -o-transform: translateY(-10px);
  transform: translateY(-10px);
}
.ct-team-carousel-layout6 .ct-team-item:hover .item-featured img {
  filter: grayscale(0);
  -webkit-filter: grayscale(0);
  -moz-filter: grayscale(0);
  -o-filter: grayscale(0);
  -ms-filter: grayscale(0);
}
.ct-team-carousel-layout6 .ct-team-item:hover .item-social {
  opacity: 1;
  width: 100%;
  margin-bottom: 0;
}
.ct-team-carousel-layout6 .owl-item {
  text-align: center;
  border-radius: 0px;
  margin-top: 15px;
  margin-bottom: 15px;
  -webkit-transition: all 0.5s;
  -khtml-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.ct-team-carousel-layout6 .owl-item.center {
  background-color: #fff;
  transition: all 0.5s;
  transform: scale(1.05);
}
@media screen and (min-width: 992px) {
  .ct-team-carousel-layout6 .owl-nav {
    position: absolute;
    top: -100px;
    right: 0;
    margin-top: 0;
  }
}
.ct-team-carousel-layout6 .owl-nav .owl-prev, .ct-team-carousel-layout6 .owl-nav .owl-next {
  border-color: rgba(128, 130, 88, 0.2);
  color: rgba(128, 130, 88, 0.2);
}
.ct-team-carousel-layout6 .owl-nav .owl-prev:hover, .ct-team-carousel-layout6 .owl-nav .owl-next:hover {
  background-color: #dc0008;
  border-color: #dc0008;
  color: #fff;
}
.ct-team-carousel-layout6 .owl-dots .owl-dot {
  margin-left: 5px;
  margin-right: 5px;
  width: 10px;
  height: 6px;
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  background-color: rgba(128, 130, 88, 0.2);
}
.ct-team-carousel-layout6 .owl-dots .owl-dot.active {
  background: #dc0008;
  width: 20px;
}
.ct-grid-gallery-image .item-featured {
  position: relative;
}
.ct-grid-gallery-image .item-featured .light-box {
  position: absolute;
  width: 45px;
  height: 45px;
  border-radius: 3px;
  text-align: center;
  background-color: #fff;
  color: #dc0008;
  line-height: 45px;
  top: 50%;
  left: 50%;
  opacity: 0;
  -webkit-transition: all 0.8s linear 0ms;
  -khtml-transition: all 0.8s linear 0ms;
  -moz-transition: all 0.8s linear 0ms;
  -ms-transition: all 0.8s linear 0ms;
  -o-transition: all 0.8s linear 0ms;
  transition: all 0.8s linear 0ms;
  -webkit-transform: translate(-50%, -50%);
  -khtml-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.ct-grid-gallery-image .item-featured:hover .light-box {
  opacity: 1;
}
.ct-quicklink ul {
  padding-left: 0;
  list-style: none;
}
.ct-quicklink.layout1 .ct-post-title {
  font-size: 20px;
  color: #232323;
  margin-bottom: 27px;
}
.ct-quicklink.layout1 ul {
  list-style: none;
  padding-left: 0;
}
.ct-quicklink.layout1 ul li {
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
  margin-bottom: 20px;
  position: relative;
}
.ct-quicklink.layout1 ul li a {
  color: #808258;
}
.ct-quicklink.layout1 ul li a:hover {
  color: #dc0008 !important;
}
.ct-quicklink.layout1 ul li:hover a {
  color: #dc0008 !important;
}
.ct-quicklink.layout1.style-1 ul {
  list-style: none;
  padding-left: 0;
}
.ct-quicklink.layout1.style-1 ul li {
  position: relative;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
  margin-bottom: 20px;
}
.ct-quicklink.layout1.style-1 ul li i {
  color: #808258;
  position: absolute;
  top: 5px;
  opacity: 0;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
  left: -15px;
}
.ct-quicklink.layout1.style-1 ul li a {
  color: #808258;
}
.ct-quicklink.layout1.style-1 ul li:hover {
  padding-left: 25px;
}
.ct-quicklink.layout1.style-1 ul li:hover a {
  color: #dc0008 !important;
}
.ct-quicklink.layout1.style-1 ul li:hover i {
  color: #dc0008;
  left: 0;
  opacity: 1;
}
.ct-quicklink.layout1.style-2 ul {
  overflow: hidden;
}
.ct-quicklink.layout1.style-2 ul li {
  display: inline-block;
  width: 50%;
  float: left;
  font-size: 13px;
  line-height: 22px;
  margin-bottom: 0;
  padding: 5px 5px 5px 20px;
  position: relative;
}
.ct-quicklink.layout1.style-2 ul li:last-child {
  margin-right: 0;
}
.ct-quicklink.layout1.style-2 ul li i {
  font-size: 11px;
  position: absolute;
  left: 0;
  top: 10px;
}
.ct-quicklink.layout1.style-2 ul li a:hover {
  color: #dc0008 !important;
}
.ct-quicklink.layout1.style-2 ul li:hover i {
  color: #dc0008 !important;
}
.ct-quicklink.layout2 ul li {
  line-height: 24px;
  margin-bottom: 18px;
  color: #808258;
}
.ct-quicklink.layout2 ul li a, .ct-quicklink.layout2 ul li i {
  color: inherit;
}
.ct-quicklink.layout2 ul li i {
  display: inline-block;
  position: relative;
  margin-right: 5px;
  top: 1px;
}
.ct-social-us .ct-social-title {
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 25px;
}
.ct-social-us ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 30px;
}
.ct-social-us ul li {
  display: inline-block;
  margin-right: 6px;
  margin-bottom: 15px;
}
.ct-social-us ul li:last-child {
  margin-right: 0;
}
.ct-social-us ul li a {
  display: block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  font-size: 13px;
  color: #fff;
  background-color: #343a45;
  border: none;
  text-align: center;
  -webkit-transition: all 500ms linear 0ms;
  -khtml-transition: all 500ms linear 0ms;
  -moz-transition: all 500ms linear 0ms;
  -ms-transition: all 500ms linear 0ms;
  -o-transition: all 500ms linear 0ms;
  transition: all 500ms linear 0ms;
}
.ct-social-us ul li a:hover {
  background-color: #dc0008;
  color: #fff;
  font-size: 13px;
}
.ct-social-us.text-center ul li {
  margin-left: 4px;
  margin-right: 4px;
}
.ct-social-us.text-center ul li:first-child {
  margin-left: 0;
}
.ct-social-us.text-center ul li:last-child {
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  .ct-social-us.text-right {
    text-align: center !important;
  }
}
.ct-social-us.text-right ul li {
  margin-left: 10px;
}
.ct-social-us.text-right ul li:first-child {
  margin-left: 0;
}
.ct-social-us.layout1 ul {
  margin-left: -5px;
  margin-right: -5px;
  padding-left: 0;
  list-style: none;
  margin-bottom: 10px;
}
.ct-social-us.layout1 ul li {
  display: inline-block;
  margin-right: 3px;
  margin-left: 3px;
  margin-bottom: 15px;
}
.ct-social-us.layout1 ul li a {
  display: block;
  width: auto;
  height: auto;
  font-size: 13px;
  color: #fff;
  border-color: transparent;
}
.ct-social-us.layout1 ul li i {
  -webkit-transition: all 500ms linear 0ms;
  -khtml-transition: all 500ms linear 0ms;
  -moz-transition: all 500ms linear 0ms;
  -ms-transition: all 500ms linear 0ms;
  -o-transition: all 500ms linear 0ms;
  transition: all 500ms linear 0ms;
  background-color: #343a45;
  width: 40px;
  border-color: transparent;
  text-align: center;
  height: 40px;
  line-height: 40px;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
}
.ct-social-us.layout1 ul li i.fa-facebook {
  background-color: #3b5998;
}
.ct-social-us.layout1 ul li i.fa-google-plus {
  background-color: #fe6e63;
}
.ct-social-us.layout1 ul li i.fa-linkedin {
  background-color: #007bb6;
}
.ct-social-us.layout1 ul li i.fa-instagram {
  background-color: #aa7a6e;
}
.ct-social-us.layout1 ul li i.fa-twitter {
  background-color: #0e91e3;
}
.ct-social-us.layout1 ul li i:hover {
  background-color: #dc0008;
  color: #fff;
  font-size: 13px;
}
.ct-social-us.layout2 ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
  margin-left: -3px;
  margin-right: -3px;
}
.ct-social-us.layout2 ul li {
  display: inline-block;
  margin-left: 3px;
  margin-right: 3px;
  margin-bottom: 15px;
}
.ct-social-us.layout2 ul li a {
  display: block;
  width: auto;
  height: auto;
}
.ct-social-us.layout2 ul li i {
  width: 40px;
  height: 40px;
  padding: 0;
  line-height: 39px;
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  font-size: 15px;
  text-align: center;
  border-color: transparent;
  background-color: #dc0008;
  -webkit-transition: all 500ms linear 0ms;
  -khtml-transition: all 500ms linear 0ms;
  -moz-transition: all 500ms linear 0ms;
  -ms-transition: all 500ms linear 0ms;
  -o-transition: all 500ms linear 0ms;
  transition: all 500ms linear 0ms;
}
.ct-social-us.layout2 ul li i:hover {
  color: #fff;
}
.ct-social-us.layout2 ul li i.fa-facebook {
  background-color: #4b69a8;
}
.ct-social-us.layout2 ul li i.fa-google-plus {
  background-color: #fe6e63;
}
.ct-social-us.layout2 ul li i.fa-linkedin {
  background-color: #209bd6;
}
.ct-social-us.layout2 ul li i.fa-instagram {
  background-color: #aa7a6e;
}
.ct-social-us.layout2 ul li i.fa-twitter {
  background-color: #0e91e3;
}
@media screen and (max-width: 991px) {
  .ct-social-us.text-left.text-991px {
    text-align: center !important;
  }
}
@media screen and (max-width: 767px) {
  .ct-social-us.text-left.text-767px {
    text-align: center !important;
  }
}
@media screen and (max-width: 991px) {
  .ct-social-us.text-right.text-991px {
    text-align: center !important;
  }
  .ct-social-us.text-right.text-991px-left {
    text-align: left !important;
  }
}
@media screen and (max-width: 767px) {
  .ct-social-us.text-right.text-767px {
    text-align: center !important;
  }
  .ct-social-us.text-right.text-767-left {
    text-align: left !important;
  }
}
.ct-social-us.layout3 .ct-inner-layout {
  display: flex;
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
}
@media screen and (max-width: 575px) {
  .ct-social-us.layout3 .ct-inner-layout {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.ct-social-us.layout3 .ct-inner-layout:before {
  background-color: #d2151e;
  width: 100%;
  z-index: 0;
  content: "";
  position: absolute;
  bottom: 0;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .ct-social-us.layout3 .ct-inner-layout:before {
    left: -50%;
    -webkit-transform: skew(30deg);
    -khtml-transform: skew(30deg);
    -moz-transform: skew(30deg);
    -ms-transform: skew(30deg);
    -o-transform: skew(30deg);
    transform: skew(30deg);
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .ct-social-us.layout3 .ct-inner-layout:before {
    left: -20%;
  }
}
@media screen and (max-width: 767px) {
  .ct-social-us.layout3 .ct-inner-layout:before {
    left: -15px;
  }
}
@media screen and (max-width: 575px) {
  .ct-social-us.layout3 .ct-inner-layout:before {
    right: 0;
  }
}
.ct-social-us.layout3 label {
  position: relative;
  z-index: 2;
  color: #fff;
  font-weight: 400;
  font-size: 18px;
  text-transform: capitalize;
  margin-bottom: 0;
  margin-right: 10px;
}
.ct-social-us.layout3 ul {
  position: relative;
  z-index: 2;
  margin-bottom: 0;
}
.ct-social-us.layout3 ul li {
  display: inline-block;
  margin-left: 5px;
  margin-right: 5px;
  margin-bottom: 0;
}
.ct-social-us.layout3 ul li a {
  font-size: 18px;
  background-color: transparent;
  color: #fff;
  width: 20px;
}
@media screen and (max-width: 575px) {
  .ct-social-us.layout3 ul li a {
    font-size: 15px;
  }
}
.ct-banner.layout1 .ct-banner-inner .ct-image img {
  width: 100%;
  -webkit-border-radius: 4px;
  -khtml-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
}
.ct-banner.layout1.hover-border .ct-banner-inner .ct-image {
  position: relative;
  -webkit-transition: all 0.8s;
  -khtml-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -ms-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}
.ct-banner.layout1.hover-border .ct-banner-inner .ct-image img {
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
  -webkit-transition: all 0.8s;
  -khtml-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -ms-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}
.ct-banner.layout1.hover-border .ct-banner-inner .ct-image:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  border: 20px solid;
  z-index: -1;
  -webkit-transition: all 0.8s;
  -khtml-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -ms-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}
.ct-banner.layout1.hover-border .ct-banner-inner .ct-image:hover img {
  -webkit-transform: translate(-15px, 15px);
  -khtml-transform: translate(-15px, 15px);
  -moz-transform: translate(-15px, 15px);
  -ms-transform: translate(-15px, 15px);
  -o-transform: translate(-15px, 15px);
  transform: translate(-15px, 15px);
}
.ct-banner.layout1.hover-border .ct-banner-inner .ct-image:hover:before {
  right: -15px;
  top: -15px;
}
.ct-grid-fancybox.layout1 .grid-item {
  margin-bottom: 30px;
}
.ct-grid-fancybox.layout1 .ct-fancybox-icon {
  margin-bottom: 30px;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
}
.ct-grid-fancybox.layout1 .ct-fancybox-icon a {
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
}
.ct-grid-fancybox.layout1 .ct-fancybox-icon i {
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
  font-size: 70px;
  line-height: 70px;
  color: #dc0008;
}
.ct-grid-fancybox.layout1 .fancybox-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 30px;
  letter-spacing: 0.03em;
  color: #232323;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
}
.ct-grid-fancybox.layout1 .fancybox-title a {
  color: inherit;
}
.ct-grid-fancybox.layout1 .ct-fcb-content {
  font-size: 16px;
  line-height: 28px;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
}
.ct-grid-fancybox.layout1 .grid-item-inner {
  background-color: #fff;
  padding: 50px 30px;
  -webkit-box-shadow: 5px 5px 20px 0 rgba(0, 0, 0, .05);
  -khtml-box-shadow: 5px 5px 20px 0 rgba(0, 0, 0, .05);
  -moz-box-shadow: 5px 5px 20px 0 rgba(0, 0, 0, .05);
  -ms-box-shadow: 5px 5px 20px 0 rgba(0, 0, 0, .05);
  -o-box-shadow: 5px 5px 20px 0 rgba(0, 0, 0, .05);
  box-shadow: 5px 5px 20px 0 rgba(0, 0, 0, .05);
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
  position: relative;
  z-index: 1;
}
.ct-grid-fancybox.layout1 .grid-item-inner .fcb-number {
  color: rgba(35, 35, 35, 0.3);
  position: absolute;
  font-size: 100px;
  right: 30px;
  top: 30px;
  line-height: 80px;
  font-weight: 700;
  color: #000;
  opacity: 0.05;
  transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}
.ct-grid-fancybox.layout1 .grid-item-inner:after {
  content: "";
  height: 100%;
  width: 0;
  background-color: #dc0008;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
  transform-origin: left;
  -moz-transform-origin: left;
  -ms-transform-origin: left;
  -webkit-transform-origin: left;
  -o-transform-origin: left;
}
.ct-grid-fancybox.layout1 .grid-item-inner:hover:after {
  width: 100%;
  left: 0;
  right: auto;
  transform-origin: right;
  -moz-transform-origin: right;
  -ms-transform-origin: right;
  -webkit-transform-origin: right;
  -o-transform-origin: right;
}
.ct-grid-fancybox.layout1 .grid-item-inner:hover .ct-fancybox-icon {
  color: #fff !important;
}
.ct-grid-fancybox.layout1 .grid-item-inner:hover .ct-fancybox-icon a {
  color: #fff !important;
}
.ct-grid-fancybox.layout1 .grid-item-inner:hover .ct-fancybox-icon a i {
  color: inherit;
}
.ct-grid-fancybox.layout1 .grid-item-inner:hover .ct-fancybox-icon i {
  color: #fff !important;
}
.ct-grid-fancybox.layout1 .grid-item-inner:hover .fancybox-title {
  color: #fff;
}
.ct-grid-fancybox.layout1 .grid-item-inner:hover .fancybox-title a {
  color: #fff;
}
.ct-grid-fancybox.layout1 .grid-item-inner:hover .ct-fcb-content {
  color: #fff;
}
.ct-grid-fancybox.layout1 .grid-item-inner:hover .btn-button {
  color: #fff;
}
.ct-grid-fancybox.layout2 .ct-fancybox-icon {
  font-size: 60px;
  line-height: 1;
  color: #dc0008;
  margin-bottom: 21px;
  display: inline-block;
}
@media screen and (max-width: 991px) {
  .ct-grid-fancybox.layout2 .ct-fancybox-icon {
    font-size: 50px;
  }
}
.ct-grid-fancybox.layout2 .ct-fancybox-icon img {
  max-width: 100px;
  height: 65px;
}
.ct-grid-fancybox.layout2 .ct-fancybox-icon i, .ct-grid-fancybox.layout2 .ct-fancybox-icon img {
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
  display: inline-block;
}
.ct-grid-fancybox.layout2 .ct-fancybox-title {
  font-size: 20px;
  color: #fff;
  text-transform: capitalize;
  font-weight: 600;
}
.ct-grid-fancybox.layout2 .ct-fancybox-content {
  font-size: 14px;
  line-height: 30px;
  color: rgba(255, 255, 255, 0.67);
}
.ct-grid-fancybox.layout2 .ct-fcb-more {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
}
.ct-grid-fancybox.layout2 .grid-item-inner {
  padding: 50px 50px 40px;
  margin-bottom: 30px;
  text-align: center;
  background-color: transparent;
  border: 2px dashed rgba(255, 255, 255, 0.37);
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
}
@media screen and (max-width: 1199px) {
  .ct-grid-fancybox.layout2 .grid-item-inner {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.ct-grid-fancybox.layout2 .grid-item-inner:hover .ct-fancybox-icon i, .ct-grid-fancybox.layout2 .grid-item-inner:hover .ct-fancybox-icon img {
  -webkit-transform: rotateY(360deg);
  -khtml-transform: rotateY(360deg);
  -moz-transform: rotateY(360deg);
  -ms-transform: rotateY(360deg);
  -o-transform: rotateY(360deg);
  transform: rotateY(360deg);
}
.ct-grid-fancybox.layout3 {
  padding: 30px 30px 0;
  background-color: rgba(128, 130, 88, 0.12);
}
@media screen and (max-width: 991px) {
  .ct-grid-fancybox.layout3 {
    padding: 25px 15px 0;
  }
}
.ct-grid-fancybox.layout3 .grid-item-inner {
  padding-left: 55px;
  margin-bottom: 30px;
  font-weight: 600;
  position: relative;
  font-size: 15px;
}
.ct-grid-fancybox.layout3 .ct-fancybox-icon {
  position: absolute;
  text-align: center;
  background-color: #dc0008;
  height: 40px;
  width: 40px;
  color: #fff;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  line-height: 40px;
  font-size: 16px;
  top: 0;
  left: 0;
}
.ct-grid-fancybox.layout3 .ct-fancybox-title {
  color: #232323;
  font-size: 15px;
  margin-bottom: 2px;
}
.ct-grid-fancybox.layout3 .ct-fancybox-content {
  font-size: 15px;
  color: #232323;
}
.ct-grid-fancybox.layout5 .ct-fancybox-front {
  margin-left: 40px;
  background: #fff;
  border: 1px solid #ebedf2;
  background-color: #f7f9fb;
  padding: 30px 15px 30px 65px;
  position: relative;
  margin-bottom: 30px;
}
@media screen and (max-width: 575px) {
  .ct-grid-fancybox.layout5 .ct-fancybox-front {
    margin-left: 0;
    padding: 20px;
  }
}
.ct-grid-fancybox.layout5 .ct-fancybox-front .ct-fancybox-icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  background: #00c6ff;
  font-size: 30px;
  border-radius: 3px;
  color: #fff;
  margin-right: 20px;
}
@media screen and (min-width: 576px) {
  .ct-grid-fancybox.layout5 .ct-fancybox-front .ct-fancybox-icon {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -khtml-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    left: -40px;
  }
}
@media screen and (max-width: 575px) {
  .ct-grid-fancybox.layout5 .ct-fancybox-front .ct-fancybox-icon {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.ct-grid-fancybox.layout5 .ct-fancybox-front .ct-fancybox-icon:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  left: 0;
  top: 0;
  border-radius: 3px;
  background: #00c6ff;
  z-index: -1;
  transition: all 0.8s;
  -moz-transition: all 0.8s;
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  -o-transition: all 0.8s;
}
.ct-grid-fancybox.layout5 .ct-fancybox-front .ct-fancybox-title {
  font-size: 18px;
}
.ct-grid-fancybox.layout5 .ct-fancybox-front:hover .ct-fancybox-icon:before {
  transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}
.ct-grid-fancybox.layout6 .ct-featured {
  -webkit-border-radius: 5px;
  -khtml-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  margin-bottom: 20px;
  overflow: hidden;
}
.ct-grid-fancybox.layout6 .ct-featured img {
  -webkit-transition: all 0.3s;
  -khtml-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: scale(1.1);
  -khtml-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.ct-grid-fancybox.layout6 .ct-fcb-holder {
  display: flex;
}
.ct-grid-fancybox.layout6 .ct-fancybox-icon {
  background-color: #d2151e;
  width: 100%;
  max-width: 80px;
  min-width: 80px;
  min-height: 80px;
  max-height: 80px;
  line-height: 80px;
  color: #fff;
  font-size: 30px;
  text-align: center;
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
}
.ct-grid-fancybox.layout6 .ct-fancybox-icon a {
  color: #fff;
}
.ct-grid-fancybox.layout6 .ct-fancybox-icon + .ct-meta {
  margin-left: 20px;
}
.ct-grid-fancybox.layout6 .ct-fancybox-title {
  font-size: 20px;
  margin-bottom: 5px;
}
.ct-grid-fancybox.layout6 .ct-fancybox-title a {
  color: #232323;
}
.ct-grid-fancybox.layout6 .ct-fancybox-title a:hover {
  color: #dc0008;
}
.ct-grid-fancybox.layout6 .ct-fancybox-item {
  margin-bottom: 30px;
}
.ct-grid-fancybox.layout6 .ct-fancybox-item:hover .ct-featured img {
  transform: scale(1);
}
.ct-grid-fancybox.layout7 .ct-grid-inner {
  padding-top: 25px;
}
.ct-grid-fancybox.layout7 .ct-fancybox-icon {
  font-size: 60px;
  color: #dc0008;
  -webkit-transition: all 0.8s;
  -khtml-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -ms-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}
.ct-grid-fancybox.layout7 .fancybox-title {
  font-size: 22px;
  font-weight: 600;
  color: #232323;
}
.ct-grid-fancybox.layout7 .grid-item-inner {
  padding: 20px;
  -webkit-transition: all 0.8s;
  -khtml-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -ms-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
  background-color: #fff;
  margin-bottom: 30px;
}
.ct-grid-fancybox.layout7 .grid-item-inner:hover {
  -webkit-box-shadow: 0 0px 30px 0 rgba(0, 0, 0, 0.2);
  -khtml-box-shadow: 0 0px 30px 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0px 30px 0 rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0 0px 30px 0 rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0 0px 30px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0px 30px 0 rgba(0, 0, 0, 0.2);
}
.ct-grid-fancybox.layout7 .grid-item-inner:hover .ct-fancybox-icon {
  font-size: 60px;
  color: #808258;
}
.ct-grid-fancybox.layout7 .grid-item-inner:hover .fancybox-title {
  font-size: 22px;
  font-weight: 600;
  color: #232323;
}
.ct-grid-testimonial1 .testi-featured {
  width: 105px;
  height: 105px;
  -webkit-border-radius: 15px;
  -khtml-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 20px;
}
.ct-grid-testimonial1 .item-title {
  margin-bottom: 0;
  font-size: 20px;
}
.ct-grid-testimonial1 .item-position {
  color: #808258;
  font-size: 15px;
}
.ct-grid-testimonial1 .item-content {
  font-size: 18px;
  line-height: 2;
  color: #808258;
  margin-bottom: 19px;
}
.ct-grid-testimonial1 .grid-item-inner {
  -webkit-border-radius: 15px;
  -khtml-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  border-radius: 15px;
  margin-bottom: 30px;
  background-color: #fff;
  padding: 30px;
  border: 2px solid transparent;
  position: relative;
  z-index: 1;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
  -webkit-box-shadow: 1px 2px 18px rgba(35, 35, 35, 0.1);
  -khtml-box-shadow: 1px 2px 18px rgba(35, 35, 35, 0.1);
  -moz-box-shadow: 1px 2px 18px rgba(35, 35, 35, 0.1);
  -ms-box-shadow: 1px 2px 18px rgba(35, 35, 35, 0.1);
  -o-box-shadow: 1px 2px 18px rgba(35, 35, 35, 0.1);
  box-shadow: 1px 2px 18px rgba(35, 35, 35, 0.1);
  position: relative;
  overflow: hidden;
}
.ct-grid-testimonial1 .grid-item-inner .round-image {
  position: absolute;
  top: -30px;
  left: -30px;
  width: 120px;
  height: 120px;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  border: 20px solid #ffebcf;
  z-index: -1;
}
.ct-grid-testimonial1 .grid-item-inner:hover {
  border-color: #dc0008;
}
.ct-grid-testimonial1 .grid-item-inner:hover .round-image {
  border-color: rgba(220, 0, 8, 0.2);
}
.ct-grid-testimonial1 .grid-item {
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
}
.ct-grid-testimonial1 .grid-item:hover {
  -webkit-transform: translateY(-15px);
  -khtml-transform: translateY(-15px);
  -moz-transform: translateY(-15px);
  -ms-transform: translateY(-15px);
  -o-transform: translateY(-15px);
  transform: translateY(-15px);
}
.ct-testimonial-layout1 .item-title {
  margin-bottom: 4px;
  font-size: 20px;
  color: #232323;
  font-weight: 500;
}
.ct-testimonial-layout1 .item-position {
  letter-spacing: 0.03em;
  text-transform: capitalize;
  font-size: 14px;
  line-height: 23px;
}
.ct-testimonial-layout1 .item-content {
  background: #fff none repeat scroll 0 0;
  border-radius: 6px 6px 6px 0;
  box-shadow: 0 0 14px 0 rgba(0, 0, 0, .1);
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
  font-size: 18px;
  line-height: 28px;
  color: #232323;
  padding: 35px 25px;
  position: relative;
}
.ct-testimonial-layout1 .item-content:before {
  content: "\f10e";
  bottom: 35px;
  color: #000;
  font-family: FontAwesome;
  font-size: 80px;
  opacity: 0.05;
  position: absolute;
  right: 10px;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
}
.ct-testimonial-layout1 .item-content:after {
  background-color: inherit;
  content: "";
  height: 35px;
  width: 30px;
  position: absolute;
  left: 0px;
  bottom: -15px;
  -webkit-transform: skewY(-45deg);
  -khtml-transform: skewY(-45deg);
  -moz-transform: skewY(-45deg);
  -ms-transform: skewY(-45deg);
  -o-transform: skewY(-45deg);
  transform: skewY(-45deg);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .ct-testimonial-layout1 .item-content {
    font-size: 16px;
  }
}
.ct-testimonial-layout1 .item-holder {
  display: flex;
  padding: 30px 0 0;
}
.ct-testimonial-layout1 .item-featured {
  margin-left: 20px;
  max-width: 70px;
  overflow: hidden;
  border: 3px solid #fff;
  -webkit-border-radius: 70px;
  -khtml-border-radius: 70px;
  -moz-border-radius: 70px;
  -ms-border-radius: 70px;
  -o-border-radius: 70px;
  border-radius: 70px;
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, .15);
  -khtml-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, .15);
  -moz-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, .15);
  -ms-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, .15);
  -o-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, .15);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, .15);
}
.ct-testimonial-layout1 .item-featured img {
  max-width: 80px;
}
.ct-testimonial-layout1 .item-featured + .item-info {
  margin-left: 20px;
}
.ct-testimonial-layout2 .owl-stage-outer {
  overflow: hidden;
  margin-right: -15px;
}
@media screen and (min-width: 768px) {
  .ct-testimonial-layout2 .owl-item.center .grid-item-inner {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
  }
}
.ct-testimonial-layout2 .grid-item-inner {
  margin-bottom: 42px;
  padding-left: 30px;
  padding-right: 30px;
}
.ct-testimonial-layout2 .item-title {
  margin-bottom: 4px;
  font-size: 20px;
  color: #232323;
  font-weight: 500;
}
.ct-testimonial-layout2 .item-position {
  letter-spacing: 0.2em;
  text-transform: capitalize;
  font-size: 14px;
  line-height: 23px;
}
.ct-testimonial-layout2 .item-content {
  font-size: 18px;
  line-height: 28px;
  color: #232323;
  padding: 35px 0 15px;
  position: relative;
}
.ct-testimonial-layout2 .item-content .item-icon-right {
  position: absolute;
  right: 0px;
  bottom: -15px;
  line-height: 1;
  font-size: 25px;
  color: #dc0008;
}
.ct-testimonial-layout2 .item-content .item-icon-left {
  position: absolute;
  left: 0px;
  top: 0;
  line-height: 1;
  font-size: 25px;
  color: #dc0008;
}
@media screen and (max-width: 767px) {
  .ct-testimonial-layout2 .item-content {
    font-size: 16px;
  }
}
.ct-testimonial-layout2 .item-holder {
  display: flex;
  padding: 30px 0 0;
}
.ct-testimonial-layout2 .item-featured {
  width: 70px;
  height: 70px;
  overflow: hidden;
  border: 3px solid #fff;
  -webkit-border-radius: 70px;
  -khtml-border-radius: 70px;
  -moz-border-radius: 70px;
  -ms-border-radius: 70px;
  -o-border-radius: 70px;
  border-radius: 70px;
}
.ct-testimonial-layout2 .item-featured img {
  max-width: 80px;
}
.ct-testimonial-layout2 .item-featured + .item-info {
  margin-left: 20px;
}
.ct-testimonial-layout2 .owl-dots {
  margin-top: 10px;
}
.ct-testimonial-layout2 .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  margin-left: 3px;
  margin-right: 3px;
  background-color: rgba(220, 0, 8, 0.5);
}
.ct-testimonial-layout2 .owl-dots .owl-dot.active {
  width: 25px;
  background-color: #dc0008;
}
.ct-testimonial-layout2 .owl-nav {
  margin-top: 0;
}
.ct-testimonial-layout2 .owl-nav .owl-prev, .ct-testimonial-layout2 .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -khtml-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  line-height: 1;
  -webkit-transition: all 0.3s linear !important;
  -khtml-transition: all 0.3s linear !important;
  -moz-transition: all 0.3s linear !important;
  -ms-transition: all 0.3s linear !important;
  -o-transition: all 0.3s linear !important;
  transition: all 0.3s linear !important;
}
.ct-testimonial-layout2 .owl-nav .owl-prev i, .ct-testimonial-layout2 .owl-nav .owl-next i {
  font-size: 40px;
  font-weight: 300;
  color: #808258;
}
.ct-testimonial-layout2 .owl-nav .owl-prev:hover i, .ct-testimonial-layout2 .owl-nav .owl-next:hover i {
  color: #232323;
}
@media (max-width: 1399px) {
  .ct-testimonial-layout2 .owl-nav .owl-prev {
    left: 10px;
    opacity: 0;
  }
}
@media screen and (min-width: 1400px) {
  .ct-testimonial-layout2 .owl-nav .owl-prev {
    left: -80px;
  }
}
@media (max-width: 1399px) {
  .ct-testimonial-layout2 .owl-nav .owl-next {
    right: 10px;
    opacity: 0;
  }
}
@media screen and (min-width: 1400px) {
  .ct-testimonial-layout2 .owl-nav .owl-next {
    right: -80px;
  }
}
@media (max-width: 1399px) {
  .ct-testimonial-layout2:hover .owl-nav .owl-prev {
    left: -20px;
    opacity: 1;
  }
  .ct-testimonial-layout2:hover .owl-nav .owl-prev i {
    color: #dc0008;
  }
  .ct-testimonial-layout2:hover .owl-nav .owl-next {
    right: -20px;
    opacity: 1;
  }
  .ct-testimonial-layout2:hover .owl-nav .owl-next i {
    color: #dc0008;
  }
}
.ct-testimonial-layout3 .owl-stage-outer {
  margin-left: -50px;
  margin-right: -50px;
  padding: 50px;
}
.ct-testimonial-layout3 .ct-testimonial-item {
  padding: 50px;
  background-color: #fff;
  -webkit-box-shadow: 5px 5px 30px 0 rgba(0, 0, 0, .1);
  -khtml-box-shadow: 5px 5px 30px 0 rgba(0, 0, 0, .1);
  -moz-box-shadow: 5px 5px 30px 0 rgba(0, 0, 0, .1);
  -ms-box-shadow: 5px 5px 30px 0 rgba(0, 0, 0, .1);
  -o-box-shadow: 5px 5px 30px 0 rgba(0, 0, 0, .1);
  box-shadow: 5px 5px 30px 0 rgba(0, 0, 0, .1);
}
@media screen and (max-width: 767px) {
  .ct-testimonial-layout3 .ct-testimonial-item {
    padding: 25px;
    padding-bottom: 0;
  }
}
.ct-testimonial-layout3 .item-content {
  font-size: 18px;
  line-height: 28px;
  color: #232323;
  padding: 35px 0 15px;
  position: relative;
}
.ct-testimonial-layout3 .item-content .item-icon-right {
  position: absolute;
  right: 20px;
  bottom: 30px;
  opacity: 0.2;
  line-height: 1;
  font-size: 50px;
  color: #808258;
}
.ct-testimonial-layout3 .item-content .item-icon-left {
  position: absolute;
  left: 20px;
  top: 10px;
  opacity: 0.2;
  line-height: 1;
  font-size: 50px;
  color: #808258;
}
.ct-testimonial-layout3 .item-content .item-title {
  margin-bottom: 5px;
  font-size: 20px;
  line-height: 1.5;
  color: #dc0008;
  font-weight: 500;
}
.ct-testimonial-layout3 .item-content .item-position {
  letter-spacing: 0.04em;
  color: #808258;
  text-transform: capitalize;
  font-size: 14px;
  line-height: 23px;
}
@media screen and (max-width: 767px) {
  .ct-testimonial-layout3 .item-content {
    font-size: 16px;
  }
}
.ct-testimonial-layout3 .grid-item-inner {
  align-items: center;
}
@media screen and (min-width: 768px) {
  .ct-testimonial-layout3 .grid-item-inner {
    display: flex;
  }
}
.ct-testimonial-layout3 .grid-item-inner .item-featured {
  min-width: 250px;
  margin-right: 30px;
}
@media screen and (max-width: 767px) {
  .ct-testimonial-layout3 .grid-item-inner .item-featured {
    min-width: 100%;
  }
}
.ct-testimonial-layout3 .grid-item-inner .item-excerpt {
  font-style: italic;
  font-size: 16px;
  color: #808258;
  font-weight: 400;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .ct-testimonial-layout3 .grid-item-inner .item-icon-right {
    right: 0;
  }
  .ct-testimonial-layout3 .grid-item-inner .item-icon-left {
    left: 0;
  }
}
.ct-testimonial-layout3 .grid-item-inner .item-content {
  padding: 50px 85px;
}
@media screen and (max-width: 767px) {
  .ct-testimonial-layout3 .grid-item-inner .item-content {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 65px;
  }
}
.ct-testimonial-layout3 .item-featured {
  overflow: hidden;
}
.ct-testimonial-layout3 .owl-dots {
  margin-top: 10px;
}
.ct-testimonial-layout3 .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  margin-left: 3px;
  margin-right: 3px;
  background-color: rgba(220, 0, 8, 0.5);
}
.ct-testimonial-layout3 .owl-dots .owl-dot.active {
  width: 25px;
  background-color: #dc0008;
}
.ct-testimonial-layout3 .owl-nav {
  margin-top: 0;
}
.ct-testimonial-layout3 .owl-nav .owl-prev, .ct-testimonial-layout3 .owl-nav .owl-next {
  position: absolute;
  background-color: #dc0008;
  top: 50%;
  width: 45px;
  height: 50px;
  margin: 0;
  line-height: 45px !important;
  -webkit-transform: translateY(-50%);
  -khtml-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  line-height: 1;
  -webkit-transition: all 0.3s linear !important;
  -khtml-transition: all 0.3s linear !important;
  -moz-transition: all 0.3s linear !important;
  -ms-transition: all 0.3s linear !important;
  -o-transition: all 0.3s linear !important;
  transition: all 0.3s linear !important;
}
.ct-testimonial-layout3 .owl-nav .owl-prev i, .ct-testimonial-layout3 .owl-nav .owl-next i {
  font-size: 15px;
  font-weight: 300;
  color: #fff;
}
.ct-testimonial-layout3 .owl-nav .owl-prev:hover, .ct-testimonial-layout3 .owl-nav .owl-next:hover {
  background-color: #232323;
  color: #fff;
}
@media (max-width: 1399px) {
  .ct-testimonial-layout3 .owl-nav .owl-prev {
    left: 10px;
    opacity: 0;
  }
}
@media screen and (min-width: 1400px) {
  .ct-testimonial-layout3 .owl-nav .owl-prev {
    left: -25px;
  }
}
@media (max-width: 1399px) {
  .ct-testimonial-layout3 .owl-nav .owl-next {
    right: 10px;
    opacity: 0;
  }
}
@media screen and (min-width: 1400px) {
  .ct-testimonial-layout3 .owl-nav .owl-next {
    right: -25px;
  }
}
@media (max-width: 1399px) {
  .ct-testimonial-layout3:hover .owl-nav .owl-prev {
    left: -20px;
    opacity: 1;
  }
  .ct-testimonial-layout3:hover .owl-nav .owl-next {
    right: -20px;
    opacity: 1;
  }
}
.ct-testimonial-layout4 {
  position: relative;
}
.ct-testimonial-layout4 .ct-testimonial-item {
  margin-top: 55px;
}
.ct-testimonial-layout4 .grid-item-inner {
  border: 10px solid #dc0008;
  padding: 40px 0 25px 0;
  margin: 30px 30px 10px;
  text-align: center;
  position: relative;
}
.ct-testimonial-layout4 .grid-item-inner .item-icon-left {
  width: 100px;
  height: 100px;
  line-height: 100px;
  background: #fff;
  margin: 0 auto;
  font-size: 70px;
  font-weight: 900;
  color: #dc0008;
  position: absolute;
  top: -60px;
  left: 0;
  right: 0;
}
.ct-testimonial-layout4 .grid-item-inner .item-test-meta {
  padding: 7px 0;
  margin: 0 -30px 20px;
  border: 7px solid #fff;
  background: #dc0008;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
}
.ct-testimonial-layout4 .grid-item-inner .item-test-meta .item-title {
  margin-top: 10px;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 5px;
  color: #fff;
  letter-spacing: 0.03em;
}
.ct-testimonial-layout4 .grid-item-inner .item-test-meta .item-position {
  display: block;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
}
.ct-testimonial-layout4 .grid-item-inner .item-test-meta:before {
  content: "";
  border-top: 15px solid;
  border-left: 15px solid transparent;
  border-bottom: 15px solid transparent;
  position: absolute;
  bottom: -37px;
  left: 0;
}
.ct-testimonial-layout4 .grid-item-inner .item-test-meta:after {
  content: "";
  border-top: 15px solid;
  border-right: 15px solid transparent;
  border-bottom: 15px solid transparent;
  position: absolute;
  bottom: -37px;
  right: 0;
}
.ct-testimonial-layout4 .grid-item-inner .item-test-meta:after, .ct-testimonial-layout4 .grid-item-inner .item-test-meta:before {
  border-top-color: #dc0008;
}
.ct-testimonial-layout4 .grid-item-inner .item-excerpt {
  padding: 15px;
  position: relative;
  font-size: 15px;
  font-weight: 400;
}
.ct-testimonial-layout4 .owl-prev, .ct-testimonial-layout4 .owl-next {
  border-radius: 3px;
  height: 40px;
  line-height: 40px;
  font-size: 15px;
  margin: 0 10px !important;
  padding: 0;
  text-align: center;
  width: 40px;
  background-color: #dc0008;
  position: absolute;
  top: 50%;
  margin: 0;
  -webkit-transform: translateY(-50%);
  -khtml-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #fff;
}
.ct-testimonial-layout4 .owl-prev:hover, .ct-testimonial-layout4 .owl-next:hover {
  background-color: #232323;
  color: #fff;
}
.ct-testimonial-layout4 .owl-prev {
  left: -50px;
}
@media screen and (max-width: 991px) {
  .ct-testimonial-layout4 .owl-prev {
    left: 5px;
  }
}
.ct-testimonial-layout4 .owl-next {
  right: -50px;
}
@media screen and (max-width: 991px) {
  .ct-testimonial-layout4 .owl-next {
    right: 5px;
  }
}
.ct-testimonial-layout5 .owl-stage-outer {
  margin-left: -15px;
  margin-right: -15px;
  padding: 15px;
}
.ct-testimonial-layout5 .grid-item-inner {
  text-align: center;
  background-color: #fff;
  padding: 50px 25px;
  box-shadow: 0 0 3px rgba(0, 0, 0, .1);
}
.ct-testimonial-layout5 .grid-item-inner .item-featured {
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  border: 0 none;
  height: 100px;
  width: 100px;
  margin-bottom: 15px;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
}
.ct-testimonial-layout5 .grid-item-inner .item-content .item-excerpt {
  margin-bottom: 22px;
}
.ct-testimonial-layout5 .grid-item-inner .item-content .item-title {
  margin-bottom: 0;
}
.ct-testimonial-layout5 .grid-item-inner .item-content .item-position {
  font-size: 14px;
  color: #dc0008;
}
.ct-testimonial-layout6 .owl-stage-outer {
  margin-left: -50px;
  margin-right: -50px;
  padding: 50px;
}
.ct-testimonial-layout6 .item-content {
  font-size: 18px;
  line-height: 28px;
  color: #232323;
  padding: 35px 0 15px;
  position: relative;
}
.ct-testimonial-layout6 .item-content .item-title {
  margin-bottom: 5px;
  font-size: 20px;
  line-height: 1.5;
  color: #dc0008;
  font-weight: 500;
}
.ct-testimonial-layout6 .item-content .item-position {
  letter-spacing: 0.04em;
  color: #808258;
  text-transform: capitalize;
  font-size: 14px;
  line-height: 23px;
}
@media screen and (max-width: 767px) {
  .ct-testimonial-layout6 .item-content {
    font-size: 16px;
  }
}
.ct-testimonial-layout6 .grid-item-inner {
  align-items: center;
}
@media screen and (min-width: 768px) {
  .ct-testimonial-layout6 .grid-item-inner {
    display: flex;
  }
}
.ct-testimonial-layout6 .grid-item-inner .item-featured {
  min-width: 250px;
  margin-right: 30px;
}
@media screen and (max-width: 767px) {
  .ct-testimonial-layout6 .grid-item-inner .item-featured {
    min-width: 100%;
  }
}
.ct-testimonial-layout6 .grid-item-inner .item-excerpt {
  font-style: italic;
  font-size: 18px;
  line-height: 32px;
  color: #808258;
  font-weight: 400;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .ct-testimonial-layout6 .grid-item-inner .item-icon-right {
    right: 0;
  }
  .ct-testimonial-layout6 .grid-item-inner .item-icon-left {
    left: 0;
  }
}
.ct-testimonial-layout6 .grid-item-inner .item-content {
  padding: 50px 0px;
}
@media screen and (max-width: 767px) {
  .ct-testimonial-layout6 .grid-item-inner .item-content {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 65px;
  }
}
.ct-testimonial-layout6 .item-featured {
  overflow: hidden;
  -webkit-border-radius: 10px;
  -khtml-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
}
.ct-testimonial-layout6 .owl-dots {
  margin-top: 10px;
}
.ct-testimonial-layout6 .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  margin-left: 3px;
  margin-right: 3px;
  background-color: #ccc;
}
.ct-testimonial-layout6 .owl-dots .owl-dot.active {
  width: 25px;
  background-color: #ccc;
}
.ct-testimonial-layout6 .owl-nav {
  margin-top: 0;
}
.ct-testimonial-layout6 .owl-nav .owl-prev, .ct-testimonial-layout6 .owl-nav .owl-next {
  position: absolute;
  border: 2px solid #ccc;
  background-color: transparent;
  top: 50%;
  width: 45px;
  height: 45px;
  margin: 0;
  -webkit-border-radius: 45px;
  -khtml-border-radius: 45px;
  -moz-border-radius: 45px;
  -ms-border-radius: 45px;
  -o-border-radius: 45px;
  border-radius: 45px;
  line-height: 38px !important;
  -webkit-transform: translateY(-50%);
  -khtml-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  line-height: 1;
  -webkit-transition: all 0.3s linear !important;
  -khtml-transition: all 0.3s linear !important;
  -moz-transition: all 0.3s linear !important;
  -ms-transition: all 0.3s linear !important;
  -o-transition: all 0.3s linear !important;
  transition: all 0.3s linear !important;
}
.ct-testimonial-layout6 .owl-nav .owl-prev i, .ct-testimonial-layout6 .owl-nav .owl-next i {
  font-size: 15px;
  font-weight: 300;
  color: #ccc;
}
@media (max-width: 1399px) {
  .ct-testimonial-layout6 .owl-nav .owl-prev {
    left: 10px;
    opacity: 0;
  }
}
@media screen and (min-width: 1400px) {
  .ct-testimonial-layout6 .owl-nav .owl-prev {
    left: -100px;
  }
}
@media (max-width: 1399px) {
  .ct-testimonial-layout6 .owl-nav .owl-next {
    right: 10px;
    opacity: 0;
  }
}
@media screen and (min-width: 1400px) {
  .ct-testimonial-layout6 .owl-nav .owl-next {
    right: -100px;
  }
}
@media (max-width: 1399px) {
  .ct-testimonial-layout6:hover .owl-nav .owl-prev {
    left: -20px;
    opacity: 1;
  }
  .ct-testimonial-layout6:hover .owl-nav .owl-prev i {
    color: #dc0008;
  }
  .ct-testimonial-layout6:hover .owl-nav .owl-next {
    right: -20px;
    opacity: 1;
  }
  .ct-testimonial-layout6:hover .owl-nav .owl-next i {
    color: #dc0008;
  }
}
.ct-testimonial-layout7 .owl-stage-outer {
  margin-left: -50px;
  margin-right: -50px;
  padding: 50px;
}
.ct-testimonial-layout7 .grid-item-inner {
  margin: auto;
  max-width: 600px;
  padding-left: 150px;
  position: relative;
}
.ct-testimonial-layout7 .grid-item-inner .item-featured {
  border: 0 none;
  height: 130px;
  left: 0;
  position: absolute;
  width: 130px;
  -webkit-border-radius: 100%;
  -khtml-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
  display: inline-block;
  background: #fff;
  overflow: hidden;
}
.ct-testimonial-layout7 .grid-item-inner .item-featured img {
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.ct-testimonial-layout7 .grid-item-inner .item-featured img:hover {
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.ct-testimonial-layout7 .grid-item-inner .item-content .item-excerpt {
  color: #505050;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 20px;
}
.ct-testimonial-layout7 .grid-item-inner .item-content .item-title {
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 0;
}
.ct-testimonial-layout7 .grid-item-inner .item-content .item-position {
  text-transform: capitalize;
  font-size: 14px;
  color: #00c6ff;
}
.ct-testimonial-layout7 .owl-dots {
  margin-top: 10px;
}
.ct-testimonial-layout7 .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  margin-left: 3px;
  margin-right: 3px;
  background-color: #ccc;
}
.ct-testimonial-layout7 .owl-dots .owl-dot.active {
  width: 25px;
  background-color: #ccc;
}
.ct-testimonial-layout7 .owl-nav {
  margin-top: 0;
}
.ct-testimonial-layout7 .owl-nav .owl-prev, .ct-testimonial-layout7 .owl-nav .owl-next {
  position: absolute;
  border: 2px solid transparent;
  background-color: transparent;
  top: 50%;
  margin: 0;
  -webkit-border-radius: 45px;
  -khtml-border-radius: 45px;
  -moz-border-radius: 45px;
  -ms-border-radius: 45px;
  -o-border-radius: 45px;
  border-radius: 45px;
  line-height: 38px !important;
  -webkit-transform: translateY(-50%);
  -khtml-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  line-height: 1;
  -webkit-transition: all 0.3s linear !important;
  -khtml-transition: all 0.3s linear !important;
  -moz-transition: all 0.3s linear !important;
  -ms-transition: all 0.3s linear !important;
  -o-transition: all 0.3s linear !important;
  transition: all 0.3s linear !important;
}
.ct-testimonial-layout7 .owl-nav .owl-prev i, .ct-testimonial-layout7 .owl-nav .owl-next i {
  font-size: 25px;
  font-weight: 300;
  color: #ccc;
}
@media (max-width: 1399px) {
  .ct-testimonial-layout7 .owl-nav .owl-prev {
    left: 10px;
    opacity: 0;
  }
}
@media screen and (min-width: 1400px) {
  .ct-testimonial-layout7 .owl-nav .owl-prev {
    left: 0;
  }
}
@media (max-width: 1399px) {
  .ct-testimonial-layout7 .owl-nav .owl-next {
    right: 10px;
    opacity: 0;
  }
}
@media screen and (min-width: 1400px) {
  .ct-testimonial-layout7 .owl-nav .owl-next {
    right: 0px;
  }
}
@media (max-width: 1399px) {
  .ct-testimonial-layout7:hover .owl-nav .owl-prev {
    left: -20px;
    opacity: 1;
  }
  .ct-testimonial-layout7:hover .owl-nav .owl-prev i {
    color: #dc0008;
  }
  .ct-testimonial-layout7:hover .owl-nav .owl-next {
    right: -20px;
    opacity: 1;
  }
  .ct-testimonial-layout7:hover .owl-nav .owl-next i {
    color: #dc0008;
  }
}
.ct-testimonial-layout8 .item-title {
  margin-bottom: 4px;
  font-size: 20px;
  color: #fff;
  font-weight: 500;
}
.ct-testimonial-layout8 .item-position {
  letter-spacing: 0.03em;
  text-transform: capitalize;
  font-size: 14px;
  color: #fff;
  line-height: 23px;
}
.ct-testimonial-layout8 .item-content {
  background: #fff;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
  font-size: 18px;
  line-height: 28px;
  color: #232323;
  padding: 20px 30px 75px 40px;
  position: relative;
}
.ct-testimonial-layout8 .item-content:before {
  content: "\f10e";
  bottom: 25px;
  color: #000;
  font-family: FontAwesome;
  font-size: 20px;
  opacity: 0.18;
  position: absolute;
  right: 20px;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
}
.ct-testimonial-layout8 .item-content:after {
  content: "\f10d";
  top: 15px;
  color: #000;
  font-family: FontAwesome;
  font-size: 20px;
  opacity: 0.18;
  position: absolute;
  left: 15px;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
}
@media screen and (max-width: 767px) {
  .ct-testimonial-layout8 .item-content {
    font-size: 16px;
  }
}
.ct-testimonial-layout8 .item-holder {
  background-color: #d2151e;
  position: relative;
  padding: 10px 15px;
  top: -30px;
  width: 85%;
}
@media screen and (max-width: 767px) {
  .ct-testimonial-layout8 .item-holder {
    padding-top: 45px;
  }
}
@media screen and (min-width: 768px) {
  .ct-testimonial-layout8 .item-holder:after {
    background-color: inherit;
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    right: -25px;
    top: 0;
    -webkit-transform: skewX(35deg);
    -khtml-transform: skewX(35deg);
    -moz-transform: skewX(35deg);
    -ms-transform: skewX(35deg);
    -o-transform: skewX(35deg);
    transform: skewX(35deg);
    width: 50px;
    z-index: 1;
  }
}
.ct-testimonial-layout8 .item-featured {
  position: absolute;
  right: 20px;
  top: -50px;
  z-index: 2;
  width: 100px;
  height: 100px;
  margin-left: 20px;
  overflow: hidden;
  background-color: #fff;
  border: 3px solid #fff;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, .15);
  -khtml-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, .15);
  -moz-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, .15);
  -ms-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, .15);
  -o-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, .15);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, .15);
}
@media screen and (max-width: 767px) {
  .ct-testimonial-layout8 .item-featured {
    width: 50px;
    height: 50px;
    top: -30px;
  }
}
@media screen and (min-width: 992px) {
  .ct-testimonial-layout9[data-center="true"] .owl-dots {
    margin-top: -50px;
  }
}
.ct-testimonial-layout9 .item-title {
  margin-bottom: 4px;
  font-size: 20px;
  color: #232323;
  font-weight: 500;
}
.ct-testimonial-layout9 .item-position {
  letter-spacing: 0.03em;
  text-transform: capitalize;
  font-size: 14px;
  line-height: 23px;
}
.ct-testimonial-layout9 .item-content {
  font-size: 15px;
  line-height: 28px;
  color: #232323;
  padding: 15px 30px 20px 20px;
}
@media screen and (max-width: 767px) {
  .ct-testimonial-layout9 .item-content {
    font-size: 16px;
    padding: 15px;
  }
}
.ct-testimonial-layout9 .item-holder {
  display: flex;
  align-items: center;
  padding: 30px 0 30px;
  border-top: 1px solid rgba(0, 0, 0, .09);
}
.ct-testimonial-layout9 .item-featured {
  margin-left: 20px;
  max-width: 70px;
  min-width: 70px;
  min-height: 70px;
  max-height: 70px;
  overflow: hidden;
  border: 3px solid #fff;
  -webkit-border-radius: 70px;
  -khtml-border-radius: 70px;
  -moz-border-radius: 70px;
  -ms-border-radius: 70px;
  -o-border-radius: 70px;
  border-radius: 70px;
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, .15);
  -khtml-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, .15);
  -moz-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, .15);
  -ms-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, .15);
  -o-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, .15);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, .15);
}
.ct-testimonial-layout9 .item-featured img {
  max-width: 80px;
}
.ct-testimonial-layout9 .item-featured + .item-info {
  margin-left: 20px;
}
.ct-testimonial-layout9 .grid-item-inner {
  margin-top: 45px;
  margin-bottom: 45px;
  background-color: #fff;
  border-radius: 10px;
  border: 1px solid rgba(128, 130, 88, 0.16);
  box-shadow: 5px 25px 35px -35px #736d6d;
  position: relative;
  padding-top: 65px;
}
.ct-testimonial-layout9 .grid-item-inner:before {
  content: "\f10d";
  top: 10px;
  left: 20px;
  color: #0086f0;
  font-family: FontAwesome;
  font-size: 40px;
  position: absolute;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
}
.ct-testimonial-layout9 .owl-item {
  -webkit-transition: all 0.8s linear 0ms;
  -khtml-transition: all 0.8s linear 0ms;
  -moz-transition: all 0.8s linear 0ms;
  -ms-transition: all 0.8s linear 0ms;
  -o-transition: all 0.8s linear 0ms;
  transition: all 0.8s linear 0ms;
}
.ct-testimonial-layout9 .owl-item.center {
  -webkit-transform: translateY(-40px);
  -khtml-transform: translateY(-40px);
  -moz-transform: translateY(-40px);
  -ms-transform: translateY(-40px);
  -o-transform: translateY(-40px);
  transform: translateY(-40px);
}
.ct-testimonial-layout9 .owl-dots .owl-dot {
  border: 1px solid #0086f0;
  background-color: transparent;
  display: inline-block;
  position: relative;
  width: 16px;
  height: 16px;
}
.ct-testimonial-layout9 .owl-dots .owl-dot span {
  height: 8px;
  width: 8px;
  margin: 0;
  background-color: #869791;
  -webkit-border-radius: 30px;
  -khtml-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  border-radius: 30px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -khtml-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.ct-testimonial-layout9 .owl-dots .owl-dot.active {
  background-color: transparent !important;
}
.ct-testimonial-layout9 .owl-dots .owl-dot.active span {
  background-color: #0086f0;
}
@media screen and (min-width: 768px) {
  .ct-testimonial-layout10 {
    width: 750px;
    margin: auto;
  }
}
.ct-testimonial-layout10 .item-content {
  font-size: 18px;
  line-height: 28px;
  color: #232323;
  padding: 35px 0 15px;
  position: relative;
}
.ct-testimonial-layout10 .item-content .item-icon-right {
  position: absolute;
  right: 20px;
  bottom: 30px;
  opacity: 0.2;
  line-height: 1;
  font-size: 50px;
  color: #808258;
}
.ct-testimonial-layout10 .item-content .item-icon-left {
  position: absolute;
  left: 20px;
  top: 10px;
  opacity: 0.2;
  line-height: 1;
  font-size: 50px;
  color: #808258;
}
.ct-testimonial-layout10 .item-content .item-title {
  margin-bottom: 5px;
  font-size: 20px;
  line-height: 1.5;
  color: #fff;
  font-weight: 500;
}
.ct-testimonial-layout10 .item-content .item-position {
  letter-spacing: 0.04em;
  color: #fff;
  text-transform: capitalize;
  font-size: 15px;
  line-height: 23px;
  font-weight: 500;
  margin-bottom: 12px;
}
@media screen and (max-width: 767px) {
  .ct-testimonial-layout10 .item-content {
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) {
  .ct-testimonial-layout10 .grid-item-inner {
    align-items: center;
    display: flex;
  }
}
.ct-testimonial-layout10 .grid-item-inner .item-featured {
  min-width: 200px;
  max-width: 200px;
  position: relative;
  z-index: 2;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .ct-testimonial-layout10 .grid-item-inner .item-featured {
    margin-right: -80px;
  }
}
@media screen and (max-width: 767px) {
  .ct-testimonial-layout10 .grid-item-inner .item-featured {
    min-width: 100%;
  }
}
.ct-testimonial-layout10 .grid-item-inner .item-excerpt {
  font-size: 15px;
  color: #fff;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .ct-testimonial-layout10 .grid-item-inner .item-icon-right {
    right: 0;
  }
  .ct-testimonial-layout10 .grid-item-inner .item-icon-left {
    left: 0;
  }
}
.ct-testimonial-layout10 .grid-item-inner .item-content {
  padding: 50px 30px 50px 110px;
  background-color: #dc0008;
}
@media screen and (max-width: 767px) {
  .ct-testimonial-layout10 .grid-item-inner .item-content {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.ct-testimonial-layout10 .item-featured {
  overflow: hidden;
}
.ct-testimonial-layout10 .owl-dots {
  margin-top: 10px;
  text-align: right;
  counter-reset: li;
  justify-content: flex-end;
  display: flex;
}
.ct-testimonial-layout10 .owl-dots .owl-dot {
  display: flex;
  align-items: center;
  padding: 5px 0;
  cursor: pointer;
  font-size: 18px;
  width: auto;
  background-color: transparent !important;
}
.ct-testimonial-layout10 .owl-dots .owl-dot span {
  margin: 0;
  width: 0;
  border-radius: 0;
  height: 2px;
  -webkit-transition: all 0.8s linear 0ms;
  -khtml-transition: all 0.8s linear 0ms;
  -moz-transition: all 0.8s linear 0ms;
  -ms-transition: all 0.8s linear 0ms;
  -o-transition: all 0.8s linear 0ms;
  transition: all 0.8s linear 0ms;
  background-color: #869791;
}
.ct-testimonial-layout10 .owl-dots .owl-dot:before {
  -webkit-transition: all 0.8s linear 0ms;
  -khtml-transition: all 0.8s linear 0ms;
  -moz-transition: all 0.8s linear 0ms;
  -ms-transition: all 0.8s linear 0ms;
  -o-transition: all 0.8s linear 0ms;
  transition: all 0.8s linear 0ms;
  display: block;
  background-color: transparent !important;
  color: #808258;
}
.ct-testimonial-layout10 .owl-dots .owl-dot:nth-child( 1):before {
  content: "1";
}
.ct-testimonial-layout10 .owl-dots .owl-dot:nth-child( 2):before {
  content: "2";
}
.ct-testimonial-layout10 .owl-dots .owl-dot:nth-child( 3):before {
  content: "3";
}
.ct-testimonial-layout10 .owl-dots .owl-dot:nth-child( 4):before {
  content: "4";
}
.ct-testimonial-layout10 .owl-dots .owl-dot:nth-child( 5):before {
  content: "5";
}
.ct-testimonial-layout10 .owl-dots .owl-dot:nth-child( 6):before {
  content: "6";
}
.ct-testimonial-layout10 .owl-dots .owl-dot:nth-child( 7):before {
  content: "7";
}
.ct-testimonial-layout10 .owl-dots .owl-dot:nth-child( 8):before {
  content: "8";
}
.ct-testimonial-layout10 .owl-dots .owl-dot:nth-child( 9):before {
  content: "9";
}
.ct-testimonial-layout10 .owl-dots .owl-dot:nth-child( 10):before {
  content: "10";
}
.ct-testimonial-layout10 .owl-dots .owl-dot.active {
  background-color: transparent !important;
  width: auto;
}
.ct-testimonial-layout10 .owl-dots .owl-dot.active:before {
  color: #232323;
}
.ct-testimonial-layout10 .owl-dots .owl-dot.active span {
  width: 40px;
  margin-left: 5px;
  background-color: #000;
}
.ct-testimonial-layout10 .owl-nav {
  margin-top: 0;
}
.ct-testimonial-layout10 .owl-nav .owl-prev, .ct-testimonial-layout10 .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  width: 45px;
  height: 50px;
  margin: 0;
  line-height: 45px !important;
  -webkit-transform: translateY(-50%);
  -khtml-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  line-height: 1;
  -webkit-transition: all 0.3s linear !important;
  -khtml-transition: all 0.3s linear !important;
  -moz-transition: all 0.3s linear !important;
  -ms-transition: all 0.3s linear !important;
  -o-transition: all 0.3s linear !important;
  transition: all 0.3s linear !important;
}
.ct-testimonial-layout10 .owl-nav .owl-prev i, .ct-testimonial-layout10 .owl-nav .owl-next i {
  font-size: 30px;
  font-weight: 300;
  color: rgba(128, 130, 88, 0.5);
}
.ct-testimonial-layout10 .owl-nav .owl-prev:hover, .ct-testimonial-layout10 .owl-nav .owl-next:hover {
  color: #dc0008;
}
@media (max-width: 1399px) {
  .ct-testimonial-layout10 .owl-nav .owl-prev {
    left: 10px;
    opacity: 0;
  }
}
@media screen and (min-width: 1400px) {
  .ct-testimonial-layout10 .owl-nav .owl-prev {
    left: -75px;
  }
}
@media (max-width: 1399px) {
  .ct-testimonial-layout10 .owl-nav .owl-next {
    right: 10px;
    opacity: 0;
  }
}
@media screen and (min-width: 1400px) {
  .ct-testimonial-layout10 .owl-nav .owl-next {
    right: -75px;
  }
}
@media (max-width: 1399px) {
  .ct-testimonial-layout10:hover .owl-nav .owl-prev {
    left: -20px;
    opacity: 1;
  }
  .ct-testimonial-layout10:hover .owl-nav .owl-next {
    right: -20px;
    opacity: 1;
  }
}
.ct-testimonial-layout11 .owl-stage-outer {
  margin-left: -15px;
  margin-right: -15px;
  padding: 15px;
}
.ct-testimonial-layout11 .grid-item-inner {
  text-align: center;
  background-color: #fff;
  padding: 50px 10%;
}
@media screen and (max-width: 991px) {
  .ct-testimonial-layout11 .grid-item-inner {
    padding: 40px 15px;
  }
}
.ct-testimonial-layout11 .grid-item-inner .item-featured {
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  border: 0 none;
  height: 100px;
  width: 100px;
  margin-bottom: 25px;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
}
.ct-testimonial-layout11 .grid-item-inner .item-content .item-excerpt {
  margin-bottom: 22px;
  font-size: 20px;
  line-height: 40px;
  color: #737984;
}
.ct-testimonial-layout11 .grid-item-inner .item-content .item-title {
  margin-bottom: 5px;
  color: #737984;
}
.ct-testimonial-layout11 .grid-item-inner .item-content .item-position {
  font-size: 14px;
  color: #dc0008;
}
.ct-testimonial-layout11 .grid-item-inner .ct-fcb-more {
  text-transform: uppercase;
}
.ct-testimonial-layout11 .owl-dots {
  margin-top: 10px;
}
.ct-testimonial-layout11 .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  margin-left: 3px;
  margin-right: 3px;
  background-color: rgba(220, 0, 8, 0.5);
}
.ct-testimonial-layout11 .owl-dots .owl-dot.active {
  width: 25px;
  background-color: #dc0008;
}
.ct-testimonial-layout11 .owl-nav {
  margin-top: 0;
}
.ct-testimonial-layout11 .owl-nav .owl-prev, .ct-testimonial-layout11 .owl-nav .owl-next {
  position: absolute;
  background-color: #dc0008;
  top: 50%;
  width: 40px;
  height: 40px;
  margin: 0;
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  line-height: 35px !important;
  -webkit-transform: translateY(-50%);
  -khtml-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  line-height: 1;
  -webkit-transition: all 0.3s linear !important;
  -khtml-transition: all 0.3s linear !important;
  -moz-transition: all 0.3s linear !important;
  -ms-transition: all 0.3s linear !important;
  -o-transition: all 0.3s linear !important;
  transition: all 0.3s linear !important;
}
.ct-testimonial-layout11 .owl-nav .owl-prev i, .ct-testimonial-layout11 .owl-nav .owl-next i {
  font-size: 15px;
  font-weight: 300;
  color: #fff;
}
.ct-testimonial-layout11 .owl-nav .owl-prev:hover, .ct-testimonial-layout11 .owl-nav .owl-next:hover {
  background-color: #232323;
  color: #fff;
}
@media (max-width: 1399px) {
  .ct-testimonial-layout11 .owl-nav .owl-prev {
    left: 10px;
    opacity: 0;
  }
}
@media screen and (min-width: 1400px) {
  .ct-testimonial-layout11 .owl-nav .owl-prev {
    left: -5px;
  }
}
@media (max-width: 1399px) {
  .ct-testimonial-layout11 .owl-nav .owl-next {
    right: 10px;
    opacity: 0;
  }
}
@media screen and (min-width: 1400px) {
  .ct-testimonial-layout11 .owl-nav .owl-next {
    right: -5px;
  }
}
@media (max-width: 1399px) {
  .ct-testimonial-layout11:hover .owl-nav .owl-prev {
    left: -20px;
    opacity: 1;
  }
  .ct-testimonial-layout11:hover .owl-nav .owl-next {
    right: -20px;
    opacity: 1;
  }
}
.testimonial-wrapper {
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 991px) {
  .testimonial-wrapper .group-title {
    margin-bottom: 40px;
    text-align: center;
  }
}
.testimonial-wrapper .ct-testimonial-layout2 {
  position: static;
}
@media screen and (min-width: 992px) {
  .testimonial-wrapper .group-title {
    width: 35%;
    float: left;
  }
  .testimonial-wrapper .ct-testimonial-layout2 {
    width: 65%;
    float: right;
    padding-left: 30px;
    position: static;
  }
  .testimonial-wrapper .owl-nav {
    margin-top: 0;
    position: absolute;
    left: 0;
    bottom: 100px;
  }
}
.testimonial-wrapper .owl-nav .owl-prev, .testimonial-wrapper .owl-nav .owl-next {
  -webkit-border-radius: 0;
  -khtml-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  border: none;
  line-height: 60px;
}
.testimonial-wrapper .owl-nav .owl-prev {
  background-color: #fff;
  color: #232323;
  margin-right: 5px;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
  -webkit-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  -khtml-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}
.testimonial-wrapper .owl-nav .owl-prev:hover {
  background-color: #dc0008;
}
.testimonial-wrapper .owl-nav .owl-next {
  margin-left: 5px;
  background-color: #dc0008;
  -webkit-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  -khtml-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  color: #fff;
}
.testimonial-wrapper .sub-title {
  font-size: 16px;
  text-decoration: underline;
  color: #dc0008;
  text-transform: capitalize;
}
.testimonial-wrapper .team-title {
  font-weight: bold;
  color: #232323;
}
@media screen and (min-width: 992px) {
  .testimonial-wrapper .team-title {
    font-size: 70px;
  }
}
@media screen and (max-width: 991px) {
  .testimonial-wrapper .team-title {
    font-size: 45px;
  }
}
@media screen and (min-width: 1280px) {
}
.ct-timeline {
  padding-top: 68px;
  position: relative;
}
.ct-timeline:before {
  content: '';
  background-color: #eaeaea;
  height: 3px;
  left: 6px;
  right: 6px;
  position: absolute;
  top: 0;
}
.ct-timeline .ct-timeline-content {
  position: relative;
  padding: 30px;
  background-color: #fff7f0;
}
.ct-timeline .ct-timeline-content:before {
  content: '';
  position: absolute;
  top: 0;
  border-width: 13px;
  border-color: transparent transparent #fff7f0 #fff7f0;
  border-style: solid;
  top: -26px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .ct-timeline .ct-timeline-content:before {
    display: none;
  }
}
.ct-timeline .ct-timeline-content h3 {
  font-size: 20px;
  margin-bottom: 13px;
}
.ct-timeline .ct-timeline-content p {
  font-size: 14px;
  line-height: 32px;
  margin-bottom: 0;
}
.ct-timeline .ct-timeline-item {
  padding: 0 15px;
}
@media screen and (max-width: 767px) {
  .ct-timeline .ct-timeline-item + .ct-timeline-item {
    margin-top: 30px;
  }
}
.ct-timeline .ct-timeline-icon, .ct-timeline .timeline-icon {
  height: 18px;
  width: 18px;
  background-color: #dc0008;
  -webkit-border-radius: 18px;
  -khtml-border-radius: 18px;
  -moz-border-radius: 18px;
  -ms-border-radius: 18px;
  -o-border-radius: 18px;
  border-radius: 18px;
  position: absolute;
  top: -76px;
  left: 6px;
}
.ct-timeline .ct-timeline-icon:before, .ct-timeline .timeline-icon:before {
  content: '';
  height: 30px;
  width: 30px;
  -webkit-border-radius: 30px;
  -khtml-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  border-radius: 30px;
  border: 2px solid #dc0008;
  position: absolute;
  top: -6px;
  left: -6px;
}
.ct-timeline .timeline-icon {
  left: auto;
  right: 0;
  top: -8px;
}
.ct-timeline .timeline-icon:before {
  left: auto;
  right: -6px;
}
.ct-timeline .ct-timeline-inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  margin: 0 -15px;
}
@media screen and (max-width: 767px) {
  .ct-timeline .ct-timeline-inner {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .ct-timeline {
    padding-top: 0;
  }
  .ct-timeline .ct-timeline-icon, .ct-timeline .timeline-icon {
    display: none;
  }
  .ct-timeline:before {
    display: none;
  }
}
.ct-portfolio-gallery-carousel.layout1 {
  padding: 20px 50px 20px 0;
  position: relative;
  z-index: 1;
}
.ct-portfolio-gallery-carousel.layout1:after {
  content: "";
  position: absolute;
  width: calc(100% - 70px);
  height: 100%;
  right: 0;
  top: 0;
  background-color: #dc0008;
  z-index: -1;
}
.ct-portfolio-gallery-carousel.layout1 .owl-dots {
  display: table;
  margin-top: 0;
  position: absolute;
  right: 10px;
  top: 50%;
  width: 32px;
  -webkit-transform: translateY(-50%);
  -khtml-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.ct-portfolio-gallery-carousel.layout1 .owl-dots .owl-dot {
  margin-top: 0;
  margin-bottom: 0;
  background-color: rgba(255, 255, 255, 0.5);
}
.ct-portfolio-gallery-carousel.layout1 .owl-dots .owl-dot.active {
  background-color: #fff !important;
}
.ct-portfolio-gallery-carousel.layout2 {
  position: relative;
  padding: 85px 0;
  overflow: hidden;
}
.ct-portfolio-gallery-carousel.layout2:before {
  content: "";
  display: block;
  height: 100%;
  right: 55px;
  background-color: rgba(128, 130, 88, 0.2);
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1200px;
}
.ct-portfolio-gallery-carousel.layout2 .owl-nav {
  margin-top: 0;
}
.ct-portfolio-gallery-carousel.layout2 .owl-nav i {
  font-size: 18px;
}
.ct-portfolio-gallery-carousel.layout2 .owl-nav > div {
  background-color: rgba(35, 35, 35, 0.8);
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -khtml-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  line-height: 35px;
  text-align: center;
  -webkit-border-radius: 4px;
  -khtml-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
}
.ct-portfolio-gallery-carousel.layout2 .owl-nav .owl-prev {
  left: 15px;
}
.ct-portfolio-gallery-carousel.layout2 .owl-nav .owl-next {
  right: 15px;
}
@media screen and (min-width: 1200px) {
  .ct-portfolio-gallery-carousel.layout2 .owl-stage-outer .owl-item {
    margin-left: 230px !important;
    margin-right: -200px !important;
  }
}
.ct-grid-portfolio-layout1 .item-featured {
  position: relative;
  z-index: 1;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
}
.ct-grid-portfolio-layout1 .item-featured img {
  width: 100%;
}
.ct-grid-portfolio-layout1 .item-featured:hover .item-link a {
  background-color: #fff;
  color: #dc0008;
}
.ct-grid-portfolio-layout1 .item-link {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -khtml-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  padding: 0;
}
.ct-grid-portfolio-layout1 .item-link a {
  -webkit-transition: all 250ms linear 0ms;
  -khtml-transition: all 250ms linear 0ms;
  -moz-transition: all 250ms linear 0ms;
  -ms-transition: all 250ms linear 0ms;
  -o-transition: all 250ms linear 0ms;
  transition: all 250ms linear 0ms;
  height: 50px;
  width: 50px;
  line-height: 50px;
  background-color: transparent;
  font-size: 16px;
  color: #fff;
  margin: 0 4px;
  display: inline-block;
  -webkit-border-radius: 50px;
  -khtml-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  border-radius: 50px;
  opacity: 0;
}
.ct-grid-portfolio-layout1 .item-link a:hover {
  background-color: #fff;
  color: #fff;
}
.ct-grid-portfolio-layout1 .item-link .icon-link {
  -webkit-transform: translateX(-60px);
  -khtml-transform: translateX(-60px);
  -moz-transform: translateX(-60px);
  -ms-transform: translateX(-60px);
  -o-transform: translateX(-60px);
  transform: translateX(-60px);
}
.ct-grid-portfolio-layout1 .item-link .icon-zoom {
  -webkit-transform: translateX(60px);
  -khtml-transform: translateX(60px);
  -moz-transform: translateX(60px);
  -ms-transform: translateX(60px);
  -o-transform: translateX(60px);
  transform: translateX(60px);
}
.ct-grid-portfolio-layout1 .item-title {
  font-size: 15px;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.25;
  margin-bottom: 5px;
}
.ct-grid-portfolio-layout1 .item-title a {
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
  color: #232323;
}
.ct-grid-portfolio-layout1 .item-category {
  font-size: 14px;
}
.ct-grid-portfolio-layout1 .item-category a {
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
  color: #808258;
}
.ct-grid-portfolio-layout1 .item-holder {
  text-align: center;
  background-color: #fff;
  padding: 25px 40px;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
}
@media screen and (max-width: 1199px) {
  .ct-grid-portfolio-layout1 .item-holder {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.ct-grid-portfolio-layout1 .ct-load-more {
  margin-top: 15px;
}
.ct-grid-portfolio-layout1 .grid-item-inner:hover .item-featured {
  background-color: #dc0008;
}
.ct-grid-portfolio-layout1 .grid-item-inner:hover .item-featured img {
  opacity: 0.5;
}
.ct-grid-portfolio-layout1 .grid-item-inner:hover .item-link a {
  background-color: #dc0008;
  color: #fff;
  opacity: 1;
  -webkit-transform: translateX(0px);
  -khtml-transform: translateX(0px);
  -moz-transform: translateX(0px);
  -ms-transform: translateX(0px);
  -o-transform: translateX(0px);
  transform: translateX(0px);
}
.ct-grid-portfolio-layout1.owl-carousel .item-holder {
  margin-bottom: 0;
}
.ct-grid-portfolio-layout1 .owl-stage-outer {
  padding: 20px 30px 40px 30px;
  margin: 0 -30px;
}
.ct-grid-portfolio-layout1 .owl-stage-outer .owl-item {
  opacity: 0;
  -webkit-transition: all 200ms linear 0ms;
  -khtml-transition: all 200ms linear 0ms;
  -moz-transition: all 200ms linear 0ms;
  -ms-transition: all 200ms linear 0ms;
  -o-transition: all 200ms linear 0ms;
  transition: all 200ms linear 0ms;
}
.ct-grid-portfolio-layout1 .owl-stage-outer .owl-item.active {
  opacity: 1;
}
.ct-grid-portfolio-layout1.style-2 .grid-item-inner .item-holder {
  background-color: transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -khtml-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
}
.ct-grid-portfolio-layout1.style-2 .grid-item-inner .item-holder .item-category {
  display: none;
}
.ct-grid-portfolio-layout1.style-2 .grid-item-inner .item-featured {
  transform: scale(1);
  overflow: visible;
  -webkit-border-radius: 5px;
  -khtml-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
}
.ct-grid-portfolio-layout1.style-2 .grid-item-inner .item-featured img {
  -webkit-border-radius: 5px;
  -khtml-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
}
.ct-grid-portfolio-layout1.style-2 .grid-item-inner:hover .item-featured {
  background-color: #232323;
  transform: scale(1.05);
  box-shadow: 0 20px 40px 0 rgba(0, 0, 0, .2);
}
.ct-grid-portfolio-layout1.style-2 .grid-item-inner:hover .item-featured img {
  opacity: 0.5;
}
.ct-grid-portfolio-layout1.style-2 .grid-item-inner:hover .item-holder {
  top: 50%;
  opacity: 1;
  z-index: 22;
}
.ct-grid-portfolio-layout1.style-2 .grid-item-inner:hover .item-holder .item-title {
  font-size: bold;
  font-size: 25px;
}
.ct-grid-portfolio-layout1.style-2 .grid-item-inner:hover .item-holder .item-title a {
  color: #fff;
}
.ct-grid-portfolio-layout1.style-2 .item-link {
  display: none;
}
.ct-grid-portfolio-layout1.portfolio-color-custom .grid-filter-inner .filter-item {
  -webkit-border-radius: 4px;
  -khtml-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  border: 2px solid #cc9f5a;
  background-color: transparent;
  color: #cc9f5a;
  padding: 1px 15px;
  text-transform: capitalize;
}
.ct-grid-portfolio-layout1.portfolio-color-custom .grid-filter-inner .filter-item.active, .ct-grid-portfolio-layout1.portfolio-color-custom .grid-filter-inner .filter-item:hover {
  background-color: #cc9f5a;
  color: #fff !important;
}
.ct-grid-portfolio-layout2 .overlay-bx {
  -webkit-transform: scale(0.2);
  -khtml-transform: scale(0.2);
  -moz-transform: scale(0.2);
  -ms-transform: scale(0.2);
  -o-transform: scale(0.2);
  transform: scale(0.2);
  -webkit-transition: all 0.8s linear;
  -khtml-transition: all 0.8s linear;
  -moz-transition: all 0.8s linear;
  -ms-transition: all 0.8s linear;
  -o-transition: all 0.8s linear;
  transition: all 0.8s linear;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
}
.ct-grid-portfolio-layout2 .portinner {
  -webkit-transform: scale(0.2);
  -khtml-transform: scale(0.2);
  -moz-transform: scale(0.2);
  -ms-transform: scale(0.2);
  -o-transform: scale(0.2);
  transform: scale(0.2);
  -webkit-transition: all 0.8s linear;
  -khtml-transition: all 0.8s linear;
  -moz-transition: all 0.8s linear;
  -ms-transition: all 0.8s linear;
  -o-transition: all 0.8s linear;
  transition: all 0.8s linear;
  max-width: 250px;
  width: 250px;
  min-width: 250px;
  position: absolute;
  z-index: 1;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
}
.ct-grid-portfolio-layout2 .port-up {
  background: #fff;
  -webkit-transition: all 0.8s linear;
  -khtml-transition: all 0.8s linear;
  -moz-transition: all 0.8s linear;
  -ms-transition: all 0.8s linear;
  -o-transition: all 0.8s linear;
  transition: all 0.8s linear;
  border-radius: 6px;
  padding: 20px;
}
.ct-grid-portfolio-layout2 .port-up .item-category {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
}
.ct-grid-portfolio-layout2 .port-up .item-category a {
  color: #dc0008;
}
.ct-grid-portfolio-layout2 .port-up .item-title {
  margin-bottom: 0;
  font-family: 'Roboto Condensed', sans-serif;
}
.ct-grid-portfolio-layout2 .port-down {
  -webkit-transition: all 0.8s linear;
  -khtml-transition: all 0.8s linear;
  -moz-transition: all 0.8s linear;
  -ms-transition: all 0.8s linear;
  -o-transition: all 0.8s linear;
  transition: all 0.8s linear;
  background: #dc0008;
  position: absolute;
  top: 50px;
  height: 100%;
  width: calc(100% + 20px);
  vertical-align: bottom;
  display: flex;
  align-items: end;
  text-align: center;
  flex-direction: row;
  border-radius: 6px;
  z-index: -1;
  left: -10px;
}
.ct-grid-portfolio-layout2 .port-down a {
  width: 100%;
  color: #000;
  font-weight: 400;
  font-family: Montserrat;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  padding: 15px;
  position: absolute;
  left: 0;
  bottom: 0;
}
.ct-grid-portfolio-layout2 .grid-item-inner {
  background-color: #fff;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}
.ct-grid-portfolio-layout2 .grid-item-inner:before {
  width: 100%;
  height: 100%;
  opacity: 0;
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  opacity: 0.4;
  z-index: 1;
  -webkit-transition: all 0.8s linear;
  -khtml-transition: all 0.8s linear;
  -moz-transition: all 0.8s linear;
  -ms-transition: all 0.8s linear;
  -o-transition: all 0.8s linear;
  transition: all 0.8s linear;
}
.ct-grid-portfolio-layout2 .grid-item-inner:hover:before {
  opacity: 0.5;
}
.ct-grid-portfolio-layout2 .grid-item-inner:hover .overlay-bx {
  -webkit-transform: scale(1);
  -khtml-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}
.ct-grid-portfolio-layout2 .grid-item-inner:hover .portinner {
  opacity: 1;
  visibility: visible;
}
.ct-grid-portfolio-layout2 .grid-item-inner:hover .port-up, .ct-grid-portfolio-layout2 .grid-item-inner:hover .port-down {
  opacity: 1;
  visibility: visible;
}
.ct-grid-portfolio-layout2 .grid-filter-wrap .filter-item {
  font-weight: 400;
  text-transform: capitalize;
  -webkit-border-radius: 0;
  -khtml-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  background-color: transparent;
  color: #232323;
  font-size: 18px;
  border-bottom: 1px solid #eee;
}
@media screen and (min-width: 1200px) {
  .ct-grid-portfolio-layout2 .grid-filter-wrap .filter-item {
    border-bottom: 3px solid #eee;
    font-family: 'Roboto Condensed', sans-serif;
    -webkit-transition: all 200ms linear 0ms;
    -khtml-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -ms-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms;
    padding: 12px 35px;
    font-size: 22px;
    margin-right: 15px;
  }
  .ct-grid-portfolio-layout2 .grid-filter-wrap .filter-item:before {
    display: inline-block;
    -webkit-transition: all 200ms linear 0ms;
    -khtml-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -ms-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms;
    font-family: Flaticon;
    font-style: normal;
    margin-right: 10px;
    color: #dc0008;
    font-size: 35px;
    line-height: 40px;
    content: "\f10e";
  }
  .ct-grid-portfolio-layout2 .grid-filter-wrap .filter-item:first-child:before {
    content: "\f10e";
  }
  .ct-grid-portfolio-layout2 .grid-filter-wrap .filter-item:nth-child(2):before {
    content: "\f115";
  }
  .ct-grid-portfolio-layout2 .grid-filter-wrap .filter-item:nth-child(3):before {
    content: "\f11f";
  }
  .ct-grid-portfolio-layout2 .grid-filter-wrap .filter-item:nth-child(4):before {
    content: "\f119";
  }
  .ct-grid-portfolio-layout2 .grid-filter-wrap .filter-item:nth-child(5):before {
    content: "\f112";
  }
}
.ct-grid-portfolio-layout2 .grid-filter-wrap .filter-item.active {
  border-bottom-color: #dc0008;
}
.ct-grid-portfolio-layout2 .grid-filter-wrap .filter-item:hover {
  border-bottom-color: #dc0008;
}
.ct-grid-portfolio-layout2 .grid-filter-wrap .filter-item:hover:before {
  -webkit-animation: icon-bounce 0.9s linear 1;
  -khtml-animation: icon-bounce 0.9s linear 1;
  -moz-animation: icon-bounce 0.9s linear 1;
  -ms-animation: icon-bounce 0.9s linear 1;
  -o-animation: icon-bounce 0.9s linear 1;
  animation: icon-bounce 0.9s linear 1;
}
.ct-grid-portfolio-gallery .grid-filter-inner .filter-item {
  border: 2px solid #dc0008;
  font-size: 13px;
  padding: 5px 20px;
  -webkit-border-radius: 2px;
  -khtml-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  border-radius: 2px;
  background-color: transparent;
  color: #dc0008;
}
.ct-grid-portfolio-gallery .grid-filter-inner .filter-item.active {
  background-color: #dc0008;
  color: #fff !important;
}
.ct-grid-portfolio-gallery .item-featured {
  position: relative;
  overflow: hidden;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
}
.ct-grid-portfolio-gallery .item-featured img {
  width: 100%;
}
.ct-grid-portfolio-gallery .item-featured:after {
  width: 100%;
  height: 100%;
  content: "";
  background: #000;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
  opacity: 0;
  -webkit-transition: all 0.4s linear;
  -khtml-transition: all 0.4s linear;
  -moz-transition: all 0.4s linear;
  -ms-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}
.ct-grid-portfolio-gallery .item-title {
  position: absolute;
  top: 40%;
  left: 50%;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
  -khtml-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 22px;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.59;
  -webkit-transition: all 600ms linear 0ms;
  -khtml-transition: all 600ms linear 0ms;
  -moz-transition: all 600ms linear 0ms;
  -ms-transition: all 600ms linear 0ms;
  -o-transition: all 600ms linear 0ms;
  transition: all 600ms linear 0ms;
  z-index: 1;
  margin-bottom: 5px;
}
.ct-grid-portfolio-gallery .item-title a {
  -webkit-transition: all 600ms linear 0ms;
  -khtml-transition: all 600ms linear 0ms;
  -moz-transition: all 600ms linear 0ms;
  -ms-transition: all 600ms linear 0ms;
  -o-transition: all 600ms linear 0ms;
  transition: all 600ms linear 0ms;
  color: #fff;
}
.ct-grid-portfolio-gallery .item-featured:hover img {
  transform: scale(1.05);
  transition: all 0.5s;
}
.ct-grid-portfolio-gallery .item-featured:hover:after {
  opacity: 0.4;
  width: 100%;
  height: 100%;
}
.ct-grid-portfolio-gallery .item-featured:hover .item-title {
  opacity: 1;
  top: 50%;
}
.ct-grid-portfolio-gallery .item-featured:hover .item-title a {
  color: #fff;
}
.ct-grid-portfolio-gallery .ct-load-more {
  margin-top: 15px;
}
.ct-portfolio-carousel.layout1 .owl-stage-outer {
  padding-top: 35px;
  padding-bottom: 35px;
  overflow: visible;
}
.ct-portfolio-carousel.layout1 .owl-stage-outer .owl-item {
  -webkit-transition: all 0.3s linear;
  -khtml-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  opacity: 0.2;
}
.ct-portfolio-carousel.layout1 .owl-stage-outer .owl-item.active {
  opacity: 1;
}
.ct-portfolio-carousel.layout1 .item-featured {
  background-color: #fff;
  position: relative;
  overflow: hidden;
  -webkit-border-radius: 2px;
  -khtml-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  border-radius: 2px;
}
.ct-portfolio-carousel.layout1 .item-featured:before, .ct-portfolio-carousel.layout1 .item-featured:after {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  opacity: 0.4;
  z-index: 1;
  -webkit-transition: all 0.8s linear;
  -khtml-transition: all 0.8s linear;
  -moz-transition: all 0.8s linear;
  -ms-transition: all 0.8s linear;
  -o-transition: all 0.8s linear;
  transition: all 0.8s linear;
}
.ct-portfolio-carousel.layout1 .item-featured:before {
  width: 100%;
  height: 100%;
  opacity: 0;
}
.ct-portfolio-carousel.layout1 .item-holder {
  text-align: center;
  padding: 35px 0 20px 0;
}
.ct-portfolio-carousel.layout1 .item-holder .item-title {
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 30px;
  color: #232323;
}
.ct-portfolio-carousel.layout1 .item-holder .item-title a {
  color: inherit;
}
.ct-portfolio-carousel.layout1 .item-holder .item-content {
  margin-bottom: 15px;
}
.ct-portfolio-carousel.layout1 .item-holder .btn-learmore {
  -webkit-transition: all 0.8s linear;
  -khtml-transition: all 0.8s linear;
  -moz-transition: all 0.8s linear;
  -ms-transition: all 0.8s linear;
  -o-transition: all 0.8s linear;
  transition: all 0.8s linear;
  background-color: #dc0008;
  color: #fff;
  padding: 12px 30px;
  display: inline-block;
  font-size: 13px;
  outline: 0;
  cursor: pointer;
  outline: 0;
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
}
.ct-portfolio-carousel.layout1 .item-holder .btn-learmore:hover {
  background: #dc0008;
}
.ct-portfolio-carousel.layout1 .ct-carousel-item {
  padding: 25px;
  background: #fff;
  -webkit-border-radius: 4px;
  -khtml-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: 6px 6px 35px 0 rgba(0, 0, 0, .05);
  -khtml-box-shadow: 6px 6px 35px 0 rgba(0, 0, 0, .05);
  -moz-box-shadow: 6px 6px 35px 0 rgba(0, 0, 0, .05);
  -ms-box-shadow: 6px 6px 35px 0 rgba(0, 0, 0, .05);
  -o-box-shadow: 6px 6px 35px 0 rgba(0, 0, 0, .05);
  box-shadow: 6px 6px 35px 0 rgba(0, 0, 0, .05);
}
.ct-portfolio-carousel.layout1 .ct-carousel-item:after {
  content: "";
  height: 4px;
  width: 0;
  background-color: #dc0008;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  transform-origin: left;
  -moz-transform-origin: left;
  -ms-transform-origin: left;
  -webkit-transform-origin: left;
  -o-transform-origin: left;
  -webkit-transition: all 0.8s;
  -khtml-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -ms-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}
.ct-portfolio-carousel.layout1 .ct-carousel-item:hover .item-title a {
  color: #dc0008;
}
.ct-portfolio-carousel.layout1 .ct-carousel-item:hover:after {
  width: 100%;
  left: 0;
  right: auto;
  transform-origin: right;
  -moz-transform-origin: right;
  -ms-transform-origin: right;
  -webkit-transform-origin: right;
  -o-transform-origin: right;
}
.ct-portfolio-carousel.layout2 .item-featured {
  background-color: #fff;
  position: relative;
  overflow: hidden;
  -webkit-border-radius: 4px;
  -khtml-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
}
.ct-portfolio-carousel.layout2 .item-featured img {
  -webkit-transition: all 0.8s linear;
  -khtml-transition: all 0.8s linear;
  -moz-transition: all 0.8s linear;
  -ms-transition: all 0.8s linear;
  -o-transition: all 0.8s linear;
  transition: all 0.8s linear;
}
.ct-portfolio-carousel.layout2 .item-featured:before, .ct-portfolio-carousel.layout2 .item-featured:after {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  opacity: 0.4;
  z-index: 1;
  -webkit-transition: all 0.8s linear;
  -khtml-transition: all 0.8s linear;
  -moz-transition: all 0.8s linear;
  -ms-transition: all 0.8s linear;
  -o-transition: all 0.8s linear;
  transition: all 0.8s linear;
}
.ct-portfolio-carousel.layout2 .item-featured:before {
  width: 100%;
  height: 100%;
  opacity: 0;
}
.ct-portfolio-carousel.layout2 .item-featured:hover img {
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.ct-portfolio-carousel.layout2 .item-holder {
  position: absolute;
  bottom: 15px;
  background: #fff;
  width: calc(100% - 30px);
  left: 15px;
  padding: 15px;
  border-radius: 4px;
  z-index: 1;
}
.ct-portfolio-carousel.layout2 .item-holder .item-title {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 600;
}
.ct-portfolio-carousel.layout2 .item-holder a {
  color: #232323;
}
.ct-portfolio-carousel.layout2 .item-holder a:hover {
  color: #dc0008;
}
.ct-portfolio-carousel.layout2 .ct-carousel-item {
  position: relative;
  -webkit-transition: all 0.5s linear;
  -khtml-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
}
.ct-portfolio-carousel.layout2 .ct-carousel-item:hover {
  -webkit-transform: translateY(-15px);
  -khtml-transform: translateY(-15px);
  -moz-transform: translateY(-15px);
  -ms-transform: translateY(-15px);
  -o-transform: translateY(-15px);
  transform: translateY(-15px);
}
.ct-portfolio-carousel.layout2 .ct-carousel-item:hover .item-holder a {
  color: #dc0008;
}
.ct-portfolio-carousel.layout3 .project-content {
  padding: 35px 15px;
  background-color: #fff;
  -webkit-transition: all 0.8s;
  -khtml-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -ms-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}
.ct-portfolio-carousel.layout3 .list-meta {
  margin-bottom: 0;
  list-style: none;
  font-size: 15px;
}
.ct-portfolio-carousel.layout3 .list-meta li {
  color: #232323;
  display: flex;
  padding: 10px 0;
}
.ct-portfolio-carousel.layout3 .list-meta li label {
  flex-grow: 1;
}
.ct-portfolio-carousel.layout3 .list-meta li + li {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.ct-portfolio-carousel.layout3 .list-meta .item-buttom a {
  margin-top: 15px;
  height: 45px;
  line-height: 45px;
  padding-left: 30px;
  padding-right: 30px;
  display: inline-block;
  background-color: #dc0008;
  -webkit-border-radius: 5px;
  -khtml-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  color: #fff;
  overflow: hidden;
  position: relative;
}
.ct-portfolio-carousel.layout3 .list-meta .item-buttom a:after, .ct-portfolio-carousel.layout3 .list-meta .item-buttom a:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  -webkit-transition: all 0.8s;
  -khtml-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -ms-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
  opacity: 1;
  -webkit-transform: translate(-105%, 0);
  transform: translate(-105%, 0);
  border-right-width: 2px;
  border-right-style: solid;
  border-right-color: #fff;
  background-color: rgba(255, 255, 255, .5);
}
.ct-portfolio-carousel.layout3 .list-meta .item-buttom a:hover:after {
  opacity: 0;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
@media screen and (min-width: 992px) {
  .ct-portfolio-carousel.layout3 .ct-carousel-item {
    position: relative;
  }
  .ct-portfolio-carousel.layout3 .project-content {
    position: absolute;
    top: 50%;
    opacity: 0;
    -webkit-transform: translateY(-100%);
    -khtml-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
    padding: 40px 50px;
    width: 500px;
  }
}
@media screen and (min-width: 992px) {
  .ct-portfolio-carousel.layout3 .owl-item.active .project-content {
    -webkit-transform: translateY(-50%);
    -khtml-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 1;
  }
}
.ct-portfolio-carousel.layout4 .item-title {
  font-size: 26px;
}
.ct-portfolio-carousel.layout4 .item-title a {
  color: #fff;
}
.ct-portfolio-carousel.layout4 .item-excerpt {
  color: #fff;
}
.ct-portfolio-carousel.layout4 .item-holder {
  -webkit-transition: all 0.8s;
  -khtml-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -ms-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
  position: absolute;
  bottom: 20%;
  padding: 30px 200px 30px 30px;
  z-index: 2;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .ct-portfolio-carousel.layout4 .item-holder {
    padding: 15px;
  }
}
.ct-portfolio-carousel.layout4 .ct-carousel-item {
  position: relative;
}
.ct-portfolio-carousel.layout4 .owl-item .item-featured {
  background-color: #000;
}
.ct-portfolio-carousel.layout4 .owl-item .item-holder {
  opacity: 0;
}
.ct-portfolio-carousel.layout4 .owl-item.center .item-holder {
  opacity: 1;
  bottom: 0;
}
.ct-portfolio-carousel.layout4 .owl-item.center .item-featured img {
  opacity: 0.6;
}
.ct-grid-service.layout1 .grid-item-inner {
  padding: 10px;
  background: #fff;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, .05);
  text-align: center;
}
.ct-grid-service.layout1 .grid-item-inner .item-featured {
  background-color: #fff;
  position: relative;
  overflow: hidden;
  -webkit-border-radius: 4px;
  -khtml-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
}
.ct-grid-service.layout1 .grid-item-inner .item-featured:before, .ct-grid-service.layout1 .grid-item-inner .item-featured:after {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  opacity: 0;
  z-index: 1;
  -webkit-transition: all 0.8s linear;
  -khtml-transition: all 0.8s linear;
  -moz-transition: all 0.8s linear;
  -ms-transition: all 0.8s linear;
  -o-transition: all 0.8s linear;
  transition: all 0.8s linear;
}
.ct-grid-service.layout1 .grid-item-inner .item-featured:before {
  width: 100%;
  height: 100%;
}
.ct-grid-service.layout1 .grid-item-inner .item-featured:after {
  width: 100%;
  height: 100%;
}
.ct-grid-service.layout1 .grid-item-inner .item-featured:hover:before, .ct-grid-service.layout1 .grid-item-inner .item-featured:hover:after {
  opacity: 0.5;
}
.ct-grid-service.layout1 .grid-item-inner:hover .item-featured img {
  -moz-transform: scale(1.5) rotate(-20deg);
  -webkit-transform: scale(1.5) rotate(-20deg);
  -o-transform: scale(1.5) rotate(-20deg);
  -ms-transform: scale(1.5) rotate(-20deg);
  transform: scale(1.5) rotate(-20deg);
}
.ct-grid-service.layout1 .grid-item-inner .item-body {
  padding: 20px;
}
.ct-grid-service.layout1 .grid-item-inner .item-body .item-title {
  letter-spacing: -0.03em;
  margin-bottom: 5px;
}
.ct-grid-service.layout1 .grid-item-inner .item-body .item-content {
  margin-bottom: 20px;
}
.ct-grid-service.layout1 .grid-item-inner .btn-leanmore {
  color: #fff;
  padding: 12px 30px;
  display: inline-block;
  font-size: 13px;
  outline: 0;
  cursor: pointer;
  outline: 0;
  border-width: 0;
  border-style: solid;
  border-color: transparent;
  line-height: 1.42857;
  border-radius: 3px;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  background-color: #dc0008;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.ct-grid-service.layout1 .grid-item-inner .btn-leanmore:before, .ct-grid-service.layout1 .grid-item-inner .btn-leanmore:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: rgba(0, 0, 0, .5);
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
  -webkit-transform: translate(-13%, -190%) rotate(-30deg);
  transform: translate(-13%, -190%) rotate(-30deg);
  -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}
.ct-grid-service.layout1 .grid-item-inner .btn-leanmore:after {
  -webkit-transition-delay: 0.8s;
  transition-delay: 0.8s;
  background: #dc0008;
}
.ct-grid-service.layout1 .grid-item-inner .btn-leanmore:hover:after {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
.ct-grid-service.layout1 .grid-item-inner .btn-leanmore:hover:before {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
.ct-grid-service.layout2 .grid-item .item-featured {
  background-size: cover;
}
.ct-grid-service.layout2 .grid-item .grid-item-inner {
  position: relative;
}
.ct-grid-service.layout2 .grid-item .grid-item-inner .item-featured {
  height: 370px;
}
@media screen and (min-width: 992px) {
  .ct-grid-service.layout2 .grid-item .grid-item-inner .item-featured {
    height: 500px;
  }
}
@media screen and (max-width: 575px) {
  .ct-grid-service.layout2 .grid-item .grid-item-inner .item-featured {
    height: 320px;
  }
}
.ct-grid-service.layout2 .grid-item .grid-item-inner .item-body {
  padding: 25px 25px 30px;
  height: auto;
}
@media screen and (min-width: 1200px) {
  .ct-grid-service.layout2 .grid-item .grid-item-inner .item-body {
    height: 500px;
    padding: 60px;
  }
}
@media screen and (min-width: 768px) {
  .ct-grid-service.layout2 .grid-item .grid-item-inner .item-body {
    align-self: center;
    align-items: center;
    flex-wrap: wrap;
    display: flex;
  }
}
.ct-grid-service.layout2 .grid-item .grid-item-inner .item-body .item-title {
  font-size: 25px;
  line-height: 35px;
  font-weight: 700;
}
@media screen and (min-width: 992px) {
  .ct-grid-service.layout2 .grid-item .grid-item-inner .item-body .item-title {
    font-size: 45px;
    line-height: 55px;
  }
}
.ct-grid-service.layout2 .grid-item .grid-item-inner .item-body .item-title a {
  color: #fff;
}
.ct-grid-service.layout2 .grid-item .grid-item-inner .item-body .item-content {
  color: #fff;
  font-size: 16px;
  margin-bottom: 22px;
}
.ct-grid-service.layout2 .grid-item .grid-item-inner .item-body .item-footer a {
  padding: 12px 30px;
  display: inline-block;
  font-size: 13px;
  color: #e7e7e7;
  border: 2px solid #e7e7e7;
  line-height: 1.42857;
  border-radius: 3px;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ct-grid-service.layout2 .grid-item .grid-item-inner .item-body .item-footer a:before, .ct-grid-service.layout2 .grid-item .grid-item-inner .item-body .item-footer a:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  opacity: 1;
  -webkit-transform: translate(-13%, -190%) rotate(-30deg);
  transform: translate(-13%, -190%) rotate(-30deg);
  border-bottom-width: 2px;
  border-bottom-style: solid;
  border-bottom-color: #fff;
  background-color: rgba(255, 255, 255, .25);
}
.ct-grid-service.layout2 .grid-item .grid-item-inner .item-body .item-footer a:after {
  transition-delay: 0.2s;
}
.ct-grid-service.layout2 .grid-item .grid-item-inner .item-body .item-footer a:hover {
  color: #808258;
  border-color: transparent;
  background-color: #f4f4f4;
}
.ct-grid-service.layout2 .grid-item .grid-item-inner .item-body .item-footer a:hover:before, .ct-grid-service.layout2 .grid-item .grid-item-inner .item-body .item-footer a:hover:after {
  opacity: 0;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
.ct-grid-service.layout2 .grid-item:nth-child(3n+1) .grid-item-inner .item-body {
  background-color: #dc0008;
}
@media screen and (min-width: 768px) {
  .ct-grid-service.layout2 .grid-item:nth-child(3n+2) .grid-item-inner {
    display: flex;
    flex-direction: column-reverse;
  }
}
.ct-grid-service.layout2 .grid-item:nth-child(3n+2) .grid-item-inner .item-body {
  background-color: #191f23;
}
.ct-grid-service.layout2 .grid-item:nth-child(3n+3) .grid-item-inner .item-body {
  background-color: #dc0008;
}
.ct-grid-service.layout3 .grid-item {
  margin-bottom: 30px;
}
.ct-grid-service.layout3 .grid-item-inner {
  background-color: #fff;
  position: relative;
  -webkit-transition: all 0.5s linear;
  -khtml-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
}
.ct-grid-service.layout3 .grid-item-inner:hover {
  -webkit-transform: translateY(-15px);
  -khtml-transform: translateY(-15px);
  -moz-transform: translateY(-15px);
  -ms-transform: translateY(-15px);
  -o-transform: translateY(-15px);
  transform: translateY(-15px);
}
.ct-grid-service.layout3 .item-featured {
  border-radius: 4px;
  -webkit-border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.ct-grid-service.layout3 .item-featured:before {
  -webkit-transition: all 0.3s linear;
  -khtml-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  width: 100%;
  height: 100%;
  display: block;
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  opacity: 0.4;
  z-index: 1;
}
.ct-grid-service.layout3 .item-featured:hover:before {
  opacity: 0.5;
}
.ct-grid-service.layout3 .dlab-info {
  position: absolute;
  bottom: -25px;
  width: calc(100% - 40px);
  left: 20px;
  z-index: 1;
}
.ct-grid-service.layout3 .item-title {
  background-color: #dc0008;
  margin-top: 0;
  border-radius: 4px;
  font-size: 18px;
  padding: 12px 50px 12px 30px;
  position: relative;
  font-weight: 500;
  margin-bottom: 0;
  position: relative;
  color: #fff;
}
.ct-grid-service.layout3 .item-title a {
  color: #fff;
}
.ct-grid-service.layout3 .item-title a.btn-leanmore {
  content: "\f105";
  width: 40px;
  height: 40px;
  background: #fff;
  position: absolute;
  right: 6px;
  color: #000;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  line-height: 40px;
  font-family: FontAwesome;
}
.ct-grid-service.layout3 .item-title a.btn-leanmore:hover {
  background-color: #232323;
  color: #fff;
}
.ct-single-image {
  overflow: hidden;
}
.ct-single-image .block-revealer-content {
  position: relative;
}
.ct-single-image .block-revealer-content a {
  display: block;
}
.ct-single-image .block-revealer-content img {
  width: 100%;
}
.image-block-revealers {
  display: inline-block;
  vertical-align: top;
  position: relative;
  overflow: hidden;
  width: 100%;
}
.image-block-revealers .block-revealer-element {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
}
.ct-portfolio-detail-wrap {
  border: 10px solid #6e17f5;
  padding: 40px;
}
@media screen and (max-width: 767px) {
  .ct-portfolio-detail-wrap {
    padding: 30px;
  }
}
.ct-portfolio-detail-wrap .ct-portfolio-details {
  margin: 0;
  list-style: none;
}
.ct-portfolio-detail-wrap .ct-portfolio-details li {
  font-size: 15px;
  line-height: 32px;
}
.ct-portfolio-detail-wrap .ct-portfolio-details li label {
  color: #262626;
}
.ct-portfolio-detail-wrap .ct-portfolio-details li a {
  color: inherit;
}
.ct-portfolio-detail-wrap .ct-portfolio-details li a:hover {
  color: #dc0008;
}
.ct-portfolio-detail-wrap .ct-portfolio-detail-share {
  padding-top: 19px;
}
.ct-portfolio-detail-wrap .ct-portfolio-detail-share label {
  font-size: 21px;
  color: #262626;
  margin-bottom: 8px;
}
.ct-portfolio-detail-wrap .ct-portfolio-detail-share .share-list a {
  height: 35px;
  width: 35px;
  color: #dc0008;
  font-size: 16px;
  line-height: 35px;
  text-align: center;
  background-color: rgba(220, 0, 8, 0.1);
  margin-right: 6px;
  -webkit-border-radius: 35px;
  -khtml-border-radius: 35px;
  -moz-border-radius: 35px;
  -ms-border-radius: 35px;
  -o-border-radius: 35px;
  border-radius: 35px;
  display: inline-block;
}
.ct-portfolio-detail-wrap .ct-portfolio-detail-share .share-list a:hover {
  background-color: #dc0008;
  color: #fff;
}
.ct-counter-grid .ct-counter-item {
  padding-top: 15px;
  padding-bottom: 15px;
}
.ct-counter-grid .ct-counter-default {
  text-align: center;
  padding: 50px 25px;
}
.ct-counter-grid .ct-counter-align {
  display: inline-block;
  text-align: center;
}
.ct-counter-grid .ct-counter-digit {
  font-size: 55px;
  color: #dc0008;
  font-weight: bold;
  margin-bottom: 17px;
  display: block;
}
@media screen and (max-width: 767px) {
  .ct-counter-grid .ct-counter-digit {
    font-size: 35px;
  }
}
.ct-counter-grid .ct-counter-title {
  font-size: 18px;
  font-weight: 500;
  color: #ddd;
}
.ct-star {
  display: inline-block;
  position: relative;
  margin-bottom: 16px;
}
.ct-star:before, .ct-star:after {
  font-family: 'FontAwesome';
  font-size: 15px;
  letter-spacing: 5px;
}
.ct-star:before {
  content: "\f005 \f005 \f005 \f005 \f005 ";
  color: rgba(128, 130, 88, 0.6);
}
.ct-star:after {
  position: absolute;
  top: 0;
  left: 0;
}
.ct-star.no-star:after {
  content: "";
  color: rgba(128, 130, 88, 0.6);
}
.ct-star.star1:after {
  content: "\f005 ";
  color: #ffc80a;
}
.ct-star.star2:after {
  content: "\f005 \f005 ";
  color: #ffc80a;
}
.ct-star.star3:after {
  content: "\f005 \f005 \f005 ";
  color: #ffc80a;
}
.ct-star.star4:after {
  content: "\f005 \f005 \f005 \f005 ";
  color: #ffc80a;
}
.ct-star.star5:after {
  content: "\f005 \f005 \f005 \f005 \f005 ";
  color: #ffc80a;
}
@-webkit-keyframes Gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@-moz-keyframes Gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes Gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.meta-carousel, .ct-testimonial-layout1, .ct-portfolio-carousel.layout2 {
  /* CT Images Grid */
}
.meta-carousel .owl-stage-outer, .ct-testimonial-layout1 .owl-stage-outer, .ct-portfolio-carousel.layout2 .owl-stage-outer {
  padding: 15px;
  margin-left: -15px;
  margin-right: -15px;
}
.meta-carousel .owl-item, .ct-testimonial-layout1 .owl-item, .ct-portfolio-carousel.layout2 .owl-item {
  padding-bottom: 25px;
}
.meta-carousel .owl-item:hover .item-content, .ct-testimonial-layout1 .owl-item:hover .item-content, .ct-portfolio-carousel.layout2 .owl-item:hover .item-content, .meta-carousel .owl-item.center .item-content, .ct-testimonial-layout1 .owl-item.center .item-content, .ct-portfolio-carousel.layout2 .owl-item.center .item-content {
  background: #dc0008 none repeat scroll 0 0;
  box-shadow: 0 0 14px 0 rgba(0, 0, 0, .1);
  color: #fff;
}
.meta-carousel .owl-item:hover .item-content:after, .ct-testimonial-layout1 .owl-item:hover .item-content:after, .ct-portfolio-carousel.layout2 .owl-item:hover .item-content:after, .meta-carousel .owl-item.center .item-content:after, .ct-testimonial-layout1 .owl-item.center .item-content:after, .ct-portfolio-carousel.layout2 .owl-item.center .item-content:after {
  background-color: inherit;
  content: "";
  height: 35px;
  width: 30px;
  position: absolute;
  left: 0px;
  bottom: -15px;
  -webkit-transform: skewY(-45deg);
  -khtml-transform: skewY(-45deg);
  -moz-transform: skewY(-45deg);
  -ms-transform: skewY(-45deg);
  -o-transform: skewY(-45deg);
  transform: skewY(-45deg);
  z-index: 1;
}
.meta-carousel .owl-item:hover .item-featured, .ct-testimonial-layout1 .owl-item:hover .item-featured, .ct-portfolio-carousel.layout2 .owl-item:hover .item-featured, .meta-carousel .owl-item.center .item-featured, .ct-testimonial-layout1 .owl-item.center .item-featured, .ct-portfolio-carousel.layout2 .owl-item.center .item-featured {
  -webkit-box-shadow: 0 0.5rem 1rem rgba(220, 0, 8, .15);
  -khtml-box-shadow: 0 0.5rem 1rem rgba(220, 0, 8, .15);
  -moz-box-shadow: 0 0.5rem 1rem rgba(220, 0, 8, .15);
  -ms-box-shadow: 0 0.5rem 1rem rgba(220, 0, 8, .15);
  -o-box-shadow: 0 0.5rem 1rem rgba(220, 0, 8, .15);
  box-shadow: 0 0.5rem 1rem rgba(220, 0, 8, .15);
}
.meta-carousel .owl-dots, .ct-testimonial-layout1 .owl-dots, .ct-portfolio-carousel.layout2 .owl-dots {
  margin-top: 10px;
}
.meta-carousel .owl-dots .owl-dot, .ct-testimonial-layout1 .owl-dots .owl-dot, .ct-portfolio-carousel.layout2 .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  margin-left: 3px;
  margin-right: 3px;
  background-color: rgba(220, 0, 8, 0.5);
}
.meta-carousel .owl-dots .owl-dot.active, .ct-testimonial-layout1 .owl-dots .owl-dot.active, .ct-portfolio-carousel.layout2 .owl-dots .owl-dot.active {
  width: 25px;
  background-color: #dc0008;
}
.meta-carousel .owl-nav, .ct-testimonial-layout1 .owl-nav, .ct-portfolio-carousel.layout2 .owl-nav {
  margin-top: 0;
}
.meta-carousel .owl-nav .owl-prev, .ct-testimonial-layout1 .owl-nav .owl-prev, .ct-portfolio-carousel.layout2 .owl-nav .owl-prev, .meta-carousel .owl-nav .owl-next, .ct-testimonial-layout1 .owl-nav .owl-next, .ct-portfolio-carousel.layout2 .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -khtml-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  line-height: 1;
  -webkit-transition: all 0.3s linear !important;
  -khtml-transition: all 0.3s linear !important;
  -moz-transition: all 0.3s linear !important;
  -ms-transition: all 0.3s linear !important;
  -o-transition: all 0.3s linear !important;
  transition: all 0.3s linear !important;
}
.meta-carousel .owl-nav .owl-prev i, .ct-testimonial-layout1 .owl-nav .owl-prev i, .ct-portfolio-carousel.layout2 .owl-nav .owl-prev i, .meta-carousel .owl-nav .owl-next i, .ct-testimonial-layout1 .owl-nav .owl-next i, .ct-portfolio-carousel.layout2 .owl-nav .owl-next i {
  font-size: 40px;
  font-weight: 300;
  color: #808258;
}
.meta-carousel .owl-nav .owl-prev:hover i, .ct-testimonial-layout1 .owl-nav .owl-prev:hover i, .ct-portfolio-carousel.layout2 .owl-nav .owl-prev:hover i, .meta-carousel .owl-nav .owl-next:hover i, .ct-testimonial-layout1 .owl-nav .owl-next:hover i, .ct-portfolio-carousel.layout2 .owl-nav .owl-next:hover i {
  color: #232323;
}
@media (max-width: 1399px) {
  .meta-carousel .owl-nav .owl-prev, .ct-testimonial-layout1 .owl-nav .owl-prev, .ct-portfolio-carousel.layout2 .owl-nav .owl-prev {
    left: 10px;
    opacity: 0;
  }
}
@media screen and (min-width: 1400px) {
  .meta-carousel .owl-nav .owl-prev, .ct-testimonial-layout1 .owl-nav .owl-prev, .ct-portfolio-carousel.layout2 .owl-nav .owl-prev {
    left: -80px;
  }
}
@media (max-width: 1399px) {
  .meta-carousel .owl-nav .owl-next, .ct-testimonial-layout1 .owl-nav .owl-next, .ct-portfolio-carousel.layout2 .owl-nav .owl-next {
    right: 10px;
    opacity: 0;
  }
}
@media screen and (min-width: 1400px) {
  .meta-carousel .owl-nav .owl-next, .ct-testimonial-layout1 .owl-nav .owl-next, .ct-portfolio-carousel.layout2 .owl-nav .owl-next {
    right: -80px;
  }
}
@media (max-width: 1399px) {
  .meta-carousel:hover .owl-nav .owl-prev, .ct-testimonial-layout1:hover .owl-nav .owl-prev, .ct-portfolio-carousel.layout2:hover .owl-nav .owl-prev {
    left: -20px;
    opacity: 1;
  }
  .meta-carousel:hover .owl-nav .owl-prev i, .ct-testimonial-layout1:hover .owl-nav .owl-prev i, .ct-portfolio-carousel.layout2:hover .owl-nav .owl-prev i {
    color: #dc0008;
  }
  .meta-carousel:hover .owl-nav .owl-next, .ct-testimonial-layout1:hover .owl-nav .owl-next, .ct-portfolio-carousel.layout2:hover .owl-nav .owl-next {
    right: -20px;
    opacity: 1;
  }
  .meta-carousel:hover .owl-nav .owl-next i, .ct-testimonial-layout1:hover .owl-nav .owl-next i, .ct-portfolio-carousel.layout2:hover .owl-nav .owl-next i {
    color: #dc0008;
  }
}
.ct-grid-images {
  padding: 10px;
  /* CT Years experpt */
}
.ct-grid-images .grid-item {
  padding: 5px;
}
.ct-grid-images .images-featured img {
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.ct-grid-images .images-featured:hover img {
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.ct-year-experpt .ct-about-year {
  font-size: 85px;
  color: #000;
  font-weight: 600;
  position: relative;
  z-index: 1;
  font-family: 'Roboto Condensed', sans-serif;
  border: 5px solid #d2151e;
  width: 120px;
  height: 150px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ct-year-experpt .ct-about-year + .ct-excerpt {
  margin-left: 25px;
}
.ct-year-experpt .ct-excerpt {
  font-family: 'Roboto Condensed', sans-serif;
  color: #232323;
  font-size: 18px;
  line-height: 28px;
  margin-left: 20px;
  text-transform: uppercase;
}
.ct-year-experpt .ct-inner-layout {
  display: flex;
  align-items: center;
}
.ct-project-info {
  margin-bottom: 35px;
}
.ct-project-info .ct-project-item {
  color: #232323;
}
@media screen and (min-width: 768px) {
  .ct-project-info .ct-project-item {
    display: flex;
  }
  .ct-project-info .ct-project-item label {
    max-width: 115px;
    min-width: 115px;
  }
  .ct-project-info .ct-project-item span {
    display: block;
    flex-grow: 1;
    text-align: right;
  }
}
@media screen and (max-width: 767px) {
  .ct-project-info .ct-project-item label {
    margin-right: 15px;
  }
}
.ct-project-info .ct-project-item + .ct-project-item {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(35, 35, 35, 0.15);
}
.google-map-custom .wpb_wrapper {
  padding: 0 !important;
}
.widget-title {
  font-size: 18px;
  margin-bottom: 40px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 17px;
  position: relative;
  font-weight: 500;
}
.widget-title:before {
  content: '';
  width: 50px;
  height: 3px;
  background-color: #dc0008;
  position: absolute;
  bottom: -2px;
  left: 0;
}
.comments-title, .comment-reply-title {
  text-transform: uppercase;
  font-size: 20px;
  margin-bottom: 38px;
}
#secondary .widget {
  margin-bottom: 50px;
}
#secondary .widget:last-child {
  margin-bottom: 0;
}
#secondary .widget.remove-box {
  padding: 0;
  border: none;
}
@media screen and (min-width: 992px) {
  .content-row {
    margin: 0 -15px;
  }
  .content-row #primary, .content-row #secondary {
    padding: 0 15px;
  }
  .content-row #secondary.widget-has-sidebar {
    z-index: 1;
  }
  .content-row #secondary.widget-has-sidebar:before {
    content: '';
    background-color: #fff9f5;
    position: absolute;
    top: 0;
    left: 0;
    width: 10000px;
    height: 100%;
  }
  .content-row #secondary.widget-has-sidebar .sidebar-fixed-inner {
    position: relative;
    z-index: 1;
  }
}
@media screen and (min-width: 1200px) {
  body .container {
    max-width: 1200px;
    width: 100%;
  }
}
@media screen and (max-width: 1199px) {
  body .container {
    max-width: 100%;
  }
  .wpb_column.rm-cl-margin-lg-015px > .vc_column-inner {
    margin-left: -15px !important;
    margin-right: -15px !important;
  }
  .wpb_column.rm-cl-margin-lg-15px > .vc_column-inner {
    margin-left: 15px !important;
    margin-right: 15px !important;
  }
  .wpb_column.rm-margin-lg-015px .vc_column-inner {
    margin-left: -15px !important;
    margin-right: -15px !important;
  }
  .wpb_column.rm-margin-lg-15px .vc_column-inner {
    margin-left: 15px !important;
    margin-right: 15px !important;
  }
  .wpb_column.rm-padding-lg30 .vc_column-inner {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
  .wpb_column.rm-padding-lg > .vc_column-inner {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .wpb_column.rm-padding-0lg > .vc_column-inner {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
}
@media (min-width: 992px) and (max-width: 1280px) {
  .col-offset-left > .vc_column-inner {
    padding-left: 30px !important;
  }
  .col-offset-right > .vc_column-inner {
    padding-right: 30px !important;
  }
}
@media screen and (max-width: 991px) {
  #primary.content-has-sidebar + #secondary {
    padding-top: 0 !important;
  }
}
.site-content {
  background-color: #fff;
}
.site-content #primary, .site-content #secondary {
  padding-top: 90px;
  padding-bottom: 95px;
}
@media screen and (max-width: 991px) {
  .site-content #primary, .site-content #secondary {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 767px) {
  .site-content #primary, .site-content #secondary {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 767px) {
  .site-content #primary, .site-content #secondary {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.woocommerce-page .site-content #primary, .woocommerce-page .site-content #secondary {
  padding-top: 90px;
  padding-bottom: 70px;
}
@media screen and (max-width: 991px) {
  .woocommerce-page .site-content #primary, .woocommerce-page .site-content #secondary {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}
@media screen and (max-width: 767px) {
  .woocommerce-page .site-content #primary, .woocommerce-page .site-content #secondary {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 767px) {
  .woocommerce-page .site-content #primary, .woocommerce-page .site-content #secondary {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.widget .widget-content ul:not(.entry-meta) {
  margin: 0;
  list-style: none;
}
.page-template-default .entry-footer {
  text-align: center;
}
.page-template-default .entry-footer i {
  padding-right: 8px;
}
.vc_column_container > .theiaStickySidebar > .vc_column-inner {
  box-sizing: border-box;
  padding-left: 15px;
  padding-right: 15px;
  width: 100%;
}
.row-bg-gradient {
  position: relative;
}
.row-bg-gradient:before {
  content: '';
  background-color: #dc0008;
  background-image: -webkit-gradient(linear, left top, right top, from(#dc0008), to(#232323));
  background-image: -webkit-linear-gradient(left, #dc0008, #232323);
  background-image: -moz-linear-gradient(left, #dc0008, #232323);
  background-image: -ms-linear-gradient(left, #dc0008, #232323);
  background-image: -o-linear-gradient(left, #dc0008, #232323);
  background-image: linear-gradient(left, #dc0008, #232323);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#dc0008', endColorStr='#232323', gradientType='1');
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block !important;
  z-index: 1;
}
.row-bg-gradient:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block !important;
  background-image: inherit;
  z-index: 1;
}
.row-bg-gradient .vc_column-inner {
  position: relative;
  z-index: 3;
}
.row-bg-gradient-overlay {
  position: relative;
}
.row-bg-gradient-overlay:before {
  content: '';
  background-color: rgba(220, 0, 8, 0.9);
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(220, 0, 8, 0.9)), to(rgba(35, 35, 35, 0.9)));
  background-image: -webkit-linear-gradient(left, rgba(220, 0, 8, 0.9), rgba(35, 35, 35, 0.9));
  background-image: -moz-linear-gradient(left, rgba(220, 0, 8, 0.9), rgba(35, 35, 35, 0.9));
  background-image: -ms-linear-gradient(left, rgba(220, 0, 8, 0.9), rgba(35, 35, 35, 0.9));
  background-image: -o-linear-gradient(left, rgba(220, 0, 8, 0.9), rgba(35, 35, 35, 0.9));
  background-image: linear-gradient(left, rgba(220, 0, 8, 0.9), rgba(35, 35, 35, 0.9));
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='rgba(220, 0, 8, 0.9)', endColorStr='rgba(35, 35, 35, 0.9)', gradientType='1');
  background-color: transparent;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block !important;
  z-index: 1;
}
.row-bg-gradient-overlay .vc_column-inner {
  position: relative;
  z-index: 3;
}
.vc-row-overlay {
  position: relative;
  overflow: hidden;
}
.section-overlay {
  position: relative;
}
.section-overlay:after {
  background-color: inherit;
  bottom: 0;
  content: "";
  display: block !important;
  height: 100% !important;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  visibility: visible !important;
}
.section-overlay .vc_column-inner {
  position: relative;
  z-index: 1;
}
.row-overlay {
  position: relative;
}
.row-overlay:after {
  background-color: inherit;
  bottom: 0;
  content: "";
  display: block !important;
  height: 100% !important;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  visibility: visible !important;
}
.row-overlay .vc_column-inner {
  position: relative;
  z-index: 1;
}
.col-overlay .vc_column-inner {
  position: relative;
}
.col-overlay .vc_column-inner:after {
  background-color: inherit;
  bottom: 0;
  content: "";
  display: block !important;
  height: 100% !important;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  visibility: visible !important;
}
.col-overlay .vc_column-inner .wpb_wrapper {
  position: relative;
  z-index: 1;
}
.vc_row.vc_row-fluid > .wpb_column {
  z-index: 2;
}
.row-overlay {
  position: relative;
}
.row-overlay:after {
  background-color: inherit;
  bottom: 0;
  content: "";
  display: block !important;
  height: 100% !important;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  visibility: visible !important;
}
.row-overlay .vc_column-inner {
  position: relative;
  z-index: 3;
}
.row-overlay .vc_parallax-inner {
  background-attachment: fixed !important;
  background-position: 50% 50% !important;
}
.row-overlay-black {
  background-color: #152332;
  position: relative;
}
.row-overlay-black:after {
  background-color: #000;
  bottom: 0;
  content: "";
  display: block !important;
  height: 100% !important;
  left: 0;
  opacity: 0.5;
  position: absolute;
  right: 0;
  top: 0;
  visibility: visible !important;
}
.row-overlay-black .vc_column-inner {
  position: relative;
  z-index: 3;
}
.row-overlay-black .vc_parallax-inner {
  background-attachment: fixed !important;
  background-position: 50% 50% !important;
}
.vc_row .ct-row-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.vc_row .ct-row-overlay.ct-row-overlay-skew {
  right: 0;
  -webkit-transform: skew(-20deg);
  -khtml-transform: skew(-20deg);
  -moz-transform: skew(-20deg);
  -ms-transform: skew(-20deg);
  -o-transform: skew(-20deg);
  transform: skew(-20deg);
  left: -1000px;
  border-right: 10px solid #dc0008;
}
@media screen and (max-width: 767px) {
  .vc_row .ct-row-overlay.ct-row-overlay-skew {
    opacity: 0;
    display: none;
  }
}
.vc_row.row-flex {
  display: flex;
}
.error404 .site-content {
  background-image: url(../images/bg-1.jpg);
  background-size: cover;
  background-position: 50% 50%;
  position: relative;
}
.error404 .site-content .content-area {
  padding: 120px 0 !important;
}
@media screen and (max-width: 991px) {
  .error404 .site-content .content-area {
    padding: 70px 0;
  }
}
.error404 .site-content:before {
  background-color: #000;
  opacity: 0.8;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.error404 .top-footer-info {
  display: none;
}
.error404 .btn i {
  font-size: 13px;
}
.error404 .row-404-content {
  position: relative;
}
.error404 .row-404-content .col-404-number {
  color: #fff;
  font-family: poppins;
  font-size: 200px;
  font-weight: 700;
  line-height: 200px;
}
.error404 .row-404-content .col-404-content .title-404 {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  padding-bottom: 30px;
  border-bottom: 1px solid #fff;
  margin-bottom: 30px;
}
.error404 .row-404-content .col-404-content .excerpt-404 {
  font-size: 21px;
  margin-bottom: 25px;
  font-weight: 500;
  color: #fff;
}
.error404 .row-404-content .col-404-content .btn {
  line-height: 45px;
  border-radius: 5px;
}
.error404 .row-404-content .col-404-content .btn:hover {
  background-color: #232323;
}
@media screen and (min-width: 992px) {
  .error404 .row-404-content {
    display: flex;
  }
  .error404 .row-404-content .col-404-number {
    min-width: 480px;
  }
  .error404 .row-404-content .col-404-content .title-404 {
    font-size: 50px;
  }
}
@media screen and (max-width: 991px) {
  .error404 .row-404-content {
    text-align: center;
  }
  .error404 .row-404-content .col-404-number {
    font-size: 120px;
  }
  .error404 .row-404-content .title-404 {
    border-bottom: none;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .wpb_single_image.image_align_sm_left {
    text-align: left !important;
  }
  .wpb_single_image.image_align_sm_center {
    text-align: center !important;
  }
  .wpb_single_image.image_align_sm_right {
    text-align: right !important;
  }
}
@media screen and (min-width: 992px) {
  .vc_row-o-equal-height .wpb_wrapper, .vc_row-o-equal-height .ct-images-carousel-layout1 {
    height: 100%;
  }
  .content-has-sidebar.float-right {
    order: 2;
    -webkit-order: 2;
    -ms-order: 2;
  }
  .content-has-sidebar.float-right + #secondary {
    order: 1;
    -webkit-order: 1;
    -ms-order: 1;
  }
  .content-has-sidebar.float-right + #secondary.widget-has-sidebar:before {
    left: auto;
    right: 0;
  }
}
@media screen and (max-width: 1600px) {
  .rm-padding-x2lg > .vc_column-inner, .rm-padding-x2lg > .theiaStickySidebar > .vc_column-inner {
    padding-left: 60px !important;
    padding-right: 60px !important;
  }
}
@media screen and (max-width: 1400px) {
  .rm-padding-xlg > .vc_column-inner, .rm-padding-xlg > .theiaStickySidebar > .vc_column-inner {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
  .rm-padding-xxl > .vc_column-inner, .rm-padding-xxl > .theiaStickySidebar > .vc_column-inner {
    padding-left: 60px !important;
    padding-right: 60px !important;
  }
}
@media screen and (max-width: 1280px) {
  .rm-padding-x2lg > .vc_column-inner, .rm-padding-x2lg > .theiaStickySidebar > .vc_column-inner {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
}
@media screen and (max-width: 1199px) {
  .rm-padding-lg > .vc_column-inner, .rm-padding-lg > .theiaStickySidebar > .vc_column-inner {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .vc_row.row-rm-padding-lg {
    margin-left: -15px !important;
    margin-right: -15px !important;
  }
}
@media screen and (max-width: 991px) {
  .rm-padding-md > .vc_column-inner, .rm-padding-md > .theiaStickySidebar > .vc_column-inner {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .vc_row.row-rm-padding-md {
    margin-left: -15px !important;
    margin-right: -15px !important;
  }
  #primary .vc_row.rm-margin-md {
    margin-left: -15px !important;
    margin-right: -15px !important;
  }
  .rm-margin-top-md > .vc_column-inner {
    margin-top: 0 !important;
  }
  .add-margin-bottom-md > .vc_column-inner {
    margin-bottom: 45px;
  }
}
@media screen and (max-width: 767px) {
  .rm-border-sm > .vc_column-inner {
    border: none !important;
  }
  .sm-col-to {
    flex-direction: column-reverse;
    display: flex;
  }
  .rm-padding-xs > .vc_column-inner, .rm-padding-sm > .vc_column-inner, .rm-padding-xs > .theiaStickySidebar > .vc_column-inner, .rm-padding-sm > .theiaStickySidebar > .vc_column-inner {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .vc_row.row-rm-padding-sm {
    margin-left: -15px !important;
    margin-right: -15px !important;
  }
  .rm-margin-sm.wpb_single_image {
    margin: 0 !important;
  }
  .rm-margin-sm > .vc_column-inner {
    margin: 0 !important;
  }
  .wpb_single_image.image_align_xs_left {
    text-align: left !important;
  }
  .wpb_single_image.image_align_xs_center {
    text-align: center !important;
  }
  .wpb_single_image.image_align_xs_right {
    text-align: right !important;
  }
}
.ct-banner .image_align_xs_left {
  text-align: left;
}
.ct-banner .image_align_xs_center {
  text-align: center;
}
.ct-banner .image_align_xs_right {
  text-align: right;
}
@media screen and (max-width: 575px) {
  .rm-padding-xs > .vc_column-inner, .rm-padding-xs > .theiaStickySidebar > .vc_column-inner {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .vc_row.row-rm-padding-xs {
    margin-left: -15px !important;
    margin-right: -15px !important;
  }
}
@media screen and (max-width: 480px) {
  .img-100-xs {
    width: 100%;
  }
}
ul.tp-revslider-mainul .slotholder::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.4);
  display: block;
  z-index: 22;
}
.widget_shopping_cart {
  position: absolute;
  background-color: #fff;
  right: 0;
  top: 100%;
  -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
  -khtml-box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
  width: 370px;
  padding: 40px 30px;
  -webkit-border-radius: 20px;
  -khtml-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  border-radius: 20px;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
  text-align: left;
  color: #a2a9c7;
  z-index: -99;
  visibility: hidden;
  opacity: 0;
  margin-top: 25px;
  line-height: 1.875;
}
.widget_shopping_cart.open {
  z-index: 99;
  margin-top: 11px;
  visibility: visible;
  opacity: 1;
  margin-top: 0px;
}
.widget_shopping_cart:before {
  content: '';
  width: 21px;
  height: 11px;
  position: absolute;
  top: -11px;
  left: 0;
  right: 0;
  margin: auto;
}
.widget_shopping_cart .widget_shopping_title {
  font-size: 20px;
  border-bottom: 1px solid #ebebeb;
  line-height: 1;
  padding-bottom: 20px;
  margin-bottom: 30px;
  color: #152136;
  font-weight: 500;
}
.widget_shopping_cart .product_list_widget {
  list-style: none;
  margin: 0;
}
.widget_shopping_cart .product_list_widget li {
  padding: 0 40px 0 0 !important;
  position: relative;
  margin-bottom: 30px !important;
}
.widget_shopping_cart .product_list_widget li:last-child {
  margin-bottom: 0 !important;
}
.widget_shopping_cart .product_list_widget li.empty {
  font-size: 16px;
}
.widget_shopping_cart .product_list_widget .cart-product-image {
  width: 50px;
  min-width: 50px;
  position: absolute;
  top: 0;
  left: 0;
}
.widget_shopping_cart .product_list_widget .cart-product-image img {
  float: none;
  margin: 0;
  width: 100%;
}
.widget_shopping_cart .product_list_widget .cart-product-image + .cart-product-meta {
  padding-left: 70px;
}
.widget_shopping_cart .product_list_widget .cart-product-meta h3 {
  font-size: 16px;
  color: ;
  line-height: 22px;
  margin-top: -5px;
  margin-bottom: 2px;
}
.widget_shopping_cart .product_list_widget .cart-product-meta h3 a {
  display: inline-block;
  color: inherit;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
}
.widget_shopping_cart .product_list_widget .cart-product-meta h3 a:hover {
  color: #dc0008;
}
.widget_shopping_cart .product_list_widget .cart-product-meta .quantity {
  font-size: 18px;
  color: #a2a9c7;
  border: none;
}
.widget_shopping_cart .product_list_widget .cart-product-meta .remove_from_cart_button {
  font-size: 17px;
  color: #d9d9d9;
  position: absolute;
  width: 16px;
  height: 16px;
  line-height: 16px;
  top: 50%;
  right: 0;
  -webkit-transform: translate(0, -50%);
  -khtml-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.widget_shopping_cart .product_list_widget .cart-product-meta .remove_from_cart_button:hover {
  color: #de3b36;
}
.widget_shopping_cart .widget_shopping_cart_footer {
  border-top: 1px solid #ebebeb;
  margin-top: 30px;
  padding-top: 20px;
}
.widget_shopping_cart .widget_shopping_cart_footer .total {
  margin-bottom: 18px;
  padding-top: 0;
  border: none;
}
.widget_shopping_cart .widget_shopping_cart_footer .total strong {
  font-size: 20px;
  line-height: 28px;
  color: #a2a9c7;
  font-weight: normal;
}
.widget_shopping_cart .widget_shopping_cart_footer .total span.amount {
  color: #78809f;
  float: right;
  font-size: 28px;
  line-height: 1;
}
.widget_shopping_cart .widget_shopping_cart_footer .buttons {
  margin-bottom: 0;
  display: flex;
  flex-wrap: nowrap;
  margin-left: -15px;
  margin-right: -15px;
}
.widget_shopping_cart .widget_shopping_cart_footer .buttons .btn {
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 15px;
  width: 50%;
  line-height: 50px;
}
.entry-content > .woocommerce .cart-empty, .entry-content > .woocommerce .return-to-shop {
  text-align: center;
}
.woocommerce ins {
  background-color: transparent;
  color: #dc0008;
}
.woocommerce .content-row #secondary.widget-has-sidebar:before {
  display: none;
}
.woocommerce #secondary .widget {
  background-color: transparent;
  border: none;
  padding: 0;
  margin-bottom: 45px;
}
.woocommerce #secondary .widget:last-child {
  margin-bottom: 0;
}
.woocommerce #secondary .widget-title {
  font-size: 24px;
  color: #222;
  padding-bottom: 0px;
  margin-bottom: 30px;
  border: none;
}
.woocommerce #secondary .widget-title:before {
  display: none;
}
.woocommerce #secondary .widget_products ul li {
  position: relative;
  padding: 0 0 0 95px;
  margin-bottom: 15px;
  min-height: 80px;
}
.woocommerce #secondary .widget_products ul li img {
  margin: 0;
  width: 100%;
  max-width: 80px;
  position: absolute;
  top: 0;
  left: 0;
}
.woocommerce #secondary .widget_products ul li a {
  font-size: 16px;
  margin-bottom: 0;
  color: #262626;
  font-weight: normal;
  line-height: 1.25;
  margin-bottom: 5px;
}
.woocommerce #secondary .widget_products ul li a:hover {
  color: #dc0008;
}
@media screen and (max-width: 769px) {
  body.woocommerce .coupon #coupon_code, body.woocommerce-page .coupon #coupon_code {
    width: 100% !important;
    margin-bottom: 10px;
    border: none;
    -webkit-border-radius: 50px;
    -khtml-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    border-radius: 50px;
  }
  body.woocommerce .coupon .button, body.woocommerce-page .coupon .button {
    width: 100% !important;
  }
}
body.woocommerce form .form-row, body.woocommerce-page form .form-row {
  padding: 0 0 10px;
}
body.woocommerce table.cart td.actions .coupon .input-text, body.woocommerce-page table.cart td.actions .coupon .input-text {
  margin-right: 15px;
}
body.woocommerce textarea, body.woocommerce-page textarea {
  padding-top: 24px;
  padding-bottom: 24px;
}
body.woocommerce .nice-select, body.woocommerce-page .nice-select {
  border: 2px solid #e1ecff;
  text-align: left;
  -webkit-border-radius: 50px;
  -khtml-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  border-radius: 50px;
  font-size: 16px;
}
body.woocommerce .nice-select span.current, body.woocommerce-page .nice-select span.current {
  line-height: 44px;
}
body.woocommerce .nice-select:after, body.woocommerce-page .nice-select:after {
  color: #262626;
}
body.woocommerce .nice-select ul.list, body.woocommerce-page .nice-select ul.list {
  border: 2px solid #e1ecff;
  -webkit-border-radius: 25px;
  -khtml-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  -o-border-radius: 25px;
  border-radius: 25px;
}
body.woocommerce #respond input#submit, body.woocommerce-page #respond input#submit, body.woocommerce a.button, body.woocommerce-page a.button, body.woocommerce a.wc-forward, body.woocommerce-page a.wc-forward, body.woocommerce button.button, body.woocommerce-page button.button, body.woocommerce input.button, body.woocommerce-page input.button, body.woocommerce .cart button.button, body.woocommerce-page .cart button.button, body.woocommerce a.button.alt, body.woocommerce-page a.button.alt {
  background-color: #dc0008;
  border: 2px solid #dc0008;
  color: #fff;
  font-size: 15px;
  padding: 0 40px;
  line-height: 46px;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
  -webkit-border-radius: 55px;
  -khtml-border-radius: 55px;
  -moz-border-radius: 55px;
  -ms-border-radius: 55px;
  -o-border-radius: 55px;
  border-radius: 55px;
  position: relative;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  font-weight: 600;
  outline: none;
  white-space: nowrap;
  text-transform: capitalize;
  letter-spacing: -0.03em;
}
body.woocommerce #respond input#submit:hover, body.woocommerce-page #respond input#submit:hover, body.woocommerce a.button:hover, body.woocommerce-page a.button:hover, body.woocommerce a.wc-forward:hover, body.woocommerce-page a.wc-forward:hover, body.woocommerce button.button:hover, body.woocommerce-page button.button:hover, body.woocommerce input.button:hover, body.woocommerce-page input.button:hover, body.woocommerce .cart button.button:hover, body.woocommerce-page .cart button.button:hover, body.woocommerce a.button.alt:hover, body.woocommerce-page a.button.alt:hover, body.woocommerce #respond input#submit:focus, body.woocommerce-page #respond input#submit:focus, body.woocommerce a.button:focus, body.woocommerce-page a.button:focus, body.woocommerce a.wc-forward:focus, body.woocommerce-page a.wc-forward:focus, body.woocommerce button.button:focus, body.woocommerce-page button.button:focus, body.woocommerce input.button:focus, body.woocommerce-page input.button:focus, body.woocommerce .cart button.button:focus, body.woocommerce-page .cart button.button:focus, body.woocommerce a.button.alt:focus, body.woocommerce-page a.button.alt:focus, body.woocommerce #respond input#submit:active, body.woocommerce-page #respond input#submit:active, body.woocommerce a.button:active, body.woocommerce-page a.button:active, body.woocommerce a.wc-forward:active, body.woocommerce-page a.wc-forward:active, body.woocommerce button.button:active, body.woocommerce-page button.button:active, body.woocommerce input.button:active, body.woocommerce-page input.button:active, body.woocommerce .cart button.button:active, body.woocommerce-page .cart button.button:active, body.woocommerce a.button.alt:active, body.woocommerce-page a.button.alt:active {
  background-color: transparent;
  -webkit-box-shadow: none;
  -khtml-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
  outline: none;
  text-decoration: none;
  color: #dc0008;
}
.woocommerce .comment-form {
  max-width: 100%;
}
.woocommerce .woocommerce-message, .woocommerce .woocommerce-info {
  border-color: #dc0008;
}
.woocommerce .woocommerce-message:before, .woocommerce .woocommerce-info:before {
  color: #dc0008;
}
.woocommerce .quantity {
  position: relative;
  display: inline-block;
  border: 1px solid #ddd;
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
}
.woocommerce .quantity .qty {
  padding: 0;
  border-top: none;
  border-bottom: none;
  background-color: transparent;
  font-weight: 600;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
  color: #dc0008;
  font-size: 16px;
  -moz-appearance: textfield;
  margin: 0 46px;
  height: 46px;
  width: 50px;
}
.woocommerce .quantity .qty:-webkit-outer-spin-button, .woocommerce .quantity .qty:-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.woocommerce .quantity .qty:focus {
  border-color: #ddd;
  -webkit-box-shadow: none;
  -khtml-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}
.woocommerce .quantity-icon i {
  width: 48px;
  height: 48px;
  line-height: 48px;
  font-size: 20px;
  cursor: pointer;
  color: #838b97;
  text-align: center;
  position: absolute;
  bottom: 0;
  -webkit-transition: all 0.3s ease 0s;
  -khtml-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.woocommerce .quantity-icon i:before {
  vertical-align: middle;
}
.woocommerce .quantity-icon i.quantity-down {
  left: 0;
}
.woocommerce .quantity-icon i.quantity-up {
  right: 0;
}
.woocommerce table.shop_table {
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
}
.woocommerce table.shop_table td {
  padding: 12px 15px;
}
.woocommerce table.shop_table th, .woocommerce table.shop_table tbody th, .woocommerce table.shop_table tfoot td, .woocommerce table.shop_table tfoot th {
  font-weight: 500;
}
.woocommerce-page #add_payment_method table.cart img, .woocommerce-page.woocommerce-cart table.cart img, .woocommerce-page.woocommerce-checkout table.cart img {
  width: 50px;
}
@media screen and (min-width: 992px) {
  .woocommerce .content-row {
    margin: 0 -15px;
  }
  .woocommerce #primary.content-has-sidebar {
    padding-left: 15px;
    padding-right: 15px;
    flex: 0 0 75%;
    -webkit-flex: 0 0 75%;
    -ms-flex: 0 0 75%;
    -o-flex: 0 0 75%;
    max-width: 75%;
  }
  .woocommerce #secondary.widget-has-sidebar {
    padding-left: 15px;
    padding-right: 15px;
    flex: 0 0 25%;
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    -o-flex: 0 0 25%;
    max-width: 25%;
  }
}
.widget_product_categories ul {
  list-style: none;
  margin-bottom: 0;
}
.widget_product_categories ul li {
  font-size: 0px;
}
.widget_product_categories ul li a {
  color: #777;
  display: block;
  font-size: 14px;
  line-height: 30px;
  padding: 0;
  position: relative;
}
.widget_product_categories ul li a:before {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  font-size: 16px;
  -webkit-transform: translate(0, -50%);
  -khtml-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.widget_product_categories ul li:last-child > a {
  border-bottom: none;
}
.widget_product_categories ul li.current-menu-item > a, .widget_product_categories ul li.current-cat > a, .widget_product_categories ul li.current-cat-parent > a, .widget_product_categories ul li > a:hover {
  color: #dc0008;
}
.widget_product_tag_cloud .tagcloud a {
  padding-left: 18px;
  padding-right: 18px;
  border: 1px solid #ddd;
  font-size: 14px !important;
  color: #777;
  background-color: transparent;
  line-height: 28px;
}
.widget_product_tag_cloud .tagcloud a:hover {
  background-color: #dc0008;
  border-color: #dc0008;
  color: #fff;
}
.woocommerce #secondary .widget_price_filter .ui-slider-horizontal {
  height: 4px;
  background-color: #e6e6e6;
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
}
.woocommerce #secondary .widget_price_filter .ui-slider .ui-slider-range {
  background-color: #dc0008;
}
.woocommerce #secondary .widget_price_filter .ui-slider .ui-slider-handle {
  height: 10px;
  width: 10px;
  background-color: #dc0008;
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
  top: -3px;
}
.woocommerce #secondary .widget_price_filter .price_slider_amount {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: center;
  padding-top: 10px;
}
.woocommerce #secondary .widget_price_filter .price_slider_amount .button {
  line-height: 36px;
  font-size: 14px;
  margin-right: 20px;
  letter-spacing: 0.05em;
  padding-left: 18px;
  padding-right: 18px;
}
.woocommerce #secondary .widget_price_filter .price_label {
  font-size: 14px;
  color: #252525;
}
.widget_products .amount {
  font-size: 16px;
  font-weight: 600;
  color: #dc0008;
}
.widget_products del {
  color: #c4c9dc;
}
.widget_products del .amount {
  color: #c4c9dc;
}
.widget_products .star-rating-wrap {
  display: none !important;
}
.widget_rating_filter .wc-layered-nav-rating a {
  font-size: 0px;
  display: block;
  padding-left: 28px !important;
  position: relative;
}
.widget_rating_filter .wc-layered-nav-rating a:before {
  content: "";
  height: 18px;
  width: 18px;
  border: 1px solid #e6e6e6;
  -webkit-border-radius: 18px;
  -khtml-border-radius: 18px;
  -moz-border-radius: 18px;
  -ms-border-radius: 18px;
  -o-border-radius: 18px;
  border-radius: 18px;
  position: absolute;
  top: 1px;
  left: 0;
  -webkit-transition: all 0.2s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  -khtml-transition: all 0.2s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  -moz-transition: all 0.2s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  -ms-transition: all 0.2s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  -o-transition: all 0.2s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  transition: all 0.2s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
}
.widget_rating_filter .wc-layered-nav-rating a .star-rating {
  font-size: 18px;
}
.widget_rating_filter .wc-layered-nav-rating a:hover:before {
  border-color: #dc0008;
  background-color: #dc0008;
}
.widget_rating_filter .wc-layered-nav-rating.chosen a:before {
  border-color: #dc0008;
  background-color: #dc0008;
}
#shop-topbar {
  border-bottom: 1px solid #e5e5e5;
  background-color: #f7f7f7;
}
#shop-topbar .shop-topbar-item {
  margin: 11px 0;
  position: relative;
  padding-left: 76px;
  color: #000;
  font-size: 16px;
  min-height: 56px;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}
#shop-topbar .shop-topbar-item i {
  height: 56px;
  width: 56px;
  -webkit-border-radius: 56px;
  -khtml-border-radius: 56px;
  -moz-border-radius: 56px;
  -ms-border-radius: 56px;
  -o-border-radius: 56px;
  border-radius: 56px;
  border: 1px solid #e5e5e5;
  line-height: 54px;
  text-align: center;
  font-size: 24px;
  position: absolute;
  top: 0;
  left: 0;
}
#shop-topbar .shop-topbar-item span {
  font-weight: 500;
}
#shop-breadcrumb {
  padding: 23px 0;
}
#shop-breadcrumb ul {
  list-style: none;
  margin: 0;
}
#shop-breadcrumb ul li {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  color: #dc0008;
  margin: 10px 0;
  padding: 0 12px;
  position: relative;
}
#shop-breadcrumb ul li::after {
  content: '/';
  color: #e9e9e9;
  position: absolute;
  top: 0;
  right: -4px;
}
#shop-breadcrumb ul li:first-child {
  padding-left: 0;
}
#shop-breadcrumb ul li:last-child:after {
  display: none;
}
#shop-breadcrumb ul li a {
  color: ;
}
#shop-breadcrumb ul li a:hover {
  color: #dc0008;
}
.woocommerce .star-rating-wrap {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}
.woocommerce .star-rating-wrap .star-rating {
  margin: 0;
}
.woocommerce .star-rating-wrap .count-rating {
  font-size: 14px;
  margin-left: 8px;
  color: #262626;
  text-transform: capitalize;
}
.woocommerce .woocommerce-product-category a {
  margin-bottom: 8px;
  display: inline-block;
  color: #dc0008;
}
.woocommerce .woocommerce-product-category a:hover {
  color: #232323;
}
@media screen and (max-width: 1199px) {
  .woocommerce .woocommerce-product-category a {
    margin-bottom: 4px;
    font-size: 14px;
  }
}
.woocommerce span.onsale {
  height: 45px;
  width: 45px;
  min-width: inherit;
  min-height: inherit;
  font-size: 16px;
  color: #fff;
  padding: 0;
  text-align: center;
  line-height: 45px;
  background-color: #232323;
  -webkit-border-radius: 50px;
  -khtml-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  border-radius: 50px;
  margin: 0 !important;
  top: 14px !important;
  left: 29px !important;
  right: auto !important;
  font-weight: normal;
  z-index: 1;
}
.woocommerce .star-rating {
  margin: 0;
  letter-spacing: 0.2em;
  width: 90px;
  height: 18px;
}
.woocommerce .star-rating span::before, .woocommerce .star-rating:before {
  content: "\f27d\f27d\f27d\f27d\f27d";
  font-family: 'Material-Design-Iconic-Font';
  font-size: 18px;
}
.woocommerce .star-rating span::before {
  color: #ffba00;
}
.woocommerce .star-rating:before {
  color: #d4d4d4;
}
.woocommerce ul.products {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.woocommerce ul.products li.product {
  margin-bottom: 79px;
  margin-right: 0;
  padding: 0 15px;
}
.woocommerce ul.products li.product.last {
  margin-right: 0;
}
@media screen and (min-width: 992px) {
  .woocommerce ul.products.columns-4 li.product {
    width: 25%;
  }
}
@media screen and (min-width: 768px) {
  .woocommerce ul.products.columns-3 li.product {
    width: 33.33%;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .woocommerce ul.products li.product {
    width: 50% !important;
  }
}
@media screen and (max-width: 575px) {
  .woocommerce ul.products li.product {
    width: 100% !important;
  }
}
@media screen and (min-width: 992px) {
  .woocommerce #primary.content-has-sidebar ul.products.columns-4 li.product {
    width: 33.33%;
  }
}
.woocommerce ul.products li.product .woocommerce-product-title, .woocommerce .woocommerce-product-title {
  font-size: 20px;
  margin-bottom: 17px;
}
.woocommerce ul.products li.product .woocommerce-product-title a, .woocommerce .woocommerce-product-title a {
  color: inherit;
}
.woocommerce ul.products li.product .woocommerce-product-title a:hover, .woocommerce .woocommerce-product-title a:hover {
  color: #dc0008;
}
.woocommerce ul.products li.product .price {
  font-size: 16px;
  font-weight: 600;
  color: #dc0008;
  margin-bottom: 0;
}
.woocommerce ul.products li.product .price del {
  color: rgba(120, 128, 159, 0.7);
}
.woocommerce ul.products li.product .price ins {
  color: #dc0008;
  font-weight: inherit;
}
.woocommerce .woocommerce-topbar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
  position: relative;
  z-index: 101;
}
.woocommerce .woocommerce-topbar div.woocommerce-result-count {
  margin: 15px 30px 15px 0px;
  flex-grow: 1;
}
.woocommerce .woocommerce-topbar .woocommerce-result-count, .woocommerce .woocommerce-topbar .woocommerce-topbar-ordering .woocommerce-ordering {
  float: none;
  margin: 0;
  font-size: 16px;
  color: #262626;
}
.woocommerce .woocommerce-topbar .woocommerce-ordering {
  min-width: 220px;
}
.woocommerce .woocommerce-topbar .woocommerce-ordering .nice-select {
  background-color: #fff;
}
.woocommerce .woocommerce-product-inner .woocommerce-product-header {
  background-color: #fff;
  position: relative;
  overflow: hidden;
}
.woocommerce .woocommerce-product-inner .woocommerce-product-header img {
  width: auto;
  display: inline-block;
  margin-bottom: 0 !important;
}
.woocommerce .woocommerce-product-inner .woocommerce-product-header .woocommerce-product-meta {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  background-color: rgba(25, 31, 35, 0.7);
  opacity: 0;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
}
.woocommerce .woocommerce-product-inner .woocommerce-product-header .woocommerce-product-meta .woocommerce-add-to-cart {
  position: absolute;
  text-align: center;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -khtml-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  margin-top: 40px;
  opacity: 0;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
}
.woocommerce .woocommerce-product-inner .woocommerce-product-header .woocommerce-product-meta .woocommerce-add-to-cart a {
  margin-top: 0;
  background-color: #dc0008;
  color: #fff;
  background-image: none;
}
.woocommerce .woocommerce-product-inner .woocommerce-product-header .woocommerce-product-meta .woocommerce-add-to-cart a.added {
  display: none;
}
.woocommerce .woocommerce-product-inner .woocommerce-product-header .woocommerce-product-meta .woocommerce-add-to-cart a.wc-forward {
  padding-top: 0;
  padding-bottom: 0;
}
.woocommerce .woocommerce-product-inner .woocommerce-product-header .woocommerce-product-meta .woocommerce-add-to-cart a.loading {
  opacity: 1;
}
.woocommerce .woocommerce-product-inner .woocommerce-product-header .woocommerce-product-meta .woocommerce-add-to-cart a.loading:after {
  letter-spacing: 0;
  top: 0;
  right: 12px;
}
@media screen and (max-width: 1199px) {
  .woocommerce .woocommerce-product-inner .woocommerce-product-header .woocommerce-product-meta .woocommerce-add-to-cart a {
    padding-left: 32px;
    padding-right: 32px;
    line-height: 48px;
    letter-spacing: 0.05em;
  }
}
.woocommerce .woocommerce-product-inner:hover .woocommerce-product-header .woocommerce-product-meta {
  opacity: 1;
}
.woocommerce .woocommerce-product-inner:hover .woocommerce-product-header .woocommerce-product-meta .woocommerce-add-to-cart {
  margin-top: 0;
  opacity: 1;
}
.woocommerce .woocommerce-product-inner .woocommerce-product-holder {
  padding-top: 38px;
  text-align: center;
}
.woocommerce .woocommerce-product-inner .woocommerce-product-holder .price {
  line-height: 1;
}
.woocommerce .woocommerce-product-inner .woocommerce-product-holder .star-rating {
  float: none;
  margin: 0 auto 8px auto;
}
.woocommerce .woocommerce-product-inner .woocommerce-product-holder .count-rating {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.5);
  margin-left: 8px;
}
.woocommerce .woocommerce-product-inner .woocommerce-product-holder .woocommerce-product-title {
  padding: 0px !important;
}
.woocommerce .woocommerce-product-inner .woocommerce-product-holder .woocommerce-product-title a {
  color: inherit;
}
.woocommerce .woocommerce-product-inner .woocommerce-product-holder .woocommerce-product-title a:hover {
  color: #dc0008;
}
.woocommerce .woocommerce-product-inner .woocommerce-product-holder .woocommerce-product-subtitle {
  color: rgba(51, 51, 51, 0.66);
  font-size: 14px;
  margin-bottom: 12px;
}
.woocommerce .woocommerce-product-inner .woocommerce-product-holder .woocommerce-product-attr {
  margin-bottom: 12px;
}
.woocommerce .woocommerce-product-inner .woocommerce-product-holder .woocommerce-product-attr img {
  width: auto !important;
  margin: 0 !important;
}
.woocommerce .woocommerce-product-inner .woocommerce-product-holder .star-rating-wrap {
  margin-bottom: 4px;
}
.woocommerce .woocommerce-product-inner .woocommerce-product-holder .star-rating-wrap .count-rating {
  display: none;
}
.woocommerce .woocommerce-product-inner + .button.yith-wcqv-button {
  display: none !important;
}
.woocommerce .product-type-grouped .woocommerce-product-header .woocommerce-product-meta {
  display: none !important;
}
.woocommerce nav.woocommerce-pagination {
  text-align: left;
}
.woocommerce nav.woocommerce-pagination ul.page-numbers {
  border: none;
}
.woocommerce nav.woocommerce-pagination ul.page-numbers li {
  border: none;
  margin: 10px 10px 0 0;
}
.woocommerce nav.woocommerce-pagination ul.page-numbers .page-numbers {
  border: 2px solid #e4eaf9;
  text-align: center;
  height: 50px;
  width: 50px;
  line-height: 46px;
  color: #777;
  background-color: #fff;
  font-size: 18px;
  font-weight: 600;
  display: inline-block;
  margin: 0;
  -webkit-border-radius: 50px;
  -khtml-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  border-radius: 50px;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
  padding: 0;
}
.woocommerce nav.woocommerce-pagination ul.page-numbers .page-numbers.next, .woocommerce nav.woocommerce-pagination ul.page-numbers .page-numbers.prev {
  font-size: 0;
}
.woocommerce nav.woocommerce-pagination ul.page-numbers .page-numbers.next:before {
  font-size: 22px;
  color: #b4c2e1;
  content: '\f105';
  font-family: 'FontAwesome';
}
.woocommerce nav.woocommerce-pagination ul.page-numbers .page-numbers.prev:before {
  font-size: 22px;
  color: #b4c2e1;
  content: '\f104';
  font-family: 'FontAwesome';
}
.woocommerce nav.woocommerce-pagination ul.page-numbers .page-numbers.current, .woocommerce nav.woocommerce-pagination ul.page-numbers .page-numbers:hover {
  border-color: #dc0008;
  background-color: #dc0008;
  color: #fff;
}
.woocommerce nav.woocommerce-pagination ul.page-numbers .page-numbers.current:before, .woocommerce nav.woocommerce-pagination ul.page-numbers .page-numbers:hover:before, .woocommerce nav.woocommerce-pagination ul.page-numbers .page-numbers.current:after, .woocommerce nav.woocommerce-pagination ul.page-numbers .page-numbers:hover:after {
  color: #fff;
}
.single-product .woocommerce-social-share {
  padding-top: 30px;
}
.single-product .woocommerce-social-share label {
  font-size: 14px;
  color: #262626;
  margin-right: 20px;
}
.single-product .woocommerce-social-share a {
  color: #6a6a6a;
  font-size: 16px;
  margin-right: 12px;
}
.single-product .woocommerce-social-share a:hover {
  color: #dc0008;
}
.single-product .woocommerce-summary-wrap {
  margin: 0 -25px;
}
.single-product .woocommerce-summary-wrap > .col-xl-6 {
  padding: 0 25px;
}
.single-product #shop-breadcrumb {
  padding-bottom: 46px;
}
.single-product #shop-newsletter {
  margin-top: 30px;
}
.single-product section.related {
  padding-top: 55px;
}
.single-product section.related h2 {
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 0;
}
.single-product section.related ul.products {
  margin-bottom: 0;
}
.single-product section.related ul.products li.product {
  margin-bottom: 0 !important;
  margin-top: 65px;
}
.single-product #primary div.product .woocommerce-product-details__short-description {
  padding-top: 14px;
  margin-bottom: 41px;
  font-size: 14px;
  line-height: 30px;
}
.single-product #primary div.product .woocommerce-product-details__short-description p:last-child {
  margin-bottom: 0;
}
.single-product #primary div.product form.cart {
  margin-bottom: 24px;
}
.single-product #primary div.product form.cart label {
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 0;
  font-weight: 700;
  color: #232323;
}
@media screen and (max-width: 767px) {
  .single-product #primary div.product form.cart label {
    font-size: 15px;
    line-height: normal;
  }
}
.single-product #primary div.product form.cart .reset_variations {
  display: none !important;
}
.single-product #primary div.product form.cart .variations {
  margin-bottom: 10px;
}
.single-product #primary div.product form.cart .variations td {
  padding-bottom: 20px;
}
.single-product #primary div.product form.cart .button-variable-wrapper .button-variable-item {
  background-color: #f3f3f3;
  border: none;
  line-height: 40px;
  color: #152136;
  text-transform: uppercase;
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
  -webkit-box-shadow: none;
  -khtml-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
  -webkit-transition: all 0.3s ease 0s;
  -khtml-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  margin: 0 5px 5px 0;
  width: 40px;
  height: 40px;
}
.single-product #primary div.product form.cart .button-variable-wrapper .button-variable-item span {
  font-size: 14px;
}
.single-product #primary div.product form.cart .button-variable-wrapper .button-variable-item.selected, .single-product #primary div.product form.cart .button-variable-wrapper .button-variable-item:hover {
  background-color: #dc0008;
  color: #fff;
}
.single-product #primary div.product form.cart .color-variable-wrapper .color-variable-item {
  padding: 0;
  border: none;
  -webkit-box-shadow: none;
  -khtml-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
  margin: 0 5px 5px 0;
  opacity: 0.5;
}
.single-product #primary div.product form.cart .color-variable-wrapper .color-variable-item span {
  border: 2px solid rgba(0, 0, 0, 0.2);
}
.single-product #primary div.product form.cart .color-variable-wrapper .color-variable-item.selected {
  opacity: 1;
}
.single-product #primary div.product form.cart.variations_form .woocommerce-variation-add-to-cart {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.single-product #primary div.product form.cart.variations_form .woocommerce-variation-add-to-cart .single_add_to_cart_button, .single-product #primary div.product form.cart.variations_form .woocommerce-variation-add-to-cart .quantity {
  margin-top: 20px;
}
.single-product #primary div.product form.cart:not(.variations_form), .single-product #primary div.product form.cart:not(.grouped_form) {
  display: flex;
  margin: 0;
  align-items: center;
  flex-wrap: wrap;
}
.single-product #primary div.product form.cart:not(.variations_form) .quantity, .single-product #primary div.product form.cart:not(.grouped_form) .quantity, .single-product #primary div.product form.cart:not(.variations_form) .single_add_to_cart_button, .single-product #primary div.product form.cart:not(.grouped_form) .single_add_to_cart_button {
  margin-top: 10px;
}
@media (: 362px) {
  .single-product #primary div.product form.cart:not(.variations_form) .quantity, .single-product #primary div.product form.cart:not(.grouped_form) .quantity, .single-product #primary div.product form.cart:not(.variations_form) .single_add_to_cart_button, .single-product #primary div.product form.cart:not(.grouped_form) .single_add_to_cart_button {
    margin-bottom: 30px;
  }
}
.single-product #primary div.product .woocommerce-gallery span.onsale {
  display: none;
}
.single-product #primary div.product .woocommerce-product-gallery {
  width: 100% !important;
  margin-bottom: 80px;
}
@media screen and (max-width: 991px) {
  .single-product #primary div.product .woocommerce-product-gallery {
    margin-bottom: 50px;
  }
}
.single-product #primary div.product .woocommerce-product-gallery .flex-control-nav {
  margin-top: 30px;
  margin-left: -15px;
  margin-right: -15px;
}
@media screen and (max-width: 575px) {
  .single-product #primary div.product .woocommerce-product-gallery .flex-control-nav {
    margin-top: 10px;
    margin-left: -5px;
    margin-right: -5px;
  }
}
.single-product #primary div.product .woocommerce-product-gallery .flex-control-nav li {
  padding: 0 15px;
  width: 33.33%;
}
@media screen and (max-width: 575px) {
  .single-product #primary div.product .woocommerce-product-gallery .flex-control-nav li {
    padding: 0 5px;
  }
}
.single-product #primary div.product .woocommerce-product-gallery .flex-control-nav img {
  opacity: 1;
}
.single-product #primary div.product .woocommerce-product-gallery .flex-control-nav img.flex-active {
  outline: 5px solid rgba(220, 0, 8, 0.5);
  outline-offset: -4px;
}
.single-product #primary div.product .woocommerce-product-gallery .woocommerce-product-gallery__image a {
  position: relative;
  display: block;
}
.single-product #primary div.product .woocommerce-product-gallery .woocommerce-product-gallery__image a:before {
  content: '';
  background-color: rgba(220, 0, 8, 0.85);
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0;
  -webkit-transition: all 0.3s linear;
  -khtml-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.single-product #primary div.product .woocommerce-product-gallery .woocommerce-product-gallery__image a:after {
  content: "\f06e";
  font-family: "Font Awesome 5 Pro";
  font-size: 16px;
  height: 40px;
  width: 40px;
  line-height: 40px;
  -webkit-border-radius: 40px;
  -khtml-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
  border-radius: 40px;
  background-color: #fff;
  text-align: center;
  color: #dc0008;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0%, -50%);
  -khtml-transform: translate(0%, -50%);
  -moz-transform: translate(0%, -50%);
  -ms-transform: translate(0%, -50%);
  -o-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transition: all 0.3s linear;
  -khtml-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  opacity: 0;
}
.single-product #primary div.product .woocommerce-product-gallery .woocommerce-product-gallery__image a:hover:before {
  opacity: 0.8;
}
.single-product #primary div.product .woocommerce-product-gallery .woocommerce-product-gallery__image a:hover:after {
  opacity: 1;
}
.single-product #primary div.product .entry-summary {
  width: 100% !important;
  margin-bottom: 80px;
}
@media screen and (min-width: 768px) {
  .single-product #primary div.product .entry-summary {
    position: sticky;
    top: 62px;
  }
}
@media screen and (max-width: 767px) {
  .single-product #primary div.product .entry-summary {
    margin-bottom: 30px;
  }
}
.single-product #primary div.product .entry-summary .woocommerce-product-rating {
  margin-bottom: 0;
}
.single-product #primary div.product .entry-summary .woocommerce-product-rating .woocommerce-review-link {
  display: none;
}
.single-product #primary div.product .entry-summary .woocommerce-product-rating .star-rating-wrap {
  margin-bottom: 19px;
}
.single-product #primary div.product .entry-summary .woocommerce-product-category a {
  font-size: 14px;
  margin-bottom: 5px;
}
.single-product #primary div.product .entry-summary .entry-title {
  font-size: 30px;
  margin-bottom: 9px;
}
.single-product #primary div.product .entry-summary .price {
  font-size: 30px;
  line-height: 1;
  color: #dc0008;
}
.single-product #primary div.product .entry-summary .price ins {
  margin-right: 22px;
}
.single-product #primary div.product .entry-summary .price del {
  color: #bfc7d3;
}
.single-product #primary div.product .entry-summary .price del .amount {
  color: #bfc7d3;
}
.single-product #primary div.product .entry-summary .woocommerce-sg-product-excerpt > h3 {
  font-size: 30px;
  margin-bottom: 13px;
}
.single-product #primary div.product .entry-summary .single_add_to_cart_button {
  clear: left;
  margin-top: 30px;
}
.single-product #primary div.product .woocommerce-tabs ul.wc-tabs {
  overflow: visible;
  padding: 0;
  margin-bottom: 0;
  border-bottom: 2px solid #ddd;
  display: block;
}
.single-product #primary div.product .woocommerce-tabs ul.wc-tabs:before, .single-product #primary div.product .woocommerce-tabs ul.wc-tabs:after {
  display: none !important;
}
@media screen and (max-width: 575px) {
  .single-product #primary div.product .woocommerce-tabs ul.wc-tabs {
    display: block;
  }
}
.single-product #primary div.product .woocommerce-tabs ul.wc-tabs li {
  margin: 0 50px 0 0;
  padding: 0;
  border: none;
  background-color: transparent;
  position: relative;
  z-index: 99;
}
.single-product #primary div.product .woocommerce-tabs ul.wc-tabs li:before, .single-product #primary div.product .woocommerce-tabs ul.wc-tabs li:after {
  display: none !important;
}
@media screen and (max-width: 575px) {
  .single-product #primary div.product .woocommerce-tabs ul.wc-tabs li {
    display: block;
    padding: 0;
    margin-right: 0;
    margin-bottom: 30px;
  }
  .single-product #primary div.product .woocommerce-tabs ul.wc-tabs li:last-child {
    margin-bottom: 0;
  }
  .single-product #primary div.product .woocommerce-tabs ul.wc-tabs li a {
    display: block;
  }
}
.single-product #primary div.product .woocommerce-tabs ul.wc-tabs li a {
  padding: 0 0 17px;
  font-size: 22px;
  line-height: 1;
  color: #777;
  letter-spacing: -0.03em;
  font-weight: 400;
  position: relative;
}
.single-product #primary div.product .woocommerce-tabs ul.wc-tabs li a:before {
  content: '';
  width: 0;
  left: 0;
  right: 0;
  margin: auto;
  bottom: -2px;
  background-color: #dc0008;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
  opacity: 0;
  position: absolute;
  height: 2px;
}
.single-product #primary div.product .woocommerce-tabs ul.wc-tabs li a:after {
  display: none !important;
}
.single-product #primary div.product .woocommerce-tabs ul.wc-tabs li.active > a {
  color: #dc0008;
}
.single-product #primary div.product .woocommerce-tabs ul.wc-tabs li.active > a:before {
  opacity: 1;
  width: 100%;
}
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel {
  font-size: 14px;
  line-height: 30px;
}
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel p:last-child {
  margin-bottom: 0;
}
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel > h2 {
  display: none;
}
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel.panel {
  padding-top: 32px;
  margin-bottom: 0;
}
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel .shop_attributes {
  border: 1px solid #dee2e6;
}
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel .shop_attributes th, .single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel .shop_attributes td {
  border-bottom: 1px solid #dee2e6;
  font-family: inherit;
  color: #152136;
  font-weight: normal;
  font-style: normal;
  padding: 10px;
}
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel .shop_attributes td {
  border-left: 1px solid #dee2e6;
}
.single-product #primary div.product .woocommerce-tabs .tab-product-feature-list {
  font-size: 18px;
  line-height: 34px;
}
.single-product #primary div.product .woocommerce-tabs .tab-product-feature-list .col-xl-4 {
  font-weight: 600;
}
.single-product #primary div.product .woocommerce-tabs .tab-product-feature-list .line-gap {
  margin: 0;
  width: 100%;
}
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews .comment-form-rating {
  margin-bottom: 15px;
}
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews .comment-form-rating label {
  margin-bottom: 10px;
}
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews .comment-form-comment label {
  margin-bottom: 8px;
}
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews .woocommerce-Reviews-title {
  font-size: 22px;
  margin-bottom: 22px;
}
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews .comment-reply-title, .single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews .nice-select {
  display: none;
}
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews .comment-form #comment {
  height: 120px;
}
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #review_form {
  padding: 30px;
  border: 1px solid #e9e9e9;
}
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #review_form #commentform {
  padding: 0;
  background-color: inherit;
}
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist {
  padding: 0;
}
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review {
  position: relative;
  margin-bottom: 20px;
  padding: 20px;
  border: 1px solid #eee;
}
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .star-rating-wrap {
  position: absolute;
  right: 10px;
  top: 0;
}
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .star-rating-wrap .count-rating {
  display: none;
}
@media screen and (max-width: 991px) {
  .single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .star-rating-wrap {
    position: static;
    margin-bottom: 6px;
  }
}
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .comment_container {
  position: relative;
}
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review img.avatar {
  padding: 0;
  width: 80px;
  -webkit-border-radius: 80px;
  -khtml-border-radius: 80px;
  -moz-border-radius: 80px;
  -ms-border-radius: 80px;
  -o-border-radius: 80px;
  border-radius: 80px;
  border: 5px solid #fff;
}
@media screen and (max-width: 575px) {
  .single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review img.avatar {
    width: 40px;
    border: none;
  }
}
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .comment-text {
  border: none;
  margin: 0;
  padding: 0 0 0 100px;
}
@media screen and (max-width: 767px) {
  .single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .comment-text .star-rating {
    float: none;
  }
}
@media screen and (max-width: 575px) {
  .single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .comment-text {
    padding-left: 60px;
  }
}
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .meta {
  display: flex;
  align-items: center;
  margin: 0 0 8px;
  font-size: 16px;
}
@media screen and (max-width: 575px) {
  .single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .meta {
    display: block;
  }
}
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .meta .woocommerce-review__published-date {
  display: block;
  font-style: 14px;
  color: #152136;
}
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .meta .woocommerce-review__author {
  font-weight: 600;
  color: #152136;
}
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .meta .woocommerce-review__dash {
  display: none;
}
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .meta .woocommerce-review__published-date:before {
  content: "\f017";
  font-family: FontAwesome;
  margin: 0 4px;
}
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .description p {
  margin: 0;
}
.single-product #primary div.product .quantity {
  margin-right: 20px;
}
.single-product #primary div.product .product_meta .sku_wrapper, .single-product #primary div.product .product_meta .posted_in, .single-product #primary div.product .product_meta .tagged_as {
  display: block;
  font-weight: 600;
  font-size: 15px;
}
.single-product #primary div.product .product_meta .sku_wrapper span, .single-product #primary div.product .product_meta .posted_in span, .single-product #primary div.product .product_meta .tagged_as span, .single-product #primary div.product .product_meta .sku_wrapper a, .single-product #primary div.product .product_meta .posted_in a, .single-product #primary div.product .product_meta .tagged_as a {
  color: #dc0008;
  margin-left: 7px;
}
.single-product #primary div.product .product_meta .sku_wrapper a:hover, .single-product #primary div.product .product_meta .posted_in a:hover, .single-product #primary div.product .product_meta .tagged_as a:hover {
  color: #232323;
}
.single-product #primary div.product .product_meta .posted_in {
  display: none;
}
@media screen and (min-width: 768px) {
  .single-product.header-sticky #primary div.product .entry-summary {
    top: 120px;
  }
  .single-product.header-sticky.admin-bar #primary div.product .entry-summary {
    top: 150px;
  }
}
body.woocommerce-cart .woocommerce-cart-form .actions .button, body.woocommerce-wishlist .woocommerce-cart-form .actions .button, body.woocommerce-cart #yith-wcwl-form .actions .button, body.woocommerce-wishlist #yith-wcwl-form .actions .button {
  padding: 0 20px !important;
}
body.woocommerce-cart .woocommerce-cart-form table.cart td.actions .input-text, body.woocommerce-wishlist .woocommerce-cart-form table.cart td.actions .input-text, body.woocommerce-cart #yith-wcwl-form table.cart td.actions .input-text, body.woocommerce-wishlist #yith-wcwl-form table.cart td.actions .input-text {
  width: 180px !important;
  height: 50px;
  padding: 0 25px;
}
body.woocommerce-cart .woocommerce-cart-form .shop_table, body.woocommerce-wishlist .woocommerce-cart-form .shop_table, body.woocommerce-cart #yith-wcwl-form .shop_table, body.woocommerce-wishlist #yith-wcwl-form .shop_table {
  border: none;
}
body.woocommerce-cart .woocommerce-cart-form .shop_table thead th, body.woocommerce-wishlist .woocommerce-cart-form .shop_table thead th, body.woocommerce-cart #yith-wcwl-form .shop_table thead th, body.woocommerce-wishlist #yith-wcwl-form .shop_table thead th {
  font-size: 15px;
  font-weight: 700;
  color: #333;
  padding: 10px;
  border-top: 1px solid #dee2e6;
  border-bottom: 2px solid #dee2e6;
}
body.woocommerce-cart .woocommerce-cart-form .shop_table tbody td, body.woocommerce-wishlist .woocommerce-cart-form .shop_table tbody td, body.woocommerce-cart #yith-wcwl-form .shop_table tbody td, body.woocommerce-wishlist #yith-wcwl-form .shop_table tbody td {
  text-align: left;
}
body.woocommerce-cart .woocommerce-cart-form tbody .product-name a, body.woocommerce-wishlist .woocommerce-cart-form tbody .product-name a, body.woocommerce-cart #yith-wcwl-form tbody .product-name a, body.woocommerce-wishlist #yith-wcwl-form tbody .product-name a {
  color: #152136;
  font-size: 16px;
  font-weight: 600;
  font-family: "Montserrat";
}
body.woocommerce-cart .woocommerce-cart-form tbody .product-name a:hover, body.woocommerce-wishlist .woocommerce-cart-form tbody .product-name a:hover, body.woocommerce-cart #yith-wcwl-form tbody .product-name a:hover, body.woocommerce-wishlist #yith-wcwl-form tbody .product-name a:hover {
  color: #dc0008;
}
body.woocommerce-cart .woocommerce-cart-form tbody .product-name .yith-wcqv-button, body.woocommerce-wishlist .woocommerce-cart-form tbody .product-name .yith-wcqv-button, body.woocommerce-cart #yith-wcwl-form tbody .product-name .yith-wcqv-button, body.woocommerce-wishlist #yith-wcwl-form tbody .product-name .yith-wcqv-button {
  display: none;
}
body.woocommerce-cart .woocommerce-cart-form tbody .product-name dl.variation, body.woocommerce-wishlist .woocommerce-cart-form tbody .product-name dl.variation, body.woocommerce-cart #yith-wcwl-form tbody .product-name dl.variation, body.woocommerce-wishlist #yith-wcwl-form tbody .product-name dl.variation {
  display: none;
}
body.woocommerce-cart .woocommerce-cart-form tbody .product-price, body.woocommerce-wishlist .woocommerce-cart-form tbody .product-price, body.woocommerce-cart #yith-wcwl-form tbody .product-price, body.woocommerce-wishlist #yith-wcwl-form tbody .product-price, body.woocommerce-cart .woocommerce-cart-form tbody .product-subtotal, body.woocommerce-wishlist .woocommerce-cart-form tbody .product-subtotal, body.woocommerce-cart #yith-wcwl-form tbody .product-subtotal, body.woocommerce-wishlist #yith-wcwl-form tbody .product-subtotal {
  color: #152136;
  font-size: 16px;
  font-weight: 600;
  font-family: "Montserrat";
}
body.woocommerce-cart .woocommerce-cart-form tbody .product-price ins, body.woocommerce-wishlist .woocommerce-cart-form tbody .product-price ins, body.woocommerce-cart #yith-wcwl-form tbody .product-price ins, body.woocommerce-wishlist #yith-wcwl-form tbody .product-price ins, body.woocommerce-cart .woocommerce-cart-form tbody .product-subtotal ins, body.woocommerce-wishlist .woocommerce-cart-form tbody .product-subtotal ins, body.woocommerce-cart #yith-wcwl-form tbody .product-subtotal ins, body.woocommerce-wishlist #yith-wcwl-form tbody .product-subtotal ins {
  color: #152136;
  background-color: transparent;
}
body.woocommerce-cart .woocommerce-cart-form tbody .product-thumbnail, body.woocommerce-wishlist .woocommerce-cart-form tbody .product-thumbnail, body.woocommerce-cart #yith-wcwl-form tbody .product-thumbnail, body.woocommerce-wishlist #yith-wcwl-form tbody .product-thumbnail {
  text-align: center !important;
  min-width: 120px;
}
body.woocommerce-cart .woocommerce-cart-form tbody .product-thumbnail a, body.woocommerce-wishlist .woocommerce-cart-form tbody .product-thumbnail a, body.woocommerce-cart #yith-wcwl-form tbody .product-thumbnail a, body.woocommerce-wishlist #yith-wcwl-form tbody .product-thumbnail a {
  display: block;
}
body.woocommerce-cart .woocommerce-cart-form tbody .product-thumbnail a img, body.woocommerce-wishlist .woocommerce-cart-form tbody .product-thumbnail a img, body.woocommerce-cart #yith-wcwl-form tbody .product-thumbnail a img, body.woocommerce-wishlist #yith-wcwl-form tbody .product-thumbnail a img {
  width: 100%;
  max-width: 80px;
}
body.woocommerce-cart .woocommerce-cart-form .product-remove, body.woocommerce-wishlist .woocommerce-cart-form .product-remove, body.woocommerce-cart #yith-wcwl-form .product-remove, body.woocommerce-wishlist #yith-wcwl-form .product-remove {
  position: relative;
  min-width: 50px;
}
body.woocommerce-cart .woocommerce-cart-form .product-remove a.remove, body.woocommerce-wishlist .woocommerce-cart-form .product-remove a.remove, body.woocommerce-cart #yith-wcwl-form .product-remove a.remove, body.woocommerce-wishlist #yith-wcwl-form .product-remove a.remove {
  font-size: 0px;
}
body.woocommerce-cart .woocommerce-cart-form .product-remove a.remove:before, body.woocommerce-wishlist .woocommerce-cart-form .product-remove a.remove:before, body.woocommerce-cart #yith-wcwl-form .product-remove a.remove:before, body.woocommerce-wishlist #yith-wcwl-form .product-remove a.remove:before {
  content: "\f136";
  font-family: "Material-Design-Iconic-Font";
  font-size: 18px;
  height: 32px;
  width: 32px;
  line-height: 32px;
  background-color: #dc0008;
  color: #fff;
  -webkit-border-radius: 32px;
  -khtml-border-radius: 32px;
  -moz-border-radius: 32px;
  -ms-border-radius: 32px;
  -o-border-radius: 32px;
  border-radius: 32px;
  font-weight: normal;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -khtml-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  left: 0;
  right: 0;
  margin: auto;
}
body.woocommerce-cart .woocommerce-cart-form .product-remove a.remove:hover:before, body.woocommerce-wishlist .woocommerce-cart-form .product-remove a.remove:hover:before, body.woocommerce-cart #yith-wcwl-form .product-remove a.remove:hover:before, body.woocommerce-wishlist #yith-wcwl-form .product-remove a.remove:hover:before {
  color: #fff;
  background-color: rgba(220, 0, 8, 0.85);
}
@media screen and (max-width: 769px) {
  body.woocommerce-cart .woocommerce-cart-form .product-remove, body.woocommerce-wishlist .woocommerce-cart-form .product-remove, body.woocommerce-cart #yith-wcwl-form .product-remove, body.woocommerce-wishlist #yith-wcwl-form .product-remove {
    min-height: 57px;
  }
}
body.woocommerce-cart .woocommerce-cart-form table.shop_table, body.woocommerce-wishlist .woocommerce-cart-form table.shop_table, body.woocommerce-cart #yith-wcwl-form table.shop_table, body.woocommerce-wishlist #yith-wcwl-form table.shop_table {
  margin-bottom: 40px;
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
}
@media screen and (max-width: 769px) {
  body.woocommerce-cart .woocommerce-cart-form table.shop_table td, body.woocommerce-wishlist .woocommerce-cart-form table.shop_table td, body.woocommerce-cart #yith-wcwl-form table.shop_table td, body.woocommerce-wishlist #yith-wcwl-form table.shop_table td {
    background-color: #fff !important;
  }
}
body.woocommerce-cart .cart-collaterals .cart_totals > h2, body.woocommerce-wishlist .cart-collaterals .cart_totals > h2 {
  font-size: 24px;
  text-transform: capitalize;
  margin-bottom: 12px;
}
body.woocommerce-cart .cart-collaterals .cart_totals th, body.woocommerce-wishlist .cart-collaterals .cart_totals th {
  color: #152136;
  vertical-align: middle !important;
}
body.woocommerce-cart .cart-collaterals .cart_totals th + td, body.woocommerce-wishlist .cart-collaterals .cart_totals th + td {
  border-left: 1px solid #ebebeb;
}
body.woocommerce-cart .cart-collaterals .cart_totals .cart-subtotal td, body.woocommerce-wishlist .cart-collaterals .cart_totals .cart-subtotal td, body.woocommerce-cart .cart-collaterals .cart_totals .order-total td, body.woocommerce-wishlist .cart-collaterals .cart_totals .order-total td, body.woocommerce-cart .cart-collaterals .cart_totals .cart-subtotal strong, body.woocommerce-wishlist .cart-collaterals .cart_totals .cart-subtotal strong, body.woocommerce-cart .cart-collaterals .cart_totals .order-total strong, body.woocommerce-wishlist .cart-collaterals .cart_totals .order-total strong {
  font-weight: 400;
  color: #dc0008;
}
body.woocommerce-cart .cart-collaterals .cart_totals .woocommerce-shipping-calculator p, body.woocommerce-wishlist .cart-collaterals .cart_totals .woocommerce-shipping-calculator p {
  margin-bottom: 0;
}
body.woocommerce-cart .cart-collaterals .cart_totals .woocommerce-shipping-calculator .shipping-calculator-button, body.woocommerce-wishlist .cart-collaterals .cart_totals .woocommerce-shipping-calculator .shipping-calculator-button {
  color: #dc0008;
}
body.woocommerce-cart .cart-collaterals .cart_totals .woocommerce-shipping-calculator .shipping-calculator-button:after, body.woocommerce-wishlist .cart-collaterals .cart_totals .woocommerce-shipping-calculator .shipping-calculator-button:after {
  content: '\f2f9';
  margin-left: 9px;
  font-family: "Material-Design-Iconic-Font";
  position: relative;
  top: 1px;
}
body.woocommerce-cart .cart-collaterals .cart_totals .woocommerce-shipping-calculator .shipping-calculator-button:hover, body.woocommerce-wishlist .cart-collaterals .cart_totals .woocommerce-shipping-calculator .shipping-calculator-button:hover {
  color: #232323;
}
body.woocommerce-cart .cart-collaterals .cart_totals .woocommerce-shipping-calculator .shipping-calculator-form, body.woocommerce-wishlist .cart-collaterals .cart_totals .woocommerce-shipping-calculator .shipping-calculator-form {
  padding-top: 10px;
}
body.woocommerce-cart .cart-collaterals .cart_totals .wc-proceed-to-checkout, body.woocommerce-wishlist .cart-collaterals .cart_totals .wc-proceed-to-checkout {
  padding-bottom: 0;
}
body.woocommerce-cart .cart-collaterals .cart_totals .wc-proceed-to-checkout .checkout-button, body.woocommerce-wishlist .cart-collaterals .cart_totals .wc-proceed-to-checkout .checkout-button {
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 14px;
}
body.woocommerce-cart .cart-collaterals .wc-proceed-to-checkout, body.woocommerce-wishlist .cart-collaterals .wc-proceed-to-checkout {
  text-align: right;
}
.woocommerce-checkout form.checkout_coupon {
  border: 1px solid #eee;
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
  background-color: #f7f8fa;
}
.woocommerce-checkout form.checkout_coupon .form-row-first {
  width: 50%;
  padding-right: 30px;
}
.woocommerce-checkout form.checkout_coupon .form-row-last {
  width: 50%;
}
.woocommerce-checkout #add_payment_method #payment, .woocommerce-checkout #payment {
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
}
.woocommerce-checkout #customer_details {
  margin: 0 -15px;
  width: inherit;
}
.woocommerce-checkout #customer_details .col-1, .woocommerce-checkout #customer_details .col-2 {
  width: 50%;
  flex: inherit;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .woocommerce-checkout #customer_details {
    margin: 0;
  }
  .woocommerce-checkout #customer_details .col-1, .woocommerce-checkout #customer_details .col-2 {
    width: 100%;
  }
}
.woocommerce-checkout #customer_details span.woocommerce-input-wrapper {
  width: 100%;
  display: block;
}
.woocommerce-checkout #customer_details .woocommerce-billing-fields {
  margin-bottom: 36px;
}
.woocommerce-checkout #customer_details .woocommerce-billing-fields > h3 {
  font-size: 26px;
  text-transform: capitalize;
}
.woocommerce-checkout #customer_details .woocommerce-additional-fields {
  margin-bottom: 36px;
}
.woocommerce-checkout #customer_details .woocommerce-additional-fields > h3 {
  font-size: 26px;
}
.woocommerce-checkout #customer_details .woocommerce-shipping-fields #ship-to-different-address {
  font-size: 28px;
  cursor: pointer;
  -webkit-transition: all 0.3s linear;
  -khtml-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.woocommerce-checkout #customer_details .woocommerce-shipping-fields #ship-to-different-address:hover {
  color: #dc0008;
}
.woocommerce-checkout #customer_details .woocommerce-shipping-fields #ship-to-different-address #ship-to-different-address-checkbox {
  position: absolute;
  opacity: 0;
}
.woocommerce-checkout #customer_details .woocommerce-shipping-fields #ship-to-different-address .woocommerce-form__label span:after {
  content: "\f01a";
  font-family: FontAwesome;
  margin-left: 14px;
  font-weight: normal;
}
.woocommerce-checkout #customer_details #billing_country_field label, .woocommerce-checkout #customer_details #shipping_country_field label, .woocommerce-checkout #customer_details #billing_address_1_field label, .woocommerce-checkout #customer_details #shipping_address_1_field label, .woocommerce-checkout #customer_details #order_comments_field label {
  display: none !important;
}
.woocommerce-checkout #customer_details #billing_country_field textarea, .woocommerce-checkout #customer_details #shipping_country_field textarea, .woocommerce-checkout #customer_details #billing_address_1_field textarea, .woocommerce-checkout #customer_details #shipping_address_1_field textarea, .woocommerce-checkout #customer_details #order_comments_field textarea {
  padding: 18px 30px;
}
.woocommerce-checkout form.woocommerce-checkout #order_review_heading {
  font-size: 26px;
  text-transform: capitalize;
}
.woocommerce-checkout form.woocommerce-checkout #order_review th {
  font-weight: 500;
  vertical-align: middle !important;
}
.woocommerce-checkout form.woocommerce-checkout #order_review th + td {
  border-left: 1px solid #ebebeb;
}
.woocommerce-checkout form.woocommerce-checkout #order_review .product-total {
  border-left: 1px solid #ebebeb;
}
.woocommerce-checkout form.woocommerce-checkout #order_review .cart-subtotal strong, .woocommerce-checkout form.woocommerce-checkout #order_review .order-total strong {
  font-weight: 500;
}
.woocommerce-checkout form.woocommerce-checkout #order_review .woocommerce-checkout-review-order-table {
  margin-bottom: 60px;
}
.woocommerce-checkout form.woocommerce-checkout #order_review #payment {
  background-color: #f7f8fa;
  border: 1px solid #eee;
}
.woocommerce-checkout form.woocommerce-checkout #order_review #payment .about_paypal {
  margin-left: 10px;
}
.woocommerce-checkout form.woocommerce-checkout #order_review #payment .wc_payment_methods {
  padding: 20px;
  border-bottom: 1px solid #eee;
}
.woocommerce-checkout form.woocommerce-checkout #order_review #payment .place-order {
  padding: 20px;
  margin: 0;
}
.woocommerce-checkout form.woocommerce-checkout #order_review #payment #place_order {
  float: none;
  margin-top: 10px;
  background-color: #dc0008;
}
.woocommerce-checkout form.woocommerce-checkout #order_review #payment #place_order:hover {
  background-color: transparent;
  color: #dc0008;
}
.woocommerce-checkout #payment label {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.87);
  font-weight: 600;
}
.woocommerce-account .site-content #primary .entry-content > .woocommerce {
  margin: 0 -15px;
}
.woocommerce-account .site-content #primary .woocommerce-MyAccount-navigation {
  margin-bottom: 30px;
  width: 30%;
  float: left;
  padding: 0 15px;
}
@media screen and (max-width: 767px) {
  .woocommerce-account .site-content #primary .woocommerce-MyAccount-navigation {
    width: 100%;
    margin-bottom: 60px;
  }
}
.woocommerce-account .site-content #primary .woocommerce-MyAccount-navigation ul {
  margin: 0;
  list-style: none;
}
.woocommerce-account .site-content #primary .woocommerce-MyAccount-navigation ul li {
  border-bottom: 1px solid #eaeaea;
}
.woocommerce-account .site-content #primary .woocommerce-MyAccount-navigation ul li a {
  font-size: 16px;
  padding: 10px 0;
  color: #262626;
  position: relative;
  display: block;
}
.woocommerce-account .site-content #primary .woocommerce-MyAccount-navigation ul li a:hover {
  color: #dc0008;
}
.woocommerce-account .site-content #primary .woocommerce-MyAccount-navigation ul li a:before {
  content: "\f178";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -khtml-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  display: block;
  font-family: "FontAwesome";
  color: #dc0008;
  margin-left: -16px;
  opacity: 0;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
}
.woocommerce-account .site-content #primary .woocommerce-MyAccount-navigation ul li.is-active > a, .woocommerce-account .site-content #primary .woocommerce-MyAccount-navigation ul li a:hover {
  color: inherit;
  padding-left: 26px;
}
.woocommerce-account .site-content #primary .woocommerce-MyAccount-navigation ul li.is-active > a:before, .woocommerce-account .site-content #primary .woocommerce-MyAccount-navigation ul li a:hover:before {
  margin-left: 0;
  opacity: 1;
}
.woocommerce-account .site-content #primary .woocommerce-MyAccount-content {
  margin-bottom: 30px;
  padding: 0 15px;
  width: 70%;
  float: left;
}
@media screen and (max-width: 767px) {
  .woocommerce-account .site-content #primary .woocommerce-MyAccount-content {
    width: 100%;
    margin-bottom: 0;
  }
}
.woocommerce-account .site-content #primary .woocommerce-MyAccount-content .col-1, .woocommerce-account .site-content #primary .woocommerce-MyAccount-content .col-2 {
  flex: inherit;
  max-width: inherit;
}
.woocommerce-account .site-content #primary .woocommerce-MyAccount-content .form-row label {
  width: 100%;
}
.woocommerce-account .site-content #primary .woocommerce-MyAccount-content .form-row .woocommerce-input-wrapper {
  width: 100%;
}
.woocommerce-account .site-content #primary .woocommerce-form {
  background-color: #f7f8fa;
  border: 1px solid #eee;
  padding: 30px;
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
  max-width: 670px;
  margin: 0px auto 30px auto;
}
.woocommerce-account .site-content #primary .woocommerce-form label {
  font-weight: 500;
  margin-bottom: 2px;
}
.woocommerce-account .site-content #primary .woocommerce-form .woocommerce-Button.button {
  margin-right: 16px;
  height: auto;
}
.woocommerce-account .site-content #primary .woocommerce-form .woocommerce-LostPassword {
  margin-bottom: 0;
}
.woocommerce-account .site-content #primary .woocommerce-form .woocommerce-LostPassword a {
  color: #dc0008;
}
.woocommerce-account .site-content #primary .woocommerce-form .woocommerce-LostPassword a:hover {
  color: #232323;
}
.woocommerce-account .site-content #primary .woocommerce-form .woocommerce-form__label-for-checkbox {
  padding: 0;
  line-height: 50px;
}
.woocommerce-account .site-content #primary .woocommerce-form .woocommerce-form__label-for-checkbox span {
  font-size: 15px;
}
.woocommerce-account .site-content #primary .woocommerce-form .woocommerce-form__label-for-checkbox .woocommerce-form__input-checkbox {
  position: relative;
  top: -1px;
}
.woocommerce-account .site-content #primary .woocommerce-form .woocommerce-Button {
  height: 42px;
}
.woocommerce-account .site-content #primary .woocommerce-notices-wrapper + h2 {
  text-align: center;
  font-size: 24px;
}
.woocommerce-account .site-content #primary #customer_login {
  margin: 0 -15px;
  width: inherit;
  display: flex;
  flex-wrap: wrap;
}
.woocommerce-account .site-content #primary #customer_login h2 {
  font-size: 24px;
}
.woocommerce-account .site-content #primary #customer_login .u-column1.col-1, .woocommerce-account .site-content #primary #customer_login .u-column2.col-2 {
  width: 50%;
  flex: inherit;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .woocommerce-account .site-content #primary #customer_login {
    margin: 0;
  }
  .woocommerce-account .site-content #primary #customer_login .u-column1.col-1, .woocommerce-account .site-content #primary #customer_login .u-column2.col-2 {
    width: 100%;
    padding: 0;
  }
}
.woocommerce-account .site-content #primary .woocommerce-password-strength.bad {
  background-color: transparent;
  padding: 8px 0;
}
body #yith-wcwl-popup-message {
  margin-left: -108px;
  display: none;
  bottom: 30px;
  top: auto;
  right: 30px;
  left: auto;
  background-color: #dc0008;
  border-radius: 3px;
  border: none;
  color: #fff;
  padding: 0 20px;
}
.woocommerce-wishlist tfoot td {
  display: none;
}
.woocommerce-wishlist .product-stock-status {
  font-size: 16px;
  font-weight: 600;
}
.woocommerce-wishlist .product-stock-status .wishlist-in-stock {
  color: #232323 !important;
}
.woocommerce-wishlist #yith-wcwl-form .wishlist-empty {
  text-align: center !important;
}
.woocommerce-wishlist #yith-wcwl-form .product-add-to-cart {
  text-align: center !important;
}
.woocommerce-wishlist #yith-wcwl-form .product-add-to-cart a.button {
  padding: 0 20px;
  color: #fff;
  line-height: 42px;
  font-size: 16px;
  display: inline-block !important;
}
.woocommerce-wishlist #yith-wcwl-form .product-add-to-cart a.button.loading {
  padding-right: 30px;
}
.woocommerce-wishlist #yith-wcwl-form .product-add-to-cart a.button.loading:after {
  top: 0;
  right: 8px;
}
@media screen and (max-width: 767px) {
  .woocommerce-wishlist #yith-wcwl-form {
    overflow-x: scroll;
  }
  .woocommerce-wishlist #yith-wcwl-form .cart.wishlist_table {
    min-width: 767px;
  }
}
.woocommerce-grouped-product-list {
  border: none;
}
body.rtl {
  direction: rtl;
  unicode-bidi: embed;
  text-align: right;
}
body.rtl .vc_col-lg-1, body.rtl .vc_col-lg-10, body.rtl .vc_col-lg-11, body.rtl .vc_col-lg-12, body.rtl .vc_col-lg-2, body.rtl .vc_col-lg-3, body.rtl .vc_col-lg-4, body.rtl .vc_col-lg-5, body.rtl .vc_col-lg-6, body.rtl .vc_col-lg-7, body.rtl .vc_col-lg-8, body.rtl .vc_col-lg-9, body.rtl .vc_col-md-1, body.rtl .vc_col-md-10, body.rtl .vc_col-md-11, body.rtl .vc_col-md-12, body.rtl .vc_col-md-2, body.rtl .vc_col-md-3, body.rtl .vc_col-md-4, body.rtl .vc_col-md-5, body.rtl .vc_col-md-6, body.rtl .vc_col-md-7, body.rtl .vc_col-md-8, body.rtl .vc_col-md-9, body.rtl .vc_col-sm-1, body.rtl .vc_col-sm-10, body.rtl .vc_col-sm-11, body.rtl .vc_col-sm-12, body.rtl .vc_col-sm-2, body.rtl .vc_col-sm-3, body.rtl .vc_col-sm-4, body.rtl .vc_col-sm-5, body.rtl .vc_col-sm-6, body.rtl .vc_col-sm-7, body.rtl .vc_col-sm-8, body.rtl .vc_col-sm-9, body.rtl .vc_col-xs-1, body.rtl .vc_col-xs-10, body.rtl .vc_col-xs-11, body.rtl .vc_col-xs-12, body.rtl .vc_col-xs-2, body.rtl .vc_col-xs-3, body.rtl .vc_col-xs-4, body.rtl .vc_col-xs-5, body.rtl .vc_col-xs-6, body.rtl .vc_col-xs-7, body.rtl .vc_col-xs-8, body.rtl .vc_col-xs-9 {
  float: right;
}
body.rtl .text-left, body.rtl .align-left {
  text-align: right;
}
body.rtl .owl-dots .owl-dot {
  margin: 0 8px;
}
body.rtl .owl-nav {
  direction: ltr;
}
body.rtl input[type="text"], body.rtl input[type="email"], body.rtl input[type="url"], body.rtl input[type="password"], body.rtl input[type="search"], body.rtl input[type="tel"], body.rtl input[type="number"], body.rtl input[type="range"], body.rtl input[type="date"], body.rtl input[type="month"], body.rtl input[type="week"], body.rtl input[type="time"], body.rtl input[type="datetime"], body.rtl input[type="datetime-local"], body.rtl input[type="color"], body.rtl textarea, body.rtl select, body.rtl .nice-select {
  text-align: right;
}
body.rtl .nice-select:after {
  right: auto;
  left: 18px;
}
body.rtl .nice-select {
  padding-left: 40px;
  padding-right: 18px;
}
body.rtl .nice-select .option {
  text-align: right;
}
body.rtl #pagetitle h1.page-title {
  margin-right: 0;
  margin-left: 30px;
}
body.rtl .wpcf7-form .input-filled > i {
  right: auto;
  left: 38px;
}
body.rtl .wpcf7-form .input-filled > i + .wpcf7-form-control-wrap .wpcf7-form-control:not(.wpcf7-submit) {
  padding-right: 40px;
  padding-left: 70px;
}
body.rtl #pagetitle .page-title-search .search-field {
  padding-right: 30px;
  padding-left: 86px;
}
body.rtl #pagetitle .page-title-search .search-submit {
  right: auto;
  left: 0;
}
@media screen and (min-width: 992px) {
  .rtl .text-left-lg {
    text-align: right !important;
  }
  .rtl .text-right-lg {
    text-align: left !important;
  }
}
@media screen and (max-width: 1199px) {
  .rtl .align-left-md {
    text-align: right;
  }
  .rtl .align-right-md {
    text-align: left;
  }
}
@media screen and (max-width: 991px) {
  .rtl .text-left-md {
    text-align: right !important;
  }
  .rtl .text-right-md {
    text-align: left !important;
  }
  .rtl .align-left-sm {
    text-align: right;
  }
  .rtl .align-right-sm {
    text-align: left;
  }
}
@media screen and (max-width: 767px) {
  .rtl {
    /* Header */
  }
  .rtl .text-left-sm {
    text-align: right !important;
  }
  .rtl .text-right-sm {
    text-align: left !important;
  }
  .rtl .align-left-xs {
    text-align: right;
  }
  .rtl .align-right-xs {
    text-align: left;
  }
}
@media screen and (min-width: 992px) {
  .rtl #header-wrap .primary-menu > li {
    float: right;
  }
  .rtl #header-wrap .primary-menu .sub-menu {
    left: auto;
    right: 0;
  }
  .rtl #header-wrap .primary-menu .sub-menu .sub-menu {
    right: 100%;
  }
  .rtl #header-wrap .primary-menu .sub-menu .menu-item-has-children > a::after {
    right: auto;
    left: 0;
    content: "\f104";
  }
  .rtl #header-wrap .site-menu-right {
    margin-left: 0;
    margin-right: 14px;
  }
  .rtl #header-wrap .site-menu-right .menu-right-item + .menu-right-item {
    margin-left: 0;
    margin-right: 9px;
  }
  .rtl #header-wrap .primary-menu > li.menu-item-has-children > a::after {
    margin-left: 0;
    margin-right: 5px;
  }
  .rtl #header-wrap .primary-menu .sub-menu li a:before {
    left: auto;
    right: 0;
  }
  .rtl #header-wrap .primary-menu .sub-menu li > a:hover, .rtl #header-wrap .primary-menu .sub-menu li.current_page_item > a, .rtl #header-wrap .primary-menu .sub-menu li.current-menu-item > a, .rtl #header-wrap .primary-menu .sub-menu li.current_page_ancestor > a, .rtl #header-wrap .primary-menu .sub-menu li.current-menu-ancestor > a, .rtl #header-wrap .primary-menu .sub-menu li.current-menu-parent > a {
    padding-left: 0;
    padding-right: 20px;
  }
}
@media screen and (max-width: 991px) {
  .rtl #header-wrap .site-branding {
    text-align: right;
  }
  .rtl #header-wrap .site-branding .logo-dark {
    left: auto;
    right: 0;
  }
  .rtl #header-wrap .primary-menu li {
    text-align: right;
  }
  .rtl #header-wrap .primary-menu .sub-menu {
    left: auto;
    right: 0;
  }
  .rtl #header-wrap .menu-mobile-close {
    right: auto;
    left: 0;
  }
  .rtl #header-wrap #main-menu-mobile {
    right: auto;
    left: 15px;
  }
  .rtl #header-wrap .main-menu-toggle {
    right: auto;
    left: 12px;
  }
  .rtl #header-wrap .header-navigation {
    right: 0;
  }
  .rtl #header-wrap .header-navigation .main-navigation {
    -webkit-transform: translateX(100%);
    -khtml-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
    left: auto;
  }
  .rtl #header-wrap .header-navigation.navigation-open .main-navigation {
    -webkit-transform: translateX(0%);
    -khtml-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
    transform: translateX(0%);
  }
  .rtl #header-wrap .header-mobile-search .search-submit {
    right: auto;
    left: 0px;
  }
}
.rtl #header-wrap #topbar .topbar-menu {
  padding-right: 0;
  padding-left: 100px;
}
.rtl #header-wrap #topbar .topbar-social {
  text-align: left;
}
.rtl #header-wrap #topbar .topbar-menu li {
  padding-right: 0;
  padding-left: 10px;
  /* Shortcode */
}
.rtl #header-wrap #topbar .topbar-menu li:after {
  right: auto;
  left: 0;
}
.rtl .ct-grid-fancybox.layout1 .grid-item-inner .fcb-number {
  right: auto;
  left: 30px;
}
.rtl .ct-video-wrapper.layout2 .ct-video-button {
  margin-right: 0;
  margin-left: 15px;
}
.rtl .ct-testimonial-layout2 .item-featured + .item-info {
  margin-left: 0;
  margin-right: 20px;
}
.rtl .ct-grid-blog-layout1 .item-meta {
  padding-right: 0;
}
.rtl .ct-grid-blog-layout1 .item-meta:after {
  left: auto;
  right: 0;
}
.rtl .ct-grid-blog-layout1 .item-meta li + li::before {
  margin-right: 0;
  margin-left: 15px;
}
.rtl .ct-cta.layout2 .ct-meta .ct-heading-sub {
  margin-right: 0px;
  padding-right: 0px;
  margin-left: 30px;
  padding-left: 30px;
  border-left: 3px solid #ff5e14;
  border-right: none;
}
.rtl .ct-testimonial-layout2 .item-content .item-icon-left {
  left: auto;
  right: 0;
}
.rtl .ct-testimonial-layout2 .item-content .item-icon-right {
  right: auto;
  left: 0;
}
.rtl .item-footer .btn i {
  margin-left: 0;
  margin-right: 8px;
  /* End Shortcode */
  /* Footer */
}
.rtl .item-footer .btn i.fa-arrow-right:before {
  content: "\f060";
}
.rtl .site-footer.footer-layout1 .top-footer-info .ft-contact-bx::after {
  right: auto;
  left: -15px;
  -webkit-transform: scaleX(-1);
  -khtml-transform: scaleX(-1);
  -moz-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
  -o-transform: scaleX(-1);
  transform: scaleX(-1);
}
.rtl .site-footer .top-footer ul.menu li:hover > a, .rtl .site-footer .top-footer ul.menu li.current_page_item > a, .rtl .site-footer .top-footer ul.menu li.current-menu-item > a, .rtl .site-footer .top-footer ul.menu li.current_page_ancestor > a, .rtl .site-footer .top-footer ul.menu li.current-menu-ancestor > a {
  padding-left: 0;
  padding-right: 26px;
}
.rtl .site-footer.footer-layout1 .footer-widget-title:after {
  left: auto !important;
  right: 0 !important;
}
.rtl .site-footer .bottom-footer .footer-social {
  text-align: left;
  text-align: left;
  display: flex;
  justify-content: flex-end;
}
.rtl .site-footer .bottom-footer .footer-social li {
  padding: 0;
  /* Post */
}
.rtl .site-footer .bottom-footer .footer-social li a {
  border-right: none;
  border-left: 1px solid #303639;
  padding: 0 5px;
}
.rtl .site-footer .bottom-footer .footer-social li:first-child {
  border-right: 1px solid #303639;
}
.rtl .entry-meta li, .rtl .item-meta li {
  padding: 0px;
}
.rtl .entry-meta li:after, .rtl .item-meta li:after {
  margin: 0 8px;
}
.rtl .entry-meta li i, .rtl .item-meta li i {
  margin-right: 0;
  margin-left: 10px;
}
.rtl .ct-social li:last-child {
  margin-right: 10px;
}
.rtl #content .widget_categories ul li a::before, .rtl #content .widget_nav_menu ul li a::before, .rtl #content .widget_pages ul li a::before, .rtl #content .widget_archive ul li a::before, .rtl #content .widget_meta ul li a::before, .rtl #content .widget_recent_entries ul li a::before {
  content: "\f177";
}
.rtl .widget_ct_recent_posts .entry-media {
  margin-right: 0;
  margin-left: 20px;
}
.rtl .widget_ct_recent_posts .item-time i {
  padding-left: 8px;
  padding-right: 0px;
}
.rtl .widget_search .search-form .search-field {
  padding-left: 70px;
  padding-right: 30px;
}
.rtl .widget_search .search-form .search-submit {
  right: auto;
  left: 0;
}
.rtl #pagetitle .ct-breadcrumb li::before {
  margin-right: 0;
  margin-left: 13px;
}
.rtl.single-post .content-area .entry-content-bottom .entry-tags {
  margin-right: 0;
  margin-left: 30px;
}
.rtl.single-post .content-area .entry-content-bottom .entry-tags a {
  margin-right: 0;
  margin-left: 16px;
}
.rtl.single-post .content-area .entry-content-bottom .entry-social a + a {
  margin-left: 0;
  margin-right: 25px;
}
.rtl .comment-inner img.avatar {
  margin-right: 0;
  margin-left: 30px;
}
.rtl .comment-reply {
  right: auto;
  left: 20px;
}
.rtl.single-portfolio .entry-footer .entry-social a + a {
  margin-left: 0;
  margin-right: 6px;
}
.rtl.single-portfolio .post-type-nav .nav-link-next .nav-inner {
  text-align: left;
}
.rtl.single-portfolio .post-type-nav .nav-link-next .nav-inner .nav-icon {
  opacity: 0;
}
.rtl.single-portfolio .post-type-nav .nav-link-next .nav-inner:hover {
  padding-right: 0;
}
.rtl.single-portfolio .post-type-nav .nav-link-prev .nav-inner .nav-icon {
  opacity: 0;
}
.rtl.single-portfolio .post-type-nav .nav-link-prev .nav-inner:hover {
  padding-left: 0;
}
.rtl.woocommerce .woocommerce-product-inner .woocommerce-product-holder .product-holder-left {
  margin-right: 0;
  margin-left: 30px;
}
.rtl.woocommerce .star-rating-wrap .count-rating {
  margin-left: 0;
  margin-right: 8px;
}
.rtl.single-product #primary div.product .entry-summary .price ins {
  margin-right: 0;
  margin-left: 22px;
}
.rtl .ct-list.layout2 li label {
  margin-right: 0;
  margin-left: 30px;
}
.rtl.single-product #primary div.product .woocommerce-product-gallery {
  direction: ltr;
}
.rtl .content-row #secondary.widget-has-sidebar:before {
  right: 0;
  left: auto;
}
.rtl .widget-title:before {
  left: auto;
  right: 0;
}
.rtl .ct-lists.layout2 li {
  padding-left: 0px;
  padding-right: 25px;
}
.rtl .ct-lists.layout2 li i {
  left: auto;
  right: 0;
}
.rtl .ct-lists.layout3 li {
  padding-right: 25px;
  padding-left: 0px;
}
.rtl .ct-lists.layout3 li i {
  right: 0;
  left: auto;
}
.rtl .ct-contact-info.layout2 .ct-icon {
  right: auto;
  left: 0;
}
.rtl .single-hentry.archive .entry-body .btn-readmore i {
  margin-left: 0;
  margin-right: 5px;
}
.rtl .single-hentry.archive .entry-body .btn-readmore i:before {
  content: "\e629";
}
h2 + ul, h2 + ol {
  margin-bottom: 22px;
}
.wp-block-button {
  margin-bottom: 30px;
}
.entry-body .entry-content .wp-block-cover-text {
  color: rgba(255, 255, 255, 0.87);
  padding-left: 30px;
  padding-right: 30px;
  font-size: 24px;
  line-height: 1.25;
}
body .wp-block-gallery {
  display: flex;
  margin-bottom: 25px;
}
body .wp-block-gallery .blocks-gallery-caption {
  font-size: 15px;
}
.alignleft, .alignright, .aligncenter {
  margin-top: 15px;
  margin-bottom: 35px;
}
.alignleft {
  display: inline;
  float: left;
  margin-right: 35px;
}
.alignright {
  display: inline;
  float: right;
  margin-left: 35px;
}
.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.wp-block-button {
  margin-bottom: 32px;
}
.wp-block-button.is-style-squared .wp-block-button__link {
  border-radius: 0;
}
.wp-block-button a {
  color: #fff !important;
}
.wp-block-button.is-style-outline a {
  color: #232323 !important;
}
.wp-block-quote.is-style-large {
  padding: 30px 60px 30px 80px;
}
@media screen and (max-width: 767px) {
  .wp-block-quote.is-style-large {
    padding: 30px 15px 30px 40px;
  }
}
.wp-block-quote cite {
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .wp-block-pullquote p {
    line-height: 1.4;
    font-size: 25px;
  }
}
@media screen and (max-width: 767px) {
  .wp-block-quote.is-style-large p, .wp-block-quote.is-large p {
    line-height: 1.4;
    font-size: 25px;
  }
  .wp-block-quote cite {
    font-size: 20px;
  }
}
.blocks-gallery-caption {
  margin-bottom: 32px;
}
.wp-block-cover, .wp-block-cover-image {
  margin-bottom: 52px;
}
.block-editor-rich-text__editable a {
  color: #fff;
}
.wp-block-group.has-background {
  padding: 20px 30px;
  margin: 30px 0;
}
.wp-block-media-text.has-background {
  margin-bottom: 25px;
}
.wp-block-media-text .wp-block-media-text__content {
  padding-top: 15px;
}
.wp-block-media-text .wp-block-media-text__content .has-large-font-size {
  line-height: 1.3;
  margin-bottom: 16px;
}
.wp-block-media-text .wp-block-media-text__content .has-large-font-size + p {
  margin-bottom: 25px;
}
.wp-block-separator:not(.is-style-wide):not(.is-style-dots) {
  max-width: 100px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.6842em;
}
@media screen and (min-width: 576px) {
  li > ul, blockquote > ul {
    margin-left: 1.65em;
    padding-left: 0;
  }
  li > ol, blockquote > ol {
    margin-left: 1.15em;
    padding-left: 0;
  }
}
blockquote cite a {
  color: #dc0008;
}
blockquote cite a:hover {
  color: #dc0008;
}
.wp-block-column .wp-block-quote {
  border-left: 4px solid #2e279d;
  background-color: #f3f3f3;
  padding: 28px 20px 28px 20px;
  font-size: 24px;
}
.wp-block-column .wp-block-quote cite {
  font-size: 15px;
  padding-left: 20px;
}
.wp-block-column .wp-block-quote cite:before {
  width: 10px;
}
.wp-block-cover p {
  color: #fff;
}
.wp-block-cover-image.has-background-dim p, .wp-block-cover.has-background-dim p {
  line-height: 48px;
  color: #fff;
}
.status-publish {
  /**
 * 6.0 Galleries
 */
}
.status-publish + .comments-area {
  margin-top: 45px;
}
.gallery-item {
  display: inline-block;
  padding: 1.79104%;
  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 .gallery-caption {
  color: #707070;
  display: block;
  font-size: 14px;
  line-height: 1.5;
  padding: 7px 0;
}
.gallery-columns-6 .gallery-caption, .gallery-columns-7 .gallery-caption, .gallery-columns-8 .gallery-caption, .gallery-columns-9 .gallery-caption {
  display: none;
}
@media (max-width: 480px) } {
  margin-left: 0;
  text-align: left;
  clear: none;
  float: none;
  margin-bottom: 30px;
  display: block;
}
@media (max-width: 480px) } {
  min-width: 280px;
}
.wp-block-archives.wp-block-archives-dropdown {
  position: relative;
  margin-bottom: 30px;
}
.wp-block-archives.wp-block-archives-dropdown select {
  padding-right: 55px;
  position: relative;
}
.wp-block-archives.wp-block-archives-dropdown .nice-select:after {
  content: "\f107";
  font-family: FontAwesome;
  font-size: 16px;
  text-align: center;
  color: #fff;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translate(0px, -50%);
  height: 23px;
  width: 23px;
  line-height: 23px;
  -webkit-border-radius: 23px;
  -khtml-border-radius: 23px;
  -moz-border-radius: 23px;
  -ms-border-radius: 23px;
  -o-border-radius: 23px;
  border-radius: 23px;
  background-color: #dc0008;
  font-style: normal;
}
.wp-block-categories.wp-block-categories-dropdown {
  margin-bottom: 30px;
}
.wp-block-categories.wp-block-categories-dropdown .nice-select {
  position: relative;
}
.wp-block-categories.wp-block-categories-dropdown .nice-select:after {
  content: "\f107";
  font-family: FontAwesome;
  font-size: 16px;
  text-align: center;
  color: #fff;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translate(0px, -50%);
  height: 23px;
  width: 23px;
  line-height: 23px;
  -webkit-border-radius: 23px;
  -khtml-border-radius: 23px;
  -moz-border-radius: 23px;
  -ms-border-radius: 23px;
  -o-border-radius: 23px;
  border-radius: 23px;
  background-color: #dc0008;
  font-style: normal;
}
.wp-block-search {
  margin-bottom: 30px;
}
.wp-block-search .wp-block-search__button {
  margin-bottom: 0;
  border: none;
  height: 48px;
  line-height: 48px;
  min-width: 90px;
  padding: 0;
  background-color: #232323;
  color: #fff;
}
.wp-block-search .wp-block-search__button:hover {
  background-color: #dc0008;
  color: #fff;
}
.single-post .entry-featured .image-light-box {
  display: inline-block;
}
.wp-block-latest-posts li {
  padding-left: 20px;
  position: relative;
}
.wp-block-latest-posts li:before {
  color: #dc0008;
  content: '+';
  font-size: 18px;
  border-radius: 5px;
  position: absolute;
  top: 10px;
  left: 0;
}
.wp-block-latest-posts li a {
  color: #808258;
}
.wp-block-latest-posts li + li {
  margin-top: 10px;
}
.wp-block-latest-posts.wp-block-latest-posts__list.has-dates li {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f4f4f4;
}
.wp-block-latest-posts.wp-block-latest-posts__list.is-grid li {
  border-bottom: 1px solid #f4f4f4;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.wp-block-latest-posts.wp-block-latest-posts__list.is-grid li a {
  color: #232323;
}
.widget-area .widget_block .wp-block-latest-posts__list li:before {
  top: 10px;
}
.widget-area .widget_block .wp-block-latest-posts__list li a {
  padding: 0 !important;
}
.widget-area .wp-block-latest-comments .wp-block-latest-comments__comment-date {
  margin-top: 10px;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .widget-area .wp-block-group .wp-block-calendar tbody td, .widget-area .wp-block-group .wp-block-calendar th {
    padding: 4px 5px;
    text-align: center;
  }
}
.widget-area .wp-block-group .wp-block-group__inner-container > * {
  margin-bottom: 45px;
}
.widget-area .wp-block-group .wp-block-group__inner-container > *:last-child {
  margin-bottom: 0;
}
.wp-block-calendar table {
  margin-bottom: 0;
}
.wp-block-calendar .wp-calendar-nav {
  margin-bottom: 30px;
}
.post-password-form label {
  display: block;
  max-width: 100%;
  margin-right: 20px;
}
.post-password-form label input {
  height: 51px;
  line-height: 51px;
  margin-top: 20px;
}
.post-password-form input {
  margin: 0;
}
.post-password-form input[type="submit"] {
  border: none;
  line-height: 51px;
}
.post-password-form p {
  display: flex;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .post-password-form label {
    max-width: 100%;
  }
}
p {
  margin-bottom: 20px;
}
#tslOverlay {
  background-color: transparent !important;
}
#elementor-panel-get-pro-elements {
  display: none !important;
}
.elementor-icons-manager__tab__item {
  height: 80px !important;
}
.entry-content .page-links {
  padding-top: 18px;
}
.entry-content p + .page-links {
  clear: left;
  padding-top: 0px;
}
.entry-content p + .page-links .post-page-numbers:first-child {
  margin-left: 0;
}
.single-post .entry-content .wp-block-archives-list {
  list-style: none;
  margin-bottom: 32px;
}
.single-post .entry-content .wp-block-archives-list li {
  padding-left: 14px;
  position: relative;
}
.single-post .entry-content .wp-block-archives-list li + li {
  margin-top: 4px;
}
.single-post .entry-content .wp-block-archives-list li:before {
  content: '';
  width: 5px;
  height: 5px;
  background-color: #dc0008;
  -webkit-border-radius: 5px;
  -khtml-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}
@media screen and (min-width: 768px) {
  .wp-block-calendar tbody td, .wp-block-calendar th {
    padding: 4px 5px 4px 15px;
    text-align: center;
  }
}
ol {
  list-style: outside none decimal;
}
ul {
  padding: 0;
  margin: 0 0 15px;
}
ul li {
  list-style-position: inside;
  line-height: 30px;
}
dl + h2 + ul {
  padding-left: 0px;
  margin-left: 1.45em;
}
dl + h2 + ul ul {
  padding-left: 1.65em;
  padding-left: 15px;
}
dl + h2 + ul ul ul {
  padding-left: 1.65em;
  padding-left: 15px;
  margin-left: 5px;
}
dl + h2 + ul ul li {
  font-size: 16px;
  list-style: outside;
}
dl + h2 + ul ul {
  margin-top: 5px;
  margin-bottom: 5px;
}
dl + h2 + ul ul li {
  line-height: 30px;
}
ul + h2 + ol li {
  line-height: 30px;
  font-size: 16px;
}
h2 + ol ol {
  margin-top: 5px;
  margin-bottom: 5px;
}
.single-post .single-hentry .single-meta .entry-meta li {
  margin-top: 5px;
  margin-bottom: 5px;
}
.single-hentry .entry-holder .entry-title {
  text-overflow: ellipsis;
  overflow: hidden;
}
.wp-block-rss {
  margin-bottom: 32px;
  list-style: none;
}
.wp-block-rss li {
  padding-left: 14px;
  position: relative;
}
.wp-block-rss li:before {
  content: '';
  width: 5px;
  height: 5px;
  background-color: #dc0008;
  border-radius: 5px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
  -khtml-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.single-post .wp-block-latest-posts li, .single-post .wp-block-categories-list li, .single-post .wp-block-archives-list li {
  padding-bottom: 18px;
  position: relative;
  padding: 10px 10px 10px 15px;
  line-height: 20px;
}
.single-post .wp-block-latest-posts li a, .single-post .wp-block-categories-list li a, .single-post .wp-block-archives-list li a {
  display: inline-block;
}
.single-post .wp-block-latest-posts li .count-post, .single-post .wp-block-categories-list li .count-post, .single-post .wp-block-archives-list li .count-post {
  margin-left: 15px;
  color: #47a145;
  background-color: #fff;
  display: inline-block;
  text-align: center;
  width: 24px;
  line-height: 22px;
  font-size: 12px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid rgba(155, 155, 155, 0.2);
  position: absolute;
  right: 5px;
  top: 5px;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
}
.single-product .up-sells h2 {
  font-size: 18px;
  line-height: 30px;
  font-weight: 700;
  margin-bottom: 32px;
  text-transform: capitalize;
}
.comments-area .comment-list > .trackback, .comments-area .comment-list > .pingback, .comments-area .comment-list .comment {
  margin-top: 24px;
}
.comment-list-wrap + .no-comments {
  margin-top: 50px;
}
#secondary .widget.widget_rss li {
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid #cfd8dd;
}
#secondary .widget.widget_rss li .rsswidget {
  font-size: 18px;
  font-weight: 600;
  color: #232323;
}
#secondary .widget.widget_rss li .rssSummary {
  font-size: 16px;
}
#secondary .widget.widget_rss li .rss-date {
  padding-left: 20px;
  position: relative;
  margin: 10px 0 6px;
  font-style: normal;
}
#secondary .widget.widget_rss li .rss-date:before {
  position: absolute;
  content: '\f109';
  font-family: FontAwesome;
  left: 0;
  color: #dc0008;
}
#secondary .widget.widget_rss li cite {
  padding-left: 20px;
  position: relative;
  margin: 10px 0 6px;
  font-style: normal;
  color: #232323;
  font-size: 14px;
}
#secondary .widget.widget_rss li cite:before {
  position: absolute;
  content: '\f139';
  font-family: FontAwesome;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 400;
  color: #dc0008;
}
#secondary .widget.widget_recent_comments li:before {
  width: 20px;
  height: 25px;
  line-height: 25px;
  font-size: 12px;
  color: #dc0008;
  content: '\f086';
  font-family: FontAwesome;
  display: inline-block;
}
.content-area .wp-block-latest-posts li:first-child:before {
  top: 10px;
}
.widget-area .widget_block:not(.widget_search) {
  padding: 28px 30px;
  border: 1px solid rgba(128, 130, 88, 0.15);
}
@media screen and (max-width: 767px) {
  .widget-area .widget_block:not(.widget_search) {
    padding: 28px 20px;
  }
}
.widget-area .widget_block h2 {
  font-size: 22px;
  line-height: 21px;
  position: relative;
  margin-bottom: 23px;
  display: inline-block;
  padding-bottom: 5px;
}
.widget-area .widget_block.widget_search .wp-block-search__label {
  color: #232323;
  margin-bottom: 25px;
  font-size: 22px;
  line-height: 21px;
  position: relative;
  margin-bottom: 23px;
  display: inline-block;
}
.widget-area .widget_block.widget_search .wp-block-search__button {
  background-color: #dc0008;
  padding-left: 10px;
  padding-right: 10px;
  color: #fff;
  height: 48px;
  line-height: 48px;
  max-width: 90px;
}
.widget-area .widget_block.widget_search .wp-block-search__button:hover {
  color: #dc0008;
  background-color: #fff;
}
.widget-area .widget_block.widget_search .wp-block-search {
  margin-bottom: 0;
}
.widget-area .widget_block .wp-block-latest-posts__list li:before {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -khtml-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.widget-area .widget_block .wp-block-latest-posts__list li a {
  color: #808258;
}
.widget-area .widget_block .wp-block-latest-posts__list li a:hover {
  color: #dc0008;
}
.widget-area .widget_block .wp-block-latest-comments {
  padding-left: 0;
  margin-bottom: 0;
}
.widget-area .widget_block .wp-block-latest-comments a {
  color: #808258;
}
.widget-area .widget_block .wp-block-latest-comments a:hover {
  color: #dc0008;
}
.widget-area .widget_block .wp-block-latest-comments .wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta {
  line-height: 1.4;
}
.widget-area .widget_block .wp-block-latest-comments .wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta:before {
  width: 20px;
  height: 25px;
  line-height: 25px;
  font-size: 12px;
  color: #dc0008;
  content: '\f086';
  font-family: FontAwesome;
  display: inline-block;
}
.widget-area .widget_block .wp-block-latest-comments .wp-block-latest-comments__comment:last-child {
  margin-bottom: 0;
}
.woocommerce .cart-collaterals .cross-sells h2, .woocommerce-page .cart-collaterals .cross-sells h2 {
  font-size: 24px;
  margin-bottom: 22px;
}
.woocommerce .cart-collaterals .cart_totals h2, .woocommerce-page .cart-collaterals .cart_totals h2 {
  font-size: 24px;
  margin-bottom: 22px !important;
}
.woocommerce div.product .up-sells h2 {
  font-size: 22px;
  margin-bottom: 32px;
}
.woocommerce-cart-form__contents {
  border-left: 1px solid #ededed !important;
  border-bottom: 1px solid #ededed !important;
}
@media screen and (max-width: 991px) {
  .woocommerce-cart-form__contents {
    border-top: 1px solid #ededed !important;
  }
}
.woocommerce-cart-form + .cart-collaterals {
  margin-top: 75px;
}
.woocommerce div.product .up-sells h2 {
  font-size: 22px;
  margin-bottom: 32px;
}
