/* All */

html {
    position: relative;
    min-height: 100%;
}

body {
    font-family: 'Lora', serif !important;
    margin-bottom: 70px !important;
    background-color: #000411 !important;
    color: rgba(255, 255, 255, 0.99) !important;
}

section {
    margin-bottom: 20px;
}

footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 60px;
    line-height: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.15)
}

/* Custom */

.text_footer {
    margin-top: 30px;
}

.footer_mb {
    margin-bottom: 12px;
}

.img_mt {
    margin-top: 10px;
    -webkit-filter: invert(100%);
    filter: invert(100%);
}

.elem {
    position: relative;
}

.elem h4 {
    padding: 0 1em;
}

.startlabel {
    position: absolute;
    top: 0;
    left: 0;
    color: #E0E0E0;
    padding: 0 4px 4px 0;
    background-color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
}

.mt-2 {
    margin-top: 2em;
}

.port_img {
    display: block;
    margin: 0 auto;
    width: 100%;
    height: 100%;
}

.arrowDown {
    display: -moz-flex;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -moz-flex-direction: row;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -moz-justify-content: center;
    -webkit-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    margin-top: auto;
}

.icon_angle {
    display: inline-block;
    height: 5.5rem;
    width: 5.5rem;
    font-size: 5.5rem;
    line-height: 5.5rem;
    text-align: center;
    border-radius: 100%;
    color: rgba(255, 255, 255, 0.99);
}

.icon_angle:hover {
    -webkit-transform: translateY(5px);
    -ms-transform: translateY(5px);
    transform: translateY(5px);
}

.corner {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    margin: 5px;
    border: 9px solid;
    border-color: transparent rgba(255, 255, 255, 0.55) rgba(255, 255, 255, 0.55) transparent;
}

/* Custom Jumb */

.jumb_box {
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.jumb_flex {
    display: -moz-flex;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -moz-flex-direction: column;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -moz-justify-content: center;
    -webkit-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    min-height: 100vh;
    margin-bottom: 10px;
}

.jumb_h1 {
    text-align: center;
    margin: auto 0 10px 0;
}

/* Social Icons */

.icons {
    display: inline-block;
    text-align: center;
    font-size: 4.5rem;
    height: 4.5rem;
    width: 4.5rem;
    line-height: 4.5rem;
    border-radius: 100%;
    margin-right: 1rem;
    color: rgba(255, 255, 255, 0.99);
}

.icons:hover {
    -webkit-transform: translateY(5px);
    -ms-transform: translateY(5px);
    transform: translateY(5px)
}

.icon_heart {
    color: #FF0000;
}

#myImg {
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

#myImg:hover {
    opacity: 0.7;
}

/* Modal */

.modal{
    color: #000411;
}

.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content (image) */
.modal-content {
    margin: auto;
    display: block;
    width: 100%;
    max-width: 750px;
}

/* Caption of Modal Image */
#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 750px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

@-webkit-keyframes zoom {
    from {-webkit-transform:scale(0)}
    to {-webkit-transform:scale(1)}
}

@keyframes zoom {
    from {transform:scale(0)}
    to {transform:scale(1)}
}

/* Add Animation */
.modal-content, #caption {
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
}

/* The Close Button */
.close_modal {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close_modal:hover,
.close_modal:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* Flip Card */

.flip-card {
    width: 100%;
    height: 250px;
    cursor: pointer;
    -moz-perspective: 1000px;
    -webkit-perspective: 1000px;
    perspective: 1000px;
    background-color: transparent;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    -moz-transition: transform 0.6s;
    -moz-transform-style: preserve-3d;
    -webkit-transition: transform 0.6s;
    -webkit-transform-style: preserve-3d;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    -moz-transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -moz-backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.flip-card-front {
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: rgba(255, 255, 255, 0.99);
    z-index: 2;
}

.flip-card-back {
    background-color: #000411;
    border: 1px solid rgba(255, 255, 255, 0.35);
    -moz-transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    z-index: 10;
}

.link_white {
    color: rgba(255, 255, 255, 0.99);
}

.link_white:hover {
    color: rgba(255, 255, 255, 0.50);
}

.div_display {
    display: flex;
    width: 100%;
}

.div_display .txt_under {
    text-decoration: underline;
}

.label_margin {
    margin: 0 0 0 auto;
}

/* Media Queries */

@media only screen and (min-width : 1200px) {
    .social {
        display: flex;
        align-items: center;
        justify-content: center;
        padding-left: 2rem;
    }

    .p-left {
        padding-left: 9rem;
    }

    .p-right {
        padding-right: 9rem;
    }
}

@media screen and (max-width: 1680px) {
    .social {
        display: flex;
        align-items: center;
        justify-content: center;
        padding-left: 2rem;
    }

    .p-left {
        padding-left: 9rem;
    }

    .p-right {
        padding-right: 9rem;
    }
}

@media screen and (max-width: 768px) {
    .jumb_flex {
        min-height: 0;
    }

    .social {
        margin-bottom: 10px;
    }

    .modal-content {
        width: 100%;
    }

    .arrowDown {
        display: none;
    }

    .p-left {
        padding-left: 2rem;
    }

    .p-right {
        padding-right: 2rem;
    }
}
