/* Contact Us > Section Contact Us
/* ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## */

.contact-us{
    padding: 40px 0;
    background-color: #fff;
}

.contact-us-inner{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
}

.contact-us-inner .contact-us-left-info{
    width: calc(40% - 15px);
}

.contact-us-inner .contact-us-left-info h4{
    text-align: left;
    margin-bottom: 34px;
}

.contact-us-inner .contact-us-left-info .contact-us-info-item{
    margin-bottom: 25px;
}

.contact-us-inner .contact-us-left-info .contact-us-icon{
    padding-left: 40px;
    position: relative;
    color: #6C6B70;
    font-size: 18px;
    font-weight: 500;
    display: inline-block;
    line-height: 26px;
    transition: all 0.3s ease;
}

.contact-us-inner .contact-us-left-info .contact-us-icon:hover {
    color: #03bbd3;
}

.contact-us-inner .contact-us-left-info .contact-us-icon::before{
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    background-repeat: no-repeat;
    background-position: center center;
    width: 22px;
    height: 22px;
}

.contact-us-inner .contact-us-left-info .phone::before{
    background-image: url(../img/icons/icon-phone.svg);
}

.contact-us-inner .contact-us-left-info .email::before{
    background-image: url(../img/icons/icon-mail.svg);
}

.contact-us-inner .contact-us-left-info .address::before{
    background-image: url(../img/icons/icon-map.svg);
}

.contact-us-inner .contact-us-left-info .address{
    max-width: 340px;
}

.contact-us-social-icons{
    margin-top: 32px;
}

.contact-us-social-icons ul li{
    display: inline-block;
    margin-right: 16px;
    border-radius: 3px;
    background-color: #F7F8FB;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.contact-us-social-icons ul li a{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
}

.contact-github-icon {
    width: 21px;
}

.contact-us-social-icons ul li:hover{
    background-color: #03BBD3;
}

.contact-us-social-icons ul li:hover img{
    filter: brightness(0);
}

.contact-us-social-icons ul li:last-child{
    margin-right: 0;
}

.contact-us-inner .contact-us-left-info h5{
    margin-top: 55px;
    text-align: left;
}

.contact-us-inner .contact-us-left-info .contact-us-send-mail-item{
    margin-top: 15px;
}

.contact-us-inner .contact-us-left-info .contact-us-send-mail-item span{
    color: #6C6B70;
    font-size: 18px;
    font-weight: 500;
    display: block;
    margin-bottom: 13px;
}

.contact-us-inner .contact-us-right-info{
    width: calc(60% - 15px);
    max-width: 636px;
}

.contact-us-form-tab-buttons{
    margin-bottom: 37px;
}

.contact-us-form-tab-buttons ul{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    -ms-align-items: center;
    align-items: center;
}

.contact-us-form-tab-buttons ul li{
    width: 143px;
    padding: 18px 0;
    cursor: pointer;
    position: relative;
    border: 2px solid #03BBD3;
    color: #03BBD3;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.contact-us-form-tab-buttons ul li.active{
    background-color: #03BBD3;
    color: #fff;
}

.contact-us-form-tab-buttons ul li.active::before{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    margin: 0 auto;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 7.5px 0 7.5px;
    border-color: #03BBD3 transparent transparent transparent;
}

.contact-us-form-tab-buttons ul li:hover{
    background-color: #03BBD3;
    color: #fff;
}

.contact-us-tab-form-item{
    display: none;
}

.contact-us-tab-form-item.tab-form-active{
    display: block;
}

.contact-us-tab-form-item .form-group{
    margin-bottom: 24px;
}

.contact-us-tab-form-item .form-group span.form-label{
    display: block;
    font-size: 18px;
    font-weight: 500;
    color: #6C6B70;
    margin-bottom: 10px;
}

.required-label {
    position: relative;
}

.required-label:before {
    content: '*';
    color: #03BBD3;
    margin-right: 5px;
    font-weight: 400;
}

.contact-us-tab-form-item .form-group input[type="text"], 
input[type="email"], 
input[type="tel"]{
    color: #6C6B70;
    font-size: 18px;
    transition: all 0.3s ease;
}

.input-error {
    box-shadow: inset 0 0 0 2px #ff6868;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #CDCDCD;
}
::-moz-placeholder { /* Firefox 19+ */
    color: #CDCDCD;
}
:-ms-input-placeholder { /* IE 10+ */
    color: #CDCDCD;
}
:-moz-placeholder { /* Firefox 18- */
    color: #CDCDCD;
}
.contact-us-tab-form-item .form-group input:focus,
.contact-us-tab-form-item .form-group textarea:focus {
    outline: none;
}

.contact-us-tab-form-item .form-group input[type="submit"]{
    padding: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
    background-image: none;
}

.contact-us-tab-form-item .form-group input[type="submit"]:hover{
    opacity: 0.6;
}

.contact-us-tab-form-item .form-group textarea{
    font-family: sans-serif;
    color: #6C6B70;
    font-size: 18px;
    transition: all 0.3s ease;
}

.contact-us-tab-form-item .form-group .styled-select {
    background-image: url(../img/icons/arrow-down.svg);
    background-repeat: no-repeat;
    background-position: 96% center;
    background-color: #F7F8FB;
    display: block;
    overflow: hidden;
}

.contact-us-tab-form-item .form-group .styled-select .form-element {
    background: 0 0;
    border: none;
    margin: 0;
    width: 100%;
    padding-left: 24px;
    height: 56px;
    cursor: pointer;
    outline: 0;
    -o-text-overflow: '';
    text-overflow: '';
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    color: #CDCDCD;
    font-size: 18px;
}

.contact-us-tab-form-item .form-group .form-buttons{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
}

.input-file {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.contact-us-tab-form-item .form-group .input-file-box{
    margin-left: 24px;
}

.contact-us-tab-form-item .form-group .input-file-box label span{
    color: #03BBD3;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    display: block;
    line-height: 62px;
    margin: 0;
    padding-left: 75px;
    overflow: hidden;
}

.input-file + label {
    display: none;
}

.input-file + label {
    width: 235px;
    height: 65px;
    text-overflow: ellipsis;
    margin: 0;
    white-space: nowrap;
    cursor: pointer;
    padding-right: 20px;
    display: inline-block;
    overflow: hidden;
    position: relative;
}

.input-file + label svg {
    position: absolute;
    top: 50%;
    margin-top: -12px;
    left: 30px;
}

.input-file + label {
    border: 2px solid #03BBD3;
}


/* Contact Us > Section Contact Us Bottom Info
/* ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## */

.contact-us-bottom-info{
    padding-top: 54px;
    padding-bottom: 48px;
    background-color: #F9FAFC;
}

.contact-us-bottom-info-items{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
}

.contact-us-bottom-info-items .contact-us-bottom-info-item{
    width: calc(33.3333% - 15px);
    margin: 0 15px;
    text-align: center;
}

.contact-us-bottom-info-items .contact-us-bottom-info-item .icon-box{
    margin: 10px;
}
.contact-us-bottom-info-items .contact-us-bottom-info-item .icon-box img{
    height:65px;
}
.contact-us-bottom-info-items .contact-us-bottom-info-item p{
    position: relative;
    padding-bottom: 30px;
    line-height: 21px;
    font-weight: 600;
    color: #5C5C5C;
    max-width: 265px;
    margin: 0 auto;
}

.contact-us-bottom-info-items .contact-us-bottom-info-item p::after{
    content: '';
    position: absolute;
    background-image: url(../img/icons/arrow-right.svg);
    background-repeat: no-repeat;
    background-position: center center;
    width: 16px;
    height: 16px;
    margin: 0 auto;
    bottom: 0;
    left: 0;
    right: 0;
}

.form-message {
    position: absolute;
    z-index: 5;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.85);
}

.form-message p {
    position: relative;
}

.form-message p:before {
    content: '';
    position: absolute;
    height: 90px;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: 50px;
    background-position: top;
    background-repeat: no-repeat;
    
}

.form-message a {
    cursor: pointer;
    display: block;
    padding: 18px 25px;
    position: relative;
    border: 2px solid #03BBD3;
    color: #03BBD3;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    transition: 0.3s;
    margin-top: 15px;
}

.form-message a:hover {
    background-color: #03BBD3;
    color: #fff;
}

.form-success .form-message p:before {
    background-image: url(../img/success.svg);
}

.form-error .form-message p:before {
    background-image: url(../img/error.svg);
}

.form-error .form-group {
    opacity: 0.5;
}

.form-success, 
.form-error {
    position: relative;
}

.form-error .form-message {
    color: red;
}



