.page-tittle{
    position: relative;
}

.page__justify{
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.justify{
    top: 100%;
    text-align: center;
    vertical-align: middle;
}

.page-tittle{
    position: relative;
    background-color: #000000;
}

.page__img{
    opacity: 0.3;
}

.page__img img{
  object-fit: cover;
  height: 200px;
}

.breadcrumbs {
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 0px;
    padding: 0;
    display: block;
    font-size: 18px;
}

.breadcrumbs a{
    text-decoration: none;
    color: #fff;
}

.img-inner-dark{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.icon-box{
    text-align: left;
    display: flex;
    flex-flow: row wrap;
    width: 100%;
    margin-top: 40px;
}

.text-left{
    margin: 5px 0;
    width: 100%;
    display: flex;
    align-items: baseline;
}

.fa-street-view,
.fa-phone-alt,
.fa-envelope-square,
.fa-strikethrough{
    flex: 0 0 auto;
    margin-bottom: 0;
    max-width: 200px; 
    transition: all .3s;
}

.icon-box-text,
.icon-box-text-one,
.icon-box-text-two,
.icon-box-text-three{
  padding-left: 10px;
  text-align: left;
}

.wpcf7-form-wrap{
    display: block;
    border-color:  #f8b742;
    padding: 5px 0 10px 0;
}

.wpcf7-form-contro{
    outline: none;
    width: 100%;
    height: 40px;
    padding: 10px;
    border: 1px solid #eee;
}

.wpcf7-form-contro:focus,
.form-textarea textarea:focus,
.form-txt button:focus {
    border-color: #f8b742;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(248, 183, 66, 0.6);
}

.btn-group{
    padding: 10px 0;
    /* border: 1px solid #eee; */
}

.form-txt{
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-txt button,
.form-txt button:hover{
    outline: none;
    background-color: #000000;
    border: none;
}

.form-textarea .form-control{
    border-radius: 0 !important;
    border: 1px solid #eee;
}

.form-txt button{
    border-radius: 0 !important;
    text-transform: uppercase;
    font-weight: 600;
}

.moveinleft{
    animation: moveInLeft 1s ease-out;
    width: 100%;
    height: 650px;
}

.moveinright{
    padding-top: 15px;
    animation: moveInRight 1s ease-out;
}

@keyframes moveInLeft{
    0%{
        opacity: 0;
        transform: translateX( -100px);
    }

    80%{
        transform:  translateX(10px);
    }

    100%{
        opacity: 1;
        transform:  translateX(0);
    }
}


@keyframes moveInRight{
    0%{
        opacity: 0;
        transform: translateX(100px);
    }

    80%{
        transform:  translateX(-10px);
    }

    100%{
        opacity: 1;
        transform:  translateX(0);
    }
}

