.blur {
    -webkit-backdrop-filter: saturate(150%) blur(5x);
    backdrop-filter: saturate(150%) blur(5px);
    background-color: var(--whitergba6) !important
}

.blur-header {
    -webkit-backdrop-filter: blur(7px);
    backdrop-filter: blur(7px);
}


.slidedesktop {
    margin-top: 0px;
}

.slidemobile {
    display: none;
    visibility: hidden;

}

@media only screen and (max-width: 1100px) {
    .slidedesktop {
        margin-top: 0px;
    }
}


@media only screen and (max-width: 840px) {
    .slidedesktop {
        display: none;
        visibility: hidden;
    }

    .slidemobile {
        display: block !important;
        visibility: visible !important;
        margin-bottom: 30px;
    }
}


/*=============================
    Marquee 01
===============================*/

.text-rotate {
    padding: 20px 0px;
    height: 20px;
    background: var(--white);
}

.marquee-wrap {
    margin: -7px 0 -26px;
    display: flex;
}

@media (max-width: 1399px) {
    .marquee-wrap {
        margin: -5px 0 -20px;
    }
}

@media (max-width: 1199.98px) {
    .marquee-wrap {
        margin: -4px 0 -7px;
    }
}

@media (max-width: 767.98px) {
    .marquee-wrap {
        margin: -2px 0 -7px;
    }
}

.marquee-wrap .marquee__group .m-item {
    margin-right: 25px;
    display: inline;
}

.marquee-wrap .marquee__group .m-item a {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.03em;
    /*text-transform: lowercase;*/
    line-height: 1;
}

@media (max-width: 1399px) {
    .marquee-wrap .marquee__group .m-item a {
        font-size: 16px;
    }
}

@media (max-width: 1199.98px) {
    .marquee-wrap .marquee__group .m-item a {
        font-size: 16px;
    }
}

@media (max-width: 991.98px) {
    .marquee-wrap .marquee__group .m-item a {
        font-size: 16px;
    }
}

@media (max-width: 767.98px) {
    .marquee-wrap .marquee__group .m-item a {
        font-size: 16px;
    }
}

@media (max-width: 380px) {
    .marquee-wrap .marquee__group .m-item a {
        font-size: 16px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .marquee-wrap .marquee__group .m-item a {
        font-size: 16px;
    }
}

.marquee-wrap .marquee__group .m-item.text-stroke a {
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px var(--gray3);
}

.marquee-wrap .marquee__group .m-item.text-stroke a:hover {
    -webkit-text-stroke: 1px var(--dblue2);
}

/*marquee-wrap2*****************/
.marquee-wrap.style2 {
    margin: -12px 0 -17px;
}

.marquee-wrap.style2 .marquee__group .m-item a {
    font-weight: normal;
    color: var(--gray3);
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.marquee-wrap.style2 .marquee__group .m-item a img {
    width: 55px;
}


.marquee-wrap.style2 .marquee__group .m-item a svg {
    position: relative;
    top: 0px;
    width: 20px;
    height: 20px;
    vertical-align: text-top;
    stroke-width: 0;
    fill: var(--gray3) !important;
    transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}


@media (max-width: 1199.98px) {
    .marquee-wrap.style2 .marquee__group .m-item a svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 991.98px) {
    .marquee-wrap.style2 .marquee__group .m-item a svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 767.98px) {
    .marquee-wrap.style2 .marquee__group .m-item a svg {
        width: 20px;
        height: 20px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .marquee-wrap.style2 .marquee__group .m-item a svg {
        width: 20px;
        height: 20px;
    }
}


.backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background-color: var(--whitergba5)!important;*/
    display: none;
    /*-webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);*/
    /*-webkit-backdrop-filter: saturate(150%) blur(5x);
  backdrop-filter: saturate(150%) blur(5px);*/
    z-index: 2995;
    transition: all 0.4s cubic-bezier(.7, 1, .7, 1);
}

.show-backdrop {
    visibility: visible;
    display: block;
}

.hidden-backdrop {
    visibility: hidden;
    display: none;
}


.radius7 {
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
}

/*SOCIAL*/
.social-icons li a {
    background: var(--lblue2);
    color: var(--white);
}

/*SOCIAL*/
.social-icons-gray li a {
    background: var(--f4f4f4);
    color: var(--gray4);
}


.color-white {
    color: var(--white) !important
}

.color-dblue {
    color: var(--dblue2) !important;
}

.color-lblue {
    color: var(--lblue2) !important;
}

.color-orange {
    color: var(--orange2);
}

.bg-white {
    background: var(--white);
}

.bg-dblue {
    background: var(--dblue2);
}

.bg-f4f4f4 {
    background: var(--f4f4f4);
}

.bg-f1f1f1 {
    background: var(--f1f1f1);
}

.bg-lblue {
    background: var(--lblue2);
}

.bg-orange {
    background: var(--orange2);
}

.bg-blackrgba1 {
    background: var(--blackrgba1);
}

.radius50 {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}


.btn {
    font-family: var(--theme-font);
    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
    padding: 12px 40px;
    text-align: center;
    text-transform: uppercase;
    color: var(--white);
    border: 2px solid var(--orange2);
    background-color: var(--orange2);
    box-sizing: border-box;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;

}

.btn:hover,
.btn:focus {
    background-color: var(--gray5);
    border-color: var(--gray5);
    color: var(--white);
}


.btn.btn-center {
    margin: 0 auto;
    width: auto;
    min-width: 160px
}

.btn.btn-lg {
    padding: 16px 40px;
    font-size: 16px;
}

.btn.btn-lgp {
    padding: 12px 60px;
    font-size: 16px;
}

.btn.btn-md {
    padding: 8px 20px
}

.btn.btn-sm {
    padding: 5px 25px;
}

.btn.round {
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
}

.btn.btn-mw {
    min-width: 190px
}

.btn-arrow {
    position: relative;
}

.btn-arrow span {
    display: inline-block;
    position: relative;
    -webkit-transition: all 300ms ease-out;
    -o-transition: all 300ms ease-out;
    transition: all 300ms ease-out;
    will-change: transform;
}

.btn-arrow:hover span,
.btn-arrow:focus span {
    -webkit-transform: translate3d(-1rem, 0, 0);
    transform: translate3d(-1rem, 0, 0);
}

.btn-arrow i {
    position: absolute;
    width: 1.1em;
    right: 0px;
    right: 0rem;
    opacity: 0;
    top: 49%;
    font-size: 24px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 300ms ease-out;
    -o-transition: all 300ms ease-out;
    transition: all 300ms ease-out;
    will-change: right, opacity;
}

.btn-arrow:hover i,
.btn-arrow:focus i {
    opacity: 1;
    right: -2rem;
}


.btn-arrow svg {
    position: absolute;
    width: 24px;
    height: 24px;
    right: 0px;
    right: 0rem;
    opacity: 0;
    top: 49%;
    font-size: 24px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 300ms ease-out;
    -o-transition: all 300ms ease-out;
    transition: all 300ms ease-out;
    will-change: right, opacity;
    vertical-align: text-top;
    stroke-width: 0;
    fill: var(--orange2) !important;
    transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn:focus svg,
.btn:hover svg {
    fill: var(--white) !important;
    opacity: 1;
    right: -2rem;
}


.btn-orange {
    color: var(--white);
    border: 2px solid var(--orange2);
    background-color: var(--orange2);

}

.btn-orange:hover,
.btn-orange:focus {
    background-color: var(--orange3);
    border-color: var(--orange3);
    color: var(--white)
}

.btn-lblue {
    color: var(--white);
    border: 2px solid var(--lblue2);
    background-color: var(--lblue2);

}

.btn-lblue:hover,
.btn-lblue:focus {
    background-color: var(--lblue3);
    border-color: var(--lblue3);
    color: var(--white)
}

.btn-dblue {
    color: var(--lblue2);
    border: 2px solid var(--dblue2);
    background-color: var(--dblue2);

}

.btn-dblue:hover,
.btn-dblue:focus {
    background-color: var(--dblue3);
    border-color: var(--dblue3);
    color: var(--lblue1);
}



.btn-dblue svg {
    fill: var(--lblue2) !important;
}

.btn-dblue:focus svg,
.btn-dblue:hover svg {
    fill: var(--lblue1) !important;
}


.btn-whatsapp {
    color: var(--white);
    border: 2px solid var(--Whats1);
    background-color: var(--Whats1);

}

.btn-whatsapp:hover,
.btn-whatsapp:focus {
    background-color: var(--Whats2);
    border-color: var(--Whats2);
    color: var(--white)
}


.site-heading h1,
.site-heading h2,
.site-heading h3 {
    display: inline-block;
    font-weight: 700;
    padding-bottom: 10px;
    margin-bottom: 0;
    position: relative;
    line-height: 1.2;
    color: var(--lblue2);
    width: calc(100% - 15px);
}

.site-heading-lblue h1,
.site-heading-lblue h2,
.site-heading-lblue h3 {
    color: var(--lblue2);
}


.site-heading span {
    display: block;
    width: 100%;
    margin: 0px 0px 5px 0px;
    font-weight: bold;
    font-size: 16px;
    color: var(--lblue2);
    line-height: 1.1;
    text-transform: uppercase;
}

.site-heading p {
    margin: 0;
    margin-top: 15px;
    font-weight: 600;
    font-size: 18px !important;
    line-height: 1.1;
    color: var(--orange2);
}

.site-heading h1::before,
.site-heading h2::before,
.site-heading h3::before {
    background: var(--dblue1) none repeat scroll 0 0;
    bottom: 0;
    content: "";
    height: 3px;
    left: 50%;
    margin-left: -35px;
    position: absolute;
    width: 35px;

}


.site-heading-lblue h1::before,
.site-heading-lblue h2::before,
.site-heading-lblue h3::before {
    background: var(--lblue2) none repeat scroll 0 0;
}


.site-heading h1::after,
.site-heading h2::after,
.site-heading h3::after {
    background: var(--lblue2) none repeat scroll 0 0;
    bottom: 0;
    content: "";
    height: 3px;
    left: 20px;
    margin-left: 20px;
    position: absolute;
    width: 100%;

}

.site-heading.text-left h1::before,
.site-heading.text-left h2::before,
.site-heading.text-left h3::before {
    left: 0;
    margin-left: 0;
}

.site-heading.text-left h1::after,
.site-heading.text-left h2::after,
.site-heading.text-left h3::after {
    left: 25px;
    margin-left: 0;
}


.image-bl,
.image-bl img {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}


.aboutus-item {
    padding: 30px 40px 30px 40px;
    border-style: solid;
    border-width: 0 0 0 0;
    background-color: transparent;
    background-image: linear-gradient(110deg, var(--lblue2) 0%, var(--dblue2) 100%);
    -webkit-box-shadow: 0px 5px 25px 0px var(--blackrgba1);
    -moz-box-shadow: 0px 5px 25px 0px var(--blackrgba1);
    box-shadow: 0px 5px 25px 0px var(--blackrgba1);
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;

}


.aboutus-item:active,
.aboutus-item:focus,
.aboutus-item:hover {
    -webkit-box-shadow: 0px 5px 35px 0px var(--blackrgba3);
    -moz-box-shadow: 0px 5px 35px 0px var(--blackrgba3);
    box-shadow: 0px 5px 35px 0px var(--blackrgba3);
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);

}

.aboutus-item .content-box h3 {
    color: var(--white);
    margin-top: 0px;
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
}

.aboutus-item .content-box p {
    color: var(--white);
    margin-top: 0px;
    margin-bottom: 0px;
    font-size: 16px;
    font-weight: normal;
    line-height: 1;
}


.aboutus-item .icon-main {
    background: transparent;
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.aboutus-item .icon-main img {
    width: 90px;
}

.aboutus-item .overlay {
    z-index: 2;
    background: transparent;
}

.overlay {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
}


.aboutus-item.bg-s1 {
    background-image: linear-gradient(110deg, var(--lblue3) 0%, var(--lblue1) 100%);
    background-size: 100% 100%;
}

.aboutus-item.bg-s2 {
    background-image: linear-gradient(110deg, var(--lblue1) 0%, var(--lblue3) 100%);
    background-size: 100% 100%;
}

.aboutus-item.bg-s3 {
    background-image: linear-gradient(110deg, var(--lblue3) 0%, var(--lblue1) 100%);
    background-size: 100% 100%;
}

.aboutus-item.bg-s4 {
    background-image: linear-gradient(110deg, var(--dblue3) 0%, var(--lblue1) 100%);
    background-size: 100% 100%;
}


.aboutus-item:active.bg-s1,
.aboutus-item:focus.bg-s1,
.aboutus-item:hover.bg-s1,
.aboutus-item:active.bg-s2,
.aboutus-item:focus.bg-s2,
.aboutus-item:hover.bg-s2,
.aboutus-item:active.bg-s3,
.aboutus-item:focus.bg-s3,
.aboutus-item:hover.bg-s3,
.aboutus-item:focus.bg-s4,
.aboutus-item:hover.bg-s4 {
    background-size: 200% 200%;
    background-position: 50% 0% !important;
}


.cta-item {
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    overflow: hidden;
    position: relative;
    background: var(--white);
}


.bg-cover-radius {
    position: relative;
    z-index: 1;
    background-position: center center;
    background-attachment: scroll;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    -webkit-border-radius: 7px !important;
    -moz-border-radius: 7px !important;
    border-radius: 7px !important;
    overflow: hidden;
}

.bg-cover-radius:before {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: " ";
    position: absolute;
    background: var(--dbluergba7);
    -webkit-border-radius: 7px !important;
    -moz-border-radius: 7px !important;
    border-radius: 7px !important;
    overflow: hidden;
}


.radius7 {
    -webkit-border-radius: 7px !important;
    -moz-border-radius: 7px !important;
    border-radius: 7px !important;
    overflow: hidden !important;
}


.cta-item .ot-heading {
    margin-bottom: 0;
    padding-left: 25px;
    padding-right: 25px;
}

.cta-item .ot-heading span {
    display: block;
    color: var(--white);
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 30px;
    line-height: 1.2
}

.cta-item h3 {
    color: var(--white);
    font-size: 36px;
    line-height: 1.1;
    /*letter-spacing:-1px;*/
    margin-bottom: 30px;
}

.cta-item .ot-button {
    display: block;
    margin-top: 20px;
}


.bg-theme-color-animation {
    background: linear-gradient(221deg, var(--lblue1), var(--lblue3), var(--lblue1));
    background-size: 600% 600%;
    -webkit-animation: bg-gradient-animator 16s ease infinite;
    -moz-animation: bg-gradient-animator 16s ease infinite;
    -o-animation: bg-gradient-animator 16s ease infinite;
    animation: bg-gradient-animator 16s ease infinite;
}


@-webkit-keyframes bg-gradient-animator {
    0% {
        background-position: 96% 0%
    }
    50% {
        background-position: 5% 100%
    }
    100% {
        background-position: 96% 0%
    }
}

@-moz-keyframes bg-gradient-animator {
    0% {
        background-position: 96% 0%
    }
    50% {
        background-position: 5% 100%
    }
    100% {
        background-position: 96% 0%
    }
}

@-o-keyframes bg-gradient-animator {
    0% {
        background-position: 96% 0%
    }
    50% {
        background-position: 5% 100%
    }
    100% {
        background-position: 96% 0%
    }
}

@keyframes bg-gradient-animator {
    0% {
        background-position: 96% 0%
    }
    50% {
        background-position: 5% 100%
    }
    100% {
        background-position: 96% 0%
    }
}


.box-img-hover-two {
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 0px 3px 15px 0px var(--blackrgba1);
    -moz-box-shadow: 0px 3px 15px 0px var(--blackrgba1);
    box-shadow: 0px 3px 15px 0px var(--blackrgba1);
    overflow: hidden;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    text-align: center;
    background: var(--white);
}

.box-img-hover-two:hover {
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    transform: translateY(-10px);
    -webkit-box-shadow: 0px 15px 35px 0px var(--blackrgba2);
    -moz-box-shadow: 0px 15px 35px 0px var(--blackrgba2);
    box-shadow: 0px 15px 35px 0px var(--blackrgba2);
}


.box-img-hover-two .lower-content {
    padding: 15px;
    background: var(--lblue2);
}

.box-img-hover-two .lower-content h3 {
    font-size: 15px;
    margin: 0px;
    color: var(--white);

}


.box-img-hover-two img {
    width: 100%;
    padding: 0px;
    border: 0px solid var(--lblue2) !important;
    -moz-transition: all .4s ease;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    cursor: pointer;
    margin: auto !important;

}


.img-hover-two img {
    border: 0px solid var(--lblue2) !important;
    -moz-transition: all .4s ease;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    filter: grayscale(20%);
    -webkit-filter: grayscale(20%);
    cursor: pointer;


}

.img-hover-two img:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white) !important;
    opacity: 0;
    -moz-transition: all .6s ease;
    -webkit-transition: all .6s ease;
    -o-transition: all .6s ease;
    transition: all .6s ease;
}

.img-hover-two:hover img {
    filter: grayscale(0);
    -webkit-filter: grayscale(0);
    -webkit-transform: scale(1.1) rotate(0deg);
    -moz-transform: scale(1.1) rotate(0deg);
    -o-transform: scale(1.1) rotate(0deg);
    -ms-transform: scale(1.1) rotate(0deg);
    transform: scale(1.1) rotate(0deg);
}

.img-hover-two span {
    display: block;
    overflow: hidden;
    position: relative;
}

.img-hover-two span:after {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: " ";
    position: absolute;
    border: 0px solid transparent;
    background: var(--lbluergba3);
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: all .3s ease 0s;
    -moz-transition: all .3s ease 0s;
    -o-transition: all .3s ease 0s;
    -ms-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
}

.img-hover-two span .icon {
    left: calc(50% - 23px);
    top: calc(80% - 23px);
    font-size: 56px;
    position: absolute;
    z-index: 2 !important;
    color: var(--white);
    opacity: 0;
    height: 46px;
    width: 46px;
    line-height: 46px;
    padding: 0px;
    margin: 0px;
    -webkit-transition: all 1.0s ease 0.3s;
    -moz-transition: all 1.0s ease 0.3s;
    -o-transition: all 1.0s ease 0.3s;
    -ms-transition: all 1.0s ease 0.3s;
    transition: all 1.0s ease 0.3s;
}

.img-hover-two:hover span .icon {
    top: calc(50% - 29px);
    opacity: 0.9;
}

.img-hover-two:hover span:after {
    opacity: 1.0;
    filter: alpha(opacity=100);
}

.img-hover-two img,
.img-hover-two img,
.img-hover-two span:after {
    transition: all 1.0s ease-in-out;
}


.news-block .inner {
    position: relative;
    display: block;
}

.news-block .image-box {
    position: relative;
    display: block;
    background: var(--dblue3);
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
    -webkit-box-shadow: 0px 3px 20px 0px var(--blackrgba1);
    -moz-box-shadow: 0px 3px 20px 0px var(--blackrgba1);
    box-shadow: 0px 3px 20px 0px var(--blackrgba1);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    overflow: hidden;
}

.news-block:focus .image-box,
.news-block:hover .image-box {
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    transform: translateY(-5px);

    -webkit-box-shadow: 0px 10px 30px -5px var(--blackrgba3);
    -moz-box-shadow: 0px 10px 30px -5px var(--blackrgba3);
    box-shadow: 0px 10px 30px -5px var(--blackrgba3);
}


.news-block .image-box img {
    display: block;
    width: 100%;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
}

.news-block .inner:hover .image-box img {
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.news-block .image-box a {
    position: relative;
    display: block;
}

.news-block .image-box a:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -25px;
    margin-left: -1px;
    height: 50px;
    border-right: 3px solid var(--white);
    z-index: 1;
    transform: scaleY(0);
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
}

.news-block .image-box a:after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -1px;
    margin-left: -25px;
    width: 50px;
    border-bottom: 3px solid var(--white);
    z-index: 1;
    transform: scaleX(0);
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
}

.news-block .inner:hover .image-box a:before,
.news-block .inner:hover .image-box a:after {
    transform: scale(1);
    transition: all 0.3s ease 300ms;
    -moz-transition: all 0.3s ease 300ms;
    -webkit-transition: all 0.3s ease 300ms;
    -ms-transition: all 0.3s ease 300ms;
    -o-transition: all 0.3s ease 300ms;
}

.news-block .lower-box {
    position: relative;
    background: var(--white);
    padding: 20px 15px 20px 15px;
    margin: -30px 0px 0px 0px;
    z-index: 1;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
    -webkit-box-shadow: 0px 5px 20px 0px var(--blackrgba1);
    -moz-box-shadow: 0px 5px 20px 0px var(--blackrgba1);
    box-shadow: 0px 5px 20px 0px var(--blackrgba1);
}

.news-block .image-box .category {
    position: absolute;
    bottom: 20px;
    left: 10px;
    display: inline-block;
    vertical-align: top;
    font-size: 14px;
    text-transform: uppercase;
    line-height:1.1;
    padding: 5px 15px;
    color: var(--lblue2);
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
    background: var(--dbluergba9);
    z-index: 20
}

.news-block .image-box .category svg {
    position: relative;
    top: 2px;
    width: 16px;
    height: 16px;
    vertical-align: text-top;
    stroke-width: 0;
    fill: var(--lblue2) !important;
    transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}


.news-block h3 {
    font-weight: 600;
    margin-bottom: 0px;
    color: var(--lblue2);
    font-size: 16px;
    line-height: 1.2
}

.news-block .text p {
    position: relative;
    padding-top: 12px;
    line-height: 1.1
}


.news-block h3 a:hover {
    color: var(--dblue2)
}


.linking {
    position: relative;
    color: var(--lblue2);
    font-size: 15px;
    font-weight: bold;
    font-family: var(--theme-font) !important;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    text-transform: uppercase;
}


.linking:before {
    position: absolute;
    content: "";
    bottom: -10px;
    left: 0;
    width: 0;
    height: 1px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
}


.linking:hover:before {
    width: 100%;
    background: var(--lblue2);
}


.linking svg {
    position: relative;
    top: -2px;
    right: 30px;
    width: 24px;
    height: 24px;
    vertical-align: text-top;
    stroke-width: 0;
    fill: var(--lblue2);
    opacity: 0;
    transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.linking:hover {
    color: var(--dblue2);
}

.linking:hover svg {
    opacity: 1;
    right: 0px;
    fill: var(--dblue2) !important;
}


.shop-item {
    position: relative;
    -webkit-box-shadow: 0px 0px 25px 0px var(--blackrgba1);
    -moz-box-shadow: 0px 0px 25px 0px var(--blackrgba1);
    box-shadow: 0px 0px 25px 0px var(--blackrgba1);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    overflow: hidden;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.shop-item:hover,
.shop-item:focus {
    -webkit-box-shadow: 0px 10px 35px -5px var(--blackrgba2);
    -moz-box-shadow: 0px 10px 35px -5px var(--blackrgba2);
    box-shadow: 0px 10px 35px -5px var(--blackrgba2);
}


.shop-item .inner-box {
    position: relative;
    overflow: hidden;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.shop-item:hover .inner-box {
    /*-webkit-box-shadow: 0px 0px 25px 0px var(--blackrgba2);
    -moz-box-shadow: 0px 0px 25px 0px var(--blackrgba2);
    box-shadow: 0px 0px 25px 0px var(--blackrgba2);*/
}


.shop-item .inner-box .image-box {
    position: relative;
    display: block;
    overflow: hidden;

    /*-webkit-box-shadow: 0px 3px 20px 0px  var(--blackrgba1);
    -moz-box-shadow: 0px 3px 20px 0px  var(--blackrgba1);
    box-shadow: 0px 3px 20px 0px  var(--blackrgba1);*/
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.shop-item .inner-box:focus .image-box,
.shop-item .inner-box:hover .image-box {
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    transform: translateY(-5px);

    /*-webkit-box-shadow: 0px 10px 30px -5px var(--blackrgba3);
    -moz-box-shadow: 0px 10px 30px -5px var(--blackrgba3);
    box-shadow: 0px 10px 30px -5px var(--blackrgba3);*/
}


.shop-item .inner-box .image-box img {
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
    width: 100%;
}

.shop-item .inner-box:focus .image-box img,
.shop-item .inner-box:hover .image-box img {
    -moz-transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -o-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}

.shop-item .inner-box .detail {
    position: absolute;
    top: 0px;
    opacity: 0;
    left: 15px;
    width: 150px;
    height: 36px;
    display: flex;
    font-size: 12px;
    justify-content: center;
    align-items: center;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    text-align: center;
    z-index: 10;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    background: var(--lblue3);
    color: var(--white);
}

.shop-item .inner-box .detail span {
    position: relative;
    top: 0px;
    padding-left: 7px;
}


.shop-item .inner-box:focus .detail,
.shop-item .inner-box:hover .detail {
    opacity: 1;
    top: 20px;
}

.detail:focus,
.detail:hover {
    background: var(--dblue2) !important;
}

.shop-item .inner-box .detail svg {
    position: relative;
    top: 0px;
    width: 16px;
    height: 16px;
    vertical-align: text-top;
    stroke-width: 0;
    fill: var(--white) !important;
    transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-detail-read {
    color: var(--white);
    text-align: center;
    font-size: 12px;
}

.btn-detail-read:hover,
.btn-detail-read:focus {
    color: var(--white);
}


.shop-item .inner-box .read-more {
    position: absolute;
    bottom: -30px;
    opacity: 0;
    right: 15px;
    font-size: 24px;
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    text-align: center;
    z-index: 10;

}

.shop-item .inner-box:focus .read-more,
.shop-item .inner-box:hover .read-more {
    opacity: 1;
    bottom: 90px;
}

.shop-item .inner-box .read-more svg {
    position: relative;
    top: 3px;
    width: 28px;
    height: 28px;
    vertical-align: text-top;
    stroke-width: 0;
    fill: var(--white) !important;
    transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}


.shop-item .inner-box .image {
    position: relative;
    margin-bottom: 0;
}

.shop-item .inner-box .image img {
    display: block;
    width: 100%;
}


.shop-item .lower-content {
    position: relative;
    padding: 55px 20px 25px;
    z-index: 0;
    -webkit-backdrop-filter: saturate(150%) blur(5x);
    backdrop-filter: saturate(150%) blur(5px);
    background-color: var(--whitergba7) !important;
    margin: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    text-align: center;

}

.shop-item:hover .lower-content {
    margin-top: -75px;
    padding-bottom: 75px;
}


.shop-item .lower-content .name {
    font-size: 22px;
    line-height: 1.1;
    color: var(--lblue2);
    font-weight: bold;
    margin: 8px 0 3px;
}


.shop-item .lower-content .icon-item {
    display: block;
    margin: auto;
    height: 90px;
    width: 90px;
    text-align: center;
    position: absolute;
    left: 50%;
    top: -45px;
    margin-left: -45px;
    background: var(--white);
    -webkit-box-shadow: 0px 5px 25px 0px var(--blackrgba1);
    -moz-box-shadow: 0px 5px 25px 0px var(--blackrgba1);
    box-shadow: 0px 5px 25px 0px var(--blackrgba1);
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
}

.shop-item .lower-content .icon-item img {
    width: 100%;
    padding: 15px;
}

.shop-item .lower-content .name a {
    color: var(--dblue2);
}

.shop-item:hover .lower-content .name a {
    color: var(--lblue2);
}

.shop-item .lower-content p {
    font-size: 16px;
    line-height: 1.1;
    color: var(--dblue2);
    font-weight: normal;
    margin: 8px 0 3px;
}


.shop-item .price {
    font-size: 15px;
    color: var(--black);
}

.shop-item .price del {
    font-size: 14px;
    color: #7E7E80;
    margin-left: 15px;
    margin-bottom: -1px;
}

.shop-item .lower-content .add-to-cart {
    position: absolute;
    display: block;
    width: calc(100% - 40px);
    height: 40px;
    line-height: 40px;
    text-align: center;
    display: block;
    font-size: 15px;
    font-weight: 600;
    border-radius: 7px;
    bottom: 0px;
    opacity: 0;
    -webkit-transition: all 0.15s ease;
    transition: all 0.15s ease;
}

.shop-item .lower-content .add-to-cart span {
    margin-right: 10px;
}

.shop-item .lower-content .add-to-cart:hover {
    color: var(--white);
}

.shop-item:hover .add-to-cart {
    opacity: 1;
    bottom: 15px;
    -webkit-transition: all 0.3s ease, opacity 0.3s linear 0.15s, bottom 0.3s ease 0.15s;
    transition: all 0.3s ease, opacity 0.3s linear 0.15s, bottom 0.3s ease 0.15s;
}


.shop-item .inner-box .lower-content ul {
    border-top: 0px solid var(--blackrgba2);
    margin-top: 5px;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    padding: 0px 0px 0px 0px;
}

.shop-item .inner-box .lower-content li svg {
    position: relative;
    top: 0px;
    width: 18px;
    height: 18px;
    vertical-align: text-top;
    stroke-width: 0;
    fill: var(--orange2) !important;
    transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.shop-item .inner-box .lower-content li {
    float: left;
    font-size: 14px;
    list-style: outside none none;
    padding-top: 5px;
    padding-bottom: 5px;
    margin-bottom: 0px;
    width: 100%;
    font-weight: normal;
    border-top: 1px solid var(--blackrgba1);
}

.shop-item .inner-box .lower-content li:first-child,
.shop-item .inner-box .lower-content li:last-child {
    border-bottom: 0px solid var(--blackrgba2);
}

.form-product {
    background: var(--white);
    display: block;
    position: relative;
    width: 100%;

}

.form-product .collunform {
    display: block;
    position: relative;
    float: left;
    margin: 0px 5px;
    width: calc(40% - 10px);
}

.form-product .collunformtwo {
    display: block;
    position: relative;
    float: left;
    margin: 0px 5px;
    width: calc(60% - 10px);
}

.form-product .collunform .formQuantt {
    display: block;
    padding: 6px 10px 6px 10px !important;
    font-size: 15px;
    color: var(--orange2);
    width: 100%;
    height: 40px;
    background-color: var(--white);
    outline: none !important;
    background-clip: padding-box;
    border: 1px solid var(--Whatsrgba2) !important;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-product .collunform .formQuantt:focus,
.form-product .collunform .formQuantt:hover {
    color: var(--gray2);
    background-color: var(--white);
    border-color: var(--blackrgba5);
    outline: 0;
    -webkit-box-shadow: 0px 0px 15px 0px var(--blackrgba1);
    -moz-box-shadow: 0px 0px 15px 0px var(--blackrgba1);
    box-shadow: 0px 0px 15px 0px var(--blackrgba1);
}


.form-product .collunformtwo .button {
    font-family: var(--theme-font);
    font-size: 14px;
    line-height: 1.0;
    font-weight: bold;
    padding: 9px 10px 8px;
    text-align: center !important;
    text-transform: uppercase;
    color: var(--white);
    border: 2px solid var(--green);
    background-color: var(--green);
    box-sizing: border-box;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    width: 100%;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
}


.form-product .button:hover,
.form-product .button:focus {
    background-color: var(--greenhover);
    border-color: var(--greenhover);
    color: var(--white);
    -webkit-box-shadow: 0px 5px 15px 0px var(--Whatsrgba2);
    -moz-box-shadow: 0px 5px 15px 0px var(--Whatsrgba2);
    box-shadow: 0px 5px 15px 0px var(--Whatsrgba2);
}


.read-whatsapp {
    font-family: var(--theme-font);
    font-size: 14px;
    line-height: 1.0;
    font-weight: bold;
    padding: 9px 10px 8px 15px;
    text-align: center !important;
    text-transform: uppercase;
    color: var(--whatstx);
    border: 2px solid var(--whatstx);
    background-color: var(--whatsbg);
    box-sizing: border-box;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    width: 100%;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
}

.read-whatsapp svg {
    position: relative;
    top: -3px;
    width: 22px;
    right: 3px;
    height: 22px;
    vertical-align: text-top;
    stroke-width: 0;
    fill: var(--whatstx) !important;
    transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.read-whatsapp:hover svg,
.read-whatsapp:focus svg {
    fill: var(--whatsbg) !important;
}


.read-whatsapp:hover,
.read-whatsapp:focus {
    background-color: var(--whatstx);
    border-color: var(--whatstx);
    color: var(--whatsbg);
    -webkit-box-shadow: 0px 5px 15px 0px var(--Whatsrgba2);
    -moz-box-shadow: 0px 5px 15px 0px var(--Whatsrgba2);
    box-shadow: 0px 5px 15px 0px var(--Whatsrgba2);
}


.btnsearch {
    font-family: var(--theme-font);
    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
    padding: 12px 40px;
    text-align: center;
    text-transform: uppercase;
    color: var(--white);
    border: 2px solid var(--lblue2);
    background-color: var(--lblue2);
    box-sizing: border-box;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;

}

.btnsearch:hover,
.btnsearch:focus {
    background-color: var(--lblue1);
    border-color: var(--lblue1);
    color: var(--white);
}

.btnsearch svg {
    position: relative;
    top: 1px;
    width: 18px;
    right: -2px;
    height: 18px;
    vertical-align: text-top;
    stroke-width: 0;
    fill: var(--white) !important;
    transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/*
.txt-about{
	padding-right:100px;
}


.img-about {
	position: relative;
}


.img-about .img-desk img {
	position: absolute;
	bottom: 0px;
	left: -100px;
	width:300px;
	z-index: 1;
}

.img-section{
	float: left;
	padding-right: 30px;
}
*/

@media only screen and (max-width: 767px) {
    .img-section {
        text-align: center;
        padding: 15px;
    }

    .img-section img {
        width: 300px;
    }

}


.request-form {
    position: relative;
    -webkit-box-shadow: 0px 0px 35px 0px var(--blackrgba1);
    -moz-box-shadow: 0px 0px 35px 0px var(--blackrgba1);
    box-shadow: 0px 0px 35px 0px var(--blackrgba1);
    padding: 40px 40px 20px;
    border-radius: 10px;
    background: var(--white);
}

.request-form .title {
    position: relative;
    margin-bottom: 40px;
}

.request-form .title h4 {
    font-size: 28px;
    line-height: 1.4em;
    color: #000000;
    font-weight: 700;
    margin-bottom: 10px;
}

.request-form .row {
    margin: 0 -10px;
}

.request-form .form-group {
    position: relative;
    padding: 0 10px;
    margin-bottom: 20px;
}

.request-form .form-group input[type="text"],
.request-form .form-group input[type="email"],
.request-form .form-group input[type="url"],
.request-form .form-group textarea,
.request-form .form-group select {
    position: relative;
    display: block;
    width: 100%;
    height: 50px;
    font-size: 16px;
    color: var(--gray3);
    line-height: 25px;
    padding: 10px 15px !important;
    border: 3px solid var(--f4f4f4);
    background-color: var(--white);
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
    font-weight: 400;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.request-form .form-group textarea {
    height: 75px;
    resize: none;
}

.request-form .form-group button {
    padding-left: 36px;
    padding-right: 36px;
    margin-top: 10px;
}


.request-form .form-group input[type="email"]:focus,
.request-form .form-group input[type="email"]:hover,
.request-form .form-group input[type="url"]:focus,
.request-form .form-group input[type="url"]:hover,
.request-form .form-group textarea:focus,
.request-form .form-group textarea:hover,
.request-form .form-group select:focus,
.request-form .form-group select:hover,
.request-form .form-group input[type="text"]:focus,
.request-form .form-group input[type="text"]:hover {
    color: var(--gray3);
    background-color: var(--white);
    border-color: var(--blackrgba5);
    outline: 0;
    -webkit-box-shadow: 0px 0px 25px 0px var(--blackrgba2);
    -moz-box-shadow: 0px 0px 25px 0px var(--blackrgba2);
    box-shadow: 0px 0px 25px 0px var(--blackrgba2);
}


.accordion-box {
    position: relative;
    margin-bottom: 30px;
}

.accordion-box .block {
    position: relative;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    border-top: 1px solid var(--f4f4f4);
}

.accordion-box .block .acc-btn {
    position: relative;
    font-size: 22px;
    font-weight: 600;
    line-height: 25px;
    cursor: pointer;
    padding: 20px 55px;
    padding-right: 15px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    font-family: var(--special-font) !important;
}

.accordion-box .block .acc-btn.active {
    color: var(--dblue2);
}

.accordion-box .block .acc-btn .icon {
    position: absolute;
    left: 25px;
    top: 20px;
    line-height: 25px;
    font-size: 14px;
    color: var(--white);
}

.accordion-box .block .acc-btn .icon svg {
    position: relative;
    left: 0px;
    top: -3px;
    width: 28px;
    height: 28px;
    vertical-align: text-top;
    stroke-width: 1.5;
    /*stroke: var(--white);*/
    fill: var(--orange2);
}


.accordion-box .block .acc-btn.active .icon {
    transform: scaleY(-1);
    color: var(--dblue2);
}

.accordion-box .block .acc-content {
    position: relative;
    display: none;
    padding: 5px 25px 30px 25px;
}

.accordion-box .block .acc-content.current {
    display: block;
}

.accordion-box .block .content .text {
    position: relative;
    font-size: 16px;
    line-height: 1.1;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    color: var(--white)
}


.accordion-box .block .acc-content .text,
.accordion-box .block .acc-content p {
    color: var(--dblue2) !important;
}


.accordion-box.style-three .block .acc-btn {
    padding: 20px 25px;
    padding-right: 35px;
    font-family: var(--special-font) !important;
}

.accordion-box.style-three .block .acc-btn .icon {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    left: auto;
    right: 25px;
}

.accordion-box.style-three .block .acc-btn .icon:before {
    font-size: 32px;
}


/*
.widget-links {
	text-align: center;
	margin: 0;
}*/

.widget-links {
    position: relative;
    padding: 25px 15px 20px 15px;
    border-bottom: 0px solid var(--whitergba2);
    background: var(--f4f4f4);
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
    -webkit-box-shadow: 0px 5px 25px 0px var(--blackrgba1);
    -moz-box-shadow: 0px 5px 25px 0px var(--blackrgba1);
    box-shadow: 0px 5px 25px 0px var(--blackrgba1);
    overflow: hidden;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    text-align: center;
    width: 100%;
    display: block;
}

.widget-links:hover {
    background: var(--white);
    -webkit-box-shadow: 0px 5px 35px 0px var(--blackrgba3);
    -moz-box-shadow: 0px 5px 35px 0px var(--blackrgba3);
    box-shadow: 0px 5px 35px 0px var(--blackrgba3);
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}

.widget-links:after {
    content: "";
    transition: .2s all ease;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    position: absolute;
    left: 50%;
    height: 7px;
    width: 0;
    transform: translateX(-50%);
    background-color: var(--lblue2);
    bottom: 0px !important;
}

.widget-links :focus:after,
.widget-links :hover:after {
    width: 100%;
}


.widget-links svg {
    position: relative;
    top: 0px;
    width: 100px;
    height: 100px;
    vertical-align: text-top;
    stroke-width: 0;
    margin: 15px auto;
    fill: var(--lblue2) !important;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    display: block;
}

.widget-links:hover svg {
    fill: var(--dblue2) !important;
}


.widget-links h3 {
    margin-top: 25px;
    display: block;
    color: var(--dblue2);
    font-size: 20px;
    text-transform: uppercase;
    line-height: 1.1;
    font-weight: bold;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}


.widget-links:focus h3,
.widget-links:hover h3 {
    color: var(--lblue2);
}


/*
.widget-links li a img {
	width: 32px;
	padding-right: 7px;
}*/

/*
.widget-links li:focus a,
.widget-links li:hover a {
	color: var(--lblue2);
	padding-left: 25px;
}

*//*
@media only screen and (max-width:1270px) {
	.widget-links li {
		min-height: 240px;
		width: calc(20% - 30px);
		float: left;
		background: #f5c6cb;
	}


}
@media only screen and (max-width:991px) {
	.widget-links li {
		min-height: 240px;
		width: calc(33.33333% - 30px);
		float: left;
		background: #fc0;
	}


}*/


.cta-categorie {
    text-align: center;
    background: var(--lblue2);
    /* display: flex;
     justify-content: center;
     align-content: center;
     */

    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-content: center;

    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;

    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
    padding: 30px;
    width: 100%;
}

.cta-categorie h3 {
    color: var(--white);
    font-size: 22px;
    line-height: 1.1;

}


.cta-categorie a {

}


.col-cta-categorie {
    /*display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;*/
    width: 100%;
    height: 55px;
}


.place-block-one .inner-box {
    position: relative;
    display: block;
}

.place-block-one .inner-box .image-box {
    position: relative;
    display: block;
    overflow: hidden;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
    -webkit-box-shadow: 0px 3px 20px 0px var(--blackrgba1);
    -moz-box-shadow: 0px 3px 20px 0px var(--blackrgba1);
    box-shadow: 0px 3px 20px 0px var(--blackrgba1);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.place-block-one .inner-box:focus .image-box,
.place-block-one .inner-box:hover .image-box {
    -webkit-transform: translateY(-15px);
    -moz-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -o-transform: translateY(-15px);
    transform: translateY(-15px);

    -webkit-box-shadow: 0px 10px 30px -5px var(--blackrgba3);
    -moz-box-shadow: 0px 10px 30px -5px var(--blackrgba3);
    box-shadow: 0px 10px 30px -5px var(--blackrgba3);
}


.place-block-one .inner-box .image-box:before {
    position: absolute;
    content: '';
    background: var(--blackrgba1);
    left: 0px;
    top: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    z-index: 1;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    opacity: 0;
}

.place-block-one .inner-box:hover .image-box:before {
    opacity: 1;
}

.place-block-one .inner-box .image-box img {
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
    width: 100%;
}

.place-block-one .inner-box:hover .image-box img {
    -moz-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -o-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}

.place-block-one .inner-box .lower-content {
    position: relative;
    margin: 0px 20px;
    text-align: center;
}

.place-block-one .inner-box .lower-content .inner {
    position: relative;
    background: var(--dblue2);
    padding: 20px 15px 20px 15px;
    margin-top: -60px;
    z-index: 1;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
    -webkit-box-shadow: 0px 5px 20px 0px var(--blackrgba1);
    -moz-box-shadow: 0px 5px 20px 0px var(--blackrgba1);
    box-shadow: 0px 5px 20px 0px var(--blackrgba1);
}


.place-block-one .inner-box:hover .inner,
.place-block-one .inner-box:focus .inner {
    background: var(--lblue2);
    -webkit-box-shadow: 0px 10px 50px 0px var(--blackrgba3);
    -moz-box-shadow: 0px 10px 50px 0px var(--blackrgba3);
    box-shadow: 0px 10px 50px 0px var(--blackrgba3);
}


.place-block-one .inner-box .lower-content .inner h3 {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 1.1;
    font-weight: bold;
    margin-bottom: 0px;
    color: var(--white);
}

.place-block-one .inner-box .lower-content .inner h3 a {
    display: inline-block;
    color: var(--white);
}

.place-block-one .inner-box .lower-content .inner h3 a:hover {

}


.marcas {
    position: relative;
    transition: .6s cubic-bezier(0.25, 1, 0.5, 1);
}

.marcas .main-nav-slider {
    position: absolute;
    top: 0px;
    right: 5px;
    width: 100px;
    height: 45px;
    z-index: 1;
}

@media only screen and (max-width: 600px) {
    .marcas {
        position: relative;
    }

    .marcas .main-nav-slider {
        top: 15px;
        right: 0px;
        position: relative;

    }
}


.marcas .clients-button-next,
.marcas .clients-button-prev,
.marcas .testm-button-next,
.marcas .testm-button-prev {
    position: absolute;
    top: 50%;
    width: calc(var(--swiper-navigation-size) / 44 * 27);
    height: var(--swiper-navigation-size);
    margin-top: calc(-1 * var(--swiper-navigation-size) / 2);
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--swiper-navigation-color, var(--swiper-theme-color))
}

.marcas .clients-button-next,
.marcas .clients-button-prev,
.marcas .testm-button-next,
.marcas .testm-button-prev {
    position: absolute;
    top: 50%;
    bottom: auto;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
    border: 0;
    background-color: var(--blackrgba5);
    width: 50px;
    height: 50px;
    border: 0;
    z-index: 10;
    cursor: pointer;
    background-image: none;
    margin-top: -25px;
    left: auto;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    opacity: .8
}

.marcas .clients-button-next,
.marcas .testm-button-next {
    right: 0px
}

.marcas .clients-button-prev,
.marcas .testm-button-prev {
    left: 0px
}

.marcas .clients-button-next img,
.marcas .clients-button-prev img,
.marcas .testm-button-next img,
.marcas .testm-button-prev img {
    height: 15px;
    width: auto;
    display: block
}

.marcas .clients-button-next:hover,
.marcas .clients-button-prev:hover,
.marcas .testm-button-next:hover,
.marcas .testm-button-prev:hover {
    box-shadow: none;
    opacity: 1;
    background-color: var(--lblue2);
    -webkit-box-shadow: 0 10px 25px 0 var(--blackrgba5);
    -moz-box-shadow: 0 10px 25px 0 var(--blackrgba5);
    box-shadow: 0 10px 25px 0 var(--blackrgba5);
    /*-webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    transform: translateY(-5px)*/
}


.feature-card {
    background-color: var(--white);
    border-radius: 1px;
    padding: 30px 20px 20px 20px;
    -webkit-box-shadow: 0px 5px 30px 3px var(--lbluergba1);
    -moz-box-shadow: 0px 5px 30px 3px var(--lbluergba1);
    box-shadow: 0px 5px 30px 3px var(--lbluergba1);
    overflow: hidden;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    text-align: center;
}


.feature-card:hover {
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    transform: translateY(-10px);
    -webkit-box-shadow: 0px 15px 35px 0px var(--blackrgba2);
    -moz-box-shadow: 0px 15px 35px 0px var(--blackrgba2);
    box-shadow: 0px 15px 35px 0px var(--blackrgba2);
}


.feature-card .box-icon {
    width: 120px;
    height: 120px;
    line-height: 50px;
    text-align: center;
    background: var(--dblue2);
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
    position: relative;
    z-index: 3;
    padding: 10px;
    border: 0px solid var(--lblue2);
    display: block;
    margin: auto;
}

.feature-card .box-content {
    display: block;
    margin-top: 20px;
}


.feature-card .box-icon svg {
    position: relative;
    top: 0px;
    width: 70px;
    height: 70px;
    vertical-align: text-top;
    stroke-width: 1.5;
    fill: var(--lblue2) !important;
}

.featured-client {
    background-color: var(--white);
    border-radius: 1px;
    padding: 0px;
    -webkit-box-shadow: 0px 5px 30px 3px var(--lbluergba1);
    -moz-box-shadow: 0px 5px 30px 3px var(--lbluergba1);
    box-shadow: 0px 5px 30px 3px var(--lbluergba1);
    overflow: hidden;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    text-align: center;
}


.featured-client:hover {
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    transform: translateY(-10px);
    -webkit-box-shadow: 0px 15px 35px 0px var(--blackrgba2);
    -moz-box-shadow: 0px 15px 35px 0px var(--blackrgba2);
    box-shadow: 0px 15px 35px 0px var(--blackrgba2);
}

.category-item {
    background-color: var(--white);
    border-radius: 1px;
    padding: 0px;
    -webkit-box-shadow: 0px 5px 30px 3px var(--lbluergba0);
    -moz-box-shadow: 0px 5px 30px 3px var(--lbluergba0);
    box-shadow: 0px 5px 30px 3px var(--lbluergba0);
    overflow: hidden;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    text-align: center;
}

.category-item:hover {
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    transform: translateY(-10px);
    -webkit-box-shadow: 0px 15px 35px 0px var(--blackrgba2);
    -moz-box-shadow: 0px 15px 35px 0px var(--blackrgba2);
    box-shadow: 0px 15px 35px 0px var(--blackrgba2);
}

.events-wrap {
    overflow: hidden;
    position: relative;
}


.gallery-style2 {
    position: relative;
    overflow: hidden;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

.gallery-style2 .popup-link {
    position: absolute;
    right: 30px;
    top: -120px;
    /*transform: translate(-50%, -50%);*/
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    z-index: 1;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    opacity: 0;
    visibility: hidden;
    font-size: 23px;
    color: var(--title-color);
}


.gallery-style2 .popup-link:hover {
    background-color: var(--dblue2);
    color: var(--white);
}


.gallery-style2 .overlay::before,
.gallery-style2 .overlay::after {
    position: absolute;
    content: "";
    left: 0;
}

.gallery-style2 .overlay::after {
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, var(--lbluergba7) 25%, var(--lbluergba3) 45%, var(--lbluergba1) 60%, var(--lbluergba0) 100%);
    opacity: 1;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
}

.gallery-style2 .overlay::before {
    width: 100%;
    height: 0%;
    opacity: 0.9;
    visibility: hidden;
    bottom: 0;
    transition: all 0.3s ease-in-out;
}


.gallery-style2 .gallery-content {
    position: absolute;
    bottom: 0;
    margin: 30px;
}

@media (max-width: 1399px) {
    .gallery-style2 .gallery-content {
        margin: 15px;
    }
}

.gallery-style2 .gallery-title {
    margin-bottom: 0;
    overflow: hidden;
}


.gallery-style2 .gallery-title a {
    color: var(--black);
    transition: all 0.3s ease-in-out;
    transform: translateY(0px);
    display: inline-block;
}

.gallery-style2 .gallery-subtitle {
    color: var(--lblue2);
    transition: all 0.3s ease-in-out;
    transform: translateY(0px);
    display: inline-block;
}

.gallery-style2 .gallery-local,
.gallery-style2 .gallery-date {
    color: var(--lblue2);
    margin-bottom: 6px;
    overflow: hidden;
}

.gallery-style2 .gallery-local span,
.gallery-style2 .gallery-date span {
    display: inline-flex;
    align-items: center;
    transform: translateY(0px);
    gap: 10px;
    transition: all 0.3s ease-in-out;
    font-weight: bold;
    font-size: 14px;
}


.gallery-style2 .gallery-local span svg,
.gallery-style2 .gallery-date span svg {
    position: relative;
    top: 0px;
    width: 20px;
    height: 20px;
    vertical-align: text-top;
    stroke-width: 0;
    fill: var(--lblue2) !important;
    transition: 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}


@media (max-width: 991px) {
    .gallery-style2 .gallery-thumb img {
        width: 100%;
    }
}

.gallery-style2:hover a.popup-link {
    right: 30px;
    opacity: 1;
    visibility: visible;
    top: 30px;
}

@media (max-width: 1399px) {
    .gallery-style2:hover a.popup-link {
        top: 30px;
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
}

.gallery-style2:hover .gallery-subtitle p,
.gallery-style2:hover .gallery-title a {
    transform: translateY(80px);
}

.gallery-style2:hover .gallery-local span,
.gallery-style2:hover .gallery-date span {
    transform: translateY(22px);
}

.gallery-style2 .gallery-title:hover a {
    color: var(--lblue1);
}


.gallery-style2:hover .overlay::after {
    opacity: 1;

}

.gallery-style2:hover .overlay::before {
    opacity: 0.9;
    visibility: visible;
    height: 100%;
}

.gallery-style2 .gallery-content {
    position: absolute;
    bottom: 30px;
    margin: 0;
    left: 30px;
    right: 30px;
    /*max-width: 60%;*/
    width: calc(100% - 60px);
}

@media (max-width: 1399px) {
    .gallery-style2 .gallery-content {
        /*bottom: 30px;
        left: 35px;
        max-width: 75%;*/
    }
}

.gallery-style2 .overlay {
    transform: scale(1);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.gallery-style2 .overlay::after,
.gallery-style2 .overlay::before {
    transition: all 0.3s ease-in-out;
}

.gallery-style2 .overlay::before {
    display: none;
}

.gallery-style2 .gallery-subtitle,
.gallery-style2 .gallery-title a,
.gallery-style2 .gallery-local span,
.gallery-style2 .gallery-date span {
    transform: translateY(80px);
}

@media (max-width: 1399px) {
    .gallery-style2 .gallery-title {
        font-size: 20px;
    }
}

.gallery-style2:hover .gallery-subtitle,
.gallery-style2:hover .gallery-title a,
.gallery-style2:hover .gallery-local span,
.gallery-style2:hover .gallery-date span {
    transform: translateY(0);
}

.gallery-style2:hover .overlay {
    transform: scale(0.9);
    transition: all 0.3s ease-in-out;
}

.gallery-style2:hover .overlay::after {
    background: linear-gradient(0deg, var(--dblue2) 100%, var(--dbluergba9) 100%);
    opacity: 0.8;
    visibility: visible;

}

.gallery-style2 .popup-link {
    width: 50px;
    height: 50px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 0px 15px 35px 0px var(--blackrgba2);
    -moz-box-shadow: 0px 15px 35px 0px var(--blackrgba2);
    box-shadow: 0px 15px 35px 0px var(--blackrgba2);
}

.gallery-style2 .popup-link svg {
    position: relative;
    top: 0px;
    width: 30px;
    height: 30px;
    vertical-align: text-top;
    stroke-width: 0;
    fill: var(--lblue2) !important;
    transition: 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-style2 .popup-link:hover svg {
    fill: var(--white) !important;
}


.gallery-style2 .gallery-thumb img {
    width: 100%;
}


.gallery-title-overlay {
    position: absolute;
    bottom: 30px;
    margin: 0;
    left: 30px;
    right: 30px;
    width: calc(100% - 60px);
    background: var(--dbluergba7);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    padding: 15px;
    -webkit-backdrop-filter: saturate(150%) blur(5x);
    backdrop-filter: saturate(150%) blur(5px);
}

.gallery-style2 .gallery-title-overlay {
    transition: all 0.3s ease-in-out;
}

.gallery-style2:hover .gallery-title-overlay {
    transform: translateY(-120px);
    transition: all 0.3s ease-in-out;
    opacity: 0;
}




.pageTitleBusiness,
.pageTitleUser,
.pageTitle {
    padding:35px 0 35px;
    position: relative;
    background-size: cover;
    top: 0px;
    z-index: 0;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.pageTitleBusiness:before,
.pageTitle:before {
    left: 0;
    z-index: -1;
    top: 0;
    height: 100%;
    content: " ";
    position: absolute;
    width: 100%;
    /*background-color:rgba(155, 211, 174,.7);*/
    background: linear-gradient(221deg, var(--dbluergba6), var(--dbluergba9), var(--dbluergba6));
    background-size: 300% 300%;
    -webkit-animation: bg-gradient-animator 16s ease infinite;
    -moz-animation: bg-gradient-animator 16s ease infinite;
    -o-animation: bg-gradient-animator 16s ease infinite;
    animation: bg-gradient-animator 16s ease infinite;
}


.pageTitleUser:before {
    left: 0;
    z-index: -1;
    top: 0;
    height: 100%;
    content: " ";
    position: absolute;
    width: 100%;
    /*background-color:rgba(155, 211, 174,.7);*/

    background: linear-gradient(221deg, var(--dbluergba5), var(--dbluergba7), var(--dbluergba5));
    background-size: 300% 300%;
    -webkit-animation: bg-gradient-animator 16s ease infinite;
    -moz-animation: bg-gradient-animator 16s ease infinite;
    -o-animation: bg-gradient-animator 16s ease infinite;
    animation: bg-gradient-animator 16s ease infinite;
}


.pageTitleTwo:before {
    left: 0;
    z-index: -1;
    top: 0;
    height: 100%;
    content: " ";
    position: absolute;
    width: 100%;
    background-color: var(--blackrgba5);
    /*background: linear-gradient(221deg, var(--lbluergba7), var(--lbluergba5), var(--lbluergba7));*/
    background-size: 100%;
}


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

    .pageTitleBusiness,
    .pageTitleUser,
    .pageTitle {
        padding: 35px 0 35px;
    }
}


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

    .pageTitleBusiness,
    .pageTitleUser {
        padding: 10px 0 70px;
    }
}


@-webkit-keyframes bg-gradient-animator {
    0% {
        background-position: 96% 0%
    }
    50% {
        background-position: 5% 100%
    }
    100% {
        background-position: 96% 0%
    }
}

@-moz-keyframes bg-gradient-animator {
    0% {
        background-position: 96% 0%
    }
    50% {
        background-position: 5% 100%
    }
    100% {
        background-position: 96% 0%
    }
}

@-o-keyframes bg-gradient-animator {
    0% {
        background-position: 96% 0%
    }
    50% {
        background-position: 5% 100%
    }
    100% {
        background-position: 96% 0%
    }
}

@keyframes bg-gradient-animator {
    0% {
        background-position: 96% 0%
    }
    50% {
        background-position: 5% 100%
    }
    100% {
        background-position: 96% 0%
    }
}


.titlepageSite h1,
.titlepageSite h2,
.titlepageSite h3 {
    font-size: 24px;
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    padding-left: 15px;
    text-transform: uppercase;
}

.titlepageSite h1 {
    font-size: 36px;
    line-height: 1.1;
    color: var(--lblue2);
    margin-bottom: 0px;
}


.titlepageSite h2 {
    font-size: 30px;
    line-height: 1.1
}


.titlepageSite h3 {
    font-size: 24px;
    line-height: 1.1
}


.titlepageSite h1::before,
.titlepageSite h2::before,
.titlepageSite h3::before {
    position: absolute;
    content: "";
    width: 7px;
    height: 100%;
    background: var(--dbluergba9);
    left: 0px;
    z-index: -1;
    -moz-border-radius: 7px;
    -webkit-border-radius: 7px;
    border-radius: 7px;
    overflow: hidden;
}



img[data-src] {
    opacity: 0;
    -webkit-transition: opacity .5s linear 0.2s;
    -moz-transition: opacity .5s linear 0.2s;
    transition: opacity .5s linear 0.2s;
}

img.lazy {
    /* prepare the future animation */
    -webkit-transition: opacity .5s linear 0.2s;
    -moz-transition: opacity .5s linear 0.2s;
    transition: opacity .5s linear 0.2s;
    /* we set the opacity to 1 to do the magic */
    opacity: 1;
}


.lazy {
    opacity: 0;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}


.sec-title h3 {
    position: relative;
    font-size: 24px;
    color: var(--lblue2);
    line-height: 1.2;
    font-weight: bold;
    padding: 0px 15px 0px 15px;
}

.sec-title h1 {
    position: relative;
    font-size: 30px;
    color: var(--lblue2);
    line-height: 1.2;
    font-weight: bold;
    padding: 0px 15px 0px 15px;
}

.sec-title h2 {
    position: relative;
    font-size: 26px;
    color: var(--lblue2);
    line-height: 1.2;
    font-weight: bold;
    padding: 0px 15px 0px 15px;
}

.sec-title .text span {
    font-size: 14px;
    line-height: 1.1;
    color: var(--gray3)
}

.sec-title .text {
    position: relative;
    padding: 15px 15px 0px 15px;
    margin-top: 15px;
}

.sec-title .text p {
    font-size: 18px;
    line-height: 1.1;
    color: var(--gray3)
}

.sec-title .text:before {
    position: absolute;
    width: 110px;
    height: 5px;
    top: -2px;
    left: 15px;
    content: "";
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    background: var(--dblue2);
}

.sec-title.text-center .text:before {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}


.sec-title-two .text-two {
    position: relative;
    padding: 15px 15px 0px 15px;
    margin-top: 15px;
}

.sec-title-two .text-two:before {
    position: absolute;
    width: 110px;
    height: 5px;
    top: -2px;
    left: 0;
    content: "";
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    background: var(--dblue2);
}

.sec-title-two .text-two:before {
    left: 0px;
}

.sec-title-two .text-two p {
    font-size: 16px;
    line-height: 1.1;
    color: var(--gray3)
}


.sec-title-two h3 {
    position: relative;
    font-size: 24px;
    color: var(--lblue2);
    line-height: 1.2;
    font-weight: bold;
    padding: 0px;
}

.sec-title-two h1 {
    position: relative;
    font-size: 30px;
    color: var(--lblue2);
    line-height: 1.2;
    font-weight: bold;
    padding: 0px;
}

.sec-title-two h2 {
    position: relative;
    font-size: 26px;
    color: var(--lblue2);
    line-height: 1.2;
    font-weight: bold;
    padding: 0px;
}




.category-section {
    position: relative;
}

.category-section .category-block-one {
    position: relative;
    width: 100%;
    display: block;

}

.category-section .inner-content {
    position: relative;
    margin: 0px -15px;
}

.category-block-one .inner-box {
    text-align: center !important;
    position: relative;
    width: 100%;
    margin: 0 auto;
    background: var(--white);
    padding: 25px 15px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    overflow: hidden;


    -webkit-box-shadow: 0px 3px 15px 0px var(--blackrgba1);
    -moz-box-shadow: 0px 3px 15px 0px var(--blackrgba1);
    box-shadow: 0px 3px 15px 0px var(--blackrgba1);

    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.category-block-one .inner-box:hover,
.category-block-one .inner-box:focus {
    /*box-shadow: 0px 10px 50px 0px rgb(248 92 112 / 30%);*/

    -webkit-box-shadow: 0px 15px 36px 0px var(--lbluergba3);
    -moz-box-shadow: 0px 15px 36px 0px var(--lbluergba3);
    box-shadow: 0px 15px 36px 0px var(--lbluergba3);


    -webkit-transform: translateY(-15px);
    -moz-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -o-transform: translateY(-15px);
    transform: translateY(-15px);


}

.category-block-one .inner-box:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 0%;
    left: 0px;
    top: 0px;
    right: 0px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    background-color: var(--lblue1);
    z-index: 0
}

.category-block-one .inner-box:hover:before {
    height: 100%;
}

.category-block-one .inner-box .icon-box {
    position: relative;
    display: inline-block;
    color: var(--white);
    margin: 0 auto 15px;
    width: 125px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    opacity: 0.7
}


.category-block-one .inner-box .icon-box {
    position: relative;
    display: inline-block;
    color: var(--white);
    margin: 0 auto 15px;
    width: 125px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    opacity: 1
}

.category-block-one .inner-box .icon-box img {
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
    filter: brightness(100%);
}


.category-block-one .inner-box:hover .icon-box img {
    filter: brightness(1000%);
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
}


.category-block-one .inner-box:hover .icon-box {
    color: #fff;
}

.category-block-one .inner-box h5 {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 1.2;
    font-weight: normal;
    color: var(--lblue2);
    z-index: 10;
    font-weight: bold;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.category-block-one .inner-box:hover h5 {
    color: var(--dblue2) !important;
}

.category-block-one .inner-box .shape .shape-1 {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 61px;
    height: 77px;
    background-repeat: no-repeat;
}

.category-block-one .inner-box .shape .shape-2 {
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 35px;
    height: 61px;
    background-repeat: no-repeat;
}






.feature-block-one .inner-box {
    position: relative;
    display: block;
    background: var(--white);
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    -webkit-box-shadow: 0px 3px 20px 0px var(--blackrgba1);
    -moz-box-shadow: 0px 3px 20px 0px var(--blackrgba1);
    box-shadow: 0px 3px 20px 0px var(--blackrgba1);
    overflow: hidden;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.feature-block-one .inner-box:hover,
.feature-block-one .inner-box:focus {
    -webkit-transform: translateY(-15px);
    -moz-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -o-transform: translateY(-15px);
    transform: translateY(-15px);
    -webkit-box-shadow: 0px 20px 36px 0px var(--blackrgba1);
    -moz-box-shadow: 0px 20px 36px 0px var(--blackrgba1);
    box-shadow: 0px 20px 36px 0px var(--blackrgba1);
}

.feature-block-one .inner-box .image-box {
    position: relative;
    display: block;
}


#empPhotos .image-box,
#empPhotos .image-box img {
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
}


#empPhotos .carousel {
    position: relative;
}


.feature-block-one .inner-box .image-box:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    right: 0px;
    box-shadow: inset 0px -140px 50px -40px var(--blackrgba5);
    z-index: 1;
    transition: all 500ms ease;
}

.feature-block-one .inner-box .image-box .rating {
    position: absolute;
    display: inline-block;
    left: 30px;
    bottom: 47px;
    z-index: 1;
    color: var(--yellow)
}

.feature-block-one .inner-box .image-box .rating li {
    position: relative;
    display: inline-block;
    font-size: 14px;
    margin: 0px 0px;
    color: var(--yellow)
}

.feature-block-one .inner-box .image-box .rating li a {
    display: inline-block;
    font-size: 15px;
    color: var(--yellow);
    margin-left: 5px;
}

.feature-block-one .inner-box .image-box h5 {
    position: absolute;
    display: inline-block;
    right: 30px;
    bottom: 48px;
    font-size: 18px;
    line-height: 26px;
    font-weight: 800;
    z-index: 1;
}

.feature-block-one .inner-box .image-box .rating li a:hover {

}

.feature-block-one .inner-box .lower-content {
    position: relative;
    display: block;
    padding: 0px 15px 15px 15px;
}

.feature-block-one .inner-box .lower-content .author-box {
    position: relative;
    background: var(--white);
    padding: 20px 15px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    margin-top: -35px;
    -webkit-box-shadow: 0px 3px 20px 0px var(--blackrgba1);
    -moz-box-shadow: 0px 3px 20px 0px var(--blackrgba1);
    box-shadow: 0px 3px 20px 0px var(--blackrgba1);
    z-index: 1;
    margin-bottom: 20px;
}

.feature-block-one .inner-box .lower-content .author-box .inner {
    position: relative;
    padding-left: 52px;
}

.feature-block-one .inner-box .lower-content .author-box .inner img {
    position: absolute;
    left: 0px;
    top: -7px;
    width: 48px;
    height: 48px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    border: 3px solid var(--f4f4f4);
    -webkit-box-shadow: 0px 3px 20px 0px var(--blackrgba1);
    -moz-box-shadow: 0px 3px 20px 0px var(--blackrgba1);
    box-shadow: 0px 3px 20px 0px var(--blackrgba1);
}

.feature-block-one .inner-box .lower-content .author-box .inner h3 {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 26px;
    font-weight: bold;
    padding-right: 26px;
}


.feature-block-one .inner-box .lower-content .author-box .inner span {
    position: absolute;
    top: 0px;
    right: 0px;
    display: inline-block;
    font-size: 11px;
    line-height: 18px;
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 15px;
    border-radius: 25px;
}

.feature-block-one .inner-box .lower-content .category {
    /*display: block;
    width: 100%;
    margin-bottom: 15px;
    position: relative;
    padding-left:10px;*/
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.feature-block-one .inner-box .lower-content .category svg {
    position: relative;
    width: 20px;
    height: 20px;
    vertical-align: text-top;
    transition: transform 0.2s ease;
    fill: var(--lblue2)
}
.feature-block-one .inner-box .lower-content .adress svg {
    position: relative;
    width: 20px;
    height: 20px;
    vertical-align: text-top;
    transition: transform 0.2s ease;
    fill: var(--lblue2)
}

.feature-block-one .inner-box .lower-content .category a {
    font-size: 14px;
    line-height:1.1;
    padding:3px 5px;
    background: var(--f4f4f4);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    margin-right: 3px;
    margin-bottom: 3px;
    white-space: nowrap;
    display: inline;
}

.feature-block-one .inner-box .lower-content .category .bgone {
    background: var(--eeeeee);
}


.feature-block-one .inner-box .lower-content .text p {
    display: block;
    font-size: 16px;
    line-height:1.1;
    border-bottom: 1px solid var(--blackrgba1);
}


.feature-block-one .inner-box .lower-content .info{
    display: block;
    font-size: 16px;
    line-height:1.2;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--blackrgba1);
}


.feature-block-one .inner-box .lower-content .adress{
    display: block;
    font-size: 16px;
    line-height:1.2;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 0px solid var(--blackrgba1);
}





.pagination {
    display: inline-block;
    padding-left: 0;
    margin: 20px 0;
    border-radius: 0px;
}

.pagination > li {
    display: inline;
}

.pagination > li > a,
.pagination > li > span {
    position: relative;
    float: left;
    padding: 0px 20px;
    margin: 1px;
    line-height: 50px;
    color: var(--lblue1);
    height: 50px;
    text-decoration: none;
    background-color: var(--dblue2);
    border: 0px solid var(--white);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    outline: none !important;
    font-size: 16px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.pagination > li > span {
    font-size: 24px !important;
    padding-top: 12px;
}

.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
    z-index: 2;
    color: var(--lblue2);
    background-color: var(--dblue1);
    border-color: var(--white);
}

.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
    z-index: 3;
    color: var(--dblue2);
    cursor: default;
    background-color: var(--lblue2);
    border-color: var(--white);
}

.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
    color: var(--white);
    cursor: not-allowed;
    background-color: var(--gray3);
    border-color: var(--white);
}

.pagination svg {
    position: relative;
    top: -1px;
    width: 24px;
    height: 24px;
    vertical-align: text-top;
    stroke-width:0;
    fill:var(--lblue2) !important;
    transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}



.pager li > a,
.pager li > span {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 14px;
}

.pager li > a,
.pager li > span {
    color: var(--white);
    border-color: transparent !important;
    background: var(--gray3);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.pager li > a:hover,
.pager li > span:hover {
    color: var(--white);
    background: var(--lblue2);
    border-color: transparent !important;
}





.default-sidebar .sidebar-widget {
    position: relative;
    display: block;
    background: var(--white);
    padding:15px 30px;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
    -webkit-box-shadow: 0px 20px 60px 0px var(--lbluergba1);
    -moz-box-shadow: 0px 20px 60px 0px var(--lbluergba1);
    box-shadow: 0px 20px 60px 0px var(--lbluergba1);
    margin-bottom: 30px;
}

.default-sidebar .sidebar-widget .widget-title {
    position: relative;
    display: block;
    margin-bottom: 22px;
}

.default-sidebar .sidebar-widget .widget-title h3 {
    font-size: 22px;
    line-height: 30px;
    font-weight: 800;
    margin: 0px;
}


.btnside {
    border: 0;
    color: var(--white);
    font-size: 14px;
    cursor: pointer;
    font-weight: 400;
    padding: 4px 15px !important;
    position: relative;
    background: var(--lblue1);
    white-space: nowrap;
    display: inline-block;
    text-decoration: none;
    height: 100%;
    -webkit-border-top-right-radius: 5px;
    -webkit-border-bottom-right-radius: 5px;
    -moz-border-radius-topright: 5px;
    -moz-border-radius-bottomright: 5px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;

}

.btnside i {
    font-size: 24px;
}

.btnside:hover,
.btnside:focus {
    color: #fff;
    background: var(--lblue2);
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.btnside:hover,
.btnside:focus {
    outline: none;
}

.h47 {
    height: 47px;
}


.sidebar .popular-posts .post {
    position: relative;
    font-size: 14px;
    color: var(--gray3);
    padding: 0px 0px 30px 0px;
    padding-left: 75px;
    min-height: 70px;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--blackrgba1);
}

.sidebar .popular-posts .post:last-child {
    margin-bottom: 0px;
    border-bottom: 0px;
    min-height: auto;
}

.sidebar .popular-posts .post .post-thumb {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 65px;
    height: 65px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border: 3px solid var(--lblue1);
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.sidebar .popular-posts .post:hover .post-thumb {
    opacity: 0.50;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border-color: var(--lblue1) !important
}

.sidebar .popular-posts .post:hover .post-thumb a {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 2;
    width: 100%;
    height: 100%;
}


.sidebar .popular-posts .post .post-thumb img {
    visibility: hidden;
    display: none;
}


.sidebar .popular-posts .post h4 {
    position: relative;
    font-size: 1rem !important;
    margin: 0px 0px 5px 0px;
    font-weight: 600;
    color: var(--white);
    top: 5px;
}

.sidebar .popular-posts .post a:hover {
    color: var(--lblue1);
}

.sidebar .popular-posts .post h4 {
    line-height: 1.1rem !important;
}

.sidebar .popular-posts .post h4 a {
    color: var(--lblue2);
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    font-size: 16px !important;
    line-height: 18px !important;
}

.sidebar .popular-posts .post-info {
    font-size: 12px;
    color: var(--gray3);
}

.border-bottom1 {
    border-bottom: 1px solid var(--blackrgba2);
}


.sidebar .sec-title-sidebar .text-sidebar {
    position: relative;
    padding: 15px 0px 0px 0px;
    margin-top: 10px;
}

.sidebar .sec-title-sidebar .text-sidebar p {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.1;
}

.sidebar .sec-title-sidebar .text-sidebar:before {
    position: absolute;
    width: 110px;
    height: 5px;
    top: -2px;
    left: 0;
    content: "";
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    background: var(--lblue2);
}

.sidebar .sec-title-sidebar .text-sidebar:before {
    left: 0px;
}

.sidebar .sec-title-sidebar .text-sidebar p {
    font-size: 16px;
    line-height: 1.1;
    color: var(--gray3)
}


.sidebar .sec-title-sidebar h3 {
    position: relative;
    font-size: 24px;
    color: var(--lblue1);
    line-height: 1.1;
    font-weight: bold;
    padding: 0px;
    text-transform: uppercase;
}


.link-side {
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    color: var(--white);
    background: var(--lblue2);
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    border: none;
    padding: 10px 15px;
    position: relative;
    margin-bottom: 10px;
    display: block;
    width: 100%;
    z-index: 0;
    overflow: hidden;
}

.link-side a {
    color: var(--white);
}


.link-side span {
    font-weight: bold;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-size: 16px;
    padding-left: 0px;
    position: relative;
    z-index: 2;
    display: block;
}


.link-side:focus,
.link-side:hover {
    color: var(--white);
    background: var(--dblue2);
}

.link-side:focus span,
.link-side:hover span {
    padding-left: 15px;
}


.link-side i {
    font-size: 16px;
    position: relative;
    left: -36px;
    opacity: 0;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.link-side:focus i,
.link-side:hover i {
    left: 0px;
    opacity: 1;
}


.link-side:before {
    position: absolute;
    content: "";
    height: 100%;
    width: 5px;
    top: 0px;
    left: 0px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    background: var(--blackrgba3);
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    z-index: 1;
}

.link-side:hover:before,
.link-side:focus:before {
    width: 100%;
    background: var(--blackrgba2);
}

.bg-image-logo {
    background-position: center center !important;
    background-attachment: scroll !important;
    background-repeat: no-repeat !important;
    -webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    -o-background-size: cover !important;
    background-size: cover !important;
}





.headerTitle {
    position: relative;
    width: 100%;
}


.headerTitle .info-box {
    position: relative;
    width: 100%;
    padding: 30px 30px;
    margin-top: -30px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    z-index: 1;
    -webkit-box-shadow: 0px 10px 36px 0px var(--lbluergba1);
    -moz-box-shadow: 0px 10px 36px 0px var(--lbluergba1);
    box-shadow: 0px 10px 36px 0px var(--lbluergba1);
    -webkit-backdrop-filter: saturate(150%) blur(5x);
    backdrop-filter: saturate(150%) blur(5px);
    background-color: var(--whitergba9) !important
}


.headerTitle .info-box .left-column {
    position: relative;
    padding: 15px 0px 15px 75px;
    float: left;
}

.headerTitle .info-box .left-column .image-box {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 65px;
    height: 65px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    overflow: hidden;
    padding: 3px;
    background: var(--lblue2);

}

.headerTitle .info-box .left-column .image-box img {
    width: 100%;
    padding: 3px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    background: var(--white);
}

.headerTitle .info-box .left-column h4 {
    position: relative;
    display: inline-block;
    font-size: 20px;
    line-height: 1.2;
    font-weight: bold;
    padding-right: 26px;
    margin-right: 55px;
}

.headerTitle .info-box .left-column h4:before {
    position: absolute;
    content: '';
    background: var(--blackrgba2);
    width: 33px;
    height: 33px;
    top: -3px;
    right: -30px;
    background:var(--dblue2);
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
}

.headerTitle .info-box .left-column h4 svg{
    position: absolute;
    right: -25px;
    top: 3px;
    width: 22px;
    height: 22px;
    vertical-align: text-top;
    stroke-width: 2;
    fill: var(--lblue2) !important;
    transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.headerTitle .info-box .left-column span.sell {
    position: relative;
    top: 0px;
    right: 0px;
    display: inline-block;
    font-size: 11px;
    line-height: 18px;
    color: #333;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 15px;
    border-radius: 25px;
    margin-right: 55px;
}

.headerTitle .info-box .left-column span.sell:before {
    position: absolute;
    content: '';
    background: var(--blackrgba2);
    width: 1px;
    height: 22px;
    top: 1px;
    right: -30px;
}

.headerTitle .info-box .left-column .rating li {
    position: relative;
    display: inline-block;
    font-size: 16px;
    color: var(--dblue2);
    margin: 0px 0px;
}

.headerTitle .info-box .left-column .rating li a {
    display: inline-block;
    font-size: 15px;
    color: var(--gray3);
    margin-left: 5px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.headerTitle .info-box .left-column .rating li a:hover {
    color: var(--dblue2);
}

.headerTitle .info-box .left-column .rating {
    position: relative;
    display: inline-block;
    margin-right: 55px;
}

.headerTitle .info-box .left-column .rating:before {
    position: absolute;
    content: '';
    background: var(--blackrgba2);
    width: 1px;
    height: 22px;
    top: 1px;
    right: -30px;
}

.headerTitle .info-box .left-column h5 {
    position: relative;
    display: inline-block;
    font-size: 18px;
    line-height: 26px;
    font-weight: 800;
}

.headerTitle .info-box .left-column h5 span {
    font-size: 14px;
    font-family: 'Quicksand', sans-serif;
    color: #808080;
    font-weight: 400;
    margin-right: 8px;
}

.headerTitle .info-box .right-column {
    position: relative;
    padding: 10px 0px;
    float: right;
}

.headerTitle .info-box .right-column .links-list {
    position: relative;
    display: inline-block;
    border: 2px solid var(--blackrgba2);
    border-radius: 6px;
    padding: 7px;
}

.headerTitle .info-box .right-column .links-list li {
    position: relative;
    display: inline-block;
    margin: 0px 14px;
}

.headerTitle .info-box .right-column .links-list li:before {
    position: absolute;
    content: '';
    background: var(--blackrgba2);
    width: 1px;
    height: 22px;
    top: 1px;
    right: -17px;
}

.headerTitle .info-box .right-column .links-list li:last-child:before {
    display: none;
}

.headerTitle .info-box .right-column .links-list li a {
    position: relative;
    display: inline-block;
    font-size: 18px;
    line-height: 26px;
    color: var(--gray7);
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.headerTitle .info-box .right-column .links-list li a:hover {
    color: var(--gray3);
}


.headerTitle .info-box .right-column .links-list li.share-option ul {
    position: absolute;
    left: -15px;
    top: 55px;
    width: 150px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.headerTitle .info-box .right-column .links-list li.share-option:hover ul {
    top: 30px;
    opacity: 1;
    visibility: visible;
}

.headerTitle .info-box .right-column .links-list li.share-option ul li:before {
    display: none;
}

.headerTitle .info-box .right-column .links-list li.share-option ul li {
    margin: 0px 3px 0px 0px;
}

.headerTitle .info-box .right-column .links-list li.share-option ul li a {
    display: inline-block;
    font-size: 16px;
    color: var(--white);
    padding: 0px 5px;
    height: 32px;
    width: 32px;
    text-align: center;
    line-height: 32px;
    background: var(--lblue2);
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    -webkit-box-shadow: 0px 10px 36px 0px var(--lbluergba1);
    -moz-box-shadow: 0px 10px 36px 0px var(--lbluergba1);
    box-shadow: 0px 10px 36px 0px var(--lbluergba1);
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
}

.headerTitle .info-box .right-column .links-list li.share-option ul li a:hover {
    background: var(--lblue2);
}

.browse-add-details {
    position: relative;
    padding: 20px 0px 120px 0px;
}



.add-details-content .single-box {
    position: relative;
    display: block;
    background: var(--white);
    padding: 25px 30px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    -webkit-box-shadow: 0px 20px 60px 0px var(--lbluergba1);
    -moz-box-shadow: 0px 20px 60px 0px var(--lbluergba1);
    box-shadow: 0px 20px 60px 0px var(--lbluergba1);
    margin-bottom: 30px;
}


.add-details-content .single-box:last-child {
    margin-bottom: 0px;
}

.add-details-content .single-box .text h3 {
    font-size: 22px;
    line-height: 30px;
    font-weight: 800;
    margin-bottom: 14px;
}

.add-details-content .single-box .text p {
    line-height: 28px;
    margin-bottom: 28px;
}

.add-details-content .single-box .text p:last-child {
    margin-bottom: 0px;
}




.category-item-page {
/*
display: block;
    width: 100%;
    margin-bottom: 15px;
    position: relative;
    padding-left:0px;
    white-space: normal !important;
*/
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.category-item-page svg {
    position: relative;
    top: 0px;
    width: 20px;
    height: 20px;
    margin-right: 5px;
    vertical-align: text-top;
    stroke-width: 2;
    fill: var(--lblue2) !important;
    transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.category-item-page a{
    font-size: 14px;
    line-height: 1.1;
    padding: 3px 3px;
    background: var(--f4f4f4);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    margin-right: 3px;
    margin-bottom: 3px;
    cursor:default !important;

    display: inline-block;
    margin-right: 10px;
    white-space: nowrap;
}

.category-item-page .bgone {
    background: var(--eeeeee);
}



#product-detail .img-box-client {
    padding-bottom: 0px;
    margin-bottom: 0px;
    padding-left: 5px;
    padding-right: 5px;
}

#product-detail .swiper {
    position: relative;
    width: 100%;
    overflow: hidden;

}

#product-detail .swiper-slide {
    background-position: center;
    background-size: cover;
    background: var(--white);
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    overflow: hidden;
    padding: 0px;
}


#product-detail .swiper-slide img {
    display: block;
    width: 100%;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    background: var(--white);
}


#product-detail .swiper-button-next,
#product-detail .swiper-button-prev {
    color: var(--lblue2);
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    padding: 15px !important;
    height: 48px;
    width: 48px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    background: var(--white)
}

#product-detail .swiper-button-next:after,
#product-detail .swiper-button-prev:after {
    font-size: 28px;
}

#product-detail .swiper-button-next:hover,
#product-detail .swiper-button-prev:hover {
    color: var(--dblue2);
}


#product-detail .view-gallery {
    position: absolute;
    height: 50px;
    width: 50px;
    right: 15px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    bottom: 0px;
    text-align: center;
    font-size: 24px;
    z-index: 5;
    line-height: 50px;
    border: 2px solid var(--blackrgba2);
    background: var(--white);
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

#product-detail .view-gallery:hover {
    border: 2px solid var(--blackrgba3);
    background: var(--f4f4f4);
}


#product-detail .thumbProducts {
    height: 125px !important;
    box-sizing: border-box;
    padding: 10px 0;
}

#product-detail .thumbProducts .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.75;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

#product-detail .thumbProducts .swiper-slide-thumb-active {
    opacity: 1;
}


.link-image-large{
    position: absolute;
    bottom: 30px;
    right: 30px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    font-size:14px;
    font-weight: bold;
    color: var(--white) !important;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    padding: 5px 10px;
    cursor: pointer;
    background:var(--lblue2);
}

.link-image-large a{
    font-size:14px;
    color: var(--white) !important;
}

.link-image-large svg{
    position: relative;
    top: 0px;
    width: 20px;
    height: 20px;
    vertical-align: text-top;
    stroke-width: 2;
    fill: var(--white) !important;
    transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}


.link-image-large:focus,
.link-image-large:hover{
    background:var(--lblue3);
}





.add-details-content .single-box .list-item li {
    position: relative;
    display: inline-block;
    float: left;
    width: 50%;
    margin-bottom: 14px;
    padding-left:5px;
}

.add-details-content .single-box .list-item li:before {

}

.add-details-content .single-box .list-item {
    padding-top: 3px;
    position: relative;
}

@media screen and (max-width: 767px) {
    .add-details-content .single-box .list-item li {
        position: relative;
        display: block;
        float: left;
        width: 100%;
        margin-bottom: 14px;
        padding-left: 35px;
    }
}


.contact-map iframe {
    width: 100%;
}

.add-details-content .single-box .contact-map {
    position: relative;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    margin-bottom: 16px;
}

.add-details-content .single-box iframe {
    height: 300px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
}


#map {
    width: 100%;
    height: 300px;
}


.add-details-content .content-adress .info-box li {
    position: relative;
    display: block;
    float: left;
    width: 50%;
    margin-bottom: 11px;
    padding-left: 30px;
    color: var(--gray3);
    font-weight: bold
}

.add-details-content .content-adress .info-box li:first-child,
.add-details-content .content-adress .info-box li:nth-child(3),
.add-details-content .content-adress .info-box li:nth-child(5) {
    padding-left: 0px;
}

.add-details-content .content-adress .info-box li span {
    color: var(--gray7);
    font-weight: normal
}

.add-details-content .content-adress .text h3 {
    margin-bottom: 22px;
}

.add-details-content .content-adress {
    padding-bottom: 23px;
}


.add-details-content .item-theme-btn-two {
    position: relative;
    display: block;
    float: left;
    width: 50%;
    padding-left: 20px;
    padding-right: 20px;

}

@media screen and (max-width: 600px) {
    .add-details-content .item-theme-btn-two {
        position: relative;
        display: block;
        float: left;
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;

    }
}






.add-details-content .item-theme-btn-two {
    position: relative;
    display: block;
    float: left;
    width: 50%;
    padding-left: 15px;
    padding-right: 15px;

}

@media screen and (max-width: 600px) {
    .add-details-content .item-theme-btn-two {
        position: relative;
        display: block;
        float: left;
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;

    }
}


.theme-btn-two {
    position: relative;
    display: inline-block;
    overflow: hidden;
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    width: 100%;
    color: var(--white) !important;
    text-align: left;
    padding: 12px 25px 12px 60px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    -webkit-box-shadow: 0px 10px 36px 0px var(--lbluergba1);
    -moz-box-shadow: 0px 10px 36px 0px var(--lbluergba1);
    box-shadow: 0px 10px 36px 0px var(--lbluergba1);
    z-index: 1;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    background-color: var(--lblue1);
}


.theme-btn-two span {
    position: relative;
    top: -2px;

}

.theme-btn-two .icon {
    position: absolute;
    content: '';
    width: 50px;
    height: 50px;
    background: var(--dblue2);
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    left: 0px;
    top: 0px;
    z-index: -1;
    text-align: center;
    line-height: 50px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.theme-btn-two:focus .icon,
.theme-btn-two:hover .icon {
    background: var(--dblue1);
}

.theme-btn-two .icon svg {
    position: relative;
    top: -2px;
    width: 24px;
    height: 24px;
    vertical-align: text-top;
    stroke-width: 2;
    fill: var(--lblue2) !important;
    transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}


.theme-btn-two:focus,
.theme-btn-two:hover {
    background: var(--lblue2);
    -webkit-box-shadow: 0px 10px 46px 0px var(--lbluergba3);
    -moz-box-shadow: 0px 10px 46px 0px var(--lbluergba3);
    box-shadow: 0px 10px 46px 0px var(--lbluergba3);
}

/*
.theme-btn-two:focus i,
.theme-btn-two:hover i{
    margin-left: 0px;
}
*/
.theme-btn-two:not(:disabled):not(.disabled):active,
.theme-btn-two:not(:disabled):not(.disabled).active,
.show > .theme-btn-two.dropdown-toggle {
    color: var(--white);
    background-color: var(--lblue2);
}

.theme-btn-two:before {
    position: absolute;
    content: '';
    width: 0%;
    height: 100%;
    background: var(--lblue3);
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    left: 0px;
    top: 0px;
    z-index: -1;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.theme-btn-two:hover:before {
    width: 100%
}




.itens-page-cad {
    padding: 10px 30px 30px 30px ;
    border-style: solid;
    border-width: 0 0 0 0;
    background-color: transparent;
    -webkit-box-shadow: 0px 5px 25px 0px var(--lbluergba0);
    -moz-box-shadow: 0px 5px 25px 0px var(--lbluergba0);
    box-shadow: 0px 5px 25px 0px var(--lbluergba0);
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    width: 100%;
    display: block;

}


.itens-page-cad:active,
.itens-page-cad:focus,
.itens-page-cad:hover {
    -webkit-box-shadow: 0px 5px 35px 0px var(--lbluergba3);
    -moz-box-shadow: 0px 5px 35px 0px var(--lbluergba3);
    box-shadow: 0px 5px 35px 0px var(--lbluergba3);

}

.itens-page-cad .content-box h3 {
    color: var(--lblue2);
    margin-top: 0px;
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
}

.itens-page-cad .content-box p {
    color: var(--gray3);
    margin-top: 0px;
    margin-bottom: 0px;
    font-size: 16px;
    font-weight: normal;
    line-height: 1.1;
}


.itens-page-cad .icon-main {
    position: relative;
    display: block;
    margin-bottom: 0px;
}

.itens-page-cad .icon-main svg {
    position: relative;
    top: 0px;
    width: 75px;
    height: 75px;
    vertical-align: text-top;
    stroke-width: 2;
    fill: var(--dblue2) !important;
    transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}


.itens-page-cad .icon-main img {
    width: 90px;
}

.itens-page-cad .overlay {
    z-index: 2;
    background: transparent;
}







.list-widget ul{
    position: relative;
    display: inline-block;
    text-align: left;
    padding-left: 10px;
    list-style-position: inside !important;
}


.list-widget li {
    position: relative;
    min-height: 55px;
    padding-left: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--gray4);
    font-size: 16px;
    line-height: 1.2;
    font-weight: normal;
    margin-bottom: 15px;
}
.list-widget li p{
    margin: 0px;
}
/*
.list-widget li:last-child {
    padding-top: 5px;
    margin-bottom: 5px
}
*/
.list-widget li + li {
    border-top: 1px solid var(--lblue2rgba2);
}

.list-widget li svg {
    position: relative;
    top: 0px;
    width: 30px;
    height: 30px;
    vertical-align: text-top;
    stroke-width: 2;
    fill: var(--dblue2) !important;
    transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.list-widget li a {
    color: var(--gray4);
    font-size: 16px;
    line-height: 1.2;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    font-weight: 500;
}

.list-widget li a span {
    font-size: 14px;
}

.list-widget li:hover a {
    color: var(--lblue2);
}

.list-widget li:hover > i {
    color: var(--dblue2);
}



.page-emp-bg {
    padding: 30px;
    position: relative;
    margin-top: -30px;
    background: var(--white);
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    -webkit-box-shadow: 0px 15px 30px 0px var(--lbluergba2);
    -moz-box-shadow: 0px 15px 30px 0px var(--lbluergba2);
    box-shadow: 0px 15px 30px 0px var(--lbluergba2);
    background-position: center center !important;
    background-attachment: scroll !important;
    background-repeat: no-repeat !important;
    -webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    -o-background-size: cover !important;
    background-size: cover !important;
}

.list-group-item:first-child {
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
}
.list-group-item {
    position: relative;
    display: block;
    padding: 5px 10px;
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, .125);
}
.listsubmenu .list-group-item,
.listsubmenu{
    border:0px !important
}

.listsubmenu .list-group-item{
    border-bottom:1px solid var(--cccccc) !important;
}
.listsubmenu .list-group-item:last-child{
    border-bottom:0px solid var(--cccccc) !important;
}



.pageClient .social-icons li a svg {
    position: relative;
    top:5px;
    width: 20px;
    height: 20px;
    vertical-align: text-top;
    stroke-width:0;
    fill:var(--dblue2);
    transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}



.pageClient .social-icons li:hover a svg{
    fill:var(--white);
}



.sliderredir{
    position:absolute;
    width:360px;
    height:5px;
}
.lineredir{
    position:absolute;
    background:var(--dblue2);
    width:400px;
    height:2px;
}
.breakredir{
    position:absolute;
    background:var(--white);
    width:6px;
    height:2px;
}

.dot1redir{
    -webkit-animation: loadingredir 2s infinite;
    -moz-animation: loadingredir 2s infinite;
    -ms-animation: loadingredir 2s infinite;
    -o-animation: loadingredir 2s infinite;
    animation: loadingredir 2s infinite;
}
.dot2redir{
    -webkit-animation: loadingredir 2s 0.5s infinite;
    -moz-animation: loadingredir 2s 0.5s infinite;
    -ms-animation: loadingredir 2s 0.5s infinite;
    -o-animation: loadingredir 2s 0.5s infinite;
    animation: loadingredir 2s 0.5s infinite;
}
.dot3redir{
    -webkit-animation: loadingredir 2s 1s infinite;
    -moz-animation: loadingredir 2s 1s infinite;
    -ms-animation: loadingredir 2s 1s infinite;
    -o-animation: loadingredir 2s 1s infinite;
    animation: loadingredir 2s 1s infinite;
}

@keyframes loadingredir {
    from { left: 0; }
    to { left: 400px; }
}
@-moz-keyframes loadingredir {
    from { left: 0; }
    to { left: 400px; }
}
@-webkit-keyframes loadingredir {
    from { left: 0; }
    to { left: 400px; }
}
@-ms-keyframes loadingredir {
    from { left: 0; }
    to { left: 400px; }
}
@-o-keyframes loadingredir {
    from { left: 0; }
    to { left: 400px; }
}




.content-autor .post-info,
.lower-box .post-info{
    position: relative;
    font-size: 16px;
    line-height: initial;
    margin-top:15px;
    padding-top: 15px;
    border-top: 1px solid var(--blackrgba1);
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start;
    padding-bottom:0px;
}
.content-autor .post-author,
.news-block .post-author{
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.content-autor .post-author img,
.news-block .post-author img{
    height: 45px;
    width: 45px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    margin-right: 10px;
}





.nav-articles {
    position: relative;
    transition: .6s cubic-bezier(0.25, 1, 0.5, 1);
}

.nav-articles .main-nav-slider {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 91px;
    height: 45px;
    z-index: 1;
}

@media only screen and (max-width: 600px) {
    .nav-articles {
        position: relative;
    }
    .nav-articles .main-nav-slider {
        top: 15px;
        right: 0px;
        position: relative;

    }
}

.nav-articles .workshop-button-next,
.nav-articles .workshop-button-prev,
.nav-articles .instagram-button-next,
.nav-articles .instagram-button-prev,
.nav-articles .agenda-button-next,
.nav-articles .agenda-button-prev,
.nav-articles .clients-button-next,
.nav-articles .clients-button-prev,
.nav-articles .article-button-next,
.nav-articles .article-button-prev {
    position: absolute;
    top: 50%;
    width: calc(var(--swiper-navigation-size) / 44 * 27);
    height: var(--swiper-navigation-size);
    margin-top: calc(-1 * var(--swiper-navigation-size) / 2);
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--swiper-navigation-color, var(--swiper-theme-color))
}
.nav-articles .workshop-button-next,
.nav-articles .workshop-button-prev,
.nav-articles .instagram-button-next,
.nav-articles .instagram-button-prev,
.nav-articles .agenda-button-next,
.nav-articles .agenda-button-prev,
.nav-articles .clients-button-next,
.nav-articles .clients-button-prev,
.nav-articles .article-button-next,
.nav-articles .article-button-prev {
    position: absolute;
    top: 50%;
    bottom: auto;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    border: 0;
    background-color: var(--black);
    width: 45px;
    height: 45px;
    border: 0;
    z-index: 10;
    cursor: pointer;
    background-image: none;
    margin-top: -25px;
    left: auto;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
.nav-articles .workshop-button-next,
.nav-articles .instagram-button-next,
.nav-articles .agenda-button-next,
.nav-articles .clients-button-next,
.nav-articles .article-button-next {
    right: 0px
}
.nav-articles .workshop-button-prev,
.nav-articles .instagram-button-prev,
.nav-articles .agenda-button-prev,
.nav-articles .clients-button-prev,
.nav-articles .article-button-prev {
    left: 0px
}
.nav-articles .workshop-button-next img,
.nav-articles .workshop-button-prev img,
.nav-articles .instagram-button-next img,
.nav-articles .instagram-button-prev img,
.nav-articles .agenda-button-next img,
.nav-articles .agenda-button-prev img,
.nav-articles .clients-button-next img,
.nav-articles .clients-button-prev img,
.nav-articles .article-button-next img,
.nav-articles .article-button-prev img {
    height: 15px;
    width: auto;
    display: block
}
.nav-articles .workshop-button-next:hover,
.nav-articles .workshop-button-prev:hover,
.nav-articles .instagram-button-next:hover,
.nav-articles .instagram-button-prev:hover,
.nav-articles .agenda-button-next:hover,
.nav-articles .agenda-button-prev:hover,
.nav-articles .clients-button-next:hover,
.nav-articles .clients-button-prev:hover,
.nav-articles .article-button-next:hover,
.nav-articles .article-button-prev:hover {
    box-shadow: none;
    opacity: 1;
    background-color: var(--dblue2);
    -webkit-box-shadow: 0 10px 25px 0 var(--blackrgba5);
    -moz-box-shadow: 0 10px 25px 0 var(--blackrgba5);
    box-shadow: 0 10px 25px 0 var(--blackrgba5);
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    transform: translateY(-5px)
}

#agenda .swiper-slide {
    -webkit-transition: transform 0.5s;
    -moz-transition: transform 0.5s;
    -ms-transition: transform 0.5s;
    -o-transition: transform 0.5s;
    transition: transform 0.5s;
    opacity: 0.95;
}

#agenda .swiper-slide-active {
    will-change: transform;
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-transition: transform 0.5s;
    -moz-transition: transform 0.5s;
    -ms-transition: transform 0.5s;
    -o-transition: transform 0.5s;
    transition: transform 0.5s;
    opacity: 1;
    pointer-events: auto;
}






.banner-section {
    position: relative;
    padding:70px 0px 50px 0px;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 19 !important;
}


.my-background-video {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 200px;
    z-index: 0 !important;
}
/*
.banner-section:before {
    position: absolute;
    content: '';
    background: var(--lbluergba5);
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    right: 0px;
}
*/
.banner-section.style-two:before {
    opacity: 0.6;
}


.banner-section .content-box h1 {
    position: relative;
    display: block;
    font-size:36px;
    line-height: 1.2;
    color: var(--lblue2);
    margin-bottom: 15px;
    font-weight: bold;
}

.banner-section .content-box p {
    font-size:18px;
    line-height: 1.1;
    color: var(--lblue2);
    margin-bottom: 10px;
    font-weight: bold;
}


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


    .nice-select {
        padding: 4px 20px;
    }


}

.search-box-inner .nice-select .list {
    width: 100%;
    height: 160px;
    overflow-y: auto
}

.search-box-inner .nice-select {
    position: relative;
    display: block;
    width: 100%;
    height: 50px;
    border: none !important;
    background: transparent;
    font-size: 15px;
    color: var(--gray3);
    font-weight: 500;
    padding: 4px 55px;
}


.search-box-inner {
    position: relative;
    width: 100%;
    padding: 30px 0px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    z-index: 20 !important;

}


.search-box-inner .input-inner {
    position: relative;
    display: block;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    padding: 10px 180px 10px 0px;

}

.bg-form-search {
    border: 0px solid var(--blackrgba2);
    /*-webkit-backdrop-filter: saturate(150%) blur(5x);
	backdrop-filter: saturate(150%) blur(5px);*/
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    background-color: var(--whitergba9) !important;
    -webkit-backdrop-filter: saturate(300%) blur(7x);
    backdrop-filter: saturate(300%) blur(7px);
}


.search-box-inner .input-inner .form-group {
    position: relative;
    display: inline-block;
    float: left;
    width: 50%;
    margin: 0px;
}


.search-box-inner .input-inner .btn-box {
    position: absolute;
    top: 9px;
    right: 9px;
}

.search-box-inner .input-inner .btn-box button {
    position: relative;
    display: inline-block;
    font-size: 18px;
    line-height: 24px;
    color: var(--white);
    font-weight: bold;
    text-align: center;
    padding: 14px 37px;
    cursor: pointer;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    background: var(--lblue2);
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}


.search-box-inner .input-inner .btn-box button i {
    position: relative;
    top: 1px;
    margin-right: 10px;
}
.search-box-inner .input-inner .btn-box svg {
    position: relative;
    top: 2px;
    width: 20px;
    height: 20px;
    margin-left: 7px;
    vertical-align: text-top;
    stroke-width: 0;
    fill: var(--white);
    transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.search-box-inner .input-inner .btn-box button:hover {
    background: var(--dblue2);
    color: var(--lblue2);
}

.search-box-inner .input-inner .btn-box button:hover svg{
    fill: var(--lblue2);
}

.search-box-inner .input-inner .form-group input {
    position: relative;
    width: 100%;
    height: 50px;
    font-size: 15px;
    font-weight: 600;
    color: var(--gray3);
    background: transparent;
    padding: 10px 20px 10px 50px;
    border: none;
}

.search-box-inner .input-inner .form-group .local {
    padding: 10px 20px 10px 70px;
}

.search-box-inner .input-inner .form-group:before {
    position: absolute;
    content: '';
    background: var(--whitergba2);
    width: 1px;
    height: calc(100% + 20px);
    top: -10px;
    right: 0px;
}

.search-box-inner .input-inner .form-group:nth-child(3):before {
    display: none;
}

.search-box-inner .input-inner .form-group svg{
    position: absolute;
    top: 12px;
    left:10px;
    width: 24px;
    height: 24px;
    vertical-align: text-top;
    stroke-width: 0;
    fill: var(--lblue2);
    transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.search-form .nice-select:after,
.search-box-inner .nice-select:after {
    border-bottom: 3px solid var(--gray3);
    border-right: 3px solid var(--gray3);
    height: 12px;
    width: 12px;
    margin-top: -8px;
    border-radius: 1px;
}


/*
	.gmapLink {
	display: flex;
	align-items: center;
	position: relative;
	}
*/
.gmapLink i {
    cursor: pointer !important;
    color: var(--lblue3) !important;
}

.gmapLink span {
    position: absolute;
    top: 15px;
    left: 45px;
    color: var(--gray5);
}


@media only screen and (max-width: 991px) {
    .search-box-inner .input-inner .form-group i {
        display: none;
    }

    .search-box-inner .input-inner .form-group input[type='search'] {
        padding-left: 30px;
    }

    .search-box-inner {
        padding: 0px 0px 30px 0px;
    }

    .search-box-inner .input-inner {
        padding-right: 165px;
    }

    .search-box-inner .nice-select {
        padding: 4px 35px 4px 15px;
    }

    .search-box-inner .nice-select:after {
        right: 20px;
    }

}


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

    .search-box-inner .input-inner .form-group i {
        display: block;
    }

    .search-box-inner .input-inner .form-group input[type='search'] {
        padding-left: 50px;
    }

    .search-box-inner .input-inner .form-group {
        width: 100%;
        float: none;
    }

    .search-box-inner .input-inner .btn-box {
        position: relative;
        top: 0px;
        right: 0px;
        padding: 0px 15px;
    }

    .search-box-inner .input-inner .btn-box button {
        display: block;
        width: 100%;
    }

    .search-box-inner .input-inner {
        padding-right: 0px;
    }

    .search-box-inner .input-inner .form-group:before {
        display: none;
    }

    .search-box-inner .nice-select {
        padding: 4px 35px 4px 50px;
    }

    .search-box-inner .input-inner {
        -webkit-border-radius: 7px;
        -moz-border-radius: 7px;
        border-radius: 7px;
    }

    .search-box-inner .input-inner .btn-box button {
        -webkit-border-radius: 7px;
        -moz-border-radius: 7px;
        border-radius: 7px;
        -webkit-transition: all 0.3s ease-out 0s;
        -moz-transition: all 0.3s ease-out 0s;
        -ms-transition: all 0.3s ease-out 0s;
        -o-transition: all 0.3s ease-out 0s;
        transition: all 0.3s ease-out 0s;
    }

    .banner-section {
        padding: 70px 0px 50px 0px;
    }

    .banner-section .content-box h1 {
        font-size: 40px;
        line-height: 1.2;
    }

    .banner-section .content-box p {
        font-size: 20px;
        line-height: 1.1;
    }

    .search-box-inner {
        padding: 5px;
    }

    .bg-form-search {
        border: 0px solid var(--blackrgba2);
        -webkit-backdrop-filter: saturate(150%) blur(5x);
        backdrop-filter: saturate(150%) blur(5px);
        -webkit-border-radius: 7px;
        -moz-border-radius: 7px;
        border-radius: 7px;
        background-color: var(--whitergba9) !important
    }

}


.iconsearc img {
    width: 220px;
    margin: auto;
}

.content_post ul {
    display: inline-block;
    width: auto;
    padding: 10px;
}

.content_post ul>li {
    margin: 0px 5px;
    padding: 3px;
    font-weight: 600;
    cursor: pointer;
    font-size: 16px;
    opacity: 1.0;
    transition: opacity .2s ease-in-out;
    list-style-type: disc;
}

.content_post ul>li:hover {
    opacity: 1.0;
}

.content_post ul:hover>li:not(:hover) {
    opacity: 0.8;
}



.accordion-box{
    position:relative;
    margin-bottom: 30px;
}

.accordion-box .block{
    position: relative;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    border-top: 1px solid var(--f4f4f4);
}

.accordion-box .block .acc-btn{
    position: relative;
    font-size:24px;
    font-weight: bold;
    line-height: 1.1;
    cursor: pointer;
    padding: 20px 55px;
    padding-right: 15px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    font-family: var(--special-font) !important;
    background:var(--lblue2);
    color:var(--white);
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
}

.accordion-box .block .acc-btn.active{
    color:var(--white);
    background:var(--lblue1);
}

.accordion-box .block .acc-btn .icon{
    position: absolute;
    left: 25px;
    top: 20px;
    line-height: 25px;
    font-size: 14px;
    color:var(--white);
}

.accordion-box .block .acc-btn .icon svg {
    position: relative;
    left:0px;
    top: -3px;
    width: 28px;
    height: 28px;
    vertical-align: text-top;
    stroke-width: 1.5;
    /*stroke: var(--white);*/
    fill: var(--white);
}



.accordion-box .block .acc-btn.active .icon{
    transform:scaleY(-1);
    color:var(--dblue2);
}

.accordion-box .block .acc-content{
    position:relative;
    display:none;
    padding:15px 15px 15px 15px;
}

.accordion-box .block .acc-content.current{
    display:block;
}

.accordion-box .block .content .text{
    position:relative;
    font-size: 16px;
    line-height: 1.1;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    color:var(--white)
}


.accordion-box .block .acc-content .text,
.accordion-box .block .acc-content p{
    color:var(--gray3) !important;
}



.accordion-box.style-three .block .acc-btn{
    padding: 20px 25px;
    padding-right: 35px;
    font-family: var(--special-font) !important;
}

.accordion-box.style-three .block .acc-btn .icon{
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    left: auto;
    right: 25px;
}

.accordion-box.style-three .block .acc-btn .icon:before{
    font-size: 32px;
}

.accordion-box .block:last-of-type .acc-btn {
    color: var(--lblue2);
}
.accordion-box .block:last-of-type .acc-btn {
    background:var(--dblue2);
}

.accordion-box .block:last-of-type .icon svg {
    fill:var(--lblue2);
}




.story-card {
    text-align: center;
    position: relative;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    display:block;
    width: 100%;
    padding:25px 10px 10px 10px;
    -webkit-box-shadow: 0px 5px 35px 0px var(--blackrgba1);
    -moz-box-shadow: 0px 5px 35px 0px var(--blackrgba1);
    box-shadow: 0px 5px 35px 0px var(--blackrgba1);
}



.story-link {
    display: inline-block;
    text-decoration: none;
    color: inherit;
}


.story-avatar {
    position: relative;
    display: inline-block;
}


.story-avatar img {
    position: relative;
    width: 90px;
    height: 90px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
    padding:3px;
    background: var(--white);
    z-index: 2 !important;
}


.story-ring {
    position: absolute;
    top: -5px;
    left: -5px;
    width: 100px;
    height: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
    background: linear-gradient(45deg, #FF0080, #FF8C00); /* Degrade similar ao do Instagram */
    animation: ringAnimation 1.5s infinite; /* Animação de movimento do ring */
    opacity: 0.8;
    z-index: 1;
}


.username {
    margin-top: 10px;
    font-size: 14px;
    font-weight: bold;
    color:var(--orange2);
}
.username p {
    font-size: 14px;
}



element.style {
}
.list-group-item:first-child {
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
}
.list-group-item {
    position: relative;
    display: block;
    padding: 10px 10px;
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, .125);
}
.listsubmenu .list-group-item,
.listsubmenu{
    border:0px !important
}

.listsubmenu .list-group-item{
    border-bottom:1px solid var(--cccccc) !important;
}
.listsubmenu .list-group-item:last-child{
    border-bottom:0px solid var(--cccccc) !important;
}



.widget {
    -webkit-backdrop-filter: saturate(150%) blur(5x);
    backdrop-filter: saturate(150%) blur(5px);
    background-color: var(--whitergba2) !important;
    position: relative;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    border: 1px solid var(--whitergba5);
    -webkit-box-shadow: 0px 15px 45px 0px var(--lbluergba2);
    -moz-box-shadow: 0px 15px 45px 0px var(--lbluergba2);
    box-shadow: 0px 15px 45px 0px var(--lbluergba2);
    /*box-shadow: 0 0 40px 0 rgba(94, 92, 154, 0.06);*/
}

.widget .widget-heading {
    display: flex;
    justify-content: space-between;
    padding: 20px 20px;
    margin-bottom: 0;
}

.widget .widget-heading .w-title {
    display: flex;
    width: 100%;
}

.widget .widget-heading .w-title .w-icon {
    display: inline-block;
    align-self: center;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    width: 48px;
    height: 48px;
    line-height: 46px;
    text-align: center;
    margin-right: 15px;
    color: var(--gray3);
    background: var(--lblue2);
}

.bg1 {
    background: var(--syellow2) !important;
}

.bg2 {
    background: var(--blue) !important;
}

.bg3 {
    background: var(--sred2) !important;
}

.bg4 {
    background: var(--Whats1) !important;
}

.bg5 {
    background: var(--secondary) !important;
}


.widget .widget-heading .w-title .w-icon i {
    font-size: 24px;
    color: var(--white);
}

.widget .widget-heading .w-value {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 0;
    align-self: center;
    color: var(--gray3);
}

.widget .widget-heading h5 {
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray8);
    text-transform: uppercase;
    letter-spacing: 1px;
}


.opacity5 {
    opacity: 0.5;
}

.linkactivate {
    position: relative;
    top: 15px;
    left: 15px;
    margin-right: 15px;
    cursor: pointer;
    background: var(--lblue2);
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    padding: 7px 12px;
    color: var(--white);
    text-transform: uppercase;
    opacity: 1 !important;
}

.linkactivate:hover,
.linkactivate:focus {
    color: var(--white);
}

.color-a-red {
    color: #721c24 !important;
}

.color-a-blue {
    color: #004085 !important;
}

.color-a-yellow {
    color: #856404 !important;
}

.color-a-green {
    color: #155724 !important;
}



.collun-one .logo {
    width: 150px;
    height: 150px;
    -webkit-border-radius: 150px;
    -moz-border-radius: 150px;
    border-radius: 150px;
    overflow: hidden;
    border: 5px solid var(--blackrgba1);
    display: block;
    text-align: left !important;
    margin: 15px 15px;
    background-color:var(--white);
}

.collun-one .logo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}


label input[type=radio] {
    transform: scale(1.8);
    /*margin-right:1px;*/
    accent-color:var(--dblue2);
}

.btn-help {
    font-size: 24px;
    line-height: 48px;
    width: 48px;
    height: 48px;
    padding: 10px;
    margin-left: 5px;
    text-align: center !important;
    text-transform: uppercase;
    color: var(--lblue2);
    border: 0px solid var(--dblue2);
    background-color: var(--dblue2);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
}
.btn-help span{
    position:relative;
    top:-3px;
    font-size:16px;
    font-weight: bold;
}


.btn-help-sm{
    font-size: 20px;
    line-height: 36px;
    width: 36px;
    height: 36px;
    padding: 8px;
}

.btn-help-sm i{
    position:relative;
}

.btn-edit {
    background: var(--sysblue);
    color: var(--white);
}

.btn-dell {
    background: var(--sred2);
    color: var(--white);
}

.btn-edit:hover,
.btn-edit:focus,
.btn-dell:hover,
.btn-dell:focus{
    color: var(--white);
}





.label--checkbox {
    position: relative;
    margin: 0;
    cursor: pointer;
    background: var(--white);
    font-weight: bold;
    display: block;
}

.label--checkbox strong {
    position: absolute;
    top:0px;
    left: 36px;
    display: inline-block;
    padding-left:0px;
    font-size: 15px;
    font-weight: bold;
    line-height: 1.2;
}

.checkbox {
    position: relative;
    top: -0.375rem;
    margin: 0 1rem 0 0;
    cursor: pointer;
}

.checkbox:before {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    content: "";
    position: absolute;
    left: 0;
    z-index: 1;
    width: 28px;
    height: 28px;
    border: 2px solid var(--gray5);
}

.checkbox:checked:before {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    height: 1rem;
    border-color:var(--lblue2);
    border-top-style: none;
    border-right-style: none;
}

.checkbox:after {
    content: "";
    position: absolute;
    top: -0.125rem;
    left: 0;
    width: 1.1rem;
    height: 1.1rem;
    background:var(--white);
    cursor: pointer;
}
table tr,
#tabela table tr {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}


#tabela table td {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    vertical-align: middle !important;
    text-align: left;
}





.product-block-one .inner-box{
    position: relative;
    display: block;
}

.product-block-one .inner-box .image-box{
    position: relative;
    display: block;
    overflow: hidden;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    -webkit-box-shadow: 0px 3px 20px 0px  var(--blackrgba1);
    -moz-box-shadow: 0px 3px 20px 0px  var(--blackrgba1);
    box-shadow: 0px 3px 20px 0px  var(--blackrgba1);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.product-block-one .inner-box:focus .image-box,
.product-block-one .inner-box:hover .image-box {
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    transform: translateY(-5px);

    -webkit-box-shadow: 0px 10px 30px -5px var(--blackrgba3);
    -moz-box-shadow: 0px 10px 30px -5px var(--blackrgba3);
    box-shadow: 0px 10px 30px -5px var(--blackrgba3);
}



.product-block-one .inner-box .image-box img{
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
    width: 100%;
}

.product-block-one .inner-box:hover .image-box img{
    -moz-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -o-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}





.product-block-one .inner-box:hover .inner,
.product-block-one .inner-box:focus .inner{
    background:var(--lblue2);
    -webkit-box-shadow: 0px 10px 50px 0px var(--blackrgba3);
    -moz-box-shadow: 0px 10px 50px 0px var(--blackrgba3);
    box-shadow: 0px 10px 50px 0px var(--blackrgba3);
}




.product-block-one .inner-box .lower-content{
    position: relative;
    top:-15px;
    margin: 0px 0px;
    padding:15px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    -webkit-backdrop-filter: saturate(150%) blur(5x);
    backdrop-filter: saturate(150%) blur(5px);
    background-color: var(--whitergba7)!important;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    -webkit-box-shadow: 0px 3px 20px 0px  var(--blackrgba1);
    -moz-box-shadow: 0px 3px 20px 0px  var(--blackrgba1);
    box-shadow: 0px 3px 20px 0px  var(--blackrgba1);
}

.product-block-one .inner-box:focus .lower-content,
.product-block-one .inner-box:hover .lower-content {
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    transform: translateY(-10px);

    -webkit-box-shadow: 0px 10px 30px -5px var(--blackrgba3);
    -moz-box-shadow: 0px 10px 30px -5px var(--blackrgba3);
    box-shadow: 0px 10px 30px -5px var(--blackrgba3);
}


.product-block-one .inner-box .lower-content .inner{
    position: relative;
    /*background:var(--lblue2);*/
    padding:20px 25px 20px 25px;
    margin-top: -25px;
    z-index: 1;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
    -webkit-box-shadow: 0px 5px 20px 0px  var(--blackrgba1);
    -moz-box-shadow: 0px 5px 20px 0px  var(--blackrgba1);
    box-shadow: 0px 5px 20px 0px  var(--blackrgba1);

    -webkit-backdrop-filter: saturate(150%) blur(5x);
    backdrop-filter: saturate(150%) blur(5px);
    background-color: var(--whitergba8)!important
}


.product-block-one .inner-box:hover .inner,
.product-block-one .inner-box:focus .inner{
    background:var(--lblue2);
    -webkit-box-shadow: 0px 10px 50px 0px var(--blackrgba3);
    -moz-box-shadow: 0px 10px 50px 0px var(--blackrgba3);
    box-shadow: 0px 10px 50px 0px var(--blackrgba3);
}



.product-block-one .lower-content .name{
    font-size: 15px;
    line-height: 1.1;
    color: var(--black);
    font-weight: 600;
    margin:5px 0 5px;

}

.product-block-one .lower-content .name a{
    color:var(--orange2);
}

.product-block-one:hover .lower-content .name a{
    color: var(--lblue2);
}



.product-block-one .lower-content ul {
    border-top: 0px solid var(--blackrgba2);
    margin-top:10px;
    margin-bottom:10px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    padding: 0px 0px 0px 0px;
}

.product-block-one .lower-content li svg {
    position: relative;
    top:0px;
    width:18px;
    height:18px;
    vertical-align: text-top;
    stroke-width: 0;
    fill: var(--orange2) !important;
    transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.product-block-one .lower-content li {
    float: left;
    font-size: 14px;
    list-style: outside none none;
    padding: 7px 0px 7px 0px;
    margin-bottom: 0px;
    width: 100%;
    font-weight: normal;
    border-top: 1px solid var(--blackrgba1);
}
.product-block-one .lower-content  li:first-child,
.product-block-one .lower-content  li:last-child {
    border-bottom: 0px solid var(--blackrgba2);
}



.product-block-one .inner-box .detail {
    position: absolute;
    top:0px;
    opacity:0;
    left: 15px;
    width: 150px;
    height:36px;
    display: flex;
    font-size:12px;
    justify-content: center;
    align-items: center;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    text-align:center;
    z-index:10;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius:3px;
    background:var(--lblue1);
    color:var(--white);
}

.product-block-one .inner-box .detail span{
    position:relative;
    top:0px;
    padding-left:7px;
    color:var(--white);
}


.product-block-one .inner-box:focus .detail,
.product-block-one .inner-box:hover .detail {
    opacity: 1;
    top: 20px;
}

.detail:focus,
.detail:hover {
    background:var(--lblue1) !important;
}

.product-block-one .inner-box .detail svg {
    position: relative;
    top: 0px;
    width:16px;
    height:16px;
    vertical-align: text-top;
    stroke-width:0;
    fill:var(--white) !important;
    transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}


.read-whatsapp {
    font-family: var(--theme-font);
    font-size: 12px;
    line-height: 1.0;
    font-weight: bold;
    padding: 9px 5px 8px 5px;
    text-align: center !important;
    text-transform: uppercase;
    color: var(--whatstx);
    border: 2px solid var(--whatstx);
    background-color: var(--whatsbg);
    box-sizing: border-box;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    width:100%;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    width:100%;
    display:block;
}
.read-whatsapp svg{
    position: relative;
    top:-3px;
    width: 22px;
    right: 3px;
    height: 22px;
    vertical-align: text-top;
    stroke-width: 0;
    fill: var(--whatstx) !important;
    transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.read-whatsapp strong {
    position: relative;
    top: -3px;
    font-size: 10px;

}
.read-whatsapp span{
    position: relative;
    top:3px;
}

.read-whatsapp:hover svg,
.read-whatsapp:focus svg{
    fill: var(--whatsbg) !important;
}


.read-whatsapp:hover,
.read-whatsapp:focus {
    background-color: var(--whatstx);
    border-color: var(--whatstx);
    color: var(--whatsbg);
    -webkit-box-shadow: 0px 5px 15px 0px var(--Whatsrgba2);
    -moz-box-shadow: 0px 5px 15px 0px var(--Whatsrgba2);
    box-shadow: 0px 5px 15px 0px var(--Whatsrgba2);
}


.color-sblue {
    color: var(--sblue2) !important;
}
.bg-color-dblue2{
    background: var(--dbluergba9);
}
.bg-color-dblue1{
    background: var(--dbluergba6);
}

.dateInfowork{
    padding:30px 15px 25px 15px;
}

.dateInfowork .itemInfowork {
    display: flex;
    align-items: center;
    gap: 12px;
}



.dateInfowork .circle {
    width: 50px;
    height: 50px;
    line-height: 50px;
    color:var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    font-size: 24px;
    flex-shrink: 0;
}

.dateInfowork .name {
    margin: 0;
    color: var(--gray3);
}
.dateInfowork .name h3 {
    margin: 0;
    color: var(--gray3);
}

.dateInfowork .name p {
    margin: 0;
    color: var(--gray3);
}
.titleWork {
    background: var(--dblue2);
    padding: 10px;
}

.f36{
    font-size: 36px;
}


.like-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.like-btn{
    padding:7px 15px;
    border-radius: 5px;
    background: var(--cccccc);
    cursor: pointer;
    -webkit-transition: all 0.3s ease 0.3s;
    -moz-transition: all 0.3s ease 0.3s;
    -o-transition: all 0.3s ease 0.3s;
    -ms-transition: all 0.3s ease 0.3s;
    transition: all 0.3s ease 0.3s;
}

.like-btn:focus,
.like-btn:hover{
    background: var(--f4f4f4);
}


.message-like {
    margin-top: 6px;
    font-size: 14px;
    color:var(--lblue2);
    display: none;
}