/*--------------------------------------------------------------
>>> 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
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Elementor
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Unit Test
--------------------------------------------------------------*/
@-webkit-keyframes moveUp {
  100% {
    -webkit-transform: translateY(0);
    opacity: 1;
  }
}
@keyframes moveUp {
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes scale {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes scale {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
@-webkit-keyframes flyUp {
  25% {
    -webkit-transform: translateY(-10px);
    opacity: 1;
  }
  75% {
    -webkit-transform: translateY(10px);
    opacity: 1;
  }
}
@keyframes flyUp {
  25% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
    opacity: 1;
  }
  75% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
    opacity: 1;
  }
}
@-webkit-keyframes flyUph {
  25% {
    -webkit-transform: translateY(-40px);
    opacity: 1;
  }
  75% {
    -webkit-transform: translateY(40px);
    opacity: 1;
  }
}
@keyframes flyUph {
  25% {
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px);
    opacity: 1;
  }
  75% {
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
    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;
  }
}
@keyframes flyToRight {
  0% {
    transform: translatex(0px);
  }
  50% {
    transform: translatex(30px);
  }
  100% {
    transform: translatex(0px);
  }
}
@keyframes moveAround {
  0% {
    transform: translate(0px, 0px);
  }
  20% {
    transform: translate(121px, 56px);
  }
  40% {
    transform: translate(-50px, 100px);
  }
  60% {
    transform: translate(-150px, -100px);
  }
  80% {
    transform: translate(-100px, 80px);
  }
  100% {
    transform: translate(0px, 0px);
  }
}
@-webkit-keyframes sk-rotate {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes sk-rotate {
  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
  }
}
@-webkit-keyframes bgrs {
  0% {
    background-size: 95%;
  }
  50% {
    background-size: 100%;
  }
  100% {
    background-size: 95%;
  }
}
@keyframes bgrs {
  0% {
    background-size: 95%;
  }
  50% {
    background-size: 100%;
  }
  100% {
    background-size: 95%;
  }
}
@-webkit-keyframes sk-bounce {
  0%, 100% {
    -webkit-transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
  }
}
@keyframes sk-bounce {
  0%, 100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
@-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 squares {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
  20% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
  }
}
@-moz-keyframes squares {
  0% {
    -moz-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
  20% {
    -moz-transform: scale(1.24);
    transform: scale(1.24);
    opacity: 1;
  }
  100% {
    -moz-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
  }
}
@-o-keyframes squares {
  0% {
    -o-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
  20% {
    -o-transform: scale(1.24);
    transform: scale(1.24);
    opacity: 1;
  }
  100% {
    -o-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
  }
}
@keyframes squares {
  /* Nudge */
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
  20% {
    -webkit-transform: scale(1.24);
    -moz-transform: scale(1.24);
    -o-transform: scale(1.24);
    transform: scale(1.24);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -o-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
  }
}
@keyframes nudge {
  /* Bounce */
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(30px, 0);
  }
  80% {
    transform: translate(-30px, 0);
  }
}
@keyframes bounce {
  0%, 100%, 20%, 50%, 80% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
@keyframes bounce-1 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-50px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes bounce-2 {
  /* Page Loading */
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-30px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes loading-spinner {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes loading-spinner {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes loading-run {
  0% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
  5%, 95% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
  10%, 59% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
  }
  20% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em;
  }
  38% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em;
  }
  100% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
}
@keyframes loading-run {
  0% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
  5%, 95% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
  10%, 59% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
  }
  20% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em;
  }
  38% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em;
  }
  100% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
}
@-webkit-keyframes loading-round {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes loading-round {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes abs {
  0% {
    transform: translateY(0px);
  }
  25% {
    transform: translateY(-20px);
  }
  50% {
    transform: translateY(0px);
  }
  75% {
    transform: translateY(20px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes abs {
  0% {
    transform: translateY(0px);
  }
  25% {
    transform: translateY(-20px);
  }
  50% {
    transform: translateY(0px);
  }
  75% {
    transform: translateY(20px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes pulse-border {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
@keyframes iconbounce {
  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);
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes phonering {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(45deg);
  }
  75% {
    transform: rotate(-45deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0.4);
  }
  70% {
    -webkit-box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
  }
}
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0.4);
    box-shadow: 0 0 0 0 rgba(204, 169, 44, 0.4);
  }
  70% {
    -moz-box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
    box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
  }
  100% {
    -moz-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
    box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
  }
}
@-webkit-keyframes toRightFromLeft {
  49% {
    -webkit-transform: translate(100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translate(-100%);
  }
  51% {
    opacity: 1;
  }
}
@-moz-keyframes toRightFromLeft {
  49% {
    -moz-transform: translate(100%);
  }
  50% {
    opacity: 0;
    -moz-transform: translate(-100%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes toRightFromLeft {
  49% {
    transform: translate(100%);
  }
  50% {
    opacity: 0;
    transform: translate(-100%);
  }
  51% {
    opacity: 1;
  }
}
@-webkit-keyframes cms-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
  }
}
@keyframes cms-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    -ms-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    -ms-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    -ms-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    -ms-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@-webkit-keyframes toRightFromLeft {
  49% {
    -webkit-transform: translate(100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translate(-100%);
  }
  51% {
    opacity: 1;
  }
}
@-moz-keyframes toRightFromLeft {
  49% {
    -moz-transform: translate(100%);
  }
  50% {
    opacity: 0;
    -moz-transform: translate(-100%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes toRightFromLeft {
  49% {
    transform: translate(100%);
  }
  50% {
    opacity: 0;
    transform: translate(-100%);
  }
  51% {
    opacity: 1;
  }
}
@-webkit-keyframes toBottomFromTop {
  49% {
    -webkit-transform: translateY(100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
  }
  51% {
    opacity: 1;
  }
}
@-moz-keyframes toBottomFromTop {
  49% {
    -moz-transform: translateY(100%);
  }
  50% {
    opacity: 0;
    -moz-transform: translateY(-100%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes toBottomFromTop {
  49% {
    transform: translateY(100%);
  }
  50% {
    opacity: 0;
    transform: translateY(-100%);
  }
  51% {
    opacity: 1;
  }
}
@-webkit-keyframes toTopFromBottom {
  49% {
    -webkit-transform: translateY(-100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateY(100%);
  }
  51% {
    opacity: 1;
  }
}
@-moz-keyframes toTopFromBottom {
  49% {
    -moz-transform: translateY(-100%);
  }
  50% {
    opacity: 0;
    -moz-transform: translateY(100%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes toTopFromBottom {
  49% {
    transform: translateY(-100%);
  }
  50% {
    opacity: 0;
    transform: translateY(100%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes videoplayer {
  0% {
    width: 110%;
    height: 110%;
    opacity: 0;
  }
  30% {
    width: 130%;
    height: 130%;
    opacity: 1;
  }
  100% {
    width: 160%;
    height: 160%;
    opacity: 0;
  }
}
@keyframes pulse-border2 {
  0% {
    transform: scale(1);
    opacity: 0.67;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
@-webkit-keyframes pulse-border2 {
  /* Cicle Animation */
  0% {
    transform: scale(1);
    opacity: 0.67;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
@-webkit-keyframes spinAround {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
@-moz-keyframes spinAround {
  from {
    -moz-transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(360deg);
  }
}
@keyframes spinAround {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes spinAroundr {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(-360deg);
  }
}
@-moz-keyframes spinAroundr {
  from {
    -moz-transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(-360deg);
  }
}
@keyframes spinAroundr {
  /* End Phone Ring */
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
@keyframes shakeThatBooty {
  33% {
    -webkit-transform: rotateZ(30deg);
    -khtml-transform: rotateZ(30deg);
    -moz-transform: rotateZ(30deg);
    -ms-transform: rotateZ(30deg);
    -o-transform: rotateZ(30deg);
    transform: rotateZ(30deg);
  }
  67% {
    -webkit-transform: rotateZ(-30deg);
    -khtml-transform: rotateZ(-30deg);
    -moz-transform: rotateZ(-30deg);
    -ms-transform: rotateZ(-30deg);
    -o-transform: rotateZ(-30deg);
    transform: rotateZ(-30deg);
  }
  100% {
    -webkit-transform: rotateZ(30deg);
    -khtml-transform: rotateZ(30deg);
    -moz-transform: rotateZ(30deg);
    -ms-transform: rotateZ(30deg);
    -o-transform: rotateZ(30deg);
    transform: rotateZ(30deg);
  }
}
html {
  box-sizing: border-box;
}
div {
  font-style: initial;
}
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: #ff4c01;
}
a.text-link {
  border-bottom: 2px solid #ee1d22;
  padding-bottom: 2px;
  color: #ee1d22;
}
a.text-link:hover {
  border-color: transparent;
}
a, a:hover, a:focus, a:before, a:after {
  outline: none;
  text-decoration: none;
}
a:hover, a:focus {
  color: #ee1d22;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background-color: #fff;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: top center;
  background-size: cover;
  font-size: 16px;
  line-height: 1.5;
  color: #7a7a7a;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-weight: normal;
  letter-spacing: 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-style: initial;
}
body.body-default-font {
  font-family: Barlow Condensed;
  font-style: initial;
}
.site {
  position: relative;
}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  margin-bottom: 0;
  color: #2a2a2a;
  clear: both;
  line-height: 1.5;
  font-weight: 400;
  font-family: Poppins;
}
.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 {
  font-family: Barlow Condensed;
  font-style: initial;
}
ul, h2 {
  margin: 0 !important;
}
h1, .h1 {
  font-size: 52px;
}
h2, .h2 {
  font-size: 40px;
}
h3, .h3 {
  font-size: 38px;
}
h4, .h4 {
  font-size: 32px;
}
h5, .h5 {
  font-size: 26px;
}
h6, .h6 {
  font-size: 18px;
}
img {
  width: auto;
  max-width: 100%;
  height: auto;
}
label {
  margin-bottom: 0;
}
table {
  border-bottom: 1px solid #ededed;
  border-left: 1px solid #ededed;
  border-collapse: collapse;
  border-spacing: 0;
  line-height: 2;
  margin: 0 0 32px;
  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: #282828;
}
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: 600;
  border-top: 1px solid #ededed;
  padding: 10px;
  border-right: 1px solid #ededed;
}
td {
  border-top: 1px solid #ededed;
  padding: 10px;
  border-right: 1px solid #ededed;
  /*--- 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: #ee1d22;
}
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: #ee1d22;
}
pre {
  background: #f5f5f5;
  color: #666;
  font-size: 14px;
  margin: 20px 0;
  overflow: auto;
  padding: 20px;
  white-space: pre-wrap;
  word-wrap: break-word;
}
@media screen and (max-width: 991px) {
  br {
    display: none;
  }
}
ol {
  list-style: outside none decimal;
}
ul {
  padding: 0;
  margin: 0 0 15px;
}
ul li {
  list-style-position: inside;
}
dl + h2 + ul {
  padding-left: 35px;
}
dl + h2 + ul ul {
  padding-left: 35px;
}
dl + h2 + ul ul li {
  list-style: outside;
}
blockquote {
  padding: 45px 50px 47px 128px;
  background-color: #ee1d22;
  margin: 0;
  font-weight: 600;
  border-radius: 3px;
}
@media screen and (max-width: 767px) {
  blockquote {
    padding: 30px;
  }
}
@media screen and (min-width: 768px) {
  blockquote {
    position: relative;
  }
  blockquote:before {
    content: "“";
    font-size: 88px;
    position: absolute;
    color: #fff;
    top: 37px;
    left: 78px;
    font-weight: 700;
    line-height: 1;
  }
}
blockquote p {
  font-size: 28px;
  line-height: 36px;
  font-weight: 600 !important;
  color: #fff !important;
  margin-bottom: 0 !important;
  font-style: normal;
  letter-spacing: 0;
  font-family: Barlow Condensed !important;
}
@media screen and (max-width: 575px) {
  blockquote p {
    font-size: 25px;
  }
}
blockquote cite {
  display: block;
  font-weight: 400;
  font-size: 14px;
  margin-top: 15px;
  text-align: right;
  font-style: normal;
}
.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%;
  }
}
.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;
}
#tslOverlay {
  background-color: transparent !important;
}
#elementor-panel-get-pro-elements {
  display: none !important;
}
.elementor-icons-manager__tab__item {
  height: 80px !important;
  /* Quoter custom */
}
.cs-quote-style-1, .cs-quote-style-2, .cs-quote-style-3 {
  display: block;
  font-family: Novecentowide-Bold;
  font-size: 18px;
  text-transform: uppercase;
  margin: 20px auto;
  padding: 0 14%;
  position: relative;
  max-width: 80%;
  text-align: center;
}
.cs-quote-style-1:before, .cs-quote-style-1:after {
  font-family: Novecentowide-Medium;
  font-size: 137px;
  position: absolute;
  top: 45px;
  margin: auto;
}
.cs-quote-style-1:before {
  left: 0;
}
.rtl .cs-quote-style-1:before {
  left: inherit;
  right: 0;
}
.cs-quote-style-1:after {
  right: 0;
  top: inherit;
  bottom: -25px;
}
.rtl .cs-quote-style-1:after {
  right: inherit;
  left: 0;
}
.cs-quote-style-2 {
  padding: 10px 20px;
}
.cs-quote-style-3 {
  background: #f5f5f5;
  padding: 20px 60px 20px 70px;
  position: relative;
  border-left: 10px solid #ee1d22;
}
.cs-quote-style-3:after, .cs-quote-style-3:before {
  font-size: 100px;
  font-family: Novecentowide-Medium;
  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: 34px;
  height: 24px;
  line-height: 50px;
  color: #ee1d22;
}
.cs-quote-style-3:before {
  left: 10px;
  content: "“";
}
.rtl .cs-quote-style-3:before {
  left: inherit;
  right: 10px;
}
.cs-quote-style-3:after {
  top: inherit;
  right: 20px;
  bottom: -14px;
  content: "”";
}
.rtl .cs-quote-style-3:after {
  right: inherit;
  left: 20px;
}
.bg-before-overlay {
  position: relative;
}
.bg-before-overlay:before {
  background: none repeat scroll 0 0 rgba(0, 0, 0, 0.5);
  bottom: 0;
  content: "";
  height: 85%;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}
#demo-option .fa {
  font-family: "FontAwesome";
}
.el-inline {
  display: inline-block;
  width: auto !important;
}
.ct-arrow-right.fac-arrow-right {
  height: 20px;
  width: 20px;
  line-height: 20px;
  -webkit-border-radius: 20px;
  -khtml-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  border-radius: 20px;
  background-color: #fff;
  color: #ee1d22;
  font-size: 12px;
  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;
  text-align: center;
  position: relative;
  top: -1px;
}
.btn:hover .ct-arrow-right.fac-arrow-right, .btn:focus .ct-arrow-right.fac-arrow-right {
  color: #2a2a2a;
}
.btn.btn-secondary:hover .ct-arrow-right.fac-arrow-right, .btn.btn-secondary:focus .ct-arrow-right.fac-arrow-right {
  color: #ee1d22;
}
.text-block {
  font-size: 15px;
  line-height: 23px;
}
.z-index1 {
  z-index: 1;
}
.z-index2 {
  z-index: 2;
}
.z-index3 {
  z-index: 3;
}
.d-table {
  display: table;
}
.d-table-cell {
  display: table-cell;
  vertical-align: middle;
}
.br-1px {
  -webkit-border-radius: 1px;
  -khtml-border-radius: 1px;
  -moz-border-radius: 1px;
  -ms-border-radius: 1px;
  -o-border-radius: 1px;
  border-radius: 1px;
}
.br-2px {
  -webkit-border-radius: 2px;
  -khtml-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  border-radius: 2px;
}
.br-3px {
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
}
.br-4px {
  -webkit-border-radius: 4px;
  -khtml-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
}
.br-5px {
  -webkit-border-radius: 5px;
  -khtml-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
}
.br-6px {
  -webkit-border-radius: 6px;
  -khtml-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  border-radius: 6px;
}
.br-7px {
  -webkit-border-radius: 7px;
  -khtml-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  -o-border-radius: 7px;
  border-radius: 7px;
}
.br-8px {
  -webkit-border-radius: 8px;
  -khtml-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  border-radius: 8px;
}
.br-9px {
  -webkit-border-radius: 9px;
  -khtml-border-radius: 9px;
  -moz-border-radius: 9px;
  -ms-border-radius: 9px;
  -o-border-radius: 9px;
  border-radius: 9px;
}
.br-10px {
  -webkit-border-radius: 10px;
  -khtml-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
}
.z-index0 {
  z-index: 0;
  position: relative;
}
#content[tabindex="-1"]:focus {
  outline: 0;
}
.bg-primary {
  background-color: #ee1d22 !important;
}
.bullet-row:after {
  content: "";
  content: "";
  bottom: -50px;
  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%);
  position: absolute;
  display: block;
  border-top: 25px solid #ee1d22;
  border-bottom: 25px solid transparent;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
}
.bg-secondary {
  background-color: #2a2a2a;
}
.bg-regular {
  background-color: #666;
}
.inline-block {
  display: inline-block;
  vertical-align: middle;
}
.margin-bottom-0 p {
  margin-bottom: 0;
}
.text-right, .align-right {
  text-align: right;
}
.text-left, .align-left {
  text-align: left;
}
.text-center, .align-center {
  text-align: center;
}
.align-justified {
  width: 100%;
}
@media screen and (min-width: 992px) {
  .bg-ss-before {
    position: relative;
  }
  .bg-ss-before:before {
    content: "";
    display: block;
    position: absolute;
    background-color: #f8f8f8;
    width: 100%;
    right: 50%;
    height: 100%;
  }
}
@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;
  }
  .align-justified-md {
    width: 100%;
  }
}
@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;
  }
  .align-justified-sm {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  /* CSS Custom */  .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;
  }
  .align-justified-xs {
    width: 100%;
  }
}
.title-slide2 span {
  color: #ee1d22;
}
.icon-slide-custom {
  position: relative;
  padding-left: 185px !important;
  padding-right: 185px !important;
  color: #ee1d22;
  display: inline-block;
}
@media screen and (max-width: 991px) {
  .icon-slide-custom {
    padding-left: 65px !important;
    padding-right: 65px !important;
  }
}
.icon-slide-custom:before, .icon-slide-custom:after {
  background-color: ;
  height: 1px;
  width: 170px;
  display: inline-block;
  content: "";
  position: absolute;
  top: 49%;
}
@media screen and (max-width: 991px) {
  .icon-slide-custom:before, .icon-slide-custom:after {
    width: 60px;
  }
}
.icon-slide-custom:before {
  left: 0;
}
.icon-slide-custom:after {
  right: 0;
}
.icon-slide-custom i, .icon-slide-custom 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;
  animation: mymove 5s infinite linear;
}
.icon-rotate i, .icon-rotate 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;
  animation: mymove 5s infinite linear;
}
@keyframes mymove {
  /* Bullest Revolution custom */
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}
.tp-bullets.bullet_custom_1.vertical {
  width: 105px !important;
  position: relative;
}
.tp-bullets.bullet_custom_1.vertical .tp-bullet {
  -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;
  height: 1px;
  width: 85px;
  height: 10px;
  background-color: transparent !important;
  left: 10px !important;
  color: #fff;
  position: absolute;
}
.tp-bullets.bullet_custom_1.vertical .tp-bullet:after {
  height: 1px;
  left: 0;
  position: absolute;
  top: 5px;
  width: 100%;
  background-color: #97928f;
  content: "";
  display: block;
}
.tp-bullets.bullet_custom_1.vertical .tp-bullet:before {
  -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: inherit;
  -webkit-transition: all 300ms ease 0ms;
  -khtml-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -ms-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
  position: absolute;
  top: 50%;
  font-size: 18px;
  -webkit-transform: translateY(-50%);
  -khtml-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
  left: -25px;
}
.tp-bullets.bullet_custom_1.vertical .tp-bullet.selected {
  left: 0 !important;
  width: 105px !important;
}
.tp-bullets.bullet_custom_1.vertical .tp-bullet.selected:before {
  color: #ee1d22;
  font-weight: bold;
}
.tp-bullets.bullet_custom_1.vertical .tp-bullet.selected:after {
  top: 4px;
  background-color: #ee1d22 !important;
  height: 3px !important;
}
.tp-bullets.bullet_custom_1.vertical .tp-bullet:nth-child(1):before {
  content: "01";
}
.tp-bullets.bullet_custom_1.vertical .tp-bullet:nth-child(2):before {
  content: "02";
}
.tp-bullets.bullet_custom_1.vertical .tp-bullet:nth-child(3):before {
  content: "03";
}
.tp-bullets.bullet_custom_1.vertical .tp-bullet:nth-child(4):before {
  content: "04";
}
.tp-bullets.bullet_custom_1.vertical .tp-bullet:nth-child(5):before {
  content: "05";
}
.tp-bullets.bullet_custom_1.vertical .tp-bullet:nth-child(6):before {
  content: "06";
}
.tp-bullets.bullet_custom_1.vertical .tp-bullet:nth-child(7):before {
  content: "07";
}
.tp-bullets.bullet_custom_1.vertical .tp-bullet:nth-child(8):before {
  content: "08";
}
.tp-bullets.bullet_custom_1.vertical .tp-bullet:nth-child(9):before {
  content: "09";
}
.tp-bullets.bullet_custom_1.vertical .tp-bullet:nth-child(10):before {
  content: "10";
}
.tp-bullets.bullet_custom_1.vertical .tp-bullet:nth-child(11):before {
  content: "11";
}
.tp-bullets.bullet_custom_1.vertical .tp-bullet:nth-child(12):before {
  content: "12";
}
.tp-bullets.bullet_custom_1.vertical .tp-bullet:nth-child(13):before {
  content: "13";
}
.tp-bullets.bullet_custom_2 .tp-bullet {
  -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;
  width: 63px;
  height: 10px;
  background-color: transparent;
}
.tp-bullets.bullet_custom_2 .tp-bullet: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;
  background-color: #fff;
  height: 2px;
  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%);
  display: block;
  content: "";
  left: 0;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .tp-bullets.bullet_custom_2 .tp-bullet {
    width: 30px;
  }
}
.tp-bullets.bullet_custom_2 .tp-bullet.selected:after {
  background-color: #ee1d22;
  height: 3px;
}
.tp-thumbs {
  /* Btn revolution */
}
.tp-thumbs.erinyen .tp-thumbs-inner-wrapper .tp-thumb {
  -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;
}
.tp-thumbs.erinyen .tp-thumbs-inner-wrapper .tp-thumb .tp-thumb-image {
  -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: 3% !important;
  left: 3% !important;
  border: 1px solid #fff !important;
  width: 95% !important;
  height: 95% !important;
}
.tp-thumbs.erinyen .tp-thumbs-inner-wrapper .tp-thumb.selected .tp-thumb-image {
  top: 0 !important;
  left: 0 !important;
  border: 1px solid #ee1d22 !important;
  height: 100% !important;
  width: 100% !important;
}
@media screen and (min-width: 576px) {
  .btn-slide-custum2 {
    padding-right: 65px !important;
    position: relative;
  }
  .btn-slide-custum2:after {
    position: absolute;
    right: 0;
    display: block;
    content: "";
    width: 33px;
    height: 1px;
    background-color: #fff;
    top: 13px;
    -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;
  }
  .btn-slide-custum2:hover:after {
    background-color: #ee1d22;
  }
}
.number-slider-custom span {
  font-size: 35px !important;
  color: #ee1d22;
}
.number-slider-custom2 span {
  font-size: 65px !important;
  color: #ee1d22;
}
@media screen and (max-width: 1199px) {
  .number-slider-custom2 span {
    font-size: 30px !important;
  }
}
.btn-hover-white {
  overflow: hidden;
  position: relative;
  cursor: pointer;
  -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;
}
.btn-hover-white span {
  position: relative;
  z-index: 2;
}
.btn-hover-white:before, .btn-hover-white:after {
  -webkit-border-radius: 1px;
  -khtml-border-radius: 1px;
  -moz-border-radius: 1px;
  -ms-border-radius: 1px;
  -o-border-radius: 1px;
  border-radius: 1px;
  content: '';
  position: absolute;
  -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;
  z-index: 1;
}
.btn-hover-white:before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ee1d22;
  border: 1px solid #ee1d22;
}
.btn-hover-white:after {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: #fff;
  -webkit-transform: scale(0.5, 0.5);
  -khtml-transform: scale(0.5, 0.5);
  -moz-transform: scale(0.5, 0.5);
  -ms-transform: scale(0.5, 0.5);
  -o-transform: scale(0.5, 0.5);
  transform: scale(0.5, 0.5);
}
.btn-hover-white:hover {
  color: #2a2a2a !important;
}
.btn-hover-white:hover:before {
  opacity: 0;
  -webkit-transform: scale(1.2, 1.2);
  -khtml-transform: scale(1.2, 1.2);
  -moz-transform: scale(1.2, 1.2);
  -ms-transform: scale(1.2, 1.2);
  -o-transform: scale(1.2, 1.2);
  transform: scale(1.2, 1.2);
}
.btn-hover-white:hover:after {
  opacity: 1;
  -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);
}
.gr-slider-custom .rs-layer img {
  border: 1px solid #fff;
}
.attorneys-list-custom ol {
  padding-left: 15px;
}
.attorneys-list-custom ol li + li {
  margin-top: 10px;
}
.btn-custom-full .elementor-button-wrapper {
  background-color: #ee1d22;
}
.btn-custom-full a {
  display: inline-block;
}
input::-moz-placeholder, textarea::-moz-placeholder {
  color: inherit;
  opacity: 1;
  text-overflow: ellipsis;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
  text-overflow: ellipsis;
}
input::-o-placeholder, textarea::-o-placeholder {
  color: inherit;
  opacity: 1;
  text-overflow: ellipsis;
}
input::-ms-placeholder, textarea::-ms-placeholder {
  color: inherit;
  opacity: 1;
  text-overflow: ellipsis;
}
input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}
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: 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: 1px solid #d2d2d2;
  color: inherit;
  padding: 8px 20px;
  line-height: normal;
  height: 48px;
  font-size: 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;
  -webkit-box-shadow: none;
  -khtml-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
  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, input[type="text"]:active, input[type="email"]:active, input[type="url"]:active, input[type="password"]:active, input[type="search"]:active, input[type="tel"]:active, input[type="number"]:active, input[type="range"]:active, input[type="date"]:active, input[type="month"]:active, input[type="week"]:active, input[type="time"]:active, input[type="datetime"]:active, input[type="datetime-local"]:active, input[type="color"]:active, textarea:active, select:active, .nice-select:active {
  border-color: #ee1d22;
}
select {
  height: 51px;
}
textarea {
  line-height: normal;
  padding-top: 18px;
  padding-bottom: 14px;
  height: 120px;
  resize: none;
}
.cms-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;
}
.cms-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;
}
.cms-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%);
}
.mrg-bt {
  margin-top: 3px !important;
}
.mrg-bt input {
  line-height: 55px !important;
  padding-right: 42px !important;
}
@media screen and (max-width: 991px) {
  .mrg-bt input {
    padding-right: 20px !important;
  }
}
.mrg-bt i {
  pointer-events: none;
  position: absolute;
  top: 40%;
  font-size: 13px;
  font-weight: 400;
  right: 31%;
  color: #fff;
  transition: 0.3s;
}
@media screen and (max-width: 991px) {
  .mrg-bt i {
    display: none;
  }
}
.mrg-bt:hover i {
  color: #ee1d22;
  -webkit-animation: toRightFromLeft 0.3s forwards;
  -khtml-animation: toRightFromLeft 0.3s forwards;
  -moz-animation: toRightFromLeft 0.3s forwards;
  -ms-animation: toRightFromLeft 0.3s forwards;
  -o-animation: toRightFromLeft 0.3s forwards;
  animation: toRightFromLeft 0.3s forwards;
}
.input-filled input {
  height: 50px;
}
.input-filled textarea {
  height: 145px;
}
.wpcf7-form .wpcf7-form-control-wrap {
  margin-bottom: 18px;
  display: block;
}
@media screen and (max-width: 767px) {
  .wpcf7-form .wpcf7-form-control-wrap {
    margin-top: 6px;
  }
}
@media screen and (max-width: 575px) {
  .wpcf7-form .wpcf7-form-control-wrap {
    margin-top: 6px;
  }
}
.wpcf7-form .wpcf7-form-control-wrap input {
  margin-bottom: 0;
}
.wpcf7-form .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
  display: none;
}
.wpcf7-form .wpcf7-form-control-wrap .wpcf7-not-valid {
  border-color: #f13c3c;
  color: #ee1d22;
}
.wpcf7-form .wpcf7-form-control-wrap.your-message {
  margin-bottom: 25px;
}
.wpcf7-form .wpcf7-response-output {
  margin-top: 20px !important;
  border: medium none;
  font-style: italic;
  padding: 0;
  margin: 0 !important;
}
.wpcf7-form .wpcf7-response-output.wpcf7-mail-sent-ok {
  color: #398f14;
}
.wpcf7-form .wpcf7-response-output.wpcf7-validation-errors {
  color: #f13c3c;
}
.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;
}
.select2 .select2-selection--single {
  -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 #e7e8e9;
  height: 47px;
}
.select2 .select2-selection--single .select2-selection__rendered {
  padding-left: 15px;
  line-height: 47px;
}
.select2 .select2-selection--single .select2-selection__arrow {
  right: 8px;
  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%);
}
#ui-datepicker-div {
  background-color: #fff;
  padding: 22px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  -webkit-border-radius: 6px;
  -khtml-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -khtml-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  position: absolute;
  top: -9999px;
  min-width: 300px;
  z-index: 10001 !important;
}
#ui-datepicker-div .ui-datepicker-header {
  position: relative;
}
#ui-datepicker-div .ui-datepicker-header .ui-corner-all {
  display: block;
  height: 30px;
  width: 30px;
  line-height: 30px;
  text-align: center;
  cursor: pointer;
  position: absolute;
  top: 0;
  padding: 0;
}
#ui-datepicker-div .ui-datepicker-header .ui-corner-all:before {
  content: "\f104";
  color: #040e24;
  font-family: 'Font Awesome 5 Pro';
  font-size: 16px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
#ui-datepicker-div .ui-datepicker-header .ui-corner-all:hover:before {
  color: #ee1d22;
}
#ui-datepicker-div .ui-datepicker-header .ui-corner-all span {
  display: none;
}
#ui-datepicker-div .ui-datepicker-header .ui-corner-all.ui-datepicker-prev {
  left: 0;
}
#ui-datepicker-div .ui-datepicker-header .ui-corner-all.ui-datepicker-next {
  right: 0;
}
#ui-datepicker-div .ui-datepicker-header .ui-corner-all.ui-datepicker-next:before {
  content: "\f105";
}
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-title {
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 10px;
  min-height: 40px;
  text-align: center;
  text-transform: uppercase;
  font-size: 16px;
  color: #282828;
}
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-title span {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
}
#ui-datepicker-div .ui-datepicker-calendar {
  margin: 0;
  width: 100%;
}
#ui-datepicker-div .ui-datepicker-calendar th {
  text-align: center;
}
#ui-datepicker-div .ui-datepicker-calendar td {
  text-align: center;
  padding: 6px;
  color: rgba(0, 0, 0, 0.6);
}
#ui-datepicker-div .ui-datepicker-calendar td.ui-state-disabled {
  color: rgba(0, 0, 0, 0.2);
}
#ui-datepicker-div .ui-datepicker-calendar td.ui-datepicker-today a {
  color: #ee1d22;
}
#ui-datepicker-div .ui-datepicker-calendar td a {
  color: #999;
}
#ui-datepicker-div .ui-datepicker-calendar td a:hover {
  color: #ee1d22;
}
form .select2-container--default {
  width: 100% !important;
}
form .select2-container--default .select2-selection {
  border: 1px solid #e7e8e9;
  height: 47px;
}
form .select2-container--default .select2-selection .select2-selection__rendered {
  line-height: 47px;
  padding-left: 15px;
}
form .select2-container--default .select2-selection .select2-selection__arrow {
  right: 10px;
  top: 50%;
  color: #8f8f8f;
}
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: #ee1d22;
}
.cms-field-checkbox {
  position: relative;
  padding-left: 27px;
}
.cms-field-checkbox .icon-check {
  border: 2px solid #e7ebef;
  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;
}
.cms-field-checkbox .icon-check:before {
  content: '';
  height: 7px;
  width: 7px;
  -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: #ee1d22;
  position: absolute;
  top: 3px;
  left: 3px;
  opacity: 0;
}
.cms-field-checkbox label {
  font-size: 14px;
}
.cms-field-checkbox input {
  bottom: 0;
  height: 100%;
  left: 0;
  position: absolute;
  width: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 3;
}
.cms-field-checkbox input:checked + .icon-check:before {
  opacity: 1;
}
.cms-contact-form span.current {
  font-family: Poppins;
  color: #89888c !important;
  font-weight: 400;
  font-size: 15px;
}
.nice-select {
  background-color: #fff;
  position: relative;
  padding-right: 40px;
  padding-top: 0;
  padding-bottom: 0;
  height: 66px;
  border: 1px solid #d2d2d2;
  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;
  padding-left: 17px !important;
}
.nice-select:active, .nice-select:focus {
  border-color: #ee1d22;
}
.nice-select:after {
  content: "\f107";
  font-family: 'Font Awesome 5 Pro';
  font-size: 16px;
  text-align: center;
  color: #9b9b9b;
  font-weight: 400;
  position: absolute;
  right: 20px;
  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: 65px;
}
.nice-select .option {
  text-overflow: ellipsis;
  overflow: hidden;
}
.nice-select.open .list {
  padding: 5px;
  min-width: 185px;
  overflow: auto;
  width: 100%;
  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 {
  max-height: 110px;
  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;
  -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);
  box-sizing: border-box;
  margin-top: 4px;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  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: #666;
}
.nice-select .list .selected {
  color: #666;
}
.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: 8px 24px;
  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;
  -webkit-border-radius: 4px;
  -khtml-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
}
.nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
  background-color: #f3f3f4;
}
.nice-select .option.selected {
  font-weight: bold;
}
.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;
}
.login_form h2, .lost_pwd_form h2 {
  color: #666 !important;
  font-weight: 700 !important;
}
.login_submit:hover, #lost_pwd_submit:hover {
  background-color: #666 !important;
}
.search-form .searchform-wrap input:focus, .search-form .searchform-wrap input:active {
  border-color: #ee1d22 !important;
}
.page-content > .search-form .searchform-wrap {
  margin-top: 10px;
}
.page-content > .search-form .searchform-wrap input {
  border-color: #2a2a2a;
}
.page-content > .search-form .searchform-wrap input:focus, .page-content > .search-form .searchform-wrap input:active {
  border-color: #ee1d22;
}
.search #content {
  padding-bottom: 50px;
}
.cms-contact-form .wpcf7-response-output {
  margin-top: 20px !important;
  background-color: #fff !important;
}
.btn, button, .button, input[type="submit"] {
  background-color: #ee1d22;
  font-size: 16px;
  color: #fff;
  text-transform: capitalize;
  padding: 0 20px;
  line-height: 45px;
  -webkit-border-radius: 0;
  -khtml-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 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;
  position: relative;
  overflow: hidden;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  border: none;
}
.btn:hover, button:hover, .button:hover, input[type="submit"]:hover, .btn:focus, button:focus, .button:focus, input[type="submit"]:focus {
  -webkit-box-shadow: none;
  -khtml-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
  outline: medium none;
  text-decoration: none;
  color: #fff;
  background-color: #2a2a2a;
}
.cms-button-icon.cms-align-icon-left i {
  margin-left: 0;
  margin-right: 10px;
}
.btn i {
  margin-left: 8px;
  line-height: 1;
}
.btn i.fas {
  font-family: "font awesome 5 pro";
}
.btn i.space-right {
  margin-left: 0;
  margin-right: 8px;
}
.btn .cms-align-icon-right {
  float: right;
}
.btn .cms-align-icon-right i {
  margin-left: 18px;
  margin-right: 0px;
}
.btn.btn-default {
  z-index: 1;
  overflow: hidden;
  background-color: #ee1d22;
  font-size: 16px;
}
.btn.btn-default:hover, .btn.btn-default:focus {
  background-color: ;
}
.btn.btn-default.hover-white:before {
  background-color: #fff;
}
.btn.btn-default.hover-white:hover, .btn.btn-default.hover-white:focus {
  color: #2a2a2a;
}
.btn.btn-secondary {
  z-index: 1;
  overflow: hidden;
}
.btn.btn-secondary:before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  width: calc(100% + 4px);
  width: -webkit-calc(100% + 4px);
  height: calc(100% + 4px);
  height: -webkit-calc(100% + 4px);
  background-color: #ee1d22;
  transform-origin: right center;
  -webkit-transform-origin: right center;
  -webkit-transform: scale(0, 1);
  -khtml-transform: scale(0, 1);
  -moz-transform: scale(0, 1);
  -ms-transform: scale(0, 1);
  -o-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: transform 0.25s cubic-bezier(0.37, 0.31, 0.2, 0.85);
  -khtml-transition: transform 0.25s cubic-bezier(0.37, 0.31, 0.2, 0.85);
  -moz-transition: transform 0.25s cubic-bezier(0.37, 0.31, 0.2, 0.85);
  -ms-transition: transform 0.25s cubic-bezier(0.37, 0.31, 0.2, 0.85);
  -o-transition: transform 0.25s cubic-bezier(0.37, 0.31, 0.2, 0.85);
  transition: transform 0.25s cubic-bezier(0.37, 0.31, 0.2, 0.85);
  z-index: -1;
}
.btn.btn-secondary:hover, .btn.btn-secondary:focus {
  background-color: #2a2a2a;
}
.btn.btn-secondary:hover:before, .btn.btn-secondary:focus:before {
  transform-origin: left center;
  -webkit-transform-origin: left center;
  -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);
}
.btn.btn-secondary.btn-hover-white:hover {
  color: #2a2a2a;
}
.btn.btn-secondary.btn-hover-white:before {
  background-color: #fff;
}
.btn.btn-small {
  line-height: 40px;
  font-size: 14px;
  padding: 0 15px;
}
.btn.btn-text {
  padding: 0;
  line-height: normal;
  background-color: transparent;
  border: none;
  color: #ee1d22;
  display: inline-flex;
  align-items: center;
}
.btn.btn-text .cms-button-icon {
  position: relative;
  width: 26px;
  height: 26px;
  line-height: 22px;
  text-align: center;
  border-radius: 100%;
  border: 2px solid #ee1d22;
  margin-right: 10px;
  overflow: hidden;
}
.btn.btn-text .cms-button-icon i {
  font-size: 12px;
  color: #fff;
  margin: 0;
}
.btn.btn-text .cms-button-icon.cms-align-icon-right {
  margin-right: 0;
  margin-left: 10px;
}
.btn.btn-text.icon-align-right {
  flex-direction: row-reverse;
}
.btn.btn-text:hover .cms-button-icon i {
  -o-animation: torightfromleft 0.3s forwards;
  -ms-animation: torightfromleft 0.3s forwards;
  -webkit-animation: torightfromleft 0.3s forwards;
  animation: torightfromleft 0.3s forwards;
}
.btn.btn-text.icon-secondary .cms-button-icon i {
  color: #2a2a2a;
}
.btn.btn-text.text-white .cms-button-icon {
  border-color: #2a2a2a;
}
.btn.btn-outline {
  background-color: transparent;
  border: 2px solid #2a2a2a;
  color: #2a2a2a;
  line-height: 41px;
}
.btn.btn-outline:hover, .btn.btn-outline:focus {
  background-color: #ee1d22;
  color: #fff;
  border-color: #ee1d22;
}
.btn.btn-outline-white {
  background-color: transparent;
  border: 2px solid #fff;
  line-height: 41px;
}
.btn.btn-outline-white.icon-align-right {
  text-align: left;
}
.btn.btn-outline-white:hover {
  background-color: #fff;
  color: #2a2a2a;
  border-color: #fff;
}
.btn.btn-outline-more {
  line-height: 41px;
  background-color: transparent;
  border: 2px solid #0e2b5c;
  color: #0e2b5c;
  padding: 0 14px;
}
.btn.btn-outline-more i {
  margin-left: 10px;
  font-size: 14px;
}
.btn.btn-outline-more:hover, .btn.btn-outline-more:focus {
  background-color: #0e2b5c;
  color: #fff;
}
.btn.btn-white {
  background-color: #fff;
  color: #2a2a2a;
}
.btn.btn-white:hover, .btn.btn-white:focus {
  background-color: #ee1d22;
  color: #fff;
}
.btn-align-center {
  text-align: center;
}
.btn-align-right {
  text-align: right;
}
.btn-group .btn + .btn {
  margin-left: 30px;
}
.btn-block {
  display: block;
}
.btn-block .btn {
  width: 100%;
}
.btn-more {
  font-size: 15px;
  color: #2a2a2a;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
}
.btn-more i {
  margin-left: 5px;
  font-size: 15px;
  font-weight: 400;
}
.btn-more:hover {
  color: #ee1d22;
}
.des-slide {
  font-weight: 400 !important;
}
.btn-slide1 {
  font-family: Barlow Condensed !important;
  background-color: #ee1d22;
  text-transform: uppercase;
  border-radius: 5px 50px 5px 5px !important;
  padding: 0 62px 0 50px !important;
  line-height: 64px !important;
  font-size: 20px !important;
  position: relative;
  transition: 0.3s !important;
}
@media screen and (max-width: 575px) {
  .btn-slide1 {
    padding: 0 38px 0 24px !important;
    line-height: 51px !important;
    font-size: 16px !important;
  }
}
.btn-slide1:before {
  position: absolute;
  content: "\f054";
  font-family: 'Font Awesome 5 Pro';
  right: -8px;
  top: 12px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  border: 3px solid #ee1d22;
  width: 40px;
  z-index: 2;
  height: 40px;
  font-size: 13px;
  background-color: #fff;
  color: #ee1d22;
  border-radius: 50px;
  -webkit-transition: 300ms all linear 0ms;
  -khtml-transition: 300ms all linear 0ms;
  -moz-transition: 300ms all linear 0ms;
  -ms-transition: 300ms all linear 0ms;
  -o-transition: 300ms all linear 0ms;
  transition: 300ms all linear 0ms;
  pointer-events: none;
}
@media screen and (max-width: 575px) {
  .btn-slide1:before {
    right: -10px;
    top: 8px;
    width: 35px;
    height: 35px;
  }
}
.btn-slide1:hover {
  background-color: #2a2a2a !important;
}
.btn-slide1:hover:before {
  border-color: #2a2a2a !important;
  color: #2a2a2a !important;
}
rs-bullet:after {
  transition: all 300ms linear 0ms;
  width: 2px;
  height: 10px;
  background-color: #ff7e00;
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
}
.tp-bullets rs-bullet:after {
  transition: all 300ms linear 0ms;
  width: 2px;
  height: 10px;
  background-color: #ff7e00;
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
}
.tp-bullets.custom .tp-bullet {
  position: relative !important;
  width: 7px !important;
  height: 7px !important;
  border-radius: 250px !important;
  background-color: #666 !important;
  z-index: 1;
}
.tp-bullets.custom .tp-bullet.selected {
  z-index: 0;
  transform: scale(6.7) !important;
  border-radius: 50% !important;
  background-color: #ee1d22 !important;
  margin-bottom: 19px !important;
  margin-top: 19px !important;
}
.btn-video-slide {
  position: relative;
  height: 70px;
  width: 70px;
  display: block;
}
.btn-video-slide:before {
  position: absolute;
  content: '';
  width: auto;
  height: auto;
  border-radius: 50px;
  border: 1px dashed #ee1d22;
  top: 8px;
  left: 8px;
  bottom: 8px;
  right: 8px;
}
.btn-video-slide:hover:before {
  -webkit-animation: spinAround linear 8s infinite;
  -khtml-animation: spinAround linear 8s infinite;
  -moz-animation: spinAround linear 8s infinite;
  -ms-animation: spinAround linear 8s infinite;
  -o-animation: spinAround linear 8s infinite;
  animation: spinAround linear 8s infinite;
}
.uranus .tp-bullet {
  display: none !important;
  width: 7px !important;
  height: 7px !important;
  background-color: #fff;
}
.site-header {
  position: relative;
}
#site-header-wrap {
  position: relative;
  z-index: 999;
}
#site-header-wrap .row {
  align-items: center;
  justify-content: space-between;
}
#site-header-wrap .site-branding, #site-header-wrap .item-branding-topbar {
  position: relative;
  margin-left: 10px;
  display: flex;
  align-items: center;
}
@media (max-width: 1200px) {
  #site-header-wrap .site-branding, #site-header-wrap .item-branding-topbar {
    margin-left: 0px;
  }
}
#site-header-wrap .site-branding img, #site-header-wrap .item-branding-topbar img {
  max-height: 40px;
  max-width: inherit;
}
@media screen and (max-width: 767px) {
  #site-header-wrap .site-branding img, #site-header-wrap .item-branding-topbar img {
    max-height: 40px !important;
  }
}
#site-header-wrap .site-branding .logo-light, #site-header-wrap .item-branding-topbar .logo-light {
  opacity: 1;
}
@media screen and (max-width: 1199px) {
  #site-header-wrap .site-branding .logo-light, #site-header-wrap .item-branding-topbar .logo-light {
    opacity: 0;
  }
}
#site-header-wrap .site-branding .logo-dark, #site-header-wrap .item-branding-topbar .logo-dark {
  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;
}
#site-header-wrap .site-branding .logo-mobile, #site-header-wrap .item-branding-topbar .logo-mobile {
  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%);
}
@media screen and (min-width: 1200px) {
  #site-header-wrap .site-branding .logo-mobile, #site-header-wrap .item-branding-topbar .logo-mobile {
    opacity: 0;
  }
}
#site-header-wrap #site-header {
  position: relative;
}
#site-header-wrap #site-header.h-fixed {
  background-color: #fff;
  position: fixed;
}
#site-header-wrap #site-header.h-fixed .site-branding .logo-light {
  opacity: 0;
}
#site-header-wrap #site-header.h-fixed .site-branding .logo-dark {
  opacity: 1;
}
#site-header-wrap #site-header.h-fixed .site-topbar {
  display: none;
}
#site-header-wrap .site-header-cart {
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 450px) {
  #site-header-wrap .site-header-cart {
    display: none !important;
  }
}
#site-header-wrap .site-header-cart .widget_cart_counter_header {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  background-color: #ee1d22;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  top: 1px;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  width: 21px;
  height: 21px;
  right: -11px;
  opacity: 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;
}
@media screen and (max-width: 575px) {
  #site-header-wrap .site-header-cart {
    display: none;
  }
}
#site-header-wrap .site-header-right {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-left: 15px;
}
#site-header-wrap .site-header-right .site-header-item + .site-header-item {
  margin-left: 18px;
}
@media screen and (max-width: 1199px) {
  #site-header-wrap .site-header-right {
    display: none;
  }
}
#site-header-wrap .btn-search-mobile, #site-header-wrap .site-button-mobile {
  display: none;
}
#site-header-wrap .site-header-search {
  position: relative;
}
#site-header-wrap .site-header-search span {
  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;
  line-height: 60px;
  color: #2a2a2a;
  font-size: 15px;
  text-align: center;
}
#site-header-wrap .site-header-search #search_open {
  line-height: 1;
  position: absolute;
  width: 250px;
  top: 100%;
  padding: 20px;
  font-size: 16px;
  display: inline-block;
  border-top: 2px solid #ee1d22;
  -webkit-box-shadow: 0px 3px 17px -2px rgba(0, 0, 0, 0.15);
  -khtml-box-shadow: 0px 3px 17px -2px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 3px 17px -2px rgba(0, 0, 0, 0.15);
  -ms-box-shadow: 0px 3px 17px -2px rgba(0, 0, 0, 0.15);
  -o-box-shadow: 0px 3px 17px -2px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 3px 17px -2px rgba(0, 0, 0, 0.15);
  background-color: #fff;
  display: none;
  z-index: 1000;
  right: -20px;
}
#site-header-wrap .site-header-search #search_open .searchform-wrap {
  position: relative;
  border: 1px solid #e1e1e1;
}
#site-header-wrap .site-header-search #search_open .search-field {
  color: #2a2a2a;
  width: calc(100% - 45px);
  padding: 0px 10px;
  height: 45px;
  border: none;
}
#site-header-wrap .site-header-search #search_open .search-field:focus {
  border-color: #ee1d22;
}
#site-header-wrap .site-header-search #search_open .search-submit {
  background-color: #fff;
  position: absolute;
  top: 0;
  right: 0;
  width: 45px;
  height: 45px;
  border: none;
  color: #ee1d22;
  text-align: center;
  padding: 0px;
  -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 (max-width: 1199px) {
  #site-header-wrap {
    position: relative;
    background-color: #fff;
  }
  #site-header-wrap #main-menu-mobile {
    align-items: center;
    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%);
    display: flex;
    text-align: center;
  }
  #site-header-wrap #headroom {
    position: static !important;
  }
}
@media screen and (min-width: 1200px) {
  .sub-menu > li > a {
    font-weight: 400;
  }
}
#site-header {
  -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;
}
#site-header.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);
}
.admin-bar #site-header-wrap #site-header.h-fixed {
  top: 32px;
}
@media screen and (max-width: 782px) {
  .admin-bar #site-header-wrap #site-header.h-fixed {
    top: 46px;
  }
}
@media screen and (max-width: 600px) {
  .admin-bar #site-header-wrap #site-header.h-fixed {
    top: 0;
    position: unset;
  }
}
.header-layout-1 .current-menu-parent > a, .header-layout-3 .current-menu-parent > a, .header-layout-1 .current-menu-item > a, .header-layout-3 .current-menu-item > a {
  color: #ee1d22 !important;
}
.header-layout-1 .h-fixed .current-menu-parent > a, .header-layout-3 .h-fixed .current-menu-parent > a {
  color: #ee1d22 !important;
}
.header-layout-1 .site-topbar, .header-layout-3 .site-topbar {
  background-color: #ee1d22;
  position: relative;
}
.header-layout-1 .site-topbar:before, .header-layout-3 .site-topbar:before {
  position: absolute;
  content: "";
  background-color: #ee1d22;
  height: 55px;
  width: 100%;
  top: 100%;
  left: 0;
}
@media screen and (max-width: 1199px) {
  .header-layout-1 .site-topbar:before, .header-layout-3 .site-topbar:before {
    display: none;
  }
}
.header-layout-1 .site-topbar .inner-container, .header-layout-3 .site-topbar .inner-container {
  margin: 0;
}
@media screen and (max-width: 991px) {
  .header-layout-1 .site-topbar .inner-container, .header-layout-3 .site-topbar .inner-container {
    padding: 10px 0;
  }
}
@media screen and (max-width: 575px) {
  .header-layout-1 .site-topbar .inner-container .topbar-left, .header-layout-3 .site-topbar .inner-container .topbar-left {
    justify-content: center !important;
  }
  .header-layout-1 .site-topbar .inner-container .topbar-left .item-email, .header-layout-3 .site-topbar .inner-container .topbar-left .item-email {
    display: none !important;
  }
}
.header-layout-1 .site-topbar .inner-container .topbar-left, .header-layout-3 .site-topbar .inner-container .topbar-left {
  display: flex;
}
@media screen and (max-width: 991px) {
  .header-layout-1 .site-topbar .inner-container .topbar-left, .header-layout-3 .site-topbar .inner-container .topbar-left {
    justify-content: space-between;
    width: 100%;
  }
}
.header-layout-1 .site-topbar .inner-container .topbar-left .item-email i, .header-layout-3 .site-topbar .inner-container .topbar-left .item-email i, .header-layout-1 .site-topbar .inner-container .topbar-left .item-phone i, .header-layout-3 .site-topbar .inner-container .topbar-left .item-phone i {
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  text-align: center;
  background-color: #fff;
  justify-content: center;
  border-radius: 20px 5px 5px 5px;
  font-size: 20px;
  width: 40px;
  height: 40px;
  color: #3a3a3a;
  -webkit-transition: 300ms all linear 0ms;
  -khtml-transition: 300ms all linear 0ms;
  -moz-transition: 300ms all linear 0ms;
  -ms-transition: 300ms all linear 0ms;
  -o-transition: 300ms all linear 0ms;
  transition: 300ms all linear 0ms;
}
.header-layout-1 .site-topbar .inner-container .topbar-left .item-email a, .header-layout-3 .site-topbar .inner-container .topbar-left .item-email a, .header-layout-1 .site-topbar .inner-container .topbar-left .item-phone a, .header-layout-3 .site-topbar .inner-container .topbar-left .item-phone a {
  font-family: Poppins;
  color: #fff;
  font-weight: 400;
  font-size: 16px;
}
.header-layout-1 .site-topbar .inner-container .topbar-left .item-email.space-item, .header-layout-3 .site-topbar .inner-container .topbar-left .item-email.space-item, .header-layout-1 .site-topbar .inner-container .topbar-left .item-phone.space-item, .header-layout-3 .site-topbar .inner-container .topbar-left .item-phone.space-item {
  padding-right: 37px;
}
.header-layout-1 .site-topbar .inner-container .topbar-left .item-email:hover i:before, .header-layout-3 .site-topbar .inner-container .topbar-left .item-email:hover i:before, .header-layout-1 .site-topbar .inner-container .topbar-left .item-phone:hover i:before, .header-layout-3 .site-topbar .inner-container .topbar-left .item-phone:hover i:before {
  -webkit-animation: iconbounce 1s;
  -khtml-animation: iconbounce 1s;
  -moz-animation: iconbounce 1s;
  -ms-animation: iconbounce 1s;
  -o-animation: iconbounce 1s;
  animation: iconbounce 1s;
}
.header-layout-1 .site-topbar .inner-container .topbar-social, .header-layout-3 .site-topbar .inner-container .topbar-social {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 991px) {
  .header-layout-1 .site-topbar .inner-container .topbar-social, .header-layout-3 .site-topbar .inner-container .topbar-social {
    display: none;
  }
}
.header-layout-1 .site-topbar .inner-container .topbar-social .item-socials a, .header-layout-3 .site-topbar .inner-container .topbar-social .item-socials a {
  color: #fff;
  font-size: 24px;
  padding: 0 18px;
  position: relative;
}
.header-layout-1 .site-topbar .inner-container .topbar-social .item-socials a:before, .header-layout-3 .site-topbar .inner-container .topbar-social .item-socials a:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 14px;
  right: 0;
  top: 8px;
  background-color: #fff;
  opacity: 0.6;
}
.header-layout-1 .site-topbar .inner-container .topbar-social .item-socials a:last-child:before, .header-layout-3 .site-topbar .inner-container .topbar-social .item-socials a:last-child:before {
  position: relative;
}
.header-layout-1 .site-topbar .inner-container .topbar-social .item-address i, .header-layout-3 .site-topbar .inner-container .topbar-social .item-address i {
  font-size: 21px;
  padding-right: 8px;
}
.header-layout-1 .site-topbar .inner-container .topbar-social .item-address a, .header-layout-3 .site-topbar .inner-container .topbar-social .item-address a {
  display: inline-flex;
  align-items: center;
  text-align: center;
  background-color: #fff;
  justify-content: center;
  line-height: 70px;
  font-weight: 700;
  font-size: 18px;
  color: #202020;
  width: 239px;
  -webkit-transition: 300ms all linear 0ms;
  -khtml-transition: 300ms all linear 0ms;
  -moz-transition: 300ms all linear 0ms;
  -ms-transition: 300ms all linear 0ms;
  -o-transition: 300ms all linear 0ms;
  transition: 300ms all linear 0ms;
}
.header-layout-1 .site-topbar .inner-container .topbar-social .item-address a:hover, .header-layout-3 .site-topbar .inner-container .topbar-social .item-address a:hover {
  background-color: #2a2a2a;
  color: #fff;
}
.header-layout-1 .site-header-main, .header-layout-3 .site-header-main {
  position: absolute !important;
  width: 100%;
}
@media screen and (max-width: 1199px) {
  .header-layout-1 .site-header-main, .header-layout-3 .site-header-main {
    background-color: #252525;
  }
}
@media screen and (max-width: 1199px) {
  .header-layout-1 .site-header-main .wrap-header, .header-layout-3 .site-header-main .wrap-header {
    padding: 15px 0 !important;
  }
}
.header-layout-1 .site-header-main.h-fixed, .header-layout-3 .site-header-main.h-fixed {
  background-color: #252525 !important;
  position: fixed !important;
}
.header-layout-1 .site-header-main.h-fixed .wrap-header .site-navigation .primary-menu > li > a, .header-layout-3 .site-header-main.h-fixed .wrap-header .site-navigation .primary-menu > li > a {
  line-height: 70px;
}
@media screen and (max-width: 1199px) {
  .header-layout-1 .site-header-main.h-fixed .wrap-header .site-navigation .primary-menu > li > a, .header-layout-3 .site-header-main.h-fixed .wrap-header .site-navigation .primary-menu > li > a {
    line-height: 25px;
  }
}
.header-layout-1 .site-header-main.h-fixed .site-header-button:before, .header-layout-3 .site-header-main.h-fixed .site-header-button:before {
  position: relative !important;
}
.header-layout-1 .site-header-main.h-fixed .site-header-button a, .header-layout-3 .site-header-main.h-fixed .site-header-button a {
  line-height: 70px !important;
}
.header-layout-1 .site-header-main.h-fixed .site-header-button a:hover, .header-layout-3 .site-header-main.h-fixed .site-header-button a:hover {
  color: #ee1d22 !important;
  background-color: #fff !important;
}
.header-layout-1 .site-header-main .custom-before, .header-layout-3 .site-header-main .custom-before {
  position: relative;
}
.header-layout-1 .site-header-main .custom-before:before, .header-layout-3 .site-header-main .custom-before:before {
  position: absolute;
  content: "";
  width: 64px;
  height: 100%;
  top: 0;
  left: -49px;
  background-color: #252525;
}
.header-layout-1 .site-header-main .custom-before:after, .header-layout-3 .site-header-main .custom-before:after {
  position: absolute;
  content: "";
  width: 64px;
  height: 100%;
  top: 0;
  right: -49px;
  background-color: #252525;
}
.header-layout-1 .site-header-main .wrap-header, .header-layout-3 .site-header-main .wrap-header {
  background-color: #252525;
  display: flex;
  justify-content: space-between;
}
.header-layout-1 .site-header-main .wrap-header-right, .header-layout-3 .site-header-main .wrap-header-right {
  margin-right: -1px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1199px) {
  .header-layout-1 .site-header-main .wrap-header-right, .header-layout-3 .site-header-main .wrap-header-right {
    display: none;
  }
}
.header-layout-1 .site-header-main .wrap-header-right .site-header-cart, .header-layout-3 .site-header-main .wrap-header-right .site-header-cart {
  margin-right: 20px;
}
.header-layout-1 .site-header-main .wrap-header-right .site-header-cart i, .header-layout-3 .site-header-main .wrap-header-right .site-header-cart i {
  font-size: 24px;
  color: #fff;
}
.header-layout-1 .site-header-main .wrap-header-right .site-header-button, .header-layout-3 .site-header-main .wrap-header-right .site-header-button {
  position: relative;
}
.header-layout-1 .site-header-main .wrap-header-right .site-header-button:before, .header-layout-3 .site-header-main .wrap-header-right .site-header-button:before {
  position: absolute;
  content: "";
  background-color: #fff;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 10px;
}
.header-layout-1 .site-header-main .wrap-header-right .site-header-button a, .header-layout-3 .site-header-main .wrap-header-right .site-header-button a {
  display: inline-flex;
  align-items: center;
  text-align: center;
  background-color: #da0d12;
  justify-content: center;
  line-height: 110px;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  width: 239px;
  -webkit-transition: 300ms all linear 0ms;
  -khtml-transition: 300ms all linear 0ms;
  -moz-transition: 300ms all linear 0ms;
  -ms-transition: 300ms all linear 0ms;
  -o-transition: 300ms all linear 0ms;
  transition: 300ms all linear 0ms;
}
.header-layout-1 .site-header-main .wrap-header-right .site-header-button a:hover, .header-layout-3 .site-header-main .wrap-header-right .site-header-button a:hover {
  background-color: #252525;
}
@-moz-document url-prefix() {
  .header-layout-1 .site-header-main .wrap-header-right .site-header-button a, .header-layout-3 .site-header-main .wrap-header-right .site-header-button a {
    width: 240px;
  }
}
@media screen and (min-width: 1200px) {
  .header-layout-1 .container-custom, .header-layout-3 .container-custom {
    max-width: 1735px !important;
  }
}
@media screen and (min-width: 1200px) {
  .header-layout-1 #main-menu-mobile, .header-layout-3 #main-menu-mobile {
    display: none !important;
  }
}
.header-layout-3 {
  position: absolute !important;
  width: 100%;
}
.header-layout-3 .site-topbar {
  background-color: transparent;
}
.header-layout-3 .site-topbar:before {
  background-color: transparent;
}
.header-layout-3 .wrap-header .site-branding {
  margin-left: 0 !important;
}
.header-layout-3 .wrap-header .site-branding img {
  max-height: 37px !important;
}
.header-layout-3 .custom-before:before {
  background-color: #ee1d22 !important;
  border-radius: 80px 0 0 10px;
  left: -83px !important;
  width: 10000px !important;
}
.header-layout-3 .custom-before:after {
  display: none !important;
}
.header-layout-3 .h-fixed .custom-before:before {
  position: relative !important;
}
.header-layout-2 {
  position: absolute !important;
  left: 0;
  top: 0;
  width: 100%;
}
.header-layout-2 img {
  max-height: 40px !important;
}
@media screen and (max-width: 779px) {
  .header-layout-2 {
    position: relative !important;
  }
}
.header-layout-2 .site-header-search span {
  line-height: 100px !important;
  width: 78px;
  background-color: #f9f9f9;
  text-align: center;
}
.header-layout-2 .site-header-search span i {
  -webkit-transition: 300ms all linear 0ms;
  -khtml-transition: 300ms all linear 0ms;
  -moz-transition: 300ms all linear 0ms;
  -ms-transition: 300ms all linear 0ms;
  -o-transition: 300ms all linear 0ms;
  transition: 300ms all linear 0ms;
  font-weight: 800;
}
.header-layout-2 .site-header-search:hover span {
  background-color: #ee1d22;
}
.header-layout-2 .site-header-search:hover span i {
  color: #fff;
}
@media screen and (max-width: 1199px) {
  .header-layout-2 .site-header-search {
    display: none;
  }
}
.header-layout-2 #site-header {
  margin-top: -23px;
}
@media screen and (max-width: 1199px) {
  .header-layout-2 #site-header {
    margin-top: 0px;
  }
}
.header-layout-2 .site-topbar {
  z-index: 2;
}
.header-layout-2 .site-topbar .site-header-button {
  padding-left: 39px;
}
.header-layout-2 .site-topbar .site-header-button:before {
  position: relative !important;
}
.header-layout-2 .site-topbar .site-header-button a {
  line-height: 73px !important;
  font-weight: 700;
  font-size: 18px;
  padding: 0 39px;
  border-radius: 5px 70px 5px 5px;
}
.header-layout-2 .site-topbar .site-header-button a:hover {
  color: #ee1d22 !important;
  background-color: #fff !important;
}
.header-layout-2 .site-topbar .inner-container {
  justify-content: flex-end !important;
}
.header-layout-2 .site-topbar .inner-container {
  margin: 0;
}
@media screen and (max-width: 991px) {
  .header-layout-2 .site-topbar .inner-container {
    padding: 10px 0;
  }
  .header-layout-2 .site-topbar .inner-container .wrap-header-right {
    display: none;
  }
}
@media screen and (max-width: 575px) {
  .header-layout-2 .site-topbar .inner-container .topbar-left {
    justify-content: center !important;
  }
  .header-layout-2 .site-topbar .inner-container .topbar-left .item-email {
    display: none !important;
  }
}
.header-layout-2 .site-topbar .inner-container .topbar-left {
  display: flex;
}
@media screen and (max-width: 991px) {
  .header-layout-2 .site-topbar .inner-container .topbar-left {
    justify-content: space-between;
    width: 100%;
  }
}
.header-layout-2 .site-topbar .inner-container .topbar-left .item-email i, .header-layout-2 .site-topbar .inner-container .topbar-left .item-phone i {
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  text-align: center;
  background-color: #ee1d22;
  justify-content: center;
  border-radius: 20px 5px 5px 5px;
  font-size: 20px;
  width: 40px;
  height: 40px;
  color: #fff;
  -webkit-transition: 300ms all linear 0ms;
  -khtml-transition: 300ms all linear 0ms;
  -moz-transition: 300ms all linear 0ms;
  -ms-transition: 300ms all linear 0ms;
  -o-transition: 300ms all linear 0ms;
  transition: 300ms all linear 0ms;
}
.header-layout-2 .site-topbar .inner-container .topbar-left .item-email a, .header-layout-2 .site-topbar .inner-container .topbar-left .item-phone a {
  font-family: Poppins;
  color: #666;
  font-weight: 400;
  font-size: 16px;
}
.header-layout-2 .site-topbar .inner-container .topbar-left .item-email.space-item, .header-layout-2 .site-topbar .inner-container .topbar-left .item-phone.space-item {
  padding-right: 37px;
}
.header-layout-2 .site-topbar .inner-container .topbar-left .item-email:hover i:before, .header-layout-2 .site-topbar .inner-container .topbar-left .item-phone:hover i:before {
  -webkit-animation: iconbounce 1s;
  -khtml-animation: iconbounce 1s;
  -moz-animation: iconbounce 1s;
  -ms-animation: iconbounce 1s;
  -o-animation: iconbounce 1s;
  animation: iconbounce 1s;
}
.header-layout-2 .site-topbar .inner-container .topbar-social {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 991px) {
  .header-layout-2 .site-topbar .inner-container .topbar-social {
    display: none;
  }
}
.header-layout-2 .site-topbar .inner-container .topbar-social .item-socials a {
  color: #fff;
  font-size: 24px;
  padding: 0 18px;
  position: relative;
}
.header-layout-2 .site-topbar .inner-container .topbar-social .item-socials a:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 14px;
  right: 0;
  top: 8px;
  background-color: #fff;
  opacity: 0.6;
}
.header-layout-2 .site-topbar .inner-container .topbar-social .item-socials a:last-child:before {
  position: relative;
}
.header-layout-2 .site-topbar .inner-container .topbar-social .item-address i {
  font-size: 21px;
  padding-right: 8px;
}
.header-layout-2 .site-topbar .inner-container .topbar-social .item-address a {
  display: inline-flex;
  align-items: center;
  text-align: center;
  background-color: #fff;
  justify-content: center;
  line-height: 70px;
  font-weight: 700;
  font-size: 18px;
  color: #202020;
  width: 239px;
  -webkit-transition: 300ms all linear 0ms;
  -khtml-transition: 300ms all linear 0ms;
  -moz-transition: 300ms all linear 0ms;
  -ms-transition: 300ms all linear 0ms;
  -o-transition: 300ms all linear 0ms;
  transition: 300ms all linear 0ms;
}
.header-layout-2 .site-topbar .inner-container .topbar-social .item-address a:hover {
  background-color: #2a2a2a;
  color: #fff;
}
.header-layout-2 .site-header-main {
  z-index: -1;
}
@media screen and (max-width: 1199px) {
  .header-layout-2 .site-header-main {
    background-color: #252525;
  }
}
@media screen and (max-width: 1199px) {
  .header-layout-2 .site-header-main .wrap-header {
    padding: 15px 0 !important;
  }
}
.header-layout-2 .site-header-main .wrap-header {
  align-items: center;
}
.header-layout-2 .site-header-main .wrap-header .site-branding {
  margin: 0 !important;
}
.header-layout-2 .site-header-main .wrap-header .site-branding a {
  line-height: 146px;
}
@media screen and (max-width: 1199px) {
  .header-layout-2 .site-header-main .wrap-header .site-branding a {
    line-height: 50px;
  }
}
.header-layout-2 .site-header-main .wrap-header .site-branding:after {
  position: absolute;
  content: '';
  top: 0;
  right: -122px;
  background-color: #ee1d22;
  height: 100%;
  width: 100000px;
  border-radius: 0 70px 5px 0;
  z-index: -1;
}
@media screen and (max-width: 1199px) {
  .header-layout-2 .site-header-main .wrap-header .site-branding:after {
    display: none;
  }
}
.header-layout-2 .site-header-main .wrap-header .site-branding:before {
  z-index: -1;
  position: absolute;
  content: '';
  top: 0;
  right: -144px;
  background-color: #f0585b;
  height: 100%;
  width: 100000px;
  border-radius: 0 70px 5px 0;
}
@media screen and (max-width: 1199px) {
  .header-layout-2 .site-header-main .wrap-header .site-branding:before {
    display: none;
  }
}
.header-layout-2 .site-header-main .wrap-header .site-header-holder .site-navigation {
  position: relative;
}
@media screen and (max-width: 1199px) {
  .header-layout-2 .site-header-main .wrap-header .site-header-holder .site-navigation {
    position: absolute;
  }
}
@media screen and (min-width: 1200px) {
  .header-layout-2 .site-header-main .wrap-header .site-header-holder .site-navigation {
    margin-left: -48px;
  }
}
.header-layout-2 .site-header-main .wrap-header .site-header-holder .site-navigation:before {
  z-index: -1;
  position: absolute;
  content: '';
  top: 0;
  left: -106px;
  background-color: #fff;
  height: 100%;
  width: 100000px;
  border-radius: 70px 5px 5px 5px;
}
@media screen and (max-width: 1199px) {
  .header-layout-2 .site-header-main .wrap-header .site-header-holder .site-navigation:before {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  .header-layout-2 .site-header-main .wrap-header .site-header-holder .main-navigation {
    margin-left: -48px;
  }
}
.header-layout-2 .site-header-main .wrap-header .site-header-holder .main-navigation .primary-menu > li:before {
  position: absolute;
  content: '';
  width: 1px;
  height: 24px;
  background-color: #cbcbcb;
  left: 0;
  top: 40%;
  opacity: 1;
}
@media screen and (max-width: 1199px) {
  .header-layout-2 .site-header-main .wrap-header .site-header-holder .main-navigation .primary-menu > li:before {
    display: none;
  }
}
.header-layout-2 .site-header-main .wrap-header .site-header-holder .main-navigation .primary-menu > li:first-child:before {
  opacity: 0;
}
.header-layout-2 .site-header-main .wrap-header .site-header-holder .main-navigation .primary-menu > li > a {
  color: #2a2a2a;
  line-height: 100px;
}
@media screen and (max-width: 1199px) {
  .header-layout-2 .site-header-main .wrap-header .site-header-holder .main-navigation .primary-menu > li > a {
    line-height: 30px !important;
    color: #2a2a2a !important;
  }
}
@media screen and (min-width: 1200px) {
  .header-layout-2 .site-header-main .wrap-header .site-header-holder .main-navigation .primary-menu > li:first-child > a {
    color: #fff !important;
  }
}
@media screen and (max-width: 1199px) {
  .header-layout-2 .site-header-main .wrap-header .site-header-holder .main-navigation .primary-menu > li:first-child > a {
    color: #2a2a2a;
  }
}
.header-layout-2 .site-header-main .wrap-header .site-header-holder .main-navigation .primary-menu > li:first-child > a:before {
  position: absolute;
  text-align: center;
  content: '\f015';
  font-family: 'Font Awesome 5 Pro';
  top: 50%;
  color: #2a2a2a;
  left: 50%;
  font-size: 20px;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 1199px) {
  .header-layout-2 .site-header-main .wrap-header .site-header-holder .main-navigation .primary-menu > li:first-child > a:before {
    opacity: 0;
  }
}
@media screen and (max-width: 1199px) {
  .header-layout-2 .site-header-main .wrap-header .site-header-holder .main-navigation .primary-menu > li:first-child > a {
    line-height: 30px;
  }
}
.header-layout-2 .site-header-main .wrap-header .site-header-holder .main-navigation .primary-menu > li:first-child > a i {
  font-size: 20px;
  line-height: 100px;
}
@media screen and (max-width: 1199px) {
  .header-layout-2 .site-header-main .wrap-header .site-header-holder .main-navigation .primary-menu > li:first-child > a i {
    line-height: 30px;
  }
}
.header-layout-2 .site-header-main.h-fixed {
  background-color: #252525 !important;
  position: fixed !important;
}
.header-layout-2 .site-header-main.h-fixed .wrap-header {
  padding: 0 !important;
}
.header-layout-2 .site-header-main.h-fixed .wrap-header .primary-menu > li:first-child > a:before {
  display: none;
}
.header-layout-2 .site-header-main.h-fixed .wrap-header .primary-menu > li:before {
  display: none;
}
.header-layout-2 .site-header-main.h-fixed .site-header-search span {
  line-height: 80px !important;
}
.header-layout-2 .site-header-main .wrap-header {
  display: flex;
  justify-content: space-between;
}
.header-layout-2 .site-header-main .wrap-header-right {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1199px) {
  .header-layout-2 .site-header-main .wrap-header-right {
    display: none;
  }
}
.header-layout-2 .site-header-main .wrap-header-right .site-header-cart {
  margin-right: 20px;
}
.header-layout-2 .site-header-main .wrap-header-right .site-header-cart i {
  font-size: 24px;
  color: #fff;
}
.header-layout-2 .site-header-main .wrap-header-right .site-header-button {
  position: relative;
}
.header-layout-2 .site-header-main .wrap-header-right .site-header-button:before {
  position: absolute;
  content: "";
  background-color: #fff;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 10px;
}
.header-layout-2 .site-header-main .wrap-header-right .site-header-button a {
  display: inline-flex;
  align-items: center;
  text-align: center;
  background-color: #da0d12;
  justify-content: center;
  line-height: 110px;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  width: 239px;
  -webkit-transition: 300ms all linear 0ms;
  -khtml-transition: 300ms all linear 0ms;
  -moz-transition: 300ms all linear 0ms;
  -ms-transition: 300ms all linear 0ms;
  -o-transition: 300ms all linear 0ms;
  transition: 300ms all linear 0ms;
}
.header-layout-2 .site-header-main .wrap-header-right .site-header-button a:hover {
  background-color: #252525;
}
@-moz-document url-prefix() {
  .header-layout-2 .site-header-main .wrap-header-right .site-header-button a {
    width: 240px;
  }
}
@media screen and (min-width: 1200px) {
  .header-layout-2 .container-custom {
    max-width: 1735px !important;
  }
}
@media screen and (min-width: 1200px) {
  .header-layout-2 #main-menu-mobile {
    display: none !important;
  }
}
.header-layout-2 .h-fixed .wrap-header img {
  max-height: 45px !important;
}
.header-layout-2 .h-fixed .wrap-header a {
  line-height: 80px !important;
}
@media screen and (min-width: 1200px) {
  .header-layout-2 .h-fixed .wrap-header .site-navigation .primary-menu > li > a {
    line-height: 70px;
  }
  .header-layout-2 .h-fixed .wrap-header .site-navigation .primary-menu > li:first-child:before {
    position: relative;
  }
}
.header-layout-2 .h-fixed .primary-menu > li > a {
  line-height: 80px !important;
  color: #fff !important;
}
.header-layout-2 .h-fixed .primary-menu > li > a i {
  line-height: 80px !important;
  color: #fff !important;
}
.header-layout-2 .h-fixed .site-navigation:before, .header-layout-2 .h-fixed .site-navigation:after {
  display: none !important;
}
.header-layout-2 .h-fixed .site-branding:before, .header-layout-2 .h-fixed .site-branding:after {
  display: none !important;
}
.header-layout-2 .h-fixed .sub-menu > li > a {
  line-height: 30px !important;
}
@media (max-width: 1240px) {
  .header-layout-1 .custom-before:after, .header-layout-1 .custom-before:before {
    position: relative !important;
  }
}
.header-layout-3 {
  background-color: transparent !important;
}
@media (min-width: 1200px) {
  .header-layout-3 .primary-menu > li {
    position: relative;
  }
  .header-layout-3 .primary-menu > li:before {
    position: absolute;
    content: '';
    width: auto;
    height: 3px;
    background-color: #fff;
    top: 0%;
    left: 50%;
    right: 50%;
    transition: 0.3s;
    pointer-events: none;
  }
  .header-layout-3 .primary-menu > li:after {
    pointer-events: none;
    transition: 0.3s;
    position: absolute;
    content: '';
    width: 100% !important;
    height: 100%;
    background-color: #fff;
    bottom: 0;
    opacity: 0;
    left: 0 !important;
  }
  .header-layout-3 .primary-menu > li:hover:before {
    left: 0;
    right: 0;
  }
  .header-layout-3 .primary-menu > li:hover:after {
    opacity: 0.2;
  }
}
.header-layout-3 .current-menu-parent > a {
  color: #fff !important;
}
@media (min-width: 1200px) {
  .header-layout-3 .current-menu-parent {
    position: relative;
  }
  .header-layout-3 .current-menu-parent:before {
    position: absolute;
    content: '';
    width: 100% !important;
    height: 4px;
    background-color: #fff;
    bottom: 0;
    left: 0 !important;
  }
  .header-layout-3 .current-menu-parent:after {
    position: absolute;
    content: '';
    width: 100% !important;
    height: 100%;
    background-color: #fff;
    bottom: 0;
    opacity: 0.2 !important;
    left: 0 !important;
  }
}
.header-layout-3 .h-fixed .current-menu-parent > a {
  color: #ee1d22 !important;
}
@media (max-width: 1200px) {
  .header-layout-3 {
    background-color: #252525 !important;
    position: relative !important;
  }
  .header-layout-3 .custom-before:after, .header-layout-3 .custom-before:before {
    position: relative !important;
  }
}
ul.menu {
  list-style: none;
  margin: 0;
}
ul.menu ul {
  list-style: none;
  margin: 0;
}
@media screen and (min-width: 1200px) {
  .menu-toggle {
    display: none;
  }
  .main-navigation ul {
    display: block;
  }
  .primary-menu {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .primary-menu.primary-menu-pages {
    margin-right: 23px;
  }
  .primary-menu li {
    position: relative;
    list-style: none;
  }
  .primary-menu li a {
    cursor: pointer;
    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;
    float: left;
    position: relative;
    padding-left: 20px;
    padding-right: 20px;
  }
  .primary-menu > li.current-menu-ancestor a:before, .primary-menu > li.current-menu-parent a:before {
    width: 100%;
  }
  .primary-menu > li > a {
    font-size: 20px;
    color: #fff;
    font-weight: 600;
    line-height: 110px;
    font-family: Barlow Condensed;
    position: relative;
  }
  .primary-menu > li:last-child:before {
    opacity: 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 > ul.back {
    right: 0 !important;
    left: auto !important;
  }
  .primary-menu > li:hover > a li > ul.back, .primary-menu > li.current_page_item > a li > ul.back, .primary-menu > li.current-menu-item > a li > ul.back, .primary-menu > li.current_page_ancestor > a li > ul.back, .primary-menu > li > ul.back li > ul.back {
    right: 100% !important;
    left: auto !important;
  }
  .primary-menu > li > .sub-menu li > ul.back, .primary-menu > li > .children li > ul.back {
    right: 100% !important;
    left: auto !important;
  }
  .primary-menu .sub-menu, .primary-menu .children {
    border-bottom: 3px solid #ee1d22;
    list-style: none;
    margin: 0;
  }
  .primary-menu .sub-menu .sub-menu {
    top: -15px;
  }
  .primary-menu .sub-menu, .primary-menu .children {
    position: absolute;
    background: #fff;
    padding: 18px 0;
    top: 100%;
    left: 0;
    margin-top: 0;
    min-width: 250px;
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    -webkit-box-shadow: 0 8px 83px rgba(40, 40, 40, 0.08);
    -khtml-box-shadow: 0 8px 83px rgba(40, 40, 40, 0.08);
    -moz-box-shadow: 0 8px 83px rgba(40, 40, 40, 0.08);
    -ms-box-shadow: 0 8px 83px rgba(40, 40, 40, 0.08);
    -o-box-shadow: 0 8px 83px rgba(40, 40, 40, 0.08);
    box-shadow: 0 8px 83px rgba(40, 40, 40, 0.08);
    -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;
    clip: rect(1px, 1px, 1px, 1px);
  }
  .primary-menu .sub-menu li, .primary-menu .children li {
    padding: 0 20px;
  }
  .primary-menu .sub-menu li a, .primary-menu .children li a {
    color: #737373;
    font-size: 14px;
    font-family: Poppins;
    line-height: normal;
    padding: 9px 0;
    position: relative;
    border-bottom: 1px solid #eaeaea;
  }
  .primary-menu .sub-menu li a:after, .primary-menu .children li a:after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    bottom: -1px;
    width: 0%;
    background-color: red;
    height: 1px;
    -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;
  }
  .primary-menu .sub-menu li:last-child > a, .primary-menu .children li:last-child > a {
    border-bottom: none;
  }
  .primary-menu .sub-menu li > a:hover, .primary-menu .children li > a:hover, .primary-menu .sub-menu li.current_page_item > a, .primary-menu .children li.current_page_item > a, .primary-menu .sub-menu li.current-menu-item > a, .primary-menu .children li.current-menu-item > a, .primary-menu .sub-menu li.current_page_ancestor > a, .primary-menu .children li.current_page_ancestor > a, .primary-menu .sub-menu li.current-menu-ancestor > a, .primary-menu .children li.current-menu-ancestor > a {
    color: #ee1d22;
  }
  .primary-menu .sub-menu li > a:hover:after, .primary-menu .children li > a:hover:after, .primary-menu .sub-menu li.current_page_item > a:after, .primary-menu .children li.current_page_item > a:after, .primary-menu .sub-menu li.current-menu-item > a:after, .primary-menu .children li.current-menu-item > a:after, .primary-menu .sub-menu li.current_page_ancestor > a:after, .primary-menu .children li.current_page_ancestor > a:after, .primary-menu .sub-menu li.current-menu-ancestor > a:after, .primary-menu .children li.current-menu-ancestor > a:after {
    width: 100%;
    left: 0;
  }
  .primary-menu .sub-menu .sub-menu, .primary-menu .children .sub-menu, .primary-menu .sub-menu .children, .primary-menu .children .children {
    top: 0;
    left: 100%;
  }
  .primary-menu li:hover, .primary-menu li.focus {
    overflow: visible;
    /* Mega Menu */
  }
  .primary-menu li:hover > .sub-menu, .primary-menu li.focus > .sub-menu, .primary-menu li:hover > .children, .primary-menu li.focus > .children {
    visibility: visible;
    opacity: 1;
    margin-top: 0;
    clip: inherit;
  }
  .primary-menu li.megamenu {
    position: static;
  }
  .primary-menu li.megamenu .vc_wp_custommenu.wpb_content_element {
    padding: 0;
    background-color: transparent;
  }
  .primary-menu li.megamenu .sub-menu, .primary-menu li.megamenu .children {
    width: 100%;
    max-width: 1170px;
    padding: 0;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
  }
  .primary-menu li.megamenu .sub-menu p, .primary-menu li.megamenu .children p {
    margin-bottom: 0;
  }
  .primary-menu li.megamenu .sub-menu li, .primary-menu li.megamenu .children li {
    padding: 0;
  }
  .primary-menu li.megamenu .sub-menu li > .container, .primary-menu li.megamenu .children li > .container {
    padding: 0;
  }
  .primary-menu li.megamenu .sub-menu .wpb_content_element, .primary-menu li.megamenu .children .wpb_content_element {
    margin-bottom: 0;
  }
  .primary-menu li.megamenu.remove-pos {
    position: relative;
  }
  .primary-menu li.megamenu.remove-pos > .sub-menu, .primary-menu li.megamenu.remove-pos > .children {
    max-width: inherit;
    width: auto;
    left: 0;
    right: auto;
  }
  #site-header-wrap.header-layout2 .primary-menu {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  #site-header-wrap.header-layout2 .primary-menu.primary-menu-pages {
    margin-right: 23px;
  }
  #site-header-wrap.header-layout2 .primary-menu li {
    position: relative;
    list-style: none;
  }
  #site-header-wrap.header-layout2 .primary-menu li a {
    color: rgba(42, 42, 42, 0.9);
  }
  #site-header-wrap.header-layout2 .primary-menu > li {
    display: inline-block;
    vertical-align: middle;
    float: left;
  }
  #site-header-wrap.header-layout2 .primary-menu > li > a {
    font-size: 16px;
  }
  #site-header-wrap.header-layout2 .primary-menu > li > a:before {
    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;
    opacity: 0;
    content: "";
    height: 2px;
    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%);
    width: 4px;
    background: #ee1d22;
    bottom: 32px;
  }
  #site-header-wrap.header-layout2 .primary-menu > li:hover > a, #site-header-wrap.header-layout2 .primary-menu > li.current_page_item > a, #site-header-wrap.header-layout2 .primary-menu > li.current-menu-item > a, #site-header-wrap.header-layout2 .primary-menu > li.current_page_ancestor > a, #site-header-wrap.header-layout2 .primary-menu > li.current-menu-ancestor > a {
    color: #ee1d22;
  }
  #site-header-wrap.header-layout2 .primary-menu > li:hover > a:after, #site-header-wrap.header-layout2 .primary-menu > li.current_page_item > a:after, #site-header-wrap.header-layout2 .primary-menu > li.current-menu-item > a:after, #site-header-wrap.header-layout2 .primary-menu > li.current_page_ancestor > a:after, #site-header-wrap.header-layout2 .primary-menu > li.current-menu-ancestor > a:after {
    opacity: 1;
  }
  #site-header-wrap.header-layout2 .primary-menu > li.menu-item-has-children > a:after {
    content: "+";
    font-size: 15px;
    font-weight: bold;
    margin-left: 5px;
    display: inline-block;
  }
  #site-header-wrap.header-layout2 .primary-menu .sub-menu li > a:hover, #site-header-wrap.header-layout2 .primary-menu .children li > a:hover, #site-header-wrap.header-layout2 .primary-menu .sub-menu li.current_page_item > a, #site-header-wrap.header-layout2 .primary-menu .children li.current_page_item > a, #site-header-wrap.header-layout2 .primary-menu .sub-menu li.current-menu-item > a, #site-header-wrap.header-layout2 .primary-menu .children li.current-menu-item > a, #site-header-wrap.header-layout2 .primary-menu .sub-menu li.current_page_ancestor > a, #site-header-wrap.header-layout2 .primary-menu .children li.current_page_ancestor > a, #site-header-wrap.header-layout2 .primary-menu .sub-menu li.current-menu-ancestor > a, #site-header-wrap.header-layout2 .primary-menu .children li.current-menu-ancestor > a {
    color: #ee1d22;
  }
  #site-header-wrap.header-transparent .primary-menu {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  #site-header-wrap.header-transparent .primary-menu.primary-menu-pages {
    margin-right: 23px;
  }
  #site-header-wrap.header-transparent .primary-menu > li:after {
    background: #fff;
  }
  #site-header-wrap.header-transparent .primary-menu > li > a {
    color: #fff;
  }
  #site-header-wrap.header-transparent .primary-menu > li:hover > a, #site-header-wrap.header-transparent .primary-menu > li.current_page_item > a, #site-header-wrap.header-transparent .primary-menu > li.current-menu-item > a, #site-header-wrap.header-transparent .primary-menu > li.current_page_ancestor > a, #site-header-wrap.header-transparent .primary-menu > li.current-menu-ancestor > a {
    color: #ee1d22;
  }
  #site-header-wrap.header-transparent .primary-menu > li .sub-menu li > a:hover, #site-header-wrap.header-transparent .primary-menu > li .children li > a:hover, #site-header-wrap.header-transparent .primary-menu > li .sub-menu li.current_page_item > a, #site-header-wrap.header-transparent .primary-menu > li .children li.current_page_item > a, #site-header-wrap.header-transparent .primary-menu > li .sub-menu li.current-menu-item > a, #site-header-wrap.header-transparent .primary-menu > li .children li.current-menu-item > a, #site-header-wrap.header-transparent .primary-menu > li .sub-menu li.current_page_ancestor > a, #site-header-wrap.header-transparent .primary-menu > li .children li.current_page_ancestor > a, #site-header-wrap.header-transparent .primary-menu > li .sub-menu li.current-menu-ancestor > a, #site-header-wrap.header-transparent .primary-menu > li .children li.current-menu-ancestor > a {
    color: #ee1d22;
  }
  #site-header-wrap.header-transparent .h-fixed .primary-menu {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  #site-header-wrap.header-transparent .h-fixed .primary-menu.primary-menu-pages {
    margin-right: 23px;
  }
  #site-header-wrap.header-transparent .h-fixed .primary-menu > li:after {
    background: rgba(102, 102, 102, 0.5);
  }
  #site-header-wrap.header-transparent .h-fixed .primary-menu > li > a {
    color: #666;
  }
  #site-header-wrap.header-transparent .h-fixed .primary-menu > li:hover > a, #site-header-wrap.header-transparent .h-fixed .primary-menu > li.current_page_item > a, #site-header-wrap.header-transparent .h-fixed .primary-menu > li.current-menu-item > a, #site-header-wrap.header-transparent .h-fixed .primary-menu > li.current_page_ancestor > a, #site-header-wrap.header-transparent .h-fixed .primary-menu > li.current-menu-ancestor > a {
    color: #ee1d22;
  }
}
@media screen and (max-width: 1199px) {
  .site-navigation {
    background-color: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    position: absolute;
    z-index: 1001;
    padding: 15px 20px;
    top: calc(100% + 30px);
    top: -webkit-calc(100% + 30px);
    top: -ms-calc(100% + 30px);
    top: -o-calc(100% + 30px);
    bottom: auto;
    left: 0;
    right: 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;
    z-index: -1;
    max-height: 80vh;
    overflow: scroll;
  }
  .site-navigation.navigation-open {
    opacity: 1;
    visibility: visible;
    top: 100%;
    z-index: 999;
  }
  .primary-menu {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .primary-menu li {
    position: relative;
    list-style: none;
  }
  .primary-menu li a {
    display: block;
    padding: 10px 0;
    font-size: 20px;
    color: #1b1a1a;
    font-weight: 700;
  }
  .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: #ee1d22;
  }
  .primary-menu li .link-icon {
    margin-right: 6px;
    font-size: 90%;
  }
  .primary-menu .sub-menu, .primary-menu .children {
    position: relative;
    padding-left: 20px;
    display: none;
  }
  .primary-menu .sub-menu .container, .primary-menu .children .container {
    padding: 0;
  }
  .primary-menu .sub-menu.submenu-open + .main-menu-toggle:before, .primary-menu .children.submenu-open + .main-menu-toggle:before {
    content: "\f2fc";
  }
  .primary-menu li.focus > .sub-menu, .primary-menu li.focus > .children {
    visibility: visible;
    opacity: 1;
    max-height: none;
    overflow: visible;
  }
  .primary-menu-not-set {
    margin: 0;
    list-style: none;
  }
  .primary-menu-not-set a {
    display: block;
    padding: 10px 0;
    color: #000;
    font-weight: 600;
    font-size: 15px;
  }
  .primary-menu-not-set a:hover {
    color: #ee1d22;
  }
  #main-menu-mobile .btn-nv-b {
    padding-left: 10px;
  }
  #main-menu-mobile .btn-nav-mobile {
    width: 40px !important;
    border-radius: 3px;
    border: 1px solid #fff;
    color: #fff;
    display: inline-block;
    font-size: 16px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    vertical-align: middle;
    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;
  }
  #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;
    background: #fff;
  }
  #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: 25px;
    line-height: 25px;
    position: absolute;
    right: 0;
    text-align: center;
    top: 10px;
    width: 25px;
    background-color: #ee1d22;
    border-radius: 2px;
    color: #fff;
  }
  .main-menu-toggle:hover {
    background-color: #2a2a2a;
  }
  .main-menu-toggle:before {
    content: "\f2f9";
    font-family: "Material-Design-Iconic-Font";
  }
  #site-header-wrap .mega-auto-width {
    display: block;
  }
  #site-header-wrap .mega-auto-width > .wpb_column {
    width: 100%;
  }
  #site-header-wrap .mega-auto-width > .wpb_column .vc_column-inner {
    padding: 0 !important;
    border: none;
  }
  #site-header-wrap .vc_wp_custommenu {
    padding: 0;
    background-color: transparent;
  }
  .mega-auto-width > .elementor-container > .elementor-row > .elementor-element .elementor-column-wrap {
    padding: 0 !important;
    border: none !important;
    margin: 16px 0 !important;
  }
}
.comment-navigation, .posts-navigation, .post-navigation {
  /* add class back when submenu out body */
}
.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%;
}
ul.back {
  right: 100%;
  left: auto !important;
}
.mega-auto-width > .elementor-container > .elementor-row > .elementor-element {
  width: 285px;
}
.mega-auto-width > .elementor-container > .elementor-row > .elementor-element .elementor-column-wrap {
  padding: 0 40px;
  border-right: 2px solid #eaeaea;
  margin: 28px 0;
}
.mega-auto-width > .elementor-container > .elementor-row > .elementor-element:last-child .elementor-column-wrap {
  border-right: none;
}
.mega-auto-width .elementor-section.elementor-section-boxed > .elementor-container {
  max-width: inherit;
}
#menu-services-menu-categories {
  margin-top: 30px;
}
#menu-services-menu-categories li {
  cursor: pointer;
  overflow: hidden;
  position: relative;
  margin-bottom: 13px;
  background-color: #fff;
  -webkit-transition: 300ms all linear 0ms;
  -khtml-transition: 300ms all linear 0ms;
  -moz-transition: 300ms all linear 0ms;
  -ms-transition: 300ms all linear 0ms;
  -o-transition: 300ms all linear 0ms;
  transition: 300ms all linear 0ms;
}
#menu-services-menu-categories li a {
  position: relative;
  line-height: 50px;
  color: #666;
  font-size: 15px;
  font-weight: 500;
  padding-left: 60px;
  -webkit-transition: 300ms all linear 0ms;
  -khtml-transition: 300ms all linear 0ms;
  -moz-transition: 300ms all linear 0ms;
  -ms-transition: 300ms all linear 0ms;
  -o-transition: 300ms all linear 0ms;
  transition: 300ms all linear 0ms;
}
#menu-services-menu-categories li a:before {
  position: absolute;
  left: 30px;
  font-family: "Font Awesome 5 Pro";
  content: "\f324";
  font-size: 10px;
  color: #666;
  font-weight: 900;
  -webkit-transition: 300ms all linear 0ms;
  -khtml-transition: 300ms all linear 0ms;
  -moz-transition: 300ms all linear 0ms;
  -ms-transition: 300ms all linear 0ms;
  -o-transition: 300ms all linear 0ms;
  transition: 300ms all linear 0ms;
}
#menu-services-menu-categories li:before {
  position: absolute;
  right: 0;
  height: 100%;
  width: 0;
  content: "";
  background-color: #ee1d22;
  background-image: -webkit-gradient(linear, left top, right top, from(#ee1d22), to(#2a2a2a));
  background-image: -webkit-linear-gradient(left, #ee1d22, #2a2a2a);
  background-image: -moz-linear-gradient(left, #ee1d22, #2a2a2a);
  background-image: -ms-linear-gradient(left, #ee1d22, #2a2a2a);
  background-image: -o-linear-gradient(left, #ee1d22, #2a2a2a);
  background-image: linear-gradient(left, #ee1d22, #2a2a2a);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#ee1d22', endColorStr='#2a2a2a', gradientType='1');
  -webkit-transition: 300ms all linear 0ms;
  -khtml-transition: 300ms all linear 0ms;
  -moz-transition: 300ms all linear 0ms;
  -ms-transition: 300ms all linear 0ms;
  -o-transition: 300ms all linear 0ms;
  transition: 300ms all linear 0ms;
}
#menu-services-menu-categories li:hover:before {
  left: 0;
  width: 100%;
}
#menu-services-menu-categories li:hover a {
  color: #fff;
}
#menu-services-menu-categories li:hover a:before {
  -webkit-animation: toRightFromLeft 0.3s forwards;
  -khtml-animation: toRightFromLeft 0.3s forwards;
  -moz-animation: toRightFromLeft 0.3s forwards;
  -ms-animation: toRightFromLeft 0.3s forwards;
  -o-animation: toRightFromLeft 0.3s forwards;
  animation: toRightFromLeft 0.3s forwards;
  color: #fff;
}
h5 {
  font-size: 25px;
  font-weight: 700;
  color: #666;
}
.cms-breadcrumb {
  background-color: #000;
  border-radius: 30px;
  padding: 2px 17px !important;
  margin: 3px 0 0;
  list-style: none;
  margin-top: 14px !important;
  display: inline-block;
  color: #f9f9f9;
}
@media (min-width: 1024px) {
  .cms-breadcrumb {
    margin-left: -17px !important;
  }
}
@media (max-width: 1024px) {
  .cms-breadcrumb {
    margin-left: 0px !important;
    padding: 9px 17px !important;
  }
}
.cms-breadcrumb li {
  display: inline-block;
  font-size: 14px;
  text-transform: uppercase;
  color: inherit;
}
.cms-breadcrumb li a, .cms-breadcrumb li span {
  color: #fff;
  font-size: 19px;
  font-weight: 600;
  font-family: Poppins;
  letter-spacing: 1px;
}
@media screen and (max-width: 575px) {
  .cms-breadcrumb li a, .cms-breadcrumb li span {
    font-size: 16px;
  }
}
.cms-breadcrumb li a:after, .cms-breadcrumb li span:after {
  margin-left: 10px;
  margin-right: 10px;
  content: ">";
  font-weight: 600;
  display: inline-block;
  color: #fff;
  position: relative;
}
@media screen and (max-width: 575px) {
  .cms-breadcrumb li a:after, .cms-breadcrumb li span:after {
    margin-left: 10px;
    margin-right: 10px;
  }
}
.cms-breadcrumb li a:hover, .cms-breadcrumb li span:hover {
  color: #ee1d22;
}
.cms-breadcrumb li a:hover:after, .cms-breadcrumb li span:hover:after {
  color: inherit;
}
.cms-breadcrumb li span:hover {
  color: #ee1d22;
}
.cms-breadcrumb li:last-child a:after, .cms-breadcrumb li:last-child span:after {
  display: none;
}
#pagetitle {
  background-color: #2a2a2a;
}
.elementor-widget-cms_breadcrumb .cms-breadcrumb {
  margin-top: 0;
}
.site-h2 #pagetitle {
  padding-top: 250px;
  padding-bottom: 95px;
}
.site-h2 #pagetitle.page-title-layout1 .container {
  max-width: 900px;
}
@media screen and (max-width: 1199px) {
  .site-h2 #pagetitle {
    padding-top: 85px;
    padding-bottom: 85px;
  }
}
@media screen and (max-width: 767px) {
  .site-h2 #pagetitle {
    padding-top: 65px;
    padding-bottom: 65px;
  }
}
.line-404 {
  background-image: url('../images/under_line.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 0px 120px;
  background-size: contain;
  display: inline-block;
}
.line-titile-silde {
  background-image: url('../images/under_line.png');
  background-repeat: no-repeat;
  background-position: 0px 101px;
  background-size: contain;
  display: inline-block;
}
.blog .page-title-inner {
  padding-top: 243px !important;
}
#pagetitle {
  position: relative;
  overflow: hidden;
}
#pagetitle .line-pagetitle {
  background-image: url('../images/under_line.png');
  background-repeat: no-repeat;
  background-position: 0px 118px;
  background-size: contain;
}
#pagetitle .page-title-inner {
  text-align: left !important;
  padding-bottom: 135px;
  padding-top: 253px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  #pagetitle .page-title-inner {
    padding-bottom: 150px;
    padding-top: 200px;
  }
}
@media screen and (max-width: 575px) {
  #pagetitle .page-title-inner {
    padding-bottom: 90px;
    padding-top: 90px;
  }
}
#pagetitle .page-title-inner .entry-page-title {
  font-size: 90px;
  font-weight: bold;
  line-height: 90px;
  color: #fff;
}
@media screen and (max-width: 1199px) {
  #pagetitle .page-title-inner .entry-page-title {
    text-align: center;
  }
}
#pagetitle .page-title-inner .page-title-meta {
  margin: 0 auto;
  padding-top: 5px;
}
#pagetitle .page-title-inner .page-title-meta .page-sub-title {
  font-size: 20px;
  color: #2a2a2a;
  font-weight: 400;
  font-family: Poppins;
  line-height: 36px;
  margin-bottom: 0;
}
#pagetitle .page-title-inner .page-title-meta .page-sub-title + .cms-breadcrumb {
  margin-top: 10px;
}
#pagetitle .page-title-inner .page-title-meta + h1 {
  padding-bottom: 30px;
  padding-top: 30px;
}
#pagetitle .entry-page-title {
  font-weight: normal;
}
#pagetitle.page-title-layout1 {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
  color: #fff;
  z-index: 1;
}
#pagetitle.page-title-layout1 .entry-page-title {
  margin-bottom: 0;
}
@media screen and (max-width: 575px) {
  #pagetitle.page-title-layout1 .entry-page-title {
    font-size: 30px !important;
    line-height: 40px !important;
  }
}
#pagetitle.page-title-layout1.breadcrumb-show .cms-breadcrumb {
  font-size: 12px;
  margin-top: 22px !important;
}
@media screen and (max-width: 991px) {
  #pagetitle.page-title-layout1.breadcrumb-show .cms-breadcrumb {
    margin-top: 0px !important;
  }
}
@media screen and (max-width: 1199px) {
  #pagetitle.page-title-layout1 .page-title-inner {
    padding-top: 200px;
    padding-bottom: 150px;
  }
  #pagetitle.page-title-layout1 .entry-page-title {
    font-size: 70px !important;
  }
  #pagetitle.page-title-layout1 .page-title-meta {
    text-align: center;
    padding-top: 0;
    max-width: 100%;
  }
}
@media screen and (max-width: 991px) {
  #pagetitle.page-title-layout1 .page-title-inner {
    padding-top: 200px;
    padding-bottom: 120px;
  }
  #pagetitle.page-title-layout1 .entry-page-title {
    font-size: 70px !important;
  }
  #pagetitle.page-title-layout1 .page-title-meta {
    padding-top: 15px;
    max-width: 100%;
  }
}
@media screen and (max-width: 575px) {
  #pagetitle.page-title-layout1 .page-title-inner {
    padding-top: 150px;
    padding-bottom: 100px;
  }
  #pagetitle.page-title-layout1 .entry-page-title {
    font-size: 35px !important;
    line-height: 40px !important;
  }
  #pagetitle.page-title-layout1 .page-title-meta .page-sub-title {
    font-size: 17px;
    padding-top: 20px;
    line-height: 24px;
  }
}
.single-post #pagetitle.page-title-layout1 .page-title-inner {
  display: block;
  align-items: center;
  text-align: left;
  margin: 0 auto;
}
@media screen and (max-width: 991px) {
  .single-post #pagetitle.page-title-layout1 .page-title-inner {
    max-width: 100%;
  }
}
.single-post #pagetitle.page-title-layout1 .page-title-holder {
  max-width: 100%;
  padding-right: 0;
}
.single-post #pagetitle.page-title-layout1 .page-title-meta {
  flex-grow: 1;
}
#posttitle {
  padding: 32px 0;
  text-align: center;
}
#posttitle .cms-breadcrumb {
  margin: 0;
}
#posttitle .cms-breadcrumb li {
  color: #51668a;
}
#posttitle .cms-breadcrumb li a {
  color: #0e2b5c;
}
#posttitle .cms-breadcrumb li a:hover {
  color: #ee1d22;
}
#posttitle .cms-breadcrumb li span:hover {
  color: inherit;
}
#posttitle + #content {
  padding-top: 0 !important;
}
.post-type-archive-product #pagetitle .entry-page-title {
  font-size: 68px;
}
.post-type-archive-product .cms-breadcrumb {
  margin-top: 0 !important;
}
.ptitle-overlay {
  position: relative;
  z-index: 1;
}
.ptitle-overlay:before {
  content: '';
  height: 140px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.45)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0));
  background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0));
  background-image: -ms-linear-gradient(top, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0));
  background-image: linear-gradient(top, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0));
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='rgba(0, 0, 0, 0.45)', endColorStr='rgba(0, 0, 0, 0)');
}
.dec-text-slide {
  font-weight: 400 !important;
  font-style: initial;
}
@media (max-width: 479px) {
  .background-slide {
    background-color: transparent !important;
  }
}
@media screen and (max-width: 575px) {
  .cmsservice-template-default #content, .cmscase-template-default #content {
    padding-top: 0;
  }
}
.tick-slide {
  position: relative;
}
.tick-slide:before {
  position: absolute;
  content: '';
  background-image: url('../images/tick-slide.png');
  width: 50px;
  height: 50px;
  background-size: cover;
  background-position: center;
  left: -65px;
  top: 6px;
}
@media (max-width: 550px) {
  .tick-slide:before {
    width: 35px;
    height: 35px;
  }
}
.single-post .page-title-meta {
  margin-top: 3px !important;
}
.single-post #pagetitle .page-title-inner {
  text-align: left;
  padding-bottom: 135px;
  padding-top: 256px;
}
@media screen and (min-width: 1200px) {
  .single-post #pagetitle .page-title-inner {
    float: left;
  }
}
.custom .tp-bullet {
  -webkit-transition: 300ms all linear 0ms;
  -khtml-transition: 300ms all linear 0ms;
  -moz-transition: 300ms all linear 0ms;
  -ms-transition: 300ms all linear 0ms;
  -o-transition: 300ms all linear 0ms;
  transition: 300ms all linear 0ms;
  background-color: #fff !important;
  margin-left: 0px;
  width: 5px !important;
  height: 5px !important;
  border-radius: 50px;
}
.custom .tp-bullet:before {
  position: absolute;
  content: '1';
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block !important;
  font-size: 0.2em;
  color: #fff;
  font-family: Barlow Condensed;
  opacity: 0;
}
.custom .tp-bullet.selected:before {
  opacity: 1;
}
.custom .tp-bullet:nth-child(2):before {
  content: "2";
}
.custom .tp-bullet:nth-child(3):before {
  content: "3";
}
.custom .tp-bullet:nth-child(4):before {
  content: "4";
}
.custom .tp-bullet:nth-child(5):before {
  content: "5";
}
.sticky {
  display: block;
}
.custom-before-sv:before {
  position: absolute;
  content: '';
  width: 30px;
  height: 100%;
  background-color: #fff;
  top: 0;
  right: 0;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .custom-before-sv:before {
    display: none;
  }
}
.single-cmsservice .entry-title {
  font-size: 60px !important;
  color: #2a2a2a;
  font-weight: 700;
  padding-bottom: 32px;
}
@media screen and (min-width: 1024px) {
  .single-cmsservice .entry-title {
    padding-left: 100px;
  }
}
@media screen and (max-width: 1024px) {
  .single-cmsservice .entry-title {
    font-size: 50px !important;
    line-height: 50px;
    padding-bottom: 10px;
  }
}
@media screen and (max-width: 575px) {
  .single-cmsservice .entry-title {
    font-size: 35px !important;
    line-height: 40px;
    padding-bottom: 0px;
  }
}
.updated:not(.published) {
  display: none;
}
.cmsservice-template-default .wrap-entry-bottom {
  margin-bottom: 82px !important;
  margin-top: 58px !important;
}
.format-gallery .entry-featured {
  position: relative;
}
.format-gallery .entry-featured .owl-next, .format-gallery .entry-featured .owl-prev {
  background: #fff;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  position: absolute;
  color: #000;
  font-size: 18px;
  -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;
}
.format-gallery .entry-featured .owl-next:hover, .format-gallery .entry-featured .owl-prev:hover {
  background: #ee1d22;
  color: #fff;
}
.format-gallery .entry-featured .owl-next {
  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%);
}
.format-gallery .entry-featured .owl-prev {
  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%);
}
.format-gallery .entry-featured:hover .owl-next, .format-gallery .entry-featured:hover .owl-prev {
  opacity: 1;
}
.format-gallery .entry-featured:hover .owl-next.disabled, .format-gallery .entry-featured:hover .owl-prev.disabled {
  opacity: 0.76;
}
.posts-pagination {
  padding-top: 13px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 1199px) {
  .posts-pagination {
    padding-bottom: 50px;
  }
}
.posts-pagination .posts-page-links {
  padding-top: 2px;
  display: flex;
  align-items: center;
}
.posts-pagination .page-numbers {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  -webkit-transition: 0ms all linear 0ms;
  -khtml-transition: 0ms all linear 0ms;
  -moz-transition: 0ms all linear 0ms;
  -ms-transition: 0ms all linear 0ms;
  -o-transition: 0ms all linear 0ms;
  transition: 0ms all linear 0ms;
  text-align: center;
  height: 33px;
  width: 43px;
  padding: 0;
  color: inherit;
  font-size: 18px;
  font-weight: 700;
  font-weight: bold;
  color: #2a2a2a;
  border-left: 1px solid #eaeaea;
  -webkit-transition: 200ms all linear 0ms;
  -khtml-transition: 200ms all linear 0ms;
  -moz-transition: 200ms all linear 0ms;
  -ms-transition: 200ms all linear 0ms;
  -o-transition: 200ms all linear 0ms;
  transition: 200ms all linear 0ms;
}
@media screen and (max-width: 450px) {
  .posts-pagination .page-numbers {
    width: 30px;
  }
}
@media screen and (max-width: 575px) {
  .posts-pagination .page-numbers {
    margin-right: 0px;
  }
}
.posts-pagination .page-numbers.current, .posts-pagination .page-numbers:hover {
  color: #ee1d22;
}
.posts-pagination .page-numbers.next {
  display: inline-flex;
  width: 109px;
  height: 65px;
  color: #fff;
  background-color: #ee1d22;
  justify-content: center;
  align-items: center;
  border-radius: 5px 40px 5px 5px;
}
@media screen and (max-width: 575px) {
  .posts-pagination .page-numbers.next {
    width: 70px;
    height: 55px;
  }
}
.posts-pagination .page-numbers.next:hover {
  background-color: #2a2a2a;
}
.posts-pagination .page-numbers.prev {
  display: inline-flex;
  width: 109px;
  height: 65px;
  color: #fff;
  background-color: #2a2a2a;
  justify-content: center;
  align-items: center;
  border-radius: 40px 5px 5px 5px;
}
@media screen and (max-width: 575px) {
  .posts-pagination .page-numbers.prev {
    width: 70px;
    height: 55px;
  }
}
.posts-pagination .page-numbers.prev:hover {
  background-color: #ee1d22;
}
.entry-title {
  text-overflow: ellipsis;
  overflow: hidden;
}
.entry-title a {
  color: inherit;
}
.entry-title a:hover {
  color: #ee1d22;
}
.type-product .entry-featured .post-image img {
  width: auto !important;
}
.entry-featured {
  position: relative;
}
.entry-featured .post-image {
  position: relative;
}
.entry-featured .post-image .ul-author {
  position: absolute;
  left: 18px;
  bottom: 25px;
}
.entry-featured .post-image .ul-author .item-author {
  display: flex;
  align-items: center;
}
.entry-featured .post-image .ul-author .item-author img {
  width: 50px;
  height: 50px;
  border-radius: 50px;
}
.entry-featured .post-image .ul-author .item-author .name-auth-post {
  z-index: 0;
  margin-left: -20px;
  background-color: #fff;
  border-radius: 0 50px 50px 0;
  padding: 0 23px 0 30px;
}
.entry-featured .post-image .ul-author .item-author .name-auth-post a {
  line-height: 50px;
  font-family: Barlow Condensed;
  font-size: 18px;
  font-weight: 500;
  color: #666;
}
.entry-featured .post-image a, .entry-featured .post-image span {
  z-index: 2;
}
.entry-meta {
  margin: 0;
  list-style: none;
  font-size: 14px;
  padding-top: 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.entry-meta li i {
  margin-right: 4px;
}
.entry-meta li:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: 0;
}
.entry-meta li.item-category a:hover {
  color: #ee1d22;
}
.entry-meta li.item-author {
  text-transform: capitalize;
}
.entry-meta li.item-author span {
  width: 38px;
  height: 38px;
  display: inline-block;
  overflow: hidden;
  border-radius: 50px;
}
.entry-meta li.item-author img {
  width: 100%;
}
.entry-meta li.item-author a {
  margin-left: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #2a2a2a !important;
  font-family: Poppins;
}
.entry-meta li a:hover {
  color: #ee1d22;
}
.content-has-sidebar {
  padding-top: 60px;
}
.content-has-sidebar.single-post .post-image img, .content-has-sidebar.single-post .post-image a {
  width: 100%;
}
.single-hentry .entry-title {
  font-size: 26px;
  line-height: 48px !important;
}
@media screen and (max-width: 991px) {
  .single-hentry .entry-title {
    font-size: 20px;
    line-height: 42px !important;
  }
}
@media screen and (max-width: 450px) {
  .single-hentry .entry-meta {
    display: block;
  }
}
@media (max-width: 610px) {
  .single-hentry .entry-meta .meta-right .item-comment {
    border-left: none;
    border-right: none;
  }
}
@media (max-width: 380px) {
  .single-hentry .entry-meta .meta-right .item-comment a {
    line-height: 40px;
  }
}
.single-hentry .entry-meta .meta-right li {
  color: #ee1d22;
  font-family: Barlow Condensed;
  font-weight: 700;
  text-transform: uppercase;
  padding-right: 20px;
}
.single-hentry .entry-meta .meta-right a {
  color: #ee1d22;
  transition: 0.3s;
}
.single-hentry .entry-meta .meta-right a:hover {
  color: #2a2a2a;
  transition: 0.3s;
}
.single-hentry .entry-meta li {
  font-size: 18px;
  display: inline-block;
}
.single-hentry .entry-meta li i {
  color: #ee1d22;
}
.single-hentry .entry-meta li a {
  color: #626161;
}
.single-hentry .entry-meta li a i {
  color: #626161;
}
.single-hentry .entry-featured + .entry-body {
  position: relative;
}
.single-hentry .entry-featured + .entry-body .entry-meta {
  position: relative;
}
.single-hentry .entry-featured + .entry-body .entry-meta li {
  display: inline-flex;
  align-items: center;
}
.single-hentry .entry-featured.entry-video {
  margin-bottom: -7px;
}
.single-hentry .entry-featured.entry-video iframe {
  width: 100%;
}
.single-hentry .entry-featured.entry-gallery .slick-slide {
  padding-left: 0;
  padding-right: 0;
}
.single-hentry .entry-featured.entry-gallery .slick-arrow {
  height: 54px;
  line-height: 54px;
  cursor: pointer;
  text-align: center;
  border-radius: 0;
  background-color: #f8f8f8;
  width: 60px;
  opacity: 1;
}
.single-hentry .entry-featured.entry-gallery .slick-arrow:before {
  color: #2a2a2a;
  font-size: 22px;
  font-weight: 300;
}
.single-hentry .entry-featured.entry-gallery .slick-arrow:hover {
  background-color: #ee1d22;
}
.single-hentry .entry-featured.entry-gallery .slick-arrow:hover:before {
  color: #fff;
}
.single-hentry .entry-featured.entry-quote {
  padding: 25px 75px;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  border-left: 10px solid #ee1d22;
  position: relative;
}
.single-hentry .entry-featured.entry-quote:before, .single-hentry .entry-featured.entry-quote:after {
  font-size: 100px;
  font-family: Novecentowide-Medium;
  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: 34px;
  height: 24px;
  line-height: 80px;
  color: #ee1d22;
}
.single-hentry .entry-featured.entry-quote:before {
  left: 10px;
  content: "“";
}
.single-hentry .entry-featured.entry-quote:after {
  right: 20px;
  content: "”";
}
.single-hentry.archive {
  margin-bottom: 35px;
  padding-bottom: 25px;
  width: 100%;
}
@media screen and (max-width: 991px) {
  .single-hentry.archive .post-image img {
    width: 100%;
  }
}
.single-hentry.archive.gallery {
  margin-top: 0;
}
.single-hentry.archive .entry-title {
  font-size: 40px;
  font-weight: bold;
  color: #2a2a2a;
  line-height: 48px;
  padding-bottom: 11px;
}
@media screen and (max-width: 767px) {
  .single-hentry.archive .entry-title {
    padding-bottom: 15px;
    font-size: 30px;
  }
}
.single-hentry.archive .entry-body .item-category a {
  font-family: Barlow Condensed;
  font-size: 20px;
  line-height: 30px;
  font-weight: 400 !important;
  text-transform: uppercase;
}
.single-hentry.archive .entry-content {
  margin-top: 4px;
  font-family: Poppins;
  font-size: 18px;
  line-height: 32px;
  color: #666;
  font-weight: 400;
}
.single-hentry.archive .meta-right {
  padding-bottom: 20px;
}
@media screen and (max-width: 575px) {
  .single-hentry.archive .meta-right {
    padding-bottom: 10px;
  }
}
.single-hentry.archive .entry-readmore {
  margin-top: 30px;
  background-color: transparent;
  position: relative;
  display: inline-block;
  border-radius: 3px;
  transition: 0.2s;
  z-index: 1;
}
@media screen and (max-width: 575px) {
  .single-hentry.archive .entry-readmore {
    margin-top: 20px;
  }
}
.single-hentry.archive .entry-readmore:hover {
  border-color: #ee1d22;
}
.single-hentry.archive .entry-readmore:hover:before {
  opacity: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.single-hentry.archive .entry-readmore:hover a {
  color: #fff;
}
.single-hentry.archive .entry-readmore a {
  display: inline-flex;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 700 !important;
  justify-content: center;
  align-items: center;
  position: relative;
  background-color: #ee1d22;
  color: #fff;
  border-radius: 5px 40px 5px 5px;
  z-index: 1;
  -webkit-transition: 300ms all linear 0ms;
  -khtml-transition: 300ms all linear 0ms;
  -moz-transition: 300ms all linear 0ms;
  -ms-transition: 300ms all linear 0ms;
  -o-transition: 300ms all linear 0ms;
  transition: 300ms all linear 0ms;
  width: 217px;
  height: 60px;
  position: relative;
}
.single-hentry.archive .entry-readmore a:before {
  position: absolute;
  content: "\f054";
  font-family: 'Font Awesome 5 Pro';
  right: -16px;
  top: 11px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 3px solid #ee1d22;
  width: 38px;
  height: 38px;
  font-size: 13px;
  background-color: #fff;
  color: #ee1d22;
  border-radius: 50px;
  -webkit-transition: 300ms all linear 0ms;
  -khtml-transition: 300ms all linear 0ms;
  -moz-transition: 300ms all linear 0ms;
  -ms-transition: 300ms all linear 0ms;
  -o-transition: 300ms all linear 0ms;
  transition: 300ms all linear 0ms;
}
.single-hentry.archive .entry-readmore a:hover {
  background-color: #2a2a2a;
}
.single-hentry.archive .entry-readmore a:hover:before {
  border-color: #2a2a2a;
  color: #2a2a2a;
}
.single-hentry.archive:hover .post-image:before {
  opacity: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.single-hentry.archive:hover .btn-meta a {
  transform: translateX(0px);
  opacity: 1;
}
.single-hentry .entry-content p {
  font-family: Poppins;
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
}
.tag-social {
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 21px;
  margin-top: 45px;
}
@media screen and (max-width: 575px) {
  .tag-social {
    display: block;
  }
  .tag-social .entry-social-share {
    margin-left: 10px;
  }
  .tag-social .entry-social-share:last-child {
    padding-right: 0;
  }
}
@media screen and (max-width: 575px) {
  .tag-social .entry-social-share {
    justify-content: center;
  }
}
.tag-social .entry-social-share a i {
  -webkit-transition: 300ms all linear 0ms;
  -khtml-transition: 300ms all linear 0ms;
  -moz-transition: 300ms all linear 0ms;
  -ms-transition: 300ms all linear 0ms;
  -o-transition: 300ms all linear 0ms;
  transition: 300ms all linear 0ms;
  line-height: 45px;
  margin: 0;
}
.entry-social-share {
  padding: 24px 0;
  margin: 0 -10px;
  display: flex;
  justify-content: flex-end;
  width: 100%;
  flex-wrap: nowrap;
  padding-left: 20px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.entry-social-share .wrap-entry-social-share:hover .social-sh {
  right: 0;
  opacity: 1;
}
@media screen and (max-width: 575px) {
  .entry-social-share .wrap-entry-social-share:hover .social-sh {
    bottom: -10px !important;
  }
}
.entry-social-share .wrap-entry-social-share:hover .btn-share-post {
  opacity: 0;
}
.entry-social-share .btn-share-post {
  font-size: 16px;
  line-height: 26px;
  font-family: Poppins;
  color: #2a2a2a !important;
  font-weight: 400;
  display: flex;
  align-items: center;
  margin: 0;
}
.entry-social-share .btn-share-post i {
  width: 54px;
  height: 54px;
  background-color: #ee1d22;
  text-align: center;
  border-radius: 50px;
  color: #fff;
  font-size: 22px;
  font-weight: 100;
  margin-left: 13px !important;
}
.entry-social-share .btn-share-post i:before {
  line-height: 54px;
}
@media screen and (max-width: 575px) {
  .entry-social-share .btn-share-post:hover .social-sh {
    bottom: 20px !important;
  }
}
.entry-social-share .social-sh {
  position: absolute;
  right: 100px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  opacity: 0;
  -webkit-transition: 300ms all linear 0ms;
  -khtml-transition: 300ms all linear 0ms;
  -moz-transition: 300ms all linear 0ms;
  -ms-transition: 300ms all linear 0ms;
  -o-transition: 300ms all linear 0ms;
  transition: 300ms all linear 0ms;
}
@media screen and (max-width: 575px) {
  .entry-social-share .social-sh {
    right: 0;
    bottom: -50px;
    justify-content: center;
    width: 100%;
  }
}
.entry-social-share .social-sh .btn-share {
  width: 40px;
  text-align: center;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ee1d22;
  color: #fff;
  border-radius: 50px;
  -webkit-transition: 300ms all linear 0ms;
  -khtml-transition: 300ms all linear 0ms;
  -moz-transition: 300ms all linear 0ms;
  -ms-transition: 300ms all linear 0ms;
  -o-transition: 300ms all linear 0ms;
  transition: 300ms all linear 0ms;
}
.entry-social-share .social-sh .btn-share:hover {
  background-color: #2a2a2a;
}
@media screen and (max-width: 575px) {
  .entry-social-share {
    padding: 0px 0 15px 0;
  }
}
.entry-social-share a {
  margin: 0 13px 0 0;
}
.entry-social-share a:last-child {
  margin-right: 10px;
}
.entry-social-share a i {
  font-weight: 400;
  font-size: 16px;
}
@media screen and (max-width: 991px) {
  .entry-social-share a {
    text-align: center;
  }
  .entry-social-share a span {
    display: none;
  }
}
.entry-social-share:last-child {
  padding-right: 20px;
}
.entry-content-bottom {
  padding: 24px 0;
}
@media screen and (max-width: 575px) {
  .entry-content-bottom {
    padding: 15px 0 15px 0;
    text-align: center;
  }
}
.entry-content-bottom .entry-tags {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 575px) {
  .entry-content-bottom .entry-tags {
    justify-content: center;
  }
}
.entry-content-bottom .entry-tags span {
  padding-right: 4px;
}
.entry-content-bottom .entry-tags span i {
  font-size: 28px;
  color: #c2bfbf;
}
.entry-content-bottom .entry-tags a {
  color: #2a2a2a;
  display: inline-block;
  background-color: #fff;
  font-size: 16px;
  line-height: 26px;
  font-family: Poppins;
  font-weight: 400;
  padding-left: 5px;
}
.entry-content-bottom .entry-tags a:hover {
  color: #ee1d22;
}
.entry-content-bottom .entry-tags a:last-child {
  margin-right: 0;
}
.sidebar-sticky {
  padding-top: 60px;
}
@media screen and (max-width: 767px) {
  .sidebar-sticky {
    padding-top: 0;
    margin-top: -20px;
  }
}
@media screen and (max-width: 991px) {
  .sidebar-sticky {
    padding-top: 0;
  }
}
.body-postsingle {
  padding-right: 17px;
}
@media screen and (max-width: 991px) {
  .body-postsingle {
    padding-right: 0;
  }
}
@media screen and (min-width: 992px) {
  .single-hentry {
    padding-right: 20px;
  }
}
.single-post .site-content {
  padding-bottom: 75px;
}
@media screen and (max-width: 767px) {
  .single-post .site-content {
    padding-bottom: 45px;
  }
}
.single-post .entry-featured .image-light-box {
  position: relative;
  overflow: hidden;
}
.single-post .entry-featured .image-light-box:before {
  -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;
  content: "";
  display: block;
  z-index: 1;
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  top: 50%;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.3);
}
.single-post .entry-featured .image-light-box a.light-box {
  width: 62px;
  height: 62px;
  line-height: 65px;
  font-size: 20px;
  font-weight: normal;
  color: #ee1d22;
  position: absolute;
  text-align: center;
  opacity: 0;
  top: 30%;
  left: 50%;
  z-index: 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%);
  -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: #fff;
  -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;
}
.single-post .entry-featured .image-light-box:hover a.light-box {
  opacity: 1;
  top: 50%;
}
.single-post .entry-featured .image-light-box:hover:before {
  top: 0;
  height: 100%;
  opacity: 1;
}
.single-post .single-hentry .entry-title {
  display: none;
  padding-top: 43px;
  font-size: 40px;
  font-weight: bold;
  color: #2a2a2a;
  line-height: 48px;
  margin-bottom: 10px !important;
}
.single-post .entry-content {
  margin-bottom: 25px;
}
.single-post .entry-navigation {
  border: 1px solid #e4e4e4;
  margin-right: 20px;
  margin-top: 24px;
  margin-bottom: 60px;
  padding: 0px 32px 0 15px;
  width: 100%;
}
@media screen and (max-width: 991px) {
  .single-post .entry-navigation {
    padding: 0px 15px 0 15px;
  }
}
@media screen and (max-width: 575px) {
  .single-post .entry-navigation {
    padding: 0 15px;
  }
}
.single-post .entry-navigation .nav-post-btn a {
  font-weight: 400;
  display: flex;
  font-size: 25px;
  font-weight: bold;
  cursor: pointer;
  line-height: 40px;
  color: #666;
}
.single-post .entry-navigation .nav-post-btn a:hover {
  color: #ee1d22;
}
.single-post .entry-navigation .nav-post-btn:hover a {
  color: #ee1d22;
}
.single-post .entry-navigation .nav-links {
  justify-content: flex-start;
  display: flex;
  align-items: center;
  margin: 0 -15px;
  padding: 26px 26px 23px 26px;
}
@media screen and (max-width: 575px) {
  .single-post .entry-navigation .nav-links {
    display: block;
  }
  .single-post .entry-navigation .nav-links .nav-post-next {
    width: 100%;
    padding: 10px 0 !important;
  }
}
@media screen and (max-width: 575px) {
  .single-post .entry-navigation .nav-links {
    flex-wrap: nowrap;
  }
  .single-post .entry-navigation .nav-links .nav-post-prev {
    margin-left: -10px;
    width: 100%;
    padding: 10px 0 !important;
  }
}
.single-post .entry-navigation .nav-item {
  display: flex;
  width: 50%;
  align-items: center;
}
.single-post .entry-navigation .nav-item svg {
  height: 28px;
}
.single-post .entry-navigation .nav-item:hover .nav-post-img:after {
  left: 0;
  width: 100% !important;
}
.single-post .entry-navigation .nav-item.nav-post-next {
  margin-right: -30px !important;
}
.single-post .entry-navigation .nav-item.nav-post-next .nav-post-img {
  max-height: 172px;
  display: flex;
  overflow: hidden;
  align-items: center;
  position: relative;
}
.single-post .entry-navigation .nav-item.nav-post-next .nav-post-btn {
  margin-right: 0;
  margin-left: 20px;
}
.single-post .entry-navigation .nav-item.nav-post-next .nav-post-btn a i {
  margin-left: 5px;
}
.single-post .entry-navigation .nav-item.nav-post-prev {
  padding-right: 15px;
  margin-right: 20px;
}
.single-post .entry-navigation .nav-item.nav-post-prev .nav-post-img {
  max-height: 172px;
  display: flex;
  overflow: hidden;
  align-items: center;
  position: relative;
}
.single-post .entry-navigation .nav-item.nav-post-prev .nav-post-meta {
  padding-left: 16px;
}
.single-post .entry-navigation .nav-item.nav-post-prev i {
  padding-right: 16px;
}
.single-post .entry-navigation .nav-item.nav-post-next {
  margin-right: -10px;
}
.single-post .entry-navigation .nav-item.nav-post-next .nav-post-meta {
  text-align: right;
  padding-right: 16px;
}
.single-post .entry-navigation .nav-item.nav-post-next a {
  text-align: right;
}
.single-post .entry-navigation .nav-item.nav-post-next i {
  padding-left: 16px;
}
.single-post .entry-navigation .nav-post-meta {
  width: 88%;
}
.single-post .entry-navigation .nav-post-meta a {
  font-size: 20px;
  font-weight: 600;
  font-family: Barlow Condensed;
  line-height: 21px;
  color: #2a2a2a;
}
@media screen and (max-width: 575px) {
  .single-post .entry-navigation .nav-post-meta a {
    font-size: 20px;
  }
}
.single-post .entry-navigation .nav-post-meta i {
  font-size: 26px;
  color: #fff;
  pointer-events: none;
}
@media (max-width: 670px) {
  .single-post .entry-author-info {
    padding: 30px !important;
  }
  .single-post .entry-author-info .author-post {
    display: block !important;
    text-align: center;
  }
  .single-post .entry-author-info .author-post .author-avatar-social {
    margin: auto;
  }
  .single-post .entry-author-info .author-post .author-description p {
    padding-top: 10px;
  }
  .single-post .entry-author-info .author-name {
    display: block !important;
    padding-top: 20px;
  }
  .single-post .entry-author-info .author-name .user-social {
    padding-top: 10px;
    padding-left: 0px;
  }
  .single-post .entry-author-info .author-name .user-social li:last-child a {
    border-right: none;
  }
}
.single-post .entry-author-info {
  padding: 47px 60px 42px 30px;
  margin-bottom: 30px;
  margin-right: 19px;
  background-color: #f8f8f8;
}
@media screen and (max-width: 991px) {
  .single-post .entry-author-info {
    margin-right: 0;
  }
}
.single-post .entry-author-info .author-name {
  display: flex;
  align-items: revert;
}
.single-post .entry-author-info .author-name a {
  font-family: Barlow Condensed;
  color: #2a2a2a;
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 700;
  line-height: 15px;
}
.single-post .entry-author-info .author-post {
  display: flex;
  flex-wrap: nowrap;
}
@media screen and (min-width: 576px) {
  .single-post .entry-author-info .author-post {
    align-items: center;
  }
}
.single-post .entry-author-info .author-avatar-social {
  width: 140px;
  min-width: 140px;
  margin-right: 30px;
  border-radius: 250px;
  overflow: hidden;
}
@media screen and (max-width: 575px) {
  .single-post .entry-author-info .author-avatar-social {
    width: 60px;
    min-width: 60px;
    margin-right: 20px;
  }
}
.single-post .entry-author-info .author-avatar-social img {
  width: 100%;
}
.single-post .entry-author-info .author-description {
  font-size: 16px;
}
.single-post .entry-author-info .author-description p {
  font-family: Poppins;
  color: #666;
  font-size: 18px;
  font-weight: 400;
  padding-top: 21px;
  line-height: 28px;
}
.single-post .entry-author-info .user-social {
  list-style: none;
  margin: 0;
  margin-top: 10px;
  padding-left: 30px;
}
.single-post .entry-author-info .user-social li {
  display: inline-block;
}
.single-post .entry-author-info .user-social li a {
  padding: 0 10px 0 11px;
  font-size: 16px;
  color: #2a2a2a;
  display: inline-block;
  overflow: hidden;
  text-align: center;
  border-right: 1px solid #e2e2e2;
}
.single-post .entry-author-info .user-social li a:hover i {
  -webkit-animation: toTopFromBottom 0.3s forwards;
  -khtml-animation: toTopFromBottom 0.3s forwards;
  -moz-animation: toTopFromBottom 0.3s forwards;
  -ms-animation: toTopFromBottom 0.3s forwards;
  -o-animation: toTopFromBottom 0.3s forwards;
  animation: toTopFromBottom 0.3s forwards;
}
.single-post .entry-content .page-links {
  margin-bottom: 30px;
}
.cms-related-post {
  border-bottom: 2px solid #d9d9d9;
  padding-bottom: 35px;
  margin-bottom: 37px;
}
.cms-related-post .item-featured img {
  -webkit-border-radius: 2px;
  -khtml-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  border-radius: 2px;
}
.cms-related-post .item-title {
  font-size: 16px;
  font-weight: 600;
  margin: 16px 0 0;
}
.cms-related-post .item-title a {
  color: inherit;
}
.cms-related-post .item-title a:hover {
  color: #ee1d22;
}
.page-header h1 {
  font-weight: 700;
}
.no-results .search-form .searchform-wrap {
  position: relative;
}
.no-results .search-form .searchform-wrap .search-submit {
  position: absolute;
  top: 0px;
  right: 20px;
  background-color: transparent;
  color: #666;
  height: 75px;
}
.no-results .search-form .searchform-wrap input {
  height: 75px;
  background-color: #fff;
  border-radius: 5px 50px 5px 5px;
  border: 1px solid #d2d2d2;
  padding: 0 50px 0 35px;
  font-size: 18px;
  font-weight: 400;
}
.search-sorry {
  font-family: Poppins !important;
  color: #2a2a2a;
  font-weight: 400;
}
img.image-space {
  margin-top: 9px;
  margin-bottom: 6px;
}
.single-post #primary.content-full-width, .page-template-blog-classic #primary.content-full-width {
  max-width: 800px;
  margin: auto;
}
.single-post #content {
  padding-top: 57px;
  padding-bottom: 75px;
}
@media screen and (max-width: 991px) {
  .single-post #content {
    padding-top: 0px;
    padding-bottom: 70px;
  }
}
body.search-results .single-hentry .entry-featured {
  margin-bottom: 0;
}
body.search-results .single-hentry .entry-body {
  padding: 32px 40px 40px;
  background-color: #fff;
  -webkit-box-shadow: 0 5px 83px rgba(40, 40, 40, 0.08);
  -khtml-box-shadow: 0 5px 83px rgba(40, 40, 40, 0.08);
  -moz-box-shadow: 0 5px 83px rgba(40, 40, 40, 0.08);
  -ms-box-shadow: 0 5px 83px rgba(40, 40, 40, 0.08);
  -o-box-shadow: 0 5px 83px rgba(40, 40, 40, 0.08);
  box-shadow: 0 5px 83px rgba(40, 40, 40, 0.08);
}
@media screen and (max-width: 1199px) {
  body.search-results .single-hentry .entry-body {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (max-width: 991px) {
  body.search-results .single-hentry .entry-body {
    padding: 30px 20px;
  }
}
.tax-case-study-category .entry-meta .item-category, .tax-case-study-category .entry-meta .item-comment {
  display: none;
}
.post-footer .post-footer-holder {
  border: 1px solid #e7ebef;
  margin-bottom: 50px;
  -webkit-border-radius: 2px;
  -khtml-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  border-radius: 2px;
  display: flex;
  flex-wrap: wrap;
}
.post-footer .post-footer-holder > div {
  width: 50%;
  padding: 23px 30px;
}
.post-footer .post-footer-holder > div + div {
  border-left: 1px solid #e7ebef;
}
@media screen and (max-width: 767px) {
  .post-footer .post-footer-holder > div + div {
    border-top: 1px solid #e7ebef;
    border-left: none;
    justify-content: flex-start;
  }
}
@media screen and (max-width: 767px) {
  .post-footer .post-footer-holder > div {
    width: 100%;
  }
}
.post-footer .post-footer-tag {
  font-size: 14px;
  color: #ee1d22;
}
.post-footer .post-footer-tag a {
  color: inherit;
}
.post-footer .post-footer-tag label {
  font-size: 16px;
  color: #0b2653;
  font-weight: 700;
  display: block;
  margin-bottom: 17px;
}
.post-footer .post-footer-social-share {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}
.post-footer .post-footer-social-share a {
  width: 54px;
  height: 54px;
  background-color: #2a2a2a;
  -webkit-border-radius: 2px;
  -khtml-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  border-radius: 2px;
  line-height: 54px;
  color: #fff;
  text-align: center;
  display: inline-block;
}
.post-footer .post-footer-social-share a:hover {
  background-color: #ee1d22;
}
.post-footer .post-footer-social-share a span {
  font-size: 14px;
  font-weight: 700;
  color: #f9f9f9;
  display: none;
}
.post-footer .post-footer-social-share a:hover {
  background-color: #ee1d22;
}
.post-footer .post-footer-social-share a + a {
  margin-left: 16px;
}
.post-footer .post-footer-navigation .nav-post-meta {
  max-width: 200px;
}
.post-footer .post-footer-navigation .nav-post-meta label {
  font-size: 13px;
  display: block;
  margin-top: -3px;
}
.post-footer .post-footer-navigation .nav-post-meta a {
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
  color: #0b2653;
}
.post-footer .post-footer-navigation .nav-post-meta a:hover {
  color: #ee1d22;
}
.post-footer .post-footer-navigation .nav-post-img {
  width: 90px;
  min-width: 90px;
  margin-right: 20px;
}
.post-footer .post-footer-navigation .nav-post-img img {
  -webkit-border-radius: 2px;
  -khtml-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  border-radius: 2px;
}
.post-footer .post-footer-navigation .nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 -15px;
  position: relative;
}
.post-footer .post-footer-navigation .nav-item {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  width: 50%;
  padding: 0 45px;
}
@media screen and (min-width: 576px) {
  .post-footer .post-footer-navigation .nav-item.nav-post-next {
    flex-direction: row-reverse;
    text-align: right;
  }
  .post-footer .post-footer-navigation .nav-item.nav-post-next .nav-post-img {
    margin-right: 0;
    margin-left: 20px;
  }
}
@media screen and (max-width: 575px) {
  .post-footer .post-footer-navigation .nav-item {
    width: 100%;
    align-items: flex-start;
  }
  .post-footer .post-footer-navigation .nav-item + .nav-post-archive + .nav-item {
    margin-top: 90px;
  }
}
.post-footer .post-footer-navigation .nav-post-archive {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.post-footer .post-footer-navigation .nav-post-archive a {
  font-size: 22px;
}
.css-events-list table.events-table td {
  padding: 10px 15px;
}
.body-postsingle {
  /* Single Case */
  /* Single Service */
}
.body-postsingle .entry-body .item-category {
  padding-top: 32px;
}
.body-postsingle .entry-body .item-category a {
  font-family: Barlow Condensed;
  font-size: 20px;
  line-height: 30px;
  color: #ee1d22;
  text-transform: uppercase;
  font-weight: 400;
}
.wrap-entry-bottom {
  margin-top: 60px;
}
@media screen and (min-width: 1200px) {
  .wrap-entry-bottom {
    margin-bottom: 89px;
  }
}
.wrap-entry-bottom .mw-entry-bottom {
  display: flex;
  justify-content: space-between;
  margin: auto 0 auto auto;
  align-items: center;
}
@media screen and (min-width: 1024px) {
  .wrap-entry-bottom .mw-entry-bottom {
    max-width: 66%;
  }
}
@media screen and (max-width: 575px) {
  .wrap-entry-bottom .mw-entry-bottom {
    text-align: center;
    display: block;
  }
}
.wrap-entry-bottom .mw-entry-bottom .entry-social .entry-social-share {
  padding-right: 0;
}
@media screen and (max-width: 575px) {
  .wrap-entry-bottom .mw-entry-bottom .entry-social .entry-social-share {
    margin-top: 20px;
  }
}
.wrap-entry-bottom .mw-entry-bottom .entry-social .social-sv a {
  display: inline-flex;
  width: 51px;
  height: 51px;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: #2a2a2a;
  border-radius: 50px;
  border: 1px solid #eaeaea;
  -webkit-transition: 300ms all linear 0ms;
  -khtml-transition: 300ms all linear 0ms;
  -moz-transition: 300ms all linear 0ms;
  -ms-transition: 300ms all linear 0ms;
  -o-transition: 300ms all linear 0ms;
  transition: 300ms all linear 0ms;
}
.wrap-entry-bottom .mw-entry-bottom .entry-social .social-sv a:hover {
  color: #fff;
  background-color: #ee1d22;
  border-color: #ee1d22;
}
.wrap-entry-bottom .mw-entry-bottom .nav-service-prev + .nav-service-next {
  display: none;
}
.wrap-entry-bottom .mw-entry-bottom .nav-service-prev {
  display: flex;
  position: relative;
  align-items: center;
}
.wrap-entry-bottom .mw-entry-bottom .nav-service-prev .nav-service-meta {
  padding-left: 14px;
}
.wrap-entry-bottom .mw-entry-bottom .nav-service-prev .nav-service-meta a {
  font-size: 28px;
  line-height: 31px;
  color: #666;
  font-weight: 500;
}
.wrap-entry-bottom .mw-entry-bottom .nav-service-prev .nav-service-img {
  max-height: 96px;
  overflow: hidden;
  position: relative;
}
.wrap-entry-bottom .mw-entry-bottom .nav-service-prev .nav-service-img:after {
  position: absolute;
  background-color: #ee1d22;
  content: "";
  top: 0;
  right: 0;
  height: 100%;
  width: 0%;
  opacity: 0.7;
  z-index: 1;
  -webkit-transition: 200ms all linear 0ms;
  -khtml-transition: 200ms all linear 0ms;
  -moz-transition: 200ms all linear 0ms;
  -ms-transition: 200ms all linear 0ms;
  -o-transition: 200ms all linear 0ms;
  transition: 200ms all linear 0ms;
  pointer-events: none;
}
.wrap-entry-bottom .mw-entry-bottom .nav-service-prev .nav-service-img:before {
  pointer-events: none;
  position: absolute;
  top: 1px;
  left: 0;
  font-family: "Font Awesome 5 Pro";
  content: "\f053";
  font-size: 16px;
  line-height: 96px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
  color: #fff;
  font-weight: 200;
  z-index: 2;
  opacity: 0;
  -webkit-transition: 200ms all linear 0ms;
  -khtml-transition: 200ms all linear 0ms;
  -moz-transition: 200ms all linear 0ms;
  -ms-transition: 200ms all linear 0ms;
  -o-transition: 200ms all linear 0ms;
  transition: 200ms all linear 0ms;
}
.wrap-entry-bottom .mw-entry-bottom .nav-service-prev .nav-service-img img {
  width: 96px;
}
.wrap-entry-bottom .mw-entry-bottom .nav-service-prev:hover .nav-service-img:before {
  opacity: 1;
}
.wrap-entry-bottom .mw-entry-bottom .nav-service-prev:hover .nav-service-img:after {
  left: 0;
  width: 100%;
}
.wrap-entry-bottom .mw-entry-bottom .nav-service-next {
  display: flex;
  position: relative;
  align-items: center;
}
.wrap-entry-bottom .mw-entry-bottom .nav-service-next .nav-service-meta {
  padding-left: 14px;
}
.wrap-entry-bottom .mw-entry-bottom .nav-service-next .nav-service-meta a {
  font-size: 28px;
  line-height: 31px;
  color: #666;
  font-weight: 500;
}
.wrap-entry-bottom .mw-entry-bottom .nav-service-next .nav-service-img {
  max-height: 96px;
  overflow: hidden;
  position: relative;
}
.wrap-entry-bottom .mw-entry-bottom .nav-service-next .nav-service-img:after {
  position: absolute;
  background-color: #ee1d22;
  content: "";
  top: 0;
  right: 0;
  height: 100%;
  width: 0%;
  opacity: 0.7;
  z-index: 1;
  -webkit-transition: 200ms all linear 0ms;
  -khtml-transition: 200ms all linear 0ms;
  -moz-transition: 200ms all linear 0ms;
  -ms-transition: 200ms all linear 0ms;
  -o-transition: 200ms all linear 0ms;
  transition: 200ms all linear 0ms;
  pointer-events: none;
}
.wrap-entry-bottom .mw-entry-bottom .nav-service-next .nav-service-img:before {
  pointer-events: none;
  position: absolute;
  top: 1px;
  left: 0;
  font-family: "Font Awesome 5 Pro";
  content: "\f054";
  font-size: 16px;
  line-height: 96px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
  color: #fff;
  font-weight: 200;
  z-index: 2;
  opacity: 0;
  -webkit-transition: 200ms all linear 0ms;
  -khtml-transition: 200ms all linear 0ms;
  -moz-transition: 200ms all linear 0ms;
  -ms-transition: 200ms all linear 0ms;
  -o-transition: 200ms all linear 0ms;
  transition: 200ms all linear 0ms;
}
.wrap-entry-bottom .mw-entry-bottom .nav-service-next .nav-service-img img {
  width: 96px;
}
.wrap-entry-bottom .mw-entry-bottom .nav-service-next:hover .nav-service-img:before {
  opacity: 1;
}
.wrap-entry-bottom .mw-entry-bottom .nav-service-next:hover .nav-service-img:after {
  left: 0;
  width: 100%;
}
.social-share-archive {
  position: absolute;
  right: 37px;
  bottom: 24px;
}
@media screen and (max-width: 575px) {
  .social-share-archive {
    left: 20px;
    bottom: 100px;
  }
}
.social-share-archive a {
  display: inline-flex !important;
  width: 49px;
  height: 49px;
  color: #fff;
  border-radius: 50px;
  align-items: center;
  justify-content: center;
  -webkit-transition: 300ms all linear 0ms;
  -khtml-transition: 300ms all linear 0ms;
  -moz-transition: 300ms all linear 0ms;
  -ms-transition: 300ms all linear 0ms;
  -o-transition: 300ms all linear 0ms;
  transition: 300ms all linear 0ms;
  opacity: 0;
}
.social-share-archive a i {
  -webkit-transition: 300ms all linear 0ms;
  -khtml-transition: 300ms all linear 0ms;
  -moz-transition: 300ms all linear 0ms;
  -ms-transition: 300ms all linear 0ms;
  -o-transition: 300ms all linear 0ms;
  transition: 300ms all linear 0ms;
}
.social-share-archive a:hover i {
  color: #fff;
  transform: rotatey(360deg);
}
.social-share-archive a:nth-last-child(1) {
  background-color: #3f6eb3;
  margin-bottom: -10px;
  -webkit-transition: 300ms all linear 0ms;
  -khtml-transition: 300ms all linear 0ms;
  -moz-transition: 300ms all linear 0ms;
  -ms-transition: 300ms all linear 0ms;
  -o-transition: 300ms all linear 0ms;
  transition: 300ms all linear 0ms;
}
.social-share-archive a:nth-last-child(2) {
  background-color: #d93333;
  -webkit-transition: 300ms all linear 200ms;
  -khtml-transition: 300ms all linear 200ms;
  -moz-transition: 300ms all linear 200ms;
  -ms-transition: 300ms all linear 200ms;
  -o-transition: 300ms all linear 200ms;
  transition: 300ms all linear 200ms;
  margin-bottom: -20px;
}
.social-share-archive a:nth-last-child(3) {
  background-color: #204099;
  -webkit-transition: 300ms all linear 400ms;
  -khtml-transition: 300ms all linear 400ms;
  -moz-transition: 300ms all linear 400ms;
  -ms-transition: 300ms all linear 400ms;
  -o-transition: 300ms all linear 400ms;
  transition: 300ms all linear 400ms;
  margin-bottom: -30px;
}
.social-share-archive a:nth-last-child(4) {
  background-color: #204099;
  margin-bottom: -30px;
  -webkit-transition: 300ms all linear 600ms;
  -khtml-transition: 300ms all linear 600ms;
  -moz-transition: 300ms all linear 600ms;
  -ms-transition: 300ms all linear 600ms;
  -o-transition: 300ms all linear 600ms;
  transition: 300ms all linear 600ms;
}
.single-hentry.archive:hover .social-share-archive a {
  margin-bottom: 0;
  opacity: 1;
}
.widget-title, .comments-title, .comment-reply-title {
  font-size: 22px;
  position: relative;
  margin-bottom: 23px;
  padding-bottom: 5px;
}
.comments-title, .comment-reply-title {
  margin-bottom: 25px;
  font-size: 26px;
}
.comments-title {
  display: inline-block;
  padding-bottom: 5px;
}
.widget_nav_menu a {
  font-size: 20px !important;
  color: #2a2a2a;
}
.widget_nav_menu a:hover {
  color: #ee1d22 !important;
}
.widget_text {
  padding: 0 !important;
  background-color: #fff !important;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.widget_text .contact-form-1 .ctf-post .ctf-post-1 {
  padding: 31px 50px 40px 50px;
  background-color: #51cfed;
  background-image: url('../images/phone-wgtext.png');
  background-repeat: no-repeat;
  background-position: 194px 197px;
}
@media screen and (max-width: 450px) {
  .widget_text .contact-form-1 .ctf-post .ctf-post-1 {
    padding: 33px 20px 30px 20px;
  }
}
.widget_text .contact-form-1 .ctf-post .ctf-post-1 .title-ctf {
  font-family: Barlow Condensed;
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  line-height: 32px;
  margin-bottom: 11px;
}
.widget_text .contact-form-1 .ctf-post .ctf-post-1 a {
  font-family: Barlow Condensed;
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  line-height: 32px;
}
.widget_text .contact-form-1 .ctf-post .ctf-post-1 .sub-title {
  font-family: Poppins;
  font-size: 16px;
  line-height: 25px;
  font-weight: 400;
  color: #fff;
  padding-bottom: 19px;
  padding-top: 11px;
}
.widget_text .contact-form-1 .ctf-post .ctf-post-2 {
  padding: 41px 50px 54px 50px;
}
@media screen and (max-width: 450px) {
  .widget_text .contact-form-1 .ctf-post .ctf-post-2 {
    padding: 33px 20px 30px 20px;
  }
}
.widget_text .contact-form-1 .ctf-post .ctf-post-2 .intro-title {
  font-family: Barlow Condensed;
  color: #666;
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
}
.widget_text .contact-form-1 .ctf-post .ctf-post-2 .sub-introtitle {
  font-family: Poppins;
  font-size: 16px;
  line-height: 25px;
  font-weight: 400;
  color: #666;
  padding-top: 15px;
  margin-bottom: 36px;
}
.widget_text .contact-form-1 .ctf-post .ctf-post-2 a {
  background-color: #ee1d22;
  width: 190px;
  color: #fff;
  display: inline-flex;
  justify-content: center;
  border-radius: 50px;
  height: 50px;
  align-items: center;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1px;
  -webkit-transition: 300ms all linear 0ms;
  -khtml-transition: 300ms all linear 0ms;
  -moz-transition: 300ms all linear 0ms;
  -ms-transition: 300ms all linear 0ms;
  -o-transition: 300ms all linear 0ms;
  transition: 300ms all linear 0ms;
}
.widget_text .contact-form-1 .ctf-post .ctf-post-2 a:hover {
  background-color: #2a2a2a;
}
.widget_media_gallery .gallery {
  padding-bottom: 8px;
}
.widget_media_gallery .widget-title {
  padding-top: 35px;
  padding-left: 2px;
  font-size: 28px;
  margin-bottom: 17px !important;
  font-weight: bold;
  color: #2a2a2a;
}
.widget-title {
  padding-top: 35px;
  padding-left: 2px;
  padding-bottom: 4px;
  font-size: 28px;
  margin-bottom: 26px !important;
  font-weight: bold;
  color: #2a2a2a;
  text-transform: uppercase;
}
#secondary .widget {
  margin-bottom: 29px;
  position: relative;
}
@media screen and (max-width: 767px) {
  #secondary .widget {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 991px) {
  #secondary .widget.widget_cms_recent_posts {
    padding-right: 15px;
  }
}
#secondary .widget:last-child {
  margin-top: 29px;
  margin-bottom: 0;
}
#secondary .widget select {
  max-width: 100%;
}
#secondary .widget .gallery {
  margin: 0 -4px 0px -4px;
  display: flex;
  flex-wrap: wrap;
}
#secondary .widget .gallery img {
  width: 100%;
}
#secondary .widget .gallery .gallery-item {
  padding: 8px 8px;
  margin-top: 0px;
  margin-bottom: 0;
}
#secondary .widget .gallery.gallery-columns-2 .gallery-item {
  width: 50%;
}
#secondary .widget .gallery.gallery-columns-3 .gallery-item {
  width: 33.33%;
}
#secondary .widget .gallery.gallery-columns-4 .gallery-item {
  width: 25%;
}
#secondary .widget .gallery.gallery-columns-5 .gallery-item {
  width: 20%;
}
ul.menu {
  list-style: none;
  margin: 0;
}
.search-form {
  position: relative;
}
.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_product_categories ul, .widget_categories ul, .cs-recent-service ul, .widget_nav_menu ul, .widget_pages ul, .widget_archive ul, .widget_meta ul {
  list-style: none;
  margin-bottom: 0;
}
#content .widget_product_categories ul ul ul ul ul, #content .widget_categories ul ul ul ul ul, #content .cs-recent-service 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 {
  padding-left: 0;
}
#content .widget_product_categories .widget-title, #content .widget_categories .widget-title, #content .cs-recent-service .widget-title, #content .widget_nav_menu .widget-title, #content .widget_pages .widget-title, #content .widget_archive .widget-title, #content .widget_meta .widget-title {
  margin-bottom: 20px;
}
#content .widget_product_categories ul li a, #content .widget_categories ul li a, #content .cs-recent-service 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 {
  line-height: 32px;
  display: block;
  position: relative;
  z-index: 2;
  -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 .widget_product_categories ul li a:hover, #content .widget_categories ul li a:hover, #content .cs-recent-service 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 {
  color: #fff;
}
#content .widget_product_categories ul li .sub-menu, #content .widget_categories ul li .sub-menu, #content .cs-recent-service 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_product_categories ul li .children, #content .widget_categories ul li .children, #content .cs-recent-service ul li .children, #content .widget_nav_menu ul li .children, #content .widget_pages ul li .children, #content .widget_archive ul li .children, #content .widget_meta ul li .children {
  padding-left: 12px;
}
#content .widget_product_categories ul li .count, #content .widget_categories ul li .count, #content .cs-recent-service ul li .count, #content .widget_nav_menu ul li .count, #content .widget_pages ul li .count, #content .widget_archive ul li .count, #content .widget_meta ul li .count {
  -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;
  float: right;
  display: inline-block;
  -webkit-border-radius: 2px;
  -khtml-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  border-radius: 2px;
  line-height: 24px;
  text-align: center;
  color: #444;
  font-size: 20px;
  font-family: Barlow Condensed;
  font-weight: 400;
  line-height: 53px;
}
#content .widget_product_categories .current-cat a, #content .widget_categories .current-cat a, #content .cs-recent-service .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 {
  background-color: #ee1d22;
  pointer-events: none;
}
#content .widget_product_categories .current-cat > a, #content .widget_categories .current-cat > a, #content .cs-recent-service .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_product_categories .current-cat-parent > a, #content .widget_categories .current-cat-parent > a, #content .cs-recent-service .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_product_categories .current-cat-ancestor > a, #content .widget_categories .current-cat-ancestor > a, #content .cs-recent-service .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 {
  color: #fff;
}
#content .widget_product_categories .current-cat > a:before, #content .widget_categories .current-cat > a:before, #content .cs-recent-service .current-cat > a:before, #content .widget_nav_menu .current-cat > a:before, #content .widget_pages .current-cat > a:before, #content .widget_archive .current-cat > a:before, #content .widget_meta .current-cat > a:before, #content .widget_product_categories .current-cat-parent > a:before, #content .widget_categories .current-cat-parent > a:before, #content .cs-recent-service .current-cat-parent > a:before, #content .widget_nav_menu .current-cat-parent > a:before, #content .widget_pages .current-cat-parent > a:before, #content .widget_archive .current-cat-parent > a:before, #content .widget_meta .current-cat-parent > a:before, #content .widget_product_categories .current-cat-ancestor > a:before, #content .widget_categories .current-cat-ancestor > a:before, #content .cs-recent-service .current-cat-ancestor > a:before, #content .widget_nav_menu .current-cat-ancestor > a:before, #content .widget_pages .current-cat-ancestor > a:before, #content .widget_archive .current-cat-ancestor > a:before, #content .widget_meta .current-cat-ancestor > a:before {
  color: #fff;
}
#content .widget_product_categories .nice-select ul li, #content .widget_categories .nice-select ul li, #content .cs-recent-service .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 {
  font-size: 14px;
  line-height: normal;
}
.widget_recent_entries, .widget_recent_comments, .widget_block {
  padding: 30px;
  border: 1px solid rgba(102, 102, 102, 0.15);
}
@media screen and (max-width: 767px) {
  .widget_recent_entries, .widget_recent_comments, .widget_block {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.widget_recent_entries a, .widget_recent_comments a, .widget_block a {
  color: #282828;
}
.widget_recent_entries a:hover, .widget_recent_comments a:hover, .widget_block a:hover {
  color: #ee1d22;
}
.widget_recent_entries li, .widget_recent_comments li, .widget_block li {
  margin-top: 11px;
  padding-top: 11px;
}
.widget_recent_entries li + li, .widget_recent_comments li + li, .widget_block li + li {
  border-top: 1px solid rgba(102, 102, 102, 0.15);
}
.widget_recent_entries li:first-child, .widget_recent_comments li:first-child, .widget_block li:first-child {
  padding-top: 0;
  margin-top: 0;
}
.widget_rss li {
  border-bottom: 1px solid #d2d2d2;
}
.widget_rss li:last-child {
  border: none;
}
.widget_rss li cite {
  padding-bottom: 2px;
}
.widget_categories, .widget_pages, .widget_archive {
  border: none !important;
}
.widget_categories .widget-title, .widget_pages .widget-title, .widget_archive .widget-title {
  padding-top: 37px;
  font-size: 30px;
  margin-bottom: 11px !important;
  padding-bottom: 9px;
  font-weight: bold;
  color: #2a2a2a;
}
.widget_categories ul li, .widget_pages ul li, .widget_archive 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;
}
.widget_categories ul li a, .widget_pages ul li a, .widget_archive ul li a {
  padding-left: 31px;
  padding-right: 35px;
  line-height: 53px !important;
  font-size: 20px !important;
  color: #444;
  font-weight: 500;
  background-color: #fff;
  position: relative;
  font-family: Barlow Condensed;
  -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;
}
.widget_categories ul li a:hover, .widget_pages ul li a:hover, .widget_archive ul li a:hover {
  background-color: #ee1d22 !important;
}
.widget_categories ul li a:hover span, .widget_pages ul li a:hover span, .widget_archive ul li a:hover span {
  color: #fff !important;
}
.widget_categories ul li:nth-child(odd) a, .widget_pages ul li:nth-child(odd) a, .widget_archive ul li:nth-child(odd) a {
  background-color: #fcfcfc;
}
.widget_categories ul li:nth-child(even) a, .widget_pages ul li:nth-child(even) a, .widget_archive ul li:nth-child(even) a {
  background-color: #f8f8f8;
}
.widget_recent_comments li, .widget_recent_entries li, .widget_rss li, .widget_block li, .widget_recent_comments a, .widget_recent_entries a, .widget_rss a, .widget_block a {
  font-size: 20px;
}
.widget_recent_comments .recentcomments > a, .widget_recent_entries .recentcomments > a, .widget_rss .recentcomments > a, .widget_block .recentcomments > a {
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  color: #2a2a2a;
  display: block;
}
.widget_recent_comments .recentcomments > a:hover, .widget_recent_entries .recentcomments > a:hover, .widget_rss .recentcomments > a:hover, .widget_block .recentcomments > a:hover {
  color: #ee1d22;
}
.widget_recent_comments .recentcomments > a:before, .widget_recent_entries .recentcomments > a:before, .widget_rss .recentcomments > a:before, .widget_block .recentcomments > a:before {
  content: '\A';
  white-space: pre;
}
.widget_rss ul {
  list-style: none;
  padding: 0;
}
.widget_rss li {
  margin-bottom: 16px;
  padding-bottom: 16px;
}
.widget_rss li:last-child {
  margin-bottom: 0;
}
.widget_rss .rsswidget {
  font-weight: 700;
  display: inline-block;
}
.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 table > caption {
  padding-bottom: 0;
  text-align: center;
  color: inherit;
}
.widget_calendar .wp-calendar-nav {
  text-align: center;
}
.widget_calendar .wp-calendar-table {
  margin-bottom: 0;
}
.elementor-widget-wp-widget-nav_menu .elementor-widget-container {
  border: 1px solid #d2d2d2;
  padding: 40px 51px 37px 51px;
}
@media screen and (max-width: 450px) {
  .elementor-widget-wp-widget-nav_menu .elementor-widget-container {
    padding: 33px 20px 30px 20px;
  }
}
.elementor-widget-wp-widget-nav_menu .elementor-widget-container h5 {
  font-size: 28px;
  line-height: 32px;
  font-weight: 700;
  font-family: Barlow Condensed;
  color: #666;
  border-bottom: 1px solid #ddd;
  padding-bottom: 8px;
}
.elementor-widget-wp-widget-nav_menu .elementor-widget-container .menu-service-categories-container {
  margin-top: 26px;
}
.elementor-widget-wp-widget-nav_menu .elementor-widget-container .menu-service-categories-container 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;
}
.elementor-widget-wp-widget-nav_menu .elementor-widget-container .menu-service-categories-container li a {
  display: block;
  padding-left: 23px;
  line-height: 45px !important;
  font-size: 22px !important;
  color: #2a2a2a;
  font-weight: 500;
  background-color: #fff;
  font-family: Barlow Condensed;
  -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;
}
.elementor-widget-wp-widget-nav_menu .elementor-widget-container .menu-service-categories-container li a:hover {
  background-color: #ee1d22;
  color: #fff;
}
.cms-social {
  margin: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
.cms-social li {
  display: inline-block;
  margin: 0 10px 10px 0;
}
.cms-social a {
  font-size: 17px;
  height: 44px;
  width: 44px;
  border: 2px solid #253b61;
  -webkit-border-radius: 44px;
  -khtml-border-radius: 44px;
  -moz-border-radius: 44px;
  -ms-border-radius: 44px;
  -o-border-radius: 44px;
  border-radius: 44px;
  color: #ee1d22;
  text-align: center;
  display: inline-block;
  position: relative;
}
.cms-social a 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%);
}
.cms-social a:hover {
  color: #fff;
  background-color: #ee1d22;
  border-color: #ee1d22;
}
.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;
}
.widget_newsletterwidget {
  background-color: #111;
  padding: 32px 40px 40px 40px;
  -webkit-border-radius: 10px;
  -khtml-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .widget_newsletterwidget {
    background-color: #000;
  }
}
@media screen and (max-width: 1199px) {
  .widget_newsletterwidget {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.widget_newsletterwidget .description {
  padding-bottom: 23px;
  color: #fff;
  font-weight: 700;
}
.widget_newsletterwidget .tnp-widget {
  position: relative;
}
.widget_newsletterwidget .tnp-widget .tnp-field-email {
  margin-bottom: 0;
}
.widget_newsletterwidget .tnp-widget .tnp-field-email .tnp-email {
  height: 54px;
  -webkit-border-radius: 54px;
  -khtml-border-radius: 54px;
  -moz-border-radius: 54px;
  -ms-border-radius: 54px;
  -o-border-radius: 54px;
  border-radius: 54px;
  background-color: transparent;
  border: 2px solid #2f2e2e;
  background-color: transparent;
  font-size: 13px;
  color: #9b9b9b;
  font-style: normal;
  padding: 0 28px;
}
.widget_newsletterwidget .tnp-widget .tnp-field-email .tnp-email:focus {
  border-color: #ee1d22;
}
.widget_newsletterwidget .tnp-widget .tnp-field-button {
  margin: 0;
  width: 54px;
  height: 54px;
  position: absolute;
  top: 0;
  right: 0;
}
.widget_newsletterwidget .tnp-widget .tnp-field-button:before {
  content: '\f061';
  font-size: 12px;
  color: #fff;
  height: 30px;
  width: 30px;
  line-height: 30px;
  -webkit-border-radius: 30px;
  -khtml-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  border-radius: 30px;
  background-color: #ee1d22;
  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%);
  font-family: "Font Awesome 5 Pro";
  text-align: center;
}
.widget_newsletterwidget .tnp-widget .tnp-field-button .tnp-submit {
  top: 0;
  right: 0;
  opacity: 0;
  padding: 0;
  height: 54px;
  width: 54px;
  position: absolute;
}
.widget_cms_recent_posts, .widget_block {
  padding-bottom: 42px !important;
  border: 1px solid #ebebeb;
}
.widget_cms_recent_posts .widget-title, .widget_block .widget-title, .widget_cms_recent_posts h2, .widget_block h2 {
  padding-top: 35px;
  font-size: 28px;
  margin-bottom: 26px !important;
  padding-bottom: 4px;
  font-weight: bold;
  color: #2a2a2a;
  text-transform: uppercase;
}
@media screen and (max-width: 575px) {
  .widget_cms_recent_posts .widget-title, .widget_block .widget-title, .widget_cms_recent_posts h2, .widget_block h2 {
    padding-top: 0 !important;
  }
}
@media screen and (max-width: 575px) {
  .widget_cms_recent_posts, .widget_block {
    padding-bottom: 20px !important;
  }
}
.widget_cms_recent_posts .entry-media, .widget_block .entry-media {
  width: 85px;
  min-width: 85px;
  margin-right: 14px;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .widget_cms_recent_posts .entry-media, .widget_block .entry-media {
    width: 60px;
    min-width: 60px;
    margin-right: 16px;
  }
}
.widget_cms_recent_posts .entry-media img, .widget_block .entry-media img {
  -webkit-transition: 300ms all linear 0ms;
  -khtml-transition: 300ms all linear 0ms;
  -moz-transition: 300ms all linear 0ms;
  -ms-transition: 300ms all linear 0ms;
  -o-transition: 300ms all linear 0ms;
  transition: 300ms all linear 0ms;
}
.widget_cms_recent_posts .entry-title, .widget_block .entry-title {
  font-size: 22px;
  color: #2a2a2a;
  font-family: Barlow Condensed;
  font-weight: 600;
  line-height: 26px;
}
.widget_cms_recent_posts .entry-date, .widget_block .entry-date {
  font-size: 18px;
  margin-bottom: 2px;
  color: #ee1d22;
  font-family: Barlow Condensed;
  text-transform: uppercase;
  font-weight: 700;
}
.widget_cms_recent_posts .entry-content, .widget_block .entry-content {
  margin-bottom: 0;
  margin-top: -3px;
}
.widget_cms_recent_posts .post-item, .widget_block .post-item {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  padding-bottom: 8px;
  margin-bottom: 17px;
}
.widget_cms_recent_posts .post-item:last-child, .widget_block .post-item:last-child {
  margin-bottom: 0;
  padding-bottom: 13px;
  border: none;
}
.widget_cms_recent_posts .post-item:hover .entry-media, .widget_block .post-item:hover .entry-media {
  overflow: hidden;
  -webkit-transition: 0.3 all linear 300ms;
  -khtml-transition: 0.3 all linear 300ms;
  -moz-transition: 0.3 all linear 300ms;
  -ms-transition: 0.3 all linear 300ms;
  -o-transition: 0.3 all linear 300ms;
  transition: 0.3 all linear 300ms;
}
.widget_cms_recent_posts .post-item:hover .entry-media img, .widget_block .post-item:hover .entry-media img {
  transform: scale(1.1);
}
.tagcloud {
  display: flex;
  flex-wrap: wrap;
}
.tagcloud a {
  flex-grow: 1;
  text-align: center;
  color: #666;
  display: inline-block;
  line-height: 28px;
  padding: 6px 12px;
  margin-bottom: 10px;
  margin-right: 10px;
  -webkit-border-radius: 1px;
  -khtml-border-radius: 1px;
  -moz-border-radius: 1px;
  -ms-border-radius: 1px;
  -o-border-radius: 1px;
  border-radius: 1px;
}
.tagcloud a:hover {
  background-color: #ee1d22;
  color: #fff;
}
.widget_text .widget-content {
  padding: 0px 39px 33px 39px;
}
.widget_tag_cloud .widget-content {
  padding: 30px 0 15px 0;
}
.widget_tag_cloud a {
  font-family: Poppins;
  font-size: 14px !important;
  color: #666;
  background-color: #fff;
  font-weight: 400;
  -webkit-transition: 0ms all linear 0ms;
  -khtml-transition: 0ms all linear 0ms;
  -moz-transition: 0ms all linear 0ms;
  -ms-transition: 0ms all linear 0ms;
  -o-transition: 0ms all linear 0ms;
  transition: 0ms all linear 0ms;
  background-color: #eaeaea;
}
.widget_tag_cloud a:hover {
  background-color: #ee1d22;
}
.widget_block a {
  color: #2a2a2a;
}
.widget_block a:hover {
  color: #ee1d22;
}
.widget_search.widget_block.widget {
  padding: 0 39px 33px 39px;
}
.widget_search.widget_block label {
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 25px;
  font-weight: bold;
  color: #666;
}
.widget_search.widget_block button:hover {
  color: #ee1d22;
}
.widget_search.widget_block .wp-block-search__label {
  padding-top: 35px;
  font-size: 28px;
  margin-bottom: 26px !important;
  padding-bottom: 4px;
  font-weight: bold;
  color: #2a2a2a;
  text-transform: uppercase;
}
.widget_search input {
  border: 1px solid #d2d2d2;
  height: 60px;
}
.widget_search.widget {
  position: relative;
  padding: 20px;
}
.widget_search .wp-block-search__inside-wrapper {
  position: relative;
}
.widget_search .widget-title {
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 25px;
  font-weight: bold;
  color: #666;
}
.widget_search .wp-block-search__button {
  background-color: transparent !important;
  position: absolute;
  top: 0;
  right: 30px !important;
}
.widget_search .search-field {
  padding-right: 70px;
  background-color: #fff;
  padding-left: 30px;
  font-size: 16px;
  height: 60px;
  font-family: Poppins;
}
.widget_search .search-field:focus {
  border-color: #ee1d22;
}
.widget_search ::-webkit-input-placeholder {
  color: #666;
}
.widget_search .search-submit, .widget_search .wp-block-search__button {
  border: none;
  background: none;
  height: 60px;
  line-height: 60px;
  width: 23px;
  font-size: 15px;
  font-weight: 300;
  padding: 0 !important;
  position: absolute;
  top: 0;
  transition: 0.3s;
  right: 20px;
}
.widget_search .search-submit i, .widget_search .wp-block-search__button i {
  font-weight: 400;
  color: #161616;
  font-size: 23px;
  line-height: 60px;
}
.widget_search .search-submit:hover, .widget_search .wp-block-search__button:hover {
  background-position: right;
  transition: 0.3s;
}
.widget {
  border: 1px solid #d2d2d2 !important;
  padding: 0 39px 33px 39px;
  border: none;
}
@media screen and (max-width: 575px) {
  .widget {
    padding: 30px 25px 40px 25px;
  }
  .widget.widget_categories ul li {
    padding: 0 0px 13px 0px;
    margin-bottom: 0;
  }
  .widget.widget_categories .widget-title {
    padding-left: 0;
  }
  .widget.widget_tag_cloud .widget-content {
    padding: 0;
  }
}
.widget div[class*="wp-block-"] {
  margin: 0;
}
#sb_instagram .sbi_item img {
  -webkit-border-radius: 1px !important;
  -khtml-border-radius: 1px !important;
  -moz-border-radius: 1px !important;
  -ms-border-radius: 1px !important;
  -o-border-radius: 1px !important;
  border-radius: 1px !important;
}
#sb_instagram .sbi_item .sbi_photo {
  position: relative;
  opacity: 1 !important;
}
#sb_instagram .sbi_item .sbi_photo:before {
  content: "\f16d";
  color: #fff;
  font-size: 14px;
  font-family: 'Font Awesome 5 Pro';
  z-index: 2;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  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;
}
#sb_instagram .sbi_item .sbi_photo:after {
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  content: "";
  background-color: #ee1d22;
  opacity: 0.95;
  z-index: 1;
  -webkit-border-radius: 1px;
  -khtml-border-radius: 1px;
  -moz-border-radius: 1px;
  -ms-border-radius: 1px;
  -o-border-radius: 1px;
  border-radius: 1px;
  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;
}
#sb_instagram .sbi_item .sbi_photo:hover:before, #sb_instagram .sbi_item .sbi_photo:hover:after {
  opacity: 1;
}
#sb_instagram #sbi_load {
  padding-top: 0 !important;
}
.calendar_wrap table {
  background-color: #fff;
}
.calendar_wrap table td {
  padding: 8px;
  font-size: 14px;
}
.elementor-widget-wrap > .btn-inline.elementor-widget {
  display: inline-block;
  width: auto;
}
.elementor-widget-wrap > .btn-inline.elementor-widget .cms-button-wrapper {
  margin-right: 40px;
  margin-bottom: 30px;
}
.elementor-widget-wrap > .btn-inline.elementor-widget + .elementor-widget-image {
  float: left;
  width: auto;
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.widget_media_gallery, .elementor-widget-wp-widget-media_gallery {
  /***** Tabs Sidebar *****/
}
.widget_media_gallery .gallery .gallery-item, .elementor-widget-wp-widget-media_gallery .gallery .gallery-item {
  padding: 0 5px;
  margin-bottom: 0;
}
.widget_media_gallery .gallery .gallery-item img, .elementor-widget-wp-widget-media_gallery .gallery .gallery-item img {
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
}
.table-cell {
  display: table-cell;
  vertical-align: top;
  min-width: 80px;
}
.table-cell .post-title a {
  color: #2a2a2a;
}
.table-cell:hover .post-title a {
  color: #ee1d22;
}
.table-cell.cell-bottom {
  vertical-align: bottom;
}
.tab-holder {
  padding: 0;
}
.tab-holder ul.nav {
  border: none;
}
.tab-holder ul.nav li {
  display: inherit;
  margin-right: 2px;
  float: left;
  margin-bottom: -1px;
}
.tab-holder ul.nav li a {
  font-size: 14px;
  line-height: 1;
  color: #333;
  text-transform: uppercase;
  padding: 15px 8px;
  border: 1px solid #e9e9e9;
  border-bottom: 1px solid #e9e9e9;
  outline: none;
  background: #f5f5f5;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}
.tab-holder ul.nav li.active a, .tab-holder ul.nav li:hover a {
  background: #fff;
  border-bottom: 1px solid #fff;
}
.tab-content {
  border: 1px solid #e9e9e9;
}
.cs-popular {
  padding: 20px !important;
}
.cs-recent-post .cs-popular {
  padding: 0 !important;
}
.cs-popular li {
  display: block;
  padding: 0px;
  border-bottom: 1px solid #e9e9e9;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.cs-popular li:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.cs-popular .cs-meta img {
  width: 80px;
  height: 80px;
  max-width: 80px;
}
.cs-popular .cs-meta .date {
  background: #f5f5f5;
  font-size: 11px;
  font-weight: bold;
  display: block;
  text-align: center;
  padding: 7px;
  line-height: normal;
}
.cs-popular .cs-meta .date span {
  display: block;
}
.cs-popular .cs-details > h4 {
  font-size: 14px;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 20px;
}
.cs-popular .cs-details .readmore {
  font-size: 13px;
  margin-top: 10px;
  font-weight: bold;
}
.cs-popular .cs-details .description {
  font-size: 13px;
  color: #a0a0a0;
  line-height: 20px;
}
.cs-popular .cs-details {
  padding: 0 0 0 17px;
}
.rtl .cs-popular .cs-details {
  padding: 0 17px 0 0;
}
.cs-recent-post .cs-popular .cs-details {
  padding: 0 0 0 30px;
}
.rtl .cs-recent-post .cs-popular .cs-details {
  padding: 0 30px 0 0;
  /** Comment **/
}
.sh-list-comment {
  padding: 20px !important;
  margin: 0;
}
.sh-list-comment li {
  border-bottom: 1px solid #e9e9e9;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.sh-list-comment li:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.sh-list-comment .image img {
  width: 60px;
  height: 60px;
  max-width: 60px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.sh-list-comment .post-holder {
  font-size: 13px;
  padding-left: 15px;
}
.sh-list-comment .post-holder p {
  margin: 0 0 10px;
}
.sh-list-comment .post-holder a {
  color: #a0a0a0;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.widget_meta .widget-title {
  padding-top: 35px;
  font-size: 28px;
  margin-bottom: 16px !important;
  padding-bottom: 4px;
  font-weight: bold;
  color: #2a2a2a;
  text-transform: uppercase;
}
.widget_meta .widget-content ul {
  padding-bottom: 4px;
}
.widget_meta .widget-content ul li a {
  font-family: Barlow Condensed;
  font-size: 20px;
  line-height: 40px;
  color: #444;
  font-weight: 400;
  padding-left: 21px;
  position: relative;
  margin-bottom: 8px;
}
.widget_meta .widget-content ul li a:before {
  position: absolute;
  content: "\f0da";
  font-family: "Font Awesome 5 Pro";
  color: #444;
  left: 0;
  font-weight: 700;
  top: 2px;
  -webkit-transition: 300ms all linear 0ms;
  -khtml-transition: 300ms all linear 0ms;
  -moz-transition: 300ms all linear 0ms;
  -ms-transition: 300ms all linear 0ms;
  -o-transition: 300ms all linear 0ms;
  transition: 300ms all linear 0ms;
}
.widget_meta .widget-content ul li a:hover {
  color: #ee1d22 !important;
}
.widget_meta .widget-content ul li a:hover:before {
  color: #ee1d22;
}
@media screen and (max-width: 575px) {
  .widget-title {
    padding-top: 0px !important;
    margin-bottom: 10px !important;
  }
}
.wp-block-latest-comments {
  padding-left: 0;
}
.wp-block-search__button {
  min-width: 39px;
}
.body-postachive .ul-author, .body-postachive .social-share-archive {
  display: none;
}
.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;
}
.comments-area {
  margin-top: 13px;
  margin-right: 19px;
  width: 100%;
}
@media screen and (max-width: 991px) {
  .comments-area {
    margin-right: 0;
  }
}
@media screen and (max-width: 1199px) {
  .comments-area {
    margin-top: 20px;
  }
}
.comments-area .comment-list {
  list-style: none;
  margin: 0;
  padding-top: 2px;
}
.comments-area .comment-list li:last-child .comment-inner {
  border: none;
}
.comments-area .comment-list > .comment:first-child > .comment-body {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}
.comments-area .comment-list > .comment > .children {
  list-style: none;
  margin: 0;
  padding-left: 74px;
}
.comments-area .comment-list > .comment > .children .children {
  padding-left: 30px;
}
.comments-area .comment-list > .comment > .children .children > li > ul > li > ul .comment-reply {
  display: none;
}
@media screen and (max-width: 767px) {
  .comments-area .comment-list > .comment > .children {
    padding-left: 0;
  }
}
.comments-area .comment-list > .trackback, .comments-area .comment-list > .pingback {
  border-top: 2px solid #e7ebef;
  margin-top: 24px;
  padding-top: 30px;
}
.comments-area .comment-list > .trackback:nth-child(1), .comments-area .comment-list > .pingback:nth-child(1) {
  border-top: none;
  margin-top: 0;
}
.comments-area .comment-list .children {
  list-style: none;
}
.comments-area .comment-list .comment-body + .comment-respond {
  margin-top: 45px;
}
.comments-area .comment-inner {
  display: flex;
  flex-wrap: nowrap;
  margin-bottom: 20px;
  background-color: #f8f8f8;
}
@media screen and (max-width: 575px) {
  .comments-area .comment-inner {
    padding: 20px;
  }
}
@media screen and (max-width: 575px) {
  .comments-area .comment-inner {
    display: block;
  }
}
.comments-area .comment-inner img.avatar {
  min-width: 170px;
  max-width: 170px;
  max-height: 180px;
  min-height: 180px;
  margin-right: 45px;
}
.comments-area .comment-inner .comment-avatar-reply {
  position: relative;
  max-height: 180px;
}
.comments-area .comment-inner .comment-avatar-reply a {
  position: absolute;
  color: #fff;
  background-color: #ee1d22;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 130px;
  height: 34px;
  left: 20px;
  font-family: Barlow Condensed;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  bottom: 18px;
  -webkit-transition: 300ms all linear 0ms;
  -khtml-transition: 300ms all linear 0ms;
  -moz-transition: 300ms all linear 0ms;
  -ms-transition: 300ms all linear 0ms;
  -o-transition: 300ms all linear 0ms;
  transition: 300ms all linear 0ms;
}
.comments-area .comment-inner .comment-avatar-reply a:hover {
  background-color: #2a2a2a;
}
.comments-area .comment-inner .comment-content {
  width: 100%;
  padding: 39px 25px 31px 0;
}
@media screen and (max-width: 575px) {
  .comments-area .comment-inner .comment-content {
    padding-right: 0px;
  }
}
.comments-area .comment-inner .comment-content .comment-title, .comments-area .comment-inner .comment-content .comment-title a {
  margin-bottom: 5px;
  position: relative;
  color: #2a2a2a !important;
  font-size: 32px;
  font-weight: bold;
  padding-right: 20px;
  line-height: 32px;
}
@media screen and (max-width: 575px) {
  .comments-area .comment-inner .comment-content .comment-title, .comments-area .comment-inner .comment-content .comment-title a {
    padding-right: 0px;
  }
}
.comments-area .comment-inner .comment-content .comment-title:hover, .comments-area .comment-inner .comment-content .comment-title a:hover {
  color: #ee1d22;
}
.comments-area .comment-inner .comment-content .comment-meta {
  margin-bottom: 9px;
}
@media (min-width: 650px) {
  .comments-area .comment-inner .comment-content .comment-meta {
    display: flex;
    align-items: center;
  }
}
.comments-area .comment-inner .comment-content .comment-date {
  font-family: Barlow Condensed;
  color: #ee1d22;
  text-transform: uppercase;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  margin-bottom: -8px;
}
.comments-area .comment-inner .comment-content .comment-date .custom-time {
  padding-left: 3px;
  color: #7a7a7a;
}
.comments-area .comment-inner .comment-content .comment-text p {
  font-family: Poppins;
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
}
.comments-area .comment-inner .comment-content .comment-text p p:last-child {
  margin-bottom: 0;
}
.comments-area .comment-inner .comment-content .comment-reply {
  padding-top: 20px;
  font-size: 14px;
}
@media screen and (max-width: 575px) {
  .comments-area .comment-inner .comment-content .comment-reply {
    margin-top: 15px;
  }
}
.comments-area .comment-inner .comment-content .comment-reply a {
  display: inline-block;
  font-size: 18px;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  color: #ee1d22;
  padding-left: 10px;
}
@media screen and (min-width: 576px) {
  .comments-area .comment-inner .comment-content .comment-reply a {
    position: relative;
    padding-bottom: 0px;
  }
}
.comments-area .comment-inner .comment-content .comment-reply a:hover {
  color: #2a2a2a;
}
.comments-area .comment-inner .comment-content .comment-reply a:hover:after {
  background-color: #2a2a2a;
}
.comments-area .comment-list-wrap {
  margin-bottom: 49px;
}
.comments-area .comment-list-wrap h2 {
  display: block;
  font-size: 40px;
  font-family: Barlow Condensed;
  color: #2a2a2a;
}
@media screen and (max-width: 767px) {
  .comments-area #commentform .comment-form-email {
    margin-left: -5px;
  }
}
.comments-area #commentform .logged-in-as {
  display: none;
}
.comments-area #commentform input {
  height: 70px;
}
.comments-area #commentform input, .comments-area #commentform textarea {
  background-color: #f7f7f6;
  margin-bottom: 30px;
  font-family: Poppins;
  font-weight: 400;
  border-radius: 5px 40px 5px 5px;
}
@media screen and (max-width: 767px) {
  .comments-area #commentform input, .comments-area #commentform textarea {
    margin-bottom: 20px;
  }
}
.comments-area #commentform textarea {
  height: 200px;
  background-color: #f7f7f6;
  margin-bottom: 18px;
  padding-top: 28px;
}
.comments-area #commentform .form-submit {
  display: inline-flex;
  font-size: 18px;
  width: 225px;
  height: 60px;
  text-transform: uppercase;
  font-weight: 700 !important;
  justify-content: center;
  align-items: center;
  position: relative;
  background-color: #ee1d22;
  border-radius: 3px;
  border-radius: 5px 40px 5px 5px;
  z-index: 1;
  -webkit-transition: 300ms all linear 0ms;
  -khtml-transition: 300ms all linear 0ms;
  -moz-transition: 300ms all linear 0ms;
  -ms-transition: 300ms all linear 0ms;
  -o-transition: 300ms all linear 0ms;
  transition: 300ms all linear 0ms;
}
.comments-area #commentform .form-submit:before {
  position: absolute;
  content: "\f054";
  font-family: 'Font Awesome 5 Pro';
  right: -13px;
  top: 10px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 3px solid #ee1d22;
  width: 40px;
  height: 40px;
  font-size: 13px;
  background-color: #fff;
  color: #ee1d22;
  border-radius: 50px;
  -webkit-transition: 300ms all linear 0ms;
  -khtml-transition: 300ms all linear 0ms;
  -moz-transition: 300ms all linear 0ms;
  -ms-transition: 300ms all linear 0ms;
  -o-transition: 300ms all linear 0ms;
  transition: 300ms all linear 0ms;
}
.comments-area #commentform .form-submit:hover {
  background-color: #2a2a2a;
}
.comments-area #commentform .form-submit:hover:before {
  color: #2a2a2a;
  border-color: #2a2a2a;
}
.comments-area #commentform .submit {
  z-index: 3;
  background-color: #f7f7f6;
  margin-bottom: 0;
  background-color: transparent;
  font-family: Barlow Condensed;
  line-height: 50px;
  font-size: 18px;
  border-radius: 0;
  font-weight: 700;
  position: relative;
  height: 100% !important;
  width: 100% !important;
}
.comments-area #commentform .form-submit {
  margin-left: 12px;
  margin-bottom: 0;
}
.comments-area .comment-content a {
  word-wrap: break-word;
}
.comments-area .bypostauthor {
  display: block;
}
.logged-in .form-submit {
  margin-left: 0px !important;
}
.comment-respond .comment-form {
  margin-bottom: 45px;
}
@media screen and (max-width: 450px) {
  .comment-respond .comment-form {
    margin-bottom: 20px;
  }
}
.single-product .comment-respond .comment-form {
  margin-bottom: 0;
}
.single-product .comment-respond .comment-form-author input, .single-product .comment-respond .comment-form-email input {
  border: 1px solid #eaeaea;
}
.single-product .comment-respond p {
  padding: 0;
}
.single-product .comment-respond .form-submit:hover input {
  background-color: #666 !important;
}
.comment-form-cookies-consent {
  display: none;
  font-size: 14px;
  line-height: 24px;
  padding-left: 20px;
  position: relative;
  margin-bottom: 22px;
}
.comment-form-cookies-consent input, .comment-form-cookies-consent label:before, .comment-form-cookies-consent label:after {
  position: absolute;
  width: 12px;
  height: 12px;
  left: 0;
  top: 5px;
}
.comment-form-cookies-consent label:before {
  content: '';
  border: 1px solid #cfcfcf;
  background-color: #ececed;
  -webkit-border-radius: 1px;
  -khtml-border-radius: 1px;
  -moz-border-radius: 1px;
  -ms-border-radius: 1px;
  -o-border-radius: 1px;
  border-radius: 1px;
  z-index: 1;
}
.comment-form-cookies-consent label:after {
  content: '\f00c';
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  z-index: 2;
  font-size: 8px;
  color: #ee1d22;
  opacity: 0;
  line-height: 12px;
  text-align: center;
}
.comment-form-cookies-consent input {
  z-index: 99;
  opacity: 0;
}
.comment-form-cookies-consent input:checked + label:before {
  border-color: #ee1d22;
  background-color: #fff;
}
.comment-form-cookies-consent input:checked + label:after {
  opacity: 1;
}
.comment-form > .row {
  margin: 0 -10px;
}
.comment-form > .row .col-lg-4 {
  padding: 0 10px;
}
.comments-title {
  margin-bottom: 32px;
  color: #666;
  font-size: 25px;
  font-family: 'Poppins', sans-serif;
  font-weight: bold;
}
.comment-respond .comment-reply-title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-bottom: 8px;
  margin-bottom: 17px;
  color: #2a2a2a;
  font-size: 40px;
  font-weight: bold;
}
.comment-respond .comment-reply-title small a {
  -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: #ee1d22;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 25px;
  padding: 0 10px;
  font-family: 'Poppins', sans-serif;
  margin-left: 8px;
  position: relative;
  top: 2px;
}
.comment-respond .comment-reply-title small a:hover {
  background-color: #2a2a2a;
}
.comment-form-comment {
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.comment-form-comment textarea {
  background-color: #fff;
}
.comment-form-author {
  padding: 0 3px 0 10px;
}
.comment-form-email {
  padding: 0 10px 0 15px;
}
.scroll-top {
  position: fixed;
  z-index: 99;
  bottom: 24px;
  right: 15px;
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  background-color: #ee1d22;
  -webkit-border-radius: 50px;
  -khtml-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  border-radius: 50px;
  color: #fff;
  font-size: 22px;
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
}
@media screen and (max-width: 767px) {
  .scroll-top {
    bottom: 0;
    right: 0;
  }
}
.scroll-top i {
  -webkit-transition: all 100ms linear 0ms;
  -khtml-transition: all 100ms linear 0ms;
  -moz-transition: all 100ms linear 0ms;
  -ms-transition: all 100ms linear 0ms;
  -o-transition: all 100ms linear 0ms;
  transition: all 100ms linear 0ms;
}
.scroll-top:hover i {
  -webkit-animation: flyUp 1s linear infinite;
  -khtml-animation: flyUp 1s linear infinite;
  -moz-animation: flyUp 1s linear infinite;
  -ms-animation: flyUp 1s linear infinite;
  -o-animation: flyUp 1s linear infinite;
  animation: flyUp 1s linear infinite;
}
.scroll-top:hover, .scroll-top:focus, .scroll-top:active {
  color: #fff;
  background-color: #d21014;
}
.scroll-top.on {
  bottom: 100px;
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 991px) {
  .scroll-top.on {
    bottom: 0;
    right: 0;
    -webkit-border-radius: 2px 0 0;
    -khtml-border-radius: 2px 0 0;
    -moz-border-radius: 2px 0 0;
    -ms-border-radius: 2px 0 0;
    -o-border-radius: 2px 0 0;
    border-radius: 2px 0 0;
    height: 35px;
    width: 35px;
    line-height: 35px;
    font-size: 16px;
  }
}
.mw-map {
  max-width: 675px;
}
@media (min-width: 1025px) and (max-width: 1423px) {
  .mrg-fth2 .elementor-widget-container {
    margin: -15px 0px 0px 0px !important;
  }
}
@media screen and (max-width: 767px) {
  .od-ft > .elementor-container {
    display: flex !important;
  }
  .od-ft > .elementor-container .od2 {
    order: 2;
  }
}
.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;
}
.search #content, .archive #content {
  overflow-x: inherit;
}
#content {
  overflow-x: hidden;
  padding: 80px 0;
}
.blog #content, .single-post #content {
  overflow: initial !important;
}
@media screen and (min-width: 992px) {
  .grid-item.col-xl-col8 {
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .grid-item.col-xl-col4 {
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
}
.cms-grid .item-title a {
  color: inherit;
}
.cms-grid .item-title a:hover {
  color: #ee1d22;
}
.cms-grid .grid-sizer {
  visibility: hidden;
}
.cms-grid .cms-grid-inner, .cms-grid .grid-item-inner {
  position: relative;
}
.cms-grid .grid-item.cms-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;
  -webkit-transform: translateY(200px);
  -khtml-transform: translateY(200px);
  -moz-transform: translateY(200px);
  -ms-transform: translateY(200px);
  -o-transform: translateY(200px);
  transform: translateY(200px);
}
.cms-grid .cms-load-more {
  margin-top: 50px;
}
.cms-grid .cms-load-more i {
  margin-left: 0;
  margin-right: 0;
}
.cms-grid .cms-load-more i.fa-refresh {
  margin-right: 8px;
}
.cms-grid .cms-load-more .btn-secondary {
  padding-left: 40px;
  padding-right: 40px;
}
.cms-grid .cms-grid-pagination {
  margin-top: 20px;
}
.cms-grid .item-featured a {
  display: block;
}
.cms-grid .btn-loadmore i {
  margin-left: 0;
  margin-right: 0;
}
.cms-grid .btn-loadmore i.fa-refresh {
  margin-right: 8px;
}
.grid-filter-wrap {
  margin-bottom: 48px;
}
.grid-filter-wrap span {
  cursor: pointer;
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  margin: 10px 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;
  text-transform: capitalize;
  color: #51668a;
  position: relative;
}
.grid-filter-wrap span.active, .grid-filter-wrap span:hover {
  color: #0e2b5c;
}
@media (max-width: 1300px) {
  .elementor-22 .elementor-element.elementor-element-7ddc34d > .elementor-element-populated {
    padding-right: 0 !important;
  }
}
.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;
}
.item-order {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}
.owl-dots {
  text-align: center;
  margin-top: 44px;
  line-height: 1;
  height: 12px;
}
.owl-dots .owl-dot {
  -webkit-border-radius: 12px;
  -khtml-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  border-radius: 12px;
  border: 3px solid #1b1a1a;
  display: inline-block;
  height: 12px;
  margin: 0 5px;
  width: 12px;
  vertical-align: top;
  -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 {
  border-color: #ee1d22;
}
.cms-slick-carousel .slick-arrow, .cms-nav-carousel .slick-arrow {
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  background-color: #1b1a1a;
  -webkit-border-radius: 2px;
  -khtml-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  border-radius: 2px;
  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%);
  font-size: 13px;
  color: #fff;
  cursor: pointer;
  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;
  z-index: 99;
}
.cms-slick-carousel .slick-arrow:hover, .cms-nav-carousel .slick-arrow:hover {
  background-color: #ee1d22;
}
.cms-slick-carousel .slick-arrow.slick-disabled, .cms-nav-carousel .slick-arrow.slick-disabled {
  opacity: 0.5;
}
.cms-slick-carousel .slick-prev, .cms-nav-carousel .slick-prev {
  left: 0;
}
.cms-slick-carousel .slick-next, .cms-nav-carousel .slick-next {
  right: 0;
  left: auto;
}
.cms-nav-carousel .slick-arrow {
  position: static;
}
.cms-nav-carousel .slick-arrow + .slick-arrow {
  margin-left: 6px;
}
.slick-slider .slick-slide {
  outline: none;
}
.slick-dots {
  margin: 25px 0 0;
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  /* Page Loading */
}
.slick-dots li {
  display: flex;
  margin: 0 5px 0 5px;
  height: 5px;
}
.slick-dots li button {
  border-radius: 5px;
  height: 5px;
  width: 16px;
  text-indent: -9999px;
  padding: 0;
  background-color: #e7e6e5;
  border: none;
  position: relative;
  z-index: 1;
}
.slick-dots li button:before, .slick-dots li button:after {
  display: none;
}
.slick-dots li.slick-active button {
  border-color: #ee1d22;
  background-color: #ee1d22;
  width: 30px;
}
#cms-loadding {
  background: #fff;
  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;
}
#cms-loadding .loading-spinner {
  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;
}
#cms-loadding .loading-spinner > div {
  width: 18px;
  height: 18px;
  background-color: #ee1d22;
  -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: cms-bouncedelay 1.4s infinite ease-in-out both;
  animation: cms-bouncedelay 1.4s infinite ease-in-out both;
}
#cms-loadding .loading-spinner .cms-bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
#cms-loadding .loading-spinner .cms-bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
#cms-loadding .loading-spinner img {
  -webkit-animation: loading-spinner 1s infinite;
  -khtml-animation: loading-spinner 1s infinite;
  -moz-animation: loading-spinner 1s infinite;
  -ms-animation: loading-spinner 1s infinite;
  -o-animation: loading-spinner 1s infinite;
  animation: loading-spinner 1s infinite;
}
.nav-tabs.cms-tabs {
  border: none;
  margin-bottom: 10px;
}
.nav-tabs.cms-tabs .nav-item {
  margin: 0 0 10px 26px;
}
.nav-tabs.cms-tabs .nav-item:first-child {
  margin-left: 0;
}
.nav-tabs.cms-tabs .nav-item a {
  margin: 0;
  border: none;
  padding: 0;
  font-size: 13px;
  color: rgba(40, 40, 40, 0.33);
}
.nav-tabs.cms-tabs .nav-item a.active {
  color: #282828;
}
.entry-footer .entry-edit-link {
  display: none;
}
.cms-modal {
  -webkit-transition: all 360ms linear 0ms;
  -khtml-transition: all 360ms linear 0ms;
  -moz-transition: all 360ms linear 0ms;
  -ms-transition: all 360ms linear 0ms;
  -o-transition: all 360ms linear 0ms;
  transition: all 360ms linear 0ms;
  background-color: rgba(27, 26, 26, 0.85);
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transform: scale(0.5);
  -khtml-transform: scale(0.5);
  -moz-transform: scale(0.5);
  -ms-transform: scale(0.5);
  -o-transform: scale(0.5);
  transform: scale(0.5);
  opacity: 0;
  visibility: hidden;
}
.cms-modal .cms-modal-content {
  padding: 40px 0;
  max-width: 470px;
  margin: auto;
  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;
}
.cms-modal.open {
  -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;
}
.cms-modal-close {
  position: absolute;
  top: 30px;
  right: 30px;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}
.cms-modal-search {
  background-color: #fff;
}
.cms-modal-search .cms-modal-close {
  top: 40px;
  right: 40px;
  margin: auto;
  height: 66px;
  width: 66px;
  background-color: #ee1d22;
  -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;
  -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) {
  .cms-modal-search .cms-modal-close {
    width: 40px;
    height: 40px;
  }
}
.cms-modal-search .cms-modal-close:hover {
  background-color: #2a2a2a;
}
.cms-modal-search .cms-modal-close:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
}
.cms-modal-search .cms-modal-close 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%);
}
.cms-modal-search .cms-modal-content {
  max-width: 770px;
}
@media screen and (max-width: 1199px) {
  .cms-modal-search .cms-modal-content {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cms-modal-search .search-form-popup {
  position: relative;
}
.cms-modal-search .search-field {
  border: none;
  background-color: transparent;
  color: #51668a;
  font-size: 25px;
  font-weight: 400;
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
  height: 86px;
  border-bottom: 2px solid #eaeaea;
  padding-left: 50px;
}
.cms-modal-search .search-field:focus {
  border-color: #eaeaea;
}
@media screen and (max-width: 1199px) {
  .cms-modal-search .search-field {
    font-size: 20px;
  }
}
.cms-modal-search .search-submit {
  font-size: 26px;
  background-color: transparent;
  border: none;
  padding: 0;
  width: auto;
  height: 86px;
  color: #0e2b5c;
  line-height: 86px;
  text-align: center;
  position: absolute;
  top: 0;
  padding-left: 5px;
}
@media screen and (max-width: 1199px) {
  .cms-modal-search .search-submit {
    font-size: 20px;
  }
}
@media screen and (max-width: 575px) {
  #content {
    padding-top: 20 !important;
  }
}
.error404 #content {
  padding: 0 !important;
}
.cms-hidden-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(27, 26, 26, 0.5);
  cursor: pointer;
  z-index: 9998;
  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;
}
.cms-hidden-sidebar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 410px;
  padding: 95px 70px 50px 70px;
  background-color: #091d3e;
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  overflow-y: scroll;
  overflow-x: hidden;
  -webkit-transition: all 360ms linear 0ms;
  -khtml-transition: all 360ms linear 0ms;
  -moz-transition: all 360ms linear 0ms;
  -ms-transition: all 360ms linear 0ms;
  -o-transition: all 360ms linear 0ms;
  transition: all 360ms 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%);
  z-index: 9999;
}
.cms-hidden-sidebar.open {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0%);
  -khtml-transform: translateX(0%);
  -moz-transform: translateX(0%);
  -ms-transform: translateX(0%);
  -o-transform: translateX(0%);
  transform: translateX(0%);
}
.cms-hidden-sidebar.open + .cms-hidden-overlay {
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 991px) {
  .cms-hidden-sidebar {
    width: 320px;
    padding: 95px 30px 50px 30px;
  }
}
.cms-hidden-sidebar .cms-hidden-close {
  position: absolute;
  top: 35px;
  right: 35px;
  font-size: 24px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 360ms linear 0ms;
  -khtml-transition: all 360ms linear 0ms;
  -moz-transition: all 360ms linear 0ms;
  -ms-transition: all 360ms linear 0ms;
  -o-transition: all 360ms linear 0ms;
  transition: all 360ms linear 0ms;
}
.cms-hidden-sidebar .cms-hidden-close:hover {
  color: #ee1d22;
}
.cms-hidden-sidebar .widget {
  margin-bottom: 45px;
  color: #f9f9f9;
  font-size: 15px;
  line-height: 25px;
}
.cms-hidden-sidebar .widget h1, .cms-hidden-sidebar .widget h2, .cms-hidden-sidebar .widget h3, .cms-hidden-sidebar .widget h4, .cms-hidden-sidebar .widget h5, .cms-hidden-sidebar .widget h6 {
  color: #fff;
}
.cms-hidden-sidebar .widget h6 {
  margin-bottom: 9px;
}
.cms-hidden-sidebar .widget.wg-logo {
  margin-bottom: 22px;
}
.cms-hidden-sidebar .widget.wg-logo img {
  max-height: 44px;
}
.cms-hidden-sidebar .widget.wg-contact-item {
  margin-bottom: 27px;
}
.cms-hidden-sidebar .widget.wg-about-text {
  margin-bottom: 132px;
}
.cms-hidden-sidebar .widget-title {
  color: #fff;
  margin-bottom: 15px;
  font-size: 15px;
}
.cms-hidden-sidebar .widget-title:after {
  background-color: #fff;
}
.cms-hidden-sidebar .widget_cms_recent_posts .post-item {
  border-color: #535353;
}
.cms-hidden-sidebar .widget_cms_recent_posts .post-item .entry-title {
  color: #fff;
}
.cms-hidden-sidebar .tagcloud a, .cms-hidden-sidebar .entry-tags a {
  background-color: #2a2a2a;
  color: #fff;
}
.cms-hidden-sidebar .tagcloud a:hover, .cms-hidden-sidebar .entry-tags a:hover {
  background-color: #ee1d22;
}
@media screen and (min-width: 992px) {
  body.error404 .row {
    align-items: center;
  }
}
body.error404 .site-content {
  padding: 0;
}
body.error404 .content-area {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
body.error404 .error-404 {
  text-align: center !important;
}
body.error404 .error-404 .error-404-inner {
  max-width: 642px;
  margin: 0 auto;
}
@media screen and (min-width: 1200px) {
  body.error404 .error-404 {
    padding: 264px 10px 146px;
    text-align: left;
  }
}
@media screen and (max-width: 1199px) {
  body.error404 .error-404 {
    height: auto;
    padding: 200px 0px 100px;
  }
}
@media screen and (max-width: 767px) {
  body.error404 .error-404 {
    height: auto;
    padding: 170px 0px 100px;
  }
}
body.error404 .error-404 .nb-404 {
  font-size: 160px;
  font-weight: 700;
  line-height: 120px;
  color: #2a2a2a;
  padding-bottom: 20px;
  margin-bottom: -20px;
}
@media screen and (max-width: 767px) {
  body.error404 .error-404 .nb-404 {
    font-size: 100px;
    line-height: 100px;
  }
}
body.error404 .error-404 .search-form .searchform-wrap {
  position: relative;
}
body.error404 .error-404 .search-form .searchform-wrap input {
  max-width: 631px;
  height: 75px;
  background-color: #fff;
  border-radius: 5px 50px 5px 5px;
  padding: 0 50px 0 35px;
  font-size: 18px;
  font-weight: 400;
}
body.error404 .error-404 .search-form .searchform-wrap button {
  position: absolute;
  top: 0px;
  right: 20px;
  background-color: transparent;
  color: #666;
  height: 75px;
}
body.error404 .error-404 .title-404 {
  padding-top: 27px;
  font-size: 60px;
  font-weight: 800;
  line-height: 60px;
  color: #2a2a2a;
  margin-top: 73px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  body.error404 .error-404 .title-404 {
    font-size: 40px;
    line-height: 60px;
  }
}
@media screen and (max-width: 767px) {
  body.error404 .error-404 .title-404 {
    font-size: 45px;
  }
}
body.error404 .error-404 .sub-title-404 {
  text-transform: uppercase;
  font-weight: 400;
  font-size: 18px;
  color: #fff;
}
@media screen and (min-width: 768px) {
  body.error404 .error-404 .sub-title-404 {
    margin-bottom: 41px;
  }
}
@media screen and (max-width: 767px) {
  body.error404 .error-404 .sub-title-404 {
    font-size: 25px;
  }
}
body.error404 .error-404 .page-content {
  margin-top: 43px;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  font-family: Poppins;
  color: #666;
  margin-bottom: 31px;
}
@media screen and (max-width: 767px) {
  body.error404 .error-404 .page-content {
    margin-top: 0px;
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 20px;
  }
}
body.error404 .btn-default {
  padding-left: 36px;
  display: inline-block;
  width: 263px;
  height: 64px;
  font-size: 18px;
  text-transform: uppercase;
  cursor: pointer;
  line-height: 65px;
  border-radius: 5px 50px 5px 5px;
  font-weight: 700;
  color: #fff;
  background-color: #ee1d22;
  font-family: Barlow Condensed;
  margin-top: 28px;
}
body.error404 .btn-default:before {
  position: absolute;
  content: '\f015';
  font-family: "Font Awesome 5 Pro";
  left: 64px;
  top: 0;
}
body.error404 .btn-default:hover {
  background-color: #2a2a2a;
}
body.error404 .elementor-column-gap-extended {
  margin: 0 auto !important;
}
.hide-nav .cms-slick-carousel .slick-arrow {
  opacity: 0;
  visibility: hidden;
}
.elementor-widget-wp-widget-search .search-form .searchform-wrap {
  position: relative;
  max-width: 770px;
}
.elementor-widget-wp-widget-search .search-form .searchform-wrap .search-field {
  padding-left: 25px;
  width: 100%;
  padding-right: 45px;
  background-color: #fafafa;
  height: 50px;
  line-height: 50px;
  border: 1px solid #fafafa;
  -webkit-border-radius: 5px;
  -khtml-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
}
.elementor-widget-wp-widget-search .search-form .searchform-wrap .search-field:focus {
  border-color: #ee1d22;
}
.elementor-widget-wp-widget-search .search-form .searchform-wrap .search-submit {
  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: 45px;
  text-align: center;
  right: 0;
  font-size: 16px;
  background-color: transparent;
  color: #ee1d22;
}
.custom-container-2 .elementor-container {
  max-width: 1320px !important;
}
.row-maxwidth-custom .elementor-widget-container {
  max-width: 1740px;
}
@media (min-width: 1700px) {
  .row-maxwidth-custom .elementor-widget-container {
    padding-left: 20px !important;
    padding-right: 20px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
.line-slider {
  font-weight: 300 !important;
  position: relative;
}
.line-slider:after {
  position: absolute;
  content: "";
  height: 2px;
  width: 150px;
  background: linear-gradient(to right bottom, #ee1d22 0%, #2a2a2a 100%);
  top: 56%;
  right: -190px;
}
@media screen and (max-width: 450px) {
  .line-slider:after {
    width: 100px;
    right: -140px;
  }
}
@media (min-width: 1024px) and (max-width: 1550px) {
  .elementor-element.elementor-element-8d3daea > .elementor-element-populated {
    padding: 161px 0px 163px 65px !important;
  }
}
@media screen and (max-width: 1400px) {
  .elementor-widget {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
#pass_user, #login_user {
  border: 1px solid #eaeaea;
}
#pass_user:focus, #login_user:focus, #pass_user:active, #login_user:active {
  border-color: #ee1d22 !important;
}
@media screen and (max-width: 1024px) {
  .none-mb {
    display: none !important;
  }
}
@media screen and (max-width: 575px) {
  body br {
    display: none !important;
  }
}
body img.mfp-img {
  padding: 0 !important;
}
body .mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.9;
}
body li {
  list-style-type: none;
}
.item-address i {
  font-family: 'FontAwesome' !important;
}
small {
  font-size: 100%;
}
body .mfp-image-holder .mfp-close, body .mfp-iframe-holder .mfp-close {
  line-height: 40px;
  padding: 0;
  right: 0;
  text-align: center;
  top: -44px;
  width: 40px;
  -webkit-border-radius: 2px 2px 0 0;
  -khtml-border-radius: 2px 2px 0 0;
  -moz-border-radius: 2px 2px 0 0;
  -ms-border-radius: 2px 2px 0 0;
  -o-border-radius: 2px 2px 0 0;
  border-radius: 2px 2px 0 0;
}
body .mfp-bottom-bar {
  margin-top: 0;
}
.ovl-hd {
  overflow: hidden;
}
.mfp-wrap .mfp-container .mfp-arrow {
  background-color: #ee1d22;
  width: 50px;
  height: 100px;
  opacity: 1;
  -webkit-transition: 300ms all linear 0ms;
  -khtml-transition: 300ms all linear 0ms;
  -moz-transition: 300ms all linear 0ms;
  -ms-transition: 300ms all linear 0ms;
  -o-transition: 300ms all linear 0ms;
  transition: 300ms all linear 0ms;
}
.mfp-wrap .mfp-container .mfp-arrow:before, .mfp-wrap .mfp-container .mfp-arrow:after {
  border: none;
}
.mfp-wrap .mfp-container .mfp-arrow:hover {
  background-color: #666;
}
.mfp-wrap .mfp-container .mfp-arrow:before {
  font-family: "Font Awesome 5 Pro";
  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;
  background-color: transparent !important;
  left: 50%;
  width: auto;
  height: auto;
}
.mfp-wrap .mfp-container .mfp-arrow.mfp-arrow-left:before {
  content: "\f323";
}
.mfp-wrap .mfp-container .mfp-arrow.mfp-arrow-right:before {
  content: "\f324";
}
@media screen and (min-width: 1200px) {
  .mfp-wrap .mfp-container {
    padding: 0 120px;
  }
}
.revslider-initialised {
  margin-bottom: 0 !important;
}
.revslider-initialised .rev-btn i.space-left {
  margin-left: 10px;
  font-size: 14px;
  font-weight: 900;
}
.revslider-initialised .cms-video-button {
  z-index: 99;
}
@media screen and (max-width: 767px) {
  .revslider-initialised .cms-video-player .btn-video-wrap .btn-video-text {
    display: none;
  }
}
.revslider-initialised .slider-list i {
  margin-right: 16px;
  color: #ee1d22;
}
@media screen and (min-width: 1200px) {
  .revslider-initialised .slider-list i {
    font-size: 20px;
    position: relative;
    bottom: -2px;
  }
}
@media screen and (max-width: 767px) {
  .revslider-initialised .slider-list i {
    display: none;
  }
}
.revslider-initialised .tparrows.arrow-nustic {
  background-color: #f8f8f8;
  height: 60px;
  width: 60px;
}
.revslider-initialised .tparrows.arrow-nustic:before {
  color: #ee1d22;
  font-size: 20px;
  line-height: 60px;
}
.revslider-initialised .tp-bullets.custom .tp-bullet {
  height: 5px;
  width: 16px;
  -webkit-border-radius: 2px;
  -khtml-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.5);
  -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;
}
.revslider-initialised .tp-bullets.custom .tp-bullet:before, .revslider-initialised .tp-bullets.custom .tp-bullet:after {
  display: none;
}
.revslider-initialised .tp-bullets.custom .tp-bullet.selected {
  background-color: #fff;
  -webkit-transform: scalex(1.6);
  -khtml-transform: scalex(1.6);
  -moz-transform: scalex(1.6);
  -ms-transform: scalex(1.6);
  -o-transform: scalex(1.6);
  transform: scalex(1.6);
}
@media screen and (max-width: 991px) {
  .revslider-initialised .tp-bullets.custom .tp-bullet {
    display: none;
  }
}
.revslider-initialised .icon-space-left {
  margin-left: 8px;
  font-size: 12px;
}
.revslider-initialised i.space-right {
  margin-right: 10px;
}
.revslider-initialised .icon-slider {
  font-size: 20px;
  position: relative;
  top: 2px;
}
.revslider-initialised .btn-video-slider {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}
.revslider-initialised .btn-video-slider i {
  height: 60px;
  width: 60px;
  font-size: 16px;
  color: #fff;
  -webkit-border-radius: 60px;
  -khtml-border-radius: 60px;
  -moz-border-radius: 60px;
  -ms-border-radius: 60px;
  -o-border-radius: 60px;
  border-radius: 60px;
  background-color: #ee1d22;
  text-align: center;
  margin-right: 28px;
  position: relative;
  z-index: 1;
}
.revslider-initialised .btn-video-slider i:before {
  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%);
}
.revslider-initialised .btn-video-slider i:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1.5px solid #ee1d22;
  -webkit-transform: scale(1.3);
  -khtml-transform: scale(1.3);
  -moz-transform: scale(1.3);
  -ms-transform: scale(1.3);
  -o-transform: scale(1.3);
  transform: scale(1.3);
  z-index: -1;
  -webkit-border-radius: 60px;
  -khtml-border-radius: 60px;
  -moz-border-radius: 60px;
  -ms-border-radius: 60px;
  -o-border-radius: 60px;
  border-radius: 60px;
  -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;
}
.revslider-initialised .btn-video-slider span {
  font-size: 14px;
  color: #fff;
  font-weight: 700;
}
.revslider-initialised .btn-video-slider:hover i:after {
  -webkit-transform: scale(0.8);
  -khtml-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
}
.revslider-initialised .btn-video-slider.btn-video-white i {
  color: #1a1a1a;
  background-color: #fff;
}
.revslider-initialised .btn-video-slider.btn-video-white i:after {
  border-color: #fff;
}
@media screen and (max-width: 1024px) {
  .cms-heading-layout1 br {
    display: none !important;
  }
}
.cms-heading-layout1 img {
  margin-top: -4px;
}
.cms-heading-layout1 small {
  color: #ee1d22 !important;
  font-weight: 700;
}
.text-ft .elementor-text-editor a, .text-ft .elementor-text-editor p, .text-ft .elementor-text-editor span, .text-ft .elementor-text-editor cite {
  color: #fff;
}
.elementor-text-editor {
  font-style: normal;
}
.elementor-text-editor .first-letter {
  display: inline-block;
  float: left;
  line-height: 86px;
  padding-right: 28px;
  text-align: center;
  color: #2a2a2a;
  font-size: 100px;
  font-weight: 800;
  font-family: Barlow Condensed !important;
}
.elementor-text-editor p, .elementor-text-editor span {
  font-family: Poppins;
  font-weight: 400;
}
.elementor-text-editor a {
  color: #fff;
}
.elementor-text-editor a:hover {
  opacity: 0.7;
  color: #fff;
}
.cms-icon1 a {
  display: inline-block;
  position: relative;
  width: 65px;
  height: 65px;
  text-align: center;
  border-radius: 50px;
  overflow: hidden;
  margin-right: 4px;
  border: 1px solid #6d6d6e;
}
@media screen and (max-width: 575px) {
  .cms-icon1 a {
    width: 55px;
    height: 55px;
  }
}
.cms-icon1 a i {
  font-size: 20px;
  line-height: 65px;
  color: #fff;
}
@media screen and (max-width: 575px) {
  .cms-icon1 a i {
    line-height: 55px;
  }
}
.cms-icon1 a i:nth-child(1) {
  transition: all 0.4s;
}
.cms-icon1 a i:nth-child(2) {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.4s ease;
  opacity: 0;
}
.cms-icon1 a:hover i:nth-child(2) {
  top: 0;
  opacity: 1;
}
.cms-icon1 a:hover i:nth-child(1) {
  transform: translateY(100%);
  opacity: 0;
}
.cms-icon2 {
  display: flex;
}
.cms-icon2 a {
  padding: 0 1px;
}
.cms-icon2 a i {
  font-size: 24px;
  color: #ffcb12;
}
.cms-icon2 .content {
  padding-left: 20px;
  font-size: 18px;
  font-weight: 700;
  color: #9e9e9e;
  letter-spacing: 1px;
}
.cms-icon3.style-1 {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .cms-icon3.style-1 {
    display: block;
  }
}
.cms-icon3.style-1 .wrap-icon a {
  border-radius: 5px 40px 5px 5px;
  padding: 16px 48px 19px 37px;
  margin-right: 19px;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 700;
  font-family: Barlow Condensed;
  color: #fff;
  background-color: #ee1d22;
  -webkit-transition: 300ms all linear 0ms;
  -khtml-transition: 300ms all linear 0ms;
  -moz-transition: 300ms all linear 0ms;
  -ms-transition: 300ms all linear 0ms;
  -o-transition: 300ms all linear 0ms;
  transition: 300ms all linear 0ms;
}
@media screen and (max-width: 1024px) {
  .cms-icon3.style-1 .wrap-icon a {
    margin-top: 20px;
    display: inline-block;
  }
}
.cms-icon3.style-1 .wrap-icon a i {
  padding-right: 5px;
  font-size: 18px;
  color: #fff;
}
.cms-icon3.style-1 .wrap-icon a:nth-child(1) {
  background-color: #5157cc;
}
.cms-icon3.style-1 .wrap-icon a:nth-child(2) {
  background-color: #ff3d9d;
}
.cms-icon3.style-1 .wrap-icon a:nth-child(3) {
  background-color: #7dcdff;
}
.cms-icon3.style-1 .wrap-icon a:hover {
  background-color: #ee1d22;
}
.cms-icon3.style-1 .content {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  padding-right: 36px;
}
.cms-icon3.style-2 a {
  display: inline-block;
  padding: 10px 0;
  font-size: 22px;
  font-weight: 500;
  line-height: normal;
  color: #ee1d22;
  margin-right: 45px;
}
.cms-icon3.style-2 a:last-child {
  margin-right: 0;
}
.cms-icon3.style-2 a:hover i:before {
  transform: rotateY(360deg);
}
.cms-icon3.style-2 i {
  width: 50px;
  height: 50px;
  border-radius: 50px;
  background-color: #ee1d22;
  color: #fff;
  display: inline-flex;
  font-size: 23px;
  justify-content: center;
  align-items: center;
  margin-right: 3px;
}
.cms-icon3.style-2 i:before {
  -webkit-transition: 300ms all linear 0ms;
  -khtml-transition: 300ms all linear 0ms;
  -moz-transition: 300ms all linear 0ms;
  -ms-transition: 300ms all linear 0ms;
  -o-transition: 300ms all linear 0ms;
  transition: 300ms all linear 0ms;
}
.cms-single-image.style5 img {
  -webkit-animation: flyUp 4s linear infinite;
  -khtml-animation: flyUp 4s linear infinite;
  -moz-animation: flyUp 4s linear infinite;
  -ms-animation: flyUp 4s linear infinite;
  -o-animation: flyUp 4s linear infinite;
  animation: flyUp 4s linear infinite;
}
.cms-client-carousel .slick-slide .client-image {
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
}
.cms-client-carousel .slick-slide .client-image img {
  transition: 0.3s;
}
.cms-client-carousel .slick-slide:hover .client-image img {
  animation: scale 1s linear infinite;
}
.cms-contact-info2 .cms-inner-box {
  display: flex;
  align-items: baseline;
}
.cms-contact-info2 .cms-inner-box .el-title {
  padding-right: 10px;
}
@media screen and (max-width: 450px) {
  .cms-contact-info2 .cms-inner-box {
    display: block;
  }
}
.cms-contact-info3 .cms-inner-box {
  border: 1px solid #eaeaea;
  display: flex;
  padding: 36px 46px 40px 37px;
}
@media screen and (max-width: 575px) {
  .cms-contact-info3 .cms-inner-box {
    padding: 20px;
  }
}
.cms-contact-info3 .cms-inner-box .item--icon {
  display: inline-flex;
  width: 70px;
  min-width: 70px;
  height: 70px;
  border: 1px solid #ee1d22;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
}
.cms-contact-info3 .cms-inner-box .wrap-info {
  padding-left: 18px;
}
.cms-contact-info3 .cms-inner-box .list-li .title {
  font-size: 18px;
  font-weight: 400;
  color: #2a2a2a;
  text-transform: uppercase;
}
.cms-contact-info3 .cms-inner-box .list-li a {
  word-break: break-all;
  line-height: 28px;
  font-size: 28px;
  font-weight: 400;
  color: #2a2a2a;
  -webkit-transition: 300ms all linear 0ms;
  -khtml-transition: 300ms all linear 0ms;
  -moz-transition: 300ms all linear 0ms;
  -ms-transition: 300ms all linear 0ms;
  -o-transition: 300ms all linear 0ms;
  transition: 300ms all linear 0ms;
}
@media screen and (max-width: 575px) {
  .cms-contact-info3 .cms-inner-box .list-li a {
    font-size: 23px;
  }
}
.cms-contact-info3 .cms-inner-box .list-li a:hover {
  color: #ee1d22;
}
.cms-contact-info3 .cms-inner-box .button-contact {
  padding-top: 34px;
}
@media screen and (max-width: 575px) {
  .cms-contact-info3 .cms-inner-box .button-contact {
    padding-top: 15px;
  }
}
.cms-contact-info3 .cms-inner-box .button-contact a {
  display: inline-flex;
  width: 163px;
  height: 54px;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  background-color: #ee1d22;
  -webkit-transition: 300ms all linear 0ms;
  -khtml-transition: 300ms all linear 0ms;
  -moz-transition: 300ms all linear 0ms;
  -ms-transition: 300ms all linear 0ms;
  -o-transition: 300ms all linear 0ms;
  transition: 300ms all linear 0ms;
}
.cms-contact-info3 .cms-inner-box .button-contact a:hover {
  background-color: #2a2a2a;
}
.cms-contact-info4 .cms-inner-box {
  display: flex;
  align-items: flex-start;
}
.cms-contact-info4 .cms-inner-box .item--icon {
  display: flex;
  width: 40px;
  height: 40px;
  border-radius: 20px 5px 5px 5px;
  background-color: #ee1d22;
  justify-content: center;
  align-items: center;
  font-size: 19px;
}
.cms-contact-info4 .cms-inner-box .item--icon i {
  color: #fff;
}
.cms-contact-info4 .cms-inner-box .wrap-info {
  padding-left: 18px;
}
.cms-contact-info4 .cms-inner-box .wrap-info .title, .cms-contact-info4 .cms-inner-box .wrap-info span {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  font-family: Poppins;
  padding-bottom: 1px;
}
.cms-gallery-grid1 {
  max-width: 1038px;
  text-align: center;
  margin: auto;
}
.cms-gallery-grid1 .grid-item {
  text-align: center;
}
.cms-gallery-grid1 .grid-item .item--inner {
  padding-bottom: 20px;
}
.cms-gallery-grid1 .grid-item .item--inner img {
  width: 100%;
}
.cms-gallery-grid1 .style2 .grid-item {
  padding: 0 10px !important;
}
.cms-accordion .cms-accordion-item {
  margin-bottom: 21px;
}
.cms-accordion .cms-accordion-item .cms-ac-content {
  padding: 23px 35px 0px 28px;
  margin-bottom: -5px;
  display: none;
  font-size: 16px;
  font-family: Poppins;
  font-weight: 400;
  color: #666;
  line-height: 25px;
}
@media screen and (max-width: 575px) {
  .cms-accordion .cms-accordion-item .cms-ac-content {
    padding: 15px;
  }
}
.cms-accordion .cms-accordion-item .cms-ac-content p {
  padding-left: 24px;
  position: relative;
  padding-bottom: 19px;
}
.cms-accordion .cms-accordion-item .cms-ac-content p:before {
  position: absolute;
  content: '\f111';
  font-size: 14px;
  top: 2px;
  color: #ee1d22;
  left: 0;
  font-family: 'Font Awesome 5 Pro';
}
.cms-accordion .cms-accordion-item .cms-ac-content .first-list {
  margin-top: 19px;
}
.cms-accordion .cms-accordion-item .cms-ac-content br {
  display: none;
}
@media screen and (max-width: 450px) {
  .cms-accordion .cms-accordion-item .cms-ac-content {
    padding: 20px 10px 7px 10px;
  }
}
@-moz-document url-prefix() {
  .cms-accordion .cms-accordion-item .cms-ac-title {
    padding: 20px 60px 21px 24px !important;
  }
}
.cms-accordion .cms-accordion-item .cms-ac-title {
  border: 1px solid #d7d7d7;
  box-shadow: rgba(0, 0, 0, 0.11) 3.4px 4.4px 14.2px;
  background-color: #fff;
  padding: 20px 60px 21px 27px;
}
.cms-accordion .cms-accordion-item .cms-ac-title.active {
  border: 1px solid #da0d12;
  box-shadow: none;
  background-color: #da0d12;
  transition: 0.3s;
}
.cms-accordion .cms-accordion-item .cms-ac-title.active a {
  color: #fff;
}
.cms-accordion .cms-accordion-item .cms-ac-title.active .cms-ac-content {
  display: block;
}
.cms-accordion .cms-accordion-item .cms-ac-title.active:after {
  content: "\f078";
  color: #fff;
  opacity: 1;
}
.cms-accordion .cms-accordion-item .cms-ac-title {
  position: relative;
  cursor: pointer;
}
.cms-accordion .cms-accordion-item .cms-ac-title a {
  font-size: 22px;
  font-family: Barlow Condensed;
  font-weight: 600;
  color: #2a2a2a;
  line-height: 25px;
}
.cms-accordion .cms-accordion-item .cms-ac-title:after {
  position: absolute;
  content: "\f078";
  font-family: 'Font Awesome 5 Pro';
  right: 24px;
  font-weight: 700;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  color: #2a2a2a;
  cursor: pointer;
  transition: 0.3s;
}
.cms-accordion .cms-accordion-item .cms-ac-title:before {
  position: absolute;
  content: "";
  font-family: 'Font Awesome 5 Pro';
  right: 58px;
  font-weight: 700;
  top: 50%;
  width: 1px;
  height: 45px;
  transform: translateY(-50%);
  background-color: #b0b0b0;
}
.cms-accordion.style2 br {
  display: block !important;
}
.cms-accordion.style2 .cms-ac-content {
  padding: 20px 35px 41px 28px;
}
@media screen and (max-width: 575px) {
  .cms-accordion.style2 .cms-ac-content {
    padding: 15px;
  }
}
.cms-video-player {
  position: relative;
}
.cms-video-player img {
  width: 100%;
}
.cms-video-player.style1_lager {
  top: 50%;
  transform: translateX(-50%, -50%);
}
.cms-video-player .btn-video {
  position: absolute;
  display: inline-flex;
  font-size: 26px;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background-color: #fff;
  border-radius: 200px;
  top: 37%;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 575px) {
  .cms-video-player .btn-video {
    width: 70px;
    height: 70px;
    font-size: 16px;
  }
}
.cms-video-player.style2 .btn-video:before {
  position: absolute;
  content: '';
  border: 2px dashed #ee1d22;
  border-radius: 150px;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  width: auto;
  height: auto;
}
.cms-video-player.style2 .item-title, .cms-video-player.style2 .item-title a {
  font-size: 60px;
  line-height: 62px;
  color: #fff;
  font-weight: 700;
  position: absolute;
  width: 100%;
  top: 60%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
.cms-video-player.style2 .cms-video-bg-image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.cms-video-player.style2:hover .btn-video:before {
  animation: spin 10000ms ease-out infinite;
}
.cms-video-player.style5 .btn-video {
  width: 140px;
  height: 140px;
}
.cms-video-player.style5 .btn-video:before {
  position: absolute;
  content: '';
  border: 2px dashed #ee1d22;
  border-radius: 150px;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  width: auto;
  height: auto;
}
.cms-video-player.style5 .item-title, .cms-video-player.style5 .item-title a {
  font-size: 60px;
  line-height: 62px;
  color: #fff;
  font-weight: 700;
  position: absolute;
  width: 100%;
  top: 60%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
.cms-video-player.style5 .cms-video-bg-image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.cms-video-player.style5:hover .btn-video:before {
  animation: spin 10000ms ease-out infinite;
}
.cms-video-player.style4 .cms-video-bg-image {
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.cms-video-player.style4 .btn-video {
  width: 140px;
  height: 140px;
}
@media screen and (max-width: 575px) {
  .cms-video-player.style4 .btn-video {
    width: 100px;
    height: 100px;
  }
}
@media screen and (max-width: 767px) {
  .cms-video-player.style4 .btn-video {
    width: 120px;
    height: 120px;
  }
}
@media screen and (max-width: 450px) {
  .cms-video-player.style4 .btn-video {
    width: 80px;
    height: 80px;
  }
}
.cms-video-player.style4 .btn-video:before {
  position: absolute;
  content: '';
  border: 2px dashed #ee1d22;
  border-radius: 150px;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  width: auto;
  height: auto;
}
.cms-video-player.style4 .item-title, .cms-video-player.style4 .item-title a {
  font-size: 60px;
  line-height: 62px;
  color: #fff;
  font-weight: 700;
  position: absolute;
  width: 100%;
  top: 60%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  padding: 0 20px;
}
@media screen and (max-width: 575px) {
  .cms-video-player.style4 .item-title, .cms-video-player.style4 .item-title a {
    font-size: 40px;
    line-height: 40px;
  }
}
@media screen and (max-width: 450px) {
  .cms-video-player.style4 .item-title, .cms-video-player.style4 .item-title a {
    font-size: 35px;
    line-height: 35px;
  }
}
.cms-video-player.style4 .cms-video-bg-image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.cms-video-player.style4:hover .btn-video:before {
  animation: spin 10000ms ease-out infinite;
}
.cms-video-player.style3 {
  display: inline-block;
}
.cms-video-player.style3 .wrap-inner-box {
  position: absolute;
  bottom: 85px;
  right: -100px;
}
@media screen and (max-width: 767px) {
  .cms-video-player.style3 .wrap-inner-box {
    left: auto;
    right: auto;
    top: 50%;
    bottom: auto;
    width: 100%;
    text-align: center;
    transform: translateY(-50%);
  }
  .cms-video-player.style3 .wrap-inner-box img {
    display: none;
  }
}
.cms-video-player.style3 .inner-box-btn {
  position: relative;
}
.cms-video-player.style3 .inner-box-btn .btn-video {
  position: absolute;
  display: inline-flex;
  font-size: 26px;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background-color: #fff;
  border-radius: 200px;
  top: 28.3%;
  left: 50%;
  transform: translateX(-50%);
}
.cms-video-player.style3 .inner-box-btn .btn-video:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 50%;
  animation: pulse-border2 1500ms ease-out infinite;
  -webkit-animation: pulse-border2 1500ms ease-out infinite;
  z-index: -2;
}
@media screen and (max-width: 575px) {
  .cms-video-player.style3 .inner-box-btn .btn-video {
    width: 70px;
    height: 70px;
    font-size: 16px;
  }
}
.cms-list li {
  display: flex;
  align-items: center;
}
.cms-list li a {
  font-family: Poppins;
  color: #2a2a2a;
  font-weight: 400;
  font-size: 18px;
  padding-left: 12px;
}
.cms-list li i {
  color: #ee1d22;
  font-size: 14px;
}
.cms-list-2 li {
  border: 1px solid #d2d2d2;
  box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
  display: flex;
  align-items: center;
  padding: 19px 24px;
  margin-bottom: 20px;
}
.cms-list-2 li a {
  font-family: Barlow Condensed;
  color: #2a2a2a !important;
  font-weight: 600;
  font-size: 20px;
  padding-left: 12px;
}
.cms-list-2 li i {
  font-family: 'Font Awesome 5 Pro';
  font-weight: 700;
  color: #ee1d22;
  font-size: 18px;
}
.cms-list-3 .icon2 {
  display: none;
}
.cms-list-3.style2 .icon1 {
  display: none;
}
.cms-list-3.style2 .icon2 {
  display: block;
}
.cms-list-3 li {
  display: flex;
  align-items: center;
}
.cms-list-3 li a {
  font-family: Poppins;
  color: #fff !important;
  font-weight: 400;
  font-size: 18px;
  padding-left: 12px;
}
.cms-banner.layout3 .wrap-banner {
  position: relative;
  margin-top: 80px;
}
.cms-banner.layout3 .wrap-banner .img-bg2 {
  position: absolute;
  display: inline-flex;
  width: 160px;
  height: 160px;
  border-radius: 150px;
  background-color: #fff;
  top: -80px;
  left: 100px;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .cms-banner.layout3 .wrap-banner .img-bg2 {
    top: -50px;
    left: 20px;
    width: 100px;
    height: 100px;
  }
}
.cms-banner.layout3 .wrap-banner .img-bg2 .wrap-img-2 {
  justify-content: center;
  align-items: center;
  display: inline-flex;
  width: 130px;
  height: 130px;
  border-radius: 150px;
  border: 1px solid #ee1d22;
}
@media screen and (max-width: 767px) {
  .cms-banner.layout3 .wrap-banner .img-bg2 .wrap-img-2 {
    width: 80px;
    height: 80px;
  }
}
.cms-banner.layout3 .wrap-banner .img-bg2 img {
  max-height: 70px;
}
@media screen and (max-width: 767px) {
  .cms-banner.layout3 .wrap-banner .img-bg2 img {
    max-height: 40px;
  }
}
.cms-banner.layout1 .inner-layout {
  position: relative;
  display: inline-block;
}
.cms-banner.layout1 .inner-layout .item--holder {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
  position: absolute;
  background-color: #fff;
  bottom: 75px;
  left: -70px;
  padding: 41px 10px 30px 34px;
  border-radius: 15px 70px 15px 15px;
  max-width: 208px;
  animation: abs 3s linear 0s infinite;
}
@media (max-width: 1390px) {
  .cms-banner.layout1 .inner-layout .item--holder {
    left: 5px;
  }
}
@media screen and (max-width: 450px) {
  .cms-banner.layout1 .inner-layout .item--holder {
    max-width: 195px;
    padding: 10px;
  }
  .cms-banner.layout1 .inner-layout .item--holder .item-nummber {
    font-size: 29px !important;
    margin-top: 5px !important;
  }
}
.cms-banner.layout1 .inner-layout .item--holder .item--title {
  font-size: 28px;
  line-height: 28px;
  font-weight: 600;
  color: #666;
  display: inline-block;
}
.cms-banner.layout1 .inner-layout .item--holder .item-des {
  font-size: 20px;
  line-height: 22px;
  font-weight: 600;
  color: #000;
  max-width: 80%;
  display: inline-block;
  text-transform: uppercase;
  margin-top: 9px;
  font-family: Barlow Condensed;
}
.cms-banner.layout1 .inner-layout .item--holder .item-nummber {
  font-family: Barlow Condensed;
  font-size: 88px;
  line-height: 49px;
  font-weight: 700;
  margin-top: 12px;
  display: inline-block;
  position: relative;
  color: #ee1d22;
}
.cms-banner.layout1 .inner-layout .item--holder .item-nummber small {
  position: absolute;
  top: 0;
  line-height: 10px;
  right: -29px;
  font-size: 54px;
  font-weight: 700;
}
@media screen and (max-width: 450px) {
  .cms-banner.layout1 .inner-layout .item--holder .item-nummber small {
    top: 6px;
    line-height: normal;
    right: -18px;
    font-size: 30px;
  }
}
@media (max-width: 1200px) and (min-width: 1025px) {
  .elementor-element-742e89f .elementor-element-populated {
    padding: 10px 20px 10px 20px !important;
  }
}
.cms-price-carousel.layout2 .slick-list {
  padding-bottom: 120px !important;
  padding-top: 120px !important;
  min-height: 500px !important;
}
@media (max-width: 350px) {
  .cms-price-carousel.layout2 .slick-list {
    padding-top: 150px !important;
  }
}
.cms-price-carousel.layout2 .slick-arrow {
  width: 80px;
  height: 80px;
  background-color: #fff;
  border-radius: 150px;
  margin-top: 15px;
}
@media screen and (max-width: 991px) {
  .cms-price-carousel.layout2 .slick-arrow {
    display: none !important;
  }
}
.cms-price-carousel.layout2 .slick-arrow:before {
  font-size: 25px;
  color: #2a2a2a;
  line-height: 80px;
  -webkit-transition: 300ms all linear 0ms;
  -khtml-transition: 300ms all linear 0ms;
  -moz-transition: 300ms all linear 0ms;
  -ms-transition: 300ms all linear 0ms;
  -o-transition: 300ms all linear 0ms;
  transition: 300ms all linear 0ms;
}
@media screen and (max-width: 1199px) {
  .cms-price-carousel.layout2 .slick-arrow {
    width: 70px;
    height: 70px;
  }
  .cms-price-carousel.layout2 .slick-arrow:before {
    font-size: 20px !important;
    line-height: 70px !important;
  }
}
.cms-price-carousel.layout2 .slick-arrow:hover {
  background-color: #ee1d22;
}
.cms-price-carousel.layout2 .slick-arrow:hover:before {
  color: #fff;
}
.cms-price-carousel.layout2 .slick-prev {
  margin-left: -6px;
  left: 19%;
}
.cms-price-carousel.layout2 .slick-next {
  right: 20%;
  margin-right: 13px;
  left: auto;
}
.cms-price-carousel.layout2 .slick-slide {
  padding-right: 23px !important;
  padding-left: 22px !important;
}
.cms-price-carousel.layout2 .slick-slide .item-icon {
  position: relative;
}
.cms-price-carousel.layout2 .slick-slide .item-icon img {
  width: 100%;
}
.cms-price-carousel.layout2 .slick-slide .item-icon:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: black;
  opacity: 0.3;
  -webkit-transition: 300ms all linear 0ms;
  -khtml-transition: 300ms all linear 0ms;
  -moz-transition: 300ms all linear 0ms;
  -ms-transition: 300ms all linear 0ms;
  -o-transition: 300ms all linear 0ms;
  transition: 300ms all linear 0ms;
}
.cms-price-carousel.layout2 .slick-slide.slick-center .item--title-ab {
  opacity: 0;
}
.cms-price-carousel.layout2 .slick-slide.slick-center .item-icon:before {
  opacity: 0;
}
.cms-price-carousel.layout2 .slick-slide.slick-center .wrap-meta-ab {
  opacity: 1;
  bottom: -81px;
}
.cms-price-carousel.layout2 .slick-slide .inner-content {
  position: relative;
}
.cms-price-carousel.layout2 .slick-slide .wrap-meta-ab {
  opacity: 0;
  border-radius: 5px 140px 5px 5px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 460px;
  background-color: #fff;
  padding: 56px 66px 60px 66px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  -webkit-transition: 1000ms all ease 0ms;
  -khtml-transition: 1000ms all ease 0ms;
  -moz-transition: 1000ms all ease 0ms;
  -ms-transition: 1000ms all ease 0ms;
  -o-transition: 1000ms all ease 0ms;
  transition: 1000ms all ease 0ms;
}
@media screen and (max-width: 1199px) {
  .cms-price-carousel.layout2 .slick-slide .wrap-meta-ab {
    padding: 30px;
  }
}
@media screen and (max-width: 450px) {
  .cms-price-carousel.layout2 .slick-slide .wrap-meta-ab {
    border-radius: 5px;
  }
}
.cms-price-carousel.layout2 .slick-slide .wrap-meta-ab .entry-content .item--title {
  font-size: 40px;
  font-family: Barlow Condensed;
  font-weight: 700;
  padding-bottom: 21px;
}
@media screen and (max-width: 1199px) {
  .cms-price-carousel.layout2 .slick-slide .wrap-meta-ab .entry-content .item--title {
    font-size: 30px;
    padding-bottom: 10px;
  }
}
.cms-price-carousel.layout2 .slick-slide .wrap-meta-ab .pricing-meta .list-it {
  font-size: 18px;
  font-family: Poppins;
  font-weight: 400;
  color: #666;
  margin-bottom: 13px;
}
.cms-price-carousel.layout2 .slick-slide .wrap-meta-ab .pricing-meta .list-it i {
  font-size: 13px;
  color: #ee1d22;
  margin-right: 10px;
}
@media screen and (max-width: 1199px) {
  .cms-price-carousel.layout2 .slick-slide .wrap-meta-ab .pricing-meta .list-it {
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 1199px) {
  .cms-price-carousel.layout2 .slick-slide .wrap-meta-ab .pricing-meta .list-it {
    font-size: 16px;
  }
}
.cms-price-carousel.layout2 .slick-slide .wrap-meta-ab .price {
  font-family: Barlow Condensed;
  color: #ee1d22;
  font-weight: 700;
  font-size: 70px;
  padding-bottom: 18px;
}
@media screen and (max-width: 1199px) {
  .cms-price-carousel.layout2 .slick-slide .wrap-meta-ab .price {
    padding-bottom: 10px;
  }
}
.cms-price-carousel.layout2 .slick-slide .wrap-meta-ab .price span {
  font-family: Barlow Condensed;
  color: #2a2a2a;
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  margin-left: -3px;
}
.cms-price-carousel.layout2 .slick-slide .wrap-meta-ab .btn-prc {
  position: relative;
  display: inline-flex;
  font-size: 18px;
  color: #fff;
  background-color: #ee1d22;
  width: 234px;
  height: 60px;
  text-transform: uppercase;
  font-family: Barlow Condensed;
  font-weight: 700 !important;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  border-radius: 5px 40px 5px 5px;
  z-index: 1;
  -webkit-transition: 300ms all linear 0ms;
  -khtml-transition: 300ms all linear 0ms;
  -moz-transition: 300ms all linear 0ms;
  -ms-transition: 300ms all linear 0ms;
  -o-transition: 300ms all linear 0ms;
  transition: 300ms all linear 0ms;
}
@media screen and (max-width: 450px) {
  .cms-price-carousel.layout2 .slick-slide .wrap-meta-ab .btn-prc {
    width: 200px;
    font-size: 16px;
  }
}
.cms-price-carousel.layout2 .slick-slide .wrap-meta-ab .btn-prc:before {
  position: absolute;
  content: "\f054";
  font-family: 'Font Awesome 5 Pro';
  right: -16px;
  top: 12px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  border: 3px solid #ee1d22;
  width: 37px;
  z-index: 2;
  height: 37px;
  font-size: 13px;
  background-color: #fff;
  color: #ee1d22;
  border-radius: 50px;
  -webkit-transition: 300ms all linear 0ms;
  -khtml-transition: 300ms all linear 0ms;
  -moz-transition: 300ms all linear 0ms;
  -ms-transition: 300ms all linear 0ms;
  -o-transition: 300ms all linear 0ms;
  transition: 300ms all linear 0ms;
  pointer-events: none;
}
.cms-price-carousel.layout2 .slick-slide .wrap-meta-ab .btn-prc:hover {
  background-color: #2a2a2a;
}
.cms-price-carousel.layout2 .slick-slide .wrap-meta-ab .btn-prc:hover:before {
  color: #2a2a2a;
  border-color: #2a2a2a;
}
.cms-price-carousel.layout1 .slick-prev, .cms-price-carousel.layout1 .slick-next {
  width: 69px;
  height: 69px;
  background-color: #fff;
  border-radius: 50px;
  line-height: 69px;
  font-weight: 700;
  font-size: 21px;
}
@media screen and (max-width: 991px) {
  .cms-price-carousel.layout1 .slick-prev, .cms-price-carousel.layout1 .slick-next {
    display: none !important;
  }
}
.cms-price-carousel.layout1 .slick-next {
  right: 74px;
  bottom: 17px;
  top: auto;
  z-index: 2;
  color: #fff;
  background-color: #ee1d22;
}
.cms-price-carousel.layout1 .slick-next:hover {
  background-color: #2a2a2a;
}
.cms-price-carousel.layout1 .slick-prev {
  z-index: 1;
  left: auto;
  right: 136px;
  bottom: 17px;
  top: auto;
  background-color: #fff;
  color: #ee1d22;
}
.cms-price-carousel.layout1 .slick-prev:hover {
  background-color: #2a2a2a;
  color: #fff;
}
.cms-price-carousel.layout1 .slick-slide .price-item {
  position: relative;
}
.cms-price-carousel.layout1 .slick-slide .price-item .wrap-content {
  display: inline-block;
  max-width: 550px;
  position: absolute;
  bottom: 51px;
  left: 51px;
  background-color: #fff;
  padding: 10px;
}
@media screen and (max-width: 991px) {
  .cms-price-carousel.layout1 .slick-slide .price-item .wrap-content {
    bottom: 1px;
    left: 1px;
  }
}
.cms-price-carousel.layout1 .slick-slide .price-item .wrap-content .entry-content {
  border: 3px dashed #ee1d22;
  padding: 41px 51px 37px 51px;
}
@media screen and (max-width: 991px) {
  .cms-price-carousel.layout1 .slick-slide .price-item .wrap-content .entry-content {
    padding: 20px;
  }
}
@media screen and (max-width: 575px) {
  .cms-price-carousel.layout1 .slick-slide .price-item .wrap-content .entry-content {
    padding: 18px;
  }
}
.cms-price-carousel.layout1 .slick-slide .price-item .wrap-content .entry-content .item--title {
  font-family: Barlow Condensed;
  font-weight: 700;
  color: #2a2a2a;
  font-size: 55px;
  line-height: 60px;
}
@media screen and (max-width: 991px) {
  .cms-price-carousel.layout1 .slick-slide .price-item .wrap-content .entry-content .item--title {
    font-size: 30px;
    line-height: 30px;
  }
}
.cms-price-carousel.layout1 .slick-slide .price-item .wrap-content .entry-content .price {
  font-family: Barlow Condensed;
  font-weight: 700;
  color: #ee1d22;
  font-size: 55px;
  line-height: 60px;
}
@media screen and (max-width: 991px) {
  .cms-price-carousel.layout1 .slick-slide .price-item .wrap-content .entry-content .price {
    padding-top: 4px;
    font-size: 20px;
    line-height: 26px;
  }
}
@media screen and (max-width: 575px) {
  .cms-price-carousel.layout1 .slick-slide .price-item .wrap-content .entry-content .price {
    padding-bottom: 5px;
  }
}
.cms-price-carousel.layout1 .slick-slide .price-item .wrap-content .entry-content .item--description {
  font-family: Poppins;
  font-weight: 400;
  color: #666;
  font-size: 18px;
  padding-top: 10px;
  padding-bottom: 36px;
  line-height: 30px;
}
@media screen and (max-width: 991px) {
  .cms-price-carousel.layout1 .slick-slide .price-item .wrap-content .entry-content .item--description {
    font-size: 15px;
    line-height: 15px;
    padding-bottom: 10px;
  }
}
@media screen and (max-width: 575px) {
  .cms-price-carousel.layout1 .slick-slide .price-item .wrap-content .entry-content .item--description {
    display: none;
  }
}
.cms-price-carousel.layout1 .slick-slide .price-item .wrap-content .entry-content a {
  display: inline-flex;
  height: 60px;
  background-color: #ee1d22;
  color: #fff;
  font-family: Barlow Condensed;
  font-size: 18px;
  font-weight: 700;
  align-items: center;
  padding: 0 50px;
  border-radius: 5px 50px 5px 5px;
  -webkit-transition: 300ms all linear 0ms;
  -khtml-transition: 300ms all linear 0ms;
  -moz-transition: 300ms all linear 0ms;
  -ms-transition: 300ms all linear 0ms;
  -o-transition: 300ms all linear 0ms;
  transition: 300ms all linear 0ms;
}
@media screen and (max-width: 991px) {
  .cms-price-carousel.layout1 .slick-slide .price-item .wrap-content .entry-content a {
    font-size: 15px;
    height: 45px;
    padding: 0 20px;
  }
}
.cms-price-carousel.layout1 .slick-slide .price-item .wrap-content .entry-content a:hover {
  background-color: #2a2a2a;
}
.cms-testimonial-list .item-star i {
  display: inline-block;
  font-size: 13px;
  color: rgba(102, 102, 102, 0.5);
  margin: 0 -2px;
}
.cms-testimonial-list .item-star.one-star i:nth-child(1) {
  color: #ffcb12;
}
.cms-testimonial-list .item-star.two-star i:nth-child(1), .cms-testimonial-list .item-star.two-star i:nth-child(2) {
  color: #ffcb12;
}
.cms-testimonial-list .item-star.three-star i:nth-child(1), .cms-testimonial-list .item-star.three-star i:nth-child(2), .cms-testimonial-list .item-star.three-star i:nth-child(3) {
  color: #ffcb12;
}
.cms-testimonial-list .item-star.four-star i:nth-child(1), .cms-testimonial-list .item-star.four-star i:nth-child(2), .cms-testimonial-list .item-star.four-star i:nth-child(3), .cms-testimonial-list .item-star.four-star i:nth-child(4) {
  color: #ffcb12;
}
.cms-testimonial-list .item-star.five-star i {
  color: #ffcb12;
}
.cms-testimonial-list .slick-list {
  padding-top: 25px;
  padding-bottom: 38px;
}
.cms-testimonial-list .slick-dots li {
  margin-left: 4px;
  margin-right: 4px;
}
.cms-testimonial-list .slick-dots li button {
  line-height: 1;
  width: 12px;
  height: 12px;
  background-color: rgba(102, 102, 102, 0.3);
}
.cms-testimonial-list .slick-dots li.slick-active button {
  width: 16px;
  height: 16px;
  line-height: 1;
  -webkit-border-radius: 16px;
  -khtml-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  border-radius: 16px;
  border: 2px solid #666;
  background-color: #666;
}
.cms-testimonial-list {
  -webkit-transition: 300ms all linear 0ms;
  -khtml-transition: 300ms all linear 0ms;
  -moz-transition: 300ms all linear 0ms;
  -ms-transition: 300ms all linear 0ms;
  -o-transition: 300ms all linear 0ms;
  transition: 300ms all linear 0ms;
}
.cms-testimonial-list:hover {
  transform: translateY(-20px);
}
.cms-testimonial-list:hover .testimonial-item {
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}
.cms-testimonial-list .testimonial-item {
  background-color: #f8f8f8;
  padding: 70px 60px 57px 60px;
  border-radius: 10px 150px 10px 10px;
  -webkit-transition: 300ms all linear 0ms;
  -khtml-transition: 300ms all linear 0ms;
  -moz-transition: 300ms all linear 0ms;
  -ms-transition: 300ms all linear 0ms;
  -o-transition: 300ms all linear 0ms;
  transition: 300ms all linear 0ms;
}
@media screen and (max-width: 575px) {
  .cms-testimonial-list .testimonial-item {
    padding: 40px 20px 30px 20px;
  }
}
.cms-testimonial-list .testimonial-item .item-inner .item-top .item-star i {
  font-size: 23px;
  margin-right: 4px;
}
.cms-testimonial-list .testimonial-item .item-inner .item-top .item-title-box h3 {
  font-size: 40px;
  font-weight: 700;
  color: #2a2a2a;
  padding-top: 3px;
  padding-bottom: 23px;
}
@media screen and (max-width: 575px) {
  .cms-testimonial-list .testimonial-item .item-inner .item-top .item-title-box h3 {
    font-size: 30px;
    line-height: 30px;
    padding-bottom: 15px;
    padding-top: 10px;
  }
}
.cms-testimonial-list .testimonial-item .item-inner .item-top .item-description {
  font-family: Poppins;
  font-size: 22px;
  font-weight: 400;
  line-height: 38px;
  padding-bottom: 44px;
}
@media screen and (max-width: 575px) {
  .cms-testimonial-list .testimonial-item .item-inner .item-top .item-description {
    padding-bottom: 20px;
    font-size: 16px;
    line-height: 24px;
  }
}
.cms-testimonial-list .testimonial-item .item-inner .item-holder {
  display: flex;
}
.cms-testimonial-list .testimonial-item .item-inner .item-holder .item-image {
  width: 120px;
  height: 120px;
  border-radius: 250px;
  overflow: hidden;
}
@media screen and (max-width: 575px) {
  .cms-testimonial-list .testimonial-item .item-inner .item-holder .item-image {
    width: 80px;
    height: 80px;
  }
}
.cms-testimonial-list .testimonial-item .item-inner .item-holder .item-meta {
  padding-left: 16px;
}
.cms-testimonial-list .testimonial-item .item-inner .item-holder .item-meta .item-name {
  padding-top: 9px;
  font-size: 40px;
  font-weight: 700;
  color: #2a2a2a;
  text-transform: uppercase;
}
@media screen and (max-width: 575px) {
  .cms-testimonial-list .testimonial-item .item-inner .item-holder .item-meta .item-name {
    font-size: 25px;
  }
}
.cms-testimonial-list .testimonial-item .item-inner .item-holder .item-meta .item-position {
  margin-top: -5px;
  font-size: 16px;
  font-weight: 700;
  color: #ee1d22;
  text-transform: uppercase;
}
.cms-testimonial-carousel3 .slick-arrow {
  height: 46px;
  width: 46px;
  border-radius: 50px;
  border: 2px solid #ee1d22;
  background-color: #fff;
  top: auto;
}
.cms-testimonial-carousel3 .slick-arrow:before {
  color: #ee1d22;
  line-height: 44px;
  -webkit-transition: 300ms all linear 0ms;
  -khtml-transition: 300ms all linear 0ms;
  -moz-transition: 300ms all linear 0ms;
  -ms-transition: 300ms all linear 0ms;
  -o-transition: 300ms all linear 0ms;
  transition: 300ms all linear 0ms;
}
.cms-testimonial-carousel3 .slick-arrow:hover:before {
  color: #fff;
}
.cms-testimonial-carousel3 .slick-arrow.slick-prev {
  bottom: -12px;
  right: 70px;
  z-index: 2;
  left: auto;
}
.cms-testimonial-carousel3 .slick-arrow.slick-next {
  bottom: -12px;
  right: 30px;
  z-index: 1;
}
.cms-testimonial-carousel3 .testimonial-item .testimonial-inner {
  display: flex;
}
@media screen and (max-width: 575px) {
  .cms-testimonial-carousel3 .testimonial-item .testimonial-inner {
    display: block;
  }
}
.cms-testimonial-carousel3 .testimonial-item .testimonial-inner .wrap-rate {
  min-width: 196px;
}
.cms-testimonial-carousel3 .testimonial-item .testimonial-inner .wrap-rate .testimonial-title {
  margin-top: -23px;
}
.cms-testimonial-carousel3 .testimonial-item .testimonial-inner .wrap-rate .testimonial-title .title {
  font-weight: 800;
  color: #2a2a2a;
  font-family: Barlow Condensed;
  font-size: 120px;
  line-height: 120px;
}
.cms-testimonial-carousel3 .testimonial-item .testimonial-inner .wrap-rate .item-star {
  margin-top: 2px;
}
.cms-testimonial-carousel3 .testimonial-item .testimonial-inner .wrap-rate .item-star i {
  display: inline-block;
  font-size: 22px;
  color: #ffcb12;
  margin: 0 1px;
  opacity: 0;
}
.cms-testimonial-carousel3 .testimonial-item .testimonial-inner .wrap-rate .item-star.one-star i:nth-child(1) {
  opacity: 1;
}
.cms-testimonial-carousel3 .testimonial-item .testimonial-inner .wrap-rate .item-star.two-star i:nth-child(1), .cms-testimonial-carousel3 .testimonial-item .testimonial-inner .wrap-rate .item-star.two-star i:nth-child(2) {
  opacity: 1;
}
.cms-testimonial-carousel3 .testimonial-item .testimonial-inner .wrap-rate .item-star.three-star i:nth-child(1), .cms-testimonial-carousel3 .testimonial-item .testimonial-inner .wrap-rate .item-star.three-star i:nth-child(2), .cms-testimonial-carousel3 .testimonial-item .testimonial-inner .wrap-rate .item-star.three-star i:nth-child(3) {
  opacity: 1;
}
.cms-testimonial-carousel3 .testimonial-item .testimonial-inner .wrap-rate .item-star.four-star i:nth-child(1), .cms-testimonial-carousel3 .testimonial-item .testimonial-inner .wrap-rate .item-star.four-star i:nth-child(2), .cms-testimonial-carousel3 .testimonial-item .testimonial-inner .wrap-rate .item-star.four-star i:nth-child(3), .cms-testimonial-carousel3 .testimonial-item .testimonial-inner .wrap-rate .item-star.four-star i:nth-child(4) {
  opacity: 1;
}
.cms-testimonial-carousel3 .testimonial-item .testimonial-inner .wrap-rate .item-star.five-star i {
  opacity: 1;
}
.cms-testimonial-carousel3 .testimonial-item .testimonial-inner .meta-bottom {
  border-left: 1px solid #e6e6e6;
  padding-left: 54px;
}
@media screen and (max-width: 575px) {
  .cms-testimonial-carousel3 .testimonial-item .testimonial-inner .meta-bottom {
    padding-left: 0px;
    padding-top: 20px;
    border: none;
  }
}
.cms-testimonial-carousel3 .testimonial-item .testimonial-inner .meta-bottom .testimonial-desc {
  font-size: 22px;
  font-family: Poppins;
  color: #2a2a2a;
  line-height: 38px;
  font-weight: 400;
  margin-top: -5px;
}
.cms-testimonial-carousel3 .testimonial-item .testimonial-inner .meta-bottom .testimonial-meta {
  padding-top: 29px;
}
.cms-testimonial-carousel3 .testimonial-item .testimonial-inner .meta-bottom .testimonial-meta .testimonial-info .testimonial-name {
  font-size: 40px;
  font-family: Barlow Condensed;
  color: #2a2a2a;
  line-height: 38px;
  font-weight: 700;
  text-transform: uppercase;
}
.cms-testimonial-carousel3 .testimonial-item .testimonial-inner .meta-bottom .testimonial-meta .testimonial-info .testimonial-position {
  font-size: 16px;
  font-family: Barlow Condensed;
  color: #2a2a2a;
  line-height: 38px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.cms-pricing.layout1 {
  padding: 10px;
  background-color: #ee1d22;
}
.cms-pricing.layout1 .cms-pricing-inner {
  border: dashed 3px #ee1d22;
  background-color: #fff;
  padding: 41px 50px 37px 50px;
}
@media screen and (max-width: 575px) {
  .cms-pricing.layout1 .cms-pricing-inner {
    padding: 30px;
  }
}
.cms-pricing.layout1 .cms-pricing-inner .pricing-meta .pricing-title {
  font-size: 55px;
  font-weight: 700;
  line-height: 60px;
  color: #2a2a2a;
  text-transform: uppercase;
}
@media screen and (max-width: 575px) {
  .cms-pricing.layout1 .cms-pricing-inner .pricing-meta .pricing-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 40px;
  }
}
.cms-pricing.layout1 .cms-pricing-inner .pricing-meta .pricing-price {
  font-size: 55px;
  font-weight: 700;
  line-height: 60px;
  color: #ee1d22;
  text-transform: uppercase;
}
@media screen and (max-width: 575px) {
  .cms-pricing.layout1 .cms-pricing-inner .pricing-meta .pricing-price {
    font-size: 40px;
    font-weight: 700;
    line-height: 40px;
  }
}
.cms-pricing.layout1 .cms-pricing-inner .pricing-meta .pricing-excerpt {
  font-family: Poppins;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  color: #666;
  padding-top: 10px;
  padding-bottom: 36px;
}
@media screen and (max-width: 575px) {
  .cms-pricing.layout1 .cms-pricing-inner .pricing-meta .pricing-excerpt {
    padding-bottom: 20px;
  }
}
.cms-pricing.layout1 .cms-pricing-inner .pricing-button a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 260px;
  height: 60px;
  background-color: #ee1d22;
  color: #fff;
  border-radius: 5px 50px 5px 5px;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 700;
  -webkit-transition: 300ms all linear 0ms;
  -khtml-transition: 300ms all linear 0ms;
  -moz-transition: 300ms all linear 0ms;
  -ms-transition: 300ms all linear 0ms;
  -o-transition: 300ms all linear 0ms;
  transition: 300ms all linear 0ms;
}
@media screen and (max-width: 575px) {
  .cms-pricing.layout1 .cms-pricing-inner .pricing-button a {
    width: 200px;
    height: 50px;
    font-size: 16px;
  }
}
.cms-pricing.layout1 .cms-pricing-inner .pricing-button a:hover {
  background-color: #2a2a2a;
  border-radius: 5px 5px 5px 5px;
}
.cms-pricing-layout2 {
  position: relative;
  padding-top: 48px;
  -webkit-transition: 300ms all linear 0ms;
  -khtml-transition: 300ms all linear 0ms;
  -moz-transition: 300ms all linear 0ms;
  -ms-transition: 300ms all linear 0ms;
  -o-transition: 300ms all linear 0ms;
  transition: 300ms all linear 0ms;
}
.cms-pricing-layout2:hover {
  transform: translatey(-20px);
}
.cms-pricing-layout2:hover .inner-icon:before {
  animation: spin 4s linear 0s infinite;
}
.cms-pricing-layout2:hover .cms-pricing-inner {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}
.cms-pricing-layout2 .item--icon {
  position: absolute;
  right: 24px;
  z-index: 2;
  top: 0px;
}
@media screen and (max-width: 575px) {
  .cms-pricing-layout2 .item--icon {
    top: 15px;
  }
}
.cms-pricing-layout2 .item--icon .inner-icon {
  background-color: #ee1d22;
  border-radius: 200px;
  justify-content: center;
  align-items: center;
  display: inline-flex;
  width: 110px;
  height: 110px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 575px) {
  .cms-pricing-layout2 .item--icon .inner-icon {
    width: 80px;
    height: 80px;
  }
  .cms-pricing-layout2 .item--icon .inner-icon img {
    max-height: 35px;
  }
}
.cms-pricing-layout2 .item--icon .inner-icon:before {
  position: absolute;
  content: "";
  width: 97px;
  height: 97px;
  border: 1px dashed #fff;
  border-radius: 150px;
}
@media screen and (max-width: 575px) {
  .cms-pricing-layout2 .item--icon .inner-icon:before {
    width: 60px;
    height: 60px;
  }
}
.cms-pricing-layout2 .cms-pricing-inner {
  border: 1px solid #d2d2d2;
  border-top: 14px solid #ee1d22;
  background-color: #fff;
  position: relative;
  overflow: hidden;
  -webkit-transition: 300ms all linear 0ms;
  -khtml-transition: 300ms all linear 0ms;
  -moz-transition: 300ms all linear 0ms;
  -ms-transition: 300ms all linear 0ms;
  -o-transition: 300ms all linear 0ms;
  transition: 300ms all linear 0ms;
  padding: 47px 50px 35px 44px;
}
@media screen and (max-width: 575px) {
  .cms-pricing-layout2 .cms-pricing-inner {
    padding: 30px 50px 30px 30px;
  }
}
.cms-pricing-layout2 .cms-pricing-inner .image-pp {
  position: absolute;
  bottom: -100px;
  right: -100px;
}
.cms-pricing-layout2 .cms-pricing-inner .prc-header {
  position: relative;
}
.cms-pricing-layout2 .cms-pricing-inner .prc-header .prc-header-inner .pricing-title {
  font-size: 38px;
  font-weight: 700;
  color: #2a2a2a;
  line-height: 36px;
  text-transform: uppercase;
}
.cms-pricing-layout2 .cms-pricing-inner .prc-header .prc-header-inner .wrap-price {
  padding-top: 9px;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: bold;
}
.cms-pricing-layout2 .cms-pricing-inner .prc-header .prc-header-inner .wrap-price .entry-price {
  color: #ee1d22;
}
.cms-pricing-layout2 .cms-pricing-inner .prc-header .prc-header-inner .wrap-price .entry-time {
  color: #666;
  letter-spacing: 2px;
}
.cms-pricing-layout2 .cms-pricing-inner .pricing-meta {
  padding-top: 24px;
  position: relative;
}
.cms-pricing-layout2 .cms-pricing-inner .pricing-meta .cms-pricing-feature li {
  font-size: 18px;
  color: #666;
  font-weight: 400;
  font-family: Barlow Condensed;
  margin-bottom: 9px;
}
.cms-pricing-layout2 .cms-pricing-inner .pricing-meta .cms-pricing-feature li i {
  color: #32ba7c;
  font-size: 16px;
  padding-right: 10px;
}
.cms-pricing-layout2 .cms-pricing-inner .pricing-meta .cms-pricing-feature li.no-active i {
  color: #666;
}
.cms-pricing-layout2 .cms-pricing-inner .pricing-meta .btn-prc {
  margin-top: 30px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 203px;
  height: 60px;
  background-color: #ee1d22;
  color: #fff;
  border-radius: 5px 50px 5px 5px;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 700;
  -webkit-transition: 300ms all linear 0ms;
  -khtml-transition: 300ms all linear 0ms;
  -moz-transition: 300ms all linear 0ms;
  -ms-transition: 300ms all linear 0ms;
  -o-transition: 300ms all linear 0ms;
  transition: 300ms all linear 0ms;
}
@media screen and (max-width: 575px) {
  .cms-pricing-layout2 .cms-pricing-inner .pricing-meta .btn-prc {
    width: 200px;
    height: 50px;
    font-size: 16px;
  }
}
.cms-pricing-layout2 .cms-pricing-inner .pricing-meta .btn-prc:hover {
  background-color: #2a2a2a;
}
.cms-pricing-layout3 .cms-pricing-inner {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 575px) {
  .cms-pricing-layout3 .cms-pricing-inner {
    display: block;
  }
}
.cms-pricing-layout3 .cms-pricing-inner .image-pp {
  z-index: 2;
}
.cms-pricing-layout3 .cms-pricing-inner .image-pp img {
  -webkit-transition: 300ms all linear 0ms;
  -khtml-transition: 300ms all linear 0ms;
  -moz-transition: 300ms all linear 0ms;
  -ms-transition: 300ms all linear 0ms;
  -o-transition: 300ms all linear 0ms;
  transition: 300ms all linear 0ms;
  min-width: 230px;
  border-radius: 150px;
  margin-right: -115px;
}
@media screen and (max-width: 575px) {
  .cms-pricing-layout3 .cms-pricing-inner .image-pp img {
    margin-bottom: -110px;
    margin-left: 20px;
  }
}
.cms-pricing-layout3 .cms-pricing-inner .wrap-meta-bottom {
  border: 1px solid #d8d8d8;
  padding: 45px 20px 45px 138px;
  position: relative;
}
@media screen and (max-width: 575px) {
  .cms-pricing-layout3 .cms-pricing-inner .wrap-meta-bottom {
    z-index: -1;
    border: none;
    padding: 130px 20px 40px 20px;
    background-color: #f8f8f8;
  }
}
.cms-pricing-layout3 .cms-pricing-inner .wrap-meta-bottom:before {
  position: absolute;
  content: '';
  width: 1px;
  height: 100%;
  background-color: #d8d8d8;
  left: 17px;
  top: 0;
}
@media screen and (max-width: 575px) {
  .cms-pricing-layout3 .cms-pricing-inner .wrap-meta-bottom:before {
    display: none;
  }
}
.cms-pricing-layout3 .cms-pricing-inner .prc-header .pricing-title {
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  padding-bottom: 7px;
}
@media screen and (max-width: 575px) {
  .cms-pricing-layout3 .cms-pricing-inner .prc-header .pricing-title {
    padding-bottom: 15px;
  }
}
.cms-pricing-layout3 .cms-pricing-inner .prc-header .entry-price {
  font-size: 70px;
  color: #ee1d22;
  font-weight: 700;
  line-height: 43px;
}
.cms-pricing-layout3 .cms-pricing-inner .prc-header .entry-time {
  font-size: 70px;
  font-weight: 700;
  color: #2a2a2a;
  line-height: 43px;
}
.cms-pricing-layout3 .cms-pricing-inner .prc-header .pricing-excerpt {
  padding-top: 12px;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: #2a2a2a;
  font-family: Poppins;
}
.cms-pricing-layout3 .cms-pricing-inner .pricing-meta {
  padding-top: 26px;
}
.cms-pricing-layout3 .cms-pricing-inner .pricing-meta .btn-prc {
  padding-left: 36px;
  font-size: 20px;
  font-weight: 700;
  color: #ee1d22;
  text-transform: uppercase;
  position: relative;
}
.cms-pricing-layout3 .cms-pricing-inner .pricing-meta .btn-prc:before {
  position: absolute;
  content: "\f054";
  font-family: 'Font Awesome 5 Pro';
  left: 0;
  top: -4px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  border: 3px solid #ee1d22;
  width: 32px;
  z-index: 2;
  height: 32px;
  font-size: 11px;
  background-color: #fff;
  color: #ee1d22;
  border-radius: 50px;
  -webkit-transition: 300ms all linear 0ms;
  -khtml-transition: 300ms all linear 0ms;
  -moz-transition: 300ms all linear 0ms;
  -ms-transition: 300ms all linear 0ms;
  -o-transition: 300ms all linear 0ms;
  transition: 300ms all linear 0ms;
  pointer-events: none;
}
.cms-pricing-layout3 .cms-pricing-inner .pricing-meta .btn-prc:hover {
  opacity: 0.9;
  color: #2a2a2a;
}
.cms-pricing-layout3 .cms-pricing-inner .pricing-meta .btn-prc:hover:before {
  border: 3px solid #2a2a2a;
  color: #2a2a2a;
}
.cms-pricing-layout3 .cms-pricing-inner:hover img {
  transform: scale(0.95);
}
.contact-page h2 {
  font-size: 60px;
  font-weight: 700;
  line-height: 60px;
  color: #2a2a2a;
  padding-bottom: 44px;
}
@media screen and (max-width: 575px) {
  .contact-page h2 {
    font-size: 40px;
    line-height: 40px;
    padding-bottom: 15px;
  }
}
.contact-page input {
  border: 1px solid #eaeaea;
  background-color: #fff;
  height: 72px;
  font-size: 16px;
  font-family: Poppins;
  font-weight: 400;
  border-radius: 5px 40px 5px 5px;
}
.contact-page textarea {
  border: 1px solid #eaeaea;
  background-color: #fff;
  height: 210px;
  font-size: 16px;
  font-family: Poppins;
  font-weight: 400;
  border-radius: 5px 40px 5px 5px;
}
.contact-page .pdl {
  padding-left: 8px;
}
@media screen and (max-width: 575px) {
  .contact-page .pdl {
    padding-left: 15px;
  }
}
.contact-page .pdr {
  padding-right: 8px;
}
@media screen and (max-width: 575px) {
  .contact-page .pdr {
    padding-right: 15px;
  }
}
@-moz-document url-prefix() {
  .contact-page .input-submit-form {
    padding-top: 8px !important;
  }
}
.contact-page .input-submit-form {
  padding-top: 5px;
}
.contact-page .input-submit-form .bt-submit {
  position: relative;
  display: inline-block;
  max-width: 225px;
}
.contact-page .input-submit-form .bt-submit .wpcf7-spinner {
  display: none !important;
}
.contact-page .input-submit-form .bt-submit:before {
  position: absolute;
  content: "\f054";
  font-family: 'Font Awesome 5 Pro';
  right: -13px;
  top: 10px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  border: 3px solid #ee1d22;
  width: 40px;
  z-index: 2;
  height: 40px;
  font-size: 13px;
  background-color: #fff;
  color: #ee1d22;
  border-radius: 50px;
  -webkit-transition: 300ms all linear 0ms;
  -khtml-transition: 300ms all linear 0ms;
  -moz-transition: 300ms all linear 0ms;
  -ms-transition: 300ms all linear 0ms;
  -o-transition: 300ms all linear 0ms;
  transition: 300ms all linear 0ms;
}
.contact-page .input-submit-form .bt-submit:hover:before {
  border-color: #2a2a2a;
  color: #2a2a2a;
}
.contact-page .input-submit-form .bt-submit:hover input {
  background-color: #2a2a2a;
}
.contact-page .input-submit-form input {
  border: none;
  display: inline-flex;
  font-size: 18px;
  width: 225px;
  height: 60px;
  text-transform: uppercase;
  font-family: Barlow Condensed;
  font-weight: 700 !important;
  justify-content: center;
  align-items: center;
  background-color: #ee1d22;
  border-radius: 3px;
  border-radius: 5px 40px 5px 5px;
  z-index: 1;
  -webkit-transition: 300ms all linear 0ms;
  -khtml-transition: 300ms all linear 0ms;
  -moz-transition: 300ms all linear 0ms;
  -ms-transition: 300ms all linear 0ms;
  -o-transition: 300ms all linear 0ms;
  transition: 300ms all linear 0ms;
}
.contact-estimate, .contact-schedule {
  padding: 47px 100px 39px 100px;
}
@media screen and (min-width: 768px) {
  .contact-estimate .custom-ip, .contact-schedule .custom-ip {
    align-items: flex-start !important;
  }
  .contact-estimate .custom-ip label, .contact-schedule .custom-ip label {
    margin-top: 20px !important;
  }
}
@media screen and (max-width: 1260px) {
  .contact-estimate, .contact-schedule {
    padding: 30px;
  }
}
@media screen and (max-width: 767px) {
  .contact-estimate, .contact-schedule {
    padding: 20px;
  }
}
.contact-estimate .pdl, .contact-schedule .pdl {
  padding-left: 15px;
}
@media screen and (max-width: 1260px) {
  .contact-estimate .pdl, .contact-schedule .pdl {
    padding-left: 10px;
  }
}
@media screen and (max-width: 767px) {
  .contact-estimate .pdl, .contact-schedule .pdl {
    padding-left: 0px !important;
    margin-top: 20px;
  }
}
.contact-estimate .pdr, .contact-schedule .pdr {
  padding-right: 15px;
}
@media screen and (max-width: 1260px) {
  .contact-estimate .pdr, .contact-schedule .pdr {
    padding-right: 10px;
  }
}
@media screen and (max-width: 767px) {
  .contact-estimate .pdr, .contact-schedule .pdr {
    padding-right: 0px !important;
  }
}
.contact-estimate .info-meta-top h2, .contact-schedule .info-meta-top h2 {
  padding-bottom: 23px;
}
.contact-estimate input[type=text], .contact-schedule input[type=text], .contact-estimate input[type=email], .contact-schedule input[type=email], .contact-estimate input[type=number], .contact-schedule input[type=number] {
  height: 66px;
  font-size: 20px;
  font-weight: 500;
  color: #2a2a2a;
}
.contact-estimate .info-meta-bottom, .contact-schedule .info-meta-bottom {
  padding-top: 42px;
}
@media screen and (max-width: 767px) {
  .contact-estimate .info-meta-bottom, .contact-schedule .info-meta-bottom {
    padding-top: 0px;
  }
}
.contact-estimate .info-meta-bottom .wrap-input-filled, .contact-schedule .info-meta-bottom .wrap-input-filled {
  padding-left: 0;
  padding-right: 0;
}
.contact-estimate .info-meta-bottom .rd-bt, .contact-schedule .info-meta-bottom .rd-bt {
  padding-top: 5px;
  padding-bottom: 10px;
}
@media screen and (max-width: 575px) {
  .contact-estimate .info-meta-bottom .rd-bt, .contact-schedule .info-meta-bottom .rd-bt {
    padding: 0;
  }
}
.contact-estimate .info-meta-bottom .rd-sv, .contact-schedule .info-meta-bottom .rd-sv {
  padding-top: 25px;
}
.contact-estimate .info-meta-bottom .rd-sv.wrap-input-filled, .contact-schedule .info-meta-bottom .rd-sv.wrap-input-filled {
  margin-bottom: 28px !important;
}
@media screen and (max-width: 575px) {
  .contact-estimate .info-meta-bottom .rd-sv, .contact-schedule .info-meta-bottom .rd-sv {
    padding-top: 10px;
  }
  .contact-estimate .info-meta-bottom .rd-sv.wrap-input-filled, .contact-schedule .info-meta-bottom .rd-sv.wrap-input-filled {
    margin-bottom: 20px !important;
  }
}
.contact-estimate .info-meta-bottom .des-city, .contact-schedule .info-meta-bottom .des-city {
  padding-top: 11px;
  padding-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .contact-estimate .info-meta-bottom .des-city, .contact-schedule .info-meta-bottom .des-city {
    padding-bottom: 0;
  }
}
.contact-estimate .info-meta-bottom .des-city p, .contact-schedule .info-meta-bottom .des-city p {
  font-size: 16px;
  font-family: Poppins;
  color: #2a2a2a;
  line-height: 28px;
  font-weight: 400;
}
.contact-estimate .info-meta-bottom .email-list, .contact-schedule .info-meta-bottom .email-list {
  padding-top: 20px;
  padding-bottom: 27px;
}
@media screen and (max-width: 767px) {
  .contact-estimate .info-meta-bottom .email-list, .contact-schedule .info-meta-bottom .email-list {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.contact-estimate .info-meta-bottom .cb-form, .contact-schedule .info-meta-bottom .cb-form {
  padding-bottom: 43px;
}
@media screen and (max-width: 767px) {
  .contact-estimate .info-meta-bottom .cb-form, .contact-schedule .info-meta-bottom .cb-form {
    padding-bottom: 20px;
  }
}
.contact-estimate .info-meta-bottom .cb-form br, .contact-schedule .info-meta-bottom .cb-form br {
  display: none;
}
.contact-estimate .info-meta-bottom .cb-form .wpcf7-form-control-wrap, .contact-schedule .info-meta-bottom .cb-form .wpcf7-form-control-wrap {
  margin-top: 8px;
}
.contact-estimate .info-meta-bottom h2, .contact-schedule .info-meta-bottom h2 {
  padding-bottom: 17px;
}
@media screen and (max-width: 575px) {
  .contact-estimate .info-meta-bottom h2, .contact-schedule .info-meta-bottom h2 {
    padding-bottom: 10px;
  }
}
.contact-estimate .wpcf7-list-item label, .contact-schedule .wpcf7-list-item label {
  width: auto !important;
}
.contact-estimate .nice-select > span, .contact-schedule .nice-select > span {
  height: 66px;
  font-size: 20px;
  font-weight: 500;
  color: #2a2a2a !important;
  font-family: Barlow Condensed;
}
.contact-estimate input[type=radio], .contact-schedule input[type=radio], .contact-estimate input[type=checkbox], .contact-schedule input[type=checkbox] {
  height: auto;
}
.contact-estimate textarea, .contact-schedule textarea {
  height: 170px;
  font-weight: 500;
  font-size: 20px;
  color: #2a2a2a;
}
.contact-estimate label, .contact-schedule label {
  min-width: 228px;
  font-weight: 500;
  font-size: 20px;
  color: #2a2a2a;
}
.contact-estimate input, .contact-schedule input, .contact-estimate textarea, .contact-schedule textarea {
  background-color: #fff;
  border: 1px solid #d2d2d2;
}
.contact-estimate .wpcf7-form-control-wrap, .contact-schedule .wpcf7-form-control-wrap {
  margin-bottom: 0px !important;
}
.contact-estimate h2, .contact-schedule h2 {
  font-size: 35px;
  font-weight: 700;
}
@media screen and (max-width: 575px) {
  .contact-estimate h2, .contact-schedule h2 {
    font-size: 30px;
    line-height: normal;
  }
}
.contact-estimate .wrap-input-filled, .contact-schedule .wrap-input-filled {
  margin-bottom: 30px;
  justify-content: space-between;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .contact-estimate .wrap-input-filled, .contact-schedule .wrap-input-filled {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 1260px) {
  .contact-estimate .wrap-input-filled, .contact-schedule .wrap-input-filled {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .contact-estimate .wrap-input-filled, .contact-schedule .wrap-input-filled {
    display: block;
  }
}
.contact-estimate .wrap-input-filled label, .contact-schedule .wrap-input-filled label {
  margin-top: -4px;
}
@media screen and (max-width: 575px) {
  .contact-estimate .wrap-input-filled label, .contact-schedule .wrap-input-filled label {
    margin-top: 0;
  }
}
.contact-estimate .input-filled, .contact-schedule .input-filled {
  width: 100%;
}
.contact-estimate span.wpcf7-list-item, .contact-schedule span.wpcf7-list-item {
  display: inline-block;
  margin: 0;
}
.contact-estimate .wpcf7 .wpcf7-list-item, .contact-schedule .wpcf7 .wpcf7-list-item {
  display: block;
  margin-bottom: 10px;
}
.contact-estimate .wpcf7-checkbox label, .contact-schedule .wpcf7-checkbox label {
  position: relative;
  cursor: pointer;
}
.contact-estimate .wpcf7-checkbox input[type=checkbox], .contact-schedule .wpcf7-checkbox input[type=checkbox] {
  position: absolute;
  visibility: hidden;
  width: 26px;
  height: 26px;
  top: 0;
  left: 0;
}
.contact-estimate .wpcf7-checkbox input[type=checkbox] + span:before, .contact-schedule .wpcf7-checkbox input[type=checkbox] + span:before {
  display: block;
  position: absolute;
  background-color: #fff;
  content: '';
  border-radius: 0;
  height: 26px;
  width: 26px;
  top: 2px;
  left: 0px;
  -webkit-border-radius: 5px;
  -khtml-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  border: 4px solid #cfcfcf;
}
.contact-estimate .wpcf7-checkbox input[type=checkbox] + span:after, .contact-schedule .wpcf7-checkbox input[type=checkbox] + span:after {
  display: block;
  position: absolute;
  content: "\f111";
  font-family: 'Font Awesome 5 Pro';
  height: 10px;
  width: 10px;
  top: 9px;
  left: 7px;
  visibility: hidden;
  font-size: 13px;
  text-align: center;
  line-height: 13px;
  color: #ee1d22;
  font-weight: 700;
}
.contact-estimate .your-service .wpcf7-form-control .wpcf7-list-item:nth-child(2), .contact-schedule .your-service .wpcf7-form-control .wpcf7-list-item:nth-child(2) {
  margin-left: 32px;
  margin-right: 118px;
}
@media screen and (max-width: 991px) {
  .contact-estimate .your-service .wpcf7-form-control .wpcf7-list-item:nth-child(2), .contact-schedule .your-service .wpcf7-form-control .wpcf7-list-item:nth-child(2) {
    margin: 0;
  }
}
.contact-estimate .your-service .wpcf7-list-item-label, .contact-schedule .your-service .wpcf7-list-item-label {
  font-weight: 500;
  font-size: 18px;
}
.contact-estimate .your-service-2 .wpcf7-form-control .wpcf7-list-item:nth-child(2), .contact-schedule .your-service-2 .wpcf7-form-control .wpcf7-list-item:nth-child(2) {
  margin-left: 32px;
  margin-right: 118px;
}
@media screen and (max-width: 991px) {
  .contact-estimate .your-service-2 .wpcf7-form-control .wpcf7-list-item:nth-child(2), .contact-schedule .your-service-2 .wpcf7-form-control .wpcf7-list-item:nth-child(2) {
    margin: 0;
  }
}
.contact-estimate .your-service-2 .wpcf7-list-item-label, .contact-schedule .your-service-2 .wpcf7-list-item-label {
  font-weight: 500;
  font-size: 18px;
}
.contact-estimate .your-service-3 .wpcf7-form-control .wpcf7-list-item:nth-child(2), .contact-schedule .your-service-3 .wpcf7-form-control .wpcf7-list-item:nth-child(2) {
  margin-left: 32px;
  margin-right: 118px;
}
@media screen and (max-width: 991px) {
  .contact-estimate .your-service-3 .wpcf7-form-control .wpcf7-list-item:nth-child(2), .contact-schedule .your-service-3 .wpcf7-form-control .wpcf7-list-item:nth-child(2) {
    margin: 0;
  }
}
.contact-estimate .your-service-3 .wpcf7-list-item-label, .contact-schedule .your-service-3 .wpcf7-list-item-label {
  font-weight: 500;
  font-size: 18px;
}
.contact-estimate .wpcf7-checkbox input[type=checkbox]:checked + span:before, .contact-schedule .wpcf7-checkbox input[type=checkbox]:checked + span:before {
  background: transparent;
}
.contact-estimate .wpcf7-checkbox input[type=checkbox]:checked + span:after, .contact-schedule .wpcf7-checkbox input[type=checkbox]:checked + span:after {
  visibility: visible;
}
.contact-estimate .wpcf7-list-item-label, .contact-schedule .wpcf7-list-item-label {
  margin-left: 36px;
  display: inline-block;
}
@media screen and (max-width: 575px) {
  .contact-estimate .wpcf7-radio .last, .contact-schedule .wpcf7-radio .last {
    margin-left: 20px;
  }
}
.contact-estimate .wpcf7-radio label, .contact-schedule .wpcf7-radio label {
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 575px) {
  .contact-estimate .wpcf7-radio label, .contact-schedule .wpcf7-radio label {
    min-width: auto;
  }
}
.contact-estimate .wpcf7-radio input[type=radio], .contact-schedule .wpcf7-radio input[type=radio] {
  position: relative;
  display: none;
}
.contact-estimate .wpcf7-radio label > span, .contact-schedule .wpcf7-radio label > span {
  position: relative;
}
.contact-estimate .wpcf7-radio label > span:before, .contact-schedule .wpcf7-radio label > span:before {
  display: block;
  position: absolute;
  content: '';
  background-color: #cfcfcf;
  border-radius: 100%;
  height: 26px;
  width: 26px;
  top: 3px;
  left: -36px;
}
.contact-estimate .wpcf7-radio label > span:after, .contact-schedule .wpcf7-radio label > span:after {
  display: block;
  position: absolute;
  background-color: #fff;
  content: '';
  border-radius: 100%;
  height: 10px;
  width: 10px;
  top: 11px;
  left: -28px;
}
.contact-estimate .wpcf7-radio .wpcf7-list-item label input[type=checkbox]:checked + span:before, .contact-schedule .wpcf7-radio .wpcf7-list-item label input[type=checkbox]:checked + span:before {
  background-color: red !important;
}
.contact-estimate .bt-submit, .contact-schedule .bt-submit {
  position: relative;
  display: inline-block;
  margin-left: 228px;
}
@media screen and (max-width: 767px) {
  .contact-estimate .bt-submit, .contact-schedule .bt-submit {
    margin-left: 0px;
  }
}
.contact-estimate .bt-submit input, .contact-schedule .bt-submit input {
  border: none;
  padding: 0 !important;
  margin: 0 !important;
  margin-top: 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 203px;
  height: 60px;
  background-color: #ee1d22;
  color: #fff;
  border-radius: 5px 50px 5px 5px;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 700;
  -webkit-transition: 300ms all linear 0ms;
  -khtml-transition: 300ms all linear 0ms;
  -moz-transition: 300ms all linear 0ms;
  -ms-transition: 300ms all linear 0ms;
  -o-transition: 300ms all linear 0ms;
  transition: 300ms all linear 0ms;
}
.contact-estimate .bt-submit .wpcf7-spinner, .contact-schedule .bt-submit .wpcf7-spinner {
  visibility: hidden;
}
.contact-estimate .bt-submit i, .contact-schedule .bt-submit i {
  position: absolute;
  content: "\f054";
  font-family: 'Font Awesome 5 Pro';
  right: -13px;
  top: 10px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 3px solid #ee1d22;
  width: 39px;
  font-weight: 700;
  height: 39px;
  font-size: 13px;
  background-color: #fff;
  color: #ee1d22;
  border-radius: 50px;
  -webkit-transition: 300ms all linear 0ms;
  -khtml-transition: 300ms all linear 0ms;
  -moz-transition: 300ms all linear 0ms;
  -ms-transition: 300ms all linear 0ms;
  -o-transition: 300ms all linear 0ms;
  transition: 300ms all linear 0ms;
  pointer-events: none;
}
.contact-estimate .bt-submit:hover input, .contact-schedule .bt-submit:hover input {
  background-color: #2a2a2a;
}
.contact-estimate .bt-submit:hover i, .contact-schedule .bt-submit:hover i {
  border-color: #2a2a2a;
  color: #2a2a2a;
}
.wpcf7 .wpcf7-form-control.wpcf7-radio input[type=radio]:checked + .wpcf7-list-item-label:before, .wpcf7 .wpcf7-form-control.wpcf7-radio_custom input[type=radio]:checked + .wpcf7-list-item-label:before {
  background-color: #ee1d22;
}
.contact-home2 {
  background-color: #ee1d22;
  padding: 52px 55px 51px 55px;
  text-align: center;
}
@media screen and (max-width: 450px) {
  .contact-home2 {
    padding: 30px 20px;
  }
}
.contact-home2 .wpcf7-form-control-wrap {
  margin-bottom: 20px !important;
}
.contact-home2 .bt-submit input {
  width: 203px;
  height: 60px;
  color: #fff;
  background-color: #2a2a2a;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 18px;
}
.contact-home2 .bt-submit .wpcf7-spinner {
  display: none;
}
.contact-home2 .bt-submit:hover input {
  color: #ee1d22;
  background-color: #fff;
}
.contact-home2 input {
  height: 62px;
  background-color: #fff;
  border-radius: 5px 40px 5px 5px;
  font-size: 18px;
  color: #666;
  font-weight: 400;
  padding-left: 31px;
}
.contact-home2 .nice-select {
  text-align: left;
  height: 62px;
  border-radius: 5px 40px 5px 5px;
  border: none;
}
.contact-home2 .nice-select span {
  font-size: 18px;
  color: #666 !important;
  font-weight: 400;
  padding-left: 16px;
  font-family: Barlow Condensed;
  line-height: 62px;
}
.contact-home2 .nice-select:after {
  content: '\f0dd' !important;
  font-weight: 700;
  color: #414141;
  font-size: 19px;
  top: 44%;
  right: 27px !important;
  left: auto;
}
.contact-home2 .nice-select:before {
  position: absolute;
  content: '';
  top: 14px;
  width: 35px;
  height: 35px;
  border-radius: 100px 100px 0 100px;
  border: 1px solid #cdcdcd;
  right: 16px;
}
.contact-home2 h2 {
  font-size: 50px;
  color: #fff;
  font-weight: 700;
  padding-bottom: 20px;
}
@media screen and (max-width: 450px) {
  .contact-home2 h2 {
    font-size: 35px;
  }
}
.cms-count-down .cms-count-down-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cms-count-down .time-item {
  padding: 0 41px;
  text-align: center;
}
@media (min-width: 520px) {
  .cms-count-down .time-item {
    width: 133px;
  }
}
@media screen and (max-width: 575px) {
  .cms-count-down .time-item {
    padding: 0 15px;
  }
}
.cms-count-down .time-item .time-item-inner .day, .cms-count-down .time-item .time-item-inner .hour, .cms-count-down .time-item .time-item-inner .minute, .cms-count-down .time-item .time-item-inner .second {
  font-size: 64px;
  line-height: 96px;
  color: #fff;
  text-transform: uppercase;
}
@media screen and (max-width: 575px) {
  .cms-count-down .time-item .time-item-inner .day, .cms-count-down .time-item .time-item-inner .hour, .cms-count-down .time-item .time-item-inner .minute, .cms-count-down .time-item .time-item-inner .second {
    font-size: 50px;
  }
}
.cms-count-down .time-item .time-item-inner .inner-text {
  margin-top: -11px;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 575px) {
  .cms-count-down .time-item .time-item-inner .inner-text {
    font-size: 23px;
  }
}
.cms-count-down .space-time {
  font-size: 57px;
  font-weight: 400;
  color: #fff;
  line-height: 96px;
}
.cms-newsletter {
  text-align: center;
  position: relative;
}
.cms-newsletter .tnp-field-email input:first-child {
  margin-bottom: 0;
  max-width: 582px;
  height: 70px;
  background-color: #fff;
  border-radius: 5px 5px 50px 5px;
  padding-right: 200px;
  padding-left: 47px;
  font-size: 18px;
  font-weight: 500;
  color: #2a2a2a;
}
@media (max-width: 700px) {
  .cms-newsletter .tnp-field-email input:first-child {
    max-width: auto;
    min-width: auto;
    padding-right: 104px;
    padding-left: 16px;
    border-radius: 5px;
  }
}
.cms-newsletter .tnp-field-email {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cms-newsletter .tnp-field-email input:last-child {
  max-width: 582px;
  height: 60px;
  width: 183px;
  background-color: #ee1d22;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  margin-left: -150px;
  border-radius: 5px 40px 5px 5px;
}
@media (max-width: 700px) {
  .cms-newsletter .tnp-field-email input:last-child {
    position: absolute;
    top: 5px;
    right: 10px;
    width: 100px;
    font-size: 16px;
    border-radius: 5px;
    margin-left: 0px;
  }
}
.cms-newsletter .tnp-field-email input:last-child:hover {
  background-color: #2a2a2a;
}
.cms-newsletter.style2 .tnp-field-email {
  display: inline-block;
  position: relative;
}
@media (max-width: 700px) {
  .cms-newsletter.style2 .tnp-field-email {
    display: block;
  }
}
.cms-newsletter.style2 .tnp-field-email input:first-child {
  max-width: 672px;
  min-width: 672px;
  height: 74px;
  background-color: #fff;
  border-radius: 5px 105px 5px 5px;
  padding-right: 100px;
  padding-left: 35px;
  font-size: 16px;
  font-weight: 400;
  color: #2a2a2a;
  font-family: Poppins;
  border: 1px solid #d2d2d2;
}
@media (max-width: 700px) {
  .cms-newsletter.style2 .tnp-field-email input:first-child {
    max-width: auto;
    min-width: auto;
    padding-right: 104px;
    padding-left: 16px;
  }
}
.cms-newsletter.style2 .tnp-field-email input:last-child {
  position: absolute;
  top: -1px;
  right: 0;
  max-width: 582px;
  height: 74px;
  width: 158px;
  background-color: #ee1d22;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  margin-left: -9px;
  margin-top: 1px;
  border-radius: 0px 60px 0px 0px;
}
@media (max-width: 700px) {
  .cms-newsletter.style2 .tnp-field-email input:last-child {
    width: 100px;
    font-size: 16px;
    border-radius: 5px;
  }
}
.cms-newsletter.style2 .tnp-field-email input:last-child:hover {
  background-color: #2a2a2a;
}
.cm-soon {
  height: 100vh !important;
}
.cms-cmsservice-grid1 .grid-item {
  margin-top: 30px;
  -webkit-transition: 300ms all linear 0ms;
  -khtml-transition: 300ms all linear 0ms;
  -moz-transition: 300ms all linear 0ms;
  -ms-transition: 300ms all linear 0ms;
  -o-transition: 300ms all linear 0ms;
  transition: 300ms all linear 0ms;
}
.cms-cmsservice-grid1 .grid-item .grid-item-inner {
  background-color: #fff;
  text-align: center;
  border: 1px solid #d8d8d8;
  -webkit-transition: 300ms all linear 0ms;
  -khtml-transition: 300ms all linear 0ms;
  -moz-transition: 300ms all linear 0ms;
  -ms-transition: 300ms all linear 0ms;
  -o-transition: 300ms all linear 0ms;
  transition: 300ms all linear 0ms;
}
.cms-cmsservice-grid1 .grid-item .grid-item-inner.style2 {
  border: none;
}
.cms-cmsservice-grid1 .grid-item .grid-item-inner .entry-body {
  padding: 42px 50px 46px 50px;
}
@media screen and (max-width: 450px) {
  .cms-cmsservice-grid1 .grid-item .grid-item-inner .entry-body {
    padding: 42px 20px 46px 20px;
  }
}
.cms-cmsservice-grid1 .grid-item .grid-item-inner .entry-body .icon-image {
  display: inline-flex;
  width: 130px;
  height: 130px;
  justify-content: center;
  align-items: center;
  position: relative;
}
.cms-cmsservice-grid1 .grid-item .grid-item-inner .entry-body .icon-image img {
  width: 65px;
}
.cms-cmsservice-grid1 .grid-item .grid-item-inner .entry-body .icon-image:before {
  border: 1px dashed #ee1d22;
  border-radius: 150px;
  width: 100%;
  height: 100%;
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  -webkit-transition: 300ms all linear 0ms;
  -khtml-transition: 300ms all linear 0ms;
  -moz-transition: 300ms all linear 0ms;
  -ms-transition: 300ms all linear 0ms;
  -o-transition: 300ms all linear 0ms;
  transition: 300ms all linear 0ms;
}
.cms-cmsservice-grid1 .grid-item .grid-item-inner .entry-body .icon-image:after {
  border: 1px dashed #ee1d22;
  border-radius: 150px;
  width: 100%;
  height: 100%;
  position: absolute;
  transform: scale(1.1);
  content: '';
  left: 0;
  top: 0;
  -webkit-transition: 300ms all linear 0ms;
  -khtml-transition: 300ms all linear 0ms;
  -moz-transition: 300ms all linear 0ms;
  -ms-transition: 300ms all linear 0ms;
  -o-transition: 300ms all linear 0ms;
  transition: 300ms all linear 0ms;
}
.cms-cmsservice-grid1 .grid-item .grid-item-inner .entry-body .entry-title {
  padding-top: 15px;
  padding-bottom: 9px;
  font-size: 28px;
  font-weight: 700;
}
.cms-cmsservice-grid1 .grid-item .grid-item-inner .entry-body .entry-content {
  font-size: 16px;
  line-height: 28px;
  font-family: Poppins;
  font-weight: 400;
}
.cms-cmsservice-grid1 .grid-item:hover {
  transform: translateY(-5px);
}
.cms-cmsservice-grid1 .grid-item:hover .grid-item-inner {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-color: transparent;
}
.cms-cmsservice-grid1 .grid-item:hover .icon-image:before {
  -webkit-animation: spinAround 8s infinite;
  -khtml-animation: spinAround 8s infinite;
  -moz-animation: spinAround 8s infinite;
  -ms-animation: spinAround 8s infinite;
  -o-animation: spinAround 8s infinite;
  animation: spinAround 8s infinite;
}
.cms-cmsservice-grid2 {
  display: flex;
}
@media screen and (max-width: 991px) {
  .cms-cmsservice-grid2 {
    display: block;
  }
}
.cms-cmsservice-grid2 .grid-filter-wrap {
  min-width: 319px;
}
.cms-cmsservice-grid2 .grid-filter-wrap .filter-item {
  display: block;
  width: 270px;
  background-color: #fff;
  margin-bottom: 7px;
  margin-top: 0px;
  border-radius: 5px 40px 5px 5px;
  padding-left: 27px;
  line-height: 64px;
  font-family: Barlow Condensed;
  color: #2a2a2a;
  font-size: 20px;
  font-weight: 500;
}
.cms-cmsservice-grid2 .grid-filter-wrap .filter-item.active, .cms-cmsservice-grid2 .grid-filter-wrap .filter-item:hover {
  background-color: #ee1d22;
  color: #fff;
}
@media screen and (max-width: 991px) {
  .cms-cmsservice-grid2 .grid-filter-wrap .filter-item {
    width: 200px !important;
    display: inline-block !important;
    margin-left: 20px;
  }
}
.cms-cmsservice-grid2 .cms-grid-inner {
  width: 100%;
}
@media screen and (max-width: 991px) {
  .cms-cmsservice-grid2 .cms-grid-inner {
    width: auto;
    margin-left: 8px;
    margin-right: -7px;
  }
}
.cms-cmsservice-grid2 .grid-item {
  padding-right: 12px !important;
  padding-left: 12px !important;
  margin-bottom: 24px !important;
}
.cms-cmsservice-grid2 .col-xl-3 .entry-title {
  line-height: 24px !important;
}
.cms-cmsservice-grid2 .col-xl-3 .entry-title a {
  font-size: 25px !important;
}
.cms-cmsservice-grid2 .col-xl-3 .item-category a, .cms-cmsservice-grid2 .col-xl-3 .item-date span {
  font-size: 15px !important;
}
.cms-cmsservice-grid2 .col-xl-3 .item--holder {
  bottom: 20px !important;
  padding: 0 20px !important;
}
@media screen and (max-width: 575px) {
  .cms-cmsservice-grid2 .entry-title {
    line-height: 24px !important;
  }
  .cms-cmsservice-grid2 .entry-title a {
    font-size: 25px !important;
  }
  .cms-cmsservice-grid2 .item-category a, .cms-cmsservice-grid2 .item-date span {
    font-size: 15px !important;
  }
  .cms-cmsservice-grid2 .item--holder {
    bottom: 20px !important;
    padding: 0 20px !important;
  }
}
.cms-cmsservice-grid2 .grid-item-body {
  width: 100%;
  position: relative;
}
.cms-cmsservice-grid2 .grid-item-body:before {
  position: absolute;
  content: '';
  background-color: #ee1d22;
  opacity: 0.9;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  -webkit-transition: 300ms all ease 0ms;
  -khtml-transition: 300ms all ease 0ms;
  -moz-transition: 300ms all ease 0ms;
  -ms-transition: 300ms all ease 0ms;
  -o-transition: 300ms all ease 0ms;
  transition: 300ms all ease 0ms;
}
.cms-cmsservice-grid2 .grid-item-body .item--featured img {
  width: 100%;
}
.cms-cmsservice-grid2 .grid-item-body .item--holder {
  width: 100%;
  padding: 0 20px 0 40px;
  position: absolute;
  bottom: 33px;
  opacity: 0;
  -webkit-transition: 300ms all ease 0ms;
  -khtml-transition: 300ms all ease 0ms;
  -moz-transition: 300ms all ease 0ms;
  -ms-transition: 300ms all ease 0ms;
  -o-transition: 300ms all ease 0ms;
  transition: 300ms all ease 0ms;
}
.cms-cmsservice-grid2 .grid-item-body .item--holder .entry-title {
  line-height: 40px;
  padding-bottom: 11px;
}
.cms-cmsservice-grid2 .grid-item-body .item--holder .entry-title a {
  font-size: 34px;
  color: #fff;
  font-family: Barlow Condensed;
  font-weight: 700;
}
.cms-cmsservice-grid2 .grid-item-body .item--holder .item-category a, .cms-cmsservice-grid2 .grid-item-body .item--holder .item-date span {
  font-size: 18px;
  color: #fff;
  font-family: Barlow Condensed;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}
.cms-cmsservice-grid2 .grid-item-body:hover .item--holder {
  opacity: 1;
}
.cms-cmsservice-grid2 .grid-item-body:hover:before {
  left: 0;
  width: 100%;
}
.custom-service {
  min-width: 798px;
}
@media screen and (max-width: 1024px) {
  .custom-service {
    min-width: auto;
  }
}
.custom-service .elementor-column-gap-default {
  position: relative;
}
.custom-service .elementor-column-gap-default:before {
  position: absolute;
  content: '';
  height: 100%;
  width: 43px;
  background-color: #fff;
  top: 0;
  left: -43px;
}
@media screen and (max-width: 1024px) {
  .custom-service .elementor-column-gap-default:before {
    width: 10px;
    background-color: #f8f8f8;
    left: 0px;
    z-index: 111;
  }
}
.custom-service .elementor-column-gap-default:after {
  position: absolute;
  content: '';
  height: 100%;
  width: 10px;
  background-color: #f8f8f8;
  top: 0;
  right: 20px;
  display: none;
}
@media screen and (max-width: 1024px) {
  .custom-service .elementor-column-gap-default:after {
    display: block;
    z-index: 111;
  }
}
@media screen and (max-width: 767px) {
  .custom-service .elementor-column-gap-default:after {
    display: none;
  }
}
.cms-fancy-box.layout1 {
  text-align: center;
}
.cms-fancy-box.layout1 .inner-content .item--title {
  font-size: 32px;
  font-weight: 700;
  color: #2a2a2a;
}
.cms-fancy-box.layout1 .inner-content .item--description {
  font-size: 18px;
  font-weight: 400;
  color: #666;
  font-family: Poppins;
}
.cms-fancy-box.layout6 {
  text-align: center;
}
.cms-fancy-box.layout6 .inner-content .meta-top {
  position: relative;
}
.cms-fancy-box.layout6 .inner-content .meta-top .item--description {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  bottom: -26px;
  left: 50%;
  transform: translate(-50%, 0%);
  width: 59px;
  height: 59px;
  background-color: #fff;
  color: #ee1d22;
  font-size: 22px;
  font-weight: 700;
  font-family: Barlow Condensed;
}
.cms-fancy-box.layout6 .inner-content .inner-icon {
  display: inline-flex;
  width: 210px;
  height: 210px;
  border-radius: 200px;
  background-color: #ee1d22;
  align-items: center;
  justify-content: center;
}
.cms-fancy-box.layout6 .inner-content .inner-icon img {
  -webkit-transition: 300ms ease linear 0ms;
  -khtml-transition: 300ms ease linear 0ms;
  -moz-transition: 300ms ease linear 0ms;
  -ms-transition: 300ms ease linear 0ms;
  -o-transition: 300ms ease linear 0ms;
  transition: 300ms ease linear 0ms;
}
.cms-fancy-box.layout6 .inner-content .item--title {
  padding-top: 13px;
  font-size: 28px;
  font-weight: 600;
  line-height: 36px;
  color: #2a2a2a;
}
.cms-fancy-box.layout6 .inner-content:hover img {
  animation: scale 1s linear infinite;
}
.cms-fancy-box.layout7 {
  text-align: center;
}
.cms-fancy-box.layout7 .inner-content .meta-top {
  position: relative;
}
.cms-fancy-box.layout7 .inner-content .meta-top .item--description {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  bottom: -26px;
  left: 50%;
  transform: translate(-50%, 0%);
  width: 59px;
  height: 59px;
  background-color: #fff;
  color: #ee1d22;
  font-size: 22px;
  font-weight: 700;
  font-family: Barlow Condensed;
}
.cms-fancy-box.layout7 .inner-content .inner-icon {
  display: inline-flex;
  width: 140px;
  height: 140px;
  border-radius: 200px;
  align-items: center;
  justify-content: center;
  position: relative;
}
.cms-fancy-box.layout7 .inner-content .inner-icon:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  border-radius: 200px;
  border: 1px dashed #ee1d22;
  top: 0;
  left: 0;
}
.cms-fancy-box.layout7 .inner-content .inner-icon:after {
  position: absolute;
  content: '';
  width: auto;
  height: auto;
  border-radius: 200px;
  border: 1px dashed #ee1d22;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
}
.cms-fancy-box.layout7 .inner-content .inner-icon img {
  -webkit-transition: 300ms ease linear 0ms;
  -khtml-transition: 300ms ease linear 0ms;
  -moz-transition: 300ms ease linear 0ms;
  -ms-transition: 300ms ease linear 0ms;
  -o-transition: 300ms ease linear 0ms;
  transition: 300ms ease linear 0ms;
}
.cms-fancy-box.layout7 .inner-content .item--title {
  padding-top: 2px;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  color: #2a2a2a;
}
.cms-fancy-box.layout7 .inner-content:hover .inner-icon:before {
  animation: 8s spin-rotate-right linear infinite;
}
.cms-fancy-box.layout7 .inner-content:hover .inner-icon:after {
  animation: 8s spin-rotate-left linear infinite;
}
.cms-fancy-box.layout5 {
  text-align: center;
  background-color: #fff;
  border: 1px solid #d2d2d2;
  margin-bottom: -59px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  -webkit-transition: 300ms all linear 0ms;
  -khtml-transition: 300ms all linear 0ms;
  -moz-transition: 300ms all linear 0ms;
  -ms-transition: 300ms all linear 0ms;
  -o-transition: 300ms all linear 0ms;
  transition: 300ms all linear 0ms;
}
.cms-fancy-box.layout5 .inner-content {
  padding: 0 45px;
}
@media screen and (max-width: 575px) {
  .cms-fancy-box.layout5 .inner-content {
    padding: 0 25px;
  }
}
.cms-fancy-box.layout5 .inner-content .icon-image {
  padding-top: 65px;
  -webkit-transition: 300ms all linear 0ms;
  -khtml-transition: 300ms all linear 0ms;
  -moz-transition: 300ms all linear 0ms;
  -ms-transition: 300ms all linear 0ms;
  -o-transition: 300ms all linear 0ms;
  transition: 300ms all linear 0ms;
}
@media screen and (max-width: 575px) {
  .cms-fancy-box.layout5 .inner-content .icon-image {
    padding-top: 30px;
  }
}
.cms-fancy-box.layout5 .inner-content .item--title {
  padding-top: 11px;
  font-size: 38px;
  line-height: 35px;
  font-weight: 700;
  color: #2a2a2a;
  text-transform: uppercase;
  padding-bottom: 55px;
}
@media screen and (max-width: 575px) {
  .cms-fancy-box.layout5 .inner-content .item--title {
    font-size: 30px;
    padding-bottom: 30px;
  }
}
.cms-fancy-box.layout5:hover {
  transform: translateY(-10px);
}
.cms-fancy-box.layout5:hover .icon-image {
  transform: rotateY(180deg);
}
.cms-fancy-box.layout4 {
  padding-top: 100px;
}
.cms-fancy-box.layout4 .inner-icon {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
  background-color: #ee1d22;
  display: inline-flex;
  width: 120px;
  height: 120px;
  border-radius: 5px 50px 5px 5px;
  align-items: center;
  justify-content: center;
  top: 46px;
  left: 51px;
  position: absolute;
  z-index: 2;
}
@media screen and (max-width: 450px) {
  .cms-fancy-box.layout4 .inner-icon {
    left: 25px;
  }
}
.cms-fancy-box.layout4 .inner-content {
  overflow: hidden;
  position: relative;
  border: 1px solid #d7d7d7;
  padding: 52px 30px 40px 51px;
  -webkit-transition: 300ms all linear 0ms;
  -khtml-transition: 300ms all linear 0ms;
  -moz-transition: 300ms all linear 0ms;
  -ms-transition: 300ms all linear 0ms;
  -o-transition: 300ms all linear 0ms;
  transition: 300ms all linear 0ms;
}
@media screen and (max-width: 450px) {
  .cms-fancy-box.layout4 .inner-content {
    padding: 52px 25px 25px 25px;
  }
}
.cms-fancy-box.layout4 .inner-content:before {
  position: absolute;
  content: '';
  background-color: #d8d8d8;
  width: 100%;
  height: 1px;
  top: 14px;
  left: 0;
}
.cms-fancy-box.layout4 .inner-content:after {
  position: absolute;
  content: '';
  background-color: #ee1d22;
  width: 0%;
  height: 16px;
  top: -1px;
  left: 40%;
  -webkit-transition: 300ms all linear 0ms;
  -khtml-transition: 300ms all linear 0ms;
  -moz-transition: 300ms all linear 0ms;
  -ms-transition: 300ms all linear 0ms;
  -o-transition: 300ms all linear 0ms;
  transition: 300ms all linear 0ms;
}
.cms-fancy-box.layout4 .inner-content .item--title {
  padding-top: 10px;
  font-size: 32px;
  font-weight: 700;
  color: #2a2a2a;
}
.cms-fancy-box.layout4 .inner-content .item--description {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #666;
  font-family: Poppins;
}
.cms-fancy-box.layout4 .wrap-inner-content {
  -webkit-transition: 300ms all linear 0ms;
  -khtml-transition: 300ms all linear 0ms;
  -moz-transition: 300ms all linear 0ms;
  -ms-transition: 300ms all linear 0ms;
  -o-transition: 300ms all linear 0ms;
  transition: 300ms all linear 0ms;
}
.cms-fancy-box.layout4:hover .wrap-inner-content {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.cms-fancy-box.layout4:hover .inner-content:after {
  width: 101%;
  left: -1px;
  right: -1px;
}
.cms-fancy-box.layout2 .inner-content {
  display: flex;
}
.cms-fancy-box.layout2 .inner-content .icon-image {
  min-width: 75px;
  text-align: center;
  padding-right: 27px;
}
.cms-fancy-box.layout2 .inner-content .icon-image .inner-icon img {
  -webkit-transition: 300ms all linear 0ms;
  -khtml-transition: 300ms all linear 0ms;
  -moz-transition: 300ms all linear 0ms;
  -ms-transition: 300ms all linear 0ms;
  -o-transition: 300ms all linear 0ms;
  transition: 300ms all linear 0ms;
}
.cms-fancy-box.layout2 .inner-content .item--title {
  font-size: 24px;
  font-weight: 700;
  color: #2a2a2a;
}
.cms-fancy-box.layout2 .inner-content .item--description {
  padding-top: 11px;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: #666;
  font-family: Poppins;
}
.cms-fancy-box.layout2 .inner-content .wrap-content {
  margin-top: -6px;
}
.cms-fancy-box.layout2:hover .icon-image .inner-icon img {
  transform: rotateY(360deg);
}
.cms-fancy-box.layout3 .inner-content {
  position: relative;
  text-align: center;
  padding-bottom: 44px;
  -webkit-transition: 300ms all ease 0ms;
  -khtml-transition: 300ms all ease 0ms;
  -moz-transition: 300ms all ease 0ms;
  -ms-transition: 300ms all ease 0ms;
  -o-transition: 300ms all ease 0ms;
  transition: 300ms all ease 0ms;
}
.cms-fancy-box.layout3 .inner-content:before {
  position: absolute;
  content: '';
  background-color: #dadada;
  width: 58px;
  height: 6px;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transition: 300ms all ease 0ms;
  -khtml-transition: 300ms all ease 0ms;
  -moz-transition: 300ms all ease 0ms;
  -ms-transition: 300ms all ease 0ms;
  -o-transition: 300ms all ease 0ms;
  transition: 300ms all ease 0ms;
}
.cms-fancy-box.layout3 .inner-content .item--title {
  font-size: 76px;
  font-weight: 700;
  line-height: normal;
  color: #ee1d22;
}
.cms-fancy-box.layout3 .inner-content .item--description {
  margin-top: -5px;
  font-size: 20px;
  font-weight: 600;
  line-height: normal;
  color: #2a2a2a;
  font-family: Barlow Condensed;
  text-transform: uppercase;
}
.cms-fancy-box.layout3 .inner-content:hover:before {
  background-color: #ee1d22;
  bottom: 20px;
}
.cms-fancy-box.layout8 {
  padding: 0 35px 23px 35px;
  background-color: #fff;
}
.cms-fancy-box.layout8 .inner-content .icon-image img {
  border-radius: 150px;
  margin-top: -100px;
}
.cms-fancy-box.layout8 .inner-content .item--title {
  margin-top: -1px;
  margin-bottom: 2px;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: Barlow Condensed;
}
.cms-fancy-box.layout8 .inner-content .item--description {
  font-size: 18px;
  line-height: 22px;
  display: flex;
  align-items: baseline;
  font-weight: 500;
  color: #2a2a2a;
  font-family: Barlow Condensed;
}
.cms-fancy-box.layout8 .inner-content .item--description i {
  color: #ee1d22;
  padding-right: 10px;
}
.bd-fancybox {
  position: relative;
}
.bd-fancybox:before {
  position: absolute;
  content: '';
  width: 1px;
  height: 121px;
  background-color: #e8e8e8;
  left: 0;
  top: 60px;
}
@media screen and (max-width: 767px) {
  .bd-fancybox:before {
    display: none;
  }
}
.bd-fancybox:after {
  position: absolute;
  content: '';
  width: 1px;
  height: 121px;
  background-color: #e8e8e8;
  right: 0;
  top: 61px;
}
@media screen and (max-width: 1024px) {
  .bd-fancybox:after {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .bd-fancybox:after, .bd-fancybox:before {
    position: relative;
  }
}
.cms-button-layout2 .btn-secondary {
  position: relative;
  display: inline-flex;
  font-size: 18px;
  width: 234px;
  height: 60px;
  text-transform: uppercase;
  font-family: Barlow Condensed;
  font-weight: 700 !important;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  border-radius: 5px 50px 5px 5px;
  z-index: 1;
  -webkit-transition: 300ms all linear 0ms;
  -khtml-transition: 300ms all linear 0ms;
  -moz-transition: 300ms all linear 0ms;
  -ms-transition: 300ms all linear 0ms;
  -o-transition: 300ms all linear 0ms;
  transition: 300ms all linear 0ms;
}
.cms-button-layout1 .wrap-btn {
  position: relative;
  display: inline-block;
}
.cms-button-layout1 .wrap-btn:before {
  position: absolute;
  content: "\f054";
  font-family: 'Font Awesome 5 Pro';
  right: -18px;
  top: 10px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  border: 3px solid #ee1d22;
  width: 40px;
  z-index: 2;
  height: 40px;
  font-size: 13px;
  background-color: #fff;
  color: #ee1d22;
  border-radius: 50px;
  -webkit-transition: 300ms all linear 0ms;
  -khtml-transition: 300ms all linear 0ms;
  -moz-transition: 300ms all linear 0ms;
  -ms-transition: 300ms all linear 0ms;
  -o-transition: 300ms all linear 0ms;
  transition: 300ms all linear 0ms;
  pointer-events: none;
}
.cms-button-layout1 .wrap-btn:hover:before {
  border-color: #2a2a2a;
  color: #2a2a2a;
}
.cms-button-layout1 .wrap-btn:hover .btn-primary {
  background-color: #2a2a2a;
}
.cms-button-layout1 .wrap-btn:hover .hv-white {
  background-color: #fff;
  color: #2a2a2a;
}
.cms-button-layout1 .wrap-btn:hover .hv-white:before {
  border-color: #2a2a2a;
  color: #2a2a2a;
}
.cms-button-layout1 .btn-primary {
  position: relative;
  display: inline-flex;
  font-size: 18px;
  width: 234px;
  height: 60px;
  text-transform: uppercase;
  font-family: Barlow Condensed;
  font-weight: 700 !important;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  border-radius: 5px 40px 5px 5px;
  z-index: 1;
  -webkit-transition: 300ms all linear 0ms;
  -khtml-transition: 300ms all linear 0ms;
  -moz-transition: 300ms all linear 0ms;
  -ms-transition: 300ms all linear 0ms;
  -o-transition: 300ms all linear 0ms;
  transition: 300ms all linear 0ms;
}
.cms-button-layout1 .hv-color-secon {
  font-size: 20px;
  width: 304px;
  height: 64px;
}
@media screen and (max-width: 575px) {
  .cms-button-layout1 .hv-color-secon {
    font-size: 18px;
    width: 250px;
    height: 60px;
  }
}
.cms-team-grid1 .grid-item {
  margin-bottom: 70px;
}
.cms-team-grid1 .team-item {
  text-align: center;
}
.cms-team-grid1 .team-item .item--inner .item--image {
  position: relative;
  display: flex;
  justify-content: center;
}
.cms-team-grid1 .team-item .item--inner .item--image:before {
  position: absolute;
  content: '';
  background-color: #fff;
  border: 46px solid #e9e9e9;
  border-radius: 200px;
  height: 100%;
  width: 100%;
  top: 57px;
  bottom: 57px;
  max-height: 338px;
  max-width: 338px;
  -webkit-transition: 300ms all linear 0s;
  -khtml-transition: 300ms all linear 0s;
  -moz-transition: 300ms all linear 0s;
  -ms-transition: 300ms all linear 0s;
  -o-transition: 300ms all linear 0s;
  transition: 300ms all linear 0s;
}
@media (max-width: 360px) {
  .cms-team-grid1 .team-item .item--inner .item--image:before {
    display: none;
  }
}
.cms-team-grid1 .team-item .item--inner .item--image img {
  position: relative;
  max-height: 360px;
}
.cms-team-grid1 .team-item .item--inner .item--contact a {
  position: relative;
  background-color: #ee1d22;
  color: #fff;
  font-size: 22px;
  font-weight: 500;
  display: inline-block;
  padding: 15px 40px;
  border-radius: 5px 50px 5px 5px;
}
@media screen and (max-width: 450px) {
  .cms-team-grid1 .team-item .item--inner .item--contact a {
    padding: 15px 20px;
  }
}
.cms-team-grid1 .team-item .item--inner .item-holder {
  padding-top: 11px;
}
.cms-team-grid1 .team-item .item--inner .item-holder .item--title {
  font-size: 40px;
  font-weight: 700;
  color: #2a2a2a;
  font-family: Barlow Condensed;
}
.cms-team-grid1 .team-item .item--inner .item-holder .item--position {
  margin-top: -6px;
  font-size: 18px;
  font-weight: 500;
  color: #2a2a2a;
  font-family: Barlow Condensed;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.cms-team-grid1 .team-item .item--inner .item-holder .item--social {
  padding-top: 26px;
}
.cms-team-grid1 .team-item .item--inner .item-holder .item--social .inner-social a {
  margin: 0 3px;
  display: inline-flex;
  height: 54px;
  width: 51px;
  background-color: #efefef;
  border-radius: 50px;
  font-size: 20px;
  align-items: center;
  justify-content: center;
  color: #2a2a2a;
  -webkit-transition: 300ms all linear 0ms;
  -khtml-transition: 300ms all linear 0ms;
  -moz-transition: 300ms all linear 0ms;
  -ms-transition: 300ms all linear 0ms;
  -o-transition: 300ms all linear 0ms;
  transition: 300ms all linear 0ms;
}
.cms-team-grid1 .team-item .item--inner .item-holder .item--social .inner-social a:hover {
  color: #fff;
  background-color: #ee1d22;
}
.cms-team-grid1 .team-item:hover .item--image:before {
  border-color: #ee1d22;
}
.cms-team-carousel1 .slick-slide {
  text-align: center;
}
.cms-team-carousel1 .slick-slide .item--inner .item--image {
  position: relative;
  display: flex;
  justify-content: center;
}
.cms-team-carousel1 .slick-slide .item--inner .item--image:before {
  position: absolute;
  content: '';
  background-color: #fff;
  border: 46px solid #e9e9e9;
  border-radius: 200px;
  height: 100%;
  width: 100%;
  top: 57px;
  bottom: 57px;
  max-height: 338px;
  max-width: 338px;
  -webkit-transition: 300ms all linear 0s;
  -khtml-transition: 300ms all linear 0s;
  -moz-transition: 300ms all linear 0s;
  -ms-transition: 300ms all linear 0s;
  -o-transition: 300ms all linear 0s;
  transition: 300ms all linear 0s;
}
@media (max-width: 360px) {
  .cms-team-carousel1 .slick-slide .item--inner .item--image:before {
    display: none;
  }
}
.cms-team-carousel1 .slick-slide .item--inner .item--image img {
  position: relative;
  max-height: 360px;
}
.cms-team-carousel1 .slick-slide .item--inner .item--contact {
  position: relative;
  background-color: #ee1d22;
  color: #fff;
  font-size: 22px;
  font-weight: 500;
  display: inline-block;
  padding: 15px 40px;
  border-radius: 5px 50px 5px 5px;
}
@media screen and (max-width: 450px) {
  .cms-team-carousel1 .slick-slide .item--inner .item--contact {
    padding: 15px 20px;
  }
}
.cms-team-carousel1 .slick-slide .item--inner .item-holder {
  padding-top: 11px;
}
.cms-team-carousel1 .slick-slide .item--inner .item-holder .item--title {
  font-size: 40px;
  font-weight: 700;
  color: #2a2a2a;
  font-family: Barlow Condensed;
}
.cms-team-carousel1 .slick-slide .item--inner .item-holder .item--position {
  margin-top: -6px;
  font-size: 18px;
  font-weight: 500;
  color: #2a2a2a;
  font-family: Barlow Condensed;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.cms-team-carousel1 .slick-slide .item--inner .item-holder .item--social {
  padding-top: 26px;
}
.cms-team-carousel1 .slick-slide .item--inner .item-holder .item--social .inner-social a {
  margin: 0 3px;
  display: inline-flex;
  height: 54px;
  width: 51px;
  background-color: #efefef;
  border-radius: 50px;
  font-size: 20px;
  align-items: center;
  justify-content: center;
  color: #2a2a2a;
  -webkit-transition: 300ms all linear 0ms;
  -khtml-transition: 300ms all linear 0ms;
  -moz-transition: 300ms all linear 0ms;
  -ms-transition: 300ms all linear 0ms;
  -o-transition: 300ms all linear 0ms;
  transition: 300ms all linear 0ms;
}
.cms-team-carousel1 .slick-slide .item--inner .item-holder .item--social .inner-social a:hover {
  color: #fff;
  background-color: #ee1d22;
}
.cms-team-carousel1 .slick-slide:hover .item--image:before {
  border-color: #ee1d22;
}
.cms-testimonial-carousel1 .testimonial-item {
  background-color: #ee1d22;
  border-radius: 5px 80px 5px 5px;
  padding: 70px 70px 57px 70px;
}
@media screen and (max-width: 575px) {
  .cms-testimonial-carousel1 .testimonial-item {
    padding: 40px;
  }
}
@media screen and (max-width: 450px) {
  .cms-testimonial-carousel1 .testimonial-item {
    padding: 30px 20px 30px 20px;
  }
}
.cms-testimonial-carousel1 .testimonial-item .item-star i {
  display: inline-block;
  font-size: 22px;
  color: #ffcb12;
  margin: 0 1px;
  opacity: 0;
}
.cms-testimonial-carousel1 .testimonial-item .item-star.one-star i:nth-child(1) {
  opacity: 1;
}
.cms-testimonial-carousel1 .testimonial-item .item-star.two-star i:nth-child(1), .cms-testimonial-carousel1 .testimonial-item .item-star.two-star i:nth-child(2) {
  opacity: 1;
}
.cms-testimonial-carousel1 .testimonial-item .item-star.three-star i:nth-child(1), .cms-testimonial-carousel1 .testimonial-item .item-star.three-star i:nth-child(2), .cms-testimonial-carousel1 .testimonial-item .item-star.three-star i:nth-child(3) {
  opacity: 1;
}
.cms-testimonial-carousel1 .testimonial-item .item-star.four-star i:nth-child(1), .cms-testimonial-carousel1 .testimonial-item .item-star.four-star i:nth-child(2), .cms-testimonial-carousel1 .testimonial-item .item-star.four-star i:nth-child(3), .cms-testimonial-carousel1 .testimonial-item .item-star.four-star i:nth-child(4) {
  opacity: 1;
}
.cms-testimonial-carousel1 .testimonial-item .item-star.five-star i {
  opacity: 1;
}
.cms-testimonial-carousel1 .testimonial-item .testimonial-title .title {
  padding: 9px 0 29px 0;
  font-size: 40px;
  line-height: 48px;
  color: #fff;
  font-weight: 700;
}
@media screen and (max-width: 575px) {
  .cms-testimonial-carousel1 .testimonial-item .testimonial-title .title {
    padding: 9px 0 10px 0;
    font-size: 30px;
    line-height: 40px;
  }
}
.cms-testimonial-carousel1 .testimonial-item .testimonial-desc {
  font-size: 22px;
  line-height: 38px;
  color: #fff;
  font-weight: 400;
  font-family: Poppins;
}
@media screen and (max-width: 575px) {
  .cms-testimonial-carousel1 .testimonial-item .testimonial-desc {
    font-size: 18px;
    line-height: 32px;
  }
}
.cms-testimonial-carousel1 .testimonial-item .testimonial-meta {
  padding-top: 44px;
}
@media screen and (max-width: 575px) {
  .cms-testimonial-carousel1 .testimonial-item .testimonial-meta {
    padding-top: 20px;
  }
}
.cms-testimonial-carousel1 .testimonial-item .testimonial-meta .meta-top {
  display: flex;
  align-items: center;
}
.cms-testimonial-carousel1 .testimonial-item .testimonial-meta .meta-top .testimonial-image {
  padding-right: 16px;
}
.cms-testimonial-carousel1 .testimonial-item .testimonial-meta .meta-top .testimonial-image img {
  border-radius: 150px;
}
@media screen and (max-width: 450px) {
  .cms-testimonial-carousel1 .testimonial-item .testimonial-meta .meta-top .testimonial-image img {
    max-width: 80px;
  }
}
.cms-testimonial-carousel1 .testimonial-item .testimonial-meta .meta-top .testimonial-info {
  margin-top: -18px;
}
.cms-testimonial-carousel1 .testimonial-item .testimonial-meta .meta-top .testimonial-info .testimonial-name {
  font-size: 40px;
  line-height: 48px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
}
@media screen and (max-width: 450px) {
  .cms-testimonial-carousel1 .testimonial-item .testimonial-meta .meta-top .testimonial-info .testimonial-name {
    font-size: 30px;
    line-height: 40px;
  }
}
.cms-testimonial-carousel1 .testimonial-item .testimonial-meta .meta-top .testimonial-info .testimonial-position {
  padding-top: 1px;
  font-size: 16px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.cms-testimonial-carousel1 .slick-dots {
  position: absolute;
  right: 53px;
  bottom: 46px;
}
@media screen and (max-width: 450px) {
  .cms-testimonial-carousel1 .slick-dots {
    display: none !important;
  }
}
.cms-testimonial-carousel1 .slick-dots li {
  margin: 0 3px 0 4px;
}
.cms-testimonial-carousel1 .slick-dots li button {
  height: 14px;
  width: 13px;
  background-color: #ee1d22;
  border-radius: 50px;
  border: 3px solid #fff;
}
.cms-testimonial-carousel1 .slick-dots li.slick-active button {
  background-color: #fff;
}
@media (min-width: 576px) and (max-width: 767px) {
  .cms-testimonial-carousel2 .cms-slick-nav-wrap {
    margin-bottom: 50px;
  }
}
.cms-testimonial-carousel2 .testimonial-inner {
  position: relative;
}
.cms-testimonial-carousel2 .testimonial-inner .cms-slick-nav-wrap {
  position: absolute;
  height: 100%;
  width: 100%;
  bottom: 0;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .cms-testimonial-carousel2 .testimonial-inner .cms-slick-nav-wrap {
    display: none;
  }
}
.cms-testimonial-carousel2 .testimonial-inner .cms-slick-nav-wrap .cms-slick-nav {
  position: absolute !important;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .cms-testimonial-carousel2 .testimonial-inner .cms-slick-nav-wrap .cms-slick-nav {
    padding: 0 10px;
  }
}
.cms-testimonial-carousel2 .testimonial-inner .cms-slick-nav-wrap .slick-list {
  position: absolute !important;
  width: 100%;
  height: 100%;
}
.cms-testimonial-carousel2 .testimonial-inner .cms-slick-nav-wrap .slick-track {
  position: absolute;
  width: 100% !important;
  height: 100% !important;
  transform: translate(0, 0) !important;
}
@media screen and (max-width: 767px) {
  .cms-testimonial-carousel2 .testimonial-inner .cms-slick-nav-wrap .slick-track {
    left: 50%;
    margin-left: -220px;
  }
}
@media screen and (max-width: 575px) {
  .cms-testimonial-carousel2 .testimonial-inner .cms-slick-nav-wrap .slick-track {
    margin-left: -125px;
  }
}
@media screen and (max-width: 450px) {
  .cms-testimonial-carousel2 .testimonial-inner .cms-slick-nav-wrap .slick-track {
    margin-left: -125px;
  }
}
.cms-testimonial-carousel2 .testimonial-inner .cms-slick-nav-wrap .slick-track .slick-slide {
  width: 130px !important;
  height: 130px !important;
  position: absolute;
}
@media screen and (max-width: 767px) {
  .cms-testimonial-carousel2 .testimonial-inner .cms-slick-nav-wrap .slick-track .slick-slide {
    position: static;
    width: 90px !important;
    height: 90px !important;
    margin-right: 20px;
    margin-top: 20px;
    padding: 0;
  }
}
@media screen and (max-width: 575px) {
  .cms-testimonial-carousel2 .testimonial-inner .cms-slick-nav-wrap .slick-track .slick-slide {
    position: static;
    width: 50px !important;
    height: 50px !important;
    margin-right: 10px;
    margin-top: 20px;
    padding: 0;
  }
}
.cms-testimonial-carousel2 .testimonial-inner .cms-slick-nav-wrap .nav-image {
  border-radius: 50%;
  cursor: pointer;
}
.cms-testimonial-carousel2 .testimonial-inner .cms-slick-nav-wrap .nav-image img {
  border-radius: 50%;
  transition: all 0.5s ease-in-out 0s;
}
@media screen and (max-width: 1400px) {
  .cms-testimonial-carousel2 .testimonial-inner .cms-slick-nav-wrap .nav-image {
    width: 90px;
    height: 90px;
  }
  .cms-testimonial-carousel2 .testimonial-inner .cms-slick-nav-wrap .nav-image img {
    width: 90px;
    height: 90px;
  }
}
@media screen and (max-width: 575px) {
  .cms-testimonial-carousel2 .testimonial-inner .cms-slick-nav-wrap .nav-image {
    width: 50px;
    height: 50px;
    margin-right: 0;
  }
  .cms-testimonial-carousel2 .testimonial-inner .cms-slick-nav-wrap .nav-image img {
    width: 50px;
    height: 50px;
  }
}
.cms-testimonial-carousel2 .testimonial-inner .cms-slick-nav-wrap .slick-active .nav-image {
  position: relative;
}
.cms-testimonial-carousel2 .testimonial-inner .cms-slick-nav-wrap .slick-active .nav-image img {
  position: relative;
  opacity: 1;
}
.cms-testimonial-carousel2 .testimonial-inner .cms-slick-nav-wrap .slick-active .nav-image:before, .cms-testimonial-carousel2 .testimonial-inner .cms-slick-nav-wrap .slick-active .nav-image:after {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 10px solid #ee1d22;
  left: 0%;
  top: 0%;
  opacity: 1;
  animation: 2s videomodule-anim linear infinite;
  z-index: -1;
}
.cms-testimonial-carousel2 .testimonial-inner .cms-slick-nav-wrap .slick-active .nav-image:before {
  animation-delay: 0s;
}
.cms-testimonial-carousel2 .testimonial-inner .cms-slick-nav-wrap .slick-active .nav-image:after {
  animation-delay: 0.5s;
}
@media (max-width: 1400px) {
  .cms-testimonial-carousel2 .testimonial-inner .cms-slick-nav-wrap .slick-slide:nth-child(1) {
    left: 7% !important;
  }
}
@media screen and (min-width: 768px) {
  .cms-testimonial-carousel2 .testimonial-inner .cms-slick-nav-wrap .slick-slide:nth-child(1) {
    left: 0.8%;
    top: 9px;
    min-width: 219px;
  }
  .cms-testimonial-carousel2 .testimonial-inner .cms-slick-nav-wrap .slick-slide:nth-child(2) {
    left: 10.5%;
    top: 55%;
    margin-top: 2px;
    min-width: 110px;
  }
  .cms-testimonial-carousel2 .testimonial-inner .cms-slick-nav-wrap .slick-slide:nth-child(3) {
    right: 13%;
    top: -2%;
    margin-right: 11px;
    min-width: 110px;
  }
  .cms-testimonial-carousel2 .testimonial-inner .cms-slick-nav-wrap .slick-slide:nth-child(4) {
    right: 1%;
    top: 28%;
    margin-top: 3px;
    margin-right: 4px;
    min-width: 220px;
  }
  .cms-testimonial-carousel2 .testimonial-inner .cms-slick-nav-wrap .slick-slide:nth-child(5) {
    right: 18%;
    margin-top: -18px;
    top: 66%;
    min-width: 110px;
  }
  .cms-testimonial-carousel2 .testimonial-inner .cms-slick-nav-wrap .slick-slide:nth-child(6) {
    right: 22%;
    bottom: 56%;
  }
  .cms-testimonial-carousel2 .testimonial-inner .cms-slick-nav-wrap .slick-slide:nth-child(7) {
    left: 2%;
    bottom: 33%;
  }
  .cms-testimonial-carousel2 .testimonial-inner .cms-slick-nav-wrap .slick-slide:nth-child(8) {
    right: 4%;
    bottom: 33%;
  }
}
.cms-testimonial-carousel2 .cms-slick-primary {
  justify-content: center;
}
.cms-testimonial-carousel2 .cms-slick-primary .slick-slide {
  padding: 0px 25px 50px 25px !important;
}
@media screen and (max-width: 767px) {
  .cms-testimonial-carousel2 .cms-slick-primary .slick-slide {
    padding: 0 15px !important;
  }
}
@media screen and (max-width: 767px) {
  .cms-testimonial-carousel2 .cms-slick-primary .slick-slider {
    padding: 0 0;
  }
}
.cms-testimonial-carousel2 .cms-slick-primary .testimonial-image {
  width: 270px;
  height: 270px;
  margin: 0 auto;
  border-radius: 50%;
  position: relative;
}
.cms-testimonial-carousel2 .cms-slick-primary .testimonial-image img {
  width: 270px;
  height: 270px;
  border-radius: 50%;
  -webkit-animation-name: zoom-fade;
  -webkit-animation-duration: 5s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
}
@media screen and (max-width: 575px) {
  .cms-testimonial-carousel2 .cms-slick-primary .testimonial-image {
    width: 210px;
    height: 210px;
  }
  .cms-testimonial-carousel2 .cms-slick-primary .testimonial-image img {
    width: 210px;
    height: 210px;
  }
}
.cms-testimonial-carousel2 .testimonial-content {
  margin: 0 auto;
  text-align: center;
  border-radius: 7px;
  position: relative;
  max-width: 430px;
}
@media screen and (max-width: 575px) {
  .cms-testimonial-carousel2 .testimonial-content {
    padding: 0;
  }
}
.cms-testimonial-carousel2 .testimonial-content .wrap-star .item-star i {
  display: inline-block;
  font-size: 23px;
  color: rgba(102, 102, 102, 0.5);
  margin: 0 1px;
}
.cms-testimonial-carousel2 .testimonial-content .wrap-star .item-star.one-star i:nth-child(1) {
  color: #ffcb12;
}
.cms-testimonial-carousel2 .testimonial-content .wrap-star .item-star.two-star i:nth-child(1), .cms-testimonial-carousel2 .testimonial-content .wrap-star .item-star.two-star i:nth-child(2) {
  color: #ffcb12;
}
.cms-testimonial-carousel2 .testimonial-content .wrap-star .item-star.three-star i:nth-child(1), .cms-testimonial-carousel2 .testimonial-content .wrap-star .item-star.three-star i:nth-child(2), .cms-testimonial-carousel2 .testimonial-content .wrap-star .item-star.three-star i:nth-child(3) {
  color: #ffcb12;
}
.cms-testimonial-carousel2 .testimonial-content .wrap-star .item-star.four-star i:nth-child(1), .cms-testimonial-carousel2 .testimonial-content .wrap-star .item-star.four-star i:nth-child(2), .cms-testimonial-carousel2 .testimonial-content .wrap-star .item-star.four-star i:nth-child(3), .cms-testimonial-carousel2 .testimonial-content .wrap-star .item-star.four-star i:nth-child(4) {
  color: #ffcb12;
}
.cms-testimonial-carousel2 .testimonial-content .wrap-star .item-star.five-star i {
  color: #ffcb12;
}
.cms-testimonial-carousel2 .testimonial-content .testimonial-caption {
  position: relative;
  margin-top: 6px;
  display: inline-block;
}
@media screen and (max-width: 575px) {
  .cms-testimonial-carousel2 .testimonial-content .testimonial-caption {
    margin-top: 15px;
  }
}
.cms-testimonial-carousel2 .testimonial-content .testimonial-title {
  color: #ee1d22;
  font-weight: 700;
  font-size: 40px;
  display: inline-block;
  line-height: 48px;
  margin-top: 9px;
  margin-bottom: 23px;
}
@media screen and (max-width: 575px) {
  .cms-testimonial-carousel2 .testimonial-content .testimonial-title {
    margin-top: 15px;
    margin-bottom: 4px;
  }
}
.cms-testimonial-carousel2 .testimonial-content .testimonial-name {
  color: #2a2a2a;
  font-weight: 700;
  font-size: 40px;
  display: inline-block;
  line-height: 48px;
  margin-top: 18px;
  margin-bottom: 1px;
  text-transform: uppercase;
}
@media screen and (max-width: 575px) {
  .cms-testimonial-carousel2 .testimonial-content .testimonial-name {
    margin-top: 15px;
    margin-bottom: 4px;
  }
}
.cms-testimonial-carousel2 .testimonial-content .testimonial-position {
  margin-bottom: 0;
  font-weight: 700;
  color: #2a2a2a;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  font-size: 16px;
}
.cms-testimonial-carousel2 .testimonial-content .testimonial-desc {
  color: #2a2a2a;
  font-size: 22px;
  line-height: 38px;
  font-weight: 400;
  margin-bottom: 0;
  font-family: Poppins;
  position: relative;
}
@media screen and (max-width: 575px) {
  .cms-testimonial-carousel2 .testimonial-content .testimonial-desc {
    font-size: 15px;
    line-height: 30px;
  }
}
.cms-testimonial-carousel2 .slick-dots {
  position: absolute;
  width: 100%;
  bottom: 5px;
}
@media screen and (max-width: 767px) {
  .cms-testimonial-carousel2 .slick-dots {
    bottom: -30px;
  }
}
.cms-testimonial-carousel2 .slick-dots li {
  margin: 0 3px 0 4px;
}
.cms-testimonial-carousel2 .slick-dots li button {
  height: 14px;
  width: 13px;
  background-color: #fff;
  border-radius: 50px;
  border: 3px solid #ee1d22;
}
.cms-testimonial-carousel2 .slick-dots li.slick-active button {
  background-color: #ee1d22;
}
.elementor-widget-cms_testimonial_carousel .elementor-widget-container {
  -webkit-animation: bgrs 4s ease infinite;
  -khtml-animation: bgrs 4s ease infinite;
  -moz-animation: bgrs 4s ease infinite;
  -ms-animation: bgrs 4s ease infinite;
  -o-animation: bgrs 4s ease infinite;
  animation: bgrs 4s ease infinite;
}
.cms-timeline-carousel1 {
  position: relative;
}
.cms-timeline-carousel1 .cms-carousel-inner:before {
  position: absolute;
  content: '';
  width: 10000px;
  height: 1px;
  left: -5000px;
  background-color: #fff;
  opacity: 0.3;
  bottom: 18px;
}
.cms-timeline-carousel1 .cms-carousel-inner:after {
  position: absolute;
  content: '';
  width: 100px;
  height: 100px;
  border-radius: 50px;
  background-color: #ee1d22;
  left: 50%;
  transform: translateX(-50%);
  bottom: -32px;
}
.cms-timeline-carousel1 .slick-slide {
  padding: 0;
}
.cms-timeline-carousel1 .slick-slide .timeline-inner {
  max-width: 490px;
}
.cms-timeline-carousel1 .slick-slide .timeline-inner .timeline-time {
  padding-bottom: 10px;
}
.cms-timeline-carousel1 .slick-slide .timeline-inner .timeline-time .time {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
}
.cms-timeline-carousel1 .slick-slide .timeline-inner .timeline-title {
  font-size: 60px;
  line-height: 60px;
  color: #fff;
  font-weight: 700;
}
@media screen and (max-width: 575px) {
  .cms-timeline-carousel1 .slick-slide .timeline-inner .timeline-title {
    font-size: 50px;
    line-height: 50px;
  }
}
@media screen and (max-width: 450px) {
  .cms-timeline-carousel1 .slick-slide .timeline-inner .timeline-title {
    font-size: 40px;
    line-height: 40px;
  }
}
.cms-timeline-carousel1 .slick-slide .timeline-inner .timeline-desc {
  padding-top: 35px;
  font-size: 18px;
  line-height: 30px;
  color: #fff;
  font-family: Poppins;
  opacity: 0.7;
  font-weight: 400;
}
@media screen and (max-width: 575px) {
  .cms-timeline-carousel1 .slick-slide .timeline-inner .timeline-desc {
    font-size: 16px;
  }
}
.cms-timeline-carousel1 .slick-slide .wrap-line {
  padding-top: 172px;
  margin-bottom: 20px;
}
@media screen and (max-width: 575px) {
  .cms-timeline-carousel1 .slick-slide .wrap-line {
    padding-top: 100px;
  }
}
@media screen and (max-width: 450px) {
  .cms-timeline-carousel1 .slick-slide .wrap-line {
    padding-top: 70px;
  }
}
.cms-timeline-carousel1 .slick-slide .wrap-line .line span {
  width: 100%;
  position: relative;
}
.cms-timeline-carousel1 .slick-slide .wrap-line .line span:before {
  position: absolute;
  content: '';
  background-color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 50px;
  bottom: -17px;
  left: 0;
}
.cms-timeline-carousel1 .slick-slide .wrap-line .line span:after {
  position: absolute;
  content: '';
  background-color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 50px;
  bottom: -17px;
  right: 0;
}
.cms-timeline-carousel1 .slick-next {
  top: auto;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  margin-left: 12px;
}
.cms-timeline-carousel1 .slick-prev {
  top: auto;
  bottom: 2px;
  right: 50%;
  left: auto;
  transform: translateX(-50%);
  margin-right: -21px;
}
.cms-timeline-carousel1 .slick-arrow {
  background-color: transparent;
  font-size: 22px;
  margin-top: -2px;
}
.cms-timeline-carousel1 .slick-arrow:hover {
  background-color: transparent;
}
.cms-navigation-menu1 #menu-menu-product-footer li > a {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  font-family: Poppins;
  padding-left: 22px;
  position: relative;
}
.cms-navigation-menu1 #menu-menu-product-footer li > a:hover {
  color: #ee1d22;
}
.cms-navigation-menu1 #menu-menu-product-footer li > a:before {
  position: absolute;
  content: '\f054';
  font-family: 'Font Awesome 5 Pro';
  color: #ee1d22;
  left: 0;
  top: 16%;
  font-size: 12px;
  font-weight: 800;
}
.cms-navigation-menu1 #menu-menu-product-footer li {
  margin-bottom: 23px;
}
.cms-navigation-menu1 #menu-menu-ft1 li > a, .cms-navigation-menu1 #menu-menu-ft2 li > a {
  font-size: 18px;
  font-weight: 500;
  color: #2a2a2a;
  font-family: Poppins;
  padding-left: 20px;
  position: relative;
}
.cms-navigation-menu1 #menu-menu-ft1 li > a:before, .cms-navigation-menu1 #menu-menu-ft2 li > a:before {
  position: absolute;
  content: '\f054';
  font-family: 'Font Awesome 5 Pro';
  color: #ee1d22;
  left: 0;
  top: 16%;
  font-size: 12px;
  font-weight: 800;
}
.cms-navigation-menu1 #menu-menu-ft1 li > a:hover:before, .cms-navigation-menu1 #menu-menu-ft2 li > a:hover:before {
  -webkit-animation: toRightFromLeft 300ms linear;
  -khtml-animation: toRightFromLeft 300ms linear;
  -moz-animation: toRightFromLeft 300ms linear;
  -ms-animation: toRightFromLeft 300ms linear;
  -o-animation: toRightFromLeft 300ms linear;
  animation: toRightFromLeft 300ms linear;
}
.cms-navigation-menu1 #menu-menu-ft1 li > a:hover a, .cms-navigation-menu1 #menu-menu-ft2 li > a:hover a {
  color: #ee1d22;
}
.cms-navigation-menu1 #menu-menu-ft1 li, .cms-navigation-menu1 #menu-menu-ft2 li {
  margin-bottom: 13px;
}
.cms-post-carousel1 .slick-slide {
  padding: 0 35px !important;
}
.cms-post-carousel1 .carousel-item .carousel-item-inner {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.cms-post-carousel1 .carousel-item .carousel-item-inner .entry-body {
  padding-top: 58px;
}
@media (max-width: 575px) {
  .cms-post-carousel1 .carousel-item .carousel-item-inner .entry-body {
    padding-top: 300px;
  }
}
.cms-post-carousel1 .carousel-item .carousel-item-inner .entry-body .wrap-title {
  position: relative;
  z-index: 11;
}
.cms-post-carousel1 .carousel-item .carousel-item-inner .entry-body .entry-title {
  z-index: 1;
  position: relative;
  padding: 17px 15px 15px 0;
  background-color: #fff;
  max-width: 360px;
}
@media (max-width: 575px) {
  .cms-post-carousel1 .carousel-item .carousel-item-inner .entry-body .entry-title {
    max-width: 100%;
  }
}
.cms-post-carousel1 .carousel-item .carousel-item-inner .entry-body .entry-title a {
  font-size: 35px;
  font-weight: 700;
  color: #2a2a2a;
  line-height: 38px;
}
.cms-post-carousel1 .carousel-item .carousel-item-inner .entry-body .wrap-meta {
  z-index: 1;
  position: relative;
  max-width: 272px;
  background-color: #fff;
  display: flex;
  padding: 3px 0 33px 0;
}
@media (max-width: 575px) {
  .cms-post-carousel1 .carousel-item .carousel-item-inner .entry-body .wrap-meta {
    max-width: 100%;
    padding-bottom: 10px;
  }
}
.cms-post-carousel1 .carousel-item .carousel-item-inner .entry-body .wrap-meta:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 1000px;
  background-color: #fff;
  bottom: 0;
  left: 0;
  z-index: 0;
}
@media (max-width: 575px) {
  .cms-post-carousel1 .carousel-item .carousel-item-inner .entry-body .wrap-meta:before {
    display: none;
  }
}
@media screen and (max-width: 450px) {
  .cms-post-carousel1 .carousel-item .carousel-item-inner .entry-body .wrap-meta:before {
    opacity: 0;
  }
}
.cms-post-carousel1 .carousel-item .carousel-item-inner .entry-body .wrap-meta .item-date, .cms-post-carousel1 .carousel-item .carousel-item-inner .entry-body .wrap-meta .item-comment {
  color: #ee1d22;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
}
.cms-post-carousel1 .carousel-item .carousel-item-inner .entry-body .wrap-meta .item-comment {
  padding-left: 30px;
}
.cms-post-carousel1 .carousel-item .carousel-item-inner .entry-body .entry-content {
  max-width: 272px;
  background-color: #fff;
  font-weight: 400;
  line-height: 28px;
  font-size: 16px;
  padding-right: 30px;
  font-family: Poppins;
  padding-bottom: 74px;
  position: relative;
}
@media (max-width: 575px) {
  .cms-post-carousel1 .carousel-item .carousel-item-inner .entry-body .entry-content {
    max-width: 100%;
  }
}
@media (max-width: 575px) {
  .cms-post-carousel1 .carousel-item .carousel-item-inner .entry-body .entry-content {
    padding-right: 0px;
    padding-bottom: 0px;
  }
}
.cms-post-carousel2 .carousel-item-inner .entry-featured {
  overflow: hidden;
  z-index: -1;
}
.cms-post-carousel2 .carousel-item-inner .entry-featured img {
  -webkit-transition: 300ms all ease 0ms;
  -khtml-transition: 300ms all ease 0ms;
  -moz-transition: 300ms all ease 0ms;
  -ms-transition: 300ms all ease 0ms;
  -o-transition: 300ms all ease 0ms;
  transition: 300ms all ease 0ms;
  width: 100%;
}
.cms-post-carousel2 .carousel-item-inner .entry-body {
  z-index: 2;
  padding-right: 37px;
  margin-top: -38px;
  -webkit-transition: 300ms all ease 0ms;
  -khtml-transition: 300ms all ease 0ms;
  -moz-transition: 300ms all ease 0ms;
  -ms-transition: 300ms all ease 0ms;
  -o-transition: 300ms all ease 0ms;
  transition: 300ms all ease 0ms;
}
.cms-post-carousel2 .carousel-item-inner .entry-body .wrap-title {
  background-color: #fff;
  padding-top: 28px;
  padding-bottom: 7px;
}
.cms-post-carousel2 .carousel-item-inner .entry-body .wrap-title .entry-title {
  font-size: 32px;
  line-height: 38px;
  font-weight: 700;
  color: #2a2a2a;
}
.cms-post-carousel2 .carousel-item-inner .entry-body .wrap-meta {
  background-color: #fff;
  display: flex;
  align-items: center;
}
.cms-post-carousel2 .carousel-item-inner .entry-body .wrap-meta .item-date, .cms-post-carousel2 .carousel-item-inner .entry-body .wrap-meta .item-comment a {
  font-size: 18px;
  line-height: 32px;
  font-weight: 700;
  color: #ee1d22;
}
.cms-post-carousel2 .carousel-item-inner .entry-body .wrap-meta .item-comment {
  padding-left: 30px;
}
.cms-post-carousel2 .carousel-item-inner:hover .entry-body {
  margin-top: -30px;
}
.cms-post-carousel2 .carousel-item-inner:hover img {
  transform: scale(1.1);
}
.cms-service-carousel1 .carousel-item-inner {
  position: relative;
}
.cms-service-carousel1 .slick-slide {
  padding: 0 35px !important;
}
.cms-service-carousel1 .slick-slide:hover .entry-featured img {
  transform: scale(1.2);
}
.cms-service-carousel1 .entry-featured {
  z-index: -1;
  overflow: hidden;
}
.cms-service-carousel1 .entry-featured img {
  width: 100%;
  -webkit-transition: 300ms all linear 0ms;
  -khtml-transition: 300ms all linear 0ms;
  -moz-transition: 300ms all linear 0ms;
  -ms-transition: 300ms all linear 0ms;
  -o-transition: 300ms all linear 0ms;
  transition: 300ms all linear 0ms;
}
.cms-service-carousel1 .entry-body {
  max-width: 400px;
  background-color: #fff;
  z-index: 2;
  width: 100%;
  -webkit-transition: 300ms all ease 0ms;
  -khtml-transition: 300ms all ease 0ms;
  -moz-transition: 300ms all ease 0ms;
  -ms-transition: 300ms all ease 0ms;
  -o-transition: 300ms all ease 0ms;
  transition: 300ms all ease 0ms;
  position: absolute;
  bottom: 0;
  left: 0;
}
.cms-service-carousel1 .entry-body .entry-content {
  padding: 37px 20px 20px 49px;
}
@media screen and (max-width: 575px) {
  .cms-service-carousel1 .entry-body .entry-content {
    padding: 0;
    padding-left: 10px;
    padding-top: 5px;
  }
}
.cms-service-carousel1 .entry-body .entry-content .entry-title {
  font-size: 34px;
  line-height: 38px;
  font-weight: 700;
  color: #2a2a2a;
}
.cms-service-carousel1 .entry-body .entry-content .item-category {
  margin-top: 12px;
}
.cms-service-carousel1 .entry-body .entry-content .item-category a {
  font-size: 18px;
  line-height: 26px;
  text-transform: uppercase;
  font-weight: 600;
  color: #2a2a2a;
  letter-spacing: 1px;
}
.cms-service-carousel1 .entry-body .entry-content .item-date span {
  font-size: 18px;
  line-height: 26px;
  text-transform: uppercase;
  font-weight: 600;
  color: #ee1d22;
  letter-spacing: 1px;
}
@media (max-width: 1450px) {
  .none-im {
    display: none;
  }
}
@media (max-width: 1450px) and (min-width: 1024px) {
  .elementor-2314 .elementor-element.elementor-element-087c4a7 {
    padding: 133px 0px 88px 0px !important;
  }
}
.cmsservice-template-default #secondary {
  display: none;
}
.search #primary {
  padding-right: 50px !important;
}
.swadmb-options {
  /* Sticky Sidebar */
}
.swadmb-options .fa-shopping-bag:before {
  font-family: 'Font Awesome 5 Pro';
  font-weight: 400;
}
.swadmb-options .fa-long-arrow-left:before {
  content: "\f177";
  font-family: 'Font Awesome 5 Pro';
  font-weight: 400;
}
.sidebar-sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 30px;
}
@media screen and (max-width: 991px) {
  .sidebar-sticky {
    top: 0;
  }
}
.admin-bar .sidebar-sticky {
  top: 60px;
}
@media screen and (max-width: 991px) {
  .admin-bar .sidebar-sticky {
    top: 0;
  }
}
.blog .site-content {
  padding-top: 66px !important;
}
.page-template-default .site {
  overflow: hidden;
}
.header-sticky .sidebar-sticky {
  top: 110px;
}
@media screen and (max-width: 991px) {
  .header-sticky .sidebar-sticky {
    top: 0;
  }
}
.admin-bar.header-sticky .sidebar-sticky {
  top: 140px;
}
@media screen and (min-width: 992px) {
  .admin-bar.header-sticky .sidebar-sticky {
    margin-left: -4px;
  }
}
@media screen and (max-width: 991px) {
  .admin-bar.header-sticky .sidebar-sticky {
    top: 0;
  }
}
.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;
  -webkit-border-radius: 26px;
  -khtml-border-radius: 26px;
  -moz-border-radius: 26px;
  -ms-border-radius: 26px;
  -o-border-radius: 26px;
  border-radius: 26px;
  background-color: #ee1d22;
  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: #ee1d22;
  color: #fff;
}
.entry-content .page-links .post-page-numbers {
  margin: 0 3px;
}
.entry-content .page-links .post-page-numbers span {
  margin: 0;
}
@media (min-width: 1200px) {
  body .container {
    max-width: 1200px;
  }
  body #primary.content-has-sidebar {
    -ms-flex: 0 0 68.3%;
    flex: 0 0 68.3%;
    max-width: 68.3%;
  }
  body #primary.content-has-sidebar.float-left + #secondary {
    padding-left: 0;
  }
  body #primary.content-has-sidebar.float-right + #secondary {
    padding-right: 25px;
  }
  body #secondary.widget-has-sidebar {
    -ms-flex: 0 0 31.7%;
    flex: 0 0 31.7%;
    max-width: 31.7%;
  }
  body.site-boxed .site {
    max-width: 960px;
    margin: 0 auto;
    background-color: transparent;
  }
  body.site-boxed .site-content .container {
    padding-left: 0;
    padding-right: 0;
  }
  body.site-boxed .site-header-main {
    background-color: #fff;
  }
  body.site-boxed .site-footer-custom .container {
    padding-left: 0;
    padding-right: 0;
  }
  body.site-boxed #site-header-wrap #site-header {
    -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;
  }
  body.site-boxed #site-header-wrap .site-header-top {
    background-color: #ee1d22;
  }
  body.site-rustic {
    position: relative;
    margin-top: 15px;
    margin-bottom: 15px;
  }
  body.site-rustic:before, body.site-rustic:after {
    content: "";
    display: block;
    width: 15px;
    height: 100%;
    background-color: #fff;
    position: absolute;
    z-index: 12000;
    top: 0;
  }
  body.site-rustic:before {
    left: 0;
  }
  body.site-rustic:after {
    right: 0;
  }
  body .site {
    background-color: #fff;
  }
}
@media screen and (max-width: 991px) and (min-width: 1200px) {
  body.site-rustic {
    margin-top: 0;
    margin-bottom: 0;
  }
  body.site-rustic:after, body.site-rustic:before {
    display: none;
  }
}
@media screen and (max-width: 1199px) {
  body .container {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  #primary + #secondary {
    margin-top: 60px;
  }
}
.site-content {
  position: relative;
}
@media screen and (max-width: 991px) {
  .site-content {
    padding-top: 55px;
    overflow: hidden;
    padding-bottom: 25px;
  }
}
.layout-container {
  background-color: #fcfcfc;
  padding-bottom: 55px;
}
.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;
}
@media screen and (min-width: 992px) {
  .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;
  }
}
.cms-widget-cart-wrap.open .cms-widget-cart-sidebar {
  -webkit-box-shadow: 0 2px 27px rgba(54, 54, 54, 0.13);
  -khtml-box-shadow: 0 2px 27px rgba(54, 54, 54, 0.13);
  -moz-box-shadow: 0 2px 27px rgba(54, 54, 54, 0.13);
  -ms-box-shadow: 0 2px 27px rgba(54, 54, 54, 0.13);
  -o-box-shadow: 0 2px 27px rgba(54, 54, 54, 0.13);
  box-shadow: 0 2px 27px rgba(54, 54, 54, 0.13);
}
.cms-widget-cart-sidebar {
  -webkit-transition: transform 0.4s ease 0s;
  -khtml-transition: transform 0.4s ease 0s;
  -moz-transition: transform 0.4s ease 0s;
  -ms-transition: transform 0.4s ease 0s;
  -o-transition: transform 0.4s ease 0s;
  transition: transform 0.4s ease 0s;
  -webkit-transform: translateX(100%);
  -khtml-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
  padding-top: 30px;
  padding-bottom: 137px;
  background-color: #fff;
  position: fixed;
  overflow-y: scroll;
  top: 0;
  right: 0;
  height: 100%;
  z-index: 9999;
  width: 320px;
  overflow: hidden;
}
.cms-widget-cart-sidebar .widget_shopping_title {
  border-bottom: 1px solid #e2e2e2;
  margin-bottom: 18px;
  padding-bottom: 14px;
  font-size: 20px;
  font-weight: 600;
  color: #111;
}
.cms-widget-cart-sidebar .cms-close {
  background-color: #ee1d22;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  height: 44px;
  width: 44px;
  line-height: 44px;
  text-align: center;
  font-size: 18px;
  cursor: pointer;
  -webkit-transition: 300ms all linear 0ms;
  -khtml-transition: 300ms all linear 0ms;
  -moz-transition: 300ms all linear 0ms;
  -ms-transition: 300ms all linear 0ms;
  -o-transition: 300ms all linear 0ms;
  transition: 300ms all linear 0ms;
}
.cms-widget-cart-sidebar .cms-close:hover {
  background-color: #666;
}
.cms-widget-cart-sidebar .widget_shopping_cart {
  padding: 30px 30px 0 30px;
  height: 100%;
  width: 100%;
  overflow-y: scroll;
  margin-top: 20px;
}
.cms-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_content ul.cart_list li {
  padding: 20px 15px 15px 0;
  display: flex;
  flex-wrap: nowrap;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
}
.cms-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_content ul.cart_list li:last-child {
  border: none;
  padding-bottom: 0;
}
.cms-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_content ul.cart_list li.empty {
  font-size: 16px;
  margin-top: 40px;
  padding: 0 !important;
  text-align: center;
  display: block;
}
.cms-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_content ul.cart_list li.empty span {
  text-align: center;
  margin-bottom: 20px;
  display: block;
  margin-top: 20px;
}
.cms-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_content ul.cart_list li.empty i {
  font-size: 60px;
  color: #0d2335;
}
.cms-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_content ul.cart_list li.empty .btn {
  line-height: 50px;
  width: 100%;
}
.cms-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_content ul.cart_list li.empty .btn:hover {
  color: #fff;
}
.cms-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_content ul.cart_list .cart-product-image {
  width: 45px;
  min-width: 45px;
  margin-right: 15px;
}
.cms-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_content ul.cart_list .cart-product-image a {
  display: inline-block;
}
.cms-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_content ul.cart_list .cart-product-image img {
  margin: 0;
  width: inherit;
}
.cms-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_content ul.cart_list .cart-product-meta {
  padding-right: 12px;
}
.cms-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_content ul.cart_list .cart-product-meta h3 {
  font-size: 16px;
  line-height: normal;
  margin-bottom: 3px;
}
.cms-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_content ul.cart_list .cart-product-meta h3 a {
  color: #ee1d22;
  font-weight: 700;
}
.cms-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_content ul.cart_list .cart-product-meta h3 a:hover {
  color: #666;
}
.cms-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_content ul.cart_list .cart-product-meta .quantity {
  font-size: 14px;
  font-weight: 700;
  color: #666;
}
.cms-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_content ul.cart_list a.remove_from_cart_button {
  opacity: 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%);
  right: 0;
  width: 18px;
  height: 18px;
  text-align: center;
  -webkit-border-radius: 18px;
  -khtml-border-radius: 18px;
  -moz-border-radius: 18px;
  -ms-border-radius: 18px;
  -o-border-radius: 18px;
  border-radius: 18px;
  line-height: 17px;
  color: #ee1d22;
  font-size: 18px;
}
.cms-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_content ul.cart_list a.remove_from_cart_button i {
  vertical-align: middle;
}
.cms-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_content ul.cart_list li:hover a.remove_from_cart_button {
  opacity: 1;
}
.cms-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_footer {
  padding: 30px;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: #fff;
}
.cms-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_footer p.total {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 15px;
  padding-bottom: 0;
  color: #111;
  font-weight: 700;
}
.cms-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_footer p.buttons {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}
.cms-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_footer p.buttons .btn {
  flex-grow: 1;
  background-color: #ee1d22;
  color: #fff;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0;
  height: 45px;
  line-height: 45px;
}
.cms-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_footer p.buttons .btn + .btn {
  background-color: #2a2a2a;
}
.cms-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_footer p.buttons .btn:hover {
  background-color: #666 !important;
  border-color: #666 !important;
}
.cms-widget-cart-sidebar .woocommerce-mini-cart__buttons .buttons {
  width: 100%;
}
.cms-widget-cart-wrap.open .cms-widget-cart-overlay {
  -webkit-transform: scaleX(1);
  -khtml-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -o-transform: scaleX(1);
  transform: scaleX(1);
  transition-delay: 0s;
  -webkit-transition-delay: 0s;
}
.cms-widget-cart-wrap.open .cms-widget-cart-sidebar {
  -webkit-transform: translateX(0px);
  -khtml-transform: translateX(0px);
  -moz-transform: translateX(0px);
  -ms-transform: translateX(0px);
  -o-transform: translateX(0px);
  transform: translateX(0px);
  transition-delay: 0.3s;
  -webkit-transition-delay: 0.3s;
}
@media screen and (min-width: 992px) {
  .admin-bar .cms-widget-cart-sidebar {
    top: 32px;
  }
  .admin-bar .cms-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_footer {
    bottom: 32px;
    position: absolute;
  }
}
.entry-content > .woocommerce .cart-empty, .entry-content > .woocommerce .return-to-shop {
  text-align: center;
}
@media screen and (min-width: 992px) {
  body.woocommerce #primary.content-has-sidebar.float-left + #secondary {
    padding-top: 60px;
    padding-left: 30px;
  }
}
.woocommerce .pswp--open {
  display: none !important;
}
.woocommerce #secondary .widget_product_search .search-field {
  padding-right: 70px;
  border-width: 1px;
  box-shadow: 1px 1px 2px 0 #ddd;
}
.woocommerce #secondary .widget_product_search .search-field:focus {
  border-color: #ee1d22;
  box-shadow: 1px 1px 2px 0 #ee1d22;
}
.woocommerce #secondary .widget_product_search .woocommerce-product-search {
  position: relative;
}
.woocommerce #secondary .widget_product_search .woocommerce-product-search:before {
  content: "\f002";
  font-family: 'Font Awesome 5 Pro';
  font-size: 14px;
  color: #ee1d22;
  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%);
  right: 20px;
}
.woocommerce #secondary .widget_product_search button {
  border: none;
  background-color: transparent;
  padding: 0;
  height: 51px;
  line-height: 51px;
  width: 50px;
  font-size: 14px;
  color: #ee1d22;
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0;
  z-index: 99;
}
.widget_tag_cloud {
  padding-right: 30px !important;
}
body.woocommerce #secondary .widget, body.woocommerce-page #secondary .widget {
  background-color: #f4f4f4;
  margin-bottom: 70px;
}
body.woocommerce #secondary .widget.widget_search, body.woocommerce-page #secondary .widget.widget_search {
  padding-top: 25px !important;
  padding-bottom: 38px !important;
}
body.woocommerce #secondary .widget.widget_search .widget-title, body.woocommerce-page #secondary .widget.widget_search .widget-title {
  padding-top: 10px !important;
}
body.woocommerce #secondary .widget.widget_tag_cloud, body.woocommerce-page #secondary .widget.widget_tag_cloud {
  padding-right: 30px !important;
}
body.woocommerce #secondary .widget:last-child, body.woocommerce-page #secondary .widget:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 769px) {
  body.woocommerce .coupon #coupon_code, body.woocommerce-page .coupon #coupon_code {
    width: 100% !important;
    margin-bottom: 10px;
  }
  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 #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: #ee1d22 !important;
  border: none;
  color: #fff;
  text-transform: uppercase;
  padding: 0 34px;
  line-height: 38px;
  -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-transform: uppercase;
  font-size: 13px;
  position: relative;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  overflow: hidden;
}
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 {
  -webkit-box-shadow: none;
  -khtml-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
  outline: medium none;
  text-decoration: none;
  color: #fff;
  background-color: #ee1d22 !important;
}
body.woocommerce button, body.woocommerce-page button {
  z-index: 1;
  overflow: hidden;
}
body.woocommerce button:before, body.woocommerce-page button:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #2a2a2a;
  transform-origin: right center;
  -webkit-transform-origin: right center;
  -webkit-transform: scale(0, 1);
  -khtml-transform: scale(0, 1);
  -moz-transform: scale(0, 1);
  -ms-transform: scale(0, 1);
  -o-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: transform 0.25s cubic-bezier(0.37, 0.31, 0.2, 0.85);
  -khtml-transition: transform 0.25s cubic-bezier(0.37, 0.31, 0.2, 0.85);
  -moz-transition: transform 0.25s cubic-bezier(0.37, 0.31, 0.2, 0.85);
  -ms-transition: transform 0.25s cubic-bezier(0.37, 0.31, 0.2, 0.85);
  -o-transition: transform 0.25s cubic-bezier(0.37, 0.31, 0.2, 0.85);
  transition: transform 0.25s cubic-bezier(0.37, 0.31, 0.2, 0.85);
  z-index: -1;
  -webkit-border-radius: 2px;
  -khtml-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  border-radius: 2px;
}
.woocommerce .thumbnails {
  display: flex;
  align-items: center;
  justify-content: center;
}
.woocommerce .thumbnails .slick-arrow {
  border-radius: 5px !important;
  background-color: #ee1d22 !important;
  height: 55px;
  width: 35px;
  text-align: center;
  line-height: 55px;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.woocommerce .thumbnails .slick-arrow:before {
  transform: scale(1) !important;
  background-color: transparent !important;
  color: #fff !important;
}
.woocommerce .thumbnails .slick-arrow:hover {
  background-color: #666 !important;
}
.woocommerce .woocommerce-message, .woocommerce .woocommerce-info {
  border-color: #ee1d22;
}
.woocommerce .woocommerce-message:before, .woocommerce .woocommerce-info:before {
  color: #ee1d22;
}
.woocommerce .quantity {
  position: relative;
  display: inline-block;
}
.woocommerce .quantity .qty {
  padding: 0 40px;
  background-color: #fafafa;
  -webkit-border-radius: 8px;
  -khtml-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  border-radius: 8px;
  color: #666;
  -moz-appearance: textfield;
  height: 46px;
  width: 150px;
  font-size: 18px;
  font-weight: 500;
}
.woocommerce .quantity-icon i {
  top: 0;
  bottom: 0;
  width: 46px;
  height: 100%;
  background-color: #f2f2f2;
  color: rgba(102, 102, 102, 0.7);
  font-size: 18px;
  line-height: 46px;
  text-align: center;
  position: absolute;
  cursor: pointer;
}
.woocommerce .quantity-icon i.quantity-down {
  left: 1px;
  -webkit-border-radius: 8px 0 0 8px;
  -khtml-border-radius: 8px 0 0 8px;
  -moz-border-radius: 8px 0 0 8px;
  -ms-border-radius: 8px 0 0 8px;
  -o-border-radius: 8px 0 0 8px;
  border-radius: 8px 0 0 8px;
}
.woocommerce .quantity-icon i.quantity-up {
  right: 1px;
  -webkit-border-radius: 0 8px 8px 0;
  -khtml-border-radius: 0 8px 8px 0;
  -moz-border-radius: 0 8px 8px 0;
  -ms-border-radius: 0 8px 8px 0;
  -o-border-radius: 0 8px 8px 0;
  border-radius: 0 8px 8px 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-page #add_payment_method table.cart img, .woocommerce-page.woocommerce-cart table.cart img, .woocommerce-page.woocommerce-checkout table.cart img {
  width: 50px;
}
.woocommerce form .select2-container--default, .woocommerce-page form .select2-container--default {
  width: 100% !important;
}
.woocommerce form .select2-container--default .select2-selection, .woocommerce-page form .select2-container--default .select2-selection {
  border: 1px solid #eaeaea;
  height: 40px;
  background-color: #fff;
  outline: none;
  -webkit-border-radius: 2px;
  -khtml-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  border-radius: 2px;
}
.woocommerce form .select2-container--default .select2-selection .select2-selection__rendered, .woocommerce-page form .select2-container--default .select2-selection .select2-selection__rendered {
  line-height: 40px;
  padding-left: 20px;
  color: #9b9b9b;
  outline: none;
}
.woocommerce form .select2-container--default .select2-selection .select2-selection__arrow, .woocommerce-page form .select2-container--default .select2-selection .select2-selection__arrow {
  right: 20px;
  top: 50%;
  color: #9b9b9b;
}
.woocommerce form .select2-container--default .select2-selection .select2-selection__clear, .woocommerce-page 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: #747da1;
}
.woocommerce form .select2-container--default .select2-selection .select2-selection__placeholder, .woocommerce-page form .select2-container--default .select2-selection .select2-selection__placeholder {
  color: #747da1;
}
.woocommerce .select2-container.select2-container--open .select2-dropdown, .woocommerce-page .select2-container.select2-container--open .select2-dropdown {
  border-color: #e7e8e9;
}
.woocommerce .select2-container.select2-container--open .select2-dropdown .select2-search__field, .woocommerce-page .select2-container.select2-container--open .select2-dropdown .select2-search__field {
  border: 1px solid #e7e8e9;
  padding-left: 15px;
  padding-right: 15px;
}
.woocommerce .select2-container.select2-container--open .select2-results li.select2-results__option--highlighted, .woocommerce-page .select2-container.select2-container--open .select2-results li.select2-results__option--highlighted {
  background-color: #ee1d22;
}
.woocommerce .select2 .select2-selection--single, .woocommerce-page .select2 .select2-selection--single {
  -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: #f7f7f7;
}
@media screen and (min-width: 992px) {
  .woocommerce #primary.content-has-sidebar {
    padding-right: 20px;
  }
}
#shop-newsletter {
  text-align: center;
  padding: 40px 30px 30px 30px;
  color: rgba(255, 255, 255, 0.87);
  -webkit-border-radius: 14px;
  -khtml-border-radius: 14px;
  -moz-border-radius: 14px;
  -ms-border-radius: 14px;
  -o-border-radius: 14px;
  border-radius: 14px;
  margin-top: 60px;
}
#shop-newsletter h3 {
  font-size: 32px;
  color: #fff;
  margin-bottom: 13px;
}
#shop-newsletter .shop-newsletter-introduction {
  color: #fff;
  text-transform: uppercase;
}
#shop-newsletter .shop-newsletter-introduction, #shop-newsletter .shop-newsletter-desc {
  max-width: 590px;
  margin: auto;
}
#shop-newsletter .ct-newsletter-inner {
  margin-top: 33px;
  margin-bottom: 18px;
}
#shop-newsletter .ct-newsletter-inner .tnp-email {
  background-color: #fff;
  color: rgba(0, 0, 0, 0.33);
}
#shop-newsletter .ct-newsletter-inner .tnp-field-button {
  position: absolute;
  top: 0;
  right: 0;
}
#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: #ee1d22;
  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: #282828;
}
#shop-breadcrumb ul li a:hover {
  color: #ee1d22;
}
.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: #808a98;
}
.woocommerce .woocommerce-product-category {
  display: none;
}
.woocommerce .woocommerce-product-category a {
  font-size: 12px;
  color: #9b9b9b;
  margin-bottom: 8px;
  display: inline-block;
}
.woocommerce .woocommerce-product-category a:hover {
  color: #ee1d22;
}
.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: #ee1d22;
  -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: #ffab00;
}
.woocommerce .star-rating:before {
  color: #d4d4d4;
}
.woocommerce ul.products {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.woocommerce ul.products li.product {
  margin-bottom: 30px;
  margin-right: 0;
  padding: 0 19px;
}
.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: 992px) {
  .woocommerce ul.products.columns-3 li.product {
    width: 33.33%;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .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%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .woocommerce #primary.content-has-sidebar ul.products.columns-4 li.product {
    width: 50%;
  }
}
.woocommerce ul.products li.product .woocommerce-product-title, .woocommerce .woocommerce-product-title {
  font-size: 16px;
  font-family: inherit;
  font-weight: 400;
}
.woocommerce ul.products li.product .woocommerce-product-title a, .woocommerce .woocommerce-product-title a {
  color: #666;
}
.woocommerce ul.products li.product .woocommerce-product-title a:hover, .woocommerce .woocommerce-product-title a:hover {
  color: #ee1d22;
}
.woocommerce ul.products li.product .price {
  font-size: 15px;
  color: #ee1d22;
  margin-bottom: 0;
}
.woocommerce ul.products li.product .price del {
  color: #fff;
}
.woocommerce ul.products li.product .price ins {
  background-color: transparent !important;
  color: #fff;
  font-weight: inherit;
}
.woocommerce .woocommerce-topbar {
  margin-bottom: 60px;
  position: relative;
  z-index: 99;
  background-color: #f4f4f4;
  -webkit-border-radius: 2px;
  -khtml-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  border-radius: 2px;
  padding: 8px 30px 8px 20px;
}
@media screen and (min-width: 576px) {
  .woocommerce .woocommerce-topbar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 575px) {
  .woocommerce .woocommerce-topbar {
    padding-bottom: 30px;
  }
}
.woocommerce .woocommerce-topbar div.woocommerce-result-count {
  margin: 43px 30px 45px 20px;
  flex-grow: 1;
  color: #7a7a7a;
  font-size: 15px;
  font-weight: 400;
}
.woocommerce .woocommerce-topbar .woocommerce-result-count, .woocommerce .woocommerce-topbar .woocommerce-topbar-ordering .woocommerce-ordering {
  float: none;
  margin: 0;
}
.woocommerce .woocommerce-topbar .woocommerce-ordering {
  min-width: 330px;
}
@media screen and (max-width: 575px) {
  .woocommerce .woocommerce-topbar .woocommerce-ordering {
    min-width: 100%;
  }
}
.woocommerce .woocommerce-topbar .woocommerce-ordering .nice-select {
  background-color: #fff;
  border: none;
  font-size: 12px;
  color: #9b9b9b;
  text-transform: none;
  padding: 0 22px;
  height: 52px;
}
.woocommerce .woocommerce-topbar .woocommerce-ordering .nice-select:after {
  content: "\f0dd" !important;
  right: 22px;
  color: #9b9b9b;
  font-weight: 900;
  color: #666;
  font-size: 16px;
  transform: translate(0px, -68%);
}
.woocommerce .woocommerce-topbar .woocommerce-ordering .nice-select .list {
  color: #9b9b9b;
}
.woocommerce .woocommerce-topbar .woocommerce-ordering .nice-select span.current {
  line-height: 50px;
  font-size: 15px;
  font-weight: 400;
}
.woocommerce .woocommerce-product-inner {
  background-color: #f4f4f4;
}
.woocommerce .woocommerce-product-inner .woocommerce-product-header {
  overflow: hidden;
}
.woocommerce .woocommerce-product-inner .woocommerce-product-header img {
  width: auto;
  max-height: 170px;
  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: 9;
  -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;
}
.woocommerce .woocommerce-product-inner .woocommerce-product-header .woocommerce-product-meta .woocommerce-add-to-cart {
  position: absolute;
  text-align: center;
  left: 0;
  right: 0;
  bottom: 30px;
}
.woocommerce .woocommerce-product-inner .woocommerce-product-header .woocommerce-product-meta .woocommerce-add-to-cart a {
  line-height: 38px;
  text-transform: capitalize;
  background-color: transparent !important;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  -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 #fff;
  padding: 5px 30px;
  margin: 0;
}
.woocommerce .woocommerce-product-inner .woocommerce-product-header .woocommerce-product-meta .woocommerce-add-to-cart a:hover {
  background-color: #fff !important;
  color: #ee1d22 !important;
}
.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.added:after {
  display: none;
}
.woocommerce .woocommerce-product-inner .woocommerce-product-header .woocommerce-product-meta .woocommerce-add-to-cart a.loading {
  opacity: 1;
  padding-left: 10px;
  padding-right: 30px;
  background-color: rgba(42, 42, 42, 0.8);
  -webkit-box-shadow: 0 3px #2a2a2a;
  -khtml-box-shadow: 0 3px #2a2a2a;
  -moz-box-shadow: 0 3px #2a2a2a;
  -ms-box-shadow: 0 3px #2a2a2a;
  -o-box-shadow: 0 3px #2a2a2a;
  box-shadow: 0 3px #2a2a2a;
}
.woocommerce .woocommerce-product-inner .woocommerce-product-header .woocommerce-product-meta .woocommerce-add-to-cart a.loading:after {
  letter-spacing: 0;
  top: 5px;
  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 .woocommerce-product-holder {
  padding: 17px 0 0;
  text-align: center;
  -webkit-transition: 300ms all linear 0ms;
  -khtml-transition: 300ms all linear 0ms;
  -moz-transition: 300ms all linear 0ms;
  -ms-transition: 300ms all linear 0ms;
  -o-transition: 300ms all linear 0ms;
  transition: 300ms all linear 0ms;
}
@media screen and (max-width: 1199px) {
  .woocommerce .woocommerce-product-inner .woocommerce-product-holder {
    display: block;
  }
}
.woocommerce .woocommerce-product-inner .woocommerce-product-holder .price {
  line-height: 1;
}
.woocommerce .woocommerce-product-inner .woocommerce-product-holder .price span, .woocommerce .woocommerce-product-inner .woocommerce-product-holder .price del, .woocommerce .woocommerce-product-inner .woocommerce-product-holder .price ins {
  color: #ee1d22 !important;
}
.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;
  margin-bottom: 13px;
}
.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: #ee1d22;
}
.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 + .button.yith-wcqv-button {
  display: none !important;
}
.woocommerce .product-type-grouped .woocommerce-product-header .woocommerce-product-meta {
  display: none !important;
}
.woocommerce nav.woocommerce-pagination {
  margin-top: 50px;
  margin-bottom: -28px;
  text-align: center;
}
@media screen and (max-width: 450px) {
  .woocommerce nav.woocommerce-pagination {
    margin-top: 0;
  }
}
.woocommerce nav.woocommerce-pagination ul.page-numbers {
  border: none;
}
.woocommerce nav.woocommerce-pagination ul.page-numbers li {
  border: none;
  margin: 0 0 10px;
}
.woocommerce nav.woocommerce-pagination ul.page-numbers .page-numbers {
  position: relative;
  text-align: center;
  height: 60px;
  width: 60px;
  padding: 0;
  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;
  color: inherit;
  background-color: #fff;
  overflow: hidden;
  font-size: 20px;
  font-weight: 700;
  margin: 0 10px 0 0;
  background-color: #f4f4f4;
  color: #666;
}
.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 {
  margin-left: 10px;
}
.woocommerce nav.woocommerce-pagination ul.page-numbers .page-numbers.next:before {
  font-size: 12px !important;
  content: '\f324';
  font-family: 'Font Awesome 5 Pro';
}
.woocommerce nav.woocommerce-pagination ul.page-numbers .page-numbers.prev {
  margin-right: 20px;
}
.woocommerce nav.woocommerce-pagination ul.page-numbers .page-numbers.prev:before {
  font-size: 12px !important;
  content: '\f323';
  font-family: 'Font Awesome 5 Pro';
}
.woocommerce nav.woocommerce-pagination ul.page-numbers .page-numbers.current {
  color: #fff;
  background: linear-gradient(to right, #ee1d22 0%, #2a2a2a 100%) !important;
}
.woocommerce nav.woocommerce-pagination ul.page-numbers .page-numbers:hover:not(.current) {
  background: linear-gradient(to right, #ee1d22 0%, #2a2a2a 100%) !important;
  color: #fff;
  transition: 0ms !important;
}
.woocommerce-product-details__short-description {
  font-weight: 400;
}
.single-product #shop-breadcrumb {
  padding-bottom: 46px;
}
.single-product #shop-newsletter {
  margin-top: 30px;
}
.single-product section.related h2 {
  font-size: 36px;
  text-align: center;
  color: #666;
  font-weight: 700;
  margin-bottom: 35px;
}
.single-product section.related ul.products {
  margin-bottom: 0;
}
.single-product section.related ul.products li.product {
  margin-bottom: 0 !important;
  margin-top: 30px;
}
@media screen and (max-width: 991px) {
  .single-product section.related ul.products.columns-4 {
    margin-top: -40px;
  }
  .single-product section.related ul.products.columns-4 li.product {
    width: 50%;
    margin-top: 50px;
  }
}
@media screen and (max-width: 575px) {
  .single-product section.related ul.products.columns-4 li.product {
    width: 100%;
  }
}
.single-product #primary div.product .woocommerce-product-details__short-description {
  font-weight: 400;
  font-size: 15px;
  line-height: 26px;
  margin-bottom: 9px;
}
.single-product #primary div.product .woocommerce-product-details__short-description p:last-child {
  margin-bottom: 0;
}
.single-product #primary div.product .woocommerce-product-details__short-description ul.product-list-custom {
  list-style: none;
  margin-top: 25px;
}
.single-product #primary div.product .woocommerce-product-details__short-description ul.product-list-custom li {
  padding-left: 35px;
  position: relative;
}
.single-product #primary div.product .woocommerce-product-details__short-description ul.product-list-custom li + li {
  margin-top: 7px;
}
.single-product #primary div.product .woocommerce-product-details__short-description ul.product-list-custom li:before {
  font-size: 18px;
  position: absolute;
  top: 1px;
  left: 0;
  font-family: "Font Awesome 5 Pro";
  content: "\f30b";
  color: #ee1d22;
}
.single-product #primary div.product form.cart {
  padding-top: 24px;
  padding-bottom: 22px;
  margin: 0;
}
.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: #1b1a1a;
  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: #ee1d22;
  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:not(.grouped_form) {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}
.single-product #primary div.product form.cart:not(.grouped_form) .single_add_to_cart_button {
  margin-top: 0;
  -webkit-border-radius: 8px;
  -khtml-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  border-radius: 8px;
  background-color: #ee1d22;
  -webkit-box-shadow: none;
  -khtml-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
  height: 46px;
  line-height: 46px;
}
@media (max-width: 357px) {
  .single-product #primary div.product form.cart:not(.grouped_form) .single_add_to_cart_button {
    height: auto;
    line-height: 36px !important;
  }
}
.single-product #primary div.product form.cart:not(.grouped_form) .single_add_to_cart_button:before {
  background-color: #2a2a2a;
}
.single-product #primary div.product .woocommerce-gallery span.onsale {
  display: none;
}
.single-product #primary div.product .woocommerce-product-gallery {
  width: 100% !important;
  margin-bottom: 22px;
}
.single-product #primary div.product .woocommerce-product-gallery .woocommerce-product-gallery__trigger {
  right: 20px;
  top: 20px;
  display: none;
}
@media screen and (min-width: 1200px) {
  .single-product #primary div.product .woocommerce-product-gallery {
    padding-right: 15px;
  }
  .single-product #primary div.product .woocommerce-product-gallery .woocommerce-product-gallery__trigger {
    right: 35px;
  }
}
.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;
}
@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: 3px solid rgba(0, 0, 0, 0.1);
  outline-offset: -6px;
}
.single-product #primary div.product .woocommerce-product-gallery .woocommerce-product-gallery__wrapper {
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  overflow: hidden;
}
.single-product #primary div.product .woocommerce-product-gallery .woocommerce-product-gallery__image a {
  position: relative;
  display: block;
}
.single-product #primary div.product .entry-summary {
  width: 100% !important;
  margin-bottom: 69px;
  padding-top: 32px;
}
@media screen and (min-width: 768px) {
  .single-product #primary div.product .entry-summary {
    position: sticky;
    top: 62px;
  }
}
.single-product #primary div.product .entry-summary .woocommerce-product-rating {
  margin-bottom: 5px;
}
.single-product #primary div.product .entry-summary .woocommerce-product-rating .woocommerce-review-link {
  display: none;
}
.single-product #primary div.product .entry-summary .woocommerce-sg-product-price {
  margin-bottom: 22px;
}
.single-product #primary div.product .entry-summary .price {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0;
  color: #ee1d22;
  align-items: center;
  font-weight: 700;
}
.single-product #primary div.product .entry-summary .price .amount {
  color: #ee1d22;
  font-weight: 700;
}
.single-product #primary div.product .entry-summary .price ins {
  font-size: 30px;
  margin-right: 12px;
}
.single-product #primary div.product .entry-summary .price ins span {
  font-weight: 400;
}
.single-product #primary div.product .entry-summary .price del {
  color: #666;
  font-size: 18px;
}
.single-product #primary div.product .entry-summary .price del .amount {
  color: inherit;
}
.single-product #primary div.product .entry-summary .woocommerce-sg-product-excerpt > h3 {
  font-size: 30px;
  margin-bottom: 11px;
}
.single-product #primary div.product .entry-summary .woocommerce-sg-product-excerpt p {
  font-size: 14px;
  line-height: 23px;
}
.single-product #primary div.product .entry-summary .woosc-btn {
  display: none;
}
.single-product #primary div.product .entry-summary .woosw-btn {
  background-color: #ee1d22;
  border-radius: 5px;
  margin-top: 30px;
}
.single-product #primary div.product .entry-summary .woosw-btn:hover {
  background-color: #666;
}
.single-product #primary div.product .entry-summary .woocommerce-product-summary-meta {
  margin-top: 10px;
  margin-bottom: 20px;
  font-size: 15px;
  color: #9b9b9b;
}
.single-product #primary div.product .entry-summary .woocommerce-product-summary-meta > div {
  margin-bottom: 10px;
}
.single-product #primary div.product .entry-summary .woocommerce-product-summary-meta a {
  color: inherit;
  font-size: inherit;
}
.single-product #primary div.product .entry-summary .woocommerce-product-summary-meta a:hover {
  color: #ee1d22;
}
.single-product #primary div.product .entry-summary .woocommerce-product-summary-meta label {
  color: #282828;
  font-size: 16px;
  padding-right: 10px;
  min-width: 120px;
  font-weight: 700;
}
.single-product #primary div.product .entry-summary .woocommerce-product-summary-meta .woocommerce-product-category {
  display: block;
}
.single-product #primary div.product .entry-summary .woocommerce-product-summary-meta .woocommerce-product-category a {
  margin-bottom: 0;
}
.single-product #primary div.product .entry-summary .woocommerce-sg-product-social-share .el-label {
  font-size: 16px;
  font-weight: 700;
  color: #282829;
  margin-right: 15px;
}
.single-product #primary div.product .entry-summary .woocommerce-sg-product-social-share .el-social a {
  font-size: 16px;
  display: inline-block;
  margin: 0 5px;
  width: 35px;
  height: 35px;
  color: #666;
  line-height: 35px;
  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;
  background-color: transparent;
  border: 1px solid #666;
}
.single-product #primary div.product .entry-summary .woocommerce-sg-product-social-share .el-social a 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;
}
.single-product #primary div.product .entry-summary .woocommerce-sg-product-social-share .el-social a:hover {
  border-color: #ee1d22;
}
.single-product #primary div.product .entry-summary .woocommerce-sg-product-social-share .el-social a:hover i {
  color: #ee1d22;
}
.single-product #primary div.product .entry-summary .single_add_to_cart_button {
  clear: left;
  margin-top: 30px;
}
.single-product #primary div.product .entry-summary .woocommerce-sg-product-holder {
  flex-grow: 1;
}
.single-product #primary div.product .woocommerce-tabs {
  margin: 30px auto 40px auto;
}
.single-product #primary div.product .woocommerce-tabs ul.wc-tabs {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  overflow: visible;
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-bottom: none;
}
.single-product #primary div.product .woocommerce-tabs ul.wc-tabs:before, .single-product #primary div.product .woocommerce-tabs ul.wc-tabs:after {
  display: none;
}
.single-product #primary div.product .woocommerce-tabs ul.wc-tabs li {
  margin: 0;
  padding: 0;
  border: none;
  display: inline-block;
  background-color: #f9f9f9;
  border-right: 1px solid #eee;
}
.single-product #primary div.product .woocommerce-tabs ul.wc-tabs li a {
  font-size: 14px;
  display: block;
  color: #666;
  font-weight: 400;
  padding: 0 20px;
  line-height: 60px;
  -webkit-border-radius: 0;
  -khtml-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  position: relative;
}
.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;
}
.single-product #primary div.product .woocommerce-tabs ul.wc-tabs li.active {
  background-color: #fff;
}
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 25px;
  padding: 16px 20px;
  border: 1px solid #eee;
}
.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 .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: #1b1a1a;
  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-noreviews {
  font-weight: 400;
  margin-bottom: 15px;
}
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--description {
  font-size: 15px;
  line-height: 26px;
}
.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;
  font-weight: 400;
}
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews .comment-form-comment label {
  margin-bottom: 8px;
  font-weight: 400;
}
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews .woocommerce-Reviews-title {
  color: #ee1d22;
  font-size: 18px;
  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 {
  padding-top: 15px;
  height: 120px;
  padding-bottom: 22px;
  border: 1px solid #eaeaea;
}
.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 #respond {
  -webkit-box-shadow: none;
  -khtml-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}
.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: auto;
  height: auto;
  -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 {
  font-weight: 400;
  display: block;
  color: #ee1d22;
  font-size: 14px;
}
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .meta .woocommerce-review__author {
  font-weight: 700;
  color: #282828;
}
.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 {
  font-weight: 400;
}
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .meta .woocommerce-review__published-date:before {
  color: #ee1d22;
  content: "\f017";
  font-family: 'Font Awesome 5 Pro';
  margin: 0 4px;
}
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .description p {
  font-weight: 400;
  margin: 0;
}
.single-product #primary div.product .woocommerce-sg-product-navigation {
  text-align: center;
  margin-bottom: 57px;
}
.single-product #primary div.product .woocommerce-sg-product-navigation .product-previous-next {
  display: inline-block;
  position: relative;
}
.single-product #primary div.product .woocommerce-sg-product-navigation .product-previous-next a {
  height: 50px;
  width: 50px;
  line-height: 50px;
  background-color: #222;
  display: inline-block;
  color: #fff;
  font-size: 16px;
  margin: 0 3px;
  -webkit-border-radius: 2px;
  -khtml-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  border-radius: 2px;
}
.single-product #primary div.product .woocommerce-sg-product-navigation .product-previous-next a:hover {
  background-color: #ee1d22;
}
.single-product #primary div.product .quantity {
  margin-right: 15px;
}
.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: #ee1d22;
  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: #2a2a2a;
}
.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;
  color: #fff !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: 40px;
  padding: 0 25px;
  font-size: 15px;
  -webkit-border-radius: 5px;
  -khtml-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
}
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;
  text-transform: uppercase;
  color: #2a2a2a;
  padding: 10px;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 3px solid #ee1d22;
}
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;
  border-left: none;
  border-right: none;
  border-top: none;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
}
body.woocommerce-cart .woocommerce-cart-form .shop_table tbody td.actions, body.woocommerce-wishlist .woocommerce-cart-form .shop_table tbody td.actions, body.woocommerce-cart #yith-wcwl-form .shop_table tbody td.actions, body.woocommerce-wishlist #yith-wcwl-form .shop_table tbody td.actions {
  border-bottom: none;
  padding-left: 0;
  padding-right: 0;
}
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: #2a2a2a;
  font-size: 16px;
  font-weight: 400;
}
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: #ee1d22;
}
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: #1b1a1a;
  font-size: 14px;
  font-weight: 400;
}
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: #1b1a1a;
  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: 80px;
}
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 {
  -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%;
  max-width: 60px;
}
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: 35px;
}
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: 11px;
  height: 19px;
  width: 19px;
  line-height: 18px;
  background-color: #ee1d22;
  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-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(102, 102, 102, 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, body.woocommerce-wishlist .cart-collaterals .cart_totals {
  background-color: #fff;
  padding: 40px 50px;
  -webkit-box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
  -khtml-box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
  -ms-box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
  -o-box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
  -webkit-border-radius: 7px;
  -khtml-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  -o-border-radius: 7px;
  border-radius: 7px;
  width: 33.33%;
}
@media screen and (max-width: 991px) {
  body.woocommerce-cart .cart-collaterals .cart_totals, body.woocommerce-wishlist .cart-collaterals .cart_totals {
    width: 50%;
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (max-width: 991px) {
  body.woocommerce-cart .cart-collaterals .cart_totals, body.woocommerce-wishlist .cart-collaterals .cart_totals {
    padding: 30px;
    width: 100%;
  }
}
body.woocommerce-cart .cart-collaterals .cart_totals > h2, body.woocommerce-wishlist .cart-collaterals .cart_totals > h2 {
  font-size: 24px;
  border-bottom: 1px solid rgba(96, 101, 104, 0.15);
  margin-bottom: 20px;
  padding-bottom: 14px;
  text-transform: capitalize;
  font-weight: 700;
  color: #666;
}
body.woocommerce-cart .cart-collaterals .cart_totals th, body.woocommerce-wishlist .cart-collaterals .cart_totals th {
  vertical-align: middle !important;
  border: none !important;
  color: inherit;
  font-weight: normal;
  padding: 12px 10px 12px 0px;
}
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 td, body.woocommerce-wishlist .cart-collaterals .cart_totals td {
  border: none !important;
  padding: 12px 10px;
  text-align: right;
}
body.woocommerce-cart .cart-collaterals .cart_totals strong, body.woocommerce-wishlist .cart-collaterals .cart_totals strong {
  font-weight: 600;
}
body.woocommerce-cart .cart-collaterals .cart_totals .order-total th, body.woocommerce-wishlist .cart-collaterals .cart_totals .order-total th, body.woocommerce-cart .cart-collaterals .cart_totals .order-total td, body.woocommerce-wishlist .cart-collaterals .cart_totals .order-total td {
  color: #111;
  font-weight: 600;
}
body.woocommerce-cart .cart-collaterals .cart_totals .shop_table, body.woocommerce-wishlist .cart-collaterals .cart_totals .shop_table {
  border: none;
}
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: #ee1d22;
}
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: #ee1d22;
}
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: 15px;
  font-weight: 400;
  width: 100%;
}
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: 28px;
  text-transform: capitalize;
}
.woocommerce-checkout #customer_details .woocommerce-additional-fields {
  margin-bottom: 36px;
}
.woocommerce-checkout #customer_details .woocommerce-additional-fields > h3 {
  font-size: 18px;
  font-weight: 600;
}
.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: #ee1d22;
}
.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: 'Font Awesome 5 Pro';
  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 form.woocommerce-checkout #order_review_heading {
  font-size: 24px;
  text-transform: capitalize;
}
.woocommerce-checkout form.woocommerce-checkout #order_review th {
  color: #1b1a1a;
  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 td, .woocommerce-checkout form.woocommerce-checkout #order_review .order-total td {
  font-weight: 600;
  color: #1b1a1a;
}
.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 {
  background-color: #ee1d22;
  float: none;
  margin-top: 10px;
}
.woocommerce-checkout form.woocommerce-checkout #order_review #payment #place_order:hover {
  background-color: #2a2a2a;
}
.woocommerce-checkout #payment label {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.87);
  font-weight: 600;
}
.woocommerce-checkout .woocommerce-order .woocommerce-order-details .woocommerce-order-details__title {
  font-family: "Novecentowide-Bold" !important;
  font-size: 18px;
  letter-spacing: 0.16em;
}
.woocommerce-checkout .woocommerce-order .woocommerce-customer-details .woocommerce-column__title {
  font-family: "Novecentowide-Bold" !important;
  font-size: 18px;
  letter-spacing: 0.16em;
}
.woocommerce-account .site-content #primary .woocommerce-MyAccount-navigation {
  margin-bottom: 30px;
}
.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: #747da1;
  position: relative;
  display: block;
}
.woocommerce-account .site-content #primary .woocommerce-MyAccount-navigation ul li a:hover {
  color: #ee1d22;
}
.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: "'Font Awesome 5 Pro'";
  color: #ee1d22;
  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;
}
.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: #ee1d22;
}
.woocommerce-account .site-content #primary .woocommerce-form .woocommerce-LostPassword a:hover {
  color: #2a2a2a;
}
.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;
}
.woocommerce-author-info {
  background-color: #fafafa;
}
@media screen and (min-width: 576px) {
  .woocommerce-author-info {
    display: flex;
    align-items: center;
    padding: 48px 40px;
  }
}
.woocommerce-author-info .author-avatar {
  min-width: 124px;
  max-width: 124px;
  min-height: 124px;
  max-height: 124px;
  height: 124px;
  -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;
}
.woocommerce-author-info .author-avatar 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;
  -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);
}
.woocommerce-author-info .author-avatar + .author-description {
  margin-left: 30px;
}
.woocommerce-author-info .author-description .author-name {
  margin-bottom: 15px;
  margin-top: -12px;
  font-size: 24px;
}
.woocommerce-author-info .author-description .author-name label {
  color: #2a2a2a;
}
.woocommerce-author-info .author-description p {
  margin-bottom: 0;
}
.woocommerce-author-info:hover .author-avatar img {
  -webkit-transform: scale(1);
  -khtml-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
body #yith-wcwl-popup-message {
  margin-left: -108px;
  display: none;
  bottom: 30px;
  top: auto;
  right: 30px;
  left: auto;
  background-color: #ee1d22;
  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: #2a2a2a !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;
  background-color: #ee1d22;
  color: #fff;
  line-height: 42px;
  font-size: 16px;
  display: inline-block !important;
}
.woocommerce-wishlist #yith-wcwl-form .product-add-to-cart a.button:hover {
  background-color: #2a2a2a;
}
.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;
}
.woocommerce-product-details {
  display: inline-flex;
  height: 184px;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.woocommerce-product-details img {
  width: auto !important;
  margin: 0 auto !important;
}
.widget_product_categories {
  padding: 40px !important;
}
.widget_product_categories .widget-title {
  margin-bottom: 30px !important;
  margin-top: 10px !important;
}
.widget_product_categories .product-categories {
  margin: 0 !important;
}
.widget_product_categories .product-categories li {
  background-color: #fff;
  margin-bottom: 12px;
  position: relative;
}
.widget_product_categories .product-categories li:before {
  position: absolute;
  content: "";
  right: 0;
  background: linear-gradient(to right, #ee1d22 0%, #2a2a2a 100%) !important;
  height: 100%;
  width: 0%;
  -webkit-transition: 300ms all linear 0ms;
  -khtml-transition: 300ms all linear 0ms;
  -moz-transition: 300ms all linear 0ms;
  -ms-transition: 300ms all linear 0ms;
  -o-transition: 300ms all linear 0ms;
  transition: 300ms all linear 0ms;
}
.widget_product_categories .product-categories li a {
  font-size: 15px !important;
  line-height: 50px !important;
  padding-left: 63px;
  font-weight: 400;
  color: #666;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .widget_product_categories .product-categories li a {
    padding-left: 55px;
  }
}
.widget_product_categories .product-categories li a:before {
  position: absolute;
  left: 33px;
  font-family: "Font Awesome 5 Pro";
  content: "\f101";
  font-size: 13px;
  color: #666;
  font-weight: 900 !important;
  -webkit-transition: 300ms all linear 0ms;
  -khtml-transition: 300ms all linear 0ms;
  -moz-transition: 300ms all linear 0ms;
  -ms-transition: 300ms all linear 0ms;
  -o-transition: 300ms all linear 0ms;
  transition: 300ms all linear 0ms;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .widget_product_categories .product-categories li a:before {
    left: 28px;
  }
}
.widget_product_categories .product-categories li a:hover {
  background: linear-gradient(to right, transparent 0%, transparent 100%) !important;
}
.widget_product_categories .product-categories li a:hover:before {
  color: #fff;
  -webkit-animation: toRightFromLeft 0.3s forwards;
  -khtml-animation: toRightFromLeft 0.3s forwards;
  -moz-animation: toRightFromLeft 0.3s forwards;
  -ms-animation: toRightFromLeft 0.3s forwards;
  -o-animation: toRightFromLeft 0.3s forwards;
  animation: toRightFromLeft 0.3s forwards;
}
.widget_product_categories .product-categories li:hover:before {
  left: 0;
  width: 100%;
}
.search .entry-body .entry-content {
  font-weight: 400;
}
.search .entry-body .entry-readmore {
  margin-top: 25px;
}
.woocommerce-product-inner {
  padding: 9px 0px 43px 0;
}
.woocommerce-product-inner .woocommerce-product-holder .woocommerce-product-title a {
  font-size: 25px;
  font-weight: 700;
  color: #666;
}
.woocommerce-product-inner .woocommerce-product-holder .price span {
  font-size: 16px;
  font-weight: 400;
  color: #ee1d22;
  padding-top: 4px;
}
.products > li > button {
  display: none !important;
}
.woocommerce-product-inner {
  position: relative;
}
.woocommerce-product-inner .wrap-woocommerce-product-meta-wpc {
  padding-top: 60px;
}
.woocommerce-product-inner:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  background: linear-gradient(to bottom, #ee1d22 0%, #2a2a2a 100%);
  z-index: 2;
  -webkit-transition: 300ms all linear 0ms;
  -khtml-transition: 300ms all linear 0ms;
  -moz-transition: 300ms all linear 0ms;
  -ms-transition: 300ms all linear 0ms;
  -o-transition: 300ms all linear 0ms;
  transition: 300ms all linear 0ms;
}
.woocommerce-product-inner:hover:before {
  opacity: 0.9;
}
.woocommerce-product-inner:hover .woocommerce-product-holder {
  opacity: 0;
}
.woocommerce-product-inner .name-price-hv {
  text-align: center;
  padding-bottom: 25px;
}
.woocommerce-product-inner .name-price-hv .woocommerce-product-title a {
  font-size: 25px !important;
  font-weight: 700 !important;
  color: #fff !important;
}
.woocommerce-product-inner .name-price-hv .price {
  font-size: 16px;
  color: #fff !important;
}
.woocommerce-product-inner .name-price-hv del, .woocommerce-product-inner .name-price-hv ins {
  color: #fff;
}
.woocommerce-product-inner .woocommerce-product-meta-wpc {
  padding: 0 32px;
  display: flex;
  justify-content: center;
}
.woocommerce-product-inner .woocommerce-product-meta-wpc button {
  font-size: 0;
  width: 50px;
  height: 50px;
  position: relative;
  border-radius: 50px;
  border: 2px solid #fff;
  background: transparent;
}
.woocommerce-product-inner .woocommerce-product-meta-wpc button:hover {
  background-color: #fff;
}
.woocommerce-product-inner .woocommerce-product-meta-wpc button:hover:after {
  background: linear-gradient(to right bottom, #ee1d22 40%, #2a2a2a 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}
.woocommerce-product-inner .woocommerce-product-meta-wpc .woocommerce-wishlist {
  margin: 0 10px;
}
.woocommerce-product-inner .woocommerce-product-meta-wpc .woosc-btn:after {
  width: 46px;
  color: #fff;
  position: absolute;
  top: 1px;
  left: 0;
  font-family: "Font Awesome 5 Pro";
  font-size: 20px;
  color: #fff;
  content: "\f2f1";
}
.woocommerce-product-inner .woocommerce-product-meta-wpc .woosw-btn:after {
  width: 46px;
  color: #fff;
  position: absolute;
  top: 1px;
  left: 0;
  font-family: "Font Awesome 5 Pro";
  font-size: 20px;
  color: #fff;
  content: "\f004";
}
.woocommerce-product-inner .woocommerce-product-meta-wpc .woosq-btn:after {
  width: 46px;
  color: #fff;
  position: absolute;
  top: 1px;
  left: 0;
  font-family: "Font Awesome 5 Pro";
  font-size: 20px;
  color: #fff;
  content: "\f06e";
}
.summary-content .product_title {
  color: #666;
  font-weight: 700;
}
@media screen and (max-width: 450px) {
  .summary-content .product_title {
    font-size: 30px;
  }
}
.summary-content .price {
  color: #ee1d22 !important;
}
.summary-content .quantity {
  margin-right: 20px;
  margin-bottom: 20px !important;
  padding: 0 20px 0 0;
}
.summary-content .cart {
  padding-top: 20px;
}
.summary-content .cart input {
  border: 1px solid #eaeaea;
}
.summary-content .cart input:focus {
  border: 1px solid #ee1d22;
}
.summary-content .cart .single_add_to_cart_button {
  line-height: 46px !important;
  border-radius: 5px !important;
  padding: 0 28px !important;
}
.summary-content .product_meta {
  display: inline-grid;
}
.summary-content .product_meta .posted_in {
  padding-bottom: 20px;
}
.woocommerce-cart-form button:hover {
  background-color: #666 !important;
}
.shop_table th {
  font-weight: 700 !important;
  color: #666 !important;
}
.cart-collaterals a:hover {
  background-color: #666 !important;
}
.woocommerce-cart-form__cart-item a {
  font-weight: 700 !important;
  color: #666 !important;
}
.woocommerce-checkout.checkout input {
  border: 1px solid #eaeaea;
}
.woocommerce-checkout.checkout input:focus {
  border: 1px solid #ee1d22;
}
.woocommerce-checkout.checkout h3 {
  font-weight: 700 !important;
  color: #666 !important;
}
#woosq-popup .thumbnails img {
  width: 75%;
}
#woosq-popup .slick-dots {
  display: none !important;
}
#woosq-popup .single_add_to_cart_button {
  background-color: #ee1d22;
  -webkit-transition: 300ms all linear 0ms;
  -khtml-transition: 300ms all linear 0ms;
  -moz-transition: 300ms all linear 0ms;
  -ms-transition: 300ms all linear 0ms;
  -o-transition: 300ms all linear 0ms;
  transition: 300ms all linear 0ms;
}
#woosq-popup .single_add_to_cart_button:hover {
  background-color: #666;
}
#woosq-popup .price del {
  opacity: 1 !important;
}
#woosq-popup .price ins {
  color: #666 !important;
}
.woocommerce-shop .site #content {
  padding-bottom: 160px !important;
}
@media screen and (max-width: 991px) {
  .woocommerce-shop .site #content {
    padding-bottom: 100px !important;
  }
}
.page-template-default .add_to_cart_inline a:after {
  top: auto !important;
}
.add_to_cart_inline a:after {
  top: 0 !important;
}
@media screen and (max-width: 450px) {
  .add_to_cart_inline a {
    padding: 0 9px !important;
    font-size: 10px !important;
    line-height: 25px !important;
    padding: 0 5px !important;
  }
}
@media screen and (max-width: 450px) {
  .woosw-content-bot {
    font-size: 11px !important;
  }
}
.cms-carousel-inner {
  margin: 0 -15px;
}
.slick-slide {
  padding: 0 15px;
}
#elementor-panel-get-pro-elements {
  display: none !important;
}
.elementor-icons-manager__tab__item {
  height: 80px !important;
}
.elementor-element .elementor-widget:not(:last-child) {
  margin-bottom: 0;
}
.elementor .elementor-section.elementor-section-boxed > .elementor-container.elementor-column-gap-default {
  max-width: 1190px;
}
.elementor .elementor-section.elementor-section-boxed > .elementor-container.elementor-column-gap-extended {
  max-width: 1200px;
}
.site-content .elementor-container.elementor-column-gap-default, .site-footer-custom .elementor-container.elementor-column-gap-default {
  margin: 0 -10px;
}
.site-content .elementor-container.elementor-column-gap-extended, .site-footer-custom .elementor-container.elementor-column-gap-extended {
  margin: 0 -15px;
}
.site-content .elementor-section-stretched.elementor-section-boxed .elementor-container.elementor-column-gap-default, .site-footer-custom .elementor-section-stretched.elementor-section-boxed .elementor-container.elementor-column-gap-default {
  margin: 0 auto;
}
.site-content .elementor-section-stretched.elementor-section-boxed .elementor-container.elementor-column-gap-default .elementor-row .elementor-column-gap-extended, .site-footer-custom .elementor-section-stretched.elementor-section-boxed .elementor-container.elementor-column-gap-default .elementor-row .elementor-column-gap-extended {
  margin: 0 -10px;
}
.site-content .elementor-section-stretched.elementor-section-boxed .elementor-container.elementor-column-gap-extended, .site-footer-custom .elementor-section-stretched.elementor-section-boxed .elementor-container.elementor-column-gap-extended {
  margin: 0 auto;
}
.site-content .elementor-section-stretched.elementor-section-boxed .elementor-container.elementor-column-gap-extended .elementor-row .elementor-column-gap-extended, .site-footer-custom .elementor-section-stretched.elementor-section-boxed .elementor-container.elementor-column-gap-extended .elementor-row .elementor-column-gap-extended {
  margin: 0 -15px;
}
.site-content .elementor-section-stretched.elementor-section-full_width .elementor-section-boxed > .elementor-column-gap-extended, .site-footer-custom .elementor-section-stretched.elementor-section-full_width .elementor-section-boxed > .elementor-column-gap-extended {
  position: relative;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
  -khtml-transform: translate(-50%, 0%);
  -moz-transform: translate(-50%, 0%);
  -ms-transform: translate(-50%, 0%);
  -o-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
  margin: 0;
}
.site-content .elementor-widget-text-editor, .site-footer-custom .elementor-widget-text-editor {
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
}
.single-footer #masthead, .elementor_library-template-default.single-elementor_library #masthead, .single-footer #pagetitle, .elementor_library-template-default.single-elementor_library #pagetitle, .single-footer #colophon, .elementor_library-template-default.single-elementor_library #colophon {
  display: none;
}
.col-offset-left .elementor-element-populated {
  padding-left: 20px;
}
@media screen and (min-width: 1400px) {
  .elementor-section-full_width .elementor-inner-section > .elementor-container {
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -khtml-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
}
@media screen and (max-width: 1024px) {
  .col-offset-right .elementor-element-populated {
    padding-right: 20px !important;
  }
  .col-offset-left .elementor-element-populated {
    padding-left: 20px !important;
  }
}
@media screen and (max-width: 1199px) {
  .col-offset-left > .elementor-column-wrap .elementor-widget-wrap {
    padding-left: 15px !important;
  }
  .col-offset-right > .elementor-column-wrap .elementor-widget-wrap {
    padding-right: 15px !important;
  }
  .col-offset-left > .elementor-column-wrap .elementor-widget-wrap .elementor-section.elementor-section-boxed > .elementor-container.elementor-column-gap-extended {
    max-width: 100%;
  }
}
@media screen and (max-width: 991px) {
  .site-footer-custom {
    overflow: hidden;
  }
}
.elementor-editor-active #site-header-wrap {
  display: none;
}
.elementor-editor-active #site-header-wrap .site-header-main.h-fixed {
  position: static !important;
}
.elementor-editor-active .site-footer-custom {
  display: none;
}
.elementor-editor-active .cms-navigation-menu1.is-sticky {
  position: static;
}
.carousel-el-custom .swiper-pagination-bullets .swiper-pagination-bullet {
  height: 15px;
  width: 15px;
  -webkit-border-radius: 15px;
  -khtml-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  border-radius: 15px;
  background-color: #e8e8e8;
  margin-left: 4px;
  margin-right: 4px;
  opacity: 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;
}
.carousel-el-custom .swiper-pagination-bullets .swiper-pagination-bullet:focus {
  outline: none;
}
.carousel-el-custom .swiper-pagination-bullets .swiper-pagination-bullet:hover, .carousel-el-custom .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #ee1d22;
}
.bypostauthor, .sticky {
  visibility: visible;
}
.screen-reader-text {
  display: none;
}
.alignleft, .alignright, .aligncenter {
  margin-top: 6px;
  margin-bottom: 45px !important;
}
.alignleft {
  display: inline;
  float: left;
  margin-right: 35px !important;
}
[dir="rtl"] .alignleft {
  float: right;
  margin-right: 0 !important;
  margin-left: 35px !important;
}
.alignright {
  display: inline;
  float: right;
  margin-left: 35px;
}
[dir="rtl"] .alignright {
  float: left;
  margin-left: 0;
  margin-right: 35px;
}
.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
div[class*="wp-block-"] {
  margin-top: 30px;
  margin-bottom: 30px;
}
div[class*="wp-block-"].wp-block-themepunch-revslider {
  margin: 0;
}
.cms-single-page p:last-child {
  clear: both;
}
.cms-single-page p:last-child img[class*="align"] {
  margin-bottom: 0;
}
blockquote a {
  color: #2a2a2a;
}
blockquote a:hover {
  text-decoration: underline;
  color: #2a2a2a;
}
