/*Generics*/
*{
    box-sizing: border-box;
    outline: none;
    list-style: none;
    text-decoration: none;
}
html,body,figure,ul,li,
h1,h2,h3,h4,h5,h6,p{
    padding: 0;
    margin: 0;
}
img{
    display: block;
    width: 100%;
}
body{
    overflow-X: hidden;
}
a[name]{
    display: block;
    position: relative;
    top: -100px;
}

/* Preloader */
.preloader{
    position: fixed;
    top: 0;
    left:0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    z-index: 1000;
    flex-direction: column;
    padding: 20%;
    text-align: center;
    font-size: 14px;
    line-height: 141%;
                
    -webkit-perspective: 500px;
    -moz-perspective: 500px;
    perspective: 500px;
}
.preloader img{
    width: 130px;
    margin-bottom: 10px;

    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    -o-transform-style: preserve-3d;
    transform-style: preserve-3d; 

    -webkit-animation: logo 2.5s infinite cubic-bezier(0.410, 0.060, 0.170, 1.550);
    -moz-animation: logo 2.5s infinite cubic-bezier(0.410, 0.060, 0.170, 1.550);
    -ms-animation: logo 2.5s infinite cubic-bezier(0.410, 0.060, 0.170, 1.550);
    -o-animation: logo 2.5s infinite cubic-bezier(0.410, 0.060, 0.170, 1.550);
    animation: logo 2.5s infinite cubic-bezier(0.410, 0.060, 0.170, 1.550);

    transition: all .2s;
}
.preloader span{
    display: block;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #999;
    width: 270px;
    text-align: center;
    font: 300 1.2em Raleway;
}
.preloader span::after{
    content:'';

    animation-duration: 1500ms;
    animation-iteration-count: infinite;
    animation-name: loading-dots;
    animation-direction: linear;
}

@keyframes loading-dots{
    0%{content: '';}
    25%{content: '.';}
    50%{content: '..';}
    90%{content: '...';}
    100%{content: '';}
};
@-webkit-keyframes loading-dots{
    0%{content: '';}
    25%{content: '.';}
    50%{content: '..';}
    90%{content: '...';}
    100%{content: '';}
};
@keyframes logo{
    0%{
        -webkit-transform: rotateY(0deg);
        -moz-transform: rotateY(0deg);
        -ms-transform: rotateY(0deg);
        -o-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }
    70%{
        -webkit-transform: rotateY(360deg);
        -moz-transform: rotateY(360deg);
        -ms-transform: rotateY(360deg);
        -o-transform: rotateY(360deg);
        transform: rotateY(360deg);
    }
    100%{
        -webkit-transform: rotateY(360deg);
        -moz-transform: rotateY(360deg);
        -ms-transform: rotateY(360deg);
        -o-transform: rotateY(360deg);
        transform: rotateY(360deg);
    }
}
@-webkit-keyframes logo{
    0%{
        -webkit-transform: rotateY(0deg);
        -moz-transform: rotateY(0deg);
        -ms-transform: rotateY(0deg);
        -o-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }
    70%{
        -webkit-transform: rotateY(360deg);
        -moz-transform: rotateY(360deg);
        -ms-transform: rotateY(360deg);
        -o-transform: rotateY(360deg);
        transform: rotateY(360deg);
    }
    100%{
        -webkit-transform: rotateY(360deg);
        -moz-transform: rotateY(360deg);
        -ms-transform: rotateY(360deg);
        -o-transform: rotateY(360deg);
        transform: rotateY(360deg);
    }
}


/*Objects*/
.container{
    position: relative;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
.mt-60{margin-top: 60px;}
.mw-900{
    max-width: 900px;
    margin: 0 auto;
    width: 90%;
}
.w-35p{
    width: 35%;
}
.center{
    text-align: center;
}

.title-divider{
    font: 300 50px Raleway;
    color: #f8711c;
    margin-bottom: 30px;
}
.title-divider::after{
    content: '';
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 15px;
    background-image: url(../images/title-divider.svg);
    margin-top: 19px;
    display: block;
    background-size: cover;
}
.title-divider.center::after{
    margin: 0 auto;
    margin-top: 15px;
}
.title-mid{
    font: 600 33px Raleway;
    color: #f8711c;
    text-align: center;
}
.title-lg{
    color: #f8711c;
    font: 300 50px Raleway;
    margin-bottom: 30px;
}

.highlight-text{
    text-align: center;
    font: 300 30px Raleway;
    padding: 0 18%;
    margin: 30px 0;
}
.highlight-text b{
    color: #f8711c;
}

.text-mid{
    font-size: 22px;
}

.btn-generic{
    display: block;
    background-color: #f8711c;
    width: 370px;
    text-align: center;
    color: #fff;
    padding: 20px 0;
    font: 20px Raleway;    
    border-radius: 5px;
    margin: 0 auto;
    cursor: pointer;
}
.btn-generic.upper{
    text-transform: uppercase;
}
.btn-generic.strong{
    font-weight: 600;
}

/*Components*/

/* NAV */
@media only screen and (min-width: 771px){
    .top-bar{
        top: 0;
        position: fixed;
        left: 0;
        width: 100%;
        z-index: 10;
    }
    .top-bar > div{
        padding-top: 15px;
        display: flex;
        justify-content: flex-end;
        height: 100px;
        align-items: center;
    }
    .top-bar .logo{
        width: 230px;
        position: absolute;
        left: 0;
    }
    .top-bar .logo figure{}
    .top-bar .logo figure img{}
    .top-bar .contact{
        position: absolute;
        left: 0;
        top: 100%;
        display: flex;
        width: 330px;
        justify-content: space-between;
    }
    .top-bar .contact .block{
        display: flex;
        align-items: center;
        color: #fff;
        font: 600 19px Raleway;
        white-space: nowrap;
        margin-right: 20px;
    }
    .top-bar .contact .block i{
        width: 30px;
        height: 30px;
        background-color: #f8711c;
        border-radius: 100px;
        display: flex;
        justify-content: center;
        align-items: center;
        color: #fff;
        font-size: 17px;
        margin-right: 15px;
    }
    .top-bar > div > i,
    .top-bar > div > input{
        display: none;
    }
    .top-bar nav{}
    .top-bar nav ul{
        display: flex;
    }
    .top-bar nav ul li{}
    .top-bar nav ul li a{
        color: #fff;
        font: 600 18px Raleway;
        padding: 5px 20px;
    }

    .top-bar.shrink{
        background-color: #000;
    }
    .top-bar.shrink > div{
        padding-bottom: 15px;
        height: 70px;

    }
    .top-bar.shrink .logo{
        width: 160px;
    }
    .top-bar.shrink .contact{
        display: none;
    }
}


/* HEADER */
header{
    position: relative;
    width: 100%;
    background: #000;
}
header .slider{}
header .slider .slide{
    position: relative;
}
header .slider .slide figure{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    background-size: cover;
}
header .slider .slide .caption{
    position: absolute;
    color: #fff;
    z-index: 1;
    top: 40%;
    text-align: center;
    transform: translateY(-50%);
    width: 100%;
    font: 300 45px Raleway;
}
header .slider .slide .caption b{
    display: block;
    text-transform: uppercase;
}
header .featured{
    margin: 0 auto;
    position: absolute;
    max-width: 1300px;
    width: 90%;
    bottom: 30px;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    left: 0;
    right: 0;
    flex-wrap: wrap;
}
header .featured .block{
    width: 24%;
    border-top: 2px solid #f8711c;
    position: relative;
    background-color: #f8711c;
    padding-bottom: 25px;
}
header .featured .block figure{
    width: 100%;
    height: 85px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    background-color: #68370d;
    margin-bottom: 20px;
}
header .featured .block figure img{
    opacity: 0.3;
}
header .featured .block h5{
    color: #fff;
    font: 600 24px/115% Raleway;
    padding: 0 35px;
    text-align: center;
    margin-top: -50px;
    z-index: 2;
    position: relative;
    min-height: 63px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
header .featured .block p{
    padding: 0 35px;
    text-align: center;
    color: #fff;
    font: 400 14px Raleway;
    margin-top: 10px;
    min-height: 48px;
}
header .featured .block a{
    width: 110px;
    text-align: center;
    display: block;
    margin: 0 auto;
    border: 1px solid #fff;
    border-radius: 4px;
    padding: 7px 0;
    color: #fff;
    font: 600 16px Raleway;
    text-transform: uppercase;
    margin-top: 17px;
}
header > figure{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.25;
    background-size: cover;
    background-position: center;
}
header .view-title{
    padding-top: 70px;
    height: 225px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    flex-direction: column;
    position: relative;
    z-index: 2;
}
header .view-title h3{
    color: #f8711c;
    font: 300 45px/115% Raleway;
}
header .view-title h3 b{
    color: #fff;
}
header .view-title small{
    font: 300 20px Raleway;
}

.breadcrums{
    position: absolute;
    z-index: 5;
    width: 100%;
    height: 30px;
    text-align: center;
    color: #fff;
    top: 90px;
    font: 400 15px Raleway;
    text-transform: uppercase;
}
.breadcrums a{
    color: #fff;
}
.breadcrums span{
    font-weight: 600;
    color: rgba(255,255,255,0.6);
}

.breadcrums.inner{
    position: relative;
    background-color: #f8711c;
    top: 70px;
    padding: 10px 0px;
    height: auto;
}
.breadcrums.inner a{
}
.breadcrums.inner span{
}

/* CONTENT */
main{
    margin-top: 60px;
}
main.inner{
    margin-top: 100px;
}
main{}
main > figure{}
main > figure img{}
main h2{}
main h3{}
main h4{
    font-weight: inherit;
}
main h5{}
main p{
    font: 400 18px/160% Raleway;
}
main p img{
    width: auto;
}
main p img.right{
    float: right;
    margin: 0px 0px 35px 35px;
}
main ul{}
main ul li{
    line-height: 25px;
    margin-bottom: 50px;
    list-style: square;
}

/* --> Left image */
.left-img{
    display: flex;
    position: relative;
    justify-content: space-between;
    flex-wrap: wrap;
}
.left-img .image{
    width: 46%;
    position: relative;
}
.left-img .image figure{
    position: relative;
    height: 100%;
}
.left-img .image figure img{
    position: absolute;
    right: 0;
    height: 109%;
    width: auto;
    top: 50%;
    transform: translateY(-50%);
}
.left-img .caption{
    width: 46%;
}

/* --> Full width Left image */
.fw-left-img{
    display: flex;
    margin-bottom: 60px;
    flex-wrap: wrap;
}
.fw-left-img .image{
    width: 50%;
}
.fw-left-img .image figure{
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
.fw-left-img .image figure::before{}
.fw-left-img .image img{
    position: absolute;
    top: 0;
    height: 100%;
    width: auto;
}
.fw-left-img .caption{
    width: 50%;
    padding: 20px 70px;
}

/* Content */
.content{}
.content figure{
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin: 50px 0;
}
.content figure img{}
.content p{
    text-align: justify;
    margin-bottom: 20px;
}
.content ul{
    margin-top: 30px;
    margin-left: 60px;
    margin-bottom: 50px;
}
.content ul li{
    margin-bottom: 25px;
    font: 400 21px Raleway;
    font-style: italic;
    color: #777;
}
.content ul li::before {
    content: '\f1db';
    font: 22px FontAwesome;
    color: #f8711c;
    margin-right: 14px;
}
.content h3{
    font: 600 24px Raleway;
    margin-bottom: 30px;
}


/* NEWS */
.news-services{
    margin-top: 120px;
    position: relative;
    display: flex;
    margin-bottom: 120px;
    flex-wrap: wrap;
}
.news-services .boxed-title{
    width: 33%;
    position: relative;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}
.news-services .boxed-title figure{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    opacity: 0.2;
    background-position: center;
}
.news-services .boxed-title h4{
    font: 600 50px/115% Raleway;
    padding: 0 50px;
    text-align: center;
    z-index: 2;
}
.news-services .services{
    width: 67%;
    background-color: #f8711c;
    padding: 30px 40px;
}
.news-services .services > p{
    color: #fff;
    font-size: 16px;
    text-align: center;
    line-height: 130%;
}
.news-services .services > a{
    display: block;
    text-align: center;
    color: #fff;
    font: 600 24px Raleway;
    text-transform: uppercase;
    margin: 20px 0;
    margin-bottom: 30px;
}
.news-services .services .blocks{
    display: flex;
    justify-content: space-between;
    position: relative;
}
.news-services .services .blocks .block{
    background-color: #fff;
    width: 32%;
    box-shadow: 0 3px 2px rgba(0,0,0,0.3);
    height: 120%;
    padding-top: 30px;
    margin: 0 10px;
}
.news-services .services .blocks .block h4{
    padding: 0 30px;
    font: 600 22px Raleway;
    color: #f8711c;
    margin-bottom: 20px;
}
.news-services .services .blocks .block p{
    padding: 0 30px;
    font-size: 16px;
    line-height: 130%;
    margin-bottom: 30px;
}
.news-services .services .blocks .block figure{}
.news-services .services .blocks .block figure img{}


/* TESTIMONIES */
.testimonies{
    max-width: 1000px;
    margin: 0 auto;
    margin-bottom: 120px;
}
.testimonies .slick-arrow{
    font-size: 75px;
    background: transparent;
    border: none;
    position: absolute;
    color: #f8711c;
    top: 50%;
    transform: translateY(-50%);
    padding: 30px 50px;
    cursor: pointer;
}
.testimonies .slick-arrow.left{
    right: 100%;
}
.testimonies .slick-arrow.right{
    left: 100%;
}
.testimonies .slick-arrow i{}
.testimonies .slick-dots{
    display: flex;
    justify-content: center;
}
.testimonies .slick-dots li{
    margin: 0 7px;
}
.testimonies .slick-dots li.slick-active button{
    background: #f8711c;
}
.testimonies .slick-dots li button{
    background-color: transparent;
    border: 1px solid #f8711c;
    border-radius: 50%;
    height: 20px;
    width: 20px;
    font-size: 0px;
}
.testimonies .testimony.testimony{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.testimonies .testimony .photo{
    width: 220px;
    height: 220px;
    min-width: 220px;
    background-color: #f8711c;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    padding: 4px;
}
.testimonies .testimony .photo figure{
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    padding: 0px;
    overflow: hidden;
    border-radius: 50%;
}
.testimonies .testimony .photo figure img{
    min-height: 100%;
    min-width: 100%;
    border-radius: 50%;
}
.testimonies .testimony .caption{
    width: 100%;
    margin-left: 70px;
}
.testimonies .testimony .caption h5{
    font: 600 28px Raleway;
}
.testimonies .testimony .caption small{
    font: italic 300 20px Raleway;
    color: #f8711c;
}
.testimonies .testimony .caption p{
    margin-top: 14px;
    font-size: 17px;
    line-height: 140%;
}


/* WHY CHOOSE FORM */
.whychoose-form{
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 70px;
    flex-wrap: wrap;
}
.whychoose-form .caption{
    width: 46%;
    font: 400 24px/180% Raleway;
    color: #444;
}
.whychoose-form form{
    position: relative;
    width: 46%;
}
.whychoose-form form iframe{
    height: 880px;
}
.whychoose-form form p{
    text-align: center;
    font-size: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ccc;
    line-height: 130%;
}
.whychoose-form form .wrapper{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.whychoose-form form fieldset{
    border: none;
    padding: 0;
    margin: 0;
    margin-bottom: 12px;
    width: 100%;
    
}
.whychoose-form form fieldset:nth-of-type(1){}
.whychoose-form form fieldset:nth-of-type(2),
.whychoose-form form fieldset:nth-of-type(3){
    width: 48%;
}
.whychoose-form form fieldset:nth-of-type(4){}
.whychoose-form form fieldset input{}
.whychoose-form form fieldset textarea{
    resize: none;
    height: 120px;
}
.whychoose-form form fieldset input,
.whychoose-form form fieldset textarea{
    background-color: #f3f3f3;
    border: none;
    border-radius: 3px;
    width: 100%;
    padding: 15px 20px;
    font: 16px Raleway;
}
.whychoose-form form button{
    position: relative;
    cursor: pointer;
    color: #fff;
    font: 600 20px Raleway;
    background-color: #000;
    border: none;
    padding: 17px 45px;
    border-radius: 5px;
    margin: 0 auto;
    display: block;
    margin-bottom: -55px;
    text-transform: uppercase;
}
.whychoose-form form button .btn-loader{
    display: flex;
    position: absolute;
    left: 0;
    top: 0;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 5px;
}
.whychoose-form form .msg{
    margin-top: 40px;
    width: 100%;
    text-align: center;
    left: 0;
    font-size: 18px;
}


/* ALL SERVICES */
.all-services{
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
}
.all-services .slick-list{
    margin: 0 -15px;
}
.all-services > .slick-arrow{
    position: absolute;
}
.all-services > .slick-arrow.left{}
.all-services > .slick-arrow.right{}
.all-services .service.service{
    margin: 0 15px;
    position: relative;
    background: #fff;
    border: 1px solid #ccc;
    padding: 30px 35px;
    padding-top: 230px;
    width: 30%;
    margin-bottom: 4%;
    text-align: center;
}
.all-services .service:only-child{
    width: 48%;
    margin-left: auto;
    margin-right: auto;
}
.all-services .service figure{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 200px;
    overflow: hidden;
}
.all-services .service figure img{}
.all-services .service h4{
    color: #f8711c;
    font: 600 22px/110% Raleway;
    margin-bottom: 22px;
}
.all-services .service p{
    font-size: 16px;
    line-height: 145%;
}
.all-services .service a{
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    margin: 0 auto;
    width: 45px;
    height: 45px;
    background-color: #f8711c;
    border-radius: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}
.all-services .service a i{}


/* FULL WIDTH TITLE BUTTON */
.fw-title-btn{
    position: relative;
    width: 100%;
    height: 550px;
    margin-bottom: 70px;
}
.fw-title-btn::before{
    content: '';
    position: absolute;
    right: 0;
    height: 100%;
    width: 70%;
    z-index: 2;
    background: -moz-linear-gradient(left, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 1%, rgba(0,0,0,1) 100%);
    background: -webkit-linear-gradient(left, rgba(0,0,0,0) 0%,rgba(0,0,0,0) 1%,rgba(0,0,0,1) 100%);
    background: linear-gradient(to right, rgba(0,0,0,0) 0%,rgba(0,0,0,0) 1%,rgba(0,0,0,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#000000',GradientType=1 );
}
.fw-title-btn figure{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}
.fw-title-btn .caption{
    position: absolute;
    right: 0;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
    flex-direction: column;
    margin-right: 70px;
}
.fw-title-btn .caption h4{
    font: 300 90px/109% Raleway;
    color: #fff;
}
.fw-title-btn .caption h4 b{
    display: block;
    font-size: 138px !important;
    color: black;
    text-shadow: 0px 0px 15px #f8711c, 0px 0px 15px #f8711c, 0px 0px 15px #f8711c;
}
.fw-title-btn .caption a{
    border-radius: 10px;
    border: 1px solid #f8711c;
    background: transparent;
    color: #fff;
    font: 600 40px Raleway;
    padding: 14px;
    display: block;
    text-align: center;
    width: 330px;
    margin: 0 auto;
    margin-top: 60px;
}


/* ATTEND */
.attend{
    margin-top: 100px;
    position: relative;
    background: #f8711c;    
    margin-bottom: -120px;
}
.attend::before{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url('../images/contact-bgimg.png') center;
    background-size: cover;
    opacity: 0.2;
}
.attend > div{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.attend .contact-ways{
    text-align: center;
    display: flex;
    flex-direction: column;
    margin-right: 60px;
}
.attend .contact-ways h4{
    position: relative;
    font: 300 70px Raleway;
    color: #fff;
    font-weight: 600;
    width: auto;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #8a2904;
    white-space: nowrap;
}
.attend .contact-ways h4 i{
    font-style: normal;
    font-weight: 300;
}
.attend .contact-ways h4::after {
    content: '';
    position: absolute;
    height: 1px;
    width: 140px;
    background: #fff;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 100%;
}
.attend .contact-ways p{
    color: #fff;
    margin-bottom: 50px;
    font-style: italic;
    font-size: 20px;
    line-height: 26px;
    font: 400 18px/160% Raleway;
}
.attend .contact-ways .ways{
    display: flex;
    justify-content: space-between;
}
.attend .contact-ways .ways > div{
    width: 47%;
}
.attend .contact-ways .ways > div i{
    display: block;
    font-size: 80px;
    color: #fff;
}
.attend .contact-ways .ways > div small{
    font: 300 23px Raleway;
    color: #fff;
    margin: 10px 0;
    display: block;
}
.attend .contact-ways .ways .phone{}
.attend .contact-ways .ways .phone i{}
.attend .contact-ways .ways .phone small{}
.attend .contact-ways .ways .phone span b{
    font-size: 36px;
}
.attend .contact-ways .ways .phone span{
    display: block;
    font: 400 55px/80% Raleway;
    color: #fff;
}
.attend .contact-ways .ways .send-wa{}
.attend .contact-ways .ways .send-wa i{}
.attend .contact-ways .ways .send-wa small{}
.attend .contact-ways .ways .send-wa .msg-field{
    position: relative;
    margin-top: 22px;
}
.attend .contact-ways .ways .send-wa .msg-field input{
    width: 100%;
    padding: 16px 22px;
    border-radius: 10px;
    border: none;
    font: 18px Raleway;
    padding-right: 45px;
}
.attend .contact-ways .ways .send-wa .msg-field a{
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.attend .contact-ways .ways .send-wa .msg-field a i{
    color: #0ac70a;
    font-size: 25px;
}
.attend .assistant{
    margin-top: 40px;
}
.attend .assistant figure{}
.attend .assistant figure img{}


/* WRITE US FORM */
.write-us-form{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}
.write-us-form .caption{
    width: 47%;
    position: relative;
    padding-left: 70px;
    padding-bottom: 25px;
}
.write-us-form .caption::before {
    content: '';
    position: absolute;
    top: 0;
    right: 100%;
    height: 100%;
    width: 2000px;
    margin-right: -35px;
    background: #f8711c url("../images/contact-bgpolygon.jpg");
}
.write-us-form .caption h4{
    font: 600 27px Raleway;
    color: #666;
    margin-bottom: 35px;
    position: relative;
}
.write-us-form .caption h4::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 95px;
    background: #f8711c;
    height: 4px;
    margin-top: 7px;
}
.write-us-form .caption p{}
.write-us-form .caption .highlight-phrase{
    position: relative;
    display: flex;
    left: -70px;
    margin-top: 40px;
    margin-right: -70px;
}
.write-us-form .caption .highlight-phrase figure{
    min-width: 170px;
    width: 170px;
    height: 170px;
    border: 3px solid #fff;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 40px;
}
.write-us-form .caption .highlight-phrase figure img{}
.write-us-form .caption .highlight-phrase p{
    position: relative;
    font-size: 21px;
    line-height: 150%;
    font-weight: 300;
    font-style: italic;
    color: #444;
}
.write-us-form .caption .highlight-phrase p::before{
    content: '\f10d';
    font: 140px FontAwesome;
    position: absolute;
    left: -30px;
    top: -25px;
    opacity: 0.07;
}
.write-us-form .caption .highlight-phrase p b{
    color: #333;
    display: block;
    margin-top: 20px;
    font-weight: 400;
    font-size: 24px;
}
.write-us-form form iframe{
    height: 880px;
}
.write-us-form form{
    position: relative;
    width: 47%;
}
.write-us-form form .msg{
    font-size: 18px;
}
.write-us-form form fieldset{
    padding: 0;
    margin: 0;
    border: none;
    margin-bottom: 20px;
}
.write-us-form form fieldset label{
    display: none;
}
.write-us-form form fieldset input{}
.write-us-form form fieldset textarea{
    resize: none;
    height: 140px;
}
.write-us-form form fieldset input,
.write-us-form form fieldset textarea{
    width: 100%;
    border-radius: 10px;
    border: 1px solid #ccc;
    padding: 20px 25px;
    font: 400 20px Raleway;
}
.write-us-form form button{
    position: relative;
    margin: 0;
    border-radius: 10px;
    border: none;
    font-size: 30px;
    width: 305px;
}
.write-us-form form button .btn-loader{
    display: flex;
    position: absolute;
    left: 0;
    top: 0;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    width: 100%;
    height: 100%;
    background: #f8711c;
    border-radius: 10px;
}


/* BLOG */

/* --> List */
.blog-list{}
.blog-list .block{}
.blog-list .block figure{}
.blog-list .block h4{}
.blog-list .block p{}
.blog-list .block .info{}
.blog-list .block .info .comments{}
.blog-list .block .info .comments i{}
.blog-list .block .info .date{}
.blog-list .block .info .date i{}
.blog-list .block .info a{}

/* --> Content */
.post{}
.post > div{}
.post .date{}
.post .interact-info{}
.post .interact-info .likes{}
.post .interact-info .likes i{}
.post .interact-info .comments{}
.post .interact-info .comments i{}
.post .interact-info .blog-nav{}
.post .interact-info .blog-nav a{}
.post .interact-info .blog-nav a.prev{}
.post .interact-info .blog-nav a.next{}
.post .interact-info .blog-nav a i{}
.post form{}
.post form input{}
.post form textarea{}
.post form input,
.post form textarea{}
.post form button{}
.post .comments{}
.post .comments .comment{}
.post .comments .comment figure{}
.post .comments .comment figure img{}
.post .comments .comment .caption{}
.post .comments .comment .caption span{}
.post .comments .comment .caption span small{}
.post .comments .comment .caption p{}



/* FOOTER */
footer{
    background: url(../images/bricks-bg.jpg) center center;
    background-size: 100%;
    border-bottom: 40px solid #f8711c;
    padding: 55px 0;
    margin-top: 120px;
}
footer h4{
    color: #f8711c;
    font: 600 24px raleway;
}
footer h4 + small{
    color: #333;
    font: 400 18px Raleway;
}
footer > div.container{
    display: flex;
    justify-content: space-between;
}
footer .contact-subscribe{
    width: 32%;
}
footer .contact-subscribe form{
    position: relative;
    margin-top: 30px;
    display: flex;
}
footer .contact-subscribe form input{
    background-color: rgba(255,255,255,0.1);
    border: 1px solid #ccc;
    border-radius: 5px 0 0 5px;
    padding: 14px 20px;
    width: 100%;
    font: 400 18px Raleway;
    color: #333;
}
footer .contact-subscribe form button{
    position: relative;
    margin-left: -1px;
    background-color: #fff;
    border: none;
    border-radius: 0 5px 5px 0;
    font: 600 16px Raleway;
    padding: 0 20px;
    cursor: pointer;
}
footer .contact-subscribe form button .btn-loader{
    display: flex;
    position: absolute;
    left: 0;
    top: 0;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 0 5px 5px 0;
}

footer .contact-subscribe .info{
    margin-top: 35px;
    padding-top: 35px;
    border-top: 1px solid rgba(255,255,255,0.15);
}
footer .contact-subscribe .info .block{
    color: #333;
    margin-bottom: 20px;
    font: 300 22px Raleway;
}
footer .contact-subscribe .info .block i{
    float: left;
    font-size: 40px;
    margin-right: 15px;
}
footer .contact-subscribe .info .block small{
    display: block;
    font: 400 12px Raleway;
    text-transform: uppercase;
}
footer .services-list{
    width: 25%;
}
footer .services-list > a{
    color: #f8711c;
    display: block;
    font: 600 20px Raleway;
    text-transform: uppercase;
}
footer .services-list ul{
    margin-top: 30px;
}
footer .services-list ul li{
    margin-bottom: 20px;
}
footer .services-list ul li a{
    display: block;
    color: #333;
    font: 400 16px/130% Raleway;
}
footer .staff{
    width: 30%;
    display: flex;
    align-items: flex-end;
    position: relative;
}
footer .staff img{}


form .msg{
    position: absolute;
    top: 100%;
    color: #fff;
    margin-top: 8px;
    font: 400 15px Raleway;
}
form .msg.success{
    color: #0ac70a;
}
form .msg.error{
    color: firebrick;
}


@media only screen and (max-width: 1221px){
    header .featured .block h5 {
        padding: 0 15px;
        font-size: 23px;
        margin-top: -51px;
    }
    header .featured .block p {
        display: none;
    }
    .news-services .boxed-title {
        padding: 40px 10px;
        width: 100%;
    }
    .news-services .services {
        width: 100%;
    }
    footer .contact-subscribe {
        width: 46%;
    }
    footer .services-list {
        width: 46%;
    }
    footer .staff {
        display: none;
    }

    .attend .contact-ways .ways .phone span{
        font-size: 40px;
    }
    .attend .contact-ways .ways .phone span b {
        font-size: 30px;
    }
    .attend .contact-ways h4{
        font-size: 60px;
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
    .attend .contact-ways p{
        font: 400 16px/140% Raleway;
    }
    .attend .contact-ways .ways > div small{
        font-size: 20px;
    }
    .write-us-form .caption .highlight-phrase figure {
        min-width: 140px;
        width: 140px;
        height: 140px;
    }
}
@media only screen and (max-width: 1025px){
    main {
        margin-top: 40px;
    }
    header .featured .block {
        width: 49%;
        margin-bottom: 2%;
        padding-bottom: 15px;
    }
    header .featured .block:nth-child(n+3){
        margin-bottom: 0;
    }
    header .featured .block figure {
        display: none
    }
    header .featured .block h5 {
        font-size: 23px;
        margin-top: 15px;
        min-height: unset;
    }
    .left-img .image {
        height: 550px;
        margin-bottom: 50px;
    }
    .left-img .image figure img {
        right: 60%;
        transform: translateY(-50%) translateX(50%);
    }
    .news-services {
        margin-top: 60px;
    }
    .left-img .image {
        width: 100%;
    }
    .left-img .caption {
        width: 100%;
    }
    .whychoose-form {
        margin-top: 30px;
    }
    .whychoose-form .caption {
        width: 100%;
        text-align: center;
        margin-bottom: 30px;
    }
    .whychoose-form form {
        width: 100%;
    }
    .testimonies{
        margin-bottom: 60px;
    }
    .testimonies .slick-arrow {
        display: none !important;
    }
    .testimonies .testimony .photo {
        width: 180px;
        height: 180px;
        min-width: 180px;
    }
    .testimonies .testimony .caption{
        margin-left: 35px;
    }
    footer {
        margin-top: 60px;
    }

    .all-services{
        justify-content: space-between;        
        margin-bottom: 20px;
    }
    .all-services .service.service {
        width: 49%;
        margin: 0;
        margin-bottom: 2%;
    }
    
    .attend {        
        margin-top: 60px;
        margin-bottom: -60px;
    }
    .attend .assistant {
        display: none;
    }
    .attend .contact-ways {
        padding: 40px 0;
        margin-right: 0px;
    }

    .fw-left-img .image {
        width: 100%;
        height: 440px;
        margin-bottom: 30px;
    }
    .fw-left-img .caption {
        width: 100%;
        padding: 10px 40px;
    }

    .write-us-form{}
    .write-us-form .caption {
        width: 100%;
        margin-bottom: 40px;
    }
    .write-us-form form {
        width: 100%;
    }
}
@media only screen and (max-width: 771px){
    header .slider .slide .caption{
        padding: 0 20px;
        font-size: 30px;
    }
    .news-services .services {
        width: 100%;
        background-color: #f8711c;
        padding: 30px 10px;
    }
    .left-img .image {
        height: 360px;
    }
    .top-bar{
        position: fixed;
        z-index: 10;
        background-color: #000;
        height: 60px;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        top: 0;
    }
    .top-bar > div{}
    .top-bar .logo{
        display: block;
        width: 220px;
        margin: 0 auto;
    }
    .top-bar .logo figure{
        width: 100%;
    }
    .top-bar .logo figure img{
        width: 100%;
    }
    .top-bar .contact{
        display: none;
    }
    .top-bar > div > input,
    .top-bar > div > i{
        position: absolute;
        left: 0;
        top: 0;
        color: #fff;
        width: 38px;
        height: 38px;
        margin: 0;
        padding: 0;        
    }
    .top-bar > div > input{
        opacity: 0;
        z-index: 13;
        cursor: pointer;
    }
    .top-bar > div > i{
        font-size: 37px;
        z-index: 12;
    }
    .top-bar > div > i.fa-bars{}
    .top-bar > div > i.fa-times{
        display: none;
    }
    .top-bar nav{
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 11;
        background-color: rgba(0,0,0,0.9);
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;

        /* OUT */

        opacity: 0;
        visibility: hidden;
    }
    .top-bar nav ul{}
    .top-bar nav ul li{}
    .top-bar nav ul li a{
        color: #fff;
        font: 600 30px Raleway;
        padding: 10px 10px;
        display: block;
    }
    .top-bar > div > input:checked ~ i.fa-bars{display: none;}
    .top-bar > div > input:checked ~ i.fa-times{display: block;}
    .top-bar > div > input:checked ~ nav{
        opacity: 1;
        visibility: visible;
    }
    
    .left-img .image figure {
        overflow: hidden;
        max-width: 375px;
        width: 100%;
        margin: 0 auto;
    }
    .left-img .image figure img {
        right: 0;
        transform: none;
        top: 0;
        height: 100%;
        position: absolute;
    }
    .news-services .services .blocks{
        flex-wrap: wrap;
    }
    .news-services .services .blocks .block{
        margin-bottom: 0px;
        margin-top: 20px;
        width: 100%;
    }
    .news-services .services .blocks .block:first-child{
        margin-top: 0;
    }
    .news-services .services .blocks .block:last-child{
        margin-bottom: -70px;
    }

    .testimonies .testimony.testimony{
        flex-direction: column;
    }
    .testimonies .testimony .photo{
        margin-bottom: 20px;
    }
    .testimonies .testimony .caption{
        margin-left: 0;
        text-align: center;
        margin-bottom: 20px;
    }
    .whychoose-form .caption{
        font-size: 20px;
        line-height: 140%;
    }

    footer > div.container{
        flex-wrap: wrap;
    }
    footer .contact-subscribe{
        margin-bottom: 30px;
    }
    footer .services-list,
    footer .contact-subscribe{
        width: 100%;
    }

    .all-services {
        flex-wrap: wrap;
    }
    .all-services .service.service {
        width: 100%;
        padding-top: 280px;
    }
    .all-services .service figure {
        height: 250px;
    }
    .fw-title-btn {
        height: 400px;
    }
    .fw-title-btn::before {
        width: 100%;
        background-color: rgba(0,0,0,0.7);
    }
    .fw-title-btn .caption{
        left: 0;
        width: 90%;
        margin: 0 auto;
    }
    .fw-title-btn .caption h4{
        font: 300 68px/109% Raleway;
    }
    .fw-title-btn .caption h4 b {
        font-size: 108px !important;
    }
    .fw-title-btn .caption a {
        margin-top: 30px;
    }

    .attend .contact-ways h4 {
        font-size: 40px;
    }
    .attend .contact-ways p {
        margin-bottom: 20px;
    }
    .attend .contact-ways .ways{
        flex-wrap: wrap;
    }
    .attend .contact-ways .ways > div{
        width: 100%;
    }
    .attend .contact-ways .ways .phone{
        margin-bottom: 30px;
    }
    .breadcrums.inner {
        top: 60px;
    }
    
    .title-divider {
        font: 300 40px/115% Raleway;
    }
    .title-lg{
        font: 300 40px/115% Raleway;
    }
    header .view-title h3 {
        color: #f8711c;
        font: 300 35px/115% Raleway;
    }
    header .view-title small {
        font: 300 16px Raleway;
    }
    header .featured .block{
        border-top: none;
    }
    header .featured .block a{
        position: absolute;
        left: 0;
        top: 0;
        margin: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
    }
    main.inner {
        margin-top: 80px;
    }
}
@media only screen and (max-width: 550px){
    .title-lg {
        margin-bottom: 20px;
    }
    main p {
        font: 400 16px/135% Raleway;
    }
    .fw-title-btn .caption h4 {
        font: 300 48px/109% Raleway;
    }
    .fw-title-btn .caption h4 b {
        font-size: 70px !important;
    }
    .fw-title-btn .caption a {
        font: 600 30px Raleway;
    }
    .fw-title-btn {
        height: 300px;
    }
    .whychoose-form form fieldset:nth-of-type(2),
    .whychoose-form form fieldset:nth-of-type(3) {
        width: 100%;
    }
    header .featured .block h5 {
        font-size: 18px;
        line-height: 120%;
        margin-top: 10px;
    }
    header .featured .block a {
        font-size: 13px;
        padding: 4px 0;
    }
    .fw-title-btn .caption h4 {
        font: 300 40px/109% Raleway;
    }
    .attend .contact-ways h4 {
        font-size: 30px;
    }    
    .highlight-text {
        text-align: center;
        font: 300 28px/130% Raleway;
        padding: 0 5%;
        margin: 30px 0;
    }
    .btn-generic {
        width: 90%;
    }    
    .news-services .boxed-title h4 {
        font: 600 30px/115% Raleway;
        padding: 0 0;
    }
    .title-divider {
        font: 300 30px/115% Raleway;
    }
    .content ul {
        margin-top: 30px;
        margin-left: 20px;
        margin-bottom: 50px;
    }

    .content ul li {
        margin-bottom: 25px;
        font: 400 18px Raleway;
    }
    .write-us-form form button {
        width: 100%;
    }
    .write-us-form .caption .highlight-phrase figure {
        display: none;
    }
    .write-us-form .caption .highlight-phrase p {
        padding-left: 70px;
    }
    .all-services .service.service{
        padding: 0;
        margin-bottom: 20px;
        padding-bottom: 25px;
    }
    .all-services .service figure {
        position: relative;
        width: 100%;
        height:auto;
        margin-bottom: 25px;
    }
    .all-services .service h4{
        margin-bottom: 0;
    }
    .all-services .service h4,
    .all-services .service p{
        padding: 0 25px;
    }
    .all-services .service h4 + p{
        margin-top: 22px;
    }
    .all-services .service a {
        position: relative;
        display: flex;
        margin-bottom: -45px;
        margin-top: 15px;
        transform: none;
        top: 0;
    }
}
@media only screen and (max-width: 400px){
    .top-bar .logo {
        display: block;
        width: 180px;
    }
    header .slider .slide .caption {
        font-size: 25px;
    }
}
@media only screen and (max-width: 321px){}
@media only screen and (max-height: 650px){
    header .slider .slide .caption {
        top: 35%;
        font: 300 30px/100% Raleway;
    }
}