a {
    text-decoration: none;
    color: red;
}

nav {
    margin-top: 15px !important;
    margin-bottom: 100px !important;
}

nav a {
    color: black;
    cursor: pointer;
    text-transform: uppercase;
    font-size: .85em;
    letter-spacing: 1px;
    padding: 10px;
    text-align: center;
    margin-right: 5px;
}

nav a.selected {
    background: black;
    color: white;
}

nav a:hover {
    background: #dddddd;
    color: black;
}

.nav-icon img {
    max-height: 100px;
}

body {
    font-family: sans-serif;
}


/* Set Widths*/

.w-common {
    max-width: 1200px;
}

.w-full {
    width: 100%;
}


#myVideo {
    position: fixed;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: -10;
}

@keyframes fadeInVid {
    0% {
        opacity: 0
    }

    to {
        opacity: .25
    }
}

.animate__fadeInVid {
    -webkit-animation-name: fadeInVid;
    animation-name: fadeInVid
}

.full-height {
    height: 70vh;
    justify-content: center;
}

.home-btn {
    color: black;
    width: 35px;
    height: 35px;
    display: flex;
    border: 3px solid black;
    justify-content: center;
    align-items: center;
    border-radius: 360px;
    margin-right: 5px;
}


.alert {
    padding: 15px;
    background: #aeffc6;
    line-height: 31px;
    font-size: 1.25em;
}

.alert-box {
    background: white;
    color: black;
    font-size: 0.8em;
    padding: 5px;
    border-radius: 5px;
    font-weight: 600;
}

@media screen and (min-width: 1620px) {

    .w-common {
        width: 60vw;
        max-width: 1500px;
    }

    .nav-icon {
        display: none;
    }

    footer {
        height: 100vh;
        width: 175px;
        position: fixed;
        top: 0px;
        border-right: 1px solid #d0d0d0;
    }

    footer img {
        max-width: 150px;
    }

    footer p {
        margin-left: 9px;
        font-size: .75em;
        letter-spacing: 1px;
    }
}

@media screen and (max-width: 1620px) {



    footer {
        display: flex;
        align-items: center;
        margin: 100px 15px;
    }

    footer img {
        max-width: 100px;
    }

    footer p {
        margin-left: auto;
    }


}


.hidden {
    display: none;
}

h1 {
    font-size: 4em;
}

h2 {
    text-transform: uppercase;
    letter-spacing: 2px;
}

h2::before,
h2::after {
    display: block;
    content: " ";
    border: 1px solid black;
    margin: 15px auto;
}

/* Set Margins & Padding */

.m-common {
    margin: 0px;
}

.m-large {
    margin: 60px;
}

.m-center {
    align-content: center;
    align-items: center;
    align-self: center;
    justify-content: center;
    justify-items: center;
    justify-self: center;
    margin: auto;
}

.p-common {
    padding: 15px;
}

.p-large {
    padding: 60px;
}

.p-none {
    padding: 0px;
}

.j-left {
    justify-content: left;
}

.j-right {
    justify-content: right;
}


.space-it {
    margin-top: 100px;
    margin-bottom: 100px;
}

.m-bottom {
    margin-bottom: 150px;
}

/* Set Flex */

.flex {
    display: flex;
}

.row {
    flex-direction: row;
}

.col {
    flex-direction: column;
}

.wrap {
    flex-wrap: wrap;
}

.fill > * {
    display: flex;
    height: 100%;
    margin: 5px;
    align-content: center;
    align-items: center;
    align-self: center;
    justify-content: center;
    justify-items: center;
    justify-self: center;
}

/* Set Card One */

.card-one > * {
    display: flex;
    flex-direction: column;
    min-height: 420px;
    height: 30vw;
    flex-grow: 1;
    padding-bottom: 15px;
    color: white;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border: 0px solid red;
}



.card-one > * > div {
    display: flex;
    flex-direction: column;
    text-align: left;
    padding: 15px;
    margin-right: auto;
}

.card-one > a {
    background-size: cover;
    background-position: center;
    cursor: pointer;
    background-blend-mode: color;
    transition: .5s ease;

}

.card-one > a:hover {
    filter: grayscale(0);
    filter: grayscale(0);
    border: 10px solid red;
}


.card-one > a > div:nth-child(1) {
    font-weight: bolder;
    text-transform: uppercase;
    padding-bottom: 0px;
    margin-top: auto;
}

.card-one > a > div:nth-child(2) {
    padding-top: 15px;
    max-height: 50px;
    overflow: hidden;
    -webkit-mask-image: -webkit-gradient(linear, left 10%, left bottom, from(rgba(0, 0, 0, 1)), to(rgba(0, 0, 0, 0)))
}

.card-one > a > div:nth-child(3) {
    padding-top: 15px;
}


.card-one > a::after {
    display: block;
    content: "VIEW MORE";
    height: auto;
    background: red;
    color: white;
    padding: 5px;
    margin-right: auto;
    margin-left: 15px;
    margin-top: 5px;
    transition: .5s ease;
}

/* Set Card Two */

.card-two > * {
    display: flex;
    flex-direction: column;
    min-height: 420px;
    height: 20vw;
    flex-grow: 1;
    padding-bottom: 15px;
    color: white;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border: 0px solid red;
}

.card-two > * > div {
    display: flex;
    flex-direction: column;
    text-align: left;
    padding: 15px;
    margin-right: auto;
}

.card-two > div {
    background-size: cover !Important;
    background-position: center !Important;
    transition: .5s ease;
}

.card-two > div:hover {}


.card-two > div > div:nth-child(1) {
    font-size: .75em;
    font-weight: bolder;
    text-transform: uppercase;
    padding-bottom: 0px;
    margin-top: auto;
}

.card-two > div > div:nth-child(2) {
    font-size: 1.75em;
    font-weight: bolder;
    padding-bottom: 0px;
    padding-top: 5px;
}

.card-two > div > div:nth-child(3) {
    display: flex;
    flex-direction: row;
    transition: .5s ease;
    overflow: hidden;
    padding: 0px 15px;
    height: 0px;
}

.card-two > div:hover > div:nth-child(3) {
    padding: 15px 15px;
    height: 30px;
}

.card-two > div > div:nth-child(3) > a {
    color: white;
    cursor: pointer;
    background: red;
    margin-right: 5px;
    padding: 5px 15px;
    border-radius: 3px;
    text-transform: uppercase;
    font-size: .75em;
    letter-spacing: 1px;
    height: fit-content;
}

.card-two > div > div:nth-child(3) > a:nth-child(2) {
    background: white;
    color: red;
}

.card-two > div > div:nth-child(3) > a:hover {
    filter: brightness(75%)
}

/* Set Card three */

.card-three > * {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding-bottom: 15px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border: 0px solid red;
}

.card-three > * > div {
    display: flex;
    flex-direction: column;
    text-align: left;
    padding: 15px;
    margin-right: auto;
}

.card-three > div {
    background-size: cover !Important;
    background-position: center !Important;
    transition: .5s ease;
}

.card-three > div:hover {}


.card-three > div > div:nth-child(1) {
    color: grey;
    font-size: .75em;
    font-weight: bolder;
    text-transform: uppercase;
    padding-bottom: 0px;
    margin-top: auto;
}

.card-three > div > div:nth-child(2) {
    font-size: 1.75em;
    font-weight: bolder;
    padding-bottom: 0px;
    padding-top: 5px;
}

.card-three > div > div:nth-child(3) {
    display: flex;
    flex-direction: row;
    transition: .5s ease;
    padding: 0px 15px;
}


.card-three > div > div:nth-child(3) > a {
    cursor: pointer;
    color: white;
    background: red;
    margin-right: 5px;
    padding: 5px 15px;
    border-radius: 3px;
    text-transform: uppercase;
    font-size: .75em;
    letter-spacing: 1px;
    height: fit-content;
}

.card-three > div > div:nth-child(3) > a:nth-child(2) {
    background: white;
    color: red;
}

.card-three > div > div:nth-child(3) > a:hover {
    filter: brightness(75%)
}

.card-three a {
    margin-right: auto;
    padding: 0px 15px;
}

/* Set Card four */

.card-four > * {
    display: flex;
    flex-direction: column;
    min-height: 420px;
    height: 20vw;
    flex-grow: 1;
    padding-bottom: 15px;
    color: white;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border: 0px solid red;
}

.card-four > * > div {
    display: flex;
    flex-direction: column;
    text-align: left;
    padding: 15px;
    margin-right: auto;
}

.card-four > div {
    background-size: cover !Important;
    background-position: center !Important;
    transition: .5s ease;
}

.card-four > div:hover {}


.card-four > div > div:nth-child(1) {
    font-size: .75em;
    font-weight: bolder;
    text-transform: uppercase;
    padding-bottom: 0px;
    margin-top: auto;
}

.card-four > div > div:nth-child(2) {
    font-size: 1.75em;
    font-weight: bolder;
    padding-bottom: 0px;
    padding-top: 5px;
}

.card-four > div > div:nth-child(3) {
    display: flex;
    flex-direction: row;
    transition: .5s ease;
    overflow: hidden;
    padding: 0px 15px;
    height: 0px;
}

.card-four > div:hover > div:nth-child(3) {
    padding: 15px 15px;
    height: 30px;
}

.card-four > div > div:nth-child(3) > a {
    color: white;
    cursor: pointer;
    background: red;
    margin-right: 5px;
    padding: 5px 15px;
    border-radius: 3px;
    text-transform: uppercase;
    font-size: .75em;
    letter-spacing: 1px;
    height: fit-content;
}

.card-four > div > div:nth-child(3) > a:nth-child(2) {
    background: white;
    color: red;
}

.card-four > div > div:nth-child(3) > a:hover {
    filter: brightness(75%)
}



.home-text {
    font-family: serif;
    font-weight: 900;
    max-width: 500;
    font-size: 60px;
    line-height: 58px;
    margin-bottom: 40px;
    margin-right: auto;
}

.home-blocky {
    background: red;
    padding: 5px 15px;
    color: white;
    width: fit-content !important;
    margin-bottom: 30px;
    margin-right: auto;
}



/* Set Flex Columns Small Screen*/

@media screen and (max-width: 700px) {

    .one,
    .two,
    .three,
    .four {
        flex-direction: column;
    }

    .one > * {
        width: 100%;
    }

    .two > * {
        width: 100%;
    }

    .three > * {
        width: 100%;
    }

    .four > * {
        width: 100%;
    }

    .card-two > div > div:nth-child(3),
    .card-four > div > div:nth-child(3) {
        display: flex;
        flex-direction: row;
        transition: .5s ease;
        overflow: hidden;
        padding: 15px;
        height: 30px;
    }

    .card-two > div:hover > div:nth-child(3),
    .card-four > div:hover > div:nth-child(3) {
        height: 30px;
    }

    .clear-mobile {
        display: none;
    }

    html,
    body {
        overflow-x: hidden;
    }

    body {
        position: relative
    }


    #mobile-header {
        z-index: 101;
        display: flex;
        padding: 15px;
        max-height: 100px;
        width: 100vw;
        background: white;
        border-bottom: 1px solid #d0d0d0;
        position: fixed;
        top: 0px;
        left: 0px;
        overflow: hidden;
        align-items: center;
    }

    #mobile-header img {
        max-height: 80px;
    }

    .nav-icon {
        display: none;
    }

    nav {
        position: fixed;
        top: 0px;
        left: 150vw;
        width: 100vw;
        background: white;
        z-index: 100;
        height: 150vh;
        padding-top: 95px !important;
        transition: .5s ease;
    }

    nav.open {
        left: 0px;
    }

    nav a {
        font-size: 1.2em;
        padding: 25px 15px;
    }

    .menu-toggle {
        width: 25px;
        height: 80px;
        position: fixed;
        top: 0px;
        right: 0px;
        padding: 15px;
        cursor: pointer;
        display: flex;
        align-items: center;
        transition: .5s ease;
    }

    .menu-toggle-bar {
        content: "";
        width: 25px;
        height: auto;
        border-bottom: 1px solid black;
        transition: .5s ease;
    }

    .menu-toggle-bar::before,
    .menu-toggle-bar::after {
        position: relative;
        display: block;
        content: "";
        width: 25px;
        height: auto;
        border-bottom: 1px solid black;
        transition: .5s ease;
    }

    .menu-toggle-bar::before {
        opacity: 1;
        top: -8px;
    }

    .menu-toggle-bar::after {
        opacity: 1;
        top: 10px;
    }

    .open.menu-toggle {
        transform: rotate(720deg);
    }

    .open .menu-toggle-bar {
        transform: rotate(45deg);
    }

    .open .menu-toggle-bar::before {
        opacity: 0;
        transform: rotate(45deg);
    }

    .open .menu-toggle-bar::after {
        transform: rotate(90deg);
        top: 2px;
    }

    .p-top-mob {
        margin-top: 150px;
    }

    .seconds {
        display: none !important;
    }

}

/* Set Flex Columns Medium Screen*/

@media screen and (min-width: 700px) {


    .one > * {
        width: 100%;
    }

    .two > * {
        width: 48%;
    }

    .three > * {
        width: 32%;
    }

    .four > * {
        width: 48%;
    }

    #mobile-header {
        display: none;
    }
}

/* Set Flex Columns Large Screen*/

@media screen and (min-width: 1200px) {


    .one > * {
        width: 100%;
    }

    .two > * {
        width: 48%;
    }

    .three > * {
        width: 32%;
    }

    .four > * {
        width: 24%;
    }

}
