@charset "utf-8";
/* Simple fluid media
   Note: Fluid media requires that you remove the media's height and width attributes from the HTML
   http://www.alistapart.com/articles/fluid-images/ 
*/
img, object, embed, video {
	max-width: 100%;
}

/* IE 6 does not support max-width so default to width 100% */
.ie6 img {
	width:100%;
}   

body {
    font-family: 'Montserrat', sans-serif;
}

label {
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: normal;
    color: #232628;
}

.form h1 {
    color: #091c35;
    font-size: 30px;
    font-weight: 700;
    font-style: normal;
    text-align: center;
    margin: 0 0 30px;
}

.form-control {
    font-weight: 400;
    color: #888888;
    border: 2px solid #eceff3;
    font-size: 14px;
    outline: none!important;
    background-color: #eceff3;
    box-shadow: none;
    border-radius: 0px;
}

.form-control:focus {
    font-weight: 400;
    color: #232628;
    border: 2px solid #091c35;
    font-size: 14px;
    outline: none!important;
    background-color: #fff;
    box-shadow: none;
    border-radius: 0px;
}

input.form-control {
    height: 47px;
    padding: 0 21px;
}

textarea.form-control {
    padding: 21px;
}

.btn {
    outline: none!important;
    border: none;
    display: inline-block;
    padding: 15px 30px;
    text-align: center;
    background: #4fc3f7;
    color: #fff;
    border-radius: 2em;
    font-size: 14px;
    font-weight: 700;
}

.btn:hover, .btn:active, .btn:focus, .btn:active:focus {
    outline: none!important;
    border: none;
    display: inline-block;
    padding: 15px 30px;
    text-align: center;
    background: #4fc3f7;
    color: #fff;
    border-radius: 2em;
    font-size: 14px;
    font-weight: 700;
    opacity: 0.8;
}

.error-msg {
    font-size: 12px;
    margin: 5px 0 0;
}

@media only screen and (min-width: 481px) {
    
}

@media only screen and (min-width: 769px) {
    
}