﻿.scroller {
    max-width: 100%;
}

.scroller__inner {
    padding-block: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.scroller[data-animated="true"] {
    overflow: hidden;
    -webkit-mask: linear-gradient( 90deg, transparent, white 20%, white 80%, transparent );
    mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
}

    .scroller[data-animated="true"] .scroller__inner {
        width: -webkit-max-content;
        width: -moz-max-content;
        width: max-content;
        flex-wrap: nowrap;
        -webkit-animation: scroll var(--_animation-duration, 40s) var(--_animation-direction, forwards) linear infinite;
        animation: scroll var(--_animation-duration, 40s) var(--_animation-direction, forwards) linear infinite;
    }

.scroller[data-direction="right"] {
    --_animation-direction: reverse;
}

.scroller[data-direction="left"] {
    --_animation-direction: forwards;
}

.scroller[data-speed="fast"] {
    --_animation-duration: 20s;
}

.scroller[data-speed="slow"] {
    --_animation-duration: 60s;
}

@-webkit-keyframes scroll {
    to {
        transform: translate(calc(-40% - 0.5rem));
    }
}

@keyframes scroll {
    to {
        transform: translate(calc(-40% - 0.5rem));
    }
}

/* general styles */

 

.tag-list {
    margin: 0;
    padding-inline: 0;
    list-style: none;
}

    .tag-list li {
        padding: 1rem;
        background: var(--clr-primary-400);
        border-radius: 0.5rem;
        box-shadow: 0 0.5rem 1rem -0.25rem var(--clr-primary-900);
    }

/* for testing purposed to ensure the animation lined up correctly */
.test {
    background: red !important;
}


.image-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 100%;
    margin-inline: auto;
    gap: 5px;
}

    .image-gallery > img {
        width: 100%;
        aspect-ratio: 1/1;
        -o-object-fit: cover;
        object-fit: cover;
        transition: scale 350ms ease, opacity 350ms linear;
       
    }

    .image-gallery:has(img:hover) img:not(:hover) {
        scale: 0.8;
        opacity: 0.7;
    }

 

 

main > div span {
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 1rem;
    color: #717171;
}

main > div h1 {
    text-transform: capitalize;
    letter-spacing: 0.8px;
    font-family: "Roboto", sans-serif;
    font-weight: 900;
    font-size: clamp(3.4375rem, 3.25rem + 0.75vw, 4rem);
    background-color: #005baa;
    background-image: linear-gradient(45deg, #005baa, #000000);
    background-size: 100%;
    background-repeat: repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
}

main > div hr {
    display: block;
    background: #005baa;
    height: 0.25rem;
    width: 6.25rem;
    border: none;
    margin: 1.125rem 0 1.875rem 0;
}

main > div p {
    line-height: 1.6;
}

main a {
    display: inline-block;
    text-decoration: none;
    text-transform: uppercase;
    color: #717171;
    font-weight: 500;
    background: #fff;
    border-radius: 3.125rem;
    transition: 0.3s ease-in-out;
}

main > div > a {
    border: 2px solid #c2c2c2;
    margin-top: 2.188rem;
    padding: 0.625rem 1.875rem;
}

    main > div > a:hover {
        border: 0.125rem solid #005baa;
        color: #005baa;
    }

.swiper {
    width: 100%;
    padding-top: 3.125rem;
}

.swiper-pagination-bullet,
.swiper-pagination-bullet-active {
    background: #fff;
}

.swiper-pagination {
    bottom: 1.25rem !important;
}

.swiper-slide {
    width: 18.75rem;
    height: 28.125rem;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: self-start;
}

    .swiper-slide h2 {
        color: #fff;
        font-family: "Roboto", sans-serif;
        font-weight: 400;
        font-size: 20px;
        line-height: 1.4;
        margin-bottom: 0.625rem;
        padding: 0 0 0 1.563rem;
        text-transform: uppercase;
    }

    .swiper-slide p {
        color: #dadada;
        font-family: "Roboto", sans-serif;
        font-weight: 300;
        padding: 0 1.563rem;
        line-height: 1.6;
        font-size: 12px;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .swiper-slide a {
        margin:20px !important;
        padding: 10px 10px;
        font-size: 15px;
         border-radius:50px;
        border:2px solid #fff;
        color:#fff
       
    }

        .swiper-slide a:hover {
            color: #F57F1B;
            background-color:#fff;
            transition:linear 200ms
        }

    .swiper-slide div {
        display: none;
        opacity: 0;
        padding-bottom: 50px;
    }

.swiper-slide-active div {
    display: block;
    opacity: 1;
}

 

.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right {
    background-image: none;
}

@media screen and (min-width: 48rem) {
    main {
        display: flex;
        align-items: center;
    }

    .bg,
    .bg2 {
        opacity: 0.1;
    }
}

@media screen and (min-width: 93.75rem) {
    .swiper {
        width: 85%;
    }
}



.content1 {
    width: 100%;
    padding: 0 4%;
    color: white;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 767px) {
    .content1 {
        flex-direction: column;
    }
}

.card {
    width: 100%;
    max-width: 400px;
    min-width: 200px;
    height: 240px;
    background-color: rgba(1, 114, 174, 0.06) !important;
    margin: 10px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.24);
    border-bottom: 3px solid #0172ae !important;
     font-size: 16px;
    transition: all 0.1s ease;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
    transition: all 0.1s ease;
    border-radius: 0% 0% 50% 0% !important;
    padding: 0px 10px;
}


  
    
    
    
    .icon {
        margin: 0 auto;
        width: 60%;
        height: 60px;
        max-width: 80px;
        background: linear-gradient(90deg, #0172ae 0%, #0172ae 40%, #fcfcfc 30%);
        display: flex;
        justify-content: center;
        align-items: center;
        color: white;
        transition: all 0.8s ease;
        background-position: 0px;
        background-size: 220px;
        border-radius: 41px;
        border-bottom: 2px solid #0172ae
        /*border: 2px solid white !important;*/
    }

.material-icons.md-18 {
    font-size: 18px;
}

.material-icons.md-24 {
    font-size: 24px;
}

.material-icons.md-36 {
    font-size: 36px;
}

.material-icons.md-48 {
    font-size: 48px;
}

.card .title {
    width: 100%;
    margin: 0;
    text-align: center;
    margin-top: 30px;
    color: #0172ae;
    font-weight: 900;
    text-transform: uppercase;
    font-size:15px
}

.card .text {
    width: 80%;
    margin: 0 auto;
    font-size: 13px;
    text-align: center;
    margin-top: 20px;
    color: #fff;
    font-weight: 900;
    max-height: 0;
    transition: all 0.3s ease;
}

/*.card:hover {
    height: 220px;
}*/

    /*.card:hover .info {
        height: 90%;
    }*/

    /*.card:hover .text {
        transition: all 0.3s ease;
        opacity: 1;
        max-height: 40px;
        color: #0172ae
    }*/

    /*.card:hover .icon {
        background-position: -120px;
        transition: all 0.3s ease;
    }*/

        /*.card:hover .icon i {
            background: linear-gradient(90deg, #0172ae, #0172ae);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            opacity: 1;
            transition: all 0.3s ease;
        }*/






/********************* FONTES ******************* */

/********************* GERAL ******************* */
::-webkit-scrollbar {
    width: 9px;
}

::-webkit-scrollbar-track {
    background-color: #eee;
    border-radius: 0px;
}

::-webkit-scrollbar-track-piece {
    opacity: 1;
}

::-webkit-scrollbar-thumb {
    border-radius: 0px;
    background-color: #bbb;
}

 

@-webkit-keyframes gradienteBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes gradienteBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

* a {
    outline: none !important;
}

/********************* PRELOADER ******************* */
.preloader {
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: #fff;
    z-index: 98;
}

    .preloader i {
        position: absolute;
        color: #C4151C;
        width: 50px;
        height: 50px;
        font-size: 40px;
        top: calc(50% - 20px);
        right: calc(50% - 34px);
    }

    .preloader::before {
        content: "";
        width: 100px;
        height: 100px;
        position: fixed;
        z-index: 999999;
        top: calc(50% - 50px);
        right: calc(50% - 50px);
        z-index: 99;
        border: 4px solid #fff;
        border-right: 4px solid #C4151C;
        border-left: 4px solid #C4151C;
        border-radius: 100%;
        -webkit-animation-name: rodar;
        animation-name: rodar;
        -webkit-animation-duration: 2s;
        animation-duration: 2s;
        -webkit-animation-iteration-count: infinite;
        animation-iteration-count: infinite;
        -webkit-animation-direction: normal;
        animation-direction: normal;
        -webkit-animation-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
        animation-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
        -webkit-animation-fill-mode: forwards;
        animation-fill-mode: forwards;
    }

@-webkit-keyframes rodar {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(360deg) scale(1.2);
    }
}

@keyframes rodar {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(360deg) scale(1.2);
    }
}
/********************* BOTÃO CODEPEN ******************* */
.botao-codepen {
    position: fixed;
    bottom: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    background-color: #000;
    border-radius: 50%;
    -webkit-animation-name: pular;
    animation-name: pular;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-direction: normal;
    animation-direction: normal;
    -webkit-animation-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
    animation-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

    .botao-codepen i {
        color: #fff;
        line-height: 50px;
        font-size: 23px;
    }

@-webkit-keyframes pular {
    0%, 100% {
        transform: translateY(0px) scale(1) rotateY(0deg);
    }

    50% {
        transform: translateY(-9px) scale(0.8) rotateY(180deg);
    }
}

@keyframes pular {
    0%, 100% {
        transform: translateY(0px) scale(1) rotateY(0deg);
    }

    50% {
        transform: translateY(-9px) scale(0.8) rotateY(180deg);
    }
}
/******************** FIX MARGIN ********************* */
.magnificPopup__Box {
    margin-top: 30px;
}

/****************** BOX 1,2,3,4 *********************** */
.box-1, .box-2, .box-3, .box-4 {
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
    position: relative;
    cursor: pointer;
    overflow: hidden;
    transition: 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

    .box-1::before, .box-2::before, .box-3::before, .box-4::before {
        content: "";
        position: absolute;
        top: 5%;
        left: 3.75%;
        width: 92.5%;
        height: 90%;
        background-color: rgba(0, 0, 0, 0.5);
        transition: 0.4s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    }

    .box-1:hover, .box-2:hover, .box-3:hover, .box-4:hover {
        transform: translateY(-3px);
        box-shadow: 0 0 20px 4px rgba(0, 0, 0, 0.2);
    }

    .box-1::before {
        opacity: 0;
        transform: scale(0.4);
        transform-origin: center center;
    }

    .box-2::before {
        opacity: 0;
    }

    .box-3::before {
        opacity: 0;
        transform: translateY(-10px) translateX(-10px);
    }

    .box-4::before {
        opacity: 0;
        width: 0;
    }

    .box-1:hover::before {
        opacity: 1;
        transform: scale(1);
    }

    .box-2:hover::before {
        opacity: 1;
    }

    .box-3:hover::before {
        opacity: 1;
        transform: translateY(0px) translateX(0px);
    }

    .box-4:hover::before {
        opacity: 1;
        width: 92.5%;
    }

    .box-1::after, .box-2::after, .box-3::after, .box-4::after {
        content: "";
        position: absolute;
        top: 5%;
        left: 2.5%;
        width: 95%;
        height: 90%;
        border: 2px solid #F57F1B;
        border-radius: 0 30px 0 30px;
        opacity: 0;
        transition: 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
        transform: scale(0.9);
    }

    .box-1:hover::after, .box-2:hover::after, .box-3:hover::after, .box-4:hover::after {
        opacity: 1;
    }

/****************** LUPA OVERLAY *********************** */
.lupa {
    width: 50px;
    height: 50px;
    background-color: rgba(187, 187, 187, 0.80);
    position: absolute;
    top: calc(50% - 28px);
    left: calc(50% - 32px);
    opacity: 0;
    transform: rotate(45deg);
    border-radius: 8px;
    transition: 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);

}

    .lupa > i {
        font-size: 23px;
        line-height: 45px;
        color: #F57F1B;
        transform: rotate(-45deg);
    }

.box-1:hover .lupa, .box-2:hover .lupa, .box-3:hover .lupa, .box-4:hover .lupa {
    opacity: 1;
}

/*************** FIX CURSOR MAGNIFIC POPUP *********** */
.mfp-close {
    cursor: pointer !important;
}

.mfp-bg, .mfp-container, .mfp-wrap {
    cursor: default !important;
}

/************* MAGNIFIC POPUP ZOOM ************** */
.mfp-zoom-in {
    /* start state */
    /* animate in */
    /* animate out */
}

    .mfp-zoom-in .magnificPopup__Animus {
        opacity: 0;
        transition: all 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
        transform: scale(0.6);
    }

    .mfp-zoom-in.mfp-bg {
        opacity: 0;
        transition: 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    }

    .mfp-zoom-in.mfp-ready .magnificPopup__Animus {
        opacity: 1;
        transform: scale(1);
    }

    .mfp-zoom-in.mfp-ready.mfp-bg {
        opacity: 0.8;
    }

    .mfp-zoom-in.mfp-removing .magnificPopup__Animus {
        transform: scale(0.6);
        opacity: 0;
    }

    .mfp-zoom-in.mfp-removing.mfp-bg {
        opacity: 0;
    }

/**************************************************** */
/************* MAGNIFIC 3D FLIP ************** */
.mfp-3d-flip {
    /* start state */
    /* animate in */
    /* animate out */
}

    .mfp-3d-flip .mfp-content {
        perspective: 2000px;
    }

    .mfp-3d-flip .magnificPopup__Animus {
        opacity: 0;
        transition: all 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
        transform-style: preserve-3d;
        transform: rotateY(-60deg);
    }

    .mfp-3d-flip.mfp-bg {
        opacity: 0;
        transition: all 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    }

    .mfp-3d-flip.mfp-ready .magnificPopup__Animus {
        opacity: 1;
        transform: rotateY(0deg);
    }

    .mfp-3d-flip.mfp-ready.mfp-bg {
        opacity: 0.8;
    }

    .mfp-3d-flip.mfp-removing .magnificPopup__Animus {
        transform: rotateX(80deg);
        opacity: 0;
    }

    .mfp-3d-flip.mfp-removing.mfp-bg {
        opacity: 0;
    }

/*************************************************** */
/**************** MAGNIFIC HORIZONTAL IN OUT **************** */
.mfp-horizontal-in-out {
    /* start state */
    /* animate in */
    /* animate out */
}

    .mfp-horizontal-in-out .magnificPopup__Animus {
        opacity: 0;
        transition: all 0.3s;
        transform: translateX(-500px);
    }

    .mfp-horizontal-in-out.mfp-bg {
        opacity: 0;
        transition: all 0.4s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    }

    .mfp-horizontal-in-out.mfp-ready .magnificPopup__Animus {
        opacity: 1;
        transform: translateX(0);
    }

    .mfp-horizontal-in-out.mfp-ready.mfp-bg {
        opacity: 0.8;
    }

    .mfp-horizontal-in-out.mfp-removing .magnificPopup__Animus {
        transform: translateX(500px);
        opacity: 0;
    }

    .mfp-horizontal-in-out.mfp-removing.mfp-bg {
        opacity: 0;
    }

/********************************************************************* */
/************************ MAGNIFIC VERTICAL TOP IN - BOTTOM OUT ************************* */
.mfp-vertical-topIn-bottomOut {
    /* start state */
    /* animate in */
    /* animate out */
}

    .mfp-vertical-topIn-bottomOut .mfp-content {
        vertical-align: middle;
    }

    .mfp-vertical-topIn-bottomOut .magnificPopup__Animus {
        opacity: 0;
        transition: all 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
        transform: translateY(-400px);
    }

    .mfp-vertical-topIn-bottomOut.mfp-bg {
        opacity: 0;
        transition: all 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    }

    .mfp-vertical-topIn-bottomOut.mfp-ready .magnificPopup__Animus {
        opacity: 1;
        transform: translateY(0);
    }

    .mfp-vertical-topIn-bottomOut.mfp-ready.mfp-bg {
        opacity: 0.8;
    }

    .mfp-vertical-topIn-bottomOut.mfp-removing .magnificPopup__Animus {
        transform: translateY(200px);
        opacity: 0;
    }

    .mfp-vertical-topIn-bottomOut.mfp-removing.mfp-bg {
        opacity: 0;
    }

/************************************************************************************** */
@charset "UTF-8";

.boxs-cat {
    overflow: hidden;
    width: 90%;
    margin: 0 auto;
    padding: 5% 0;
   
}

    .boxs-cat .box-item {
        position: relative;
        list-style-type: none;
        float: right;
        overflow: hidden;
        width: 14.5%;
        padding-bottom: 14.5%;
        margin: 0 4%;
        border-radius: 20px;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        -webkit-transition: transform 0.5s ease;
        -moz-transition: transform 0.5s ease;
        -o-transition: transform 0.5s ease;
        transition: transform 0.5s ease;
        will-change: transform;
        box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
        max-width: 200px !important;
        min-width: 200px !important;
        max-height: 200px !important;
        min-height: 200px !important
        /*border: 4px solid #0172ae*/
    }

        .boxs-cat .box-item * {
            position: absolute;
            visibility: visible;
        }

        .boxs-cat .box-item:hover {
            transform: scale(1.5) rotate(0deg);
            z-index: 10;
        }

        .boxs-cat .box-item:first-child {
            margin-top: 0;
        }

        .boxs-cat .box-item:last-child {
            margin-bottom: 0;
        }

        .boxs-cat .box-item:first-child, .boxs-cat .box-item:nth-child(15), .boxs-cat .box-item:nth-child(22), .boxs-cat .box-item:nth-child(8) {
            margin-right: 9%;
        }

        .boxs-cat .box-item:nth-child(n+5) .boxs-cat .box-item:nth-child(-n+7) {
            margin: 1% 4%;
        }

        .boxs-cat .box-item:nth-child(n+12):nth-child(-n+12), .boxs-cat .box-item:nth-child(n+19):nth-child(-n+19), .boxs-cat .box-item:nth-child(n+5):nth-child(-n+5) {
            margin-right: 20%;
        }

        .boxs-cat .box-item .box-wrp {
            width: 100%;
            height: 100%;
            text-align: center;
            color: #fff;
            overflow: hidden;
            transform: scale(1.5) rotate(45deg);
            -webkit-transition: transform 0.5s ease;
            -moz-transition: transform 0.5s ease;
            -o-transition: transform 0.5s ease;
            transition: transform 0.5s ease;
         
        }

            .boxs-cat .box-item .box-wrp:hover {
                transform: scale(1) rotate(0deg);
            }

                .boxs-cat .box-item .box-wrp:hover h4 {
                    margin-top: 0;
                }

                .boxs-cat .box-item .box-wrp:hover .a-link-wrp {
                    opacity: 1;
                }

                    .boxs-cat .box-item .box-wrp:hover .a-link-wrp a {
                        color: tomato;
                    }

                        .boxs-cat .box-item .box-wrp:hover .a-link-wrp a i {
                            transform: scale(1);
                        }

            .boxs-cat .box-item .box-wrp img {
                right: -100%;
                left: -100%;
                width: auto;
                height: 100%;
                margin: 0 auto;
                min-width: 100%;
                -webkit-transition: transform 0.5s ease;
                -moz-transition: transform 0.5s ease;
                -o-transition: transform 0.5s ease;
                transition: transform 0.5s ease;
            }

            .boxs-cat .box-item .box-wrp h4 {
                text-align: center;
                color: #fff;
                text-shadow: 1px 1px 1px #000;
                position: relative;
                font-size: 12px;
                background: #0172AE;
                padding: 8px;
                margin-top: 43%;
                -webkit-transition: margin-top 0.5s ease;
                -moz-transition: margin-top 0.5s ease;
                -o-transition: margin-top 0.5s ease;
                transition: margin-top 0.5s ease;
            }

            .boxs-cat .box-item .box-wrp .a-link-wrp {
                width: 100%;
                opacity: 0;
                position: absolute;
                z-index: 1;
                display: block;
                text-align: center;
                line-height: 50%;
                margin-right: -10%;
                top: 75px;
                left: -20px;
                height: 40px;
                transition: opacity 0.7s ease-out, padding 0.5s ease;
            }

                .boxs-cat .box-item .box-wrp .a-link-wrp a:hover i:after {
                    transform: scale(2);
                    opacity: 0;
                }

                .boxs-cat .box-item .box-wrp .a-link-wrp a i {
                    background: rgba(0, 0, 0, 0.5);
                    transform: scale(2);
                    border-radius: 50%;
                    color: #fff;
                    width: 40px;
                    height: 40px;
                    font-size: 14px;
                    text-align: center;
                    line-height: 40px;
                    -webkit-transition: all 0.3s ease;
                    -moz-transition: all 0.3s ease;
                    -o-transition: all 0.3s ease;
                    transition: all 0.3s ease;
                    z-index: 10;
                }

                    .boxs-cat .box-item .box-wrp .a-link-wrp a i:after {
                        content: "";
                        display: inline-block;
                        width: 40px;
                        height: 40px;
                        background: rgba(0, 0, 0, 0.5);
                        border-radius: 50%;
                        position: relative;
                        top: -40px;
                        z-index: -3;
                        opacity: 1;
                        -webkit-transition: all 0.3s ease;
                        -moz-transition: all 0.3s ease;
                        -o-transition: all 0.3s ease;
                        transition: all 0.3s ease;
                    }

                    .boxs-cat .box-item .box-wrp .a-link-wrp a i:before {
                        content: "";
                    }

.serviceBox {
    text-align: center;
    margin: 20px !important;
    padding: 20px !important
}

    .serviceBox .service-icon {
        display: inline-block;
        width: 120px;
        height: 120px;
        line-height: 120px;
        margin-bottom: 22px;
        font-size: 35px;
        color: #F05907;
        position: relative;
        border-radius: 20px;
        background-color: transparent;
        box-shadow: inset 18px -18px 36px #acacac, inset -18px 18px 36px #ffffff;
    }

        .serviceBox .service-icon:before {
            content: "";
            width: 120px;
            height: 120px;
            border: 8px double #e8e8e8;
            border-radius: 20px;
            position: absolute;
            top: 0;
            left: 0;
            transition: all 0.25s ease 0s;
        }

    .serviceBox:hover .service-icon:before {
        width: 93px;
        height: 93px;
        border: 5px double #0172AE;
        top: 12px;
        left: 13px;
        transform: rotate(45deg);
    }

    .serviceBox .title {
        display: block;
        font-size: 17px;
        font-weight: 700;
        color: #0d3b66;
        margin: 0 0 15px 0;
        transition: all 0.25s ease 0s;
    }

    .serviceBox:hover .title {
        color: rgba(204, 204, 204, 0.1);
    }

    .serviceBox .description {
        font-size: 14px;
        color: #888;
        line-height: 25px;
    }

@media only screen and (max-width: 990px) {
    .serviceBox {
        margin-bottom: 30px;
    }
}


/*author MARY LOU */
/* COMPONENTS */




.box {
    max-height: 100%;
    max-width: 100%;
    position: relative;
    /*background: rgba(255,255,255,1);*/
    display: inline-block;
    /*margin: 0 10px;*/
    cursor: pointer;
    color: #2c3e50;
    /*box-shadow: inset 0 0 0 3px #2c3e50;*/
    -webkit-transition: background 0.4s 0.5s;
    transition: background 0.4s 0.5s;
}

    .box:hover {
        background: rgba(255,255,255,0);
        -webkit-transition-delay: 0s;
        transition-delay: 0s;
    }

    .box h4 {
        text-align: right !important
    }

    /*.box span {
        display: block;
        font-weight: 400;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 13px;
        padding: 5px;
    }

    .box h3,
    .box span {
        -webkit-transition: color 0.4s 0.5s;
        transition: color 0.4s 0.5s;
    }

    .box:hover h3,
    .box:hover span {
        color: #fff;
        -webkit-transition-delay: 0s;
        transition-delay: 0s;
    }*/

    .box svg {
        position: absolute;
    }

        .box svg line {
            stroke-width: 1;
            stroke: #ecf0f1;
            fill: none;
            -webkit-transition: all .8s ease-in-out;
            transition: all .8s ease-in-out;
        }

    .box:hover svg line {
        -webkit-transition-delay: 0.1s;
        transition-delay: 0.1s;
    }

    .box svg line.top,
    .box svg line.bottom {
        stroke-dasharray: 330 240;
    }

    .box svg line.left,
    .box svg line.right {
        stroke-dasharray: 490 400;
    }

    .box:hover svg line.top {
        -webkit-transform: translateX(-600px);
        transform: translateX(-600px);
    }

    .box:hover svg line.bottom {
        -webkit-transform: translateX(600px);
        transform: translateX(600px);
    }

    .box:hover svg line.left {
        -webkit-transform: translateY(920px);
        transform: translateY(920px);
    }

    .box:hover svg line.right {
        -webkit-transform: translateY(-920px);
        transform: translateY(-920px);
    }

/* Alternatives */
 

.video-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(370px, 1fr));
    grid-gap: 15px;
    max-width: 1100px;
    padding: 15px;
    margin: 0 auto;
    box-sizing: border-box;
}

    .video-gallery .gallery-item {
        position: relative;
        width: 100%;
        height: 300px;
        background: #000;
        cursor: pointer;
        overflow: hidden;
    }

        .video-gallery .gallery-item img {
            position: relative;
            display: block;
            width: 115%;
            height: 300px;
            -o-object-fit: cover;
            object-fit: cover;
            opacity: .5;
            /*transition: opacity .35s, transform .35s;*/
            transition: all 350ms ease-in-out;
            transform: translate3d(-23px, 0, 0);
            /*backface-visibility: hidden;*/
        }

.north-cascades-img {
    -o-object-position: 50% 30%;
    object-position: 50% 30%;
}

.video-gallery .gallery-item .gallery-item-caption {
    padding: 32px;
    font-size: 1em;
    color: #fff;
    text-transform: uppercase;
}

    .video-gallery .gallery-item .gallery-item-caption,
    .video-gallery .gallery-item .gallery-item-caption > a {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

.video-gallery .gallery-item h2 {
    font-weight: 300;
    overflow: hidden;
    padding: 12px 0;
    color:#fff
}

.video-gallery .gallery-item h2,
.video-gallery .gallery-item p {
    position: relative;
    margin: 0;
    z-index: 1;
    pointer-events: none;
}

.video-gallery .gallery-item p {
    letter-spacing: 1px;
    font-size: 12px;
    padding: 12px 0;
    opacity: 0;
    transition: opacity 0.35s, transform 0.35s;
    transform: translate3d(10%, 0, 0);
}

.video-gallery .gallery-item:hover img {
    opacity: 0.3;
    transform: translate3d(0, 0, 0);
}

.video-gallery .gallery-item .gallery-item-caption {
    text-align: left;
}

.video-gallery .gallery-item h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 15%;
    height: 1px;
    background: #fff;
    transition: transform 0.3s;
    transform: translate3d(-100%, 0, 0);
}

.video-gallery .gallery-item:hover h2::after {
    transform: translate3d(0, 0, 0);
}

.video-gallery .gallery-item:hover p {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/*
@media screen and (max-width: 784px) {
  .video-gallery {
    width: 100%;
    padding: 15px;    

  }
  .video-gallery .gallery-item {
    width: 95%;
    margin: 0 auto; 
    width: 100%;
  }
}
*/
#con1 {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
   
}
.container .thumbex {
    margin: 10px 20px 30px;
    width: 100%;
    min-width: 250px;
    max-width: 435px;
    height: 300px;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    overflow: hidden;
    outline: 2px solid white;
    outline-offset: -15px;
    background-color: blue;
    box-shadow: 5px 10px 40px 5px rgba(0, 0, 0, 0.5);
}

    .container .thumbex .thumbnail {
        overflow: hidden;
        min-width: 250px;
        height: 300px;
        position: relative;
        opacity: 0.88;
        backface-visibility: hidden;
        transition: all 0.4s ease-out;
    }

        .container .thumbex .thumbnail img {
            position: absolute;
            z-index: 1;
            left: 50%;
            top: 50%;
            height: 115%;
            width: auto;
            transform: translate(-50%, -50%);
            backface-visibility: hidden;
        }

        .container .thumbex .thumbnail span {
            position: absolute;
            z-index: 2;
            top: calc(150px - 20px);
            left: 0;
            right: 0;
            background: #0172ae;
            padding: 10px 50px;
            margin: 0 45px;
            text-align: center;
            font-size: 24px;
            color: white;
            font-weight: 300;
            font-family: "Raleway", sans-serif;
            letter-spacing: 0.2px;
            transition: all 0.3s ease-out;
         }

        .container .thumbex .thumbnail:hover {
            backface-visibility: hidden;
            transform: scale(1.15, 1.15);
            opacity: 1;
        }

            .container .thumbex .thumbnail:hover span {
                opacity: 0;
            }
* {
    box-sizing: border-box;
}

/* Developed by Frank Tielemans */

/* CSS playground here, via these variables you can adjust the accentcolor, the position and dimensions of the bubble and textsize en color of the buttontext */

:root {
    /* Color of the background */
    --bodycolor: #efefef;
    /* Width of the columsn */
    --boxwidth: 340px;
    /* Height of the rows */
    --boxheight: 520px;
    /* Width of the bubble (it's always a circle, width and height are the same) */
    --icon-box-dimensions: 250px;
    /* DON'T TOUCH THE VALUES OF THIS VARIABLE! */
    --icon-box-dimensions-half: calc(var(--icon-box-dimensions) /2);
    /*--------------------*/
    /* How far from the top is the position of the bubble? */
    --icon-offset: -10%;
    /* Size of the font */
    --content-fontsize: 1.1em;
    /* Define a accent color, make sure it's readable */
    --accentcolor: maroon;
    /* backgroundcolor and text color of the button, unhovered.
/* Color in hovered state is the accent color */ */ --btntext-background : rgba(255,255,255,0.1);
    --btntext-color: #eee;
}

 
/* grid-container */
#container2 {
    margin: 0 auto;
    padding: 2%;
    max-width: 100%;
    height: auto;
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(var(--boxwidth), 1fr));
    grid-auto-rows: minmax(var(--boxheight), 1fr);
    grid-gap: 30px;
    justify-content: center;
    box-sizing: border-box;
}

/* this is the card selecter */
.box {
    position: relative;
    display: block;
    overflow: hidden;
    box-sizing: border-box;
    background: #efefef;
    transition: 0.5s;
}

    .box:hover {
        cursor: pointer;
        border-bottom: 1px solid rgba(0, 0, 0, 0.2);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        transform: translateY(-4px);
    }

.img-box {
    position: absolute;
    object-fit: cover;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: 0.35s cubic-bezier(.15,.78,.46,.8);
    z-index: 1;
}

    .img-box img {
        object-fit: cover;
        width: 100%;
        height: 100%;
        transition: all .5s ease-in-out;
    }

    .img-box::after {
        /*   extract the title of the article */
        content: attr(title);
        font-family: "Lato";
        position: absolute;
        left: 50%;
        transform: translate(-50%,-50%);
        top: 111%;
        z-index: 100;
        text-align: center;
        font-size: 1.05em;
        font-weight: 700;
        width: 250%;
        opacity: 1;
        border-radius: 50%;
        height: 45.5%;
        padding-top: 27px;
        /*     background: #fff radial-gradient(circle, rgba(0,0,0,0) , rgba(0,0,0,1) 300%); */
        background: #efefef;
        transition: 0.2s;
        color: #666;
        letter-spacing: -.6px;
        box-shadow: inset 0px 0 3px 3px rgba(0,0,0,0.3)
    }

    .img-box::before {
        position: absolute;
        content: attr(data-author);
        bottom: 2.5%;
        font-weight: 400;
        color: white;
        z-index: 2001;
        text-align: center;
        width: 100%;
        color: var(--accentcolor);
        font-variant: small-caps;
        text-transform: lowercase;
        font-size: 0.8em;
        opacity: 1;
    }

.container .box:hover .img-box {
    top: var(--icon-offset);
    left: calc(50% - var(--icon-box-dimensions-half));
    width: var(--icon-box-dimensions);
    height: var(--icon-box-dimensions);
}

    .container .box:hover .img-box:after, .container .box:hover .img-box:before {
        opacity: 0;
    }



    .container .box:hover .img-box img {
        border: 2px solid white;
        border-radius: 50%;
        filter: saturate(70%) contrast(120%);
    }

.box:hover .content {
    bottom: 0;
    opacity: 1;
    transform: scale(1);
}


.content {
    position: absolute;
    opacity: 1;
    bottom: -50%;
    width: 100%;
    height: 60%;
    padding: 3em;
    font-size: 0.8em;
    text-align: center;
    line-height: 1.4;
    transition: bottom 0.35s cubic-bezier(.15,.78,.46,.8), transform 0.3s;
    color: #000;
    opacity: 0;
}

    .content h2 {
        position: relative;
        font-size: 1.4em;
        font-weight: 700;
    }


    .content h3 {
        font-size: 1em;
        text-transform: lowercase;
        font-variant: small-caps;
        font-weight: 700;
        margin-bottom: 0.5em;
        color: var(--accentcolor);
        margin-bottom: 0.5em;
    }

    .content p {
        font-size: var(--content-fontsize);
        font-weight: 100;
        margin-bottom: 0.5em;
    }

button.ghost-btn {
    position: absolute;
    z-index: 10;
    margin-top: 1em;
    text-align: center;
    border: 0;
    border-radius: 24px;
    padding: 8px 38px;
    background: var(--btntext-background);
    color: var(--accentcolor);
    border: 1px solid var(--accentcolor);
    font-weight: 100;
    transition: 1s;
    font-size: 0.8em;
    bottom: 5%;
    left: 50%;
    transform: translate(-50%,-50%);
}

    button.ghost-btn:hover {
        cursor: pointer;
        background: var(--accentcolor);
        color: var(--btntext-color);
    }

a:hover {
    text-decoration: none !important;
}

.dedcription-btn {
    width: 100%;
    position: relative;
    display: inline-block;
    border-radius: 30px;
    background-color: #fcfcfc;
    color: #fa5e04;
    font-weight:900;
    text-align: center;
    font-size: 18px;
    padding: 9px 0;
    transition: all 0.3s;
    padding-right: 40px;
    margin: 20px 5px;
    box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.06);
}

    .dedcription-btn .btn-icon {
        background-color:  #0a2e41 ;
        width: 92px;
        height: 45px;
        float: right;
        position: absolute;
        border-radius: 30px 30px 30px 0;
        ;
        right: 0px;
        top: 0px;
        transition: all 0.3s;
    }

.name-descripeion {
    position: relative;
    z-index: 9999;
}

.btn-icon::after {
    content: "";
    width: 0;
    height: 0;
    border-top: 45px solid #fcfcfc;
    border-right: 40px solid transparent;
    position: absolute;
    top: 0px;
    left: 0px;
}

.dedcription-btn:hover .btn-icon {
    width: 100%;
    border-radius: 30px;
}

    .dedcription-btn:hover .btn-icon::after {
        display: none;
        opacity: 0.1;
    }

.btn-icon i {
    position: absolute;
    right: 25px;
    top: 15px;
    color: #fff;
}

.dedcription-btn:hover {
    color: #fff !important;
}

.heart {
    background-color: #052c51 !important;
}

.book {
    background-color: #045a87 !important;
}

.brain {
    background-color: #4dafe3 !important;
}
.bl {
    background-color: #107db7 !important;
}

.nl {
    background-color: #4dafe3 !important;
}
.gl {
    background-color: #0172AE !important;
}

 



.hover-box {
    display: flex;
    width: 100%;
    
    justify-content: center;
    align-items: center;
}

.cursor,
.cursor2,
.cursor3 {
    position: fixed;
    border-radius: 50%;
    transform: translateX(-50%) translateY(-50%);
    pointer-events: none;
    left: -100px;
    top: 50%
}

.cursor {

    background-color: rgba(0, 0, 0, 0.34);
    height: 20px;
    width: 20px;
    z-index: 99999;
}

.cursor2, .cursor3 {
    height: 36px;
    width: 36px;
    z-index: 99998;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out
}

    .cursor2.hover,
    .cursor3.hover {
        -webkit-transform: scale(2) translateX(-25%) translateY(-25%);
        transform: scale(2) translateX(-25%) translateY(-25%);
        border: none
    }

.cursor2 {
    background: rgba(0, 0, 0, 0.45);
 
}

    .cursor2.hover {
        opacity: 0.1;
    }
.nav-tabs.wizard {
    background-color: transparent;
    padding: 0;
    width: 100%;
    margin: 1em auto;
    border-radius: .25em;
    clear: both;
    border-bottom: none;
}

    .nav-tabs.wizard li {
        width: 100%;
        float: none;
        margin-bottom: 3px;
    }

        .nav-tabs.wizard li > * {
            position: relative;
            padding: 1em .8em .8em 2.5em;
            color: #999999;
            background-color: #dedede;
            border-color: #dedede;
        }

        .nav-tabs.wizard li.completed > * {
            color: #fff !important;
            background-color: #96c03d !important;
            border-color: #96c03d !important;
            border-bottom: none !important;
        }

        .nav-tabs.wizard li.active > * {
            color: #fff !important;
            background-color: #0172ae !important;
            border-color: #0172ae !important;
            border-bottom: none !important;
        }

        .nav-tabs.wizard li::after:last-child {
            border: none;
        }

    .nav-tabs.wizard > li > a {
        opacity: 1;
        font-size: 14px;
    }

    .nav-tabs.wizard a:hover {
        color: #fff;
        background-color: #0172ae;
        border-color: #0172ae
    }

span.nmbr {
    display: inline-block;
    padding: 10px 0 0 0;
    background: #ffffff;
    width: 35px;
    line-height: 100%;
    height: 35px;
    margin: auto;
    border-radius: 50%;
    font-weight: bold;
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
    text-align: center;
}

@media(min-width:992px) {
    .nav-tabs.wizard li {
        position: relative;
        padding: 0;
        margin: 4px 4px 4px 0;
        width: 19.6%;
        float: left;
        text-align: center;
    }

        .nav-tabs.wizard li.active a {
            padding-top: 15px;
        }

        .nav-tabs.wizard li::after,
        .nav-tabs.wizard li > *::after {
            content: '';
            position: absolute;
            top: 1px;
            left: 100%;
            height: 0;
            width: 0;
            border: 45px solid transparent;
            border-right-width: 0;
            /*border-left-width: 20px*/
        }

        .nav-tabs.wizard li::after {
            z-index: 1;
            -webkit-transform: translateX(4px);
            -moz-transform: translateX(4px);
            -ms-transform: translateX(4px);
            -o-transform: translateX(4px);
            transform: translateX(4px);
            border-left-color: #fff;
            margin: 0
        }

        .nav-tabs.wizard li > *::after {
            z-index: 2;
            border-left-color: inherit
        }

    .nav-tabs.wizard > li:nth-of-type(1) > a {
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px;
    }

    .nav-tabs.wizard li:last-child a {
        border-top-right-radius: 10px;
        border-bottom-right-radius: 10px;
    }

    .nav-tabs.wizard li:last-child {
        margin-right: 0;
    }

        .nav-tabs.wizard li:last-child a:after,
        .nav-tabs.wizard li:last-child:after {
            content: "";
            border: none;
        }

    span.nmbr {
        display: block;
    }
}


figure.snip1208 {

    color: #fff;
    position: relative;
    overflow: hidden;
    margin: 10px;
    min-width: 220px;
    max-width: 310px;
    width: 100%;
    background-color: #ffffff;
    color: #000000;
    text-align: left;
    font-size: 16px;
}

    figure.snip1208 * {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        -webkit-transition: all 0.2s ease;
        transition: all 0.2s ease;
    }

    figure.snip1208 img {
        max-width: 100%;
        vertical-align: top;
        -webkit-transform-origin: 50% 100%;
        transform-origin: 50% 100%;
        -webkit-transition: all 0.4s ease;
        transition: all 0.4s ease;
    }

    figure.snip1208 figcaption {
        padding: 25px;
        position: relative;
    }

    figure.snip1208 .date,
    figure.snip1208 i {
        background-color: #1abc9c;
        top: 25px;
        color: #fff;
        left: 25px;
        min-height: 60px;
        min-width: 60px;
        position: absolute;
        text-align: center;
    }

    figure.snip1208 .date {
        -webkit-transition-delay: 0.2s;
        transition-delay: 0.2s;
        font-size: 22px;
        font-weight: 700;
        text-transform: uppercase;
    }

        figure.snip1208 .date span {
            display: block;
            line-height: 30px;
        }

        figure.snip1208 .date .month {
            font-size: 16px;
            background-color: rgba(0, 0, 0, 0.1);
        }

    figure.snip1208 i {
        line-height: 60px;
        font-size: 30px;
        -webkit-transform: rotateY(-90deg);
        transform: rotateY(-90deg);
        -webkit-transition-delay: 0s;
        transition-delay: 0s;
    }

    figure.snip1208 h3,
    figure.snip1208 p {
        margin: 0;
        padding: 0;
    }

    figure.snip1208 h3 {
        margin-bottom: 10px;
        display: inline-block;
        font-weight: 600;
        color: #333333;
        text-transform: uppercase;
    }

    figure.snip1208 p {
        font-size: 0.8em;
        margin-bottom: 20px;
        line-height: 1.6em;
    }

    figure.snip1208 button {
        border: medium none;
        padding: 10px 20px;
        background-color: #0172AE;
        font-weight: 800;
        color: #ffffff;
        letter-spacing: 2px;
        text-transform: uppercase;
        font-size: 0.8em;
    }

    figure.snip1208 a {
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        position: absolute;
        z-index: 1;
    }

    figure.snip1208:hover img,
    figure.snip1208.hover img {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    figure.snip1208:hover .date,
    figure.snip1208.hover .date {
        -webkit-transform: rotateY(90deg);
        transform: rotateY(90deg);
        -webkit-transition-delay: 0s;
        transition-delay: 0s;
    }

    figure.snip1208:hover i,
    figure.snip1208.hover i {
        -webkit-transform: rotateY(0);
        transform: rotateY(0);
        -webkit-transition-delay: 0.2s;
        transition-delay: 0.2s;
    }

    figure.snip1208:hover button,
    figure.snip1208.hover button {
        background-color: #fff;
        border-bottom: 3px solid #0a2e41;
        color: #0a2e41
    }
