html, body, div, span,
applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dd, dl, dt, li, ol, ul,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
    margin: 0;
    padding: 0;
    border: 0;
    font-weight: inherit;
    font-style: inherit;
    font-size: 100%;
    line-height: 1;
    font-family: inherit;
    text-align: left;
    vertical-align: baseline;
}
a img, :link img, :visited img {
    border: 0;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
ol, ul {
    list-style: none;
}
q:before, q:after,
blockquote:before, blockquote:after {
    content: "";
}

a {
    outline: none !important;
    text-decoration: none;
}

a:hover, a:active, a:focus {
    outline: none !important;
    text-decoration: none;
}

input, textarea, button {
    outline: none;
}

input:hover, input:active, input:focus,
textarea:hover, textarea:active, textarea:focus,
button:hover, button:active, button:focus {
    outline: none;
}

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    width: 100%;
    min-width: 320px;
    max-width: 1920px;
    margin: 0 auto;
    background: #e3e3e3;
}

@media (min-width: 320px) {
    body {
        overflow-x: hidden;
    }
}

@media (max-width: 319px) {
    body {
        overflow-x: visible;
    }
}

.clear-fix {
    clear: both;
}

.left {
    float: left;
}

.right {
    float: right;
}

.nowrap {
    white-space: nowrap;
}

.text-bold {
    font-weight: bold;
}

.toast-top-center {
    top: 12px !important;
    font-family: 'Open Sans', sans-serif;
}

.toast-top-center .toast-message {
    margin-top: 5px;
    font-size: 14px;
    line-height: 17px;
}

/* fonts */
@font-face {
    font-family: 'FontAwesome';
    src: url('../fonts/fontawesome-webfont.eot');
    src: url('../fonts/fontawesome-webfont.eot?#iefix') format('embedded-opentype'),
    url('../fonts/fontawesome-webfont.woff2') format('woff2'),
    url('../fonts/fontawesome-webfont.woff') format('woff'),
    url('../fonts/fontawesome-webfont.ttf') format('truetype'),
    url('../fonts/fontawesome-webfont.svg#makoregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

/* header */

#header {
    position: fixed;
    width: 100%;
    height: 44px;
    background: rgba(0,0,0,0.8);
    z-index: 100000;
}

#header > .container {
    position: relative;
}

#logo {
    position: absolute;
    top: 10px;
    left: 15px;
}

#logo span:first-child {
    padding-top: 4px;
    padding-left: 2px;
    display: inline-block;
    vertical-align: middle;
    width: 24px;
    height: 24px;
    background: #fff;
    color: #000;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
}

#logo span:last-child {
    padding-top: 2px;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    left: -6px;
    width: 24px;
    height: 24px;
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
}

#menu {
    width: 100%;
    text-align: center;
}

#menu > li {
    position: relative;
    display: inline-block;
    padding-left: 50px;
    padding-right: 50px;
}

@media ( min-width: 992px ) and ( max-width: 1199px ) {
    #menu > li {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media ( min-width: 992px ) {
    #menu_languages_xs {
        display: none;
    }
}

#menu > li > a {
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 44px;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

#menu > li > a:hover {
    color: #aaa;
}

#menu > li > a.open_sub_menu {
    position: relative;
}

#menu > li > a.open_sub_menu:after {
    margin-left: 7px;

    color: #fff;
    /*content: '\f0d7';*/
    content: '\f107';
    font-family: "FontAwesome";
    font-size: 14px;

    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

#menu > li > a.open_sub_menu:hover:after {
    color: #aaa;
}

#menu .sub_menu {
    display: none;
    position: absolute;
    top: 44px;
    left: 35px;
    width: 250px;
}

#menu .sub_menu li {
    display: block;
    width: 100%;
    height: 36px;
    padding-left: 15px;
    padding-right: 15px;
    background: rgba(0,0,0,0.8);
    border-top: 1px solid rgba(0,0,0,0.5);
}

#menu .sub_menu li a {
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 34px;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

#menu .sub_menu li a:hover {
    color: #aaa;
}

#title_xs,
#menu_button_xs,
#menu_xs {
    display: none;
}

@media ( max-width: 991px ) {
    #menu {
        display: none !important;
    }

    #logo {
        left: 15px !important;
    }

    #title_xs,
    #menu_button_xs {
        display: block;
    }

    #header > .container {
        text-align: center;
    }

    #title_xs {
        display: inline-block;
        color: #fff;
        font-family: 'Open Sans', sans-serif;
        font-weight: 400;
        font-size: 21px;
        line-height: 44px;
    }

    #menu_button_xs {
        position: absolute;
        top: 0;
        right: 15px;
        width: 44px;
        height: 44px;
        background: transparent;
        border: none;
    }

    #menu_button_xs:before {
        position: absolute;
        top: 10px;
        right: 0;
        content: '\f0c9';
        font-family: "FontAwesome";
        font-size: 24px;
        color: #fff;

        -webkit-transition: all 0.3s ease-out;
        -moz-transition: all 0.3s ease-out;
        -ms-transition: all 0.3s ease-out;
        -o-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
    }

    #menu_button_xs.opened:before {
        content: '\f00d';
    }

    #menu_xs {
        position: fixed;
        top: 44px;
        left: 0;
        display: none;
        width: 100%;
        height: auto;
    }

    #menu_xs > li {
        display: block;
        width: 100%;
        height: 32px;
        clear: both;
        line-height: 32px;
        background: rgba(0,0,0,0.8);
        border-top: 1px solid rgba(0,0,0,0.5);
        -webkit-transition: all 0.3s ease-out;
        -moz-transition: all 0.3s ease-out;
        -ms-transition: all 0.3s ease-out;
        -o-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
    }

    #menu_xs > li:last-child {
        border-bottom: 1px solid rgba(0,0,0,0.5);
    }

    #menu_xs > li.with_sub_menu {
        height: auto;
    }

    #menu_xs > li > a {
        display: block;
        width: 100%;
        height: 32px;
        clear: both;
        padding-left: 15px;
        padding-right: 15px;
        color: #fff;
        font-family: 'Open Sans', sans-serif;
        font-weight: 300;
        font-size: 14px;
        line-height: 32px;
        -webkit-transition: all 0.3s ease-out;
        -moz-transition: all 0.3s ease-out;
        -ms-transition: all 0.3s ease-out;
        -o-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
    }

    #menu_xs > li:hover {
        background: #000;
    }

    #menu_xs > li:hover a {
        color: #aaa;
    }

    #menu_xs > li > a.open_sub_menu {
        position: relative;
    }

    #menu_xs > li > a.open_sub_menu:after {
        margin-left: 7px;

        color: #fff;
        content: '\f107';
        font-family: "FontAwesome";
        font-size: 14px;

        -webkit-transition: all 0.3s ease-out;
        -moz-transition: all 0.3s ease-out;
        -ms-transition: all 0.3s ease-out;
        -o-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
    }

    #menu_xs > li:hover > a.open_sub_menu:after {
        color: #aaa;
    }

    #menu_xs .sub_menu {
        display: none;
        width: 100%;
        height: auto;
        clear: both;
        background: transparent;
    }

    #menu_xs .sub_menu li {
        display: block;
        width: 100%;
        height: 32px;
        clear: both;
        border-top: 1px solid rgba(0,0,0,0.5);
    }

    #menu_xs .sub_menu li a {
        display: block;
        width: 100%;
        height: 32px;
        clear: both;
        padding-left: 30px;
        padding-right: 15px;
        background: rgba(0,0,0,0.35);
        color: #fff;
        font-family: 'Open Sans', sans-serif;
        font-weight: 300;
        font-size: 14px;
        line-height: 32px;
        -webkit-transition: all 0.3s ease-out;
        -moz-transition: all 0.3s ease-out;
        -ms-transition: all 0.3s ease-out;
        -o-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
    }

    #menu_xs .sub_menu li a:hover {
        background: #000;
        color: #aaa;
    }
}

@media ( min-width: 768px ) and ( max-width: 991px ) {
    #menu_xs > li {
        text-align: center;
    }

    #menu_xs > li > a {
        width: 750px;
    }

    #menu .sub_menu li {
        text-align: center;
    }

    #menu .sub_menu li a {
        width: 750px;
    }
}

#menu_languages li,
#menu_languages_xs li {
    color: #aaa !important;
}

#menu_languages a,
#menu_languages_xs a {
    color: #aaa !important;
}

#menu_languages a:hover,
#menu_languages_xs a:hover {
    color: #fff !important;
}

#menu_languages span,
#menu_languages_xs span {
    color: #fff;
}

#menu_languages span.line,
#menu_languages_xs span.line {
    position: relative;
    top: -1px;
    color: #aaa !important;
}

#menu_languages a,
#menu_languages span,
#menu_languages_xs a,
#menu_languages_xs span {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 34px;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

#menu_languages_xs {
    position: absolute;
    top: 5px;
    right: 60px;
}

/* title */

#title {
    width: 100%;
    height: 631px;
    background: url('../img/main_header_bg.png') center center no-repeat;
    background-size: cover;
    display: table;
}

#title .container {
    display: table-cell;
    vertical-align: middle;
}

#title h1 {
    margin-bottom: 64px;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 38px;
    line-height: 48px;
    text-align: center;
    text-shadow: 2px 2px 5px #555;
    text-transform: uppercase;
}

#title h2 {
    margin-bottom: 42px;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 64px;
    text-align: center;
    text-shadow: 2px 2px 5px #555;
}

#title p {
    margin-bottom: 21px;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 21px;
    line-height: 24px;
    text-align: center;
    text-shadow: 2px 2px 5px #555;
}

#form_1 {
    text-align: center;
}

#title input {
    display: inline-block;
    margin-left: 7px;
    margin-right: 7px;
    vertical-align: middle;
    width: 230px;
    height: 42px;
    border: 2px solid #000;
    padding-left: 12px;
    padding-right: 12px;
    background: rgba(255,255,255,0.4);
    line-height: 35px;
    color: #000;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 2px 2px 5px #555;
}

#title input::-webkit-input-placeholder {
    color: #000;
}

#title input::-moz-placeholder {
    color: #000;
}


#title button {
    display: inline-block;
    vertical-align: middle;
    margin-left: 7px;
    margin-right: 7px;
    width: 230px;
    height: 42px;
    border: 2px solid #000;
    padding-left: 12px;
    padding-right: 12px;
    background: #000;
    line-height: 34px;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;

    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;

    box-shadow: 2px 2px 5px #555;
}

#title button:hover {
    opacity: 0.8;
}

@media ( max-width: 991px ) {
    #title input {
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        margin-bottom: 12px !important;
    }

    #title button {
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    #title h1 {
        font-size: 24px;
        line-height: 28px;
        margin-bottom: 42px;
    }

    #title h1 br {
        display: none;
    }

    #title h2 {
        font-size: 38px;
        padding-top: 20px;
    }

    #title p {
        font-size: 19px;
    }
}

/* possible problems */

#possible_problems {
    padding-top: 54px;
    padding-bottom: 54px;
    background: #fff;
}

#possible_problems h2 {
    margin-bottom: 54px;
    color: #000;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 38px;
    line-height: 1.2;
    text-align: center;
}

#possible_problems h2 span {
    color: #e43a45;
}

#possible_problems ul li {
    position: relative;
    padding-left: 60px;
    margin-bottom: 32px;
    
    color: #000;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 32px;
    text-align: center;
}

#possible_problems ul li:last-child {
    margin-bottom: 12px !important;
}

#possible_problems ul li .number {
    position: absolute;
    top: 0;
    left: 0;
    width: 42px;
    height: 42px;
    background: #e43a45;
    border-radius: 50%;

    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 27px;
    text-align: center;
    line-height: 42px;
}

#possible_problems ul li .title {
    width: 100%;
    margin-bottom: 20px;
    color: #000;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 34px;
}

#possible_problems ul li .description {
    width: 100%;
    color: #000;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
}

@media ( max-width: 767px ) {
    #possible_problems h2 {
        font-size: 30px;
    }
}

@media ( max-width: 399px ) {
    #possible_problems h2 {
        font-size: 25px;
    }

    #possible_problems ul li .title {
        font-size: 21px;
    }
}

/* values */

#values {
    padding-top: 54px;
    padding-bottom: 54px;
    background: #fff;
}

#values h2 {
    margin-bottom: 54px;
    color: #000;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 38px;
    line-height: 1.20;
    text-align: center;
}

#values h2 span {
    color: #158f76;
}

#values ul li {
    position: relative;
    padding-left: 60px;
    margin-bottom: 32px;
    
    color: #000;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 32px;
    text-align: center;
}

#values ul li:last-child {
    margin-bottom: 12px !important;
}

#values ul li .number {
    position: absolute;
    top: 0;
    left: 0;
    width: 42px;
    height: 42px;
    background: #158f76;
    border-radius: 50%;

    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 27px;
    text-align: center;
    line-height: 42px;
}

#values ul li .title {
    width: 100%;
    margin-bottom: 20px;

    color: #000;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 34px;
}

#values ul li .description {
    width: 100%;
    color: #000;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 30px;
}

#values ul li .description p {
    margin-bottom: 17px;
    width: 100%;
    color: #000;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 30px;
}

#values ul li .description p.last {
    margin-bottom: 0 !important;
}

@media ( max-width: 767px ) {
    #values h2 {
        font-size: 30px;
    }
}

@media ( max-width: 399px ) {
    #values h2 {
        font-size: 25px;
    }

    #values ul li .title {
        font-size: 21px;
    }
}

/* services */

.services_margin {
    width: 100%;
    height: 45px;
    background: #e3e3e3;
}

.service {
    background: #fff;
    display: table;
}

.service > div {
    display: table-cell;
    float: none !important;
}

.service.first .with_img {
    background: url('../img/main_crm_bg_1.jpg') left center no-repeat;
    background-size: cover;
}

.service.second .with_img.wi_first {
    display: none;
}

.service.second .with_img {
    background: url('../img/main_crm_bg_2_test.jpg') right bottom no-repeat;
    background-size: auto;
}

.service.third .with_img {
    background: url('../img/main_crm_bg_1.jpg') center center no-repeat;
    background-size: cover;
}

.service .desc {
    padding-top: 42px;
    padding-bottom: 28px;
    text-align: center;
}

.service h3 {
    margin-bottom: 14px;
    color: #000;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 21px;
    text-align: center;
}

.service h2 {
    margin-bottom: 5px;
    color: #000;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 38px;
    text-align: left;
}

.service p {
    margin-bottom: 14px;
    color: #333;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 30px;
    text-align: left;
}

.service ul {
    padding-left: 20px;
}

.service ul li {
    margin-bottom: 9px;
    color: #333;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 30px;
    text-align: left;
}

.service ul li:last-child {
    margin-bottom: 0 !important;
}

.service p.last {
    margin-bottom: 14px;
}

.service a {
    color: #0070c9;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 23px;
    text-align: center;
}

@media ( max-width: 991px ) {

    #about_crm,
    #institute {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    #services {
        padding-top: 42px;
    }

    #services > h2 {
        margin-bottom: 42px;
        font-size: 36px;
    }

    .service > div {
        display: block;
        float: none !important;
    }

    .service > div.with_img {
        height: 150px;
    }

    .service.second .with_img.wi_first {
        display: block;
    }

    .service.second .with_img {
        background: url('../img/main_crm_bg_2.jpg') right 65% no-repeat;
        background-size: cover;
    }

    .service.second .with_img.wi_second {
        display: none;
    }

    .service h3 {
        padding-left: 15px;
        padding-right: 15px;
        margin-top: 20px;
    }

    .service h2 {
        font-size: 25px;
        line-height: 30px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .service p {
        padding-left: 15px;
        padding-right: 15px;
    }

}

/* advantages */

#advantages {
    padding-top: 54px;
    padding-bottom: 7px;
    background: url('../img/advantages_bg.jpg') center center no-repeat;
    background-size: cover;
}

#advantages .adv {
    text-align: center;
    margin-bottom: 22px;
}

#advantages .adv .icon {
    position: relative;
    display: inline-block;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    margin-bottom: 14px;
    text-align: center;
    line-height: 50px;
}

#advantages .adv .icon.first > img {
    width: 54px;
}

#advantages .adv .icon.second > img {
    width: 47px;
}

#advantages .adv .icon.third > img {
    width: 48px;
}

#advantages .adv .icon.fourth > img {
    width: 54px;
}

#advantages .adv h3 {
    margin-bottom: 12px;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    color: #000;
    font-size: 22px;
    line-height: 28px;
}

#advantages .adv .desc {
    padding-left: 15px;
    padding-right: 15px;
    text-align: center;
    color: #333;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 25px;
    margin-bottom: 20px;
}

@media ( max-width: 991px ) {
    #advantages video {
        display: none;
    }

    #advantages .adv {
        margin-bottom: 42px;
    }
}

/* portfolio */

#portfolio {
    padding-top: 54px;
    padding-bottom: 34px;
    background: #fff;
}

#portfolio h2 {
    margin-bottom: 42px;
    color: #000;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 42px;
    text-align: center;
}

#portfolio h3 {
    margin-bottom: 30px;
    color: #000;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 27px;
    text-align: center;
}

#portfolio .row {
    margin-left: -4px;
    margin-right: -4px;
}

#portfolio .row > div {
    padding-left: 4px;
    padding-right: 4px;
}

#example-js,
#example-html {
    margin-top: 54px;
}

#portfolio .example {
    margin-bottom: 8px;
    position: relative;
    display: inline-block;
    width: 100%;
    height: auto;
    border: 1px solid #dcdcdc;
    -webkit-transition: all 0.5s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
    -moz-transition: all 0.5s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
    -ms-transition: all 0.5s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
    -o-transition: all 0.5s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
    transition: all 0.5s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
}

#portfolio .example:hover {
    border: 1px solid rgba(0,0,0,0.9);
}

#portfolio .example img {
    width: 100%;
    height: auto;
    vertical-align: middle;
}

#portfolio .example .desc {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    opacity: 0;
    -webkit-transition: all 0.5s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
    -moz-transition: all 0.5s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
    -ms-transition: all 0.5s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
    -o-transition: all 0.5s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
    transition: all 0.5s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
}

#portfolio .example:hover .desc {
    opacity: 1;
}

#portfolio .example .desc p {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    margin-bottom: 0;
    font-family: 'Bebas Neue Regular', sans-serif;
    font-size: 17px;
    line-height: 1.2;
    -webkit-transition: all 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
    -moz-transition: all 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
    -ms-transition: all 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
    -o-transition: all 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
    transition: all 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
}

#portfolio .example:hover .desc p {
    bottom: 50%;
    margin-bottom: -35px;
}

#portfolio .example.crm:hover .desc p {
    margin-bottom: -10px !important;
}

@media ( max-width: 767px ) {
    #portfolio .example {
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: 270px;
    }
}

@media ( max-width: 991px ) {
    #portfolio {
        padding-top: 42px;
    }

    #portfolio h2 {
        margin-bottom: 30px;
        font-size: 36px;
    }

    #portfolio h3 {
        margin-bottom: 30px;
        font-size: 24px;
    }

    #example-js,
    #example-html {
        margin-top: 42px;
    }
}

/* footer */

#footer {
    padding-top: 27px;
    padding-bottom: 27px;
    background: #222222;
}

#breadcrumbs {
    padding-bottom: 7px;
    margin-bottom: 24px;
    border-bottom: 1px solid #333;
}

#breadcrumbs > a {
    margin-bottom: 7px;
    display: inline-block;
    vertical-align: middle;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 14px;
    color: #ccc;
}

#breadcrumbs > span {
    margin-bottom: 7px;
    display: inline-block;
    vertical-align: middle;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 14px;
    color: #ccc;
}
#breadcrumbs > img {
    margin-bottom: 7px;
    margin-left: 5px;
    margin-right: 8px;
    display: inline-block;
    vertical-align: middle;
}

#logo_footer {
    display: inline-block;
    vertical-align: middle;
}

#logo_footer span:first-child {
    padding-top: 4px;
    padding-left: 1px;
    display: inline-block;
    vertical-align: middle;
    width: 18px;
    height: 18px;
    background: #ccc;
    color: #000;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 12px;
}

#logo_footer span:last-child {
    padding-top: 3px;
    padding-left: 2px;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    left: -6px;
    width: 18px;
    height: 18px;
    background: transparent;
    color: #ccc;
    border: 1px solid #ccc;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 12px;
}

#footer h2 {
    margin-bottom: 21px;
    color: #999;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
}

#footer p {
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 21px;
}

#footer img {
    max-width: 100%;
}

#footer .html,
#footer .js,
#footer .crm {
    display: block;
    margin-bottom: 10px;
}

#footer .ex_row {
    margin-left: -5px;
    margin-right: -5px;
}

#footer .ex_first {
    padding-left: 5px;
    padding-right: 5px;
}

#footer .ex_second {
    padding-left: 5px;
    padding-right: 5px;
}

#footer .ex_third {
    padding-left: 5px;
    padding-right: 5px;
}

#footer .html,
#footer .js,
#footer .crm {
    position: relative;
    width: 100%;
    height: 100px;
}

#footer .num_1 {
    background: url('../img/examples/example16.jpg') no-repeat;
    background-size: auto 100%;
}

#footer .num_2 {
    background: url('../img/examples/example05.jpg') no-repeat;
    background-size: auto 100%;
}

#footer .num_3 {
    background: url('../img/examples/example06.jpg') no-repeat;
    background-size: auto 100%;
}

#footer .num_4 {
    background: url('../img/examples/ex_js_09.jpg') no-repeat;
    background-size: auto 100%;
}

#footer .num_5 {
    background: url('../img/examples/ex_js_12.jpg') no-repeat;
    background-size: auto 100%;
}

#footer .num_6 {
    background: url('../img/examples/ex_php_09.jpg') no-repeat;
    background-size: auto 100%;
}

#footer .html:before {
    content: 'html';
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 12px;
    line-height: 1.2;
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: auto;
    display: inline-block;
    text-align: center;
    color: #fff;
    background: #2ECC71;
}

#footer .html:after,
#footer .js:after,
#footer .crm:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 10px;
    height: 100%;
    display: block;
    background: #222;
    background: -moz-linear-gradient(right, rgba(34,34,34,1) 0%, rgba(34,34,34,0) 100%);
    background: -webkit-linear-gradient(right, rgba(34,34,34,1) 0%, rgba(34,34,34,0) 100%);
    background: -o-linear-gradient(right, rgba(34,34,34,1) 0%, rgba(34,34,34,0) 100%);
    background: -ms-linear-gradient(right, rgba(34,34,34,1) 0%, rgba(34,34,34,0) 100%);
    background: linear-gradient(right, rgba(34,34,34,1) 0%, rgba(34,34,34,0) 100%);
}

#footer .js:before {
    content: 'js';
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 12px;
    line-height: 1.2;
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: auto;
    display: inline-block;
    text-align: center;
    color: #fff;
    background: #3498DB;
}

#footer .crm:before {
    content: 'crm';
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 12px;
    line-height: 1.2;
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: auto;
    display: inline-block;
    text-align: center;
    color: #fff;
    background: #7D3C98;
}

#footer ul li {
    position: relative;
    padding-left: 29px;
    margin-bottom: 20px;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 14px;
}

@media (max-width: 991px) {
    #footer_functions,
    #footer_business_branches {
        margin-bottom: 42px !important;
    }
}

#footer_functions li,
#footer_business_branches li {
    padding-left: 0 !important;
}

#footer_functions li a,
#footer_business_branches li a {
    color: #fff;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

#footer_functions li a:hover,
#footer_business_branches li a:hover {
    color: #aaa;
}

#footer ul li:last-child {
    margin-bottom: 0 !important;
}

#footer ul li.contact-phone:before {
    content: '\f10a';
    position: absolute;
    top: -3px;
    left: 2px;
    font-family: "FontAwesome";
    font-size: 21px;
    color: #999;
}

#footer ul li.contact-skype:before {
    content: '\f17e';
    position: absolute;
    top: -3px;
    left: 0;
    font-family: "FontAwesome";
    font-size: 20px;
    color: #999;
}

#footer ul li.contact-email:before {
    content: '\f003';
    position: absolute;
    top: -3px;
    left: 0;
    font-family: "FontAwesome";
    font-size: 17px;
    color: #999;
}

#tags_block {
    display: inline-block;
    padding-bottom: 30px;
}

#tags_block a {
    display: block;
    float: left;
    padding: 5px 8px;
    margin-right: 5px;
    margin-bottom: 7px;
    border: 1px solid #fff;
    border-radius: 4px;
    color: #fff;
    background: transparent;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 12px;

    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

#tags_block a:hover {
    background: rgba(255,255,255,0.15);
}

@media ( max-width: 767px ) {
    #tags_block a {
        font-size: 14px;
    }
}

#footer_bottom {
    margin-top: 24px;
    padding-top: 19px;
    border-top: 1px solid #333;
    color: #999;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 14px;
}

#footer-bottom p {
    line-height: 35px;
}

@media ( max-width: 991px ) {
    #footer_contacts {
        margin-bottom: 42px !important;
    }

    #footer_examples {
        margin-bottom: 36px !important;
    }
}

/* form_2 */

#form_2 > .row {
    display: table;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    background: url('../img/main_form_bg_black.jpg') no-repeat;
    background-size: cover;
    /*background: #000;
    background: -moz-linear-gradient(top, #000 0%, #222 51%, #000 100%);
    background: -webkit-linear-gradient(top, #000 0%, #222 51%, #000 100%);
    background: -o-linear-gradient(top, #000 0%, #222 51%, #000 100%);
    background: -ms-linear-gradient(top, #000 0%, #222 51%, #000 100%);
    background: linear-gradient(top, #000 0%, #222 51%, #000 100%);*/
}

#form_2 > .row > div {
    display: table-cell;
    float: none;
}

#form_2 > .row > div:first-child {
    vertical-align: middle;
    text-align: center;
}

#form_logo {
    display: inline-block;
}

#form_logo span:first-child {
    padding-top: 12px;
    padding-left: 4px;
    display: inline-block;
    vertical-align: middle;
    width: 100px;
    height: 100px;
    background: #fff;
    color: #000;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 70px;
}

#form_logo span:last-child {
    padding-top: 11px;
    padding-left: 1px;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    left: -6px;
    width: 100px;
    height: 100px;
    background: transparent;
    color: #fff;
    border: 5px solid #fff;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 64px;
}

#form_logo_desc {
    padding-top: 19px;
    color: #fff;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 21px;
}

#form_2 .form {
    padding-top: 36px;
    padding-bottom: 36px;
}

#form_2 .form > .row.first {
    margin-left: -5px;
    margin-right: -5px;
}

#form_2 .form .name_2_wrap,
#form_2 .form .email_2_wrap {
    padding-left: 5px;
    padding-right: 5px;
}

#form_2 h3 {
    margin-bottom: 24px;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 36px;
    text-align: center;
}

#form_2 p {
    margin-bottom: 17px;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 17px;
    line-height: 23px;
    text-align: center;
}

#name_2,
#email_2 {
    display: inline-block;
    margin-bottom: 10px;
    vertical-align: middle;
    width: 100%;
    height: 37px;
    border: 1px solid #fff;
    padding-left: 12px;
    padding-right: 12px;
    background: transparent !important;
    line-height: 35px;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 14px;
}

#message_2 {
    display: inline-block;
    margin-bottom: 10px;
    vertical-align: middle;
    width: 100%;
    border: 1px solid #fff;
    padding: 12px;
    background: transparent !important;
    line-height: 21px;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 14px;
}

#form_2 input::-webkit-input-placeholder,
#form_2 textarea::-webkit-input-placeholder {
    color: #fff;
}

#form_2 input::-moz-placeholder,
#form_2 textarea::-moz-placeholder {
    color: #fff;
}

#form_2 button {
    display: inline-block;
    vertical-align: middle;
    width: 100%;
    height: 37px;
    border: 1px solid #fff;
    padding-left: 12px;
    padding-right: 12px;
    background: #fff;
    line-height: 34px;
    color: #000;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 14px;

    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

#form_2 button:hover {
    border-color: #aaa;
    background: #aaa;
}

@media ( max-width: 991px ) {
    #form_2 .with_logo {
        display: none !important;
    }

    #form_2 h3 {
        font-size: 28px;
    }
}

/* pages */

#page_title {
    width: 100%;
    height: 250px;
    background: url('../img/page_header_bg.png') left center no-repeat;
    background-size: cover;
}

#page_title .container {
    display: table;
    height: 250px;
}

#page_title_inner {
    display: table-cell;
    vertical-align: middle;
}

#page_title_inner > div {
    position: relative;
}

#page_title h1 {
    padding-top: 44px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 36px;
    line-height: 48px;
    text-shadow: 2px 2px 5px #555;
    text-transform: uppercase;
    color: #fff;
}

#page_title .breadcrumbs {
    position: absolute;
    top: 14px;
    left: 0;
}

#page_title .breadcrumbs li {
    display: inline-block;
    vertical-align: middle;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #fff;
    text-shadow: 2px 2px 5px #555;
}

#page_title .breadcrumbs li a {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #fff;
}

#page_title .breadcrumbs li.border {
    position: relative;
    top: -1px;
    margin-left: 5px;
    margin-right: 5px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #fff;
}

#page_title .line {
    position: absolute;
    bottom: -14px;
    display: block;
    width: 30px;
    height: 5px;
    background: #fff;
    box-shadow: 2px 2px 5px #555;
}

#page_content {
    padding-top: 54px;
    padding-bottom: 34px;
    background: #fff;
}

@media ( max-width: 1199px ) {
    #page_title {
        float: left;
        clear: both;
        width: 100%;
        height: auto;
        padding-top: 74px;
        padding-bottom: 64px;
        background: url('../img/page_header_bg.png') left center no-repeat;
        background-size: cover;
    }

    #page_title .container {
        display: block;
        height: auto;
    }

    #page_title_inner {
        display: block;
    }

    #page_content {
        clear: both;
    }
}

@media ( max-width: 767px ) {
    #page_title h1 {
        font-size: 30px;
        line-height: 44px;
    }
}

/* types */

#page_content.types label {
    display: block;
    margin-bottom: 12px;
    color: #000;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
    text-align: left;
}

#page_content.types #search {
    display: block;
    width: 30%;
    height: 42px;
    border: 2px solid #444;
    padding-left: 12px;
    padding-right: 12px;
    background: #fff;
    line-height: 35px;
    color: #444;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 2px 2px 5px #555;
}

#page_content.types button {
    margin-right: 14px;
    display: block;
    float: left;
    height: 42px;
    padding-left: 21px;
    padding-right: 21px;
    background: rgb(21, 143, 118);
    border: none;
    line-height: 35px;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    box-shadow: 2px 2px 5px #555;

    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

#page_content.types button.active,
#page_content.types button:hover {
    background: rgba(21, 143, 118, 0.75);
}

#page_content.types button.type_button_cancel {
    background: rgb(225, 229, 236) !important;
    color: #777 !important;
}

#page_content.types button.type_button_cancel.active,
#page_content.types button.type_button_cancel:hover {
    background: rgba(225, 229, 236, 0.75) !important;
}

#page_content.types #types {
    clear: both;
    padding-top: 42px;
}

#page_content.types .type_wrap {
    display: block;
    clear: both;
    float: left;
    width: 100%;
    margin-bottom: 24px;
}

#page_content.types .type_wrap h2 {
    margin-bottom: 21px;
    color: #000;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
}

#page_content.types .type_wrap .type {
    margin-right: 14px;
    margin-bottom: 12px;
    display: block;
    float: left;
    height: 42px;
    padding-left: 21px;
    padding-right: 21px;
    border: 2px solid #444;
    border-radius: 21px;
    background: #fff;
    line-height: 37px;
    color: #444;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    box-shadow: 2px 2px 5px #555;

    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

#page_content.types .type_wrap .type:hover {
    background: #ccc;
}

/* typograpy */

#page_content.typography {
    color: #444;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 30px;
}

#page_content.typography h2 {
    margin-bottom: 24px;
    color: #000;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 34px;
}

#page_content.typography p {
    margin-bottom: 24px;
    line-height: 30px;
}

#page_content.typography b {
    font-weight: 700;
}

#page_content.typography ul {
    display: block;
    width: 100%;
    float: left;
    clear: both;
    padding-left: 30px;
    margin-bottom: 24px;
}

#page_content.typography ul li {
    margin-bottom: 14px;
    line-height: 30px;
}

#page_content.typography ul li p {
    margin-bottom: 14px !important;
    line-height: 30px;
}

#page_content.typography ul li:last-child {
    margin-bottom: 0 !important;
}

/* blog */
#page_content.blog .article {
    margin-bottom: 42px;
}

#page_content.blog .article .image_wrap {
    display: block;
    float: left;
    clear: both;
    width: 100%;
    position: relative;
    margin-bottom: 18px;
}

#page_content.blog .article .image_wrap img {
    width: 100%;
    height: auto;
}

#page_content.blog .article .time_wrap {
    position: absolute;
    top: 0;
    left: 0;
}

#page_content.blog .article .time_wrap .day {
    display: block;
    float: left;
    clear: both;
    width: 46px;
    height: 48px;
    background: rgb(21, 143, 118);
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 48px;
    color: #fff;
    text-align: center;
}

#page_content.blog .article .time_wrap .month {
    display: block;
    float: left;
    clear: both;
    width: 46px;
    height: 24px;
    background: #000;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 17px;
    line-height: 24px;
    color: #fff;
    text-align: center;
}

#page_content.blog .article .content_wrap h2 {
    margin-bottom: 12px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 17px;
    line-height: 21px;
    color: #000;
}

#page_content.blog .article .content_wrap h2 > a {
    margin-bottom: 10px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 17px;
    line-height: 21px;
    color: #000;

    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

#page_content.blog .article .content_wrap h2 > a:hover {
    color: rgba(0,0,0,0.75);
}

#page_content.blog .article .content_wrap p {
    margin-bottom: 16px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #444;
}

#page_content.blog .article .content_wrap a {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 18px;
    color: rgb(21, 143, 118);

    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

#page_content.blog .article .content_wrap a:hover {
    color: rgba(21, 143, 118, 0.75);
}

#page_content.article.typography img {
    border: 1px solid #dcdcdc;
}

#page_content.article.typography .annotation {
    color: #777;
    font-size: 14px;
    line-height: 24px;
    font-style: italic;
}

#page_content.function.typography img {
    border: 1px solid #dcdcdc;
}

#page_content.function.typography .annotation {
    color: #777;
    font-size: 14px;
    line-height: 24px;
    font-style: italic;
}

#page_content.type.typography img {
    border: 1px solid #dcdcdc;
}

#page_content.type.typography .annotation {
    color: #777;
    font-size: 14px;
    line-height: 24px;
    font-style: italic;
}

@media ( max-width: 991px ) {
    #page_content.article.typography img,
    #page_content.function.typography img,
    #page_content.type.typography img {
        width: 100%;
        height: auto;
    }
}

/* cases */
#page_content.cases {
    padding-bottom: 24px !important;
}

#page_content.cases .case .image_wrap {
    display: block;
    float: left;
    clear: both;
    width: 100%;
    position: relative;
    margin-bottom: 30px;
}

#page_content.cases .case .image_wrap img {
    width: 100%;
    height: auto;
}

#page_content.cases .case .time_wrap {
    position: absolute;
    top: 0;
    left: 0;
}

#page_content.cases .case .time_wrap .year {
    display: block;
    float: left;
    clear: both;
    width: 48px;
    height: 24px;
    background: rgb(21, 143, 118);
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 17px;
    line-height: 24px;
    color: #fff;
    text-align: center;
}

#page_content.cases .case .name {
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    float: left;
    clear: both;
    width: 100%;
    height: auto;
    padding: 36px 15px 10px 15px;
    background: #444;
    background: -moz-linear-gradient(bottom, #444 0%, transparent 100%);
    background: -webkit-linear-gradient(bottom, #444 0%, transparent 100%);
    background: -o-linear-gradient(bottom, #444 0%, transparent 100%);
    background: -ms-linear-gradient(bottom, #444 0%, transparent 100%);
    background: linear-gradient(bottom, #444 0%, transparent 100%);
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 24px;
    color: #fff;
    text-shadow: 2px 2px 5px #111;
}

#page_content.case .case_images .form-group {
    border: 1px solid #dcdcdc;
}

/* functions */

#page_content.functions label {
    display: block;
    margin-bottom: 12px;
    color: #000;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
    text-align: left;
}

#page_content.functions #search {
    display: block;
    width: 30%;
    height: 42px;
    border: 2px solid #444;
    padding-left: 12px;
    padding-right: 12px;
    background: #fff;
    line-height: 35px;
    color: #444;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 2px 2px 5px #555;
}

#page_content.functions button {
    margin-right: 14px;
    display: block;
    float: left;
    height: 42px;
    padding-left: 21px;
    padding-right: 21px;
    background: rgb(21, 143, 118);
    border: none;
    line-height: 35px;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    box-shadow: 2px 2px 5px #555;

    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

#page_content.functions button.active,
#page_content.functions button:hover {
    background: rgba(21, 143, 118, 0.75);
}

#page_content.functions button {
    margin-right: 14px;
    display: block;
    float: left;
    height: 42px;
    padding-left: 21px;
    padding-right: 21px;
    background: rgb(21, 143, 118);
    border: none;
    line-height: 35px;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    box-shadow: 2px 2px 5px #555;

    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

#page_content.functions button.active,
#page_content.functions button:hover {
    background: rgba(21, 143, 118, 0.75);
}

#page_content.functions button.function_button_cancel {
    background: rgb(225, 229, 236) !important;
    color: #777 !important;
}

#page_content.functions button.function_button_cancel.active,
#page_content.functions button.function_button_cancel:hover {
    background: rgba(225, 229, 236, 0.75) !important;
}

#page_content.functions #functions {
    clear: both;
    padding-top: 42px;
}

#page_content.functions .function_wrap {
    display: block;
    clear: both;
    float: left;
    width: 100%;
    margin-bottom: 24px;
}

#page_content.functions .function_wrap h2 {
    margin-bottom: 21px;
    color: #000;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
}

#page_content.functions .function_wrap .function {
    margin-right: 14px;
    margin-bottom: 12px;
    display: block;
    float: left;
    height: 42px;
    padding-left: 21px;
    padding-right: 21px;
    border: 2px solid #444;
    border-radius: 21px;
    background: #fff;
    line-height: 37px;
    color: #444;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    box-shadow: 2px 2px 5px #555;

    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

#page_content.functions .function_wrap .function:hover {
    background: #ccc;
}

@media ( max-width: 991px ) {
    #page_content.types #search,
    #page_content.functions #search {
        width: 50%;
    }

    #page_content.types button,
    #page_content.functions button {
        margin-bottom: 14px;
    }
}

@media ( max-width: 767px ) {
    #page_content.types #search,
    #page_content.functions #search {
        width: 100%;
    }

    #page_content.types button,
    #page_content.functions button {
        width: 100%;
        margin-right: 0 !important;
        margin-bottom: 12px;
    }

    #page_content.types .type_wrap .type,
    #page_content.functions .function_wrap .function {
        width: 100%;
        margin-right: 0 !important;
    }
}

/* pagination */
.pagination>.active>a,
.pagination>.active>a:focus,
.pagination>.active>a:hover,
.pagination>.active>span,
.pagination>.active>span:focus,
.pagination>.active>span:hover {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    background-color: rgb(21, 143, 118);
    border-color: rgb(21, 143, 118);
}

.pagination>li>a,
.pagination>li>span {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    color: rgb(21, 143, 118);
}

.pagination>li>a:focus,
.pagination>li>a:hover,
.pagination>li>span:focus,
.pagination>li>span:hover {
    color: rgb(21, 143, 118);
}

#page_content.page_404 {
    padding-top: 54px !important;
    padding-bottom: 54px !important;
}

#page_content.page_404 h2 {
    text-align: center;
    margin-bottom: 14px;
    color: #e43a45;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 54px;
    line-height: 64px;
}

#page_content.page_404 p {
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 30px;
    color: #444;
}



