.banner {
    background: url('');
}


.jumbotron {
    position: relative;
    overflow: hidden;
    background-color: black;
}

.jumbotron video {
    position: absolute;
    z-index: 1;
    top: 0;
    width: 100%;
    height: 100%;
    /*  object-fit is not supported on IE  */
    object-fit: cover;
    opacity: 0.5;
}

.jumbotron .container {
    z-index: 2;
    position: relative;
}


h1 {
    margin: auto;
}

.main {
    width: 45%;
/*    float: left;*/
/*    padding: 0 34%;*/
    max-width: 384px;
}

@media screen and (max-width: 700px){
    .main{
        width: 80%;
    }
}

.main-cont {
    width: 100%;
/*    float: left;*/
/*    background: #1c1517c9;*/
    background: #113e8652;
/*    border: 1px solid #ffffff;*/
    padding: 20px 40px 0;
    border-radius: 50px;
}

.input-group {
    width: 100%;
}

input::placeholder,p,.custom-button, input {
    color: #ffffff!important;
    font-style: italic;
}

span.input-group-text {
    position: absolute;
    width: 40px;
    background: #cccccc;
    z-index: 9999;
    text-align: center;
    height: 40px;
    margin: 8px;
    border-radius: 50%;
    padding: 4px 0 0 0;
}

i.fa {
    margin-top: 10px;
}

.container {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-control {
    display: block;
    width: 100%;
    height: 56px;
    padding: 6px 54px !important;
    border-radius: 30px!important;
    background: #343032;

}
.custom-button {
    border: none;
    background: transparent;
    color: #fff;
}

h1 {
    color: #5cb85c !important;
    font-size: 45px !important;
    text-align: center;
    padding-top: 15px;
}

.jumbotron.jumbotron-fluid {
    padding: 0px;
    height: 100vh;
}


/*PRELOADING------------ */


/*PRELOADING------------ */
@import "bourbon";

.wrapper {
    position: relative;
    height: 100%;
    width: 100%;
}

p {
    line-height: 1.33em;
    color: #7E7E7E;
    font-family: 'Lemon', cursive;
}

h1 {
    color: #EEE;
}

#content {
    margin: 0 auto;
    padding-bottom: 50px;


}

#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;


    z-index: 1001;
    animation: spin 2s linear infinite;

    &:before {
        content: "";
        position: absolute;
        top: 5px;
        left: 5px;
        right: 5px;
        bottom: 5px;
        border-radius: 50%;


        animation: spin 3s linear infinite;
    }

    &:after {
        content: "";
        position: absolute;
        top: 15px;
        right: 15px;
        left: 15px;
        bottom: 15px;
        border-radius: 50%;

    }
}

#loader-wrapper .loader-section {
    position: fixed;
    top: 0;
    width: 51%;
    height: 100%;
    background-color: white;

    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-blend-mode: multiply;
    z-index: 1000;
    transform: translateX(0);
}

#loader-wrapper .loader-section.section-left {
    left: 0;
}

#loader-wrapper .loader-section.section-right {
    right: 0;
}

#loader {
    display: block;
    width: 100px;
    height: 100px;
    margin: 50 auto;
}

.circ-one {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    background: rgba(217, 91, 67, 1);
    border-radius: 100%;
    float: left;
    animation: load-x 1s cubic-bezier(0.445, 0.100, 0.550, 0.900) infinite;
}

.circ-two {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    background: rgba(84, 36, 55, 1);
    border-radius: 100%;
    float: right;
    animation: load-y 1s cubic-bezier(0.445, 0.100, 0.550, 0.900) infinite;
}

@keyframes load-x {
    0% {
        left: -10px;
        transform: scale(1);
    }

    25% {
        transform: scale(1.5);
        z-index: 2;
    }

    50% {
        left: 60px;
        transform: scale(1);
    }

    75% {
        transform: scale(0.5);
        z-index: 1;
    }

    100% {
        left: -10px;
        transform: scale(1);
    }
}

@keyframes load-y {
    0% {
        right: -10px;
        transform: scale(1);
    }

    25% {
        transform: scale(0.5);
    }

    50% {
        right: 60px;
        transform: scale(1);
        z-index: 1;
    }

    75% {
        transform: scale(1.5);
        z-index: 2;
    }

    100% {
        right: -10px;
        transform: scale(1);
    }
}

#loader p {
    text-align: center;
    font-family: 'Hanna', serif;
    font-weight: 50;
    color: rgba(192, 41, 66, 1);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    50% {
        opacity: 0.5;
    }
}

// Loaded
.loaded #loader-wrapper .loader-section.section-left {
    transform: translateY(-100%);
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

.loaded #loader-wrapper .loader-section.section-right {
    transform: translateY(100%);
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

.loaded #loader {
    opacity: 0;
    transition: all 0.3s ease-out;
}

.loaded #loader-wrapper {
    visibility: hidden;
    transform: translateX(-100%);
    transition: all 0.3s 1s ease-out;
}



@import url(https://fonts.googleapis.com/css?family=Oxygen);
@import url(http://weloveiconfonts.com/api/?family=entypo);

[class*="entypo-"]:before {
    font-family: 'entypo', sans-serif;
}

* {
    box-sizing: border-box;
}

.preload * {
    transition: none !important;
}

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



.wrapper {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}
