/* TABLE OF CONTENT 
- Reset CSS
- MAIN STYLES
- COLORS
    - Background
    - Text
    - Border
- CONTENT STYLES
    - Header
    - Sections
    - Miscellaneous
    - Info Boxes
    - Countdown
    - Contact Form
    - Button
- RESPONSIVE STYLES
*/


/*------ COLORS -----*/
/* Background */
.dark{
    background-color: #051b35!important;
}
.dark-two{
    background-color: #05172b!important;
}
.black{
    background-color: #000!important;
}
.grey{
    background-color: #999!important;
}
.white{
    background-color: #ffffff!important;
}
.light-blue{
    background-color: #f2f2fc!important;
}
.light-grey{
    background-color: #f6f8fa!important;
}
.light-red{
    background-color: #ffeded!important;
}
.light-green{
    background-color: #ebeee5!important;
}
.green {
    background-color: #17B88F!important;
}
.red {
    background-color: #f73859!important;
}
.blue {
    background-color: #3974D4!important;
}
.blue-vibrant {
    background-color: #434bdf!important;
}
.orange {
    background-color: #ff9600!important;
}
.yellow {
    background-color: #ffd200!important;
}
.violet {
    background-color: #570051!important;
}
.pink {
    background-color: #ca195d!important;
}

/* Text */
.t-dark{
    color: #051b35!important;
}
.t-dark-two{
    color: #05172b!important;
}
.t-black{
    color: #000!important;
}
.t-grey{
    color: #999!important;
}
.t-white{
    color: #ffffff!important;
}
.t-blue{
    color: #3974D4!important;
}
.t-blue-vibrant {
    color: #434bdf!important;
}
.t-light-blue{
    color: #f2f2fc!important;
}
.t-light-grey{
    color: #f6f8fa!important;
}
.t-red{
    color: #f73859!important;
}
.t-light-red{
    color: #ffeded!important;
}
.t-light-green{
    color: #ebeee5!important;
}
.t-green {
    color: #17B88F!important;
}
.t-orange {
    color: #ff9600!important;
}
.t-yellow {
    color: #ffd200!important;
}
.t-violet {
    color: #570051!important;
}
.t-pink {
    color: #ca195d!important;
}
/* Border */
.b-dark{
    border-color: #051b35!important;
}
.b-dark-two{
    border-color: #05172b!important;
}
.b-black{
    border-color: #000!important;
}
.b-grey{
    border-color: #999!important;
}
.b-white{
    border-color: #ffffff!important;
}
.b-light-red{
    border-color: #ffeded!important;
}
.b-light-green{
    border-color: #ebeee5!important;
}
.b-light-grey{
    border-color: #f6f8fa!important;
}
.b-blue{
    border-color: #3974D4!important;
}
.b-blue-vibrant {
    border-color: #434bdf!important;
}
.b-light-blue{
    border-color: #f2f2fc!important;
}
.b-red{
    border-color: #f73859!important;
}
.b-green {
    border-color: #17B88F!important;
}
.b-orange {
    border-color: #ff9600!important;
}
.b-yellow {
    border-color: #ffd200!important;
}
.b-violet {
    border-color: #570051!important;
}
.b-pink {
    border-color: #ca195d!important;
}
/* Background Images */
.back{
    background-size:cover;
    background-position: bottom;
}
.back.one{
    background-image:url("../assets/img/backs/back01.png");
}
.back.two{
    background-image:url("../assets/img/backs/back02.png");
}
.back.three{
    background-image:url("../assets/img/backs/back03.png");
}
.back.four{
    background-image:url("../assets/img/backs/back04.png");
}
.back.five{
    background-image:url("../assets/img/backs/back05.html");
}
.no-bg{
    background-color: transparent;
}
.shadow{
    box-shadow: 0 10px 100px 0 rgba(0,0,0,0.1);
}
/
.banner{
    width: 100%;
    margin: 0 auto;
    display: inline-block;
    padding: 60px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 10px 100px 0 rgba(0,0,0,0.1);
}
.banner.border{
    border: 1px solid #fff;
}
.banner .cta-container{
    margin: 40px 0 0 0;
}
.border{
    border: 1px solid #fff;
}

/* Info Boxes */
.info-box{
    padding: 80px 40px;
    box-shadow: 0 0 20px 1px rgba(0,0,0,0.05);
    border-radius: 12px;
    min-height: 100px;
    margin-bottom: 20px;
}
.info-box.border{
    border: 1px solid #282828;
}

.info-box i{
    font-size: 40px;
}

/* Countdown */
.countdown-container{
    display: inline-block;
    text-align: center;
    margin: 10px 0;
    border-radius: 6px;
}
.countdown-container.round{
    border-radius: 50px;
}
.countdown-container span{
    font-size: 12px;
    font-weight: 500;
}
.countdown-container .version{
    border-radius: 50px;
    display: inline-block;
    padding: 3px 5px;
    margin-right: 5px;
    font-size: 10px;
    font-weight: 500;
}
/* Contact Form */
#contact-form{
    width: 500px;
    margin: 20px auto;
    box-shadow: 0 10px 100px 0 rgba(0,0,0,0.1);
}
#start #contact-form{
    margin: 20px 0;
}
#contact-form .form-control{
    width: 70%;
    padding: 20px;
    height: 58px;
    border: none;
    background: #ffffff;
    color: #282828;
    font-size: 14px;
    font-weight: 500;
    float: left;
    border-bottom-left-radius: 6px;
    border-top-left-radius: 6px;
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
}
#contact-form .form-control::placeholder{
    color: #282828;
    font-size: 14px;
    font-weight: 500;
}
#contact-form .primary-btn, #contact-form .primary-line-btn{
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    width: 30%;
    display: block;
    padding: 19px 25px;
}
label {
    display:block;
}
#note {
    color: #17B88F;
    font-size: 14px;
    display: inline-block;
}
#contact-form #ajax-contact-form i {
    color: #434bdf;
    font-size: 13px;
}
#contact-form .error .name {
    display: inline-block;
    position: absolute;
    left: 48%;
    padding-left: 2px;
}
#contact-form .error .email {
    position: absolute;
    left: 56%;
    padding: 23px 0 0 0;
    font-size: 12px;
    color: #f73859;
}
#contact-form .error .message {
    display: inline-block;
    position: absolute;
    left: 70%;
    margin-top: -70px;
    padding-left: 2px;
}
/* Buttons */
.primary-btn {
    color: #ffffff;
	text-align: center;
    padding: 17px 25px;
    border-radius: 6px;
    border-color: transparent;
    background: #17B88F;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
    margin: 5px;
    margin-right: 20px;
    display: inline-block;
    transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
}

.primary-btn:hover {
    text-decoration: none;
    opacity: .8;
    transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
}
.primary-line-btn {
    color: #17B88F;
	text-align: center;
    padding: 17px 25px;
    border-radius: 6px;
    border: 1px solid #17B88F;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
    display: inline-block;
    margin: 5px;
    margin-right: 20px;
    transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
}
.primary-line-btn.round, .primary-btn.round {
    border-radius: 50px;
}
.primary-line-btn.square, .primary-btn.square {
    border-radius: 0;
}
.primary-line-btn.small, .primary-btn.small {
    padding: 10px 15px;
    font-size: 11px;
}
.primary-line-btn.large, .primary-btn.large {
    padding: 25px;
    font-size: 14px;
}
.primary-line-btn:hover {
    text-decoration: none;
    opacity: .8;
    transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
}
.cta-container{
    margin: 20px 0;
    display: inline-block;
    width: 100%;
}
.cta-container i {
    margin-right: 10px;
    font-size: 16px;
}
.cta-container a {
    margin-right: 10px;
}
