p.typeIt {
    color: #ffffff;
    width: 100%;
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -100%);
    text-align: center;
    font-size: 25px;
    font-family: console;
}

.content-center {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: consolas;
}

.container {
    width: 100%;
    padding: 0 5%;
    position: relative;
    display: flex;
    justify-content: space-between;
    max-width: 100%;
    top: 50%;
}

.container .card {
    position: relative;
    background: transparent;
    border: none;
}

.container .card .face {
    width: 300px;
    height: 200px;
    transition: 0.5s;
}

.container .card .face.face1 {
    position: relative;
    background: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    transform: translateY(100px);
}

.container .card:hover .face.face1 {
    background: #01c0fe;
    transform: translateY(0);
}

.container .card .face.face1 .content {
    opacity: 0.2;
    transition: 0.5s;
}

.container .card:hover .face.face1 .content {
    opacity: 1;
}

.container .card .face.face1 .content img {
    max-width: 200px;

}

.container .card .face.face1 .content h3 {
    margin: 10px 0 0;
    padding: 0;
    color: #fff;
    text-align: center;
    font-size: 1.5em;
}

.container .card .face.face2 {
    position: relative;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    transform: translateY(-100px);
}

.container .card:hover .face.face2 {
    transform: translateY(0);
}

.container .card .face.face2 .content p {
    margin: 0;
    padding: 0;
}

.container .card .face.face2 .content a {
    margin: 15px 0 0;
    display: inline-block;
    text-decoration: none;
    font-weight: 900;
    color: #333;
    padding: 5px;
    border: 1px solid #333;
}

.container .card .face.face2 .content a:hover {
    background: #333;
    color: #fff;
}

/*******************************/
/* NAV */
/*******************************/
.top-content {
    display: flex;
    flex-direction: row;
    color: rgb(78, 76, 76);
}

.top-content .left-text {
    width: 80%;
    display: flex;
    flex-direction: column;
}

.left-text .visual-text {
    text-align: left;
    font-size: 44px;
    font-weight: bold;
}

.left-text a {
    color: rgb(73, 73, 73);
    font-size: 17px;
    margin-top: 20px;
}

.left-text a {
    color: rgb(46, 45, 45);
    text-decoration: none;
}

.top-content .logo {
    width: 20%;
}

.center-content {
    width: 35%;
    margin: 0 auto;
    margin-top: 0px;
    margin-top: 70px;
    color: rgb(88, 88, 88);
}

.center-content hr {
    border: solid 0.5px;
}

#nav {
    height: 100px;
    background: transparent;
    display: flex;
    position: fixed;
    width: 100%;
    z-index: 99999;
    transition: all ease .5s;
    max-width: 100%;
    justify-content: center;
}

#nav-links {
    color: #fff;
    padding: 20px;
    font-size: 18px;
    transition: all ease .5s;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    width: 100%;
}

#nav-links ul {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    font-family: console;
}

#nav-links li {
    margin: 0 10px;
}

#nav-links li a {
    text-decoration: none;
    color: #fff;
}

#nav-links .logo span {
    text-transform: uppercase;
    letter-spacing: -1px;
    font-weight: bolder;
    font-style: italic;
    font-size: 30px;
}

#nav.shrink {
    height: 70px;
    background: #fff;
    transition: all ease .5s;
}

#nav.shrink #nav-links {
    padding: 10px;
    transition: all ease .5s;
}

#nav.shrink #nav-links li a,
#nav.shrink .logo span {
    color: rgb(32, 32, 32);
    transition: all ease .5s;
}

.intro-content {
    display: table;
    height: 100%;
    text-align: center;
    width: 100%;
    color: #fff;
}

.intro-content-inner {
    display: table-cell;
    height: 100%;
    vertical-align: middle;
}

h5 {
    font-size: 15px;
    letter-spacing: 2px;
    line-height: 23px;
    font-weight: 600;
}

p.lead,
.lead {
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
}

.intro-content .row {
    justify-content: center;
}
.display-mobile {
    display: none;
}
.btn-hv {
    min-width: 160px;
    width: fit-content;
    width: -moz-fit-content;
    background-color: transparent;
    padding: 0 30px;
    height: 50px;
    font-family: "Open Sans", sans-serif;
    text-transform: uppercase;
    font-size: 14px;
    color: #01c0fe;
    letter-spacing: 2.8px;
    font-weight: 700;
    line-height: 1.6;
    box-shadow: 0 15px 40px -10px rgba(0, 0, 0, 0.3);
    position: relative;
    transition: all 0.4s ease;
    cursor: pointer;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 0;
    /* btn-hv text */
}

.btn-hv a {
    z-index: 1;
    text-align: center;
    color: #fff !important;
}

.btn-hv:before,
.btn-hv:after {
    content: "";
    position: absolute;
    width: 4px;
    height: 100%;
    top: 0;
    transition: all 0.4s ease;
    background-color: #01c0fe;
}

.btn-hv:before {
    left: 0;
}

.btn-hv:after {
    right: 0;
}

.btn-hv:hover {
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px -12px rgba(0, 0, 0, 0.2);
    letter-spacing: 2px;
    color: white;
}

.btn-hv:hover:before,
.btn-hv:hover:after {
    width: 51%;
}

@media (max-width: 1400px) {
    p.typeIt {
        top: 31%;
    }
    .content-center .container {
        padding: 0 5%;
    }
}

@media (max-width: 1200px) {
    #nav {
        height: 0;
    }

    #nav-links ul {
        margin: auto;
    }

    .container {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        margin-top: 437px;
    }

    #nav .logo {
        display: flex;
        justify-content: center;
        margin-bottom: 20px;
    }

    .btn-hv {
        border: none;
        background: transparent;
        text-transform: uppercase;
    }
}

@media (min-width: 728px) {
   
}

@media (max-width: 428px) {
    #nav {
        position: relative;
        padding: 0;
    }

    p.typeIt {
        top: 50%;
    }

    .navbar-default {
        display: none !important;
    }
    .display-mobile {
        display: block;
    }

    .text-write {
        display: none;
    }

    .container {
        margin-top: 10px;
        margin-bottom: 20px;
    }
    .navbar-collapse ul {
        padding: 10px 20px;
    }
    .navbar-collapse ul li {
        padding: 10px 20px;
        justify-content: center;
        display: flex;
    }
    .jumbotron {
        width: 100%;
    }
    .jumbotron .btn-primary {
       background-color: #01c0fe;
       color: #fff !important;
       border-color: #01c0fe;
    }
    .jumbotron .lead a {
        color: #01c0fe;
    }
    
}