
.ourservices {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10vw;
}

.ourservices > * {
    /*border: 1px solid grey;*/
}

/* background dashed line animation */
.bgdashedline {
    stroke-dasharray: 110 80;
    animation: move_bg_dash 10s linear infinite;
}

@keyframes move_bg_dash {
    to {
        stroke-dashoffset: -190;
    }
}

/* button highlight animation */
.ourservices .buttonhighlight {
    position: relative;
    overflow: hidden;
} 

    .ourservices .buttonhighlight:after {
        position: absolute;
        left: -3vw;
        width: 2vw;
        height: 170%;
        background-color: rgba(255, 255, 255, 0.1);
        content: "";
        -webkit-transform: rotate(20deg);
        -moz-transform: rotate(20deg);
        -o-transform: rotate(20deg);
        -ms-transform: rotate(20deg);
        transform: rotate(20deg);
    }

    @keyframes btnhighlight {
        0%   {left: -3vw;}
        50%  {width: 6vw;}
        90%  {width: 2vw;}
        100% {left: 16vw}
      }

    
    /* applied on following buttons */
    #btnourservices:hover > .buttonhighlight:after {
        animation: btnhighlight 1s ease-out 1;
    }

    #btnportfolio:hover > .buttonhighlight:after {
        animation: btnhighlight 1s ease-out 1;
    }


/* button */
.ourservices .button {
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: #1CBA94;
    border-radius: 10vw;
    padding: 0.5vw 2vw;
    text-align: center;
    width: fit-content;

    -webkit-box-shadow: 0 0.3vw 0px rgba(0,0,0,0.08);
    -moz-box-shadow:0 0.3vw 0px rgba(0,0,0,0.08);
    box-shadow: 0 0.3vw 0px rgba(0,0,0,0.08);
}

    .ourservices .button p {
        font-family: PoppinsBold;
        color: white;
        font-size: 1.3vw;
    }

    .ourservices .button img {
        width: 0.5vw;
        margin-left: 1vw;
    }


/* spacer */
.ourservices .spacer {
    height: 14vw;
    z-index: -1;
    overflow: hidden;
}

    .ourservices .spacer svg {
        height: 20vw;
        margin-top: -2vw;
    }


/* content */
.ourservices .contentblock {
    width: 70%;
    min-height: 25vw;
    background-color:#F1F4F6;
    border-radius: 1vw;
    display: flex;
    flex-direction: row;
}

.ourservices .contentblock > * {
    /*border: 1px solid blue;*/
}

    .ourservices .productivity {
        background-image: url('../img/productivity_blob.svg');
        background-size: 40vw;
        background-repeat: no-repeat;
        background-position-x: -16vw;
        background-position-y: -17vw;
    }

    .ourservices .designdevelompent {
        background-image: url('../img/designdevelopment_blob.svg');
        background-size: 30vw;
        background-repeat: no-repeat;
        background-position-x: 35vw;
        background-position-y: 10vw;
    }

        .ourservices .productivity > :first-child, .ourservices .designdevelompent > :last-child {
            flex: 1;
            width: 12vw;
            display: flex;
            align-items: flex-end;
            /*border: 2px solid red;*/
        } 

        .ourservices .productivity > :last-child, .ourservices .designdevelompent > :first-child {
            flex: 3;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 2vw 4vw;
            /*border: 2px solid blue;*/
        } 
        

    .ourservices .bgshadow {
        position: relative;
    }

        .ourservices .bgshadow:after {
            position: absolute;
            z-index: -1;
            content: "";
            bottom: -2%;
            left: 2.5%;
            width: 95%;
            height: 90%;
            background: rgba(0,0,0,0.08);
            -webkit-transform: rotate(-0.5deg);
            -moz-transform: rotate(-0.5deg);
            -o-transform: rotate(-0.5deg);
            -ms-transform: rotate(-0.5deg);
            transform: rotate(-0.5deg);
            border-radius: 1vw;
        }

/* contentblock content (productivity + design & development) */

.ourservices .contentblock img {
    height: 13vw;
    position: relative;
}

    .ourservices .productivity img {
        left: -5vw;
        bottom: 3vw;
    }

    .ourservices .designdevelompent img {
        right: 9vw;
        bottom: -1vw;
        height: 17vw;
    }


.ourservices .contentblock .meerweten {
    background-color: #194268;
    font-family: PoppinsRegular;
    color: white;
    border-radius: 10vw;
    font-size: 1vw;
    padding: 0.5vw 1vw;
    width: fit-content;
    margin: 0px auto;
    margin-top: 2vw;
}