@keyframes movetop {
  from {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
}
@-webkit-keyframes jws_fadeInUp {
  from {
    transform: translate3d(0, 40px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes jws-rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes jws-rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
body .fadeInUp {
  animation-name: fadeInUp;
  -webkit-animation-name: fadeInUp;
  animation-duration: 0.5s;
  animation-fill-mode: both;
  -webkit-animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
body .fadeInDown {
  animation-name: fadeInDown;
  -webkit-animation-name: fadeInDown;
  animation-duration: 0.5s;
  animation-fill-mode: both;
  -webkit-animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
body .fadeInLeft {
  animation-name: fadeInLeft;
  -webkit-animation-name: fadeInLeft;
  animation-duration: 0.5s;
  animation-fill-mode: both;
  -webkit-animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(20px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
body .fadeInRight {
  animation-name: fadeInRight;
  -webkit-animation-name: fadeInRight;
  animation-duration: 0.5s;
  animation-fill-mode: both;
  -webkit-animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
}
@keyframes aa {
  10% {
    left: -200px;
    right: -200px;
  }
  20% {
    left: -160px;
    right: -160px;
  }
  40% {
    left: -80px;
    right: -80px;
  }
  50% {
    left: 0;
    right: 0;
  }
  60% {
    left: -60%;
    right: -60%;
  }
  70% {
    left: -80px;
    right: -80px;
  }
  80% {
    left: -120px;
    right: -120px;
  }
  90% {
    left: -160px;
    right: -160px;
  }
  100% {
    left: -200px;
    right: -200px;
  }
}
@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg) translateX(30px);
    transform: rotate(0deg) translateX(30px);
  }
  100% {
    -webkit-transform: rotate(360deg) translateX(30px);
    transform: rotate(360deg) translateX(30px);
  }
}
@keyframes transition-loop {
  0% {
    -webkit-transform: rotate(0deg) translateX(30px);
    transform: rotate(0deg) translateX(30px);
  }
  100% {
    -webkit-transform: rotate(360deg) translateX(30px);
    transform: rotate(360deg) translateX(30px);
  }
}
.rotate {
  animation: rotate 8s linear infinite;
  animation-direction: alternate;
}
@keyframes MoveLeft {
  from {
    transform: translatex(0px);
    -webkit-transform: translatex(0px);
  }
  to {
    transform: translatex(100px);
    -webkit-transform: translatex(100px);
  }
}
.MoveLeft {
  animation: MoveLeft 8s linear infinite;
  animation-direction: alternate;
  opacity: 0.7;
}
@keyframes MoveRight {
  from {
    transform: translatex(0px);
    -webkit-transform: translatex(0px);
  }
  to {
    transform: translatex(-100px);
    -webkit-transform: translatex(-100px);
  }
}
.MoveRight {
  animation: MoveRight 8s linear infinite;
  animation-direction: alternate;
  opacity: 0.7;
}
@keyframes MoveTop {
  from {
    transform: translatey(0px);
    -webkit-transform: translatey(0px);
  }
  to {
    transform: translatey(-100px);
    -webkit-transform: translatey(-100px);
  }
}
.MoveTop {
  animation: MoveTop 8s linear infinite;
  animation-direction: alternate;
  opacity: 0.7;
}
@keyframes MoveBottom {
  from {
    transform: translatey(0px);
    -webkit-transform: translatey(0px);
  }
  to {
    transform: translatey(100px);
    -webkit-transform: translatey(100px);
  }
}
.MoveBottom {
  animation: MoveBottom 8s linear infinite;
  animation-direction: alternate;
  opacity: 0.7;
}
@keyframes MoveZoomIn {
  from {
    transform: scale(0.7);
    -webkit-transform: scale(0.7);
  }
  to {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
.MoveZoomIn {
  animation: MoveZoomIn 8s linear infinite;
  animation-direction: alternate;
  opacity: 0.7;
}
@keyframes MoveZoomOut {
  from {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
  to {
    transform: scale(0.7);
    -webkit-transform: scale(0.7);
  }
}
.MoveZoomOut {
  animation: MoveZoomOut 8s linear infinite;
  animation-direction: alternate;
  opacity: 0.7;
}
@keyframes MoveCircle {
  0% {
    transform: rotate(0deg) translate(-100%) rotate(0deg);
    -webkit-transform: rotate(0deg) translate(-100%) rotate(0deg);
  }
  100% {
    transform: rotate(360deg) translate(-100%) rotate(-360deg);
    -webkit-transform: rotate(360deg) translate(-100%) rotate(-360deg);
  }
}
.MoveCircle {
  animation: MoveCircle 8s linear infinite;
  animation-direction: alternate;
}
@keyframes MoveCircleSmall {
  0% {
    transform: rotate(0deg) translate(-10px) rotate(0deg);
    -webkit-transform: rotate(0deg) translate(-10px) rotate(0deg);
  }
  100% {
    transform: rotate(360deg) translate(-10px) rotate(-360deg);
    -webkit-transform: rotate(360deg) translate(-10px) rotate(-360deg);
  }
}
.MoveCircleSmall {
  animation: MoveCircleSmall 8s linear infinite;
  animation-direction: alternate;
  opacity: 0.7;
}
@keyframes MoveCircle360 {
  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
  }
}
.MoveCircle360 {
  animation: MoveCircle360 8s linear infinite;
  animation-direction: alternate;
  opacity: 0.7;
}
@keyframes width100 {
  0% {
    opacity: 0;
    transform: scaleX(0);
  }
  100% {
    opacity: 1;
    transform: scaleX(1);
  }
}
.width100 {
  animation: width100 8s linear infinite;
  animation-direction: alternate;
  opacity: 0.7;
}
@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
.sun {
  /*animation time for different browsers*/
  -webkit-animation: fadein 3s;
  /* Safari, Chrome and Opera > 12.1 */
  -moz-animation: fadein 3s;
  /* Firefox < 16 */
  -ms-animation: fadein 3s;
  /* Internet Explorer */
  -o-animation: fadein 3s;
  /* Opera < 12.1 */
  animation: fadein 3s;
}
/*setting the opacity to fade in from 0 to 1, aka from transparent to opaque*/
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Firefox < 16 */
@-moz-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Internet Explorer */
@-ms-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Opera < 12.1 */
@-o-keyframes fadeIn {
  from {
    opacity: 0;
  }
}
.lazyloaded {
  animation: fadeIn 0.3s;
}
@-webkit-keyframes fade-in-out {
  0% {
    letter-spacing: -0.5em;
    filter: blur(0px) opacity(0%);
  }
  30% {
    letter-spacing: 0;
    filter: blur(0) opacity(1);
  }
  70% {
    letter-spacing: 0;
    filter: blur(0px) opacity(1);
  }
  100% {
    letter-spacing: -0.5em;
    filter: blur(2px) opacity(0%);
  }
}
@keyframes circle1 {
  0% {
    width: 0;
    height: 0;
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    width: 500px;
    height: 500px;
    opacity: 0;
  }
}
@keyframes circle2 {
  0% {
    width: 0;
    height: 0;
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    width: 400px;
    height: 400px;
    opacity: 0;
  }
}
body > .site {
  overflow: hidden;
}
a {
  outline: none;
  color: currentColor;
}
a:hover {
  color: currentColor;
}
.container {
  max-width: 1200px;
  margin: auto;
}
.display-flex {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
}
.loader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 5000;
  background: #fff;
}
.loader.loaded {
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -o-transform: translateY(100%);
  transition: 1s all;
  -webkit-transition: 1s all;
  -moz-transition: 1s all;
  -o-transition: 1s all;
  -ms-transition: 1s all;
  transition-delay: 0.5s;
}
.loader .loading_logo {
  position: absolute;
  top: 50%;
  width: 100%;
  text-align: center;
  left: 0;
  margin-top: -30px;
  text-transform: uppercase;
  color: #676a6a;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 6px;
}
.loader.loaded .loading_logo {
  opacity: 0;
  transform: scale(1.5);
  -webkit-transform: scale(1.5);
  -moz-transform: scale(1.5);
  -o-transform: scale(1.5);
  -ms-transform: scale(1.5);
  transition: 2s all;
  -webkit-transition: 2s all;
}
.loader .loading_logo img {
  display: block;
  margin: 0 auto;
  max-width: 80px;
}
.loader .loading_logo .animation_loading_js {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-block;
  width: 60px;
  height: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  display: block;
}
.logo-text-loading {
  color: #1e1666;
  text-shadow: 2px 2px 5px #1e1666;
  font-family: Nunito;
  font-weight: bold;
  font-size: 60px;
  width: 100%;
  text-align: center;
  display: none;
  margin-top: 20px;
  animation-name: fade-in-out;
  animation-duration: 3s;
  animation-iteration-count: infinite;
}
.loading_logo {
  position: relative;
}
.loading_logo::before {
  content: '';
  position: absolute;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  z-index: -1;
  animation: circle1  2s ;
  -webkit-animation: circle1  2s ;
  border: 2px solid #def1ff;
}
.loading_logo::after {
  position: absolute;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  content: '';
  border-radius: 50%;
  top: 50%;
  left: 50%;
  z-index: -1;
  animation: circle2  3s ;
  -webkit-animation: circle2 3s ;
  animation-delay: 500ms;
  border: 2px solid #def1ff;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type="number"] {
  -moz-appearance: textfield;
}
input[type="text"] {
  -webkit-appearance: none;
}
textarea {
  outline: none;
}

@media only screen and (max-width: 1024px) {
  body h1,
  body .elementor-element.elementor-widget-heading.elementor-widget-heading h1 {
    font-size: 40px;
    line-height: 48px;
  }
  body h2,
  body .elementor-element.elementor-widget-heading.elementor-widget-heading h2 {
    font-size: 30px;
    line-height: 38px;
  }
  body h3,
  body .elementor-element.elementor-widget-heading.elementor-widget-heading h3,
  body .elementor-element.elementor-widget-icon-box .elementor-icon-box-content h3 {
    font-size: 20px;
    line-height: 28px;
  }
  body h4,
  .elementor-element.elementor-widget-heading.elementor-widget-heading h4,
  body .elementor-element.elementor-widget-icon-box .elementor-icon-box-content h4 {
    font-size: 18px;
    line-height: 28px;
  }
}
@media only screen and (max-width: 767px) {
  body h1,
  body .elementor-element.elementor-widget-heading.elementor-widget-heading h1 {
    font-size: 28px;
    line-height: 34px;
  }
  body h2,
  body .elementor-element.elementor-widget-heading.elementor-widget-heading h2,
  elementor-element.elementor-widget-icon-box .elementor-icon-box-content h2 {
    font-size: 26px;
    line-height: 32px;
  }
}
@media only screen and (min-width: 768px) {
  .movetop {
    -webkit-animation: movetop 2s linear infinite alternate;
    -moz-animation: movetop 2s linear infinite alternate;
    animation: movetop 2s linear infinite alternate;
    position: absolute;
    margin: 0 auto;
  }
}
.jws-button {
  padding: 11px 38px 11px 38px;
  border-radius: 100px;
}
.slick-slide {
  padding: 15px;
}
.slick-dots {
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  padding: 0;
  margin: 30px 0 0 0;
  justify-content: center;
  align-items: baseline;
  list-style: none;
}
.slick-dots li {
  margin-left: 6px;
  margin-right: 6px;
}
.slick-dots li button {
  background: none;
  color: transparent;
  position: relative;
  z-index: 1;
  font-size: 0;
  -webkit-appearance: none;
  height: 15px;
  width: 15px;
  padding: 0;
  border-radius: 100%;
  border: 1px solid transparent;
}
.slick-dots li button::before {
  content: "";
  width: 5px;
  height: 5px;
  background: blue;
  position: absolute;
  border-radius: 100%;
  top: 4px;
  left: 4px;
}
.slick-dots li button:focus {
  outline: none;
}
.slick-dots li {
  display: none;
}
/* only displaying the active bullets and the 2 bullets next to it */
.slick-dots li.slick-active,
.slick-dots li.slick-active + li,
.slick-dots li.slick-active + li + li {
  display: block;
}
/* displaying the last three bullets when slick-active class isn't applied to any li before them  */
.slick-dots li:nth-last-child(1),
.slick-dots li:nth-last-child(2),
.slick-dots li:nth-last-child(3) {
  display: block;
}
/* hiding the last three bullets if slick-active exist before them */
.slick-dots li.slick-active ~ li:nth-last-child(1),
.slick-dots li.slick-active ~ li:nth-last-child(2),
.slick-dots li.slick-active ~ li:nth-last-child(3) {
  display: none;
}
/* specific conditions to always display the last three bullets */
.slick-dots li.slick-active + li + li:nth-last-child(3),
.slick-dots li.slick-active + li + li:nth-last-child(2),
.slick-dots li.slick-active + li + li:nth-last-child(1),
.slick-dots li.slick-active + li:nth-last-child(3),
.slick-dots li.slick-active + li:nth-last-child(2),
.slick-dots li.slick-active + li:nth-last-child(1) {
  display: block;
}
.font-size-icon-video i {
  font-size: 16px !important;
}
.wpcf7-form .form-content {
  position: relative;
}
@media only screen and (min-width: 768px) {
  .wpcf7-form .form-content {
    /* OLD - iOS 6-, Safari 3.1-6 */
    /* OLD - Firefox 19- (buggy but mostly works) */
    /* TWEENER - IE 10 */
    /* NEW - Chrome */
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;
    /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Chrome */
    display: flex;
    flex-wrap: wrap;
  }
}
form.wpcf7-form .wpcf7-submit {
  background: transparent;
  border: none;
  color: #ffffff;
}
.wpcf7-form label {
  width: 60%;
  margin-right: 10px;
}
.wpcf7-form button {
  border: none;
  width: 36%;
  padding: 13px 20px;
  text-align: center;
  border-radius: 100px;
  vertical-align: middle;
  height: 50px;
  text-align: center !important;
  font-weight: 500;
  color: #ffffff;
  background-size: 200%;
  padding: 0 !important;
  -webkit-transition: 0.7s;
  -o-transition: 0.7s;
  -ms-transition: 0.7s;
  -moz-transition: 0.7s;
  transition: 0.7s;
}
.wpcf7-form button:hover {
  background-position: right center;
  box-shadow: 15px 8px 50px rgba(13, 56, 53, 0.2);
}
.wpcf7-form button:focus {
  outline: none;
}
@media only screen and (max-width: 767px) {
  .wpcf7-form button {
    width: 100%;
  }
}
.wpcf7-form-control.wpcf7-text {
  border: 1px solid #8e8ab2;
  height: 50px;
  width: 100%;
  padding: 20px;
  border-radius: 100px;
}
.wpcf7-form-control.wpcf7-text:focus {
  outline: none;
}
.wpcf7 div.wpcf7-validation-errors,
.wpcf7 div.wpcf7-acceptance-missing,
.wpcf7 span.wpcf7-not-valid-tip {
  font-size: 14px;
  margin: 0;
  line-height: 28px;
  border: none;
}
.wpcf7 div.wpcf7-response-output {
  margin: 0;
  padding: 0;
  color: #398f14;
  font-size: 14px;
  border: none;
}
.wpcf7 div.wpcf7-validation-errors {
  color: #f00;
}
div.wpcf7 .ajax-loader {
  bottom: -10px;
  left: 0;
  position: absolute;
}
span.wpcf7-not-valid-tip {
  top: -53px;
  width: 100%;
  border-radius: 5px;
  color: #333333;
  padding: 4px 10px;
  width: auto;
  position: absolute;
  background: #f44336;
  color: #fff;
  z-index: 1;
  padding: 1px 7px;
  font-size: 12px;
  right: 0;
}
span.wpcf7-not-valid-tip::before {
  width: 0;
  height: 0;
  left: 16px;
  content: "";
  position: absolute;
  border-left: 0px solid transparent;
  border-right: 9px solid transparent;
  border-top: 11px solid #f44336;
  bottom: -8px;
  right: 48%;
}
.wpcf7-form-control-wrap {
  position: relative;
}
.wpcf7-form-control-wrap input {
  display: inline-block;
}
rs-module [class^="fab"]:before,
rs-module [class*=" fab"]:before,
.rb-modal-wrapper [class^="fab"]:before,
.rb-modal-wrapper [class*=" fab"]:before,
#rs_overview [class^="fab"]:before,
#rs_overview [class*=" fab"]:before,
#objectlibrary [class^="fab"]:before,
#objectlibrary [class*=" fab"]:before,
#waitaminute [class^="fab"]:before,
#waitaminute [class*=" fab"]:before,
#rs_overview_menu [class^="fab"]:before,
#rs_overview_menu [class*=" fab"]:before,
#builderView [class^="fab"]:before,
#builderView [class*=" fab"]:before {
  font-family: "Font Awesome 5 Brands" !important;
}
rs-module .fas::before {
  font-weight: 900 !important;
}
rs-module i[class^="fa-"],
rs-module i[class*=" fa-"],
.rb-modal-wrapper i[class^="fa-"],
.rb-modal-wrapper i[class*=" fa-"],
#waitaminute i[class^="fa-"],
#waitaminute i[class*=" fa-"],
#objectlibrary i[class^="fa-"],
#objectlibrary i[class*=" fa-"],
#rs_overview i[class^="fa-"],
#rs_overview i[class*=" fa-"],
#rs_overview_menu i[class^="fa-"],
#rs_overview_menu i[class*=" fa-"],
#builderView i[class^="fa-"],
#builderView i[class*=" fa-"] {
  display: inline-block;
  font: normal normal normal 14px/1 "Font Awesome 5 Free";
}
rs-module [class^="fa-"]:before,
rs-module [class*=" fa-"]:before,
.rb-modal-wrapper [class^="fa-"]:before,
.rb-modal-wrapper [class*=" fa-"]:before,
#rs_overview [class^="fa-"]:before,
#rs_overview [class*=" fa-"]:before,
#objectlibrary [class^="fa-"]:before,
#objectlibrary [class*=" fa-"]:before,
#waitaminute [class^="fa-"]:before,
#waitaminute [class*=" fa-"]:before,
#rs_overview_menu [class^="fa-"]:before,
#rs_overview_menu [class*=" fa-"]:before,
#builderView [class^="fa-"]:before,
#builderView [class*=" fa-"]:before {
  font-family: inherit;
}
.button-hover .elementor-button {
  transition: all 0.2s ease-in-out !important;
}
.button-hover .elementor-button:hover {
  box-shadow: 0 5px 19px rgba(33, 35, 35, 0.45);
  transform: translateY(-3px);
}
div#sntch_webchat {
  max-width: 400px !IMPORTANT;
  border-radius: 10px !IMPORTANT;
}
@media only screen and (max-width: 767px) {
  div#sntch_webchat {
    border-radius: 0 !IMPORTANT;
  }
}
#sntch_close::before {
  content: '\e82e';
  font-family: 'linearicons-free';
  color: #fff;
  font-size: 20px;
}
#sntch_close svg {
  display: none;
}
.elementor-column-gap-default > .elementor-row > .elementor-column > .elementor-element-populated {
  padding: 0;
}
.elementor-section.elementor-section-height-full {
  height: 100vh;
}
.elementor-section.elementor-section-height-full > .elementor-container {
  height: 100%;
}
.elementor-element.elementor-widget-icon-list .elementor-icon-list-icon i {
  vertical-align: middle;
}
@media (max-width: 763px) {
  .elementor-element .elementor-tabs .elementor-tabs-content-wrapper {
    border-bottom-style: none;
  }
}
.elementor-element .swiper-image-stretch .swiper-slide .swiper-slide-image {
  width: auto;
}
.elementor-tab-mobile-title {
  display: none;
}
.custom-widget-tabs .elementor-widget-container .elementor-tabs .elementor-tabs-wrapper {
  display: inline-flex;
}
.custom-widget-tabs .elementor-widget-container .elementor-tabs .elementor-tabs-wrapper::after {
  content: "";
  width: 100%;
  height: 1px;
  border-bottom: 1px solid;
  display: block;
  margin-top: -1px;
  opacity: 0.1;
}
.custom-widget-tabs .elementor-widget-container .elementor-tabs .elementor-tab-content.elementor-active {
  border-width: 0;
}
.custom-widget-tabs .elementor-widget-container .elementor-tabs .elementor-tab-content {
  padding: 0;
}
.custom-widget-tabs .elementor-widget-container .elementor-tabs .elementor-tab-title {
  padding: 24px 35px;
}
.custom-widget-tabs .elementor-widget-container .elementor-tabs .elementor-tab-title.elementor-active {
  border-width: 0;
  position: relative;
}
.custom-widget-tabs .elementor-widget-container .elementor-tabs .elementor-tab-title.elementor-active::before {
  border-width: 0;
}
.custom-widget-tabs .elementor-widget-container .elementor-tabs .elementor-tab-title.elementor-active::after {
  left: 0;
  width: 100%;
  border-width: 2px;
  border-color: #539ef0;
}
.custom-widget-tabs.tab-left50 .elementor-tabs-wrapper {
  position: relative;
  left: 50%;
  -webkit-transform: translateX(90px);
  -o-transform: translateX(90px);
  -ms-transform: translateX(90px);
  -moz-transform: translateX(90px);
  transform: translateX(90px);
}
.custom-accordion .elementor-accordion .elementor-accordion-item {
  border: 1px solid transparent;
  border-radius: 5px;
}
.custom-accordion .elementor-accordion .elementor-accordion-item:not(:last-child) {
  margin-bottom: 15px;
}
.custom-accordion .elementor-accordion .elementor-accordion-item:not(:last-child) .elementor-tab-title {
  border-bottom-color: transparent !important;
}
.custom-accordion .elementor-accordion .elementor-tab-content {
  padding: 0px;
  opacity: 0;
  transition: transform 1s;
}
.custom-accordion .elementor-accordion .elementor-active.elementor-tab-content {
  border-top-color: transparent !important;
  transition: transform 1s;
  margin-top: -10px;
  padding: 0 25px 28px 30px;
  opacity: 1;
}
.custom-accordion .elementor-accordion .elementor-active.elementor-tab-content p {
  margin-bottom: 0;
}
.elementor-button .elementor-align-icon-right {
  margin-left: 14px;
}
.elementor-search-form__submit i::before {
  content: "\eb4b";
  font-family: "icomoon";
}
.wpcf7-form button {
  border-radius: 30px;
  background-size: 25px 50px;
  position: relative;
  background: transparent;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
.wpcf7-form button:hover {
  background-position: right center;
  -webkit-transform: translateY(-5px);
  -o-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  transform: translateY(-5px);
}
.wpcf7-form button:hover::before {
  background-position: right center;
}
.wpcf7-form button:hover::after {
  background-position: right center;
}
.wpcf7-form button::before {
  background-size: 200%;
  position: absolute;
  content: "";
  top: 0;
  border-radius: 30px;
  left: 0;
  z-index: -1;
  -webkit-transition: 1s;
  -o-transition: 1s;
  -ms-transition: 1s;
  -moz-transition: 1s;
  transition: 1s;
}
.wpcf7-form button::after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: -9px;
  height: 110%;
  left: 50%;
  width: 90%;
  transform: translateX(-50%);
  opacity: 0.4;
  border-radius: 50px;
  -webkit-filter: blur(10px);
  filter: blur(10px);
  transition: all 0.5s;
  background-position: right center;
}
.jws_account.layout_1 .jws_ac_noajax.no_user .jws_text,
.elementor-menu-cart__footer-buttons .elementor-button--view-cart,
.custom-bg-bt-revolution {
  position: relative;
  background: transparent;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
.jws_account.layout_1 .jws_ac_noajax.no_user .jws_text:hover,
.elementor-menu-cart__footer-buttons .elementor-button--view-cart:hover,
.custom-bg-bt-revolution:hover {
  background-position: right center;
  -webkit-transform: translateY(-5px);
  -o-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  transform: translateY(-5px);
}
.jws_account.layout_1 .jws_ac_noajax.no_user .jws_text:hover::before,
.elementor-menu-cart__footer-buttons .elementor-button--view-cart:hover::before,
.custom-bg-bt-revolution:hover::before {
  background-position: right center;
}
.jws_account.layout_1 .jws_ac_noajax.no_user .jws_text:hover::after,
.elementor-menu-cart__footer-buttons .elementor-button--view-cart:hover::after,
.custom-bg-bt-revolution:hover::after {
  background-position: right center;
}
.jws_account.layout_1 .jws_ac_noajax.no_user .jws_text::before,
.elementor-menu-cart__footer-buttons .elementor-button--view-cart::before,
.custom-bg-bt-revolution::before {
  background-size: 200%;
  position: absolute;
  content: "";
  top: 0;
  border-radius: 30px;
  left: 0;
  z-index: -1;
  height: 100%;
  width: 100%;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
.jws_account.layout_1 .jws_ac_noajax.no_user .jws_text::after,
.elementor-menu-cart__footer-buttons .elementor-button--view-cart::after,
.custom-bg-bt-revolution::after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: -9px;
  height: 110%;
  left: 50%;
  width: 90%;
  transform: translateX(-50%);
  opacity: 0.4;
  border-radius: 50px;
  -webkit-filter: blur(10px);
  filter: blur(10px);
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  background-position: right center;
}
.custom-bg-bt-revolution,
.simple-hover-button-revo {
  -webkit-transition: 0.5s !important;
  -o-transition: 0.5s !important;
  -ms-transition: 0.5s !important;
  -moz-transition: 0.5s !important;
  transition: 0.5s !important;
}
.custom-bg-bt-revolution:hover,
.simple-hover-button-revo:hover {
  background-position: right center;
  -webkit-transform: translateY(-5px) !important;
  -o-transform: translateY(-5px) !important;
  -ms-transform: translateY(-5px) !important;
  -moz-transform: translateY(-5px) !important;
  transform: translateY(-5px) !important;
}
.elementor-element.elementor-widget-button a.elementor-button,
.elementor-widget-button .elementor-button,
.elementor-menu-cart__footer-buttons .elementor-button--checkout,
.simple-hover-button-revo,
.comments-area .form-submit .submit,
.woocommerce button.button.alt,
.woocommerce-Reviews .form-submit .submit,
.woocommerce .checkout-button,
.woocommerce .wc-backward {
  position: relative;
  border-radius: 30px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
.elementor-element.elementor-widget-button a.elementor-button:hover,
.elementor-widget-button .elementor-button:hover,
.elementor-menu-cart__footer-buttons .elementor-button--checkout:hover,
.simple-hover-button-revo:hover,
.comments-area .form-submit .submit:hover,
.woocommerce button.button.alt:hover,
.woocommerce-Reviews .form-submit .submit:hover,
.woocommerce .checkout-button:hover,
.woocommerce .wc-backward:hover {
  background-position: right center;
  -webkit-transform: translateY(-5px);
  -o-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  transform: translateY(-5px);
}
.elementor-element.elementor-widget-button a.elementor-button:hover::before,
.elementor-widget-button .elementor-button:hover::before,
.elementor-menu-cart__footer-buttons .elementor-button--checkout:hover::before,
.simple-hover-button-revo:hover::before,
.comments-area .form-submit .submit:hover::before,
.woocommerce button.button.alt:hover::before,
.woocommerce-Reviews .form-submit .submit:hover::before,
.woocommerce .checkout-button:hover::before,
.woocommerce .wc-backward:hover::before {
  background-position: right center;
}
.elementor-element.elementor-widget-button a.elementor-button:hover::after,
.elementor-widget-button .elementor-button:hover::after,
.elementor-menu-cart__footer-buttons .elementor-button--checkout:hover::after,
.simple-hover-button-revo:hover::after,
.comments-area .form-submit .submit:hover::after,
.woocommerce button.button.alt:hover::after,
.woocommerce-Reviews .form-submit .submit:hover::after,
.woocommerce .checkout-button:hover::after,
.woocommerce .wc-backward:hover::after {
  background-position: right center;
  opacity: 0.4;
}
.elementor-element.elementor-widget-button a.elementor-button::after,
.elementor-widget-button .elementor-button::after,
.elementor-menu-cart__footer-buttons .elementor-button--checkout::after,
.simple-hover-button-revo::after,
.comments-area .form-submit .submit::after,
.woocommerce button.button.alt::after,
.woocommerce-Reviews .form-submit .submit::after,
.woocommerce .checkout-button::after,
.woocommerce .wc-backward::after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: -9px;
  height: 110%;
  left: 50%;
  width: 90%;
  transform: translateX(-50%);
  opacity: 0;
  background: inherit;
  border-radius: 50px;
  -webkit-filter: blur(10px);
  filter: blur(10px);
  transition: all 0.5s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.text-color-gradient.elementor-widget-button a.elementor-button:hover,
.text-color-gradient.elementor-widget-button a.elementor-button:hover {
  background-position: right center;
  transform: translateY(0);
}
.text-color-gradient.elementor-widget-button a.elementor-button::before,
.text-color-gradient.elementor-widget-button a.elementor-button::before {
  content: none;
}
.text-color-gradient.elementor-widget-button a.elementor-button::after,
.text-color-gradient.elementor-widget-button a.elementor-button::after {
  content: none;
}
.text-color-gradient.elementor-widget-button a.elementor-button,
.text-color-gradient.elementor-widget-button a.elementor-button i {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
  background-clip: text;
  -webkit-background-clip: text;
  text-fill-color: transparent;
  -webkit-text-fill-color: transparent;
}
.text-color-gradient.elementor-widget-button a.elementor-button:hover,
.text-color-gradient.elementor-widget-button a.elementor-button i:hover {
  box-shadow: none;
}
.text-color-gradient i:before {
  vertical-align: middle;
}
.custom-icon-play.text-color-gradient.elementor-widget-button a.elementor-button {
  -webkit-text-fill-color: initial;
  -webkit-background-clip: initial;
}
.custom-icon-play.text-color-gradient.elementor-widget-button a.elementor-button .elementor-button-icon {
  display: flex;
  margin-right: 0px;
}
.custom-icon-play.text-color-gradient.elementor-widget-button a.elementor-button i {
  -webkit-text-fill-color: initial;
  -webkit-background-clip: initial;
  background: #ffffff;
  mix-blend-mode: screen;
  color: black;
  font-size: 31px;
  padding-right: 8px;
}
.custom-icon-play.text-color-gradient.elementor-widget-button a.elementor-button .elementor-button-text {
  background: #ffffff;
  mix-blend-mode: screen;
  color: black;
}
.bg-white--text-blue.elementor-element.elementor-widget-button a.elementor-button,
.bg-white--text-blue.elementor-widget-button .elementor-button {
  background-image: none;
  background-color: #ffffff;
}
.bg-white--text-blue.elementor-element.elementor-widget-button a.elementor-button::after,
.bg-white--text-blue.elementor-widget-button .elementor-button::after {
  content: none;
}
button:focus {
  outline: none;
}
@media only screen and (min-width: 768px) {
  .elementor-popup-modal .dialog-close-button {
    display: none !important;
  }
}
.elementor-popup-modal .dialog-close-button .eicon-close::before {
  content: '\e82e' !important;
  font-family: 'linearicons-free' !important;
}
.elementor-popup-modal .elementor-section.elementor-section-height-full > .elementor-container .elementor-row {
  height: 100%;
}
.elementor-popup-modal .elementor-section.elementor-section-height-full > .elementor-container .elementor-row .close-popup-style {
  height: 100%;
}
.elementor-popup-modal .elementor-section.elementor-section-height-full > .elementor-container .elementor-row .close-popup-style .elementor-widget-container,
.elementor-popup-modal .elementor-section.elementor-section-height-full > .elementor-container .elementor-row .close-popup-style .elementor-image {
  height: 100%;
}
.elementor-popup-modal .elementor-section.elementor-section-height-full > .elementor-container .elementor-row .close-popup-style a {
  width: 100%;
  height: 100%;
}
.elementor-popup-modal .elementor-section.elementor-section-height-full > .elementor-container .elementor-row .close-popup-style a img {
  width: 100%;
  height: 100%;
}
.button-no-shadow.elementor-element.elementor-widget-button a.elementor-button::after,
.elementor-widget-button .elementor-button::after {
  content: none;
}
.elementor-menu-cart--items-indicator-bubble .elementor-menu-cart__toggle .elementor-button-icon[data-counter]:before {
  line-height: 1.6em !important;
}
.elementor-widget-button .elementor-button:before {
  content: none !important;
}
.elementor-button .elementor-align-icon-right {
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  align-items: center;
}
.jws_main_menu .jws_nav_menu .jws_nav li .sub-menu {
  margin: 0px 0px 0px -15px;
  width: 235px;
    background-color: #ffffff;
       padding: 20px 0px 15px 20px;
}
.jws_main_menu .jws_nav_menu .jws_nav li .sub-menu .menu-item-has-children:before {
  content: "+";
  position: absolute;
  right: 20px;
  top: 6px;
  font-size: 16px;
}
.jws_main_menu .jws_nav_menu .jws_nav li .sub-menu ul {
  margin-left: 0px;
  margin-top: 0;
}
.custom-header {
  width: 100%;
  z-index: 999;
  margin: 0;

  background: #ffffff;
  transition: 0.3s;
}
.custom-header > div {
    padding: 0;
}
.custom-header.py-25 {
  padding: 25px 15px;
}
.custom-header .jws_nav {
  margin: 0;
  list-style: none;
}
.custom-logo {
    line-height: 100px;
}
.custom-header .jws_main_menu .jws_nav_menu > ul > li > a {
  font-size: 16px;
  font-weight: 700;
  line-height: 100px;
      color: #1e1666;
}
.custom-cart .elementor-menu-cart__toggle .elementor-button {
  border: none;
  padding: 0;
}
.custom-cart i:before {
  content: "\eb5e" !important;
  font-size: 18px;
  font-family: 'icomoon' !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}
.jws_footer.footer-5 .elementor-icon-list-text::after {
  background: #c0bfce;
  height: 2px;
}
.jws_footer .elementor-icon-list-text::after {
  background: #753a88;
}
.jws_footer .elementor-icon-list-text {
  position: relative;
}
.jws_footer .elementor-icon-list-text::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 1px;
  right: 0px;
  bottom: 9px;
  -webkit-transition: 0.35s;
  -o-transition: 0.35s;
  -ms-transition: 0.35s;
  -moz-transition: 0.35s;
  transition: 0.35s;
}
.jws_footer .elementor-icon-list-text:hover::after {
  width: 100%;
  left: 0;
}
.custom-search {
  margin-right: 56px;
  margin-left: 31px;
  margin-top: 5px;
}
.custom-search.mr-40 {
  margin-right: 40px;
}
.custom-search svg {
  font-size: 18px;
}
.jet-sticky-section-sticky--stuck {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.09);
}
.jet-sticky-section-sticky--stuck .custom-search-home2 .elementor-icon {
  filter: initial;
}
.jet-sticky-section-sticky--stuck .jws_main_menu .jws_nav_menu .jws_nav li .sub-menu {
  margin: 10px 0px 0px -15px;
}
.jet-sticky-section-sticky--stuck .jws_main_menu .jws_nav_menu .jws_nav li .sub-menu-dropdown {
  padding-top: 11px;
}
.backToTop {
  position: fixed;
  bottom: 100px;
  right: 20px;
  width: 50px;
  height: 50px;
  line-height: 50px !important;
  opacity: 0;
  color: #000;
  text-align: center;
  z-index: 99;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  background-color: #ffffff;
  -webkit-transform: translateY(100%);
  -o-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -moz-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: 0.45s;
  -o-transition: 0.45s;
  -ms-transition: 0.45s;
  -moz-transition: 0.45s;
  transition: 0.45s;
  text-decoration: none !important;
}
.backToTop.totopshow {
  opacity: 1;
  -webkit-transform: translateY(0%);
  -o-transform: translateY(0%);
  -ms-transform: translateY(0%);
  -moz-transform: translateY(0%);
  transform: translateY(0%);
}
.header-position {
  position: absolute;
  background: transparent;
}
.header-position.jet-sticky-section-sticky--stuck {
  background: #ffffff;
}
.custom-search-home2 .elementor-icon {
  filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(70deg) brightness(1000%) contrast(105%);
}
.header-2 .custom-header .jws_main_menu .jws_nav_menu > ul > li > a {
  color: #ffffff;
}
.header-2 .custom-header .custom-cart .elementor-button-icon {
  color: #ffffff;
}
.header-2 .custom-header .jws-search-form .toggle-search {
  color: #ffffff;
}
.header-2 .custom-header .jws_account a span {
  color: #ffffff;
}
.header-2 .custom-header .jws-offcanvas-action-wrap .elementor-button-icon {
  color: #ffffff;
}
.positon-absolute {
  position: absolute;
}
.header-3 .jws_account .no_user .jws_text:hover {
  box-shadow: none;
}
.elementor-3252 .elementor-element.elementor-element-daee11f.jet-sticky-section-sticky--stuck.jet-sticky-transition-in,
.elementor-3252 .elementor-element.elementor-element-daee11f.jet-sticky-section-sticky--stuck.jet-sticky-transition-out {
  transition: 0.3s;
}
.elementor-widget-jws-logo img {
  width: 100%;
}
.woocommerce-breadcrumb {
  font-weight: 400;
  font-size: 14px;
}
.jws_footer.footer-1 .wpcf7-mail-sent-ok {
  color: #398f14;
}
rs-mask-wrap {
  overflow: initial !important;
}
.slide-icon-hover {
  cursor: pointer;
}
.slide-icon-hover::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 100%;
  z-index: -1;
  opacity: 0;
  -webkit-transition: 0.35s;
  -o-transition: 0.35s;
  -ms-transition: 0.35s;
  -moz-transition: 0.35s;
  transition: 0.35s;
  background-size: 200%;
}
.slide-icon-hover i {
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  -ms-transition: 0.2s;
  -moz-transition: 0.2s;
  transition: 0.2s;
}
.slide-icon-hover:hover::before {
  opacity: 1;
}
.elementor-element.elementor-widget-icon-box .elementor-icon-box-content .elementor-icon-box-title {
  font-weight: 700;
}
.font-slide-title {
  font-weight: 600;
}
.custum-circle-slide {
  font-weight: 400;
}
.custum-circle-slide i {
  vertical-align: middle;
  margin-left: 8px;
  margin-right: 8px;
}
.custum-circle-slide i::before {
  font-size: 6px;
  font-weight: 900;
}
.custum-circle-font i {
  font: normal normal normal 12px/1 FontAwesome;
}
.custom-image-carosel .swiper-slide {
  align-self: center;
  opacity: 0.5;
  -webkit-transition: 0.35s;
  -o-transition: 0.35s;
  -ms-transition: 0.35s;
  -moz-transition: 0.35s;
  transition: 0.35s;
}
.custom-image-carosel .swiper-slide:hover {
  opacity: 1;
}
.elementor-widget-image-carousel .swiper-slide {
  align-self: center;
}
.custom-image-carosel2 .swiper-container {
  padding: 10px;
}
.custom-image-carosel2 .swiper-slide {
  align-self: center;
  opacity: 0.5;
  padding: 35px 5px;
  -webkit-transition: 0.35s;
  -o-transition: 0.35s;
  -ms-transition: 0.35s;
  -moz-transition: 0.35s;
  transition: 0.35s;
}
.custom-image-carosel2 .swiper-slide .swiper-slide-inner {
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  background: transparent;
}
@media only screen and (max-width: 767px) {
  .custom-image-carosel2 .swiper-slide .swiper-slide-inner {
    padding: 0;
  }
}
.custom-image-carosel2 .swiper-slide img {
  z-index: 2;
}
.custom-image-carosel2 .swiper-slide:hover {
  opacity: 1;
  box-shadow: 0 0 20px rgba(40, 134, 172, 0.08);
  background: #ffffff;
}
.custom-img-slide-home2.elementor-widget-image-carousel .elementor-image-carousel-wrapper {
  margin-left: -15px;
  margin-right: -15px;
}
.custom-img-slide-home2.elementor-widget-image-carousel .swiper-slide {
  padding: 0 15px;
  text-align: center;
}
.custom-img-slide-home2.elementor-widget-image-carousel .elementor-image-carousel-caption {
  margin-top: 23px;
}
input[type="button"] {
  -webkit-appearance: button;
}
.swiper-pagination-bullet {
  background: none;
  color: transparent;
  position: relative;
  z-index: 1;
  height: 15px;
  width: 15px;
  border-radius: 100%;
  border: 1px solid transparent;
  opacity: 1;
}
.swiper-pagination-bullet::before {
  content: "";
  width: 5px;
  height: 5px;
  background: blue;
  position: absolute;
  border-radius: 100%;
  top: 4px;
  left: 4px;
}
.icon-box-title-top15 .elementor-icon-box-title {
  margin-top: 15px;
}
.hover-icon .elementor-icon {
  position: relative;
}
.hover-icon .elementor-icon::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 100%;
  opacity: 0;
  background-size: 200%;
  -webkit-transition: 0.35s;
  -o-transition: 0.35s;
  -ms-transition: 0.35s;
  -moz-transition: 0.35s;
  transition: 0.35s;
}
.hover-icon .elementor-icon:hover::before {
  opacity: 1;
}
.hover-icon .elementor-icon i {
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  -ms-transition: 0.2s;
  -moz-transition: 0.2s;
  transition: 0.2s;
}
.custom-chatbot .active .elementor-element-populated .elementor-widget-wrap {
  box-shadow: 5px 10px 20px 0px rgba(10, 53, 70, 0.1);
  background: #ffffff;
}
.custom-chatbot .active .elementor-element-populated .elementor-widget-wrap .icon-hover-active {
  opacity: 1;
  max-height: 100px;
}
.custom-chatbot .active .elementor-element-populated .elementor-widget-wrap .custom-chatbot-hover-img {
  opacity: 1;
  -webkit-transform: translateX(30px);
  -o-transform: translateX(30px);
  -ms-transform: translateX(30px);
  -moz-transform: translateX(30px);
  transform: translateX(30px);
}
.custom-chatbot .elementor-element-populated .elementor-widget-wrap {
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  border-radius: 10px;
}
.custom-chatbot .elementor-element-populated .elementor-widget-wrap .icon-hover-active {
  opacity: 0;
  max-height: 0;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
.custom-chatbot .elementor-element-populated .elementor-widget-wrap .icon-hover-active i {
  margin-top: 7px;
}
.custom-chatbot .elementor-element-populated .elementor-widget-wrap .custom-chatbot-hover-img {
  position: absolute;
  z-index: -1;
  bottom: 55px;
  right: 0px;
  opacity: 0;
  -webkit-transform: translateX(0px);
  -o-transform: translateX(0px);
  -ms-transform: translateX(0px);
  -moz-transform: translateX(0px);
  transform: translateX(0px);
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
.width-170 .elementor-widget-container {
  width: 170px;
}
.mt-7 .elementor-icon-list-icon {
  margin-top: 7px;
}
@media only screen and (max-width: 1200px) {
  .custom-chatbot .elementor-element-populated .elementor-widget-wrap:hover .custom-chatbot-hover-img {
    -webkit-transform: translateX(15px);
    -o-transform: translateX(15px);
    -ms-transform: translateX(15px);
    -moz-transform: translateX(15px);
    transform: translateX(15px);
  }
}
@media only screen and (max-width: 767px) {
  .wpcf7-form-control.wpcf7-submit {
    width: 100%;
  }
  .wpcf7-form label {
    width: 100%;
  }
  .custom-chatbot .elementor-element-populated .elementor-widget-wrap {
    box-shadow: 5px 10px 15px 0px rgba(0, 0, 0, 0.2);
    background: #ffffff;
    padding: 50px;
  }
  .custom-chatbot .elementor-element-populated .elementor-widget-wrap .icon-hover-active {
    opacity: 1;
    max-height: 100px;
  }
}
@media only screen and (max-width: 568px) {
  .custom-chatbot .elementor-element-populated .elementor-widget-wrap {
    padding: 50px 15px;
  }
}
.custom-color-count.elementor-widget-counter .elementor-counter-title {
  margin-top: 40px;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .custom-color-count.elementor-widget-counter .elementor-counter-title {
    margin-top: 16px;
  }
}
.custom-color-count .elementor-counter-number-prefix {
  display: none;
}
.custom-bt-home2 .elementor-widget-container {
  background-size: 200%;
}
.custom-bt-home2 .elementor-widget-container .elementor-button-text {
  background-size: 200%;
  background-clip: text;
  -webkit-background-clip: text;
  text-fill-color: transparent;
  -webkit-text-fill-color: transparent;
}
.custom-bt-home2 .elementor-widget-container .elementor-button-text.elementor-widget-button a.elementor-button:hover,
.custom-bt-home2 .elementor-widget-container .elementor-button-text.elementor-widget-button a.elementor-button:hover {
  background-position: right center;
  transform: translateY(0);
}
.custom-bt-home2 .elementor-widget-container .elementor-button-text.elementor-widget-button a.elementor-button::before,
.custom-bt-home2 .elementor-widget-container .elementor-button-text.elementor-widget-button a.elementor-button::before {
  content: none;
}
.custom-bt-home2 .elementor-widget-container .elementor-button-text.elementor-widget-button a.elementor-button::after,
.custom-bt-home2 .elementor-widget-container .elementor-button-text.elementor-widget-button a.elementor-button::after {
  content: none;
}
.custom-bt-home2 .elementor-widget-container .elementor-button-text.elementor-widget-button a.elementor-button,
.custom-bt-home2 .elementor-widget-container .elementor-button-text.elementor-widget-button a.elementor-button i {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
  background-clip: text;
  -webkit-background-clip: text;
  text-fill-color: transparent;
  -webkit-text-fill-color: transparent;
}
.custom-bt-home2 .elementor-widget-container .elementor-button-text.elementor-widget-button a.elementor-button:hover,
.custom-bt-home2 .elementor-widget-container .elementor-button-text.elementor-widget-button a.elementor-button i:hover {
  box-shadow: none;
}
.custom-bt-home2 .elementor-widget-container .elementor-button-text i:before {
  vertical-align: middle;
}
.custom-bt-home2.elementor-element.elementor-widget-button a.elementor-button,
.custom-bt-home2 .elementor-widget-button .elementor-button {
  background: #ffffff;
}
.elementor-widget-accordion .elementor-accordion .elementor-tab-title i {
  font-size: 10px;
}
.elementor-widget-accordion .elementor-accordion .elementor-tab-title:hover a,
.elementor-widget-accordion .elementor-accordion .elementor-tab-title:hover i {
  -webkit-transition: 0.7s;
  -o-transition: 0.7s;
  -ms-transition: 0.7s;
  -moz-transition: 0.7s;
  transition: 0.7s;
}
.elementor-widget-accordion .elementor-accordion .elementor-tab-title.elementor-active a,
.elementor-widget-accordion .elementor-accordion .elementor-tab-title.elementor-active i {
  -webkit-transition: 0.7s;
  -o-transition: 0.7s;
  -ms-transition: 0.7s;
  -moz-transition: 0.7s;
  transition: 0.7s;
}
.icon-gradient-main i {
  color: black;
  background-size: 200%;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  overflow: hidden;
}
.icon-gradient-main i::before {
  background: #ffffff;
  mix-blend-mode: screen;
  margin: 0;
}
.icon-gradient-main i:hover {
  background-position: right;
}
@media only screen and (max-width: 767px) {
  .newsletter-home2-footer.newsletter-home2 .wpcf7-form button {
    position: absolute;
    top: 4px;
    right: 5px;
    padding: 6px 20px !important;
    width: 140px;
    line-height: 28px !important;
    height: auto;
  }
}
.newsletter-home2 .wpcf7-form ::-webkit-input-placeholder {
  /* Edge */
  color: #eeeeee;
}
.newsletter-home2 .wpcf7-form :-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #eeeeee;
}
.newsletter-home2 .wpcf7-form ::placeholder {
  color: #eeeeee;
}
.newsletter-home2 .wpcf7-form label {
  width: 100%;
  margin-right: 0;
}
.newsletter-home2 .wpcf7-form label input {
  padding-right: 150px;
  background: #0e112f;
  border: none;
}
@media only screen and (max-width: 767px) {
  .newsletter-home2 .wpcf7-form label input {
    padding-right: 20px;
  }
}
.newsletter-home2 .wpcf7-form button:hover {
  transform: translateY(0);
}
.newsletter-home2 .wpcf7-form button::after {
  content: none;
}
@media only screen and (min-width: 768px) {
  .newsletter-home2 .wpcf7-form button {
    position: absolute;
    top: 4px;
    right: 5px;
    padding: 6px 20px !important;
    width: 140px;
    line-height: 28px !important;
    height: auto;
  }
}
.newsletter-home2 .wpcf7-form p {
  margin-bottom: 0px;
  position: relative;
}
.newsletter-home2 .wpcf7-form .wpcf7-validation-errors {
  margin-bottom: 0;
}
@media only screen and (max-width: 413px) {
  .newsletter-home2 .wpcf7-form p {
    height: auto;
    text-align: center;
  }
  .newsletter-home2 button .wpcf7-form button {
    position: initial;
    margin-top: 10px;
  }
}
.custom-bg-bt-revolution {
  filter: none !important;
}
.custom-bg-bt-revolution:hover {
  background-position: right;
  box-shadow: 15px 8px 50px rgba(13, 56, 53, 0.2);
}
.icon-font-9 i {
  font-size: 9px !important;
  vertical-align: middle;
}
.icon-font-9 i::before {
  margin-right: 5px;
}
.icon-font-9:hover {
  box-shadow: 15px 8px 50px rgba(13, 56, 53, 0.2);
}
.icon-galley svg {
  filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(70deg) brightness(1000%) contrast(105%);
}
.custom-galley-home3 .swiper-slide-image {
  width: 80px;
  height: 80px;
  border-radius: 100%;
  opacity: 0;
}
.color-iconlist-home3 i {
  background-clip: text;
  -webkit-background-clip: text;
  text-fill-color: transparent;
  -webkit-text-fill-color: transparent;
}
.color-iconlist-home3 i.elementor-widget-button a.elementor-button:hover,
.color-iconlist-home3 i.elementor-widget-button a.elementor-button:hover {
  background-position: right center;
  transform: translateY(0);
}
.color-iconlist-home3 i.elementor-widget-button a.elementor-button::before,
.color-iconlist-home3 i.elementor-widget-button a.elementor-button::before {
  content: none;
}
.color-iconlist-home3 i.elementor-widget-button a.elementor-button::after,
.color-iconlist-home3 i.elementor-widget-button a.elementor-button::after {
  content: none;
}
.color-iconlist-home3 i.elementor-widget-button a.elementor-button,
.color-iconlist-home3 i.elementor-widget-button a.elementor-button i {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
  background-clip: text;
  -webkit-background-clip: text;
  text-fill-color: transparent;
  -webkit-text-fill-color: transparent;
}
.color-iconlist-home3 i.elementor-widget-button a.elementor-button:hover,
.color-iconlist-home3 i.elementor-widget-button a.elementor-button i:hover {
  box-shadow: none;
}
.color-iconlist-home3 i i:before {
  vertical-align: middle;
}
.slide-studies {
  margin-left: -15px;
  margin-right: -15px;
}
.slide-studies .slick-slide {
  padding-left: 15px;
  padding-right: 15px;
}
.slide-studies .slick-slide .elementor-slide-your_name {
  text-align: center;
  font-size: 16px;
  line-height: 48px;
  font-weight: bold;
  margin-top: 13px;
}
.slide-studies .slick-slide img {
  height: 230px;
  margin: auto;
}
.elementor-element.elementor-widget-progress:hover .elementor-progress-bar {
  background-position: right;
}
.elementor-element.elementor-widget-progress .elementor-progress-wrapper {
  border-radius: 4px;
}
.elementor-element.elementor-widget-progress .elementor-progress-wrapper .elementor-progress-bar {
  background-size: 200%;
  height: 8px;
  border-radius: 4px;
  -webkit-transition: 1.4s;
  -o-transition: 1.4s;
  -ms-transition: 1.4s;
  -moz-transition: 1.4s;
  transition: 1.4s;
}
.elementor-element.elementor-widget-progress .elementor-progress-wrapper .elementor-progress-bar .elementor-progress-percentage {
  position: absolute;
  right: 0;
  top: -39px;
}
.custom-hover-client:hover .elementor-background-overlay {
  height: 100%;
}
.custom-hover-client:hover p,
.custom-hover-client:hover h2 {
  opacity: 1;
  -webkit-transition: 0.5s 0.3s;
  -o-transition: 0.5s 0.3s;
  -ms-transition: 0.5s 0.3s;
  -moz-transition: 0.5s 0.3s;
  transition: 0.5s 0.3s;
}
.custom-hover-client:hover .icon-galley {
  opacity: 1;
  -webkit-transition: 0.5s 0.1s;
  -o-transition: 0.5s 0.1s;
  -ms-transition: 0.5s 0.1s;
  -moz-transition: 0.5s 0.1s;
  transition: 0.5s 0.1s;
}
.custom-hover-client .elementor-background-overlay {
  height: 0%;
  -webkit-transition: 0.5s !important;
  -o-transition: 0.5s !important;
  -ms-transition: 0.5s !important;
  -moz-transition: 0.5s !important;
  transition: 0.5s !important;
}
.custom-hover-client p,
.custom-hover-client h2 {
  opacity: 0;
  -webkit-transition: 0.2s 0.05s;
  -o-transition: 0.2s 0.05s;
  -ms-transition: 0.2s 0.05s;
  -moz-transition: 0.2s 0.05s;
  transition: 0.2s 0.05s;
}
.custom-hover-client .icon-galley {
  opacity: 0;
  -webkit-transition: 0.2s 0.2s;
  -o-transition: 0.2s 0.2s;
  -ms-transition: 0.2s 0.2s;
  -moz-transition: 0.2s 0.2s;
  transition: 0.2s 0.2s;
}
.custom-bg-video.elementor-widget-video {
  width: 150px !important;
  height: 150px;
}
.elementor-widget-video img {
  opacity: 0;
}
.elementor-widget-video .elementor-custom-embed-play {
  width: 70px;
  height: 70px;
  border-radius: 100%;
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.elementor-widget-video .elementor-custom-embed-play:hover::after {
  background-position: right;
}
.elementor-widget-video .elementor-custom-embed-play::before {
  position: absolute;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  animation: pulse-border 1.5s ease-out infinite;
  -webkit-animation: pulse-border 1.5s ease-out infinite;
  content: "";
  background: #ffffff;
}
.elementor-widget-video .elementor-custom-embed-play::after {
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  z-index: 1;
  border-radius: 100%;
  background-size: 200%;
  -webkit-transition: 0.7s;
  -o-transition: 0.7s;
  -ms-transition: 0.7s;
  -moz-transition: 0.7s;
  transition: 0.7s;
}
.elementor-widget-video .elementor-custom-embed-play i {
  text-shadow: none;
  font-size: 16px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  opacity: 1;
  position: relative;
  z-index: 2;
}
.elementor-widget-video .elementor-custom-embed-play i::before {
  content: "\f04b";
}
.home4-text-hover.elementor-widget-heading.elementor-widget-heading h2.elementor-heading-title {
  cursor: pointer;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.bg-text-popular .elementor-widget-container {
  background-size: 200%;
}
.bt-ggradient-none.elementor-element.elementor-widget-button a.elementor-button,
.bt-ggradient-none .elementor-widget-button .elementor-button {
  background-image: none;
}
.bt-ggradient-none.elementor-element.elementor-widget-button a.elementor-button::after,
.bt-ggradient-none .elementor-widget-button .elementor-button::after {
  content: none;
}
.bt-ggradient-none.elementor-element.elementor-widget-button a.elementor-button::before,
.bt-ggradient-none .elementor-widget-button .elementor-button::before {
  content: none;
}
.custom-widget-tabs2 .elementor-active {
  font-weight: 700 !important;
}
.custom-border-icon-box .elementor-icon {
  border: 15px solid #d5ebff;
}
.custom-newsletter-home5 form {
  max-width: 960px;
  margin: auto;
}
.custom-newsletter-home5 form label {
  margin-right: 0;
  padding-right: 10px;
}
.custom-newsletter-home5 form .label-first {
  width: 33%;
}
@media only screen and (max-width: 767px) {
  .custom-newsletter-home5 form .label-first {
    width: 100%;
    padding: 0;
  }
}
.custom-newsletter-home5 form .label-last {
  width: 45%;
}
@media only screen and (max-width: 767px) {
  .custom-newsletter-home5 form .label-last {
    width: 100%;
    padding: 0;
  }
}
.custom-newsletter-home5 form .label-last input {
  text-align: center;
}
.custom-newsletter-home5 form button {
  width: 22%;
  background-image: none;
  border: 2px solid #ffffff;
  background: transparent;
  padding: 10px;
}
.custom-newsletter-home5 form button:hover {
  transform: translateY(0);
}
@media only screen and (max-width: 767px) {
  .custom-newsletter-home5 form button {
    width: 100%;
  }
}
.custom-newsletter-home5 form div.wpcf7-validation-errors {
  color: #fff;
}
.custom-newsletter-home5 .wpcf7-form input:not([type="submit"]) {
  border: none;
}
.custom-img-home3 img {
  height: 580px;
  object-fit: cover;
}
.custom-bg-video-home3 {
  margin-left: -40px;
}
.custom-bg-video-home3.elementor-widget-video .elementor-custom-embed-play::before {
  background: rgba(204, 43, 94, 0.3);
}
.custom-mobiapp-tab.custom-pricing-tab .elementor-tabs .elementor-tabs-wrapper {
  box-shadow: none;
  background: #edf5ff;
  margin-left: 0px;
}
.custom-mobiapp-tab.custom-pricing-tab .elementor-tabs .elementor-tabs-wrapper .elementor-tab-title {
  padding: 0px 21px;
}
.custom-border-button1 .custom-border-button.elementor-element.elementor-widget-button a.elementor-button:hover,
.custom-border-button1 .custom-border-button .elementor-widget-button .elementor-button:hover {
  background-image: none;
}
.slide-line-height h2 {
  line-height: 60px !important;
}
.slide-line-height p {
  line-height: 26px !important;
}
.custom-font-icon i {
  font-size: 26px;
}
.custom-font-icon .elementor-button-text {
  align-items: center;
}
.custom-email-home6 form {
  max-width: 715px;
  margin: auto;
  position: relative;
}
.custom-email-home6 form label {
  width: 100%;
  margin-right: 0px;
}
.custom-email-home6 form label input.wpcf7-text {
  height: 60px;
  border: none;
  box-shadow: 0 0 20px rgba(30, 22, 102, 0.05);
}
.custom-email-home6 form button::after {
  content: none;
}
.custom-email-home6 form button:hover {
  transform: translateY(0);
}
@media only screen and (min-width: 768px) {
  .custom-email-home6 form button {
    position: absolute;
    top: 5px;
    right: 8px;
    width: 185px;
  }
}
.newsletter-home2-footer.newsletter-home2 .wpcf7-form label::before {
  content: "\f1d8";
  font-weight: 900;
  color: #fff;
  position: absolute;
  font-family: "Font Awesome 5 Free";
  right: 8px;
  top: 5px;
  z-index: 1;
  width: 70px;
  height: 40px;
  text-align: center;
  padding-top: 2px;
  font-size: 14px;
  border-radius: 100px;
  background-size: 200%;
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.newsletter-home2-footer.newsletter-home2 .wpcf7-form button {
  width: 70px;
  height: 40px;
}
.newsletter-home2-footer.newsletter-home2 .wpcf7-form button .wpcf7-submit {
  color: transparent;
  font-size: 0;
  z-index: 2;
  background: none;
}
.custom-icon-footer1.custom-icon-footer3.custom-icon-footer4.elementor-widget .elementor-icon-list-icon i {
  background: #171b4c;
}
.custom-icon-footer1.custom-icon-footer3.custom-icon-footer4.elementor-widget .elementor-icon-list-icon i:hover {
  background-image: none;
}
.icon-box-color-white .elementor-icon-box-content {
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  flex-direction: column-reverse;
}
.icon-box-color-white .elementor-icon-box-content .elementor-icon-box-description {
  margin-top: -5px;
}
.post-footer .section-blog .elementor-post .m-15 {
  margin: 0;
  margin-left: 15px;
}
.post-footer .section-blog .elementor-post .post-title-link .post-title {
  font-size: 16px;
  font-weight: 400;
  line-height: 18px;
  display: block;
  margin-bottom: 0;

}
.post-footer time.post-time span {
  font-size: 14px;
  line-height: 22px;
  color: #6699ff;
}
.post-footer .section-blog.post-archive .elementor-post {
  padding: 7px 0;
}
.post-footer .section-blog .elementor-post .post-info {
  margin-top: 0px;
}
.post-footer .m-15:before {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  background: #ffffff;
  left: 15px;
  top: 13px;
}
.icon-footer-home2.elementor-widget .elementor-icon-list-item a {
  width: 40px;
  height: 40px;
  border-radius: 100%;
}
.icon-footer-home2.elementor-widget .elementor-icon-list-item a span i {
  width: 40px;
  height: 40px;
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  border-radius: 100%;
  font: normal normal normal 12px/1 FontAwesome;
  border: 1px solid #959595;
  -webkit-transition: 0.35s;
  -o-transition: 0.35s;
  -ms-transition: 0.35s;
  -moz-transition: 0.35s;
  transition: 0.35s;
}
.icon-footer-home2.elementor-widget .elementor-icon-list-item a:hover i {
  background-size: 200%;
  border: none;
}
.custom-icon-footer3.custom-icon-footer4.elementor-widget .elementor-icon-list-icon i {
  background: #d1e2f5;
  font-size: 12px;
}
.custom-icon-footer3.custom-icon-footer4.elementor-widget .elementor-icon-list-icon i:hover {
  background-image: linear-gradient(to right, #fa897d 0%, #fe5f88 51%, #fa897d 100%);
}
.custom-icon-footer3.elementor-widget .elementor-icon-list-icon i {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-size: 200%;
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  -ms-transition: 0.2s;
  -moz-transition: 0.2s;
  transition: 0.2s;
}
.custom-icon-footer3.elementor-widget .elementor-icon-list-icon i:hover {
  background-image: linear-gradient(to right, #753a88 0%, #753a88 51%, #753a88 100%);
}
.width-200 img {
  width: 200px;
}
.custom-height-video .elementor-widget-container {
  overflow: initial;
}
.custom-height-video .elementor-widget-container .elementor-custom-embed-image-overlay {
  height: 440px;
}
.video-demo-product .elementor-fit-aspect-ratio {
  padding-bottom: 0;
  height: 350px;
}
.video-demo-product .elementor-video-iframe {
  width: 630px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  transform: translateX(-50%);
}
.bg-text-popular1 .elementor-widget-container {
  background-size: 200%;
}
.team-archive {
  text-align: center;
}
.team-archive .slide-content-review {
  padding-top: 15px;
  padding-bottom: 15px;
}
.team-archive i {
  font: normal normal normal 14px/1 FontAwesome;
}
.team-archive .elementor-slide-your_phone i,
.team-archive .elementor-slide-your_email i {
  font-family: "Font Awesome 5 Free";
}
.team-archive .elementor-slide-your_phone i {
  font-weight: 900;
}
.team-archive .position-relative {
  position: relative;
}
.team-archive .position-relative img {
  border-radius: 5px;
}
.team-archive .position-relative:hover .bg-team::before {
  height: 100%;
}
.team-archive .position-relative:hover .bg-team .icon-list,
.team-archive .position-relative:hover .bg-team .elementor-slide-your_phone,
.team-archive .position-relative:hover .bg-team .elementor-slide-your_email {
  opacity: 1;
}
.team-archive .position-relative .bg-team {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.team-archive .position-relative .bg-team::before {
  content: "";
  position: absolute;
  top: 0;
  z-index: 1;
  width: 100%;
  border-radius: 5px;
  height: 0%;
  background: rgba(30, 22, 102, 0.8);
  -webkit-transition: 0.35s;
  -o-transition: 0.35s;
  -ms-transition: 0.35s;
  -moz-transition: 0.35s;
  transition: 0.35s;
}
.team-archive .position-relative .bg-team a,
.team-archive .position-relative .bg-team div {
  position: relative;
  z-index: 2;
}
.team-archive .position-relative .bg-team .icon-list,
.team-archive .position-relative .bg-team .elementor-slide-your_phone,
.team-archive .position-relative .bg-team .elementor-slide-your_email {
  opacity: 0;
  -webkit-transition: 0.3s 0.15s;
  -o-transition: 0.3s 0.15s;
  -ms-transition: 0.3s 0.15s;
  -moz-transition: 0.3s 0.15s;
  transition: 0.3s 0.15s;
}
.team-archive .position-relative .bg-team .elementor-slide-your_phone {
  margin-top: 17px;
  margin-bottom: 3px;
}
.team-archive .position-relative .bg-team .elementor-slide-your_phone,
.team-archive .position-relative .bg-team .elementor-slide-your_email {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
}
.team-archive .position-relative .bg-team .elementor-slide-your_phone i,
.team-archive .position-relative .bg-team .elementor-slide-your_email i {
  font-size: 12px;
}
.team-archive .position-relative .bg-team .icon-list {
  margin-top: 58px;
}
.team-archive .position-relative .bg-team .icon-list i {
  height: 30px;
  width: 30px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 100%;
  background: #1e1666;
  color: #ffffff;
  transition: 0.3s;
  margin: 0 3px;
}
.team-archive .position-relative .bg-team .icon-list i:hover {
  background: #fe6187;
  color: #3cc6dd;
}
.team-archive .elementor-slide-your_name {
  font-weight: 600;
  line-height: 24px;
  margin-top: 18px;
}
.team-archive .elementor-slide-tag {
  font-size: 14px;
  line-height: 24px;
}
.hover-bg-contact .elementor-column-wrap:hover::before {
  width: 100%;
  left: 0;
}
.hover-bg-contact .elementor-column-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0%;
  height: 4px;
  border-radius: 5px 5px 0px 0;
  -webkit-transition: 0.35s;
  -o-transition: 0.35s;
  -ms-transition: 0.35s;
  -moz-transition: 0.35s;
  transition: 0.35s;
  background-size: 200%;
}
.map iframe {
  border-radius: 10px;
}
.contact-us .wpcf7-form label {
  width: 100%;
  margin: 0;
}
.contact-us .wpcf7-form label input {
  background: #f4f8ff;
  border: none;
  padding: 0 25px;
  font-size: 16px !important;
}
.contact-us .wpcf7-form textarea {
  width: 100%;
  height: 150px;
  border-radius: 25px;
  background: #f4f8ff;
  border: none;
  padding: 10px 25px;
  font-size: 16px !important;
  outline: none;
}
.contact-us .wpcf7-form button {
  width: 100%;
  margin-top: 7px;
}
.contact-us .wpcf7-form p {
  width: 100%;
}
.elementor-widget-countdown .elementor-widget-container .elementor-countdown-item {
  background: none;
  text-align: left;
}
.elementor-widget-countdown .elementor-widget-container .elementor-countdown-item .elementor-countdown-digits {
  font-size: 36px;
  line-height: 30px;
}
.elementor-widget-countdown .elementor-widget-container .elementor-countdown-item .elementor-countdown-label {
  font-size: 16px;
  line-height: 30px;
  font-weight: 600;
}
.custom-coppyright p {
  margin-bottom: 0;
}
.custom-coppyright p a {
  font-weight: 600;
}
.navigation .nxl-pagination .nxl_pagi_inner,
.woocommerce-pagination .nxl-pagination .nxl_pagi_inner {
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  justify-content: flex-end;
  margin-top: 29px;
}
.navigation .nxl-pagination .nxl_pagi_inner ul,
.woocommerce-pagination .nxl-pagination .nxl_pagi_inner ul {
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  padding: 0;
  list-style: none;
}
.navigation .nxl-pagination .nxl_pagi_inner ul li,
.woocommerce-pagination .nxl-pagination .nxl_pagi_inner ul li {
  margin: 0 10px;
  width: 50px;
  height: 50px;

  border-radius: 100%;
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.navigation .nxl-pagination .nxl_pagi_inner ul li .item,
.woocommerce-pagination .nxl-pagination .nxl_pagi_inner ul li .item {
  font-size: 16px;
  line-height: 24px;
}
.navigation .nxl-pagination .nxl_pagi_inner ul li .item.current,
.woocommerce-pagination .nxl-pagination .nxl_pagi_inner ul li .item.current {
  background-size: 200%;
  height: 100%;
  width: 100%;
  border-radius: 100%;
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
      color: #ffffff;
    background-size: 200%;
     background-image: linear-gradient(to right,#cc2b5e 0%,#753a88 51%,#cc2b5e 100%);
}
.navigation .nxl-pagination .nxl_pagi_inner ul li a,
.woocommerce-pagination .nxl-pagination .nxl_pagi_inner ul li a {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .navigation .nxl-pagination .nxl_pagi_inner ul li,
  .woocommerce-pagination .nxl-pagination .nxl_pagi_inner ul li {
    margin: 0 5px;
    width: 40px;
    height: 40px;
  }
}
.navigation .nxl-pagination .nxl_pagi_inner .next,
.woocommerce-pagination .nxl-pagination .nxl_pagi_inner .next,
.navigation .nxl-pagination .nxl_pagi_inner .prev,
.woocommerce-pagination .nxl-pagination .nxl_pagi_inner .prev {
  margin: 0 10px;
  height: 50px;
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  justify-content: center;
  flex-direction: column;
  font-size: 16px;
  line-height: 24px;
}
.woocommerce-pagination {
  margin-top: 23px;
}
.woocommerce-pagination .nxl-pagination .nxl_pagi_inner {
  justify-content: flex-start;
  margin-left: -10px;
  margin-right: -10px;
}
.woocommerce-pagination .nxl-pagination .nxl_pagi_inner ul {
  border: none;
}
.woocommerce-pagination .nxl-pagination .nxl_pagi_inner ul li {
  border: none;
}
.default-blog-listing {
  padding-top: 54px;
}
.default-blog-listing .nxl_sidebar {
  padding: 28px 0px 0px 30px;
}
.blog-no-siderbar .section-blog .elementor-post .post-title-link .post-title {
  font-size: 18px;
}
.blog-no-siderbar .section-blog .elementor-post .post-info {
  margin-top: 0px;
}
.blog-no-siderbar .section-blog .elementor-post {
  padding: 0;
}
.section-blog.layout-post-archive2.section-blog.post-archive .elementor-post {
  padding: 27px 0;
}
.section-blog.layout-post-archive2 .elementor-post {
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
}
@media only screen and (max-width: 767px) {
  .section-blog.layout-post-archive2 .elementor-post {
    display: block;
  }
}
.section-blog.layout-post-archive2 .elementor-post .blog-img-info {
  position: relative;
  -ms-flex: 0 0 calc(50% - 20px);
  flex: 0 0 calc(50% - 20px);
  max-width: calc(50% - 20px);
}
@media only screen and (max-width: 767px) {
  .section-blog.layout-post-archive2 .elementor-post .blog-img-info {
    width: 100%;
    max-width: 100%;
  }
}
.section-blog.layout-post-archive2 .elementor-post .blog-img-info .post-thumbnail-link:before {
  content: "";
  position: absolute;
  background-image: -moz-linear-gradient(90deg, rgba(30, 22, 102, 0.8) 0%, rgba(46, 60, 127, 0.4) 18%, rgba(117, 231, 239, 0) 100%);
  background-image: -webkit-linear-gradient(90deg, rgba(30, 22, 102, 0.8) 0%, rgba(46, 60, 127, 0.4) 18%, rgba(117, 231, 239, 0) 100%);
  background-image: -ms-linear-gradient(90deg, rgba(30, 22, 102, 0.8) 0%, rgba(46, 60, 127, 0.4) 18%, rgba(117, 231, 239, 0) 100%);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
}
.section-blog.layout-post-archive2 .elementor-post:hover .post-thumbnail-link:before {
  opacity: 1;
}
.section-blog.layout-post-archive2 .elementor-post:hover .post-info {
  opacity: 1;
}
.section-blog.layout-post-archive2 .elementor-post .post-info {
    margin-top: -66px;
  margin-left: 20px;
  position: absolute;
  z-index: 1;
  opacity: 1;
}
.section-blog.layout-post-archive2 .elementor-post .post-info .color-layout-hover {
  color: #fff;
}
@media only screen and (min-width: 768px) {
  .section-blog.layout-post-archive2 .elementor-post .post-info {
    opacity: 0;
    transition: 0.3s;
  }
}
.section-blog.layout-post-archive2 .elementor-post .content-blog,
.section-blog.layout-post-archive2 .elementor-post .m-15 {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
  margin: 0 0 0 30px;
  padding-right: 30px;
  align-self: center;
}
.section-blog.layout-post-archive2.not-thumbnail .elementor-post .content-blog {
    padding: 0;
    margin: 0;
}
@media only screen and (max-width: 767px) {
  .section-blog.layout-post-archive2 .elementor-post .content-blog,
  .section-blog.layout-post-archive2 .elementor-post .m-15 {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding-top: 20px;
  }
}
.section-blog.layout-post-archive2 .elementor-post .post-title-link .post-title {
  font-size: 24px;
}
.section-blog.layout-post-archive2 .elementor-post .post-decription {
  margin-top: 20px;
  margin-bottom: -20px;
}
input[type="search"]::-webkit-search-cancel-button {
  display: none;
}
.elementor-search-form__input,
.elementor-search-form__input[placeholder="Search"] {
  font-size: 16px !important;
  font-weight: 600 !important;
}
.widget-title,
.elementor-widget-wp-widget-woocommerce_product_categories .elementor-widget-container h5,
.elementor-widget-wp-widget-woocommerce_price_filter .elementor-widget-container h5,
.elementor-widget-wp-widget-categories .elementor-widget-container h5,
.elementor-widget-wp-widget-recent-posts .elementor-widget-container h5,
.elementor-widget-wp-widget-tag_cloud .elementor-widget-container h5,
.elementor-widget-Jws-product-featured .elementor-widget-container h5,
.elementor-widget-woocommerce-product-related .elementor-widget-container h5 {
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0.3px;margin-bottom: 20px;
}
.widget {
  margin-bottom: 38px;
}
.widget_search .search-form {
  position: relative;
}
.widget_search .search-form .search-field {
  width: 100%;
  border: none;
  background: #f0f6fe;
  padding: 11px 20px;
  font-weight: 600;
  font-size: 16px;
  outline: none;
}
.widget_search .search-form .search-submit {
  position: absolute;
  right: 4px;
  top: 10px;
  border: none;
  background: none;
  font-size: 16px;
  outline: none;
}
.widget_search .search-form .search-submit span::before {
  content: "\eb4b";
  font-family: "icomoon";
}
.widget_categories ul, .widget_archive ul , .widget_pages ul , .widget_meta ul ,.widget_recent_comments ul ,.widget_rss ul ,
.elementor-widget-wp-widget-woocommerce_product_categories .elementor-widget-container ul,
.elementor-widget-wp-widget-categories .elementor-widget-container ul {
  list-style: none;
margin: 0;
  position: relative;    padding: 0; //padding-left: 25px;
}
.widget_categories > ul, .widget_archive > ul , .widget_pages > ul , .widget_meta > ul ,.widget_recent_comments > ul ,.widget_rss > ul ,
.elementor-widget-wp-widget-woocommerce_product_categories .elementor-widget-container > ul,
.elementor-widget-wp-widget-categories .elementor-widget-container > ul { 
       margin-bottom: -10px; 
}
.widget_rss ul {
    padding: 0;
}
.widget_rss ul a:before {
    display: none;
}
.widget_categories ul.children, .widget_archive ul.children, .widget_pages ul.children, .widget_meta ul.children,.widget_recent_comments ul.children,.widget_rss ul.children,
.elementor-widget-wp-widget-woocommerce_product_categories .elementor-widget-container ul.children,
.elementor-widget-wp-widget-categories .elementor-widget-container ul.children {
  padding-left: 20px;
  margin-top: 0;
}
.widget_categories ul.children li,.widget_archive ul.children li, .widget_pages ul.children li, .widget_meta ul.children li,.widget_recent_comments ul.children li,.widget_rss ul.children li,
.elementor-widget-wp-widget-woocommerce_product_categories .elementor-widget-container ul.children li,
.elementor-widget-wp-widget-categories .elementor-widget-container ul.children li {
  line-height: 28px;
}
.widget_categories ul li, .widget_archive ul li, .widget_pages ul li, .widget_meta ul li,.widget_recent_comments ul li,.widget_rss ul li,
.elementor-widget-wp-widget-woocommerce_product_categories .elementor-widget-container ul li,
.elementor-widget-wp-widget-categories .elementor-widget-container ul li {
  font-size: 16px;
  line-height: 36px;
  font-weight: 400;
  letter-spacing: 0.3px;
  margin-bottom: 0;
}

.widget:not(.widget_nav_menu) ul li:not(:last-child) {
  margin-bottom: 6px;  
}
    

.widget_categories ul li a,.widget_archive ul li a, .widget_pages ul li a,.widget_meta ul li a,.widget_recent_comments ul li a,.widget_rss ul li a,
.elementor-widget-wp-widget-woocommerce_product_categories .elementor-widget-container ul li a,
.elementor-widget-wp-widget-categories .elementor-widget-container ul li a {
  font-size: 16px;
  line-height: 36px;
  font-weight: 400;
  letter-spacing: 0.3px;
      color: #1e1666;
      margin-bottom: 0;
}

.widget_categories ul li a:hover,.widget_archive ul li a:hover,.widget_pages ul li a:hover,.widget_meta ul li a:hover,.widget_recent_comments ul li a:hover,.widget_rss ul li a:hover,
.elementor-widget-wp-widget-woocommerce_product_categories .elementor-widget-container ul li a:hover,
.elementor-widget-wp-widget-categories .elementor-widget-container ul li a:hover {
  text-decoration: none;
}
.widget_recent_entries ul,
.elementor-widget-wp-widget-recent-posts ul {
  list-style: none;
  padding: 0;
  margin-top: 15px;
  margin: 0;
  margin-bottom: -10px;
}
.widget_categories ul a:before, .widget_archive ul a:before, .widget_pages ul a:before, .widget_meta ul a:before,.widget_recent_comments ul a:before,.widget_rss ul a:before,
.elementor-widget-wp-widget-woocommerce_product_categories .elementor-widget-container ul a:before,
.elementor-widget-wp-widget-categories .elementor-widget-container ul  a:before{
 //content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 14px;
    position: absolute;
    left: 0;   
}
.widget_recent_entries ul li,
.elementor-widget-wp-widget-recent-posts ul li {
  padding: 8px 0;
  border-bottom: 1px solid #f4f4f4;   
   margin: 0;
    padding: 0;
}
.widget_recent_entries ul li:last-child,
.elementor-widget-wp-widget-recent-posts ul li:last-child {
  border: none;
}


.widget_tag_cloud .tagcloud,
.elementor-widget-wp-widget-tag_cloud .tagcloud {
  margin-top: 34px;
}
.widget_tag_cloud .tagcloud a,
.elementor-widget-wp-widget-tag_cloud .tagcloud a {
  font-size: 13px !important;
  padding: 10px 25px;
  border-radius: 30px;
  margin-right: 14px;
  margin-bottom: 14px;
  box-shadow: 0px 5px 13.5px 1.5px rgba(28, 31, 28, 0.05);
  display: inline-block;
  -webkit-transition: 0.35s;
  -o-transition: 0.35s;
  -ms-transition: 0.35s;
  -moz-transition: 0.35s;
  transition: 0.35s;
}
.widget_tag_cloud .tagcloud a:hover,
.elementor-widget-wp-widget-tag_cloud .tagcloud a:hover {
  background: rgba(198, 221, 254, 0.5);
  text-decoration: none;
}
.email-blog p {
  margin-bottom: 10px;
  width: 100%;
}
.tag-post .elementor-post-info__item-prefix {
  font-weight: 700;
  margin-right: 10px;
}
.tag-post .elementor-post-info__terms-list {
  padding: 3px 25px;
  border-radius: 30px;
  margin: 0 8px;
  display: inline-block;
  -webkit-transition: 0.35s;
  -o-transition: 0.35s;
  -ms-transition: 0.35s;
  -moz-transition: 0.35s;
  transition: 0.35s;
  background: #f4f8ff;
}
.woocommerce .woocommerce-Reviews .comment-form .comment-form-author,
.woocommerce .woocommerce-Reviews .comment-form .comment-form-email {
  padding: 10px 0;
}
.woocommerce-Reviews,
.comments-area {
  margin-top: 34px;
  clear: both;
}
@media only screen and (max-width: 767px) {
  .woocommerce-Reviews#reviews #comments ol.commentlist,
  .comments-area#reviews #comments ol.commentlist {
    padding: 0;
  }
  .woocommerce-Reviews#reviews #comments ol.commentlist li .comment-text,
  .comments-area#reviews #comments ol.commentlist li .comment-text {
    margin: 0;
    padding-left: 40px;
  }
}
.woocommerce-Reviews#reviews #comments ol.commentlist li img.avatar,
.comments-area#reviews #comments ol.commentlist li img.avatar {
  padding: 0;
}
.woocommerce-Reviews#reviews input[type="checkbox"],
.comments-area#reviews input[type="checkbox"] {
  margin-left: 0;
}
.woocommerce-Reviews#reviews .comment-form-cookies-consent label,
.comments-area#reviews .comment-form-cookies-consent label {
  padding-left: 20px;
}
.woocommerce-Reviews #review_form .comment-form,
.comments-area #review_form .comment-form {
  display: block;
}
.woocommerce-Reviews h3,
.comments-area h3 {
  line-height: 36px;
  letter-spacing: 0.7px;
  margin-bottom: 5px;
}
.woocommerce-Reviews h3.comments-title,
.comments-area h3.comments-title {
  margin-bottom: 17px;

}
.woocommerce-Reviews .logged-in-as,
.comments-area .logged-in-as {
  font-size: 16px;
}
.woocommerce-Reviews .logged-in-as a,
.comments-area .logged-in-as a {
  font-weight: 600;
}
.woocommerce-Reviews .comment-list,
.comments-area .comment-list {
  margin-bottom: 27px;
  padding-left: 7px;
}
.woocommerce-Reviews .comment-form-comment2,
.comments-area .comment-form-comment2 {
  padding: 0;
  margin-top: 11px;
  margin-bottom: 25px;
}
.woocommerce-Reviews .comment-form-comment2 textarea,
.comments-area .comment-form-comment2 textarea {
  height: 150px;
  width: 100%;
  border-color: #dedee2;
  padding: 20px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}
.woocommerce-Reviews .form-submit,
.comments-area .form-submit {
  width: 100%;
  order: 4;
}
.woocommerce-Reviews .form-submit .submit,
.comments-area .form-submit .submit {
        background-size: 200%;
     background-image: linear-gradient(to right,#cc2b5e 0%,#753a88 51%,#cc2b5e 100%);
  font-size: 16px;
  border: none;
  background-size: 200%;
  padding: 11px 50px;
  border-radius: 30px;
  -webkit-transition: 0.7s;
  -o-transition: 0.7s;
  -ms-transition: 0.7s;
  -moz-transition: 0.7s;
  transition: 0.7s;
  color: #ffffff;
}
.woocommerce-Reviews .form-submit .submit:hover,
.comments-area .form-submit .submit:hover {
  background-position: right;
}
.woocommerce-Reviews .form-submit .submit:focus,
.comments-area .form-submit .submit:focus {
  outline: none;
}
.woocommerce-Reviews .comment-form,
.comments-area .comment-form {
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  flex-flow: row wrap;
}
.woocommerce-Reviews .comment-form .comment-form-alert,
.comments-area .comment-form .comment-form-alert,
.woocommerce-Reviews .comment-form .comment-form-cookies-consent,
.comments-area .comment-form .comment-form-cookies-consent {
  width: 100%;
  position: relative;
}
.woocommerce-Reviews .comment-form .comment-form-alert,
.comments-area .comment-form .comment-form-alert {
  letter-spacing: 0.3px;
  font-size: 16px;
  order: 0;
  margin-bottom: 28px;
}
.woocommerce-Reviews .comment-form .comment-form-cookies-consent,
.comments-area .comment-form .comment-form-cookies-consent {
  order: 3;
  font-size: 14px;
  margin-top: 3px;
}
.woocommerce-Reviews .comment-form .comment-form-cookies-consent label,
.comments-area .comment-form .comment-form-cookies-consent label {
  padding-left: 20px;
}
.woocommerce-Reviews .comment-form .comment-form-author,
.comments-area .comment-form .comment-form-author,
.woocommerce-Reviews .comment-form .comment-form-email,
.comments-area .comment-form .comment-form-email,
.woocommerce-Reviews .comment-form .comment-form-website,
.comments-area .comment-form .comment-form-website,
.woocommerce-Reviews .comment-form .comment-content,
.comments-area .comment-form .comment-content {
  padding: 10px 18px;
  margin-bottom: 25px;
}
.woocommerce-Reviews .comment-form .comment-form-author input,
.comments-area .comment-form .comment-form-author input,
.woocommerce-Reviews .comment-form .comment-form-email input,
.comments-area .comment-form .comment-form-email input,
.woocommerce-Reviews .comment-form .comment-form-website input,
.comments-area .comment-form .comment-form-website input,
.woocommerce-Reviews .comment-form .comment-content input,
.comments-area .comment-form .comment-content input {
  height: 50px;
  border: 1px solid #dedee2;
  padding: 0 18px;
  font-size: 16px;
  outline: none;
  width: 100%;
}
.woocommerce-Reviews .comment-form .comment-form-author textarea,
.comments-area .comment-form .comment-form-author textarea,
.woocommerce-Reviews .comment-form .comment-form-email textarea,
.comments-area .comment-form .comment-form-email textarea,
.woocommerce-Reviews .comment-form .comment-form-website textarea,
.comments-area .comment-form .comment-form-website textarea,
.woocommerce-Reviews .comment-form .comment-content textarea,
.comments-area .comment-form .comment-content textarea {
  border: 1px solid #dedee2;
  padding: 11px 20px 0px 18px;
  height: 150px;
  font-size: 16px;
  width: 100%;
  outline: none;
}
.woocommerce-Reviews .comment-form .comment-form-author,
.comments-area .comment-form .comment-form-author,
.woocommerce-Reviews .comment-form .comment-form-email,
.comments-area .comment-form .comment-form-email,
.woocommerce-Reviews .comment-form .comment-form-website,
.comments-area .comment-form .comment-form-website {
  -ms-flex: 2;
  flex: 2;
  order: 2;
}
.woocommerce-Reviews .comment-form .item-comment,
.comments-area .comment-form .item-comment {
  padding: 0 15px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .woocommerce-Reviews .comment-form .item-comment,
  .comments-area .comment-form .item-comment {
    flex: 100%;
    -ms-flex: 100%;
    padding: 0;
  }
}
.woocommerce-Reviews .comment-form .item-comment.comment-form-website,
.comments-area .comment-form .item-comment.comment-form-website {
  padding-right: 0;
}
.woocommerce-Reviews .comment-form .item-comment.comment-content,
.comments-area .comment-form .item-comment.comment-content {
  width: 100%;
  padding: 0;
}
.woocommerce-Reviews .comment-form .item-comment.comment-content textarea,
.comments-area .comment-form .item-comment.comment-content textarea {
  width: 100%;
}
.woocommerce-Reviews .comment-form .item-comment.comment-form-author,
.comments-area .comment-form .item-comment.comment-form-author {
  padding-left: 0;
}
.woocommerce-Reviews .comment-form .item-comment:last-child,
.comments-area .comment-form .item-comment:last-child {
  padding-right: 0;
}
.woocommerce-Reviews ol,
.comments-area ol {
  list-style: none;
}
.woocommerce-Reviews ol.children,
.comments-area ol.children {
  padding-left: 111px;

}
@media only screen and (max-width: 767px) {
  .woocommerce-Reviews ol.children,
  .comments-area ol.children {
    padding-left: 40px;
  }
}

.woocommerce-Reviews ol .depth-2 ol.children,
.comments-area ol .depth-2 ol.children {
  padding-left: 60px;
}
@media only screen and (max-width: 767px) {
  .woocommerce-Reviews ol .depth-2 ol.children,
  .comments-area ol .depth-2 ol.children {
    padding-left: 25px;
  }
}
.woocommerce-Reviews ol li .comment-body,
.comments-area ol li .comment-body {
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;

      margin-top: 20px;
    margin-bottom: 20px;
}
.woocommerce-Reviews ol li .comment-body .comment-avatar,
.comments-area ol li .comment-body .comment-avatar {
  max-width: 83px;
  height: 83px;
  flex: 0 0 83px;
  overflow: hidden;
  -ms-flex: 0 0 83px;
  border-radius: 100%;
  border: 3px solid #ffffff;
  z-index: 1;
}
.woocommerce-Reviews ol li .comment-body .comment-avatar img,
.comments-area ol li .comment-body .comment-avatar img {
  width: 100%;
  height: auto;
}
.woocommerce-Reviews ol li .comment-body .comment-info,
.comments-area ol li .comment-body .comment-info {

  border-radius: 10px;
  padding: 0px 12px 22px 60px;
  margin-left: -40px;
  width: 100%;
  margin-top: -4px;
}
.woocommerce-Reviews ol li .comment-body .comment-info .comment-header-info,
.comments-area ol li .comment-body .comment-info .comment-header-info {
  position: relative;
  margin-bottom: 5px;
}
.woocommerce-Reviews ol li .comment-body .comment-info .comment-header-info .comment-author,
.comments-area ol li .comment-body .comment-info .comment-header-info .comment-author {
  line-height: 30px;
  margin: 0;
    line-height: 30px;
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.3px;
    color: #cc2b5e;
}
@media only screen and (max-width: 767px) {
  .woocommerce-Reviews ol li .comment-body .comment-info .comment-header-info .comment-author,
  .comments-area ol li .comment-body .comment-info .comment-header-info .comment-author {
    display: block;
  }
}
.woocommerce-Reviews ol li .comment-body .comment-info .comment-header-info .comment-date,
.comments-area ol li .comment-body .comment-info .comment-header-info .comment-date {
  font-size: 14px;
      color: #1e1666;
     font-weight: 700;
  display: inline-block;
}
.woocommerce-Reviews ol li .comment-body .comment-info .comment-header-info .reply,
.comments-area ol li .comment-body .comment-info .comment-header-info .reply {
  position: absolute;
  right: 18px;
  top: 0px;
  font-size: 12px;
  font-weight: 700;
  line-height: 26px;
  border-radius: 30px;
  padding: 0px 12px;
      background-size: 200%;
    background-image: linear-gradient(to right,#cc2b5e 0%,#753a88 51%,#cc2b5e 100%);
    color: #fff;
}
.woocommerce-Reviews ol li .comment-body .comment-info .comment-header-info .reply i.fas.fa-reply,
.comments-area ol li .comment-body .comment-info .comment-header-info .reply i.fas.fa-reply {
  margin-left: -1px;
}

.woocommerce-Reviews ol li .comment-body .comment-info .comment-header-info .reply:hover a,
.comments-area ol li .comment-body .comment-info .comment-header-info .reply:hover a {
  text-decoration: none;
 
}
.woocommerce-Reviews ol li .comment-body .comment-info p,
.comments-area ol li .comment-body .comment-info p {
  margin-bottom: 0;
margin-bottom: 0;
    line-height: 28px;
    display: block;
    font-weight: 400;
    font-size: 16px;
}
.single .blog-page {
  padding-top: 82px;
      padding-bottom: 59px;
}
.single .blog-page .row-same-height {
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .single .blog-page {
    padding-top: 60px;
  }
}
.single .blog-details-img img {
  width: auto;
  border-radius: 10px;
  height: auto;
}
.single h1.jws-text-ellipsis {
  margin-top: 20px;
  margin-bottom: 22px;
}
.single .jws-title-bar-wrap {
  padding-top: 62px;
  padding-right: 10px;
  padding-bottom: 41px;
  padding-left: 10px;
}
.single .jws-title-bar-wrap a:hover {
  text-decoration: none;
}
.sidebar-blog {
  padding-left: 25px;
}
@media only screen and (max-width: 767px) {
  .sidebar-blog {
    padding-left: 10px;
    padding-top: 60px;
  }
}
.single-social-bar {
  text-align: center;
  margin-bottom: 32px;
}
.single-social-bar.product-share {
  text-align: right;
  margin-bottom: 0;
}
.single-social-bar.product-share .click-to-share {
  cursor: pointer;
}
.single-social-bar.product-share .click-to-share i {
  padding-right: 5px;
}
.single-social-bar.product-share ul {
  background: #c6ddfe;
  position: absolute;
  min-width: 152px;
  right: 58px;
  top: -5px;
  display: inline-block;
  margin-right: 0;
  opacity: 0;
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  -ms-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
  margin-bottom: 0;
  transform: translatex(-30px);
  -webkit-transform: translatex(-30px);
}
.single-social-bar.product-share ul:after {
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-left: 10px solid #c6ddfe;
  border-bottom: 5px solid transparent;
  content: "";
  bottom: 35%;
  position: absolute;
  right: -10px;
}
.single-social-bar.product-share ul li:last-child {
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  -ms-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
}
.single-social-bar.product-share ul li {
  opacity: 0;
  margin: 0;
  transform: translatex(0);
  -webkit-transform: translatex(0);
}
.single-social-bar.product-share ul li .link-item {
  background-color: transparent;
  border-radius: 0;
}
.single-social-bar.product-share.active ul {
  transform: translatex(-15px);
  -webkit-transform: translatex(-15px);
  opacity: 1;
}
.single-social-bar.product-share.active ul li {
  opacity: 1;
}
.single-social-bar .title {
  font-size: 16px;
  line-height: 30px;
  font-weight: 700;
  margin-bottom: 7px;
}
.single-social-bar ul {
  list-style-type: none;
  padding: 0;
}
.single-social-bar ul li {
  display: inline-block;
  margin: 0 10px;
}
.single-social-bar ul li a {
  background: rgba(198, 221, 254, 0.5);
  width: 35px;
  height: 35px;
  font-size: 12px;
  text-align: center;
  display: inline-block;
  line-height: 35px;
  border-radius: 100%;
}
.single-social-bar ul li a:hover {
  color: #ffffff;
}
.single-social-bar ul li:first-child {
  margin-left: 0;
}
.single-social-bar ul li:last-child {
  margin-right: 0;
}
.post-tags {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 39px;
}
.post-tags .tag-title {
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
  margin-right: 15px;
}
.post-tags a {
  background-color: rgba(198, 221, 254, 0.2);
  margin: 0px 5px 5px;
  line-height: 30px;
  padding: 3px 20px;
  border-radius: 30px;
  font-size: 16px;
  display: inline-block;
}
.post-tags a:hover {
  text-decoration: none;
}
.blog-about-author {
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  align-items: center;
  border-style: solid;
  border-width: 10px 10px 10px 10px;
  border-color: #f4f8ff;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  margin-top: 27px;
  margin-bottom: 0px;
  padding: 33px 30px 33px 35px;
}
@media only screen and (max-width: 767px) {
  .blog-about-author {
    display: block;
    padding: 10px 10px 10px 10px;
  }
}
.blog-about-author .blog-author-avatar {
  max-width: 120px;
  height: 120px;
  flex: 0 0 120px;
  overflow: hidden;
  -ms-flex: 0 0 120px;
  border-radius: 100%;
}
.blog-about-author .blog-author-avatar img {
  width: 100%;
  height: auto;
}
.blog-about-author .blog-author-info {
  padding-left: 42px;
}
@media only screen and (max-width: 767px) {
  .blog-about-author .blog-author-info {
    padding-left: 5px;
    padding-top: 20px;
  }
}
.blog-about-author .blog-author-info .position-author {
  font-size: 16px;
  line-height: 28px;
  display: block;
  font-weight: 600;
  margin-bottom: 7px;
  opacity: 0.7;
}
.blog-about-author .blog-author-info .title-author {
  margin-bottom: 0px;
  letter-spacing: 0.3px;
}
.blog-about-author .blog-author-info .description {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.title-related {
  text-align: center;
  position: relative;
  margin: 0 15px 23px;
}
.title-related::before {
  content: "";
  position: absolute;
  bottom: 50%;
  left: 0;
  width: 100%;
  border-top: 1px solid rgba(30, 22, 101, 0.1);
  z-index: -1;
}
.title-related h3 {
  display: inline-block;
  background: #ffffff;
  margin-bottom: 0;
  padding: 0px 25px;
}
@media only screen and (min-width: 1024px) {
  .jws-title-bar-wrap .jws-title-bar {
    width: 50%;
  }
}
.jws-title-bar-wrap .jws-title-bar .jws-path {
  font-size: 14px;
  font-weight: 400;
}
.jws-title-bar-wrap .jws-title-bar .jws-path i {
  font-size: 4px;
  vertical-align: middle;
  padding: 0 7px;
}
.single-post-info {
  list-style-type: none;
  padding: 0;
  margin-top: 20px;
}
.single-post-info li {
  padding-right: 22px;
  display: inline-block;
}
.single-post-info li span.info {
  margin-left: 4px;
  font-size: 14px;
}
.single-post-info li span.icon {
  display: inline-block;
}
@media only screen and (max-width: 767px) {
  .woocommerce .woocommerce-ordering,
  .woocommerce-page .woocommerce-ordering {
    float: left;
  }
}
.quickview-loading {
  position: fixed;
  right: 100px;
  background: #38cddc;
  overflow: hidden;
  max-width: 450px;
  top: 100px;
  z-index: 999999;
}
.quickview-loading .content-inner {
  display: flex;
}
.quickview-loading .title-product-cart {
  display: inline;
  font-size: 14px;
  color: #ffffff;
  padding: 10px 20px;
  line-height: 20px;
}
.quickview-loading .title-product-cart strong {
  font-weight: 700;
}
.quickview-loading .image {
  width: 90px;
  overflow: hidden;
}
.quickview-loading .image img {
  width: 100%;
  height: auto;
  display: inline;
}
.quickview-loading a {
  display: block;
  font-size: 14px;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 10px;
}
.quickview-loading a i {
  display: inline-block;
  transform: 2s;
}
.quickview-loading a:hover i {
  margin-left: 5px;
}
@media only screen and (max-width: 767px) {
  .quickview-loading {
    margin: 10px;
    right: 0;
  }
}
.woocommerce span.onsale {
  position: absolute;
  border-radius: initial;
  text-align: center;
  right: -100%;
  -webkit-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-right: 37px;
  margin-top: 15px;
  text-transform: uppercase;
  background: #fe6187;
  width: 200%;
  min-height: 38px;
  z-index: 99 !important;
  padding: 0;
  top: 0;
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  justify-content: center;
  flex-direction: column;
  line-height: 0;
  font-size: 14px;
  left: auto;
  font-weight: 500;
}
.jws-quantity {
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
}
.jws-quantity .jws-font {
  width: 35px;
  height: 35px;
  background: #eef5ff;
  border-radius: 100%;
  border: 1px solid #dedde8;
  text-align: center;
  vertical-align: middle;
  line-height: 35px;
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.woocommerce div.product form.cart .group_table {
  width: 100%;
}
.woocommerce div.product form.cart .group_table .button {
  margin-top: 13px;
}
.woocommerce div.product form.cart .group_table td.woocommerce-grouped-product-list-item__image {
  width: 70px;
}
@media only screen and (max-width: 767px) {
  .woocommerce div.product form.cart .group_table td.woocommerce-grouped-product-list-item__image {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .woocommerce div.product form.cart .group_table .single_add_to_cart_button button {
    margin-left: 0;
  }
}
.woocommerce div.product form.cart .group_table td.woocommerce-grouped-product-list-item__image div {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  overflow: hidden;
}
.woocommerce div.product form.cart .group_table td {
  vertical-align: middle;
  padding-bottom: 20px !important;
}
.woocommerce div.product form.cart .group_table td.woocommerce-grouped-product-list-item__label {
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0.3px;
  padding-right: 25px;
  padding-left: 25px;
  max-width: 170px;
}
@media only screen and (max-width: 767px) {
  .woocommerce div.product form.cart .group_table td.woocommerce-grouped-product-list-item__label {
    padding-right: 10px;
    padding-left: 0;
  }
}
.woocommerce div.product form.cart .group_table .woocommerce-grouped-product-list-item__price {
  text-align: right;
  padding-right: 60px;
}
@media only screen and (max-width: 767px) {
  .woocommerce div.product form.cart .group_table .woocommerce-grouped-product-list-item__price {
    padding-right: 10px;
  }
}
.woocommerce div.product form.cart .group_table .woocommerce-grouped-product-list-item__price ins {
  text-decoration: none;
}
.woocommerce div.product form.cart .group_table .woocommerce-grouped-product-list-item__price span {
  font-size: 14px;
}
.woocommerce div.product form.cart div.quantity {
  min-width: 70px;
     width: 200px;
      justify-content: left;
}
.woocommerce .woocommerce-grouped-product-list-item__quantity .quantity.jws-quantity {
  background: #eef5ff;
  border: 1px solid #c2c1d7;
  overflow: hidden;
  border-radius: 30px;
}
.woocommerce .woocommerce-grouped-product-list-item__quantity .quantity.jws-quantity input {
  font-size: 14px;
}
.woocommerce .woocommerce-grouped-product-list-item__quantity .quantity.jws-quantity .jws-font {
  border: none;
  width: auto;
  height: 24px;
  line-height: 24px;
}
.woocommerce .woocommerce-grouped-product-list-item__quantity .quantity.jws-quantity .jws-font.jws-qty-minus {
  padding-left: 0;
}
.woocommerce .woocommerce-grouped-product-list-item__quantity .quantity.jws-quantity .jws-font.jws-qty-minus::before {
  content: "";
  left: 0;
}
@media only screen and (max-width: 767px) {
  .woocommerce .woocommerce-grouped-product-list-item__quantity .quantity.jws-quantity .jws-font.jws-qty-minus {
    padding-left: 5px;
  }
}
.woocommerce .woocommerce-grouped-product-list-item__quantity .quantity.jws-quantity .jws-font.jws-qty-plus {
  padding-right: 0;
}
.woocommerce .woocommerce-grouped-product-list-item__quantity .quantity.jws-quantity .jws-font.jws-qty-plus::before {
  content: "";
  right: 0;
}
@media only screen and (max-width: 767px) {
  .woocommerce .woocommerce-grouped-product-list-item__quantity .quantity.jws-quantity .jws-font.jws-qty-plus {
    padding-right: 5px;
  }
}
.woocommerce .woocommerce-grouped-product-list-item__quantity .quantity.jws-quantity .jws-font::before {
  content: "";
  padding: 14px;
  top: 0;
  position: absolute;
}
.woocommerce .woocommerce-grouped-product-list-item__quantity .quantity.jws-quantity input.qty {
  background: transparent;
  width: 29px;
  height: 26px;
}
.woocommerce .quantity.jws-quantity input.qty {
  border: none;
  width: 60px;
  outline: none;
  background: transparent;
}
body .mfp-bg {
  z-index: 99999;
}
body .mfp-wrap {
  z-index: 999999;
}
body .mfp-wrap .mfp-inline-holder .mfp-content #jws-quickview {
  max-width: 900px;
  background: #ffffff;
  margin: auto;
  position: relative;
}
body .mfp-wrap .mfp-inline-holder .mfp-content .row_quick_view {
  margin: 0;
  padding: 15px;
  overflow: hidden;
}
body .mfp-wrap .mfp-inline-holder .mfp-content .jws-product-image {
  position: relative;
  float: left;
  width: 50%;
}
@media only screen and (max-width: 767px) {
  body .mfp-wrap .mfp-inline-holder .mfp-content .jws-product-image {
    width: 100%;
    float: none;
  }
  body .mfp-wrap .mfp-inline-holder .mfp-content .jws-product-image span.onsale {
    right: -69px !important;
    margin-top: 22px !important;
  }
}
body .mfp-wrap .mfp-inline-holder .mfp-content .jws-product-image .slick-slide {
  padding: 0;
  margin: 0;
}
body .mfp-wrap .mfp-inline-holder .mfp-content .jws-product-image .slick-arrow {
  position: absolute;
  z-index: 99;
  opacity: 0;
  font-size: 0;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  top: 50%;
  transform: 2s;
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  justify-content: center;
  align-items: center;
  background: #c6ddfe;
  outline: none;
  border: none;
}
@media only screen and (max-width: 767px) {
  body .mfp-wrap .mfp-inline-holder .mfp-content .jws-product-image .slick-arrow {
    opacity: 1;
  }
}
body .mfp-wrap .mfp-inline-holder .mfp-content .jws-product-image .slick-arrow.slick-next {
  right: 10px;
}
body .mfp-wrap .mfp-inline-holder .mfp-content .jws-product-image .slick-arrow.slick-next:before {
  content: "\e806";
  font-size: 18px;
  font-family: "linearicons-free";
}
body .mfp-wrap .mfp-inline-holder .mfp-content .jws-product-image .slick-arrow.slick-prev:before {
  content: "\e804";
  font-size: 18px;
  font-family: "linearicons-free";
}
body .mfp-wrap .mfp-inline-holder .mfp-content .jws-product-image .images {
  width: 100%;
  margin: 0;
}
body .mfp-wrap .mfp-inline-holder .mfp-content .jws-product-image .images span.onsale {
  right: -114px;
  margin-top: 44px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
}
body .mfp-wrap .mfp-inline-holder .mfp-content .jws-product-image .images .attachment-woocommerce_single {
  padding: 0 !important;
}
body .mfp-wrap .mfp-inline-holder .mfp-content .jws-product-image:hover .slick-arrow {
  opacity: 1;
}
body .mfp-wrap .mfp-inline-holder .mfp-content .jws-summary {
  padding: 60px 20px;
  overflow-y: auto;
  max-height: 600px;
  float: left;
  width: 50%;
}
body .mfp-wrap .mfp-inline-holder .mfp-content .jws-summary #jws-product-summary {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  body .mfp-wrap .mfp-inline-holder .mfp-content .jws-summary {
    padding: 25px 15px;
    float: unset;
    overflow-y: unset;
    width: 100%;
    max-height: max-content;
  }
}
.elementor-widget-wp-widget-woocommerce_product_search .search-field {
  font-size: 16px;
  font-weight: 600;
}
.woocommerce-Price-amount,
.woocommerce-Price-currencySymbol {
  font-weight: 500;
}
@media only screen and (max-width: 1024px) {
  .woocommerce-Price-amount,
  .woocommerce-Price-currencySymbol {
    font-size: 16px !important;
  }
}
.woocommerce div.product p.price ins,
.woocommerce div.product span.price ins {
  text-decoration: none;
}
.price del span {
  font-size: 14px;
}


.jws-product-shop .fitter-product .woocommerce-result-count {
  font-size: 16px;
  line-height: 24px;
}
.jws-product-shop .fitter-product select {
  border: none;
  font-size: 16px;
  line-height: 24px;
  width: 186px;
  height: 30px;
}
.jws-product-shop .product-archive {
  margin-top: 7px;
  text-align: center;
}
.jws-product-shop .product-archive .product-item {
  padding-top: 20px;
  padding-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  .jws-product-shop .product-archive .product-item {
    padding-right: 7px;
    padding-left: 7px;
  }
}
.jws-product-shop .product-archive .text-center {
  position: relative;
  border-radius: 10px;
  -webkit-transition: box-shadow 0.4s;
  -o-transition: box-shadow 0.4s;
  -ms-transition: box-shadow 0.4s;
  -moz-transition: box-shadow 0.4s;
  transition: box-shadow 0.4s;
}

.jws-product-shop .product-archive .text-center:hover .yith-wcwl-add-to-wishlist .yith-wcwl-add-button a,
.jws-product-shop .product-archive .text-center:hover .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse,
.jws-product-shop .product-archive .text-center:hover .cart-hover .product_type_grouped,
.jws-product-shop .product-archive .text-center:hover .cart-hover .product_type_external,
.jws-product-shop .product-archive .text-center:hover .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse,
.jws-product-shop .product-archive .text-center:hover .yith-wcwl-add-to-wishlist .yith-wcwl-yith-wcwl-wishlistaddedbrowse,
.jws-product-shop .product-archive .text-center:hover .add_to_cart_button,
.jws-product-shop .product-archive .text-center:hover .product-eyes a {
  opacity: 1;
  -webkit-transform: translateY(0px);
  -o-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -moz-transform: translateY(0px);
  transform: translateY(0px);
}
.jws-product-shop .product-archive .text-center:hover .product-image {
  border-color: transparent;
}
.jws-product-shop .product-archive .text-center:hover .product-image .nxl_product_image_gallery {
  opacity: 1;
}
.jws-product-shop .product-archive .text-center .cart-hover {
  position: absolute;
  bottom: 25px;
  right: 50%;
  transform: translateX(50%);
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  align-items: center;
}
.jws-product-shop .product-archive .text-center .cart-hover .yith-wcwl-add-button span {
  position: absolute;
  min-width: 111px;
  min-height: 25px;
  border-radius: 5px;
  top: -38px;
  padding: 0 5px;
  background: black;
  font-size: 14px !important;
  font-weight: 400;
  letter-spacing: 0.3px;
  left: -73%;
  margin-left: -1px;
  font-size: 16px;
  color: #ffff;
  opacity: 0;
  line-height: 25px;
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  -ms-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  transition: opacity 0.3s;
  pointer-events: none;
}
@media only screen and (max-width: 767px) {
  .jws-product-shop .product-archive .text-center .cart-hover .yith-wcwl-add-button span {
    display: none;
  }
}
.jws-product-shop .product-archive .text-center .cart-hover .yith-wcwl-add-button span::before {
  content: "";
  border: solid transparent;
  border-top-color: black;
  border-width: 6px;
  position: absolute;
  bottom: -12px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  transform: translateX(-50%);
}
.jws-product-shop .product-archive .text-center .cart-hover .yith-wcwl-add-button:hover span {
  opacity: 1;
}
.jws-product-shop .product-archive .text-center .cart-hover .product_type_grouped {
  background: transparent;
  padding: 0;
      padding: 0;
    -webkit-transition: 0.4s 0.1s;
    -o-transition: 0.4s 0.1s;
    -ms-transition: 0.4s 0.1s;
    -moz-transition: 0.4s 0.1s;
    transition: 0.4s 0.1s;
}
.jws-product-shop .product-archive .text-center .cart-hover .product_type_grouped::before {
  content: "\eb5e";
  font-family: "icomoon";
  font-size: 16px;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .jws-product-shop .product-archive .text-center .cart-hover .product_type_grouped span {
    display: none;
  }
}
.jws-product-shop .product-archive .text-center .cart-hover .product_type_external {
  border-radius: 100%;
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  justify-content: center;
  padding: 0;
}
.jws-product-shop .product-archive .text-center .cart-hover .product_type_external::before {
  content: "\e85c";
  font-family: "linearicons-free";
  font-size: 16px;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .jws-product-shop .product-archive .text-center .cart-hover .product_type_external span {
    display: none;
  }
}
.jws-product-shop .product-archive .text-center .cart-hover .product_type_external,
.jws-product-shop .product-archive .text-center .cart-hover .product_type_grouped {
  background: #ffffff;
}
.jws-product-shop .product-archive .text-center .cart-hover .product_type_external:hover,
.jws-product-shop .product-archive .text-center .cart-hover .product_type_grouped:hover {
  background-position: right;
}
.jws-product-shop .product-archive .text-center .cart-hover .product_type_external:hover span,
.jws-product-shop .product-archive .text-center .cart-hover .product_type_grouped:hover span {
  opacity: 1;
}
.jws-product-shop .product-archive .text-center .cart-hover .product_type_external:hover span::before,
.jws-product-shop .product-archive .text-center .cart-hover .product_type_grouped:hover span::before {
  content: "";
  border: solid transparent;
  border-top-color: black;
  border-width: 6px;
  position: absolute;
  bottom: -12px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  transform: translateX(-50%);
}
.jws-product-shop .product-archive .text-center .cart-hover .product_type_external span,
.jws-product-shop .product-archive .text-center .cart-hover .product_type_grouped span {
  position: absolute;
  width: 125px;
  height: 25px;
  border-radius: 5px;
  top: -38px;
  background: black;
  color: #ffffff;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.3px;
  left: -87%;
  margin-left: -1px;
  line-height: 25px;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  -ms-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  transition: opacity 0.3s;
  pointer-events: none;
}
.jws-product-shop .product-archive .text-center .cart-hover .add_to_cart_button::before {
  content: "\eb5e" !important;
  font-family: "icomoon" !important;
  font-weight: 400;
  font-size: 16px;
}
.jws-product-shop .product-archive .text-center .cart-hover .add_to_cart_button::after {
  margin: 0;
  margin-left: 0;
}
.jws-product-shop .product-archive .text-center .cart-hover .add_to_cart_button.loading::before {
  font-size: 0;
}
.jws-product-shop .product-archive .text-center .cart-hover .add_to_cart_button.loading::after {
  content: "";
  width: 18px;
  height: 18px;
  display: inline-block;
  vertical-align: middle;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-left-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -9px;
  margin-top: -9px;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  opacity: 1;
  -webkit-animation: jws-rotate 450ms infinite linear;
  animation: jws-rotate 450ms infinite linear;
}
.jws-product-shop .product-archive .text-center .cart-hover .add_to_cart_button.added::after {
  content: "";
}
.jws-product-shop .product-archive .text-center .cart-hover .added_to_cart {
  font-size: 0;
}
.jws-product-shop .product-archive .text-center .cart-hover .yith-wcwl-add-to-wishlist {
  margin-top: 0;
}
.jws-product-shop .product-archive .text-center .cart-hover .yith-wcwl-add-to-wishlist .yith-wcwl-add-button a {
  -webkit-transition: 0.4s 0.2s;
  -o-transition: 0.4s 0.2s;
  -ms-transition: 0.4s 0.2s;
  -moz-transition: 0.4s 0.2s;
  transition: 0.4s 0.2s;
}
.jws-product-shop .product-archive .text-center .cart-hover .yith-wcwl-add-to-wishlist .yith-wcwl-add-button a::before {
  content: "\e849";
  font-family: "linearicons-free";
}
.jws-product-shop .product-archive .text-center .cart-hover .yith-wcwl-add-to-wishlist .yith-wcwl-add-button a span {
  font-size: 0px;
  width: 0px;
  height: 0px;
}
.jws-product-shop .product-archive .text-center .cart-hover .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse,
.jws-product-shop .product-archive .text-center .cart-hover .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse {
  -webkit-transition: 0.4s 0.2s;
  -o-transition: 0.4s 0.2s;
  -ms-transition: 0.4s 0.2s;
  -moz-transition: 0.4s 0.2s;
  transition: 0.4s 0.2s;
}
.jws-product-shop .product-archive .text-center .cart-hover .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse::before,
.jws-product-shop .product-archive .text-center .cart-hover .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse::before {
  content: "\e9da";
  font-family: "icomoon";
  font-size: 16px;
  top: 50%;
  transform: translateY(-100%);
  height: 23px;
}
.jws-product-shop .product-archive .text-center .cart-hover .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse a,
.jws-product-shop .product-archive .text-center .cart-hover .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a {
  font-size: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 6;
}
.jws-product-shop .product-archive .text-center .cart-hover .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse span,
.jws-product-shop .product-archive .text-center .cart-hover .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse span {
  position: absolute;
  min-width: 120px;
  min-height: 25px;
  border-radius: 5px;
  top: -35px;
  padding: 0 5px;
  background: black;
  font-size: 14px !important;
  font-weight: 400;
  letter-spacing: 0.3px;
  left: -73%;
  margin-left: -1px;
  font-size: 16px;
  color: #ffff;
  opacity: 0;
  line-height: 25px;
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  -ms-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  transition: opacity 0.3s;
  pointer-events: none;
}
@media only screen and (max-width: 767px) {
  .jws-product-shop .product-archive .text-center .cart-hover .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse span,
  .jws-product-shop .product-archive .text-center .cart-hover .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse span {
    display: none;
  }
}
.jws-product-shop .product-archive .text-center .cart-hover .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse span::after,
.jws-product-shop .product-archive .text-center .cart-hover .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse span::after {
  content: "";
  border: solid transparent;
  border-top-color: black;
  border-width: 6px;
  position: absolute;
  bottom: -12px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  transform: translateX(-50%);
}
.jws-product-shop .product-archive .text-center .cart-hover .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse:hover span,
.jws-product-shop .product-archive .text-center .cart-hover .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse:hover span {
  opacity: 1;
}
.jws-product-shop .product-archive .text-center .cart-hover .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse:hover::before,
.jws-product-shop .product-archive .text-center .cart-hover .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse:hover::before {
  color: #ffffff;
}
.jws-product-shop .product-archive .text-center .cart-hover .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse span.feedback {
  top: -60px;
}
.jws-product-shop .product-archive .text-center .cart-hover .add_to_cart_button {
  padding: 0;
  -webkit-transition: 0.4s 0.1s;
  -o-transition: 0.4s 0.1s;
  -ms-transition: 0.4s 0.1s;
  -moz-transition: 0.4s 0.1s;
  transition: 0.4s 0.1s;
}
.jws-product-shop .product-archive .text-center .cart-hover .add_to_cart_button:hover span {
  opacity: 1;
  pointer-events: initial;
}
.jws-product-shop .product-archive .text-center .cart-hover .add_to_cart_button::before {
  content: "\e8e4";
  font-family: eicons;
  font-weight: 400;
}
.jws-product-shop .product-archive .text-center .cart-hover .add_to_cart_button span {
  position: absolute;
  width: 120px;
  height: 25px;
  border-radius: 5px;
  top: -38px;
  background: black;
  font-size: 14px;
  letter-spacing: 0.3px;
  left: -50%;
  margin-left: -15px;
  line-height: 25px;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  -ms-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  transition: opacity 0.3s;
  pointer-events: none;
      color: #ffffff;
    font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .jws-product-shop .product-archive .text-center .cart-hover .add_to_cart_button span {
    display: none;
  }
}
.jws-product-shop .product-archive .text-center .cart-hover .add_to_cart_button span::before {
  content: "";
  border: solid transparent;
  border-top-color: black;
  border-width: 6px;
  position: absolute;
  bottom: -12px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  transform: translateX(-50%);
}
.jws-product-shop .product-archive .text-center .cart-hover .product-eyes {
  margin-bottom: 0;
}
.jws-product-shop .product-archive .text-center .cart-hover .product-eyes .loading i {
  opacity: 0;
}
.jws-product-shop .product-archive .text-center .cart-hover .product-eyes .loading::before {
  content: "";
  width: 18px;
  height: 18px;
  display: inline-block;
  vertical-align: middle;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-left-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -9px;
  margin-top: -9px;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  opacity: 1;
  -webkit-animation: jws-rotate 450ms infinite linear;
  animation: jws-rotate 450ms infinite linear;
}
.jws-product-shop .product-archive .text-center .cart-hover .product-eyes span {
  position: absolute;
  width: 90px;
  height: 25px;
  border-radius: 5px;
  top: -38px;
  background: black;
  color: #ffffff;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.3px;
  left: -50%;
  margin-left: -1px;
  line-height: 25px;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  -ms-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  transition: opacity 0.3s;
  pointer-events: none;
}
@media only screen and (max-width: 767px) {
  .jws-product-shop .product-archive .text-center .cart-hover .product-eyes span {
    display: none;
  }
}
.jws-product-shop .product-archive .text-center .cart-hover .product-eyes a {
  -webkit-transition: 0.4s 0s;
  -o-transition: 0.4s 0s;
  -ms-transition: 0.4s 0s;
  -moz-transition: 0.4s 0s;
  transition: 0.4s 0s;
}
.jws-product-shop .product-archive .text-center .cart-hover .product-eyes i {
  position: relative;
  z-index: 2;
}
.jws-product-shop .product-archive .text-center .cart-hover .product-eyes i::before {
  content: "\e83e";
  font-family: "linearicons-free";
}
.jws-product-shop .product-archive .text-center .cart-hover .product-eyes:hover span {
  opacity: 1;
}
.jws-product-shop .product-archive .text-center .cart-hover .product-eyes:hover span::before {
  content: "";
  border: solid transparent;
  border-top-color: black;
  border-width: 6px;
  position: absolute;
  bottom: -12px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media only screen and (max-width: 767px) {
  .jws-product-shop .product-archive .text-center .cart-hover {
    position: absolute;
    right: 0;
    bottom: 0;
    -webkit-transform: translateX(0);
    -o-transform: translateX(0);
    -ms-transform: translateX(0);
    -moz-transform: translateX(0);
    transform: translateX(0);
    left: auto;
    z-index: 999;
    flex-direction: column;
  }
  .jws-product-shop .product-archive .text-center .cart-hover .text-center:hover {
    box-shadow: none;
  }
  .jws-product-shop .product-archive .text-center .cart-hover .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse::before,
  .jws-product-shop .product-archive .text-center .cart-hover .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse::before {
    height: 26px;
  }
  .jws-product-shop .product-archive .text-center .cart-hover .product_type_grouped,
  .jws-product-shop .product-archive .text-center .cart-hover .product-eyes a,
  .jws-product-shop .product-archive .text-center .cart-hover .product_type_external,
  .jws-product-shop .product-archive .text-center .cart-hover .yith-wcwl-add-button a,
  .jws-product-shop .product-archive .text-center .cart-hover .product_type_grouped .product-eyes a,
  .jws-product-shop .product-archive .text-center .cart-hover .add_to_cart_button,
  .jws-product-shop .product-archive .text-center .cart-hover .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse,
  .jws-product-shop .product-archive .text-center .cart-hover .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse {
    opacity: 1;
  }
  .jws-product-shop .product-archive .text-center .cart-hover .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse::before,
  .jws-product-shop .product-archive .text-center .cart-hover .product-eyes i::before,
  .jws-product-shop .product-archive .text-center .cart-hover .add_to_cart_button::before,
  .jws-product-shop .product-archive .text-center .cart-hover .product_type_external::before,
  .jws-product-shop .product-archive .text-center .cart-hover .product_type_grouped::before,
  .jws-product-shop .product-archive .text-center .cart-hover .yith-wcwl-add-button a::before,
  .jws-product-shop .product-archive .text-center .cart-hover .yith-wcwl-add-button a::before {
    font-size: 12px;
  }
  .jws-product-shop .product-archive .text-center .cart-hover .product_type_grouped,
  .jws-product-shop .product-archive .text-center .cart-hover .product-eyes a,
  .jws-product-shop .product-archive .text-center .cart-hover .product_type_external,
  .jws-product-shop .product-archive .text-center .cart-hover .yith-wcwl-add-button a,
  .jws-product-shop .product-archive .text-center .cart-hover .yith-wcwl-wishlistaddedbrowse,
  .jws-product-shop .product-archive .text-center .cart-hover .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse,
  .jws-product-shop .product-archive .text-center .cart-hover .add_to_cart_button,
  .jws-product-shop .product-archive .text-center .cart-hover .add_to_cart_button {
    background: #ffffff;
    opacity: 0.85;
    margin-bottom: 10px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    -webkit-transform: none;
    -o-transform: none;
    -ms-transform: none;
    -moz-transform: none;
    transform: none;
  }
}
.jws-product-shop .product-archive .text-center .product-image {

  border-radius: 10px;
  display: block;
  position: relative;
  overflow: hidden;
  -webkit-transition: border 0.3s;
  -o-transition: border 0.3s;
  -ms-transition: border 0.3s;
  -moz-transition: border 0.3s;
  transition: border 0.3s;
}
.jws-product-shop .product-archive .text-center .product-image img {
  border-radius: 10px;
  width: 100%;
}
.jws-product-shop .product-archive .text-center .product-image .nxl_product_image_gallery {
  position: absolute;
  top: 0;
  opacity: 0;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  width: 100%;
}
.jws-product-shop .product-archive .woocommerce-loop-product__title {
  margin-top: 27px;
  margin-bottom: 3px;
}
.jws-product-shop .product-archive .woocommerce-loop-product__title a {
    font-size: 18px;
    line-height: 28px;
    display: inline-block;
    vertical-align: top;
        color: #1e1666;
  
    font-weight: 800;
}
.price del {
        color: #57647c;
}
.price ins {
     text-decoration: none;
}
.jws-product-shop .product-archive .flex-space-between .price {
  font-size: 18px;
  letter-spacing: 0.3px;
  color: #fe6187;
}
.jws-product-shop .product-archive .flex-space-between del {
  font-size: 14px;
  opacity: 1 !important;
  font-weight: 500;
}
.jws-product-shop .product-archive .flex-space-between .star-rating {
  display: none;
}
.jws-product-shop .product-archive .yith-wcwl-add-to-wishlist .yith-wcwl-add-button a,
.jws-product-shop .product-archive .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse,
.jws-product-shop .product-archive .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse,
.jws-product-shop .product-archive .add_to_cart_button,
.jws-product-shop .product-archive .product_type_external,
.jws-product-shop .product-archive .product_type_grouped,
.jws-product-shop .product-archive .product-eyes a {
  width: 45px;
  height: 45px;
  border-radius: 100%;
  background: #ffffff;
  box-shadow: 0 0 20px rgba(30, 22, 102, 0.15);
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin: 0 7px;
  font-size: 18px;
  position: relative;
  opacity: 0;
  -webkit-transform: translateY(25px);
  -o-transform: translateY(25px);
  -ms-transform: translateY(25px);
  -moz-transform: translateY(25px);
  transform: translateY(25px);
}
.jws-product-shop .product-archive .yith-wcwl-add-to-wishlist .yith-wcwl-add-button a::after,
.jws-product-shop .product-archive .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse::after,
.jws-product-shop .product-archive .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse::after,
.jws-product-shop .product-archive .add_to_cart_button::after,
.jws-product-shop .product-archive .product_type_external::after,
.jws-product-shop .product-archive .product_type_grouped::after,
.jws-product-shop .product-archive .product-eyes a::after {
  content: "";
  width: 100%;
  height: 100%;
  background-size: 200%;
  position: absolute;
  z-index: 1;
  border-radius: 100%;
  opacity: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.jws-product-shop .product-archive .yith-wcwl-add-to-wishlist .yith-wcwl-add-button a::before,
.jws-product-shop .product-archive .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse::before,
.jws-product-shop .product-archive .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse::before,
.jws-product-shop .product-archive .add_to_cart_button::before,
.jws-product-shop .product-archive .product_type_external::before,
.jws-product-shop .product-archive .product_type_grouped::before,
.jws-product-shop .product-archive .product-eyes a::before {
  position: relative;
  z-index: 2;
}
.jws-product-shop .product-archive .yith-wcwl-add-to-wishlist .yith-wcwl-add-button a:hover::after,
.jws-product-shop .product-archive .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse:hover::after,
.jws-product-shop .product-archive .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse:hover::after,
.jws-product-shop .product-archive .add_to_cart_button:hover::after,
.jws-product-shop .product-archive .product_type_external:hover::after,
.jws-product-shop .product-archive .product_type_grouped:hover::after,
.jws-product-shop .product-archive .product-eyes a:hover::after {
  opacity: 1;
}
.jws-product-shop .product-featured-sider .jws-product-featured-sider {
  padding-top: 10px;
  padding-bottom: 10px;
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
}
.jws-product-shop .product-featured-sider .jws-product-featured-sider .hot-image {
  -ms-flex: 0 0 70px;
  flex: 0 0 70px;
  max-width: 70px;
  height: 96px;
  display: inline-block;
  position: relative;
  border: 1px solid #e5e5e5;
  border-radius: 5px;
  -webkit-transition: border 0.3s;
  -o-transition: border 0.3s;
  -ms-transition: border 0.3s;
  -moz-transition: border 0.3s;
  transition: border 0.3s;
}
.jws-product-shop .product-featured-sider .jws-product-featured-sider .hot-image img {
  border-radius: 5px;
}
.jws-product-shop .product-featured-sider .jws-product-featured-sider .hot-image .nxl_product_image_gallery {
  position: absolute;
  top: 0;
  opacity: 0;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
.jws-product-shop .product-featured-sider .jws-product-featured-sider .hot-image:hover .nxl_product_image_gallery {
  opacity: 1;
}
.jws-product-shop .product-featured-sider .jws-product-featured-sider .onsale,
.jws-product-shop .product-featured-sider .jws-product-featured-sider .out-stock-label {
  display: none;
}
.jws-product-shop .product-featured-sider .jws-product-featured-sider .woocommerce-loop-product__title a {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.3px;
  line-height: 20px;
  display: inline-block;
}
.jws-product-shop .product-featured-sider .jws-product-featured-sider .price {
  font-size: 18px;
  letter-spacing: 0.3px;
  color: #fe6187;
}
.jws-product-shop .product-featured-sider .jws-product-featured-sider .price del {
  font-size: 14px;
  opacity: 1 !important;
  font-weight: 500;
}
.jws-product-shop .product-featured-sider .jws-product-featured-sider .ml-15 {
  margin-left: 20px;
  align-self: center;
}
.jws-product-shop .product-archive .text-center .cart-hover .yith-wcwl-add-to-wishlist a::before,
.jws-product-shop .product-archive .text-center .cart-hover .product-eyes a i,
.jws-product-shop .product-archive .text-center .cart-hover .add_to_cart_button::before {
  -webkit-transition: color 0.2s;
  -o-transition: color 0.2s;
  -ms-transition: color 0.2s;
  -moz-transition: color 0.2s;
  transition: color 0.2s;
}
.elementor-widget-wp-widget-woocommerce_product_categories .elementor-widget-container h5 {
  margin-bottom: 25px;
}
.elementor-widget-Jws-product-featured h5 {
  margin-bottom: 15px;
}
.elementor-widget-wp-widget-woocommerce_product_search .search-field {
  width: 100%;
  padding-right: 10px;
  height: 50px;
  background: #e2eefe;
  border: none;
  padding: 0 15px;
}
.elementor-widget-wp-widget-woocommerce_product_search button {
  position: absolute;
  right: 20px;
  top: 15px;
  border: none;
  background: none;
  width: 20px;
  color: transparent;
  height: 20px;
  z-index: 2;
  font-size: 0px;
}
.elementor-widget-wp-widget-woocommerce_product_search button:focus {
  outline: none;
}
.elementor-widget-wp-widget-woocommerce_price_filter .elementor-widget-container .price_slider_wrapper .price_slider {
  height: 4px;
  background: rgba(198, 221, 254, 0.5);
  margin: 37px 0 22px;
}
.elementor-widget-wp-widget-woocommerce_price_filter .elementor-widget-container .price_slider_wrapper .price_slider .ui-slider-range {
  height: 4px;
  background-size: 200%;
  position: relative;
}
.elementor-widget-wp-widget-woocommerce_price_filter .elementor-widget-container .price_slider_wrapper .price_slider .ui-slider-handle {
  width: 16px;
  height: 16px;
  position: absolute;
  background-size: 200%;
  border-radius: 100%;
  z-index: 100;
  margin-left: -0.5em;
  margin-top: -3px;
  cursor: ew-resize;
}
@media only screen and (max-width: 1025px) {
  .elementor-widget-wp-widget-woocommerce_price_filter .elementor-widget-container .price_slider_wrapper .price_slider .ui-slider-handle {
    margin-top: 0;
  }
}
.elementor-widget-wp-widget-woocommerce_price_filter .elementor-widget-container .price_slider_wrapper .price_slider .ui-slider-handle:focus {
  outline: none;
}
.elementor-widget-wp-widget-woocommerce_price_filter .elementor-widget-container .price_slider_wrapper .price_slider_amount {
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}
.elementor-widget-wp-widget-woocommerce_price_filter .elementor-widget-container .price_slider_wrapper .price_slider_amount .price_label {
  font-size: 16px;
  line-height: 20px;
}
.elementor-widget-wp-widget-woocommerce_price_filter .elementor-widget-container .price_slider_wrapper .price_slider_amount .button {
  padding: 0;
  background: none;
  font-size: 16px;
  line-height: 20px;
}
.elementor-widget-wp-widget-woocommerce_price_filter .elementor-widget-container .price_slider_wrapper .price_slider_amount .button:focus {
  outline: none;
}
.elementor-widget-wp-widget-woocommerce_price_filter .elementor-widget-container .price_slider_wrapper .price_slider_amount .clear {
  display: none;
}
.custom-price-single del {
  opacity: 1 !important;
  font-size: 16px;
  font-weight: 500;
}
.custom-price-single ins {
  text-decoration: none;
}
.star-rating {
  color: #ffb22d;
  font-size: 14px;
}
.star-rating::before {
  color: #ffb22d;
}
.star-rating span::before {
  color: #ffb22d;
}
.woocommerce-product-rating .woocommerce-review-link {
  font-size: 14px;
}
.elementor-widget-woocommerce-product-short-description p {
  margin-bottom: 0;
}
.woocommerce div.product form.cart .button {
  margin: 0;
  outline: none;
      background-size: 200%;
     background-image: linear-gradient(to right,#cc2b5e 0%,#753a88 51%,#cc2b5e 100%);
}
.single-wishlist .yith-wcwl-wishlistaddedbrowse .feedback,
.single-wishlist .yith-wcwl-wishlistexistsbrowse .feedback {
  display: none;
}
.single-wishlist .yith-wcwl-wishlistaddedbrowse a,
.single-wishlist .yith-wcwl-wishlistexistsbrowse a {
  font-size: 0;
}
.single-wishlist .yith-wcwl-add-to-wishlist {
  margin-top: 0;
}
.single-wishlist .yith-wcwl-add-to-wishlist .yith-wcwl-add-button a {
  -webkit-transition: 0.4s 0.2s;
  -o-transition: 0.4s 0.2s;
  -ms-transition: 0.4s 0.2s;
  -moz-transition: 0.4s 0.2s;
  transition: 0.4s 0.2s;
}
.single-wishlist .yith-wcwl-add-to-wishlist .yith-wcwl-add-button a::before {
  content: "\f004";
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
  margin-right: 8px;
}
.single-wishlist .yith-wcwl-add-to-wishlist span {
  font-weight: 700;
}
.single-wishlist .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse a,
.single-wishlist .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a {
  -webkit-transition: 0.4s 0.2s;
  -o-transition: 0.4s 0.2s;
  -ms-transition: 0.4s 0.2s;
  -moz-transition: 0.4s 0.2s;
  transition: 0.4s 0.2s;
}
.single-wishlist .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse a::before,
.single-wishlist .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a::before {
  content: "\f004";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 8px;
}
.share-single-product .elementor-widget-container .elementor-grid .elementor-grid-item .elementor-share-btn {
  margin: 0;
  border: none;
}
.share-single-product .elementor-widget-container .elementor-grid .elementor-grid-item .elementor-share-btn .elementor-share-btn__icon i {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
.share-single-product .elementor-widget-container .elementor-grid .elementor-grid-item .elementor-share-btn .elementor-share-btn__icon i::before {
  content: "\f1e0";
}
.elementor-widget-woocommerce-product-meta .elementor-widget-container .product_meta {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.3px;
  flex-direction: column;
}
.elementor-widget-woocommerce-product-meta .elementor-widget-container .product_meta .detail-label {
  font-weight: 400;
}
.custom-list-single-product .elementor-icon-list-icon {
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  align-self: center;
}
.woocommerce .elementor-widget-woocommerce-product-data-tabs .woocommerce-tabs .wc-tabs {
  padding: 0 !important;
  width: fit-content;
}
.woocommerce .elementor-widget-woocommerce-product-data-tabs .woocommerce-tabs .wc-tabs::after {
  content: "" !important;
  width: 100%;
  height: 1px;
  background: #e7e7e7;
  margin-top: -1px;
}
.woocommerce .elementor-widget-woocommerce-product-data-tabs .woocommerce-tabs .wc-tabs li {
  border: none !important;
  background: none !important;
  border-radius: initial !important;
  margin: initial !important;
}
.woocommerce .elementor-widget-woocommerce-product-data-tabs .woocommerce-tabs .wc-tabs li a {
  padding: 0px 65px 13px 0px !important;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 0.3px;
  line-height: 24px;
}
.woocommerce .elementor-widget-woocommerce-product-data-tabs .woocommerce-tabs .wc-tabs li.active a {
  border-bottom: 1px solid #3353ea;
}
.woocommerce .elementor-widget-woocommerce-product-data-tabs .woocommerce-tabs .woocommerce-Tabs-panel {
  border-top: none !important;
  padding: 0 !important;
  margin-top: 43px !important;
}
.woocommerce .elementor-widget-woocommerce-product-data-tabs .woocommerce-tabs .woocommerce-Tabs-panel h2 {
  display: none;
}
.woocommerce .elementor-widget-woocommerce-product-data-tabs .woocommerce-tabs .woocommerce-Tabs-panel .elementor-heading-title {
  display: initial;
}
.woocommerce .elementor-widget-woocommerce-product-data-tabs .woocommerce-tabs .woocommerce-Tabs-panel.woocommerce-Tabs-panel--reviews .comment_container {
  margin-left: 30px;
}
.woocommerce .elementor-widget-woocommerce-product-data-tabs .woocommerce-tabs .woocommerce-Tabs-panel.woocommerce-Tabs-panel--reviews .comment_container .avatar_review img {
  width: 60px !important;
  border-radius: 100%;
  top: 50% !important;
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  padding: 0 !important;
}
.woocommerce .elementor-widget-woocommerce-product-data-tabs .woocommerce-tabs .woocommerce-Tabs-panel.woocommerce-Tabs-panel--reviews .comment_container .meta {
  font-size: 15px !important;
  line-height: 16px !important;
}
.woocommerce .elementor-widget-woocommerce-product-data-tabs .woocommerce-tabs .woocommerce-Tabs-panel.woocommerce-Tabs-panel--reviews .comment_container .description {
  font-size: 15px;
  line-height: 24px;
}
.woocommerce .elementor-widget-woocommerce-product-data-tabs .woocommerce-tabs .woocommerce-Tabs-panel.woocommerce-Tabs-panel--reviews .comment_container .star-rating {
  color: #ffb22d;
  font-size: 14px;
}
.woocommerce .elementor-widget-woocommerce-product-data-tabs .woocommerce-tabs .woocommerce-Tabs-panel.woocommerce-Tabs-panel--reviews .comment_container .star-rating::before {
  color: #ffb22d;
}
.woocommerce .elementor-widget-woocommerce-product-data-tabs .woocommerce-tabs .woocommerce-Tabs-panel.woocommerce-Tabs-panel--reviews .comment_container .star-rating span::before {
  color: #ffb22d;
}
.woocommerce .elementor-widget-woocommerce-product-data-tabs .woocommerce-tabs .woocommerce-Tabs-panel.woocommerce-Tabs-panel--reviews .comment-reply-title {
    font-size: 20px;
    line-height: 24px;
    font-family: "Nunito";
    color: #1e1666;
    line-height: 48px;
    font-weight: 800;
}
.woocommerce .elementor-widget-woocommerce-product-data-tabs .woocommerce-tabs .woocommerce-Tabs-panel.woocommerce-Tabs-panel--reviews .comment-form-rating label {
  font-size: 16px;
}
.woocommerce .elementor-widget-woocommerce-product-data-tabs .woocommerce-tabs .woocommerce-Tabs-panel.woocommerce-Tabs-panel--reviews .comment-form-rating .stars a {
  color: #ffb22d;
}
.woocommerce .elementor-widget-woocommerce-product-data-tabs .woocommerce-tabs .woocommerce-Tabs-panel.woocommerce-Tabs-panel--reviews .comment-form-comment textarea {
  height: 150px !important;
  padding: 20px;
  font-size: 16px;
  line-height: 24px;
  border: 1px solid #dedee2;
}
.woocommerce .elementor-widget-woocommerce-product-data-tabs .woocommerce-tabs .woocommerce-Tabs-panel.woocommerce-Tabs-panel--reviews .form-submit .submit {
  background-size: 200%;
  -webkit-transition: 0.7s;
  -o-transition: 0.7s;
  -ms-transition: 0.7s;
  -moz-transition: 0.7s;
  transition: 0.7s;
  padding: 17.5px 50px !important;
  border-radius: 100px !important;
  color: #ffffff !important;
}
.woocommerce .elementor-widget-woocommerce-product-data-tabs .woocommerce-tabs .woocommerce-Tabs-panel.woocommerce-Tabs-panel--reviews .form-submit .submit:hover {
  background-position: right;
}
label.out-stock-label {
  position: absolute;
  border-radius: initial;
  text-align: center;
  right: -100%;
  -webkit-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-right: 37px;
  margin-top: 15px;
  text-transform: uppercase;
  background: #f0c418;
  width: 200%;
  min-height: 39px;
  color: #ffffff;
  padding: 0;
  top: 0;
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  justify-content: center;
  flex-direction: column;
  line-height: 0;
  font-size: 14px;
  left: auto;
  font-weight: 500;
  z-index: 99;
}
@media only screen and (max-width: 767px) {
  label.out-stock-label {
    margin-right: 23px;
    margin-top: 10px;
    min-height: 25px;
    font-size: 12px;
  }
}
.elementor-menu-cart__footer-buttons .elementor-button:hover {
  background-position: right;
}
.elementor-widget-woocommerce-product-images .elementor-widget-container {
  overflow: hidden;
  position: relative;
}
.woocommerce div.product .woocommerce-product-gallery--columns-4 .flex-control-thumbs li:nth-child(4n + 1) {
  clear: unset !important;
}
.woocommerce-product-gallery #product-thumbnails {
  position: relative;
  width: 100%;
  height: 100%;
  margin-left: -15px;
  margin-right: 0;
  margin-top: 15px;
}
.woocommerce-product-gallery #product-thumbnails .gallery-item {
  margin: 0 15px;
}
.woocommerce-product-gallery .thumbnails .gallery-item {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  overflow: hidden;
  padding: 0px !important;
}
.woocommerce-product-gallery .woocommerce-product-gallery__wrapper {
  overflow: hidden;

  border-radius: 5px;
}
@media only screen and (max-width: 1024px) {
  .woocommerce-product-gallery .woocommerce-product-gallery .woocommerce-product-gallery-inner {
    margin-left: 0 !important;
  }
  .woocommerce-product-gallery .woocommerce-product-gallery #product-thumbnails {
    position: relative;
    width: 100%;
    height: 100%;
    margin-left: -10px;
    margin-right: 0;
    margin-top: 30px;
  }
  .woocommerce-product-gallery .woocommerce-product-gallery #product-thumbnails .gallery-item {
    margin: 0 10px;
  }
}
@media only screen and (min-width: 1024px) {
  .elementor-widget-woocommerce-product-images.image-product-layout2 .woocommerce-product-gallery .woocommerce-product-gallery-inner {
    float: none;
    position: relative;
    margin-left: 102px !important;
  }
  .elementor-widget-woocommerce-product-images.image-product-layout2 .woocommerce-product-gallery .gallery-item {
    margin: 15px 0 !important;
  }
  .elementor-widget-woocommerce-product-images.image-product-layout2 .woocommerce-product-gallery #product-thumbnails {
    position: absolute;
    top: 0;
    left: 0;
    width: 70px;
    height: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
  }
  .elementor-widget-woocommerce-product-images.image-product-layout2 .woocommerce-product-gallery #product-thumbnails .thumbnails {
    padding-top: 0 !important;
    margin-top: -15px;
  }
}
.elementor-widget-woocommerce-product-related .elementor-widget-container h4 {
  margin-bottom: 25px;
  font-size: 18px;
}
.elementor-widget-woocommerce-product-stock .stock {
  font-size: 16px !important;
  line-height: 24px;
  letter-spacing: 0.3px;
}
.elementor-widget-woocommerce-product-add-to-cart .stock {
  display: none;
}
form.cart {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
form.cart.grouped_form {
  display: block;
}
form.cart .single_add_to_cart_button {
  margin-left: 10px;
  border-radius: 100px !important;
  background-size: 200%;
  -webkit-transition: 0.7s;
  -o-transition: 0.7s;
  -ms-transition: 0.7s;
  -moz-transition: 0.7s;
  transition: 0.7s;
  padding: 14.5px 0;
  width: 100%;
}
form.cart .single_add_to_cart_button::before {
  content: "\eb5e" !important;
  font-size: 18px;
  font-family: "icomoon" !important;
  margin-right: 15px;
  font-weight: 400;
}
form.cart .single_add_to_cart_button:hover {
  background-position: right;
}
#add_payment_method table.cart .product-thumbnail,
.woocommerce-cart table.cart .product-thumbnail,
.woocommerce-checkout table.cart .product-thumbnail {
  max-width: 105px;
  padding: 20px;
}
#add_payment_method table.cart .product-thumbnail a,
.woocommerce-cart table.cart .product-thumbnail a,
.woocommerce-checkout table.cart .product-thumbnail a {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  overflow: hidden;
  display: block;
  text-align: center;
}
.woocommerce button.button:disabled,
.woocommerce button.button:disabled[disabled] {
  color: rgba(37, 37, 37, 0.5);
  opacity: 1;
}
.woocommerce .cart-collaterals .cart_totals,
.woocommerce-page .cart-collaterals .cart_totals {
  width: 100%;
}
.page-view-cart .woocommerce-cart-form .update-cart[type="submit"]:checked {
  outline: none;
}
.page-view-cart .woocommerce-cart-form table {
  border: none;
}
.page-view-cart .woocommerce-cart-form table th {
  line-height: 14px;
}
.page-view-cart .woocommerce-cart-form table tbody tr td {
  border: none !important;
}
.page-view-cart .woocommerce-cart-form table tbody tr:nth-child(even) {
  background: #f9fcff;
}
.page-view-cart .woocommerce-cart-form table tbody tr td {
  border: none !important;
}
.page-view-cart .woocommerce-cart-form table tbody .product-thumbnail a {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  overflow: hidden;
  display: block;
}
.page-view-cart .product-name {
  font-weight: 700;
}
.page-view-cart .product-name .product-thumbnail-name {
  align-self: center;
}
.page-view-cart thead tr {
  background: rgba(198, 221, 254, 0.5);
}
.woocommerce-cart .product-remove a.remove:hover {
  background: transparent;
}
.woocommerce-cart .product-remove i {
  font-size: 16px;
}
.woocommerce-cart .product-remove:hover i {
  color: red;
}
.woocommerce-cart table.cart img {
  max-width: 90px;
  width: 100%;
}
.woocommerce-cart .coupon {
  position: relative;
}
.woocommerce-cart .coupon .input-text {
  border: none !important;
  background: rgba(198, 221, 254, 0.5);
  width: 470px !important;
  padding-left: 20px !important;
  margin-right: 30px;
  height: 55px;
}
.woocommerce-cart .coupon .button {
  background-color: transparent;
  position: absolute;
  right: 10px;
  height: 55px;
  width: 55px;
  bottom: 2px;
  transform: translate(0%, 0%);
}
.woocommerce-cart .coupon .button:hover {
  background-color: transparent;
}
.woocommerce-cart .coupon .button i {
  font-size: 24px;
}
@media only screen and (max-width: 767px) {
  .woocommerce-cart .coupon .input-text {
    width: 100% !important;
  }
  .woocommerce-cart .coupon .button {
    width: 55px !important;
    bottom: 18% !important;
  }
}
.woocommerce-cart .update-cart {
  padding: 0px 40px !important;
  border-radius: 30px !important;
  height: 50px;
  font-size: 16px !important;
}
.woocommerce-cart .continue-shopping {
  border: 1px solid;
  border-radius: 30px;
  height: 50px;
  display: inline-block;
  line-height: 50px;
  font-weight: 700;
  font-size: 16px;
  padding: 0 37px;
  margin-right: 30px;
}
.woocommerce-cart .continue-shopping i {
  display: inline-block;
  font-size: 16px;
}
.woocommerce-cart td.actions {
  padding: 40px 0 20px !important;
}
.woocommerce-cart .button {
  -webkit-transition: 0.7s;
  -o-transition: 0.7s;
  -ms-transition: 0.7s;
  -moz-transition: 0.7s;
  transition: 0.7s;
}
@media only screen and (max-width: 767px) {
  .woocommerce-cart a.remove {
    text-align: right;
    margin: 0;
    display: inline-block;
  }
}
.woocommerce .cart-collaterals,
.woocommerce-page .cart-collaterals {
  padding: 50px 57px;
  border: 1px solid;
}
.woocommerce .cart-collaterals h4,
.woocommerce-page .cart-collaterals h4 {
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.woocommerce .cart-collaterals table th,
.woocommerce-page .cart-collaterals table th {
  font-size: 14px;
}
.woocommerce .cart-collaterals .cart-subtotal,
.woocommerce-page .cart-collaterals .cart-subtotal {
  text-align: right;
  width: 100%;
}
.woocommerce .cart-collaterals .cart-subtotal h6,
.woocommerce-page .cart-collaterals .cart-subtotal h6 {
  display: inline-block;
  padding-right: 25%;
  font-size: 14px;
  font-weight: 700;
}
.woocommerce .cart-collaterals .order-total td,
.woocommerce-page .cart-collaterals .order-total td {
  text-align: right;
  padding-top: 30px;
  font-size: 18px;
  font-weight: 500;
}
.woocommerce .cart-collaterals .order-total td span.woocommerce-Price-amount.amount,
.woocommerce-page .cart-collaterals .order-total td span.woocommerce-Price-amount.amount {
  padding-left: 25%;
}
.woocommerce .cart-collaterals .order-total td span,
.woocommerce-page .cart-collaterals .order-total td span {
  font-weight: 500;
}
.woocommerce .cart-collaterals .wc-proceed-to-checkout,
.woocommerce-page .cart-collaterals .wc-proceed-to-checkout {
  text-align: right;
  padding: 10px 15px;
}
.woocommerce .cart-collaterals .wc-proceed-to-checkout .checkout-button,
.woocommerce-page .cart-collaterals .wc-proceed-to-checkout .checkout-button {
  display: inline-block;
  border-radius: 30px;
  height: 50px;
  line-height: 50px;
  padding: 0px 70px;
  margin-bottom: 5px;
  margin-right: 15px;
  font-size: 16px;
  letter-spacing: 0.5px;
      background-size: 200%;
     background-image: linear-gradient(to right,#cc2b5e 0%,#753a88 51%,#cc2b5e 100%);
}
.woocommerce a.button.wc-backward {
  display: inline-block;
  border-radius: 30px;
  height: 50px;
  line-height: 50px;
  padding: 0px 70px;
  margin-bottom: 5px;
  margin-right: 15px;
  font-size: 16px;
  letter-spacing: 0.5px;
}
.woocommerce .cart-collaterals .cart-subtotal .woocommerce-Price-amount,
.woocommerce-page .cart-collaterals .cart-subtotal span {
  font-size: 14px;
  color: #959595;
}
.woocommerce form .form-row-first,
.woocommerce form .form-row-last,
.woocommerce-page form .form-row-first,
.woocommerce-page form .form-row-last {
  width: 100% !important;
}
#add_payment_method .cart-collaterals .cart_totals table th,
.woocommerce-cart .cart-collaterals .cart_totals table th,
.woocommerce-checkout .cart-collaterals .cart_totals table th {
  width: 26.5%;
}
#add_payment_method .cart-collaterals .cart_totals table,
.woocommerce-cart .cart-collaterals .cart_totals table,
.woocommerce-checkout .cart-collaterals .cart_totals table {
  border: none;
}
.woocommerce .woocommerce-shipping-totals th {
  padding-top: 48px !important;
}
.woocommerce .woocommerce-shipping-totals .woocommerce-shipping-methods#shipping_method {
  padding: 32px 0;
  border-bottom: 1px solid;
  border-color: rgba(87, 100, 124, 0.1) !important;
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.woocommerce .woocommerce-shipping-totals .woocommerce-shipping-methods#shipping_method li {
  display: inline-block;
  font-size: 14px !important;
  letter-spacing: 0.3px;
  margin: 0;
}
.woocommerce .woocommerce-shipping-totals .woocommerce-shipping-methods#shipping_method li span {
  font-size: 14px;
  letter-spacing: 0.3px;
  font-weight: 400;
}
.woocommerce .woocommerce-shipping-totals .woocommerce-shipping-methods#shipping_method li input {
  vertical-align: middle;
  background: #c6ddfe;
  margin-right: 20px;
  position: relative;
  width: 30px;
  height: 30px;
}
.woocommerce .woocommerce-shipping-totals .woocommerce-shipping-methods#shipping_method li input:checked {
  border: 1px solid;
  background: none;
}
.woocommerce .woocommerce-shipping-totals .woocommerce-shipping-methods#shipping_method li input:hover {
  border: 1px solid;
}
.woocommerce .woocommerce-shipping-totals .woocommerce-shipping-destination {
  font-size: 14px;
  line-height: 16px;
  padding-top: 36px;
}
.woocommerce .woocommerce-shipping-totals .woocommerce-shipping-calculator {
  margin-bottom: 32px;
}
.woocommerce .woocommerce-shipping-totals .shipping-calculator-button {
  font-size: 14px;
  font-weight: 700;
  margin-top: 5px;
  display: inline-block;
  line-height: 15px;

}
.woocommerce .woocommerce-shipping-totals .shipping-calculator-button::after {
  content: "";
}
.woocommerce table.shop_table_responsive tr td::before,
.woocommerce-page table.shop_table_responsive tr td::before {
  font-weight: 700;
  float: left;
  font-size: 18px;
}
@media only screen and (max-width: 767px) {
  .woocommerce table.shop_table_responsive tr,
  .woocommerce-page table.shop_table_responsive tr {
    display: block;
    padding: 0 15px;
  }
  .woocommerce table.shop_table_responsive tr:nth-child(2n) td,
  .woocommerce-page table.shop_table_responsive tr:nth-child(2n) td {
    background-color: transparent;
  }
  .woocommerce-cart-form__cart-item .jws-quantity {
    justify-content: flex-end;
  }
  .continue-shopping {
    margin-right: 0;
    margin: auto;
    margin-bottom: 20px;
    margin-top: 20px;
    margin-right: 0 !important;
    text-align: center;
    width: 100%;
  }
  .woocommerce .cart-collaterals,
  .woocommerce-page .cart-collaterals {
    padding: 15px;
    border:none;
  }
  .woocommerce .cart-collaterals .wc-proceed-to-checkout,
  .woocommerce-page .cart-collaterals .wc-proceed-to-checkout {
    text-align: center;
    margin: auto;
  }
}

@media (max-width: 1024px) {
  .woocommerce-checkout .jws-title-bar-wrap {

    padding: 40px 15px;
  }
}
.woocommerce-checkout h3 {
  text-transform: uppercase;
  font-weight: 500;
}
.woocommerce-checkout .woocommerce {
  max-width: 50%;
  margin: auto;
}
@media (max-width: 1024px) {
  .woocommerce-checkout .woocommerce {
    max-width: 80%;
  }
}
.woocommerce-checkout .woocommerce .woocommerce-input-wrapper {
  width: 100%;
}
.woocommerce-checkout .woocommerce .form-row {
  margin-bottom: 25px;
}
.woocommerce-checkout .woocommerce .form-row label {
  font-weight: 700;
}
.woocommerce-checkout .woocommerce .form-row .selection .select2-selection--single {
  width: 100%;
  border: 1px solid #a8a8a8;
  height: 45px;
  padding-left: 15px;
  border-radius: 0;
}
.woocommerce-checkout .woocommerce .form-row .selection .select2-selection--single span {
  line-height: 45px;
  padding: 0;
}
.woocommerce-checkout .woocommerce .form-row .input-text {
  width: 100%;
  border: 1px solid #a8a8a8;
  height: 45px;
  padding-left: 15px;
}
.woocommerce-checkout .woocommerce .form-row textarea {
  height: 150px !important;
  padding: 15px;
}
.woocommerce-checkout .woocommerce .woocommerce-form__label-for-checkbox span {
  margin-left: 10px;
}
.woocommerce-checkout .woocommerce img {
  height: auto;
  max-width: 90px;
}
.woocommerce-checkout .woocommerce-account-fields .create-account {
  margin-bottom: 0;
}
.woocommerce-checkout .woocommerce-account-fields .create-account span {
  font-size: 16px;
}
.woocommerce-checkout .woocommerce-account-fields .create-account input[type="checkbox"]:checked:before {
  transform: translate(-50%, -50%);
}
.woocommerce-checkout .checkout-ship #ship-to-different-address {
  font-size: 16px;
  text-transform: unset;
}
.woocommerce-checkout .checkout-ship input[type="checkbox"]:checked:before {
  transform: translate(-50%, -50%);
}
.woocommerce-checkout .nxl_woo_your_order #order_review_heading {
  margin-bottom: 22px;
}
.woocommerce-checkout .nxl_woo_your_order .shop_table {
  border: none;
  border-collapse: collapse;
}
.woocommerce-checkout .nxl_woo_your_order thead {
  display: none;
}
.woocommerce-checkout .nxl_woo_your_order th {
  padding-left: 0 !important;
}
.woocommerce-checkout .nxl_woo_your_order th:first-child {
  width: 28%;
  border-top: none;
}
.woocommerce-checkout .nxl_woo_your_order .cart-item {
  border: none;
}
.woocommerce-checkout .nxl_woo_your_order .cart-item th {
  border: none;
  padding-top: 15px !important;
  vertical-align: text-top;
}
.woocommerce-checkout .nxl_woo_your_order .cart_item {
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  align-items: center;
  padding: 16px 0;
  justify-content: space-between;
}
.woocommerce-checkout .nxl_woo_your_order .cart_item span {
  flex: 1;
}
.woocommerce-checkout .nxl_woo_your_order .cart_item span.product-name {
  flex: 3;
}
.woocommerce-checkout .nxl_woo_your_order .cart_item span.product-quantity {
  text-align: center;
  flex: 1;
  font-size: 14px;
}
.woocommerce-checkout .nxl_woo_your_order .cart_item span.product-total {
  flex: 1;
  text-align: right;
  font-size: 14px;
}
.woocommerce-checkout .nxl_woo_your_order .cart_item span.product-total span {
  font-size: 14px;
  font-weight: 700;
}
.woocommerce-checkout .nxl_woo_your_order .cart-subtotal {
  display: none;
}
.woocommerce-checkout .nxl_woo_your_order .border-block {
  display: none;
}
.woocommerce-checkout .nxl_woo_your_order .woocommerce-shipping-totals th:first-child {
  border-top: 0;
  padding-top: 22px !important;
}
.woocommerce-checkout .nxl_woo_your_order .woocommerce-shipping-totals #shipping_method {
  border-bottom: none;
  padding-top: 26px;
  padding-bottom: 16px;
}
.woocommerce-checkout .nxl_woo_your_order .woocommerce-shipping-totals td {
  padding: 0;
  border:0;
}
.woocommerce-checkout .nxl_woo_your_order .order-total th {
  padding-top: 28px;
  padding-bottom: 0;
}
.woocommerce-checkout .nxl_woo_your_order .order-total td {
  text-align: right;
  padding-top: 26px;
  padding-bottom: 0px;
  border: 0;
}
.woocommerce-checkout .nxl_woo_your_order tr {
    border: 0;
}
.woocommerce-checkout #payment.woocommerce-checkout-payment {
  padding-top: 26px;
  border-top: 1px solid #e3e7e8;
  background: transparent;
}
.woocommerce-checkout #payment.woocommerce-checkout-payment h4 {
  font-size: 14px;
  float: left;
  width: 28%;
}
@media (max-width: 768px) {
  .woocommerce-checkout #payment.woocommerce-checkout-payment h4 {
    width: 100%;
  }
}
.woocommerce-checkout #payment.woocommerce-checkout-payment .wc_payment_methods {
  width: 72%;
  padding: 0;
  float: left;
}
@media (max-width: 768px) {
  .woocommerce-checkout #payment.woocommerce-checkout-payment .wc_payment_methods {
    width: 100%;
  }
}
.woocommerce-checkout #payment.woocommerce-checkout-payment .wc_payment_methods li {
  border-bottom: 1px solid #e3e7e8;
  padding: 15px 0;
}
.woocommerce-checkout #payment.woocommerce-checkout-payment .wc_payment_methods li:first-child {
  padding-top: 0;
}
.woocommerce-checkout #payment.woocommerce-checkout-payment .wc_payment_methods li:last-child {
  border-bottom: none;
}
.woocommerce-checkout #payment.woocommerce-checkout-payment .wc_payment_methods label {
  font-size: 14px;
  margin: 0;
}
.woocommerce-checkout #payment.woocommerce-checkout-payment .wc_payment_methods .payment_box {
  background: transparent;
}
.woocommerce-checkout #payment.woocommerce-checkout-payment .wc_payment_methods .payment_box p {
  font-size: 14px;
}
.woocommerce-checkout #payment.woocommerce-checkout-payment .wc_payment_methods .payment_box::before {
  content: none;
}
.woocommerce-checkout #payment.woocommerce-checkout-payment .wc_payment_methods input {
margin-right: 10px;
}
.woocommerce-checkout #payment.woocommerce-checkout-payment .form-row.place-order {
  padding-left: 28% !important;
}
.woocommerce-checkout #payment.woocommerce-checkout-payment .form-row.place-order #place_order {
  width: 100%;
  border-radius: 30px;
  min-height: 50px;
  float: right;
  margin-top: 20px;
}
.woocommerce-checkout #payment.woocommerce-checkout-payment .form-row.place-order #place_order:hover {
  background-position: right center;
  -webkit-transition: 0.7s;
  -o-transition: 0.7s;
  -ms-transition: 0.7s;
  -moz-transition: 0.7s;
  transition: 0.7s;
}
.woocommerce-checkout .woocommerce-order-details .nxl_woo_your_order thead {
  display: table-row-group;
}
.woocommerce-checkout .woocommerce-order-details .nxl_woo_your_order thead th {
  font-weight: 700;
  font-size: 18px;
}
.woocommerce-checkout .woocommerce-order-details .nxl_woo_your_order .product-total {
  text-align: right;
}
.woocommerce-checkout .woocommerce-order-details .nxl_woo_your_order th:first-child {
  width: 70%;
}
.woocommerce-checkout .woocommerce-order-details .nxl_woo_your_order tfoot th:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  font-weight: 700;
  font-size: 18px;
}
.woocommerce-checkout .woocommerce-order-details .nxl_woo_your_order tfoot td {
  text-align: right;
}
.woocommerce-checkout .woocommerce-order-details .nxl_woo_your_order .order_item .product-name {
  font-weight: 500;
  padding-left: 0;
}
.woocommerce-checkout ul.order_details {
  border: 1px dashed #d3ced2;
  padding: 15px;
}
.woocommerce-checkout ul.order_details li {
  font-weight: 600;
  line-height: 28px;
}
@media only screen and (max-width: 767px) {
  .woocommerce-checkout ul.order_details li {
    float: none;
    border: none;
    padding: 0;
    margin: 0;
  }
  .woocommerce-checkout ul.order_details li strong {
    float: right;
  }
}
.woocommerce-checkout .woocommerce-column__title {
  font-size: 24px;
  text-transform: uppercase;
}
.woocommerce-checkout .woocommerce-column--billing-address,
.woocommerce-checkout .woocommerce-column--shipping-address {
  flex: auto;
  max-width: 100%;
  padding-right: 0;
  padding-left: 0;
}
body .elementor-menu-cart__footer-buttons .elementor-button {
  border-radius: 30px;
}
.woocommerce .woocommerce-error,
.woocommerce .woocommerce-info,
.woocommerce .woocommerce-message {
  border: none;
  background-color: rgba(198, 221, 254, 0.5);
  font-size: 14px;
}
.woocommerce .woocommerce-error::before,
.woocommerce .woocommerce-info::before,
.woocommerce .woocommerce-message::before {
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  content: "\f05a";
}
@media only screen and (max-width: 767px) {
  .jws-product-shop .product-archive .col-12 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .jws-product-shop .product-archive span.onsale {
    margin-right: 23px;
    margin-top: 10px;
    min-height: 25px;
    font-size: 12px;
  }
}
@media only screen and (max-width: 500px) {
  .jws-product-shop .product-archive .col-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.forgetmenot label,
.comment-form-cookies-consent label {
  position: relative;
}
.forgetmenot label:after,
.comment-form-cookies-consent label:after {
  font-size: 16px;
  content: "\f0c8";
}
.forgetmenot label:after,
.forgetmenot label:checked:after,
.comment-form-cookies-consent label:checked:after,
.comment-form-cookies-consent label:after {
  visibility: visible;
  font-family: "Font Awesome 5 Free";
  display: inline-block;
  transform: translate(0%, -50%);
  position: absolute;
  left: 0;
  top: 50%;
}


.checkbox span {
  margin-left: 10px;
}
input[type="radio"] {
  outline: none;
}
input {
  outline: none;
}

input[type="radio"]:checked {
  border: 1px solid;
  background: none !important;
}
@media only screen and (max-width: 767px) {
  input[type=checkbox]:checked + label:before,
  input[type=checkbox],
  .comment-form-cookies-consent label:checked:after,
  .comment-form-cookies-consent label:after {
    transform: translate(0, 0%);
    top: 0;
  }
}

#adduser {
  max-width: 700px;
  margin: auto;
}
#adduser .form-group label {
  display: block;
}
#adduser .form-group input {
  width: 100%;
  border: 1px solid #a8a8a8;
  height: 45px;
  padding-left: 15px;
}
#adduser .form-group textarea {
  width: 100%;
  border: 1px solid #a8a8a8;
  padding-left: 15px;
}
.page-mail {
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  height: 100vh;
}
.page-mail .page-mail-content {
  max-width: 570px;
  border-radius: 5px;
  background-color: #ffffff;
  box-shadow: 0px 0px 18px 2px rgba(30, 22, 102, 0.05);
  z-index: 23;
  padding: 50px;
  margin: auto;
  text-align: center;
}
.page-mail .page-mail-content a {
  font-size: 16px;
  border: none;
  background-size: 200%;
  position: relative;
  padding: 11px 50px;
  border-radius: 100px;
  color: #fff;
  margin: 20px;
  display: block;
  -webkit-transition: 0.7s;
  -o-transition: 0.7s;
  -ms-transition: 0.7s;
  -moz-transition: 0.7s;
  transition: 0.7s;
}
.page-mail .page-mail-content a:hover {
  background-position: right center;
  transform: translateY(-5px);
  text-decoration: none;
}
.page-mail .page-mail-content a::after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: -9px;
  height: 110%;
  left: 50%;
  width: 90%;
  transform: translateX(-50%);
  opacity: 0.4;
  border-radius: 50px;
  -webkit-filter: blur(10px);
  filter: blur(10px);
  transition: all 0.5s;
  background-position: right center;
}
.single-case-study {
  width: 100%;
  padding: 0 5%;
}
.single-case-study .case-study-gallery .main-image {
  padding: 0;
  height: 500px;
}
.single-case-study .case-study-gallery .main-image img {
  width: 100%;
}
.single-case-study .case-study-gallery .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #ffffff;
  width: 50px;
  z-index: 1;
  outline: none;
  height: 50px;
  border: none;
  border-radius: 100%;
  background: rgba(198, 221, 254, 0.5);
  font-size: 18px;
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: -webkit-box !important;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box !important;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox !important;
  /* TWEENER - IE 10 */
  display: -webkit-flex !important;
  /* NEW - Chrome */
  display: flex !important;
  opacity: 0;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
.single-case-study .case-study-gallery .slick-prev {
  left: 15px;
}
.single-case-study .case-study-gallery .slick-next {
  right: 15px;
}
.single-case-study .case-study-gallery:hover .slick-arrow {
  opacity: 1;
}
.elementor_jws_menu_layout_menu_horizontal .jws_main_menu .jws_nav_menu > ul > li {
  float: left;
  margin-bottom: 0;
}
.elementor_jws_menu_layout_menu_horizontal.elementor-jws-menu-skin-skin1 .jws_main_menu .jws_nav_menu > ul > li:first-child > a {
  padding-left: 0 !important;
  border-left: 0 !important;
}
.elementor_jws_menu_layout_menu_horizontal.elementor-jws-menu-skin-skin1 .jws_main_menu .jws_nav_menu > ul > li:last-child > a {
  padding-right: 0 !important;
  border-right: 0 !important;
}
.elementor-jws-menu-align-right .jws_nav {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-left: auto;
  padding-left: 20px;
}
.elementor-jws-menu-align-left .jws_nav {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-right: auto;
}
.elementor-jws-menu-align-center .jws_nav {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}
.elementor_jws_menu_layout_menu_horizontal.elementor-before-menu-skin-circle .jws_main_menu .jws_nav_menu > ul > li:first-child a:before {
  display: none;
}
.elementor_jws_menu_layout_menu_horizontal.elementor-before-menu-skin-circle .jws_main_menu .jws_nav_menu > ul > li > a {
  position: relative;
}
.elementor_jws_menu_layout_menu_horizontal.elementor-before-menu-skin-circle .jws_main_menu .jws_nav_menu > ul > li > a:before {
  content: "";
  background: #626262;
  width: 6px;
  height: 6px;
  position: absolute;
  left: -3px;
  top: 50%;
  margin-top: -3px;
  -webkit-border-radius: 100%;
  -ms-border-radius: 100%;
  -moz-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
}
.elementor-before-menu-skin-square .jws_main_menu .jws_nav_menu > ul > li:first-child a:before {
  display: none;
}
.elementor-before-menu-skin-square .jws_main_menu .jws_nav_menu > ul > li > a {
  position: relative;
}
.elementor-before-menu-skin-square .jws_main_menu .jws_nav_menu > ul > li > a:before {
  content: "";
  background: #d1d0d0;
  width: 1px;
  height: 8px;
  position: absolute;
  left: -0.5px;
  top: 50%;
  margin-top: -2px;
  -webkit-border-radius: 100%;
  -ms-border-radius: 100%;
  -moz-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
}
.jws_menu_canvas_sidebar .jws_nav_menu,
.elementor_jws_menu_layout_menu_horizontal .jws_main_menu .jws_nav_menu > ul > li.menu-item-design-mega_menu_full_width {
  position: relative;
}
.jws_menu_canvas_sidebar .jws_nav_menu .sub-menu-dropdown,
.elementor_jws_menu_layout_menu_horizontal .jws_main_menu .jws_nav_menu > ul > li.menu-item-design-mega_menu_full_width .sub-menu-dropdown {
  width: 100%;
  left: 0;
}
.jws_menu_canvas_sidebar .jws_nav_menu,
.elementor_jws_menu_layout_menu_horizontal .jws_nav_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.jws_menu_canvas_sidebar .jws_nav_menu > ul li a .menu-label,
.elementor_jws_menu_layout_menu_horizontal .jws_nav_menu > ul li a .menu-label {
  position: absolute;
  bottom: 85%;
  z-index: 1;
  display: inline-block;
  margin-left: -20px;
  padding: 0px 10px;
  vertical-align: middle;
  white-space: nowrap;
  font-size: 12px;
  line-height: 1.9em;
  color: #ffffff;
}
.jws_menu_canvas_sidebar .jws_nav_menu > ul li a .menu-label:before,
.elementor_jws_menu_layout_menu_horizontal .jws_nav_menu > ul li a .menu-label:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 10px;
  width: 0;
  height: 0;
  border-style: solid;
  border-top-width: 4px;
  border-bottom-width: 0;
  border-right-width: 7px;
  border-left-width: 0;
  border-top-color: transparent;
  border-left-color: transparent !important;
  border-right-color: transparent !important;
  border-bottom-color: transparent !important;
}
.jws_menu_canvas_sidebar .jws_nav_menu > ul > li,
.elementor_jws_menu_layout_menu_horizontal .jws_nav_menu > ul > li {
  position: relative;
}
.jws_menu_canvas_sidebar .jws_nav_menu > ul > li > a,
.elementor_jws_menu_layout_menu_horizontal .jws_nav_menu > ul > li > a {
  display: block;
}
.jws_menu_canvas_sidebar .jws_nav_menu > ul > li > a i,
.elementor_jws_menu_layout_menu_horizontal .jws_nav_menu > ul > li > a i {
  margin-left: 7px;
}
.jws_menu_canvas_sidebar .jws_nav_menu > ul > li .sub-menu,
.elementor_jws_menu_layout_menu_horizontal .jws_nav_menu > ul > li .sub-menu,
.jws_menu_canvas_sidebar .jws_nav_menu > ul > li .sub-menu-dropdown,
.elementor_jws_menu_layout_menu_horizontal .jws_nav_menu > ul > li .sub-menu-dropdown {
  position: absolute;
  top: 100%;
  opacity: 0;
  z-index: 1;
  visibility: hidden;
  pointer-events: none;
  -webkit-transform: translateY(15px);
  -o-transform: translateY(15px);
  -ms-transform: translateY(15px);
  -moz-transform: translateY(15px);
  transform: translateY(15px);
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  transition: 0.3s ease;
}
.jws_menu_canvas_sidebar .jws_nav_menu > ul > li.menu-item-design-standard .sub-menu li a,
.elementor_jws_menu_layout_menu_horizontal .jws_nav_menu > ul > li.menu-item-design-standard .sub-menu li a {
  display: block;
}
.jws_menu_canvas_sidebar .jws_nav_menu > ul > li.menu-item-design-standard .sub-menu li a i,
.elementor_jws_menu_layout_menu_horizontal .jws_nav_menu > ul > li.menu-item-design-standard .sub-menu li a i {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  font-size: 6px;
  color: #6d6d6d;
}
.jws_menu_canvas_sidebar .jws_nav_menu > ul > li.menu-item-design-standard .sub-menu li:last-child > a,
.elementor_jws_menu_layout_menu_horizontal .jws_nav_menu > ul > li.menu-item-design-standard .sub-menu li:last-child > a {
  border-bottom: 0 !important;
}
.jws_menu_canvas_sidebar .jws_nav_menu > ul > li.menu-item-design-standard > .sub-menu li,
.elementor_jws_menu_layout_menu_horizontal .jws_nav_menu > ul > li.menu-item-design-standard > .sub-menu li {
  position: relative;
}
.jws_menu_canvas_sidebar .jws_nav_menu > ul > li.menu-item-design-standard > .sub-menu li .sub-menu,
.elementor_jws_menu_layout_menu_horizontal .jws_nav_menu > ul > li.menu-item-design-standard > .sub-menu li .sub-menu {
  position: absolute;
  left: 100%;
  top: -23px;
  opacity: 0;
  -webkit-transform: translateX(15px);
  -o-transform: translateX(15px);
  -ms-transform: translateX(15px);
  -moz-transform: translateX(15px);
  transform: translateX(15px);
  visibility: hidden;
  pointer-events: none;
}
.jws_menu_canvas_sidebar .jws_nav_menu > ul > li.menu-item-design-standard > .sub-menu li:hover > .sub-menu,
.elementor_jws_menu_layout_menu_horizontal .jws_nav_menu > ul > li.menu-item-design-standard > .sub-menu li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  -webkit-transform: translateX(0px);
  -o-transform: translateX(0px);
  -ms-transform: translateX(0px);
  -moz-transform: translateX(0px);
  transform: translateX(0px);
}
.jws_menu_canvas_sidebar .jws_nav_menu > ul > li:hover .sub-menu,
.elementor_jws_menu_layout_menu_horizontal .jws_nav_menu > ul > li:hover .sub-menu,
.jws_menu_canvas_sidebar .jws_nav_menu > ul > li:hover .sub-menu-dropdown,
.elementor_jws_menu_layout_menu_horizontal .jws_nav_menu > ul > li:hover .sub-menu-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  -webkit-transform: translateY(0px);
  -o-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -moz-transform: translateY(0px);
  transform: translateY(0px);
  transition-delay: 0.2s;
  -webkit-transition-delay: 0.2s;
}
.elementor_jws_menu_layout_menu_vertical .jws_nav_menu > ul > li > a {
  margin: 15px 0;
  color: #333333;
  padding: 0 15px;
  padding-right: 50px !important;
}
.elementor_jws_menu_layout_menu_vertical .jws_nav_menu > ul > li > a i {
  display: none;
}
.elementor_jws_menu_layout_menu_vertical .jws_nav_menu ul li {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-flex-align: center;
  align-items: center;

}
.elementor_jws_menu_layout_menu_vertical .jws_nav_menu ul li .bt-sub-menu {
  background: transparent;
  border: none;
  font-size: 12px;
  width: 30px;
  height: 30px;
  padding: 0;
  display: block;
}
.elementor_jws_menu_layout_menu_vertical .jws_nav_menu ul li .bt-sub-menu:before {
  -webkit-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  transform: rotate(90deg);
  display: block;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  transition: 0.3s ease;
}
.elementor_jws_menu_layout_menu_vertical .jws_nav_menu ul li .sub-menu-dropdown {
  width: 100% !important;
  display: none;
  padding-left: 10px;
}
.elementor_jws_menu_layout_menu_vertical .jws_nav_menu ul li .sub-menu {
  width: 100% !important;
  display: none;
  padding-left: 10px;
}
.elementor_jws_menu_layout_menu_vertical .jws_nav_menu ul li .sub-menu li a i {
  display: none;
}
.elementor_jws_menu_layout_menu_vertical .jws_nav_menu ul li .sub-menu li:last-child a {
  border-bottom: 0 !important;
}
.elementor_jws_menu_layout_menu_vertical .jws_nav_menu ul li a {
  display: block;
  width: auto;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding: 10px 0;
}
.elementor_jws_menu_layout_menu_vertical .jws_nav_menu ul li.active > .bt-sub-menu:before {
  -webkit-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.jws_nav_dropdown .jws-cart-sidebar {
  display: none;
}
.jws_nav_dropdown .jws_nav_dropdown_inner {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  background: #ebebeb;
  z-index: 1000;
  width: 270px;
  overflow: auto;
  -webkit-transition: 0.35s ease;
  -o-transition: 0.35s ease;
  -ms-transition: 0.35s ease;
  -moz-transition: 0.35s ease;
  transition: 0.35s ease;
  -webkit-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  transform: translateX(-100%);
}
.jws_nav_dropdown.active {
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  width: 100% !important;
  height: 100%;
  -webkit-transition: background 0.3s ease;
  -o-transition: background 0.3s ease;
  -ms-transition: background 0.3s ease;
  -moz-transition: background 0.3s ease;
  transition: background 0.3s ease;
  z-index: 1000;
  top: 0;
  left: 0;
}
.jws_nav_dropdown.active .jws_nav_dropdown_inner {
  -webkit-transform: translateX(0%);
  -o-transform: translateX(0%);
  -ms-transform: translateX(0%);
  -moz-transform: translateX(0%);
  transform: translateX(0%);
}
@-webkit-keyframes fadeInLeftMenu {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-15px, 0, 0);
    transform: translate3d(-15px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeftMenu {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-15px, 0, 0);
    transform: translate3d(-15px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeftMenu {
  -webkit-animation-name: fadeInLeftMenu;
  animation-name: fadeInLeftMenu;
}
@-webkit-keyframes fadeInDownMenu {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0px, -20px, 0);
    transform: translate3d(0px, -20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDownMenu {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0px, -20px, 0);
    transform: translate3d(0px, -20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDownMenu {
  -webkit-animation-name: fadeInDownMenu;
  animation-name: fadeInDownMenu;
}
@-webkit-keyframes fadeInUpMenu {
  from {
    -webkit-transform: translate3d(0px, 0, 0);
    transform: translate3d(0px, 0, 0);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
    opacity: 1;
  }
}
@keyframes fadeInUpMenu {
  from {
    -webkit-transform: translate3d(0px, 0, 0);
    transform: translate3d(0px, 0, 0);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
    opacity: 1;
  }
}
.fadeInUpMenu {
  -webkit-animation-name: fadeInUpMenu;
  animation-name: fadeInUpMenu;
}

.jws_main_menu .sub-menu a::after {
  content: none;
}
.elementor-popup-modal .jws_main_menu .menu-item-has-children > a::after {
  content: none;
}
.bt-sub-menu:focus {
  outline: none;
}
.px-0 input {
  padding: 0px !important;
}
.header1 .elementor_jws_menu_layout_menu_horizontal.elementor-jws-menu-skin-skin1 .jws_main_menu .jws_nav_menu > ul > li:first-child > a,
.menu-amination .elementor_jws_menu_layout_menu_horizontal.elementor-jws-menu-skin-skin1 .jws_main_menu .jws_nav_menu > ul > li:first-child > a {
  padding-left: 10px !important;
}
.header1 .elementor_jws_menu_layout_menu_horizontal.elementor-jws-menu-skin-skin1 .jws_main_menu .jws_nav_menu > ul > li:last-child > a,
.menu-amination .elementor_jws_menu_layout_menu_horizontal.elementor-jws-menu-skin-skin1 .jws_main_menu .jws_nav_menu > ul > li:last-child > a {
  padding-right: 10px !important;
}
.header1 .jws_main_menu .jws_nav_menu > ul > li > a,
.menu-amination .jws_main_menu .jws_nav_menu > ul > li > a {
  position: relative;
}
.jws_main_menu .jws_nav_menu .jws_nav .current-menu-item a {
  position: relative;
}
.jws_main_menu .jws_nav_menu .jws_nav li:hover a::before {
  opacity: 1;
}
.jws_main_menu .jws_nav_menu .jws_nav li a {
  margin: 0px 16px;
  position: relative;
  line-height: 28px;
  z-index: 10;
}
@media only screen and (max-width: 1200px) {
  .jws_main_menu .jws_nav_menu .jws_nav li a {
    margin: 0px 10px;
  }
}
.jws_main_menu .jws_nav_menu .jws_nav li .sub-menu {
  margin: 0px 0px 0px -15px;
  box-shadow: 0 0 20px rgba(30, 22, 102, 0.05);
  border-radius: 5px;
  list-style-type: none;
}
.jws_main_menu .jws_nav_menu .jws_nav li .sub-menu li a {
  font-size: 16px;
  font-weight: 600;
  line-height: 40px;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  -ms-transition: 0.4s;
  -moz-transition: 0.4s;
  transition: 0.4s;
  position: relative;
}
.jws_main_menu .jws_nav_menu .jws_nav li .sub-menu li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 100%;
  opacity: 0;
  background-size: 200%;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}

.jws_main_menu .jws_nav_menu .jws_nav li .sub-menu li a:hover.elementor-widget-button a.elementor-button:hover,
.jws_main_menu .jws_nav_menu .jws_nav li .sub-menu li a:hover.elementor-widget-button a.elementor-button:hover {
  background-position: right center;
  transform: translateY(0);
}
.jws_main_menu .jws_nav_menu .jws_nav li .sub-menu li a:hover.elementor-widget-button a.elementor-button::before,
.jws_main_menu .jws_nav_menu .jws_nav li .sub-menu li a:hover.elementor-widget-button a.elementor-button::before {
  content: none;
}
.jws_main_menu .jws_nav_menu .jws_nav li .sub-menu li a:hover.elementor-widget-button a.elementor-button::after,
.jws_main_menu .jws_nav_menu .jws_nav li .sub-menu li a:hover.elementor-widget-button a.elementor-button::after {
  content: none;
}
.jws_main_menu .jws_nav_menu .jws_nav li .sub-menu li a:hover.elementor-widget-button a.elementor-button,
.jws_main_menu .jws_nav_menu .jws_nav li .sub-menu li a:hover.elementor-widget-button a.elementor-button i {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
  background-clip: text;
  -webkit-background-clip: text;

}
.jws_main_menu .jws_nav_menu .jws_nav li .sub-menu li a:hover.elementor-widget-button a.elementor-button:hover,
.jws_main_menu .jws_nav_menu .jws_nav li .sub-menu li a:hover.elementor-widget-button a.elementor-button i:hover {
  box-shadow: none;
}
.jws_main_menu .jws_nav_menu .jws_nav li .sub-menu li a:hover i:before {
  vertical-align: middle;
}
.jws_main_menu .jws_nav_menu .jws_nav li .sub-menu li a:hover::before {
  opacity: 1;
}
.jws_main_menu .jws_nav_menu .jws_nav li .sub-menu li.current-menu-item a {

  display: block;
  background-clip: text;
  -webkit-background-clip: text;

  background-size: 200%;
}
.jws_main_menu .jws_nav_menu .jws_nav li .sub-menu li.current-menu-item a.elementor-widget-button a.elementor-button:hover,
.jws_main_menu .jws_nav_menu .jws_nav li .sub-menu li.current-menu-item a.elementor-widget-button a.elementor-button:hover {
  background-position: right center;
  transform: translateY(0);
}
.jws_main_menu .jws_nav_menu .jws_nav li .sub-menu li.current-menu-item a.elementor-widget-button a.elementor-button::before,
.jws_main_menu .jws_nav_menu .jws_nav li .sub-menu li.current-menu-item a.elementor-widget-button a.elementor-button::before {
  content: none;
}
.jws_main_menu .jws_nav_menu .jws_nav li .sub-menu li.current-menu-item a.elementor-widget-button a.elementor-button::after,
.jws_main_menu .jws_nav_menu .jws_nav li .sub-menu li.current-menu-item a.elementor-widget-button a.elementor-button::after {
  content: none;
}
.jws_main_menu .jws_nav_menu .jws_nav li .sub-menu li.current-menu-item a.elementor-widget-button a.elementor-button,
.jws_main_menu .jws_nav_menu .jws_nav li .sub-menu li.current-menu-item a.elementor-widget-button a.elementor-button i {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
  background-clip: text;
  -webkit-background-clip: text;
  text-fill-color: transparent;
  -webkit-text-fill-color: transparent;
}
.jws_main_menu .jws_nav_menu .jws_nav li .sub-menu li.current-menu-item a.elementor-widget-button a.elementor-button:hover,
.jws_main_menu .jws_nav_menu .jws_nav li .sub-menu li.current-menu-item a.elementor-widget-button a.elementor-button i:hover {
  box-shadow: none;
}
.jws_main_menu .jws_nav_menu .jws_nav li .sub-menu li.current-menu-item a i:before {
  vertical-align: middle;
}
.jws_main_menu .jws_nav_menu .jws_nav li .sub-menu li.current-menu-item a:before {
  opacity: 1;
}
.jws_main_menu .jws_nav_menu .jws_nav li .sub-menu-dropdown {
  width: 690px !important;
  padding-top: 22px;
  margin-left: -270px;
  left: initial !important;
}
.jws_main_menu .jws_nav_menu .jws_nav li .sub-menu-dropdown .megasub {
  box-shadow: 0 0 20px rgba(30, 22, 102, 0.05);
  padding: 26px 20px 20px 35px;
  background: #ffffff;
  border-radius: 5px;
  list-style-type: none;
}
.jws_main_menu .jws_nav_menu .jws_nav li .sub-menu-dropdown .megasub li {
  margin-top: 7px;
}
.jws_main_menu .jws_nav_menu .jws_nav li .sub-menu-dropdown .megasub li a {
  margin: 0;
  font-size: 16px;
  line-height: 28px;
}
.jws_main_menu .jws_nav_menu .jws_nav li .sub-menu-dropdown .megasub li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 100%;
  opacity: 0;
  background-size: 200%;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.jws_main_menu .jws_nav_menu .jws_nav li .sub-menu-dropdown .megasub li a:hover::before {
  opacity: 1;
}
.jws_main_menu .jws_nav_menu .jws_nav li .sub-menu-dropdown .megasub li.current-menu-item a {
  padding-left: 23px;
  display: block;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200%;
}
.jws_main_menu .jws_nav_menu .jws_nav li .sub-menu-dropdown .megasub li.current-menu-item a::before {
  opacity: 1;
}
.jws_main_menu .jws_nav_menu .jws_nav li .sub-menu-dropdown .megasub li:not(:last-child) {
  padding-bottom: 7px;
}
.custom-divider {
  width: 30px !important;
  height: 2px;
}
.custom-divider .elementor-widget-container {
  height: 2px;
  background-size: 200%;
}
.custom-mega-menu-list li a {
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  -ms-transition: 0.4s;
  -moz-transition: 0.4s;
  transition: 0.4s;
  position: relative;
}
.custom-mega-menu-list li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 100%;
  opacity: 0;
  background-size: 200%;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.custom-mega-menu-list li a:hover::before {
  opacity: 1;
}
.elementor_jws_menu_layout_menu_horizontal .custom-mega-menu-list li a:hover {
  padding-left: 23px;
  background-clip: text;
  -webkit-background-clip: text;
  text-fill-color: transparent;
  -webkit-text-fill-color: transparent;
  background-size: 200%;
  display: block;
}
.elementor_jws_menu_layout_menu_horizontal .custom-mega-menu-list li a:hover.elementor-widget-button a.elementor-button:hover,
.elementor_jws_menu_layout_menu_horizontal .custom-mega-menu-list li a:hover.elementor-widget-button a.elementor-button:hover {
  background-position: right center;
  transform: translateY(0);
}
.elementor_jws_menu_layout_menu_horizontal .custom-mega-menu-list li a:hover.elementor-widget-button a.elementor-button::before,
.elementor_jws_menu_layout_menu_horizontal .custom-mega-menu-list li a:hover.elementor-widget-button a.elementor-button::before {
  content: none;
}
.elementor_jws_menu_layout_menu_horizontal .custom-mega-menu-list li a:hover.elementor-widget-button a.elementor-button::after,
.elementor_jws_menu_layout_menu_horizontal .custom-mega-menu-list li a:hover.elementor-widget-button a.elementor-button::after {
  content: none;
}
.elementor_jws_menu_layout_menu_horizontal .custom-mega-menu-list li a:hover.elementor-widget-button a.elementor-button,
.elementor_jws_menu_layout_menu_horizontal .custom-mega-menu-list li a:hover.elementor-widget-button a.elementor-button i {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
  background-clip: text;
  -webkit-background-clip: text;
  text-fill-color: transparent;
  -webkit-text-fill-color: transparent;
}
.elementor_jws_menu_layout_menu_horizontal .custom-mega-menu-list li a:hover.elementor-widget-button a.elementor-button:hover,
.elementor_jws_menu_layout_menu_horizontal .custom-mega-menu-list li a:hover.elementor-widget-button a.elementor-button i:hover {
  box-shadow: none;
}
.elementor_jws_menu_layout_menu_horizontal .custom-mega-menu-list li a:hover i:before {
  vertical-align: middle;
}
span#magic_line {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background: #000000;
  transition: 0.2s;
  bottom: -10px;
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition-property: all;
  transition-duration: 0.8s;
}
.menu-listing {
  padding: 0;
  margin-top: 20px;
}
@media only screen and (max-width: 1024px) {
  .menu-listing {
    margin-top: 0;
  }
}
/** Start Less Shortcode **/
@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
@keyframes pulse-border2 {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
    opacity: 0;
  }
}
.jws_video_popup .jws_video_popup_inner a {
  display: inline-block;
  position: relative;
  transition: 0s all;
}
.jws_video_popup .jws_video_popup_inner a .gradient_color i {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
  background-clip: text;
  -webkit-background-clip: text;
  text-fill-color: transparent;
  -webkit-text-fill-color: transparent;
}
.jws_video_popup .jws_video_popup_inner a .video_icon {
  font-size: 24px;
  height: 50px;
  line-height: 50px;
  width: 50px;
  text-align: center;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  position: relative;
  z-index: 1;
  display: block;
  transition: 0.3s all;
}
.jws_video_popup .jws_video_popup_inner a:after,
.jws_video_popup .jws_video_popup_inner a:before {
  background: #fff;
  position: relative;
  display: block;
  text-align: center;
  -webkit-border-radius: 100%;
  -ms-border-radius: 100%;
  border-radius: 100%;
  padding-left: 5px;
  opacity: 0.8;
}
.jws_video_popup .jws_video_popup_inner a:before {
  position: absolute;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  animation: pulse-border 1.5s ease-out infinite;
  -webkit-animation: pulse-border 1.5s ease-out infinite;
  content: "";
}
.jws_video_popup .jws_video_popup_inner a:after {
  position: absolute;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  animation: pulse-border 1.5s ease-out infinite;
  -webkit-animation: pulse-border 1.5s ease-out infinite;
  content: "";
}
@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.2);
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.2);
    opacity: 0;
  }
}
@keyframes pulse-border2 {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.4);
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.4);
  }
}
.mfp-fade-in-down {
  /* start state */
  /* animate in */
  /* animate out */
}
.mfp-fade-in-down .mfp-content > div {
  opacity: 0;
  transition: 0.5s ease;
  transform: translatey(-50px);
  -webkit-transform: translatey(-50px);
}
.mfp-fade-in-down.mfp-bg {
  opacity: 0;
  transition: 0.3s ease;
}
.mfp-fade-in-down.mfp-ready .mfp-content > div {
  opacity: 1;
  transform: translatey(0);
  -webkit-transform: translatey(0);
}
.mfp-fade-in-down.mfp-ready.mfp-bg {
  opacity: 0.8;
}
.mfp-fade-in-down.mfp-removing .mfp-content > div {
  transform: translatey(50px);
  -webkit-transform: translatey(50px);
  opacity: 0;
}
.mfp-fade-in-down.mfp-removing.mfp-bg {
  opacity: 0;
}
.jws-search-form {
  position: relative;
}
.jws-search-form input[type="text"],
.jws-search-form .searchsubmit {
  border: none;
  outline: none;
  cursor: pointer;
}
.jws-search-form .searchsubmit i {
  font-weight: bold;
}
.jws-search-form.expand .toggle-search {
  cursor: pointer;
}
.jws-search-form.expand .toggle-search i {
  font-size: 16px;
  font-weight: 600;
}
.jws-search-form.expand .searchform {
  top: -90px;
  position: fixed;
  width: 100vw;
  left: 0;
  right: 0;
  height: 90px;
  background: #ffff;
  opacity: 0;
  user-select: none;
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  align-items: center;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  transition-property: all;
  transition-duration: 0.5s;
  z-index: -1;
  box-shadow: 0 5px 20px 0 rgba(23, 44, 82, 0.1);
}
.jws-search-form.expand .searchform.active {
  opacity: 1;
  user-select: auto;
  z-index: 99999;
  top: 0;
}
.jws-search-form.expand .searchform .input-group {
  width: 90%;
  justify-content: center;
  align-items: center;
  margin: auto;
}
.jws-search-form.expand .searchform .input-group .searchsubmit {
  background-color: transparent;
  width: 50px;
  height: 50px;
  border: 1px solid;
  border-radius: 100%;
  cursor: pointer;
}
.jws-search-form.expand .searchform .input-group .search-input {
  display: inline-block;
  vertical-align: middle;
  float: left;
  width: 80%;
  padding: 20px 40px;
  margin: 0;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  outline: 0;
}
.jws-search-form.expand .searchform .input-group .close-search {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  position: relative;
  text-align: center;
  color: #ffffff;
  cursor: pointer;
  font-size: 28px;
}
.jws-search-form.expand .searchform .input-group .close-search i {
  line-height: 50px;
}
.jws-search-form.expand input:hover {
  cursor: pointer;
}
.jws-search-form.expand input:focus {
  cursor: text;
}
.jws-search-form.expand input::placeholder {
  opacity: 0.5;
  font-weight: bolder;
}
.jws-search-form.expand .searchsubmit {
  padding: 0;
}
@media only screen and (max-width: 767px) {
  .jws-search-form.expand .searchform .input-group .searchsubmit {
    width: 40px;
    height: 40px;
  }
  .jws-search-form.expand .searchform .input-group .search-input {
    width: 70%;
    padding: 20px 9px;
  }
  .jws-search-form.expand .searchform .input-group .close-search {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  .jws-search-form.expand .searchform .input-group .close-search i {
    line-height: 40px;
  }
}
.jws-search-form.classic input {
  width: 100%;
  padding: 8px 23px;
  border-radius: 30px;
  background-color: #414141;
  font-size: 12px;
}
.jws-search-form.classic input[type="text"],
.jws-search-form.classic input[type="text"]::-webkit-input-placeholder {
  color: #fefefe;
  font-weight: 200;
  letter-spacing: 0.5px;
  font-style: italic;
}
.jws-search-form.classic .searchsubmit {
  font-size: 16px;
  color: #fefefe;
  background: transparent;
}
.jws_account .no_user .jws_text {
  padding: 10px 33px 10px 33px;
  display: inline-block;
  border-radius: 100px;
  background-size: 200%;
  -webkit-transition: 0.7s;
  -o-transition: 0.7s;
  -ms-transition: 0.7s;
  -moz-transition: 0.7s;
  transition: 0.7s;
}
.jws_account .no_user .jws_text:hover {
  background-position: right center;
  box-shadow: 15px 8px 50px rgba(13, 56, 53, 0.2);
}
.jws_account .no_user .jws_a_icon {
  display: none;
}
@media only screen and (max-width: 767px) {
  .jws_account .no_user .jws_text {
    display: none;
  }
  .jws_account .no_user .jws_a_icon {
    display: block;
  }
}
.jws_account .has_user i {
  font-weight: 700;
}
.jws_account .has_user .text_position_left {
  padding-right: 4px;
}
.jws_account .has_user .text_position_right {
  padding-left: 4px;
}
.jws_account .has_user::after {
  content: '';
  width: 100%;
  position: absolute;
  height: 50px;
  top: 0;
  left: 0;
}
.jws_account .account-menu-dropdown {
  position: absolute;
  top: 100%;
  margin: 20px 0px 0px -15px;
  box-shadow: 0 0 20px rgba(30, 22, 102, 0.05);
  border-radius: 5px;
  background: #ffffff;
  width: 210px;
  right: 0;
  padding: 23px 0px 30px 20px;
  list-style-type: none;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  -webkit-transition: all .3s;
  transition: all .3s;
  z-index: 99;
  transform: translatey(25px);
  -webkit-transform: translatey(25px);
}
@media (max-width: 1024px) {
  .jws_account .account-menu-dropdown {
    display: none;
  }
}
.jws_account .account-menu-dropdown a {
  font-size: 16px;
  font-weight: 600;
  line-height: 40px;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  -ms-transition: 0.4s;
  -moz-transition: 0.4s;
  transition: 0.4s;
  position: relative;
}
.jws_account .account-menu-dropdown a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 100%;
  opacity: 0;
  background-size: 200%;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.jws_account .account-menu-dropdown a:hover {
  padding-left: 23px;
  background-clip: text;
  -webkit-background-clip: text;
  text-fill-color: transparent;
  -webkit-text-fill-color: transparent;
  background-size: 140% !important;
}
.jws_account .account-menu-dropdown a:hover::before {
  opacity: 1;
}
.jws_account:hover .account-menu-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translatey(0px);
  -webkit-transform: translatey(0px);
}
.jws_account.layout_2 .no_user .jws_text {
  padding: 0;
}
.elementor-widget-jws-services .elementor-service {
  border-radius: 10px;
  padding: 10px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 100%;
}
.elementor-widget-jws-services .elementor-service .icon-service img {
  width: auto;
  height: 103px;
}
.elementor-widget-jws-services .elementor-service .services-title-excerpt {
  padding-top: 41px;
}
@media only screen and (max-width: 768px) {
  .elementor-widget-jws-services .elementor-service .services-title-excerpt {
    padding-top: 20px;
  }
}
.elementor-widget-jws-services .elementor-service .services-title-excerpt .post-title {
  margin-bottom: 21px;
}
.elementor-widget-jws-services .elementor-service .services-title-excerpt .post-title a {
  font-size: 20px;
  line-height: 28px;
}
.elementor-widget-jws-services .elementor-service .services-title-excerpt .post-decription {
  font-size: 15px;
  margin-bottom: 22px;
}
.elementor-widget-jws-services .elementor-service .services-title-excerpt .readmore {
  opacity: 1;
}
.elementor-widget-jws-services .elementor-service .services-title-excerpt .readmore a {
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  -ms-transition: 0.4s;
  -moz-transition: 0.4s;
  transition: 0.4s;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}
.elementor-widget-jws-services .elementor-service .services-title-excerpt .readmore a i {
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  -ms-transition: 0.4s;
  -moz-transition: 0.4s;
  transition: 0.4s;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media only screen and (min-width: 769px) {
  .elementor-widget-jws-services .elementor-service:hover,
  .elementor-widget-jws-services .elementor-service.active {
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    -ms-transition: 0.4s;
    -moz-transition: 0.4s;
    transition: 0.4s;
    box-shadow: 5px 10px 20px 0px rgba(10, 53, 70, 0.1);
    background: #ffffff;
  }
  .elementor-widget-jws-services .elementor-service:hover .services-title-excerpt .readmore,
  .elementor-widget-jws-services .elementor-service.active .services-title-excerpt .readmore {
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    -ms-transition: 0.4s;
    -moz-transition: 0.4s;
    transition: 0.4s;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 1;
  }
  .elementor-widget-jws-services .elementor-service:hover::after,
  .elementor-widget-jws-services .elementor-service.active::after {
    opacity: 1;
    right: -31px;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    -ms-transition: 0.4s;
    -moz-transition: 0.4s;
    transition: 0.4s;
  }
  .elementor-widget-jws-services .elementor-service .services-title-excerpt .readmore {
    opacity: 0;
  }
}
.elementor-widget-jws-services .layout-service3 .elementor-service {
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  -ms-transition: 0.4s;
  -moz-transition: 0.4s;
  transition: 0.4s;
  min-height: 487px;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 100%;
}
.elementor-widget-jws-services .layout-service3 .elementor-service .services-title-excerpt {
  padding-top: 50px;
}
.elementor-widget-jws-services .layout-service3 .elementor-service .services-title-excerpt .post-title {
  margin-bottom: 18px;
}
.elementor-widget-jws-services .layout-service3 .elementor-service .services-title-excerpt .post-title a {
  font-size: 20px;
  line-height: 28px;
}
.elementor-widget-jws-services .layout-service3 .elementor-service .services-title-excerpt .post-decription {
  font-size: 15px;
  margin-bottom: 22px;
}
@media only screen and (max-width: 768px) {
  .elementor-widget-jws-services .layout-service3 .elementor-service {
    min-height: auto;
  }
  .elementor-widget-jws-services .layout-service3 .elementor-service .services-title-excerpt {
    padding-top: 20px;
  }
  .elementor-widget-jws-services .layout-service3 .elementor-service .services-title-excerpt .post-decription {
    margin-bottom: 10px;
  }
}
@media only screen and (min-width: 769px) {
  .elementor-widget-jws-services .layout-service3 .elementor-service.active {
    margin-top: -8px;
  }
  .elementor-widget-jws-services .layout-service3 .elementor-service.active .services-title-excerpt .readmore {
    opacity: 1;
  }
  .elementor-widget-jws-services .layout-service3 .elementor-service.active::after {
    opacity: 1;
    right: -31px;
  }
  .elementor-widget-jws-services .layout-service3 .elementor-service .services-title-excerpt .readmore {
    opacity: 0;
  }
}
.elementor-widget-jws-services .layout-service1 .elementor-service {
  min-height: 467px;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  -ms-transition: 0.4s;
  -moz-transition: 0.4s;
  transition: 0.4s;
  height: 100%;
}
@media only screen and (min-width: 769px) {
  .elementor-widget-jws-services .layout-service1 .elementor-service:hover,
  .elementor-widget-jws-services .layout-service1 .elementor-service.active {
    margin-top: -35px;
  }
  .elementor-widget-jws-services .layout-service1 .elementor-service:hover .services-title-excerpt .readmore,
  .elementor-widget-jws-services .layout-service1 .elementor-service.active .services-title-excerpt .readmore {
    opacity: 1;
  }
  .elementor-widget-jws-services .layout-service1 .elementor-service:hover::after,
  .elementor-widget-jws-services .layout-service1 .elementor-service.active::after {
    opacity: 1;
    right: -31px;
  }
  .elementor-widget-jws-services .layout-service1 .elementor-service .services-title-excerpt .readmore {
    opacity: 1;
  }
}
.elementor-widget-jws-services .layout-service1 .elementor-service::after {
  content: "";
  background: url(http://ailab.jwsuperthemes.com/wp-content/themes/AILab/assets/images/fill.png);
  position: absolute;
  background-position: center right;
  bottom: 20px;
  right: 0;
  z-index: -1;
  opacity: 0;
  width: 126px;
  height: 129px;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  -ms-transition: 0.4s;
  -moz-transition: 0.4s;
  transition: 0.4s;
}
.elementor-widget-jws-services .layout-service2 {
  align-items: flex-end;
}
.elementor-widget-jws-services .layout-service2 .service-item:nth-child(2n) .elementor-service {
  margin-top: 20px;
}
.elementor-widget-jws-services .layout-service2 .service-item:first-child .elementor-service {
  margin-top: 200px;
}
.elementor-widget-jws-services .layout-service2 .elementor-service {
  box-shadow: 0px 0px 20px 0px rgba(40, 134, 172, 0.08);
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  -ms-transition: 0.4s;
  -moz-transition: 0.4s;
  transition: 0.4s;
}
.elementor-widget-jws-services .layout-service2 .elementor-service .services-title-excerpt .title-and-icon {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.elementor-widget-jws-services .layout-service2 .elementor-service .services-title-excerpt .btn-service {
  display: flex;
  justify-content: space-between;
}
.elementor-widget-jws-services .layout-service2 .elementor-service .services-title-excerpt .btn-service .more_link_text {
  position: relative;
  z-index: -1;
  display: inline-block;
  vertical-align: middle;
  -webkit-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
  opacity: 0;
  -webkit-transition: visibility 0.4s ease, margin-left 0.4s ease-out, text-indent 0.4s ease-out, color 0.4s ease, opacity 0.4s ease;
  -ms-transition: visibility 0.4s ease, margin-left 0.4s ease-out, text-indent 0.4s ease-out, color 0.4s ease, opacity 0.4s ease;
  -o-transition: visibility 0.4s ease, margin-left 0.4s ease-out, text-indent 0.4s ease-out, color 0.4s ease, opacity 0.4s ease;
  transition: visibility 0.4s ease, margin-left 0.4s ease-out, text-indent 0.4s ease-out, color 0.4s ease, opacity 0.4s ease;
  text-indent: -100px;
  margin-left: 0;
  visibility: hidden;
}
.elementor-widget-jws-services .layout-service2 .elementor-service .services-title-excerpt .btn-service .services-number {
  font-size: 80px;
  color: #e5e5e5;
  line-height: 60px;
  font-weight: bold;
}
.elementor-widget-jws-services .layout-service2 .elementor-service:hover .services-title-excerpt .btn-service .more_link_text {
  opacity: 1;
  text-indent: 0;
  margin-left: 12px;
  visibility: visible;
  -webkit-transition: visibility 0.4s ease, margin-left 0.4s ease-out, text-indent 0.4s ease-out, color 0.4s ease, opacity 0.4s ease;
  -ms-transition: visibility 0.4s ease, margin-left 0.4s ease-out, text-indent 0.4s ease-out, color 0.4s ease, opacity 0.4s ease;
  -o-transition: visibility 0.4s ease, margin-left 0.4s ease-out, text-indent 0.4s ease-out, color 0.4s ease, opacity 0.4s ease;
  transition: visibility 0.4s ease, margin-left 0.4s ease-out, text-indent 0.4s ease-out, color 0.4s ease, opacity 0.4s ease;
}
.elementor-widget-jws-services .layout-service4 .elementor-service {
  overflow: hidden;
  display: block;
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.07000000000000001);
  min-height: 300px;
  background: #ffffff;
  border-radius: 5px;
  padding: 29px 36px 20px 36px;
  transition: 0.4s;
}
.elementor-widget-jws-services .layout-service4 .elementor-service .icon-service img {
  width: auto;
  height: 70px;
}
.elementor-widget-jws-services .layout-service4 .elementor-service .services-title-excerpt {
  padding-top: 28px;
}
.elementor-widget-jws-services .layout-service4 .elementor-service:before {
  position: absolute;
  right: -4px;
  bottom: -15px;
  width: 56px;
  z-index: 999999;
  height: 56px;
  border-radius: 50%;
  box-shadow: -24px -17px 0px 58px rgba(86, 52, 52, 0.12);
  background: rgba(0, 0, 0, 0.11);
  content: "";
  opacity: 0;
  -webkit-transform: scale3d(0.5, 0.5, 1);
  transform: scale3d(0.5, 0.5, 1);
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
}
.elementor-widget-jws-services .layout-service4 .elementor-service:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 5px;
  z-index: -1;
  -webkit-transition: -webkit-transform 1.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 1.5s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: bottom right;
  transform-origin: 45deg;
}
.elementor-widget-jws-services .layout-service4 .elementor-service:hover {
  background: transparent;
}
.elementor-widget-jws-services .layout-service4 .elementor-service:hover .services-title-excerpt .post-title a {
  color: #ffffff;
}
.elementor-widget-jws-services .layout-service4 .elementor-service:hover .services-title-excerpt .post-decription {
  color: #ffffff;
}
.elementor-widget-jws-services .layout-service4 .elementor-service:hover:after {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
.elementor-widget-jws-services .layout-service4 .elementor-service:hover:before {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}
.elementor-widget-jws-services .layout-service4 .slick-dots {
  width: 100%;
}
.elementor-widget-jws-services .layout-service5 .elementor-service {
  padding: 0;
  display: block;
}
.elementor-widget-jws-services .layout-service5 .elementor-service:hover {
  box-shadow: none;
}
.elementor-widget-jws-services .layout-service5 .elementor-service .services-title-excerpt {
  padding-top: 28px;
}
.elementor-widget-jws-services .layout-service5 .elementor-service .icon-service svg {
  fill: #753a88;
  width: 88px;
  height: 88px;
}
@media only screen and (max-width: 767px) {
  .elementor-widget-jws-services .layout-service5 .elementor-service {
    padding-bottom: 30px;
  }
  .elementor-widget-jws-services .layout-service5 .elementor-service .services-title-excerpt {
    padding-top: 15px;
  }
}
body[data-elementor-device-mode="mobile"] .elementor-widget-jws-services .service-item .elementor-service {
  min-height: 100%;
}
body[data-elementor-device-mode="mobile"] .elementor-widget-jws-services .service-item .elementor-service .post-title {
  margin-bottom: 12px;
}
body[data-elementor-device-mode="mobile"] .elementor-widget-jws-services .service-item .elementor-service .post-decription {
  margin-bottom: 10px;
}
.jws-progress {
  text-align: center;
}
.jws-progress .progress-item {
  position: relative;
  display: inline-block;
  margin: 0 21px;
}
@media only screen and (min-width: 767px) {
  .jws-progress .progress-item:first-child {
    margin-left: 0;
  }
  .jws-progress .progress-item:last-child {
    margin-right: 0;
  }
}
.jws-progress :root {
  background: #fff;
}
.jws-progress #procent {
  display: block;
  position: absolute;
  left: 50%;
  text-align: center;
  top: 50%;
  font-size: 14px;
  transform: translate(-50%, -50%);
  color: #1e1666;
}
.jws-progress #procent p {
  font-size: 30px;
  display: block;
  font-weight: bold;
  color: #141eae;
  margin: 0;
}
.jws-progress #procent p::after {
  content: "%";
}
/* Off-Canvas Module CSS */
.jws-off-canvas-overlay {
  overflow: hidden !important;
}
.jws-offcanvas-enabled body {
  width: 100%;
}
.jws-offcanvas {
  position: fixed;
  width: 0;
  margin: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  height: 100vh;
  overflow: auto;
  background-color: #ffffff;
  background: #ffffff;
  visibility: visible;
  z-index: 99999;
}
.jws-offcanvas .content-item {
  margin-bottom: 15px;
}
.jws-offcanvas .content-item a {
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
}
.jws-offcanvas-animating,
.jws-offcanvas,
.jws-offcanvas-overlay {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.jws-offcanvas::-webkit-scrollbar {
  display: none;
}
.jws-offcanvas-trigger.jws-elementor-button {
  display: block;
}
.elementor-editor-active .jws-offcanvas-trigger-align-floating .jws-offcanvas-action-wrap .elementor-button-text,
.elementor-editor-preview .jws-offcanvas-trigger-align-floating .jws-offcanvas-action-wrap .elementor-button-text {
  display: unset;
}
.jws-offcanvas-icon-bg {
  display: inline-block;
}
/* 	Normal Box shadow */
.jws-offcanvas-shadow-normal.position-at-right.jws-offcanvas-show,
.jws-offcanvas-shadow-normal.position-at-left.jws-offcanvas-show {
  -webkit-box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.2);
}
/* 	Inset Box shadow */
.jws-offcanvas-shadow-inset.position-at-right.jws-offcanvas-show {
  -webkit-box-shadow: inset 7px 0px 8px -9px rgba(0, 0, 0, 0.5);
  box-shadow: inset 7px 0px 8px -9px rgba(0, 0, 0, 0.5);
}
.jws-offcanvas-shadow-inset.position-at-left.jws-offcanvas-show {
  -webkit-box-shadow: inset -7px 0px 8px -9px rgba(0, 0, 0, 0.5);
  box-shadow: inset -7px 0px 8px -9px rgba(0, 0, 0, 0.5);
}
.jws-offcanvas-action-wrap .jws-offcanvas-action .jws-offcanvas-icon {
  text-align: center;
}
/* Floating Position */
.jws-offcanvas-action-wrap .jws-button-wrapper .jws-offcanvas-action-alignment-left,
.jws-offcanvas-action-wrap .jws-offcanvas-icon-wrap .jws-offcanvas-action-alignment-left {
  top: 50%;
  left: 0em;
  right: auto;
  position: fixed;
  z-index: 999;
}
.jws-offcanvas-action-wrap .jws-button-wrapper .jws-offcanvas-action-alignment-right,
.jws-offcanvas-action-wrap .jws-offcanvas-icon-wrap .jws-offcanvas-action-alignment-right {
  top: 50%;
  right: 0em;
  left: auto;
  position: fixed;
  z-index: 999;
}
.jws-offcanvas-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  visibility: hidden;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  opacity: 0;
}
.jws-offcanvas-parent-wrapper .jws-offcanvas-overlay {
  cursor: pointer;
}
.jws-offcanvas-content {
  position: relative;
  width: 100%;
  padding: 35px 25px 90px 25px;
}
.jws-offcanvas img {
  display: block;
}
.jws-offcanvas .logo-canvas img {
  max-width: 100%;
  height: 50px;
}
.jws-offcanvas-full {
  pointer-events: none;
  min-height: 100%;
}
.jws-offcanvas-action {
  cursor: pointer;
}
.jws-offcanvas-full .jws-offcanvas-close {
  pointer-events: auto;
}
.jws-offcanvas-show,
.jws-offcanvas-show .jws-offcanvas-close,
.jws-offcanvas-show + .jws-offcanvas-close {
  visibility: visible;
}
.jws-offcanvas-close-icon-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
}
/* Menu in Off-Canvas style */
.jws-offcanvas-content .jws-offcanvas-menu,
.jws-offcanvas-content .jws-offcanvas-menu .sub-menu {
  list-style: none;
}
.jws-offcanvas-content .jws-offcanvas-menu li a,
.jws-offcanvas-content .jws-offcanvas-menu .sub-menu li a {
  padding: 5px 0px 5px 0px;
  display: block;
}
.jws-offcanvas-content .jws-offcanvas-menu {
  padding-left: 0px;
}
.jws-offcanvas-content .jws-offcanvas-menu .menu-item a:hover,
.jws-offcanvas-content .jws-offcanvas-menu .menu-item a:focus {
  -webkit-transition: background 150ms linear, color 150ms linear;
  transition: background 150ms linear, color 150ms linear;
}
/* Inside Close Icon Position */
.jws-offcanvas-close-icon-wrapper .jws-offcanvas-close-icon,
.jws-offcanvas-close-icon-wrapper .jws-offcanvas-close-icon {
  cursor: pointer;
  fill: #000000;
  display: block;
}
.jws-offcanvas-close-icon-wrapper .jws-offcanvas-close {
  display: block;
  float: right;
  padding: 8px;
  -webkit-border-radius: 0px;
  border-radius: 0px;
  cursor: pointer;
  vertical-align: middle;
  font-size: 0px;
  text-align: center;
}
.jws-offcanvas-close-icon-wrapper.jws-offcanvas-close-icon-position-left-top {
  left: 0;
  right: auto;
}
.jws-offcanvas-close-icon-wrapper.jws-offcanvas-close-icon-position-right-top {
  right: 20px;
  top: 13px;
  left: auto;
}
/* Overlay */
.jws-offcanvas-show ~ .jws-offcanvas-overlay {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=1)";
  visibility: visible;
  pointer-events: visible;
}
.jws-offcanvas-close {
  z-index: 99999;
}
.fa-times-thin:before {
  content: "\00d7";
}
@media (min-width: 1025px) {
  .jws-offcanvas-parent-wrapper.jws-offcanvas-hide-desktop {
    display: none;
  }
}
@media (max-width: 1024px) {
  .jws-offcanvas-parent-wrapper.jws-offcanvas-hide-tablet {
    display: none;
  }
  .jws-offcanvas-enabled {
    min-height: 100vh;
  }
}
@media (max-width: 1024px) {
  .jws-offcanvas-parent-wrapper.jws-offcanvas-hide-phone {
    display: none;
  }
  .jws-offcanvas-enabled {
    min-height: 100vh;
  }
}
.jws-offcanvas .elementor_jws_menu_layout_menu_vertical .jws_nav_menu > ul > li > a {
  margin: 10px 0;
}
.jws_header .elementor-widget-Offcanvas .jws-offcanvas .jws-offcanvas-menu li.current-menu-item > a,
.jws_header .elementor-widget-Offcanvas .jws-offcanvas .jws-offcanvas-menu .current-menu-parent > a,
.jws_header .jws_header .jws-offcanvas .jws-offcanvas-menu .current-menu-parent.menu-item > a,
.jws_header .elementor-widget-Offcanvas .jws-offcanvas-menu .menu-item a:hover,
.jws_header .elementor-widget-Offcanvas .jws-offcanvas-menu .custom-mega-menu-list li a:hover,
.jws_header .elementor-widget-Offcanvas .jws_nav_menu .sub-menu .menu-item a:hover,
.jws_header .elementor-widget-Offcanvas .jws-offcanvas .jws-offcanvas-menu .menu-item .sub-menu li.current-menu-item > a {
  color: #753a88;
}
.jws_header .elementor-widget-Offcanvas .jws-offcanvas .jws-offcanvas-menu li.current-menu-item > a::before,
.jws_header .elementor-widget-Offcanvas .jws-offcanvas .jws-offcanvas-menu .current-menu-parent > a::before,
.jws_header .jws_header .jws-offcanvas .jws-offcanvas-menu .current-menu-parent.menu-item > a::before,
.jws_header .elementor-widget-Offcanvas .jws-offcanvas-menu .menu-item a:hover::before,
.jws_header .elementor-widget-Offcanvas .jws-offcanvas-menu .custom-mega-menu-list li a:hover::before,
.jws_header .elementor-widget-Offcanvas .jws_nav_menu .sub-menu .menu-item a:hover::before,
.jws_header .elementor-widget-Offcanvas .jws-offcanvas .jws-offcanvas-menu .menu-item .sub-menu li.current-menu-item > a::before {
  content: none;
}
.elementor-widget-Offcanvas .jws-offcanvas-menu .menu-item a {
  font-size: 17px;
  font-weight: 700;
}
.elementor-widget-Offcanvas .jws-offcanvas .jws-offcanvas-menu .menu-item .sub-menu a,
.elementor-widget-Offcanvas .jws-offcanvas .jws-offcanvas-menu .megasub .menu-listing a {
  font-size: 16px;
  font-weight: 500;
}
.layout-case_study2 {
  margin-left: 0;
  margin-right: 0;
  padding: 0;
}
.layout-case_study2 .case_study-item {
  padding: 0;
}
.layout-case_study2 .case_study-item .elementor-case_study {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.layout-case_study2 .case_study-item .elementor-case_study .img-case_study {
  width: 100%;
  overflow: hidden;
}
.layout-case_study2 .case_study-item .elementor-case_study .img-case_study .case-study-image {
  -webkit-transform: scale(1.06);
  -moz-transform: scale(1.06);
  transform: scale(1.06);
  -webkit-transition: -webkit-transform 0.8s ease-out;
  -moz-transition: -moz-transform 0.8s ease-out;
  transition: transform 0.8s ease-out;
}
.layout-case_study2 .case_study-item .elementor-case_study .btn-block {
  position: absolute;
  left: 40px;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 100%;
  cursor: pointer;
  /* margin: auto; */
  display: flex;
  font-size: 18px;
  outline: none;
  justify-content: center;
  align-items: center;
  top: 40px;
  z-index: 999;
  color: #ffffff;
  transition: 0.4s;
  opacity: 0;
}
@media only screen and (max-width: 767px) {
  .layout-case_study2 .case_study-item .elementor-case_study .btn-block {
    left: 10px;
    width: 40px;
    top: 20px;
    height: 40px;
    font-size: 14px;
  }
}
.layout-case_study2 .case_study-item .elementor-case_study .case_study-title-excerpt {
  opacity: 0;
  position: absolute;
  padding: 40px;
  bottom: 0;
  z-index: 1;
  transition: 0.4s;
}
@media only screen and (max-width: 767px) {
  .layout-case_study2 .case_study-item .elementor-case_study .case_study-title-excerpt {
    padding: 10px;
  }
}
.layout-case_study2 .case_study-item .elementor-case_study .case_study-title-excerpt .post-title {
  font-size: 30px;
  line-height: 36px;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .layout-case_study2 .case_study-item .elementor-case_study .case_study-title-excerpt .post-title {
    font-size: 18px;
    line-height: 28px;
  }
}
.layout-case_study2 .case_study-item .elementor-case_study .case_study-title-excerpt .post-category {
  margin-bottom: 11px;
  display: block;
}
.layout-case_study2 .case_study-item .elementor-case_study .case_study-title-excerpt .post-category a {
  color: #ffffff;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 16px;
}
.layout-case_study2 .case_study-item .elementor-case_study:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  opacity: 0;
  z-index: 1;
  visibility: visible;
  pointer-events: none;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  transition: 0.4s;
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
}
.layout-case_study2 .case_study-item .elementor-case_study:hover img.case-study-image {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  transform: scale(1);
}
.layout-case_study2 .case_study-item .elementor-case_study:hover .btn-block {
  opacity: 1;
  transition: 0.4s;
}
.layout-case_study2 .case_study-item .elementor-case_study:hover .case_study-title-excerpt {
  opacity: 1;
  transition: 0.4s;
}
.layout-case_study2 .case_study-item .elementor-case_study:hover:before {
  opacity: 0.7;
  transition: 0.4s;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}
#case-study-gallery {
  width: 60%;
  margin: auto;
}
#case-study-gallery .mfp-close {
  color: #ffffff;
}
.popup-image-gallery {
  margin: auto;
}
.popup-image-gallery .gallery-popup {
  margin: auto;
}
.popup-image-gallery .close-btn {
  position: absolute;
  top: 50px;
  color: #ffffff;
  font-size: 30px;
  right: 50px;
  z-index: 999999999;
  outline: none;
}
.popup-image-gallery .gallery-listing {
  margin: auto;
}
.popup-image-gallery .gallery-listing .slick-list,
.popup-image-gallery .gallery-listing .slick-track {
  position: relative;
  height: 100vh;
}
.popup-image-gallery .gallery-listing .main-image {
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  overflow: hidden;
}
.popup-image-gallery .gallery-listing .slick-slide img {
  display: block;
  margin: auto;
}
.popup-image-gallery .gallery-listing .slick-arrow {
  position: absolute;
  top: 50%;
  background: none;
  z-index: 9999999;
  border: none;
  color: #ffffff;
  font-size: 20px;
  outline: none;
}
.popup-image-gallery .gallery-listing .slick-arrow.slick-prev {
  left: -140px;
}
.popup-image-gallery .gallery-listing .slick-arrow.slick-next {
  right: -140px;
}
.popup-image-gallery.active {
  display: block;
  height: 100vh;
  background: #0000006e;
  width: 100vw;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 999999;
  left: 0;
}
.custom-pricing-tab-home3.custom-pricing-tab .elementor-tabs .elementor-tabs-wrapper .elementor-tab-title {
  position: relative;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition: color 1000ms;
  transition: color 1000ms;
}
.custom-pricing-tab-home3.custom-pricing-tab .elementor-tabs .elementor-tabs-wrapper .elementor-tab-title:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2098d1;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition: 300ms ease-out;
  transition: 300ms ease-out;
}
.jws-price-table {
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 400px;
  margin: auto;
}
.jws-price-table .jws-price-table-inner {
  background: #ffffff;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  padding-bottom: 86px;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  box-shadow: 2.5px 4.33px 27px 3px rgba(40, 134, 172, 0.05);
  width: 100%;
}
.jws-price-table .jws-price-spacing,
.jws-price-table .jws-price-spacing1,
.jws-price-table .jws-price-spacing2 {
  height: 0.1px;
  -moz-transition: height 0.2s linear;
  -o-transition: height 0.2s linear;
  -webkit-transition: height 0.2s linear;
  transition: height 0.2s linear;
}
.jws-price-table .jws-price-table__header {
  background-position: -126px -189px;
  padding: 68px 40px 6px 55px;
  width: 100%;
  transition: 0.4s;
  background-repeat: no-repeat;
}
.jws-price-table .jws-price-table__ribbon-inner {
  background-size: 200%;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 3px;
}
.jws-price-table .jws-currency--before {
  margin-right: -7px;
}
.jws-price-table .jws-price-table__price_image {
  display: inline-flex;
  padding-left: 55px;
  padding-right: 40px;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 21px;
  align-items: flex-end;
}
@media (max-width: 1023px) and (min-width: 768px) {
  .jws-price-table .jws-price-table__price_image {
    padding: 0 20px;
  }
}
@media (max-width: 400px) {
  .jws-price-table .jws-price-table__price_image {
    padding: 0 15px;
  }
}
.jws-price-table .jws-price-table__price_image .jws-price-table__price {
  transition: 0.4s;
}
.jws-price-table .jws-price-table__price_image .jws-price-table__image {
  position: relative;
}
.jws-price-table .jws-price-table__price_image .jws-price-table__image .jws-price-first-image {
  position: absolute;
  bottom: 34px;
  right: 21px;
}
.jws-price-table .jws-price-table__price_image .jws-price-table__image .jws-price-first-image img {
  min-width: 63px;
}
.jws-price-table .jws-price-table__features-list {
  list-style-type: none;
  padding: 10px 55px;
  margin-bottom: 10px;
}
@media (max-width: 1023px) and (min-width: 768px) {
  .jws-price-table .jws-price-table__features-list {
    padding: 0 20px;
  }
}
@media (max-width: 400px) {
  .jws-price-table .jws-price-table__features-list {
    padding: 0 15px;
  }
}
.jws-price-table .jws-price-table__features-list li {
  padding: 9px 0;
}
.jws-price-table .jws-price-table__features-list li i {
  font-size: 14px;
  margin-right: 19px;
}
.jws-price-table .jws-price-table__footer {
  text-align: center;
  padding: 10px 0;
}
@media (max-width: 1023px) and (min-width: 768px) {
  .jws-price-table .jws-price-table__footer {
    padding: 0 20px;
  }
}
@media (max-width: 400px) {
  .jws-price-table .jws-price-table__footer {
    padding: 0 15px;
  }
}
.jws-price-table .jws-price-table__footer .jws-price-table__button {
  position: relative;
  font-size: 16px;
  z-index: 1;
  display: inline-block;
  padding: 0 38px;
  height: 50px;
  line-height: 48px;
  background-size: 25px 50px;
  background-size: 200%;
  border: 2px solid transparent;
  background-clip: padding-box, border-box;
  background-origin: padding-box, border-box;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
.jws-price-table .jws-price-table__footer .jws-price-table__button::before {
  background-size: 200%;
  position: absolute;
  content: "";
  top: 0;
  border-radius: 30px;
  left: -2px;
  z-index: -1;
  width: calc(100% + 4px);
  height: 100%;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
.jws-price-table .jws-price-table__footer .jws-price-table__button::after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: -9px;
  height: 110%;
  left: 50%;
  width: 90%;
  transform: translateX(-50%);
  opacity: 0;
  border-radius: 50px;
  background: inherit;
  -webkit-filter: blur(10px);
  filter: blur(10px);
  transition: all 0.5s;
  background-position: right center;
}
.jws-price-table.jws-price-table-layout2 .jws-price-table-inner {
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.jws-price-table.jws-price-table-layout2 {
  border-radius: 0;
  text-align: center;
}
.jws-price-table.jws-price-table-layout2 .jws-price-table__ribbon {
  top: 0;
  position: absolute;
  width: 100%;
}
.jws-price-table.jws-price-table-layout2 .jws-price-table__header {
  padding: 72px 38px 19px 38px;
}
.jws-price-table.jws-price-table-layout2 .jws-price-table__price .jws-price-table__period {
  display: block;
  font-size: 14px;
}
.jws-price-table.jws-price-table-layout2 .jws-price-table__price_image {
  justify-content: center;
  margin-bottom: 16px;
}
.jws-price-table.jws-price-table-layout2 .jws-price-table__features-list {
  text-align: left;
  padding: 10px;
  margin-bottom: 15px;
}
.jws-price-table.jws-price-table-layout2 .jws-price-table__features-list li {
  padding: 0;
}
.jws-price-table.jws-price-table-layout2 .jws-price-table__features-list li span {
  font-size: 15px;
  font-weight: 600;
}
.jws-price-table.jws-price-table-layout2 .jws-price-table__footer .jws-price-table__button {
  background-color: #fff;
}
.jws-price-table:hover .jws-price-table__button,
.jws-price-table.active .jws-price-table__button {
  position: relative;
  background-position: right center;
  transform: translateY(-5px);
}
.jws-price-table:hover .jws-price-table__button::after,
.jws-price-table.active .jws-price-table__button::after {
  opacity: 0.4;
}
.jws-price-table:hover .jws-price-table__button::before,
.jws-price-table.active .jws-price-table__button::before {
  background-position: right center;
}
.jws-price-table:hover.jws-price-table-layout1 .jws-price-table__footer .jws-price-table__button,
.jws-price-table.active.jws-price-table-layout1 .jws-price-table__footer .jws-price-table__button {
  color: #fff;
}
.jws-price-table:hover.jws-price-table-layout2 .jws-price-table__footer .jws-price-table__button,
.jws-price-table.active.jws-price-table-layout2 .jws-price-table__footer .jws-price-table__button {
  color: #fff;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  background-position: 100% 0;
}
.jws-price-table:hover .jws-price-table-inner,
.jws-price-table.active .jws-price-table-inner {
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  box-shadow: 2.5px 4.33px 27.9px 2.1px rgba(40, 134, 172, 0.15);
}
.jws-price-table:hover .jws-price-table__footer .jws-price-table__button,
.jws-price-table.active .jws-price-table__footer .jws-price-table__button {
  color: #fff;
}
.jws-price-table.jws-price-table-layout2 {
  background-color: #ffffff;
}
.jws-price-table.jws-price-table-layout2 .jws-price-table-inner {
  padding-bottom: 57px;
  border-radius: 0;
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 768px) {
  .jws-price-table.jws-price-table-layout2 .jws-price-table__price_image {
    padding-left: 20px;
    padding-right: 20px;
  }
  .jws-price-table.jws-price-table-layout2 .jws-price-table__header {
    margin-top: 20px;
    padding: 20px;
  }
  .jws-price-table.jws-price-table-layout2 .jws-price-table__footer {
    text-align: center;
    padding: 10px;
  }
}
.jws-price-table.active.jws-price-table-layout1 .jws-price-spacing {
  height: 20px;
}
.jws-price-table.active.jws-price-table-layout1 .jws-price-spacing1 {
  height: 20px;
}
.jws-price-table.active.jws-price-table-layout1 .jws-price-spacing2 {
  height: 25px;
}
.jws-price-table.active.jws-price-table-layout1 .jws-price-table__header {
  transition: 0.4s;
  background-position: -126px -189px;
}
.jws-price-table.active.jws-price-table-layout1 .jws-price-table__features-list {
  transition: 0.4s;
  text-align: left;
}
.jws-price-table.active.jws-price-table-layout1 .jws-price-table__footer .jws-price-table__button {
  color: #fff;
}
.jws-price-table.active.jws-price-table-layout2 .jws-price-table__footer .jws-price-table__button {
  color: #fff;
  border-color: transparent;
}
.jws-price-table.active .jws-price-table-inner {
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  box-shadow: 2.5px 4.33px 27.9px 2.1px rgba(40, 134, 172, 0.15);
}
.jws-price-table.active .jws-price-table__footer .jws-price-table__button {
  color: #fff;
}
@keyframes bg-move {
  0%,
  100% {
    background-position: center top;
  }
  50% {
    background-position: center bottom;
  }
}
.jws-team.layout1 {
  text-align: center;
}
.jws-team.layout1 :hover .bg-team {
  opacity: 1;
}
.jws-team.layout1 :hover .bg-team::before {
  width: 244px;
}
.jws-team.layout1 .bg-team {
  margin-top: -22px;
  opacity: 0;
  -webkit-transition: 0.35s;
  -o-transition: 0.35s;
  -ms-transition: 0.35s;
  -moz-transition: 0.35s;
  transition: 0.35s;
}
.jws-team.layout1 .bg-team::before {
  content: "";
  width: 0px;
  height: 50px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.9;
  border-radius: 100px;
  margin-top: -13px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
.jws-team.layout1 .bg-team a {
  margin: 0 10px;
}
.jws-team.layout1 i {
  color: #ffffff;
  position: relative;
  z-index: 1;
  -webkit-transition: 0.25s;
  -o-transition: 0.25s;
  -ms-transition: 0.25s;
  -moz-transition: 0.25s;
  transition: 0.25s;
}
.jws-team.layout1 .team-name {
  font-weight: bold;
  text-transform: uppercase;
  line-height: 24px;
  margin-top: 35px;
}
.jws-team.layout1 .team-postion {
  font-size: 16px;
}
.jws-team.layout1.layout1 .team-item {
  padding: 15px;
}
@media (max-width: 767px) {
  .jws-team.layout1.layout1 .team-name {
    margin-top: 15px;
  }
}
.jws-team.layout1.layout1 .team-img {
  overflow: hidden;
  text-align: center;
}
.jws-team.layout1.layout1 .team-img img {
  border-radius: 100%;
}
.jws-team.layout2 .team-item {
  text-align: center;
}
.jws-team.layout2 .team-item .team-name {
  font-weight: 600;
  line-height: 24px;
  margin-top: 17px;
}
.jws-team.layout2 .team-item .team-position {
  font-size: 14px;
  margin-bottom: 24px;
}
.jws-team.layout2 .jws-team-inner-item {
  text-align: center;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}
.jws-team.layout2 .jws-team-inner-item .bg-team {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  transition: 0.35s;
  opacity: 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  align-item: center;
  flex-direction: column;
}
.jws-team.layout2 .jws-team-inner-item .bg-team i {
  font-size: 14px;
  color: #ffffff;
}
.jws-team.layout2 .jws-team-inner-item .bg-team .team-icon-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 20px;
  z-index: 1;
  align-items: center;
}
.jws-team.layout2 .jws-team-inner-item .bg-team .team-icon-list i {
  height: 30px;
  width: 30px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  border-radius: 100%;
  background: #fe6187;
  transition: 0.3s;
  margin: 0 3px;
}
.jws-team.layout2 .jws-team-inner-item .bg-team .team-number-phone,
.jws-team.layout2 .jws-team-inner-item .bg-team .team-email-address {
  z-index: 1;
  color: #ffffff;
  transition: 0.3s;
}
.jws-team.layout2 .jws-team-inner-item .bg-team:before {
  content: "";
  position: absolute;
  top: 0;
  z-index: 1;
  width: 100%;
  border-radius: 5px;
  pointer-events: none;
  height: 0%;
  background: rgba(30, 22, 102, 0.8);
  -webkit-transition: 0.35s;
  -o-transition: 0.35s;
  -ms-transition: 0.35s;
  -moz-transition: 0.35s;
  transition: 0.35s;
}
.jws-team.layout2 .jws-team-inner-item .team-img img {
  width: 100%;
}
.jws-team.layout2 .jws-team-inner-item:hover .bg-team {
  opacity: 1;
  transition: 0.3s;
}
.jws-team.layout2 .jws-team-inner-item:hover .bg-team::before {
  height: 100%;
}
.jws_tab_wrap .tab_nav_container {
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
}
.jws_tab_wrap .tab_nav_wrap {
  background: #ffffff;
  padding: 8px;
  border-radius: 40px;
  display: inline-block;
  box-shadow: 0px 7px 13.95px 1.05px rgba(28, 31, 28, 0.05);
}
.jws_tab_wrap .tab_absolute {
  position: absolute;
  z-index: 1;
}
.jws_tab_wrap .tab_nav {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.jws_tab_wrap .tab_nav li {
  display: inline-block;
}
.jws_tab_wrap .tab_nav li a {
  position: relative;
  z-index: 1;
  display: block;
  padding: 7px 32px 7px 32px;
  font-weight: 600;
  color: #585858;
  border-radius: 40px;
}
.jws_tab_wrap .tab_nav #magic_line {
  position: absolute;
  transition: 0.5s all;
  border-radius: 40px;
}
.jws_tab_wrap .tab_content {
  padding-top: 45px;
}
.jws_tab_wrap .tab_content .jws_tab_item {
  display: none;
}
.jws_tab_wrap .tab_content .jws_tab_item.current {
  display: block;
  animation: jws_fadeInUp 0.7s both;
  -webkit-animation: jws_fadeInUp 0.7s both;
}
.jws_tab_wrap.layout_layout1 .tab_nav li.current a {
  color: #ffffff;
}
.jws_tab_wrap.layout_layout3 .tab_nav_wrap {
  background: transparent;
  box-shadow: none;
}
.jws_tab_wrap.layout_layout3 .tab_nav_wrap .tab_nav {
  text-align: center;
}
.jws_tab_wrap.layout_layout3 .tab_nav_wrap .tab_nav li a {
  background: #e9f8fe;
  font-size: 16px;
  min-width: 160px;
  padding: 13px 0;
  border-radius: 10px;
  text-transform: uppercase;
  margin: 6px;
  font-weight: 700;
  transition: 0.5s all;
  overflow: hidden;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  text-align: center;
}
.jws_tab_wrap.layout_layout3 .tab_nav_wrap .tab_nav li a:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 490%;
  width: 140%;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-transform: translateX(-112%) translateY(-16%) rotate(90deg);
  transform: translateX(-112%) translateY(-16%) rotate(90deg);
  z-index: -1;
}
.jws_tab_wrap.layout_layout3 .tab_nav_wrap .tab_nav li a:hover {
  background-image: none;
  background: none;
}
.jws_tab_wrap.layout_layout3 .tab_nav_wrap .tab_nav li a:hover:after {
  -webkit-transform: translateX(-9%) translateY(-25%) rotate(90deg);
  transform: translateX(-9%) translateY(-25%) rotate(90deg);
}
.jws_tab_wrap.layout_layout3 .tab_content {
  padding-top: 29px;
}
.jws_tab_wrap.layout_layout2 .tab_nav_wrap {
  width: 100%;
  position: relative;
  background: transparent;
  padding-bottom: 0px;
  border-radius: 40px;
  text-align: left;
  padding-left: 98px;
  display: inline-block;
  box-shadow: none;
}
@media only screen and (min-width: 1024px) {
  .jws_tab_wrap.layout_layout2 .tab_nav_wrap {
    width: 50%;
  }
}
.jws_tab_wrap.layout_layout2 .tab_nav_wrap .tab_nav {
  overflow-x: visible;
  overflow-y: hidden;
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
}
.jws_tab_wrap.layout_layout2 .tab_nav_wrap .tab_nav li {
  margin-right: 0px;
  position: relative;
}
.jws_tab_wrap.layout_layout2 .tab_nav_wrap .tab_nav li a {
  color: #ffffff;
  font-size: 18px;
  padding: 20px 32px 20px 32px;
}
.jws_tab_wrap.layout_layout2 .tab_nav_wrap .tab_nav li::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 0;
  height: 2px;
  z-index: 99;
  -webkit-transition: 0.35s;
  -o-transition: 0.35s;
  -ms-transition: 0.35s;
  -moz-transition: 0.35s;
  transition: 0.35s;
  background-size: 200%;
}
.jws_tab_wrap.layout_layout2 .tab_nav_wrap .tab_nav li.current {
  margin-right: 0px;
  -webkit-transition: 0.35s;
  -o-transition: 0.35s;
  -ms-transition: 0.35s;
  -moz-transition: 0.35s;
  transition: 0.35s;
}
.jws_tab_wrap.layout_layout2 .tab_nav_wrap .tab_nav li.current::before {
  width: 100%;
}
.jws_tab_wrap.layout_layout2 .tab_content {
  padding-top: 0;
}
@media only screen and (max-width: 767px) {
  .jws_tab_wrap.layout_layout2 .tab_nav_wrap {
    padding-left: 10px;
  }
  .jws_tab_wrap.layout_layout2 .tab_nav_wrap .tab_nav {
    justify-content: center;
  }
  .jws_tab_wrap.layout_layout2 .tab_nav_wrap .tab_nav li a {
    padding: 10px 15px 10px 15px;
  }
}
.jws_tab_wrap.layout_layout4 .tab_nav_wrap {
  position: relative;
  background: transparent;
  padding-bottom: 0px;
  border-radius: 0;
  text-align: left;
  display: inline-block;
  box-shadow: none;
  max-width: 100%;
}
.jws_tab_wrap.layout_layout4 .tab_nav_wrap .tab_nav {
  overflow-x: scroll;
  overflow-y: hidden;
  position: relative;
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: auto !important;
  scrollbar-color: transparent transparent;
}
.jws_tab_wrap.layout_layout4 .tab_nav_wrap .tab_nav::before {
  content: "";
  left: 0;
  position: absolute;
  bottom: 0px;
  border-bottom: 3px solid #eeeff2;
  width: 100%;
}
.jws_tab_wrap.layout_layout4 .tab_nav_wrap .tab_nav li {
  margin-right: 0px;
  position: relative;
}
.jws_tab_wrap.layout_layout4 .tab_nav_wrap .tab_nav li a {
  color: #ffffff;
  font-size: 18px;
  padding: 20px 32px 20px 32px;
}
.jws_tab_wrap.layout_layout4 .tab_nav_wrap .tab_nav li::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 0;
  height: 3px;
  z-index: 99;
  -webkit-transition: 0.35s;
  -o-transition: 0.35s;
  -ms-transition: 0.35s;
  -moz-transition: 0.35s;
  transition: 0.35s;
  background-size: 200%;
}
.jws_tab_wrap.layout_layout4 .tab_nav_wrap .tab_nav li.current {
  margin-right: 0px;
  -webkit-transition: 0.35s;
  -o-transition: 0.35s;
  -ms-transition: 0.35s;
  -moz-transition: 0.35s;
  transition: 0.35s;
}
.jws_tab_wrap.layout_layout4 .tab_nav_wrap .tab_nav li.current::before {
  width: 100%;
}
.jws_tab_wrap.layout_layout4 .tab_content {
  padding-top: 0;
}
@media only screen and (max-width: 767px) {
  .jws_tab_wrap.layout_layout4 .tab_nav_wrap {
    padding-left: 10px;
  }
  .jws_tab_wrap.layout_layout4 .tab_nav_wrap .tab_nav {
    justify-content: flex-start;
  }
  .jws_tab_wrap.layout_layout4 .tab_nav_wrap .tab_nav li a {
    padding: 10px 15px 10px 15px;
  }
}
.tab_nav::-webkit-scrollbar {
  height: 2px;
  overflow: visible;
}
.tab_nav::-webkit-scrollbar-button {
  height: 0;
  width: 0;
}
.tab_nav::-webkit-scrollbar-thumb {
  background-color: transparent;
  background-clip: padding-box;
  border: solid transparent;
  border-width: 1px 1px 1px 6px;
  min-height: 28px;
  box-shadow: transparent;
}
.tab_nav:-webkit-scrollbar-track {
  background: transparent;
}
.jws_timeline .jws_timeline_main {
  position: relative;
}
.jws_timeline .jws_timeline_main .jws_days .jws_timeline_field {
  position: relative;
  -js-display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 30px;
}
.jws_timeline .jws_timeline_main .jws_days .jws_timeline_field.active .jws_timeline_circle:before {
  position: absolute;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  z-index: -1;
  animation: pulse-border 1.5s ease-out infinite;
  -webkit-animation: pulse-border 1.5s ease-out infinite;
  background: #0091ff;
  content: "";
}
.jws_timeline .jws_timeline_main .jws_days .jws_timeline_field.animation_show .jws_timeline_content {
  opacity: 1;
  transform: translatex(0) !important;
  -webkit-transform: translatex(0) !important;
  transition-delay: 0.5s;
}
.jws_timeline .jws_timeline_main .jws_days .jws_timeline_field.position_right {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -moz-box-orient: horizontal;
  -moz-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.jws_timeline .jws_timeline_main .jws_days .jws_timeline_field.position_right .jws_timeline_circle {
  position: relative;
}
.jws_timeline .jws_timeline_main .jws_days .jws_timeline_field.position_right .jws_timeline_content {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -moz-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  padding-right: 72px;
  transform: translatex(-50px);
  -webkit-transform: translatex(-50px);
}
.jws_timeline .jws_timeline_main .jws_days .jws_timeline_field.position_right .jws_timeline_content .jws_timeline_content_inner::before {
  border-radius: 0 10px 10px 0;
  right: 0;
}
@media (max-width: 767px) {
  .jws_timeline .jws_timeline_main .jws_days .jws_timeline_field.position_right .jws_timeline_content .jws_timeline_content_inner::before {
    left: 0;
    right: auto;
    border-radius: 10px 0 0 10px;
  }
}
.jws_timeline .jws_timeline_main .jws_days .jws_timeline_field.position_right .jws_timeline_date {
  text-align: left;
  padding-left: 67px;
  padding-top: 52px;
}
.jws_timeline .jws_timeline_main .jws_days .jws_timeline_field.position_left .jws_timeline_circle {
  position: relative;
}
.jws_timeline .jws_timeline_main .jws_days .jws_timeline_field.position_left .jws_timeline_content {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -moz-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  padding-left: 70px;
  transform: translatex(50px);
  -webkit-transform: translatex(50px);
}
.jws_timeline .jws_timeline_main .jws_days .jws_timeline_field.position_left .jws_timeline_content .jws_timeline_content_inner::before {
  left: 0;
  border-radius: 10px 0 0 10px;
}
.jws_timeline .jws_timeline_main .jws_days .jws_timeline_field.position_left .jws_timeline_content:after {
  left: 0;
}
.jws_timeline .jws_timeline_main .jws_days .jws_timeline_field.position_left .jws_timeline_date {
  text-align: right;
  padding-right: 78px;
  padding-top: 26px;
}
.jws_timeline .jws_timeline_main .jws_days .jws_timeline_field .jws_timeline_circle {
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background: #0091ff;
  position: relative;
  -js-display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 1;
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -moz-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -moz-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
}
.jws_timeline .jws_timeline_main .jws_days .jws_timeline_field .jws_timeline_content {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -moz-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-flex-basis: 50%;
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  max-width: 100%;
  position: relative;
  transition: 0.5s all;
  opacity: 0;
  z-index: 1;
}
.jws_timeline .jws_timeline_main .jws_days .jws_timeline_field .jws_timeline_content:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-image: linear-gradient(to right, transparent 50%, #0091ff 50%);
  background-size: 16px 100%;
  right: 0;
  top: 50%;
}
.jws_timeline .jws_timeline_main .jws_days .jws_timeline_field .jws_timeline_content .jws_timeline_content_inner {
  text-align: left;
  padding: 30px 24px 12px 38px;
  border-radius: 10px;
  position: relative;
  transition: 0.4s;
  background: #ffffff;
  box-shadow: 5px 10px 20px 0px rgba(10, 53, 70, 0.1);
  z-index: 2;
}
.jws_timeline .jws_timeline_main .jws_days .jws_timeline_field .jws_timeline_content .jws_timeline_content_inner::before {
  content: "";
  position: absolute;
  top: 0;
  width: 7px;
  height: 100%;
  -webkit-transition: 0.35s;
  -o-transition: 0.35s;
  -ms-transition: 0.35s;
  -moz-transition: 0.35s;
  transition: 0.35s;
  background-size: 200%;
}
.jws_timeline .jws_timeline_main .jws_days .jws_timeline_field .jws_timeline_content .jws_timeline_date_inner {
  display: none;
  margin-bottom: 15px;
}
.jws_timeline .jws_timeline_main .jws_days .jws_timeline_field .jws_timeline_content .jws_timeline_title {
  letter-spacing: 0.6px;
  margin-bottom: 12px;
}
.jws_timeline .jws_timeline_main .jws_days .jws_timeline_field .jws_timeline_content .jws_timeline_desc {
  letter-spacing: 0.5px;
}
.jws_timeline .jws_timeline_main .jws_days .jws_timeline_field .jws_timeline_date {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -moz-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-flex-basis: 50%;
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  max-width: 100%;
  position: relative;
}
.jws_timeline .jws_timeline_main .jws_days .jws_timeline_field .jws_timeline_date .jws_timeline_date_inner {
  display: inline-block;
  text-align: center;
}
.jws_timeline .jws_timeline_main .jws_days .jws_timeline_field .jws_timeline_date_inner .jws_timeline_month {
  color: #0091ff;
  font-weight: 300;
  margin-bottom: -5px;
  display: block;
}
.jws_timeline .jws_timeline_main .jws_days .jws_timeline_field .jws_timeline_date_inner .jws_timeline_year {
  margin: 0;
}
.jws_timeline .jws_timeline_line {
  width: 3px;
  left: 50%;
  bottom: 64px;
  right: auto;
  position: absolute;
  -webkit-transform: translateX(-3px);
  -ms-transform: translateX(-3px);
  transform: translateX(-3px);
  background: rgba(0, 145, 255, 0.2);
  margin-left: 1.5px;
}
.jws_timeline .jws_timeline_line:after {
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  content: "";
  bottom: -14px;
  position: absolute;
  left: -5.6px;
}
@media (max-width: 768px) {
  .jws_timeline .jws_timeline_main .jws_days .jws_timeline_field.position_right .jws_timeline_content {
    padding-right: 30px;
  }
  .jws_timeline .jws_timeline_main .jws_days .jws_timeline_field.position_left .jws_timeline_content {
    padding-left: 30px;
  }
}
@media (max-width: 767px) {
  .jws_timeline .jws_timeline_main .jws_days .jws_timeline_field .jws_timeline_date {
    display: none;
  }
  .jws_timeline .jws_timeline_main .jws_days .jws_timeline_field .jws_timeline_content .jws_timeline_date_inner {
    display: block;
  }
  .jws_timeline .jws_timeline_main .jws_days .jws_timeline_field.position_right {
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
    -webkit-flex-direction: unset;
    -moz-box-orient: unset;
    -moz-box-direction: unset;
    -ms-flex-direction: unset;
    flex-direction: unset;
  }
  .jws_timeline .jws_timeline_main .jws_days .jws_timeline_field .jws_timeline_circle {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
    -moz-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    max-width: 100%;
    position: relative;
  }
  .jws_timeline .jws_timeline_main .jws_days .jws_timeline_field.position_right .jws_timeline_content {
    -webkit-box-ordinal-group: unset;
    -webkit-order: unset;
    -moz-box-ordinal-group: unset;
    -ms-flex-order: unset;
    order: unset;
    padding-left: 30px;
    padding-right: 0;
    transform: translatex(0) !important;
    -webkit-transform: translatex(0) !important;
  }
  .jws_timeline .jws_timeline_main .jws_days .jws_timeline_field.position_right .jws_timeline_content:after {
    left: 0;
    width: 30px;
  }
  .jws_timeline .jws_timeline_main .jws_days .jws_timeline_field.position_left .jws_timeline_content {
    padding-left: 30px;
    transform: translatex(0) !important;
    -webkit-transform: translatex(0) !important;
  }
  .jws_timeline .jws_timeline_main .jws_days .jws_timeline_field.position_left .jws_timeline_content:after {
    width: 30px;
  }
  .jws_timeline .jws_timeline_line {
    left: 10px;
  }
}
.jws-theme-twitter ul {
  list-style-type: none;
  padding: 0;
}
.jws-theme-twitter ul .jws-theme-tweet {
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  padding: 12px 0;
}
.jws-theme-twitter ul .jws-theme-tweet .jws-theme-icon {
  margin-right: 17px;
  font-size: 14px;
}
.jws-testimonial .testimonial-listing .slick-arrow {
  color: transparent;
  background: none;
  border: 1px solid transparent;
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
  font-size: 18px;
  position: absolute;
  top: -20px;
  -webkit-transition: opacity 0.35s;
  -o-transition: opacity 0.35s;
  -ms-transition: opacity 0.35s;
  -moz-transition: opacity 0.35s;
  transition: opacity 0.35s;
}
.jws-testimonial .testimonial-listing .slick-arrow:hover {
  opacity: 1;
}
.jws-testimonial .testimonial-listing .slick-arrow::after {
  color: #1e1666;
}
.jws-testimonial .testimonial-listing .slick-arrow:focus {
  outline: none;
}
.jws-testimonial .testimonial-listing .slick-arrow.slick-next {
  right: 0px;
}
.jws-testimonial .testimonial-listing .slick-arrow.slick-next::after {
  content: "\ea3c";
  font-family: "icomoon";
}
.jws-testimonial .testimonial-listing .slick-arrow.slick-prev {
  z-index: 2;
}
.jws-testimonial .testimonial-listing .slick-arrow.slick-prev::after {
  content: "\ea40";
  font-family: "icomoon";
}
.jws-testimonial .testimonial-listing .slide-content-testimonial {
  padding: 30px 15px;
}
.jws-testimonial .testimonial-listing .slide-content-testimonial .slide-content-testimonial__box-shadow {
  box-shadow: 0px 0px 30px rgba(40, 134, 172, 0.1);
  padding: 45px 40px;
}
.jws-testimonial .testimonial-listing .slide-content-testimonial .elementor-slide-description {
  line-height: 26px;
}
.jws-testimonial .testimonial-listing .slide-content-testimonial .elementor-slide-tag {
  color: #616161;
  font-size: 14px;
  line-height: 28px;
  font-weight: 300;
  margin-top: 17px;
  margin-bottom: 14px;
}
.jws-testimonial .testimonial-listing .slide-content-testimonial .display-flex img {
  max-width: 60px;
  height: 60px;
  width: 100%;
  border-radius: 100%;
  margin-right: 15px;
}
.jws-testimonial .testimonial-listing .slide-content-testimonial .display-flex .elementor-slide-your_name {
  font-weight: bold;
}
.jws-testimonial .testimonial-listing .slide-content-testimonial .display-flex i {
  color: #ffbc01;
  margin-right: 7px;
  font-size: 14px;
}
.jws-testimonial .testimonial-listing .slide-content-testimonial .display-flex .elementor-rating {
  font-weight: 500;
}
.jws-testimonial .testimonial-listing .slide-content-testimonial .display-flex .all-rating {
  display: inline;
  padding: 3px 12px;
  background: #fff5db;
  border-radius: 100px;
}
.jws-testimonial.layout-testimonial0 .slick-arrow {
  color: transparent;
  background: none;
  border: 1px solid #ffffff;
  height: 60px;
  width: 60px;
  border-radius: 100%;
  opacity: 0.3;
  font-family: "Font Awesome 5 Free";
  font-size: 16px;
  font-weight: 900;
  position: absolute;
  top: -78px;
  -webkit-transition: opacity 0.35s;
  -o-transition: opacity 0.35s;
  -ms-transition: opacity 0.35s;
  -moz-transition: opacity 0.35s;
  transition: opacity 0.35s;
}
@media only screen and (max-width: 767px) {
  .jws-testimonial.layout-testimonial0 .slick-arrow {
    height: 50px;
    width: 50px;
  }
}
.jws-testimonial.layout-testimonial0 .slick-arrow:hover {
  opacity: 1;
}
.jws-testimonial.layout-testimonial0 .slick-arrow::after,
.jws-testimonial.layout-testimonial0 .slick-arrow::before {
  color: #eeeeee;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-25%, -50%);
}
.jws-testimonial.layout-testimonial0 .slick-arrow::before {
  transform: translate(-50%, -50%);
}
.jws-testimonial.layout-testimonial0 .slick-arrow:focus {
  outline: none;
}
.jws-testimonial.layout-testimonial0 .slick-arrow.slick-next {
  right: 8px;
}
.jws-testimonial.layout-testimonial0 .slick-arrow.slick-next::after {
  content: "\f054";
}
.jws-testimonial.layout-testimonial0 .slick-arrow.slick-prev {
  right: 87px;
}
.jws-testimonial.layout-testimonial0 .slick-arrow.slick-prev::before {
  content: "\f053";
}
.jws-testimonial.layout-testimonial0 .slider-for .elementor-slide-description {
  padding: 0;
}
.jws-testimonial.layout-testimonial0 .slider-for .elementor-slide-description {
  font-size: 34px;
  line-height: 48px;
  font-weight: 200;
  padding-right: 270px;
}
@media only screen and (max-width: 1023px) {
  .jws-testimonial.layout-testimonial0 .slider-for .elementor-slide-description {
    padding-right: 0px;
    font-size: 28px;
    line-height: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .jws-testimonial.layout-testimonial0 .slider-for .elementor-slide-description {
    font-size: 24px;
    line-height: 35px;
  }
}
.jws-testimonial.layout-testimonial0 .slider-nav {
  margin-top: 38px;
  margin-left: -20px;
}
@media only screen and (max-width: 768px) {
  .jws-testimonial.layout-testimonial0 .slider-nav {
    padding-right: 15px;
    font-size: 15px;
    margin-top: 0;
  }
}
.jws-testimonial.layout-testimonial0 .slider-nav .avatar {
  max-width: 60px;
  height: 60px;
  width: 100%;
  border-radius: 100%;
  overflow: hidden;
  display: inline-block;
}
.jws-testimonial.layout-testimonial0 .slider-nav .avatar img {
  width: 100%;
}
.jws-testimonial.layout-testimonial0 .slider-nav .name {
  display: inline-block;
  padding-left: 20px;
  position: absolute;
}
.jws-testimonial.layout-testimonial0 .slider-nav .elementor-slide-your_name {
  line-height: 28px;
  margin-top: 10px;
}
.jws-testimonial.layout-testimonial0 .slider-nav .elementor-slide-tag {
  line-height: 28px;
  font-size: 14px;
  margin-top: -5px;
}
.jws-testimonial.layout-testimonial0 .slider-nav .slick-slide {
  -webkit-transition: 0.35s;
  -o-transition: 0.35s;
  -ms-transition: 0.35s;
  -moz-transition: 0.35s;
  transition: 0.35s;
  cursor: pointer;
}
.jws-testimonial.layout-testimonial0 .slider-nav .slick-slide:not(.slick-current) {
  opacity: 0.5;
}
.jws-testimonial.layout-testimonial1 .testimonial-listing .slick-list {
  padding: 50px 0;
  margin-left: 0;
  margin-right: 0;
}
.jws-testimonial.layout-testimonial1 .testimonial-listing .slick-list .slick-track {
  padding: 92px 0 130px;
  background: #f2fdfe;
}
@media only screen and (max-width: 767px) {
  .jws-testimonial.layout-testimonial1 .testimonial-listing .slick-list .slick-track {
    padding: 40px 0 70px;
  }
}
.jws-testimonial.layout-testimonial1 .testimonial-listing .slick-list .slick-track .slick-slide {
  padding: 0 100px;
  text-align: center;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .jws-testimonial.layout-testimonial1 .testimonial-listing .slick-list .slick-track .slick-slide {
    padding: 20px 15px;
  }
}
.jws-testimonial.layout-testimonial1 .testimonial-listing .slick-list .slick-track .slick-slide img {
  width: 80px;
  height: 80px;
  border-radius: 100%;
  position: absolute;
  bottom: -169px;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid #ffffff;
}
@media only screen and (max-width: 767px) {
  .jws-testimonial.layout-testimonial1 .testimonial-listing .slick-list .slick-track .slick-slide img {
    bottom: -110px;
  }
}
.jws-testimonial.layout-testimonial1 .testimonial-listing .slick-list .slick-track .slick-slide .slide-icon {
  position: absolute;
  top: -133px;
  font-size: 100px;
  margin-left: -0.5em;
}
@media only screen and (max-width: 767px) {
  .jws-testimonial.layout-testimonial1 .testimonial-listing .slick-list .slick-track .slick-slide .slide-icon {
    top: -65px;
    font-size: 50px;
  }
}
.jws-testimonial.layout-testimonial1 .testimonial-listing .slick-list .slick-track .slick-slide .elementor-slide-description {
  font-size: 30px;
  line-height: 48px;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .jws-testimonial.layout-testimonial1 .testimonial-listing .slick-list .slick-track .slick-slide .elementor-slide-description {
    font-size: 18px;
    line-height: 36px;
  }
}
.jws-testimonial.layout-testimonial1 .testimonial-listing .slick-list .slick-track .slick-slide .elementor-slide-your_name {
  font-weight: 700;
  margin-top: 32px;
}
.jws-testimonial.layout-testimonial1 .testimonial-listing .slick-list .slick-track .slick-slide .elementor-slide-tag {
  font-size: 14px;
  line-height: 24px;
  margin-top: 0;
}
.jws-testimonial.layout-testimonial1 .testimonial-listing .slick-dots {
  position: absolute;
  width: 100%;
  bottom: 124px;
}
.jws-testimonial.layout-testimonial1 .testimonial-listing .slick-arrow {
  font-family: "custom-icon";
  font-size: 22px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
  .jws-testimonial.layout-testimonial1 .testimonial-listing .slick-arrow {
    display: none !important;
  }
}
.jws-testimonial.layout-testimonial1 .testimonial-listing .slick-arrow::after {
  color: #cccccc;
  -webkit-transition: 0.35s;
  -o-transition: 0.35s;
  -ms-transition: 0.35s;
  -moz-transition: 0.35s;
  transition: 0.35s;
}
.jws-testimonial.layout-testimonial1 .testimonial-listing .slick-arrow.slick-next {
  right: -50px;
}
.jws-testimonial.layout-testimonial1 .testimonial-listing .slick-arrow.slick-next::after {
  content: "\e805";
  font-family: "custom-icon";
}
.jws-testimonial.layout-testimonial1 .testimonial-listing .slick-arrow.slick-prev {
  left: -115px;
}
.jws-testimonial.layout-testimonial1 .testimonial-listing .slick-arrow.slick-prev::after {
  content: "\e803";
  font-family: "custom-icon";
}
.jws-testimonial.layout-testimonial2 .slide-content-testimonial .slide-content-testimonial__box-shadow {
  padding: 53px 30px 40px;
}
.jws-testimonial.layout-testimonial2 .slide-content-testimonial .elementor-slide-description {
  font-size: 16px;
  margin-bottom: 20px;
}
.jws-testimonial.layout-testimonial2 .slide-content-testimonial .elementor-slide-tag {
  margin: 0;
  opacity: 0.8;
}
.jws-testimonial.layout-testimonial2 .slide-content-testimonial .elementor-slide-your_name {
  font-size: 20px;
}
.jws-testimonial.layout-testimonial2 .slide-content-testimonial .slide-icon {
  position: absolute;
  top: 7px;
  width: 44px;
  height: 44px;
  border-radius: 100%;
  background-size: 200%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  font-size: 15px;
}
.jws-testimonial.layout-testimonial2 .slick-dots {
  margin-top: 10px;
}
.jws-testimonial.layout-testimonial3 .testimonial-listing .slide-content-testimonial {
  background: none;
  padding: 20px 45px 20px 15px;
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
}
.jws-testimonial.layout-testimonial3 .testimonial-listing .slide-content-testimonial:nth-child(even) {
  flex-direction: row-reverse;
}
.jws-testimonial.layout-testimonial3 .testimonial-listing .slide-content-testimonial:nth-child(odd) img {
  margin-right: 22px;
  margin-top: 30px;
  margin-left: 0px;
}
.jws-testimonial.layout-testimonial3 .testimonial-listing .slide-content-testimonial img {
  margin-left: 20px;
  margin-top: 36px;
}
.jws-testimonial.layout-testimonial3 .testimonial-listing .slide-content-testimonial .slide-content-testimonial__box-shadow {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.07000000000000001);
  border-radius: 5px;
  background: #ffffff;
  padding: 30px 35px 24px 33px;
  position: relative;
  -webkit-transition: 0.2;
  -o-transition: 0.2;
  -ms-transition: 0.2;
  -moz-transition: 0.2;
  transition: 0.2;
}
.jws-testimonial.layout-testimonial3 .testimonial-listing .slide-content-testimonial .slide-content-testimonial__box-shadow .slide-icon {
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  -ms-transition: 0.2s;
  -moz-transition: 0.2s;
  transition: 0.2s;
}
.jws-testimonial.layout-testimonial3 .testimonial-listing .slide-content-testimonial .slide-content-testimonial__box-shadow::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  -webkit-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  -ms-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  transition: opacity 0.6s;
  opacity: 0;
  z-index: 0;
  border-radius: 5px;
}
.jws-testimonial.layout-testimonial3 .testimonial-listing .slide-content-testimonial .slide-content-testimonial__box-shadow .elementor-slide-your_name,
.jws-testimonial.layout-testimonial3 .testimonial-listing .slide-content-testimonial .slide-content-testimonial__box-shadow .elementor-slide-description,
.jws-testimonial.layout-testimonial3 .testimonial-listing .slide-content-testimonial .slide-content-testimonial__box-shadow .elementor-slide-tag {
  -webkit-transition: 0.2;
  -o-transition: 0.2;
  -ms-transition: 0.2;
  -moz-transition: 0.2;
  transition: 0.2;
  position: relative;
  z-index: 1;
}
.jws-testimonial.layout-testimonial3 .testimonial-listing .slide-content-testimonial .slide-content-testimonial__box-shadow .slide-icon {
  background-image: none;
  width: auto;
  height: auto;
  color: #dde0e5;
  font-size: 48px;
  right: 19px;
  top: 22px;
  position: absolute;
}
.jws-testimonial.layout-testimonial3 .testimonial-listing .slide-content-testimonial .slide-content-testimonial__box-shadow .elementor-slide-description {
  line-height: 24px;
  margin-top: 11px;
  margin-bottom: 10px;
  font-size: 16px;
}
.jws-testimonial.layout-testimonial3 .testimonial-listing .slick-dots {
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  top: 50%;
  position: absolute;
  z-index: 100;
  right: 0;
  right: -33px;
  margin-top: -40px;
}
.jws-testimonial.layout-testimonial3 .testimonial-listing .slide-content-testimonial.slick-current {
  color: rgba(0, 0, 0, 0.07000000000000001);
}
.jws-testimonial.layout-testimonial3 .testimonial-listing .slide-content-testimonial.slick-current .slide-content-testimonial__box-shadow::before {
  opacity: 1;
  -webkit-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  -ms-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  transition: opacity 0.6s;
}
.jws-testimonial.layout-testimonial3 .testimonial-listing .slide-content-testimonial.slick-current .slide-icon {
  color: #171b4c;
  opacity: 0.2;
}
@media only screen and (max-width: 767px) {
  .jws-testimonial.layout-testimonial3 .testimonial-listing .slide-content-testimonial {
    padding: 30px 35px;
  }
  .jws-testimonial.layout-testimonial3 .testimonial-listing .slide-content-testimonial:nth-child(even) {
    flex-direction: row;
  }
  .jws-testimonial.layout-testimonial3 .testimonial-listing .slide-content-testimonial img {
    display: none;
  }
  .jws-testimonial.layout-testimonial3 .testimonial-listing .slick-dots {
    transform: none;
    -webkit-transform: none;
    top: 0;
    position: relative;
    z-index: 100;
    right: 0;
    margin-top: 0;
  }
}
.jws-testimonial.layout-testimonial3 .testimonial-listing .slide-content-testimonial .display-flex .elementor-slide-your_name {
  font-size: 20px;
}
.jws-testimonial.layout-testimonial3 img {
  max-width: 60px;
  height: 60px;
  width: 100%;
  border-radius: 100%;
}
.jws-testimonial.layout-testimonial4 .slide-content-testimonial {
  background: #ffffff;
}
.jws-testimonial.layout-testimonial4 .slick-prev {
  right: 50px;
}
body[data-elementor-device-mode="tablet"] .silde-testimonial1.testimonial-listing .slick-list .slick-track .slick-slide {
  padding: 0 30px;
}
.custom-icon-post i {
  margin-top: 8px;
  font-size: 12px;
}
.layout-testimonial0 .elementor-slide-description {
  padding-right: 0;
}
body[data-elementor-device-mode="mobile"] .layout-testimonial0 .elementor-slide-description {
  padding-right: 0;
  font-size: 18px;
  line-height: 28px;
}
body[data-elementor-device-mode="mobile"] .layout-testimonial0 .slider-nav .elementor-slide-your_name {
  font-size: 12px;
  margin-top: -5px;
}
body[data-elementor-device-mode="mobile"] .layout-testimonial0 .slider-nav .elementor-slide-tag {
  font-size: 12px;
  line-height: 14px;
}
body[data-elementor-device-mode="mobile"] .layout-testimonial0 .slider-nav .name {
  top: 50%;
  transform: translateY(-50%);
}
body[data-elementor-device-mode="mobile"] .slide-studies .slick-slide img {
  height: auto;
}
body[data-elementor-device-mode="mobile"] .silde-testimonial1.testimonial-listing .slick-list .slick-track .slick-slide {
  padding: 0 15px;
}
body[data-elementor-device-mode="mobile"] .silde-testimonial1.testimonial-listing .slick-list .slick-track .slick-slide .elementor-slide-description {
  font-size: 20px;
  line-height: 30px;
}
body[data-elementor-device-mode="mobile"] .silde-testimonial1.testimonial-listing .slick-list .slick-track {
  padding: 72px 0 142px;
}
body[data-elementor-device-mode="mobile"] .silde-testimonial1.testimonial-listing .slick-list .slick-track .slick-slide .slide-icon {
  font-size: 70px;
  top: -100px;
}
@media only screen and (max-width: 1300px) {
  .silde-testimonial1.testimonial-listing .slick-arrow.slick-next {
    right: 0;
  }
  .silde-testimonial1.testimonial-listing .slick-arrow.slick-prev {
    left: -78px;
  }
}
#jws-popup-login {
  border-radius: 5px;
  background-color: #ffffff;
  box-shadow: 0px 0px 18px 2px rgba(30, 22, 102, 0.05);
  z-index: 23;
  padding: 50px;
  margin: auto;
}
#jws-popup-login .jws-login-container .jws-animation {
  max-width: 100%;
}
#jws-popup-login .jws-login-container .jws-animation .jws-login,
#jws-popup-login .jws-login-container .jws-animation .jws-register {
  display: none;
}
#jws-popup-login .jws-login-container .jws-animation .jws-login.active,
#jws-popup-login .jws-login-container .jws-animation .jws-register.active {
  display: block;
  animation: fadeIn 1s ease-in-out 0s forwards;
}
#jws-popup-login .jws-login-container .jws-animation .title {
  font-size: 30px;
  line-height: 60px;
  text-align: center;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  #jws-popup-login .jws-login-container .jws-animation .title {
    line-height: 40px;
  }
}
#jws-popup-login .jws-login-container .jws-animation label {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 5px;
}
#jws-popup-login .jws-login-container .jws-animation .form-group {
  margin-bottom: 20px;
}
#jws-popup-login .jws-login-container .jws-animation .form-group input {
  background: rgba(206, 228, 249, 0.3);
  border: none;
  font-size: 14px;
  width: 100%;
  height: 50px;
  padding: 0 10px;
  outline: none;
}
#jws-popup-login .jws-login-container .jws-animation .form-group .login-password,
#jws-popup-login .jws-login-container .jws-animation .form-group .login-password-repeater {
  position: relative;
}
#jws-popup-login .jws-login-container .jws-animation .form-group .login-password .toggle-password,
#jws-popup-login .jws-login-container .jws-animation .form-group .login-password-repeater .toggle-password {
  position: absolute;
  right: 0;
  top: 0;
  height: 50px;
  text-align: center;
  line-height: 50px;
  width: 50px;
  cursor: pointer;
  font-size: 14px;
}
#jws-popup-login .jws-login-container .jws-animation .form-group .invalid {
  border: 1px solid #f44336;
}
#jws-popup-login .jws-login-container .jws-animation .forgot-info .login-remember {
  display: inline-block;
  position: relative;
}
#jws-popup-login .jws-login-container .jws-animation .forgot-info .lost-pass-link {
  font-size: 16px;
  float: right;
}
#jws-popup-login .jws-login-container .jws-animation .submit {
  margin-top: 30px;
}
#jws-popup-login .jws-login-container .jws-animation .submit .button {
  border: none;
  width: 100%;
  border-radius: 30px;
  height: 50px;
  outline: none;
  transition: 0.7s;
}
#jws-popup-login .jws-login-container .jws-animation .submit .button:hover {
  background-position: right;
}
#jws-popup-login .jws-login-container .jws-animation .login-remember {
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  align-items: center;
}
#jws-popup-login .jws-login-container .jws-animation .login-remember label {
  padding-left: 40px;
  vertical-align: middle;
  margin-bottom: 0;
}
#jws-popup-login .jws-login-container .jws-animation .message-error {
  color: #f44336;
  font-size: 14px;
}
#jws-popup-login .jws-login-container .jws-animation .link-bottom {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 0;
}
#jws-popup-login .jws-login-container .jws-animation .link-bottom a {
  border-bottom: 1px solid;
  line-height: 16px;
  display: inline-block;
}
#jws-popup-login .meter {
  display: none;
}
#jws-popup-login .meter .meter-box {
  margin-top: 20px;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
}
#jws-popup-login .meter .meter-box .text-meter {
  margin-left: 10px;
  color: #d8b50b;
}
#jws-popup-login .meter .meter-box span {
  display: inline-block;
}
#jws-popup-login .meter .meter-box span:not(.text-meter) {
  background: #ebebeb;
  height: 3px;
  width: 35px;
  position: relative;
  margin-right: 5px;
}
#jws-popup-login .meter .meter-box span:not(.text-meter):before {
  content: "";
  left: 0;
  top: 0;
  transition: .3s all;
  width: 0;
  height: 100%;
  background: #f44336;
  position: absolute;
}
#jws-popup-login .meter .meter-box .text-meter {
  margin-left: 10px;
  color: #d8b50b;
}
#jws-popup-login .meter[meter="2"] .meter-box .box1:before,
#jws-popup-login .meter[meter="2"] .meter-box .box2:before {
  width: 100%;
  background: #e8e114;
}
#jws-popup-login .meter[meter="3"] .meter-box .box1:before,
#jws-popup-login .meter[meter="3"] .meter-box .box2:before,
#jws-popup-login .meter[meter="3"] .meter-box .box3:before {
  width: 100%;
  background: #49ac20;
}
#jws-popup-login .meter[meter="4"] .meter-box .box1:before,
#jws-popup-login .meter[meter="4"] .meter-box .box2:before,
#jws-popup-login .meter[meter="4"] .meter-box .box3:before,
#jws-popup-login .meter[meter="4"] .meter-box .box4:before {
  width: 100%;
  background: #49ac20;
}
#jws-popup-login .meter[meter="1"] .meter-box .box1:before {
  width: 100%;
}
#jws-popup-login .sent-mail-register {
  text-align: center;
  padding: 45px;
  margin: auto;
}
#jws-popup-login .sent-mail-register img {
  margin-bottom: 20px;
}
#jws-popup-login .sent-mail-register p {
  margin-bottom: 0px;
  font-size: 18px;
  line-height: 24px;
}
#jws-popup-login .sent-mail-register .check-email {
  font-size: 15px;
  margin-top: 20px;
}
#jws-popup-login .sent-mail-register .check-email a {
  font-weight: 700;
}
p.forgetmenot.login-remember label:after,
.forgetmenot.login-remember label:checked:after {
  content: "";
  height: 16px;
  width: 16px;
  margin: auto;
  opacity: 0.7;
  vertical-align: middle;
  border: 1px solid;
}
p.forgetmenot.login-remember input[type=checkbox] {
  -webkit-appearance: auto !important;
  transform: translate(0%, -50%);
  left: 0;
  top: 50%;
  height: 16px;
  width: 16px;
}
p.forgetmenot.login-remember input[type=checkbox]:checked + label:before {
  transform: translate(3px, -50%);
  top: 50%;
}
.section-blog {
  margin-left: -15px;
  margin-right: -15px;
}
.section-blog .elementor-post {
  padding: 15px;
}
.section-blog .elementor-post .content-blog,
.section-blog .elementor-post .m-15 {
  margin: 15px;
}
.section-blog .elementor-post .post-thumbnail-link {
  display: block;
  overflow: hidden;
  border-radius: 5px;
  position: relative;
}
.section-blog .elementor-post .post-thumbnail-link img {
  border-radius: 5px;
  width: 100%;
  -webkit-transition: all 600ms cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: all 600ms cubic-bezier(0.215, 0.61, 0.355, 1);
  -ms-transition: all 600ms cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition: all 600ms cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 600ms cubic-bezier(0.215, 0.61, 0.355, 1);
  display: block;
  margin: 0;
  position: relative;
  -webkit-transform: scale(1);
  -o-transform: scale(1);
  -ms-transform: scale(1);
  -moz-transform: scale(1);
  transform: scale(1);
}
.section-blog .elementor-post .post-thumbnail-link img:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.section-blog .elementor-post .post-category {
  margin-bottom: 12px;
}
.section-blog .elementor-post .post-category a {
     font-size: 15px;
    font-weight: 600;
    background-size: 200%;
     background-image: linear-gradient(to right,#cc2b5e 0%,#753a88 51%,#cc2b5e 100%);
    font-size: 13px;
    font-weight: 500;
    padding: 4px 10px;
    letter-spacing: 0.5px;
    border-radius: 3px;
    color: #fff;
    background-size: 200%;
    -webkit-transition: .5s;
    -o-transition: .5s;
    -ms-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    text-decoration: none;
}

.section-blog .elementor-post .post-category a:hover {
        background-position: right center;
}
.section-blog .elementor-post .post-decription {
  font-size: 16px;
  line-height: 28px;
  margin-top: 14px;
  margin-bottom: -14px;
}
.section-blog .elementor-post .post-title-link {
  -webkit-transition: color 0.5s;
  -o-transition: color 0.5s;
  -ms-transition: color 0.5s;
  -moz-transition: color 0.5s;
  transition: color 0.5s;
  color: transparent;
}
.section-blog .elementor-post .post-title-link:hover {
  border-bottom: 2px solid;
}
.section-blog .elementor-post .post-title-link .post-title {
  font-size: 20px;
  line-height: 28px;
  display: initial;
}
.section-blog .elementor-post .post-info {
  align-items: center;
  margin-top: 25px;
}
.section-blog .elementor-post .post-info .post-author img {
  width: 46px;
  height: 46px;
  border-radius: 100%;
  display: inline-block;
  margin-right: 5px;
}
.section-blog .elementor-post .post-info .post-author span {
  font-weight: 500;
}
.section-blog .elementor-post .post-info .post-wish-list {
  margin-left: 15px;
  margin-right: 15px;
}
.section-blog .elementor-post .post-info .post-wish-list a:focus {
  outline: none;
}
.section-blog .elementor-post .post-info .post-wish-list a .jws-love-count {
  font-weight: 500;
}
.section-blog .elementor-post .post-info .post-wish-list .loved i {
  font-weight: bold;
}
.section-blog .elementor-post .post-info .post-wish-list .loved i::before {
  font-family: inherit;
  font-weight: bold;
}
.section-blog .elementor-post .post-info .post-comment span {
  font-weight: 500;
}
.section-blog.post-archive {
  margin-left: 0px;
  margin-right: 0px;
  margin-bottom: 50px;
}
.section-blog.post-archive .elementor-post {
  padding: 15px 0;
}
@media only screen and (max-width: 767px) {
  .slide-post .slick-dots {
    margin-top: 0;
  }
}
.jws-breadcrumbs {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.jws-breadcrumbs li {
  line-height: 28px;
  display: inline-block;
  vertical-align: middle;
}
.jws-breadcrumbs li.jws-breadcrumbs__item .jws-breadcrumbs__text {
  font-size: 14px;
  font-weight: 400;
}
.jws-breadcrumbs li.jws-breadcrumbs__item:first-child {
  padding-left: 0;
}
.jws-breadcrumbs li i {
  display: inline-block;
}
/** End Less Shortcode **/
/** Start woocommerce **/
.woocommerce .woocommerce-MyAccount-navigation ul {
  list-style-type: none;
  padding: 0;
}
.woocommerce .woocommerce-MyAccount-navigation ul .woocommerce-MyAccount-navigation-link {
  text-transform: uppercase;
  border: 1px solid #dedde8;
  border-bottom: 0;
}
.woocommerce .woocommerce-MyAccount-navigation ul .woocommerce-MyAccount-navigation-link:hover {
  color: #ffffff;
}
.woocommerce .woocommerce-MyAccount-navigation ul .woocommerce-MyAccount-navigation-link.is-active {
  color: #ffffff;
}
.woocommerce .woocommerce-MyAccount-navigation ul .woocommerce-MyAccount-navigation-link a {
  padding: 14px 20px;
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-transition: 0.25s all;
  -o-transition: 0.25s all;
  -ms-transition: 0.25s all;
  -moz-transition: 0.25s all;
  transition: 0.25s all;
  font-weight: 700;
}
.woocommerce .woocommerce-MyAccount-navigation ul .woocommerce-MyAccount-navigation-link:last-child {
  border-bottom: 1px solid #dedde8;
}
.woocommerce .woocommerce-MyAccount-content .woocommerce-Address {
  flex: 0 0 50%;
  max-width: 50%;
}
.woocommerce .woocommerce-MyAccount-content .woocommerce-Price-amount,
.woocommerce .woocommerce-MyAccount-content .woocommerce-Price-currencySymbol {
  font-size: 14px;
}
.woocommerce .woocommerce-EditAccountForm label {
  font-weight: 700;
}
.woocommerce .woocommerce-EditAccountForm .form-row {
  margin-bottom: 25px;
  display: block;
}
.woocommerce .woocommerce-EditAccountForm .input-text {
  width: 100%;
  border: 1px solid #a8a8a8;
  height: 45px;
  padding-left: 15px;
}
.woocommerce .woocommerce-Button.button {
  border-radius: 30px;
  min-height: 50px;
  line-height: 50px;
  padding: 0 37px;
  float: right;
}
.woocommerce .woocommerce-Button.button:hover {
  background-position: right center;
  -webkit-transition: 0.7s;
  -o-transition: 0.7s;
  -ms-transition: 0.7s;
  -moz-transition: 0.7s;
  transition: 0.7s;
}
.woocommerce table.my_account_orders .button {
  border-radius: 30px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.woocommerce table.my_account_orders .button:hover {
  background-position: right;
}
.woocommerce-column--billing-address,
.woocommerce-column--shipping-address {
  flex: 0 0 50%;
  max-width: 100%;
}
.woocommerce table.woocommerce-MyAccount-orders tr:nth-child(2n) {
  background: #f9fcff;
}
@media (min-width: 769px) {
  .woocommerce-page.woocommerce-account .woocommerce-MyAccount-navigation {
    float: left;
    width: 20%;
  }
  .woocommerce-page.woocommerce-account .woocommerce-MyAccount-content {
    float: right;
    width: 78%;
  }
}
@media (min-width: 769px) {
  .woocommerce table.woocommerce-MyAccount-orders tr:first-child td {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }
}
@media (max-width: 768px) and (min-width: 600px) {
  .woocommerce-page.woocommerce-account .woocommerce-MyAccount-content,
  .woocommerce-page.woocommerce-account .woocommerce-MyAccount-navigation {
    float: left;
    width: 30%;
  }
  .woocommerce-page.woocommerce-account .woocommerce-MyAccount-content {
    float: left;
    width: 68%;
    padding-left: 30px;
  }
}
.woocommerce table.woocommerce-MyAccount-orders tr td::before {
  font-size: 14px;
}
.woocommerce table.woocommerce-MyAccount-orders tr {
  padding: 20px 0;
}
.woocommerce table.woocommerce-MyAccount-orders thead {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.woocommerce table.woocommerce-MyAccount-orders tbody td {
  border: none;
}
.woocommerce table.woocommerce-MyAccount-orders td,
.woocommerce table.woocommerce-MyAccount-orders th {
  font-size: 14px;
}
@media (max-width: 768px) {
  .woocommerce table.shop_table_responsive tr:nth-child(2n) td,
  .woocommerce-page table.shop_table_responsive tr:nth-child(2n) td {
    background-color: transparent;
     border: none;
  }
}
.custom-divider .elementor-widget-container::before,
.custom-bg-bt-revolution::before,
.icon-gradient-bacground-hover .elementor-social-icon:hover::before,
.woocommerce #respond input#submit.alt::before,
.woocommerce a.button.alt::before,
.woocommerce button.button.alt,
.woocommerce input.button.alt::before,
.elementor-widget-wp-widget-woocommerce_price_filter .price_slider_wrapper .price_slider .ui-slider-range::before,
.elementor-widget-wp-widget-woocommerce_price_filter .price_slider_wrapper .price_slider .ui-slider-handle::before,
.jws-product-shop .product-archive .yith-wcwl-add-to-wishlist .yith-wcwl-add-button a:hover::after,
.jws-product-shop .product-archive .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse:hover::after,
.jws-product-shop .product-archive .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse:hover::after,
.jws-product-shop .product-archive .add_to_cart_button:hover:before,
.jws-product-shop .product-archive .product-eyes a:hover::after,
.nxl-pagination .nxl_pagi_inner ul li .item.current::before,
.nxl-pagination .nxl_pagi_inner .item:hover::before,
.bg-text-popular .elementor-widget-container::before,
.jws-testimonial.layout-testimonial2 .testimonial-listing .slide-content-testimonial .slide-icon::before,
.custom-border-button.elementor-element.elementor-widget-button a.elementor-button::before,
.custom-border-button .elementor-widget-button .elementor-button:hover::before,
.custom-pricing-tab .elementor-tabs .elementor-tabs-wrapper .elementor-tab-title.elementor-active::before,
.layout_layout3.jws_tab_wrap .tab_nav li.current a::before,
.layout_layout3.jws_tab_wrap .tab_nav li a:after::before,
.jws-team .bg-team::before::before,
.jws_tab_wrap.layout_layout1 .tab_nav li.current a::before,
.comments-area .form-submit .submit:before::before,
.jws-price-table:hover .jws-price-table__footer .jws-price-table__button::before,
.comments-area ol li .comment-body .comment-info .comment-header-info .reply:hover::before,
.jws-price-table.active .jws-price-table__footer .jws-price-table__button::before,
.custom-pricing-tab-home3.custom-pricing-tab .elementor-tabs .elementor-tabs-wrapper .elementor-tab-title.elementor-active::before,
.custom-pricing-tab-home3.custom-pricing-tab .elementor-tabs .elementor-tabs-wrapper .elementor-tab-title:hover::before,
.custom-border-button1.custom-border-button.elementor-element.elementor-widget-button a.elementor-button:hover::before,
.custom-border-button1.custom-border-button .elementor-widget-button .elementor-button:hover:before,
.elementor-element.elementor-widget-progress .elementor-progress-wrapper .elementor-progress-bar::before,
.jws_account .no_user .jws_text::before,
.jws-product-shop .product-archive .text-center .cart-hover .product_type_grouped:hover:before,
.jws-product-shop .product-archive .text-center .cart-hover .product_type_external:hover:before,
.jws-price-table .jws-price-table__ribbon .jws-price-table__ribbon-inner:before,
.elementor-element.elementor-widget-button a.elementor-button,
.elementor-widget-button .elementor-button:before,
.woocommerce .cart input.button:before,
.jws-testimonial.layout-testimonial3 .testimonial-listing .slide-content-testimonial .slide-content-testimonial__box-shadow::before,
.jws_tab_wrap.layout_layout4 .tab_nav_wrap .tab_nav li.current::before::before,
.woocommerce #review_form #respond .form-submit #submit::before,
#jws-popup-login .submit .button:before,
.elementor-menu-cart__footer-buttons .elementor-button--view-cart::before,
.woocommerce .cart input.button::before,
.jws_account .account-menu-dropdown a::before,
.woocommerce .woocommerce-MyAccount-content .woocommerce-Button.button::before,
.jws_account .account-menu-dropdown a::before,
.woocommerce a.button::before,
.woocommerce a.button:hover::before,
.jws_video_popup .jws_video_popup_inner a .gradient_background_color::before {
  position: absolute;
  width: 100%;
  left: 0;
  -webkit-transition: all .4s;
  -moz-transition: all .4s;
  -ms-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
  content: '';
}
.elementor-widget-button .elementor-button:before {
  content: '';
  position: absolute;
  width: 100%;
  left: 0;
  height: 100%;
  -webkit-transition: all .4s;
  -moz-transition: all .4s;
  -ms-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}
.jws-title-bar-wrap {
  background-color: #333333;
  padding: 90px 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-image: url(../../images/background-titlebar.jpg);  
}

.alignleft,
img.alignleft {
    margin-right: 1.5em;
    float: left;
}
.alignright,
img.alignright {
    margin-left: 1.5em;
    float: right;
}
.aligncenter,
img.aligncenter {
    margin-right: auto;
    margin-left: auto;
    display: block;
    clear: both;
}
.alignnone,
img.alignnone {
    
/* not sure about this one */;
}
.wp-caption {
    margin-bottom: 1.5em;
    text-align: center;
    padding-top: 5px;
}
.wp-caption img {
    border: 0 none;
    padding: 0;
    margin: 0;
}
.wp-caption p.wp-caption-text {
    line-height: 1.5;
    font-size: 10px;
    margin: 0;
}
.wp-smiley {
    margin: 0 !important;
    max-height: 1em;
}
blockquote.left {
    margin-right: 20px;
    text-align: right;
    margin-left: 0;
    width: 33%;
    float: left;
}
blockquote.right {
    margin-left: 20px;
    text-align: left;
    margin-right: 0;
    width: 33%;
    float: right;
}
.gallery dl {}
.gallery dt {}
.gallery dd {}
.gallery dl a {}
.gallery dl img {}
.gallery-caption {color:#333333;}
.size-full {}
.size-large {}
.size-medium {}
.size-thumbnail {}
.wp-block-cover-image-text, .wp-block-cover-text, section.wp-block-cover-image h2 {
  color: #fff !important;  
}
.jws_blogs_content .alignleft {
    margin-top: 0;
}
.wp-block-gallery.alignfull.columns-3 {
    padding: 0 22px;
}
.wp-block-embed-twitter {
    margin: 0;
} .wp-block-quote cite {
  color: #6c7781;
}
 .wp-block-embed {
  margin-bottom: 1.5em;
}
 li {
  margin-bottom: 7px;
}
figcaption {
  margin-top: 1em;
      color: #555d66;
    font-size: 13px;
    text-align: center;
        line-height: 1.8;
}
 .wp-block-table td,
 .wp-block-table th {
  border: 0;
}
 .wp-block-quote.is-style-large cite,
 .wp-block-quote.is-style-large footer,
 .wp-block-quote.is-large cite,
 .wp-block-quote.is-large footer {
  font-size: 14px;
}
 blockquote {
  border-left: 0;
}
 .wp-block-preformatted {
  display: block;
  padding: 9.5px;
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.8;
  color: #333;
  word-break: break-all;
  word-wrap: break-word;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 4px;
}
 pre.wp-block-verse {
  white-space: nowrap;
  overflow: auto;
  display: block;
  padding: 9.5px;
  margin: 0 0 20px;
  font-size: 13px;
  line-height: 1.8;
  color: #333;
  word-break: break-all;
  word-wrap: break-word;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
}
 .wp-block-button__link {
  padding: 15px 24px;
  color: #ffffff !important;
}
 .wp-block-column p {
  margin: 0;
}
 .wp-block-column {
  margin-bottom: 0;
}
 .wp-block-table td,
 .wp-block-table th {
  padding: 1.2em 0;
}
 .wp-block-cover.alignfull
 {
    position: relative;
    left: calc( -27.5% - 75px);
    width: calc( 155% + 150px);
    max-width: calc( 155% + 150px);
}
 .wp-block-gallery.alignfull {
    max-width: 100vw;
  width: 100vw;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  margin-left: 50%;  
 }
@media(max-width:767px) {
    .wp-block-cover.alignfull,
 .wp-block-gallery.alignfull {
    left: 0;
    width: 100%;
    max-width: 100%;
} 
}
 .wp-block-quote:not(.is-large):not(.is-style-large) {
  padding-left: 20px;
  border-left: 4px solid #000;
  padding-top: 1px;
}
 .wp-block-latest-posts {
  margin-bottom: 32px;
}
 .wp-block-cover.alignright {
  margin-bottom: 50px;
}
 blockquote p:last-child {
  margin-top: 0;
}
 .wp-block-image {
  margin-bottom: 1.9em;
}
 .wp-block-gallery {
  margin-top: 32px;
  margin-bottom: 32px;
}
 .wp-block-image.alignfull {
  max-width: 100vw;
  width: 100vw;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  margin-left: 50%;
  margin-bottom: 38px;
}
 .alignwide {
  max-width: calc(100% + 100px);
  width: calc(100% + 100px);
  margin-left: -50px;
  margin-right: -50px;
}
 .wp-block-cover-image.has-background-dim:before,
 .wp-block-cover.has-background-dim:before {
  z-index: 0;
}
 .wp-block-latest-posts {
  padding-left: 2.5em;
}
 .wp-block-quote.is-style-large,
 .wp-block-quote.is-large {
  border: 0;
}
 .wp-block-button {
  margin-bottom: 3em !important;
}
.footer-logo {
    margin-bottom: 20px;display: block;
}
.site-footer {
      padding: 90px 0;
    background: #fafafa;
    text-align: center;  
}
img {
    max-width: 100%;
}
.screen-reader-text {
    display: none;
}



.widget_nav_menu ul ul {
  padding-left: 15px;  
      font-weight: 700;
}
.widget_nav_menu ul ul li a {
     padding: 6px 0;
    display: block;
}
.widget_nav_menu .menu-testing-menu-container > ul >  li >  a  {
     padding: 6px 0;
    display: block;  
        font-weight: 700;
}
.widget_nav_menu ul {
     padding-left: 19px;
         list-style-type: none;
    padding: 0;
        margin: 0;
   
color: #1e1666;
}
.widget_nav_menu .menu-testing-menu-container > ul {
   margin-bottom: -20px;  
}
table {
  border-collapse: collapse;
  width: 100%;
}
table thead th {
   padding: 0.8em;
     border: 0.1rem solid #eee;
     text-align: left;
}
table tr {
  border-bottom: 1px solid #eee;
}
table tr td {
  padding: 0.8em;
      border: 0.1rem solid #eee;
      text-align: left;
}
.wp-calendar-table caption {
       background: #eee; 
           caption-side: unset;
           text-align: center;
               color: #1e1666;
}
table.wp-calendar-table {
 border: 1px solid #eee;   
}
.wp-calendar-nav {
    margin-top: 5px;
    margin-bottom: -10px;
}
.bypostauthor {
    display: inline-block;
}
.sticky {
    background: #fafafa;
    padding: 0 30px 20px;    
}
.is-style-outline .wp-block-button__link, .wp-block-button__link.is-style-outline {
       color: #32373c !important; 
}
.wp-block-cover, .wp-block-cover-image{
       margin-bottom: 40px;
}
.wp-block-gallery.columns-2 {
    margin-top: 0;
}
.wp-block-column .wp-block-image {
   margin-top: 20px; 
}
.not-thumbnail .blog-img-info {
  display: none;  
}
.not-thumbnail .m-15 , .not-thumbnail .content-blog {
     max-width: 100% !important;
    flex: 0 0 100% !important;
        margin: 0 !important;
    padding: 0 !important;
}
h1 , h2 , h3 , h4 ,h5 ,h6 {
      margin-top: 2em;
    margin-bottom: 1em;  
}
.page-links {
    clear: both;
    height: 50px;
}
.page-links .current, .page-links a{
       padding: 5px 10px;
    border: 1px solid #666666; 
}
.page-links .current {
      background-color: #666666;
    color: #ffffff;  
}
.content-area img.wp-image-827 {
      margin: 0 0 1.5em 0;  
      clear: both;
}
.m-15 .post-title {
    margin-top: 0;
}
#cancel-comment-reply-link {
      font-size: 14px;
    margin-left: 10px;  
}
.comment-list > li {
    margin-bottom: 0;
}
.jws-text-ellipsis {
    margin: 0;
}
th {
      padding: 10px 0;  
}
.search-no-results .error-404, .error404 .error-404 {
       max-width: 500px;
    margin: 0 auto;
    text-align: center; 
        padding-bottom: 100px;
}
.error-404 .search-submit{
    width: 50px;
    height: 50px;
    border: 0;
    font-size: 12px;
cursor: pointer;
    display: inline-block;
    vertical-align: middle;
        background: #232323;
    color: #fff;
    float: right;
} 
.error-404 .search-field {
      height: 50px;
    border: 1px solid #ebebeb;
    display: inline-block;
    vertical-align: middle;    padding: 0 15px;  
      width: calc(100% - 50px);
}
.error-404 .page-title {
     font-size: 30px;
    margin-bottom: 20px;
        color: #1e1666;
    font-weight: 600;
}
.error-404 p {
     margin-bottom: 25px;   
}
.nxl-products-grid {
    margin-bottom: 50px;
}
.nxl_woo_shop .products{
        clear: both;
}
.woocommerce .woocommerce-ordering select {
        height: 40px;
    padding: 0 15px;
}
.nxl_woo_top:after {
    content:"";
    display: table;
    clear: both;
}
.nxl_woo_top {
        margin-bottom: 25px;
}
.woocommerce #content div.product div.images, .woocommerce div.product div.images, .woocommerce-page #content div.product div.images, .woocommerce-page div.product div.images {
    width: 100%;
}
.nxl_woo_single , .nxl_woo_shop{
    padding-top: 100px;
    padding-bottom: 100px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
    padding: 0;
}

.woocommerce #review_form #respond .form-submit input {
      background-size: 200%;
   background-image: linear-gradient(to right,#cc2b5e 0%,#753a88 51%,#cc2b5e 100%);  
}

.single_add_to_cart_button{
        background-size: 200%;
   background-image: linear-gradient(to right,#cc2b5e 0%,#753a88 51%,#cc2b5e 100%);   
}
.woocommerce div.product p.price, .woocommerce div.product span.price {
     color: #212529;   
}
@media(max-width:991px) {
    .hidden-mobile {
        display:none;
    }
}

@media(min-width:992px) {
    .hidden-lap {
        display:none;
    }
}


.elemetor-menu-mobile  {
    text-align: right;
}
.elemetor-menu-mobile .jws-tiger-mobile {
      font-size: 30px;
    color: #000000;  
        cursor: pointer;
    margin-top: 35px;
    display: block;
}
.overlay {
   background: rgba(0,0,0,0.8);
   position: fixed;
   width: 100%;
   height: 100%;
   transition: 0.3s all;
   opacity: 0;     left: 0;
    top: 0;
    visibility: hidden;
    z-index: 1;
}
.elemetor-menu-mobile.active .overlay {
    opacity: 1;
    visibility: visible;
}
.menu-mobile-default {
position: fixed;
    background: #ffffff;
    height: 100%;
    left: 0;
    top: 0;
    width: 300px;
    text-align: left;
        transition: 0.4s;
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    z-index: 2;padding: 46px 0;
}
.elemetor-menu-mobile.active .menu-mobile-default{
   transform: translateX(0%);
    -webkit-transform: translateX(0%);  
}

.jws_nav {
    margin: 0 !important;
    list-style-type: none;
    padding: 0;
}

.linearicons-free-chevron-right:before {
       content: '\e81e'; 
           font-family: "linearicons-free";
}
.jws_main_menu_inner {
  padding: 40px 20px;  
}
.woocommerce span.onsale {
    display: none;
}
blockquote {
 border-color: #cd2653;
    border-style: solid;
    border-width: 0 0 0 0.2rem;
    color: inherit;
    font-size: 1em;

    padding: 0.5rem 0 0.5rem 2rem;   
}
pre {
border-style: solid;
    border-width: 2px 2px 2px 2px;
    border-color: #E2E2E2;
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    margin-top: 0px;
    margin-bottom: 40px;
    padding: 30px 30px 30px 30px;
    margin-bottom: 50px;
}
b, strong {
   font-weight: bold; color: #1e1666;
}

code {
    padding: 2px 4px;
    font-size: 90%;
    color: #ffffff;
    background-color: #cd2653;
    border-radius: 4px;
}
a > code {
  color: #ffffff;  
}
code, kbd, pre, samp {
       font-family: Menlo, Monaco, Consolas, "Courier New", monospace; 
}
kbd {
  padding: 2px 4px;
    font-size: 90%;
    color: #ffffff;
    background-color: #cd2653;
    border-radius: 4px; 
}
ins {
  text-decoration: underline;
}
abbr[title], abbr[data-original-title] {
      cursor: help;
    border-bottom: 1px dotted #777;  
}

.rss-date {
   color: #cc2b5e; 
}
ul .rsswidget {
   font-weight: 600 !important;     display: block;
}
.widget_rss li:not(:last-child) {
    margin-bottom: 20px !important;
}
a , a:hover{
    text-decoration: none;
}
.wp-calendar-nav-prev a {
  color: #cc2b5e; 
}
.nxl_sidebar .widget{
       border-radius: 5px;
    border: 2px solid #f6f6f6;
    padding: 37px 25px; 
}
.nxl_sidebar .widget .widget-title{
    margin-top: 0;
        color: #1e1666;
            font-size: 20px;
    line-height: 28px;
    letter-spacing: 0.3px;
    font-weight: 800;
      margin-bottom: 10px;
          margin-top: -8px;
}
body {
        font-family: Nunito;
            color: #57647c;    line-height: 30px;
}
.elementor-post .post-title {
     color: #1e1666;
    font-family: Nunito;
    font-weight: 800;
    font-size: 24px;
    line-height: 30px;   
    margin-bottom: 0;
      margin-top: 0;
} 
.jws-title-bar h1 {
      font-family: Nunito;
    line-height: 56px;
    font-weight: 800;
    font-style: normal;
    font-size: 48px;
    color: #1e1666;  
}
.is-style-squared .wp-block-button__link{
  border-radius: 0;  
}
.wp-caption {
     margin-bottom: 2.5em;   
}
.wp-block-columns.alignfull {
      position: relative;
    left: calc( -27.5% - 75px);
    width: calc( 155% + 150px);
    max-width: calc( 155% + 150px);
        padding: 0 50px;
            margin-bottom: 4rem;
    margin-top: 4rem;
}
.alignright, img.alignright , .wp-block-image .alignright {
       margin-bottom: 40px; 
}
p .wp-image-904.alignright {
       margin-right: -11rem;
    margin-top: 7rem; 
}
.has_sidebar .wp-block-cover.alignfull {
     left: 0;
    width: 100%;
    max-width: 100%;   
}
.has_sidebar .alignwide {
   left: 0;
    width: 100%;
    max-width: 100%;    
         margin-left: 0;
    margin-right: 0;
}

.has_sidebar .wp-block-gallery.alignfull {
    left: 0;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    transform: none;
    padding: 0;
}

.has_sidebar .wp-block-columns.alignfull {
    left: 0;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    transform: none;
    padding: 0;  
}
 dd {
  margin: 0 1.5em 1.5em;
  color: #1e1666;
}
 dt {
  font-weight: 700;
  color: #1e1666;
}
td a {
 color:#cc2b5e ;  

}


.comment-respond .comment-reply-title {
   margin-top: 50px;
}
    color: #1e1666;  
}
.has_sidebar  .wp-block-image.alignfull {
     left: 0;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    transform: none;
    padding: 0;  
}

.has_sidebar figure[style="width: 1200px"] {
    width: 100% !important;
}
figcaption {
   margin-top: 15px; 
}
.post-password-form input[type="password"] {
 border: 1px solid #cecece;
    height: 50px;   
}

.post-password-form input[type="submit"] {
     height: 50px;
    background: #232323;
    border: 1px solid #232323;
    color: #ffffff;
    padding: 0 15px;   
}

.woocommerce div.product form.cart.grouped_form  div.quantity {
    height: 40px;
        justify-content: space-around;
}
.woocommerce div.product form.cart.grouped_form  div.quantity .jws-font {
        font-size: 16px;
}
.post-no-thumbnail .elementor-post {
    display: block !important;
}
.post-no-thumbnail .elementor-post .content-blog {
       -ms-flex: 0 0 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}
.post-no-thumbnail .elementor-post .blog-img-info {
    display: none;
}
body:not(.single) .content-area {
      padding: 100px 0; 
      max-width: 1200px; 
      margin: 0 auto;
}
body h1 , body h2 ,body h3, body h4, body h5, body h6 {
    font-weight: 800;
        color: #1e1666;
}
blockquote p {
    margin-bottom: 0;
}
tbody th {
        color: #cc2b5e;
            padding: 0.8em;
    border: 0.1rem solid #eee;
    text-align: left;
}
.search-results .content-area {
    padding: 5px 0 60px 0;
}

.justify-content-between .post-comment {
    display: none;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li::before , .woocommerce div.product .woocommerce-tabs ul.tabs li::after {
    display: none;
}
table.shop_table thead th {
        border-bottom: 0;
}
.page-view-cart thead tr {
   background: rgba(198,221,254,0.5); 
}
.page-view-cart .woocommerce-cart-form table {
      border: none;  
}
.close-menu {
 position: absolute;
    right: 16px;
    color: #131313;
    font-size: 25px;
        top: 50px;
        cursor: pointer;
}
.woocommerce div.product .product_title {
    display: none;
}
.woocommerce-product-gallery__wrapper .slick-slide {
    padding: 0;
}
.woocommerce .checkout_coupon .button{
display: inline-block;
    border-radius: 30px;
    height: 50px;
    line-height: 50px;
    padding: 0px 37px;
    margin-bottom: 5px;
    margin-right: 15px;
    font-size: 16px;
    letter-spacing: 0.5px;
    background-size: 200%;
    background-image: linear-gradient(to right,#cc2b5e 0%,#753a88 51%,#cc2b5e 100%) !important;
    color: #ffffff !important;
    padding-bottom: 0;
}
.woocommerce-checkout #payment.woocommerce-checkout-payment .form-row.place-order #place_order {
      background-size: 200%;
    background-image: linear-gradient(to right,#cc2b5e 0%,#753a88 51%,#cc2b5e 100%) !important;
    color: #ffffff !important;  
}

body .select2-container--default .select2-selection--single .select2-selection__arrow{
      top: 9px;
    right: 6px;  
}
select {
      width: 100%;
    height: 45px;  
}
.woocommerce-noreviews {
        margin: 0;
}
.woocommerce table.shop_table tbody:first-child tr:first-child td, .woocommerce table.shop_table tbody:first-child tr:first-child th {
    border:none;
}
.cart-total td:before {
    display:none;
  } 
.order-total td:before {
    display:none;
}     
   .woocommerce .cart-collaterals .order-total td, .woocommerce-page .cart-collaterals .order-total td {
        padding-bottom: 25px;
    }
@media(max-width:767px) {
    .woocommerce .woocommerce-shipping-totals .woocommerce-shipping-methods#shipping_method {
    display:block;
    padding: 0;
        padding-bottom: 30px;
    }
    .woocommerce-shipping-totals td {
        padding: 0 !important;
    }
    .woocommerce .woocommerce-shipping-totals .woocommerce-shipping-calculator {
         margin-bottom: 14px;   
    }
    .woocommerce-shipping-totals td:before {
        font-size:14px !important;    color: #1e1666;
    }
    .woocommerce .cart-collaterals .cart_totals, .woocommerce-page .cart-collaterals .cart_totals {
          border: 1px solid;
    padding: 30px 0;  
    }
 
.woocommerce table.shop_table_responsive tr.cart-total td, .woocommerce-page table.shop_table_responsive tr.order-total td {
      text-align: left !important;  
}
.woocommerce table.shop_table_responsive tr.cart-total , .woocommerce-page table.shop_table_responsive tr.order-total  {
    border:0 !important;
}
.woocommerce table.shop_table_responsive tr.cart-total td > span , .woocommerce-page table.shop_table_responsive tr.order-total td > strong {
    float: right;
}
.woocommerce .cart-collaterals .cart-subtotal h6, .woocommerce-page .cart-collaterals .cart-subtotal h6 {
    margin: 0;
}
 .woocommerce-page table.shop_table_responsive tr.order-total td {
        padding-left: 0;
 }
.woocommerce .cart-collaterals .cart-subtotal {
    padding: 0 !important;
}
.product-remove {
    display: none !important;
}
.woocommerce table.shop_table_responsive tr, .woocommerce-page table.shop_table_responsive tr {
       padding: 10px 15px !important; 
       border: 0;
}
}

.woocommerce-checkout #payment.woocommerce-checkout-payment .wc_payment_methods {
      border-bottom: 1px solid #e3e7e8;  
}
#add_payment_method #payment .payment_method_paypal .about_paypal, .woocommerce-cart #payment .payment_method_paypal .about_paypal, .woocommerce-checkout #payment .payment_method_paypal .about_paypal {
       float: right;
    line-height: 36px;
    font-size: .83em;
    margin-left: 10px; 
}
.woocommerce-checkout-payment .form-row {
    margin-bottom: 0 !important;
}
.shipping-calculator-form input {
      width: 100%;
    border: 1px solid #a8a8a8;
    height: 45px;
    padding-left: 15px;  
}

.shipping-calculator-form .select2-container--default .select2-selection--single {
      width: 100%;
    border: 1px solid #a8a8a8;
    height: 45px;
    padding-left: 15px;
    border-radius: 0;  
}

.shipping-calculator-form .select2-container--default .select2-selection--single .select2-selection__rendered {
      line-height: 45px;  
}
.woocommerce .shipping-calculator-form .button {
      display: inline-block;
    border-radius: 30px;
    height: 50px;
    line-height: 50px;
    padding: 0px 70px;
    margin-bottom: 5px;
    margin-right: 15px;
    font-size: 16px;
    letter-spacing: 0.5px;
    background-size: 200%;
    background-image: linear-gradient(to right,#cc2b5e 0%,#753a88 51%,#cc2b5e 100%);
    color: #fff;  
}
.shipping-calculator-form .form-row {
       margin-bottom: 15px !important; 
}
blockquote {
     margin: 2.5rem 0 1rem;
         border-width: 0 0 0 0.4rem;
             padding: 0.9rem 0 0.9rem 2rem;
    background: #fff1f5;   
}
.site-main {
      padding: 0 15px;  
}

.comment .comment-respond .comment-reply-title {
    margin-top: 0;
}
.comment .comment-respond {
       margin-bottom: 38px; 
}
.default-blog-listing {
     padding-top: 0;
         margin-top: -27px;   
}
table.wp-calendar-table  thead th  {
    padding: 0.8em 0;
    text-align: center;
}
table.wp-calendar-table  tr td  {
    padding: 0.8em 0;
    text-align: center;
}
@media(max-width:767px) {
    .woocommerce-Reviews ol li .comment-body, .comments-area ol li .comment-body {
          display: block;
    background: #f7f7f7;
    padding: 25px 25px;
    }
    .woocommerce-Reviews .comment-list, .comments-area .comment-list {
          padding-left: 0;  
    }
    .woocommerce-Reviews ol li .comment-body .comment-info, .comments-area ol li .comment-body .comment-info {
          padding: 0;
    margin-left: 0;
    width: 100%;
    margin-top: 0;  
    }
    .comment .comment-respond {
          margin-bottom: 14px;  
    }
 .wp-caption {
    max-width: 100%;
}   
p .wp-image-904.alignright {
     margin-right: 0;
    margin-top: 2rem;   
}
}

body.single-post .site-main {
    padding: 0;
}
.coupon.col-lg-6 {
       flex: 0 0 100%;
    max-width: 100%; 
}
.widget_block ul {
      list-style: none;
    margin: 0;
    position: relative;
    padding: 0;  
}
.has_sidebar .wp-block-image.alignfull {
       max-width: 100%;
    width: 100vw;
    transform: none;
    -webkit-transform: none;
    margin-left: 0;
    margin-bottom: 38px; 
}