/* GLOBAL STYLES
-------------------------------------------------- */


/* Padding below the footer and lighter body text */

body {
    color: #000;
    padding-bottom: 2rem;
    font-family: 'Mercedes Light', sans-serif;
    font-size: 1.2rem;
}
@font-face {
    font-family: 'Mercedes Bold';
    src: url('../webfonts/MBCorpoSText-Bold.otf');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Mercedes';
    src: url('../webfonts/MBCorpoATitleCond-Regular.otf');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Mercedes Light';
    src: url('../webfonts/MBCorpoSText-Light.otf');
    font-weight: normal;
    font-style: normal;
}
.fullscreen,
.black_screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
}
.black_screen {
    background: #000;
}
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100vw;
    height: 100vh;
}
.form-control {
    background: #e5e5e5;
    color: #000;
    border: 2px solid #e5e5e5;
    font-size: 1em;
}
.form-control:focus {
    background: rgba(255, 255, 255, 0.2);
    color: #000;
    border: 2px solid #e5e5e5;
    font-size: 1em;
}
.form-check-input:checked {
    background-color: #000;
    border-color: #000;
}
#password {
    background-color: #fff;
    color: #212529;
    border: 1px solid #ced4da;
}
#password:focus {
    background-color: #fff;
    color: #212529;
    border-color: #86b7fe;
}
.floating {
    color: #212529;
}
.header {
    position: fixed;
    height: 185px;
    background: #000;
    width: 100%;
    left: 0;
    top: 0;
    text-align: right;
}
.logo {
    margin: 33px 60px 0 0;
}
.menu {
    position: fixed;
    z-index: 2;
    bottom: 150px;
    right: 0;
}
.menu_button {
    background-color: #2da2cf;
    width: 100px;
    height: 100px;
    margin-bottom: 5px;
    text-align: center;
    animation: glow 2.5s infinite;
}
@keyframes glow {
    0% {
        background-color: #2da2cf;
        opacity: 1;
    }
    50% {
        background-color: #2187af;
        opacity: .75;
    }
    100% {
        background-color: #2da2cf;
        opacity: 1;
    }
}
.menu_icon {
    width: 60px;
    padding: 22px 0 0 5px;
}
.contact_title {
    font-family: 'Mercedes', serif;
    font-size: 4em;
}
.contact_intro {
    color: #333;
    font-family: 'Mercedes Light';
    margin-top: 2.5vh;
}
.contact_subtitle {
    font-family: 'Mercedes Bold';
}
.btn_black {
    background: #000;
    color: #fff;
    padding: 15px 45px;
    font-size: 1.4rem;
}
@-webkit-keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-426px * 8));
    }
}
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-426px * 8));
    }
}
@-webkit-keyframes scroll_2 {
    0% {
        transform: translateX(calc(-426px * 8));
    }
    100% {
        transform: translateX(0);
    }
}
@keyframes scroll_2 {
    0% {
        transform: translateX(calc(-426px * 8));
    }
    100% {
        transform: translateX(0);
    }
}
.slider {
    background: #000;
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.125);
    height: 240px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 1080px;
}
.slider::before,
.slider::after {
    background: linear-gradient(to right, rgb(6, 0, 0) 0%, #fff0 100%);
    content: "";
    height: 240px;
    position: absolute;
    width: 300px;
    z-index: 2;
}
.slider::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
}
.slider::before {
    left: 0;
    top: 0;
}
.slider .slide-track, .slider .slide-track_2 {
    -webkit-animation: scroll 15s linear infinite;
    animation: scroll 15s linear infinite;
    display: flex;
    width: calc(426px * 12);
}
.slider .slide-track_2 {
    -webkit-animation: scroll_2 15s linear infinite;
    animation: scroll_2 15s linear infinite;
}
.slider .slide {
    width: 426px;
    margin-right: 10px;
}
.slider .slide img {
    width: 426px;
    height: 240px;
}
.successMsg {
    position: fixed;
    top:45vh;
    left: 25vw;
    padding: 6rem;
    text-align: center;
    font-size: 1.6rem;
    background: rgb(0, 173, 239);
    color: #000;
    z-index: 9;
}
.errorMsg {
    background: rgb(0, 173, 239);
}