

.btn-box-shadow {
    -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0.3s cubic-bezier(0.2, 0, 0.3, 1);
    transition: all 0.3s cubic-bezier(0.2, 0, 0.3, 1);
}

.btn-box-shadow:hover {
    -webkit-box-shadow: 0 8px 30px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 8px 30px 0 rgba(0, 0, 0, 0.15);
    -webkit-transform: translate3d(0, -2px, 0);
    transform: translate3d(0, -2px, 0);
}

.box-shadow-extra-large, .box-shadow-extra-large-hover:hover {
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
    -webkit-transition: all 350ms cubic-bezier(0.37, 0, 0.63, 1);
    transition: all 350ms cubic-bezier(0.37, 0, 0.63, 1);
}

.box-shadow-hover:hover,
.box-shadow-large-hover:hover,
.box-shadow-extra-large-hover:hover,
.box-shadow-medium-hover:hover,
.box-shadow-small-hover:hover,
.box-shadow-double-large-hover:hover,
.box-shadow-quadruple-large-hover:hover {
    -webkit-transform: translate3d(0, -3px, 0);
    transform: translate3d(0, -3px, 0);
}


.btn {
    display: inline-block;
    border: 2px solid transparent;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: auto;
    font-weight: 500;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.btn:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.btn:hover {
    background-color: inherit;
}

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

.btn.btn-extra-large {
    font-size: 16px;
    padding: 24px 46px;
}

.btn.btn-large {
    font-size: 16px;
    padding: 18px 34px;
}

.btn.btn-medium {
    font-size: 13px;
    padding: 16px 30px;
}

.btn.btn-small {
    font-size: 12px;
    padding: 13px 26px;
}

.btn.btn-very-small {
    font-size: 11px;
    padding: 10px 20px;
}

.btn.btn-rounded.btn-extra-large {
    padding: 18px 46px;
}

.btn.btn-rounded.btn-large {
    padding: 14px 36px;
}

.btn.btn-rounded.btn-medium {
    padding: 12px 32px;
}

.btn.btn-rounded.btn-small {
    padding: 10px 26px;
}

.btn.btn-rounded.btn-very-small {
    padding: 8px 20px;
}

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


.button-gradient-color {
    font-weight: bold;
    color: var(--white) !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;
    position: relative;
    background-size: 250% auto;
    background-image: linear-gradient(to right, var(--lblue1) 0%, var(--lblue3) 50%, var(--lblue1) 100%);
}

.button-gradient-color:hover,
.button-gradient-color:focus {
    background-position: right center;

}

.button-gradient-color svg {
    fill: var(--lblue2);
}


.button-gradient-whatsapp {
    font-weight: bold;
    color: var(--white) !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;
    position: relative;
    background-size: 200% auto;
    background-image: linear-gradient(to right, var(--Whats1) 0%, var(--Whats2) 50%, var(--Whats1) 100%);
}

.button-gradient-whatsapp:hover,
.button-gradient-whatsapp:focus {
    background-position: right center;

}

.button-gradient-whatsapp svg {
    fill: var(--Whats1);
}


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


.btn.btn-radius {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.btn.btn-radius:hover {
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

.btn.btn-base-color {
    background-color: var(--lblue2);
    color: var(--white);
}

.btn.btn-base-color:hover, .btn.btn-base-color:active {
    background-color: transparent;
    border-color: var(--lblue2);
    color: var(--lblue2);
}

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

.btn.btn-black:hover, .btn.btn-black:active {
    background-color: transparent;
    border-color: var(--black);
    color: var(--black);
}

.btn.btn-double-border.btn-extra-large {
    padding: 0;
}

.btn.btn-double-border.btn-extra-large > span {
    padding: 24px 50px;
}

.btn.btn-double-border.btn-large {
    padding: 0;
}

.btn.btn-double-border.btn-large > span {
    padding: 18px 42px;
}

.btn.btn-double-border.btn-medium {
    padding: 0;
}

.btn.btn-double-border.btn-medium > span {
    padding: 16px 34px;
}

.btn.btn-double-border.btn-small {
    padding: 0;
}

.btn.btn-double-border.btn-small > span {
    padding: 13px 32px;
}

.btn.btn-double-border.btn-very-small {
    padding: 0;
}

.btn.btn-double-border.btn-very-small > span {
    padding: 10px 22px;
}

.btn.btn-double-border > span {
    display: inline-flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.btn.base-color-hover:hover, .btn.base-color-hover:active {
    background-color: var(--lblue2);
    color: var(--white);
}

.btn.white-hover:hover, .btn.white-hover:active {
    background-color: var(--white);
    color: var(--dark-gray);
}

.btn.black-hover:hover, .btn.black-hover:active {
    background-color: var(--dark-gray);
    color: var(--white);
}

.btn.btn-box-shadow.btn-white:hover, .btn.btn-box-shadow.btn-white:active {
    background: var(--white);
    color: var(--dark-gray);
}

.btn.btn-box-shadow.btn-black:hover, .btn.btn-box-shadow.btn-black:active {
    background: var(--black);
    color: var(--white);
}

.btn.btn-box-shadow.btn-dark-gray:hover, .btn.btn-box-shadow.btn-dark-gray:active {
    background: var(--dark-gray);
    color: var(--white);
}

.btn.btn-box-shadow.btn-base-color:hover, .btn.btn-box-shadow.btn-base-color:active {
    background: var(--lblue2);
    color: var(--white);
}


.btn.with-rounded {
    position: relative;
}

.btn.with-rounded > span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    position: absolute;
    border-radius: 100%;
    right: 8px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.35);
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.35);
}

.btn.with-rounded > span i {
    margin: 0;
}

.btn.with-rounded.btn-extra-large {
    padding-right: 70px;
}

.btn.with-rounded.btn-large {
    padding-right: 55px;
}

.btn.with-rounded.btn-large > span {
    width: 38px;
    height: 38px;
    right: 8px;
}

.btn.with-rounded.btn-medium {
    padding-right: 50px;
}

.btn.with-rounded.btn-medium > span {
    width: 32px;
    height: 32px;
    right: 8px;
}

.btn.with-rounded.btn-small {
    padding-right: 45px;
}

.btn.with-rounded.btn-small > span {
    width: 28px;
    height: 28px;
    right: 6px;
}

.btn.with-rounded.btn-very-small {
    padding-right: 37px;
}

.btn.with-rounded.btn-very-small > span {
    width: 26px;
    height: 26px;
    right: 5px;
}


.btn-dual .btn {
    margin-left: 10px;
    margin-right: 10px;
}

.btn-dual .btn.btn-link, .btn-dual .btn.btn-underline, .btn-dual .btn.btn-zoom, .btn-dual .btn.btn-link-gradient {
    margin-left: 30px;
    margin-right: 30px;
}


/*
.btn-gradient-flamingo-amethyst-green {
    background-image: linear-gradient(to right, var(--lblue3), var(--lblue2), var(--lblue1), var(--dblue3), var(--dblue2), var(--dblue1));
    background-size: 300% auto;
    color: var(--white);
}
*/


.text-gradient-lblue-dblue {
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-lblue-dblue {
    background-image: linear-gradient(to right, var(--lblue3), var(--lblue2), var(--lblue1), var(--dblue3), var(--dblue2));
}

.text-shadow-large {
    text-shadow: 0 0 50px rgba(0, 0, 0, 0.9);
}

.text-shadow-extra-large {
    text-shadow: 0 0 60px rgba(0, 0, 0, 0.9);
}

.text-shadow-double-large {
    text-shadow: 0 0 100px rgba(0, 0, 0, 0.9);
}


.btn-theme-page {
    font-family: var(--theme-font);
    font-size: 16px;
    line-height: 1.4;
    font-weight: bold;
    padding: 12px 30px;
    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: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
}


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


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

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

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

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

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

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

.btn-theme-page.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 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-theme-page:focus svg,
.btn-theme-page: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(--white);
    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(--white)
}


.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)
}


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

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


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

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

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

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

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

.color-green {
    color: var(--sblue2) !important;
}

.bg-color-green {
    background: var(--dgreen2) !important;
}

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

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

.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%;
}

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

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


.cta-exit {
    background: var(--lblue2);
    padding: 10px 15px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
}

.cta-exit h3,
.cta-exit p {
    color: var(--white);
    line-height: 1.1;
    margin: 0px;
    padding: 0px;
}

.cta-exit-content p {
    font-weight: bold;
}


.cta-modal-whatsapp {
    background: var(--Whats1);
    padding: 15px 25px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    display: flex;
    align-items: center;
}

.cta-modal-whatsapp h3 {
    color: var(--white);
    line-height: 1.1;
    margin: 0px;
    padding: 0px;
    position: relative;
    top: 3px;
}

.cta-modal-whatsapp svg {
    position: relative;
    top: 0px;
    width: 36px;
    height: 36px;
    margin-right: 10px;
    vertical-align: text-top;
    stroke-width: 0;
    fill: var(--white);
    transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}


.ctaOne {
    position: relative;
    background: var(--f1f1f1);
}


.ctaOne:before {
    content: "";
    position: absolute;
    bottom: 0px;
    right: -75%;
    width: 100%;
    /*height: 100%;*/
    height: calc(100% + 45px);

    -moz-transform: skew(-20deg, 0deg);
    -webkit-transform: skew(-20deg, 0deg);
    -o-transform: skew(-20deg, 0deg);
    -ms-transform: skew(-20deg, 0deg);
    transform: skew(-20deg, 0deg);
    background: var(--lblue3);
    background-repeat: no-repeat;
    background-position: top left;
    transition: all 0.4s cubic-bezier(.7, 1, .7, 1);
    z-index: 2;

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

@media only screen and (max-width: 767px) {
    .ctaOne:before {
        right: -95%;
    }
}


.contentCta {
    position: relative;
    z-index: 3;
}


.ctaOne h1 {
    font-weight: bold;
    font-size: 38px;
    line-height: 1.1;
    display: block;
    margin-bottom: 15px;
    color: var(--dblue2);
}

.ctaOne h2 {
    font-weight: bold;
    font-size: 24px;
    line-height: 1.1;
    display: block;
    margin-bottom: 15px;
    color: var(--dblue2);
}

.imgbanner {
    width: 100%;
}

.ctaOne h3 {
    font-weight: bold;
    font-size: 24px;
    line-height: 1.1;
    display: block;
    margin-bottom: 15px;
}

.ctaOne h3 img {
    width: 125px;
    margin-right: 15px;
}

@media only screen and (max-width: 1200px) {
    .ctaOne {
        margin-top: 0px;

    }
}

@media only screen and (max-width: 767px) {
    .imgbanner {
        width: 100%;
        padding-right: 40px;
    }
}

.overflow {
    overflow: hidden !important;
}


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

.news-block .image-box {
    position: relative;
    display: block;
    background: var(--dblue3);
    -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;
    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: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
}

.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: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
}

.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: 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);
}

.news-block .image-box .category {
    position: absolute;
    bottom: 30px;
    right: 15px;


    display: inline-block;
    vertical-align: top;
    font-size: 16px;
    text-transform: uppercase;
    line-height: 24px;
    padding: 5px 15px;
    color: var(--white);
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    background: var(--dbluergba7);
    z-index: 20
}

.news-block .image-box .category svg {
    position: relative;
    top: 0px;
    width: 20px;
    height: 20px;
    vertical-align: text-top;
    stroke-width: 0;
    fill: var(--white);
    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: 20px;
    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: 3px;
    -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: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
}


.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;
}


h1 {
    position: relative;
    padding: 0;
    margin: 0;
    font-weight: bold;
    font-size: 36px;
    color: var(--lblue2);
    -webkit-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

.one h1 {
    text-align: center;
    text-transform: uppercase;
    padding-bottom: 0px;
}

.one h1:before {
    width: 28px;
    height: 9px;
    display: block;
    content: "";
    position: absolute;
    bottom: -3px;
    left: 50%;
    margin-left: -14px;
    background-color: var(--dblue2);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.one h1:after {
    width: 100px;
    height: 3px;
    display: block;
    content: "";
    position: relative;
    margin-top: 10px;
    left: 50%;
    margin-left: -50px;
    background-color: var(--dblue2);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.one p {
    font-weight: bold;
}


.counter-items {
    border: 0px solid var(--lbluergba5); /* Adicione estilos de borda conforme necessário */
    padding: 20px; /* Adicione preenchimento conforme necessário */
    width: 100%;
    display: block;
    background: var(--f1f1f1);
    text-align: center;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;

    -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-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;
}

.counter-items:focus,
.counter-items:hover {
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    transform: translateY(-5px);
    background: var(--white);
    -webkit-box-shadow: 0px 5px 55px 10px var(--blackrgba1);
    -moz-box-shadow: 0px 5px 55px 10px var(--blackrgba1);
    box-shadow: 0px 5px 55px 10px var(--blackrgba1);

}


.icon-column {
    width: 80px;
    line-height: 90px;
    height: 80px;
    background-color: var(--lblue2);
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    font-size: 38px;
    display: block;
    margin: auto;
}

.icon-column svg {
    position: relative;
    top: 0px;
    width: 45px;
    height: 45px;
    vertical-align: text-top;
    stroke-width: 0;
    fill: var(--white);
    transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);

}


.text-column {
    margin: 15px auto;
    display: block;

}

.text-column h2 {
    font-weight: bold;
    font-size: 30px;

}

.text-column p {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 0px;

}

.title, .description {
    margin: 0;
}


.link-read-more {
    position: relative;
    color: var(--lblue2);
    font-size: 16px;
    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;
}


.link-read-more:before {
    position: absolute;
    content: "";
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--dblue3);
    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;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
}


.link-read-more:hover:before {
    width: 100%;
    bottom: -5px;
    opacity: 1;
    background: var(--f4f4f4);
}


.link-read-more 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);
}

.link-read-more:hover {
    color: var(--f4f4f4) !important;
}

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


.box-shadow-one {
    -webkit-box-shadow: 0px 10px 36px 10px var(--dbluergba3);
    -moz-box-shadow: 0px 10px 36px 10px var(--dbluergba3);
    box-shadow: 0px 10px 36px 10px var(--dbluergba3);


}

@media (min-width: 992px) {
    .text-lg-start {
        text-align: left !important;
    }

    .md-mb-20 {
        margin-bottom: 20px !important;
    }


}


.services-text-home {
    padding: 25px 25px !important;
    position: relative;
    z-index: 9;
}

.services-arrows-home {
    /*padding:25px 25px;*/
}

.outside-box-right-25 {
    margin-left: -25vw;
}

@media (max-width: 767px) {
    .sm-outside-box-right-0 {
        margin-left: 0;
    }
}


.circle-services-hide {
    position: relative;
    z-index: 1;
}

.circle-services-hide:after {
    content: '';
    display: block;
    width: 900px;
    height: 900px;
    position: absolute;
    z-index: 5;
    left: -200px;
    bottom: -450px;
    background-color: var(--blackrgba3);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-animation: growing 2.5s alternate infinite ease-in;
    -moz-animation: growing 2.5s alternate infinite ease-in;
    animation: growing 2.5s alternate infinite ease-in;
    z-index: 0;
}

.circle-services-hide:before {
    content: '';
    display: block;
    width: 1400px;
    height: 1400px;
    position: absolute;
    z-index: 4;
    left: -450px;
    bottom: -700px;
    background-color: transparent;
    border: 30px solid var(--blackrgba3);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-animation: decreasing 2.5s alternate infinite ease-in;
    -moz-animation: decreasing 2.5s alternate infinite ease-in;
    animation: decreasing 2.5s alternate infinite ease-in;
    z-index: 0;
}

@keyframes growing {
    0% {
        transform: scale(1)
    }

    100% {
        transform: scale(1.1)
    }
}

@keyframes decreasing {
    0% {
        transform: scale(1.1)
    }

    100% {
        transform: scale(1)
    }
}


/* Swiper navigation style 04 */
.slider-navigation-style-04 {
    height: 56px;
    width: 56px;
    border-radius: 100%;
    position: relative;
    bottom: inherit;
    left: 0;
    top: inherit;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    text-align: center !important;
    justify-content: center !important;
}

.slider-navigation-style-04 img {
    width: 36px;
    margin: auto !important;
    text-align: center !important;
}

.slider-navigation-style-04 img {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider-navigation-style-04:hover img {
    opacity: 0.5;
}

.slider-navigation-style-04.swiper-button-prev {
    margin-right: 5px;
}

.slider-navigation-style-04.swiper-button-next {
    margin-left: 5px;
}

.slider-navigation-style-04.swiper-button-prev img {
    margin-left: 10px !important;
}

.slider-navigation-style-04.swiper-button-next img {
    margin-right: 10px !important;
}


.item-service-padding {
    padding: 25px
}


.interactive-banner-style-09 img {
    -webkit-transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.interactive-banner-style-09 .image-content {
    position: absolute;
    top: 0;
}

.interactive-banner-style-09 .image-content .content-title {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    position: relative;
    opacity: 0.8;
    visibility: visible;
    will-change: transform;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: 0.4s cubic-bezier(0.12, 0, 0.39, 0);
    transition: 0.4s cubic-bezier(0.12, 0, 0.39, 0);
    font-size: 15px;
    line-height: 1.1;
    font-weight: bold;
}

.interactive-banner-style-09 .image-content .content-title-hover {
    position: absolute;
    width: auto;
    left: 0;
    bottom: 0;
    visibility: hidden;
    will-change: transform;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: 0.4s cubic-bezier(0.12, 0, 0.39, 0);
    transition: 0.4s cubic-bezier(0.12, 0, 0.39, 0);
}

.interactive-banner-style-09 .image-content .content-arrow {
    will-change: transform;
    position: absolute;
    right: 0;
    opacity: 0;
    top: 50%;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: all 0.3s cubic-bezier(0.12, 0, 0.39, 0);
    transition: all 0.3s cubic-bezier(0.12, 0, 0.39, 0);
    display: flex;
    align-items: center;
    justify-content: center;
}

.interactive-banner-style-09 .image-content .content-arrow svg {
    position: relative;
    top: 0px;
    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);
}

.interactive-banner-style-09 .image-content .label {
    -webkit-transition: 0.3s cubic-bezier(0.12, 0, 0.39, 0);
    transition: 0.3s cubic-bezier(0.12, 0, 0.39, 0);
}

.interactive-banner-style-09 .image-content .hover-label-icon {
    width: 90px;
    height: 90px;
    padding: 15px;
    background: var(--lblue2);
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    opacity: 1;
    position: absolute;
    top: 20px;
    left: 0;
    text-align: center;
    -webkit-transition: 0.3s cubic-bezier(0.12, 0, 0.39, 0);
    transition: 0.3s cubic-bezier(0.12, 0, 0.39, 0);
}


.interactive-banner-style-09 .image-content .hover-label-icon svg {
    position: relative;
    width: 50px;
    height: 50px;
    vertical-align: text-top;
    stroke-width: 0;
    fill: var(--white);

}


/*
.interactive-banner-style-09 .image-content .hover-label-icon i {
opacity: 0;
position: absolute;
top: 20px;
left: 0;
-webkit-transition: 0.3s cubic-bezier(0.12, 0, 0.39, 0);
transition: 0.3s cubic-bezier(0.12, 0, 0.39, 0);
}*/
.interactive-banner-style-09 .image-content:hover .content-arrow {
    opacity: 1;
    -webkit-transform: translateY(-42%);
    transform: translateY(-42%);
}

.interactive-banner-style-09 .image-content:hover .content-title {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
}

.interactive-banner-style-09 .image-content:hover .content-title-hover {
    visibility: visible;
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
}

.interactive-banner-style-09 .image-content:hover .box-overlay {
    opacity: 1;
    visibility: visible;
}

.interactive-banner-style-09 .image-content:hover .hover-label-icon .label {
    opacity: 0;
    margin-top: -20px;
}

.interactive-banner-style-09 .image-content:hover .hover-label-icon {
    opacity: 1;
    top: 0;
}

.interactive-banner-style-09:hover img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

.opacity-full-dark,
.opacity-full,
.opacity-medium,
.opacity-extra-medium,
.opacity-light,
.opacity-very-light {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}

.opacity-very-light {
    opacity: 0.2;
}

.opacity-light {
    opacity: 0.3;
}

.opacity-extra-medium {
    opacity: 0.5;
}

.opacity-medium {
    opacity: 0.75;
}

.opacity-full {
    opacity: 0.8;
}

.opacity-full-dark {
    opacity: 0.9;
}


.bg-gradient-very-light-gray-transparent {
    background: -webkit-linear-gradient(right, rgba(240, 244, 253, 1.0), rgba(255, 255, 255, 0.0));
    background: linear-gradient(to right, rgba(240, 244, 253, 1.0), rgba(255, 255, 255, 0.0));
}

.bg-gradient-blue-whale-transparent {
    background: -webkit-linear-gradient(right, rgba(17, 27, 50, 1.0), rgba(255, 255, 255, 0.0));
    background: linear-gradient(to right, rgba(17, 27, 50, 1.0), rgba(255, 255, 255, 0.0));
}

.bg-gradient-quartz-light-transparent {
    background: -webkit-linear-gradient(right, rgba(227, 225, 245, 1.0), rgba(255, 255, 255, 0.0));
    background: linear-gradient(to right, rgba(227, 225, 245, 1.0), rgba(255, 255, 255, 0.0));
}

.bg-gradient-quartz-white {
    background-image: linear-gradient(to bottom, #f7f7ff, #f4f4fb, #f8f7fc, #fbfbfe, #ffffff);
}

.bg-gradient-base-color-transparent {
    background-image: -webkit-gradient(linear, left bottom, left top, from(rgb(60 47 192)), to(transparent));
    background-image: linear-gradient(to top, rgba(60, 47, 192, .8) 0%, transparent 100%);
}

.bg-gradient-regal-blue-transparent {
    background: linear-gradient(to bottom, var(--lbluergba0) 30%, var(--lbluergba7) 100%);


}

.bg-gradient-flamingo-amethyst-green {
    background-image: linear-gradient(to right, #f7693c, #c74e45, #7d3785, #582d9f, #3928af);
}

.bg-gradient-base-transparent {
    background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(22, 32, 44, 1)), to(transparent));
    background-image: linear-gradient(to top, rgba(22, 32, 44, .9) 8%, transparent 80%);
}

.bg-gradient-dark-transparent {
    background: -webkit-gradient(linear, left bottom, left top, color-stop(7%, #162340), to(transparent));
    background: linear-gradient(to top, #162340 7%, transparent 70%);
}

.bg-regal-blue {
    background-color: #162340;
}

.bg-blue-whale {
    background-color: #16233F;
}


.pageTitle {
    margin-top:135px;
    padding: 90px 0 75px;
    position: relative;
    background-size: cover;
    top: 0px;
    z-index: 0;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
}

@media only screen and (max-width: 991px) {
    .pageTitle {
        margin-top: 0px;
        padding:50px 0 45px;
    }


}


.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(--lbluergba6), var(--lbluergba9), var(--lbluergba6));
    background-size: 200% 200%;
    -webkit-animation: bg-gradient-animator-title 10s ease infinite;
    -moz-animation: bg-gradient-animator-title 10s ease infinite;
    -o-animation: bg-gradient-animator-title 10s ease infinite;
    animation: bg-gradient-animator-title 10s ease infinite;
}


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

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

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

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


#cd-google-map {
    position: relative;
    width: 100%;
    height: 500px;
    background: var(--white);
}

#google-container {
    position: relative;
    width: 100%;
    height: 500px !important;
    background: var(--white);
}


#cd-google-map address {
    position: absolute;
    z-index: 30;
    width: auto;
    max-width: calc(100% - 60px);
    bottom: 95px;
    left: 50%;
    transform: translateX(-50%);
    padding: 15px 25px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background-color: var(--whitergba8);
    text-align: center;
    -webkit-box-shadow: 0px 7px 35px 0px var(--blackrgba5);
    -moz-box-shadow: 0px 7px 35px 0px var(--blackrgba5);
    box-shadow: 0px 7px 35px 0px var(--blackrgba5);
    font-weight: bold;


    -webkit-backdrop-filter: saturate(150%) blur(5x);
    backdrop-filter: saturate(150%) blur(5px);
}

#cd-google-map address p {
    font-weight: 600;
}


#cd-google-map .linksmaps {
    position: absolute;
    z-index: 30;
    width: auto;
    max-width: calc(100% - 60px);
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 25px 10px 25px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    background-color: var(--whitergba8);
    text-align: center;
    -webkit-box-shadow: 0px 7px 35px 0px var(--blackrgba5);
    -moz-box-shadow: 0px 7px 35px 0px var(--blackrgba5);
    box-shadow: 0px 7px 35px 0px var(--blackrgba5);
    -webkit-backdrop-filter: saturate(150%) blur(5x);
    backdrop-filter: saturate(150%) blur(5px);
}

#cd-google-map .linksmaps ul {
    margin: 0 !important;
    padding: 0 !important;
}


#cd-google-map .linksmaps ul svg {
    position: relative;
    top: 5px;
    width: 28px;
    height: 28px;
    vertical-align: text-top;
    stroke-width: 1.5;
    fill: var(--white) !important;

}




.adress-item {
    padding: 0px 0px 20px 0px;
    width: 100%;
    display: block;
    position: relative;
    background: var(--f4f4f4);
    -webkit-box-shadow: 0px 10px 30px -5px var(--blackrgba1);
    -moz-box-shadow: 0px 10px 30px -5px var(--blackrgba1);
    box-shadow: 0px 10px 30px -5px 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;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    text-align: center;
}


.adress-item:hover,
.adress-item:focus {
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    transform: translateY(-10px);
    background: var(--white);
    -webkit-box-shadow: 0px 10px 36px -5px var(--blackrgba3);
    -moz-box-shadow: 0px 10px 36px -5px var(--blackrgba3);
    box-shadow: 0px 10px 36px -5px var(--blackrgba3);
}

.adress-item .icon {
    margin: -75px auto 0px !important;
    position: relative;
    z-index: 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;
    background: var(--f4f4f4);
    -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);
    width: 100px;
    height: 100px;
    -moz-border-radius: 60px;
    -webkit-border-radius: 60px;
    border-radius: 60px;
    margin: -20px auto 0px;
    -webkit-backdrop-filter: saturate(150%) blur(5x);
    backdrop-filter: saturate(150%) blur(5px);
    background-color: var(--whitergba6)

}

.adress-item .icon svg {
    position: relative;
    top: 10px;
    width: 75px;
    height: 75px;
    vertical-align: text-top;
    stroke-width: 0;
    fill: var(--lblue2);
    transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.adress-item .social-icons li a {
    height: 50px;
    width: 50px;
    line-height: 50px;
}


.adress-item .social-icons li a svg {
    position: relative;
    top: 2px;
    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);
}



.service-one {
    position: relative;
    background-size: auto;
    background-position: top center;
    background-repeat: no-repeat;
    background-color: var(--dblue2);
    counter-reset: count;
    padding: 120px 0 60px 0;
}

.service-one:before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 400px;
    background-position: top center;
    background-repeat: no-repeat;
    background: url(../images/shape-06.svg);
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    z-index: 0;

}

@media (max-width: 767px) {
    .service-one {
        padding: 80px 0 40px 0;
    }
}

.service-one-padding {
    margin-top: -244px;
    padding-top: 303px;
}

@media (min-width: 991px) and (max-width: 1199px) {
    .service-one-padding {
        margin-top: -275px;
        padding-top: 330px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .service-one-padding {
        margin-top: -413px;
        padding-top: 440px;
    }
}

@media (max-width: 767px) {
    .service-one-padding {
        padding-top: 260px;
    }
}

.service-one .section-title__triangle-right {
    border-right-color: var(--white);
}

.service-one__text {
    position: relative;
    font-size: 18px;
    margin: 30px 0 0;
    font-weight: 500;
    text-transform: uppercase;
}

.service-one .nisoz-btn {
    margin-left: 26px;
    font-size: 12px;
    letter-spacing: 1.2px;
    padding: 7px 19.5px 8px;
}

@media (max-width: 767px) {
    .service-one .nisoz-btn {
        margin-top: 10px;
    }
}

.service-one__item {
    position: relative;
    /*background-color: var(--lblue2);*/
    box-shadow: 0px 10px 60px 0px var(--dbluergba3);
    counter-increment: count;
    margin-bottom: 30px;
    z-index: 2;
    -webkit-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    transition: all ease 0.3s;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;


    background: var(--lblue2);
    background: -webkit-linear-gradient(140deg, var(--lblue1) 25%, var(--lblue3) 100%);
    background: -moz-linear-gradient(140deg, var(--lblue1) 25%, var(--lblue3) 100%);
    background: -ms-linear-gradient(140deg, var(--lblue1) 25%, var(--lblue3) 100%);
    background: -o-linear-gradient(140deg, var(--lblue1) 25%, var(--lblue3) 100%);
    background: linear-gradient(140deg, var(--lblue1) 25%, var(--lblue3) 100%);
}

.service-one__item::after {
    transition: all 500ms ease;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: '';
    background: var(--lblue3);
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.service-one__item__wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    padding: 40px 40px 37px;
    transition: all 500ms ease;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .service-one__item__wrapper {
        padding: 40px 30px 37px;
    }
}

.service-one__item__hover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: .15;
    background-repeat: no-repeat;
    background-size: cover;
    mix-blend-mode: luminosity;
    background-position: center center;
    transition: all 500ms ease;
    transform: scale(1.3);
    z-index: 1;
    visibility: hidden;
}

.service-one__item:hover::after {
    visibility: visible;
    opacity: 1;
}

.service-one__item:hover .service-one__item__hover {
    visibility: visible;
    transform: scale(1);
}

.service-one__item:hover .service-one__item__number {
    background-color: var(--white);
    color: var(--dblue2);
}

.service-one__item:hover .service-one__item__title {
    color: var(--white);
}

.service-one__item:hover .service-one__item__text {
    color: var(--dblue2);
}

.service-one__item__number {
    position: relative;
    z-index: 3;
    display: block;
    float: right;
    transition: all 500ms ease;
    background-color: var(--dbluergba5);
    color: var(--white);
    font-weight: bold;
    font-size: 24px;
    text-transform: uppercase;
    padding: 0px 15px;
    margin-bottom: 30px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.service-one__item__number::after {
    content: counters(count, ".", decimal-leading-zero);
    position: relative;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    display: inline-block;
}

.service-one__item__icon {
    font-size: 80px;
    line-height: 1;
    position: relative;
    z-index: 3;
    color: var(--white);
    display: inline-block;
    margin: 0 0 15px;
    transition: 500ms ease;
}

.service-one__item__icon span {
    display: inline-block;
    transition: all 500ms linear;
    transition-delay: 0s;
    transition-delay: 0.1s;
    transform: scale(1);
}


.service-one__item__icon svg {
    position: relative;
    top: 0px;
    width: 120px;
    height: 120px;
    vertical-align: text-top;
    stroke-width: 1.5;
    fill: var(--ececec);
    transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-one__item:hover .service-one__item__icon svg {
    fill: var(--white);
}


.service-one__item:hover .service-one__item__icon span {
    transform: scale(0.9);
}


.service-one__item p {
    color: var(--f4f4f4);
    font-size: 16px;
}
.service-one__item__text {
    position: relative;
    z-index: 3;
    font-size: 16px;
    line-height: 1.1;
    font-weight: bold;
    transition: all 500ms ease;
    margin: 0;
    color: var(--dblue2);
}



.box-img-hover {
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    -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;
}

.box-img-hover: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);
}


.img-hover 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 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:hover img {
    filter: grayscale(0);
    -webkit-filter: grayscale(0);
    -webkit-transform: scale(1.5) rotate(0deg);
    -moz-transform: scale(1.5) rotate(0deg);
    -o-transform: scale(1.5) rotate(0deg);
    -ms-transform: scale(1.5) rotate(0deg);
    transform: scale(1.5) rotate(0deg);
}

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

.img-hover span:after {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: " ";
    position: absolute;
    border: 0px solid transparent;
    background: var(--lbluergba5);
    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 span i {
    left: calc(50% - 28px);
    top: calc(80% - 29px);
    font-size: 56px;
    position: absolute;
    z-index: 2 !important;
    color: var(--white);
    opacity: 0;
    height: 58px;
    width: 56px;
    line-height: 56px;
    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:hover span i {
    top: calc(50% - 29px);
    opacity: 1;
}


.img-hover span svg {
    position: absolute;
    left: calc(50% - 24px);
    top: calc(-25% - 24px);
    width: 48px;
    height: 48px;
    stroke-width:0;
    fill:var(--white) !important;
    -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;
    z-index: 2 !important;
    opacity: 0;
}


.img-hover:hover span svg {
    top: calc(50% - 24px);
    opacity: 1;
}








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

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

.pagination {
    display: inline-block;
    padding-left: 0;
    margin: 0px 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(--white);
    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(--white);
    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(--white);
    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(--white) !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;
}


.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: 1rem;
    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;
}





.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);
}
.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(--dblue2) none repeat scroll 0 0;
    bottom: 0;
    content: "";
    height: 5px;
    left: 50%;
    margin-left: -35px;
    position: absolute;
    width:35px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
}


.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: 5px;
    left: 20px;
    margin-left:20px;
    position: absolute;
    width: 75px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
}
.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;
}






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

.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:0px 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(--gray3);
    top: 5px;
}

.sidebar .popular-posts .post .post-info-date {
    margin-top: 0px;
    padding-top: 0px;
}

.sidebar .popular-posts .post .post-info-date svg {
    position: relative;
    top: 0px;
    width: 16px;
    height: 16px;
    vertical-align: text-top;
    stroke-width: 0;
    fill: var(--orange2) !important;
    transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.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(--gray3);
    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);
}

.sidebar-link {
    -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: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    border: none;
    padding: 7px 10px 6px 10px;
    position: relative;
    margin-bottom: 5px;
    display: block;
    width: 100%;
    z-index: 0;
    overflow: hidden;
}

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


.sidebar-link span {
    font-weight: normal;
    -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;
}


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

.sidebar-link:focus span,
.sidebar-link:hover span {
    padding-left: 5px;
}


.sidebar-link:before {
    position: absolute;
    content: "";
    height: 100%;
    width: 0px;
    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(--blackrgba1);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    z-index: 1;
}

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


.sidebar-link 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);
}

.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:20px;
    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: 25px 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(--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;
}




.swiper-button-prev:after, .swiper-container-rtl .swiper-button-next:after {
    content: '';
}
.swiper-button-next:after, .swiper-container-rtl .swiper-button-prev:after {
    content: '';
}



.list-item {
    margin-top: 10px;
}

.list-item li {
    font-size: 16px;
    margin-bottom:10px;
    line-height: 1.1;
    width:100%;
    display: block;
    float: left;
}





.list-item li span {
    /* width: 16px;
     height: 16px;
     background: var(--dblue2);
     display: -webkit-inline-box;
     display: -ms-inline-flexbox;
     display: inline-flex;
     -webkit-box-align: center;
     -ms-flex-align: center;
     align-items: center;
     -webkit-box-pack: center;
     -ms-flex-pack: center;
     justify-content: center;
     font-size:12px;
     color:var(--white);
     -webkit-transform: translateY(-2px);
     transform: translateY(-2px);
     -webkit-border-radius: 50px;
     -moz-border-radius: 50px;
     border-radius: 50px;*/
}




.text p{
    font-size: 16px !important;
    line-height:1.4!important;
    font-weight:bold !important;
    color:var(--gray3)
}
.cta-item {
    -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;
    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(--lbluergba7);
    -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;
}



#categories .main-nav-slider
#clients .main-nav-slider {

}

#categories .clients-button-next,
#categories .clients-button-prev,
#clients .clients-button-next,
#clients .clients-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));
}

#categories .clients-button-next,
#categories .clients-button-prev,
#clients .clients-button-next,
#clients .clients-button-prev {
    position: absolute;
    top: 50%;
    bottom: auto;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    border: none;
    background-color: var(--blackrgba5);
    width: 50px;
    height: 50px;
    border: none;
    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: 0.8;
}

#categories .clients-button-next,
#clients .clients-button-next {
    right: 15px;
}

#categories .clients-button-prev,
#clients .clients-button-prev {
    left: 15px;
}

#categories .clients-button-next img,
#categories .clients-button-prev img,
#clients .clients-button-next img,
#clients .clients-button-prev img {
    height: 15px;
    width: auto;
    display: block;
}
#categories .clients-button-next:hover,
#categories .clients-button-prev:hover,
#clients .clients-button-next:hover,
#clients .clients-button-prev:hover {
    box-shadow: none;
    opacity: 1;
    background-color: var(--lblue2);
    -webkit-box-shadow: 0px 10px 25px 0px var(--blackrgba5);
    -moz-box-shadow: 0px 10px 25px 0px var(--blackrgba5);
    box-shadow: 0px 10px 25px 0px var(--blackrgba5);
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    transform: translateY(-5px);
}



.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(--blackrgba1);
    -moz-box-shadow: 0px 15px 35px 0px var(--blackrgba1);
    box-shadow: 0px 15px 35px 0px var(--blackrgba1);
}


.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;
}




#svg-map path {
    fill: #0094d9
}

#svg-map text {
    fill: #fff;
    font-size: 12px;
    cursor: pointer
}

#svg-map a {
    text-decoration: none
}

#svg-map a:hover {
    cursor: pointer;
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;

}

#svg-map a:hover path {
    fill: #003399 !important;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;

}

#svg-map .circle {
    fill: #66ccff
}

#svg-map a:hover .circle {
    fill: #003399 !important;
    cursor: pointer

}


.returnclient {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;

}


.list-group-item:first-child {
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border-top: 1px solid var(--blackrgba1);
}

.list-group-item:last-child {
    margin-bottom: 0;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
}


.list-group-item {
    border: 0px solid #ddd;
    border-bottom: 1px solid var(--blackrgba1);
}




.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(--lbluergba7);
    -webkit-border-radius: 7px !important;
    -moz-border-radius: 7px !important;
    border-radius: 7px !important;
    overflow: hidden;
}

.bg-cover-slide {
    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;
    overflow: hidden;
}


.bg-cover-slide:before {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: " ";
    position: absolute;
    background: var(--blackrgba6);
    overflow: hidden;
}