
body {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 18px;
    color: #111a1e;
}

h2 {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 50px;
    line-height: 52px;
    margin-bottom: 1rem;
}

a, a:hover {
    color: #111a1e;
    text-decoration: none;
}

.line:before {
    content: '';
    height: 3px;
    width: 120px;
    background: #09082c;
    position: relative;
    display: inline-block;
}

.form-control {
    border-radius: 0;
    border: 1px solid #09082c;
    /*text-transform: uppercase;*/
    color: #111a1e;
}

.btn-send {
    background: transparent;
    border: 1px solid #09082c;
    color: #09082c;
    text-transform: uppercase;
    font-weight: 800;
    padding: 10px 20px;
}

    .btn-send:hover {
        text-decoration: none;
        background: #09082c;
        color: #FFF;
    }

.btn-x {
    width: 50px;
    height: 50px;
    /*! background-color: red; */
    position: relative;
    /*! border-radius: 6px; */
    /*! box-shadow: 2px 2px 4px 0 white; */
    text-align: center;
    display: inline-block;
}

    .btn-x:before, .btn-x:after {
        content: '';
        position: absolute;
        width: 46px;
        height: 3px;
        background-color: #09082c;
        top: 16px;
        box-shadow: 0 0 2px 0 #ccc;
    }

    .btn-x:before {
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        transform: rotate(45deg);
        left: 2px;
    }

    .btn-x:after {
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        transform: rotate(-45deg);
        right: 2px;
    }
