/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Grid
# Class
# Forms
# Button
# Header
# Main Menu
# Page Title & Breadcrumb
# Post and Page
# Navigation
# Layout Content
# Widgets
# Media
# Singlular
# Comments
# Footer
# VC Elements
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
/* Custom Mixin */
/* Set Font Default */
/*--------------------------------------------------------------
# Class
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Button
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
/* CMS Button */
/*--------------------------------------------------------------
# Main Menu
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Page Title & Breadcrumb
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Post and Page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Comments
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# VC Elements
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Layout Content
--------------------------------------------------------------*/
/*
Theme Name: Fincore
Adding support for languages written in a Right To Left (RTL) direction is easy -
it's just a matter of overwriting all the horizontal positioning attributes
of your CSS stylesheet in a separate stylesheet file named rtl.css.
https://codex.wordpress.org/Right-to-Left_Language_Support
*/
@-webkit-keyframes moveUp {
  100% {
    -webkit-transform: translateY(0);
    opacity: 1;
  }
}
@keyframes moveUp {
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes spin-rotate-left {
  to {
    transform: rotate(30deg);
  }
  from {
    transform: rotate(175deg);
  }
}
@-webkit-keyframes spin-rotate-left {
  to {
    transform: rotate(30deg);
  }
  from {
    transform: rotate(175deg);
  }
}
@keyframes spin-rotate-right {
  from {
    transform: rotate(-175deg);
  }
  to {
    transform: rotate(-30deg);
  }
}
@-webkit-keyframes spin-rotate-right {
  from {
    transform: rotate(-175deg);
  }
  to {
    transform: rotate(-30deg);
  }
}
@keyframes spin-rotate-all {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
@-webkit-keyframes spin-rotate-all {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
@keyframes spin-fade-in-first {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes spin-fade-in-first {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes spin-fade-in-second {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes spin-fade-in-second {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes markerWave {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.8;
  }
  20% {
    opacity: 0.8;
  }
  100% {
    -webkit-transform: scale(5.5);
    transform: scale(5.5);
    opacity: 0;
  }
}
@keyframes markerWave {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.8;
  }
  20% {
    opacity: 0.8;
  }
  100% {
    -webkit-transform: scale(5.5);
    transform: scale(5.5);
    opacity: 0;
  }
}
@-webkit-keyframes rotateplane {
  0% {
    -webkit-transform: perspective(120px);
  }
  50% {
    -webkit-transform: perspective(120px) rotateY(180deg);
  }
  100% {
    -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg);
  }
}
@keyframes rotateplane {
  0% {
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    transform: perspective(120px) rotateX(0deg) rotateY(0deg);
  }
  50% {
    -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
  }
  100% {
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}
@-webkit-keyframes ct-bounce {
  0%, 100% {
    -webkit-transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
  }
}
@keyframes ct-bounce {
  0%, 100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
@-webkit-keyframes ct-bounce2 {
  0%, 100% {
    -webkit-transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.08);
  }
}
@keyframes ct-bounce2 {
  0%, 100% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
  50% {
    transform: scale(1.08);
    -webkit-transform: scale(1.08);
  }
}
@-webkit-keyframes ct-stretchdelay {
  0%, 40%, 100% {
    -webkit-transform: scaleY(0.4);
  }
  20% {
    -webkit-transform: scaleY(1);
  }
}
@keyframes ct-stretchdelay {
  0%, 40%, 100% {
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4);
  }
  20% {
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
  }
}
@-webkit-keyframes ct-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
  }
}
@keyframes ct-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes ct-cubeGridScaleDelay {
  0%, 70%, 100% {
    -webkit-transform: scale3D(1, 1, 1);
    transform: scale3D(1, 1, 1);
  }
  35% {
    -webkit-transform: scale3D(0, 0, 1);
    transform: scale3D(0, 0, 1);
  }
}
@keyframes ct-cubeGridScaleDelay {
  0%, 70%, 100% {
    -webkit-transform: scale3D(1, 1, 1);
    transform: scale3D(1, 1, 1);
  }
  35% {
    -webkit-transform: scale3D(0, 0, 1);
    transform: scale3D(0, 0, 1);
  }
}
@-webkit-keyframes ct-foldCubeAngle {
  0%, 10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
    transform: perspective(140px) rotateX(-180deg);
    opacity: 0;
  }
  25%, 75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
    transform: perspective(140px) rotateX(0deg);
    opacity: 1;
  }
  90%, 100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
    transform: perspective(140px) rotateY(180deg);
    opacity: 0;
  }
}
@keyframes ct-foldCubeAngle {
  0%, 10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
    transform: perspective(140px) rotateX(-180deg);
    opacity: 0;
  }
  25%, 75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
    transform: perspective(140px) rotateX(0deg);
    opacity: 1;
  }
  90%, 100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
    transform: perspective(140px) rotateY(180deg);
    opacity: 0;
  }
}
@keyframes ball {
  0% {
    transform: translate(0, 0);
  }
  5% {
    transform: translate(8px, -14px);
  }
  10% {
    transform: translate(15px, -10px);
  }
  17% {
    transform: translate(23px, -24px);
  }
  20% {
    transform: translate(30px, -20px);
  }
  27% {
    transform: translate(38px, -34px);
  }
  30% {
    transform: translate(45px, -30px);
  }
  37% {
    transform: translate(53px, -44px);
  }
  40% {
    transform: translate(60px, -40px);
  }
  50% {
    transform: translate(60px, 0);
  }
  57% {
    transform: translate(53px, -14px);
  }
  60% {
    transform: translate(45px, -10px);
  }
  67% {
    transform: translate(37px, -24px);
  }
  70% {
    transform: translate(30px, -20px);
  }
  77% {
    transform: translate(22px, -34px);
  }
  80% {
    transform: translate(15px, -30px);
  }
  87% {
    transform: translate(7px, -44px);
  }
  90% {
    transform: translate(0, -40px);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes barUp1 {
  0% {
    transform: scale(1, 0.2);
  }
  40% {
    transform: scale(1, 0.2);
  }
  50% {
    transform: scale(1, 1);
  }
  90% {
    transform: scale(1, 1);
  }
  100% {
    transform: scale(1, 0.2);
  }
}
@keyframes barUp2 {
  0% {
    transform: scale(1, 0.4);
  }
  40% {
    transform: scale(1, 0.4);
  }
  50% {
    transform: scale(1, 0.8);
  }
  90% {
    transform: scale(1, 0.8);
  }
  100% {
    transform: scale(1, 0.4);
  }
}
@keyframes barUp3 {
  0% {
    transform: scale(1, 0.6);
  }
  100% {
    transform: scale(1, 0.6);
  }
}
@keyframes barUp4 {
  0% {
    transform: scale(1, 0.8);
  }
  40% {
    transform: scale(1, 0.8);
  }
  50% {
    transform: scale(1, 0.4);
  }
  90% {
    transform: scale(1, 0.4);
  }
  100% {
    transform: scale(1, 0.8);
  }
}
@keyframes barUp5 {
  0% {
    transform: scale(1, 1);
  }
  40% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1, 0.2);
  }
  90% {
    transform: scale(1, 0.2);
  }
  100% {
    transform: scale(1, 1);
  }
}
@-moz-keyframes headerSlideDown {
  0% {
    margin-top: -150px;
  }
  100% {
    margin-top: 0;
  }
}
@-ms-keyframes headerSlideDown {
  0% {
    margin-top: -150px;
  }
  100% {
    margin-top: 0;
  }
}
@-webkit-keyframes headerSlideDown {
  0% {
    margin-top: -150px;
  }
  100% {
    margin-top: 0;
  }
}
@keyframes headerSlideDown {
  0% {
    margin-top: -150px;
  }
  100% {
    margin-top: 0;
  }
}
@-webkit-keyframes ct-rotate {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes ct-rotate {
  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
  }
}
@-webkit-keyframes ct-bounce {
  0%, 100% {
    -webkit-transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
  }
}
@-webkit-keyframes video-icon-animation {
  from {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 1;
  }
  to {
    -webkit-transform: scale(2, 2);
    transform: scale(2, 2);
    opacity: 0;
  }
}
@keyframes video-icon-animation {
  from {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 1;
  }
  to {
    -webkit-transform: scale(2, 2);
    transform: scale(2, 2);
    opacity: 0;
  }
}
@-webkit-keyframes in-top {
  from {
    -webkit-transform: perspective(500px) rotateX(-90deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(500px) rotateX(0deg);
  }
}
@keyframes in-top {
  from {
    transform: perspective(500px) rotateX(-90deg);
    opacity: 1;
  }
  to {
    transform: perspective(500px) rotateX(0deg);
  }
}
@-webkit-keyframes out-top {
  from {
    -webkit-transform: perspective(500px) rotateX(0deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(500px) rotateX(-90deg);
    opacity: 1;
  }
}
@keyframes out-top {
  from {
    transform: perspective(500px) rotateX(0deg);
    opacity: 1;
  }
  to {
    transform: perspective(500px) rotateX(-90deg);
    opacity: 1;
  }
}
@-webkit-keyframes in-bottom {
  from {
    -webkit-transform: perspective(500px) rotateX(90deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(500px) rotateX(0deg);
  }
}
@keyframes in-bottom {
  from {
    transform: perspective(500px) rotateX(90deg);
    opacity: 1;
  }
  to {
    transform: perspective(500px) rotateX(0deg);
  }
}
@-webkit-keyframes out-bottom {
  from {
    -webkit-transform: perspective(500px) rotateX(0deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(500px) rotateX(90deg);
    opacity: 1;
  }
}
@keyframes out-bottom {
  from {
    transform: perspective(500px) rotateX(0deg);
    opacity: 1;
  }
  to {
    transform: perspective(500px) rotateX(90deg);
    opacity: 1;
  }
}
@-webkit-keyframes in-left {
  from {
    -webkit-transform: perspective(500px) rotateY(90deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(500px) rotateY(0deg);
  }
}
@keyframes in-left {
  from {
    transform: perspective(500px) rotateY(90deg);
    opacity: 1;
  }
  to {
    transform: perspective(500px) rotateY(0deg);
  }
}
@-webkit-keyframes out-left {
  from {
    -webkit-transform: perspective(500px) rotateY(0deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(500px) rotateY(90deg);
    opacity: 1;
  }
}
@keyframes out-left {
  from {
    transform: perspective(500px) rotateY(0deg);
    opacity: 1;
  }
  to {
    transform: perspective(500px) rotateY(90deg);
    opacity: 1;
  }
}
@-webkit-keyframes in-right {
  from {
    -webkit-transform: perspective(500px) rotateY(-90deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(500px) rotateY(0deg);
  }
}
@keyframes in-right {
  from {
    transform: perspective(500px) rotateY(-90deg);
    opacity: 1;
  }
  to {
    transform: perspective(500px) rotateY(0deg);
  }
}
@-webkit-keyframes out-right {
  from {
    -webkit-transform: perspective(500px) rotateY(0deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(500px) rotateY(-90deg);
    opacity: 1;
  }
}
@keyframes out-right {
  /* In Out Fade */
  from {
    transform: perspective(500px) rotateY(0deg);
    opacity: 1;
  }
  to {
    transform: perspective(500px) rotateY(-90deg);
    opacity: 1;
  }
}
@-webkit-keyframes in-top-fade {
  from {
    -webkit-transform: translateY(-120%);
  }
  to {
    -webkit-transform: translateY(0%);
  }
}
@keyframes in-top-fade {
  from {
    transform: translateY(-120%);
  }
  to {
    transform: translateY(0%);
  }
}
@-webkit-keyframes out-top-fade {
  from {
    -webkit-transform: translateY(0%);
  }
  to {
    -webkit-transform: translateY(-120%);
  }
}
@keyframes out-top-fade {
  from {
    transform: translateY(0%);
  }
  to {
    transform: translateY(-120%);
  }
}
@-webkit-keyframes in-bottom-fade {
  from {
    -webkit-transform: translateY(120%);
  }
  to {
    -webkit-transform: translateY(0%);
  }
}
@keyframes in-bottom-fade {
  from {
    transform: translateY(120%);
  }
  to {
    transform: translateY(0%);
  }
}
@-webkit-keyframes out-bottom-fade {
  from {
    -webkit-transform: translateY(0%);
  }
  to {
    -webkit-transform: translateY(120%);
  }
}
@keyframes out-bottom-fade {
  from {
    transform: translateY(0%);
  }
  to {
    transform: translateY(120%);
  }
}
@-webkit-keyframes in-left-fade {
  from {
    -webkit-transform: translateX(-120%);
  }
  to {
    -webkit-transform: translateX(0%);
  }
}
@keyframes in-left-fade {
  from {
    transform: translateX(-120%);
  }
  to {
    transform: translateX(0%);
  }
}
@-webkit-keyframes out-left-fade {
  from {
    -webkit-transform: translateX(0%);
  }
  to {
    -webkit-transform: translateX(-120%);
  }
}
@keyframes out-left-fade {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-120%);
  }
}
@-webkit-keyframes in-right-fade {
  from {
    -webkit-transform: translateX(120%);
  }
  to {
    -webkit-transform: translateX(0%);
  }
}
@keyframes in-right-fade {
  from {
    transform: translateX(120%);
  }
  to {
    transform: translateX(0%);
  }
}
@-webkit-keyframes out-right-fade {
  from {
    -webkit-transform: translateX(0%);
  }
  to {
    -webkit-transform: translateX(120%);
  }
}
@keyframes out-right-fade {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(120%);
  }
}
@-webkit-keyframes video-icon-animation {
  from {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 1;
  }
  to {
    -webkit-transform: scale(2, 2);
    transform: scale(2, 2);
    opacity: 0;
  }
}
@keyframes video-icon-animation {
  from {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 1;
  }
  to {
    -webkit-transform: scale(2, 2);
    transform: scale(2, 2);
    opacity: 0;
  }
}
@-ms-keyframes ctspin {
  from {
    -ms-transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
  }
}
@-moz-keyframes ctspin {
  from {
    -moz-transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(360deg);
  }
}
@-webkit-keyframes ctspin {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes ctspin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
html {
  box-sizing: border-box;
}
a {
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
  color: #005ec7;
}
a, a:hover, a:focus, a:before, a:after {
  outline: none;
  text-decoration: none;
}
a:hover, a:focus {
  color: #6747ee;
}
p {
  margin-bottom: 15px;
}
body {
  background-color: #fff;
  font-size: 16px;
  line-height: 1.625;
  color: #747da1;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-weight: normal;
  letter-spacing: 0;
}
body.body-default-font {
  font-family: 'Rubik', sans-serif;
}
body.ovhidden {
  overflow: hidden;
}
.site {
  position: relative;
}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-weight: 600;
  color: #1d274e;
  clear: both;
  line-height: 1.25;
  margin: 0 0 15px;
}
.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: 'Poppins', sans-serif;
}
h1, .h1 {
  font-size: 48px;
}
h2, .h2 {
  font-size: 36px;
}
h3, .h3 {
  font-size: 24px;
}
h4, .h4 {
  font-size: 22px;
}
h5, .h5 {
  font-size: 18px;
}
h6, .h6 {
  font-size: 16px;
}
img {
  width: auto;
  max-width: 100%;
  height: auto;
}
label {
  margin-bottom: 0;
}
table {
  border-bottom: 1px solid #ededed;
  border-collapse: collapse;
  border-spacing: 0;
  line-height: 2;
  margin: 0 0 20px;
  width: 100%;
  -webkit-border-radius: 0;
  -khtml-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
}
table th {
  color: #1e2331;
}
caption, td {
  font-weight: normal;
  text-align: left;
}
.table > tbody > tr > td, .table > tbody > tr > th, .table > tfoot > tr > td, .table > tfoot > tr > th, .table > thead > tr > td, .table > thead > tr > th {
  padding: 13px 8px;
}
th {
  font-weight: 700;
}
td {
  border-top: 1px solid #ededed;
  padding: 6px 10px 6px 0;
  /*--- Definition Lists ---*/
}
dl {
  margin: 0 0 0 25px;
}
dl dt {
  font-weight: normal;
  line-height: 26px;
  text-transform: uppercase;
  font-weight: 700;
  color: #000;
}
dl dd {
  line-height: normal;
  margin-bottom: 20px;
}
dl dd a {
  color: #000;
}
dl dd a:hover {
  color: #015dc7;
}
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: #015dc7;
}
pre {
  background: #f5f5f5;
  color: #666;
  font-size: 14px;
  margin: 20px 0;
  overflow: auto;
  padding: 20px;
  white-space: pre-wrap;
  word-wrap: break-word;
}
ol {
  list-style: outside none decimal;
}
ul {
  padding: 0;
  margin: 0 0 15px;
}
ul li {
  list-style-position: inside;
}
blockquote {
  overflow: hidden;
  background-color: #6747ee;
  background-image: -webkit-gradient(linear, left top, right top, from(#6747ee), to(#9124dc));
  background-image: -webkit-linear-gradient(left, #6747ee, #9124dc);
  background-image: -moz-linear-gradient(left, #6747ee, #9124dc);
  background-image: -ms-linear-gradient(left, #6747ee, #9124dc);
  background-image: -o-linear-gradient(left, #6747ee, #9124dc);
  background-image: linear-gradient(left, #6747ee, #9124dc);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#6747ee', endColorStr='#9124dc', gradientType='1');
  font-size: 14px;
  line-height: 24px;
  position: relative;
  padding: 24px 30px 24px 90px;
  clear: both;
  margin: 40px 0;
  color: #f5f5f5;
}
blockquote p {
  margin-bottom: 0 !important;
}
blockquote cite {
  font-style: normal;
  display: block;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  margin-top: 11px;
  font-family: 'Poppins', sans-serif;
}
blockquote:before {
  content: '\f10d';
  font-family: "FontAwesome";
  color: #fff;
  font-size: 28px;
  position: absolute;
  left: 35px;
  top: 50px;
  font-style: normal;
}
.dlab-divider {
  height: 1px;
  width: 100%;
  margin: 30px 0;
  background-color: #d3d3d3;
}
dl + h2 + ul {
  padding-left: 35px;
}
dl + h2 + ul ul {
  padding-left: 35px;
}
dl + h2 + ul ul li {
  list-style: outside;
}
.post-password-form label {
  display: block;
  max-width: 60%;
}
.post-password-form input {
  margin: 10px 0;
}
@media screen and (max-width: 767px) {
  .post-password-form label {
    max-width: 60%;
  }
}
#tslOverlay {
  background-color: transparent !important;
}
@font-face {
  font-family: 'Droidsans';
  src: url('../fonts/droidsans-webfont.woff2') format('woff2'), url('../fonts/droidsans-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
.ft-droidsans {
  font-family: 'Droidsans';
}
.wp-block-button {
  margin-bottom: 20px;
}
.wp-block-gallery .blocks-gallery-item {
  float: left;
}
.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;
}
.bg-primary2 {
  background-color: #ff5a3c;
}
.site-content .bg-attachment-fixed {
  background-attachment: fixed !important;
}
.text-block1 {
  font-size: 15px;
  line-height: 28px;
  color: #0f192d;
}
.text-block1.wpb_text_column p {
  margin-bottom: 27px;
}
.text-block1.wpb_text_column p:last-child {
  margin-bottom: 0;
}
.about-name {
  font-weight: 500;
  color: #0f192d;
  font-size: 14px;
}
.about-name span {
  font-weight: 400;
}
.d-table {
  display: table;
}
.d-table-cell {
  display: table-cell;
  vertical-align: middle;
}
.bg-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.screen-reader-text {
  display: none;
}
#content[tabindex="-1"]:focus {
  outline: 0;
}
#content.zindex, .vc_row.zindex {
  position: relative;
  z-index: 9999;
}
.alignleft, .alignright, .aligncenter {
  margin-bottom: 30px;
}
.alignleft {
  display: inline;
  float: left;
  margin-right: 30px;
}
.alignright {
  display: inline;
  float: right;
  margin-left: 30px;
}
.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.bg-overlay {
  position: relative;
}
.bg-overlay:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: inherit;
  display: block;
}
.text-block {
  line-height: 1.75;
}
.bg-gradient, .ct-social li a:before {
  background-color: #6747ee;
  background-image: -webkit-gradient(linear, left top, right top, from(#6747ee), to(#9124dc));
  background-image: -webkit-linear-gradient(left, #6747ee, #9124dc);
  background-image: -moz-linear-gradient(left, #6747ee, #9124dc);
  background-image: -ms-linear-gradient(left, #6747ee, #9124dc);
  background-image: -o-linear-gradient(left, #6747ee, #9124dc);
  background-image: linear-gradient(left, #6747ee, #9124dc);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#6747ee', endColorStr='#9124dc', gradientType='1');
}
.text-image {
  background-image: url(../images/bg-text.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-clip: text;
  -o-background-clip: text;
  -ms-background-clip: text;
  -moz-background-clip: text;
  -webkit-background-clip: text;
  text-fill-color: transparent;
  -o-text-fill-color: transparent;
  -ms-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  -webkit-text-fill-color: transparent;
}
.el-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.box-white {
  background-color: #fff;
  border: 1px solid #e5e5e5;
  -webkit-border-radius: 6px;
  -khtml-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  border-radius: 6px;
  padding: 29px;
}
.box-white .menu li {
  font-size: 18px;
  line-height: 29px;
  font-weight: 600;
}
.bg-primary {
  background-color: #015dc7 !important;
}
.br-radius {
  -webkit-border-radius: 4px;
  -khtml-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
}
.ct-box {
  padding: 30px;
  -webkit-border-radius: 5px;
  -khtml-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  background-color: #fff;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.12);
  -khtml-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.12);
  -ms-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.12);
  -o-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.12);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.12);
}
.ct-bgimage {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.row-visible {
  overflow: visible !important;
}
.ct-close {
  display: inline-block;
  height: 32px;
  line-height: 32px;
  width: 30px;
  cursor: pointer;
  position: relative;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
}
.ct-close:before, .ct-close:after {
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
  content: "";
  background-color: #282828;
  display: block;
  height: 2px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 22px;
  top: 21px;
}
.ct-close:before {
  top: 15px;
  -webkit-transform: rotate(45deg);
  -khtml-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.ct-close:after {
  -webkit-transform: rotate(-45deg);
  -khtml-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 15px;
}
.ct-close:hover:before, .ct-close:hover:after {
  background-color: #6747ee;
}
.ct-icon-plus {
  height: 10px;
  width: 10px;
  position: relative;
  display: inline-block;
}
.ct-icon-plus:before, .ct-icon-plus:after {
  content: "";
  background-color: #015dc7;
  position: absolute;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
}
.ct-icon-plus:before {
  width: 100%;
  height: 2px;
  top: 4px;
  left: 0;
}
.ct-icon-plus:after {
  width: 2px;
  height: 100%;
  left: 4px;
  top: 0;
}
.text-while {
  color: #fff;
}
.inline-block {
  display: inline-block;
  vertical-align: middle;
}
.text-right, .align-right {
  text-align: right;
}
.text-left, .align-left {
  text-align: left;
}
.text-center, .align-center {
  text-align: center;
}
.style-none {
  list-style: none;
  margin: 0;
}
.z-index-0 {
  z-index: 0;
}
.z-index-1 {
  z-index: 1;
}
.subtitle, .woocommerce .woocommerce-product-category a {
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.text-gradient, .entry-meta li span, .item-meta li span, .entry-meta li a, .item-meta li a, .comment-form .comment-field i, .ct-blog-carousel.default .item-category a {
  background-color: #6747ee;
  background-image: -webkit-gradient(linear, left top, right top, from(#6747ee), to(#9124dc));
  background-image: -webkit-linear-gradient(left, #6747ee, #9124dc);
  background-image: -moz-linear-gradient(left, #6747ee, #9124dc);
  background-image: -ms-linear-gradient(left, #6747ee, #9124dc);
  background-image: -o-linear-gradient(left, #6747ee, #9124dc);
  background-image: linear-gradient(left, #6747ee, #9124dc);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#6747ee', endColorStr='#9124dc', gradientType='1');
  background-color: transparent;
  background-clip: text;
  -o-background-clip: text;
  -ms-background-clip: text;
  -moz-background-clip: text;
  -webkit-background-clip: text;
  text-fill-color: transparent;
  -o-text-fill-color: transparent;
  -ms-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  -webkit-text-fill-color: transparent;
}
.text-gradient2, .single-portfolio .entry-cateogry a, .ct-blog-carousel.layout2 .item-category a {
  background-color: #015dc7;
  background-image: -webkit-gradient(linear, left top, right top, from(#015dc7), to(#a200ff));
  background-image: -webkit-linear-gradient(left, #015dc7, #a200ff);
  background-image: -moz-linear-gradient(left, #015dc7, #a200ff);
  background-image: -ms-linear-gradient(left, #015dc7, #a200ff);
  background-image: -o-linear-gradient(left, #015dc7, #a200ff);
  background-image: linear-gradient(left, #015dc7, #a200ff);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#015dc7', endColorStr='#a200ff', gradientType='1');
  background-color: transparent;
  background-clip: text;
  -o-background-clip: text;
  -ms-background-clip: text;
  -moz-background-clip: text;
  -webkit-background-clip: text;
  text-fill-color: transparent;
  -o-text-fill-color: transparent;
  -ms-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  -webkit-text-fill-color: transparent;
}
@media screen and (min-width: 1200px) {
  .rm-padding-right {
    padding-right: 0 !important;
  }
}
@media screen and (min-width: 992px) {
  .flex {
    display: flex;
    display: -webkit-flex;
    display: -ms-flex;
    flex-wrap: wrap;
  }
  .flex .flex-col {
    display: flex !important;
    display: -webkit-flex !important;
    display: -ms-flex !important;
    flex-wrap: wrap;
    align-items: center;
    -webkit-align-items: center;
    -ms-align-items: center;
  }
  .flex-two {
    display: flex;
    display: -webkit-flex;
    display: -ms-flex;
    flex-flow: row wrap;
  }
  .flex-two .flex-col {
    flex: 1 0 0px;
    -webkit-flex: 1 0 0px;
    -ms-flex: 1 0 0px;
    display: flex !important;
    display: -webkit-flex !important;
    display: -ms-flex !important;
    flex-wrap: wrap;
    align-items: center;
    -webkit-align-items: center;
    -ms-align-items: center;
  }
}
@media screen and (min-width: 992px) {
  .text-left-lg {
    text-align: left !important;
  }
  .text-right-lg {
    text-align: right !important;
  }
}
@media screen and (max-width: 1199px) {
  .align-center-md {
    text-align: center;
  }
  .align-left-md {
    text-align: left;
  }
  .align-right-md {
    text-align: right;
  }
}
@media screen and (max-width: 991px) {
  .text-center-md {
    text-align: center !important;
  }
  .text-left-md {
    text-align: left !important;
  }
  .text-right-md {
    text-align: right !important;
  }
  .align-center-sm {
    text-align: center;
  }
  .align-left-sm {
    text-align: left;
  }
  .align-right-sm {
    text-align: right;
  }
}
@media screen and (max-width: 767px) {
  .text-center-sm {
    text-align: center !important;
  }
  .text-left-sm {
    text-align: left !important;
  }
  .text-right-sm {
    text-align: right !important;
  }
  .align-center-xs {
    text-align: center;
  }
  .align-left-xs {
    text-align: left;
  }
  .align-right-xs {
    text-align: right;
  }
}
input::-moz-placeholder, textarea::-moz-placeholder {
  color: inherit;
  opacity: 1;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}
input::-o-placeholder, textarea::-o-placeholder {
  color: inherit;
  opacity: 1;
}
input::-ms-placeholder, textarea::-ms-placeholder {
  color: inherit;
  opacity: 1;
}
input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], input[type="tel"], input[type="number"], input[type="range"], input[type="date"], input[type="month"], input[type="week"], input[type="time"], input[type="datetime"], input[type="datetime-local"], input[type="color"], textarea, select, .nice-select {
  background-color: #fff;
  border: 2px solid #e5e5e5;
  color: #a7a7c1;
  padding: 8px 28px;
  line-height: normal;
  font-size: 14px;
  height: 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;
  -webkit-box-shadow: none;
  -khtml-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
  width: 100%;
  outline: none;
}
input[type="text"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="password"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="number"]:focus, input[type="range"]:focus, input[type="date"]:focus, input[type="month"]:focus, input[type="week"]:focus, input[type="time"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="color"]:focus, textarea:focus, select:focus, .nice-select:focus {
  border-color: #015dc7;
}
select {
  height: 60px;
}
textarea {
  line-height: normal;
  padding-top: 18px;
  padding-bottom: 18px;
  height: 150px;
}
input[type="text"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="password"]:focus, input[type="search"]:focus, input[type="number"]:focus, input[type="tel"]:focus, input[type="range"]:focus, input[type="date"]:focus, input[type="month"]:focus, input[type="week"]:focus, input[type="time"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="color"]:focus, textarea:focus, select:focus {
  outline: 0;
  border-color: #015dc7;
}
.ct-select form {
  position: relative;
  background-color: #fff;
  -webkit-border-radius: 4px;
  -khtml-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
}
.ct-select select {
  height: 39px;
  line-height: 37px;
  font-size: 15px;
  background-color: transparent;
  position: relative;
  z-index: 99;
  -webkit-appearance: none;
  -khtml-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}
.ct-select i {
  position: absolute;
  right: 14px;
  top: 50%;
  -webkit-transform: translate(0px, -50%);
  -khtml-transform: translate(0px, -50%);
  -moz-transform: translate(0px, -50%);
  -ms-transform: translate(0px, -50%);
  -o-transform: translate(0px, -50%);
  transform: translate(0px, -50%);
}
body .wpcf7-form {
  position: relative;
}
body .wpcf7-form:before {
  content: '';
  width: 30px;
  height: 30px;
  -webkit-border-radius: 100%;
  -khtml-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
  border-color: transparent #015dc7 transparent #015dc7;
  border-width: 2px;
  border-style: solid;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  animation: ctspin 0.6s infinite linear;
  -webkit-animation: ctspin 0.6s infinite linear;
  box-sizing: border-box;
  z-index: 2;
  -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -khtml-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  visibility: hidden;
}
body .wpcf7-form .wpcf7-spinner {
  display: none !important;
}
body .wpcf7-form .input-filled {
  position: relative;
}
body .wpcf7-form .input-filled label {
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: 0.2em;
}
body .wpcf7-form .input-filled > i {
  color: #c9cce4;
  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%);
  position: absolute;
  right: 36px;
}
body .wpcf7-form .input-filled > i + .wpcf7-form-control-wrap .wpcf7-form-control {
  padding-right: 68px;
}
body .wpcf7-form .input-filled.wpcf7-textarea-wrap > i {
  top: 23px;
  -webkit-transform: translate(0, 0%);
  -khtml-transform: translate(0, 0%);
  -moz-transform: translate(0, 0%);
  -ms-transform: translate(0, 0%);
  -o-transform: translate(0, 0%);
  transform: translate(0, 0%);
}
body .wpcf7-form .wpcf7-form-control-wrap {
  margin-bottom: 34px;
  display: block;
}
body .wpcf7-form .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
  display: none;
}
body .wpcf7-form .wpcf7-form-control-wrap .wpcf7-not-valid {
  border-color: #f13c3c !important;
}
body .wpcf7-form .wpcf7-response-output {
  margin: 30px 0 0;
  background-color: #fff;
  border-radius: 3px;
  border: none;
  padding: 14px 20px;
  font-size: 14px;
  font-style: normal;
  -webkit-box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  -khtml-box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  -ms-box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  -o-box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}
body .wpcf7-form .ajax-loader {
  display: none !important;
}
body .wpcf7-form .wpcf7-menu {
  display: block;
}
body .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;
}
body .wpcf7-form .wpcf7-menu select option {
  padding: 5px;
}
body .wpcf7-form.submitting * {
  opacity: 0.66;
}
body .wpcf7-form.submitting:before {
  opacity: 1;
  visibility: visible;
}
.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;
  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 {
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.24);
  border: none;
  padding: 0;
}
#ui-datepicker-div .ui-datepicker-header {
  background-color: #015dc7;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-border-radius: 3px 3px 0 0;
  -khtml-border-radius: 3px 3px 0 0;
  -moz-border-radius: 3px 3px 0 0;
  -ms-border-radius: 3px 3px 0 0;
  -o-border-radius: 3px 3px 0 0;
  border-radius: 3px 3px 0 0;
  font-weight: normal;
  padding: 0;
}
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-prev, #ui-datepicker-div .ui-datepicker-header .ui-datepicker-next {
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  margin: 0;
  top: 0;
}
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-prev span, #ui-datepicker-div .ui-datepicker-header .ui-datepicker-next span {
  display: none;
}
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-prev:before, #ui-datepicker-div .ui-datepicker-header .ui-datepicker-next:before {
  font-family: "Material-Design-Iconic-Font";
  font-size: 16px;
  color: rgba(255, 255, 255, 0.4);
}
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-prev {
  left: 0;
}
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-prev:before {
  content: "\f2f4";
}
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-next {
  right: 0;
}
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-next:before {
  content: "\f2f6";
}
#ui-datepicker-div .ui-datepicker-title {
  color: #fff;
  font-size: 16px;
  line-height: 40px;
  margin: 0 40px;
}
#ui-datepicker-div .ui-datepicker-title select {
  font-size: inherit;
  color: #fff;
  line-height: normal;
  height: inherit;
  background-color: transparent;
  -webkit-appearance: none;
  -khtml-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  margin: 0;
  padding: 0;
  width: inherit;
  border: none;
}
#ui-datepicker-div .ui-datepicker-title select option {
  padding: 0;
}
#ui-datepicker-div .ui-datepicker-calendar {
  background-color: transparent;
  border: none;
  margin: 0;
}
#ui-datepicker-div .ui-datepicker-calendar thead {
  background-color: #015dc7;
}
#ui-datepicker-div .ui-datepicker-calendar th span {
  text-transform: uppercase;
  color: #fff;
}
#ui-datepicker-div .ui-datepicker-calendar td {
  font-size: 12px;
}
#ui-datepicker-div .ui-datepicker-calendar td a, #ui-datepicker-div .ui-datepicker-calendar td span {
  background-color: transparent;
  border: medium none;
  text-align: center;
}
#ui-datepicker-div .ui-datepicker-calendar td a.ui-state-active, #ui-datepicker-div .ui-datepicker-calendar td span.ui-state-active, #ui-datepicker-div .ui-datepicker-calendar td a.ui-state-highlight, #ui-datepicker-div .ui-datepicker-calendar td span.ui-state-highlight {
  background-color: #015dc7;
  color: #fff;
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
}
#ui-datepicker-div .ui-datepicker-calendar td a.ui-state-highlight, #ui-datepicker-div .ui-datepicker-calendar td span.ui-state-highlight {
  background-color: rgba(1, 93, 199, 0.7);
}
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: #015dc7;
}
.ct-field-checkbox {
  position: relative;
  padding-left: 27px;
}
.ct-field-checkbox .icon-check {
  border: 1px solid #e1e3e3;
  border-radius: 1px;
  display: block;
  height: 17px;
  width: 17px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
  -khtml-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  z-index: 1;
}
.ct-field-checkbox .icon-check:before {
  content: "\f00c";
  font-size: 13px;
  color: #015dc7;
  position: absolute;
  top: -4px;
  left: 1px;
  font-family: FontAwesome;
  opacity: 0;
}
.ct-field-checkbox input {
  bottom: 0;
  height: 100%;
  left: 0;
  position: absolute;
  width: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 3;
}
.ct-field-checkbox input:checked + .icon-check:before {
  opacity: 1;
}
.nice-select {
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
  padding-right: 40px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
}
.nice-select:after {
  content: "\f2f9";
  font-family: "Material-Design-Iconic-Font";
  font-size: 20px;
  color: #c9cce4;
  position: absolute;
  right: 28px;
  top: 50%;
  -webkit-transform: translate(0px, -50%);
  -khtml-transform: translate(0px, -50%);
  -moz-transform: translate(0px, -50%);
  -ms-transform: translate(0px, -50%);
  -o-transform: translate(0px, -50%);
  transform: translate(0px, -50%);
}
.nice-select span.current {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 56px;
}
.nice-select .option {
  text-overflow: ellipsis;
  overflow: hidden;
}
.nice-select.open .list {
  width: 100%;
  max-height: 250px;
  overflow: auto;
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: scale(1) translateY(0);
  -ms-transform: scale(1) translateY(0);
  transform: scale(1) translateY(0);
}
.nice-select.disabled {
  border-color: #ededed;
  color: #999;
  pointer-events: none;
}
.nice-select.disabled:after {
  border-color: #ccc;
}
.nice-select.wide {
  width: 100%;
}
.nice-select.wide .list {
  left: 0 !important;
  right: 0 !important;
}
.nice-select.right {
  float: right;
}
.nice-select.right .list {
  left: auto;
  right: 0;
}
.nice-select.small {
  font-size: 12px;
  height: 36px;
  line-height: 34px;
}
.nice-select.small:after {
  height: 4px;
  width: 4px;
}
.nice-select.small .option {
  line-height: 34px;
  min-height: 34px;
}
.nice-select .list {
  margin-top: 4px !important;
  margin-left: -2px !important;
  margin-right: -2px !important;
  border: 2px solid #e5e5e5;
  background-color: #fff;
  padding: 12px 0px;
  box-sizing: border-box;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  -webkit-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transform: scale(0.75) translateY(-21px);
  -ms-transform: scale(0.75) translateY(-21px);
  transform: scale(0.75) translateY(-21px);
  -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  z-index: 9;
  color: #a7a7c1;
  font-size: 14px;
  width: calc(100% + 4px) !important;
  width: -webkit-calc(100% + 4px) !important;
}
.nice-select .list .selected {
  color: #015dc7;
}
.nice-select .list:hover .option:not(:hover) {
  background-color: transparent !important;
}
.nice-select .option {
  cursor: pointer;
  line-height: normal;
  list-style: none;
  outline: none;
  padding: 6px 22px;
  text-align: left;
  -webkit-transition: all 0.2s;
  -khtml-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  margin-bottom: 0 !important;
}
.nice-select .option:hover {
  color: #015dc7;
}
.nice-select .option.selected {
  font-weight: 700;
}
.nice-select .option.disabled {
  background-color: transparent;
  color: #999;
  cursor: default;
}
.no-csspointerevents .nice-select .list {
  display: none;
}
.no-csspointerevents .nice-select.open .list {
  display: block;
}
body .booked-calendar-wrap .booked-appt-list .timeslot .timeslot-title {
  color: #a200ff;
}
body #content #booked-profile-page .booked-profile-header, body #content table.booked-calendar th {
  background-color: #015dc7 !important;
}
body #content table.booked-calendar tr:not(.days) th {
  background-color: rgba(1, 93, 199, 0.8) !important;
}
body #booked-profile-page input[type="submit"].button-primary:hover, body table.booked-calendar input[type="submit"].button-primary:hover, body .booked-list-view button.button:hover, body .booked-list-view input[type="submit"].button-primary:hover, body .booked-modal input[type="submit"].button-primary:hover, body table.booked-calendar .booked-appt-list .timeslot .timeslot-people button:hover, body #booked-profile-page .appt-block .google-cal-button > a:hover {
  background-color: #a200ff !important;
  border-color: #a200ff !important;
}
#ui-datepicker-div.booked_custom_date_picker table.ui-datepicker-calendar tbody td.ui-datepicker-today a, #ui-datepicker-div.booked_custom_date_picker table.ui-datepicker-calendar tbody td.ui-datepicker-today a:hover, body #booked-profile-page input[type="submit"].button-primary, body table.booked-calendar input[type="submit"].button-primary, body .booked-list-view button.button, body .booked-list-view input[type="submit"].button-primary, body .booked-list-view button.button, body .booked-list-view input[type="submit"].button-primary, body .booked-modal input[type="submit"].button-primary, body table.booked-calendar .booked-appt-list .timeslot .timeslot-people button, body #booked-profile-page .booked-profile-appt-list .appt-block.approved .status-block, body #booked-profile-page .appt-block .google-cal-button > a, body .booked-modal p.booked-title-bar, body table.booked-calendar td:hover .date span, body .booked-list-view a.booked_list_date_picker_trigger.booked-dp-active, body .booked-list-view a.booked_list_date_picker_trigger.booked-dp-active:hover, .booked-ms-modal .booked-book-appt {
  background-color: #015dc7 !important;
  border-color: #015dc7 !important;
}
body #content table.booked-calendar td.today .date span {
  border-color: #a200ff !important;
}
body #content table.booked-calendar td.today:hover .date span {
  background-color: #a200ff !important;
}
body #content table.booked-calendar td.active:hover .date span {
  color: #fff !important;
}
.btn, button, .button, input[type="submit"] {
  background-color: #6747ee;
  background-image: -webkit-gradient(linear, left top, right top, from(#6747ee), to(#9124dc));
  background-image: -webkit-linear-gradient(left, #6747ee, #9124dc);
  background-image: -moz-linear-gradient(left, #6747ee, #9124dc);
  background-image: -ms-linear-gradient(left, #6747ee, #9124dc);
  background-image: -o-linear-gradient(left, #6747ee, #9124dc);
  background-image: linear-gradient(left, #6747ee, #9124dc);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#6747ee', endColorStr='#9124dc', gradientType='1');
  border: none;
  color: #fff;
  font-size: 14px;
  padding: 0 54px;
  line-height: 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;
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
  position: relative;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  font-weight: 500;
  outline: none;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.btn:hover, button:hover, .button:hover, input[type="submit"]:hover, .btn:focus, button:focus, .button:focus, input[type="submit"]:focus, .btn:active, button:active, .button:active, input[type="submit"]:active {
  -webkit-box-shadow: none;
  -khtml-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
  outline: none;
  text-decoration: none;
  color: #fff;
  background-color: #1d274e;
  background-image: none;
}
.btn:before, .btn:after {
  background-color: #000;
  content: "";
  height: 100%;
  left: -110%;
  opacity: 0.08;
  position: absolute;
  top: 0;
  -webkit-transition: all 0.5s ease 0s;
  -khtml-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  -webkit-transform: skewX(25deg);
  -khtml-transform: skewX(25deg);
  -moz-transform: skewX(25deg);
  -ms-transform: skewX(25deg);
  -o-transform: skewX(25deg);
  transform: skewX(25deg);
  width: 100%;
  z-index: -1;
}
.btn:hover, .btn:focus, .btn:active {
  background-color: #6747ee;
  background-image: -webkit-gradient(linear, left top, right top, from(#6747ee), to(#9124dc));
  background-image: -webkit-linear-gradient(left, #6747ee, #9124dc);
  background-image: -moz-linear-gradient(left, #6747ee, #9124dc);
  background-image: -ms-linear-gradient(left, #6747ee, #9124dc);
  background-image: -o-linear-gradient(left, #6747ee, #9124dc);
  background-image: linear-gradient(left, #6747ee, #9124dc);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#6747ee', endColorStr='#9124dc', gradientType='1');
}
.btn:hover:before, .btn:focus:before, .btn:active:before {
  left: -10%;
  -webkit-transition: all 0.3s ease 0s;
  -khtml-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.btn:hover:after, .btn:focus:after, .btn:active:after {
  left: -20%;
}
.btn.size-lg {
  line-height: 50px;
  padding: 0 32px;
}
.btn.btn-text-arrow {
  color: #12a9ff;
  padding: 0;
  line-height: normal;
  background-color: transparent;
  background-image: none;
}
.btn.btn-text-arrow span {
  border-bottom: 1px solid #12a9ff;
  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;
}
.btn.btn-text-arrow:hover {
  color: #015dc7;
}
.btn.btn-text-arrow:hover span {
  border-color: #015dc7;
}
.btn.btn-text-arrow:after {
  content: '\f101';
  font-family: FontAwesome;
  position: static;
  background-color: transparent;
  color: inherit;
  opacity: 1;
}
.btn.btn-text-arrow:before {
  display: none;
}
.btn.btn-text-arrow.btn-icon:after {
  display: none;
}
.btn.btn-color-preset2 {
  background-color: #ff5a3c;
  background-image: none;
  -webkit-border-radius: 50px;
  -khtml-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  border-radius: 50px;
  line-height: 50px;
  padding: 0 25px;
  letter-spacing: 0;
  text-transform: capitalize;
  font-size: 15px;
  -webkit-box-shadow: none;
  -khtml-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}
.btn-align-center {
  text-align: center;
}
.btn-align-right {
  text-align: right;
}
.btn-group .btn + .btn {
  margin-left: 30px;
}
.btn-block {
  display: block;
}
.ct-button-wrapper i {
  margin-left: 10px;
}
.ct-btn-group {
  display: inline-block;
  margin-right: 20px;
  margin-bottom: 20px;
}
.btn-shadow .btn {
  -webkit-box-shadow: 0 16px 32px rgba(134, 134, 134, 0.3);
  -khtml-box-shadow: 0 16px 32px rgba(134, 134, 134, 0.3);
  -moz-box-shadow: 0 16px 32px rgba(134, 134, 134, 0.3);
  -ms-box-shadow: 0 16px 32px rgba(134, 134, 134, 0.3);
  -o-box-shadow: 0 16px 32px rgba(134, 134, 134, 0.3);
  box-shadow: 0 16px 32px rgba(134, 134, 134, 0.3);
}
.preset2 .btn.btn-text-arrow {
  letter-spacing: 0px;
  text-transform: capitalize;
  color: #ff5a3c;
}
.preset2 .btn.btn-text-arrow i {
  margin-left: 4px;
}
.preset2 .btn.btn-text-arrow span {
  border-color: #ff5a3c;
}
.preset2 .btn.btn-text-arrow:hover {
  color: #ff3713;
}
.preset2 .btn.btn-text-arrow:hover span {
  border-color: #ff3713;
}
#header-wrap {
  position: relative;
  z-index: 999;
  background-color: #fff;
}
#header-wrap .header-main {
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  -khtml-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  -moz-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  -ms-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  -o-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  background-color: #fff;
}
#header-wrap .header-main.h-fixed {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  -webkit-animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
  -khtml-animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
  -moz-animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
  -ms-animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
  -o-animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
  animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
  -khtml-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
}
#header-wrap .header-main .row {
  align-items: center;
}
#header-wrap .header-branding, #header-wrap .header-navigation {
  margin-left: 15px;
  margin-right: 15px;
}
#header-wrap .header-branding {
  position: relative;
  flex-grow: 1;
  margin-top: 10px;
  margin-bottom: 10px;
}
#header-wrap .header-branding a.logo-light {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
  -khtml-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  opacity: 1;
  opacity: 0;
}
#header-wrap .header-navigation {
  display: flex;
  align-items: center;
}
#header-wrap .site-menu-right {
  margin-left: 14px;
  position: relative;
  line-height: 115px;
}
#header-wrap .site-menu-right .menu-right-item {
  display: inline-block;
  height: 36px;
  width: 36px;
  font-size: 14px;
  color: #a2a9c7;
  line-height: 36px;
  -webkit-border-radius: 36px;
  -khtml-border-radius: 36px;
  -moz-border-radius: 36px;
  -ms-border-radius: 36px;
  -o-border-radius: 36px;
  border-radius: 36px;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
}
#header-wrap .site-menu-right .menu-right-item:hover {
  color: #015dc7;
}
#header-wrap .site-menu-right .menu-right-item.h-btn-sidebar {
  color: #015dc7;
  background-color: rgba(1, 93, 199, 0.1);
}
#header-wrap .site-menu-right .menu-right-item.h-btn-sidebar:hover {
  color: #a200ff;
  background-color: rgba(162, 0, 255, 0.1);
}
#header-wrap .site-menu-right .menu-right-item.h-btn-sidebar {
  margin-left: 10px;
}
#header-wrap .site-menu-right .menu-right-item.header-social {
  width: inherit;
}
#header-wrap .site-menu-right .menu-right-item.header-social a {
  color: #a2a9c7;
}
#header-wrap .site-menu-right .menu-right-item.header-social a:hover {
  color: #015dc7;
}
#header-wrap .site-menu-right .menu-right-item.header-social a:last-child {
  margin-right: 10px;
}
#header-wrap .site-menu-right .menu-right-item.header-social a + a {
  margin-left: 14px;
}
#header-wrap .site-menu-right .menu-right-item .h-btn-cart {
  height: 36px;
  width: 36px;
  display: block;
}
#header-wrap .site-header-button {
  margin-left: 30px;
}
#header-wrap .site-header-button .btn {
  padding: 0 32px;
  line-height: 50px;
  font-size: 14px;
}
@media screen and (min-width: 992px) {
  #header-wrap .btn-mobile {
    display: none;
  }
  #header-wrap .header-main.h-fixed .primary-menu > li > a {
    line-height: 80px;
  }
  #header-wrap .header-main.h-fixed .site-menu-right {
    line-height: 80px;
  }
  #header-wrap .header-branding img {
    max-height: 48px;
  }
  #header-wrap .header-branding.mobile {
    display: none;
  }
  #header-wrap.header-layout2 .header-main:not(.h-fixed) .header-branding .logo-dark {
    opacity: 0;
  }
  #header-wrap.header-layout2 .header-main:not(.h-fixed) .header-branding .logo-light {
    opacity: 1;
  }
  #header-wrap.header-layout2 .header-main:not(.h-fixed) .primary-menu > li > a {
    color: #a2a9c7;
  }
  #header-wrap.header-layout2 .header-main:not(.h-fixed) .primary-menu > li:hover > a, #header-wrap.header-layout2 .header-main:not(.h-fixed) .primary-menu > li.current_page_item > a, #header-wrap.header-layout2 .header-main:not(.h-fixed) .primary-menu > li.current-menu-item > a, #header-wrap.header-layout2 .header-main:not(.h-fixed) .primary-menu > li.current_page_ancestor > a, #header-wrap.header-layout2 .header-main:not(.h-fixed) .primary-menu > li.current-menu-ancestor > a {
    color: #fff;
  }
  #header-wrap.header-layout2 .site-menu-right .menu-right-item:hover {
    color: #fff;
  }
  #header-wrap.header-layout2 .site-menu-right .menu-right-item.h-btn-sidebar {
    color: #fff;
    background-color: #6747ee;
    background-image: -webkit-gradient(linear, left top, right top, from(#6747ee), to(#9124dc));
    background-image: -webkit-linear-gradient(left, #6747ee, #9124dc);
    background-image: -moz-linear-gradient(left, #6747ee, #9124dc);
    background-image: -ms-linear-gradient(left, #6747ee, #9124dc);
    background-image: -o-linear-gradient(left, #6747ee, #9124dc);
    background-image: linear-gradient(left, #6747ee, #9124dc);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#6747ee', endColorStr='#9124dc', gradientType='1');
  }
  #header-wrap.header-transparent {
    background-color: transparent;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
  }
  #header-wrap.header-transparent .header-main:not(.h-fixed) {
    background-color: transparent;
  }
  #header-wrap.header-transparent.header-layout1 .primary-menu > li > a {
    color: #969dbe;
  }
  #header-wrap.header-transparent.header-layout1 .primary-menu > li:hover > a, #header-wrap.header-transparent.header-layout1 .primary-menu > li.current_page_item > a, #header-wrap.header-transparent.header-layout1 .primary-menu > li.current-menu-item > a, #header-wrap.header-transparent.header-layout1 .primary-menu > li.current_page_ancestor > a, #header-wrap.header-transparent.header-layout1 .primary-menu > li.current-menu-ancestor > a {
    color: #015dc7;
  }
  #header-wrap.preset2.header-layout1 .primary-menu > li > a {
    color: #0f192d;
    font-size: 15px;
    font-weight: 400;
    font-family: inherit;
    letter-spacing: 0px;
  }
  #header-wrap.preset2.header-layout1 .primary-menu > li:hover > a, #header-wrap.preset2.header-layout1 .primary-menu > li.current_page_item > a, #header-wrap.preset2.header-layout1 .primary-menu > li.current-menu-item > a, #header-wrap.preset2.header-layout1 .primary-menu > li.current_page_ancestor > a, #header-wrap.preset2.header-layout1 .primary-menu > li.current-menu-ancestor > a {
    color: #ff5a3c;
  }
  #header-wrap.preset2.header-layout1 .primary-menu > li .sub-menu li a {
    color: #0f192d;
    font-size: 14px;
    font-weight: 400;
    font-family: inherit;
    letter-spacing: 0px;
    text-transform: capitalize;
  }
  #header-wrap.preset2.header-layout1 .primary-menu > li .sub-menu li a:before {
    background-color: #ff5a3c;
  }
  #header-wrap.preset2.header-layout1 .primary-menu > li .sub-menu li > a:hover, #header-wrap.preset2.header-layout1 .primary-menu > li .sub-menu li.current_page_item > a, #header-wrap.preset2.header-layout1 .primary-menu > li .sub-menu li.current-menu-item > a, #header-wrap.preset2.header-layout1 .primary-menu > li .sub-menu li.current_page_ancestor > a, #header-wrap.preset2.header-layout1 .primary-menu > li .sub-menu li.current-menu-ancestor > a, #header-wrap.preset2.header-layout1 .primary-menu > li .sub-menu li.current-menu-parent > a {
    color: #ff5a3c;
  }
  #header-wrap.preset2.header-layout1 .site-menu-right .menu-right-item {
    color: #0f192d;
    font-size: 15px;
  }
  #header-wrap.preset2.header-layout1 .site-menu-right .menu-right-item:hover {
    color: #ff5a3c;
  }
  #header-wrap.preset2.header-layout1 .site-menu-right .menu-right-item.h-btn-sidebar {
    color: #ff5a3c;
    background-color: rgba(255, 90, 60, 0.12);
  }
  #header-wrap.preset2.header-layout1 .site-menu-right .menu-right-item.h-btn-sidebar:hover {
    background-color: #ff5a3c;
    color: #fff;
  }
  #header-wrap.preset2.header-layout1 .widget_shopping_cart .widget_shopping_cart_footer .buttons .btn {
    background-color: #ff5a3c;
    background-image: none;
    -webkit-border-radius: 50px;
    -khtml-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    border-radius: 50px;
    letter-spacing: 0em;
    text-transform: capitalize;
  }
}
@media screen and (max-width: 991px) {
  #header-wrap .site-header-button {
    display: none;
  }
  #header-wrap .btn-mobile {
    display: block;
    width: 100%;
    margin-top: 32px;
  }
  #header-wrap.fixed-height {
    height: inherit !important;
  }
  #header-wrap .header-branding {
    margin-top: 15px;
    margin-bottom: 15px;
  }
  #header-wrap .header-branding img {
    max-height: 42px;
  }
  #header-wrap .header-branding.desktop {
    display: none;
  }
  #header-wrap #main-menu-mobile {
    position: absolute;
    top: 50%;
    right: 15px;
    -webkit-transform: translate(0, -50%);
    -khtml-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
  #header-wrap #header-main.h-fixed {
    position: fixed;
    left: 0;
    width: 100%;
    top: 0;
  }
  #header-wrap.preset2 #main-menu-mobile .mobile-menu-cart .widget_shopping_cart .widget_shopping_cart_footer .buttons .btn {
    background-color: #ff5a3c;
    background-image: none;
    -webkit-border-radius: 50px;
    -khtml-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    border-radius: 50px;
    letter-spacing: 0em;
    text-transform: capitalize;
  }
  #header-wrap.preset2 .menu-mobile-close {
    background-color: #ff5a3c;
  }
  .admin-bar #header-main .header-navigation .main-navigation {
    top: 0;
  }
}
@media screen and (max-width: 782px) {
  .admin-bar #header-main .header-navigation .main-navigation {
    top: 0;
  }
}
.admin-bar #header-wrap #header-main.h-fixed {
  top: 32px;
}
@media screen and (max-width: 782px) {
  .admin-bar #header-wrap #header-main.h-fixed {
    top: 46px;
  }
}
@media screen and (max-width: 600px) {
  .admin-bar #header-wrap #header-main.h-fixed {
    top: 0;
  }
}
ul.menu {
  list-style: none;
  margin: 0;
}
ul.menu ul {
  list-style: none;
  margin: 0;
}
.primary-menu-not-set a {
  font-size: 12px;
  font-weight: 500;
  color: #a2a9c7;
  padding: 0 22px;
  line-height: 115px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.primary-menu-not-set a:hover {
  color: #015dc7;
}
@media screen and (min-width: 992px) {
  .menu-toggle, #main-menu-mobile {
    display: none;
  }
  .main-navigation ul {
    display: block;
  }
  .primary-menu {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .primary-menu li {
    position: relative;
  }
  .primary-menu li a {
    display: block;
    -webkit-transition: all 300ms linear 0ms !important;
    -khtml-transition: all 300ms linear 0ms !important;
    -moz-transition: all 300ms linear 0ms !important;
    -ms-transition: all 300ms linear 0ms !important;
    -o-transition: all 300ms linear 0ms !important;
    transition: all 300ms linear 0ms !important;
  }
  .primary-menu > li {
    display: inline-block;
    vertical-align: middle;
    float: left;
    white-space: nowrap;
  }
  .primary-menu > li > a {
    font-size: 12px;
    font-weight: 500;
    color: #a2a9c7;
    padding: 0 16px;
    line-height: 115px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
  }
  .primary-menu > li > a.item-one-page {
    color: #000 !important;
  }
  .primary-menu > li > a.item-one-page.current {
    color: #015dc7 !important;
  }
  .primary-menu > li:hover > a, .primary-menu > li.current_page_item > a, .primary-menu > li.current-menu-item > a, .primary-menu > li.current_page_ancestor > a, .primary-menu > li.current-menu-ancestor > a {
    color: #015dc7;
  }
  .primary-menu > li.menu-item-has-children > a:after {
    content: "\f078";
    font-family: 'FontAwesome';
    font-size: 9px;
    margin-left: 5px;
    font-weight: normal;
    vertical-align: middle;
    margin-top: -3px;
    display: inline-block;
  }
  .primary-menu > li > .sub-menu .sub-menu {
    margin-top: -26px;
  }
  .primary-menu .sub-menu {
    list-style: none;
    position: absolute;
    background: #fff;
    top: 100%;
    left: 16px;
    min-width: 220px;
    z-index: 99;
    visibility: hidden;
    opacity: 0;
    -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
    -khtml-box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
    -ms-box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
    -o-box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
    -webkit-transition: all 200ms linear 0ms;
    -khtml-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -ms-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms;
    clip: rect(1px, 1px, 1px, 1px);
    padding: 26px 0;
    -webkit-transform: scaleY(0);
    -khtml-transform: scaleY(0);
    -moz-transform: scaleY(0);
    -ms-transform: scaleY(0);
    -o-transform: scaleY(0);
    transform: scaleY(0);
    transform-origin: 0 0 0;
    -webkit-transform-origin: 0 0 0;
    -ms-transform-origin: 0 0 0;
    -o-transform-origin: 0 0 0;
  }
  .primary-menu .sub-menu li {
    padding: 0 30px;
  }
  .primary-menu .sub-menu li a {
    color: #a2a9c7;
    font-size: 14px;
    padding: 8px 0px;
    font-weight: 500;
    letter-spacing: 0.03em;
    position: relative;
  }
  .primary-menu .sub-menu li a:before {
    content: '';
    height: 2px;
    width: 10px;
    background-color: #015dc7;
    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;
    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%);
  }
  .primary-menu .sub-menu li > a:hover, .primary-menu .sub-menu li.current_page_item > a, .primary-menu .sub-menu li.current-menu-item > a, .primary-menu .sub-menu li.current_page_ancestor > a, .primary-menu .sub-menu li.current-menu-ancestor > a, .primary-menu .sub-menu li.current-menu-parent > a {
    color: #015dc7;
    padding-left: 20px;
  }
  .primary-menu .sub-menu li > a:hover:before, .primary-menu .sub-menu li.current_page_item > a:before, .primary-menu .sub-menu li.current-menu-item > a:before, .primary-menu .sub-menu li.current_page_ancestor > a:before, .primary-menu .sub-menu li.current-menu-ancestor > a:before, .primary-menu .sub-menu li.current-menu-parent > a:before {
    opacity: 1;
  }
  .primary-menu .sub-menu li:last-child > a {
    border-bottom: none;
  }
  .primary-menu .sub-menu .sub-menu {
    top: 0;
    left: 100%;
  }
  .primary-menu .sub-menu .vc_row {
    background: #fff;
    padding: 10px;
    -webkit-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.25);
    -khtml-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.25);
    -ms-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.25);
    -o-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.25);
  }
  .primary-menu .sub-menu .menu-item-has-children > a {
    position: relative;
  }
  .primary-menu .sub-menu .menu-item-has-children > a:after {
    content: "\f105";
    font-family: FontAwesome;
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translate(0, -50%);
    -khtml-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
  .primary-menu li:hover, .primary-menu li.focus {
    overflow: visible;
  }
  .primary-menu li:hover > .sub-menu, .primary-menu li.focus > .sub-menu {
    visibility: visible;
    opacity: 1;
    clip: inherit;
    -webkit-transform: scaleY(1);
    -khtml-transform: scaleY(1);
    -moz-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -o-transform: scaleY(1);
    transform: scaleY(1);
  }
  .menu-mobile-close, .header-social-mobile, .header-mobile-search {
    display: none;
  }
  .header-layout1.preset2 .primary-menu > li > a.item-one-page.current {
    color: #ff5a3c !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .primary-menu > li > a {
    padding-left: 14px;
    padding-right: 14px;
  }
}
@media screen and (max-width: 991px) {
  .primary-menu-not-set {
    text-align: center;
  }
  .header-social-mobile {
    display: block;
    text-align: center;
    margin-top: 35px;
    margin-bottom: 25px;
  }
  .header-social-mobile a {
    color: #505050;
    font-size: 16px;
    margin: 0 6px;
  }
  .header-social-mobile a:hover {
    color: #015dc7;
  }
  .menu-mobile-close {
    display: block;
    width: 40px;
    height: 40px;
    background-color: #015dc7;
    line-height: 40px;
    text-align: center;
    color: #fff;
    font-size: 20px;
    position: absolute;
    top: 0;
    right: 0;
    -webkit-transition: all 300ms linear 0ms;
    -khtml-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    -o-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms;
    cursor: pointer;
  }
  .menu-mobile-close:hover {
    background-color: #a200ff;
    color: #fff;
  }
  .header-mobile-search {
    margin-bottom: 15px;
    position: relative;
    display: block;
  }
  .header-mobile-search .search-submit {
    position: absolute;
    width: 50px;
    height: 100%;
    right: 0;
    line-height: 100%;
    padding: 0;
    border: none;
    background-color: transparent;
    background-image: none;
    color: #999;
    top: 0;
  }
  .header-mobile-search .search-submit:hover {
    color: #015dc7;
  }
  .header-mobile-search .search-field {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    height: 50px;
  }
  .header-mobile-search .search-field:focus {
    border-color: #015dc7;
  }
  .menu-mobile-button {
    display: block;
    margin-bottom: 15px;
    text-align: center;
  }
  .menu-mobile-button .h-btn {
    line-height: 42px;
    background-color: #015dc7;
    padding: 0 26px;
    display: block;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
  }
  .menu-mobile-button .h-btn.h-btn-call {
    padding-left: 62px;
    background-image: url(../images/icon-call.png);
    background-repeat: no-repeat;
    background-position: left 23px center;
  }
  .menu-mobile-button .h-btn:hover {
    background-color: #a200ff;
    color: #fff;
  }
  .menu-mobile-overlay {
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: 998;
    background-color: rgba(0, 0, 0, 0.4);
    left: 0;
    top: 0;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 300ms linear 0ms;
    -khtml-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    -o-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms;
    cursor: url(../images/close-icon-white.png), auto;
  }
  .menu-mobile-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  .header-navigation {
    position: fixed;
    height: 100vh;
    width: 280px;
    top: 0;
    bottom: 0;
    margin: 0 !important;
    overflow: hidden;
    visibility: hidden;
    z-index: 999;
    -webkit-transform: translateX(-100%);
    -khtml-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
    -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;
  }
  .header-navigation .main-navigation {
    overflow: hidden;
    width: 280px;
    padding: 58px 0 16px 0;
    background-color: #fff;
    position: fixed;
    z-index: 1001;
    top: 0;
    height: 100%;
    left: 0;
    right: 0;
    -webkit-transition: all 300ms linear 0ms;
    -khtml-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    -o-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms;
  }
  .header-navigation .main-navigation .main-navigation-inner {
    height: 100%;
    overflow-y: scroll;
    padding: 0 26px 0 16px;
    margin-right: -10px;
  }
  .header-navigation.navigation-open {
    z-index: 999;
    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%);
    opacity: 1;
  }
  .primary-menu {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .primary-menu li {
    position: relative;
    list-style: none;
  }
  .primary-menu li a {
    display: block;
    padding: 12px 16px;
    color: #1e2331;
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
  }
  .primary-menu > li > a:hover, .primary-menu > li > a.current, .primary-menu > li.current_page_item > a, .primary-menu > li.current-menu-item > a, .primary-menu > li.current_page_ancestor > a, .primary-menu > li.current-menu-ancestor > a {
    background-color: #f5f5f5;
  }
  .primary-menu .sub-menu {
    position: relative;
    padding-left: 20px;
    display: none;
  }
  .primary-menu .sub-menu.submenu-open + .main-menu-toggle:before {
    content: '\f2fc';
  }
  .primary-menu li.focus > .sub-menu {
    visibility: visible;
    opacity: 1;
    max-height: none;
    overflow: visible;
  }
  .site-menu-right .widget_shopping_cart {
    display: none;
  }
  #main-menu-mobile .mobile-menu-cart {
    line-height: 32px;
    width: 30px;
    color: #1f2233;
    margin-right: 8px;
    display: inline-block;
    text-align: center;
    cursor: pointer;
  }
  #main-menu-mobile .mobile-menu-cart .widget_shopping_cart {
    top: calc(100% + 19px);
    top: -webkit-calc(100% + 19px);
    top: -ms-calc(100% + 19px);
    top: -o-calc(100% + 19px);
    width: 295px;
    padding-left: 20px;
    padding-right: 20px;
  }
  #main-menu-mobile .mobile-menu-cart .widget_shopping_cart .widget_shopping_cart_footer .buttons .btn {
    letter-spacing: 0px;
  }
  #main-menu-mobile .mobile-menu-cart .h-btn-cart {
    display: block;
    height: 32px;
    width: 30px;
  }
  #main-menu-mobile .btn-nav-mobile {
    color: #1f2233;
    display: inline-block;
    font-size: 16px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    vertical-align: middle;
    width: 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: #1f2233;
    display: block;
    height: 2px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    width: 22px;
    top: 21px;
  }
  #main-menu-mobile .btn-nav-mobile:before {
    top: 9px;
  }
  #main-menu-mobile .btn-nav-mobile span {
    top: 15px;
  }
  #main-menu-mobile .btn-nav-mobile.opened:before {
    top: 15px;
    -webkit-transform: rotate(45deg);
    -khtml-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  #main-menu-mobile .btn-nav-mobile.opened:after {
    -webkit-transform: rotate(-45deg);
    -khtml-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 15px;
  }
  #main-menu-mobile .btn-nav-mobile.opened span {
    display: none;
  }
  .main-menu-toggle {
    -webkit-transition: all 300ms linear 0ms;
    -khtml-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    -o-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms;
    cursor: pointer;
    display: inline-block;
    height: 19px;
    line-height: 19px;
    position: absolute;
    right: 12px;
    text-align: center;
    top: 14px;
    width: 19px;
  }
  .main-menu-toggle:before {
    content: "\f2f9";
    font-family: 'Material-Design-Iconic-Font';
    font-size: 18px;
    color: #1e2331;
  }
  .main-menu-toggle + .main-menu-toggle {
    display: none;
  }
}
.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: 0 !important;
  left: auto !important;
}
ul.back ul.sub-menu {
  right: 100% !important;
  left: auto !important;
}
#pagetitle {
  padding: 190px 0 182px;
  background-color: #015dc7;
  background-image: url(../images/bg-page-title.jpg);
  background-position: top center;
  background-repeat: no-repeat;
  text-align: center;
  background-size: cover;
}
@media screen and (max-width: 1199px) {
  #pagetitle {
    background-attachment: inherit;
  }
}
@media screen and (max-width: 991px) {
  #pagetitle {
    padding: 60px 0;
  }
}
#pagetitle:before {
  background-color: #015dc7;
  background-image: -webkit-gradient(linear, left top, right top, from(#015dc7), to(#a200ff));
  background-image: -webkit-linear-gradient(left, #015dc7, #a200ff);
  background-image: -moz-linear-gradient(left, #015dc7, #a200ff);
  background-image: -ms-linear-gradient(left, #015dc7, #a200ff);
  background-image: -o-linear-gradient(left, #015dc7, #a200ff);
  background-image: linear-gradient(left, #015dc7, #a200ff);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#015dc7', endColorStr='#a200ff', gradientType='1');
  opacity: 0.9;
}
#pagetitle .container {
  position: relative;
  z-index: 99;
}
#pagetitle h1.page-title {
  font-size: 70px;
  line-height: 1.142;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  #pagetitle h1.page-title {
    font-size: 36px;
  }
}
@media screen and (max-width: 575px) {
  #pagetitle h1.page-title {
    font-size: 24px;
  }
}
#pagetitle .page-subtitle {
  margin-top: 21px;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #fff;
  font-family: inherit;
}
#pagetitle .page-subtitle a {
  color: inherit;
}
#pagetitle .ct-breadcrumb {
  margin: 0 0 23px;
  list-style: none;
}
#pagetitle .ct-breadcrumb li {
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #fff;
  display: inline-block;
  margin-right: 11px;
}
@media screen and (max-width: 767px) {
  #pagetitle .ct-breadcrumb li {
    font-size: 16px;
  }
}
#pagetitle .ct-breadcrumb li:before {
  content: "|";
  margin-right: 13px;
}
#pagetitle .ct-breadcrumb li a {
  color: #fff;
}
#pagetitle .ct-breadcrumb li:first-child:before {
  display: none;
}
#pagetitle .author-image {
  margin-bottom: 12px;
}
#pagetitle .author-image img {
  max-width: 100px;
  -webkit-border-radius: 100px;
  -khtml-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  border-radius: 100px;
}
#pagetitle .author-name {
  margin-bottom: 18px;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
#pagetitle .author-name a {
  color: #fff;
}
.single #pagetitle h1.page-title {
  font-size: 48px;
}
@media screen and (max-width: 767px) {
  .single #pagetitle h1.page-title {
    font-size: 36px;
  }
}
@media screen and (max-width: 575px) {
  .single #pagetitle h1.page-title {
    font-size: 24px;
  }
}
.single #pagetitle .ct-breadcrumb li:last-child {
  display: none;
}
.entry-video iframe {
  width: 100%;
  margin-bottom: -8px;
}
.entry-video .wp-video {
  width: 100% !important;
}
.entry-video .wp-video .mejs-container {
  height: inherit !important;
}
.entry-video .entry-video-intro {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
  -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;
}
.entry-video .entry-video-intro.offintro {
  opacity: 0;
  visibility: hidden;
  z-index: -999;
}
.entry-video .entry-video-intro .button-video {
  height: 70px;
  line-height: 70px;
  font-size: 16px;
  text-align: center;
  background-color: #fff;
  color: #015dc7;
  display: block;
  width: 70px;
  -webkit-border-radius: 70px;
  -khtml-border-radius: 70px;
  -moz-border-radius: 70px;
  -ms-border-radius: 70px;
  -o-border-radius: 70px;
  border-radius: 70px;
  cursor: pointer;
  z-index: 999;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transform: translate(0, -50%);
  -khtml-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
}
.entry-video .entry-video-intro .button-video:hover {
  background-color: #015dc7;
  color: #fff;
}
.entry-video .entry-video-intro + .wp-video {
  -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;
  visibility: hidden;
}
.entry-video .entry-video-intro + .wp-video.onvideo {
  opacity: 1;
  visibility: visible;
}
.entry-gallery {
  position: relative;
  overflow: hidden;
}
.entry-gallery .owl-nav .owl-next, .entry-gallery .owl-nav .owl-prev {
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  position: absolute;
  color: #a200ff;
  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;
  margin: 0;
  background: #015dc7;
}
.entry-gallery .owl-nav .owl-next:hover, .entry-gallery .owl-nav .owl-prev:hover {
  background: #a200ff;
  color: #015dc7;
}
.entry-gallery .owl-nav .owl-next {
  right: 30px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -khtml-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.entry-gallery .owl-nav .owl-prev {
  left: 30px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -khtml-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.entry-gallery:hover .owl-nav .owl-next, .entry-gallery:hover .owl-nav .owl-prev {
  opacity: 1;
}
.entry-gallery:hover .owl-nav .owl-next.disabled, .entry-gallery:hover .owl-nav .owl-prev.disabled {
  opacity: 0.76;
}
.posts-pagination .posts-page-links {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
}
.posts-pagination .page-numbers {
  text-align: center;
  height: 40px;
  width: 40px;
  line-height: 36px;
  border: 2px solid #eaebec;
  color: #b7bdc5;
  background-color: #fff;
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  margin: 0 5px 5px 5px;
}
.posts-pagination .page-numbers i {
  font-size: 12px;
}
.posts-pagination .page-numbers.next, .posts-pagination .page-numbers.prev {
  width: inherit;
  padding: 0 14px;
  font-weight: 500;
}
.posts-pagination .page-numbers.current {
  border: none;
  background-color: #6747ee;
  background-image: -webkit-gradient(linear, left top, right top, from(#6747ee), to(#9124dc));
  background-image: -webkit-linear-gradient(left, #6747ee, #9124dc);
  background-image: -moz-linear-gradient(left, #6747ee, #9124dc);
  background-image: -ms-linear-gradient(left, #6747ee, #9124dc);
  background-image: -o-linear-gradient(left, #6747ee, #9124dc);
  background-image: linear-gradient(left, #6747ee, #9124dc);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#6747ee', endColorStr='#9124dc', gradientType='1');
  color: #fff;
  line-height: 40px;
}
.entry-title a {
  color: inherit;
}
.entry-title a:hover {
  color: #015dc7;
}
.entry-featured {
  width: 100%;
}
.entry-featured .post-image {
  position: relative;
}
.entry-featured .post-image a {
  display: block;
}
.entry-featured .post-image img {
  -webkit-transition: all 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  -khtml-transition: all 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  -moz-transition: all 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  -ms-transition: all 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  -o-transition: all 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  transition: all 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
}
.entry-featured .post-image .entry-more {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 20px;
  color: #015dc7;
  background-color: rgba(162, 0, 255, 0.8);
  opacity: 0;
}
.entry-featured .post-image .entry-more i {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -khtml-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.entry-featured .bg-overlay:before {
  background-color: rgba(162, 0, 255, 0.85);
  opacity: 0;
}
.reduxon .entry-featured .post-image img {
  width: 100%;
}
.entry-meta, .item-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0;
}
.entry-meta li, .item-meta li {
  position: relative;
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 0 20px 0 0;
}
.entry-meta li i, .item-meta li i {
  margin-right: 10px;
  position: relative;
  top: -1px;
  color: #6747ee;
}
.single-hentry .entry-title {
  font-size: 24px;
  line-height: 1.416;
  margin-bottom: 17px;
}
.single-hentry .post-image {
  position: relative;
  overflow: hidden;
}
.single-hentry .post-image img {
  -webkit-transition: all 10s;
  -khtml-transition: all 10s;
  -moz-transition: all 10s;
  -ms-transition: all 10s;
  -o-transition: all 10s;
  transition: all 10s;
}
.single-hentry .post-image img:hover {
  -webkit-transform: scale(1.2);
  -khtml-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}
.single-hentry.archive {
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
}
.single-hentry.archive .entry-featured + .entry-body {
  margin-top: -90px;
}
.single-hentry.archive .entry-body {
  padding: 0 30px;
  width: 100%;
}
.single-hentry.archive .entry-body .entry-body-inner {
  background-color: #fff;
  padding: 36px 40px 30px 40px;
  -webkit-box-shadow: 0 8px 16px rgba(127, 127, 127, 0.10);
  -khtml-box-shadow: 0 8px 16px rgba(127, 127, 127, 0.10);
  -moz-box-shadow: 0 8px 16px rgba(127, 127, 127, 0.10);
  -ms-box-shadow: 0 8px 16px rgba(127, 127, 127, 0.10);
  -o-box-shadow: 0 8px 16px rgba(127, 127, 127, 0.10);
  box-shadow: 0 8px 16px rgba(127, 127, 127, 0.10);
  position: relative;
  z-index: 99;
}
.single-hentry.archive .entry-body .entry-meta {
  margin-bottom: 20px;
}
.single-hentry.archive .entry-body .entry-tags {
  display: flex;
  flex-wrap: wrap;
  margin-top: 27px;
}
.single-hentry.archive .entry-body .entry-tags .label {
  display: none;
}
.single-hentry.archive .entry-body .entry-tags a {
  background-color: #f9f7ff;
  color: #747da1;
  text-transform: uppercase;
  font-size: 12px !important;
  border: none;
  padding: 0 17px;
  line-height: 30px;
  font-weight: 500;
  letter-spacing: 0.2em;
  margin-right: 10px;
}
.single-hentry.archive .entry-body .entry-tags a:hover {
  background-color: #015dc7;
  color: #fff;
  -webkit-box-shadow: none;
  -khtml-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}
.single-hentry.archive:last-child {
  margin-bottom: 50px;
}
.single-post .blog-side-img {
  max-width: 300px;
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  .single-post .blog-side-img {
    max-width: 150px;
  }
}
.single-post .blog-side-img.alignright {
  margin-top: 8px;
}
.single-post .entry-featured {
  margin-bottom: 27px;
}
.single-post .entry-meta {
  margin-bottom: 19px;
}
.single-post .content-area .entry-content p {
  margin-bottom: 24px;
}
.single-post .content-area .entry-content p:last-child {
  margin-bottom: 0;
}
.single-post .content-area .entry-content-bottom {
  display: flex;
  flex-wrap: wrap;
  padding-top: 26px;
  border-bottom: 1px solid #eaeaea;
}
.single-post .content-area .entry-content-bottom > div {
  margin-bottom: 24px;
}
.single-post .content-area .entry-content-bottom label {
  font-size: 18px;
  font-weight: 600;
  color: #1d274e;
  font-family: 'Poppins', sans-serif;
  display: block;
  margin-bottom: 14px;
}
.single-post .content-area .entry-content-bottom .entry-tags {
  margin-right: 30px;
  flex-grow: 1;
}
.single-post .content-area .entry-content-bottom .entry-tags a {
  margin-right: 16px;
  margin-bottom: 20px;
  border: 2px solid #e5e5e5;
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  font-weight: 500;
  color: #9494b2;
  text-transform: uppercase;
  padding: 0 20px;
  line-height: 46px;
}
.single-post .content-area .entry-content-bottom .entry-tags a:hover {
  background-color: #015dc7;
  color: #fff;
  border-color: #015dc7;
}
.single-post .content-area .entry-content-bottom .entry-social a {
  font-size: 18px;
  color: #b5becc;
}
.single-post .content-area .entry-content-bottom .entry-social a:hover {
  color: #015dc7;
}
.single-post .content-area .entry-content-bottom .entry-social a + a {
  margin-left: 25px;
}
.entry-content .page-links {
  clear: left;
  padding-top: 10px;
}
.entry-content .page-links span {
  text-align: center;
  display: inline-block;
  height: 26px;
  width: 26px;
  line-height: 26px;
  color: #fff;
  background-color: #a200ff;
  font-size: 14px;
  font-weight: 500;
  margin: 0 3px;
  font-family: 'Poppins', sans-serif;
  -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: #a200ff;
  color: #fff;
}
.ct-related-post-wrap {
  padding: 82px 0 90px;
  background-color: #f7fbff;
}
.ct-related-post .ct-related-post-inner {
  justify-content: center;
  -webkit-justify-content: center;
}
.ct-related-post .section-title {
  font-size: 36px;
  margin-bottom: 55px;
  text-align: center;
}
.ct-related-post .grid-item-inner {
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
  -khtml-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
  -webkit-border-radius: 5px;
  -khtml-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
}
.ct-related-post .grid-item-inner .item-featured img {
  -webkit-border-radius: 5px 5px 0 0;
  -khtml-border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  -ms-border-radius: 5px 5px 0 0;
  -o-border-radius: 5px 5px 0 0;
  border-radius: 5px 5px 0 0;
}
.ct-related-post .item-holder {
  padding: 24px;
  -webkit-border-radius: 0 0 5px 5px;
  -khtml-border-radius: 0 0 5px 5px;
  -moz-border-radius: 0 0 5px 5px;
  -ms-border-radius: 0 0 5px 5px;
  -o-border-radius: 0 0 5px 5px;
  border-radius: 0 0 5px 5px;
  background-color: #fff;
}
.ct-related-post .item-holder .item-title {
  font-size: 18px;
  margin-bottom: 10px;
}
.ct-related-post .item-holder .item-title a {
  color: #a200ff;
}
.ct-related-post .item-holder .item-title a:hover {
  color: #015dc7;
}
.ct-related-post .item-holder .item-content {
  color: #393e42;
}
.ct-related-post .item-readmore {
  padding-top: 10px;
}
.ct-related-post .item-readmore a {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  color: #015dc7;
}
.ct-related-post .item-readmore a:hover {
  color: #a200ff;
}
.ct-related-post .item-readmore a i {
  margin-left: 9px;
}
@media screen and (max-width: 767px) {
  .ct-related-post .grid-item {
    margin-bottom: 30px;
  }
  .ct-related-post .grid-item:last-child {
    margin-bottom: 0;
  }
}
.single-portfolio .post-type-gallery {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.single-portfolio .post-type-gallery .post-type-gallery-item {
  margin-bottom: 30px;
  width: 100%;
  padding: 0 15px;
}
.single-portfolio .post-type-gallery .post-type-gallery-item:nth-child(2), .single-portfolio .post-type-gallery .post-type-gallery-item:nth-child(3) {
  width: 50%;
}
.single-portfolio .post-type-gallery .post-type-gallery-item a {
  display: block;
}
.single-portfolio .post-type-gallery .post-type-gallery-item a img {
  width: 100%;
}
.single-portfolio .post-type-gallery .post-type-gallery-item:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 1200px) {
  .single-portfolio .post-type-inner > .row {
    margin: 0 -30px;
  }
  .single-portfolio .post-type-inner > .row > .col-md-6 {
    padding: 0 30px;
  }
}
.single-portfolio .post-type-inner > .row > .col-md-6 {
  margin-bottom: 80px;
}
.single-portfolio .entry-title {
  font-size: 40px;
  margin-top: 14px;
  margin-bottom: 33px;
}
@media screen and (max-width: 991px) {
  .single-portfolio .entry-title {
    font-size: 32px;
  }
}
.single-portfolio blockquote {
  font-size: 16px;
  line-height: 26px;
  padding: 24px 30px 24px 40px;
  margin: 36px 0;
}
.single-portfolio blockquote:before {
  content: '';
  width: 116px;
  height: 85px;
  right: 20px;
  left: auto;
  top: auto;
  bottom: 10px;
  background-image: url(../images/icon-blockquote.png);
}
.single-portfolio .entry-content {
  padding-bottom: 40px;
}
.single-portfolio .entry-content p:last-child {
  margin-bottom: 0;
}
.single-portfolio .entry-fmeta {
  margin: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.single-portfolio .entry-fmeta label {
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #9d97cb;
  display: block;
  font-size: 14px;
  margin-bottom: 3px;
}
@media screen and (max-width: 1199px) {
  .single-portfolio .entry-fmeta label {
    font-size: 12px;
  }
}
.single-portfolio .entry-fmeta span, .single-portfolio .entry-fmeta a {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  line-height: 1.5;
  font-weight: 600;
  color: #1d274e;
}
@media screen and (max-width: 1199px) {
  .single-portfolio .entry-fmeta span, .single-portfolio .entry-fmeta a {
    font-size: 18px;
  }
}
.single-portfolio .entry-fmeta a:hover {
  color: #015dc7;
}
.single-portfolio .entry-fmeta li {
  width: 45%;
  padding: 0 15px;
  margin-bottom: 24px;
}
@media screen and (max-width: 991px) {
  .single-portfolio .entry-fmeta li {
    width: 100%;
  }
}
.single-portfolio .entry-fmeta li:nth-child(even) {
  width: 55%;
}
@media screen and (max-width: 991px) {
  .single-portfolio .entry-fmeta li:nth-child(even) {
    width: 100%;
  }
}
.single-portfolio .entry-footer {
  padding-top: 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.single-portfolio .entry-footer .footer-button {
  margin-right: 30px;
  flex-grow: 1;
}
.single-portfolio .entry-footer .footer-button .btn {
  -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: #015dc7;
  background-image: -webkit-gradient(linear, left top, right top, from(#015dc7), to(#a200ff));
  background-image: -webkit-linear-gradient(left, #015dc7, #a200ff);
  background-image: -moz-linear-gradient(left, #015dc7, #a200ff);
  background-image: -ms-linear-gradient(left, #015dc7, #a200ff);
  background-image: -o-linear-gradient(left, #015dc7, #a200ff);
  background-image: linear-gradient(left, #015dc7, #a200ff);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#015dc7', endColorStr='#a200ff', gradientType='1');
}
@media screen and (max-width: 1199px) {
  .single-portfolio .entry-footer .footer-button .btn {
    padding-left: 28px;
    padding-right: 28px;
    line-height: 50px;
  }
}
.single-portfolio .entry-footer .entry-social a {
  display: inline-block;
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  color: #65656f;
  background-color: #e5e5e5;
  position: relative;
  z-index: 1;
  margin-top: 10px;
  margin-bottom: 10px;
}
.single-portfolio .entry-footer .entry-social a + a {
  margin-left: 6px;
}
.single-portfolio .entry-footer .entry-social a:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: #015dc7;
  background-image: -webkit-gradient(linear, left top, right top, from(#015dc7), to(#a200ff));
  background-image: -webkit-linear-gradient(left, #015dc7, #a200ff);
  background-image: -moz-linear-gradient(left, #015dc7, #a200ff);
  background-image: -ms-linear-gradient(left, #015dc7, #a200ff);
  background-image: -o-linear-gradient(left, #015dc7, #a200ff);
  background-image: linear-gradient(left, #015dc7, #a200ff);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#015dc7', endColorStr='#a200ff', gradientType='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;
  z-index: -1;
}
.single-portfolio .entry-footer .entry-social a:hover {
  color: #fff;
}
.single-portfolio .entry-footer .entry-social a:hover:before {
  opacity: 1;
}
.single-portfolio .post-type-nav {
  padding-top: 6px;
}
.single-portfolio .post-type-nav .nav-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 -55px;
  position: relative;
}
.single-portfolio .post-type-nav .nav-portfolios {
  position: absolute;
  line-height: 1;
  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%);
}
.single-portfolio .post-type-nav .nav-portfolios i {
  font-size: 56px;
}
@media screen and (max-width: 575px) {
  .single-portfolio .post-type-nav .nav-portfolios {
    width: 100%;
    display: block;
    text-align: center;
    position: static;
    -webkit-transform: translate(0%, 0%);
    -khtml-transform: translate(0%, 0%);
    -moz-transform: translate(0%, 0%);
    -ms-transform: translate(0%, 0%);
    -o-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
    margin: 25px 0;
  }
}
.single-portfolio .post-type-nav .nav-link-prev, .single-portfolio .post-type-nav .nav-link-next {
  width: 50%;
  padding: 0 55px;
}
@media screen and (max-width: 575px) {
  .single-portfolio .post-type-nav .nav-link-prev, .single-portfolio .post-type-nav .nav-link-next {
    width: 100%;
    text-align: center;
  }
}
.single-portfolio .post-type-nav .nav-link-prev .nav-inner, .single-portfolio .post-type-nav .nav-link-next .nav-inner {
  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;
}
.single-portfolio .post-type-nav .nav-link-prev .nav-inner:hover h3 a, .single-portfolio .post-type-nav .nav-link-next .nav-inner:hover h3 a, .single-portfolio .post-type-nav .nav-link-prev .nav-inner:hover .subtitle, .single-portfolio .post-type-nav .nav-link-prev .nav-inner:hover .woocommerce .woocommerce-product-category a, .woocommerce .woocommerce-product-category .single-portfolio .post-type-nav .nav-link-prev .nav-inner:hover a, .single-portfolio .post-type-nav .nav-link-next .nav-inner:hover .subtitle, .single-portfolio .post-type-nav .nav-link-next .nav-inner:hover .woocommerce .woocommerce-product-category a, .woocommerce .woocommerce-product-category .single-portfolio .post-type-nav .nav-link-next .nav-inner:hover a {
  background-color: #6747ee;
  background-image: -webkit-gradient(linear, left top, right top, from(#6747ee), to(#9124dc));
  background-image: -webkit-linear-gradient(left, #6747ee, #9124dc);
  background-image: -moz-linear-gradient(left, #6747ee, #9124dc);
  background-image: -ms-linear-gradient(left, #6747ee, #9124dc);
  background-image: -o-linear-gradient(left, #6747ee, #9124dc);
  background-image: linear-gradient(left, #6747ee, #9124dc);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#6747ee', endColorStr='#9124dc', gradientType='1');
  background-color: transparent;
  background-clip: text;
  -o-background-clip: text;
  -ms-background-clip: text;
  -moz-background-clip: text;
  -webkit-background-clip: text;
  text-fill-color: transparent;
  -o-text-fill-color: transparent;
  -ms-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  -webkit-text-fill-color: transparent;
}
.single-portfolio .post-type-nav .nav-link-prev .nav-icon, .single-portfolio .post-type-nav .nav-link-next .nav-icon {
  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%);
  -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;
}
.single-portfolio .post-type-nav .nav-link-next .nav-inner {
  text-align: right;
}
@media screen and (max-width: 575px) {
  .single-portfolio .post-type-nav .nav-link-next .nav-inner {
    text-align: center;
  }
}
.single-portfolio .post-type-nav .nav-link-next .nav-inner .nav-icon {
  right: 0;
}
.single-portfolio .post-type-nav .nav-link-next .nav-inner:hover {
  padding-right: 63px;
}
@media screen and (max-width: 991px) {
  .single-portfolio .post-type-nav .nav-link-next .nav-inner:hover {
    padding-right: 0;
  }
}
.single-portfolio .post-type-nav .nav-link-next .nav-inner:hover .nav-icon {
  opacity: 1;
}
@media screen and (max-width: 991px) {
  .single-portfolio .post-type-nav .nav-link-next .nav-inner:hover .nav-icon {
    opacity: 0;
  }
}
.single-portfolio .post-type-nav .nav-link-prev .nav-inner .nav-icon {
  left: 0;
}
.single-portfolio .post-type-nav .nav-link-prev .nav-inner .nav-icon i {
  -webkit-transform: rotate(180deg);
  -khtml-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
  display: inline-block;
  background-color: #9124dc;
  background-image: -webkit-gradient(linear, left top, right top, from(#9124dc), to(#6747ee));
  background-image: -webkit-linear-gradient(left, #9124dc, #6747ee);
  background-image: -moz-linear-gradient(left, #9124dc, #6747ee);
  background-image: -ms-linear-gradient(left, #9124dc, #6747ee);
  background-image: -o-linear-gradient(left, #9124dc, #6747ee);
  background-image: linear-gradient(left, #9124dc, #6747ee);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#9124dc', endColorStr='#6747ee', gradientType='1');
}
.single-portfolio .post-type-nav .nav-link-prev .nav-inner:hover {
  padding-left: 63px;
}
@media screen and (max-width: 991px) {
  .single-portfolio .post-type-nav .nav-link-prev .nav-inner:hover {
    padding-left: 0;
  }
}
.single-portfolio .post-type-nav .nav-link-prev .nav-inner:hover .nav-icon {
  opacity: 1;
}
@media screen and (max-width: 991px) {
  .single-portfolio .post-type-nav .nav-link-prev .nav-inner:hover .nav-icon {
    opacity: 0;
  }
}
.single-portfolio .post-type-nav .nav-holder span {
  font-size: 14px;
  color: #9d97cb;
}
.single-portfolio .post-type-nav .nav-holder h3 {
  font-weight: 700;
  font-size: 20px;
  margin: 5px 0 0;
}
.single-portfolio .post-type-nav .nav-holder h3 a {
  color: inherit;
}
.single-portfolio .post-type-nav .nav-holder h3 a:hover {
  color: inherit;
}
.single-portfolio .post-type-nav .nav-icon i {
  font-size: 40px;
}
.no-results .searchform-wrap {
  position: relative;
}
.no-results .searchform-wrap .search-submit {
  position: absolute;
  right: 0;
  top: 0;
  line-height: 60px;
}
.widget {
  margin-bottom: 30px;
}
.widget.mb-20 {
  margin-bottom: 20px;
}
.widget:last-child {
  margin-bottom: 0;
}
.widget select {
  max-width: 100%;
}
.widget.rm-margin1 {
  margin-bottom: 14px;
}
.widget.rm-margin2 {
  margin-bottom: 20px;
}
.logged-in .hide-logged {
  display: none;
}
ul.menu {
  list-style: none;
  margin: 0;
}
.widget_nav_menu.column3 ul.menu {
  margin: 0 -15px;
  overflow: hidden;
}
.widget_nav_menu.column3 ul.menu li {
  width: 33.33%;
  padding: 0 15px;
  float: left;
}
@media screen and (max-width: 767px) {
  .widget_nav_menu.column3 ul.menu li {
    width: 50%;
  }
}
@media screen and (max-width: 575px) {
  .widget_nav_menu.column3 ul.menu li {
    width: 100%;
  }
}
.widget_nav_menu.column2 ul.menu {
  margin: 0 -15px;
  overflow: hidden;
}
.widget_nav_menu.column2 ul.menu li {
  width: 50%;
  padding: 0 15px;
  float: left;
}
@media screen and (max-width: 575px) {
  .widget_nav_menu.column2 ul.menu li {
    width: 100%;
  }
}
.widget_categories ul, .widget_nav_menu ul, .widget_pages ul, .widget_archive ul, .widget_meta ul, .widget_recent_entries ul {
  list-style: none;
  margin-bottom: 0;
}
#content .widget_categories ul ul ul ul ul, #content .widget_pages ul ul ul ul ul, #content .widget_nav_menu ul ul ul ul ul, #content .widget_meta ul ul ul ul ul, #content .widget_recent_entries ul ul ul ul ul {
  padding-left: 0;
}
#content .widget_categories .widget-title, #content .widget_nav_menu .widget-title, #content .widget_pages .widget-title, #content .widget_archive .widget-title, #content .widget_meta .widget-title, #content .widget_recent_entries .widget-title {
  margin-bottom: 24px;
}
#content .widget_categories ul li, #content .widget_nav_menu ul li, #content .widget_pages ul li, #content .widget_archive ul li, #content .widget_meta ul li, #content .widget_recent_entries ul li {
  font-size: 0px;
}
#content .widget_categories ul li a, #content .widget_nav_menu ul li a, #content .widget_pages ul li a, #content .widget_archive ul li a, #content .widget_meta ul li a, #content .widget_recent_entries ul li a {
  color: #747da1;
  display: block;
  font-size: 16px;
  padding: 10px 0;
  position: relative;
  border-bottom: 1px solid #eaeaea;
}
#content .widget_categories ul li a:before, #content .widget_nav_menu ul li a:before, #content .widget_pages ul li a:before, #content .widget_archive ul li a:before, #content .widget_meta ul li a:before, #content .widget_recent_entries ul li a:before {
  content: "\f178";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -khtml-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  display: block;
  font-family: "FontAwesome";
  color: #015dc7;
  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;
}
#content .widget_categories ul li:last-child > a, #content .widget_nav_menu ul li:last-child > a, #content .widget_pages ul li:last-child > a, #content .widget_archive ul li:last-child > a, #content .widget_meta ul li:last-child > a, #content .widget_recent_entries ul li:last-child > a {
  border-bottom: none;
}
#content .widget_categories ul li.current-menu-item > a, #content .widget_nav_menu ul li.current-menu-item > a, #content .widget_pages ul li.current-menu-item > a, #content .widget_archive ul li.current-menu-item > a, #content .widget_meta ul li.current-menu-item > a, #content .widget_recent_entries ul li.current-menu-item > a, #content .widget_categories ul li.current-cat > a, #content .widget_nav_menu ul li.current-cat > a, #content .widget_pages ul li.current-cat > a, #content .widget_archive ul li.current-cat > a, #content .widget_meta ul li.current-cat > a, #content .widget_recent_entries ul li.current-cat > a, #content .widget_categories ul li.current-cat-parent > a, #content .widget_nav_menu ul li.current-cat-parent > a, #content .widget_pages ul li.current-cat-parent > a, #content .widget_archive ul li.current-cat-parent > a, #content .widget_meta ul li.current-cat-parent > a, #content .widget_recent_entries ul li.current-cat-parent > a, #content .widget_categories ul li > a:hover, #content .widget_nav_menu ul li > a:hover, #content .widget_pages ul li > a:hover, #content .widget_archive ul li > a:hover, #content .widget_meta ul li > a:hover, #content .widget_recent_entries ul li > a:hover {
  color: inherit;
  padding-left: 26px;
}
#content .widget_categories ul li.current-menu-item > a:before, #content .widget_nav_menu ul li.current-menu-item > a:before, #content .widget_pages ul li.current-menu-item > a:before, #content .widget_archive ul li.current-menu-item > a:before, #content .widget_meta ul li.current-menu-item > a:before, #content .widget_recent_entries ul li.current-menu-item > a:before, #content .widget_categories ul li.current-cat > a:before, #content .widget_nav_menu ul li.current-cat > a:before, #content .widget_pages ul li.current-cat > a:before, #content .widget_archive ul li.current-cat > a:before, #content .widget_meta ul li.current-cat > a:before, #content .widget_recent_entries ul li.current-cat > a:before, #content .widget_categories ul li.current-cat-parent > a:before, #content .widget_nav_menu ul li.current-cat-parent > a:before, #content .widget_pages ul li.current-cat-parent > a:before, #content .widget_archive ul li.current-cat-parent > a:before, #content .widget_meta ul li.current-cat-parent > a:before, #content .widget_recent_entries ul li.current-cat-parent > a:before, #content .widget_categories ul li > a:hover:before, #content .widget_nav_menu ul li > a:hover:before, #content .widget_pages ul li > a:hover:before, #content .widget_archive ul li > a:hover:before, #content .widget_meta ul li > a:hover:before, #content .widget_recent_entries ul li > a:hover:before {
  margin-left: 0;
  opacity: 1;
}
#content .widget_categories ul li.menu-item-has-children > a, #content .widget_nav_menu ul li.menu-item-has-children > a, #content .widget_pages ul li.menu-item-has-children > a, #content .widget_archive ul li.menu-item-has-children > a, #content .widget_meta ul li.menu-item-has-children > a, #content .widget_recent_entries ul li.menu-item-has-children > a {
  border-bottom: 1px solid #eaeaea;
}
#content .widget_categories ul li .sub-menu, #content .widget_nav_menu ul li .sub-menu, #content .widget_pages ul li .sub-menu, #content .widget_archive ul li .sub-menu, #content .widget_meta ul li .sub-menu, #content .widget_recent_entries ul li .sub-menu {
  padding-left: 12px;
}
#content .widget_categories ul li .sub-menu li a, #content .widget_nav_menu ul li .sub-menu li a, #content .widget_pages ul li .sub-menu li a, #content .widget_archive ul li .sub-menu li a, #content .widget_meta ul li .sub-menu li a, #content .widget_recent_entries ul li .sub-menu li a {
  border-bottom: 1px solid #eaeaea;
}
#content .widget_categories .current-cat > a, #content .widget_nav_menu .current-cat > a, #content .widget_pages .current-cat > a, #content .widget_archive .current-cat > a, #content .widget_meta .current-cat > a, #content .widget_recent_entries .current-cat > a, #content .widget_categories .current-cat-parent > a, #content .widget_nav_menu .current-cat-parent > a, #content .widget_pages .current-cat-parent > a, #content .widget_archive .current-cat-parent > a, #content .widget_meta .current-cat-parent > a, #content .widget_recent_entries .current-cat-parent > a, #content .widget_categories .current-cat-ancestor > a, #content .widget_nav_menu .current-cat-ancestor > a, #content .widget_pages .current-cat-ancestor > a, #content .widget_archive .current-cat-ancestor > a, #content .widget_meta .current-cat-ancestor > a, #content .widget_recent_entries .current-cat-ancestor > a {
  color: #015dc7;
}
#content .widget_categories .nice-select ul li, #content .widget_nav_menu .nice-select ul li, #content .widget_pages .nice-select ul li, #content .widget_archive .nice-select ul li, #content .widget_meta .nice-select ul li, #content .widget_recent_entries .nice-select ul li {
  border: none;
  font-size: 14px;
  line-height: normal;
  padding: 8px 24px;
  font-weight: 500;
}
#content .vc_wp_custommenu {
  margin-bottom: 0;
}
#content .vc_wp_custommenu .widget_nav_menu ul li {
  margin-bottom: 3px;
}
#content .vc_wp_custommenu .widget_nav_menu ul li a {
  padding: 15px 20px;
  border-left: 3px solid transparent;
  border-bottom: none;
  background-color: rgba(1, 93, 199, 0.08);
  color: #000;
}
#content .vc_wp_custommenu .widget_nav_menu ul li a:before {
  display: none;
}
#content .vc_wp_custommenu .widget_nav_menu ul li.current-menu-item > a, #content .vc_wp_custommenu .widget_nav_menu ul li a:hover {
  border-color: #015dc7;
}
.widget_recent_comments li {
  font-size: 16px;
  line-height: 24px;
  color: #6a6a6a;
}
.widget_recent_comments li + li {
  padding-top: 26px;
  margin-top: 8px;
  border-top: 1px solid rgba(0, 0, 0, 0.085);
}
.widget_recent_comments li span {
  color: #4c4c4c;
  font-weight: 500;
}
.widget_recent_comments li a {
  color: #000001;
  font-weight: 500;
}
.widget_recent_comments li a:hover {
  color: #015dc7;
}
.widget_rss ul {
  list-style: none;
  padding: 0;
}
.widget_rss li {
  margin-bottom: 16px;
}
.widget_rss li:last-child {
  margin-bottom: 0;
}
.widget_rss .rsswidget {
  display: inline-block;
  color: #111;
}
.widget_rss .rsswidget .rss-widget-icon {
  margin-top: -2px;
}
.widget_rss .rss-date {
  font-size: 0.875em;
  font-style: italic;
  display: block;
}
.widget_rss cite {
  font-weight: 700;
  font-size: 0.875em;
}
.widget_calendar th, .widget_calendar td {
  text-align: center;
}
.contact-info .footer-widget-title {
  margin-bottom: 31px;
}
.contact-info ul {
  list-style: none;
  margin: 0;
}
.contact-info ul li {
  padding-left: 34px;
  position: relative;
  margin-bottom: 15px;
}
.contact-info ul li i {
  position: absolute;
  top: 2px;
  left: 0;
  font-size: 20px;
}
.contact-info ul li label {
  text-transform: uppercase;
  display: block;
}
.contact-info ul li:last-child {
  margin-bottom: 0;
}
.widget_text p {
  margin-bottom: 0;
}
.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 {
  line-height: 1.714;
}
.widget_newsletterwidget form {
  margin-top: 20px;
  position: relative;
  display: flex;
  flex-wrap: nowrap;
}
.widget_newsletterwidget form .tnp-field input[type="text"] {
  -webkit-border-radius: 25px;
  -khtml-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  -o-border-radius: 25px;
  border-radius: 25px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  height: 50px;
  padding: 10px 20px;
  background-color: transparent;
  font-size: 15px;
  color: #6c757d;
}
.widget_newsletterwidget form .tnp-field input[type="text"]:focus {
  border-color: #015dc7;
}
.widget_newsletterwidget form .tnp-field-email {
  flex-grow: 1;
  margin-bottom: 0;
}
.widget_newsletterwidget form .tnp-field-email .tnp-email {
  -webkit-border-radius: 25px;
  -khtml-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  -o-border-radius: 25px;
  border-radius: 25px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  height: 50px;
  padding: 10px 20px;
  background-color: transparent;
  font-size: 15px;
  color: #6c757d;
}
.widget_newsletterwidget form .tnp-field-email .tnp-email:focus {
  border-color: #015dc7;
}
.widget_newsletterwidget form .tnp-field-button {
  margin-bottom: 0;
}
.widget_newsletterwidget form .tnp-field-button .tnp-submit {
  background-color: #015dc7;
  border: none;
  line-height: 50px;
  padding: 0 20px;
  font-size: 15px;
  width: inherit;
  -webkit-border-radius: 30px;
  -khtml-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  border-radius: 30px;
}
.widget_newsletterwidget form .tnp-field-button .tnp-submit:hover {
  background-color: #a200ff;
}
.widget_newsletterwidget form .tnp-field {
  margin-right: 15px;
}
.widget_newsletterwidget form .tnp-field:last-child {
  margin-right: 0;
}
.widget_ct_recent_posts .entry-brief {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}
.widget_ct_recent_posts .entry-brief + .entry-brief {
  margin-top: 20px;
}
.widget_ct_recent_posts .entry-media {
  width: 80px;
  margin-right: 20px;
  min-width: 80px;
}
.widget_ct_recent_posts .entry-title {
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 3px;
}
.widget_ct_recent_posts .entry-title a {
  color: inherit;
}
.widget_ct_recent_posts .entry-title a:hover {
  color: #015dc7;
}
.widget_ct_recent_posts .item-time {
  font-size: 14px;
}
.widget_ct_recent_posts .item-time i {
  padding-right: 8px;
}
.tagcloud a, .entry-tags a {
  border: 1px solid #eaeaea;
  padding: 0 29px;
  color: #747da1;
  display: inline-block;
  font-size: 14px !important;
  line-height: 38px;
  margin-right: 6px;
  margin-bottom: 10px;
}
.tagcloud a:hover, .entry-tags a:hover {
  background-color: #015dc7;
  color: #fff;
  border-color: #015dc7;
  -webkit-box-shadow: 5px 5px 10px 0 rgba(1, 93, 199, 0.15);
  -khtml-box-shadow: 5px 5px 10px 0 rgba(1, 93, 199, 0.15);
  -moz-box-shadow: 5px 5px 10px 0 rgba(1, 93, 199, 0.15);
  -ms-box-shadow: 5px 5px 10px 0 rgba(1, 93, 199, 0.15);
  -o-box-shadow: 5px 5px 10px 0 rgba(1, 93, 199, 0.15);
  box-shadow: 5px 5px 10px 0 rgba(1, 93, 199, 0.15);
}
.widget_search .search-form {
  position: relative;
}
.widget_search .search-form .search-field {
  background-color: #f9f7ff;
  height: 60px;
  padding-left: 30px;
  padding-right: 70px;
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
  font-size: 12px;
  font-style: italic;
  border: none;
}
.widget_search .search-form .search-submit {
  padding: 0;
  border: none;
  line-height: 60px;
  width: 60px;
  position: absolute;
  top: 0;
  right: 0;
  color: #fff;
  font-size: 14px;
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
}
.widget_search .search-form .search-submit:before, .widget_search .search-form .search-submit:after {
  display: none;
}
.widget_search .search-form .search-submit:hover {
  color: #fff;
}
.ct-social {
  margin: 0;
  list-style: none;
  text-align: center;
}
.ct-social li {
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 10px;
}
.ct-social li a {
  font-size: 16px;
  color: #a09acd;
  background-color: #fff;
  height: 40px;
  width: 40px;
  line-height: 40px;
  -webkit-border-radius: 40px;
  -khtml-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
  border-radius: 40px;
  text-align: center;
  display: block;
  position: relative;
  border: 1px solid #e5e5e5;
  z-index: 1;
}
.ct-social li a:before {
  content: '';
  height: 40px;
  width: 40px;
  position: absolute;
  top: -1px;
  left: -1px;
  -webkit-border-radius: 40px;
  -khtml-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
  border-radius: 40px;
  z-index: -1;
  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;
}
.ct-social li a span {
  display: none;
}
.ct-social li a:hover {
  border-color: transparent;
  color: #fff;
}
.ct-social li a:hover:before {
  opacity: 1;
}
.ct-social li:last-child {
  margin-right: 0;
}
.ct-newsletter.widget {
  /* Widget Block */
}
.ct-newsletter.widget .ct-newsletter-inner {
  background-color: #f5f6f7;
  padding: 20px;
  position: relative;
  overflow: hidden;
}
.ct-newsletter.widget .ct-newsletter-inner:before {
  font-family: 'themify';
  content: "\e75a";
  font-size: 50px;
  font-weight: 700;
  position: absolute;
  right: 0;
  top: 0;
  opacity: 0.05;
}
.ct-newsletter.widget .ct-newsletter-inner .newsletter {
  position: relative;
}
.ct-newsletter.widget .ct-newsletter-inner .newsletter:after {
  color: #000;
  content: "Newslatter";
  font-family: "Montserrat";
  font-size: 50px;
  font-weight: 700;
  opacity: 0.05;
  position: absolute;
  top: -40px;
}
.ct-newsletter.widget .ct-newsletter-inner .ct-newsletter-introduction {
  font-size: 15px;
  font-style: italic;
  margin-bottom: 24px;
}
.ct-newsletter.widget .ct-newsletter-inner .tnp-field {
  position: relative;
  z-index: 1;
}
.ct-newsletter.widget .ct-newsletter-inner .tnp-field-email {
  margin-bottom: 15px;
}
.ct-newsletter.widget .ct-newsletter-inner .tnp-field-email .tnp-email {
  border: 2px solid #d0d0d0;
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
  height: 45px;
  padding: 5px 20px;
}
.ct-newsletter.widget .ct-newsletter-inner .tnp-field-email .tnp-email:focus {
  border-color: #015dc7;
}
.ct-newsletter.widget .ct-newsletter-inner .tnp-field-button .tnp-button {
  line-height: 45px;
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
  width: 100%;
}
.widget_block .widget-content .wp-block-search__label, .widget_block .widget-content .wp-block-group__inner-container > h2 {
  font-size: 22px;
  color: #1d274e;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 23px;
  display: block;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}
.widget_block .widget-content .wp-block-search__label:before, .widget_block .widget-content .wp-block-group__inner-container > h2:before {
  content: '';
  width: 40px;
  height: 3px;
  background-color: #015dc7;
  position: absolute;
  bottom: 0;
  left: 0;
}
.widget_block .widget-content ol, .widget_block .widget-content ul {
  padding-left: 0;
}
.widget_block.widget_search {
  position: relative;
}
.widget_block.widget_search .wp-block-search__button {
  padding: 0;
  border: none;
  line-height: 51px;
  height: 51px;
  width: 51px;
  border-left: 1px solid #ececf0;
  position: absolute;
  top: 0;
  right: 0;
  color: #333;
  font-size: 15px;
  background-image: none;
  background-color: transparent;
  -webkit-box-shadow: none;
  -khtml-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
  font-size: 0px;
}
.widget_block.widget_search .wp-block-search__button:before {
  content: "\f002";
  font-family: 'FontAwesome';
  font-size: 15px;
}
.widget_block.widget_search .wp-block-search__button:after {
  display: none;
}
.widget_block.widget_search .wp-block-search__button:hover {
  color: #015dc7;
}
.widget_block.widget_search .wp-block-search__input {
  font-size: 15px;
  color: #333;
  border-color: #ececf0;
  background-color: #fff;
  height: 51px;
  padding-left: 20px;
  padding-right: 51px;
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
}
.widget_block.widget_search .wp-block-search__input:focus {
  border-color: #015dc7;
}
.widget_block.widget_search .wp-block-search__input:focus + .wp-block-search__button {
  border-color: #015dc7;
}
.widget_block.widget_search .wp-block-search__inside-wrapper {
  display: block;
  position: relative;
}
.widget_block .wp-block-latest-posts__list li {
  font-size: 0px;
}
.widget_block .wp-block-latest-posts__list li a {
  color: #222;
  display: block;
  font-size: 15px;
  padding: 12px 0;
  position: relative;
  border-bottom: 1px solid #ececf0;
  font-family: 'Poppins', sans-serif;
  font-weight: normal;
  position: relative;
}
.widget_block .wp-block-latest-posts__list li a:before {
  content: '';
  height: 7px;
  width: 7px;
  -webkit-border-radius: 7px;
  -khtml-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  -o-border-radius: 7px;
  border-radius: 7px;
  background-color: #015dc7;
  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%);
  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;
}
.widget_block .wp-block-latest-posts__list li a:hover {
  color: #015dc7;
  padding-left: 30px;
}
.widget_block .wp-block-latest-posts__list li a:hover:before {
  left: 15px;
  opacity: 1;
}
.widget_block .wp-block-latest-comments li {
  color: #222;
  display: block;
  font-size: 15px;
  line-height: normal;
  padding: 12px 0;
  position: relative;
  border-bottom: 1px solid #ececf0;
  font-family: 'Poppins', sans-serif;
  font-weight: normal;
  position: relative;
}
.widget_block .wp-block-latest-comments li a {
  color: inherit;
}
.widget_block .wp-block-latest-comments li a:hover {
  color: #015dc7;
}
.page-content .wp-smiley, .entry-content .wp-smiley, .comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}
embed, iframe, object {
  max-width: 100%;
}
.custom-logo-link {
  display: inline-block;
}
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}
.wp-caption img[class*="wp-image-"] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.wp-caption .wp-caption-text {
  padding: 0.8075em 0;
  font-size: 0.875em;
  font-style: italic;
}
.wp-caption-text {
  text-align: center;
}
.gallery {
  margin-bottom: 1.5em;
}
.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%;
}
.gallery-caption {
  display: block;
}
.wp-video .mejs-container {
  min-width: inherit !important;
}
.wp-video .mejs-controls.mejs-offscreen {
  opacity: 1 !important;
  display: block !important;
}
.wp-video .mejs-controls .mejs-time-rail .mejs-time-current {
  background-color: #015dc7;
}
.comment-content a {
  word-wrap: break-word;
}
.bypostauthor {
  display: block;
}
.comments-area .comment-list-wrap {
  padding: 34px 0 0;
}
.comments-area .comment-respond {
  border-top: 1px solid #eaeaea;
  padding-top: 34px;
  margin-top: 50px;
}
.comments-area .comment-respond #cancel-comment-reply-link {
  color: #888;
}
.comments-area .comment-respond #cancel-comment-reply-link:hover {
  color: #a200ff;
}
.comments-area .comment-respond .logged-in-as {
  margin-bottom: 25px;
}
.comments-area .comment-respond .logged-in-as a {
  color: #888;
}
.comments-area .comment-respond .logged-in-as a:hover {
  color: #a200ff;
}
.comments-area .no-comments {
  display: none;
}
.comment-title {
  font-size: 18px;
  text-transform: capitalize;
  font-weight: 600;
  margin-bottom: 10px;
}
.comment-list {
  padding: 0;
  list-style: none;
}
.comment-list li .children {
  padding-left: 35px;
}
.comment-list li .children li {
  list-style: none;
  margin-top: 41px;
}
.comment-list li .comment-respond {
  margin-top: 30px;
  margin-left: 84px;
}
@media screen and (max-width: 767px) {
  .comment-list li .comment-respond {
    margin-left: 0;
  }
}
.comment-list > li {
  margin-bottom: 41px;
}
.comment-list > li:last-child {
  margin-bottom: 0;
}
.comment-inner {
  display: flex;
  flex-wrap: nowrap;
}
.comment-inner img.avatar {
  width: 100px;
  height: 100px;
  min-width: 100px;
  margin-right: 30px;
  float: left;
  -webkit-border-radius: 100px;
  -khtml-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  border-radius: 100px;
}
@media screen and (max-width: 767px) {
  .comment-inner {
    display: block;
  }
  .comment-inner img.avatar {
    margin: 0 0 25px;
  }
  .comment-inner .comment-reply {
    position: static;
    padding-top: 10px;
  }
}
.comments-title, .comment-reply-title {
  margin-bottom: 33px;
}
.logged-in .comment-reply-title {
  margin-bottom: 10px;
}
.comment-date {
  font-weight: 500;
  display: inline-block;
  font-size: 14px;
  margin-bottom: 14px;
}
.comment-content {
  position: relative;
  flex-grow: 1;
  padding: 7px 0 0 0;
}
.comment-content .comment-text p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 24px;
}
.comment-reply {
  position: absolute;
  right: 20px;
  top: 8px;
}
.comment-reply a {
  font-size: 14px;
  line-height: 1;
  display: inline-block;
  color: #aca8c9;
}
.comment-reply a:before {
  content: "\f112";
  font-family: FontAwesome;
  margin-right: 4px;
  font-weight: normal;
  color: inherit;
}
.comment-reply a:hover {
  color: #015dc7;
}
.comment-form .form-submit {
  padding-top: 20px;
  margin-bottom: 0;
}
.comment-form .form-submit .submit {
  -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: #6747ee;
  background-image: -webkit-gradient(linear, left top, right top, from(#6747ee), to(#9124dc));
  background-image: -webkit-linear-gradient(left, #6747ee, #9124dc);
  background-image: -moz-linear-gradient(left, #6747ee, #9124dc);
  background-image: -ms-linear-gradient(left, #6747ee, #9124dc);
  background-image: -o-linear-gradient(left, #6747ee, #9124dc);
  background-image: linear-gradient(left, #6747ee, #9124dc);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#6747ee', endColorStr='#9124dc', gradientType='1');
}
.comment-form .form-submit .submit:hover {
  background-color: #1d274e;
  background-image: none;
}
.comment-form .comment-notes {
  display: none;
}
.comment-form .comment-field {
  position: relative;
  margin-bottom: 20px;
}
.comment-form .comment-field textarea, .comment-form .comment-field input {
  padding-right: 67px;
}
.comment-form .comment-field i {
  position: absolute;
  right: 27px;
  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%);
}
.comment-form .comment-field.comment-form-comment i {
  top: 30px;
}
@media screen and (max-width: 767px) {
  .comment-inner, .comments-title {
    text-align: center;
  }
  .comment-inner img.avatar {
    float: none;
    display: inline-block;
  }
  .comment-content {
    display: block;
  }
  .comment-content ul, .comment-content ol {
    text-align: left;
  }
  .comment-content:before, .comment-content:after {
    border-color: transparent transparent #fff;
    border-width: 10px;
    left: 0;
    top: -19px;
    right: 0;
    margin: auto;
  }
  .comment-content:after {
    border-color: transparent transparent #e9e9e9;
    top: -21px;
  }
  .comment-list li .children {
    padding-left: 0;
  }
}
.site-footer {
  background-color: #fff;
  background-image: url(../images/bg-footer.png);
  position: relative;
}
.site-footer .top-footer {
  border-top: 1px solid #efefef;
  padding-top: 88px;
  padding-bottom: 97px;
}
.site-footer .top-footer .footer-widget-title {
  font-size: 30px;
  line-height: 1.55;
  text-transform: capitalize;
  margin-bottom: 20px;
}
.site-footer .top-footer a {
  color: inherit;
}
.site-footer .top-footer a:hover {
  color: #015dc7;
}
.site-footer .top-footer ul.menu li + li {
  padding-top: 15px;
}
.site-footer .top-footer ul.menu li a {
  color: inherit;
  padding-left: 0px;
  position: relative;
}
.site-footer .top-footer ul.menu li a:before {
  content: "\f178";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -khtml-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  display: block;
  font-family: "FontAwesome";
  color: #a200ff;
  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;
}
.site-footer .top-footer ul.menu li:hover > a, .site-footer .top-footer ul.menu li.current_page_item > a, .site-footer .top-footer ul.menu li.current-menu-item > a, .site-footer .top-footer ul.menu li.current_page_ancestor > a, .site-footer .top-footer ul.menu li.current-menu-ancestor > a {
  color: inherit;
  padding-left: 26px;
}
.site-footer .top-footer ul.menu li:hover > a:before, .site-footer .top-footer ul.menu li.current_page_item > a:before, .site-footer .top-footer ul.menu li.current-menu-item > a:before, .site-footer .top-footer ul.menu li.current_page_ancestor > a:before, .site-footer .top-footer ul.menu li.current-menu-ancestor > a:before {
  margin-left: 0;
  opacity: 1;
}
.site-footer .top-footer ul.menu li .sub-menu {
  margin-top: 15px;
  padding-left: 10px;
}
.site-footer .top-footer .tagcloud a:hover {
  color: #fff;
}
@media screen and (max-width: 991px) {
  .site-footer .top-footer {
    padding-bottom: 15px;
  }
  .site-footer .top-footer .ct-footer-item {
    margin-bottom: 45px;
  }
  .site-footer .top-footer .ct-footer-item:nth-child(2n+1) {
    clear: left;
  }
}
@media screen and (min-width: 992px) {
  .site-footer .top-footer.column-width .ct-footer-item.col-xl-3:nth-child(1) {
    max-width: 41%;
    flex: 0 0 41%;
    padding-right: 60px;
  }
  .site-footer .top-footer.column-width .ct-footer-item.col-xl-3:nth-child(2), .site-footer .top-footer.column-width .ct-footer-item.col-xl-3:nth-child(3), .site-footer .top-footer.column-width .ct-footer-item.col-xl-3:nth-child(4) {
    max-width: 19.6%;
    flex: 0 0 19.6%;
  }
}
.site-footer .bottom-footer {
  text-align: center;
}
.site-footer .bottom-footer a {
  color: #a200ff;
}
.site-footer .bottom-footer a:hover {
  color: #015dc7;
}
.site-footer .bottom-footer .bf-gap {
  width: 100%;
  background-image: url(../images/gap-footer.png);
  background-position: center;
  background-repeat: no-repeat;
  height: 1px;
}
.site-footer .bottom-footer .bottom-copyrigh {
  padding-top: 35px;
  padding-bottom: 35px;
}
.site-footer .bottom-footer cite {
  font-style: normal;
}
.site-footer .bottom-footer .footer-year {
  display: none;
}
.ct-scroll-top {
  background-color: #fff;
  top: -35px;
  margin: auto;
  color: #808ea1;
  height: 70px;
  position: absolute;
  right: 0;
  left: 0;
  border: 1px solid #efefef;
  text-align: center;
  width: 70px;
  font-size: 18px;
  z-index: 99;
  -webkit-border-radius: 45px;
  -khtml-border-radius: 45px;
  -moz-border-radius: 45px;
  -ms-border-radius: 45px;
  -o-border-radius: 45px;
  border-radius: 45px;
  line-height: 68px;
}
.ct-scroll-top:hover, .ct-scroll-top:focus, .ct-scroll-top:active {
  color: #a200ff;
}
.ct-modal.ct-search-popup .ct-modal-content form {
  padding: 23px 0;
  position: relative;
  border-bottom: 1px solid #fff;
}
.ct-modal.ct-search-popup .ct-modal-content .search-field {
  font-size: 65px;
  height: inherit;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  padding: 0;
  border: none;
  background-color: transparent;
  font-weight: 600;
  padding-right: 80px;
}
@media screen and (max-width: 991px) {
  .ct-modal.ct-search-popup .ct-modal-content .search-field {
    font-size: 48px;
    padding-right: 60px;
  }
}
@media screen and (max-width: 767px) {
  .ct-modal.ct-search-popup .ct-modal-content .search-field {
    font-size: 24px;
  }
}
.ct-modal.ct-search-popup .ct-modal-content .esc-search {
  margin-top: 24px;
  font-size: 15px;
  color: #fff;
}
.ct-modal.ct-search-popup .ct-modal-content .search-submit {
  background-image: none;
  background-color: transparent;
  color: #fff;
  font-size: 42px;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -khtml-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  right: 0;
  padding: 5px 0 5px 5px;
  line-height: 1;
}
@media screen and (max-width: 991px) {
  .ct-modal.ct-search-popup .ct-modal-content .search-submit {
    font-size: 36px;
  }
}
@media screen and (max-width: 767px) {
  .ct-modal.ct-search-popup .ct-modal-content .search-submit {
    display: none;
  }
}
.site-footer-custom .vc_wp_custommenu li a {
  font-size: 16px;
  color: #1e2331;
}
.site-footer-custom .vc_wp_custommenu li + li {
  margin-top: 14px;
}
.site-footer-custom .vc_wp_custommenu.style1 li a {
  color: #0f192d;
  position: relative;
}
.site-footer-custom .vc_wp_custommenu.style1 li a:before {
  content: "\f105";
  font-family: FontAwesome;
  color: #015dc7;
  position: absolute;
  top: 50%;
  left: -6px;
  -webkit-transform: translate(0, -50%);
  -khtml-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
  opacity: 0;
}
.site-footer-custom .vc_wp_custommenu.style1 li a:hover {
  color: #015dc7;
  padding-left: 14px;
}
.site-footer-custom .vc_wp_custommenu.style1 li a:hover:before {
  left: 0;
  opacity: 1;
}
.site-footer-custom .vc_wp_custommenu.style2 li a {
  color: rgba(255, 255, 255, 0.7);
}
.site-footer-custom .vc_wp_custommenu.style2 li a:hover {
  color: #fff;
}
.ct-copyright cite {
  font-style: normal;
  font-weight: 500;
}
.ct-hidden-sidebar {
  width: 380px;
  position: fixed;
  top: 0;
  right: 0;
  background-color: #fff;
  height: 100%;
  padding: 65px 0 40px 0;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
  -webkit-box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  -khtml-box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(380px);
  -khtml-transform: translateX(380px);
  -moz-transform: translateX(380px);
  -ms-transform: translateX(380px);
  -o-transform: translateX(380px);
  transform: translateX(380px);
}
.ct-hidden-sidebar.open {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0px);
  -khtml-transform: translateX(0px);
  -moz-transform: translateX(0px);
  -ms-transform: translateX(0px);
  -o-transform: translateX(0px);
  transform: translateX(0px);
}
.ct-hidden-sidebar .ct-close {
  position: absolute;
  top: 18px;
  right: 30px;
}
.ct-hidden-sidebar .ct-hidden-sidebar-inner {
  height: 100%;
  overflow: auto;
  padding: 0 40px;
}
.ct-hidden-sidebar .ct-hidden-sidebar-inner .widget {
  margin-bottom: 39px;
}
.ct-hidden-sidebar .ct-hidden-sidebar-inner .widget-title {
  text-align: left;
}
.ct-hidden-sidebar .ct-hidden-sidebar-inner .ct-social {
  text-align: left;
}
@media screen and (max-width: 991px) {
  .ct-hidden-sidebar {
    display: none;
  }
}
.preset2 .widget_ct_recent_posts .entry-title a:hover {
  color: #ff5a3c;
}
.preset2 .ct-social li a::before {
  background-color: #ff5a3c;
  background-image: none;
}
.preset2 .ct-spinner5 > div, .preset2 .ct-modal .ct-close:hover:before, .preset2 .ct-modal .ct-close:hover:after {
  background-color: #ff5a3c;
}
.preset2 .site-footer-custom .vc_wp_custommenu.style1 li a:hover, .preset2 .site-footer-custom .vc_wp_custommenu.style1 li a::before {
  color: #ff5a3c;
}
.admin-bar .ct-hidden-sidebar {
  padding-top: 95px;
}
.admin-bar .ct-hidden-sidebar .ct-close {
  top: 50px;
}
.hover-effect {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.hover-effect:before, .hover-effect:after {
  background-color: #000;
  content: "";
  height: 100%;
  left: -110%;
  opacity: 0.1;
  position: absolute;
  top: 0;
  -webkit-transition: all 0.5s ease 0s;
  -khtml-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  -webkit-transform: skewX(25deg);
  -khtml-transform: skewX(25deg);
  -moz-transform: skewX(25deg);
  -ms-transform: skewX(25deg);
  -o-transform: skewX(25deg);
  transform: skewX(25deg);
  width: 100%;
  z-index: -1;
}
.hover-effect:hover:before, .hover-effect:focus:before, .hover-effect:active:before {
  left: -10%;
  -webkit-transition: all 0.3s ease 0s;
  -khtml-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.hover-effect:hover:after, .hover-effect:focus:after, .hover-effect:active:after {
  left: -20%;
}
.item-featured img {
  width: 100%;
  -webkit-transition: all 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  -khtml-transition: all 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  -moz-transition: all 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  -ms-transition: all 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  -o-transition: all 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  transition: all 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
}
.item-featured a.no-thumnail {
  min-height: 280px;
  background-color: #015dc7;
}
.ct-carousel .item-title a {
  color: inherit;
}
.ct-carousel .item-title a:hover {
  color: #015dc7;
}
@media screen and (max-width: 991px) {
  .ct-grid.filter-click .ct-grid-inner .wpb_animate_when_almost_visible {
    opacity: 1;
  }
}
.ct-grid .ct-grid-inner, .ct-grid .grid-item-inner {
  position: relative;
}
.ct-grid .ct-grid-inner.ct-grid-masonry, .ct-grid .grid-item-inner.ct-grid-masonry {
  display: block;
}
.ct-grid .grid-item.ct-animated .grid-item-inner {
  animation: 0.65s ease 0s normal forwards 1 running moveUp;
  -webkit-animation: 0.65s ease 0s normal forwards 1 running moveUp;
  -webkit-transform: translateY(200px);
  -khtml-transform: translateY(200px);
  -moz-transform: translateY(200px);
  -ms-transform: translateY(200px);
  -o-transform: translateY(200px);
  transform: translateY(200px);
}
.ct-grid .ct-load-more {
  margin-top: 30px;
}
.ct-grid .ct-load-more i {
  margin-right: 5px;
}
.ct-grid .ct-load-more .loadmore-style2 {
  padding-left: 22px;
  padding-right: 22px;
  -webkit-border-radius: 4px;
  -khtml-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  background-color: #a200ff;
  border-color: #a200ff;
}
.ct-grid .ct-load-more .loadmore-style2 i {
  margin-right: 0;
  margin-left: 16px;
}
.ct-grid .ct-load-more .loadmore-style2:hover {
  background-color: #015dc7;
  border-color: #015dc7;
}
.ct-grid .item-title a {
  color: inherit;
}
.ct-grid .item-title a:hover {
  color: #015dc7;
}
.ct-grid .ct-grid-pagination {
  margin-top: 20px;
}
.ct-grid .item-featured a {
  display: block;
}
.grid-filter-wrap {
  margin-bottom: 30px;
  -webkit-border-radius: 60px;
  -khtml-border-radius: 60px;
  -moz-border-radius: 60px;
  -ms-border-radius: 60px;
  -o-border-radius: 60px;
  border-radius: 60px;
  border: 1px solid #f7f7f7;
  text-align: center;
}
.grid-filter-wrap .filter-item {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  color: #aab2d2;
  padding: 0 36px;
  position: relative;
  cursor: pointer;
  -webkit-border-radius: 60px;
  -khtml-border-radius: 60px;
  -moz-border-radius: 60px;
  -ms-border-radius: 60px;
  -o-border-radius: 60px;
  border-radius: 60px;
  line-height: 58px;
  display: inline-block;
  z-index: 1;
}
.grid-filter-wrap .filter-item:before {
  opacity: 0;
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background-color: #015dc7;
  background-image: -webkit-gradient(linear, left top, right top, from(#015dc7), to(#a200ff));
  background-image: -webkit-linear-gradient(left, #015dc7, #a200ff);
  background-image: -moz-linear-gradient(left, #015dc7, #a200ff);
  background-image: -ms-linear-gradient(left, #015dc7, #a200ff);
  background-image: -o-linear-gradient(left, #015dc7, #a200ff);
  background-image: linear-gradient(left, #015dc7, #a200ff);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#015dc7', endColorStr='#a200ff', gradientType='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;
  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;
}
.grid-filter-wrap .filter-item.active {
  color: #fff;
}
.grid-filter-wrap .filter-item.active:before {
  opacity: 1;
}
@media screen and (max-width: 1199px) {
  .grid-filter-wrap .filter-item {
    font-size: 13px;
    padding: 0 24px;
    line-height: 48px;
  }
}
@media screen and (max-width: 991px) {
  .grid-filter-wrap .filter-item {
    padding: 0 16px;
    line-height: 38px;
  }
}
.select-filter-wrap.nice-select, .select-order-wrap.nice-select {
  min-width: 160px;
  height: 40px;
  line-height: 40px;
  padding: 0 40px 0 21px;
  display: inline-block;
  width: inherit;
  border: none;
  -webkit-border-radius: 4px;
  -khtml-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.24);
  -khtml-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.24);
  -moz-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.24);
  -ms-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.24);
  -o-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.24);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.24);
  font-size: 15px;
}
.select-filter-wrap.nice-select:after, .select-order-wrap.nice-select:after {
  content: "\f2f9";
  right: 15px;
  font-size: 15px;
}
.select-order-wrap {
  margin-left: 15px;
}
.ct-grid-header {
  align-items: center;
  display: flex;
  display: -webkit-flex;
  display: -ms-flex;
  flex-wrap: nowrap;
  margin-bottom: 45px;
}
.ct-grid-header > h3 {
  margin: 0;
  font-size: 40px;
  letter-spacing: 0.03em;
  flex-grow: 1;
  -webkit-flex-grow: 1;
  -ms-flex-grow: 1;
  -o-flex-grow: 1;
}
@media screen and (max-width: 991px) {
  .ct-grid-header {
    display: block;
  }
  .ct-grid-header > h3 {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 991px) {
  .ct-grid-header .nice-select {
    margin: 15px 0 0;
  }
}
.item-order {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}
.owl-nav {
  text-align: center;
  margin-top: 36px;
}
.owl-nav .owl-prev, .owl-nav .owl-next {
  color: #fff;
  background-color: #a200ff;
  display: inline-block;
  font-size: 14px;
  height: 36px;
  line-height: 36px;
  -webkit-border-radius: 36px;
  -khtml-border-radius: 36px;
  -moz-border-radius: 36px;
  -ms-border-radius: 36px;
  -o-border-radius: 36px;
  border-radius: 36px;
  text-align: center;
  width: 35px;
  margin: 6px 8px;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
  padding: 0;
  border: none;
  letter-spacing: 0px;
}
.owl-nav .owl-prev:hover, .owl-nav .owl-next:hover {
  background-color: #a200ff;
  color: #fff !important;
}
.owl-nav .owl-prev i, .owl-nav .owl-next i {
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
}
.owl-dots {
  text-align: center;
  margin-top: 30px;
  display: flex;
  justify-content: center;
  padding: 0 4px;
}
.owl-dots .owl-dot {
  -webkit-border-radius: 10px;
  -khtml-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
  background-color: rgba(1, 93, 199, 0.5);
  display: inline-block;
  height: 10px;
  margin: 4px;
  padding: 0;
  border: none;
  width: 10px;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
  position: relative;
}
.owl-dots .owl-dot.active {
  background-color: #015dc7;
  width: 25px;
}
.owl-dots .owl-dot:before, .owl-dots .owl-dot:after {
  display: none;
}
.ct-carousel-filter {
  margin-bottom: 25px;
  /* Page Loading */
}
.ct-carousel-filter .ct-filter-item {
  font-size: 24px;
  line-height: normal;
  color: rgba(0, 0, 0, 0.33);
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
  margin: 0 38px 10px 0;
  display: inline-block;
}
.ct-carousel-filter .ct-filter-item.ct-filter-active, .ct-carousel-filter .ct-filter-item:hover {
  color: #015dc7;
  cursor: pointer;
}
#ct-loadding {
  height: 100%;
  position: fixed;
  width: 100%;
  z-index: 999999;
  top: 0;
  left: 0;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
  background-color: #fff;
}
#ct-loadding .loading-spin {
  display: block;
  height: 65px;
  margin: -32px auto 0;
  position: relative;
  top: 50%;
  width: 65px;
}
#ct-loadding .loading-spin .spinner {
  width: 60px;
  height: 60px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  -webkit-animation: spin-rotate-all 1s linear infinite;
  animation: spin-rotate-all 1s linear infinite;
}
#ct-loadding .loading-spin .spinner .right-side, #ct-loadding .loading-spin .spinner .left-side {
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  overflow: hidden;
  -webkit-animation: spin-fade-in-first 1.2s linear infinite alternate;
  animation: spin-fade-in-first 1.2s linear infinite alternate;
}
#ct-loadding .loading-spin .spinner .left-side {
  left: 0;
}
#ct-loadding .loading-spin .spinner .right-side {
  right: 0;
}
#ct-loadding .loading-spin .spinner.color-2 .right-side, #ct-loadding .loading-spin .spinner.color-2 .left-side {
  -webkit-animation: spin-fade-in-second 1.2s linear infinite alternate;
  animation: spin-fade-in-second 1.2s linear infinite alternate;
}
#ct-loadding .loading-spin .spinner .bar {
  width: 100%;
  height: 100%;
  -webkit-border-radius: 200px 0 0 200px;
  -khtml-border-radius: 200px 0 0 200px;
  -moz-border-radius: 200px 0 0 200px;
  -ms-border-radius: 200px 0 0 200px;
  -o-border-radius: 200px 0 0 200px;
  border-radius: 200px 0 0 200px;
  border: 6px solid #015dc7;
  position: relative;
}
#ct-loadding .loading-spin .spinner .bar:after {
  content: "";
  width: 6px;
  height: 6px;
  display: block;
  background: #015dc7;
  position: absolute;
  -webkit-border-radius: 6px;
  -khtml-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  border-radius: 6px;
}
#ct-loadding .loading-spin .spinner .right-side .bar {
  -webkit-border-radius: 0 200px 200px 0;
  -khtml-border-radius: 0 200px 200px 0;
  -moz-border-radius: 0 200px 200px 0;
  -ms-border-radius: 0 200px 200px 0;
  -o-border-radius: 0 200px 200px 0;
  border-radius: 0 200px 200px 0;
  border-left: none;
  -webkit-transform: rotate(-10deg);
  -webkit-transform-origin: left center;
  transform: rotate(-10deg);
  transform-origin: left center;
  -webkit-animation: spin-rotate-right 0.75s linear infinite alternate;
  animation: spin-rotate-right 0.75s linear infinite alternate;
}
#ct-loadding .loading-spin .spinner .right-side .bar:after {
  bottom: -6px;
  left: -3px;
}
#ct-loadding .loading-spin .spinner .left-side .bar {
  border-right: none;
  -webkit-transform: rotate(10deg);
  transform: rotate(10deg);
  -webkit-transform-origin: right center;
  transform-origin: right center;
  -webkit-animation: spin-rotate-left 0.75s linear infinite alternate;
  animation: spin-rotate-left 0.75s linear infinite alternate;
}
#ct-loadding .loading-spin .spinner .left-side .bar:after {
  bottom: -6px;
  right: -3px;
}
.ct-spinner2 {
  width: 45px;
  height: 45px;
  background-color: #015dc7;
  margin: 100px auto;
  -webkit-animation: rotateplane 1.2s infinite ease-in-out;
  animation: rotateplane 1.2s infinite ease-in-out;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 0;
  bottom: 0;
}
.ct-spinner3 {
  width: 45px;
  height: 45px;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 0;
  bottom: 0;
}
.ct-spinner3 .double-bounce1, .ct-spinner3 .double-bounce2 {
  width: 100%;
  height: 100%;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  background-color: #015dc7;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: ct-bounce 2s infinite ease-in-out;
  animation: ct-bounce 2s infinite ease-in-out;
}
.ct-spinner3 .double-bounce2 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
.ct-spinner4 {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 0;
  bottom: 0;
  width: 70px;
  height: 40px;
  text-align: center;
  font-size: 10px;
}
.ct-spinner4 > div {
  background-color: #015dc7;
  height: 100%;
  width: 6px;
  display: inline-block;
  -webkit-animation: ct-stretchdelay 1.2s infinite ease-in-out;
  animation: ct-stretchdelay 1.2s infinite ease-in-out;
}
.ct-spinner4 .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}
.ct-spinner4 .rect3 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
.ct-spinner4 .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}
.ct-spinner4 .rect5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}
.ct-spinner5 {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -khtml-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  width: 70px;
  text-align: center;
}
.ct-spinner5 > div {
  width: 18px;
  height: 18px;
  background-color: #015dc7;
  -webkit-border-radius: 100%;
  -khtml-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: ct-bouncedelay 1.4s infinite ease-in-out both;
  animation: ct-bouncedelay 1.4s infinite ease-in-out both;
}
.ct-spinner5 .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.ct-spinner5 .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
.ct-cube-grid {
  width: 40px;
  height: 40px;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 0;
  bottom: 0;
}
.ct-cube-grid .ct-cube {
  width: 33%;
  height: 33%;
  background-color: #015dc7;
  float: left;
  -webkit-animation: ct-cubeGridScaleDelay 1.3s infinite ease-in-out;
  animation: ct-cubeGridScaleDelay 1.3s infinite ease-in-out;
}
.ct-cube-grid .ct-cube1 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
.ct-cube-grid .ct-cube2 {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.ct-cube-grid .ct-cube3 {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
.ct-cube-grid .ct-cube4 {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}
.ct-cube-grid .ct-cube5 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
.ct-cube-grid .ct-cube6 {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.ct-cube-grid .ct-cube7 {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}
.ct-cube-grid .ct-cube8 {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}
.ct-cube-grid .ct-cube9 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
.ct-folding-cube {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 0;
  bottom: 0;
  width: 40px;
  height: 40px;
  -webkit-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
}
.ct-folding-cube .ct-cube {
  float: left;
  width: 50%;
  height: 50%;
  position: relative;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.ct-folding-cube .ct-cube:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #015dc7;
  -webkit-animation: ct-foldCubeAngle 2.4s infinite linear both;
  animation: ct-foldCubeAngle 2.4s infinite linear both;
  -webkit-transform-origin: 100% 100%;
  -ms-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
}
.ct-folding-cube .ct-cube2 {
  -webkit-transform: scale(1.1) rotateZ(90deg);
  transform: scale(1.1) rotateZ(90deg);
}
.ct-folding-cube .ct-cube2:before {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.ct-folding-cube .ct-cube3 {
  -webkit-transform: scale(1.1) rotateZ(180deg);
  transform: scale(1.1) rotateZ(180deg);
}
.ct-folding-cube .ct-cube3:before {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
.ct-folding-cube .ct-cube4 {
  -webkit-transform: scale(1.1) rotateZ(270deg);
  transform: scale(1.1) rotateZ(270deg);
}
.ct-folding-cube .ct-cube4:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}
.ct-loading-stairs {
  height: 100px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translate(0px, -50%);
  -khtml-transform: translate(0px, -50%);
  -moz-transform: translate(0px, -50%);
  -ms-transform: translate(0px, -50%);
  -o-transform: translate(0px, -50%);
  transform: translate(0px, -50%);
  width: 75px;
  margin-top: -25px;
}
.ct-loading-stairs .loader-bar {
  position: absolute;
  bottom: 0;
  width: 10px;
  height: 50%;
  background: #015dc7;
  transform-origin: center bottom;
  -webkit-box-shadow: 1px 1px 0 rgba(0, 0, 0, .2);
  -khtml-box-shadow: 1px 1px 0 rgba(0, 0, 0, .2);
  -moz-box-shadow: 1px 1px 0 rgba(0, 0, 0, .2);
  -ms-box-shadow: 1px 1px 0 rgba(0, 0, 0, .2);
  -o-box-shadow: 1px 1px 0 rgba(0, 0, 0, .2);
  box-shadow: 1px 1px 0 rgba(0, 0, 0, .2);
}
.ct-loading-stairs .loader-bar:nth-child(1) {
  left: 0px;
  -webkit-transform: scale(1, 0.2);
  -khtml-transform: scale(1, 0.2);
  -moz-transform: scale(1, 0.2);
  -ms-transform: scale(1, 0.2);
  -o-transform: scale(1, 0.2);
  transform: scale(1, 0.2);
  animation: barUp1 4s infinite;
  -webkit-animation: barUp1 4s infinite;
  -ms-animation: barUp1 4s infinite;
}
.ct-loading-stairs .loader-bar:nth-child(2) {
  left: 15px;
  -webkit-transform: scale(1, 0.4);
  -khtml-transform: scale(1, 0.4);
  -moz-transform: scale(1, 0.4);
  -ms-transform: scale(1, 0.4);
  -o-transform: scale(1, 0.4);
  transform: scale(1, 0.4);
  animation: barUp2 4s infinite;
  -webkit-animation: barUp2 4s infinite;
  -ms-animation: barUp2 4s infinite;
}
.ct-loading-stairs .loader-bar:nth-child(3) {
  left: 30px;
  -webkit-transform: scale(1, 0.6);
  -khtml-transform: scale(1, 0.6);
  -moz-transform: scale(1, 0.6);
  -ms-transform: scale(1, 0.6);
  -o-transform: scale(1, 0.6);
  transform: scale(1, 0.6);
  animation: barUp3 4s infinite;
  -webkit-animation: barUp3 4s infinite;
  -ms-animation: barUp3 4s infinite;
}
.ct-loading-stairs .loader-bar:nth-child(4) {
  left: 45px;
  -webkit-transform: scale(1, 0.8);
  -khtml-transform: scale(1, 0.8);
  -moz-transform: scale(1, 0.8);
  -ms-transform: scale(1, 0.8);
  -o-transform: scale(1, 0.8);
  transform: scale(1, 0.8);
  animation: barUp4 4s infinite;
  -webkit-animation: barUp4 4s infinite;
  -ms-animation: barUp4 4s infinite;
}
.ct-loading-stairs .loader-bar:nth-child(5) {
  left: 60px;
  -webkit-transform: scale(1, 1);
  -khtml-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  transform: scale(1, 1);
  animation: barUp5 4s infinite;
  -webkit-animation: barUp5 4s infinite;
  -ms-animation: barUp5 4s infinite;
}
.ct-loading-stairs .loader-ball {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 10px;
  height: 10px;
  background: #015dc7;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  animation: ball 4s infinite;
  -webkit-animation: ball 4s infinite;
  -ms-animation: ball 4s infinite;
}
.ct-spinner9-wrap {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0px, -50%);
  -khtml-transform: translate(0px, -50%);
  -moz-transform: translate(0px, -50%);
  -ms-transform: translate(0px, -50%);
  -o-transform: translate(0px, -50%);
  transform: translate(0px, -50%);
  left: 0;
  right: 0;
  width: 45px;
  height: 45px;
  margin: auto;
}
.ct-spinner9 {
  margin: 0 auto;
  width: 45px;
  height: 45px;
  position: relative;
  text-align: center;
  -webkit-animation: ct-rotate 2s infinite linear;
  animation: ct-rotate 2s infinite linear;
}
.ct-spinner9 .dot1, .ct-spinner9 .dot2 {
  width: 60%;
  height: 60%;
  display: inline-block;
  position: absolute;
  top: 0;
  background-color: #6747ee;
  background-image: -webkit-gradient(linear, left top, right top, from(#6747ee), to(#9124dc));
  background-image: -webkit-linear-gradient(left, #6747ee, #9124dc);
  background-image: -moz-linear-gradient(left, #6747ee, #9124dc);
  background-image: -ms-linear-gradient(left, #6747ee, #9124dc);
  background-image: -o-linear-gradient(left, #6747ee, #9124dc);
  background-image: linear-gradient(left, #6747ee, #9124dc);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#6747ee', endColorStr='#9124dc', gradientType='1');
  -webkit-border-radius: 100%;
  -khtml-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
  -webkit-animation: ct-bounce 2s infinite ease-in-out;
  animation: ct-bounce 2s infinite ease-in-out;
}
.ct-spinner9 .dot2 {
  top: auto;
  bottom: 0;
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
.nav-tabs.ct-tabs {
  border: none;
  margin-bottom: 10px;
}
.nav-tabs.ct-tabs .nav-item {
  margin: 0 0 10px 26px;
}
.nav-tabs.ct-tabs .nav-item:first-child {
  margin-left: 0;
}
.nav-tabs.ct-tabs .nav-item a {
  margin: 0;
  border: none;
  padding: 0;
  font-size: 13px;
  color: rgba(30, 35, 49, 0.33);
}
.nav-tabs.ct-tabs .nav-item a.active {
  color: #1e2331;
}
.entry-footer .entry-edit-link {
  display: none;
}
div.pp_overlay {
  z-index: 9999 !important;
  opacity: 0.85 !important;
}
.nav-tabs-none {
  border: none;
}
.nav-tabs-none li.nav-item {
  margin: 0;
}
.nav-tabs-none li.nav-item a.nav-link {
  border: none;
  padding: 0;
}
.owl-carousel[data-arrows="false"] .owl-nav, .owl-carousel[data-bullets="false"] .owl-dots {
  display: none;
}
.owl-carousel.nav-middle .owl-nav {
  margin: 0;
}
.owl-carousel.nav-middle .owl-nav .owl-prev, .owl-carousel.nav-middle .owl-nav .owl-next {
  margin: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0%, -50%);
  -khtml-transform: translate(0%, -50%);
  -moz-transform: translate(0%, -50%);
  -ms-transform: translate(0%, -50%);
  -o-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  height: 40px;
  width: 40px;
  line-height: 40px;
  color: rgba(0, 0, 0, 0.2);
  font-size: 35px;
  background-color: transparent;
}
.owl-carousel.nav-middle .owl-nav .owl-prev:hover, .owl-carousel.nav-middle .owl-nav .owl-next:hover {
  background-color: transparent;
  color: #000 !important;
}
.owl-carousel.nav-middle .owl-nav .owl-prev:hover:before, .owl-carousel.nav-middle .owl-nav .owl-next:hover:before, .owl-carousel.nav-middle .owl-nav .owl-prev:hover:after, .owl-carousel.nav-middle .owl-nav .owl-next:hover:after {
  display: none;
}
.owl-carousel.nav-middle .owl-nav .owl-prev {
  left: -80px;
}
.owl-carousel.nav-middle .owl-nav .owl-next {
  right: -80px;
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .owl-carousel.nav-middle .owl-nav .owl-prev {
    left: -60px;
  }
  .owl-carousel.nav-middle .owl-nav .owl-next {
    right: -60px;
  }
}
@media screen and (max-width: 1270px) {
  .owl-carousel.nav-middle .owl-nav .owl-prev {
    left: 8px;
  }
  .owl-carousel.nav-middle .owl-nav .owl-next {
    right: 8px;
  }
}
.ct-modal {
  background-color: rgba(29, 39, 78, 0.95);
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  -webkit-transform: translateY(-100%);
  -khtml-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
  opacity: 0;
  -webkit-transition: all 500ms ease-in-out;
  -khtml-transition: all 500ms ease-in-out;
  -moz-transition: all 500ms ease-in-out;
  -ms-transition: all 500ms ease-in-out;
  -o-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
}
.ct-modal .ct-modal-content {
  left: 0;
  margin: auto;
  max-width: 1200px;
  padding: 100px 15px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translate(0px, -50%) scaleX(0);
  -khtml-transform: translate(0px, -50%) scaleX(0);
  -moz-transform: translate(0px, -50%) scaleX(0);
  -ms-transform: translate(0px, -50%) scaleX(0);
  -o-transform: translate(0px, -50%) scaleX(0);
  transform: translate(0px, -50%) scaleX(0);
  position: relative;
  -webkit-transition: all 500ms ease-in-out;
  -khtml-transition: all 500ms ease-in-out;
  -moz-transition: all 500ms ease-in-out;
  -ms-transition: all 500ms ease-in-out;
  -o-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
  transition-delay: 500ms;
}
.ct-modal.open {
  -webkit-transform: translateY(0%);
  -khtml-transform: translateY(0%);
  -moz-transform: translateY(0%);
  -ms-transform: translateY(0%);
  -o-transform: translateY(0%);
  transform: translateY(0%);
  opacity: 1;
}
.ct-modal.open .ct-modal-content {
  -webkit-transform: translate(0px, -50%) scaleX(1);
  -khtml-transform: translate(0px, -50%) scaleX(1);
  -moz-transform: translate(0px, -50%) scaleX(1);
  -ms-transform: translate(0px, -50%) scaleX(1);
  -o-transform: translate(0px, -50%) scaleX(1);
  transform: translate(0px, -50%) scaleX(1);
}
.ct-modal.remove {
  -webkit-transform: translateY(-100%);
  -khtml-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
  opacity: 0;
  transition-delay: 500ms;
}
.ct-modal.remove .ct-modal-content {
  -webkit-transform: translate(0px, -50%) scaleX(0);
  -khtml-transform: translate(0px, -50%) scaleX(0);
  -moz-transform: translate(0px, -50%) scaleX(0);
  -ms-transform: translate(0px, -50%) scaleX(0);
  -o-transform: translate(0px, -50%) scaleX(0);
  transform: translate(0px, -50%) scaleX(0);
  transition-delay: 0ms;
}
.ct-modal .ct-close {
  position: absolute;
  top: 30px;
  right: 30px;
}
.ct-modal .ct-close:before, .ct-modal .ct-close:after {
  background-color: #fff;
}
.ct-modal .ct-close:hover:before, .ct-modal .ct-close:hover:after {
  background-color: #a200ff;
}
@media screen and (max-width: 991px) {
  .ct-modal .ct-close {
    display: block;
  }
}
@media screen and (max-width: 575px) {
  .ct-modal .ct-modal-content {
    max-width: 300px;
  }
}
.vc_row .ct-row-overlay {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.vc_row .ct-row-overlay.position-left {
  left: 0;
}
.vc_row .ct-row-overlay.position-right {
  right: 0;
}
.vc_row .ct-row-overlay span {
  font-size: 278px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.05);
  position: absolute;
  top: 0;
  left: 0;
  line-height: 1;
}
@media screen and (max-width: 991px) {
  .vc_row .ct-row-overlay span {
    font-size: 150px;
  }
}
@media screen and (max-width: 767px) {
  .vc_row .ct-row-overlay span {
    font-size: 80px;
  }
}
.vc_row .ct-row-overlay + .vc_column-inner {
  position: relative;
  z-index: inherit;
}
.slider-nav .thumbs {
  display: flex;
  flex-wrap: nowrap;
  margin: 0 -2px;
}
.slider-nav .thumb {
  width: 20%;
  padding: 0 2px;
  margin-top: 4px;
  -webkit-transition: all 400ms ease-in-out;
  -khtml-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
  cursor: pointer;
}
.slider-nav .thumb.active {
  opacity: 0.57;
}
.vc_row.bg-image-ps-top {
  background-position: top !important;
}
.vc_row.bg-image-ps-center {
  background-position: center !important;
}
.vc_row.bg-image-ps-bottom {
  background-position: bottom !important;
}
.ct-demo-bar {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  background: #fff;
  z-index: 99999;
  height: 100%;
  text-align: center;
  -webkit-transform: translate(301px, 0px);
  -khtml-transform: translate(301px, 0px);
  -moz-transform: translate(301px, 0px);
  -ms-transform: translate(301px, 0px);
  -o-transform: translate(301px, 0px);
  transform: translate(301px, 0px);
  -webkit-transition: transform 0.6s ease;
  -khtml-transition: transform 0.6s ease;
  -moz-transition: transform 0.6s ease;
  -ms-transition: transform 0.6s ease;
  -o-transition: transform 0.6s ease;
  transition: transform 0.6s ease;
}
@media screen and (max-width: 575px) {
  .ct-demo-bar {
    width: 260px;
    -webkit-transform: translate(260px, 0px);
    -khtml-transform: translate(260px, 0px);
    -moz-transform: translate(260px, 0px);
    -ms-transform: translate(260px, 0px);
    -o-transform: translate(260px, 0px);
    transform: translate(260px, 0px);
  }
}
.ct-demo-bar.active {
  -webkit-transform: translate(0px, 0px);
  -khtml-transform: translate(0px, 0px);
  -moz-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  -o-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
}
.ct-demo-bar .ct-demo-option {
  position: absolute;
  top: 150px;
  left: -40px;
  height: 110px;
  padding: 10px 0;
  width: 40px;
  background-color: #fff;
  -webkit-box-shadow: 0 3px 15px rgba(0, 0, 0, .1);
  -khtml-box-shadow: 0 3px 15px rgba(0, 0, 0, .1);
  -moz-box-shadow: 0 3px 15px rgba(0, 0, 0, .1);
  -ms-box-shadow: 0 3px 15px rgba(0, 0, 0, .1);
  -o-box-shadow: 0 3px 15px rgba(0, 0, 0, .1);
  box-shadow: 0 3px 15px rgba(0, 0, 0, .1);
  -webkit-border-radius: 5px 0 0 5px;
  -khtml-border-radius: 5px 0 0 5px;
  -moz-border-radius: 5px 0 0 5px;
  -ms-border-radius: 5px 0 0 5px;
  -o-border-radius: 5px 0 0 5px;
  border-radius: 5px 0 0 5px;
}
.ct-demo-bar .ct-demo-option span {
  position: absolute;
  background-color: #222;
  color: #fff;
  white-space: nowrap;
  padding: 0 12px;
  font-size: 13px;
  top: 0;
  right: 100%;
  margin-right: 12px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
}
.ct-demo-bar .ct-demo-option span:before {
  content: '';
  border-color: #222;
  border-style: solid;
  border-color: transparent transparent transparent #222;
  border-width: 6px;
  position: absolute;
  top: 50%;
  right: -12px;
  -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%);
}
.ct-demo-bar .ct-demo-option a {
  display: block;
  color: #222;
  font-size: 15px;
  height: 30px;
  line-height: 30px;
  position: relative;
}
.ct-demo-bar .ct-demo-option a:first-child {
  font-size: 16px;
}
.ct-demo-bar .ct-demo-option a:hover span {
  opacity: 1;
  visibility: visible;
}
.ct-demo-bar .ct-demo-bar-meta {
  padding: 40px 20px 0 20px;
}
.ct-demo-bar .ct-demo-bar-meta h4 {
  font-size: 18px;
}
.ct-demo-bar .ct-demo-bar-inner {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: -1px 1px 10px rgba(0, 0, 0, .1);
  -khtml-box-shadow: -1px 1px 10px rgba(0, 0, 0, .1);
  -moz-box-shadow: -1px 1px 10px rgba(0, 0, 0, .1);
  -ms-box-shadow: -1px 1px 10px rgba(0, 0, 0, .1);
  -o-box-shadow: -1px 1px 10px rgba(0, 0, 0, .1);
  box-shadow: -1px 1px 10px rgba(0, 0, 0, .1);
  overflow: auto;
  height: 100%;
  color: #222;
  line-height: 1.5;
  font-size: 14px;
}
.ct-demo-bar .ct-demo-bar-inner:hover {
  overflow-y: auto;
}
.ct-demo-bar .ct-demo-bar-list {
  list-style: none;
  margin: 0;
  padding: 20px;
}
.ct-demo-bar .ct-demo-bar-item {
  position: relative;
}
.ct-demo-bar .ct-demo-bar-item:before {
  z-index: 1;
  content: '';
  background-color: rgba(0, 0, 0, 0.78);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -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;
}
.ct-demo-bar .ct-demo-bar-item .ct-demo-bar-holder {
  position: absolute;
  top: 50%;
  padding: 20px;
  left: 0;
  right: 0;
  -webkit-transform: translate(0, -50%);
  -khtml-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  -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;
  z-index: 2;
}
.ct-demo-bar .ct-demo-bar-item .ct-demo-bar-holder h6 {
  color: #fff;
  margin-bottom: 18px;
}
.ct-demo-bar .ct-demo-bar-item .ct-demo-bar-holder .btn {
  line-height: 40px;
  font-size: 14px;
  padding: 0 20px;
}
.ct-demo-bar .ct-demo-bar-item + .ct-demo-bar-item {
  margin-top: 20px;
}
.ct-demo-bar .ct-demo-bar-item:hover:before, .ct-demo-bar .ct-demo-bar-item:hover .ct-demo-bar-holder {
  opacity: 1;
}
@media screen and (max-width: 1023px) {
  .site-content {
    position: relative;
    overflow: hidden;
  }
}
body img.mfp-img {
  padding: 0 !important;
}
body .mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.85;
  background-color: #000;
}
body .mfp-container .mfp-content {
  padding: 15px;
}
body .mfp-figure::after {
  display: none;
}
body .mfp-bottom-bar {
  margin-top: 0;
  width: inherit;
  left: 15px;
  right: 15px;
}
body .mfp-image-holder .mfp-close, body .mfp-iframe-holder .mfp-close {
  line-height: 30px;
  height: 30px;
  padding: 0;
  right: 0px;
  text-align: center;
  top: 0;
  width: 30px;
  -webkit-border-radius: 30px;
  -khtml-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  border-radius: 30px;
  letter-spacing: 0px;
  font-weight: normal;
  overflow: hidden;
  background-color: #6747ee;
  background-image: -webkit-gradient(linear, left top, right top, from(#6747ee), to(#9124dc));
  background-image: -webkit-linear-gradient(left, #6747ee, #9124dc);
  background-image: -moz-linear-gradient(left, #6747ee, #9124dc);
  background-image: -ms-linear-gradient(left, #6747ee, #9124dc);
  background-image: -o-linear-gradient(left, #6747ee, #9124dc);
  background-image: linear-gradient(left, #6747ee, #9124dc);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#6747ee', endColorStr='#9124dc', gradientType='1');
  opacity: 1;
}
body .mfp-image-holder .mfp-close:before, body .mfp-iframe-holder .mfp-close:before, body .mfp-image-holder .mfp-close:after, body .mfp-iframe-holder .mfp-close:after {
  display: none;
  background-color: #1d274e;
  background-image: none;
}
.pp_pic_holder .ppt, .pp_pic_holder .pp_gallery {
  display: none !important;
}
.mfp-wrap .mfp-container .mfp-arrow {
  background-color: #6747ee;
  background-image: -webkit-gradient(linear, left top, right top, from(#6747ee), to(#9124dc));
  background-image: -webkit-linear-gradient(left, #6747ee, #9124dc);
  background-image: -moz-linear-gradient(left, #6747ee, #9124dc);
  background-image: -ms-linear-gradient(left, #6747ee, #9124dc);
  background-image: -o-linear-gradient(left, #6747ee, #9124dc);
  background-image: linear-gradient(left, #6747ee, #9124dc);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#6747ee', endColorStr='#9124dc', gradientType='1');
  width: 50px;
  height: 50px;
  -webkit-border-radius: 50px !important;
  -khtml-border-radius: 50px !important;
  -moz-border-radius: 50px !important;
  -ms-border-radius: 50px !important;
  -o-border-radius: 50px !important;
  border-radius: 50px !important;
  opacity: 1;
}
.mfp-wrap .mfp-container .mfp-arrow:before, .mfp-wrap .mfp-container .mfp-arrow:after {
  border: none;
}
.mfp-wrap .mfp-container .mfp-arrow:before {
  font-family: "Material-Design-Iconic-Font";
  font-size: 20px;
  color: #fff;
  margin: 0;
  padding: 0;
  line-height: normal;
  position: absolute;
  top: 50%;
  display: block;
  -webkit-transform: translate(-50%, -50%);
  -khtml-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 1;
  left: 50%;
  width: auto;
  height: auto;
  background-color: transparent;
}
.mfp-wrap .mfp-container .mfp-arrow.mfp-arrow-left {
  margin: -25px 0 0 30px;
}
.mfp-wrap .mfp-container .mfp-arrow.mfp-arrow-left:before {
  content: "\f2ea";
}
.mfp-wrap .mfp-container .mfp-arrow.mfp-arrow-right {
  margin: -25px 30px 0 0;
}
.mfp-wrap .mfp-container .mfp-arrow.mfp-arrow-right:before {
  content: "\f2ee";
}
.wpb_revslider_element {
  margin-bottom: 0 !important;
}
body .site .rev_slider, body .site .revslider-initialised {
  margin-bottom: 0 !important;
}
body .site .rev_slider cite, body .site .revslider-initialised cite {
  font-style: normal;
  color: #ff5a3c;
}
body .site .rev_slider .ct-video-button, body .site .revslider-initialised .ct-video-button {
  text-align: center !important;
  height: 120px !important;
  width: 120px !important;
  line-height: 120px !important;
  background-color: #6747ee;
  background-image: -webkit-gradient(linear, left top, right top, from(#6747ee), to(#9124dc));
  background-image: -webkit-linear-gradient(left, #6747ee, #9124dc);
  background-image: -moz-linear-gradient(left, #6747ee, #9124dc);
  background-image: -ms-linear-gradient(left, #6747ee, #9124dc);
  background-image: -o-linear-gradient(left, #6747ee, #9124dc);
  background-image: linear-gradient(left, #6747ee, #9124dc);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#6747ee', endColorStr='#9124dc', gradientType='1');
  z-index: 1;
  position: relative;
}
body .site .rev_slider .ct-video-button i, body .site .revslider-initialised .ct-video-button 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%);
}
body .site .rev_slider .ct-video-button:before, body .site .revslider-initialised .ct-video-button:before {
  content: '';
  height: 150px;
  width: 150px;
  -webkit-border-radius: 150px;
  -khtml-border-radius: 150px;
  -moz-border-radius: 150px;
  -ms-border-radius: 150px;
  -o-border-radius: 150px;
  border-radius: 150px;
  background-color: rgba(255, 255, 255, 0.06);
  position: absolute;
  top: -15px;
  left: -15px;
  z-index: -1;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
}
body .site .rev_slider .ct-video-button:hover:before, body .site .revslider-initialised .ct-video-button:hover:before {
  opacity: 0;
}
@media screen and (max-width: 1199px) {
  body .site .rev_slider .ct-video-button, body .site .revslider-initialised .ct-video-button {
    height: 80px !important;
    width: 80px !important;
    line-height: 80px !important;
  }
  body .site .rev_slider .ct-video-button:before, body .site .revslider-initialised .ct-video-button:before {
    height: 110px;
    width: 110px;
  }
}
body .site .rev_slider .lt-heading, body .site .revslider-initialised .lt-heading {
  letter-spacing: -0.03em !important;
}
body .site .rev_slider .tp-leftarrow.custom, body .site .revslider-initialised .tp-leftarrow.custom, body .site .rev_slider .tp-rightarrow.custom, body .site .revslider-initialised .tp-rightarrow.custom {
  width: 60px !important;
  height: 60px !important;
  -webkit-border-radius: 0px !important;
  -khtml-border-radius: 0px !important;
  -moz-border-radius: 0px !important;
  -ms-border-radius: 0px !important;
  -o-border-radius: 0px !important;
  border-radius: 0px !important;
  background-color: transparent !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  -webkit-transition: all 0.3s linear !important;
  -khtml-transition: all 0.3s linear !important;
  -moz-transition: all 0.3s linear !important;
  -ms-transition: all 0.3s linear !important;
  -o-transition: all 0.3s linear !important;
  transition: all 0.3s linear !important;
  opacity: 0.3 !important;
}
body .site .rev_slider .tp-leftarrow.custom:before, body .site .revslider-initialised .tp-leftarrow.custom:before, body .site .rev_slider .tp-rightarrow.custom:before, body .site .revslider-initialised .tp-rightarrow.custom:before, body .site .rev_slider .tp-leftarrow.custom:after, body .site .revslider-initialised .tp-leftarrow.custom:after, body .site .rev_slider .tp-rightarrow.custom:after, body .site .revslider-initialised .tp-rightarrow.custom:after {
  display: none !important;
}
body .site .rev_slider .tp-leftarrow.custom:hover, body .site .revslider-initialised .tp-leftarrow.custom:hover, body .site .rev_slider .tp-rightarrow.custom:hover, body .site .revslider-initialised .tp-rightarrow.custom:hover {
  opacity: 1 !important;
}
body .site .rev_slider .tp-leftarrow.custom, body .site .revslider-initialised .tp-leftarrow.custom {
  background-image: url(../images/slider-arrow-left.png) !important;
}
body .site .rev_slider .tp-rightarrow.custom, body .site .revslider-initialised .tp-rightarrow.custom {
  background-image: url(../images/slider-arrow-right.png) !important;
}
body .site .rev_slider .tp-bullets.custom .tp-bullet, body .site .revslider-initialised .tp-bullets.custom .tp-bullet {
  opacity: 0.9 !important;
  height: 10px !important;
  width: 10px !important;
  -webkit-border-radius: 10px !important;
  -khtml-border-radius: 10px !important;
  -moz-border-radius: 10px !important;
  -ms-border-radius: 10px !important;
  -o-border-radius: 10px !important;
  border-radius: 10px !important;
  background: #fff !important;
}
body .site .rev_slider .tp-bullets.custom .tp-bullet:before, body .site .revslider-initialised .tp-bullets.custom .tp-bullet:before {
  content: '';
  height: 16px !important;
  width: 16px !important;
  -webkit-border-radius: 16px !important;
  -khtml-border-radius: 16px !important;
  -moz-border-radius: 16px !important;
  -ms-border-radius: 16px !important;
  -o-border-radius: 16px !important;
  border-radius: 16px !important;
  border: 6px solid transparent !important;
  position: absolute !important;
  top: -3px !important;
  left: -3px !important;
  -webkit-transition: all 0.3s linear !important;
  -khtml-transition: all 0.3s linear !important;
  -moz-transition: all 0.3s linear !important;
  -ms-transition: all 0.3s linear !important;
  -o-transition: all 0.3s linear !important;
  transition: all 0.3s linear !important;
}
body .site .rev_slider .tp-bullets.custom .tp-bullet.selected, body .site .revslider-initialised .tp-bullets.custom .tp-bullet.selected {
  background-color: #fff !important;
}
body .site .rev_slider .tp-bullets.custom .tp-bullet.selected:before, body .site .revslider-initialised .tp-bullets.custom .tp-bullet.selected:before {
  border-color: #fff !important;
}
.ct-google-map .gm-control-active.gm-fullscreen-control {
  line-height: 40px;
}
.wpb_text_column p {
  margin-bottom: 21px;
}
.ct-heading .ct-heading-sub {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: 0.2em;
  font-family: inherit;
  display: inline-block;
}
.ct-heading .ct-heading-sub:not(.colored) {
  background-color: #015dc7;
  background-image: -webkit-gradient(linear, left top, right top, from(#015dc7), to(#a200ff));
  background-image: -webkit-linear-gradient(left, #015dc7, #a200ff);
  background-image: -moz-linear-gradient(left, #015dc7, #a200ff);
  background-image: -ms-linear-gradient(left, #015dc7, #a200ff);
  background-image: -o-linear-gradient(left, #015dc7, #a200ff);
  background-image: linear-gradient(left, #015dc7, #a200ff);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#015dc7', endColorStr='#a200ff', gradientType='1');
  background-color: transparent;
  background-clip: text;
  -o-background-clip: text;
  -ms-background-clip: text;
  -moz-background-clip: text;
  -webkit-background-clip: text;
  text-fill-color: transparent;
  -o-text-fill-color: transparent;
  -ms-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  -webkit-text-fill-color: transparent;
}
.ct-heading .ct-heading-sub.style2 {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 27px;
}
.ct-heading.align-left .ct-heading-sub.style2 {
  padding-left: 100px;
  position: relative;
}
.ct-heading.align-left .ct-heading-sub.style2:before {
  content: '';
  width: 80px;
  height: 2px;
  background-color: #015dc7;
  background-image: -webkit-gradient(linear, left top, right top, from(#015dc7), to(#a200ff));
  background-image: -webkit-linear-gradient(left, #015dc7, #a200ff);
  background-image: -moz-linear-gradient(left, #015dc7, #a200ff);
  background-image: -ms-linear-gradient(left, #015dc7, #a200ff);
  background-image: -o-linear-gradient(left, #015dc7, #a200ff);
  background-image: linear-gradient(left, #015dc7, #a200ff);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#015dc7', endColorStr='#a200ff', gradientType='1');
  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;
}
.ct-heading.align-right .ct-heading-sub.style2 {
  padding-right: 100px;
  position: relative;
}
.ct-heading.align-right .ct-heading-sub.style2:before {
  content: '';
  width: 80px;
  height: 2px;
  background-color: #015dc7;
  background-image: -webkit-gradient(linear, left top, right top, from(#015dc7), to(#a200ff));
  background-image: -webkit-linear-gradient(left, #015dc7, #a200ff);
  background-image: -moz-linear-gradient(left, #015dc7, #a200ff);
  background-image: -ms-linear-gradient(left, #015dc7, #a200ff);
  background-image: -o-linear-gradient(left, #015dc7, #a200ff);
  background-image: linear-gradient(left, #015dc7, #a200ff);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#015dc7', endColorStr='#a200ff', gradientType='1');
  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;
}
.ct-heading.align-center .ct-heading-sub.style2 {
  padding-left: 100px;
  padding-right: 100px;
  position: relative;
}
.ct-heading.align-center .ct-heading-sub.style2:before, .ct-heading.align-center .ct-heading-sub.style2:after {
  content: '';
  width: 80px;
  height: 2px;
  background-color: #015dc7;
  background-image: -webkit-gradient(linear, left top, right top, from(#015dc7), to(#a200ff));
  background-image: -webkit-linear-gradient(left, #015dc7, #a200ff);
  background-image: -moz-linear-gradient(left, #015dc7, #a200ff);
  background-image: -ms-linear-gradient(left, #015dc7, #a200ff);
  background-image: -o-linear-gradient(left, #015dc7, #a200ff);
  background-image: linear-gradient(left, #015dc7, #a200ff);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#015dc7', endColorStr='#a200ff', gradientType='1');
  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%);
}
.ct-heading.align-center .ct-heading-sub.style2:before {
  left: 0;
}
.ct-heading.align-center .ct-heading-sub.style2:after {
  right: 0;
}
@media screen and (max-width: 991px) {
  .ct-heading.align-center .ct-heading-sub.style2 {
    padding-left: 80px;
    padding-right: 80px;
  }
  .ct-heading.align-center .ct-heading-sub.style2:before, .ct-heading.align-center .ct-heading-sub.style2:after {
    width: 60px;
  }
}
.ct-heading h3.ct-heading-tag {
  font-size: 60px;
  line-height: 1.16667;
  letter-spacing: -0.03em;
}
@media screen and (max-width: 767px) {
  .ct-heading h3.ct-heading-tag br {
    display: none;
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .ct-heading h3.ct-heading-tag.custom-size {
    font-size: 45px;
  }
}
.ct-heading h3.ct-heading-tag cite {
  font-style: normal;
  color: #ff5a3c;
}
.ct-heading .ct-heading-desc {
  padding-top: 19px;
  font-size: 14px;
  line-height: 1.857;
}
.ct-heading .line-gap {
  width: 114px;
  height: 24px;
  display: inline-block;
  position: relative;
  margin-top: 27px;
}
.ct-heading .line-gap:before, .ct-heading .line-gap:after {
  content: '';
  width: 40px;
  height: 2px;
  background-color: #015dc7;
  background-image: -webkit-gradient(linear, left top, right top, from(#015dc7), to(#a200ff));
  background-image: -webkit-linear-gradient(left, #015dc7, #a200ff);
  background-image: -moz-linear-gradient(left, #015dc7, #a200ff);
  background-image: -ms-linear-gradient(left, #015dc7, #a200ff);
  background-image: -o-linear-gradient(left, #015dc7, #a200ff);
  background-image: linear-gradient(left, #015dc7, #a200ff);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#015dc7', endColorStr='#a200ff', gradientType='1');
  position: absolute;
  top: 11px;
}
.ct-heading .line-gap:before {
  left: 0;
}
.ct-heading .line-gap:after {
  right: 0;
}
.ct-heading .line-gap span {
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  -webkit-transform: translate(0, -50%) rotate(-45deg);
  -khtml-transform: translate(0, -50%) rotate(-45deg);
  -moz-transform: translate(0, -50%) rotate(-45deg);
  -ms-transform: translate(0, -50%) rotate(-45deg);
  -o-transform: translate(0, -50%) rotate(-45deg);
  transform: translate(0, -50%) rotate(-45deg);
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
  border-image-source: linear-gradient(to right, #6747ee 0%, #9124dc 100%);
  border-image-source: -webkit-gradient(to right, #6747ee 0%, #9124dc 100%);
  border-image-source: -ms-linear-gradient(to right, #6747ee 0%, #9124dc 100%);
  border-image-source: -o-linear-gradient(to right, #6747ee 0%, #9124dc 100%);
  border-image-slice: 1;
  border-width: 2px;
  border-style: solid;
}
.ct-contact-info {
  background-color: rgba(45, 0, 88, 0.2);
  padding: 37px 40px;
}
.ct-contact-info .contact-info-inner {
  display: flex;
  flex-wrap: nowrap;
}
.ct-contact-info .ct-contact-info-icon {
  padding-top: 5px;
}
.ct-contact-info .ct-contact-info-icon i {
  font-size: 60px;
  margin-right: 30px;
}
@media screen and (max-width: 767px) {
  .ct-contact-info .ct-contact-info-icon i {
    font-size: 36px;
    margin-right: 20px;
  }
}
.ct-contact-info .ct-contact-info-meta span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
}
@media screen and (max-width: 767px) {
  .ct-contact-info .ct-contact-info-meta span {
    letter-spacing: 0.1em;
    font-size: 13px;
  }
}
.ct-contact-info .ct-contact-info-meta h3 {
  font-size: 36px;
  margin: 0;
  color: #fff;
  font-weight: normal;
  letter-spacing: -0.03em;
  margin-top: 17px;
}
@media screen and (max-width: 767px) {
  .ct-contact-info .ct-contact-info-meta h3 {
    font-size: 20px;
  }
}
.ct-contact-info .ct-contact-info-meta a {
  color: inherit;
}
.ct-contact-info .ct-contact-info-meta a:hover {
  color: inherit;
}
@media screen and (max-width: 767px) {
  .ct-contact-info {
    padding: 27px 18px 27px 20px;
  }
}
.ct-contact-info.style-dark {
  background-color: #fff;
}
.ct-contact-info.style-dark .ct-contact-info-meta span {
  color: #8788b1;
}
.ct-contact-info.style-dark .ct-contact-info-meta h3 {
  color: #1d274e;
}
.ct-video-button {
  background-color: #015dc7;
  background-image: -webkit-gradient(linear, left top, right top, from(#015dc7), to(#a200ff));
  background-image: -webkit-linear-gradient(left, #015dc7, #a200ff);
  background-image: -moz-linear-gradient(left, #015dc7, #a200ff);
  background-image: -ms-linear-gradient(left, #015dc7, #a200ff);
  background-image: -o-linear-gradient(left, #015dc7, #a200ff);
  background-image: linear-gradient(left, #015dc7, #a200ff);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#015dc7', endColorStr='#a200ff', gradientType='1');
  height: 100px;
  width: 100px;
  -webkit-border-radius: 100px;
  -khtml-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  border-radius: 100px;
  line-height: 100px;
  color: #fff;
  font-size: 16px;
  text-align: center;
  display: inline-block;
  position: relative;
}
.ct-video-button:hover, .ct-video-button:focus {
  color: #fff;
  box-shadow: 0 0 0 10px rgba(1, 93, 199, 0.10), 0 0 0 20px rgba(1, 93, 199, 0.10);
  -webkit-box-shadow: 0 0 0 10px rgba(1, 93, 199, 0.10), 0 0 0 20px rgba(1, 93, 199, 0.10);
}
.ct-video-button.style2 {
  height: 70px;
  width: 70px;
  line-height: 70px;
  font-size: 15px;
  background-color: #fff;
  background-image: none;
  -webkit-box-shadow: none;
  -khtml-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
  z-index: 1;
}
.ct-video-button.style2:before, .ct-video-button.style2:after {
  content: '';
  position: absolute;
  z-index: -1;
  display: block;
  border: 2px solid rgba(255, 255, 255, 0.2);
  -webkit-border-radius: 100%;
  -khtml-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
}
.ct-video-button.style2:before {
  width: 80px;
  height: 80px;
  left: -5px;
  top: -5px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  -webkit-animation: video-icon-animation 1.4s linear infinite;
  animation: video-icon-animation 1.4s linear infinite;
}
.ct-video-button.style2:after {
  width: 90px;
  height: 90px;
  left: -10px;
  top: -10px;
  -webkit-animation: video-icon-animation 1.4s 0.7s linear infinite;
  animation: video-icon-animation 1.4s 0.7s linear infinite;
}
.ct-video-button.style2 i {
  background-color: #015dc7;
  background-image: -webkit-gradient(linear, left top, right top, from(#015dc7), to(#a200ff));
  background-image: -webkit-linear-gradient(left, #015dc7, #a200ff);
  background-image: -moz-linear-gradient(left, #015dc7, #a200ff);
  background-image: -ms-linear-gradient(left, #015dc7, #a200ff);
  background-image: -o-linear-gradient(left, #015dc7, #a200ff);
  background-image: linear-gradient(left, #015dc7, #a200ff);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#015dc7', endColorStr='#a200ff', gradientType='1');
  background-color: transparent;
  background-clip: text;
  -o-background-clip: text;
  -ms-background-clip: text;
  -moz-background-clip: text;
  -webkit-background-clip: text;
  text-fill-color: transparent;
  -o-text-fill-color: transparent;
  -ms-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  -webkit-text-fill-color: transparent;
}
.ct-video-button.style3 {
  height: 90px;
  width: 90px;
  line-height: 90px;
  font-size: 18px;
  background-color: rgba(255, 255, 255, 0.25);
  background-image: none;
  -webkit-box-shadow: none;
  -khtml-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
  z-index: 1;
  color: #ff5a3c;
  position: relative;
}
.ct-video-button.style3:before {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  width: 120px;
  height: 120px;
  -webkit-border-radius: 120px;
  -khtml-border-radius: 120px;
  -moz-border-radius: 120px;
  -ms-border-radius: 120px;
  -o-border-radius: 120px;
  border-radius: 120px;
  background-color: rgba(255, 255, 255, 0.25);
  z-index: -1;
}
.ct-video-button.style3:hover {
  background-color: #fff;
}
.ct-video-inner {
  position: relative;
  display: inline-block;
  text-align: center;
}
.ct-video-inner .ct-video-intro {
  position: relative;
}
.ct-video-inner .ct-video-intro img {
  -webkit-box-shadow: 0 8px 16px rgba(162, 0, 255, 0.2);
  -khtml-box-shadow: 0 8px 16px rgba(162, 0, 255, 0.2);
  -moz-box-shadow: 0 8px 16px rgba(162, 0, 255, 0.2);
  -ms-box-shadow: 0 8px 16px rgba(162, 0, 255, 0.2);
  -o-box-shadow: 0 8px 16px rgba(162, 0, 255, 0.2);
  box-shadow: 0 8px 16px rgba(162, 0, 255, 0.2);
  position: relative;
  z-index: 1;
}
.ct-video-inner .ct-video-intro + .ct-video-button {
  position: absolute;
  bottom: 60px;
  left: 60px;
  z-index: 2;
}
.ct-video-inner .ct-video-intro.intro-style2 img {
  -webkit-box-shadow: none;
  -khtml-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}
.ct-video-inner .ct-video-intro.intro-style2:before {
  content: '';
  z-index: 2;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #6747ee;
  background-image: -webkit-gradient(linear, left top, right top, from(#6747ee), to(#9124dc));
  background-image: -webkit-linear-gradient(left, #6747ee, #9124dc);
  background-image: -moz-linear-gradient(left, #6747ee, #9124dc);
  background-image: -ms-linear-gradient(left, #6747ee, #9124dc);
  background-image: -o-linear-gradient(left, #6747ee, #9124dc);
  background-image: linear-gradient(left, #6747ee, #9124dc);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#6747ee', endColorStr='#9124dc', gradientType='1');
  background-color: transparent;
  opacity: 0.9;
}
.ct-video-inner .ct-video-intro.intro-style2 + .ct-video-button {
  bottom: auto;
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
  -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%);
  border: 4px solid rgba(255, 255, 255, 0.12);
  background-color: transparent;
  background-image: none;
  line-height: 92px;
}
.ct-video-inner .ct-video-intro.intro-style2 + .ct-video-button:hover, .ct-video-inner .ct-video-intro.intro-style2 + .ct-video-button:focus {
  background-color: #fff;
  color: #a200ff;
  box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.10), 0 0 0 20px rgba(255, 255, 255, 0.10);
  -webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.10), 0 0 0 20px rgba(255, 255, 255, 0.10);
}
.ct-video-inner .ct-video-intro.intro-style3 {
  height: 160px;
  width: 160px;
  min-width: 160px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.ct-video-inner .ct-video-intro.intro-style3 img {
  display: none;
}
.ct-video-inner .ct-video-intro.intro-style3:before {
  content: '';
  z-index: 2;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #6747ee;
  background-image: -webkit-gradient(linear, left top, right top, from(#6747ee), to(#9124dc));
  background-image: -webkit-linear-gradient(left, #6747ee, #9124dc);
  background-image: -moz-linear-gradient(left, #6747ee, #9124dc);
  background-image: -ms-linear-gradient(left, #6747ee, #9124dc);
  background-image: -o-linear-gradient(left, #6747ee, #9124dc);
  background-image: linear-gradient(left, #6747ee, #9124dc);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#6747ee', endColorStr='#9124dc', gradientType='1');
  background-color: transparent;
  opacity: 0.4;
}
.ct-video-inner .ct-video-intro.intro-style3 + .ct-video-button {
  height: 58px;
  width: 58px;
  line-height: 50px;
  bottom: auto;
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
  -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%);
  border: 4px solid rgba(255, 255, 255, 0.12);
  background-color: transparent;
  background-image: none;
  font-size: 12px;
}
.ct-video-inner .ct-video-intro.intro-style3 + .ct-video-button:hover, .ct-video-inner .ct-video-intro.intro-style3 + .ct-video-button:focus {
  background-color: #fff;
  color: #a200ff;
  box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.10), 0 0 0 20px rgba(255, 255, 255, 0.10);
  -webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.10), 0 0 0 20px rgba(255, 255, 255, 0.10);
}
.ct-video-wrapper .ct-video-description {
  font-size: 18px;
  line-height: 1.55556;
}
@media screen and (max-width: 991px) {
  .ct-video-wrapper .ct-video-description {
    font-size: 16px;
  }
}
.ct-video-wrapper.video-intro-style3 {
  display: flex;
  flex-wrap: nowrap;
}
@media screen and (max-width: 575px) {
  .ct-video-wrapper.video-intro-style3 {
    display: block;
  }
}
.ct-video-wrapper.video-intro-style3 .ct-video-inner {
  margin-right: 30px;
  max-height: 160px;
}
@media screen and (max-width: 575px) {
  .ct-video-wrapper.video-intro-style3 .ct-video-inner {
    margin: 0 0 15px;
  }
}
.ct-video-wrapper.ct-video-layout2 {
  padding: 50px 30px;
  background-color: rgba(103, 71, 238, 0.85);
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(103, 71, 238, 0.85)), to(rgba(145, 36, 220, 0.85)));
  background-image: -webkit-linear-gradient(left, rgba(103, 71, 238, 0.85), rgba(145, 36, 220, 0.85));
  background-image: -moz-linear-gradient(left, rgba(103, 71, 238, 0.85), rgba(145, 36, 220, 0.85));
  background-image: -ms-linear-gradient(left, rgba(103, 71, 238, 0.85), rgba(145, 36, 220, 0.85));
  background-image: -o-linear-gradient(left, rgba(103, 71, 238, 0.85), rgba(145, 36, 220, 0.85));
  background-image: linear-gradient(left, rgba(103, 71, 238, 0.85), rgba(145, 36, 220, 0.85));
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='rgba(103, 71, 238, 0.85)', endColorStr='rgba(145, 36, 220, 0.85)', gradientType='1');
  background-color: transparent;
  color: #fff;
  max-width: 458px;
}
.ct-video-wrapper.ct-video-layout2 .ct-video-inner {
  text-align: left;
}
.ct-video-wrapper.ct-video-layout2 .video-desc {
  font-size: 30px;
  line-height: 1.66;
  letter-spacing: -0.03em;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  padding-top: 22px;
}
@media screen and (max-width: 767px) {
  .ct-video-wrapper.ct-video-layout2 .video-desc {
    font-size: 22px;
  }
}
.ct-video-wrapper.ct-video-layout2 .ct-video-button {
  margin-top: 34px;
  border: 2px solid #fff;
  background-color: rgba(255, 255, 255, 0.3);
  background-image: none;
  line-height: 96px;
}
.ct-video-wrapper.ct-video-layout2 .ct-video-button:hover, .ct-video-wrapper.ct-video-layout2 .ct-video-button:focus {
  -webkit-box-shadow: none;
  -khtml-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
  background-color: #12a9ff;
  border-color: #12a9ff;
}
.dot-layer .ct-video-inner .ct-video-intro:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50px;
  left: -50px;
  z-index: 1;
  background-repeat: no-repeat;
  background-position: left bottom;
  background-image: url(../images/video-arrow.png);
}
.ct-fancybox-default {
  position: relative;
}
.ct-fancybox-default:before, .ct-fancybox-default:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
}
.ct-fancybox-default:before {
  z-index: 1;
  background-color: #fff;
}
.ct-fancybox-default:after {
  z-index: 2;
  background-color: rgba(1, 93, 199, 0.9);
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(1, 93, 199, 0.9)), to(rgba(162, 0, 255, 0.9)));
  background-image: -webkit-linear-gradient(left, rgba(1, 93, 199, 0.9), rgba(162, 0, 255, 0.9));
  background-image: -moz-linear-gradient(left, rgba(1, 93, 199, 0.9), rgba(162, 0, 255, 0.9));
  background-image: -ms-linear-gradient(left, rgba(1, 93, 199, 0.9), rgba(162, 0, 255, 0.9));
  background-image: -o-linear-gradient(left, rgba(1, 93, 199, 0.9), rgba(162, 0, 255, 0.9));
  background-image: linear-gradient(left, rgba(1, 93, 199, 0.9), rgba(162, 0, 255, 0.9));
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='rgba(1, 93, 199, 0.9)', endColorStr='rgba(162, 0, 255, 0.9)', gradientType='1');
  opacity: 0;
}
.ct-fancybox-default .ct-fancybox-icon {
  margin-bottom: 36px;
  line-height: 1;
}
.ct-fancybox-default .ct-fancybox-icon i {
  font-size: 79px;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .ct-fancybox-default .ct-fancybox-icon i {
    font-size: 68px;
  }
}
.ct-fancybox-default .ct-fancybox-title {
  font-size: 26px;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
  margin-bottom: 22px;
}
.ct-fancybox-default .ct-fancybox-title a {
  color: inherit;
}
.ct-fancybox-default .ct-fancybox-title a:hover {
  color: inherit;
}
.ct-fancybox-default .ct-fancybox-desc {
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
}
.ct-fancybox-default .ct-fancybox-more {
  margin-top: 33px;
}
.ct-fancybox-default .ct-fancybox-more .btn {
  padding: 0;
  height: 60px;
  line-height: 60px;
  width: 60px;
  -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: #015dc7;
  background-image: -webkit-gradient(linear, left top, right top, from(#015dc7), to(#a200ff));
  background-image: -webkit-linear-gradient(left, #015dc7, #a200ff);
  background-image: -moz-linear-gradient(left, #015dc7, #a200ff);
  background-image: -ms-linear-gradient(left, #015dc7, #a200ff);
  background-image: -o-linear-gradient(left, #015dc7, #a200ff);
  background-image: linear-gradient(left, #015dc7, #a200ff);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#015dc7', endColorStr='#a200ff', gradientType='1');
}
.ct-fancybox-default .ct-fancybox-more .btn i {
  margin-right: -4px;
  font-size: 15px;
}
.ct-fancybox-default .ct-fancybox-inner {
  padding: 80px 40px;
  position: relative;
  z-index: 3;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .ct-fancybox-default .ct-fancybox-inner {
    padding: 60px 30px;
  }
}
.ct-fancybox-default:hover:before {
  opacity: 0;
}
.ct-fancybox-default:hover:after {
  opacity: 0.9;
}
.ct-fancybox-default:hover .ct-fancybox-icon i {
  background-color: transparent;
  background-image: none;
  text-fill-color: #fff;
  -o-text-fill-color: #fff;
  -ms-text-fill-color: #fff;
  -moz-text-fill-color: #fff;
  -webkit-text-fill-color: #fff;
  background-clip: inherit;
  -o-background-clip: inherit;
  -ms-background-clip: inherit;
  -webkit-background-clip: inherit;
  color: #fff !important;
}
.ct-fancybox-default:hover .ct-fancybox-title {
  color: #fff !important;
}
.ct-fancybox-default:hover .ct-fancybox-desc {
  color: #eaeaea !important;
}
.ct-fancybox-default:hover .ct-fancybox-more .btn {
  background-image: none;
  background-color: #01418a;
}
.ct-fancybox-layout2 .ct-fancybox-icon {
  line-height: 1;
  margin-right: 37px;
}
@media screen and (max-width: 991px) {
  .ct-fancybox-layout2 .ct-fancybox-icon {
    margin-right: 20px;
  }
}
.ct-fancybox-layout2 .ct-fancybox-icon i {
  font-size: 60px;
}
@media screen and (max-width: 991px) {
  .ct-fancybox-layout2 .ct-fancybox-icon i {
    font-size: 42px;
  }
}
.ct-fancybox-layout2 .ct-fancybox-title {
  margin-bottom: 13px;
}
.ct-fancybox-layout2 .ct-fancybox-title a {
  color: inherit;
}
.ct-fancybox-layout2 .ct-fancybox-title a:hover {
  color: #015dc7;
}
.ct-fancybox-layout2 .ct-fancybox-desc {
  font-size: 14px;
  line-height: 26px;
}
.ct-fancybox-layout2 .ct-fancybox-inner {
  display: flex;
  flex-wrap: nowrap;
}
.ct-fancybox-layout2 .ct-fancybox-inner:hover .ct-fancybox-icon {
  -webkit-animation: ct-bounce2 1.5s infinite ease-in-out;
  animation: ct-bounce2 1.5s infinite ease-in-out;
}
.ct-fancybox-layout3 .ct-fancybox-icon {
  line-height: 1;
  margin-bottom: 25px;
}
.ct-fancybox-layout3 .ct-fancybox-icon i {
  font-size: 60px;
}
@media screen and (max-width: 991px) {
  .ct-fancybox-layout3 .ct-fancybox-icon i {
    font-size: 42px;
  }
}
.ct-fancybox-layout3 .ct-fancybox-title {
  margin-bottom: 13px;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
}
.ct-fancybox-layout3 .ct-fancybox-title a {
  color: inherit;
}
.ct-fancybox-layout3 .ct-fancybox-title a:hover {
  color: #015dc7;
}
.ct-fancybox-layout3 .ct-fancybox-desc {
  font-size: 14px;
  line-height: 26px;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
}
.ct-fancybox-layout3 .ct-fancybox-inner {
  text-align: center;
  padding: 60px 30px 56px 30px;
  position: relative;
  background-color: #fff;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 991px) {
  .ct-fancybox-layout3 .ct-fancybox-inner {
    padding: 40px 25px 36px 25px;
  }
}
.ct-fancybox-layout3 .ct-fancybox-inner:before, .ct-fancybox-layout3 .ct-fancybox-inner:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 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;
}
.ct-fancybox-layout3 .ct-fancybox-inner:before {
  background-color: #015dc7;
  background-image: -webkit-gradient(linear, left top, right top, from(#015dc7), to(#a200ff));
  background-image: -webkit-linear-gradient(left, #015dc7, #a200ff);
  background-image: -moz-linear-gradient(left, #015dc7, #a200ff);
  background-image: -ms-linear-gradient(left, #015dc7, #a200ff);
  background-image: -o-linear-gradient(left, #015dc7, #a200ff);
  background-image: linear-gradient(left, #015dc7, #a200ff);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#015dc7', endColorStr='#a200ff', gradientType='1');
}
.ct-fancybox-layout3 .ct-fancybox-inner:after {
  background-color: #fff;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
}
.ct-fancybox-layout3 .ct-fancybox-inner:hover .ct-fancybox-icon i {
  color: #fff !important;
  background-color: transparent;
  background-image: none;
  -o-text-fill-color: #fff;
  -ms-text-fill-color: #fff;
  -moz-text-fill-color: #fff;
  -webkit-text-fill-color: #fff;
  background-clip: inherit;
  -o-background-clip: inherit;
  -ms-background-clip: inherit;
  -webkit-background-clip: inherit;
}
.ct-fancybox-layout3 .ct-fancybox-inner:hover .ct-fancybox-title {
  color: #fff;
}
.ct-fancybox-layout3 .ct-fancybox-inner:hover .ct-fancybox-title a:hover {
  color: inherit;
}
.ct-fancybox-layout3 .ct-fancybox-inner:hover .ct-fancybox-desc {
  color: #eee;
}
.ct-fancybox-layout3 .ct-fancybox-inner:hover:after {
  opacity: 0;
}
.ct-fancybox-layout4 .ct-fancybox-inner {
  position: relative;
  background-color: #fff;
  -webkit-border-radius: 9px;
  -khtml-border-radius: 9px;
  -moz-border-radius: 9px;
  -ms-border-radius: 9px;
  -o-border-radius: 9px;
  border-radius: 9px;
  overflow: hidden;
  padding: 70px 40px;
  text-align: center;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .ct-fancybox-layout4 .ct-fancybox-inner {
    padding: 60px 25px;
  }
}
.ct-fancybox-layout4 .ct-fancybox-inner:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -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: #6747ee;
  background-image: -webkit-gradient(linear, left top, right top, from(#6747ee), to(#9124dc));
  background-image: -webkit-linear-gradient(left, #6747ee, #9124dc);
  background-image: -moz-linear-gradient(left, #6747ee, #9124dc);
  background-image: -ms-linear-gradient(left, #6747ee, #9124dc);
  background-image: -o-linear-gradient(left, #6747ee, #9124dc);
  background-image: linear-gradient(left, #6747ee, #9124dc);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#6747ee', endColorStr='#9124dc', gradientType='1');
  opacity: 0;
  z-index: -1;
}
.ct-fancybox-layout4 .ct-fancybox-inner .ct-fancybox-icon {
  margin-bottom: 36px;
  line-height: 1;
}
.ct-fancybox-layout4 .ct-fancybox-inner .ct-fancybox-icon i {
  font-size: 79px;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
}
@media screen and (max-width: 767px) {
  .ct-fancybox-layout4 .ct-fancybox-inner .ct-fancybox-icon i {
    font-size: 68px;
  }
}
.ct-fancybox-layout4 .ct-fancybox-inner .ct-fancybox-title {
  font-size: 26px;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
  margin-bottom: 22px;
}
.ct-fancybox-layout4 .ct-fancybox-inner .ct-fancybox-title a {
  color: inherit;
}
.ct-fancybox-layout4 .ct-fancybox-inner .ct-fancybox-title a:hover {
  color: inherit;
}
.ct-fancybox-layout4 .ct-fancybox-inner .ct-fancybox-desc {
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
  font-size: 14px;
  line-height: 26px;
}
.ct-fancybox-layout4 .ct-fancybox-inner:hover:after {
  opacity: 1;
}
.ct-fancybox-layout4 .ct-fancybox-inner:hover .ct-fancybox-icon i {
  color: #fff !important;
  background-color: transparent;
  background-image: none;
  -o-text-fill-color: #fff;
  -ms-text-fill-color: #fff;
  -moz-text-fill-color: #fff;
  -webkit-text-fill-color: #fff;
  background-clip: inherit;
  -o-background-clip: inherit;
  -ms-background-clip: inherit;
  -webkit-background-clip: inherit;
}
.ct-fancybox-layout4 .ct-fancybox-inner:hover .ct-fancybox-title, .ct-fancybox-layout4 .ct-fancybox-inner:hover .ct-fancybox-desc {
  color: #fff !important;
}
.ct-fancybox-layout4 .ct-fancybox-inner .ct-fancybox-more {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
}
.ct-fancybox-layout4.style2 .ct-fancybox-inner {
  -webkit-box-shadow: 0 15px 18px rgba(156, 156, 156, 0.15);
  -khtml-box-shadow: 0 15px 18px rgba(156, 156, 156, 0.15);
  -moz-box-shadow: 0 15px 18px rgba(156, 156, 156, 0.15);
  -ms-box-shadow: 0 15px 18px rgba(156, 156, 156, 0.15);
  -o-box-shadow: 0 15px 18px rgba(156, 156, 156, 0.15);
  box-shadow: 0 15px 18px rgba(156, 156, 156, 0.15);
  padding-bottom: 50px;
  padding-bottom: 46px;
}
.ct-fancybox-layout4.style2 .ct-fancybox-inner .ct-fancybox-icon {
  margin-bottom: 33px;
}
.ct-fancybox-layout4.style2 .ct-fancybox-inner .ct-fancybox-icon i {
  font-size: 58px;
}
.ct-fancybox-layout4.style2 .ct-fancybox-inner .ct-fancybox-title {
  margin-bottom: 19px;
}
.ct-fancybox-layout5 {
  text-align: center;
}
.ct-fancybox-layout5 .ct-fancybox-icon {
  height: 80px;
  line-height: 80px;
  width: 80px;
  background-color: #fff;
  -webkit-border-radius: 80px;
  -khtml-border-radius: 80px;
  -moz-border-radius: 80px;
  -ms-border-radius: 80px;
  -o-border-radius: 80px;
  border-radius: 80px;
  -webkit-box-shadow: 0 4px 6px rgba(125, 125, 125, 0.31);
  -khtml-box-shadow: 0 4px 6px rgba(125, 125, 125, 0.31);
  -moz-box-shadow: 0 4px 6px rgba(125, 125, 125, 0.31);
  -ms-box-shadow: 0 4px 6px rgba(125, 125, 125, 0.31);
  -o-box-shadow: 0 4px 6px rgba(125, 125, 125, 0.31);
  box-shadow: 0 4px 6px rgba(125, 125, 125, 0.31);
  margin: 0 auto 38px auto;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
}
.ct-fancybox-layout5 .ct-fancybox-icon i {
  font-size: 34px;
}
.ct-fancybox-layout5 .ct-fancybox-title {
  margin-bottom: 12px;
}
.ct-fancybox-layout5 .ct-fancybox-title a {
  color: inherit;
}
.ct-fancybox-layout5 .ct-fancybox-title a:hover {
  color: #015dc7;
}
.ct-fancybox-layout5 .ct-fancybox-desc {
  font-size: 14px;
  line-height: 26px;
}
.ct-fancybox-layout5 .ct-fancybox-inner:hover .ct-fancybox-icon {
  background-color: #6747ee;
  background-image: -webkit-gradient(linear, left top, right top, from(#6747ee), to(#9124dc));
  background-image: -webkit-linear-gradient(left, #6747ee, #9124dc);
  background-image: -moz-linear-gradient(left, #6747ee, #9124dc);
  background-image: -ms-linear-gradient(left, #6747ee, #9124dc);
  background-image: -o-linear-gradient(left, #6747ee, #9124dc);
  background-image: linear-gradient(left, #6747ee, #9124dc);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#6747ee', endColorStr='#9124dc', gradientType='1');
}
.ct-fancybox-layout5 .ct-fancybox-inner:hover .ct-fancybox-icon i {
  background-color: transparent;
  background-image: none;
  text-fill-color: #fff;
  -o-text-fill-color: #fff;
  -ms-text-fill-color: #fff;
  -moz-text-fill-color: #fff;
  -webkit-text-fill-color: #fff;
  background-clip: inherit;
  -o-background-clip: inherit;
  -ms-background-clip: inherit;
  -webkit-background-clip: inherit;
  color: #fff !important;
}
.ct-fancybox-layout6 {
  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;
  border: 1px solid #ddd;
  padding: 50px 30px 45px;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
  position: relative;
  z-index: 1;
}
.ct-fancybox-layout6:before {
  position: absolute;
  content: '';
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 100%;
  -webkit-border-radius: 4px;
  -khtml-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  z-index: -1;
  -webkit-box-shadow: 0 -3px 0 #ff5a3c inset;
  -khtml-box-shadow: 0 -3px 0 #ff5a3c inset;
  -moz-box-shadow: 0 -3px 0 #ff5a3c inset;
  -ms-box-shadow: 0 -3px 0 #ff5a3c inset;
  -o-box-shadow: 0 -3px 0 #ff5a3c inset;
  box-shadow: 0 -3px 0 #ff5a3c inset;
  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;
}
.ct-fancybox-layout6 .ct-fancybox-icon {
  line-height: 1;
  margin-bottom: 23px;
}
.ct-fancybox-layout6 .ct-fancybox-icon i {
  font-size: 72px;
  color: #ff5a3c;
}
.ct-fancybox-layout6 .ct-fancybox-title {
  margin-bottom: 22px;
}
.ct-fancybox-layout6 .ct-fancybox-desc {
  font-size: 15px;
  line-height: 28px;
  color: #0f192d;
}
.ct-fancybox-layout6 .ct-fancybox-more {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.ct-fancybox-layout6:hover {
  -webkit-box-shadow: 0 0 20px rgba(205, 205, 205, 0.3);
  -khtml-box-shadow: 0 0 20px rgba(205, 205, 205, 0.3);
  -moz-box-shadow: 0 0 20px rgba(205, 205, 205, 0.3);
  -ms-box-shadow: 0 0 20px rgba(205, 205, 205, 0.3);
  -o-box-shadow: 0 0 20px rgba(205, 205, 205, 0.3);
  box-shadow: 0 0 20px rgba(205, 205, 205, 0.3);
  border-color: #fff;
}
.ct-fancybox-layout6:hover:before {
  opacity: 1;
}
.ct-fancybox-layout7 {
  position: relative;
}
.ct-fancybox-layout7 .ct-fancybox-icon {
  line-height: 1;
  margin-bottom: 0;
  background-color: #fff;
  border: 1px solid #ddd;
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  height: 100px;
  width: 100px;
  line-height: 100px;
  text-align: center;
  position: absolute;
  top: -50px;
  left: 0;
  z-index: 99;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
}
.ct-fancybox-layout7 .ct-fancybox-icon i {
  font-size: 60px;
  color: #ff5a3c;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
}
.ct-fancybox-layout7 .ct-fancybox-icon + .ct-fancybox-content {
  padding-top: 75px;
  margin-left: 50px;
  margin-top: 50px;
}
.ct-fancybox-layout7 .ct-fancybox-title {
  margin-bottom: 12px;
}
.ct-fancybox-layout7 .ct-fancybox-desc {
  font-size: 15px;
  line-height: 28px;
  color: #0f192d;
}
.ct-fancybox-layout7 .ct-fancybox-content {
  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;
  border: 1px solid #ddd;
  padding: 26px 30px 23px;
  -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;
}
.ct-fancybox-layout7 .ct-fancybox-content .ct-fancybox-more {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.ct-fancybox-layout7:hover .ct-fancybox-content {
  -webkit-box-shadow: 0 0 20px rgba(205, 205, 205, 0.3);
  -khtml-box-shadow: 0 0 20px rgba(205, 205, 205, 0.3);
  -moz-box-shadow: 0 0 20px rgba(205, 205, 205, 0.3);
  -ms-box-shadow: 0 0 20px rgba(205, 205, 205, 0.3);
  -o-box-shadow: 0 0 20px rgba(205, 205, 205, 0.3);
  box-shadow: 0 0 20px rgba(205, 205, 205, 0.3);
  border-color: #fff;
}
.ct-fancybox-layout7:hover .ct-fancybox-icon {
  background-color: #ff5a3c;
  border-color: #ff5a3c;
}
.ct-fancybox-layout7:hover .ct-fancybox-icon i {
  color: #fff;
}
.ct-angled-wrapper {
  left: 0;
  position: absolute !important;
  right: 0;
  width: 100%;
  z-index: 99 !important;
}
.ct-angled-wrapper svg {
  position: absolute;
  left: 0;
  right: 0;
}
.ct-angled-wrapper svg.angle-style1 {
  -webkit-transform: scaleX(-1);
  -khtml-transform: scaleX(-1);
  -moz-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
  -o-transform: scaleX(-1);
  transform: scaleX(-1);
}
.ct-angled-wrapper.angled-top {
  top: 0;
}
.ct-angled-wrapper.angled-top svg {
  -webkit-transform: rotate(180deg) scaleX(-1);
  -khtml-transform: rotate(180deg) scaleX(-1);
  -moz-transform: rotate(180deg) scaleX(-1);
  -ms-transform: rotate(180deg) scaleX(-1);
  -o-transform: rotate(180deg) scaleX(-1);
  transform: rotate(180deg) scaleX(-1);
  top: 0;
}
.ct-angled-wrapper.angled-bottom {
  bottom: 0;
}
.ct-angled-wrapper.angled-bottom svg {
  bottom: -1px;
}
@media screen and (max-width: 767px) {
  .ct-angled-wrapper.angled-top {
    top: -1px;
  }
  .ct-angled-wrapper.angled-bottom {
    bottom: -1px;
  }
}
.ct-team-member-default, .ct-team-member-layout3 {
  text-align: center;
  position: relative;
}
.ct-team-member-default .ct-team-image, .ct-team-member-layout3 .ct-team-image {
  display: inline-block;
  position: relative;
  overflow: hidden;
  background-color: #1d274e;
  margin-bottom: 26px;
}
.ct-team-member-default .ct-team-image img, .ct-team-member-layout3 .ct-team-image img {
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
}
.ct-team-member-default .ct-team-image .ct-team-social, .ct-team-member-layout3 .ct-team-image .ct-team-social {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -20px;
  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;
}
.ct-team-member-default .ct-team-image .ct-team-social a, .ct-team-member-layout3 .ct-team-image .ct-team-social a {
  font-size: 14px;
  color: #fff;
  padding: 0 6px;
}
.ct-team-member-default .ct-team-image .ct-team-social a:hover, .ct-team-member-layout3 .ct-team-image .ct-team-social a:hover {
  color: #015dc7;
}
.ct-team-member-default .ct-team-title, .ct-team-member-layout3 .ct-team-title {
  margin-bottom: 4px;
}
.ct-team-member-default .ct-team-position, .ct-team-member-layout3 .ct-team-position {
  display: inline-block;
  font-size: 14px;
}
.ct-team-member-default:hover .ct-team-social, .ct-team-member-layout3:hover .ct-team-social {
  bottom: 24px;
  opacity: 1;
}
.ct-team-member-default:hover .ct-team-image img, .ct-team-member-layout3:hover .ct-team-image img {
  opacity: 0.5;
}
.ct-team-member-layout2 {
  padding-right: 20px;
  position: relative;
  z-index: 1;
}
.ct-team-member-layout2:before, .ct-team-member-layout2:after {
  content: '';
  position: absolute;
  top: 68px;
  right: 0;
  left: 40px;
  bottom: 0;
  z-index: -1;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
}
.ct-team-member-layout2:before {
  background-color: #f5f4ff;
}
.ct-team-member-layout2:after {
  background-color: #015dc7;
  background-image: -webkit-gradient(linear, left top, right top, from(#015dc7), to(#a200ff));
  background-image: -webkit-linear-gradient(left, #015dc7, #a200ff);
  background-image: -moz-linear-gradient(left, #015dc7, #a200ff);
  background-image: -ms-linear-gradient(left, #015dc7, #a200ff);
  background-image: -o-linear-gradient(left, #015dc7, #a200ff);
  background-image: linear-gradient(left, #015dc7, #a200ff);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#015dc7', endColorStr='#a200ff', gradientType='1');
  opacity: 0;
}
.ct-team-member-layout2 .ct-team-image img {
  width: 100%;
}
.ct-team-member-layout2 .ct-team-holder {
  padding-left: 40px;
  text-align: center;
}
.ct-team-member-layout2 .ct-team-holder-inner {
  padding: 37px 0 36px 20px;
}
.ct-team-member-layout2 .ct-team-title {
  font-size: 26px;
  margin-bottom: 5px;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
}
.ct-team-member-layout2 .ct-team-position {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
}
.ct-team-member-layout2 .ct-team-social a {
  font-size: 14px;
  color: #bdb2d7;
  margin: 0 11px;
}
.ct-team-member-layout2:hover:before {
  opacity: 0;
}
.ct-team-member-layout2:hover:after {
  opacity: 1;
}
.ct-team-member-layout2:hover .ct-team-title, .ct-team-member-layout2:hover .ct-team-social a {
  color: #fff;
}
.ct-team-member-layout2:hover .ct-team-position {
  color: #fff !important;
  background-color: transparent;
  background-image: none;
  -o-text-fill-color: #fff;
  -ms-text-fill-color: #fff;
  -moz-text-fill-color: #fff;
  -webkit-text-fill-color: #fff;
  background-clip: inherit;
  -o-background-clip: inherit;
  -ms-background-clip: inherit;
  -webkit-background-clip: inherit;
}
.ct-team-member-layout3 .ct-team-image {
  margin-bottom: 14px;
}
.ct-team-member-layout3 .ct-team-image:before {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#6747ee), to(rgba(145, 36, 220, 0.2)));
  background-image: -webkit-linear-gradient(bottom, #6747ee, rgba(145, 36, 220, 0.2));
  background-image: -moz-linear-gradient(bottom, #6747ee, rgba(145, 36, 220, 0.2));
  background-image: -ms-linear-gradient(bottom, #6747ee, rgba(145, 36, 220, 0.2));
  background-image: -o-linear-gradient(bottom, #6747ee, rgba(145, 36, 220, 0.2));
  background-image: linear-gradient(bottom, #6747ee, rgba(145, 36, 220, 0.2));
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#6747ee', endColorStr='rgba(145, 36, 220, 0.2)');
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  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;
}
.ct-team-member-layout3 .ct-team-image .ct-team-social {
  z-index: 1;
}
.ct-team-member-layout3 .ct-team-title {
  margin-top: 6px;
  margin-bottom: 0;
}
.ct-team-member-layout3:hover .ct-team-image:before {
  opacity: 0.9;
}
.ct-team-member-layout3:hover .ct-team-image img {
  opacity: 1;
}
.ct-team-member-layout4 {
  padding: 50px 30px 70px 30px;
  background-color: #fff;
  -webkit-box-shadow: 0 15px 18px rgba(156, 156, 156, 0.15);
  -khtml-box-shadow: 0 15px 18px rgba(156, 156, 156, 0.15);
  -moz-box-shadow: 0 15px 18px rgba(156, 156, 156, 0.15);
  -ms-box-shadow: 0 15px 18px rgba(156, 156, 156, 0.15);
  -o-box-shadow: 0 15px 18px rgba(156, 156, 156, 0.15);
  box-shadow: 0 15px 18px rgba(156, 156, 156, 0.15);
  text-align: center;
  position: relative;
}
.ct-team-member-layout4 .ct-team-image {
  max-width: 160px;
  margin: 0 auto 34px auto;
}
.ct-team-member-layout4 .ct-team-image img {
  -webkit-border-radius: 160px;
  -khtml-border-radius: 160px;
  -moz-border-radius: 160px;
  -ms-border-radius: 160px;
  -o-border-radius: 160px;
  border-radius: 160px;
}
.ct-team-member-layout4 .ct-team-position {
  color: #aab2d2;
  font-size: 14px;
}
.ct-team-member-layout4 .ct-team-title {
  margin-bottom: 5px;
}
.ct-team-member-layout4 .ct-team-social {
  position: absolute;
  bottom: -22px;
  left: 50%;
  padding: 0 16px;
  -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);
  background-color: #015dc7;
  background-image: -webkit-gradient(linear, left top, right top, from(#015dc7), to(#a200ff));
  background-image: -webkit-linear-gradient(left, #015dc7, #a200ff);
  background-image: -moz-linear-gradient(left, #015dc7, #a200ff);
  background-image: -ms-linear-gradient(left, #015dc7, #a200ff);
  background-image: -o-linear-gradient(left, #015dc7, #a200ff);
  background-image: linear-gradient(left, #015dc7, #a200ff);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#015dc7', endColorStr='#a200ff', gradientType='1');
  -webkit-border-radius: 44px;
  -khtml-border-radius: 44px;
  -moz-border-radius: 44px;
  -ms-border-radius: 44px;
  -o-border-radius: 44px;
  border-radius: 44px;
  display: flex;
  flex-wrap: nowrap;
}
.ct-team-member-layout4 .ct-team-social a {
  font-size: 14px;
  line-height: 44px;
  height: 44px;
  width: 30px;
  color: #fff;
  display: inline-block;
}
.ct-team-member-layout4 .ct-team-social a:hover {
  color: rgba(255, 255, 255, 0.85);
}
.ct-counter-default {
  text-align: center;
}
.ct-counter-default .ct-counter-icon {
  line-height: 1;
  margin-bottom: 33px;
}
.ct-counter-default .ct-counter-icon i {
  font-size: 100px;
}
.ct-counter-default .ct-counter-icon i:not(.colored) {
  background-color: #015dc7;
  background-image: -webkit-gradient(linear, left top, right top, from(#015dc7), to(#a200ff));
  background-image: -webkit-linear-gradient(left, #015dc7, #a200ff);
  background-image: -moz-linear-gradient(left, #015dc7, #a200ff);
  background-image: -ms-linear-gradient(left, #015dc7, #a200ff);
  background-image: -o-linear-gradient(left, #015dc7, #a200ff);
  background-image: linear-gradient(left, #015dc7, #a200ff);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#015dc7', endColorStr='#a200ff', gradientType='1');
  background-color: transparent;
  background-clip: text;
  -moz-background-clip: text;
  -webkit-background-clip: text;
  text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  -webkit-text-fill-color: transparent;
}
.ct-counter-default .ct-counter-digit {
  font-size: 50px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  line-height: 1;
  color: #1d274e;
}
.ct-counter-default .ct-counter-title {
  margin-top: 10px;
  margin-bottom: 0;
  font-family: inherit;
  font-size: 14px;
}
.ct-counter-layout2 {
  text-align: center;
  background-color: #fff;
  padding: 40px 30px 37px 30px;
  -webkit-box-shadow: 0 8px 21px rgba(101, 96, 96, 0.14);
  -khtml-box-shadow: 0 8px 21px rgba(101, 96, 96, 0.14);
  -moz-box-shadow: 0 8px 21px rgba(101, 96, 96, 0.14);
  -ms-box-shadow: 0 8px 21px rgba(101, 96, 96, 0.14);
  -o-box-shadow: 0 8px 21px rgba(101, 96, 96, 0.14);
  box-shadow: 0 8px 21px rgba(101, 96, 96, 0.14);
  position: relative;
}
.ct-counter-layout2:before {
  content: '';
  width: 118px;
  height: 4px;
  background-color: #12a9ff;
  position: absolute;
  left: 50%;
  bottom: 0;
  -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);
}
.ct-counter-layout2 .ct-counter-icon {
  line-height: 1;
  margin-bottom: 25px;
}
.ct-counter-layout2 .ct-counter-icon i {
  font-size: 50px;
}
.ct-counter-layout2 .ct-counter-icon i:not(.colored) {
  background-color: #6747ee;
  background-image: -webkit-gradient(linear, left top, right top, from(#6747ee), to(#9124dc));
  background-image: -webkit-linear-gradient(left, #6747ee, #9124dc);
  background-image: -moz-linear-gradient(left, #6747ee, #9124dc);
  background-image: -ms-linear-gradient(left, #6747ee, #9124dc);
  background-image: -o-linear-gradient(left, #6747ee, #9124dc);
  background-image: linear-gradient(left, #6747ee, #9124dc);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#6747ee', endColorStr='#9124dc', gradientType='1');
  background-color: transparent;
  background-clip: text;
  -moz-background-clip: text;
  -webkit-background-clip: text;
  text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  -webkit-text-fill-color: transparent;
}
.ct-counter-layout2 .ct-counter-digit {
  font-size: 24px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  line-height: 1;
  color: #1d274e;
}
.ct-counter-layout2 .ct-counter-title {
  margin-top: 6px;
  margin-bottom: 0;
  font-weight: normal;
  font-size: 18px;
}
.ct-counter-layout3 {
  text-align: center;
}
.ct-counter-layout3 .ct-counter-digit {
  font-size: 48px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  line-height: 1;
  color: #ff5a3c;
  letter-spacing: 0px;
}
.ct-counter-layout3 .ct-counter-title {
  margin-top: 13px;
  margin-bottom: 0;
  font-family: inherit;
  font-size: 20px;
  color: #0c121f;
}
@media screen and (min-width: 1200px) {
  .rm-padding-right .ct-blog-carousel.default {
    width: calc(100% + 105px);
    width: -webkit-calc(100% + 105px);
    width: -ms-calc(100% + 105px);
    width: -o-calc(100% + 105px);
  }
}
.ct-blog-carousel.default .owl-stage-outer {
  margin: 0 -30px;
  padding: 0 30px;
}
.ct-blog-carousel.default .owl-stage-outer .owl-item.active .grid-item-inner {
  -webkit-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  -khtml-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}
.ct-blog-carousel.default .owl-stage-outer .owl-stage {
  display: flex;
}
.ct-blog-carousel.default .item-category {
  color: #015dc7;
}
.ct-blog-carousel.default .item-category a {
  font-size: 16px;
}
.ct-blog-carousel.default .item-title {
  font-size: 26px;
  line-height: 1.384;
  margin-top: 17px;
  margin-bottom: 13px;
}
.ct-blog-carousel.default .item-title a {
  color: inherit;
}
@media screen and (max-width: 767px) {
  .ct-blog-carousel.default .item-title {
    font-size: 24px;
  }
}
.ct-blog-carousel.default .item-content {
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
}
.ct-blog-carousel.default .ct-carousel-item {
  padding: 10px 0 70px 0;
  height: 100%;
  position: relative;
}
.ct-blog-carousel.default .ct-carousel-item .grid-item-inner {
  padding: 42px 40px 42px 50px;
  height: 100%;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1400px) {
  .ct-blog-carousel.default .ct-carousel-item .grid-item-inner {
    padding: 32px 30px 32px 40px;
  }
}
@media screen and (max-width: 767px) {
  .ct-blog-carousel.default .ct-carousel-item .grid-item-inner {
    padding: 22px 20px 22px 30px;
  }
}
.ct-blog-carousel.default .ct-carousel-item .grid-item-inner:before, .ct-blog-carousel.default .ct-carousel-item .grid-item-inner:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -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;
}
.ct-blog-carousel.default .ct-carousel-item .grid-item-inner:before {
  background-color: #fff;
}
.ct-blog-carousel.default .ct-carousel-item .grid-item-inner:after {
  background-color: #015dc7;
  background-image: -webkit-gradient(linear, left top, right top, from(#015dc7), to(#a200ff));
  background-image: -webkit-linear-gradient(left, #015dc7, #a200ff);
  background-image: -moz-linear-gradient(left, #015dc7, #a200ff);
  background-image: -ms-linear-gradient(left, #015dc7, #a200ff);
  background-image: -o-linear-gradient(left, #015dc7, #a200ff);
  background-image: linear-gradient(left, #015dc7, #a200ff);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#015dc7', endColorStr='#a200ff', gradientType='1');
  opacity: 0;
}
.ct-blog-carousel.default .ct-carousel-item .item-body:before, .ct-blog-carousel.default .ct-carousel-item .item-body:after {
  content: '';
  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;
  height: 30px;
  z-index: -2;
  opacity: 0;
  background-color: #015dc7;
  background-image: -webkit-gradient(linear, left top, right top, from(#015dc7), to(#a200ff));
  background-image: -webkit-linear-gradient(left, #015dc7, #a200ff);
  background-image: -moz-linear-gradient(left, #015dc7, #a200ff);
  background-image: -ms-linear-gradient(left, #015dc7, #a200ff);
  background-image: -o-linear-gradient(left, #015dc7, #a200ff);
  background-image: linear-gradient(left, #015dc7, #a200ff);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#015dc7', endColorStr='#a200ff', gradientType='1');
}
.ct-blog-carousel.default .ct-carousel-item .item-body:before {
  left: 19px;
  right: 19px;
  bottom: -14px;
}
.ct-blog-carousel.default .ct-carousel-item .item-body:after {
  left: 29px;
  right: 29px;
  bottom: -28px;
}
.ct-blog-carousel.default .ct-carousel-item:hover .grid-item-inner .item-category a {
  background-color: transparent;
  background-image: none;
  color: #fff;
  -o-text-fill-color: #fff;
  -ms-text-fill-color: #fff;
  -moz-text-fill-color: #fff;
  -webkit-text-fill-color: #fff;
  background-clip: inherit;
  -o-background-clip: inherit;
  -ms-background-clip: inherit;
  -webkit-background-clip: inherit;
}
.ct-blog-carousel.default .ct-carousel-item:hover .grid-item-inner .item-title {
  color: #fff;
}
.ct-blog-carousel.default .ct-carousel-item:hover .grid-item-inner .item-content {
  color: #efefef;
}
.ct-blog-carousel.default .ct-carousel-item:hover .grid-item-inner:after {
  opacity: 1;
}
.ct-blog-carousel.default .ct-carousel-item:hover .grid-item-inner .item-body:before {
  opacity: 0.5;
}
.ct-blog-carousel.default .ct-carousel-item:hover .grid-item-inner .item-body:after {
  opacity: 0.1;
}
.ct-blog-carousel.layout2 .item-featured {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}
.ct-blog-carousel.layout2 .item-featured a {
  display: block;
}
.ct-blog-carousel.layout2 .item-featured a:before {
  content: '';
  background-color: #015dc7;
  background-image: -webkit-gradient(linear, left top, right top, from(#015dc7), to(#a200ff));
  background-image: -webkit-linear-gradient(left, #015dc7, #a200ff);
  background-image: -moz-linear-gradient(left, #015dc7, #a200ff);
  background-image: -ms-linear-gradient(left, #015dc7, #a200ff);
  background-image: -o-linear-gradient(left, #015dc7, #a200ff);
  background-image: linear-gradient(left, #015dc7, #a200ff);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#015dc7', endColorStr='#a200ff', gradientType='1');
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -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: scaleY(0);
  -khtml-transform: scaleY(0);
  -moz-transform: scaleY(0);
  -ms-transform: scaleY(0);
  -o-transform: scaleY(0);
  transform: scaleY(0);
  opacity: 0;
}
.ct-blog-carousel.layout2 .item-category a {
  font-size: 14px;
}
.ct-blog-carousel.layout2 .item-title {
  font-size: 26px;
  line-height: 1.384;
  margin-top: 13px;
  margin-bottom: 16px;
}
@media screen and (max-width: 991px) {
  .ct-blog-carousel.layout2 .item-title {
    font-size: 22px;
  }
}
.ct-blog-carousel.layout2 .item-title a {
  color: inherit;
}
.ct-blog-carousel.layout2 .item-title a:hover {
  color: #015dc7;
}
.ct-blog-carousel.layout2 .item-content {
  font-size: 14px;
  line-height: 1.845;
}
.ct-blog-carousel.layout2 .grid-item-inner:hover .item-featured a:before {
  -webkit-transform: scaleY(1);
  -khtml-transform: scaleY(1);
  -moz-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -o-transform: scaleY(1);
  transform: scaleY(1);
  opacity: 0.8;
}
.ct-blog-carousel.layout3 .owl-stage-outer {
  padding: 0 15px;
  margin: 0 -15px;
}
.ct-blog-carousel.layout3 .grid-item-inner {
  -webkit-box-shadow: 0 15px 15px rgba(156, 156, 156, 0.15);
  -khtml-box-shadow: 0 15px 15px rgba(156, 156, 156, 0.15);
  -moz-box-shadow: 0 15px 15px rgba(156, 156, 156, 0.15);
  -ms-box-shadow: 0 15px 15px rgba(156, 156, 156, 0.15);
  -o-box-shadow: 0 15px 15px rgba(156, 156, 156, 0.15);
  box-shadow: 0 15px 15px rgba(156, 156, 156, 0.15);
  margin: 0 0 30px;
  background-color: #fff;
}
.ct-blog-carousel.layout3 .item-author {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  margin-right: 20px;
  flex-grow: 1;
}
.ct-blog-carousel.layout3 .item-author img {
  max-width: 45px;
  min-width: 45px;
  -webkit-border-radius: 45px;
  -khtml-border-radius: 45px;
  -moz-border-radius: 45px;
  -ms-border-radius: 45px;
  -o-border-radius: 45px;
  border-radius: 45px;
  margin-right: 20px;
}
.ct-blog-carousel.layout3 .item-author a {
  color: #747da1;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 16px;
  font-weight: 500;
}
.ct-blog-carousel.layout3 .item-body {
  padding: 0 7px;
}
.ct-blog-carousel.layout3 .item-holder {
  border-bottom: 1px solid #ddd;
  padding: 31px 23px 28px 23px;
}
.ct-blog-carousel.layout3 .item-bottom {
  padding: 30px 23px 50px 23px;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}
.ct-blog-carousel.layout3 .item-title {
  font-size: 26px;
  line-height: 1.38;
}
.ct-blog-carousel.layout3 .item-title a {
  color: inherit;
}
.ct-blog-carousel.layout3 .item-title a:hover {
  color: #12a9ff;
}
.ct-blog-carousel.layout3 .item-date {
  color: #747da1;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 16px;
  font-weight: 500;
}
.ct-blog-carousel.layout3 .item-favorite a {
  color: #747da1;
  font-size: 16px;
  position: relative;
}
.ct-blog-carousel.layout3 .item-favorite a .ct-tooltip {
  position: absolute;
  bottom: 18px;
  margin-bottom: 10px;
  background-color: #12a9ff;
  color: #fff;
  display: inline-block;
  font-size: 12px;
  padding: 0 10px;
  line-height: 22px;
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  left: 50%;
  transform: translate(-50%, 0%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
  white-space: nowrap;
}
.ct-blog-carousel.layout3 .item-favorite a .ct-tooltip:before {
  content: '';
  border-width: 5px;
  border-style: solid;
  border-color: #12a9ff transparent transparent;
  position: absolute;
  bottom: -10px;
  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);
}
.ct-blog-carousel.layout3 .item-favorite a:hover .ct-tooltip {
  opacity: 1;
  visibility: visible;
}
.ct-blog-carousel.layout4 .item-featured {
  width: 74%;
}
.ct-blog-carousel.layout4 .item-featured img {
  -webkit-border-radius: 5px;
  -khtml-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  .ct-blog-carousel.layout4 .item-featured {
    width: 100%;
  }
}
.ct-blog-carousel.layout4 .item-body {
  background-color: #fff;
  width: 100%;
  max-width: 558px;
  padding: 50px 30px;
  -webkit-box-shadow: 0 0 20px rgba(205, 205, 205, 0.36);
  -khtml-box-shadow: 0 0 20px rgba(205, 205, 205, 0.36);
  -moz-box-shadow: 0 0 20px rgba(205, 205, 205, 0.36);
  -ms-box-shadow: 0 0 20px rgba(205, 205, 205, 0.36);
  -o-box-shadow: 0 0 20px rgba(205, 205, 205, 0.36);
  box-shadow: 0 0 20px rgba(205, 205, 205, 0.36);
  margin-top: -200px;
  position: relative;
  z-index: 1;
  float: right;
}
@media screen and (max-width: 767px) {
  .ct-blog-carousel.layout4 .item-body {
    max-width: 100%;
    margin-top: 0;
  }
}
.ct-blog-carousel.layout4 .item-date {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: #ff5a3c;
  border-radius: 3px;
  padding: 0 14px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 34px;
}
.ct-blog-carousel.layout4 .item-title {
  color: #0c121f;
  margin-bottom: 21px;
}
.ct-blog-carousel.layout4 .item-title a {
  color: inherit;
}
.ct-blog-carousel.layout4 .item-title a:hover {
  color: #ff5a3c;
}
.ct-blog-carousel.layout4 .item-content {
  font-size: 15px;
  line-height: 28px;
  color: #0f192d;
  margin-bottom: 25px;
}
.ct-blog-carousel.layout4 .item-more a {
  line-height: 45px;
}
.ct-blog-carousel.layout4 .owl-stage-outer {
  padding: 0 20px 20px 20px;
  margin: 0 -20px;
}
.ct-blog-carousel.layout4 .owl-nav {
  margin: 0;
  position: absolute;
  bottom: 0;
  left: 0;
}
.ct-blog-carousel.layout4 .owl-nav .owl-prev, .ct-blog-carousel.layout4 .owl-nav .owl-next {
  background-image: none;
  background-color: #ff5a3c;
}
.ct-blog-carousel.layout4 .owl-nav .owl-prev:hover, .ct-blog-carousel.layout4 .owl-nav .owl-next:hover {
  background-color: #ff3713;
}
.ct-blog-carousel.layout4 .owl-nav .owl-prev {
  margin-left: 0;
}
@media screen and (max-width: 767px) {
  .ct-blog-carousel.layout4 .owl-nav {
    position: static;
    margin-top: 15px;
  }
}
.ct-grid-direction.direction-perspective .in-top .item-holder {
  -webkit-animation: in-top 0.3s ease 0ms 1 forwards;
  animation: in-top 0.3s ease 0ms 1 forwards;
}
.ct-grid-direction.direction-perspective .out-top .item-holder {
  -webkit-animation: out-top 0.3s ease 0ms 1 forwards;
  animation: out-top 0.3s ease 0ms 1 forwards;
}
.ct-grid-direction.direction-perspective .in-top .item-holder, .ct-grid-direction.direction-perspective .out-top .item-holder {
  -webkit-transform-origin: 50% 0%;
  transform-origin: 50% 0%;
}
.ct-grid-direction.direction-perspective .out-bottom .item-holder {
  -webkit-animation: out-bottom 0.3s ease 0ms 1 forwards;
  animation: out-bottom 0.3s ease 0ms 1 forwards;
}
.ct-grid-direction.direction-perspective .in-bottom .item-holder {
  -webkit-animation: in-bottom 0.3s ease 0ms 1 forwards;
  animation: in-bottom 0.3s ease 0ms 1 forwards;
}
.ct-grid-direction.direction-perspective .in-bottom .item-holder, .ct-grid-direction.direction-perspective .out-bottom .item-holder {
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
}
.ct-grid-direction.direction-perspective .out-left .item-holder {
  -webkit-animation: out-left 0.3s ease 0ms 1 forwards;
  animation: out-left 0.3s ease 0ms 1 forwards;
}
.ct-grid-direction.direction-perspective .in-left .item-holder {
  -webkit-animation: in-left 0.3s ease 0ms 1 forwards;
  animation: in-left 0.3s ease 0ms 1 forwards;
}
.ct-grid-direction.direction-perspective .in-left .item-holder, .ct-grid-direction.direction-perspective .out-left .item-holder {
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
}
.ct-grid-direction.direction-perspective .out-right .item-holder {
  -webkit-animation: out-right 0.3s ease 0ms 1 forwards;
  animation: out-right 0.3s ease 0ms 1 forwards;
}
.ct-grid-direction.direction-perspective .in-right .item-holder {
  -webkit-animation: in-right 0.3s ease 0ms 1 forwards;
  animation: in-right 0.3s ease 0ms 1 forwards;
}
.ct-grid-direction.direction-perspective .in-right .item-holder, .ct-grid-direction.direction-perspective .out-right .item-holder {
  -webkit-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
}
.ct-grid-direction.direction-fade .in-top .item-holder {
  -webkit-animation: in-top-fade 0.3s ease 0ms 1 forwards;
  animation: in-top-fade 0.3s ease 0ms 1 forwards;
}
.ct-grid-direction.direction-fade .out-top .item-holder {
  -webkit-animation: out-top-fade 0.3s ease 0ms 1 forwards;
  animation: out-top-fade 0.3s ease 0ms 1 forwards;
}
.ct-grid-direction.direction-fade .in-bottom .item-holder {
  -webkit-animation: in-bottom-fade 0.3s ease 0ms 1 forwards;
  animation: in-bottom-fade 0.3s ease 0ms 1 forwards;
}
.ct-grid-direction.direction-fade .out-bottom .item-holder {
  -webkit-animation: out-bottom-fade 0.3s ease 0ms 1 forwards;
  animation: out-bottom-fade 0.3s ease 0ms 1 forwards;
}
.ct-grid-direction.direction-fade .in-left .item-holder {
  -webkit-animation: in-left-fade 0.3s ease 0ms 1 forwards;
  animation: in-left-fade 0.3s ease 0ms 1 forwards;
}
.ct-grid-direction.direction-fade .out-left .item-holder {
  -webkit-animation: out-left-fade 0.3s ease 0ms 1 forwards;
  animation: out-left-fade 0.3s ease 0ms 1 forwards;
}
.ct-grid-direction.direction-fade .in-right .item-holder {
  -webkit-animation: in-right-fade 0.3s ease 0ms 1 forwards;
  animation: in-right-fade 0.3s ease 0ms 1 forwards;
}
.ct-grid-direction.direction-fade .out-right .item-holder {
  -webkit-animation: out-right-fade 0.3s ease 0ms 1 forwards;
  animation: out-right-fade 0.3s ease 0ms 1 forwards;
}
.ct-grid-portfolio-layout1 .item-holder {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(1, 93, 199, 0.4);
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(1, 93, 199, 0.4)), to(rgba(162, 0, 255, 0.4)));
  background-image: -webkit-linear-gradient(left, rgba(1, 93, 199, 0.4), rgba(162, 0, 255, 0.4));
  background-image: -moz-linear-gradient(left, rgba(1, 93, 199, 0.4), rgba(162, 0, 255, 0.4));
  background-image: -ms-linear-gradient(left, rgba(1, 93, 199, 0.4), rgba(162, 0, 255, 0.4));
  background-image: -o-linear-gradient(left, rgba(1, 93, 199, 0.4), rgba(162, 0, 255, 0.4));
  background-image: linear-gradient(left, rgba(1, 93, 199, 0.4), rgba(162, 0, 255, 0.4));
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='rgba(1, 93, 199, 0.4)', endColorStr='rgba(162, 0, 255, 0.4)', gradientType='1');
  padding: 34px 40px 40px 40px;
  opacity: 0;
}
@media screen and (max-width: 991px) {
  .ct-grid-portfolio-layout1 .item-holder {
    padding: 24px 30px 30px 30px;
  }
}
.ct-grid-portfolio-layout1 .item-holder .item-holder-inner {
  position: relative;
  padding-bottom: 35px;
  height: 100%;
}
.ct-grid-portfolio-layout1 .grid-item-inner {
  position: relative;
  overflow: hidden;
}
.ct-grid-portfolio-layout1 .grid-item-inner img {
  width: 100%;
}
.ct-grid-portfolio-layout1 .grid-item-inner .item-category {
  margin-bottom: 8px;
}
.ct-grid-portfolio-layout1 .grid-item-inner .item-category a {
  color: #fff;
  font-size: 14px;
}
@media screen and (max-width: 991px) {
  .ct-grid-portfolio-layout1 .grid-item-inner .item-category a {
    font-size: 12px;
  }
}
.ct-grid-portfolio-layout1 .grid-item-inner .item-title {
  color: #fff;
  line-height: 1.416;
}
.ct-grid-portfolio-layout1 .grid-item-inner .item-title a:hover {
  color: #fff;
}
@media screen and (max-width: 991px) {
  .ct-grid-portfolio-layout1 .grid-item-inner .item-title {
    font-size: 18px;
  }
}
.ct-grid-portfolio-layout1 .grid-item-inner .item-meta {
  position: absolute;
  left: 0;
  bottom: 0;
}
.ct-grid-portfolio-layout1 .grid-item-inner .item-meta a {
  color: #fff;
  margin-right: 24px;
  font-size: 16px;
}
.ct-grid-portfolio-layout1 .grid-item-inner:hover .item-holder {
  opacity: 1;
}
.ct-grid-portfolio-layout1 .light-box-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
}
.ct-grid-portfolio-layout2 .item-holder {
  position: absolute;
  top: 21px;
  right: 21px;
  left: 21px;
  bottom: 21px;
  background-color: rgba(1, 93, 199, 0.4);
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(1, 93, 199, 0.4)), to(rgba(162, 0, 255, 0.4)));
  background-image: -webkit-linear-gradient(left, rgba(1, 93, 199, 0.4), rgba(162, 0, 255, 0.4));
  background-image: -moz-linear-gradient(left, rgba(1, 93, 199, 0.4), rgba(162, 0, 255, 0.4));
  background-image: -ms-linear-gradient(left, rgba(1, 93, 199, 0.4), rgba(162, 0, 255, 0.4));
  background-image: -o-linear-gradient(left, rgba(1, 93, 199, 0.4), rgba(162, 0, 255, 0.4));
  background-image: linear-gradient(left, rgba(1, 93, 199, 0.4), rgba(162, 0, 255, 0.4));
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='rgba(1, 93, 199, 0.4)', endColorStr='rgba(162, 0, 255, 0.4)', gradientType='1');
  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;
}
.ct-grid-portfolio-layout2 .item-holder a {
  height: 50px;
  width: 50px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.ct-grid-portfolio-layout2 .item-holder a:before, .ct-grid-portfolio-layout2 .item-holder a:after {
  content: '';
  background-color: #fff;
  position: absolute;
}
.ct-grid-portfolio-layout2 .item-holder a:before {
  width: 100%;
  height: 2px;
  top: 24px;
  left: 0;
}
.ct-grid-portfolio-layout2 .item-holder a:after {
  height: 100%;
  width: 2px;
  left: 24px;
  top: 0;
}
.ct-grid-portfolio-layout2 .item-holder .light-box-video {
  text-align: center;
  line-height: 50px;
  color: #fff;
}
.ct-grid-portfolio-layout2 .item-holder .light-box-video i {
  font-size: 32px;
}
.ct-grid-portfolio-layout2 .item-holder .light-box-video:before, .ct-grid-portfolio-layout2 .item-holder .light-box-video:after {
  display: none;
}
.ct-grid-portfolio-layout2 .grid-item-inner {
  position: relative;
  overflow: hidden;
}
.ct-grid-portfolio-layout2 .grid-item-inner img {
  width: 100%;
}
.ct-grid-portfolio-layout2 .grid-item-inner:hover .item-holder {
  opacity: 1;
}
.ct-grid-portfolio-layout2.owl-carousel .grid-item-inner, .ct-grid-portfolio-layout2.owl-carousel .item-holder {
  -webkit-border-radius: 5px;
  -khtml-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
}
.ct-grid-portfolio-layout2.owl-carousel .owl-dots .owl-dot {
  width: 10px;
  background-image: none;
  background-color: #cecece;
}
.ct-grid-portfolio-layout2.owl-carousel .owl-dots .owl-dot.active {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#6747ee), to(#9124dc));
  background-image: -webkit-linear-gradient(bottom, #6747ee, #9124dc);
  background-image: -moz-linear-gradient(bottom, #6747ee, #9124dc);
  background-image: -ms-linear-gradient(bottom, #6747ee, #9124dc);
  background-image: -o-linear-gradient(bottom, #6747ee, #9124dc);
  background-image: linear-gradient(bottom, #6747ee, #9124dc);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#6747ee', endColorStr='#9124dc');
}
.ct-grid-portfolio-layout2.owl-carousel[data-arrows='true'] .owl-nav {
  display: block;
}
.ct-grid-portfolio-layout2.owl-carousel[data-arrows='true'] .owl-nav .owl-prev, .ct-grid-portfolio-layout2.owl-carousel[data-arrows='true'] .owl-nav .owl-next {
  background-image: none;
  background-color: #ff5a3c;
}
.ct-grid-portfolio-layout2.owl-carousel[data-arrows='true'] .owl-nav .owl-prev:hover, .ct-grid-portfolio-layout2.owl-carousel[data-arrows='true'] .owl-nav .owl-next:hover {
  background-color: #ff3713;
}
.preset2 .ct-grid-portfolio-layout2 .item-holder {
  background-image: none;
  background-color: rgba(255, 90, 60, 0.8);
}
.ct-short-text.layout1 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .ct-short-text.layout1 {
    display: block;
    text-align: center;
  }
}
.ct-short-text.layout1 .short-text-title {
  width: 46%;
  padding-right: 32px;
  margin-bottom: 0;
  font-size: 50px;
  line-height: 1.2;
  text-align: right;
  position: relative;
}
@media screen and (max-width: 1199px) {
  .ct-short-text.layout1 .short-text-title {
    font-size: 36px;
  }
}
@media screen and (max-width: 767px) {
  .ct-short-text.layout1 .short-text-title {
    font-size: 32px;
    padding-right: 0;
    width: 100%;
    text-align: center;
    padding-bottom: 14px;
    margin-bottom: 18px;
  }
}
@media screen and (max-width: 575px) {
  .ct-short-text.layout1 .short-text-title br {
    display: none;
  }
}
.ct-short-text.layout1 .short-text-title:before {
  content: '';
  width: 2px;
  top: 22px;
  bottom: 22px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#6747ee), to(#9124dc));
  background-image: -webkit-linear-gradient(bottom, #6747ee, #9124dc);
  background-image: -moz-linear-gradient(bottom, #6747ee, #9124dc);
  background-image: -ms-linear-gradient(bottom, #6747ee, #9124dc);
  background-image: -o-linear-gradient(bottom, #6747ee, #9124dc);
  background-image: linear-gradient(bottom, #6747ee, #9124dc);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#6747ee', endColorStr='#9124dc');
  position: absolute;
  right: -2px;
}
@media screen and (max-width: 767px) {
  .ct-short-text.layout1 .short-text-title:before {
    width: 80px;
    height: 2px;
    left: 0;
    left: 0;
    margin: auto;
    top: auto;
    bottom: 0;
  }
}
.ct-short-text.layout1 .short-text-description {
  width: 54%;
  padding-left: 32px;
  font-size: 18px;
  line-height: 1.55555;
}
@media screen and (max-width: 1199px) {
  .ct-short-text.layout1 .short-text-description {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .ct-short-text.layout1 .short-text-description {
    width: 100%;
    padding-left: 0;
  }
}
.ct-short-text.layout2 {
  padding: 95px 60px 94px 80px;
  background-color: rgba(1, 93, 199, 0.9);
  color: #fff;
}
@media screen and (max-width: 991px) {
  .ct-short-text.layout2 {
    padding: 65px 30px 64px 50px;
  }
}
@media screen and (max-width: 575px) {
  .ct-short-text.layout2 {
    padding: 35px 20px 34px 20px;
  }
}
.ct-short-text.layout2 .short-text-title {
  font-size: 16px;
  font-weight: 500;
  font-family: inherit;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #fff;
  margin-bottom: 25px;
}
.ct-short-text.layout2 .short-text-description {
  font-size: 30px;
  font-family: 'Poppins', sans-serif;
  line-height: 1.6666;
  font-weight: 600;
}
@media screen and (max-width: 991px) {
  .ct-short-text.layout2 .short-text-description {
    font-size: 24px;
  }
}
@media screen and (max-width: 575px) {
  .ct-short-text.layout2 .short-text-description {
    font-size: 20px;
  }
}
.ct-short-text.layout2 .btn {
  color: #fff;
  margin-top: 37px;
}
.ct-short-text.layout2 .btn:after {
  margin-left: 6px;
}
.ct-short-text.layout2 .btn span {
  border-color: #fff;
}
.ct-short-text.layout2 .btn:hover {
  color: rgba(255, 255, 255, 0.8);
}
.ct-short-text.layout2 .btn:hover span {
  border-color: rgba(255, 255, 255, 0.8);
}
.ct-short-text.layout3 {
  background-color: #6747ee;
  background-image: -webkit-gradient(linear, left top, right top, from(#6747ee), to(#9124dc));
  background-image: -webkit-linear-gradient(left, #6747ee, #9124dc);
  background-image: -moz-linear-gradient(left, #6747ee, #9124dc);
  background-image: -ms-linear-gradient(left, #6747ee, #9124dc);
  background-image: -o-linear-gradient(left, #6747ee, #9124dc);
  background-image: linear-gradient(left, #6747ee, #9124dc);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#6747ee', endColorStr='#9124dc', gradientType='1');
  max-width: 790px;
  padding: 33px 40px 103px 33px;
  font-size: 18px;
  line-height: 1.5555;
  color: #fff;
  position: relative;
  -webkit-box-shadow: 0 16px 32px rgba(185, 193, 255, 0.3);
  -khtml-box-shadow: 0 16px 32px rgba(185, 193, 255, 0.3);
  -moz-box-shadow: 0 16px 32px rgba(185, 193, 255, 0.3);
  -ms-box-shadow: 0 16px 32px rgba(185, 193, 255, 0.3);
  -o-box-shadow: 0 16px 32px rgba(185, 193, 255, 0.3);
  box-shadow: 0 16px 32px rgba(185, 193, 255, 0.3);
}
.ct-short-text.layout3:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../images/bg-map.png);
  background-repeat: no-repeat;
  background-position: top center;
}
.ct-short-text.layout3 .short-text-description {
  max-width: 615px;
  position: relative;
  z-index: 1;
}
.ct-short-text.layout3 .btn {
  color: #fff;
  margin-top: 18px;
}
.ct-short-text.layout3 .btn span {
  border-color: #fff;
}
.ct-short-text.layout3 .btn:hover {
  opacity: 0.8;
}
.ct-list {
  margin: 0;
  list-style: none;
}
.ct-list.layout1 li i {
  margin-right: 9px;
  color: #015dc7;
}
.ct-list.layout1 li + li {
  margin-top: 10px;
}
.ct-list.layout1.green-color li i {
  color: #1cae0d;
}
.ct-list.layout2 li {
  border-bottom: 1px solid #f0f0f0;
  padding: 17px 0;
}
.ct-list.layout2 li label {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #1d274e;
  width: 28%;
  padding-right: 30px;
}
@media screen and (max-width: 767px) {
  .ct-list.layout2 li label {
    width: 42%;
  }
}
@media screen and (max-width: 575px) {
  .ct-list.layout2 li label {
    width: 100%;
  }
}
.ct-list.layout2 li:last-child {
  border: none;
}
.ct-list.layout3 li {
  position: relative;
}
.ct-list.layout3 li + li {
  margin-top: 17px;
}
.ct-list.layout3 i {
  font-size: 19px;
  position: absolute;
  top: 6px;
  left: 0;
}
.ct-list.layout3 i + span {
  padding-left: 39px;
}
.ct-list.layout3 span {
  font-size: 18px;
  color: #747da1;
  line-height: 1.6666;
  display: inline-block;
}
.ct-list.layout4 {
  font-size: 16px;
}
.ct-list.layout4 li {
  display: flex;
  flex-wrap: nowrap;
}
.ct-list.layout4 li + li {
  margin-top: 18px;
}
.ct-list.layout4 label {
  font-weight: 500;
  min-width: 60px;
}
.ct-list.layout4.color-light {
  color: #fff;
}
.ct-list.layout4.color-light span {
  color: rgba(255, 255, 255, 0.7);
}
.vc_single_image-wrapper.shadow-style1 {
  position: relative;
  z-index: 1;
}
.vc_single_image-wrapper.shadow-style1 img {
  -webkit-box-shadow: 0 16px 32px rgba(152, 164, 246, 0.3);
  -khtml-box-shadow: 0 16px 32px rgba(152, 164, 246, 0.3);
  -moz-box-shadow: 0 16px 32px rgba(152, 164, 246, 0.3);
  -ms-box-shadow: 0 16px 32px rgba(152, 164, 246, 0.3);
  -o-box-shadow: 0 16px 32px rgba(152, 164, 246, 0.3);
  box-shadow: 0 16px 32px rgba(152, 164, 246, 0.3);
}
.vc_single_image-wrapper.shadow-style1:before {
  content: '';
  position: absolute;
  top: 40px;
  height: 100%;
  width: 100%;
  right: 40px;
  background-image: url(../images/banner-arrow.png);
  background-repeat: no-repeat;
  background-position: top right;
  z-index: -1;
}
.ct-contact-form-default .nice-select:after {
  right: 38px;
}
.ct-contact-form-default .nice-select span.current {
  line-height: 66px;
}
.ct-contact-form-default.style-light .input-filled label {
  color: #fff;
}
.ct-contact-form-default.style-light .wpcf7-form-control:not(.wpcf7-submit) {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  height: 70px;
  padding-left: 38px;
  padding-right: 38px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
}
.ct-contact-form-default.style-light .wpcf7-form-control:not(.wpcf7-submit):focus {
  border-color: #fff;
}
.ct-contact-form-default.style-light .wpcf7-form-control.wpcf7-submit {
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
  margin-top: 3px;
  padding-left: 45px;
  padding-right: 45px;
  line-height: 70px;
  background-color: #7100b3;
  background-image: -webkit-gradient(linear, left top, right top, from(#7100b3), to(#610099));
  background-image: -webkit-linear-gradient(left, #7100b3, #610099);
  background-image: -moz-linear-gradient(left, #7100b3, #610099);
  background-image: -ms-linear-gradient(left, #7100b3, #610099);
  background-image: -o-linear-gradient(left, #7100b3, #610099);
  background-image: linear-gradient(left, #7100b3, #610099);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#7100b3', endColorStr='#610099', gradientType='1');
}
.ct-contact-form-default.style-light .wpcf7-form-control.wpcf7-submit:hover {
  background-color: #1d274e;
  background-image: none;
}
.ct-contact-form-default.style-light .wpcf7-form-control.wpcf7-textarea {
  height: 180px;
  padding-top: 22px;
}
.ct-contact-form-default.style-dark .input-filled label {
  background-color: #015dc7;
  background-image: -webkit-gradient(linear, left top, right top, from(#015dc7), to(#a200ff));
  background-image: -webkit-linear-gradient(left, #015dc7, #a200ff);
  background-image: -moz-linear-gradient(left, #015dc7, #a200ff);
  background-image: -ms-linear-gradient(left, #015dc7, #a200ff);
  background-image: -o-linear-gradient(left, #015dc7, #a200ff);
  background-image: linear-gradient(left, #015dc7, #a200ff);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#015dc7', endColorStr='#a200ff', gradientType='1');
  background-color: transparent;
  background-clip: text;
  -moz-background-clip: text;
  -webkit-background-clip: text;
  text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  -webkit-text-fill-color: transparent;
}
.ct-contact-form-default.style-dark .wpcf7-form-control:not(.wpcf7-submit) {
  background-color: transparent;
  height: 70px;
  padding-left: 38px;
  padding-right: 38px;
  font-size: 16px;
  color: #6e7caf;
  border-color: rgba(157, 149, 223, 0.2);
}
.ct-contact-form-default.style-dark .wpcf7-form-control:not(.wpcf7-submit):focus {
  border-color: #015dc7;
}
.ct-contact-form-default.style-dark .wpcf7-form-control.wpcf7-submit {
  margin-top: 3px;
  padding-left: 45px;
  padding-right: 45px;
  line-height: 70px;
}
.ct-contact-form-default.style-dark .wpcf7-form-control.wpcf7-textarea {
  height: 180px;
  padding-top: 22px;
}
.ct-contact-form-default.style-classic .wpcf7-form-control:not(.wpcf7-submit) {
  background-color: #f7f7ff;
  border: 1px solid #e4e4e4;
  color: #747da1;
  height: 55px;
}
.ct-contact-form-default.style-classic .wpcf7-form-control:not(.wpcf7-submit):focus {
  border-color: #12a9ff;
}
.ct-contact-form-default.style-classic .wpcf7-form-control.wpcf7-textarea {
  height: 155px;
}
.ct-contact-form-default.style-classic .wpcf7-form-control.wpcf7-submit {
  line-height: 50px;
  padding: 0 22px;
  -webkit-box-shadow: 0 10px 29px rgba(134, 134, 134, 0.4);
  -khtml-box-shadow: 0 10px 29px rgba(134, 134, 134, 0.4);
  -moz-box-shadow: 0 10px 29px rgba(134, 134, 134, 0.4);
  -ms-box-shadow: 0 10px 29px rgba(134, 134, 134, 0.4);
  -o-box-shadow: 0 10px 29px rgba(134, 134, 134, 0.4);
  box-shadow: 0 10px 29px rgba(134, 134, 134, 0.4);
}
.ct-contact-form-default.line-light .wpcf7-form-control:not(.wpcf7-submit) {
  background-color: transparent;
  border-color: #fff;
  border-width: 0 0 1px 0;
  height: 42px;
  padding-left: 0px;
  padding-right: 0px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}
.ct-contact-form-default.line-light .wpcf7-form-control:not(.wpcf7-submit):focus {
  border-color: #fff;
}
.ct-contact-form-default.line-light .wpcf7-form-control.wpcf7-submit {
  -webkit-border-radius: 45px;
  -khtml-border-radius: 45px;
  -moz-border-radius: 45px;
  -ms-border-radius: 45px;
  -o-border-radius: 45px;
  border-radius: 45px;
  margin-top: 12px;
  padding-left: 32px;
  padding-right: 32px;
  line-height: 45px;
  background-color: #fff;
  color: #ff5a3c;
  background-image: none;
  letter-spacing: 0px;
  text-transform: capitalize;
}
.ct-contact-form-default.line-light .wpcf7-form-control.wpcf7-submit:hover {
  color: #ff2f09;
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.12);
  -khtml-box-shadow: 0 0 6px rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0 0 6px rgba(0, 0, 0, 0.12);
  -ms-box-shadow: 0 0 6px rgba(0, 0, 0, 0.12);
  -o-box-shadow: 0 0 6px rgba(0, 0, 0, 0.12);
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.12);
}
.ct-contact-form-default.line-light .wpcf7-form-control.wpcf7-textarea {
  height: 125px;
  padding-top: 10px;
}
.ct-contact-form-default.line-light .wpcf7-form-control-wrap {
  margin-bottom: 36px;
}
.ct-contact-form-default.line-light .wpcf7-form-control-wrap .wpcf7-not-valid {
  border-color: #fff !important;
}
.ct-contact-form-default.line-light .wpcf7-form .wpcf7-response-output.wpcf7-validation-errors {
  color: #fff;
}
.ct-showcase .ct-showcase-image {
  position: relative;
  -webkit-border-radius: 14px;
  -khtml-border-radius: 14px;
  -moz-border-radius: 14px;
  -ms-border-radius: 14px;
  -o-border-radius: 14px;
  border-radius: 14px;
  -webkit-box-shadow: 0 0px 20px rgba(0, 0, 0, 0.1);
  -khtml-box-shadow: 0 0px 20px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0px 20px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 0px 20px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 0px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0px 20px rgba(0, 0, 0, 0.1);
}
.ct-showcase .ct-showcase-image img {
  width: 100%;
}
.ct-showcase .ct-showcase-image a {
  display: block;
  -webkit-border-radius: 14px;
  -khtml-border-radius: 14px;
  -moz-border-radius: 14px;
  -ms-border-radius: 14px;
  -o-border-radius: 14px;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
}
.ct-showcase .ct-showcase-image a:before, .ct-showcase .ct-showcase-image a:after {
  content: "";
  background: #fff;
  height: 0;
  width: 0;
  z-index: 1;
  position: absolute;
  -webkit-transition-duration: 1.1s;
  -o-transition-duration: 1.1s;
  transition-duration: 1.1s;
}
.ct-showcase .ct-showcase-image a:before {
  right: 0;
  opacity: 1;
  top: 0;
}
.ct-showcase .ct-showcase-image a:after {
  bottom: 0;
  opacity: 0.7;
  left: 0;
}
.ct-showcase .ct-showcase-image a:hover:before, .ct-showcase .ct-showcase-image a:hover:after {
  height: 100%;
  opacity: 0;
  width: 100%;
}
.ct-showcase .ct-showcase-title {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  margin: 37px 0 0;
}
.ct-showcase .ct-showcase-title a {
  color: inherit;
}
.ct-showcase .ct-showcase-title span {
  font-size: 10px;
  background-color: #015dc7;
  background-image: -webkit-gradient(linear, left top, right top, from(#015dc7), to(#a200ff));
  background-image: -webkit-linear-gradient(left, #015dc7, #a200ff);
  background-image: -moz-linear-gradient(left, #015dc7, #a200ff);
  background-image: -ms-linear-gradient(left, #015dc7, #a200ff);
  background-image: -o-linear-gradient(left, #015dc7, #a200ff);
  background-image: linear-gradient(left, #015dc7, #a200ff);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#015dc7', endColorStr='#a200ff', gradientType='1');
  border-radius: 22px;
  color: #fff;
  padding: 0 8px;
  line-height: 22px;
  display: inline-block;
  font-weight: 500;
  margin-left: 2px;
  vertical-align: middle;
}
.vc_row .row-divider {
  position: static;
}
.vc_row .row-divider .row-divider-top, .vc_row .row-divider .row-divider-bottom {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 88;
  text-align: center;
  height: 66px;
  background-image: url(../images/divider-top.png);
  background-repeat: no-repeat;
  background-position: left center;
}
.vc_row .row-divider .row-divider-top {
  top: 0;
}
.vc_row .row-divider .row-divider-bottom {
  bottom: 0;
  -webkit-transform: rotate(180deg);
  -khtml-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
  background-position: right center;
}
.row-boxshadow {
  -webkit-box-shadow: 0 0 35px rgba(156, 156, 156, 0.23);
  -khtml-box-shadow: 0 0 35px rgba(156, 156, 156, 0.23);
  -moz-box-shadow: 0 0 35px rgba(156, 156, 156, 0.23);
  -ms-box-shadow: 0 0 35px rgba(156, 156, 156, 0.23);
  -o-box-shadow: 0 0 35px rgba(156, 156, 156, 0.23);
  box-shadow: 0 0 35px rgba(156, 156, 156, 0.23);
}
body .vc_row.vc_row-fluid .row-contact {
  margin-bottom: -400px;
  position: relative;
  z-index: 100;
}
.ct-testimonial-default svg {
  height: 36px;
  -webkit-transform: rotate(180deg);
  -khtml-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
  position: absolute;
  top: 30px;
  left: 20px;
}
.ct-testimonial-default svg path {
  fill: #015dc7;
}
.ct-testimonial-default .ct-testimonial-holder {
  padding: 76px 45px 45px 45px;
  background-color: #fff;
  -webkit-box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.2);
  -khtml-box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.2);
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.2);
  position: relative;
  -webkit-border-radius: 12px;
  -khtml-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  border-radius: 12px;
}
@media screen and (max-width: 767px) {
  .ct-testimonial-default .ct-testimonial-holder {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.ct-testimonial-default .ct-testimonial-holder p {
  margin-bottom: 0;
}
.ct-testimonial-default .ct-testimonial-holder:after {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 15px 0 15px;
  border-color: #fff transparent transparent transparent;
  position: absolute;
  left: 92px;
  bottom: -13px;
  content: "";
}
@media screen and (max-width: 767px) {
  .ct-testimonial-default .ct-testimonial-holder:after {
    left: 50px;
  }
}
.ct-testimonial-default .ct-testimonial-content {
  padding-top: 20px;
  padding-left: 55px;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}
@media screen and (max-width: 767px) {
  .ct-testimonial-default .ct-testimonial-content {
    padding-left: 30px;
  }
}
.ct-testimonial-default .ct-testimonial-image {
  width: 100px;
  margin-right: 20px;
}
.ct-testimonial-default .ct-testimonial-image img {
  width: 100%;
  -webkit-border-radius: 100px;
  -khtml-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  border-radius: 100px;
}
@media screen and (max-width: 767px) {
  .ct-testimonial-default .ct-testimonial-image {
    width: 70px;
  }
}
.ct-testimonial-default .ct-testimonial-title {
  margin-bottom: 7px;
}
@media screen and (max-width: 767px) {
  .ct-testimonial-default .ct-testimonial-title {
    font-size: 20px;
  }
}
.ct-testimonial-default .ct-testimonial-position {
  font-size: 14px;
}
.ct-testimonial-layout2 .testimonial-icon {
  height: 28px;
  position: absolute;
  top: 24px;
  left: 20px;
}
.ct-testimonial-layout2 .testimonial-icon path {
  fill: #015dc7;
}
.ct-testimonial-layout2 .testimonial-arrow {
  height: 10px;
  position: absolute;
  bottom: -10px;
  left: 12px;
  -webkit-transform: rotate(180deg);
  -khtml-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.ct-testimonial-layout2 .testimonial-arrow path {
  fill: #fff;
}
.ct-testimonial-layout2 .ct-testimonial-holder {
  padding: 56px 40px 49px 50px;
  background-color: #fff;
  -webkit-box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.2);
  -khtml-box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.2);
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.2);
  position: relative;
  -webkit-border-radius: 0.5rem;
  -khtml-border-radius: 0.5rem;
  -moz-border-radius: 0.5rem;
  -ms-border-radius: 0.5rem;
  -o-border-radius: 0.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .ct-testimonial-layout2 .ct-testimonial-holder {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.ct-testimonial-layout2 .ct-testimonial-holder h3 {
  margin-bottom: 0;
}
.ct-testimonial-layout2 .ct-testimonial-content {
  padding-top: 20px;
  padding-left: 35px;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}
@media screen and (max-width: 767px) {
  .ct-testimonial-layout2 .ct-testimonial-content {
    padding-left: 30px;
  }
}
.ct-testimonial-layout2 .ct-testimonial-image {
  width: 64px;
  margin-right: 20px;
}
.ct-testimonial-layout2 .ct-testimonial-image img {
  width: 100%;
  -webkit-border-radius: 64px;
  -khtml-border-radius: 64px;
  -moz-border-radius: 64px;
  -ms-border-radius: 64px;
  -o-border-radius: 64px;
  border-radius: 64px;
}
.ct-testimonial-layout2 .ct-testimonial-title {
  margin-bottom: 7px;
  font-size: 20px;
}
.ct-testimonial-layout2 .ct-testimonial-position {
  font-size: 14px;
}
.ct-testimonial-carousel1 .testimonial-featured {
  -ms-flex: 0 0 35%;
  flex: 0 0 35%;
  max-width: 35%;
  padding: 0 10px 10px 15px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
@media screen and (max-width: 575px) {
  .ct-testimonial-carousel1 .testimonial-featured {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 25px 10px 15px;
  }
}
.ct-testimonial-carousel1 .testimonial-featured:before {
  content: '';
  width: 0;
  height: 0;
  border-left: 140px solid rgba(0, 0, 0, );
  border-bottom: 140px solid #ff5a3c;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
.ct-testimonial-carousel1 .testimonial-featured img {
  -webkit-border-radius: 5px;
  -khtml-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
}
.ct-testimonial-carousel1 .testimonial-featured + .testimonial-holder {
  padding-left: 20px;
}
.ct-testimonial-carousel1 .testimonial-description {
  color: #0f192d;
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 17px;
}
.ct-testimonial-carousel1 .testimonial-title {
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 500;
}
.ct-testimonial-carousel1 .testimonial-position {
  font-size: 14px;
  font-family: 'Rubik', sans-serif;
  font-weight: 400;
}
.ct-testimonial-carousel1 .testimonial-holder {
  -ms-flex: 0 0 65%;
  flex: 0 0 65%;
  max-width: 65%;
  padding: 0 15px;
}
@media screen and (max-width: 575px) {
  .ct-testimonial-carousel1 .testimonial-holder {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 15px;
    margin-top: 22px;
  }
}
.ct-testimonial-carousel1 .grid-item-inner {
  margin: 0 -15px;
  flex-wrap: wrap;
  display: flex;
  align-items: center;
}
.ct-newsletter1 form {
  position: relative;
}
.ct-newsletter1 .tnp-subscription {
  margin: 0;
}
.ct-newsletter1 .tnp-field-email .tnp-email {
  border: 1px solid #ddd;
  background-color: #f5f5f5;
  padding: 10px 30px;
  -webkit-border-radius: 2px;
  -khtml-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: 0 7px 7px rgba(255, 90, 60, 0.20);
  -khtml-box-shadow: 0 7px 7px rgba(255, 90, 60, 0.20);
  -moz-box-shadow: 0 7px 7px rgba(255, 90, 60, 0.20);
  -ms-box-shadow: 0 7px 7px rgba(255, 90, 60, 0.20);
  -o-box-shadow: 0 7px 7px rgba(255, 90, 60, 0.20);
  box-shadow: 0 7px 7px rgba(255, 90, 60, 0.20);
}
.ct-newsletter1 .tnp-field-email .tnp-email:focus {
  border-color: #ff5a3c;
}
.ct-newsletter1 .tnp-field-button .tnp-submit {
  text-indent: -999px;
  padding: 0;
  width: 58px;
  height: 50px;
  background-color: #ff5a3c;
  -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: 0;
  right: 0;
  background-image: url(../images/newsletter-icon.png);
  background-position: center;
  background-repeat: no-repeat;
}
.ct-social1 a {
  font-size: 14px;
  color: #ff5a3c;
  height: 35px;
  line-height: 33px;
  text-align: center;
  width: 35px;
  -webkit-border-radius: 35px;
  -khtml-border-radius: 35px;
  -moz-border-radius: 35px;
  -ms-border-radius: 35px;
  -o-border-radius: 35px;
  border-radius: 35px;
  border: 1px solid #dedede;
  display: inline-block;
  margin: 5px;
}
.ct-social1 a:hover {
  color: #fff;
  background-color: #ff5a3c;
  border-color: #ff5a3c;
}
.ct-social1.text-left a:nth-child(1) {
  margin-left: 0;
}
.row-border-shadow {
  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 0 20px rgba(205, 205, 205, 0.38);
  -khtml-box-shadow: 0 0 20px rgba(205, 205, 205, 0.38);
  -moz-box-shadow: 0 0 20px rgba(205, 205, 205, 0.38);
  -ms-box-shadow: 0 0 20px rgba(205, 205, 205, 0.38);
  -o-box-shadow: 0 0 20px rgba(205, 205, 205, 0.38);
  box-shadow: 0 0 20px rgba(205, 205, 205, 0.38);
  position: relative;
  z-index: 99;
}
.ct-team-carousel-layout1 .team-featured img {
  -webkit-border-radius: 5px;
  -khtml-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
}
.ct-team-carousel-layout1 .team-holder {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 90, 60, 0.8);
  padding: 13px 30px;
  min-width: 262px;
  -webkit-border-radius: 0 0 0 5px;
  -khtml-border-radius: 0 0 0 5px;
  -moz-border-radius: 0 0 0 5px;
  -ms-border-radius: 0 0 0 5px;
  -o-border-radius: 0 0 0 5px;
  border-radius: 0 0 0 5px;
}
@media screen and (max-width: 575px) {
  .ct-team-carousel-layout1 .team-holder {
    min-width: auto;
  }
}
.ct-team-carousel-layout1 .team-title {
  margin-bottom: 3px;
  font-size: 20px;
  color: #fff;
}
.ct-team-carousel-layout1 .team-title a {
  color: inherit;
}
.ct-team-carousel-layout1 .team-title a:hover {
  color: inherit;
}
.ct-team-carousel-layout1 .team-position {
  font-size: 14px;
  color: #fff;
}
.ct-team-carousel-layout1 .team-social {
  position: absolute;
  top: 33px;
  width: 34px;
  left: -17px;
}
.ct-team-carousel-layout1 .team-social a {
  width: 34px;
  height: 34px;
  line-height: 32px;
  background-color: #f5f5f5;
  -webkit-border-radius: 34px;
  -khtml-border-radius: 34px;
  -moz-border-radius: 34px;
  -ms-border-radius: 34px;
  -o-border-radius: 34px;
  border-radius: 34px;
  font-size: 14px;
  color: #ff5a3c;
  display: block;
  border: 1px solid #dfdfdf;
  text-align: center;
  opacity: 0;
  transform: translateY(-100%) rotate(0);
}
.ct-team-carousel-layout1 .team-social a + a {
  margin-top: 15px;
}
.ct-team-carousel-layout1 .team-social a:nth-child(1) {
  -webkit-transition-delay: 0;
  transition-delay: 0;
}
.ct-team-carousel-layout1 .team-social a:nth-child(2) {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}
.ct-team-carousel-layout1 .team-social a:nth-child(3) {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.ct-team-carousel-layout1 .team-social a:nth-child(4) {
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.ct-team-carousel-layout1 .team-social a:nth-child(5) {
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}
.ct-team-carousel-layout1 .team-social a:nth-child(6) {
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}
.ct-team-carousel-layout1 .team-social a:nth-child(7) {
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}
.ct-team-carousel-layout1 .team-social a:nth-child(8) {
  -webkit-transition-delay: 0.7s;
  transition-delay: 0.7s;
}
.ct-team-carousel-layout1 .team-social a:nth-child(9) {
  -webkit-transition-delay: 0.8s;
  transition-delay: 0.8s;
}
.ct-team-carousel-layout1 .ct-team-item-inner {
  position: relative;
}
.ct-team-carousel-layout1 .ct-team-item-inner:hover .team-social a {
  -webkit-transform: translateY(0) rotate(360deg);
  -khtml-transform: translateY(0) rotate(360deg);
  -moz-transform: translateY(0) rotate(360deg);
  -ms-transform: translateY(0) rotate(360deg);
  -o-transform: translateY(0) rotate(360deg);
  transform: translateY(0) rotate(360deg);
  opacity: 1;
}
.ct-team-carousel-layout1 .owl-stage-outer {
  padding: 0 20px;
  margin: 0 -20px;
}
.ct-team-carousel-layout1 .owl-dots .owl-dot {
  background-color: #ff5a3c;
  background-image: none;
}
.contact-email {
  color: #0f192d;
}
.contact-email span {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
}
.ct-grid-blog-layout1 .item--featured {
  position: relative;
  overflow: hidden;
}
.ct-grid-blog-layout1 .item--featured img {
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
}
.ct-grid-blog-layout1 .item--meta {
  list-style: none;
  margin-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
}
.ct-grid-blog-layout1 .item--meta li {
  display: inline-block;
  font-size: 14px;
  color: #999;
  position: relative;
  margin-right: 14px;
  padding-right: 14px;
  font-weight: 500;
}
.ct-grid-blog-layout1 .item--meta li:before {
  content: '';
  height: 22px;
  width: 1px;
  background-color: #bbc1cd;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate(0, -50%);
  -khtml-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.ct-grid-blog-layout1 .item--meta li a {
  color: #015dc7;
}
.ct-grid-blog-layout1 .item--meta li a:hover {
  text-decoration: underline;
}
.ct-grid-blog-layout1 .item--meta li:last-child:before {
  display: none;
}
.ct-grid-blog-layout1 .item--title {
  line-height: 1.33333;
  margin-bottom: 13px;
}
.ct-grid-blog-layout1 .item--title a {
  color: inherit;
}
.ct-grid-blog-layout1 .item--title a:hover {
  color: #015dc7;
}
@media screen and (max-width: 1199px) {
  .ct-grid-blog-layout1 .item--title {
    font-size: 20px;
  }
}
.ct-grid-blog-layout1 .item--holder {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-style: 14px;
  font-weight: 500;
  color: #999;
}
.ct-grid-blog-layout1 .item--holder .item--author {
  flex-grow: 1;
  margin-right: 20px;
}
.ct-grid-blog-layout1 .item--holder .item--author a {
  color: inherit;
}
.ct-grid-blog-layout1 .item--holder .item--author a:hover {
  color: inherit;
}
.ct-grid-blog-layout1 .item--body {
  background-color: #fff;
  padding: 21px 30px 30px;
}
@media screen and (max-width: 1199px) {
  .ct-grid-blog-layout1 .item--body {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.ct-grid-blog-layout1 .item--readmore i {
  margin-left: 8px;
}
.ct-grid-blog-layout1 .grid-item-inner {
  border: 1px solid #e5edfc;
  position: relative;
  overflow: hidden;
  -webkit-border-radius: 7px;
  -khtml-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  -o-border-radius: 7px;
  border-radius: 7px;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
  margin-bottom: 50px;
}
.ct-grid-blog-layout1 .grid-item-inner:hover {
  -webkit-box-shadow: 0 27px 34px rgba(3, 21, 99, 0.2);
  -khtml-box-shadow: 0 27px 34px rgba(3, 21, 99, 0.2);
  -moz-box-shadow: 0 27px 34px rgba(3, 21, 99, 0.2);
  -ms-box-shadow: 0 27px 34px rgba(3, 21, 99, 0.2);
  -o-box-shadow: 0 27px 34px rgba(3, 21, 99, 0.2);
  box-shadow: 0 27px 34px rgba(3, 21, 99, 0.2);
}
.ct-grid-blog-layout1 .grid-item-inner:hover .item--featured img {
  -webkit-transform: scale(1.1);
  -khtml-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.ct-grid-blog-layout1 .ct-load-more {
  margin-top: -20px;
}
.wpb_gmaps_widget .wpb_wrapper {
  padding: 0 !important;
}
.sidebar-fixed-inner, .col-sidebar-fixed > .vc_column-inner {
  position: -webkit-sticky;
  position: sticky;
  top: 30px;
}
.admin-bar .sidebar-fixed-inner, .admin-bar .col-sidebar-fixed > .vc_column-inner {
  top: 60px;
}
.header-sticky .sidebar-fixed-inner, .header-sticky .col-sidebar-fixed > .vc_column-inner {
  top: 100px;
}
.admin-bar.header-sticky .sidebar-fixed-inner, .admin-bar.header-sticky .col-sidebar-fixed > .vc_column-inner {
  top: 130px;
}
.widget-title {
  font-size: 28px;
  text-align: center;
  margin-bottom: 31px;
}
.widget-title span {
  display: inline-block;
  padding: 0 58px;
  position: relative;
}
.widget-title span:before, .widget-title span:after {
  content: '';
  width: 40px;
  height: 2px;
  background-color: #ebebeb;
  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%);
}
.widget-title span:before {
  left: 0;
}
.widget-title span:after {
  right: 0;
}
#secondary .widget {
  margin-bottom: 40px;
  border: 2px solid #e3e3e3;
  padding: 38px 28px;
}
#secondary .widget:last-child {
  margin-bottom: 0;
}
#secondary .widget.widget_cs_social_widget {
  padding: 38px 28px 28px 28px;
}
#secondary .widget.widget_categories {
  padding-bottom: 22px;
}
@media screen and (min-width: 1200px) {
  body .container {
    max-width: 1170px;
    width: 100%;
  }
  .layout-boxed {
    max-width: 1270px;
    margin: auto;
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    -khtml-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  }
  .layout-boxed #header-wrap #header-main {
    max-width: 1270px;
    margin: auto;
  }
  .layout-boxed #header-wrap #header-main:not(.h-fixed) .header-navigation {
    margin-left: 30px;
    margin-right: 30px;
  }
  .layout-boxed .site-footer.footer-fixed {
    max-width: 1270px;
    margin: auto;
  }
  .layout-boxed .owl-carousel.nav-middle .owl-nav .owl-prev {
    left: -55px;
  }
  .layout-boxed .owl-carousel.nav-middle .owl-nav .owl-next {
    right: -55px;
  }
}
@media screen and (max-width: 1199px) {
  body .container {
    max-width: 100%;
  }
}
@media (min-width: 992px) and (max-width: 1280px) {
  .col-offset-left > .vc_column-inner {
    padding-left: 30px !important;
  }
  .col-offset-right > .vc_column-inner {
    padding-right: 30px !important;
  }
}
@media screen and (max-width: 991px) {
  #primary.content-has-sidebar + #secondary {
    margin-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  #primary + #secondary {
    margin-top: 60px;
  }
}
.site-content {
  padding: 120px 0 150px;
  background-color: #fff;
}
.widget .widget-content ul:not(.entry-meta) {
  margin: 0;
  list-style: none;
}
.comment-reply-title, .comments-title, .section-title, .author-heading {
  font-size: 26px;
  color: #1d274e;
}
.page-template-default .entry-footer {
  text-align: center;
}
.page-template-default .entry-footer i {
  padding-right: 8px;
}
.vc_column_container > .theiaStickySidebar > .vc_column-inner {
  box-sizing: border-box;
  padding-left: 15px;
  padding-right: 15px;
  width: 100%;
}
.row-bg-gradient {
  position: relative;
}
.row-bg-gradient:before {
  content: '';
  background-color: #015dc7;
  background-image: -webkit-gradient(linear, left top, right top, from(#015dc7), to(#a200ff));
  background-image: -webkit-linear-gradient(left, #015dc7, #a200ff);
  background-image: -moz-linear-gradient(left, #015dc7, #a200ff);
  background-image: -ms-linear-gradient(left, #015dc7, #a200ff);
  background-image: -o-linear-gradient(left, #015dc7, #a200ff);
  background-image: linear-gradient(left, #015dc7, #a200ff);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#015dc7', endColorStr='#a200ff', gradientType='1');
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block !important;
  z-index: 1;
}
.row-bg-gradient:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block !important;
  background-image: inherit;
  z-index: 1;
}
.row-bg-gradient .vc_column-inner {
  position: relative;
  z-index: 3;
}
.row-bg-gradient-overlay {
  position: relative;
}
.row-bg-gradient-overlay:before {
  content: '';
  background-color: rgba(1, 93, 199, 0.9);
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(1, 93, 199, 0.9)), to(rgba(162, 0, 255, 0.9)));
  background-image: -webkit-linear-gradient(left, rgba(1, 93, 199, 0.9), rgba(162, 0, 255, 0.9));
  background-image: -moz-linear-gradient(left, rgba(1, 93, 199, 0.9), rgba(162, 0, 255, 0.9));
  background-image: -ms-linear-gradient(left, rgba(1, 93, 199, 0.9), rgba(162, 0, 255, 0.9));
  background-image: -o-linear-gradient(left, rgba(1, 93, 199, 0.9), rgba(162, 0, 255, 0.9));
  background-image: linear-gradient(left, rgba(1, 93, 199, 0.9), rgba(162, 0, 255, 0.9));
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='rgba(1, 93, 199, 0.9)', endColorStr='rgba(162, 0, 255, 0.9)', gradientType='1');
  background-color: transparent;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block !important;
  z-index: 1;
}
.row-bg-gradient-overlay .vc_column-inner {
  position: relative;
  z-index: 3;
}
.vc-row-overlay {
  position: relative;
  overflow: hidden;
}
.row-overlay {
  position: relative;
}
.row-overlay:after {
  background-color: inherit;
  bottom: 0;
  content: "";
  display: block !important;
  height: 100% !important;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  visibility: visible !important;
}
.row-overlay .vc_column-inner {
  position: relative;
  z-index: 1;
}
.col-overlay .vc_column-inner {
  position: relative;
}
.col-overlay .vc_column-inner:after {
  background-color: inherit;
  bottom: 0;
  content: "";
  display: block !important;
  height: 100% !important;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  visibility: visible !important;
}
.col-overlay .vc_column-inner .wpb_wrapper {
  position: relative;
  z-index: 1;
}
.vc_row.vc_row-fluid > .wpb_column {
  z-index: 99;
}
.vc_row .ct-row-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.vc_row .ct-row-overlay.ct-row-overlay-skew {
  right: 0;
  -webkit-transform: skew(-20deg);
  -khtml-transform: skew(-20deg);
  -moz-transform: skew(-20deg);
  -ms-transform: skew(-20deg);
  -o-transform: skew(-20deg);
  transform: skew(-20deg);
  left: -1000px;
  border-right: 10px solid #015dc7;
}
@media screen and (max-width: 767px) {
  .vc_row .ct-row-overlay.ct-row-overlay-skew {
    opacity: 0;
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .vc_row.row-flex {
    display: flex;
  }
}
.error404 .error-404 .row {
  align-items: center;
}
.error404 #content {
  padding-top: 90px !important;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 575px) {
  .error404 #content {
    padding-top: 80px !important;
  }
}
.error404 .error-404-content {
  padding: 45px 0;
}
@media screen and (max-width: 575px) {
  .error404 .error-404-content {
    padding-top: 0px;
  }
}
.error404 .error-404-content h2 {
  font-size: 200px;
  line-height: 180px;
  margin-bottom: 0;
  color: #a200ff;
  font-weight: 800;
}
@media screen and (max-width: 991px) {
  .error404 .error-404-content h2 {
    font-size: 140px;
    line-height: 1;
  }
}
@media screen and (max-width: 767px) {
  .error404 .error-404-content h2 {
    font-size: 120px;
  }
}
@media screen and (max-width: 575px) {
  .error404 .error-404-content h2 {
    font-size: 100px;
  }
}
.error404 .error-404-content h3 {
  font-size: 90px;
  letter-spacing: 20px;
  line-height: 70px;
  font-weight: 800;
}
@media screen and (max-width: 991px) {
  .error404 .error-404-content h3 {
    font-size: 60px;
    line-height: 1;
  }
}
@media screen and (max-width: 767px) {
  .error404 .error-404-content h3 {
    font-size: 40px;
  }
}
.error404 .error-404-content h4 {
  font-size: 45px;
  letter-spacing: 2px;
  line-height: 1;
  color: #b0b0b0;
  margin-bottom: 29px;
}
@media screen and (max-width: 991px) {
  .error404 .error-404-content h4 {
    font-size: 24px;
  }
}
@media screen and (max-width: 575px) {
  .error404 .error-404-content h4 {
    font-size: 18px;
  }
}
.error404 .error-404-content .btn {
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .vc_row > .wpb_column.vc_col-sm-6:nth-child(2n+1) {
    clear: left;
  }
  .wpb_single_image.image_align_sm_left {
    text-align: left !important;
  }
  .wpb_single_image.image_align_sm_center {
    text-align: center !important;
  }
  .wpb_single_image.image_align_sm_right {
    text-align: right !important;
  }
}
@media screen and (min-width: 992px) {
  .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;
  }
}
@media screen and (max-width: 1400px) {
  .rm-padding-xlg > .vc_column-inner, .rm-padding-xlg > .theiaStickySidebar > .vc_column-inner {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
}
@media screen and (max-width: 1199px) {
  .rm-padding-lg > .vc_column-inner, .rm-padding-lg > .theiaStickySidebar > .vc_column-inner {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .vc_row.row-rm-padding-lg {
    margin-left: -15px !important;
    margin-right: -15px !important;
  }
}
@media screen and (max-width: 991px) {
  .rm-padding-md > .vc_column-inner, .rm-padding-md > .theiaStickySidebar > .vc_column-inner {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .vc_row.row-rm-padding-md {
    margin-left: -15px !important;
    margin-right: -15px !important;
  }
  #primary .vc_row.rm-margin-md {
    margin-left: -15px !important;
    margin-right: -15px !important;
  }
  .rm-margin-top-md > .vc_column-inner {
    margin-top: 0 !important;
  }
  .add-margin-bottom-md > .vc_column-inner {
    margin-bottom: 45px;
  }
}
@media screen and (max-width: 767px) {
  .rm-border-sm > .vc_column-inner {
    border: none !important;
  }
  .sm-col-to {
    flex-direction: column-reverse;
    display: flex;
  }
  .rm-padding-xs > .vc_column-inner, .rm-padding-sm > .vc_column-inner, .rm-padding-xs > .theiaStickySidebar > .vc_column-inner, .rm-padding-sm > .theiaStickySidebar > .vc_column-inner {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .vc_row.row-rm-padding-sm {
    margin-left: -15px !important;
    margin-right: -15px !important;
  }
  .rm-margin-sm > .vc_column-inner {
    margin: 0 !important;
  }
  .wpb_single_image.image_align_xs_left {
    text-align: left !important;
  }
  .wpb_single_image.image_align_xs_center {
    text-align: center !important;
  }
  .wpb_single_image.image_align_xs_right {
    text-align: right !important;
  }
}
@media screen and (max-width: 575px) {
  .rm-padding-xs > .vc_column-inner, .rm-padding-xs > .theiaStickySidebar > .vc_column-inner {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .vc_row.row-rm-padding-xs {
    margin-left: -15px !important;
    margin-right: -15px !important;
  }
}
.widget_shopping_cart {
  position: absolute;
  background-color: #fff;
  right: 0;
  top: 100%;
  -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
  -khtml-box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
  width: 370px;
  padding: 30px;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
  text-align: left;
  color: #a2a9c7;
  z-index: -99;
  visibility: hidden;
  opacity: 0;
  margin-top: 32px;
}
.widget_shopping_cart.open {
  z-index: 99;
  margin-top: 11px;
  visibility: visible;
  opacity: 1;
  margin-top: 0;
}
.widget_shopping_cart:before {
  content: '';
  width: 21px;
  height: 11px;
  position: absolute;
  top: -11px;
  left: 0;
  right: 0;
  margin: auto;
}
.widget_shopping_cart .widget_shopping_title {
  font-size: 20px;
  border-bottom: 1px solid #ebebeb;
  line-height: 1;
  padding-bottom: 20px;
  margin-bottom: 30px;
  color: #1d274e;
}
.widget_shopping_cart .product_list_widget {
  list-style: none;
  margin: 0;
}
.widget_shopping_cart .product_list_widget li {
  padding: 0 40px 0 0 !important;
  position: relative;
  margin-bottom: 30px !important;
}
.widget_shopping_cart .product_list_widget li:last-child {
  margin-bottom: 0 !important;
}
.widget_shopping_cart .product_list_widget li.empty {
  font-size: 16px;
}
.widget_shopping_cart .product_list_widget .cart-product-image {
  width: 50px;
  min-width: 50px;
  position: absolute;
  top: 0;
  left: 0;
}
.widget_shopping_cart .product_list_widget .cart-product-image img {
  float: none;
  margin: 0;
  width: 100%;
}
.widget_shopping_cart .product_list_widget .cart-product-image + .cart-product-meta {
  padding-left: 70px;
}
.widget_shopping_cart .product_list_widget .cart-product-meta h3 {
  font-size: 15px;
  color: #1e2331;
  line-height: 22px;
  margin-top: -5px;
  margin-bottom: 2px;
}
.widget_shopping_cart .product_list_widget .cart-product-meta h3 a {
  display: inline-block;
  color: inherit;
  font-weight: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
}
.widget_shopping_cart .product_list_widget .cart-product-meta h3 a:hover {
  color: #015dc7;
}
.widget_shopping_cart .product_list_widget .cart-product-meta .quantity {
  font-size: 18px;
  color: #a2a9c7;
  border: none;
}
.widget_shopping_cart .product_list_widget .cart-product-meta .remove_from_cart_button {
  font-size: 17px;
  color: #d9d9d9;
  position: absolute;
  width: 16px;
  height: 16px;
  line-height: 16px;
  top: 50%;
  right: 0;
  -webkit-transform: translate(0, -50%);
  -khtml-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.widget_shopping_cart .product_list_widget .cart-product-meta .remove_from_cart_button:hover {
  color: #de3b36;
}
.widget_shopping_cart .widget_shopping_cart_footer {
  border-top: 1px solid #ebebeb;
  margin-top: 30px;
  padding-top: 20px;
}
.widget_shopping_cart .widget_shopping_cart_footer .total {
  margin-bottom: 18px;
  padding-top: 0;
  border: none;
}
.widget_shopping_cart .widget_shopping_cart_footer .total strong {
  font-size: 20px;
  line-height: 28px;
  color: #a2a9c7;
  font-weight: normal;
}
.widget_shopping_cart .widget_shopping_cart_footer .total span.amount {
  color: #1d274e;
  float: right;
  font-size: 28px;
  line-height: 1;
}
.widget_shopping_cart .widget_shopping_cart_footer .buttons {
  margin-bottom: 0;
  display: flex;
  flex-wrap: nowrap;
  margin-left: -15px;
  margin-right: -15px;
}
.widget_shopping_cart .widget_shopping_cart_footer .buttons .btn {
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 15px;
  width: 50%;
  line-height: 50px;
}
.entry-content > .woocommerce .cart-empty, .entry-content > .woocommerce .return-to-shop {
  text-align: center;
}
.woocommerce #secondary .widget-content-inner {
  padding-top: 20px !important;
}
.woocommerce #secondary .widget {
  background-color: transparent;
  border: none;
  padding: 0;
  margin-bottom: 0;
}
.woocommerce #secondary .widget-title {
  text-align: left;
  font-size: 18px;
  padding: 17px 30px 17px 0;
  border-bottom: 2px solid #ddd;
  position: relative;
  cursor: pointer;
  margin-bottom: 0;
  -webkit-transition: all 0.3s ease 0s;
  -khtml-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.woocommerce #secondary .widget-title:after {
  content: '\f273';
  font-family: "Material-Design-Iconic-Font";
  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;
  position: absolute;
  color: #000;
  font-weight: normal;
}
.woocommerce #secondary .widget-title:hover {
  color: #015dc7;
}
.woocommerce #secondary .widget-title.opened:after {
  content: '\f278';
}
.woocommerce #secondary .widget-content-inner {
  padding-top: 15px;
  margin-bottom: 34px;
}
.woocommerce #secondary .widget_products ul li {
  position: relative;
  padding: 0 0 0 95px;
  margin-bottom: 15px;
  min-height: 80px;
}
.woocommerce #secondary .widget_products ul li img {
  margin: 0;
  width: 100%;
  max-width: 80px;
  position: absolute;
  top: 0;
  left: 0;
}
.woocommerce #secondary .widget_products ul li a {
  font-size: 16px;
  font-weight: 600;
  color: #1e2331;
  margin-bottom: 5px;
  font-family: 'Poppins', sans-serif;
}
.woocommerce #secondary .widget_products ul li a:hover {
  color: #015dc7;
}
.woocommerce #secondary .widget_products ul li ins {
  background-color: transparent;
  color: #1d274e;
}
.woocommerce #secondary .widget_products ul li .star-rating {
  margin-bottom: 4px;
}
@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 table.cart td.actions .coupon .input-text, body.woocommerce-page table.cart td.actions .coupon .input-text, body.woocommerce input[type="text"], body.woocommerce-page input[type="text"], body.woocommerce input[type="email"], body.woocommerce-page input[type="email"], body.woocommerce input[type="url"], body.woocommerce-page input[type="url"], body.woocommerce input[type="password"], body.woocommerce-page input[type="password"], body.woocommerce input[type="search"], body.woocommerce-page input[type="search"], body.woocommerce input[type="tel"], body.woocommerce-page input[type="tel"], body.woocommerce input[type="number"], body.woocommerce-page input[type="number"], body.woocommerce input[type="range"], body.woocommerce-page input[type="range"], body.woocommerce input[type="date"], body.woocommerce-page input[type="date"], body.woocommerce input[type="month"], body.woocommerce-page input[type="month"], body.woocommerce input[type="week"], body.woocommerce-page input[type="week"], body.woocommerce input[type="time"], body.woocommerce-page input[type="time"], body.woocommerce input[type="datetime"], body.woocommerce-page input[type="datetime"], body.woocommerce input[type="datetime-local"], body.woocommerce-page input[type="datetime-local"], body.woocommerce input[type="color"], body.woocommerce-page input[type="color"], body.woocommerce textarea, body.woocommerce-page textarea, body.woocommerce select, body.woocommerce-page select, body.woocommerce .nice-select, body.woocommerce-page .nice-select {
  border: 1px solid #e5e5e5;
  -webkit-border-radius: 0;
  -khtml-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  padding: 9px 28px;
  font-size: 16px;
  color: #747da1;
  height: 50px;
}
body.woocommerce table.cart td.actions .coupon .input-text:focus, body.woocommerce-page table.cart td.actions .coupon .input-text:focus, body.woocommerce input[type="text"]:focus, body.woocommerce-page input[type="text"]:focus, body.woocommerce input[type="email"]:focus, body.woocommerce-page input[type="email"]:focus, body.woocommerce input[type="url"]:focus, body.woocommerce-page input[type="url"]:focus, body.woocommerce input[type="password"]:focus, body.woocommerce-page input[type="password"]:focus, body.woocommerce input[type="search"]:focus, body.woocommerce-page input[type="search"]:focus, body.woocommerce input[type="tel"]:focus, body.woocommerce-page input[type="tel"]:focus, body.woocommerce input[type="number"]:focus, body.woocommerce-page input[type="number"]:focus, body.woocommerce input[type="range"]:focus, body.woocommerce-page input[type="range"]:focus, body.woocommerce input[type="date"]:focus, body.woocommerce-page input[type="date"]:focus, body.woocommerce input[type="month"]:focus, body.woocommerce-page input[type="month"]:focus, body.woocommerce input[type="week"]:focus, body.woocommerce-page input[type="week"]:focus, body.woocommerce input[type="time"]:focus, body.woocommerce-page input[type="time"]:focus, body.woocommerce input[type="datetime"]:focus, body.woocommerce-page input[type="datetime"]:focus, body.woocommerce input[type="datetime-local"]:focus, body.woocommerce-page input[type="datetime-local"]:focus, body.woocommerce input[type="color"]:focus, body.woocommerce-page input[type="color"]:focus, body.woocommerce textarea:focus, body.woocommerce-page textarea:focus, body.woocommerce select:focus, body.woocommerce-page select:focus, body.woocommerce .nice-select:focus, body.woocommerce-page .nice-select:focus {
  border-color: #015dc7;
}
body.woocommerce .nice-select, body.woocommerce-page .nice-select {
  text-align: left;
}
body.woocommerce .nice-select span.current, body.woocommerce-page .nice-select span.current {
  line-height: 30px;
}
body.woocommerce .nice-select:after, body.woocommerce-page .nice-select:after {
  color: #747da1;
}
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 {
  background-color: #6747ee;
  background-image: -webkit-gradient(linear, left top, right top, from(#6747ee), to(#9124dc));
  background-image: -webkit-linear-gradient(left, #6747ee, #9124dc);
  background-image: -moz-linear-gradient(left, #6747ee, #9124dc);
  background-image: -ms-linear-gradient(left, #6747ee, #9124dc);
  background-image: -o-linear-gradient(left, #6747ee, #9124dc);
  background-image: linear-gradient(left, #6747ee, #9124dc);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#6747ee', endColorStr='#9124dc', gradientType='1');
  border: none;
  color: #fff;
  font-size: 14px;
  padding: 0 34px;
  line-height: 50px;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
  position: relative;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  font-weight: 500;
  outline: none;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
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 #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 #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 {
  -webkit-box-shadow: none;
  -khtml-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
  outline: none;
  text-decoration: none;
  color: #fff;
  background-color: #1d274e;
  background-image: none;
}
body.woocommerce a.button:not(.add_to_cart_button), body.woocommerce-page a.button:not(.add_to_cart_button), body.woocommerce button.button, body.woocommerce-page button.button, body.woocommerce .cart button.button, body.woocommerce-page .cart button.button {
  overflow: hidden;
}
body.woocommerce a.button:not(.add_to_cart_button):before, body.woocommerce-page a.button:not(.add_to_cart_button):before, body.woocommerce button.button:before, body.woocommerce-page button.button:before, body.woocommerce .cart button.button:before, body.woocommerce-page .cart button.button:before, body.woocommerce a.button:not(.add_to_cart_button):after, body.woocommerce-page a.button:not(.add_to_cart_button):after, body.woocommerce button.button:after, body.woocommerce-page button.button:after, body.woocommerce .cart button.button:after, body.woocommerce-page .cart button.button:after {
  background-color: #000;
  content: "";
  height: 100%;
  left: -110%;
  opacity: 0.1;
  position: absolute;
  top: 0;
  -webkit-transition: all 0.5s ease 0s;
  -khtml-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  -webkit-transform: skewX(25deg);
  -khtml-transform: skewX(25deg);
  -moz-transform: skewX(25deg);
  -ms-transform: skewX(25deg);
  -o-transform: skewX(25deg);
  transform: skewX(25deg);
  width: 100%;
  z-index: -1;
}
body.woocommerce a.button:not(.add_to_cart_button):hover, body.woocommerce-page a.button:not(.add_to_cart_button):hover, body.woocommerce button.button:hover, body.woocommerce-page button.button:hover, body.woocommerce .cart button.button:hover, body.woocommerce-page .cart button.button:hover, body.woocommerce a.button:not(.add_to_cart_button):focus, body.woocommerce-page a.button:not(.add_to_cart_button):focus, body.woocommerce button.button:focus, body.woocommerce-page button.button:focus, body.woocommerce .cart button.button:focus, body.woocommerce-page .cart button.button:focus, body.woocommerce a.button:not(.add_to_cart_button):active, body.woocommerce-page a.button:not(.add_to_cart_button):active, body.woocommerce button.button:active, body.woocommerce-page button.button:active, body.woocommerce .cart button.button:active, body.woocommerce-page .cart button.button:active {
  background-color: #015dc7;
}
body.woocommerce a.button:not(.add_to_cart_button):hover:before, body.woocommerce-page a.button:not(.add_to_cart_button):hover:before, body.woocommerce button.button:hover:before, body.woocommerce-page button.button:hover:before, body.woocommerce .cart button.button:hover:before, body.woocommerce-page .cart button.button:hover:before, body.woocommerce a.button:not(.add_to_cart_button):focus:before, body.woocommerce-page a.button:not(.add_to_cart_button):focus:before, body.woocommerce button.button:focus:before, body.woocommerce-page button.button:focus:before, body.woocommerce .cart button.button:focus:before, body.woocommerce-page .cart button.button:focus:before, body.woocommerce a.button:not(.add_to_cart_button):active:before, body.woocommerce-page a.button:not(.add_to_cart_button):active:before, body.woocommerce button.button:active:before, body.woocommerce-page button.button:active:before, body.woocommerce .cart button.button:active:before, body.woocommerce-page .cart button.button:active:before {
  left: -10%;
  -webkit-transition: all 0.3s ease 0s;
  -khtml-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
body.woocommerce a.button:not(.add_to_cart_button):hover:after, body.woocommerce-page a.button:not(.add_to_cart_button):hover:after, body.woocommerce button.button:hover:after, body.woocommerce-page button.button:hover:after, body.woocommerce .cart button.button:hover:after, body.woocommerce-page .cart button.button:hover:after, body.woocommerce a.button:not(.add_to_cart_button):focus:after, body.woocommerce-page a.button:not(.add_to_cart_button):focus:after, body.woocommerce button.button:focus:after, body.woocommerce-page button.button:focus:after, body.woocommerce .cart button.button:focus:after, body.woocommerce-page .cart button.button:focus:after, body.woocommerce a.button:not(.add_to_cart_button):active:after, body.woocommerce-page a.button:not(.add_to_cart_button):active:after, body.woocommerce button.button:active:after, body.woocommerce-page button.button:active:after, body.woocommerce .cart button.button:active:after, body.woocommerce-page .cart button.button:active:after {
  left: -20%;
}
.woocommerce .woocommerce-message, .woocommerce .woocommerce-info {
  border-color: #015dc7;
}
.woocommerce .woocommerce-message:before, .woocommerce .woocommerce-info:before {
  color: #015dc7;
}
.woocommerce .quantity {
  position: relative;
  display: inline-block;
  border: 2px solid #e5e5e5;
}
.woocommerce .quantity .qty {
  padding: 0;
  border-top: none;
  border-bottom: none;
  border-left: 2px solid #e5e5e5;
  border-right: 2px solid #e5e5e5;
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
  color: #495057;
  -moz-appearance: textfield;
  margin: 0 46px;
  height: 46px;
  width: 50px;
}
.woocommerce .quantity .qty:-webkit-outer-spin-button, .woocommerce .quantity .qty:-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.woocommerce .quantity .qty:focus {
  border-color: #e5e5e5;
}
.woocommerce .quantity-icon i {
  width: 46px;
  height: 46px;
  line-height: 46px;
  font-size: 20px;
  cursor: pointer;
  color: #1d274e;
  text-align: center;
  position: absolute;
  bottom: 0;
  -webkit-transition: all 0.3s ease 0s;
  -khtml-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.woocommerce .quantity-icon i:hover {
  background-color: #e5e5e5;
}
.woocommerce .quantity-icon i.quantity-down {
  left: 0;
}
.woocommerce .quantity-icon i.quantity-up {
  right: 0;
}
.woocommerce table.shop_table {
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
}
.woocommerce table.shop_table td {
  padding: 12px 15px;
}
.woocommerce-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 #e5e5e5;
  height: 50px;
  background-color: #fff;
}
.woocommerce form .select2-container--default .select2-selection .select2-selection__rendered, .woocommerce-page form .select2-container--default .select2-selection .select2-selection__rendered {
  line-height: 48px;
  padding-left: 28px;
  color: #747da1;
}
.woocommerce form .select2-container--default .select2-selection .select2-selection__arrow, .woocommerce-page form .select2-container--default .select2-selection .select2-selection__arrow {
  right: 10px;
  top: 50%;
  color: #747da1;
}
.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: #015dc7;
}
.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 {
    flex: 0 0 75%;
    -webkit-flex: 0 0 75%;
    -ms-flex: 0 0 75%;
    -o-flex: 0 0 75%;
    max-width: 75%;
  }
  .woocommerce #secondary.widget-has-sidebar {
    flex: 0 0 25%;
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    -o-flex: 0 0 25%;
    max-width: 25%;
  }
}
#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;
}
.widget_product_categories ul {
  list-style: none;
  margin-bottom: 0;
}
.widget_product_categories ul li {
  font-size: 0px;
}
.widget_product_categories ul li a {
  color: #747da1;
  display: block;
  font-size: 16px;
  padding: 10px 0;
  position: relative;
  border-bottom: 1px solid #eaeaea;
}
.widget_product_categories ul li a:before {
  content: "\f178";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -khtml-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  display: block;
  font-family: "FontAwesome";
  color: #015dc7;
  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;
}
.widget_product_categories ul li:last-child > a {
  border-bottom: none;
}
.widget_product_categories ul li.current-menu-item > a, .widget_product_categories ul li.current-cat > a, .widget_product_categories ul li.current-cat-parent > a, .widget_product_categories ul li > a:hover {
  color: inherit;
  padding-left: 26px;
}
.widget_product_categories ul li.current-menu-item > a:before, .widget_product_categories ul li.current-cat > a:before, .widget_product_categories ul li.current-cat-parent > a:before, .widget_product_categories ul li > a:hover:before {
  margin-left: 0;
  opacity: 1;
}
.widget_product_tag_cloud .tagcloud a {
  padding-left: 22px;
  padding-right: 22px;
}
.woocommerce #secondary .widget_price_filter .widget-content-inner {
  padding-top: 30px;
}
.woocommerce #secondary .widget_price_filter .ui-slider-horizontal {
  height: 8px;
  background-color: #eee;
}
.woocommerce #secondary .widget_price_filter .ui-slider .ui-slider-range {
  background-color: #015dc7;
}
.woocommerce #secondary .widget_price_filter .ui-slider .ui-slider-handle {
  height: 22px;
  width: 22px;
  background-color: #fff;
  border: 2px solid #015dc7;
  top: -7px;
}
.woocommerce #secondary .widget_price_filter .price_slider_amount {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: center;
  padding-top: 10px;
}
.woocommerce #secondary .widget_price_filter .price_slider_amount .button {
  line-height: 36px;
  font-size: 14px;
  margin-right: 20px;
  letter-spacing: 0.05em;
  padding-left: 18px;
  padding-right: 18px;
}
.widget_products .amount {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #1d274e;
}
.widget_products del {
  color: #c4c9dc;
}
.widget_products del .amount {
  color: #c4c9dc;
}
.widget_products .star-rating-wrap {
  margin-bottom: 6px !important;
}
.widget_products .star-rating-wrap .count-rating {
  display: none;
}
.widget_rating_filter .wc-layered-nav-rating a {
  font-size: 0px;
  display: block;
  padding-left: 28px !important;
  position: relative;
}
.widget_rating_filter .wc-layered-nav-rating a:before {
  content: "";
  height: 18px;
  width: 18px;
  border: 1px solid #e6e6e6;
  -webkit-border-radius: 18px;
  -khtml-border-radius: 18px;
  -moz-border-radius: 18px;
  -ms-border-radius: 18px;
  -o-border-radius: 18px;
  border-radius: 18px;
  position: absolute;
  top: 1px;
  left: 0;
  -webkit-transition: all 0.2s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  -khtml-transition: all 0.2s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  -moz-transition: all 0.2s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  -ms-transition: all 0.2s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  -o-transition: all 0.2s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  transition: all 0.2s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
}
.widget_rating_filter .wc-layered-nav-rating a .star-rating {
  font-size: 18px;
}
.widget_rating_filter .wc-layered-nav-rating a:hover:before {
  border-color: #015dc7;
  background-color: #015dc7;
}
.widget_rating_filter .wc-layered-nav-rating.chosen a:before {
  border-color: #015dc7;
  background-color: #015dc7;
}
#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: #015dc7;
  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: #1e2331;
}
#shop-breadcrumb ul li a:hover {
  color: #015dc7;
}
.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 a {
  margin-bottom: 8px;
  display: inline-block;
  background-color: #6747ee;
  background-image: -webkit-gradient(linear, left top, right top, from(#6747ee), to(#9124dc));
  background-image: -webkit-linear-gradient(left, #6747ee, #9124dc);
  background-image: -moz-linear-gradient(left, #6747ee, #9124dc);
  background-image: -ms-linear-gradient(left, #6747ee, #9124dc);
  background-image: -o-linear-gradient(left, #6747ee, #9124dc);
  background-image: linear-gradient(left, #6747ee, #9124dc);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#6747ee', endColorStr='#9124dc', gradientType='1');
  background-color: transparent;
  background-clip: text;
  -o-background-clip: text;
  -ms-background-clip: text;
  -moz-background-clip: text;
  -webkit-background-clip: text;
  text-fill-color: transparent;
  -o-text-fill-color: transparent;
  -ms-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 1199px) {
  .woocommerce .woocommerce-product-category a {
    margin-bottom: 4px;
    font-size: 14px;
  }
}
.woocommerce span.onsale {
  height: 45px;
  width: 45px;
  min-width: inherit;
  min-height: inherit;
  font-size: 16px;
  color: #fff;
  padding: 0;
  text-align: center;
  line-height: 45px;
  background-color: #6747ee;
  background-image: -webkit-gradient(linear, left top, right top, from(#6747ee), to(#9124dc));
  background-image: -webkit-linear-gradient(left, #6747ee, #9124dc);
  background-image: -moz-linear-gradient(left, #6747ee, #9124dc);
  background-image: -ms-linear-gradient(left, #6747ee, #9124dc);
  background-image: -o-linear-gradient(left, #6747ee, #9124dc);
  background-image: linear-gradient(left, #6747ee, #9124dc);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#6747ee', endColorStr='#9124dc', gradientType='1');
  font-family: 'Poppins', sans-serif;
  -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: 50px;
  margin-right: 0;
  padding: 0 15px;
}
.woocommerce ul.products li.product.last {
  margin-right: 0;
}
@media screen and (min-width: 992px) {
  .woocommerce ul.products.columns-4 li.product {
    width: 25%;
  }
}
@media screen and (min-width: 768px) {
  .woocommerce ul.products.columns-3 li.product {
    width: 33.33%;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .woocommerce ul.products li.product {
    width: 50% !important;
  }
}
@media screen and (max-width: 575px) {
  .woocommerce ul.products li.product {
    width: 100% !important;
  }
}
@media screen and (min-width: 992px) {
  .woocommerce #primary.content-has-sidebar ul.products.columns-4 li.product {
    width: 33.33%;
  }
}
.woocommerce ul.products li.product .woocommerce-product-title, .woocommerce .woocommerce-product-title {
  font-size: 20px;
}
@media screen and (max-width: 1199px) {
  .woocommerce ul.products li.product .woocommerce-product-title, .woocommerce .woocommerce-product-title {
    font-size: 18px;
  }
}
.woocommerce ul.products li.product .woocommerce-product-title a, .woocommerce .woocommerce-product-title a {
  color: #1e2331;
}
.woocommerce ul.products li.product .woocommerce-product-title a:hover, .woocommerce .woocommerce-product-title a:hover {
  color: #015dc7;
}
.woocommerce ul.products li.product .price {
  font-size: 16px;
  font-weight: 600;
  color: #1d274e;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 0;
}
.woocommerce ul.products li.product .price del {
  color: #c4c9dc;
}
.woocommerce ul.products li.product .price ins {
  color: #1d274e;
}
.woocommerce .woocommerce-topbar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
  position: relative;
  z-index: 99;
}
.woocommerce .woocommerce-topbar div.woocommerce-result-count {
  margin: 15px 30px 15px 0px;
  flex-grow: 1;
}
.woocommerce .woocommerce-topbar .woocommerce-result-count, .woocommerce .woocommerce-topbar .woocommerce-topbar-ordering .woocommerce-ordering {
  float: none;
  margin: 0;
}
.woocommerce .woocommerce-topbar .woocommerce-ordering {
  min-width: 220px;
}
.woocommerce .woocommerce-topbar .woocommerce-ordering .nice-select {
  background-color: #fff;
}
.woocommerce .woocommerce-product-inner .woocommerce-product-header {
  position: relative;
  overflow: hidden;
}
.woocommerce .woocommerce-product-inner .woocommerce-product-header img {
  width: auto;
  display: inline-block;
  margin-bottom: 0 !important;
}
.woocommerce .woocommerce-product-inner .woocommerce-product-header .woocommerce-product-meta {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(103, 71, 238, 0.7);
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(103, 71, 238, 0.7)), to(rgba(145, 36, 220, 0.7)));
  background-image: -webkit-linear-gradient(left, rgba(103, 71, 238, 0.7), rgba(145, 36, 220, 0.7));
  background-image: -moz-linear-gradient(left, rgba(103, 71, 238, 0.7), rgba(145, 36, 220, 0.7));
  background-image: -ms-linear-gradient(left, rgba(103, 71, 238, 0.7), rgba(145, 36, 220, 0.7));
  background-image: -o-linear-gradient(left, rgba(103, 71, 238, 0.7), rgba(145, 36, 220, 0.7));
  background-image: linear-gradient(left, rgba(103, 71, 238, 0.7), rgba(145, 36, 220, 0.7));
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='rgba(103, 71, 238, 0.7)', endColorStr='rgba(145, 36, 220, 0.7)', gradientType='1');
  z-index: 99;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
  transform: perspective(500px) rotateX(-90deg);
  opacity: 0;
  -webkit-transform-origin: 50% 0%;
  transform-origin: 50% 0%;
}
.woocommerce .woocommerce-product-inner .woocommerce-product-header .woocommerce-product-meta .woocommerce-add-to-cart {
  position: absolute;
  text-align: center;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -khtml-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.woocommerce .woocommerce-product-inner .woocommerce-product-header .woocommerce-product-meta .woocommerce-add-to-cart a {
  background-color: #fff;
  padding-left: 40px;
  padding-right: 40px;
  line-height: 60px;
  color: #1d274e;
  background-image: none;
}
.woocommerce .woocommerce-product-inner .woocommerce-product-header .woocommerce-product-meta .woocommerce-add-to-cart a.added {
  display: none;
}
.woocommerce .woocommerce-product-inner .woocommerce-product-header .woocommerce-product-meta .woocommerce-add-to-cart a.wc-forward {
  padding-top: 0;
  padding-bottom: 0;
}
.woocommerce .woocommerce-product-inner .woocommerce-product-header .woocommerce-product-meta .woocommerce-add-to-cart a.loading {
  opacity: 1;
}
.woocommerce .woocommerce-product-inner .woocommerce-product-header .woocommerce-product-meta .woocommerce-add-to-cart a.loading:after {
  letter-spacing: 0;
  top: 0;
  right: 12px;
}
@media screen and (max-width: 1199px) {
  .woocommerce .woocommerce-product-inner .woocommerce-product-header .woocommerce-product-meta .woocommerce-add-to-cart a {
    padding-left: 32px;
    padding-right: 32px;
    line-height: 48px;
    letter-spacing: 0.05em;
  }
}
.woocommerce .woocommerce-product-inner:hover .woocommerce-product-header .woocommerce-product-meta {
  opacity: 1;
  transform: perspective(500px) rotateX(0deg);
}
.woocommerce .woocommerce-product-inner .woocommerce-product-holder {
  padding: 24px 0 0;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}
@media screen and (max-width: 1199px) {
  .woocommerce .woocommerce-product-inner .woocommerce-product-holder {
    display: block;
  }
}
.woocommerce .woocommerce-product-inner .woocommerce-product-holder .product-holder-left {
  margin-right: 30px;
  flex-grow: 1;
}
@media screen and (max-width: 1199px) {
  .woocommerce .woocommerce-product-inner .woocommerce-product-holder .product-holder-left {
    margin-right: 0;
  }
}
.woocommerce .woocommerce-product-inner .woocommerce-product-holder .product-holder-right .price {
  line-height: 1;
}
.woocommerce .woocommerce-product-inner .woocommerce-product-holder .product-holder-right del {
  display: block !important;
  margin-bottom: 5px;
}
@media screen and (max-width: 1199px) {
  .woocommerce .woocommerce-product-inner .woocommerce-product-holder .product-holder-right del {
    display: inline-block !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;
}
@media screen and (max-width: 1199px) {
  .woocommerce .woocommerce-product-inner .woocommerce-product-holder .woocommerce-product-title {
    margin-bottom: 15px;
  }
}
.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: #015dc7;
}
.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 .woocommerce-pagination {
  margin-top: 20px;
}
.woocommerce .woocommerce-pagination ul.page-numbers {
  border: none;
}
.woocommerce .woocommerce-pagination ul.page-numbers li {
  border: none;
  margin: 4px;
}
.woocommerce .woocommerce-pagination ul.page-numbers .page-numbers {
  padding: 0;
  text-align: center;
  height: 70px;
  width: 70px;
  line-height: 70px;
  -webkit-border-radius: 70px;
  -khtml-border-radius: 70px;
  -moz-border-radius: 70px;
  -ms-border-radius: 70px;
  -o-border-radius: 70px;
  border-radius: 70px;
  border: none;
  color: #9fa7c5;
  background-color: #f8f8f8;
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
}
.woocommerce .woocommerce-pagination ul.page-numbers .page-numbers.next, .woocommerce .woocommerce-pagination ul.page-numbers .page-numbers.prev {
  font-size: 0;
}
.woocommerce .woocommerce-pagination ul.page-numbers .page-numbers.next:before {
  font-size: 16px;
  content: '\f2ee';
  font-family: 'Material-Design-Iconic-Font';
}
.woocommerce .woocommerce-pagination ul.page-numbers .page-numbers.prev:before {
  font-size: 16px;
  content: '\f2ea';
  font-family: 'Material-Design-Iconic-Font';
}
.woocommerce .woocommerce-pagination ul.page-numbers .page-numbers.current, .woocommerce .woocommerce-pagination ul.page-numbers .page-numbers:hover {
  background-color: #6747ee;
  background-image: -webkit-gradient(linear, left top, right top, from(#6747ee), to(#9124dc));
  background-image: -webkit-linear-gradient(left, #6747ee, #9124dc);
  background-image: -moz-linear-gradient(left, #6747ee, #9124dc);
  background-image: -ms-linear-gradient(left, #6747ee, #9124dc);
  background-image: -o-linear-gradient(left, #6747ee, #9124dc);
  background-image: linear-gradient(left, #6747ee, #9124dc);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#6747ee', endColorStr='#9124dc', gradientType='1');
  color: #fff;
}
.single-product .woocommerce-summary-wrap {
  margin: 0 -25px;
}
.single-product .woocommerce-summary-wrap > .col-xl-6 {
  padding: 0 25px;
}
.single-product #shop-breadcrumb {
  padding-bottom: 46px;
}
.single-product #shop-newsletter {
  margin-top: 30px;
}
.single-product section.related h2 {
  font-size: 30px;
  text-transform: capitalize;
  margin-bottom: 37px;
}
.single-product section.related ul.products {
  margin-bottom: 0;
}
.single-product section.related ul.products li.product {
  margin-bottom: 0 !important;
}
.single-product #primary div.product .woocommerce-product-details__short-description p:last-child {
  margin-bottom: 0;
  margin-bottom: 37px;
}
.single-product #primary div.product form.cart {
  margin-bottom: 24px;
}
.single-product #primary div.product form.cart button.button {
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
}
.single-product #primary div.product form.cart .single_add_to_cart_button {
  background-color: #015dc7;
  padding-left: 54px;
  padding-right: 54px;
  line-height: 60px;
}
.single-product #primary div.product form.cart label {
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 0;
  font-weight: 700;
  color: #232323;
  font-family: 'Poppins', sans-serif;
}
@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: #1d274e;
  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: #015dc7;
  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 .woocommerce-gallery span.onsale {
  display: none;
}
.single-product #primary div.product .woocommerce-product-gallery {
  width: 100% !important;
  margin-bottom: 80px;
}
@media screen and (max-width: 991px) {
  .single-product #primary div.product .woocommerce-product-gallery {
    margin-bottom: 50px;
  }
}
.single-product #primary div.product .woocommerce-product-gallery .flex-control-nav {
  margin-top: 30px;
  margin-left: -15px;
  margin-right: -15px;
}
@media screen and (max-width: 575px) {
  .single-product #primary div.product .woocommerce-product-gallery .flex-control-nav {
    margin-top: 10px;
    margin-left: -5px;
    margin-right: -5px;
  }
}
.single-product #primary div.product .woocommerce-product-gallery .flex-control-nav li {
  padding: 0 15px;
}
@media screen and (max-width: 575px) {
  .single-product #primary div.product .woocommerce-product-gallery .flex-control-nav li {
    padding: 0 5px;
  }
}
.single-product #primary div.product .woocommerce-product-gallery .flex-control-nav img {
  opacity: 1;
}
.single-product #primary div.product .woocommerce-product-gallery .flex-control-nav img.flex-active {
  outline: 5px solid rgba(0, 0, 0, 0.1);
  outline-offset: -9px;
}
.single-product #primary div.product .woocommerce-product-gallery .woocommerce-product-gallery__image a {
  position: relative;
  display: block;
}
.single-product #primary div.product .woocommerce-product-gallery .woocommerce-product-gallery__image a:before {
  content: '';
  background-image: -webkit-linear-gradient(45deg, #015dc7 5%, #a200ff 100%);
  background-image: -moz-linear-gradient(45deg, #015dc7 5%, #a200ff 100%);
  background-image: -ms-linear-gradient(45deg, #015dc7 5%, #a200ff 100%);
  background-image: -o-linear-gradient(45deg, #015dc7 5%, #a200ff 100%);
  background-image: linear-gradient(45deg, #015dc7 5%, #a200ff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#015dc7 5%', endColorStr='#a200ff 100%');
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0;
  -webkit-transition: all 0.3s linear;
  -khtml-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.single-product #primary div.product .woocommerce-product-gallery .woocommerce-product-gallery__image a:after {
  content: "\e659";
  font-family: 'themify';
  font-size: 16px;
  height: 36px;
  width: 36px;
  line-height: 36px;
  background-color: #fff;
  text-align: center;
  color: #015dc7;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0%, -50%);
  -khtml-transform: translate(0%, -50%);
  -moz-transform: translate(0%, -50%);
  -ms-transform: translate(0%, -50%);
  -o-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transition: all 0.3s linear;
  -khtml-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  opacity: 0;
}
.single-product #primary div.product .woocommerce-product-gallery .woocommerce-product-gallery__image a:hover:before {
  opacity: 0.8;
}
.single-product #primary div.product .woocommerce-product-gallery .woocommerce-product-gallery__image a:hover:after {
  opacity: 1;
}
.single-product #primary div.product .entry-summary {
  width: 100% !important;
  margin-bottom: 80px;
  padding-top: 15px;
}
@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: 0;
}
.single-product #primary div.product .entry-summary .woocommerce-product-rating .woocommerce-review-link {
  display: none;
}
.single-product #primary div.product .entry-summary .woocommerce-product-rating .star-rating-wrap {
  margin-bottom: 25px;
}
.single-product #primary div.product .entry-summary .woocommerce-product-category a {
  font-size: 14px;
  margin-bottom: 5px;
}
.single-product #primary div.product .entry-summary .entry-title {
  font-size: 30px;
  margin-bottom: 9px;
}
.single-product #primary div.product .entry-summary .price {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  justify-content: flex-end;
  margin-bottom: 9px;
  color: #ff1c67;
  align-items: center;
}
.single-product #primary div.product .entry-summary .price .amount {
  font-size: 50px;
  font-weight: 200;
  font-family: 'Poppins', sans-serif;
  color: #ff1c67;
}
@media screen and (max-width: 991px) {
  .single-product #primary div.product .entry-summary .price .amount {
    font-size: 36px;
  }
}
.single-product #primary div.product .entry-summary .price ins {
  margin-right: 22px;
}
.single-product #primary div.product .entry-summary .price del {
  color: #bfc7d3;
}
.single-product #primary div.product .entry-summary .price del .amount {
  color: #bfc7d3;
}
.single-product #primary div.product .entry-summary .woocommerce-sg-product-excerpt > h3 {
  font-size: 30px;
  margin-bottom: 11px;
}
.single-product #primary div.product .entry-summary .single_add_to_cart_button {
  clear: left;
  margin-top: 30px;
}
.single-product #primary div.product .woocommerce-tabs ul.wc-tabs {
  padding: 0;
  margin-bottom: 34px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.single-product #primary div.product .woocommerce-tabs ul.wc-tabs:before {
  content: '';
  background-color: #f0f0f0;
  height: 2px;
  width: 100%;
  position: absolute;
  top: 24px;
  left: 0;
  border: none;
}
@media screen and (max-width: 575px) {
  .single-product #primary div.product .woocommerce-tabs ul.wc-tabs:before {
    display: none;
  }
}
.single-product #primary div.product .woocommerce-tabs ul.wc-tabs:after {
  display: none !important;
}
@media screen and (max-width: 575px) {
  .single-product #primary div.product .woocommerce-tabs ul.wc-tabs {
    display: block;
  }
}
.single-product #primary div.product .woocommerce-tabs ul.wc-tabs li {
  margin: 0;
  padding: 0 10px;
  border: none;
  background-color: transparent;
  position: relative;
  z-index: 99;
}
.single-product #primary div.product .woocommerce-tabs ul.wc-tabs li:before, .single-product #primary div.product .woocommerce-tabs ul.wc-tabs li:after {
  display: none !important;
}
@media screen and (max-width: 575px) {
  .single-product #primary div.product .woocommerce-tabs ul.wc-tabs li {
    display: block;
    padding: 0;
    margin-bottom: 5px;
  }
  .single-product #primary div.product .woocommerce-tabs ul.wc-tabs li a {
    display: block;
  }
}
.single-product #primary div.product .woocommerce-tabs ul.wc-tabs li a {
  border: 2px solid #f0f0f0;
  line-height: 46px;
  padding: 0 45px;
  position: relative;
  background-color: #fff;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #747da1;
  position: relative;
  z-index: 1;
}
.single-product #primary div.product .woocommerce-tabs ul.wc-tabs li a:before {
  content: '';
  width: calc(100% + 4px);
  width: -webkit-calc(100% + 4px);
  height: calc(100% + 4px);
  height: -webkit-calc(100% + 4px);
  left: -2px;
  top: -2px;
  background-color: #6747ee;
  background-image: -webkit-gradient(linear, left top, right top, from(#6747ee), to(#9124dc));
  background-image: -webkit-linear-gradient(left, #6747ee, #9124dc);
  background-image: -moz-linear-gradient(left, #6747ee, #9124dc);
  background-image: -ms-linear-gradient(left, #6747ee, #9124dc);
  background-image: -o-linear-gradient(left, #6747ee, #9124dc);
  background-image: linear-gradient(left, #6747ee, #9124dc);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#6747ee', endColorStr='#9124dc', gradientType='1');
  z-index: -1;
  position: absolute;
  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;
}
.single-product #primary div.product .woocommerce-tabs ul.wc-tabs li a:after {
  display: none !important;
}
.single-product #primary div.product .woocommerce-tabs ul.wc-tabs li.active > a {
  color: #fff;
}
.single-product #primary div.product .woocommerce-tabs ul.wc-tabs li.active > a:before {
  opacity: 1;
}
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel ul.sg-product-list {
  margin: 0;
  list-style: none;
}
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel ul.sg-product-list li {
  padding: 5px 5px 5px 30px;
  position: relative;
  font-weight: 500;
  font-size: 15px;
  font-family: "Montserrat", sans-serif;
}
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel ul.sg-product-list li:before {
  content: "\e64c";
  font-family: "themify";
  position: absolute;
  left: 0;
  top: 5px;
  display: block;
  font-size: 15px;
  color: #015dc7;
}
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel > h2 {
  display: none;
}
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel.panel {
  margin-bottom: 42px;
}
.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: #1d274e;
  font-weight: normal;
  font-style: normal;
  padding: 10px;
}
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel .shop_attributes td {
  border-left: 1px solid #dee2e6;
}
.single-product #primary div.product .woocommerce-tabs .tab-product-feature-list {
  font-size: 18px;
  line-height: 34px;
}
.single-product #primary div.product .woocommerce-tabs .tab-product-feature-list .col-xl-4 {
  font-weight: 600;
}
.single-product #primary div.product .woocommerce-tabs .tab-product-feature-list .line-gap {
  margin: 0;
  width: 100%;
}
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews .comment-form-rating {
  margin-bottom: 15px;
}
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews .comment-form-rating label {
  margin-bottom: 10px;
}
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews .comment-form-comment label {
  margin-bottom: 8px;
}
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews .woocommerce-Reviews-title {
  font-size: 30px;
  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;
}
.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 #reviews ol.commentlist {
  padding: 0;
}
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review {
  position: relative;
  margin-bottom: 20px;
  padding: 20px;
  border: 1px solid #eee;
}
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .star-rating-wrap {
  position: absolute;
  right: 10px;
  top: 0;
}
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .star-rating-wrap .count-rating {
  display: none;
}
@media screen and (max-width: 991px) {
  .single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .star-rating-wrap {
    position: static;
    margin-bottom: 6px;
  }
}
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .comment_container {
  position: relative;
}
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review img.avatar {
  padding: 0;
  width: 80px;
  -webkit-border-radius: 80px;
  -khtml-border-radius: 80px;
  -moz-border-radius: 80px;
  -ms-border-radius: 80px;
  -o-border-radius: 80px;
  border-radius: 80px;
  border: 5px solid #fff;
}
@media screen and (max-width: 575px) {
  .single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review img.avatar {
    width: 40px;
    border: none;
  }
}
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .comment-text {
  border: none;
  margin: 0;
  padding: 0 0 0 100px;
}
@media screen and (max-width: 767px) {
  .single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .comment-text .star-rating {
    float: none;
  }
}
@media screen and (max-width: 575px) {
  .single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .comment-text {
    padding-left: 60px;
  }
}
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .meta {
  display: flex;
  align-items: center;
  margin: 0 0 8px;
  font-size: 16px;
}
@media screen and (max-width: 575px) {
  .single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .meta {
    display: block;
  }
}
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .meta .woocommerce-review__published-date {
  display: block;
  font-style: 14px;
  color: #1d274e;
}
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .meta .woocommerce-review__author {
  font-weight: 600;
  color: #1d274e;
  font-family: 'Poppins', sans-serif;
}
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .meta .woocommerce-review__dash {
  display: none;
}
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .meta .woocommerce-review__published-date:before {
  content: "\f017";
  font-family: FontAwesome;
  margin: 0 4px;
}
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .description p {
  margin: 0;
}
.single-product #primary div.product .quantity {
  margin-right: 20px;
}
.single-product #primary div.product .product_meta .sku_wrapper, .single-product #primary div.product .product_meta .posted_in, .single-product #primary div.product .product_meta .tagged_as {
  display: block;
  font-weight: 600;
  font-size: 15px;
}
.single-product #primary div.product .product_meta .sku_wrapper span, .single-product #primary div.product .product_meta .posted_in span, .single-product #primary div.product .product_meta .tagged_as span, .single-product #primary div.product .product_meta .sku_wrapper a, .single-product #primary div.product .product_meta .posted_in a, .single-product #primary div.product .product_meta .tagged_as a {
  margin-left: 7px;
}
.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: #9494b2;
  font-weight: normal;
}
.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: #015dc7;
}
.single-product #primary div.product .product_meta .sku_wrapper {
  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: 50px;
}
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;
  color: #333;
  padding: 10px;
  border-top: 1px solid #dee2e6;
  border-bottom: 2px solid #dee2e6;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
}
body.woocommerce-cart .woocommerce-cart-form .shop_table tbody td, body.woocommerce-wishlist .woocommerce-cart-form .shop_table tbody td, body.woocommerce-cart #yith-wcwl-form .shop_table tbody td, body.woocommerce-wishlist #yith-wcwl-form .shop_table tbody td {
  text-align: left;
}
body.woocommerce-cart .woocommerce-cart-form tbody .product-name a, body.woocommerce-wishlist .woocommerce-cart-form tbody .product-name a, body.woocommerce-cart #yith-wcwl-form tbody .product-name a, body.woocommerce-wishlist #yith-wcwl-form tbody .product-name a {
  color: #1d274e;
  font-size: 16px;
  font-weight: 600;
  font-family: "Montserrat";
}
body.woocommerce-cart .woocommerce-cart-form tbody .product-name a:hover, body.woocommerce-wishlist .woocommerce-cart-form tbody .product-name a:hover, body.woocommerce-cart #yith-wcwl-form tbody .product-name a:hover, body.woocommerce-wishlist #yith-wcwl-form tbody .product-name a:hover {
  color: #015dc7;
}
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: #1d274e;
  font-size: 16px;
  font-weight: 600;
  font-family: "Montserrat";
}
body.woocommerce-cart .woocommerce-cart-form tbody .product-price ins, body.woocommerce-wishlist .woocommerce-cart-form tbody .product-price ins, body.woocommerce-cart #yith-wcwl-form tbody .product-price ins, body.woocommerce-wishlist #yith-wcwl-form tbody .product-price ins, body.woocommerce-cart .woocommerce-cart-form tbody .product-subtotal ins, body.woocommerce-wishlist .woocommerce-cart-form tbody .product-subtotal ins, body.woocommerce-cart #yith-wcwl-form tbody .product-subtotal ins, body.woocommerce-wishlist #yith-wcwl-form tbody .product-subtotal ins {
  color: #1d274e;
  background-color: transparent;
}
body.woocommerce-cart .woocommerce-cart-form tbody .product-thumbnail, body.woocommerce-wishlist .woocommerce-cart-form tbody .product-thumbnail, body.woocommerce-cart #yith-wcwl-form tbody .product-thumbnail, body.woocommerce-wishlist #yith-wcwl-form tbody .product-thumbnail {
  text-align: center !important;
  min-width: 120px;
}
body.woocommerce-cart .woocommerce-cart-form tbody .product-thumbnail a, body.woocommerce-wishlist .woocommerce-cart-form tbody .product-thumbnail a, body.woocommerce-cart #yith-wcwl-form tbody .product-thumbnail a, body.woocommerce-wishlist #yith-wcwl-form tbody .product-thumbnail a {
  display: block;
}
body.woocommerce-cart .woocommerce-cart-form tbody .product-thumbnail a img, body.woocommerce-wishlist .woocommerce-cart-form tbody .product-thumbnail a img, body.woocommerce-cart #yith-wcwl-form tbody .product-thumbnail a img, body.woocommerce-wishlist #yith-wcwl-form tbody .product-thumbnail a img {
  width: 100%;
  max-width: 80px;
}
body.woocommerce-cart .woocommerce-cart-form .product-remove, body.woocommerce-wishlist .woocommerce-cart-form .product-remove, body.woocommerce-cart #yith-wcwl-form .product-remove, body.woocommerce-wishlist #yith-wcwl-form .product-remove {
  position: relative;
  min-width: 50px;
}
body.woocommerce-cart .woocommerce-cart-form .product-remove a.remove, body.woocommerce-wishlist .woocommerce-cart-form .product-remove a.remove, body.woocommerce-cart #yith-wcwl-form .product-remove a.remove, body.woocommerce-wishlist #yith-wcwl-form .product-remove a.remove {
  font-size: 0px;
}
body.woocommerce-cart .woocommerce-cart-form .product-remove a.remove:before, body.woocommerce-wishlist .woocommerce-cart-form .product-remove a.remove:before, body.woocommerce-cart #yith-wcwl-form .product-remove a.remove:before, body.woocommerce-wishlist #yith-wcwl-form .product-remove a.remove:before {
  content: "\f136";
  font-family: "Material-Design-Iconic-Font";
  font-size: 18px;
  height: 32px;
  width: 32px;
  line-height: 32px;
  background-color: #6747ee;
  background-image: -webkit-gradient(linear, left top, right top, from(#6747ee), to(#9124dc));
  background-image: -webkit-linear-gradient(left, #6747ee, #9124dc);
  background-image: -moz-linear-gradient(left, #6747ee, #9124dc);
  background-image: -ms-linear-gradient(left, #6747ee, #9124dc);
  background-image: -o-linear-gradient(left, #6747ee, #9124dc);
  background-image: linear-gradient(left, #6747ee, #9124dc);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#6747ee', endColorStr='#9124dc', gradientType='1');
  color: #fff;
  -webkit-border-radius: 32px;
  -khtml-border-radius: 32px;
  -moz-border-radius: 32px;
  -ms-border-radius: 32px;
  -o-border-radius: 32px;
  border-radius: 32px;
  font-weight: normal;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -khtml-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  left: 0;
  right: 0;
  margin: auto;
}
body.woocommerce-cart .woocommerce-cart-form .product-remove a.remove:hover:before, body.woocommerce-wishlist .woocommerce-cart-form .product-remove a.remove:hover:before, body.woocommerce-cart #yith-wcwl-form .product-remove a.remove:hover:before, body.woocommerce-wishlist #yith-wcwl-form .product-remove a.remove:hover:before {
  color: #fff;
  background-color: rgba(1, 93, 199, 0.85);
}
@media screen and (max-width: 769px) {
  body.woocommerce-cart .woocommerce-cart-form .product-remove, body.woocommerce-wishlist .woocommerce-cart-form .product-remove, body.woocommerce-cart #yith-wcwl-form .product-remove, body.woocommerce-wishlist #yith-wcwl-form .product-remove {
    min-height: 57px;
  }
}
body.woocommerce-cart .woocommerce-cart-form table.shop_table, body.woocommerce-wishlist .woocommerce-cart-form table.shop_table, body.woocommerce-cart #yith-wcwl-form table.shop_table, body.woocommerce-wishlist #yith-wcwl-form table.shop_table {
  margin-bottom: 40px;
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
}
@media screen and (max-width: 769px) {
  body.woocommerce-cart .woocommerce-cart-form table.shop_table td, body.woocommerce-wishlist .woocommerce-cart-form table.shop_table td, body.woocommerce-cart #yith-wcwl-form table.shop_table td, body.woocommerce-wishlist #yith-wcwl-form table.shop_table td {
    background-color: #fff !important;
  }
}
body.woocommerce-cart .cart-collaterals .cart_totals > h2, body.woocommerce-wishlist .cart-collaterals .cart_totals > h2 {
  font-size: 24px;
  text-transform: capitalize;
  margin-bottom: 12px;
}
body.woocommerce-cart .cart-collaterals .cart_totals th, body.woocommerce-wishlist .cart-collaterals .cart_totals th {
  color: #1d274e;
  vertical-align: middle !important;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
}
body.woocommerce-cart .cart-collaterals .cart_totals th + td, body.woocommerce-wishlist .cart-collaterals .cart_totals th + td {
  border-left: 1px solid #ebebeb;
}
body.woocommerce-cart .cart-collaterals .cart_totals .cart-subtotal td, body.woocommerce-wishlist .cart-collaterals .cart_totals .cart-subtotal td, body.woocommerce-cart .cart-collaterals .cart_totals .order-total td, body.woocommerce-wishlist .cart-collaterals .cart_totals .order-total td {
  font-weight: 600;
  color: #1d274e;
}
body.woocommerce-cart .cart-collaterals .cart_totals .cart-subtotal strong, body.woocommerce-wishlist .cart-collaterals .cart_totals .cart-subtotal strong, body.woocommerce-cart .cart-collaterals .cart_totals .order-total strong, body.woocommerce-wishlist .cart-collaterals .cart_totals .order-total strong, body.woocommerce-cart .cart-collaterals .cart_totals .cart-subtotal .amount, body.woocommerce-wishlist .cart-collaterals .cart_totals .cart-subtotal .amount, body.woocommerce-cart .cart-collaterals .cart_totals .order-total .amount, body.woocommerce-wishlist .cart-collaterals .cart_totals .order-total .amount {
  font-weight: 600 !important;
  color: #015dc7;
  font-family: 'Poppins', sans-serif;
}
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: #015dc7;
}
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: #a200ff;
}
body.woocommerce-cart .cart-collaterals .cart_totals .woocommerce-shipping-calculator .shipping-calculator-form, body.woocommerce-wishlist .cart-collaterals .cart_totals .woocommerce-shipping-calculator .shipping-calculator-form {
  padding-top: 10px;
}
body.woocommerce-cart .cart-collaterals .cart_totals .wc-proceed-to-checkout, body.woocommerce-wishlist .cart-collaterals .cart_totals .wc-proceed-to-checkout {
  padding-bottom: 0;
}
body.woocommerce-cart .cart-collaterals .cart_totals .wc-proceed-to-checkout .checkout-button, body.woocommerce-wishlist .cart-collaterals .cart_totals .wc-proceed-to-checkout .checkout-button {
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 14px;
}
body.woocommerce-cart .cart-collaterals .wc-proceed-to-checkout, body.woocommerce-wishlist .cart-collaterals .wc-proceed-to-checkout {
  text-align: right;
}
.woocommerce-checkout form.checkout_coupon {
  border: 1px solid #eee;
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
  background-color: #f7f8fa;
}
.woocommerce-checkout form.checkout_coupon .form-row-first {
  width: 50%;
  padding-right: 30px;
}
.woocommerce-checkout form.checkout_coupon .form-row-last {
  width: 50%;
}
.woocommerce-checkout #add_payment_method #payment, .woocommerce-checkout #payment {
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
}
.woocommerce-checkout #customer_details {
  margin: 0 -15px;
  width: inherit;
}
.woocommerce-checkout #customer_details .col-1, .woocommerce-checkout #customer_details .col-2 {
  width: 50%;
  flex: inherit;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .woocommerce-checkout #customer_details {
    margin: 0;
  }
  .woocommerce-checkout #customer_details .col-1, .woocommerce-checkout #customer_details .col-2 {
    width: 100%;
  }
}
.woocommerce-checkout #customer_details span.woocommerce-input-wrapper {
  width: 100%;
  display: block;
}
.woocommerce-checkout #customer_details .woocommerce-billing-fields {
  margin-bottom: 36px;
}
.woocommerce-checkout #customer_details .woocommerce-billing-fields > h3 {
  font-size: 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: #015dc7;
}
.woocommerce-checkout #customer_details .woocommerce-shipping-fields #ship-to-different-address #ship-to-different-address-checkbox {
  position: absolute;
  opacity: 0;
}
.woocommerce-checkout #customer_details .woocommerce-shipping-fields #ship-to-different-address .woocommerce-form__label span:after {
  content: "\f01a";
  font-family: FontAwesome;
  margin-left: 14px;
  font-weight: normal;
}
.woocommerce-checkout #customer_details #billing_country_field label, .woocommerce-checkout #customer_details #shipping_country_field label, .woocommerce-checkout #customer_details #billing_address_1_field label, .woocommerce-checkout #customer_details #shipping_address_1_field label, .woocommerce-checkout #customer_details #order_comments_field label {
  display: none !important;
}
.woocommerce-checkout form.woocommerce-checkout #order_review_heading {
  font-size: 24px;
  text-transform: capitalize;
}
.woocommerce-checkout form.woocommerce-checkout #order_review th {
  color: #1d274e;
  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: #1d274e;
}
.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: #015dc7;
}
.woocommerce-checkout #payment label {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.87);
  font-weight: 600;
}
.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: #015dc7;
}
.woocommerce-account .site-content #primary .woocommerce-MyAccount-navigation ul li a:before {
  content: "\f178";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -khtml-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  display: block;
  font-family: "FontAwesome";
  color: #015dc7;
  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: #015dc7;
}
.woocommerce-account .site-content #primary .woocommerce-form .woocommerce-LostPassword a:hover {
  color: #a200ff;
}
.woocommerce-account .site-content #primary .woocommerce-form .woocommerce-form__label-for-checkbox {
  padding: 0;
  line-height: 50px;
}
.woocommerce-account .site-content #primary .woocommerce-form .woocommerce-form__label-for-checkbox span {
  font-size: 15px;
}
.woocommerce-account .site-content #primary .woocommerce-form .woocommerce-form__label-for-checkbox .woocommerce-form__input-checkbox {
  position: relative;
  top: -1px;
}
.woocommerce-account .site-content #primary .woocommerce-form .woocommerce-Button {
  height: 42px;
}
.woocommerce-account .site-content #primary .woocommerce-notices-wrapper + h2 {
  text-align: center;
  font-size: 24px;
}
.woocommerce-account .site-content #primary #customer_login {
  margin: 0 -15px;
  width: inherit;
  display: flex;
  flex-wrap: wrap;
}
.woocommerce-account .site-content #primary #customer_login h2 {
  font-size: 24px;
}
.woocommerce-account .site-content #primary #customer_login .u-column1.col-1, .woocommerce-account .site-content #primary #customer_login .u-column2.col-2 {
  width: 50%;
  flex: inherit;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .woocommerce-account .site-content #primary #customer_login {
    margin: 0;
  }
  .woocommerce-account .site-content #primary #customer_login .u-column1.col-1, .woocommerce-account .site-content #primary #customer_login .u-column2.col-2 {
    width: 100%;
    padding: 0;
  }
}
.woocommerce-account .site-content #primary .woocommerce-password-strength.bad {
  background-color: transparent;
  padding: 8px 0;
}
body #yith-wcwl-popup-message {
  margin-left: -108px;
  display: none;
  bottom: 30px;
  top: auto;
  right: 30px;
  left: auto;
  background-color: #015dc7;
  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: #a200ff !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: #015dc7;
  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: #a200ff;
}
.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;
  }
}
body.rtl {
  direction: rtl;
  unicode-bidi: embed;
  text-align: right;
}
body.rtl .widget_shopping_cart {
  right: auto;
  left: 0;
}
body.rtl .vc_col-lg-1, body.rtl .vc_col-lg-10, body.rtl .vc_col-lg-11, body.rtl .vc_col-lg-12, body.rtl .vc_col-lg-2, body.rtl .vc_col-lg-3, body.rtl .vc_col-lg-4, body.rtl .vc_col-lg-5, body.rtl .vc_col-lg-6, body.rtl .vc_col-lg-7, body.rtl .vc_col-lg-8, body.rtl .vc_col-lg-9, body.rtl .vc_col-md-1, body.rtl .vc_col-md-10, body.rtl .vc_col-md-11, body.rtl .vc_col-md-12, body.rtl .vc_col-md-2, body.rtl .vc_col-md-3, body.rtl .vc_col-md-4, body.rtl .vc_col-md-5, body.rtl .vc_col-md-6, body.rtl .vc_col-md-7, body.rtl .vc_col-md-8, body.rtl .vc_col-md-9, body.rtl .vc_col-sm-1, body.rtl .vc_col-sm-10, body.rtl .vc_col-sm-11, body.rtl .vc_col-sm-12, body.rtl .vc_col-sm-2, body.rtl .vc_col-sm-3, body.rtl .vc_col-sm-4, body.rtl .vc_col-sm-5, body.rtl .vc_col-sm-6, body.rtl .vc_col-sm-7, body.rtl .vc_col-sm-8, body.rtl .vc_col-sm-9, body.rtl .vc_col-xs-1, body.rtl .vc_col-xs-10, body.rtl .vc_col-xs-11, body.rtl .vc_col-xs-12, body.rtl .vc_col-xs-2, body.rtl .vc_col-xs-3, body.rtl .vc_col-xs-4, body.rtl .vc_col-xs-5, body.rtl .vc_col-xs-6, body.rtl .vc_col-xs-7, body.rtl .vc_col-xs-8, body.rtl .vc_col-xs-9 {
  float: right;
}
body.rtl .text-left, body.rtl .align-left {
  text-align: right;
}
body.rtl .owl-dots .owl-dot {
  margin: 0 8px;
}
body.rtl .owl-nav {
  direction: ltr;
}
body.rtl input[type="text"], body.rtl input[type="email"], body.rtl input[type="url"], body.rtl input[type="password"], body.rtl input[type="search"], body.rtl input[type="tel"], body.rtl input[type="number"], body.rtl input[type="range"], body.rtl input[type="date"], body.rtl input[type="month"], body.rtl input[type="week"], body.rtl input[type="time"], body.rtl input[type="datetime"], body.rtl input[type="datetime-local"], body.rtl input[type="color"], body.rtl textarea, body.rtl select, body.rtl .nice-select {
  text-align: right;
}
body.rtl .nice-select:after {
  right: auto;
  left: 18px;
}
body.rtl .nice-select {
  padding-left: 40px;
  padding-right: 18px;
}
body.rtl .nice-select .option {
  text-align: right;
}
body.rtl #pagetitle h1.page-title {
  margin-right: 0;
  margin-left: 30px;
}
body.rtl .wpcf7-form .input-filled > i {
  right: auto;
  left: 38px;
}
body.rtl .wpcf7-form .input-filled > i + .wpcf7-form-control-wrap .wpcf7-form-control:not(.wpcf7-submit) {
  padding-right: 40px;
  padding-left: 70px;
}
body.rtl #pagetitle .page-title-search .search-field {
  padding-right: 30px;
  padding-left: 86px;
}
body.rtl #pagetitle .page-title-search .search-submit {
  right: auto;
  left: 0;
}
@media screen and (min-width: 992px) {
  .rtl .text-left-lg {
    text-align: right !important;
  }
  .rtl .text-right-lg {
    text-align: left !important;
  }
}
@media screen and (max-width: 1199px) {
  .rtl .align-left-md {
    text-align: right;
  }
  .rtl .align-right-md {
    text-align: left;
  }
}
@media screen and (max-width: 991px) {
  .rtl .text-left-md {
    text-align: right !important;
  }
  .rtl .text-right-md {
    text-align: left !important;
  }
  .rtl .align-left-sm {
    text-align: right;
  }
  .rtl .align-right-sm {
    text-align: left;
  }
}
@media screen and (max-width: 767px) {
  .rtl {
    /* Header */
  }
  .rtl .text-left-sm {
    text-align: right !important;
  }
  .rtl .text-right-sm {
    text-align: left !important;
  }
  .rtl .align-left-xs {
    text-align: right;
  }
  .rtl .align-right-xs {
    text-align: left;
  }
}
@media screen and (min-width: 992px) {
  .rtl #header-wrap .primary-menu > li {
    float: right;
  }
  .rtl #header-wrap .primary-menu .sub-menu {
    left: auto;
    right: 0;
  }
  .rtl #header-wrap .site-menu-right {
    margin-left: 0;
    margin-right: 14px;
  }
  .rtl #header-wrap .site-menu-right .menu-right-item + .menu-right-item {
    margin-left: 0;
    margin-right: 9px;
  }
  .rtl #header-wrap .primary-menu > li.menu-item-has-children > a::after {
    margin-left: 0;
    margin-right: 5px;
  }
  .rtl #header-wrap .primary-menu .sub-menu li a:before {
    left: auto;
    right: 0;
  }
  .rtl #header-wrap .primary-menu .sub-menu li > a:hover, .rtl #header-wrap .primary-menu .sub-menu li.current_page_item > a, .rtl #header-wrap .primary-menu .sub-menu li.current-menu-item > a, .rtl #header-wrap .primary-menu .sub-menu li.current_page_ancestor > a, .rtl #header-wrap .primary-menu .sub-menu li.current-menu-ancestor > a, .rtl #header-wrap .primary-menu .sub-menu li.current-menu-parent > a {
    padding-left: 0;
    padding-right: 20px;
  }
  .rtl #header-wrap .header-branding a.logo-light {
    left: auto;
    right: 0;
  }
  .rtl #header-wrap .site-menu-right .menu-right-item.header-social a + a {
    margin-left: 0;
    margin-right: 14px;
  }
}
@media screen and (max-width: 991px) {
  .rtl {
    /* Shortcode */
  }
  .rtl #header-wrap .site-branding {
    text-align: right;
  }
  .rtl #header-wrap .site-branding .logo-dark {
    left: auto;
    right: 0;
  }
  .rtl #header-wrap .primary-menu li {
    text-align: right;
  }
  .rtl #header-wrap .primary-menu .sub-menu {
    left: auto;
    right: 0;
  }
  .rtl #header-wrap .menu-mobile-close {
    right: auto;
    left: 0;
  }
  .rtl #header-wrap #main-menu-mobile {
    right: auto;
    left: 15px;
  }
  .rtl #header-wrap .main-menu-toggle {
    right: auto;
    left: 12px;
  }
  .rtl #header-wrap .header-navigation {
    right: 0;
    transform: translateX(100%);
  }
  .rtl #header-wrap .header-navigation .main-navigation {
    -webkit-transform: translateX(100%);
    -khtml-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
    left: auto;
  }
  .rtl #header-wrap .header-navigation.navigation-open {
    transform: translateX(0%);
  }
  .rtl #header-wrap .header-navigation.navigation-open .main-navigation {
    -webkit-transform: translateX(0%);
    -khtml-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
    transform: translateX(0%);
  }
  .rtl #header-wrap .header-mobile-search .search-submit {
    right: auto;
    left: 0px;
  }
}
.rtl .ct-short-text.layout1 .short-text-title {
  padding-right: 0;
  padding-left: 32px;
}
@media screen and (max-width: 767px) {
  .rtl .ct-short-text.layout1 .short-text-title {
    padding-left: 0;
  }
}
.rtl .ct-short-text.layout1 .short-text-description {
  padding-left: 0;
  padding-right: 32px;
}
@media screen and (max-width: 767px) {
  .rtl .ct-short-text.layout1 .short-text-description {
    padding-right: 0;
  }
}
.rtl .ct-short-text.layout1 .short-text-title::before {
  right: auto;
  left: 0;
}
@media screen and (max-width: 767px) {
  .rtl .ct-short-text.layout1 .short-text-title::before {
    left: 0;
    right: 0;
    margin: auto;
  }
}
.rtl .ct-list.layout1 li i {
  margin-left: 9px;
  margin-right: 0px;
}
.rtl .ct-list.layout3 li i {
  left: auto;
  right: 0;
}
.rtl .ct-list.layout3 li i + span {
  padding-left: 0;
  padding-right: 39px;
}
.rtl .ct-fancybox-layout2 .ct-fancybox-icon {
  margin-right: 0;
  margin-left: 37px;
}
.rtl .ct-contact-info .ct-contact-info-icon i {
  margin-right: 0;
  margin-left: 30px;
}
.rtl .ct-video-wrapper.video-intro-style3 .ct-video-inner {
  margin-right: 0;
  margin-left: 30px;
  /* Footer */
}
.rtl .site-footer .top-footer ul.menu li:hover > a, .rtl .site-footer .top-footer ul.menu li.current_page_item > a, .rtl .site-footer .top-footer ul.menu li.current-menu-item > a, .rtl .site-footer .top-footer ul.menu li.current_page_ancestor > a, .rtl .site-footer .top-footer ul.menu li.current-menu-ancestor > a {
  padding-left: 0;
  padding-right: 26px;
}
.rtl .site-footer .top-footer ul.menu li a::before {
  left: auto;
  right: 0;
  content: "\f177";
  /* Post */
}
.rtl .entry-meta li, .rtl .item-meta li {
  padding: 0 0 0 20px;
}
.rtl .entry-meta li i, .rtl .item-meta li i {
  margin-right: 0;
  margin-left: 10px;
}
.rtl .ct-social li:last-child {
  margin-right: 10px;
}
.rtl #content .widget_categories ul li a::before, .rtl #content .widget_nav_menu ul li a::before, .rtl #content .widget_pages ul li a::before, .rtl #content .widget_archive ul li a::before, .rtl #content .widget_meta ul li a::before, .rtl #content .widget_recent_entries ul li a::before {
  content: "\f177";
}
.rtl .widget_ct_recent_posts .entry-media {
  margin-right: 0;
  margin-left: 20px;
}
.rtl .widget_ct_recent_posts .item-time i {
  padding-left: 8px;
  padding-right: 0px;
}
.rtl .widget_search .search-form .search-field {
  padding-left: 70px;
  padding-right: 30px;
}
.rtl .widget_search .search-form .search-submit {
  right: auto;
  left: 0;
}
.rtl #pagetitle .ct-breadcrumb li::before {
  margin-right: 0;
  margin-left: 13px;
}
.rtl.single-post .content-area .entry-content-bottom .entry-tags {
  margin-right: 0;
  margin-left: 30px;
}
.rtl.single-post .content-area .entry-content-bottom .entry-tags a {
  margin-right: 0;
  margin-left: 16px;
}
.rtl.single-post .content-area .entry-content-bottom .entry-social a + a {
  margin-left: 0;
  margin-right: 25px;
}
.rtl .comment-inner img.avatar {
  margin-right: 0;
  margin-left: 30px;
}
.rtl .comment-reply {
  right: auto;
  left: 20px;
}
.rtl.single-portfolio .entry-footer .entry-social a + a {
  margin-left: 0;
  margin-right: 6px;
}
.rtl.single-portfolio .post-type-nav .nav-link-next .nav-inner {
  text-align: left;
}
.rtl.single-portfolio .post-type-nav .nav-link-next .nav-inner .nav-icon {
  opacity: 0;
}
.rtl.single-portfolio .post-type-nav .nav-link-next .nav-inner:hover {
  padding-right: 0;
}
.rtl.single-portfolio .post-type-nav .nav-link-prev .nav-inner .nav-icon {
  opacity: 0;
}
.rtl.single-portfolio .post-type-nav .nav-link-prev .nav-inner:hover {
  padding-left: 0;
}
.rtl.woocommerce .woocommerce-product-inner .woocommerce-product-holder .product-holder-left {
  margin-right: 0;
  margin-left: 30px;
}
.rtl.woocommerce .star-rating-wrap .count-rating {
  margin-left: 0;
  margin-right: 8px;
}
.rtl.single-product #primary div.product .entry-summary .price ins {
  margin-right: 0;
  margin-left: 22px;
}
.rtl .ct-list.layout2 li label {
  margin-right: 0;
  margin-left: 30px;
}
.rtl.single-product #primary div.product .woocommerce-product-gallery {
  direction: ltr;
}
