* {
    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;
    }
}


/* Middle */
.mid {
    width: 100%;
    height: 90vh;
    background-image: url(./ban.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.midrap {
    width: 80%;
    margin: auto;
    height: 90vh;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.6));
}

.midrap1 {
    display: grid;
    grid-template-columns: auto auto;
    grid-column-gap: 20px;
}

.midrap p {
    color: gold;
    padding-top: 70px;
    text-align: center;
    font-size: 40px;
    font-weight: 600;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    /* text-shadow: 1px 2px red; */
}

.box2 h3 {
    text-align: left;
    color: white;
    padding-top: 60px;
    font-size: 40px;
    padding-bottom: 20px;
    padding-left: 90px;
}

.box2 h4 {
    color: white;
    padding-bottom: 50px;
    padding-left: 90px;
    font-size: 30px;
}

.button {
    margin-left: 80px;
    font-size: 2em;
    padding: 10px;
    color: #fff;
    border: 2px solid white;
    border-radius: 20px/50px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease-out;
}

.button:hover {
    background: rgb(191, 3, 3);
}

.overlay {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: opacity 500ms;
    visibility: hidden;
    opacity: 0;
}

.overlay:target {
    visibility: visible;
    opacity: 1;
}

.popup {
    margin: 70px auto;
    padding: 20px;
    border-radius: 5px;
    width: 40%;
    height: 90vh;
    position: relative;
}

.popup img {
    height: 50vh;
}

.popup .close {
    position: absolute;
    top: 20px;
    right: 50px;
    transition: all 200ms;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    color: #333;
}

.popup .close:hover {
    color: red;
}

@media screen and (max-width: 700px) {
    .popup {
        width: 100%;
    }
}

#btn {
    color: white;
    text-shadow: 1px 1px black;
    font-weight: bold;
    margin-top: 15px;
    padding: 10px;
    background-color: crimson;
    border: 2px solid white;
    font-size: 15px;
    margin-right: 20px;
}

#btn1 {
    color: crimson;
    font-weight: bold;
    margin-top: 15px;
    padding: 10px;
    background-color: white;
    border: 2px solid crimson;
    font-size: 15px;
}


/* 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;
}