﻿@import url(https://fonts.googleapis.com/css?family=Dosis:300,400);

.body-def{
    overflow-x: hidden !important;
    color: white;
}

.p-def {
    font-size: 90px;
}

.button-def {
    background-color: transparent;
    display: block;
    margin: auto;
    padding: 15px 40px;
    font-size: 26px;
    font-weight: 500;
    color: white;
    border-color: white;
    border-width: 4px;
    letter-spacing: 2px;
    border-radius: 10px;
    position: relative;
    transition: all .5s;
}

    .button-def span {
        position: relative;
        z-index: 2;
    }

    .button-def:after {
        position: absolute;
        content: "";
        top: 0;
        left: 0;
        width: 0;
        height: 100%;
        background: white;
        transition: all .5s;
    }

    .button-def:hover {
        color: black;
        transition: all .35s;
    }

    .button-def:hover:after {
        width: 100%;
    }

a.hidden-links {
    color: white;
    font-weight: 500;
    text-decoration: none;
    transition: all .35s ease-in-out;
}

    /* effect-shine */
    a.hidden-links:hover {
        -webkit-mask-image: linear-gradient(-75deg, rgba(0,0,0,.6) 40%, #000 50%, rgba(0,0,0,.6) 70%);
        -webkit-mask-size: 200%;
        animation: shine 2s infinite;
    }

    @-webkit-keyframes shine {
        from {
            -webkit-mask-position: 150%;
        }

        to {
            -webkit-mask-position: -50%;
        }
    }

.menu-links {
    color: white;
    float: right;
    margin: 25px 30px;
    font-size: 20px;
    text-decoration: none white;
    position: relative;
}

    .menu-links::before {
        content: "";
        position: absolute;
        display: block;
        width: 100%;
        height: 2px;
        bottom: 0;
        left: 0;
        background-color: #fff;
        transform: scaleX(0);
        transform-origin: top left;
        transition: transform 0.3s ease;
    }

    .menu-links:hover {
        color: white;
        transition: all .35s ease-in-out;
    }

        .menu-links:hover::before {
            transform: scaleX(1);
        }

div.back_vid {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: -1;
    overflow-x: hidden !important;
}

img.center {
    display: block;
    margin: auto;
    width: 15em;
    top: 0.75em;
}

p.center-text{
    margin-top: 1%;
    margin-bottom: 5%;
    text-align: center;
    font-size: 40px;
    color: white;
}

.inline{
    display:inline-block;
}

p.inline {
    vertical-align: top;
    margin-top: 1%;
    margin-left: 10px;
    margin-bottom: 1%;
}

.row {
    margin-bottom: 10px;
    display: flex;
}

    .row .row {
        margin: 0;
    }

    .row > * {
        padding: 5px;
        flex: 1;
    }

.one-half {
    width: calc(100% * 1/2);
    flex: none;
}

.two-thirds {
    width: calc(100% * 2/3);
    flex: none;
}

.three-quarters {
    margin-top: 20px;
    margin-bottom: 20px;
    width: calc(100% * 3/4);
    flex: none;
}

.top-hundred {
    margin-top: 100px;
}

@media(max-width: 1871px){
    .menu-links {
        margin: 15px 20px;
        font-size: 20px;
    }
}

@media(max-width: 1632px) {
    .menu-links {
        margin: 15px 15px;
        font-size: 20px;
    }
}

@media(max-width: 1512px) {
    .menu-links {
        margin: 12px 12px;
        font-size: 18px;
    }
}

@media(max-width: 1359px) {
    .menu-links {
        margin: 12px 12px;
        font-size: 16px;
    }

    p {
        font-size: 72px;
    }
}

@media (max-width: 600px) {
    .row {
        flex-direction: column;
    }

        .row > * {
            width: 100%;
            flex: none;
        }

        .row .row {
            margin: 15px -15px -15px;
        }
}

/*Accordions*/
details {
    display: block;
    margin: auto;
    border: 1px solid #d4d4d4;
    padding: .75em .75em 0;
    margin-top: 10px;
    max-width: 80%;
    font-size: 20px;
    transition: .5s ease;
}

summary {
    font-weight: bold;
    margin: -.75em -.75em 0;
    padding: .75em;
    background-color: #defffe;
    color: #000;
    transition: .5s ease-in-out;
}

details[open] {
    padding: .75em;
    border-bottom: 1px solid #d4d4d4;
    max-width: 80%;
    background-color: rgba(0, 0, 0, .75);
    color: white;
}

    details[open] summary {
        border-bottom: 1px solid #d4d4d4;
        margin-bottom: 10px;
    }

