* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

/* Navigation Bar */
.nav {
    width: 100%;
    height: 8vh;
    background-color: rgb(24, 23, 23);
}

.navbar-brand {
    font-size: 35px;
}

.container-fluid {
    width: 85%;
    margin: auto;
}

.col {
    padding-left: 680px;
}

.nav-item {
    padding-left: 30px;
    padding-right: 30px;
    font-size: 22px;
}

.nav-item a {
    color: white;
    display: inline-block;
    padding: 5px 10px;
    position: relative;
}

.nav-item a:hover {
    color: #DC143C;
}

.nav-item a:after {
    background: none repeat scroll 0 0 transparent;
    bottom: 0;
    content: "";
    display: block;
    height: 2px;
    left: 50%;
    position: absolute;
    background: #DC143C;
    transition: width 0.3s ease 0s, left 0.3s ease 0s;
    width: 0;
}

a:hover:after {
    width: 100%;
    left: 0;
}

@media screen and (max-height: 300px) {
    ul {
        margin-top: 40px;
    }
}


/* Banner */
.ban {
    width: 100%;
    height: 80vh;
    background-image: url(./ban4.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.banrap {
    height: 80vh;
    background-color: rgb(0, 0, 0, 0.3);
}

.animate-charcter {
    padding-top: 360px;
    margin-left: 350px;
    background-image: linear-gradient(-225deg,
            #fe96ae 0%,
            #fffefb 29%,
            #fff713 67%,
            #ff0055 100%);
    background-size: auto auto;
    background-clip: border-box;
    background-size: 200% auto;
    color: #fff;
    background-clip: text;
    text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textclip 2s linear infinite;
    display: inline-block;
    font-size: 50px;
    font-family: "Space Grotesk", sans-serif;
    font-weight: lighter;
}

@keyframes textclip {
    to {
        background-position: 200% center;
    }
}

.col-md-12 p {
    width: 70%;
    text-align: justify;
    padding-top: 30px;
    margin-left: 230px;
    font-size: 18px;
}



/* Middle */
.mid {
    width: 100%;
    height: 60vh;
}

.midrap {
    width: 80%;
    margin: auto;
}

.tilesWrap {
    padding: 0;
    margin: 50px auto;
    list-style: none;
    text-align: center;
}

.tilesWrap li {
    display: inline-block;
    width: 20%;
    min-width: 200px;
    max-width: 230px;
    padding: 80px 20px 40px;
    position: relative;
    vertical-align: top;
    margin: 10px;
    font-family: 'helvetica', san-serif;
    min-height: 25vh;
    background: #262a2b;
    border: 1px solid #252727;
    text-align: left;
}

.tilesWrap li h2 {
    font-size: 114px;
    margin: 0;
    position: absolute;
    opacity: 0.2;
    top: 50px;
    right: 10px;
    transition: all 0.3s ease-in-out;
}

.tilesWrap li h2:hover {
    background-color: azure;
}

.tilesWrap li h3 {
    font-size: 20px;
    color: #b7b7b7;
    margin-bottom: 5px;
}

.tilesWrap li p {
    font-size: 16px;
    line-height: 18px;
    color: #b7b7b7;
    margin-top: 5px;
}

.tilesWrap li:after {
    content: '';
    position: absolute;
    width: 40%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(255, 255, 255, 0.02);
}



/* footer 2 */
.foot2 {
    width: 100%;
    height: 7vh;
    background-color: black;
}

.footrap2 {
    width: 100%;
    margin: auto;
}

.footrap2 h3 {
    padding-top: 2vh;
    font-size: 20px;
    color: white;
    text-align: center;
    font-style: oblique;
}