/* ===================================================================
 *
 *  Transcend v1.0 Contact Section Stylesheet
 *  03-19-2018
 *
 *  Modified for Pass the AUX by Evan Kaminsky
 *  03-20-2019
 *
 *  ------------------------------------------------------------------
 *
 *  # contact
 *    ## contact social
 *    ## subscribe
 *    ## copyright
 *    ## go to top
 *
 * =================================================================== */

.s-contact {
    padding-top: 21rem;
    padding-bottom: 10.2rem;
    background-color: #111111;
    color: rgba(255, 255, 255, 0.3);
    position: relative;
}
.s-contact a {
    color: #ffffff;
    border-bottom: 1px solid transparent;
    display: inline-block;
}
.s-contact a:hover,
.s-contact a:focus {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-main {
    margin-top: 0;
    margin-bottom: 5.0rem;
}

.contact-big {
    margin-bottom: 3.0rem;
}

.contact-email {
    display: inline-block;
    font-family: "metropolis-light", sans-serif;
    font-size: 5.4rem;
    line-height: 1.222;
    color: #ffffff;
    padding-top: 0.3rem;
    position: relative;
}
.contact-email::before {
    content: "";
    display: block;
    height: 0px;
    width: 60px;
    background-color: var(--theme-color);
    position: absolute;
    top: 0;
    left: 0;
}

.contact-number {
    font-family: "metropolis-light", sans-serif;
    font-size: 3rem;
    line-height: 1.7;
    display: block;
}

.contact-address {
    font-family: "metropolis-regular", sans-serif;
    font-size: 2.8rem;
    line-height: 1.607;
    margin-top: 2.4rem;
}


/* -------------------------------------------------------------------
 * ## contact social
 * ------------------------------------------------------------------- */

.contact-social {
    list-style: none;
    display: inline-block;
    margin: 0 0 0 0.3rem;
    font-size: 3rem;
}
.contact-social li {
    margin-right: 15px;
    padding-left: 0;
    display: inline-block;
}
.contact-social li a {
    color: rgba(255, 255, 255, 0.3);
    border: none !important;
}
.contact-social li a:hover,
.contact-social li a:focus {
    color: #ffffff;
}
.contact-social li:last-child {
    margin: 0;
}


/* -------------------------------------------------------------------
 * ## subscribe
 * ------------------------------------------------------------------- */

.contact-subscribe {
    margin: 0;
    padding: 0;
    position: relative;
}

.mc-form {
    margin-top: 2.1rem;
    width: 100%;
}
.mc-form input[type="email"] {
    background-color: rgba(0, 0, 0, 0.2);
    color: rgba(255, 255, 255, 0.5);
    width: 100%;
    height: 5.4rem;
    padding: 1.2rem 150px 1.2rem 20px;
    margin-bottom: 1.8rem;
    border: none;
}
.mc-form input[type="email"]:focus {
    color: #ffffff;
}
.mc-form input[type="email"]::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.2);
}
.mc-form input[type="email"]:-moz-placeholder {
    color: rgba(255, 255, 255, 0.2);
    /* Firefox 18- */
}
.mc-form input[type="email"]::-moz-placeholder {
    color: rgba(255, 255, 255, 0.2);
    /* Firefox 19+ */
}
.mc-form input[type="email"]:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.2);
}
.mc-form input[type="email"].placeholder {
    color: rgba(255, 255, 255, 0.2) !important;
}
.mc-form input[type="submit"] {
    color: #ffffff;
    background: var(--theme-color);
    border-color: var(--theme-color);
    padding: 0 15px;
    position: absolute;
    top: 0;
    right: 0;
}
.mc-form label {
    color: #ffffff;
    font-family: "metropolis-semibold", sans-serif;
    font-size: 1.3rem;
    padding: 0 2rem;
}
.mc-form label i {
    padding-right: 6px;
}


/* -------------------------------------------------------------------
 * ## copyright & privacy
 * ------------------------------------------------------------------- */

.cl-privacy {
    margin-top: 2.1rem;
}

.cl-copyright {
    margin-top: 0;
}

.cl-copyright span {
    font-size: 15px;
    display: inline-block;
}

.cl-copyright span::after {
    content: "|";
    display: inline-block;
    padding: 0 1rem 0 1.2rem;
    color: rgba(255, 255, 255, 0.1);
}

.cl-copyright span:last-child::after {
    display: none;
}


/* -------------------------------------------------------------------
 * ## go to top
 * ------------------------------------------------------------------- */

.cl-go-top {
    z-index:  600;
    position: absolute;
    bottom:   10.8rem;
    right:    105px;
}
.cl-go-top a {
    text-decoration: none;
    border:  0 none;
    display: block;
    height:  60px;
    width:   60px;
    line-height: 60px;
    text-align:  center;
    background:  black;
    color:       white;
    text-transform: uppercase;
    border-radius:  50%;
    -webkit-transition: all 0.3s ease-in-out;
    transition:         all 0.3s ease-in-out;
}
.cl-go-top a i {
    font-size:   21px;
    line-height: inherit;
}
.cl-go-top a:hover,
.cl-go-top a:focus {
    background-color: #ffffff;
    color:            #000000;
}
.cl-go-top::before {
    content:          "";
    display:          block;
    width:            1px;
    height:           100px;
    background-color: rgba(255, 255, 255, 0.1);
    position:         absolute;
    top:              -115px;
    left:             50%;
}
.cl-go-top::after {
    content:     "back to top";
    display:     inline-block;
    width:       120px;
    font-size:   1.2rem;
    line-height: 30px;
    text-transform:  uppercase;
    letter-spacing:  0.2rem;
    color:           rgba(255, 255, 255, 0.15);
    -webkit-transition: all 0.5s ease-in-out;
    transition:         all 0.5s ease-in-out;
    -webkit-transform:  rotate(-90deg);
    -ms-transform:      rotate(-90deg);
    transform:          rotate(-90deg);
    -webkit-transform-origin: left bottom;
    -ms-transform-origin:     left bottom;
    transform-origin:         left bottom;
    position: absolute;
    left:     calc(30px + 15px);
    top:      -165px;
}

.menu-is-open .cl-go-top {
    display: none;
}


/* -------------------------------------------------------------------
 * responsive: contact
 * ------------------------------------------------------------------- */

@media only screen and (max-width: 1600px) {
    .cl-go-top {
        right: 55px;
    }
}

@media only screen and (max-width: 1200px) {
    .s-contact {
        padding-top: 15rem;
    }

    .contact-main {
        margin-top: 13.2rem;
    }

    .contact-email {
        font-size: 5rem;
    }

    .contact-number {
        font-size: 2.6rem;
    }

    .contact-address {
        font-size: 2.4rem;
    }

    .contact-social {
        font-size: 2.8rem;
    }

    .cl-privacy {
        margin-top: 3rem;
    }

    .cl-copyright {
        margin-top: 0;
    }

}

@media only screen and (max-width: 1000px) {
    .contact-email {
        font-size: 4.2rem;
    }

    .contact-number {
        font-size: 2.4rem;
    }

    .contact-address {
        font-size: 2.1rem;
    }

    .contact-social {
        font-size: 2.4rem;
    }
}

@media only screen and (max-width: 800px) {
    .s-contact {
        padding-top: 12rem;
        padding-bottom: 9rem;
    }

    .contact-secondary, .cl-copyright, .cl-privacy {
        padding-right: 7.8rem;
    }

    .contact-secondary {
        margin-bottom: 1.5rem;
    }

    .contact-big {
        margin-bottom: 1.5rem;
    }

    .contact-email {
        font-size: 3.6rem;
    }

    .contact-number {
        font-size: 2rem;
    }

    .contact-address {
        font-size: 2rem;
    }

    .cl-go-top {
        right:  35px;
        bottom: 9rem;
    }
    .cl-go-top a {
        height:      48px;
        width:       48px;
        line-height: 48px;
    }
    .cl-go-top a i {
        font-size: 18px;
    }
    .cl-go-top::after {
        font-size: 1.1rem;
        left:      calc(24px + 15px);
    }
}

@media only screen and (max-width: 600px) {
    .s-contact {
        padding-bottom: 6rem;
    }

    .contact-main {
        margin-top: 12rem;
    }

    .contact-email {
        font-size: 3rem;
    }

    .contact-number {
        font-size: 1.8rem;
    }

    .contact-address {
        font-size: 1.8rem;
    }

    .contact-social {
        font-size: 2rem;
    }

    .cl-go-top {
        right:  25px;
        bottom: 7.2rem;
    }
}

@media only screen and (max-width: 480px) {
    .contact-subscribe {
        margin-top: 3rem;
    }

    .mc-form input[type="email"],
    .mc-form label {
        text-align: center;
    }

    .mc-form input[type="email"] {
        padding: 1.2rem 20px 1.2rem;
    }

    .mc-form input[type="submit"] {
        position: static;
        width: 100%;
        margin-bottom: 1.8rem;
    }

    .cl-privacy {
        margin-top: 0;
    }

    .cl-copyright {
        margin-top: 0;
    }
}

@media only screen and (max-width: 400px) {
    .s-contact {
        padding-top: 9.6rem;
        padding-bottom: 3rem;
    }

    .contact-main {
        margin-top: 9.6rem;
    }

    .contact-secondary {
        padding: 0;
    }

    .contact-email {
        font-size: 2.4rem;
    }

    .contact-number {
        font-size: 1.6rem;
    }

    .cl-go-top::before,
    .cl-go-top::after {
        display: none;
    }

    .cl-go-top {
        right: 50%;
        margin-right: -24px;
        margin-bottom: 6rem;
    }

    .cl-copyright, .cl-privacy {
        padding: 0;
        text-align: center;
    }

    .cl-privacy {
        margin-top: 7rem;
    }

    .cl-copyright {
        margin-top: 0.5rem;
    }

    .cl-copyright, .cl-privacy span {
        font-size: 14px;
    }

    .cl-copyright span::after {
        display: none;
    }
}


@media only screen and (max-width: 346px) {
    .cl-go-top {
        margin-bottom: 9.5rem;
    }
}


/*# sourceMappingURL=section_contact.css.map */
