/*	Primary Menu Header size
-----------------------------------------------------------------*/

@media (min-width: 992px) {
    .menu-link {
        text-transform: none;
        font-weight: 400;
    }
    .menu-container>.menu-item>.menu-link div {
        position: relative;
    }
    .menu-container>.menu-item>.menu-link div::after {
        opacity: 0;
        content: '';
        /* background: url('/img/icons/border.svg') no-repeat; */
        position: absolute;
        bottom: -3px;
        left: 0;
        text-align: center;
        margin: 0 auto;
        width: 100%;
        height: 4px;
        -webkit-transition: all .3s ease;
        -o-transition: all .3s ease;
        transition: all .3s ease;
    }
    .dark .menu-container>.menu-item>.menu-link div::after {
        /* background: url('/img/icons/border-white.svg') no-repeat; */
    }
    .menu-container>.menu-item.active>.menu-link>div::after,
    .menu-container>.menu-item:hover>.menu-link>div::after {
        bottom: -3px;
        opacity: 1;
    }
    img.man {
        margin-left: 100px;
    }
    .section.parallax {
        padding: 160px 0;
    }
}

.overflow-visible {
    overflow: visible !important;
}


/* Slider Area
-----------------------------------------------------------------*/

@media (min-width: 1367px) {
    .slider-caption h2 {
        font-size: 48px;
        margin-bottom: 80px;
    }
}

.slider-caption h2 {
    text-transform: none;
    letter-spacing: 0;
    line-height: 1;
    line-height: 1.4;
}

.slider-caption p {
    font-size: 18px;
    margin-bottom: 20px;
}

.slider-caption h2,
.slider-caption p,
.slider-caption .button {
    opacity: 0;
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    -webkit-transform-origin: 50% 50% 0px;
    transform-origin: 50% 50% 0px;
    -webkit-transition: -webkit-transform .05s ease-out;
    transition: -webkit-transform .05s ease-out;
    transition: transform .05s ease-out;
    transition: transform .05s ease-out, -webkit-transform .05s ease-out;
    /* backface-visibility: hidden; */
}

.swiper-slide.swiper-slide-active .slider-caption h2,
.swiper-slide.swiper-slide-active .slider-caption p,
.swiper-slide.swiper-slide-active .slider-caption .button {
    opacity: 1;
    -webkit-transition: transform 1s, opacity 1.05s;
    -o-transition: transform 1s, opacity 1.05s;
    transition: transform 1s, opacity 1.05s;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    /* backface-visibility: hidden; */
}

.swiper-slide.swiper-slide-active .slider-caption p {
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

.swiper-slide.swiper-slide-active .slider-caption .button {
    -webkit-transition-delay: 0.6s;
    transition-delay: 0.6s;
}

@media (min-width: 768px) {
    .one-page-arrow {
        bottom: 15%;
    }
}

.one-page-arrow .animated {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
}

.slider-arrow-left i,
.slider-arrow-right i {
    font-size: 34px;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.slider-arrow-left,
.slider-arrow-right,
.owl-carousel-full .owl-nav [class*=owl-] {
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    -webkit-transform: scale(1);
    transform: scale(1);
    display: block;
}

.slider-arrow-left:hover,
.slider-arrow-right:hover,
.owl-carousel-full .owl-nav [class*=owl-]:hover {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
}

.slider-arrow-right {
    border-bottom-left-radius: 15px;
    border-top-left-radius: 15px;
}

.slider-arrow-left {
    border-bottom-right-radius: 15px;
    border-top-right-radius: 15px;
}


/* Feaured Carousel
-----------------------------------------------------------------*/

#oc-features .owl-item:not(.active) {
    opacity: .4;
}

#oc-features .owl-item p {
    font-size: 16px;
    font-weight: 300;
    color: #666;
}


/* Button-link
-----------------------------------------------------------------*/

.button-viptech-claro {
    background-color: #267DF4;
    transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out
}

.button-viptech-claro:hover {
    background-color: #124a7f !important;
    transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out
}

.button-viptech {
    background-color: #124a7f;
    transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out
}

.button-viptech:hover {
    background-color: #022449 !important;
    transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out
}

.button-link {
    display: inline-block;
    position: relative;
    color: #333;
    font-weight: 600;
    margin-top: 10px;
    padding: 5px 0;
    -webkit-transition: color .3s ease;
    -o-transition: color .3s ease;
    transition: color .3s ease;
}

.dark .button-link {
    color: #FFF;
}

.button-link:hover {
    color: #00bed7;
}

.button-link::after {
    content: '';
    background: url('images/border.svg') no-repeat;
    position: absolute;
    bottom: 0px;
    left: 0;
    margin-bottom: 0;
    width: 100%;
    height: 4px;
    -webkit-transition: bottom .3s ease;
    -o-transition: bottom .3s ease;
    transition: bottom .3s ease;
}

.button-link.border-0::after {
    content: none;
}

.button-link:hover::after {
    bottom: 3px;
}


/* Owl Carousel - Controls - Arrows
-----------------------------------------------------------------*/

.owl-carousel-full .owl-nav [class*=owl-] {
    left: 0px !important;
    height: 60px;
    line-height: 60px;
    border: none;
    color: #f7f7f7;
    font-size: 28px;
    border-radius: 0;
    background-color: #333;
}

.owl-carousel .owl-prev.disabled,
.owl-carousel .owl-next.disabled {
    pointer-events: none !important;
    display: block !important;
    background-color: #00bed7;
}

.owl-carousel-full .owl-nav .owl-next {
    left: auto !important;
    right: 0px !important;
    border-radius: 0;
}

.owl-carousel-full .owl-nav [class*=owl-]:hover {
    color: #fff !important;
    background-color: #5A95CC;
}

.owl-carousel-full .owl-nav .owl-next {
    border-bottom-left-radius: 15px;
    border-top-left-radius: 15px;
}

.owl-carousel-full .owl-nav .owl-prev {
    border-bottom-right-radius: 15px;
    border-top-right-radius: 15px;
}


/* Owl Carousel - Responsive
-----------------------------------------------------------------*/

.device-lg .owl-carousel .owl-nav .owl-prev,
.device-md .owl-carousel .owl-nav .owl-prev,
.device-sm .owl-carousel .owl-nav .owl-prev,
.device-xs .owl-carousel .owl-nav .owl-prev {
    left: 2px !important;
}

.device-lg .owl-carousel-full .owl-nav .owl-next,
.device-md .owl-carousel-full .owl-nav .owl-next,
.device-sm .owl-carousel-full .owl-nav .owl-next,
.device-xs .owl-carousel .owl-nav .owl-next {
    right: 2px !important;
}


/* Grid Filter
-----------------------------------------------------------------*/

.grid-filter li.activeFilter a {
    font-weight: normal;
}

.grid-overlay {
    background-color: rgba(0, 0, 0, 0.75);
}


/* Testimonial
-----------------------------------------------------------------*/

.testimonials-rating {
    margin-top: 15px;
    color: #FFD700;
    font-size: 18px;
    line-height: 1;
}

.testi-content p {
    font-size: 16px;
    color: #666;
    font-style: normal;
}

.testi-content p::before,
.testi-content p::after {
    display: none;
}

.testi-meta::before {
    display: none;
}

.testi-meta span {
    padding-left: 0;
}

.testimonial .flex-control-nav {
    bottom: 25px;
    right: 20px;
}

.testimonial .flex-control-nav li a {
    background-color: #5A95CC;
}


/* Footer
-----------------------------------------------------------------*/

.widget>h4 {
    font-size: 20px;
    text-transform: none;
    letter-spacing: 0;
}

.widget li {
    list-style-type: none;
}

.list-style-01 * {
    transition-duration: .4s;
    -webkit-transition-duration: .4s;
    -moz-transition-duration: .4s;
    -ms-transition-duration: .4s
}

.list-style-01 li {
    position: relative;
    padding: 5px 25px 5px 0px;
    z-index: 1;
    list-style: none
}

.list-style-01 li i {
    /* position: absolute;
    top: 21px;
    left: 0;
    font-size: 14px; */
}

.list-style-01 li .list-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: -1
}

.list-style-01 li:hover .list-hover {
    opacity: 1
}

.list-style-01 li:hover i {
    left: 15px;
}

.list-style-01 li:hover {
    padding: 5px 25px 5px 10px
}

.widget_links li,
.widget_links li a {
    background-image: none !important;
    padding-left: 0;
    color: #999;
    font-size: 13px;
    font-weight: 300;
    padding-top: 1px;
}

.social-icon.si-mini {
    width: 24px;
    height: 24px;
    font-size: 11px;
    line-height: 23px !important;
}

.social-icon.si-mini:hover i:first-child {
    margin-top: -23px;
}


/* Misc
-----------------------------------------------------------------*/

#header,
#header-wrap,
#logo img {
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

.feature-box h3 span.subtitle {
    font-size: 14px;
}

.feature-box.fbox-plain .fbox-icon img {
    height: 50px;
}

.col-padding {
    padding: 100px 60px !important;
}

@media(max-width: 785px) {
    .heading-block::before {
        font-size: 50px !important;
    }
    .blocks-social-follow {
        justify-content: center !important;
    }
}

@media (max-width: 991px) {
    .d-i-menu-mobile {
        display: none !important;
    }
}

.heading-block::before {
    content: attr(data-heading);
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    color: #F5F5F5;
    z-index: -1;
    font-family: 'poppins', sans-serif;
    font-weight: bold;
    font-size: 90px;
    line-height: .3;
}

#page-title .heading-block::before {
    color: #124a7f21;
}

.heading-block.center::before {
    right: 0;
    left: 0;
    margin: auto;
    top: 8px;
}

.text-rotater {
    font-weight: 300;
    font-size: 20px;
    line-height: 1.7;
    color: #888;
}

.radius-viptech {
    border-radius: 15px;
}


/* Links */

.link {
    position: relative;
    cursor: text;
    /* white-space: nowrap; */
    color: #333;
    font-size: 18px;
    font-family: 'Roboto', sans-serif;
}

.link::before,
.link::after {
    position: absolute;
    width: 100%;
    height: 1px;
    background: currentColor;
    top: 100%;
    left: 0;
    pointer-events: none;
}

.link::before {
    content: '';
    /* show by default */
}


/* Link 6 */

.link-6 {
    font-size: 18px;
}

.link-6::before {
    transform-origin: 50% 100%;
    transition: clip-path 0.3s, transform 0.3s cubic-bezier(0.2, 1, 0.8, 1);
    clip-path: polygon(0% 0%, 0% 100%, 0 100%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%, 100% 100%, 100% 0%);
}

.link-6:hover::before {
    transform: translate3d(0, 2px, 0) scale3d(1.08, 3, 1);
    clip-path: polygon(0% 0%, 0% 100%, 50% 100%, 50% 0, 50% 0, 50% 100%, 50% 100%, 0 100%, 100% 100%, 100% 0%);
}

.link-6 span {
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.2, 1, 0.8, 1);
}

.link-6:hover span {
    transform: translate3d(0, -2px, 0);
}


/* Story Timeline
-----------------------------------------------------------------*/

.story-timeline {
    position: relative;
    padding-top: 60px;
}

.story-timeline>.story-timeline-line {
    position: absolute;
    display: block;
    top: 0;
    left: 10px;
    bottom: 0;
    width: 5px;
    border-radius: 0 0 6px 6px;
    background-image: linear-gradient(to bottom, #267DF4 0%, #124a7f 100%);
}

.story-timeline .story-timeline-dots {
    position: absolute;
    display: block;
    top: 0;
    left: 26px;
    z-index: 1;
    width: 26px;
    height: 36px;
    margin-left: -13px;
    background-image: linear-gradient(#267DF4 0%, #124a7f 100%);
    border: 6px solid #FFF;
    border-radius: 15px;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    transition: border-color .3s ease;
}

.story-timeline>.row {
    position: relative;
    padding-left: 40px;
}

.story-timeline>.row:hover .story-timeline-dots {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    background: #555;
}

.story-timeline img {
    border-radius: 15px;
    transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out
}

.story-timeline img:hover {
    border-radius: 15px;
    transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    cursor: zoom-in;
}


/* Story Timeline
-----------------------------------------------------------------*/

@media (min-width: 768px) {
    .story-timeline>.story-timeline-line {
        left: 50%;
        transform: translateX(-50%);
    }
    .story-timeline .story-timeline-dots {
        left: 50%;
        transform: translateX(-50%);
        margin-left: 0;
    }
    .story-timeline>.row {
        margin-right: -50px;
        margin-left: -50px;
        padding-left: 0;
    }
    .story-timeline>.row>.col,
    .story-timeline>.row>[class*="col-"] {
        padding-right: 50px;
        padding-left: 50px;
    }
}

[id^="particles-"] {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
}

#wpp-float-fade {
    display: none;
    z-index: 999 !important;
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 85px;
    right: 20px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 15px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 0 15px rgb(0 0 0 / 8%);
    z-index: 1;
    transition: all .2s linear !important
}

#wpp-float-fade:hover {
    color: #FFF;
    transform: translate(0%, -20%) scale(1);
    -webkit-transform: translate(0%, -20%) scale(1);
    -moz-transform: translate(0%, -20%) scale(1);
    -ms-transform: translate(0%, -20%) scale(1);
    transition: all .2s linear !important
}

.i-wpp-float {
    margin-top: 9px;
}

.i-wpp-float:before {
    font-size: 30px;
}

#solucoes i {
    font-size: 55px;
}

.feature-box-viptech * {
    transition-duration: .4s;
    -webkit-transition-duration: .4s;
    -moz-transition-duration: .4s;
    -ms-transition-duration: .4s
}

.feature-box-viptech {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    /* justify-content: center; */
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    z-index: 1;
    position: relative;
    transition-duration: .4s;
    -webkit-transition-duration: .4s;
    -moz-transition-duration: .4s;
    -ms-transition-duration: .4s;
    border-radius: 15px;
    border: 1px solid #e4e4e4;
}

.feature-box-viptech .feature-box-viptech-content {
    max-width: 100%
}

.feature-box-viptech-left-icon .feature-box-viptech-icon {
    margin-right: 35px
}

.feature-box-viptech-left-icon {
    flex-flow: row wrap;
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    -webkit-box-align: stretch!important;
    -ms-flex-align: stretch!important;
    align-items: stretch!important;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: left
}

.feature-box-viptech-left-icon .feature-box-viptech-content {
    overflow: hidden;
    flex: 1
}

.feature-box-viptech-left-icon-middle {
    flex-flow: row wrap;
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    -webkit-box-align: center!important;
    -ms-flex-align: center!important;
    align-items: center!important;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: left
}

.feature-box-viptech-left-icon-middle .feature-box-viptech-content {
    overflow: hidden;
    -webkit-box-flex: 1;
    flex: 1
}

.feature-box-viptech.text-start {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

.feature-box-viptech.text-end {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end
}

.feature-box-viptech .feature-box-viptech-shadow:hover,
.feature-box-viptech.feature-box-viptech-shadow:hover {
    border-color: transparent!important;
    -moz-transform: translate3d(0, -3px, 0);
    -o-transform: translate3d(0, -3px, 0);
    -ms-transform: translate3d(0, -3px, 0);
    -webkit-transform: translate3d(0, -3px, 0);
    transform: translate3d(0, -3px, 0)
}

.feature-box-viptech.feature-box-viptech-shadow .feature-box-viptech-overlay {
    box-shadow: 0 0 20px rgba(0, 0, 0, .05);
    opacity: 0
}

.feature-box-viptech.feature-box-viptech-shadow:hover .feature-box-viptech-overlay {
    opacity: 1
}

.feature-box-viptech-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0
}

.feature-box-viptech:hover .feature-box-viptech-overlay {
    opacity: 1
}

.feature-box-viptech.feature-box-viptech-dark-hover:hover .btn,
.feature-box-viptech.feature-box-viptech-dark-hover:hover .feature-box-viptech-icon,
.feature-box-viptech.feature-box-viptech-dark-hover:hover a,
.feature-box-viptech.feature-box-viptech-dark-hover:hover h1,
.feature-box-viptech.feature-box-viptech-dark-hover:hover h2,
.feature-box-viptech.feature-box-viptech-dark-hover:hover h3,
.feature-box-viptech.feature-box-viptech-dark-hover:hover h4,
.feature-box-viptech.feature-box-viptech-dark-hover:hover h5,
.feature-box-viptech.feature-box-viptech-dark-hover:hover h6,
.feature-box-viptech.feature-box-viptech-dark-hover:hover i,
.feature-box-viptech.feature-box-viptech-dark-hover:hover p,
.feature-box-viptech.feature-box-viptech-dark-hover:hover span {
    color: #fff!important
}

.feature-box-viptech.feature-box-viptech-dark-hover:hover .btn {
    border-color: #fff!important
}

.feature-box-viptech.feature-box-viptech-dark-hover:hover [class*=" text-gradient"],
.feature-box-viptech.feature-box-viptech-dark-hover:hover [class^=text-gradient] {
    color: #fff!important;
    background-image: none;
    -webkit-background-clip: inherit;
    -webkit-text-fill-color: inherit
}

.feature-box-viptech.feature-box-viptech-light-hover:hover .btn,
.feature-box-viptech.feature-box-viptech-light-hover:hover .feature-box-viptech-icon,
.feature-box-viptech.feature-box-viptech-light-hover:hover a,
.feature-box-viptech.feature-box-viptech-light-hover:hover h1,
.feature-box-viptech.feature-box-viptech-light-hover:hover h2,
.feature-box-viptech.feature-box-viptech-light-hover:hover h3,
.feature-box-viptech.feature-box-viptech-light-hover:hover h4,
.feature-box-viptech.feature-box-viptech-light-hover:hover h5,
.feature-box-viptech.feature-box-viptech-light-hover:hover h6,
.feature-box-viptech.feature-box-viptech-light-hover:hover i,
.feature-box-viptech.feature-box-viptech-light-hover:hover p,
.feature-box-viptech.feature-box-viptech-light-hover:hover span {
    color: #232323!important
}

.feature-box-viptech.feature-box-viptech-light-hover:hover .btn {
    border-color: #232323!important
}

.feature-box-viptech.feature-box-viptech-light-hover:hover [class*=" text-gradient"],
.feature-box-viptech.feature-box-viptech-light-hover:hover [class^=text-gradient] {
    color: #232323!important;
    background-image: none;
    -webkit-background-clip: inherit;
    -webkit-text-fill-color: inherit
}

.feature-box-viptech.feature-box-viptech-dark-hover:hover p,
.feature-box-viptech.feature-box-viptech-light-hover:hover p {
    opacity: .65
}

.feature-box-viptech-icon-rounded {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    overflow: hidden
}

.feature-box-viptech-icon-rounded i {
    position: relative;
    z-index: 1
}

.feature-box-viptech-icon-rounded .feature-box-viptech-icon-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0
}

.feature-box-viptech:hover .feature-box-viptech-icon-hover {
    opacity: 1
}

.feature-box-viptech:hover .light i {
    color: #232323
}

.feature-box-viptech:hover .dark i {
    color: #fff
}

.feature-box-viptech.feature-box-viptech-show-hover .feature-box-viptech-move-bottom-top {
    width: 100%;
    -webkit-transform: translateY(20px);
    -moz-transform: translateY(20px);
    -ms-transform: translateY(20px);
    -o-transform: translateY(20px);
    transform: translateY(20px);
    overflow: hidden
}

.feature-box-viptech.feature-box-viptech-show-hover:hover .feature-box-viptech-move-bottom-top {
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    transform: translateY(-5px)
}

.feature-box-viptech.feature-box-viptech-show-hover .move-bottom-top {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -moz-transform: translateY(20px);
    -ms-transform: translateY(20px);
    -o-transform: translateY(20px);
    transform: translateY(20px)
}

.feature-box-viptech.feature-box-viptech-show-hover:hover .move-bottom-top {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0)
}

.feature-box-viptech.feature-box-viptech-hide-show-hover .feature-box-viptech-move-bottom-top {
    width: 100%;
    -webkit-transform: translateY(30px);
    -moz-transform: translateY(30px);
    -ms-transform: translateY(30px);
    -o-transform: translateY(30px);
    transform: translateY(30px);
    overflow: hidden
}

.feature-box-viptech.feature-box-viptech-hide-show-hover:hover .feature-box-viptech-move-bottom-top {
    -webkit-transform: translateY(-30px);
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -o-transform: translateY(-30px);
    transform: translateY(-30px)
}

.feature-box-viptech.feature-box-viptech-hide-show-hover .move-bottom-top {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -moz-transform: translateY(20px);
    -ms-transform: translateY(20px);
    -o-transform: translateY(20px);
    transform: translateY(20px)
}

.feature-box-viptech.feature-box-viptech-hide-show-hover:hover .move-bottom-top {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0)
}

.feature-box-viptech.feature-box-viptech-hide-show-hover:hover .feature-box-viptech-icon {
    opacity: 0
}

.border-color-medium-gray {
    border-color: #e4e4e4!important;
}

.feature-box-viptech-bg-white-hover:hover {
    background-color: #fff;
    border-color: #fff!important
}

.box-shadow-large,
.box-shadow-large-hover:hover {
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
    transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out
}

.text-gradient-viptech {
    background: linear-gradient(to right, #5A95CC, #1D77CC, #124A7F, #0B2D4D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-viptech,
.text-viptech,
a.text-viptech-hover:hover {
    color: #5A95CC
}

.bg-gradient-viptech {
    background-image: linear-gradient(60deg, #2e3093, #3234a1, #3739af, #3b3dbd, #4042cc, #494ad3, #5151da, #5959e1, #6666e1, #7272e1, #7d7ee1, #898ae0);
    /* background: linear-gradient(to right,#0039e3,#0039e3,#5e28dd,#741bd9,#8600d4); */
}

.bg-viptech {
    background-color: #124a7f;
}

.w-130px {
    width: 130px;
}

.h-130px {
    height: 130px;
}

.gradient-border {
    --borderWidth: 3px;
    background: #1D1F20;
    position: relative;
    border-radius: 25px;
}

.gradient-border::after {
    content: '';
    position: absolute;
    top: calc(-1 * var(--borderWidth));
    left: calc(-1 * var(--borderWidth));
    height: calc(100% + var(--borderWidth) * 2);
    width: calc(100% + var(--borderWidth) * 2);
    background: linear-gradient(60deg, #2e3093, #3234a1, #3739af, #3b3dbd, #4042cc, #494ad3, #5151da, #5959e1, #6666e1, #7272e1, #7d7ee1, #898ae0);
    border-radius: var(--borderWidth);
    z-index: -1;
    animation: animatedgradient 3s ease alternate infinite;
    background-size: 300% 300%;
}

.border-color-viptech {
    border: 2px solid #5A95CC;
}

#solucoes .feature-box-viptech {
    height: 230px;
}

#software .feature-box-viptech .feature-box-viptech-icon i {
    font-size: 50px;
}

#software .feature-box-viptech p {
    margin-bottom: 0px;
}

@media (min-width: 991px) {
    #software .feature-box-viptech {
        height: 590px;
    }
}

.dark .heading-block::before {
    color: #f5f5f51f;
}

#testimonial .flex-next {
    border-bottom-left-radius: 15px;
    border-top-left-radius: 15px;
}

#testimonial .flex-prev {
    border-bottom-right-radius: 15px;
    border-top-right-radius: 15px;
}

.testi-content-viptech p {
    line-height: 1.6 !important;
    font-weight: 400;
    padding: 0 40px;
}

.dark .testi-content-viptech p {
    color: #FFF;
    font-style: italic;
}

.dark .testi-meta {
    font-size: 18px;
    color: #5A95CC;
    letter-spacing: 1px;
    margin-top: 30px;
}

.testi-content-viptech p::before,
.testi-content-viptech p::after {
    content: '"';
    position: absolute;
    color: #5A95CC;
    font-size: 100px;
    top: -35px;
    line-height: 1.4;
    left: -17px;
}

.testi-content-viptech p::after {
    left: auto;
    right: 10px;
}

.testi-content-viptech .testi-meta::before {
    content: '\e99f';
}

#oc-clients .oc-item {
    padding: 40px;
    /* border-right: 1px solid #5A95CC;
    border-bottom: 1px solid #5A95CC; */
}

#oc-clients .oc-item {
    opacity: 1;
    -webkit-transition: all .4s cubic-bezier(.2, 0, .3, 1);
    -moz-transition: all .4s cubic-bezier(.2, 0, .3, 1);
    -ms-transition: all .4s cubic-bezier(.2, 0, .3, 1);
    -o-transition: all .4s cubic-bezier(.2, 0, .3, 1);
    transition: all .4s cubic-bezier(.2, 0, .3, 1)
}

#oc-clients:hover .oc-item {
    -webkit-filter: blur(1px);
    filter: blur(1px);
    opacity: .6
}

#oc-clients .oc-item:hover {
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0)
}

.interactive-banners-style-01 * {
    transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out
}

.interactive-banners-style-01 {
    display: inline-block;
    float: none;
    border: 0;
    position: relative
}

.interactive-banners-style-01 .interactive-banners-image {
    position: relative;
    overflow: hidden
}

.svg-underline,
.svg-underline span {
    display: inline-block;
    position: relative;
    z-index: 1;
    color: #F7F7F7 !important;
}

.svg-underline::before {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 0;
    right: 0;
    height: 13px;
    background-image: url(../img/icons/border.svg);
    background-size: 100% 13px;
    background-position: bottom center;
}

.vertical-center {
    margin: 0;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.blocks-social-follow a {
    position: relative;
    border-radius: 15px;
    padding: 10px;
    transition: all .2s ease;
    width: auto;
}

.blocks-social-follow:hover>a:not(:hover) {
    opacity: .3;
}

.blocks-social-follow a:last-child {
    border-right: 0;
}

.blocks-social-follow a:hover i {
    color: #FFF;
    transform: scale(1.3);
}

.box-shadow-small,
.box-shadow-small-hover:hover {
    box-shadow: 0 0 15px rgba(0, 0, 0, .08);
    transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    /* border-radius: 6px; */
}

.box-shadow-small-hover:hover {
    -moz-transform: translate3d(0, -3px, 0);
    -o-transform: translate3d(0, -3px, 0);
    -ms-transform: translate3d(0, -3px, 0);
    -webkit-transform: translate3d(0, -3px, 0);
    transform: translate3d(0, -3px, 0)
}

.block-contact-1 .form-control {
    padding: 12px 2px;
    background-color: transparent !important;
    border-top-width: 0;
    border-right-width: 0;
    border-left-width: 0;
    border-bottom-width: 2px;
    border-radius: 0;
    font-weight: 500;
    font-size: 18px;
}

.block-contact-1 .form-control::-moz-placeholder {
    color: #CCC;
    font-weight: 400;
    font-size: 15px;
}

.block-contact-1 .form-control:-ms-input-placeholder {
    color: #CCC;
    font-weight: 400;
    font-size: 15px;
}

.block-contact-1 .form-control::-webkit-input-placeholder {
    color: #CCC;
    font-weight: 400;
    font-size: 15px;
}

.block-contact-1 textarea.form-control {
    resize: none;
    overflow: hidden;
    word-wrap: break-word;
}

.block-contact-1 label:not(.custom-control-label) {
    text-transform: none;
    letter-spacing: 0;
    font-weight: 500;
    color: #777;
    margin-bottom: 3px;
    font-size: 16px;
}

.block-contact-1 .custom-control-label::before,
.block-contact-1 .custom-control-label::after {
    top: 0.0875rem;
}

.block-contact-1 .form-control:active,
.block-contact-1 .form-control:focus {
    border-color: #5A95CC;
}

.custom-control-input:checked~.custom-control-label::before {
    border-color: #5A95CC;
    background-color: #5A95CC;
}

.custom-control-input:focus~.custom-control-label::before {
    box-shadow: 0 0 0 0.2rem #5A95CC15;
}

.block-contact-1 .social-icon {
    background-color: rgba(0, 0, 0, 0.2);
    font-size: 22px;
}

.indice-box {
    background-color: #022449;
    padding: 25px;
    border-radius: 15px;
}

.indice-box {
    color: #5A95CC !important;
}

.indice-box i,
.indice-box h5 {
    color: #f7f7f7 !important;
}

.banner-destaque {
    color: #F7F7F7 !important;
    font-weight: 800 !important;
}

#contato h3 {
    font-size: 18px;
}

#contato h4 {
    font-size: 16px;
    margin-bottom: 0px;
}

.image-back-offset-shadow {
    z-index: 1;
    opacity: 0;
    margin: 0;
    position: relative;
    display: inline-block;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out
}

.image-back-offset-shadow.active {
    opacity: 1
}

.image-back-offset-shadow img {
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out
}

.image-back-offset-shadow.active img {
    -webkit-transform: translate(12px, -12px);
    transform: translate(15px, -15px)
}

.image-back-offset-shadow .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out
}

.image-back-offset-shadow.active .overlay {
    -webkit-transform: translate(-9px, 9px);
    transform: translate(-9px, 9px)
}

.image-back-offset-shadow.position-right.active img {
    -webkit-transform: translate(10px, -20px);
    transform: translate(10px, -20px)
}

.image-back-offset-shadow.position-right .overlay {
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out
}

.image-back-offset-shadow.position-right.active .overlay {
    -webkit-transform: translate(35px, 5px);
    transform: translate(35px, 5px)
}


/* .bg-vip {
    background-image: linear-gradient(to right top, #124a7f, #124a7f)
} */

.center-img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
}

.text-services {
    font-weight: 300;
    font-size: 20px;
    line-height: 1.7;
    color: #888;
}

.feature-box-left-icon .feature-box-icon {
    margin-right: 35px
}

.feature-box-left-icon {
    flex-flow: row wrap;
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    -webkit-box-align: stretch!important;
    -ms-flex-align: stretch!important;
    align-items: stretch!important;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: left
}

.feature-box-left-icon .feature-box-content {
    overflow: hidden;
    flex: 1
}

.feature-box-left-icon-middle {
    flex-flow: row wrap;
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    -webkit-box-align: center!important;
    -ms-flex-align: center!important;
    align-items: center!important;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: left
}

.feature-box-left-icon-middle .feature-box-content {
    overflow: hidden;
    -webkit-box-flex: 1;
    flex: 1
}

.feature-box.text-start {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

.box-shadow-extra-large,
.box-shadow-extra-large-hover:hover {
    box-shadow: 0 0 25px rgba(0, 0, 0, .08);
    transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out
}

.box-shadow-extra-large-hover:hover {
    -moz-transform: translate3d(0, -3px, 0);
    -o-transform: translate3d(0, -3px, 0);
    -ms-transform: translate3d(0, -3px, 0);
    -webkit-transform: translate3d(0, -3px, 0);
    transform: translate3d(0, -3px, 0)
}

.play-video i {
    position: absolute;
    padding-left: 5px;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    line-height: 81px;
    border-radius: 15px;
    z-index: 1;
    background-color: var(--themecolor, #124a7f);
    text-align: center;
    font-size: 24px;
    color: #FFF;
    margin-top: -40px;
    margin-left: -40px;
    transition: transform .3s ease-out;
    -webkit-backface-visibility: hidden;
}

.play-video:hover i {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

.testimonials-style-02 {
    transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out
}

.testimonials-style-02:hover {
    box-shadow: 0 0 20px rgba(0, 0, 0, .07);
    transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out
}

.testimonials-style-02 .testimonials-content {
    position: relative
}

.testimonials-style-02 .testimonials-content .testimonials-rounded-icon {
    height: 75px;
    width: 75px;
    line-height: 71px;
    overflow: hidden;
    box-shadow: 0 0 25px rgba(0, 0, 0, .05);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    -webkit-transform: translate(-50%, -50%) scale(1);
    -moz-transform: translate(-50%, -50%) scale(1);
    -ms-transform: translate(-50%, -50%) scale(1);
    transition: all .3s ease-in-out
}

.testimonials-style-02 .testimonials-content .testimonials-rounded-icon i {
    line-height: inherit
}

.testimonials-style-02:hover .testimonials-rounded-icon {
    transform: translate(-50%, -50%) scale(1.2);
    -webkit-transform: translate(-50%, -50%) scale(1.2);
    -moz-transform: translate(-50%, -50%) scale(1.2);
    -ms-transform: translate(-50%, -50%) scale(1.2)
}

.testimonials-style-03 .testimonials-bubble {
    position: relative;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    transition: all .2s ease
}

#ceo-testimonial p {
    font-style: italic;
    margin-top: 40px;
}

#ceo-testimonial i {
    font-size: 35px;
    color: #124a7f;
}

#servicos h3 {
    /* margin-bottom: 0px; */
}

#servicos h3 span {
    font-weight: 300;
    color: #333333;
}

#servicos i {
    font-size: 40px;
    color: #124a7f;
}

#servicos p {
    margin-bottom: 10px;
}

#servicos .link {
    cursor: pointer;
    color: #124a7f;
    font-size: 16px;
}

#footer h5 {
    color: #444444;
    font-size: 18px;
    margin-bottom: 0px;
    font-weight: 400;
}

.counter small {
    font-size: 60%;
}

.hidden {
    display: none !important;
}


/* COOKIE */

.box-cookies.hide {
    display: none !important;
}

.box-cookies {
    font-weight: 100;
    position: fixed;
    background: rgba(0, 0, 0, .7);
    width: 100%;
    z-index: 998;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.box-cookies p {
    margin-bottom: 0px;
}

.box-cookies .msg-cookies,
.box-cookies {
    text-align: center;
    padding: 10px;
    color: #fff;
    font-size: 15px;
    font-weight: 400;
}

.box-cookies .btn-cookies,
.btn-politica {
    cursor: pointer;
    align-self: normal;
}


/* .btn-cookies,
.btn-politica {
    padding: 8px 20px;
    background: #0F2A51;
    color: #fff;
    border: 1px solid #0F2A51;
    transition: all ease 0.4s;
    font-weight: 400;
}

.btn-cookies:hover,
.btn-politica:hover {
    padding: 8px 20px;
    background: #444;
    color: #fff !important;
    border: 1px solid #444;
    transition: all ease 0.4s;
} */

@media screen and (max-width: 600px) {
    .box-cookies {
        flex-direction: column;
    }
    .btn-politica {
        margin-bottom: 10px;
    }
}


/* COOKIE FIM*/

.em-breve h1 {
    font-size: 6rem;
}

.em-breve b {
    color: #267DF4;
}

.em-breve a {
    margin-top: 65px !important;
}

.menu-loja {
    border: 2px solid #124a7f;
    padding: 5px 20px;
    border-radius: 15px;
}