/*-----------------------------------------------------------------------------------
-----------------------------------------------------------------------------------
    
    CSS INDEX
    ===================
  
    1. Header Area
    2. Slider Area
    3. About Area
    4. Service Area
    5. Fortfolio Area
    6. Contact Area
    7. Footer Area

-----------------------------------------------------------------------------------*/

/*============================================
* 1. Header Area
*=============================================*/
.header-area{
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    width: 100%;
    background: #202020;
}
.logo{}
.logo a{
    display: inline-block;
}
.logo a img{
    max-width: 43px;
}
.main-menu{}
.main-menu nav ul{
    text-align: right;
}
.main-menu nav ul li{
    display: inline-block;
}
.main-menu nav ul li a{
        display: block;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    padding: 35px 17px;
    position: relative;
}

.main-menu nav ul li a:before{
    content: '';
    position: absolute;
    left: 50%;
    bottom: 17%;
    height: 7px;
    width: 7px;
    background: #FFF;
    border-radius: 50%;
    opacity: 0;
    transform: translateX(-50%);
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.main-menu nav ul li a:after{
    content: attr(data-hover);
    position: absolute;
    left: 50%;
    top: 70%;
    opacity: 0;
    color: #BBB;
    transform: translateX(-50%);
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.main-menu nav ul li a:hover:after{
    opacity: 1;
    top: 50%;
    transform: translate(-50%, -50%);
}
.main-menu nav ul li.active a:before{
    opacity: 1;
}
.main-menu nav ul li a span{
    display: block;
    -webkit-transition: all 0.15s ease-in-out 0s;
    -o-transition: all 0.15s ease-in-out 0s;
    transition: all 0.15s ease-in-out 0s;
}
.main-menu nav ul li a:hover span{
    transform: translate3d(0,-12px,0);
    opacity: 0;
}

/*mobiel menu*/

.slicknav_menu .slicknav_menutxt {
    display: none;
}

.slicknav_menu {
    background: transparent;
    margin-top: 21px;
}

.slicknav_menu .slicknav_icon-bar {
    height: 2px;
    width: 19px;
    margin: 3px 0px;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.slicknav_btn {
    background-color: transparent;
    position: relative;
    margin-top: -38px;
}

.slicknav_menu .slicknav_open .slicknav_icon-bar:nth-child(2) {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

.slicknav_menu .slicknav_open .slicknav_icon-bar:nth-child(1) {
    -webkit-transform: rotate(45deg) translate(1px, 7px);
    transform: rotate(45deg) translate(1px, 7px);
}

.slicknav_menu .slicknav_open .slicknav_icon-bar:nth-child(3) {
    -webkit-transform: rotate(-45deg) translateY(-6px);
    transform: rotate(-45deg) translateY(-6px);
}

.slicknav_menu {
    margin-top: 0;
}

.slicknav_nav {
    background: #202020;
    margin: 0;
    padding: 6px 0px;
    margin-top: 10px;
}

.slicknav_nav a:hover {
    background: #fefefe none repeat scroll 0 0;
    border-radius: 0;
}

.slicknav_nav a {
    font-size: 14px;
    letter-spacing: 0.01em;
}

/*============================================
* END Header Area
*=============================================*/

/*============================================
* 2. Slider Area
*=============================================*/
.slider-area{
    height: 630px;
    display: flex;
    align-items: center;
    position: relative;
}
.white_svg{
    position: absolute;
    left: 0;
    bottom: -11px;
    width: 100%;
    overflow: hidden;
}
.svg_white svg{
    fill: #fff;
    width: 101%;
}
.svg_gray svg{
    fill: #f9f9f9;
    width: 101%;
}
.slider-content h2{
    font-size: 55px;
    color: #ffffff;
    font-weight: 300;
    letter-spacing: 0;
    line-height: 55px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.slider-content h4{
    font-size: 19px;
    font-weight: 300;
    color: #ffffff;
    letter-spacing: 0em;
    line-height: 41px;
    text-transform: uppercase;
}
.slider-content h4 span{
    display: inline-block!important;
    letter-spacing: 0;
}
.txt1-wrap{
    overflow: hidden;
    margin-bottom: 100px;
}
.txt1{
    opacity: 0;
    display: inline-block;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    -webkit-transform: translate3d(0px, 100%, 0px);
    -ms-transform: translate3d(0px, 100%, 0px);
    -o-transform: translate3d(0px, 100%, 0px);
    transform: translate3d(0px, 100%, 0px);
}

.next-section{
        position: absolute;
    right: 38px;
    bottom: 123px;
    transform: rotate(-90deg);
    z-index: 99;
    padding-left: 32px;
}
.next-section a{
        display: block;
    color: #fff;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 0.2em;
        font-weight: 300;
        position: relative;
}
.next-section strong{
        display: inline-block;
    font-size: 14px;
    font-weight: 700;
    margin-left: 4px;
}
.next-section a:after{
    content: '';
    position: absolute;
    bottom: 3px;
    right: 0;
    height: 1px;
    width: 0%;
    background-color: #ddd;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.next-section a:hover:after{
    width: 126%;
}
.next-section a:before{
        content: '\f104';
    position: absolute;
    bottom: 3px;
    left: -17px;
    font-family: fontawesome;
    font-size: 24px;
    color: #b1acac;
    -webkit-animation: secdownmoving 1000ms linear 0s infinite;
    -o-animation: secdownmoving 1000ms linear 0s infinite;
    animation: secdownmoving 1000ms linear 0s infinite;
}
@keyframes secdownmoving{
    0%{
        -webkit-transform: translateX(0px);
        -ms-transform: translateX(0px);
        -o-transform: translateX(0px);
        transform: translateX(0px);
    }
    50%{
        -webkit-transform: translateX(-10px);
        -ms-transform: translateX(-10px);
        -o-transform: translateX(-10px);
        transform: translateX(-10px);
    }
    100%{
        -webkit-transform: translateX(0px);
        -ms-transform: translateX(0px);
        -o-transform: translateX(0px);
        transform: translateX(0px);
    }
}

/*============================================
* END Slider Area
*=============================================*/

/*============================================
* 3. About Area
*=============================================*/
.about-area{
    padding: 100px 0px 150px;
}
.abt-left-thumb{
    display: block;
    position: relative;
    z-index: 1;
    /*box-shadow: 0px 0px 21px rgba(0,0,0,0.3);*/
}
.abt-left-thumb:before{
    /*content: '';*/
    position: absolute;
    right: -45px;
    bottom: -45px;
    border: 2px solid #f3f2f2;
    height: 100%;
    width: 100%;
    z-index: -1;
    border-radius: 0px 0px 30px 0px;
}
.abt-left-thumb img{
    border-radius: 4px;
    overflow: hidden;
    max-width: 100%;
}
.abt-content{}
.section-title{}
.section-title h2{
    font-size: 29px;
    letter-spacing: 0;
    color: #222222;
    line-height: 30px;
    margin-bottom: 50px;
    padding-bottom: 16px;
    position: relative;
}
.section-title h2:before{
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    height: 5px!important;
    width: 35px;
    background-color: #ff9300;
}
.section-title h2:after{
    content: '';
    position: absolute;
    left: 0;
    bottom: 2px;
    height: 1px;
    width: 255px;
    background-color: #202020;
}
.section-title h2.txt2_is_show:after{
    width: 0;
    -webkit-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}
.section-title h2.is_show:after{
    /*width: 255px;*/
}
.abt-content p{
    font-size: 14px;
    font-weight: 400;
    color: #333;
    letter-spacing: 0;
    margin-bottom: 19px;
}
.social-link{
    display: inline-block;
    margin-top: 11px;
}
.social-link h5{
    font-family: 'Montserrat', sans-serif;
    display: inline-block;
    font-size: 16px;
    letter-spacing: 0;
    font-weight: 600;
    color: #222222;
    margin-right: 22px;
}
.social-link a{
    display: inline-block;
    font-size: 18px;
    color: #333333;
    margin-right: 19px;
    text-align: center;
}
.social-link:hover a{
    color: #888;
}
.social-link a:hover{
    color: #000;
}

.btn{
    border: 1px solid #ff8d00!important;
    color: #ff8d00!important;
    border: none;
    text-transform: uppercase;
    font-size: 12px;
    padding: 20px 40px;
    font-weight: 800;
    cursor: pointer;
    outline: none;
    margin-top: 20px;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.btn:hover{
    color: #FFF!important;
    background-color: #ff9300;
}

.btn-centro{
    display: block;
    margin: 60px auto 0 auto;
    max-width: 300px;
}

/*============================================
* END About Area
*=============================================*/

/*============================================
* 4. Service Area
*=============================================*/
.service-area{
    position: relative;
}
.single-service{
    z-index: 1;
    position: relative;
    padding: 14px;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
/*.single-service:hover,
.single-service:hover .icon{
    background-color: #f9f9f9;
}*/
.single-service .icon{
        float: left;
    margin-right: 17px;
    margin-top: 10px;
        background: #fff;
}
.single-service:before{
        content: '';
    position: absolute;
    left: 40px;
    top: 22px;
    height: 0;
    width: 1px;
    background: #d0cdcd;
    z-index: -1;
    -webkit-transition: all 0.8s ease 0s;
    -o-transition: all 0.8s ease 0s;
    transition: all 0.8s ease 0s;
}
.txt2_is_show.is_show:before{
    height: calc(100% - 40px);
}
.single-service:after{
    content: '';
    position: absolute;
    left: 35px;
    bottom: 16px;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background: #d0cdcd;
}
.txt2_is_show:after{
    opacity: 0;
    -webkit-transition: all 0.8s ease 1.1s;
    -o-transition: all 0.8s ease 1.1s;
    transition: all 0.8s ease 1.1s;
}
.txt2_is_show.is_show:after{
    opacity: 1;
}
.single-service .icon span:before{
    font-size: 50px;
        color: #222;
}
.srvc-content{
    overflow: hidden;
}
.srvc-content h4{
        font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0;
    color: #222222;
    margin-bottom: 15px;
}
.srvc-content p{
    color: #444;
    line-height: 26px;
}


/*============================================
* END Service Area
*=============================================*/

/*============================================
* 5. Fortfolio Area
*=============================================*/
.fortfolio-area{
    position: relative;
}
.fortfolio-filter{
    max-width: 245px;
    margin: 0 auto 50px auto;
}
.fortfolio-filter button{

    font-weight: 500;
    color: #888;
    letter-spacing: 0;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    padding-bottom: 6px;
    position: relative;
    margin-right: 21px;
}

.fortfolio-filter button:last-child{
    margin-right: 0;
}
.fortfolio-filter button:before{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    margin: 0 auto;
    height: 7px;
    width: 7px;
    opacity: 0;
    background: #ff9800;
    border-radius: 50%;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.fortfolio-filter button.active{
    color: #222;
}
.fortfolio-filter button.active:before{
    opacity: 1;
}
.prt-item{
    margin-bottom: 30px;
}
.prt-item a{
    display: block;
}
.prt-item a.expand-video{
    position: relative;
    z-index: 1;
}
.prt-item a.expand-video span{
        position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.prt-item a.expand-video:before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    background-color: rgba(27, 27, 27, 0.5);
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.prt-item:hover a.expand-video:before{
    opacity: 1;
}
.prt-item a.expand-video span:before{
    font-size: 50px;
    color: #fff;
}
.prt-item a:hover {
    box-shadow: 0px 10px 27px rgba(0,0,0,0.1);
}
.prt-item a img{
    max-width: 100%;
    display: inline-block;
}

.modal-dialog, .modal-content{
    max-width: 100%;
    height: 100%;
    margin: 0;
    border: none;
    border-radius: 0;
}

.modal-body{
    height: 100%;
    overflow-y: scroll;
    padding: 0;
}

.btn-close{
    position: fixed;
    right: 0;
    /* background-color: #FFF; */
    /* border: 1px solid #DDD; */
    padding: 20px;
    background: transparent;
    z-index: 999;
    border: none;
    color: #888;
    font-size: 32px;
    cursor: pointer;
}

.cover-portfolio-atm{
    padding: 150px 0;
    background-attachment: fixed;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    background-size: 100%;
    background-color:#FFF;
}


.cover-portfolio-benchmark{
    padding: 40px 0;
    background-attachment: fixed;
    /*background-position: center;
    background-repeat: no-repeat;
    background-size: cover;*/
    /*background-image: url(../img/portfolio/benchmark/bg.jpg);*/
    /*box-shadow: inset 0px -11px 20px 2px rgba(0, 0, 0, 0.1);*/
    background-repeat: repeat;
    display: flex;
    align-items: center;
    position: relative;
    background-color: #f9f9f9;
}

.cover-portfolio-sis{
    padding: 150px 0;
    background-attachment: fixed;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    background-size: 100%;
    background-color:#fdfdfd;
}

.cover-portfolio-monitorizacion{
    padding: 150px 0;
    background-attachment: fixed;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    background-size: 100%;
    background-color:#FFF;
}

.cover-portfolio-iupay{
    padding: 140px 0;
    background-attachment: fixed;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    background-size: 100%;
    background-color:#FFF;
}

.cover-sis{
    position: absolute;
    top: 0;
    bottom: 0;
    height: 570px;
    right: 0;
    z-index: 0;
}

.cover-monitorizacion{
    position: absolute;
    top: 0;
    bottom: 0;
    height: 513px;
    left: 0;
    z-index: 0;
}

.cover-eva{
    position: absolute;
    top: 0;
    bottom: 0;
    height: 538px;
    left: 0;
    z-index: 0;
}

.cover-iupay{
    position: absolute;
    top: 0;
    bottom: 0;
    height: 538px;
    left: 0;
    z-index: 0;
}

.cover-atm{
    position: absolute;
    top: 0;
    bottom: 0;
    height: 568px;
    left: 0;
    z-index: 0;
}

.slider-content{
    width: 100%;
    float: left;
}

.img-cover {
    float: left;
    width: 50%;
}

.title-cover {
float: left;
    display: flex;
    width: 50%;
    align-items: center;
}

section.cover-single-portfolio {
    float: left;
    background-color: #FFF;
}

.box-shadow{
    box-shadow: 0px 8px 20px 2px rgba(0, 0, 0, 0.2);
}

.img-cover-portfolio{
    margin: 0 auto;
    display: block;
}

.img-cover img {
    max-height: 500px;
}

.shadow-img{
    box-shadow: 0 0 14px 5px #d0d0d0;
    border: 1px solid #CCC;
}

.border-img{
    border: 1px solid #DDD;
}

.margin-30{
    margin-top: 30px!important;
}

.margin-60{
    margin-top: 60px!important;
}

.title-single-portfolio{
    text-transform: none!important;
    font-size: 46px!important;
    font-weight: 700!important;
    color: #333!important;
    position: relative;
    z-index: 2;
}

.title-single-portfolio.title-cover-right{
    text-transform: none!important;
    font-size: 46px!important;
    font-weight: 700!important;
    color: #333!important;
    position: relative;
    z-index: 2;
    line-height: 55px;
}

.title-single-portfolio.atm-title{
    margin-top: 40px;
}

.title-single-portfolio.sis-title{
    margin-top: 35px;
}

.title-single-portfolio.benchmark-title{
    font-size: 33px!important;
    line-height: 44px;
    margin-top: 15px;
}

.subtitle-single-portfolio{
    text-align: center;
}

.bg-grey{
    background-color: #f9f9f9;
}

.imagen-block{
    display: block;
    margin:40px auto;
    max-width: 100%;
}

.section-portfolio{
    padding: 80px 0;
    float: left;
    width: 100%;
}

.text-intro{
    max-width: 801px;
    margin: 10px auto 20px auto;
    font-size: 22px;
    text-align: center;
    line-height: 37px;
}

.texto-intro{
    text-align: right;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    line-height: 35px;
}

.parraph{
    font-size: 18px;
    line-height: 32px;
    color: #555;
}

.parraph.destacado{
    font-size: 21px;
    margin-bottom: 16px;
}

.parraph.destacado:first-child{
    margin-top: 58px;
}

.parraph.destacado span{
    font-weight: bold;
    color: #444;
    margin-right: 4px;
    font-size: 25px;
}

.featured{
    border: 1px solid #DDD;
    padding: 35px;
    border-top: 3px solid #555;
    margin-bottom: 40px;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.featured:hover{
    border-top: 3px solid #ff8d00;
}

.featured h5{
    font-size: 50px;
    text-align: center;
    margin-bottom: 20px;
    color: #202020;
}

.featured h5 span{
    font-size: 40px;
}

.featured p{
    color: #555;
    font-size: 16px;
    text-align: center;
    line-height: 25px;
}

ul.bullet-list{
    padding-left: 30px;
    margin:15px 0;
}

ul.bullet-list li{
    letter-spacing: 0;
    color: #555;
    font-size: 18px;
    line-height: 30px;
    margin: 20px 0;
    position: relative;
}

ul.bullet-list li:before{
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 7px;
    background-color: #ff8d00;
    position: absolute;
    left: -20px;
    top: 12px;
}

ul.bullet-list.buenas-practicas li{
    margin:0;
}

p.parraph.conlusiones{
    margin-top: 15px;
    padding: 0 33px;
    position: relative;
}

.parraph.conlusiones span{
    position: absolute;
    left: 0;
    background-color: #ff8d00;
    color: #FFF;
    font-weight: bold;
    font-size: 18px;
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    border-radius: 14px;
}

.parraph.conlusiones::before{
    /* display: inline-block; */
    width: 0;
    height: 0;
    /* margin-left: .255em; */
    /* vertical-align: .255em; */
    content: "";
    position: absolute;
    border-top: 20px solid transparent;
    /* border-right: 20px solid transparent; */
    border-bottom: 20px solid transparent;
    border-left: 20px solid #DDD;
    right: 0;
    top: 0;
    bottom: 0;
    margin-top: auto;
    margin-bottom: auto;
}

.logo-portfolio{
    max-width: 130px;
    margin-top: 28px;
    display: block;
    position: relative;
    z-index: 10;
}

.logo-portfolio2{
    max-width: 205px;
}

.item-details{
    position: absolute;
    text-align: center;
    width: calc(100% - 30px);
    visibility: hidden;
    opacity: 0;
    height: calc(100% - 30px);
    top: 0;
    display: table-cell;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.prt-item a:hover .item-details, .prt-item a:hover .item-details::before{
    opacity: 1;
    visibility: visible;
}

.item-details-inner{
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-40%);
    transform: translateY(-40%);
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}


.item-details::before{
    background-color: rgba(255, 255, 255, 0.9);
    content: "";
    height: calc(100% - 20px);
    left: 50%;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    width: calc(100% - 20px);
    visibility: hidden;
}

.item-details h3{
    padding: 0 20px;
    color: #202020;
    transform: scale(0.8);
    -webkit-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    font-weight: 500;
    margin-top: -10px;
    opacity: 0;
    margin-bottom: 30px;
}

.item-details h3::after{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -25px;
    height: 3px;
    width: 35px;
    background-color: #ff9300;
    margin: 0 auto;
}


.item-details h4{
    font-weight: 300;
    padding: 0 20px;
    color: #555;
    /*transform: scale(0.8);*/
    margin-top: 10px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: 25px;
    opacity: 0;
    font-size: 14px;
    -webkit-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}

.prt-item a:hover .item-details h3{
    margin-top: 0;
    opacity: 1;
}

.prt-item a:hover .item-details h4{
    transform: scale(1);
    margin-top: 0;
    opacity: 1;
}


/*============================================
* END Fortfolio Area
*=============================================*/


/*============================================
* 5. Resume Area
*=============================================*/
.title-section{
    text-align: center;
    font-family: 'Raleway';
    font-size: 40px!important;
    margin-bottom: 100px!important;
}

.title-section:before{
    margin: 0 auto;
    left: 0;
    right: 0;
}

.title-resume{
    letter-spacing: 0;
    margin-bottom: 30px;
    font-weight: 800;
}

.title-resume span {
    margin-right: 13px;
    color: #ff8d00;
}


.box-resume{
    /*box-shadow: 0 2px 2px 0px rgba(0, 0, 0, 0.3);*/
    padding: 10px 30px;
    -webkit-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
    border-left: 1px solid #DDD;
    margin: 0 0 20px 0;
}

.box-resume:hover{
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
    border-color: #ff8d00;
}

.resume-single {
    margin-bottom: 30px;
}

p.period{
    font-size: 14px;
    color: #555;
    font-weight: 700;
}

.title-place img{
    width: 27px;
    margin-right: 8px;
    vertical-align: middle;
}

h4.title-place{
    letter-spacing: 0;
    margin-bottom: 5px;
    font-size: 18px;
    font-weight: 500;
}

p.description-resume{
    color: #555;
}

p.position-resume{
    color: #888;
    font-weight: 500;
    -webkit-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
}

.box-resume:hover .position-resume{
    color: #333;
}

.clients-area,.resume-area{
    position: relative;
}

.clients{
    width: 1000px;
    max-width: 100%;
    margin: 0 auto;
    display: block;
}

.clients-title{
    text-align: center;
}

.clients-title:before{
    margin: 0 auto;
    left: 0;
    right: 0;
}

.single-progress-bar{
    width: 100%;
    padding: 15px 0;
}

.single-progress-bar h6{
    font-weight: 500;
    letter-spacing: 2px;
    font-size: 12px;
    margin-bottom: 5px;
    color: #444;
}

.bar{
    background-color: #EEE;
    width: 100%;
    height: 4px;
    border-radius: 4px;
}

.progress-bar{
    background-color: #555;
    height: 4px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.single-progress-bar:hover .progress-bar{
    background-color: #ff8d00;
}

.margin-60{
    margin-top: 60px;
}

/*============================================
* END Resume Area
*=============================================*/


/*============================================
* 6. Contact Area
*=============================================*/
.contact-area{
    position: relative;
}
.contact-area .section-title{
    margin-bottom: 60px;
}
.cnt-left ul li {
    color: #333;
    letter-spacing: 0;
    line-height: 23px;
    margin-bottom: 40px;
    font-size: 25px;
    text-align: center;
    font-weight: 500;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.cnt-left ul li:hover{
    color: #ff9300;
}

.cnt-left ul li span.ct-break{
    display: block;
}
.cnt-left .social-link{
    margin-top: 32px;
    margin: 32px auto 0 auto;
    width: 200px;
    display: block;
}
.contact-form form input,
.contact-form form textarea{
        height: 34px;
    width: 100%;
    background: #fff;
    border: none;
    border-bottom: 1px solid #dddddd;
    margin-bottom: 20px;
    letter-spacing: 0;
    font-size: 13px;
}
.contact-form form input::-webkit-input-placeholder,
.contact-form form textarea::-webkit-input-placeholder {
  color: #777;
}
.contact-form form input::-moz-placeholder,
.contact-form form textarea::-moz-placeholder {
  color: #777;
}
.contact-form form input:-ms-input-placeholder,
.contact-form form textarea:-ms-input-placeholder {
  color: #777;
}
.contact-form form input:-moz-placeholder,
.contact-form form textarea:-moz-placeholder {
  color: #777;
}
.contact-form form textarea{
    height: 87px;
}
.contact-form form .form-submit{
    text-align: right;
}
.contact-form form button{
        background: #222;
    color: #fff;
    border: none;
    text-transform: uppercase;
    font-size: 12px;
    padding: 9px 25px;
    font-weight: 400;
    cursor: pointer;
    outline: none;
}
.contact-form form button i{
    margin-left: 8px;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.contact-form form button:hover i{
    -webkit-transform: translateX(5px);
    -ms-transform: translateX(5px);
    -o-transform: translateX(5px);
    transform: translateX(5px);
}

/*============================================
* END Contact Area
*=============================================*/

/*============================================
* 7. Footer Area
*=============================================*/
.footer-area{
    padding: 18px 0px;
    position: relative;
}
.copyright {
    text-align: right;
}
.copyright p{
        font-size: 14px;
    font-weight: 400;
    letter-spacing: 0;
    color: #898989;
}
.flogo a img{
    max-width: 40px;
}
.copyright p span{
    display: inline-block;
    color: #333;
}
.go-to-top a{
    color: #333;
    position: absolute;
    left: calc(50% - 35px);
    top: -35px;
    background: #fff;
    height: 70px;
    width: 70px;
    border-radius: 50%;
    text-align: center;
    line-height: 70px;
    box-shadow: 0px -2px 9.9px 0.1px rgba(186, 187, 188, 0.25);
    font-size: 27px;
}
.go-to-top a:hover{
    box-shadow: 0px -4px 9.9px 0.1px rgba(186, 187, 188, 0.25);
}

/*============================================
* END Footer Area
*=============================================*/