/********** Template CSS **********/
:root {
    --primary: #FDA12B;
    --secondary: #8D9297;
    --light: #F8F9FA;
    --dark: #182333;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}
body {
    overflow-x: hidden;
    font-family: 'Roboto', 'Poppins', sans-serif;
}
@font-face {
  font-family: 'Roboto';
  src: url('fonts/Roboto-Medium.ttf') format('truetype');
  font-display: swap;
  font-weight: 500;
  /* Define el peso que corresponde a Roboto-Medium */
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-nav .nav-link {
    margin-left: 30px;
    padding: 25px 0;
    color: var(--secondary);
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-left: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 25px;
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        right: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    text-align: start;
    background: rgba(0, 0, 0, .65);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 4rem;
    height: 4rem;
    background-color: var(--dark);
    border: 15px solid var(--dark);
    border-radius: 50px;
}

.carousel-caption .breadcrumb-item+.breadcrumb-item::before {
    content: "\f111";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 3rem;
        height: 3rem;
        border-width: 12px;
    }
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, .65)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: #999999;
}


/*** Facts ***/
.facts-overlay {
    position: absolute;
    padding: 30px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(0, 0, 0, .65);
}

.facts-overlay h1 {
    font-size: 120px;
    color: transparent;
    -webkit-text-stroke: 2px var(--primary);
}

.facts-overlay a:hover {
    color: var(--primary) !important;
}


/*** Service ***/
.service-text::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: var(--primary);
    opacity: 0;
    transition: .5s;
}

.service-item:hover .service-text::before {
    height: 100%;
    opacity: 1;
}

.service-text * {
    position: relative;
    transition: .5s;
    z-index: 1;
}

.service-item:hover .service-text * {
    color: #FFFFFF !important;
}


/*** Appointment ***/
.appointment {
   /** background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, .65)), url(../img/carousel-2.jpg) center center no-repeat;*/
   /* background-size: cover;*/
}


/*** Team ***/
.team-text {
    position: absolute;
    width: 75%;
    bottom: 30px;
    left: 0;
    transition: .5s;
}

.team-item:hover .team-text {
    width: 100%;
}

.team-text * {
    transition: .5s;
}

.team-item:hover .team-text * {
    letter-spacing: 2px;
}

img {
    max-width: 100%;
    height: auto;
}


/*** Testimonial ***/
.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: start;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin-right: 15px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    border: 2px solid var(--primary);
    border-radius: 50px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Footer ***/
.footer {
    color: #999999;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #999999;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #999999;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}
@-webkit-keyframes chatra-chat-appear-from-bottom {
    from {
      opacity: 0;
      -webkit-transform: translateY(20px) scale(.97);
      transform: translateY(20px) scale(.97);
    }

    to {
      opacity: 1;
      -webkit-transform: translateY(0) scale(1);
      transform: translateY(0) scale(1);
    }
  }

  @keyframes chatra-chat-appear-from-bottom {
    from {
      opacity: 0;
      -webkit-transform: translateY(20px) scale(.97);
      transform: translateY(20px) scale(.97);
    }

    to {
      opacity: 1;
      -webkit-transform: translateY(0) scale(1);
      transform: translateY(0) scale(1);
    }
  }

  @-webkit-keyframes chatra-chat-appear-from-top {
    from {
      opacity: 0;
      -webkit-transform: translateY(-20px) scale(.97);
      transform: translateY(-20px) scale(.97);
    }

    to {
      opacity: 1;
      -webkit-transform: translateY(0) scale(1);
      transform: translateY(0) scale(1);
    }
  }

  @keyframes chatra-chat-appear-from-top {
    from {
      opacity: 0;
      -webkit-transform: translateY(-20px) scale(.97);
      transform: translateY(-20px) scale(.97);
    }

    to {
      opacity: 1;
      -webkit-transform: translateY(0) scale(1);
      transform: translateY(0) scale(1);
    }
  }

  @-webkit-keyframes chatra-chat-appear {
    from {
      opacity: 0;
      -webkit-transform: scale(.95);
      transform: scale(.95);
    }

    to {
      opacity: 1;
      -webkit-transform: scale(1);
      transform: scale(1);
    }
  }

  @keyframes chatra-chat-appear {
    from {
      opacity: 0;
      -webkit-transform: scale(.95);
      transform: scale(.95);
    }

    to {
      opacity: 1;
      -webkit-transform: scale(1);
      transform: scale(1);
    }
  }

  @-webkit-keyframes chatra-round-button-appear {
    from {
      opacity: 0;
      -webkit-transform: scale(.5);
      transform: scale(.5);
    }

    to {
      opacity: 1;
      -webkit-transform: scale(1);
      transform: scale(1);
    }
  }

  @keyframes chatra-round-button-appear {
    from {
      opacity: 0;
      -webkit-transform: scale(.5);
      transform: scale(.5);
    }

    to {
      opacity: 1;
      -webkit-transform: scale(1);
      transform: scale(1);
    }
  }

  @-webkit-keyframes chatra-tab-button-appear {
    from {
      opacity: 0;
      -webkit-transform: scale(.9);
      transform: scale(.9);
    }

    to {
      opacity: 1;
      -webkit-transform: scale(1);
      transform: scale(1);
    }
  }

  @keyframes chatra-tab-button-appear {
    from {
      opacity: 0;
      -webkit-transform: scale(.9);
      transform: scale(.9);
    }

    to {
      opacity: 1;
      -webkit-transform: scale(1);
      transform: scale(1);
    }
  }

  @-webkit-keyframes chatra-transparent-appear {
    from {
      opacity: 0;
    }

    to {
      opacity: 1;
    }
  }

  @keyframes chatra-transparent-appear {
    from {
      opacity: 0;
    }

    to {
      opacity: 1;
    }
  }

  html.chatra-mobile-widget-expanded,
  body.chatra-mobile-widget-expanded {
    overflow: hidden !important;
    height: 100% !important;
    width: 100% !important;
    position: fixed !important;
    margin: 0 !important;
    top: 0 !important;
    left: 0 !important;
  }

  #chatra {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    max-height: calc(100% - 40px);
    max-width: calc(100% - 40px);
    -webkit-transition: .2s linear;
    transition: .2s linear;
    -webkit-transition-property: visibility, opacity;
    transition-property: visibility, opacity;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    width: auto;
    height: auto;
    min-height: 0;
    min-width: 0;
    display: block;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    padding: 0;
    margin: 0;
  }

  @media print {
    #chatra {
      display: none;
    }
  }

  #chatra__iframe-wrapper,
  #chatra__iframe {
    left: 0 !important;
    top: 0 !important;
    height: 100% !important;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    min-height: 100% !important;
    max-height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
    background: transparent !important;
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }

  #chatra__iframe-wrapper {
    position: absolute;
    -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.1), 0 0 10px rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.1), 0 0 10px rgba(0, 0, 0, 0.3);
    overflow: hidden !important;
  }

  #chatra #chatra__iframe-wrapper,
  #chatra.chatra--safari #chatra__iframe,
  #chatra.chatra--webkit.chatra--expanded #chatra__iframe {
    border-radius: 12px;
  }

  #chatra.chatra--mobile-widget:not(.chatra--expanded),
  #chatra.chatra--mobile-widget:not(.chatra--expanded) * {
    cursor: pointer;
  }

  #chatra.chatra--safari #chatra__iframe {
    -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, from(#000), to(#000));
    -webkit-mask-image: linear-gradient(#000, #000);
    mask-image: -webkit-gradient(linear, left top, left bottom, from(#000), to(#000));
    mask-image: linear-gradient(#000, #000);
    -webkit-mask-position: 50% 50%;
    mask-position: 50% 50%;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  #chatra:not(.chatra--expanded) #chatra__iframe-wrapper {
    -webkit-transition: .2s linear;
    transition: .2s linear;
    -webkit-transition-property: -webkit-box-shadow;
    transition-property: -webkit-box-shadow;
    transition-property: box-shadow;
    transition-property: box-shadow, -webkit-box-shadow;
  }

  #chatra:not(.chatra--expanded):hover #chatra__iframe-wrapper {
    -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.1), 0 0 15px rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.1), 0 0 15px rgba(0, 0, 0, 0.4);
  }

  #chatra.chatra--visible {
    visibility: visible;
    opacity: 1;
  }

  #chatra.chatra--animating {
    -webkit-transition: 350ms cubic-bezier(.25, .1, 0, 1);
    transition: 350ms cubic-bezier(.25, .1, 0, 1);
    -webkit-transition-property: height, width, max-width, max-height, top, bottom, left, right, -webkit-transform;
    transition-property: height, width, max-width, max-height, top, bottom, left, right, -webkit-transform;
    transition-property: height, width, max-width, max-height, top, bottom, left, right, transform;
    transition-property: height, width, max-width, max-height, top, bottom, left, right, transform, -webkit-transform;
  }

  #chatra.chatra--style-round:not(.chatra--expanded) #chatra__iframe-wrapper,
  #chatra.chatra--style-round.chatra--safari:not(.chatra--expanded) #chatra__iframe {
    border-radius: 50%;
  }

  #chatra.chatra--custom-button:not(.chatra--expanded) {
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none;
    -webkit-transition: none;
    transition: none;
  }

  #chatra.chatra--fast-toggle.chatra--style-round:not(.chatra--expanded) #chatra__iframe-wrapper {
    -webkit-animation: chatra-round-button-appear 150ms ease-out 50ms both;
    animation: chatra-round-button-appear 150ms ease-out 50ms both;
  }

  #chatra.chatra--fast-toggle.chatra--style-tab:not(.chatra--expanded) #chatra__iframe-wrapper {
    -webkit-animation: chatra-tab-button-appear 150ms ease-out 50ms both;
    animation: chatra-tab-button-appear 150ms ease-out 50ms both;
  }

  #chatra.chatra--fast-toggle.chatra--expanded #chatra__iframe-wrapper {
    -webkit-animation: chatra-chat-appear 150ms ease-out 50ms both;
    animation: chatra-chat-appear 150ms ease-out 50ms both;
  }

  #chatra.chatra--fast-toggle.chatra--transparent #chatra__iframe-wrapper {
    -webkit-animation-name: chatra-transparent-appear;
    animation-name: chatra-transparent-appear;
  }

  #chatra.chatra--fast-toggle.chatra--expanded:not(.chatra--mobile-widget):not(.chatra--transparent) #chatra__iframe-wrapper {
    -webkit-animation-name: chatra-chat-appear-from-bottom;
    animation-name: chatra-chat-appear-from-bottom;
  }

  #chatra.chatra--fast-toggle.chatra--pos-top.chatra--expanded:not(.chatra--mobile-widget):not(.chatra--transparent) #chatra__iframe-wrapper {
    -webkit-animation-name: chatra-chat-appear-from-top;
    animation-name: chatra-chat-appear-from-top;
  }

  #chatra.chatra--expanded #chatra__iframe-wrapper {
    -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.1), 0 5px 50px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.1), 0 5px 50px rgba(0, 0, 0, 0.2);
  }

  #chatra.chatra--side-bottom {
    bottom: 20px;
  }

  #chatra.chatra--side-left {
    left: 20px;
  }

  #chatra.chatra--side-left.chatra--style-tab:not(.chatra--expanded) {
    left: 10px;
  }

  #chatra.chatra--side-right {
    right: 20px;
  }

  #chatra.chatra--side-right.chatra--style-tab:not(.chatra--expanded) {
    right: 10px;
  }

  #chatra.chatra--side-left.chatra--expanded {
    bottom: 20px;
    left: 20px;
  }

  #chatra.chatra--side-right.chatra--expanded {
    bottom: 20px;
    right: 20px;
  }

  #chatra.chatra--pos-right {
    right: 20px;
  }

  #chatra.chatra--pos-left {
    left: 20px;
  }

  #chatra.chatra--pos-center {
    left: 50%;
  }

  #chatra.chatra--pos-top.chatra--style-tab:not(.chatra--expanded) {
    bottom: 100%;
    margin-bottom: -20px;
  }

  #chatra.chatra--pos-top.chatra--style-round:not(.chatra--expanded) {
    top: 20px;
  }

  #chatra.chatra--pos-bottom:not(.chatra--expanded) {
    bottom: 20px;
  }

  #chatra.chatra--pos-middle:not(.chatra--expanded) {
    bottom: 50%;
  }

  #chatra.chatra--mobile-widget.chatra--expanded:not(.chatra--transparent) {
    max-width: none;
    max-height: none;
    top: 0 !important;
    bottom: 0 !important;
  }

  #chatra.chatra--mobile-widget.chatra--expanded #chatra__iframe-wrapper,
  #chatra.chatra--safari.chatra--mobile-widget.chatra--expanded #chatra__iframe,
  #chatra.chatra--webkit.chatra--mobile-widget.chatra--expanded #chatra__iframe {
    border-radius: .1px;
  }

  #chatra.chatra--mobile-widget.chatra--expanded.chatra--pos-right:not(.chatra--transparent) {
    right: 0;
  }

  #chatra.chatra--mobile-widget.chatra--expanded.chatra--pos-left:not(.chatra--transparent) {
    left: 0;
  }

  #chatra.chatra--mobile-widget.chatra--expanded.chatra--pos-center:not(.chatra--transparent) {
    left: 0;
  }

  #chatra.chatra--mobile-widget.chatra--expanded.chatra--side-right:not(.chatra--transparent) {
    right: 0;
  }

  #chatra.chatra--mobile-widget.chatra--expanded.chatra--side-left:not(.chatra--transparent) {
    left: 0;
  }

  #chatra.chatra--transparent.chatra--expanded {
    bottom: 10px;
  }

  #chatra.chatra--transparent.chatra--expanded #chatra__iframe-wrapper {
    -webkit-box-shadow: none;
    box-shadow: none;
  }

  #chatra.chatra--side-left.chatra--transparent,
  #chatra.chatra--pos-left.chatra--transparent {
    left: 10px;
  }

  #chatra.chatra--side-right.chatra--transparent,
  #chatra.chatra--pos-right.chatra--transparent {
    right: 10px;
  }

  #chatra.chatra--mobile-widget.chatra--transparent {
    max-height: 300px;
  }

  #chatra.chatra--bg-white {
    background: #fff;
  }
  .post-meta-content,
  .post-date {
    display: none;
  }

  .accion {
    background-color: #eb5600;
    padding: 12px;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
  }

  .promo-btn {
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
    display: inline-block;
    font-size: 16px;
    letter-spacing: 0.5px;
    background-color: #fff;
    padding: 3px 10px 3px 10px;
    color: #777;

  }

  @media (max-width: 1070px) {
    #main-nav>ul>li {
      padding: 0 7px;
    }
  }

  body,
  h1,
  h2 {
    color: #333333
  }

  #bottom ul.bottom-nav>li>a,
  .woocommerce-Price-amount,
  .shopping-cart-items-count,
  #sidebar .product_list_widget,
  .wprt-progress .title,
  .wprt-progress .perc,
  .wprt-price-table .title,
  .add_to_cart_button {
    font-weight: 600 !important;
  }

  .product_list_widget,
  .woocommerce-page .product-name a,
  .sub-heading {
    font-weight: 500 !important;
  }

  .wprt-price-table .price-table-features ul.style-1 li {
    border-bottom: 1px solid #e7e7e7 !important;
  }

  .wprt-price-table .price-table-features ul.style-1 li:first-child {
    border-top: 1px solid #e7e7e7 !important;
  }

  .footer-promotion .heading {
    letter-spacing: 1px;
  }

  .marca {
    font-weight: bold;
    font-size: 100% !important;
  }

  .marca:after {
    content: "\a";
    white-space: pre;
  }


  #featured-title .featured-title-heading-wrap {
    width: 25%;
  }

  .tabla {
    font-size: 12px;
  }

  #footer {
    font-size: 14px;
    font-weight: 600;
    color: #fff
  }

  #footer a {
    color: #fff;
  }

  #footer a:hover {
    color: #EB5600;
  }

  #footer h3 a {
    color: #333;
  }

  h1 {
    font-size: 18px !important;
    color: #000;
  }

  .vc_btn3 {
    font-weight: 700 !important;
    background-color: #EB5600 !important;
    margin-top: 20px;
  }

  table {
    font-size: 90%
  }

  td.larga {
    width: 80%;
    background-color: rgb(235, 86, 0);
    color: #ffffff;
  }

  td.corta {
    background-color: rgb(235, 86, 0);
    ;
    color: #ffffff;
  }

  .header-style-1.cur-menu-1 #main-nav>ul>li>a::before {

    background-color: #1a7dd7;
    opacity: 0;
    content: "";
    position: absolute;
    left: 50%;
    bottom: 20px;
    width: 0;
    height: 3px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: all 300ms cubic-bezier(0.680, -0.550, 0.265, 1.550);
    transition: all 300ms cubic-bezier(0.680, -0.550, 0.265, 1.550);

  }

  .vc_btn3.vc_btn3-color-white.vc_btn3-style-modern {
    color: #fff !important;
  }

  #main-nav .sub-menu li a {
    text-transform: none !important;
  }

  .post-excerpt,
  .post-date-custom,
  .post-link {
    display: none;
  }

  .post-min {
    font-size: 11px;
  }

  h4 {
    font-size: 18px !important;
    margin-bottom: 13px;
    letter-spacing: normal;
    line-height: 1.2em;
    color: #333;
  }

  .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-tiktok {
    background-color: var(--wp--preset--color--white), ;
    background-color: #fff;
    color: #fff;
    width: 1.6em;
    height: 1.6em;
  }

  .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-facebook {
    background-color: #fff;
    color: #fff;
    width: 1.6em;
    height: 1.6em;
  }

  .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-linkedin {
    background-color: #fff;
    color: #fff;
    width: 1.6em;
    height: 1.6em;
  }

  .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-youtube {
    background-color: #fff;
    color: #fff;
    width: 1.6em;
    height: 1.6em;
  }

  @media screen and (max-width: 600px) {
    .hide_slider {
      display: none;
    }
  }
  .layout-table #sp-logo-carousel-pro6392 .table-logo-area img,
  div.sp-logo-carousel-pro-section div#sp-logo-carousel-pro6392 .sp-lcp-item img {
    opacity: 1 !important;
  }

  .layout-table #sp-logo-carousel-pro6392 .table-logo-area img,
  div.sp-logo-carousel-pro-section div#sp-logo-carousel-pro6392 .sp-lcp-item img {
    padding: px;
  }

  div.sp-logo-carousel-pro-section div#sp-logo-carousel-pro6392 .sp-lcp-item:hover img {
    opacity: 1 !important;
  }

  div#sp-logo-carousel-pro6392.sp-logo-carousel-pro-area .sp-lcp-item .sp-lcp-item-border,
  div#sp-logo-carousel-pro6392.sp-logo-carousel-pro-area .sp-lcp-item.sp-lcp-item-border {
    padding: 0px;
    background: transparent;
  }

  div#sp-logo-carousel-pro6392.sp-logo-carousel-pro-area .sp-lcp-item:hover .sp-lcp-item-border,
  div#sp-logo-carousel-pro6392.sp-logo-carousel-pro-area .sp-lcp-item:hover.sp-lcp-item-border {
    background: transparent;
  }

  div.sp-logo-carousel-pro-section.layout-carousel div#sp-logo-carousel-pro6392 .swiper-slide {
    align-self: center;
  }

  div.sp-logo-carousel-pro-section:not(.layout-inline):not(.layout-table) div#sp-logo-carousel-pro6392 .sp-isotope-logo-items,
  div.sp-logo-carousel-pro-section:not(.layout-inline):not(.layout-list) div#sp-logo-carousel-pro6392 .sp-isotope-logo-items {
    align-items: center;
  }

  div.sp-logo-carousel-pro-section div#sp-logo-carousel-pro6392 [class*="lcp-col"] {
    margin: 0;
    box-shadow: none;
  }

  .sp-logo-carousel-pro-section #sp-logo-carousel-pro6392 .sp-lcpro-readmore-area {
    text-align: center;
  }

  .sp-logo-carousel-pro-section #sp-logo-carousel-pro6392 .sp-lcpro-readmore-area .sp-lcpro-readmore-text-link,
  .sp-logo-carousel-pro-section #sp-logo-carousel-pro6392 .sp-lcpro-readmore-area .sp-lcpro-readmore {
    background: transparent;
    color: #05b3c6;
    padding: 5px 13px;
    margin-bottom: 18px;
    display: inline-block;
    border-radius: 2px;
    border: 2px solid #05b3c6 !important;
    font-size: 14px;
    font-family: Ubuntu;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0px;
    text-transform: none;
  }

  .sp-logo-carousel-pro-section #sp-logo-carousel-pro6392 .sp-lcpro-readmore-area .sp-lcpro-readmore:hover {
    background: #05b3c6;
    color: #ffffff;
    border: 2px solid #05b3c6 !important;
  }

  .sp-logo-carousel-pro-section #sp-logo-carousel-pro6392 .sp-lcpro-readmore-area .sp-lcpro-readmore-text-link {
    color: #555555;
    border: 0 !important;
    padding: 0;
    text-decoration: underline;
  }

  .sp-logo-carousel-pro-section #sp-logo-carousel-pro6392 .sp-lcpro-readmore-area .sp-lcpro-readmore-text-link:hover {
    color: #05b3c6;
    background: unset;
    border: 0 !important;
  }

  div.sp-logo-carousel-pro-section.layout-carousel div#sp-logo-carousel-pro6392 .sp-lcp-item {
    opacity: 0.5;
    margin: 0;
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
  }

  div.sp-logo-carousel-pro-section.layout-carousel div#sp-logo-carousel-pro6392 .swiper-slide-active .sp-lcp-item-border {
    -webkit-transform: scale(1.4);
    -moz-transform: scale(1.4);
    -ms-transform: scale(1.4);
    -o-transform: scale(1.4);
    transform: scale(1.4);
    opacity: 1;
  }

  div.sp-logo-carousel-pro-section.layout-carousel div#sp-logo-carousel-pro6392 .sp-lcp-item.swiper-slide-active {
    opacity: 1;
  }

  .sp-logo-carousel-pro-section.layout-carousel div#sp-logo-carousel-pro6392.sp-logo-carousel-pro-area {
    padding-left: 60px;
    padding-right: 60px;
    padding-top: px;
    padding-bottom: px;
  }

  div#sp-logo-carousel-pro6392.sp-logo-carousel-pro-area .sp-lcp-table-item .sp-lcp-table-item-border.content_position_overlay .sp-lcp-logo-content-details.overlay-type-covered,
  div#sp-logo-carousel-pro6392.sp-logo-carousel-pro-area .sp-lcp-item .sp-lcp-item-border.content_position_overlay .sp-lcp-logo-content-details.overlay-type-covered {
    opacity: 1;
    z-index: 10;
  }

  .layout-inline #sp-logo-carousel-pro6392.lcp-container {
    padding-right: 1px;
  }

  .lcp-table-layout-header,
  div#sp-logo-carousel-pro6392.sp-logo-carousel-pro-area .sp-lcp-item .sp-lcp-item-border,
  div#sp-logo-carousel-pro6392.sp-logo-carousel-pro-area .sp-lcp-item.sp-lcp-item-border {
    border: 1px solid #dddddd;
  }

  .layout-inline #sp-logo-carousel-pro6392.sp-logo-carousel-pro-area .sp-lcp-item .sp-lcp-item-border,
  .layout-inline #sp-logo-carousel-pro6392.sp-logo-carousel-pro-area .sp-lcp-item.sp-lcp-item-border {
    margin: 0 -1px -1px 0;
  }

  div#sp-logo-carousel-pro6392.sp-logo-carousel-pro-area .sp-lcp-item:hover .sp-lcp-item-border,
  div#sp-logo-carousel-pro6392.sp-logo-carousel-pro-area .sp-lcp-item:hover.sp-lcp-item-border {
    border-color: #16a08b;
  }

  div#sp-logo-carousel-pro6392.sp-logo-carousel-pro-area .sp-lcp-item .sp-lcp-item-border,
  div#sp-logo-carousel-pro6392.sp-logo-carousel-pro-area .sp-lcp-item.sp-lcp-item-border {
    border-radius: 0px;
    z-index: 1;
    overflow: hidden;
  }

  div#sp-logo-carousel-pro6392.sp-logo-carousel-pro-area .sp-lcp-prev-button,
  div#sp-logo-carousel-pro6392.sp-logo-carousel-pro-area .sp-lcp-next-button {
    border-radius: 0px;
    font-size: 20px;
    width: 30px;
    height: 30px;
  }

  div#sp-logo-carousel-pro6392.sp-logo-carousel-pro-area .sp-lcp-prev-button,
  div#sp-logo-carousel-pro6392.sp-logo-carousel-pro-area .sp-lcp-next-button {
    background-color: transparent;
    color: #aaaaaa;
    border: 1px solid #aaaaaa;
    line-height: 28px;
    z-index: 10;
  }

  div#sp-logo-carousel-pro6392.sp-logo-carousel-pro-area .sp-lcp-prev-button:hover,
  div#sp-logo-carousel-pro6392.sp-logo-carousel-pro-area .sp-lcp-next-button:hover {
    background-color: #16a08b;
    border-color: #16a08b;
    color: #ffffff;
  }

  div.sp-logo-section-id-6392.nav_position_bottom_right,
  div.sp-logo-section-id-6392.nav_position_bottom_left,
  div.sp-logo-section-id-6392.nav_position_bottom_center {
    margin-bottom: 20px;
    overflow: hidden;
  }

  div.sp-logo-section-id-6392.nav_position_top_left:not(.lcp_vertical) .sp-logo-carousel-pro-area,
  div.sp-logo-section-id-6392.nav_position_top_right:not(.lcp_vertical) .sp-logo-carousel-pro-area,
  div.sp-logo-section-id-6392.nav_position_top_center:not(.lcp_vertical) .sp-logo-carousel-pro-area {
    margin-top: 40px;
    overflow: hidden;
  }

  @media screen and (max-width: 480px) {

    div#sp-logo-carousel-pro6392.sp-logo-carousel-pro-area .sp-lcp-prev-button,
    div#sp-logo-carousel-pro6392.sp-logo-carousel-pro-area .sp-lcp-next-button {
      display: none;
    }

    div#sp-logo-carousel-pro6392.sp-logo-carousel-pro-area:not(.swiper-vertical) {
      margin: 0;
    }
  }

  #sp-lcpro-id-6392:is(.pagination-type-dynamic, .pagination-type-dots, .pagination-type-strokes) .sp-logo-carousel-pro-area .sp-lcp-swiper-pagination .swiper-pagination-bullet {
    background: #dddddd;
  }

  #sp-lcpro-id-6392:is(.pagination-type-dynamic, .pagination-type-dots, .pagination-type-strokes) .sp-logo-carousel-pro-area .sp-lcp-swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #16a08b;
  }

  #sp-lcpro-id-6392.pagination-type-number .sp-logo-carousel-pro-area .sp-lcp-swiper-pagination .swiper-pagination-bullet {
    color: #16a08b;
  }

  #sp-lcpro-id-6392.pagination-type-number .sp-logo-carousel-pro-area .sp-lcp-swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active,
  #sp-lcpro-id-6392.pagination-type-number .sp-logo-carousel-pro-area .sp-lcp-swiper-pagination .swiper-pagination-bullet:hover {
    color: #fff;
  }

  #sp-lcpro-id-6392.pagination-type-number .sp-logo-carousel-pro-area .sp-lcp-swiper-pagination span {
    background: transparent;
  }

  #sp-lcpro-id-6392.pagination-type-number .sp-logo-carousel-pro-area .sp-lcp-swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active span {
    background-color: #16a08b;
  }

  div.sp-logo-carousel-pro-section.sp-logo-section-id-6392.nav_position_bottom_right,
  div.sp-logo-carousel-pro-section.sp-logo-section-id-6392.nav_position_bottom_left {
    padding-bottom: 10px;
  }

  .sp-logo-section-id-6392 .sp-lcp-pagination-scrollbar {
    background: #dddddd;
  }

  .sp-logo-section-id-6392 .sp-lcp-pagination-scrollbar .swiper-scrollbar-drag {
    background: #16a08b;
  }

  @media (max-width: 480px) {
    .sp-logo-carousel-pro-section.sp-lcpro-id-6392 .sp-logo-carousel-pro-area .sp-lcp-swiper-pagination {
      display: none;
    }

    .sp-logo-carousel-pro-section.sp-lcpro-id-6392 .sp-lcp-carousel-wrapper {
      margin-bottom: 0;
    }
  }

  #sp-lcpro-id-6392:is(.layout-inline, .layout-grid) .sp-logo-carousel-pro-area .sp-isotope-logo-items {
    justify-content: left;
  }

  .sp-logo-carousel-pro-section.sp-lcpro-id-6392 {
    position: relative;
  }

  #lcp-preloader-6392 {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    z-index: 9999;
  }

  #sp-lcpro-id-6392:is(.layout-carousel) .sp-logo-carousel-pro-area.mode_standard {
    overflow: unset;
  }
  img.wp-smiley,
  img.emoji {
    display: inline !important;
    border: none !important;
    box-shadow: none !important;
    height: 1em !important;
    width: 1em !important;
    margin: 0 0.07em !important;
    vertical-align: -0.1em !important;
    background: none !important;
    padding: 0 !important;
  }