#popact {
    position: fixed;
    width: 100%;
    top: 10%;
    bottom: 10%;
}

#popact div {
    width: 900px;
    height: 500px;
    margin: 0 auto;
    background: rgb(220, 220, 220);
}

body {
    font-family: 'Overlock SC', cursive;
    background: rgb(124, 124, 124);
    /*background: pink;*/
    overflow: hidden;
}

h1 {
    font-size: 120px;
    /*color: grey;*/
    color: rgb(220, 220, 220);
    /*text-align: center;*/
}

#darkmode {
    background: rgb(45, 45, 45);
    color: rgb(33, 33, 33);
}


h1.small {
    font-size: 88px !important;
}


.ljs {
    font-size: 77px !important;
    /*color: grey;*/
    color: rgb(220, 220, 220);
    /*text-align: center;*/
}


img {
    width: 100%;
    max-height: 800px;
    object-fit: contain;
}


.img_short {
    max-height: 600px;
}

/* Copyright style */
.copy {
    font-size: xx-small;
    line-height: 50%;
    color: rgb(72, 72, 72)
}

/* Slideshow container */
.slideshow-container {
    position: fixed;
    /*width: 67%;*/
    width: 90%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -46%);
    object-fit: contain;
    /*background-color: pink;*/
}

.underlay {
    position: fixed;
    top: 33.3%;
    left: 50%;
    transform: translate(-50%, -33.3%);
    z-index: -1;
}

/* Next & previous buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 0;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    color: #fff;
    /*background: #000;*/
    background: rgba(0, 0, 0, 0.4);
    z-index: 4;
    opacity: .3;
}

.prev {
    transform: translate(-80%, 0%);
}

/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
    transform: translate(80%, 0%);
}



/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
    background-color: rgba(1, 1, 1, 0.9);
}

/* title text */
.title_text {
    position: relative;
    width: 33.3%;
    text-align: center;
    font-size: 1em;
    top: 0.5em;
    padding: 0.25em;
    color: grey;
    background: rgba(0, 0, 0, .4);
    -webkit-transition: opacity 1.2s;
    transition: opacity 1.2s;
    font-variant: small-caps;
    font-weight: bold;
    letter-spacing: 3px;
}

/* Caption text */
.text {
    position: relative;
    width: 33.3%;
    text-align: center;
    font-size: 1em;
    bottom: 0.5em;
    padding: 0.25em;
    color: #336699;
    background: rgba(0, 0, 0, .4);
    -webkit-transition: opacity 1.2s;
    transition: opacity 1.2s;
}

.text a {
    color: rgb(220, 220, 220);
}

/* Number text (1/3 etc) */
.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

/* The dots/bullets/indicators */
.dot {
    cursor: pointer;
    height: 13px;
    width: 13px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active,
.dot:hover {
    background-color: #717171;
}

/* Fading animation */
.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
}

@-webkit-keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 750px) {

    .prev,
    .next,
    .text {
        font-size: 20px
    }

    h1 {
        font-size: 24px;
    }

    .text {
        width: 66%;
    }

    .prev {
        transform: translate(-50%, 0%);
        background: rgba(0, 0, 0, 0.9);
    }

    .next {
        transform: translate(50%, 0%);
        background: rgba(0, 0, 0, 0.9);
    }
}

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

    .prev,
    .next,
    .text,
    h1 {
        font-size: 11px
    }

    .text {
        width: 66%;
    }

    .prev {
        transform: translate(-50%, 0%);
        background: rgba(0, 0, 0, 0.9);
    }

    .next {
        transform: translate(50%, 0%);
        background: rgba(0, 0, 0, 0.9);
    }

}

/* 
ADD CONTACT US Styles Below
*/

.fa {
    z-index: 10;
}

/* p {
  margin-bottom: 1.2em;
} */

.wrapper {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 1em;
    &.page {
        padding: 4em 1em;

        p:first-of-type {
            font-weight: 700;
        }
    }
}

.contact {
    position: absolute;
    z-index: 20;
    top: 60px;
    left: 0;
    right: 0;
    padding: 2em;
    background: rgb(45, 45, 45);
    color: grey;
    transition: all .4s;
    transform: translateY(-100%);

    &.open-form {
        transform: translateY(0);
        cursor: pointer;
    }

    p {
        font-weight: 600;

        &.close {
            text-align: right;
            cursor: pointer;
        }

        &.thanks {
            opacity: 0;
            transition: opacity .2s;
        }

        &.thanks.visible {
            opacity: 1;
        }
    }

    input,
    textarea {
        width: 100%;
        background: black;
        border: darkgrey solid 2px;
        border-radius: .5em;
        resize: none;
        padding: .7em 1em;
        color: grey;
        /* font-family: 'Open Sans', arial, sans-serif; */
        font-size: .65em;
        font-weight: 600;
    }

    textarea {
        font-size: .6em;
        height: 20em;
    }

    input[type="submit"] {
        width: auto;
        font-size: .8em;
        font-weight: 900;
        cursor: pointer;
    }
}

.open {
    cursor: pointer;
}

.open:hover {
    color: silver;
}

.open:active {
    color: whitesmoke;
}
