
/* ===================================
    Parallax Half Right
====================================== */


.half-right{
    display: inline-block;
    float: right;
    overflow: hidden;
    position: relative;
    width: 50%;
}

.half-right img{
    width: 100%;
}

.content-list{
    margin: 0;
    padding: 0;
    margin-top: 1.8rem;
}

.content-list li{
    font-size:1.1rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    list-style: none;
}

.content-list li:last-child{
    margin-bottom: 0;
}

.content-list li i{
    text-align: center;
    border: 2px solid #fff;
    border-radius: 50px;
    margin-right: 8px;
    background-color: #55A8FD;
    padding: 5px;
}


/* ===================================
    Background Images
====================================== */

[class*=bg-img]{
    position: relative;
    background-size: cover;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.bg-img1{

    background-image: url(../img/bg-img1.jpg);
}

.bg-img2{

    background-image: url(../img/bg-img2.jpg);
}

.center-block {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/* ===================================
   Contact
====================================== */

.contact-form{
    position: relative;
    padding: 30px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.contact-form .form-control {
    border: 1px solid #d4d4d4;
    padding: 10px 10px;
    background: #fff;
    letter-spacing: .5px;
    font-weight: 400;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    font-size: 14px;
    margin-bottom: 5px;
    min-height: 40px;
    position: relative;
    -webkit-transition: border .9s ease;
    -o-transition: border .9s ease;
    transition: border .9s ease;
}

.contact-form .form-group {
    margin-bottom: 1rem;
}

.contact-form textarea.form-control {
    min-height: 140px;
    resize: none;
    margin-bottom: 0;
}

.contact-form .form-group:nth-last-child(1){
    margin-bottom: 0;
}




