/*====================================================
    00. Body, links, paragraphs, general style
====================================================*/

*,
 :active,
 :focus,
 :hover {
    outline: 0!important;
}

body {
    background: #fff;
    font-size: 15px;
    line-height: 25px;
    color: #767676;
    font-family: 'Roboto', sans-serif, '微软雅黑';
    font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    color: #141414;
    font-weight: 400;
}

img {
    max-width: 100%;
}

b,
strong {
    font-weight: bold;
}

a {
    text-decoration: none;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.pad-t-100 {
    padding-top: 100px!important;
}

.pad-b-100 {
    padding-bottom: 100px!important;
}

.pad-t-80 {
    padding-top: 80px!important;
}

.pad-b-80 {
    padding-bottom: 80px!important;
}

.pad-t-20 {
    padding-top: 20px!important;
}

.pad-b-20 {
    padding-bottom: 20px!important;
}

.pad-t-0 {
    padding-top: 0px!important;
}

.pad-b-0 {
    padding-bottom: 0px!important;
}

.mr-10 {
    margin-right: 10px;
}

.ml-10 {
    margin-left: 10px;
}

.mr-5 {
    margin-right: 5px;
}

.ml-5 {
    margin-left: 5px;
}

.hex-primary {
    background-color: #5178ea;
}

.hex-dark {
    background-color: #181818;
}

.bg-img {
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

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

.section {
    padding-top: 90px;
    padding-bottom: 90px;
    position: relative;
}

.section .container {
    position: relative;
}

.title-section {
    position: absolute;
    z-index: 1;
    top: -30px;
}

.title-section.left {
    left: 20px;
}

.title-section.right {
    right: 20px;
}

.title-section h2 {
    margin: 0;
    font-size: 80px;
    font-weight: 800;
    line-height: 1;
    color: #f8f8f8;
    text-transform: uppercase;
}

.hex-dark .title-section h2 {
    color: #232323;
}

.bg-light .title-section h2 {
    color: #f5f5f5;
}

.content-section {
    position: relative;
    z-index: 2;
}

.text-title {
    margin-top: 0;
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 25px;
    font-weight: 800;
    padding-left: 30px;
    position: relative;
}

.hex-primary .text-title,
.hex-dark .text-title {
    color: #fff;
}

.text-title:before {
    position: absolute;
    content: "";
    width: 15px;
    height: 15px;
    background: #fff;
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    -ms-border-radius: 999px;
    -o-border-radius: 999px;
    border-radius: 999px;
    left: 0;
    top: 6px;
    border: 5px solid #141414;
}

.hex-primary .text-title:before,
.hex-dark .text-title:before {
    background: transparent;
    border: 5px solid #fff;
}

.text-content {
    margin-bottom: 0;
    font-size: 23px;
    line-height: 38px;
}

.overlay-black:before,
.overlay-primary:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 4;
}

.overlay-black:before {
    background: rgba(0, 0, 0, 0.6);
}

.overlay-primary:before {
    background: rgba(77, 120, 242, 0.9);
}

.cus-image-left {
    position: absolute;
    right: 105%;
    top: 0;
}

.cus-image-left img {
    max-width: 680px;
}

.cus-image-right {
    position: absolute;
    left: 105%;
    top: 0;
}

.cus-image-right img {
    max-width: 680px;
}

.btn-mypooh {
    display: inline-block;
    border: none;
    outline: none;
    padding: 10px 30px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 400;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.btn-mypooh.blue {
    background: #5178ea;
    color: #ffffff;
}

.btn-mypooh.white {
    background: #ffffff;
    color: #5178ea;
}

.btn-mypooh:hover {
    text-decoration: none;
    -webkit-box-shadow: 0 4px 19px -4px rgba(0, 0, 0, 0.45);
    -moz-box-shadow: 0 4px 19px -4px rgba(0, 0, 0, 0.45);
    -ms-box-shadow: 0 4px 19px -4px rgba(0, 0, 0, 0.45);
    -o-box-shadow: 0 4px 19px -4px rgba(0, 0, 0, 0.45);
    box-shadow: 0 4px 19px -4px rgba(0, 0, 0, 0.45);
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    -o-transform: translateY(-2px);
    transform: translateY(-2px);
}

.btn-mypooh.blue:hover {
    background-color: #0f73ca;
}

.btn-mypooh.white:hover {
    background-color: #f9f9f9;
}

#content {
    -webkit-transition: transform .3s ease-in-out;
    -moz-transition: transform .3s ease-in-out;
    -ms-transition: transform .3s ease-in-out;
    -o-transition: transform .3s ease-in-out;
    transition: transform .3s ease-in-out;
}

body.open-menu #content {
    -webkit-transform: translateX(-160px);
    -moz-transform: translateX(-160px);
    -ms-transform: translateX(-160px);
    -o-transform: translateX(-160px);
    transform: translateX(-160px);
}

.title-page-box {
    position: relative;
    z-index: 7;
}

.title-page-box h2 {
    margin: 0;
    font-weight: 600;
    color: #fff;
    font-size: 40px;
    line-height: 45px;
}

.title-page-box hr {
    width: 60px;
    margin-left: 0;
    border-top: 4px solid #5078ec;
}

.title-page-box ul {
    margin: 0;
    padding: 0;
    list-style: none;
    line-height: 20px;
    font-size: 16px;
}

.title-page-box ul li {
    display: inline-block;
    max-width: 700px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    color: #fff;
}

.title-page-box ul li:after {
    content: "/";
    margin-left: 10px;
    font-size: 11px;
    margin-right: 10px;
}

.title-page-box ul li:last-child:after {
    content: "";
    margin-left: 0;
    margin-right: 0;
}

.title-page-box ul li a {
    color: #ccc;
    text-decoration: none;
}


/*====================================================
    01. Preloader
====================================================*/

.preloader {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #fff;
    z-index: 999;
    display: table;
    width: 100%;
    height: 100%;
}

.cell-preloader {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    height: 100%;
}

.wrapper {
    margin: auto;
    width: 79px;
    text-align: center
}

.cssload-loader {
    width: 47px;
    height: 47px;
    border-radius: 50%;
    margin: 0;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    background-color: rgb(82, 119, 232);
}

.cssload-loader,
.cssload-loader:before,
.cssload-loader:after {
    animation: 0.85s infinite ease-in-out;
    -o-animation: 0.85s infinite ease-in-out;
    -ms-animation: 0.85s infinite ease-in-out;
    -webkit-animation: 0.85s infinite ease-in-out;
    -moz-animation: 0.85s infinite ease-in-out;
}

.cssload-loader:before,
.cssload-loader:after {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
}

.cssload-loader:before,
.cssload-loader:after {
    content: "";
}

.cssload-loader:before {
    content: '';
    border: 12px solid white;
    top: 0;
    left: 0;
    animation-name: cssload-animation;
    -o-animation-name: cssload-animation;
    -ms-animation-name: cssload-animation;
    -webkit-animation-name: cssload-animation;
    -moz-animation-name: cssload-animation;
}


/*====================================================
    02. Header & Navigation
====================================================*/

#mobile-menu {
    position: fixed;
    z-index: 99;
    right: 30px;
    top: 30px;
}

#mobile-menu a {
    background: #5178ea;
    width: 56px;
    height: 56px;
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    -ms-border-radius: 999px;
    -o-border-radius: 999px;
    border-radius: 999px;
    line-height: 58px;
    text-align: center;
    font-size: 22px;
    display: block;
    color: #fff;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    -webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, .1);
    -moz-box-shadow: 0 0 30px 0 rgba(0, 0, 0, .1);
    -ms-box-shadow: 0 0 30px 0 rgba(0, 0, 0, .1);
    -o-box-shadow: 0 0 30px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, .1);
}

#mobile-menu a:hover {
    color: #5178ea;
    background: #fff;
}

#menu {
    position: fixed;
    right: 0;
    background: #fff;
    z-index: 100;
    top: 0;
    bottom: 0;
    width: 260px;
    -webkit-box-shadow: -2px 0px 29px -3px rgba(0, 0, 0, .1);
    -moz-box-shadow: -2px 0px 29px -3px rgba(0, 0, 0, .1);
    -ms-box-shadow: -2px 0px 29px -3px rgba(0, 0, 0, .1);
    -o-box-shadow: -2px 0px 29px -3px rgba(0, 0, 0, .1);
    box-shadow: -2px 0px 29px -3px rgba(0, 0, 0, .1);
    -webkit-transition: transform .3s ease-in-out;
    -moz-transition: transform .3s ease-in-out;
    -ms-transition: transform .3s ease-in-out;
    -o-transition: transform .3s ease-in-out;
    transition: transform .3s ease-in-out;
    -webkit-transform: translateX(260px);
    -mos-transform: translateX(260px);
    -ms-transform: translateX(260px);
    -o-transform: translateX(260px);
    transform: translateX(260px);
    overflow-y: auto;
}

body.open-menu #menu {
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
    transform: translateX(0px);
}

.menu-logo {
    padding: 30px 85px 30px 30px;
    position: relative;
}

.menu-logo h3 {
    margin: 0;
    font-weight: 800;
}

.menu-logo h3 span {
    color: #5178ea;
}

.menu-logo a#mobile-menu-close {
    position: absolute;
    top: 50%;
    right: 30px;
    color: #141414;
    font-size: 22px;
    margin-top: -13px;
}

.menu-logo a#mobile-menu-close:hover {
    opacity: 0.6;
}

.menu-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.menu-list>li {
    margin-bottom: 0px;
}

.menu-list>li>a {
    display: block;
    text-decoration: none;
    padding: 15px 30px 15px 26px;
    font-size: 16px;
    color: #141414;
    border-left-style: solid;
    border-left-width: 4px;
    border-left-color: transparent;
}

.menu-list>li>a i {
    display: inline-block;
    margin-right: 10px;
}

.menu-list>li>a:hover,
.menu-list>li.active>a {
    border-left-color: #5178ea;
    background: #f9f9f9;
}

.menu-social {
    padding: 30px;
}

.menu-social h4 {
    margin: 0 0 20px 0;
    font-weight: 500;
}

.menu-social a {
    color: #ffffff;
    font-size: 15px;
    margin-right: 10px;
    margin-bottom: 10px;
    background: #5078ec;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    width: 35px;
    height: 35px;
    display: inline-block;
    text-align: center;
    line-height: 37px;
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    -ms-border-radius: 999px;
    -o-border-radius: 999px;
    border-radius: 999px;
}

.menu-social a:hover {
    text-decoration: none;
    -webkit-box-shadow: 0 4px 19px -4px rgba(0, 0, 0, 0.45);
    -moz-box-shadow: 0 4px 19px -4px rgba(0, 0, 0, 0.45);
    -ms-box-shadow: 0 4px 19px -4px rgba(0, 0, 0, 0.45);
    -o-box-shadow: 0 4px 19px -4px rgba(0, 0, 0, 0.45);
    box-shadow: 0 4px 19px -4px rgba(0, 0, 0, 0.45);
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    -o-transform: translateY(-2px);
    transform: translateY(-2px);
}

.menu-social a:last-child {
    margin-right: 0;
}


/*====================================================
    03. Section Intro
====================================================*/

.intro {
    height: 100vh;
    width: 100%;
    position: relative;
    color: #fff;
    padding: 0;
    overflow: hidden;
}

.intro-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    -webkit-animation: ZoomAnimation 15s infinite;
    -moz-animation: ZoomAnimation 15s infinite;
    -ms-animation: ZoomAnimation 15s infinite;
    -o-animation: ZoomAnimation 15s infinite;
    animation: ZoomAnimation 15s infinite;
}

.player+.container {
    height: 100%;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 2;
}

.intro-box {
    position: absolute;
    z-index: 5;
    left: 0;
    right: 0;
    bottom: 50%;
    margin-bottom: -170px;
}

.intro-text {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.intro-text h1 {
    color: #fff;
    font-size: 50px;
    line-height: 55px;
    margin-top: 0;
    margin-bottom: 10px;
}

.typed-cursor,
.passion {
    font-size: 40px;
    line-height: 45px;
    display: inline-block;
}

.intro-photo {
    text-align: center;
}

.intro-photo>.box-photo {
    width: 220px;
    height: 220px;
    margin: 0 auto 20px;
    position: relative;
}

.intro-photo>.box-photo>figure {
    width: 100%;
    height: 100%;
    position: relative;
    border: 5px solid #5278e8;
}

.intro-photo>.box-photo>figure>img {
    position: relative;
    z-index: 2;
}

.intro-photo>.box-photo>figure,
.intro-photo>.box-photo>figure>img {
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    -ms-border-radius: 999px;
    -o-border-radius: 999px;
    border-radius: 999px;
}

.intro-photo>.box-photo>figure:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    content: ' ';
    background-color: #5278e8;
    z-index: 0;
}


/*====================================================
    04. Section About
====================================================*/

.about {
    overflow: hidden;
}

.about-story,
.about-info {
    max-width: 780px;
    margin: 0 auto 60px 0;
    position: relative;
}

.about-contact ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.about-contact ul li {
    padding: 15px 0;
}

.about-contact ul li:first-child {
    padding: 0 0 19px 0;
}

.about-contact ul li span.icon {
    float: left;
    margin-right: 10px;
    width: 40px;
    margin-top: 0;
    height: 40px;
    margin-bottom: 0;
    text-align: center;
    line-height: 40px;
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    -ms-border-radius: 999px;
    -o-border-radius: 999px;
    border-radius: 999px;
    background: #5378e6;
    color: #fff;
}

.about-contact ul li span:not(.icon) {
    padding-left: 60px;
    display: block;
    padding-top: 5px;
    word-break: break-word;
}

.about-skills ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.about-skills ul li {
    padding: 11px 0;
}

.about-skills ul li:first-child {
    padding: 0 0 11px 0;
}

.about-skills ul li h4 {
    margin-top: 0;
    margin-bottom: 6px;
    font-size: 15px;
    line-height: 1;
    font-weight: 600;
}

.about-skills ul li .progress {
    height: 10px;
    background-color: #eaeaea;
    position: relative;
    box-shadow: none;
    overflow: visible;
}

.about-skills ul li .progress .progress-bar {
    background-color: #5278e8;
    border-radius: 4px;
    box-shadow: none;
    position: relative;
}

.about-skills ul li .progress .progress-bar span {
    background: #5178ea;
    color: #ffffff;
    display: inline-block;
    width: 40px;
    position: absolute;
    top: -23px;
    right: 0;
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    -ms-border-radius: 999px;
    -o-border-radius: 999px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
}

.serv-list {
    margin-bottom: 30px;
}

.serv-icon {
    font-size: 40px;
    float: left;
    color: #5278e8;
}

.serv-content {
    padding-left: 60px;
    padding-top: 0;
}

.serv-content h5 {
    margin-top: 0;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 7px;
    font-weight: 600;
}

.serv-content p {
    margin-bottom: 0;
}


/*====================================================
    05. Section Call To Action
====================================================*/

.call-to-action-box {
    position: relative;
    padding-right: 190px;
}

.call-to-action-box h4 {
    margin: 0 0 25px;
    font-size: 40px;
    line-height: 45px;
    font-weight: 600;
    position: relative;
}

.hex-primary .call-to-action-box h4 {
    color: #fff;
}

.call-to-action-box h4:before {
    position: absolute;
    content: "";
    width: 60px;
    height: 3px;
    bottom: -15px;
    left: 0;
    background: #5178ea;
}

.hex-primary .call-to-action-box h4:before {
    background: #fff;
}

.call-to-action-box p {
    margin: 0;
    font-size: 16px;
    line-height: 26px;
}

.hex-primary .call-to-action-box p {
    color: #fff;
}

.call-to-action-box a {
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -25px;
}


/*====================================================
    06. Section Resume
====================================================*/

.resume {
    overflow: hidden;
}

.resume-box {
    max-width: 780px;
    margin: 0 0 0 auto;
}

.resume-box .col-md-6 {
    position: relative
}

.box-timeline-resume {
    position: relative;
}

.box-timeline-resume:last-child {
    margin-bottom: 0;
}

.box-timeline-resume.right {
    text-align: left;
}

.box-timeline-resume.left {
    text-align: right;
}

.box-timeline-resume.left .text-title {
    padding-left: 0;
    padding-right: 30px;
}

.box-timeline-resume.left .text-title:before {
    right: 0;
    left: auto;
}

.box-timeline-resume.right .timeline-resume {
    padding-left: 7px;
    padding-top: 10px;
}

.box-timeline-resume.left .timeline-resume {
    padding-right: 7px;
    padding-top: 10px;
}

.box-timeline-resume.right .timeline-resume .list-resume,
.box-timeline-resume.left .timeline-resume .list-resume {
    position: relative;
}

.box-timeline-resume.left .timeline-resume .list-resume {
    padding: 30px 30px 60px 0;
}

.box-timeline-resume.left .timeline-resume:last-child .list-resume {
    padding: 30px 30px 10px 0;
}

.box-timeline-resume.right .timeline-resume .list-resume {
    padding: 30px 0 60px 30px;
}

.box-timeline-resume.right .timeline-resume:last-child .list-resume {
    padding: 30px 0 10px 30px;
}

.box-timeline-resume.left .list-resume:before,
.box-timeline-resume.right .list-resume:before {
    width: 10px;
    height: 10px;
    display: block;
    top: 0;
    position: absolute;
    content: '';
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
}

.box-timeline-resume.right .list-resume:before {
    left: -6px;
}

.box-timeline-resume.left .list-resume:before {
    right: -6px;
}

.years {
    position: absolute;
    top: -8px;
    font-size: 14px;
    line-height: 24px;
    color: #ffffff;
    background: #5178ea;
    padding: 0 12px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
}

.box-timeline-resume.left .years {
    right: 30px;
}

.list-resume h4 {
    font-size: 16px;
    line-height: 24px;
    margin: 0 0 10px;
    font-weight: 600;
}

.list-resume p {
    margin-bottom: 0;
}

.list-resume:before {
    border: 1px solid #fff;
    background: #5178ea;
}

.box-timeline-resume.right .list-resume {
    border-left: 1px solid #f1f1f1;
}

.box-timeline-resume.left .list-resume {
    border-right: 1px solid #f1f1f1;
}


/*====================================================
    07. Section Fun Fact
====================================================*/

.fun-fact {
    background: #fff;
}

.fun-box {
    text-align: center;
}

.fun-box .fun-icon {
    font-size: 21px;
    color: #fff;
    background: #5078ec;
    display: inline-block;
    width: 55px;
    height: 55px;
    line-height: 59px;
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    -ms-border-radius: 999px;
    -o-border-radius: 999px;
    border-radius: 999px;
    margin-bottom: 15px;
    position: relative;
}

.fun-box .fun-icon i {
    position: relative;
    z-index: 1;
}

.fun-box .fun-icon:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    content: ' ';
    background-color: #5278e8;
    -webkit-animation: RoundAnimation 2s infinite;
    -moz-animation: RoundAnimation 2s infinite;
    -ms-animation: RoundAnimation 2s infinite;
    -o-animation: RoundAnimation 2s infinite;
    animation: RoundAnimation 2s infinite;
    z-index: 0;
}

.fun-box .fun-counter {
    margin: 0;
    font-size: 45px;
    line-height: 45px;
    color: #141414;
    display: block;
    font-weight: 500;
}

.fun-box p {
    margin-bottom: 0;
    margin-top: 5px;
}


/*====================================================
    08. Section Portfolio
====================================================*/

.portfolio {
    overflow: hidden;
}

.filters-portfolio {
    margin-bottom: 30px;
}

.filters {
    margin: 0 0 30px 0;
    padding: 0;
    list-style: none;
}

.filters .filter {
    display: inline-block;
    font-size: 15px;
    cursor: pointer;
    background: #5078ec;
    color: #fff;
    padding: 2px 10px;
    margin-bottom: 6px;
    border: 1px solid #4f78ee;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    margin-right: 4px;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.filters .filter:not(.active):hover {
    text-decoration: none;
    -webkit-box-shadow: 0 4px 19px -4px rgba(0, 0, 0, 0.45);
    -moz-box-shadow: 0 4px 19px -4px rgba(0, 0, 0, 0.45);
    -ms-box-shadow: 0 4px 19px -4px rgba(0, 0, 0, 0.45);
    -o-box-shadow: 0 4px 19px -4px rgba(0, 0, 0, 0.45);
    box-shadow: 0 4px 19px -4px rgba(0, 0, 0, 0.45);
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    -o-transform: translateY(-2px);
    transform: translateY(-2px);
    background-color: #0f73ca;
}

.filters .filter:last-child {
    margin-bottom: 0;
}

.filters .filter.active {
    color: #141414;
    background: transparent;
}

.grid-item {
    margin-bottom: 30px;
}

.grid-item a {
    display: block;
    position: relative;
    outline: none;
    overflow: hidden;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
}

.grid-item a img,
.grid-item,
.item-hover {
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.grid-item a img {
    width: 100%;
}

.item-hover {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    background: rgb(80, 120, 236);
}

.grid-item a:hover>.item-hover {
    opacity: 0.95;
    visibility: visible;
    top: 0;
}

.item-hover h3 {
    color: #fff;
    margin: 0;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
}

.item-hover p {
    color: #fff;
    margin: 0;
    font-size: 12px;
}

.modal-box {
    max-width: 550px;
    background: #fff;
    position: relative!important;
    margin: 0 auto;
    left: 0!important;
}

.modal-box img {
    width: 100%;
    height: 100%;
}

.modal-box-content {
    padding: 30px;
}

.modal-box-content h3 {
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    margin: 0;
}

.modal-box-content span {
    font-size: 12px;
    line-height: 22px;
    margin-bottom: 20px;
    display: block;
    border-bottom: 1px solid #e1e1e1;
    padding-bottom: 20px;
}

.modal-box-content p {
    margin: 0;
}

.mfp-move-horizontal .mfp-with-anim {
    opacity: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transform: translateX(-50px);
    -moz-transform: translateX(-50px);
    -ms-transform: translateX(-50px);
    -o-transform: translateX(-50px);
    transform: translateX(-50px);
}

.mfp-move-horizontal.mfp-bg {
    opacity: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
}

.mfp-move-horizontal.mfp-ready .mfp-with-anim {
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
}

.mfp-move-horizontal.mfp-ready.mfp-bg {
    opacity: 0.8;
}

.mfp-move-horizontal.mfp-removing .mfp-with-anim {
    -webkit-transform: translateX(50px);
    -moz-transform: translateX(50px);
    -ms-transform: translateX(50px);
    -o-transform: translateX(50px);
    transform: translateX(50px);
    opacity: 0;
}

.mfp-move-horizontal.mfp-removing.mfp-bg {
    opacity: 0;
}


/*====================================================
    09. Section Pricing
====================================================*/

.pricing {
    overflow: hidden;
}

.pricing-package {
    padding: 30px;
    background: #fff;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    text-align: center;
}

.pricing-package.featured {
    background: #4e78f0;
}

.pricing-package .pricing-package-heading {
    margin-bottom: 30px;
}

.pricing-package .pricing-package-heading span {
    font-weight: 600;
    color: #141414;
    font-size: 16px;
    line-height: 24px;
    font-family: 'Montserrat', sans-serif;
}

.pricing-package.featured .pricing-package-heading span {
    color: #fff;
}

.pricing-package .pricing-package-price {
    margin-bottom: 30px;
    border-bottom: 1px solid #e1e1e1;
    padding-bottom: 30px;
}

.pricing-package.featured .pricing-package-price {
    border-bottom: 1px solid #4666c7;
}

.pricing-package .pricing-package-price span {
    display: block;
    font-size: 45px;
    line-height: 1;
    color: #4f78ee;
    font-weight: 800;
}

.pricing-package.featured .pricing-package-price span {
    color: #fff;
}

.pricing-package .pricing-package-price small {
    font-style: italic;
    font-weight: 500;
    font-size: 12px;
}

.pricing-package.featured .pricing-package-price small {
    color: #fff;
}

.pricing-package .pricing-package-list {
    margin-bottom: 10px;
}

.pricing-package.featured .pricing-package-list span {
    color: #fff;
}

.pricing-package .pricing-package-button {
    margin-top: 30px;
}

.pricing-package.featured .pricing-package-button a {
    color: #4e78f0;
    background: #fff;
}


/*====================================================
    10. Section Testimonial
====================================================*/

.testimonial .content-section {
    position: relative;
    z-index: 5;
}

.testimonial-item {
    padding: 60px 15px 30px 15px;
    opacity: 0.5;
}

.owl-item.active.center .testimonial-item {
    opacity: 1;
}

.testimonial-item-inner {
    border-radius: 20px;
    padding: 60px 30px 30px 30px;
    position: relative;
    text-align: center;
}

.testimonial-photo {
    width: 90px;
    height: 90px;
    overflow: hidden;
    border: 5px solid #fff;
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    -ms-border-radius: 999px;
    -o-border-radius: 999px;
    border-radius: 999px;
    position: absolute;
    top: -50px;
    -webkit-box-shadow: 0 2px 13px -4px rgba(0, 0, 0, 0.45);
    -moz-box-shadow: 0 2px 13px -4px rgba(0, 0, 0, 0.45);
    -ms-box-shadow: 0 2px 13px -4px rgba(0, 0, 0, 0.45);
    -o-box-shadow: 0 2px 13px -4px rgba(0, 0, 0, 0.45);
    box-shadow: 0 2px 13px -4px rgba(0, 0, 0, 0.45);
    left: 50%;
    margin-left: -45px;
}

.testimonial-description {
    margin-bottom: 10px;
    color: #fff;
}

.testimonial-who-name {
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 3px 0;
}

.testimonial-company-name {
    font-size: 12px;
    line-height: 22px;
    margin: 0;
    color: #fff;
}

.owl-dots {
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    text-align: center;
}

.owl-dot {
    display: inline-block;
    margin-right: 13px;
}

.owl-dot:last-child {
    margin-right: 0;
}

.owl-dot span {
    display: inline-block;
    width: 15px;
    height: 15px;
    background: transparent;
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    -ms-border-radius: 999px;
    -o-border-radius: 999px;
    border-radius: 999px;
    border: 2px solid #fff;
}

.owl-dot.active span {
    background: #fff;
    border: 2px solid #fff;
    width: 30px;
}


/*====================================================
    11. Section Blogs
====================================================*/

.blogs {
    overflow: hidden;
}

.blog-item {
    margin-bottom: 30px;
}

.post-item {
    background: #fff;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
}

.post-content {
    padding: 30px;
    text-align: left;
}

.post-content .post-title {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
}

.post-content .post-title a {
    color: #141414;
    text-decoration: none;
}

.post-content .post-title a:hover {
    color: #5278e8;
}

.post-content .post-meta {
    list-style: none;
    padding: 0;
    margin: 0 0 10spx 0;
}

.post-content .post-meta li {
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 3px;
    font-size: 12px;
    line-height: 22px;
}

.post-content .post-meta li:last-child {
    margin-right: 0;
}

.post-content .post-meta li .i {
    background: #5278e8;
    color: #fff;
    padding: 3px 10px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    text-decoration: none;
}

.post-content .post-meta li .i:hover {
    background-color: #0f73ca;
}

.post-content p {
    margin: 0;
}

.blogs-button {
    text-align: center;
}

.blogs-pagination ul {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
}

.blogs-pagination ul li {
    display: inline-block;
    margin-right: 5px;
}

.blogs-pagination ul li a {
    display: block;
    width: 40px;
    height: 40px;
    background: #f9f9f9;
    color: #141414;
    line-height: 40px;
    text-align: center;
    border-radius: 999px;
    text-decoration: none;
}

.blogs-pagination ul li a:hover,
.blogs-pagination ul li.active a {
    background: #5278e8;
    color: #fff;
}

.box-single-blog {
    margin-bottom: 60px;
    padding-bottom: 60px;
    position: relative;
    border-bottom: 3px solid #eee;
}

.box-single-blog figure img {
    width: 100%;
}

.box-single-blog .content-single-blog h3 {
    font-size: 30px;
    line-height: 37px;
    margin-bottom: 15px;
    font-weight: 600;
    margin-top: 30px;
}

.box-single-blog .content-single-blog .meta {
    font-size: 12px;
    line-height: 22px;
    margin-bottom: 30px;
}

.box-single-blog .content-single-blog .meta span {
    vertical-align: middle;
}

.box-single-blog .content-single-blog .meta span.val {
    margin-left: 5px;
}

.box-single-blog .content-single-blog .meta span .single-tag {
    display: inline-block;
    background: #f6f7f7;
    border: 1px solid #f6f7f7;
    color: #ababab;
    padding: 4px 8px;
    line-height: 1;
    margin-right: -1px;
    text-decoration: none;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
}

.box-single-blog .content-single-blog .meta span .single-tag:hover {
    background: #5278e8;
    border: 1px solid #5278e8;
    color: #fff;
}

blockquote {
    padding: 10px 20px;
    margin: 30px 0 30px;
    font-size: 16px;
    line-height: 28px;
    border-left: 5px solid #eee;
    background: #f9f9f9;
}

.comments-single-blog {
    margin-top: 60px;
}

.box-comment {
    margin-bottom: 60px;
}

.box-comment img {
    width: 110px;
    height: 110px;
    float: left;
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    -ms-border-radius: 999px;
    -o-border-radius: 999px;
    border-radius: 999px;
}

.box-comment .in-comment {
    padding-left: 140px;
}

.box-comment .in-comment h5 {
    margin: 0 0 5px 0;
    font-size: 16px;
    line-height: 24px;
    position: relative;
    font-weight: 600;
}

.box-comment .in-comment h5 span {
    font-size: 12px;
    position: absolute;
    right: 0;
    top: 1px;
    font-weight: 300;
}

.reply-comment {
    display: inline-block;
    color: #bfbfbf;
    font-size: 16px;
    text-decoration: none;
    -webkit-transition: 0.3s linear;
    -moz-transition: 0.3s linear;
    -ms-transition: 0.3s linear;
    -o-transition: 0.3s linear;
    transition: 0.3s linear;
}

.reply-comment:hover {
    background: #fff;
    text-decoration: none;
    color: #141414;
}

.form-comment .form-control {
    background: transparent;
}

.widget-box {
    margin-bottom: 50px;
}

.content-widget {
    position: relative;
}

.form-search {
    display: block;
    border-width: 1px;
    border-style: solid;
    border-color: #f7f7f7;
    width: 100%;
    height: 42px;
    padding: 10px 50px 10px 20px;
    font-size: 14px;
    line-height: 25px;
    color: #141414;
    background-color: #f7f7f7;
    background-image: none;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    box-shadow: none;
    outline: none;
}

.form-search:focus {
    border-color: #5278e8;
    outline: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}

.btn-search {
    position: absolute;
    top: 0;
    right: 0;
    display: inline-block;
    background: transparent;
    border: none;
    color: #141414;
    padding: 9px 19px;
    font-size: 17px;
    text-decoration: none;
    -webkit-transition: 0.3s linear;
    -moz-transition: 0.3s linear;
    -ms-transition: 0.3s linear;
    -o-transition: 0.3s linear;
    transition: 0.3s linear;
}

.content-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.content-widget ul li {
    margin-bottom: 20px;
}

.content-recent {
    min-height: 10px;
}

.content-recent .meta {
    font-size: 12px;
    line-height: 22px;
}

.content-recent .meta span {
    vertical-align: middle;
    margin-left: 5px;
}

.content-recent h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
}

.content-recent h4 a {
    color: #141414;
    text-decoration: none;
}

.content-recent h4 a:hover {
    color: #5278e8;
}

.advert {
    width: 100%;
}

.item-cat a {
    display: block;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: #141414;
    position: relative;
    text-decoration: none;
    margin-bottom: 25px;
}

.item-cat a span {
    color: #141414;
}

.item-cat:last-child a {
    margin-bottom: 0;
}

.item-cat a:hover {
    color: #5278e8;
}

.item-cat a span {
    position: absolute;
    right: 0;
    top: 0;
}

.tag {
    display: inline-block;
    background: #f6f7f7;
    border: 1px solid #f6f7f7;
    color: #ababab;
    font-size: 14px;
    padding: 3px 15px;
    margin-right: 4px;
    margin-bottom: 7px;
    font-weight: 400;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
}

.tag:hover {
    background: #5278e8;
    border: 1px solid #5278e8;
    color: #fff;
    text-decoration: none;
}


/*====================================================
    12. Section Client
====================================================*/

.client-items {
    margin: 0;
}

.client-item {
    float: left;
    width: 100%;
}

.client-item .text-title {
    margin-bottom: 0;
}

.client-item img {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
    max-height: 64px;
}

.client-item img:hover {
    -webkit-filter: grayscale(0%);
    -moz-filter: grayscale(0%);
    -ms-filter: grayscale(0%);
    -o-filter: grayscale(0%);
    filter: grayscale(0%);
}



/*====================================================
    13. Footer
====================================================*/

.footer {
    overflow: hidden;
}

.footer .about-contact p {
    margin-bottom: 30px;
}

.footer .about-contact p,
.footer .about-contact ul li span {
    color: #fff;
}

#google-map {
    width: 100%;
    height: 330px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.message-error,
.message-success {
    color: #fff;
    padding: 5px 20px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    font-size: 14px;
    line-height: 24px;
    display: none;
}

.message-error {
    background-color: #ff4747;
    border-color: #d63131;
}

.message-success {
    background-color: #2fbd60;
    border-color: #239c4a;
}

.form-control {
    display: block;
    border-width: 1px;
    border-style: solid;
    border-color: #e1e1e1;
    width: 100%;
    height: 45px;
    padding: 10px 30px;
    font-size: 14px;
    line-height: 24px;
    color: #fff;
    background-color: #141414;
    background-image: none;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
    margin-bottom: 5px;
    outline: none;
}

.has-error .form-control {
    border-color: #ca4441;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
    background: #191919;
}

.has-error .form-control:focus {
    border-color: #a93936;
    outline: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
}

.form-control:focus {
    border-color: #4e78f0;
    outline: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}

.copyright {
    background: #181818;
    padding: 60px 0;
}

.text-copyright p {
    margin: 0;
    color: #fff;
    font-size: 14px;
}

.social-media {
    text-align: right;
}

.social-media a {
    color: #fff;
    margin-right: 25px;
    font-size: 20px;
}

.social-media a:last-child {
    margin-right: 0;
}


/*====================================================
    14. Animation CSS3
====================================================*/

@keyframes cssload-animation {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1);
    }
    100% {
        transform: scale(0);
    }
}

@-o-keyframes cssload-animation {
    0% {
        -o-transform: scale(0);
    }
    50% {
        -o-transform: scale(1);
    }
    100% {
        -o-transform: scale(0);
    }
}

@-ms-keyframes cssload-animation {
    0% {
        -ms-transform: scale(0);
    }
    50% {
        -ms-transform: scale(1);
    }
    100% {
        -ms-transform: scale(0);
    }
}

@-webkit-keyframes cssload-animation {
    0% {
        -webkit-transform: scale(0);
    }
    50% {
        -webkit-transform: scale(1);
    }
    100% {
        -webkit-transform: scale(0);
    }
}

@-moz-keyframes cssload-animation {
    0% {
        -moz-transform: scale(0);
    }
    50% {
        -moz-transform: scale(1);
    }
    100% {
        -moz-transform: scale(0);
    }
}

@keyframes ZoomAnimation {
    50% {
        -webkit-transform: scale3d(1.07, 1.07, 1.07);
        -moz-transform: scale3d(1.07, 1.07, 1.07);
        -ms-transform: scale3d(1.07, 1.07, 1.07);
        -o-transform: scale3d(1.07, 1.07, 1.07);
        transform: scale3d(1.07, 1.07, 1.07);
    }
}

@-webkit-keyframes ZoomAnimation {
    50% {
        -webkit-transform: scale3d(1.07, 1.07, 1.07);
        -moz-transform: scale3d(1.07, 1.07, 1.07);
        -ms-transform: scale3d(1.07, 1.07, 1.07);
        -o-transform: scale3d(1.07, 1.07, 1.07);
        transform: scale3d(1.07, 1.07, 1.07);
    }
}

@-moz-keyframes ZoomAnimation {
    50% {
        -webkit-transform: scale3d(1.07, 1.07, 1.07);
        -moz-transform: scale3d(1.07, 1.07, 1.07);
        -ms-transform: scale3d(1.07, 1.07, 1.07);
        -o-transform: scale3d(1.07, 1.07, 1.07);
        transform: scale3d(1.07, 1.07, 1.07);
    }
}

@keyframes RoundAnimation {
    0% {
        -webkit-transform: scale(0, 0);
        -moz-transform: scale(0, 0);
        -ms-transform: scale(0, 0);
        -o-transform: scale(0, 0);
        transform: scale(0, 0);
        filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
        opacity: .8;
    }
    100% {
        -webkit-transform: scale(1.5, 1.5);
        -moz-transform: scale(1.5, 1.5);
        -ms-transform: scale(1.5, 1.5);
        -o-transform: scale(1.5, 1.5);
        transform: scale(1.5, 1.5);
        filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
        opacity: 0;
    }
}

@-webkit-keyframes RoundAnimation {
    0% {
        -webkit-transform: scale(0, 0);
        -moz-transform: scale(0, 0);
        -ms-transform: scale(0, 0);
        -o-transform: scale(0, 0);
        transform: scale(0, 0);
        filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
        opacity: .8;
    }
    100% {
        -webkit-transform: scale(1.5, 1.5);
        -moz-transform: scale(1.5, 1.5);
        -ms-transform: scale(1.5, 1.5);
        -o-transform: scale(1.5, 1.5);
        transform: scale(1.5, 1.5);
        filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
        opacity: 0;
    }
}

@-moz-keyframes RoundAnimation {
    0% {
        -webkit-transform: scale(0, 0);
        -moz-transform: scale(0, 0);
        -ms-transform: scale(0, 0);
        -o-transform: scale(0, 0);
        transform: scale(0, 0);
        filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
        opacity: .8;
    }
    100% {
        -webkit-transform: scale(1.5, 1.5);
        -moz-transform: scale(1.5, 1.5);
        -ms-transform: scale(1.5, 1.5);
        -o-transform: scale(1.5, 1.5);
        transform: scale(1.5, 1.5);
        filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
        opacity: 0;
    }
}


/*====================================================
    15. Responsive
====================================================*/

@media only screen and (max-width: 992px) {

    .title-section {
        top: -25px;
    }

    .title-section h2 {
        font-size: 70px;
    }

    .title-page-box ul li {
        max-width: 300px;
    }

    .call-to-action-box h4 {
        font-size: 30px;
        line-height: 35px;
    }

    .intro-text {
        padding: 0 20px;
    }

    .intro-text h1 {
        font-size: 40px;
        line-height: 45px;
    }

    .intro-photo>.box-photo {
        width: 175px;
        height: 175px;
    }
}

@media only screen and (max-width: 767px) {

    #mobile-menu {
        right: 17px;
        top: 17px;
    }

    .cus-image-left {
        display: none;
    }

    .cus-image-right {
        display: none;
    }

    .title-page-box h2 {
        font-size: 28px;
        line-height: 33px;
    }

    .title-section {
        position: static;
        top: 0;
        margin-top: 0;
        margin-bottom: 40px;
    }

    .title-section.left {
        left: 0;
        text-align: center;
    }

    .title-section.right {
        right: 0;
        text-align: center;
    }

    .title-section h2 {
        font-size: 40px;
        line-height: 43px;
        color: #141414;
    }

    .hex-dark .title-section h2 {
        color: #ffffff;
    }

    .bg-light .title-section h2 {
        color: #141414;
    }

    .fun-box,
    .footer-left,
    .pricing-table,
    .content-comments {
        margin-bottom: 40px;
    }

    .fun-box:last-child,
    .pricing-table:last-child {
        margin-bottom: 0;
    }

    .about-story,
    .about-info {
        margin: 0 auto 40px 0;
    }

    .intro-box {
        margin-bottom: -120px;
    }

    .typed-cursor,
    .passion {
        font-size: 30px;
        line-height: 35px;
    }

    .about .about-contact {
        margin-bottom: 40px;
    }

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

    .grid-item:last-child {
        margin-bottom: 0;
    }

    .box-timeline-resume.left {
        margin-bottom: 40px;
    }

    .box-timeline-resume.left {
        text-align: left;
    }

    .box-timeline-resume.left .text-title {
        padding-left: 30px;
        padding-right: 0;
    }

    .box-timeline-resume.left .text-title:before {
        right: auto;
        left: 0;
    }

    .box-timeline-resume.right .timeline-resume .list-resume {
        padding: 30px 0 30px 30px;
    }

    .box-timeline-resume.left .timeline-resume .list-resume {
        padding: 30px 0 30px 30px;
    }

    .box-timeline-resume.left .timeline-resume:last-child .list-resume {
        padding: 30px 0 10px 30px;
    }

    .box-timeline-resume.left .list-resume {
        border-right: none;
        border-left: 1px solid #f1f1f1;
    }

    .box-timeline-resume.left .years {
        left: 30px;
        right: auto;
    }

    .box-timeline-resume.left .list-resume:before {
        right: auto;
        left: -6px;
    }

    .testimonial-item {
        opacity: 1;
    }

    .call-to-action-box {
        padding-right: 0;
        text-align: center;
    }

    .call-to-action-box h4 {
        font-size: 30px;
        line-height: 35px;
    }

    .call-to-action-box h4:before {
        left: 50%;
        margin-left: -30px;
    }

    .call-to-action-box a {
        position: static;
        top: 0;
        margin-top: 30px;
    }

    .text-copyright {
        text-align: center;
        margin-bottom: 30px;
    }

    .social-media {
        text-align: center;
    }

    .blogs-pagination ul li a {
        width: 35px;
        height: 35px;
        line-height: 35px;
    }

    .box-single-blog .content-single-blog .meta {
        line-height: 28px;
    }

    .box-comment img {
        width: 80px;
        height: 80px;
    }

    .box-comment .in-comment {
        padding-left: 100px;
    }

    .testimonial-item-inner {
        padding: 60px 0 30px 0;
    }
}

@media only screen and (max-width: 577px) {

    .blog-item,
    .grid-item {
        width: 100%;
    }

    .intro-photo>.box-photo {
        width: 125px;
        height: 125px;
    }

    .intro-text h1 {
        font-size: 30px;
        line-height: 35px;
    }

    .typed-cursor,
    .passion {
        font-size: 24px;
        line-height: 28px;
    }

    .text-content {
        font-size: 18px;
        line-height: 32px;
    }

    .fun-box {
        width: 100%;
    }

    .fun-box .fun-counter {
        font-size: 30px;
        line-height: 33px;
    }

    .text-title {
        margin-bottom: 25px;
    }

    .title-section h2 {
        font-size: 30px;
        line-height: 33px;
    }

    .call-to-action-box h4 {
        font-size: 24px;
        line-height: 29px;
    }

    .call-to-action-box p {
        font-size: 15px;
        line-height: 25px;
    }

    .footer .about-contact p {
        margin-bottom: 40px;
    }

    .contact-form .btn-mypooh {
        width: 100%;
    }
}