﻿body {
    font-family: "Nunito Sans",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
}

.bg-light {
    background-color: rgba(0, 56, 131) !important;
    color: white;
}

.bg-secondary {
    background-color: #226C8E !important;
}

footer section > a > img {
    filter: grayscale(75%);
    transition: filter .8s ease;
}

footer section > a:hover > img {
    filter: none;
    transition: filter .2s ease;
}

/* Header BG */
@-webkit-keyframes animateWave {
    0% {
        transform: scale(1,0)
    }

    100% {
        transform: scale(1,1)
    }
}

@keyframes animateWave {
    0% {
        transform: scale(1,0)
    }

    100% {
        transform: scale(1,1)
    }
}

.header-bg {
    display: block;
    height: 300px;
    width: 100%;
    /*min-width: 600px;*/
    transform-origin: top;
    -webkit-animation: animateWave 2000ms cubic-bezier(.23,1,.32,1) forwards;
    animation: animateWave 2000ms cubic-bezier(.23,1,.32,1) forwards;
    background-image: url(img/header-bg.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media(min-width: 2000px) {
    .header-bg {
        height: 400px;
    }
}

/* pen */
.pen {
    position: relative;
    display: inline;
    width: auto
}

.pen-center {
    padding-right: 0
}

.pen:after {
    content: "";
    width: 125px;
    height: 30px;
    position: absolute;
    bottom: -25px;
    right: -30px;
    background-image: url(img/pen.svg);
    background-repeat: no-repeat;
    background-size: contain;
}

.pen-center:after {
    bottom: -30px;
    left: 50%;
    margin-left: -60px
}



/* Console */
.hidden {
    opacity: 0;
}

.console-container {
}

.console-underscore {
    display: inline-block;
    position: relative;
    top: -0.14em;
    left: 10px;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/

#team .img-fluid {
}

#team .pen-center:after {
    bottom: -19px;
    left: 50%;
    margin-left: -18px;
    width: 40px;
    height: 23px;
}

#team {
    background: #fff;
    padding: 60px 0;
}
#team > div {
    max-width: 2048px;
    margin: 0 auto;
}


#team .member {
    overflow: hidden;
    text-align: center;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
    transition: 0.3s;
}

#team .member .member-img {
    position: relative;
    overflow: hidden;
}

/*
#team .member .member-img:after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background: url(img/team-shape.svg) no-repeat center bottom;
    background-size: contain;
    z-index: 1;
}
*/

#team .member .member-info {
    padding: 10px 15px 20px 15px;
}

#team .member .member-info h4 {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 20px;
    color: #012970;
}

#team .member .member-info span {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: #aaaaaa;
}

#team .member .member-info p {
    font-style: italic;
    font-size: 14px;
    padding-top: 15px;
    line-height: 26px;
    color: #5e5e5e;
}

#team .member:hover {
    transform: scale(1.08);
    box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
}

/*--------------------------------------------------------------
# benefits
--------------------------------------------------------------*/

#benefits > div {
    max-width: 1639px;
    margin: 0 auto;
}
#benefits .grey-text {
    padding-left: 15px;
}
#benefits h5 {
    padding-left: 5px;
}