﻿/*--------------------------------------------------------------------------
+  LOADING FONTS
--------------------------------------------------------------------------*/
@font-face {
    font-family: 'ClanOffcBold';
    src: url('../fonts/clanoffc-bold.eot');
    src: url('../fonts/clanoffc-bold.eot') format('embedded-opentype'), url('../fonts/clanoffc-bold.woff') format('woff'), url('../fonts/clanoffc-bold.ttf') format('truetype'), url('../fonts/clanoffc-bold.svg#ClanOffcBold') format('svg');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'ClanOffcThin';
    src: url('../fonts/clanoffc-thin.eot');
    src: url('../fonts/clanoffc-thin.eot') format('embedded-opentype'), url('../fonts/clanoffc-thin.woff') format('woff'), url('../fonts/clanoffc-thin.ttf') format('truetype'), url('../fonts/clanoffc-thin.svg#ClanOffcThin') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'DinNext';
    src: url('../fonts/dinnextltarabic-regular.eot');
    src: url('../fonts/dinnextltarabic-regular.eot') format('embedded-opentype'), url('../fonts/dinnextltarabic-regular.woff') format('woff'), url('../fonts/dinnextltarabic-regular.ttf') format('truetype'), url('../fonts/dinnextltarabic-regular.svg#DinNext') format('svg');
    font-weight: normal;
    font-style: normal;
}

/*--------------------------------------------------------------------------
+  GENERAL
--------------------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
    font-family: 'Roboto', sans-serif;
    color: #000; /*#808080 */
    margin: 0;
    font-size: 16px;
    /*line-height: 25px;*/
    font-weight: 300;
}

body {
    background-color: #e3e7e8;
}

/*boxed-layout*/
.boxed-layout {
    padding: 0;
    margin-left: auto !important;
    margin-right: auto !important;
}

.clearfix {
    clear: both;
}

/* H1 for page titles */
h1, h2, h3, h4, h5, h6 {
    font-family: ClanOffcBold, sans-serif;
    color: #21252b;
    font-weight: 500;
    margin-top: 0;
    line-height: normal;
}

h1 {
    font-size: 40px;
    margin: 27px 0;
}

h2 {
    font-size: 30px;
    margin-bottom: 10px;
}

h3 {
    font-size: 25px;
    margin-bottom: 10px;
}

h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

h5 {
    font-size: 24px;
    margin-bottom: 10px;
}

h6 {
    font-size: 22px;
    margin-bottom: 10px;
}

p {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    line-height: 32px;
    font-weight: 300;
    color: #000;
}

a {
    text-decoration: none;
    color: #00afd1;
    font-weight: 400;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    line-height: 25px;
}

    a:hover, a:focus {
        text-decoration: none;
        color: #00afd1;
    }

    a:focus {
        outline: none;
        opacity: .8;
    }

button {
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

/*default padding*/
.content {
    padding: 35px 0;
    background: white;
}

.content-2 {
    padding: 100px 0;
    background: white;
}

.padd {
    padding: 20px;
}

.padd10 {
    padding: 10px;
}

.padd0 {
    padding: 0px !important;
}

.padd-left0 {
    padding-left: 0px;
}

/*default color*/
.piksell-color {
    color: #01c1c1;
}

/*small-font*/
.small-text {
    font-size: 14px;
}

strong {
    font-weight: 400;
}
/*WEIGHT*/
.weight-100 {
    font-weight: 100;
}

.weight-200 {
    font-weight: 200;
}

.weight-300 {
    font-weight: 300;
}

.weight-400 {
    font-weight: 400;
}

.weight-500 {
    font-weight: 500;
}

.weight-600 {
    font-weight: 600;
}

.weight-700 {
    font-weight: 700;
}

.weight-800 {
    font-weight: 800;
}

.weight-900 {
    font-weight: 900;
}

.color-white {
    color: #fff;
}

.color-cyan {
    color: #00afd1;
}

.color-yellow {
    color: #eed100;
}

.color-grey {
    color: #d2d4d5;
}

.bgcolor-grey {
    background-color: #e3e7e8;
}

.bgcolor-blue {
    background-color: #2a3c6e;
}

.bgcolor-aspire {
    background-color: #7b035a;
}

/*--------------------------------------------------------------------------
+  ELEMENTS STYLES
--------------------------------------------------------------------------*/
.no-include {
    text-decoration: line-through;
}

/*LIST STYLES*/
/*default list*/
ul {
    padding: 0 0 10px 20px;
}

    ul li {
        margin-bottom: 6px;
    }

ol {
    padding: 0 0 20px 20px;
}

    ol li {
        margin-bottom: 5px;
    }

.no-bullets {
    list-style-type: none;
    padding: 0;
}

    .no-bullets li {
        margin-bottom: 5px;
    }
/*styled lists*/
ul.inline-block {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

    ul.inline-block li {
        display: inline-block;
        *display: block;
    }
/*list style 1*/
ul.list1 {
    list-style: none;
    padding-left: 22px;
    overflow: hidden;
}

    ul.list1 li {
        position: relative;
        padding: 4px 0 4px;
    }

        ul.list1 li:before {
            content: '';
            display: block;
            position: absolute;
            border: 1px solid #01c1c1;
            left: -19px;
            top: 13px;
            width: 9px;
            height: 9px;
            border-radius: 100%;
        }
/*list style 2*/
ul.list2 {
    list-style: none;
    padding-left: 22px;
    overflow: hidden;
}

    ul.list2 li {
        position: relative;
        padding: 4px 0 4px;
    }

        ul.list2 li:before {
            content: '';
            display: block;
            position: absolute;
            border: 1px solid #01c1c1;
            left: -19px;
            top: 13px;
            width: 9px;
            height: 9px;
        }
/*list style 3*/
ul.list3 {
    list-style: none;
    padding-left: 22px;
    padding: 0;
}

    ul.list3 li {
        padding: 4px 0 4px;
    }

        ul.list3 li i.fa {
            color: #01c1c1;
            font-size: 14px;
            width: 20px;
            height: 20px;
            line-height: 20px;
            text-align: center;
            margin-right: 4px;
        }
/*list style 4*/
ul.list4 {
    list-style: none;
    padding-left: 22px;
    padding: 0;
}

    ul.list4 li {
        padding: 4px 0 4px;
    }

        ul.list4 li i.fa {
            background: #01c1c1;
            color: #fff;
            width: 17px;
            height: 17px;
            line-height: 20px;
            text-align: center;
            margin-right: 8px;
            font-size: 11px;
            border-radius: 100%;
        }
/*list style 5*/
ol.list5 {
    counter-reset: li;
    list-style: none outside none;
    padding: 0;
    overflow: hidden;
}

    ol.list5 li {
        position: relative;
        padding: 4px 0 4px 34px;
    }

        ol.list5 li:after {
            content: counter(li, decimal-leading-zero) ".";
            counter-increment: li;
            position: absolute;
            left: 2px;
            top: 50%;
            margin-top: -12px;
            color: #21252b;
            width: 26px;
            height: 26px;
            text-align: center;
            line-height: 26px;
        }
/*list style 6*/
ol.list6 {
    overflow: hidden;
}

    ol.list6 li {
        position: relative;
        padding: 4px 0 4px;
    }
/*list dividers*/
ul.list-solid li {
    border-bottom: 1px solid #e3e7e9;
    padding: 3px 0 10px 0;
}

    ul.list-solid li:last-child {
        border-bottom: 0px;
    }
/*dotted divider*/
ul.list-dotted li {
    border-bottom: 1px dotted #e3e7e9;
    padding: 3px 0 10px 0;
}

    ul.list-dotted li:last-child {
        border-bottom: 0px;
    }
/*dashed divider*/
ul.list-dashed li {
    border-bottom: 1px dashed #e3e7e9;
    padding: 3px 0 10px 0;
}

    ul.list-dashed li:last-child {
        border-bottom: 0px;
    }

/*BUTTON STYLES*/
.btn {
    min-width: 120px;
}
/*default*/
.pi-btn-default {
    background: #01c1c1;
    color: #f4f6f6;
    border: 1px solid #00aeae;
    box-shadow: inset 0 1px 0px rgba(255,255,255, 0.2);
}

    .pi-btn-default:hover, .pi-btn-default:focus {
        background: #00aeae;
        color: #fff;
        border: 1px solid #019191;
    }

/*pink*/
.pi-btn-pink {
    background: #dc2d78;
    border: 1px solid #cc286e;
    color: #f4f6f6;
    box-shadow: inset 0 1px 0px rgba(255,255,255, 0.2);
}

    .pi-btn-pink:hover, .pi-btn-pink:focus {
        background: #cc286e;
        color: #fff;
        border: 1px solid #be1f63;
    }

/*red*/
.pi-btn-red {
    background: #ef4a44;
    border: 1px solid #d63530;
    color: #f4f6f6;
    box-shadow: inset 0 1px 0px rgba(255,255,255, 0.2);
}

    .pi-btn-red:hover, .pi-btn-red:focus {
        background: #d63530;
        color: #fff;
        border: 1px solid #c4201b;
    }

/*plum*/
.pi-btn-plum {
    background: #ae0775;
    border: 1px solid #7a0659;
    color: #f4f6f6;
    box-shadow: inset 0 1px 0px rgba(255,255,255, 0.2);
}

    .pi-btn-plum:hover, .pi-btn-plum:focus {
        background: #7a0659;
        color: #fff;
        border: 1px solid #7a0659;
    }

/*purple*/
.pi-btn-purple {
    background: #8d55a0;
    border: 1px solid #814894;
    color: #f4f6f6;
    box-shadow: inset 0 1px 0px rgba(255,255,255, 0.2);
}

    .pi-btn-purple:hover, .pi-btn-purple:focus {
        background: #814894;
        color: #fff;
        border: 1px solid #773b8b;
    }

/*orange*/
.pi-btn-orange {
    background: #ee7933;
    border: 1px solid #e26a23;
    color: #f4f6f6;
    box-shadow: inset 0 1px 0px rgba(255,255,255, 0.2);
}

    .pi-btn-orange:hover, .pi-btn-orange:focus {
        background: #e26a23;
        color: #fff;
        border: 1px solid #d86019;
    }

/*blue*/
.pi-btn-blue {
    background: #2a3c6e;
    border: 1px solid #152961;
    color: #f4f6f6;
    box-shadow: inset 0 1px 0px rgba(255,255,255, 0.2);
}

    .pi-btn-blue:hover, .pi-btn-blue:focus {
        background: #152961;
        color: #fff;
        border: 1px solid #273370;
    }

/*cyan*/
.pi-btn-cyan, .pi-btn-cyan:active, .pi-btn-cyan:focus {
    background: #00afd1;
    color: #fff;
    border: 3px solid #00afd1;
}

    .pi-btn-cyan:hover {
        background: #fff;
        color: #00afd1;
        border: 3px solid #00afd1;
    }

/*green*/
.pi-btn-green {
    background: #85be4c;
    border: 1px solid #85be4c;
    color: #85be4c;
    box-shadow: inset 0 1px 0px rgba(255,255,255, 0.2);
}

    .pi-btn-green:hover, .pi-btn-green:focus {
        background: #7ab32e;
        color: #fff;
        border: 1px solid #71aa26;
    }

/*brown*/
.pi-btn-brown {
    background: #8b4c38;
    border: 1px solid #824430;
    color: #f4f6f6;
    box-shadow: inset 0 1px 0px rgba(255,255,255, 0.2);
}

    .pi-btn-brown:hover, .pi-btn-brown:focus {
        background: #824430;
        color: #fff;
        border: 1px solid #7b3d29;
    }

/*LinkedIn*/
.pi-btn-linkedIn {
    background: #1b85bd;
    border: 1px solid #1b85bd;
    color: #f4f6f6;
    box-shadow: inset 0 1px 0px rgba(255,255,255, 0.2);
}

    .pi-btn-linkedIn:hover, .pi-btn-linkedIn:focus {
        background: #0177b5;
        color: #fff;
        border: 1px solid #1b85bd;
    }

    .pi-btn-linkedIn i {
        float: left;
        margin-top: -5px;
        margin-left: -5px;
    }

/*dark*/
.pi-btn-dark {
    background: #2d323a;
    border: 1px solid #24282e;
    color: #f4f6f6;
    box-shadow: inset 0 1px 0px rgba(255,255,255, 0.2);
}

    .pi-btn-dark:hover {
        background: #384147;
        color: #fff;
        border: 1px solid #32383f;
    }

/*grey*/
.pi-btn-grey {
    background: #a5b3b4;
    border: 1px solid #9eadae;
    color: #f4f6f6;
    box-shadow: inset 0 1px 0px rgba(255,255,255, 0.2);
}

    .pi-btn-grey:hover {
        background: #889899;
        color: #fff;
        border: 1px solid #809192;
    }

/*light-grey*/
.pi-btn-light-grey {
    background: #f4f6f6;
    border: 1px solid #e3e9e9;
    color: #2d323a;
   
}

    .pi-btn-light-grey:hover {
        background: #f4f6f6;
    border: 1px solid #e3e9e9;
    color: #2d323a;
    }
/*border buttons*/
.btn-border {
    background: transparent;
}
/*button icon*/
a.btn .fa {
    width: 25px;
}

button.btn .fa {
    width: 25px;
}

.btn-lg {
    font-size: 16px;
}

.btn-xlg {
    padding: 14px 20px;
    font-size: 16px;
    line-height: 1.33;
}

/*icon size*/
.icon-x2 {
    font-size: 24px;
}

.icon-x3 {
    font-size: 32px;
}

.icon-x4 {
    font-size: 40px;
}

.icon-x5 {
    font-size: 48px;
}

.icon-x6 {
    font-size: 56px;
}

/*SOCIAL ICONS STYLE*/
.social-icon {
    width: 25px;
    height: 25px;
    line-height: 25px;
    font-size: 14px;
    text-align: center;
    color: #fff;
}

.social-icon-x2 {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
    text-align: center;
    color: #fff;
    margin-bottom: 3px;
}

.social-icon-x3 {
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 14px;
    text-align: center;
    color: #fff;
    margin-bottom: 3px;
}

.social-icon-x4 {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    text-align: center;
    color: #fff;
    margin-bottom: 3px;
}

.social-icon-x5 {
    width: 45px;
    height: 45px;
    line-height: 45px;
    font-size: 14px;
    text-align: center;
    color: #fff;
    margin-bottom: 3px;
}

.facebook-icon {
    background: #3b5998;
}

.facebook-icon-v2 {
    background: #f4f6f6;
    color: #21252b;
}

    .facebook-icon-v2:hover {
        background: #3b5998;
        color: #fff;
    }

.facebook-icon-v3 {
    background: transparent;
    color: #21252b;
}

    .facebook-icon-v3:hover {
        background: #3b5998;
        color: #fff;
    }

.twitter-icon {
    background: #55acee;
}

.twitter-icon-v2 {
    background: #f4f6f6;
    color: #21252b;
}

    .twitter-icon-v2:hover {
        background: #55acee;
        color: #fff;
    }

.twitter-icon-v3 {
    background: transparent;
    color: #21252b;
}

    .twitter-icon-v3:hover {
        background: #55acee;
        color: #fff;
    }

.dribbble-icon {
    background: #ea4c89;
}

.dribbble-icon-v2 {
    background: #f4f6f6;
    color: #21252b;
}

    .dribbble-icon-v2:hover {
        background: #ea4c89;
        color: #fff;
    }

.dribbble-icon-v3 {
    background: transparent;
    color: #21252b;
}

    .dribbble-icon-v3:hover {
        background: #ea4c89;
        color: #fff;
    }

.linkedin-icon {
    background: #1b85bd;
}

.linkedin-icon-v2 {
    background: #f4f6f6;
    color: #21252b;
}

    .linkedin-icon-v2:hover {
        background: #1b85bd;
        color: #fff;
    }

.linkedin-icon-v3 {
    background: transparent;
    color: #21252b;
}

    .linkedin-icon-v3:hover {
        background: #1b85bd;
        color: #fff;
    }

.youtube-icon {
    background: #cc181e;
}

.youtube-icon-v2 {
    background: #f4f6f6;
    color: #21252b;
}

    .youtube-icon-v2:hover {
        background: #cc181e;
        color: #fff;
    }

.youtube-icon-v3 {
    background: transparent;
    color: #21252b;
}

    .youtube-icon-v3:hover {
        background: #cc181e;
        color: #fff;
    }

.behance-icon {
    background: #2d9ad2;
}

.behance-icon-v2 {
    background: #f4f6f6;
    color: #21252b;
}

    .behance-icon-v2:hover {
        background: #2d9ad2;
        color: #fff;
    }

.behance-icon-v3 {
    background: transparent;
    color: #21252b;
}

    .behance-icon-v3:hover {
        background: #2d9ad2;
        color: #fff;
    }

.google-plus-icon {
    background: #d44032;
}

.google-plus-icon-v2 {
    background: #f4f6f6;
    color: #21252b;
}

    .google-plus-icon-v2:hover {
        background: #d44032;
        color: #fff;
    }

.google-plus-icon-v3 {
    background: transparent;
    color: #21252b;
}

    .google-plus-icon-v3:hover {
        background: #d44032;
        color: #fff;
    }

.flickr-icon {
    background: #ff0084;
}

.flickr-icon-v2 {
    background: #f4f6f6;
    color: #21252b;
}

    .flickr-icon-v2:hover {
        background: #ff0084;
        color: #fff;
    }

.flickr-icon-v3 {
    background: transparent;
    color: #21252b;
}

    .flickr-icon-v3:hover {
        background: #ff0084;
        color: #fff;
    }

.skype-icon {
    background: #01aef2;
}

.skype-icon-v2 {
    background: #f4f6f6;
    color: #21252b;
}

    .skype-icon-v2:hover {
        background: #01aef2;
        color: #fff;
    }

.skype-icon-v3 {
    background: transparent;
    color: #21252b;
}

    .skype-icon-v3:hover {
        background: #01aef2;
        color: #fff;
    }

.tumblr-icon {
    background: #34465e;
}

.tumblr-icon-v2 {
    background: #f4f6f6;
    color: #21252b;
}

    .tumblr-icon-v2:hover {
        background: #34465e;
        color: #fff;
    }

.tumblr-icon-v3 {
    background: transparent;
    color: #21252b;
}

    .tumblr-icon-v3:hover {
        background: #34465e;
        color: #fff;
    }

.vimeo-icon {
    background: #0491bc;
}

.vimeo-icon-v2 {
    background: #f4f6f6;
    color: #21252b;
}

    .vimeo-icon-v2:hover {
        background: #0491bc;
        color: #fff;
    }

.vimeo-icon-v3 {
    background: transparent;
    color: #21252b;
}

    .vimeo-icon-v3:hover {
        background: #0491bc;
        color: #fff;
    }

.instagram-icon {
    background: #f4b97a;
}

.instagram-icon-v2 {
    background: #f4f6f6;
    color: #21252b;
}

    .instagram-icon-v2:hover {
        background: #f4b97a;
        color: #fff;
    }

.instagram-icon-v3 {
    background: transparent;
    color: #21252b;
}

    .instagram-icon-v3:hover {
        background: #f4b97a;
        color: #fff;
    }

.pinterest-icon {
    background: #cb2027;
}

.pinterest-icon-v2 {
    background: #f4f6f6;
    color: #21252b;
}

    .pinterest-icon-v2:hover {
        background: #cb2027;
        color: #fff;
    }

.pinterest-icon-v3 {
    background: transparent;
    color: #21252b;
}

    .pinterest-icon-v3:hover {
        background: #cb2027;
        color: #fff;
    }

.soundcloud-icon {
    background: #fe531b;
}

.soundcloud-icon-v2 {
    background: #f4f6f6;
    color: #21252b;
}

    .soundcloud-icon-v2:hover {
        background: #fe531b;
        color: #fff;
    }

.soundcloud-icon-v3 {
    background: transparent;
    color: #21252b;
}

    .soundcloud-icon-v3:hover {
        background: #fe531b;
        color: #fff;
    }

.yahoo-icon {
    background: #572c73;
}

.yahoo-icon-v2 {
    background: #f4f6f6;
    color: #21252b;
}

    .yahoo-icon-v2:hover {
        background: #572c73;
        color: #fff;
    }

.yahoo-icon-v3 {
    background: transparent;
    color: #21252b;
}

    .yahoo-icon-v3:hover {
        background: #572c73;
        color: #fff;
    }

.dropbox-icon {
    background: #0089d1;
}

.dropbox-icon-v2 {
    background: #f4f6f6;
    color: #21252b;
}

    .dropbox-icon-v2:hover {
        background: #0089d1;
        color: #fff;
    }

.dropbox-icon-v3 {
    background: transparent;
    color: #21252b;
}

    .dropbox-icon-v3:hover {
        background: #0089d1;
        color: #fff;
    }

.joomla-icon {
    background: #0266bb;
}

.joomla-icon-v2 {
    background: #f4f6f6;
    color: #21252b;
}

    .joomla-icon-v2:hover {
        background: #0266bb;
        color: #fff;
    }

.joomla-icon-v3 {
    background: transparent;
    color: #21252b;
}

    .joomla-icon-v3:hover {
        background: #0266bb;
        color: #fff;
    }

.wordpress-icon {
    background: #464646;
}

.wordpress-icon-v2 {
    background: #f4f6f6;
    color: #21252b;
}

    .wordpress-icon-v2:hover {
        background: #464646;
        color: #fff;
    }

.wordpress-icon-v3 {
    background: transparent;
    color: #21252b;
}

    .wordpress-icon-v3:hover {
        background: #464646;
        color: #fff;
    }
/*rounded*/

.rounded-x2 {
    border-radius: 8px;
}

.rounded-x3 {
    border-radius: 12px;
}

.rounded-x4 {
    border-radius: 16px;
}
/*circle*/
.circle {
    border-radius: 100%;
}

/*social icon jump*/
.social-icon-jump {
    width: 25px;
    height: 25px;
    margin: 0 5px -3px 0;
    display: inline-block;
    overflow: hidden;
    font-size: 14px;
}

    .social-icon-jump:hover {
        text-decoration: none;
    }

    .social-icon-jump .fa {
        display: block;
        width: 100%;
        height: 100%;
        text-align: center;
        line-height: 25px;
        background: #f4f6f6;
        color: #21252b;
    }

    .social-icon-jump div {
        -webkit-transition: all 0.1s ease-in-out;
        -moz-transition: all 0.1s ease-in-out;
        -o-transition: all 0.1s ease-in-out;
        transition: all 0.1s ease-in-out;
    }

    .social-icon-jump .fa:first-child {
        margin: -25px 0 0 0;
    }

    .social-icon-jump div:hover {
        margin: 25px 0 0 0;
    }

/*social icon jump-x2*/
.social-icon-jump-x2 {
    width: 30px;
    height: 30px;
    margin: 0 5px -3px 0;
    display: inline-block;
    overflow: hidden;
    font-size: 14px;
}

    .social-icon-jump-x2:hover {
        text-decoration: none;
    }

    .social-icon-jump-x2 .fa {
        display: block;
        width: 100%;
        height: 100%;
        text-align: center;
        line-height: 30px;
        background: #f4f6f6;
        color: #21252b;
    }

    .social-icon-jump-x2 div {
        -webkit-transition: all 0.1s ease-in-out;
        -moz-transition: all 0.1s ease-in-out;
        -o-transition: all 0.1s ease-in-out;
        transition: all 0.1s ease-in-out;
    }

    .social-icon-jump-x2 .fa:first-child {
        margin: -30px 0 0 0;
    }

    .social-icon-jump-x2 div:hover {
        margin: 30px 0 0 0;
    }

/*social icon jump-x3*/
.social-icon-jump-x3 {
    width: 35px;
    height: 35px;
    margin: 0 5px -3px 0;
    display: inline-block;
    overflow: hidden;
    font-size: 14px;
}

    .social-icon-jump-x3:hover {
        text-decoration: none;
    }

    .social-icon-jump-x3 .fa {
        display: block;
        width: 100%;
        height: 100%;
        text-align: center;
        line-height: 35px;
        background: #f4f6f6;
        color: #21252b;
    }

    .social-icon-jump-x3 div {
        -webkit-transition: all 0.1s ease-in-out;
        -moz-transition: all 0.1s ease-in-out;
        -o-transition: all 0.1s ease-in-out;
        transition: all 0.1s ease-in-out;
    }

    .social-icon-jump-x3 .fa:first-child {
        margin: -35px 0 0 0;
    }

    .social-icon-jump-x3 div:hover {
        margin: 35px 0 0 0;
    }

/*social icon jump-x4*/
.social-icon-jump-x4 {
    width: 40px;
    height: 40px;
    margin: 0 5px -3px 0;
    display: inline-block;
    overflow: hidden;
    font-size: 14px;
    border: 1px solid #7c7e7f;
}

    .social-icon-jump-x4:hover {
        text-decoration: none;
    }

    .social-icon-jump-x4 .fa {
        display: block;
        width: 100%;
        height: 100%;
        text-align: center;
        line-height: 40px;
        background: transparent;
        color: #7c7e7f;
    }

    .social-icon-jump-x4 div {
        -webkit-transition: all 0.1s ease-in-out;
        -moz-transition: all 0.1s ease-in-out;
        -o-transition: all 0.1s ease-in-out;
        transition: all 0.1s ease-in-out;
    }

    .social-icon-jump-x4 .fa:first-child {
        margin: -40px 0 0 0;
    }

    .social-icon-jump-x4 div:hover {
        margin: 40px 0 0 0;
    }

/*social icon jump-x5*/
.social-icon-jump-x5 {
    width: 45px;
    height: 45px;
    margin: 0 5px -3px 0;
    display: inline-block;
    overflow: hidden;
    font-size: 14px;
}

    .social-icon-jump-x5:hover {
        text-decoration: none;
    }

    .social-icon-jump-x5 .fa {
        display: block;
        width: 100%;
        height: 100%;
        text-align: center;
        line-height: 45px;
        background: #f4f6f6;
        color: #21252b;
    }

    .social-icon-jump-x5 div {
        -webkit-transition: all 0.1s ease-in-out;
        -moz-transition: all 0.1s ease-in-out;
        -o-transition: all 0.1s ease-in-out;
        transition: all 0.1s ease-in-out;
    }

    .social-icon-jump-x5 .fa:first-child {
        margin: -45px 0 0 0;
    }

    .social-icon-jump-x5 div:hover {
        margin: 45px 0 0 0;
    }

/*jump icon color*/
.fa.facebook-icon-jump {
    background: #3b5998;
    color: #fff;
}

.fa.twitter-icon-jump {
    background: #55acee;
    color: #fff;
}

.fa.dribbble-icon-jump {
    background: #ea4c89;
    color: #fff;
}

.fa.linkedin-icon-jump {
    background: #1b85bd;
    color: #fff;
}

.fa.youtube-icon-jump {
    background: #cc181e;
    color: #fff;
}

.fa.behance-icon-jump {
    background: #2d9ad2;
    color: #fff;
}

.fa.google-plus-icon-jump {
    background: #d44032;
    color: #fff;
}

.fa.flickr-icon-jump {
    background: #ff0084;
    color: #fff;
}

.fa.skype-icon-jump {
    background: #01aef2;
    color: #fff;
}

.fa.tumblr-icon-jump {
    background: #34465e;
    color: #fff;
}

.fa.vimeo-square-icon-jump {
    background: #0491bc;
    color: #fff;
}

.fa.instagram-icon-jump {
    background: #f4b97a;
    color: #fff;
}

.fa.pinterest-icon-jump {
    background: #cb2027;
    color: #fff;
}

.fa.soundcloud-icon-jump {
    background: #fe531b;
    color: #fff;
}

.fa.yahoo-icon-jump {
    background: #572c73;
    color: #fff;
}

.fa.dropbox-icon-jump {
    background: #0089d1;
    color: #fff;
}

.fa.joomla-icon-jump {
    background: #0266bb;
    color: #fff;
}

.fa.wordpress-icon-jump {
    background: #464646;
    color: #fff;
}

/*social icon dark*/
.fa.social-icon-jump-dark {
    background: #2b3139;
    color: #fff;
}

/*SECTION COLOR*/
.section-grey {
    background: #fafafa;
}

.section-dark {
    background: #21252b;
    color: #fff;
}

    .section-dark h1 {
        color: #fff;
    }

    .section-dark h2 {
        color: #fff;
    }

    .section-dark h3 {
        color: #fff;
    }

    .section-dark h4 {
        color: #fff;
    }

    .section-dark h5 {
        color: #fff;
    }

    .section-dark h6 {
        color: #fff;
    }

    .section-dark p {
        color: #858d91;
    }

/*IMAGE SIZES*/
.image-100 {
    width: 100px;
    padding: 0 15px 0 15px;
}

.image-150 {
    width: 150px;
    padding: 0 15px 0 15px;
}

.image-250 {
    width: 250px;
}

.image-250 {
    width: 250px;
}

.image-300 {
    width: 300px;
}

.image-350 {
    width: 350px;
}

.image-400 {
    width: 400px;
}

.image-450 {
    width: 450px;
}

.image-500 {
    width: 500px;
}

/*image captions*/
.image-caption {
    background: #f8fafa;
    color: #737a81;
    text-align: left;
    font-size: 15px;
    padding: 5px 10px;
}

/*box-shadow*/
.box-shadow {
    box-shadow: 0px 1px 2px #dcdede;
}

/*BOXES STYLES*/
.single_box {
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
    text-align: center;
    margin: 30px 0 43px;
    padding: 0px 0 20px;
}

    .single_box:hover {
    }

    .single_box img {
        border-radius: 100%;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }

    .single_box [class^="fa"] {
        font-size: 40px;
    }

    .single_box.style1 {
        padding: 0 0 30px;
        margin: 0;
    }

        .single_box.style1 [class^="fa"] {
            font-size: 48px;
            line-height: 60px;
            display: inline-block;
            width: 60px;
            height: 60px;
            margin-top: -16px;
            margin-bottom: 7px;
            -webkit-transition: all 0.2s ease;
            -moz-transition: all 0.2s ease;
            -o-transition: all 0.2s ease;
            -ms-transition: all 0.2s ease;
            transition: all 0.2s ease;
        }

        .single_box.style1:hover [class^="fa"] {
            color: #21252b;
        }

        .single_box.style1 p.introtext {
            margin-bottom: 0;
        }

    .single_box h3 {
        font-size: 24px;
        margin: 10px 0 14px;
        text-transform: none;
        font-weight: 300;
    }

        .single_box h3 a {
            color: inherit;
        }

            .single_box h3 a:hover {
                color: #e16657;
            }

    .single_box p.introtext {
        margin: 10px 0 30px;
    }

    .single_box.style2 {
        background-color: transparent;
        margin: 0 0 20px;
        padding: 30px 0 23px;
    }

        .single_box.style2 [class^="fa"]:before {
            font-size: 100px;
            background: transparent;
            -webkit-transition: all 0.2s ease;
            -moz-transition: all 0.2s ease;
            -o-transition: all 0.2s ease;
            -ms-transition: all 0.2s ease;
            transition: all 0.2s ease;
            display: block;
        }

        .single_box.style2:hover [class^="fa"]:before {
            color: #01c1c1;
        }

        .single_box.style2 h2 {
            font-size: 50px;
            margin: 12px 0 0px;
        }

        .single_box.style2 h3 {
            display: inline-block;
            padding: 0;
            margin: 12px 0 8px 0;
        }

    .single_box.style3 p.introtext {
        color: #fff;
    }

    .single_box.style3 h3 {
        color: #fff;
    }

    .single_box.style3 {
        overflow: hidden;
        padding: 20px 20px 0;
        background-color: rgba(0,0,0,0.1);
        -webkit-transition: all .3s ease;
        -moz-transition: all .3s ease;
        -ms-transition: all .3s ease;
        transition: all .3s ease;
    }

        .single_box.style3 [class^="fa"] {
            color: #fff;
            font-size: 60px;
            line-height: 100px;
            width: 100%;
            height: 100px;
            text-align: center;
            display: block;
        }

    /*style 6*/
    .single_box.style6 {
        padding: 0 0 30px;
        margin: 0;
    }

        .single_box.style6 [class^="fa"] {
            font-size: 58px;
            color: #fff;
            display: inline-block;
            width: 120px;
            height: 120px;
            line-height: 120px;
            border-radius: 100%;
        }

    .single_box .box {
        display: inline-block;
        overflow: hidden;
        border-radius: 100%;
    }

        .single_box .box.default {
            background: #01c1c1;
        }

        .single_box .box.pink {
            background: #d13b7b;
        }

        .single_box .box.red {
            background: #ef4a44;
        }

        .single_box .box.purple {
            background: #8d55a0;
        }

        .single_box .box.orange {
            background: #ee7933;
        }

        .single_box .box.blue {
            background: #279fba;
        }

        .single_box .box.grey {
            background: #95a5a6;
        }

        .single_box .box.dark {
            background: #21252b;
        }

    .single_box.style6 p.introtext {
        margin-bottom: 0;
    }

    .single_box a {
        font-weight: 500;
        margin-top: 10px;
        display: inline-block;
    }

        .single_box a:hover {
            color: #21252b;
            text-decoration: none;
        }

    /*style 7*/
    .single_box.style7 {
        padding: 0 0 30px;
        margin: 0;
    }

        .single_box.style7 [class^="fa"] {
            font-size: 42px;
            color: #fff;
            display: inline-block;
            width: 90px;
            height: 90px;
            line-height: 90px;
            border-radius: 100%;
        }

        .single_box.style7 p.introtext {
            margin-bottom: 0;
        }

    /*style 8*/
    .single_box.style8 {
        padding: 0 0 30px;
        margin: 0;
    }

        .single_box.style8 [class^="fa"] {
            font-size: 28px;
            color: #fff;
            display: inline-block;
            width: 60px;
            height: 60px;
            line-height: 60px;
            border-radius: 100%;
        }

        .single_box.style8 p.introtext {
            margin-bottom: 0;
        }

/*box icon color*/
.default {
    color: #01c1c1;
}

.pink {
    color: #d13b7b;
}

.red {
    color: #ef4a44;
}

.purple {
    color: #8d55a0;
}

.orange {
    color: #ee7933;
}

.blue {
    color: #279fba;
}

.grey {
    color: #889091;
}

.dark-color {
    color: #21252b;
}

/*single box left*/
.single_box_left img {
    position: absolute; /*margin: -13px 0px 0;*/
    width: 60px;
}

.single_box_right {
    margin: 10px 10px 23px 60px;
    padding: 0px 20px 0;
}

    .single_box_right ul li [class^="fa"] {
        position: relative;
        font-size: 15px;
        display: inline-block;
        color: #808080;
    }

    .single_box_right h3 {
        margin: 0 0 10px;
        font-size: 22px;
    }

        .single_box_right h3 a {
            color: #e16657;
        }

            .single_box_right h3 a:hover {
                color: #e16657;
            }

.left_icons {
    position: relative;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

    .left_icons [class^="fa"] {
        display: block;
        font-size: 40px;
        margin: -13px 0px 0;
        position: absolute;
        top: 0;
        left: 0;
        width: 60px;
        height: 60px;
        line-height: 70px;
        text-align: center;
        -webkit-transition: all 0.2s linear;
        -moz-transition: all 0.2s linear;
        -o-transition: all 0.2s linear;
        -ms-transition: all 0.2s linear;
        transition: all 0.2s linear;
    }

    .left_icons:hover {
    }

        .left_icons:hover [class^="fa"] {
        }

.style2 .single_box_right {
    margin: 10px 10px 10px 110px;
    padding: 0px;
}

.left_icons.style2 [class^="fa"] {
    text-align: center;
    background-color: #01c1c1;
    color: #e16657;
    font-size: 50px;
    width: 90px;
    line-height: 84px;
    height: 90px;
    padding: 0;
    top: 0;
    margin-top: 0;
    border: 4px solid transparent;
    color: #fff;
}

.left_icons.style2:hover [class^="fa"] {
    background-color: #21252b;
}
/*box-background-color*/
.single_box.box-light-blue {
    background: #01c1c1;
}

.single_box.box-pink {
    background: #d13b7b;
}

.single_box.box-red {
    background: #ef4a44;
}

.single_box.box-purple {
    background: #8d55a0;
}

.single_box.box-orange {
    background: #ee7933;
}

.single_box.box-blue {
    background: #279fba;
}

.single_box.box-grey {
    background: #95a5a6;
}

.single_box.box-dark {
    background: #21252b;
}

/* icons box for parallax section */
.section-parallax .left_icons:hover [class^="fa"] {
    color: #fff;
}

/*PARALLAX SECTION*/
section {
    position: relative;
}

.parallax-content {
    display: table-cell;
    vertical-align: middle;
    color: #fff;
    height: 100%;
    position: relative;
}

    .parallax-content h1 {
        color: #fff;
    }

    .parallax-content h2 {
        color: #fff;
    }

    .parallax-content h3 {
        color: #fff;
    }

    .parallax-content h4 {
        color: #fff;
    }

    .parallax-content h5 {
        color: #fff;
    }

    .parallax-content h6 {
        color: #fff;
    }

    .parallax-content p {
        color: #fff;
    }

.section-parallax {
    background-repeat: repeat;
    background-attachment: fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    height: 400px;
    display: table;
    width: 100%;
}

.parallex-content-about img {
    width: 150px;
}

.parallex-content-about p.lead {
    line-height: normal;
}
/*TYPOGRAPHY*/
.lead {
    font-weight: 400;
    font-size: 25px;
    line-height: 40px;
    margin-bottom: 35px;
}

em {
    font-size: 1.4em;
    line-height: 1.2em;
    margin-bottom: 20px;
    display: inline-block;
}
/*dropcap*/
.dropcap {
    font-size: 48px;
    line-height: 100%;
    font-weight: 500;
    float: left;
    margin: 0 15px 0px 0;
}

.dropcap-bg {
    font-size: 38px;
    font-weight: 500;
    float: left;
    margin: 8px 10px 7px 0;
    background: #01c1c1;
    color: #fff;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
}

/*HEADING OPTIONS*/
.line {
    width: 110px;
    height: 3px;
    background: #01c1c1;
    margin: 0px auto 25px auto;
    text-align: center;
}

.line-left {
    width: 110px;
    height: 3px;
    margin: 10px 0 25px 0;
    background: #01c1c1;
}

.line-yellow {
    background: #eed100;
}

.line-green {
    background: #85be4c;
}

.line-cyan {
    background: #00afd1;
}

.line-red {
    background: #d72738;
}

.line-white {
    background: #fff;
}
/*heading*/
.heading {
    font-size: 25px;
    font-weight: 400;
    margin: 30px 0 10px;
}
/*heading v1*/
/*icons background*/
.icons {
    width: 25px;
    height: 25px;
    line-height: 25px;
    font-size: 13px;
    text-align: center;
}

.icons-default {
    background: #01c1c1;
    color: #fff;
}

.icons-pink {
    background: #dc2d78;
    color: #fff;
}

.icons-red {
    background: #ef4a44;
    color: #fff;
}

.icons-purple {
    background: #8d55a0;
    color: #fff;
}

.icons-orange {
    background: #ee7933;
    color: #fff;
}

.icons-blue {
    background: #279fba;
    color: #fff;
}

.icons-dark {
    background: #2d323a;
    color: #fff;
}

.icons-grey {
    background: #a5b3b4;
    color: #fff;
}

.icons-light-grey {
    background: #f4f6f6;
    color: #2d323a;
}

/*text style*/
a.dark-link {
    color: #2d323a;
}

    a.dark-link:hover {
        color: #01c1c1;
    }

a.yellow-link {
    color: #eed100;
    font-size: 20px;
}

a.green-link {
    color: #85be4c;
    font-size: 20px;
}

a.cyan-link {
    color: #00afd1;
    font-size: 20px;
}

a.gen-link {
    color: #00afd1;
    line-height: 26px;
}

    a.yellow-link:hover, a.green-link:hover, a.cyan-link:hover, a.gen-link:hover,
    .body-content a:hover, .body-content a:focus {
        padding-bottom: 3px;
        border-bottom: 5px solid;
    }

/*letter spacing*/
.letter-spacing {
    letter-spacing: 1px;
}

.letter-spacing-3 {
    letter-spacing: 3px;
}

/*divider*/
hr.divider {
    border-top: 1px solid #a5b3b4;
}

hr.divider-big {
    margin: 40px 0;
}

hr.divider-bigger {
    margin: 60px 0;
}

hr.divider-dotted {
    border-top: 1px dotted #a5b3b4;
}

hr.divider-dashed {
    border-top: 1px dashed #a5b3b4;
}

hr.divider-double-dotted {
    height: 5px;
    border-top: 1px dotted #a5b3b4;
    border-bottom: 1px dotted #a5b3b4;
}

hr.divider-double-dashed {
    height: 5px;
    border-top: 1px dashed #a5b3b4;
    border-bottom: 1px dashed #a5b3b4;
}

hr.divider-header {
    border-style: none;
    border-color: inherit;
    border-width: 0px;
    height: 12px;
    background: url('img/header-bg.PNG');
}

hr {
    border: 0;
}

/*CLIENTS*/
/*clients-style1*/
.clients-style1 {
    overflow: hidden;
    margin-bottom: 20px;
}

    .clients-style1 .client {
        cursor: pointer;
        display: inline-block;
        padding: 0 10px;
        float: left;
        width: 18%;
        background: #f6f9f9;
        border: 1px solid #e5eaea;
        margin: 1%;
        opacity: 0.8;
        -webkit-transition: all 0.2s ease-out;
        -moz-transition: all 0.2s ease-out;
        -ms-transition: all 0.2s ease-out;
        -o-transition: all 0.2s ease-out;
        transition: all 0.2s ease-out;
    }

        .clients-style1 .client:hover {
            opacity: 1;
        }

        .clients-style1 .client img {
            width: 100%;
        }
/*clients-style2*/
.clients-style2 {
    overflow: hidden;
    margin-bottom: 20px;
}

    .clients-style2 .client {
        cursor: pointer;
        display: inline-block;
        padding: 0 10px;
        float: left;
        width: 18%;
        background: #fff;
        border: 1px solid #e5eaea;
        margin: 1%;
        opacity: 0.8;
        -webkit-transition: all 0.2s ease-out;
        -moz-transition: all 0.2s ease-out;
        -ms-transition: all 0.2s ease-out;
        -o-transition: all 0.2s ease-out;
        transition: all 0.2s ease-out;
    }

        .clients-style2 .client:hover {
            opacity: 1;
        }

        .clients-style2 .client img {
            width: 100%;
        }
/*clients-style3*/
.clients-style3 {
    overflow: hidden;
    margin-bottom: 20px;
}

    .clients-style3 .client {
        cursor: pointer;
        display: inline-block;
        padding: 0 10px;
        float: left;
        width: 18%;
        margin: 1%;
        opacity: 0.8;
        -webkit-transition: all 0.2s ease-out;
        -moz-transition: all 0.2s ease-out;
        -ms-transition: all 0.2s ease-out;
        -o-transition: all 0.2s ease-out;
        transition: all 0.2s ease-out;
    }

        .clients-style3 .client:hover {
            opacity: 1;
        }

        .clients-style3 .client img {
            width: 100%;
        }

@media (min-width: 768px) and (max-width: 992px) {
    .clients-style1 .client {
        width: 23%;
    }

    .clients-style2 .client {
        width: 23%;
    }

    .clients-style3 .client {
        width: 23%;
    }
}

@media (min-width: 480px) and (max-width: 768px) {
    .clients-style1 .client {
        width: 31.3%;
    }

    .clients-style2 .client {
        width: 31.3%;
    }

    .clients-style3 .client {
        width: 31.3%;
    }

    .breadcrumbs {
        padding-top: 75px !important;
    }
}

@media (max-width: 480px) {
    .clients-style1 .client {
        width: 48%;
    }

    .clients-style2 .client {
        width: 48%;
    }

    .clients-style3 .client {
        width: 48%;
    }

    .owl-carousel.slider .item {
        background-position: 20% 0 !important;
    }
}

@media (max-width: 500px) {
    .owl-theme .owl-controls .owl-page span {
        width: 10px !important;
        height: 10px !important;
        margin: 5px 3px !important;
    }

    .item .item-content h1 {
        margin-right: 0px !important;
    }
}

/*top-description-text*/
.top-description-text {
    text-align: center;
    font-size: 30px;
    line-height: 40px;
    margin: 30px 0 70px 0;
}

/*BOXES STYLE*/
.boxes {
    width: 100%;
    background: #fff;
    border: 1px solid #d2d4d5;
    padding: 30px 30px 15px 30px;
}

    .boxes p {
        margin-bottom: 20px;
    }

.boxes-grey {
    background: #f8fafa;
}

.boxes-border-top {
    border-top: 3px solid #01c1c1;
}

.boxes-border-left {
    border-left: 3px solid #01c1c1;
}

.boxes.border-dotted {
    border: 1px dotted #dde1e1;
}

.boxes.border-dotted-2 {
    border: 2px dotted #dde1e1;
}

.boxes.border-dotted-3 {
    border: 3px dotted #dde1e1;
}

.boxes.border-dashed {
    border: 1px dashed #dde1e1;
}

.boxes.border-dashed-2 {
    border: 2px dashed #dde1e1;
}

.boxes.border-dashed-3 {
    border: 3px dashed #dde1e1;
}
/* Effect 1*/
.effect1 {
    -webkit-box-shadow: 0 6px 6px -6px #dde1e1;
    -moz-box-shadow: 0 6px 6px -6px #dde1e1;
    box-shadow: 0 6px 6px -6px #dde1e1;
}
/* Effect 2*/
.effect2 {
    position: relative;
}

    .effect2:before, .effect2:after {
        z-index: -1;
        position: absolute;
        content: "";
        bottom: 15px;
        left: 10px;
        width: 50%;
        top: 80%;
        max-width: 300px;
        background: #777;
        -webkit-box-shadow: 0 15px 10px #dde1e1;
        -moz-box-shadow: 0 15px 10px #dde1e1;
        box-shadow: 0 15px 10px #dde1e1;
        -webkit-transform: rotate(-3deg);
        -moz-transform: rotate(-3deg);
        -o-transform: rotate(-3deg);
        -ms-transform: rotate(-3deg);
        transform: rotate(-3deg);
    }

    .effect2:after {
        -webkit-transform: rotate(3deg);
        -moz-transform: rotate(3deg);
        -o-transform: rotate(3deg);
        -ms-transform: rotate(3deg);
        transform: rotate(3deg);
        right: 10px;
        left: auto;
    }
/*effect 3*/
.effect3 {
    position: relative;
}

    .effect3:before {
        z-index: -1;
        position: absolute;
        content: "";
        bottom: 15px;
        left: 10px;
        width: 50%;
        top: 80%;
        max-width: 300px;
        background: #777;
        -webkit-box-shadow: 0 15px 10px #dde1e1;
        -moz-box-shadow: 0 15px 10px #dde1e1;
        box-shadow: 0 15px 10px #dde1e1;
        -webkit-transform: rotate(-3deg);
        -moz-transform: rotate(-3deg);
        -o-transform: rotate(-3deg);
        -ms-transform: rotate(-3deg);
        transform: rotate(-3deg);
    }
/*effect 4*/
.effect4 {
    position: relative;
}

    .effect4:after {
        z-index: -1;
        position: absolute;
        content: "";
        bottom: 15px;
        right: 10px;
        left: auto;
        width: 50%;
        top: 80%;
        max-width: 300px;
        background: #777;
        -webkit-box-shadow: 0 15px 10px #dde1e1;
        -moz-box-shadow: 0 15px 10px #dde1e1;
        box-shadow: 0 15px 10px #dde1e1;
        -webkit-transform: rotate(3deg);
        -moz-transform: rotate(3deg);
        -o-transform: rotate(3deg);
        -ms-transform: rotate(3deg);
        transform: rotate(3deg);
    }

/*TEAM STYLES*/
/*tema one column*/
.team-one-column {
    padding: 30px 0;
    border-bottom: 1px solid #f1f1f1;
}

    .team-one-column:last-child {
        border-bottom: 0px;
    }

    .team-one-column .team-content {
    }

        .team-one-column .team-content i {
            margin-bottom: 7px;
            display: inline-block;
            font-size: 14px;
        }

        .team-one-column .team-content ul.social {
            margin: 10px 0;
        }

        .team-one-column .team-content .team-image {
            width: 200px;
            float: left;
            margin-right: 20px;
        }

/*team-style1*/
.team.style1 {
    padding: 0 20px;
}

    .team.style1 img {
        width: 100%;
    }

    .team.style1 .half {
        z-index: 9999;
    }

    .team.style1 h6 {
        margin: 20px 0 0 0;
    }

    .team.style1 p {
        margin: 10px 0;
    }

    .team.style1 ul.social li {
        margin-right: 5px;
    }
/*team-style2*/
.team.style2 {
    text-align: center;
}

    .team.style2 .team-header img {
        width: 100%;
    }

    .team.style2 .team-header ul.social {
        position: absolute;
        top: 50%;
        left: 0;
        display: none;
        width: 100%;
        z-index: 999;
    }

        .team.style2 .team-header ul.social li {
            margin-right: 5px;
        }

    .team.style2 .team-date {
        border: 1px solid #f4f6f6;
        padding: 3px 10px 10px 10px;
    }

        .team.style2 .team-date h6 {
            margin: 20px 0 0 0;
        }

        .team.style2 .team-date p {
            margin: 10px 0;
        }

.team-header {
    position: relative;
}

    .team-header .team-layer {
        background: #21252b;
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        opacity: 0.6;
        display: none;
        z-index: 99;
    }

.team ul.half {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    display: none;
}

    .team ul.half li {
        background: #fff;
        width: 60px;
        height: 60px;
        line-height: 60px;
        border-radius: 100%;
        text-align: center;
        font-size: 32px;
    }

/*ERRORS PAGE STYLE*/
.errors {
    text-align: center;
    margin: 30px 0;
    padding: 30px 0;
}

.error404 {
    font-size: 200px;
    line-height: 200px;
}

.error500 {
    font-size: 200px;
    line-height: 200px;
}

@media (max-width: 480px) {
    .error404 {
        font-size: 120px;
        line-height: 120px;
    }

    .error500 {
        font-size: 120px;
        line-height: 120px;
    }
}

/*CAROUSEL*/
/*owl style*/
.owl-theme .owl-controls {
    margin-top: 10px;
    text-align: center;
}

    .owl-theme .owl-controls .owl-buttons div {
        color: #fff;
        display: inline-block;
        zoom: 1;
        margin: 5px;
        padding: 15px 13px;
        border-radius: 4px;
        font-size: 14px;
        background: #21252b;
        filter: Alpha(Opacity=70);
        opacity: 0.7;
    }

    .owl-theme .owl-controls.clickable .owl-buttons div:hover {
        filter: Alpha(Opacity=100); /*IE7 fix*/
        opacity: 1;
        text-decoration: none;
    }

    .owl-theme .owl-controls .owl-page {
        display: inline-block;
        zoom: 1;
        *display: inline; /*IE7 life-saver */
    }

        .owl-theme .owl-controls .owl-page span {
            display: block;
            width: 13px;
            height: 13px;
            margin: 5px 5px;
            -webkit-border-radius: 20px;
            -moz-border-radius: 20px;
            border-radius: 20px;
            filter: Alpha(Opacity=70);
            opacity: 0.7;
        }

        .owl-theme .owl-controls .owl-page.active span,
        .owl-theme .owl-controls.clickable .owl-page:hover span {
            filter: Alpha(Opacity=100); /*IE7 fix*/
            opacity: 1;
            background: #fff;
        }

        .owl-theme .owl-controls .owl-page span.owl-numbers {
            height: auto;
            width: auto;
            color: #FFF;
            padding: 2px 10px;
            font-size: 12px;
            -webkit-border-radius: 30px;
            -moz-border-radius: 30px;
            border-radius: 30px;
        }

.owl-item.loading {
    min-height: 150px;
    background: url('../img/bx_loader.gif') no-repeat center center;
}
/*#owl-item-3*/
.owl-controls .owl-pagination {
    padding-top: 30px;
}

.owl-item-6 .item {
    margin: 0 5px 0 5px;
}

    .owl-item-6 .item img {
        max-width: 100%;
    }

.owl-item-5 .item {
    margin: 0 5px 0 5px;
}

    .owl-item-5 .item img {
        max-width: 100%;
    }

.owl-item-4 .item {
    margin: 0 5px 0 5px;
}

    .owl-item-4 .item img {
        max-width: 100%;
    }

.owl-item-3 .item {
    margin: 0 5px 0 5px;
}

    .owl-item-3 .item img {
        max-width: 100%;
        border: 2px solid #d2d4d5;
    }

.owl-item-2 .item {
    margin: 0 5px 0 5px;
}

    .owl-item-2 .item img {
        max-width: 100%;
    }

.owl-item-1 .item img {
    width: 100%;
}

.owl-item-1-text .item img {
    width: 100%;
}

.owl-item-1-text .item .description {
    color: #fff;
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 10px 30px 10px 30px;
}

    .owl-item-1-text .item .description p {
        color: #fff;
        font-size: 16px;
        position: relative;
        line-height: 16px;
        padding-bottom: 0;
        margin-bottom: 0;
    }

.owl-item-1 .owl-controls .owl-pagination {
    position: absolute;
    bottom: 0px;
    text-align: center;
    width: 100%;
    padding: 10px 0;
}

.owl-item-1-text .owl-controls .owl-buttons div.owl-prev {
    position: absolute;
    top: 50%;
    left: 10px;
}

.owl-item-1-text .owl-controls .owl-buttons div.owl-next {
    position: absolute;
    top: 50%;
    right: 10px;
}

.owl-item-1 .owl-controls .owl-buttons div.owl-prev {
    position: absolute;
    top: 50%;
    left: 10px;
}

.owl-item-1 .owl-controls .owl-buttons div.owl-next {
    position: absolute;
    top: 50%;
    right: 10px;
}

/*owl slider*/
.owl-carousel.slider {
    height: 500px;
    /*position: relative;*/
    background-color: #4d5055;
    width: 100%;
}

    .owl-carousel.slider .item {
        width: 100%;
        background-size: cover;
        background-position: center;
    }

        .owl-carousel.slider .item .container {
            display: table;
        }

        /*.owl-carousel.slider .item .item-content {
            z-index: 9;
            position: relative;
            width: 100%;
            height: 500px;
            display: table-cell;
            vertical-align: middle;
            text-align: center;
        }*/
        .owl-carousel.slider .item .item-content {
            z-index: 9;
            position: relative;
            width: 56%;
            /*left: 30%;*/
            text-align: center;
            height: 500px;
            display: table-cell;
            vertical-align: middle;
        }

            .owl-carousel.slider .item .item-content h1 {
                color: #fff;
                margin: 0;
                margin-right: 35px;
                text-align: center;
            }

            .owl-carousel.slider .item .item-content p {
                color: #fff;
                font-size: 16px;
                text-align: center;
                line-height: normal;
                padding-right: 50px;
                text-align: center;
            }

            .owl-carousel.slider .item .item-content .caption {
                color: #fff;
                /*padding-bottom: 10px;*/
                text-align: center;
            }

    /*slider controls*/
    .owl-carousel.slider .owl-controls .owl-buttons div {
        color: #21252b;
        display: inline-block;
        zoom: 1;
        margin: 5px;
        padding: 15px 13px;
        border-radius: 4px;
        font-size: 14px;
        background: #fff;
        filter: Alpha(Opacity=30);
        opacity: 0.3;
    }

        .owl-carousel.slider .owl-controls .owl-buttons div.owl-prev {
            position: absolute;
            top: 50%;
            left: 10px;
        }

        .owl-carousel.slider .owl-controls .owl-buttons div.owl-next {
            position: absolute;
            top: 50%;
            right: 10px;
        }

    /*slider paginations*/
    .owl-carousel.slider .owl-controls .owl-pagination {
        padding: 10px 0 5px 0;
        margin: 0;
        position: absolute;
        bottom: 15px;
        left: 0;
        width: 100%;
    }

        .owl-carousel.slider .owl-controls .owl-pagination .owl-page span {
            border: 1px solid #fff;
        }

/* owl slider1 */
.owl-carousel.slider1 {
    height: 400px;
    position: relative;
    background-color: #4d5055;
    width: 100%;
}

    .owl-carousel.slider1 .item {
        color: #fff;
        text-align: center;
        height: 400px;
        width: 100%;
        background-size: cover;
    }

        .owl-carousel.slider1 .item .item-content {
            margin-top: 50px;
            z-index: 9;
            position: relative;
            width: 100%;
        }

            .owl-carousel.slider1 .item .item-content h2 {
                color: #fff;
            }

            .owl-carousel.slider1 .item .item-content p {
                color: #fff;
                font-size: 17px;
                padding: 0 65px;
            }

    /* slider1 controls */
    .owl-carousel.slider1 .owl-controls .owl-buttons div {
        color: #21252b;
        display: inline-block;
        zoom: 1;
        margin: 5px;
        padding: 15px 13px;
        border-radius: 4px;
        font-size: 14px;
        background: #fff;
        filter: Alpha(Opacity=30);
        opacity: 0.3;
    }

        .owl-carousel.slider1 .owl-controls .owl-buttons div.owl-prev {
            position: absolute;
            top: 50%;
            left: 10px;
        }

        .owl-carousel.slider1 .owl-controls .owl-buttons div.owl-next {
            position: absolute;
            top: 50%;
            right: 10px;
        }

/*slider1 paginations*/
.owl-carousel.sliderPastEvents .owl-controls .owl-pagination {
    padding: 10px 0 5px 0;
    margin: 0;
    position: absolute;
    bottom: 15px;
    left: 0;
    width: 100%;
}

    .owl-carousel.sliderPastEvents .owl-controls .owl-pagination .owl-page span {
        border: 1px solid #fff;
    }

/* owl sliderPastEvents */
.owl-carousel.sliderPastEvents {
    position: relative;
    background-color: #4d5055;
    width: 100%;
    height: 400px;
}

    .owl-carousel.sliderPastEvents .item {
        color: #fff;
        text-align: center;
        height: 400px;
        width: 100%;
        display: table;
        background-repeat: no-repeat;
        background-position: center;
    }

        .owl-carousel.sliderPastEvents .item .item-content {
            display: table-cell;
            vertical-align: middle;
            z-index: 9;
            position: relative;
            text-align: center;
        }

            .owl-carousel.sliderPastEvents .item .item-content h2 {
                color: #fff;
            }

            .owl-carousel.sliderPastEvents .item .item-content p {
                color: #fff;
                font-size: 17px;
                padding: 0 65px;
                text-align: center;
            }

    /* sliderPastEventscontrols */
    .owl-carousel.sliderPastEvents .owl-controls .owl-buttons div {
        color: #21252b;
        display: inline-block;
        zoom: 1;
        margin: 5px;
        padding: 15px 13px;
        border-radius: 4px;
        font-size: 14px;
        background: #fff;
        filter: Alpha(Opacity=30);
        opacity: 0.3;
    }

        .owl-carousel.sliderPastEvents .owl-controls .owl-buttons div.owl-prev {
            position: absolute;
            top: 50%;
            left: 10px;
        }

        .owl-carousel.sliderPastEvents .owl-controls .owl-buttons div.owl-next {
            position: absolute;
            top: 50%;
            right: 10px;
        }

/* sliderOneliner */

/* sliderOneliner Controls*/
#sync1 .owl-controls .owl-buttons div {
    color: #00afd1;
    display: inline-block;
    zoom: 1;
    margin: 5px;
    padding: 15px 13px;
    border-radius: 4px;
    font-size: 70px;
    background: none;
    filter: Alpha(Opacity=30);
    opacity: 0.3;
}

    #sync1 .owl-controls .owl-buttons div.owl-prev {
        position: absolute;
        top: 50%;
        left: 0;
    }

    #sync1 .owl-controls .owl-buttons div.owl-next {
        position: absolute;
        top: 50%;
        right: 0;
    }

/*Synchronized Owl Slder for sliderOneLiner */

#sync1 .item {
    color: #FFF;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

#sync2 .item {
    background: #d2d4d5;
    padding: 10px 0px;
    margin: 5px;
    color: #FFF;
    text-align: center;
    cursor: pointer;
}

#sync2 .synced .item {
    background: #00afd1;
}

/*Video Slider*/

.video-carousel .item {
    margin: 0 5px 0 5px;
}

    .video-carousel .item img {
        max-width: 100%;
    }

.video-carousel .owl-controls .owl-buttons div.owl-prev {
    position: absolute;
    top: 25%;
    left: 0;
}

.video-carousel .owl-controls .owl-buttons div.owl-next {
    position: absolute;
    top: 25%;
    right: 0;
}

.video-carousel .owl-controls .owl-buttons div {
    color: #00afd1;
    display: inline-block;
    zoom: 1;
    margin: -35px;
    border-radius: 0;
    font-size: 70px;
    background: none;
    filter: Alpha(Opacity=70);
    opacity: 0.7;
}
/* Partnership Carousel */

.partnership-carousel .item {
    margin: 0 5px 0 5px;
}

    .partnership-carousel .item img {
        max-width: 100%;
    }

.partnership-carousel .owl-controls .owl-buttons div.owl-prev {
    position: absolute;
    top: 25%;
    left: 0;
}

.partnership-carousel .owl-controls .owl-buttons div.owl-next {
    position: absolute;
    top: 25%;
    right: 0;
}

.partnership-carousel .owl-controls .owl-buttons div {
    color: #00afd1;
    display: inline-block;
    zoom: 1;
    margin: -35px;
    border-radius: 0;
    font-size: 70px;
    background: none;
    filter: Alpha(Opacity=70);
    opacity: 0.7;
}

/*owl-three slider controls */
.owl-item-3 .owl-controls .owl-pagination {
    padding-top: 5px;
}

    .owl-item-3 .owl-controls .owl-pagination .owl-page span {
        border: 1px solid #000;
    }

.owl-item-3 .owl-controls .owl-page.active span,
.owl-item-3 .owl-controls.clickable .owl-page:hover span {
    filter: Alpha(Opacity=100); /*IE7 fix*/
    opacity: 1;
    background: #000;
}

/*TESTIMONIALS STYLE*/
.owl-testimonial-default {
    padding: 0px;
}

    .owl-testimonial-default .item {
        margin: 0 5px 0 5px;
    }

    .owl-testimonial-default .owl-controls .owl-pagination {
        padding-top: 10px;
        display: inline-block;
        position: absolute;
        bottom: 28px;
        right: 5px;
    }
    /*testimonial page*/
    .owl-testimonial-default .owl-controls .owl-page span {
        display: block;
        width: 13px;
        height: 13px;
        margin: 5px 5px;
        -webkit-border-radius: 20px;
        -moz-border-radius: 20px;
        border-radius: 20px;
        background: #01c1c1;
        filter: Alpha(Opacity=50);
        opacity: 0.5;
    }
    /*testimonial navigation*/
    .owl-testimonial-default .owl-controls .owl-buttons div {
        color: #fff;
        display: inline-block;
        zoom: 1;
        margin: 5px;
        padding: 0;
        width: 27px;
        height: 27px;
        line-height: 28px;
        font-size: 12px;
        background: #01c1c1;
        filter: Alpha(Opacity=100);
        opacity: 1;
    }

        .owl-testimonial-default .owl-controls .owl-buttons div:hover {
            background: #21252b;
            filter: Alpha(Opacity=70);
            opacity: 0.7;
        }

/*testimonial nav rounded*/
.nav-rounded .owl-controls .owl-buttons div {
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.nav-circle .owl-controls .owl-buttons div {
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
}

.owl-testimonial-default .owl-controls .owl-buttons div.owl-prev {
    position: absolute;
    bottom: 35px;
    right: 30px;
}

.owl-testimonial-default .owl-controls .owl-buttons div.owl-next {
    position: absolute;
    bottom: 35px;
    right: 0px;
}

.testimonial {
    border: 0;
    margin: 0;
    position: relative;
    font-family: Georgia, serif;
    color: #fff;
    background: #01c1c1;
}

    .testimonial p {
        color: #fff;
        font-weight: 500;
        padding: 0;
        margin: 5px 25px;
    }

    .testimonial:before, .testimonial:after {
        content: "\201C";
        position: absolute;
        font-size: 70px;
        line-height: 1;
        color: #fff;
    }

    .testimonial:before {
        top: 0;
        left: 10px;
    }

    .testimonial:after {
        content: "\201D";
        right: 10px;
        bottom: -0.5em;
    }

.arrow-down {
    width: 0;
    height: 0;
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-top: 20px solid #01c1c1;
    margin: 0 0 0 25px;
}

.testimonial-info {
    margin: 10px 0 0 10px;
    font-weight: 500;
}

    .testimonial-info img {
        width: 60px;
        padding: 3px;
        border: 1px solid #e3e7e9;
    }

.testimonial-author {
    display: inline-block;
    margin-left: 10px;
}

    .testimonial-author h6 {
        margin-bottom: 5px;
    }

/*grey testimonial*/
.testimonial-grey .testimonial {
    background: #eef2f2;
}

    .testimonial-grey .testimonial p {
        color: #838383;
    }

    .testimonial-grey .testimonial:before, .testimonial-grey blockquote.testimonial:after {
        color: #838383;
    }

.testimonial-grey .arrow-down {
    border-top: 20px solid #eef2f2;
}

.owl-testimonial-default.testimonial-grey .owl-controls .owl-buttons div {
    color: #838383;
    background: #eef2f2;
}

    .owl-testimonial-default.testimonial-grey .owl-controls .owl-buttons div:hover {
        color: #eef2f2;
        background: #21252b;
    }

/*dark testimonial*/
.testimonial-dark .testimonial {
    background: #21252b;
}

    .testimonial-dark .testimonial p {
        color: #fff;
    }

    .testimonial-dark .testimonial:before, .testimonial-dark blockquote.testimonial:after {
        color: #fff;
    }

.testimonial-dark .arrow-down {
    border-top: 20px solid #21252b;
}

.owl-testimonial-default.testimonial-dark .owl-controls .owl-buttons div {
    color: #fff;
    background: #21252b;
}

    .owl-testimonial-default.testimonial-dark .owl-controls .owl-buttons div:hover {
        color: #fff;
        background: #01c1c1;
    }

/*back to top*/
#toTop {
    border-style: none;
    border-color: inherit;
    border-width: medium;
    z-index: 9999;
    display: none;
    text-decoration: none;
    position: fixed;
    bottom: 10px;
    right: 10px;
    overflow: hidden;
    width: 51px;
    height: 51px;
    text-indent: 100%;
    background: url('../img/ui.totop-default.png') no-repeat left top;
}

#toTopHover {
    background: url('../img/ui.totop-default.png') no-repeat left -51px;
    width: 51px;
    height: 51px;
    display: block;
    overflow: hidden;
    float: left;
    opacity: 0;
    -moz-opacity: 0;
    filter: alpha(opacity=0);
}

#toTop:active, #toTop:focus {
    outline: none;
}

/*--------------------------------------------------------------------------
+  BOOTSTRAP ELEMENTS
--------------------------------------------------------------------------*/
/*ALERT*/
.alert h4 {
    font-size: 18px;
    margin-left: 5px;
}

    .alert h4 i.fa {
        margin-right: 10px;
    }

.alert p {
    margin: 10px 5px 15px 5px;
}

.alert button {
    margin-left: 5px;
}
/*success*/
.alert-success {
    color: #168949;
    background-color: #daedd0;
    border-color: #c7e4b8;
}

    .alert-success hr {
        border-top-color: #c9e2b3;
    }

    .alert-success .alert-link {
        color: #168949;
    }
/*info*/
.alert-info {
    color: #32729e;
    background-color: #ecf6ff;
    border-color: #daecff;
}

    .alert-info hr {
        border-top-color: #a6e1ec;
    }

    .alert-info .alert-link {
        color: #32729e;
    }
/*warning*/
.alert-warning {
    color: #96642e;
    background-color: #fff0c6;
    border-color: #f6e197;
}

    .alert-warning hr {
        border-top-color: #f7e1b5;
    }

    .alert-warning .alert-link {
        color: #96642e;
    }
/*danger*/
.alert-danger {
    color: #c9220a;
    background-color: #fde9e6;
    border-color: #fedbd4;
}

    .alert-danger hr {
        border-top-color: #e4b9c0;
    }

    .alert-danger .alert-link {
        color: #c9220a;
    }

/*THUMBNAILS*/
/*style 1*/
.thumbnail.style1 {
    background: #e3e7e8;
    border-radius: 0;
    border: 0px;
}

    .thumbnail.style1:hover {
        background: #00afd1;
    }

        .thumbnail.style1:hover p {
            color: #fff;
        }

        .thumbnail.style1:hover a {
            color: #fff;
        }
/*style 2*/
.thumbnail.style2 {
    background: #01c1c1;
    border-radius: 0;
    border: 0px;
}

    .thumbnail.style2 p {
        color: #fff;
    }

    .thumbnail.style2 a {
        color: #fff;
    }

/*PANEL*/
.panel {
    border-radius: 0;
}

.panel-heading {
    border-radius: 0;
}

    .panel-heading .panel-title {
        font-size: 18px;
    }

.panel-body h4 {
    font-size: 22px;
    color: #808080;
    margin: 10px 0;
}

/*default*/
.panel-aqua {
    border-color: #01c1c1;
}

    .panel-aqua .panel-heading {
        background: #01c1c1;
        color: #fff;
        border-color: #01c1c1;
    }

/*pink*/
.panel.panel-pink {
    border-color: #cc286e;
}

    .panel.panel-pink .panel-heading {
        background: #dc2d78;
        color: #fff;
        border-color: #cc286e;
    }

/*red*/
.panel.panel-red {
    border-color: #d63530;
}

    .panel.panel-red .panel-heading {
        background: #ef4a44;
        color: #fff;
        border-color: #d63530;
    }

/*purple*/
.panel.panel-purple {
    border-color: #814894;
}

    .panel.panel-purple .panel-heading {
        background: #8d55a0;
        color: #fff;
        border-color: #814894;
    }

/*orange*/
.panel.panel-orange {
    border-color: #e26a23;
}

    .panel.panel-orange .panel-heading {
        background: #ee7933;
        color: #fff;
        border-color: #e26a23;
    }

/*blue*/
.panel.panel-blue {
    border-color: #1d93ae;
}

    .panel.panel-blue .panel-heading {
        background: #279fba;
        color: #fff;
        border-color: #1d93ae;
    }

/*green*/
.panel.panel-green {
    border-color: #7bb42f;
}

    .panel.panel-green .panel-heading {
        background: #84bd38;
        color: #fff;
        border-color: #7bb42f;
    }

/*brown*/
.panel.panel-brown {
    border-color: #854531;
}

    .panel.panel-brown .panel-heading {
        background: #8b4c38;
        color: #fff;
        border-color: #854531;
    }

/*dark*/
.panel.panel-dark {
    border-color: #24282e;
}

    .panel.panel-dark .panel-heading {
        background: #2d323a;
        color: #fff;
        border-color: #24282e;
    }

/*grey*/
.panel.panel-grey {
    border-color: #9eadae;
}

    .panel.panel-grey .panel-heading {
        background: #a5b3b4;
        color: #fff;
        border-color: #9eadae;
    }

.panel-success {
    border-color: #c7e4b8;
}

    .panel-success .panel-heading {
        background: #daedd0;
        color: #168949;
        border-color: #c7e4b8;
    }

.panel-info {
    border-color: #daecff;
}

    .panel-info .panel-heading {
        background: #ecf6ff;
        color: #32729e;
        border-color: #daecff;
    }

.panel-warning {
    border-color: #f6e197;
}

    .panel-warning .panel-heading {
        background: #fff0c6;
        color: #96642e;
        border-color: #f6e197;
    }

.panel-danger {
    border-color: #fedbd4;
}

    .panel-danger .panel-heading {
        background: #fde9e6;
        color: #d2220a;
        border-color: #fedbd4;
    }

/*TABLE*/
.table {
    color: #000;
}

    .table > thead > tr > th,
    .table > tbody > tr > th,
    .table > tfoot > tr > th,
    .table > thead > tr > td,
    .table > tbody > tr > td,
    .table > tfoot > tr > td {
        border-top: 1px solid #e5eaea;
    }

    .table > thead > tr > th {
        border-bottom: 2px solid #586266;
    }

.table-bordered thead {
    background: #f8fafa;
}

.table-bordered th,
.table-bordered td {
    border: 1px solid #e5eaea !important;
}

.table-hover > tbody > tr:hover > td,
.table-hover > tbody > tr:hover > th {
    background-color: #f8fafa;
}

.table-striped > tbody > tr:nth-child(odd) > td,
.table-striped > tbody > tr:nth-child(odd) > th {
    background-color: #f8fafa;
}

.table > thead > tr > td.active,
.table > tbody > tr > td.active,
.table > tfoot > tr > td.active,
.table > thead > tr > th.active,
.table > tbody > tr > th.active,
.table > tfoot > tr > th.active,
.table > thead > tr.active > td,
.table > tbody > tr.active > td,
.table > tfoot > tr.active > td,
.table > thead > tr.active > th,
.table > tbody > tr.active > th,
.table > tfoot > tr.active > th {
    background-color: #f8fafa;
}

.table > thead > tr > td.success, .table > tbody > tr > td.success, .table > tfoot > tr > td.success, .table > thead > tr > th.success, .table > tbody > tr > th.success, .table > tfoot > tr > th.success, .table > thead > tr.success > td, .table > tbody > tr.success > td, .table > tfoot > tr.success > td, .table > thead > tr.success > th, .table > tbody > tr.success > th, .table > tfoot > tr.success > th {
    background-color: #daedd0;
}

.table > thead > tr > td.warning, .table > tbody > tr > td.warning, .table > tfoot > tr > td.warning, .table > thead > tr > th.warning, .table > tbody > tr > th.warning, .table > tfoot > tr > th.warning, .table > thead > tr.warning > td, .table > tbody > tr.warning > td, .table > tfoot > tr.warning > td, .table > thead > tr.warning > th, .table > tbody > tr.warning > th, .table > tfoot > tr.warning > th {
    background-color: #fff0c6;
}

.table > thead > tr > td.danger, .table > tbody > tr > td.danger, .table > tfoot > tr > td.danger, .table > thead > tr > th.danger, .table > tbody > tr > th.danger, .table > tfoot > tr > th.danger, .table > thead > tr.danger > td, .table > tbody > tr.danger > td, .table > tfoot > tr.danger > td, .table > thead > tr.danger > th, .table > tbody > tr.danger > th, .table > tfoot > tr.danger > th {
    background-color: #fedbd4;
}

.table > thead > tr > td.info, .table > tbody > tr > td.info, .table > tfoot > tr > td.info, .table > thead > tr > th.info, .table > tbody > tr > th.info, .table > tfoot > tr > th.info, .table > thead > tr.info > td, .table > tbody > tr.info > td, .table > tfoot > tr.info > td, .table > thead > tr.info > th, .table > tbody > tr.info > th, .table > tfoot > tr.info > th {
    background-color: #daecff;
}

@-moz-document url-prefix() {
    fieldset;

{
    display: table-cell;
}
}

/* centered columns styles */
.row-centered {
    text-align: center;
}

.col-centered {
    display: inline-block;
    float: none !important;
    /* reset the text-align */
    text-align: left;
    /* inline-block space fix */
    margin-right: -4px;
}

/*FORMS*/
.form-group {
    margin-bottom: 20px;
}

.input-group {
    margin-bottom: 20px;
}

.input-group-addon {
    background: #e7e9e9;
    border: 1px solid #e7e9e9;
}

    .input-group-addon .fa {
        width: 20px;
    }
/*input[type=checkbox] { margin: 7px 10px 0 0; }*/
.radio-inline, .checkbox-inline, label { /*font-size: 14px; */
    font-weight: 300;
}

.btn, .input-lg {
    border-radius: 0;
}

.btn-link:hover, .btn-link:focus {
    text-decoration: none;
}

.dropdown-menu {
    border-radius: 0;
    margin: 0 0 0 -1px;
}

    .dropdown-menu > li > a {
        padding: 10px 20px;
    }

        .dropdown-menu > li > a:hover {
            background: rgb(236, 236, 236);
        }

textarea, textarea.form-control, input[type=text], input[type=password], input[type=datetime], input[type=datetime-local], input[type=date], input[type=month], input[type=time], input[type=week], input[type=number], input[type=email], input[type=url], input[type=search], input[type=tel], input[type=color], select, select.form-control, .uneditable-input {
    border: 1px solid #e7e9e9;
    outline: none;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    box-shadow: none !important;
}

    textarea:focus, textarea.form-control:focus, input[type=text]:focus, input[type=password]:focus, input[type=datetime]:focus, input[type=datetime-local]:focus, input[type=date]:focus, input[type=month]:focus, input[type=time]:focus, input[type=week]:focus, input[type=number]:focus, input[type=email]:focus, input[type=url]:focus, input[type=search]:focus, input[type=tel]:focus, input[type=color]:focus, select:focus, select.form-control:focus, .uneditable-input:focus {
        border: 1px solid #d6d7d7;
        outline: 0 none;
    }

.form-control-feedback {
    margin-top: 6px;
}

.form-control {
    border-radius: 0;
}

.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline {
    color: #c9220a;
}

.has-success .form-control {
    border-color: #168949;
}

.has-warning .form-control {
    border-color: #96642e;
}

.has-error .form-control {
    border-color: #c9220a;
}

.has-success .form-control-feedback {
    color: #168949;
}

.has-warning .form-control-feedback {
    color: #96642e;
}

.has-error .form-control-feedback {
    color: #c9220a;
}

/*BLOCKQUOTE*/
blockquote {
    border: 0;
    border-top: 1px solid #d2d4d5;
    border-bottom: 1px solid #d2d4d5;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    padding: 30px 20px;
    /*margin: 20px 0 20px -60px;*/
    font-weight: 400;
    font-size: 25px;
    line-height: 40px;
    margin-bottom: 35px;
    font-style: italic;
    background: #eee;
}
    blockquote p {
       font-weight: normal;
    }

    blockquote h5 {
        font-weight: 100;
    }

    blockquote h6 {
        font-weight: 100;
    }

    blockquote p {
        font-style: italic;
    }

    blockquote cite {
        font-size: 14px;
        color: #a4a4a4;
        font-style: italic;
    }

        blockquote cite:before {
            content: '\2014 \00A0';
        }
    /*border*/
    blockquote.border-right {
        border-left: 0;
        border-right: 2px solid #01c1c1;
    }

    blockquote.border-left {
        border-left: 2px solid #01c1c1;
    }

    blockquote.border-left-hover {
        border-color: #e3e9e9;
    }

        blockquote.border-left-hover:hover {
            border-color: #01c1c1;
        }

    blockquote.border-right-hover {
        border-left: 0;
        border-right: 2px solid #e3e9e9;
    }

        blockquote.border-right-hover:hover {
            border-color: #01c1c1;
        }

    blockquote.no-border {
        border: 0;
    }
    /*quote-bg-grey*/
    blockquote.quote-bg-grey {
        border-color: #01c1c1;
        background: #f4f6f6;
    }
    /*quote-bg-dark*/
    blockquote.quote-bg-dark {
        background: #2d323a;
        color: #fff;
    }

        blockquote.quote-bg-dark p {
            color: #f4f6f6;
        }

        blockquote.quote-bg-dark h5 {
            color: #f4f6f6;
        }

        blockquote.quote-bg-dark h6 {
            color: #f4f6f6;
        }

        blockquote.quote-bg-dark cite {
            color: #f4f6f6;
        }
    /*quote-bg-color*/
    blockquote.quote-bg-color {
        background: #01c1c1;
    }

        blockquote.quote-bg-color p {
            color: #f4f6f6;
        }

        blockquote.quote-bg-color h5 {
            color: #f4f6f6;
        }

        blockquote.quote-bg-color h6 {
            color: #f4f6f6;
        }

        blockquote.quote-bg-color cite {
            color: #f4f6f6;
        }

/*Custom Checkbox and radiobutton styles*/
.custom-checkbox, .custom-radio {
    position: relative;
}

    .custom-checkbox input, .custom-radio input {
        position: absolute;
        left: 2px;
        top: 3px;
        margin: 0;
        z-index: 0;
        display: none;
    }

    .custom-checkbox label, .custom-radio label {
        display: block;
        position: relative;
        z-index: 1;
        padding-right: 1em;
        line-height: 22px;
        padding: 0em 0 0em 30px;
        margin: 0 0 .3em;
        cursor: pointer;
        margin: 5px 0 15px 0;
        ;
    }

    .custom-checkbox label {
        background: url(../img/checkbox-sprite.png) no-repeat;
    }

    .custom-radio label {
        background: url(../img/radiobtn-sprite.png) no-repeat;
    }

    .custom-checkbox label, .custom-radio label {
        background-position: 0px 0px;
    }

        .custom-checkbox label.hover, .custom-checkbox label.focus, .custom-radio label.hover, .custom-radio label.focus {
            background-position: 0px 0px;
        }

        .custom-checkbox label.checked, .custom-radio label.checked {
            background-position: 0px -22px;
        }

        .custom-checkbox label.checkedHover, .custom-checkbox label.checkedFocus {
            background-position: 0px -22px;
        }

/*Form Input Animation */

.input__field {
    display: block !important;
    float: none !important;
}

    .input__field:focus {
        outline: none;
    }

.input__label {
    display: inline-block;
    float: right;
}

.input__field--yoshiko {
    width: 100%;
    border: 2px solid transparent;
    -webkit-transition: background-color 0.25s, border-color 0.25s;
    transition: background-color 0.25s, border-color 0.25s;
}

.input__label--yoshiko {
    text-align: left;
    position: absolute;
    bottom: 100%;
    pointer-events: none;
    /*overflow: hidden;*/
    padding: 9px 0.9em;
    -webkit-transform: translate3d(0, 2.0em, 0);
    transform: translate3d(0, 2.0em, 0);
    -webkit-transition: -webkit-transform 0.20s;
    transition: transform 0.20s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    z-index: 99;
    top: -29px;
}

.input__label-content--yoshiko {
    -webkit-transition: -webkit-transform 0.25s;
    transition: transform 0.25s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 200;
    color: #889091;
}

.input--filled .input__label--yoshiko {
}

.input--filled .input__label-content--yoshiko {
    /*font-weight:400;font-size: 15px;*/ color: #c5c9ca;
}

.input__field--yoshiko:focus + .input__label--yoshiko,
.input--filled .input__label--yoshiko {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

    .input__field--yoshiko:focus + .input__label--yoshiko .input__label-content--yoshiko,
    .input--filled .input__label-content--yoshiko {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

.input__field--yoshiko:focus + .input__field--yoshiko,
.input--filled .input__field--yoshiko {
    background-color: #FDFDFD;
}

#cdawrap {
    display: none;
}

.dropdown-toggle {
    color: #889091 !important; /*font-size: 16px;*/
}

.contact .row {
    margin-top: 15px;
    margin-bottom: 30px;
}

.yello-bg {
    margin-top: 10px;
}

    .yello-bg .form-control {
        margin-bottom: 10px;
    }

    .yello-bg.input--filled .input__label-content--yoshiko {
        color: #fff;
    }

.datepicker table tr td.active:hover, .datepicker table tr td.active:hover:hover, .datepicker table tr td.active.active, .datepicker table tr td.active:hover.active, .datepicker table tr td span.active.active {
    background: #e3e7e8;
    border: 1px solid #d2d4d5;
    color: #889091;
}

/*PROGRESS BAR*/
.progress {
    -webkit-box-shadow: inset 0 0px 0px rgba(0,0,0,0);
    box-shadow: inset 0 0px 0px rgba(0,0,0,0);
    border-radius: 4px;
    background: #e7e9e9;
}

.progress-bar {
    background: #01c1c1;
    font-size: 14px;
    color: #fff;
    -webkit-box-shadow: inset 0 0px 0 rgba(0,0,0,0);
    box-shadow: inset 0 0px 0 rgba(0,0,0,0);
    border-radius: 4px;
}

.skills-name {
    margin-left: 7px;
}

.skills-percentage {
    margin-right: 7px;
}
/*style 1*/
.progress.progress-style1 {
    border-radius: 0px;
}

    .progress.progress-style1 .progress-bar {
        border-radius: 0px;
    }
/*style 2*/
.progress.progress-style2 {
    height: 30px;
    line-height: 30px;
}

    .progress.progress-style2 .progress-bar {
        height: 30px;
        line-height: 30px;
    }

.progress.progress-style3 {
    height: 30px;
    line-height: 30px;
    border-radius: 0px;
}

    .progress.progress-style3 .progress-bar {
        height: 30px;
        line-height: 30px;
        border-radius: 0px;
    }

/*BREADCRUMBS*/
.breadcrumbs {
    position: relative;
    overflow: hidden;
    border-bottom: solid 1px #d2d4d5;
    border-top: solid 1px #d2d4d5;
    background: #fff;
    font-size: 16px;
}

.breadcrumb {
    top: 13px;
    background: none;
    position: relative;
}

ul.breadcrumb {
    padding-right: 15px;
}

.breadcrumb li a:hover {
    color: #00afd1;
    text-decoration: none;
    padding-bottom: 3px;
    border-bottom: 5px solid;
}

.breadcrumb li.active {
    color: #000;
}

@media (max-width: 480px) {
    .breadcrumbs h3 {
        width: 100%;
        text-align: center;
    }

    .breadcrumb {
        width: 100%;
        text-align: center;
    }
}

/*ACCORDIAN*/
.panel-title {
    font-size: 20px;
    text-transform: none;
    font-weight: 400;
    padding: 0;
    position: relative;
}

    .panel-title > a {
        font-size: 14px;
        text-transform: uppercase;
        display: block;
        padding: 14px 40px 14px 30px;
        background-color: #01c1c1;
        color: #fff !important;
    }

        .panel-title > a:after {
            color: #fff;
            content: '-';
            position: absolute;
            font-size: 22px;
            right: 27px;
            top: 12px;
        }

        .panel-title > a:hover {
            background-color: #21252b;
            text-decoration: none;
        }

        .panel-title > a.collapsed {
            background-color: #21252b;
        }

            .panel-title > a.collapsed:hover {
                background-color: #01c1c1;
            }

            .panel-title > a.collapsed:after {
                content: '+';
                right: 24px;
                top: 14px;
                font-size: 22px;
            }

.panel {
    box-shadow: none;
}

.panel-group .panel {
    border-radius: 0; /* border-left: 0; border-right: 0; border-bottom: 0; */
    background-color: transparent;
}

.panel-default > .panel-heading {
    background-color: transparent;
    color: inherit;
    position: relative;
    border: none;
    border-radius: 0;
    padding: 0;
}

.panel-heading {
    padding: 16px 0px 14px 16px;
}

    .panel-heading[class*="rt-icon-"]:before {
        position: absolute;
        font-size: 20px;
        color: #e16657;
        left: 16px;
    }

.panel-default {
    border-color: transparent;
}

    .panel-default + .panel-default {
        border-top-color: rgba(255,255,255,0.1);
    }

.panel-group .panel + .panel {
    margin-top: 9px;
}

.panel-group .panel-heading + .panel-collapse .panel-body {
    padding-top: 37px;
    padding-bottom: 22px;
    padding-left: 37px;
    border-right: 1px solid #cccccc;
    border-left: 1px solid #cccccc;
    border-bottom: 1px solid #cccccc;
    border-top: none;
}

/*TABS*/
.nav.nav-tabs > li > a {
    background: #000;
}

    .nav.nav-tabs > li.active > a, .nav.nav-tabs > li.active > a:hover, .nav.nav-tabs > li.active > a:focus,
    .nav.nav-tabs > li > a:hover, .nav.nav-tabs > li > a:focus {
        background-color: #00afd1;
    }

.nav.nav-tabs {
    font-size: 16px;
    margin-bottom: 30px;
    padding: 0;
}

.tab-content {
    overflow: hidden;
    -webkit-border-radius: 2px;
    background: #fff;
}

.nav.nav-tabs > li > a {
    padding: 20px;
    color: #000;
    border-radius: 0px !important;
    background-color: #fff;
    border: 1px solid #e3e7e8;
}

.nav.nav-tabs > li.active > a, .nav.nav-tabs > li.active > a:hover, .nav.nav-tabs > li.active > a:focus {
    color: #fff;
    background-color: #00afd1;
}

.nav.nav-tabs > li > a:hover, .nav.nav-tabs > li > a:focus, .nav.nav-tabs.nav-justified > .active > a {
    color: #fff;
    background-color: #00afd1;
}

.nav-stacked > li + li {
    margin-top: 0;
}

/*PAGINATION*/
.pagination > li > a, .pagination > li > span {
    border: 1px solid #e3e7e9;
    color: #21252b;
}

    .pagination > li > a:hover, .pagination > li > span:hover {
        background: #e3e7e9;
        color: #21252b;
    }

.pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus {
    background-color: #01c1c1;
    border-color: #01c1c1;
}

.pagination > li:first-child > a, .pagination > li:first-child > span {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}

.pagination > li:last-child > a, .pagination > li:last-child > span {
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}

/*PAGER*/
.pager li a {
    border-color: #e3e7e9;
    border-radius: 0px;
}

    .pager li a:hover {
        background: #01c1c1;
        color: #fff;
        border-color: transparent;
    }

/*tooltip*/
.tooltip .tooltip-inner {
    padding: 10px;
    background-color: #21252b;
    z-index: 9999;
}

.tooltip.top .tooltip-arrow {
    border-top-color: #21252b;
}

.tooltip.right .tooltip-arrow {
    border-right-color: #21252b;
}

.tooltip.bottom .tooltip-arrow {
    border-bottom-color: #21252b;
}

.tooltip.left .tooltip-arrow {
    border-left-color: #21252b;
}

/*--------------------------------------------------------------------------
+	Headers style
--------------------------------------------------------------------------*/
/*HEADER VERSIONs*/
.top-header {
    padding: 6px 0 3px 0;
    background: #e3e7e8;
}

.contact-info li, .contact-info li a, .language-login li, .language-login a {
    font-size: 14px;
    color: #2a3c6e;
}

.contact-info li {
    margin-right: 30px;
}

.language-login {
    text-align: right;
}

    .language-login li {
        margin-left: 30px;
    }

@media (max-width: 1200px) {
}

@media (min-width: 768px) and (max-width: 992px) {
    .copyrights ul li {
        font-size: 14px;
        margin: 0 7px 7px 0;
        color: #777777;
    }
}

@media (min-width: 480px) and (max-width: 768px) {
    ul.social li.s-icon {
        display: none;
    }
}

@media (max-width: 480px) {
    ul.social li.s-icon {
        display: none;
    }

    ul li.fa-hide {
        display: none;
    }
}

/*in dark content*/
.dark p {
    color: #b0bac2;
}

/*header*/
header {
    position: relative;
    padding: 150px 0;
}

.layer {
    background: #21252b;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.4;
}

.layer-cyan {
    background: #00afd1;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.4;
}

.layer-red {
    background: #dc0642;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

header .no-slider {
    position: relative;
    color: #fff;
}

    header .no-slider h1 {
        color: #fff;
    }

    header .no-slider p {
        color: #fff;
        margin: 30px 0;
        font-size: 18px;
    }

#happy-clients p {
    margin: 30px 0;
}

#happy-clients span.logo {
    margin-right: 10px;
}

#contact p {
    margin-top: 20px;
}

#contact a.btn {
    margin: 20px 0;
}

/*header text*/
.header-text {
    padding: 40px 0 30px 0;
    text-align: left;
    color: #21252b;
}

    .header-text.style1 {
        background-color: #01c1c1;
    }

        .header-text.style1 h5 {
            color: #f;
        }

        .header-text.style1 p {
            color: #fff;
        }

    .header-text .btn-buy {
        text-align: right;
    }

@media (min-width: 480px) and (max-width: 768px) {
    .header-text {
        text-align: center;
    }

        .header-text .btn-buy {
            text-align: center;
        }
}

@media (max-width: 480px) {
    .header-text {
        text-align: center;
    }

        .header-text .btn-buy {
            text-align: center;
        }
}

/*NAVBAR STYLE*/
.navbar-default {
    margin: 0;
    padding: 0;
    background: #fff;
    border: 0;
    border-radius: 0px;
    width: 100%;
    z-index: 999;
    -webkit-box-shadow: 0 1px 3px rgba(0,0,0,.04);
    -moz-box-shadow: 0 1px 3px rgba(0,0,0,.04);
    box-shadow: 0 1px 3px rgba(0,0,0,.04);
}

    .navbar-default.dark {
        background: #21252b;
        border-top: 1px solid #2e343a;
    }

/*--------------------------------------------------------------------------
+	Pages
--------------------------------------------------------------------------*/
/*portfolio*/
.portfolio {
    text-align: center;
}

    .portfolio p {
        margin-bottom: 70px;
    }

    .portfolio .work {
        position: relative;
        z-index: 99;
    }

        .portfolio .work .layer {
            display: none;
            background: #01c1c1;
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            opacity: 0.7;
            z-index: 999;
        }

        .portfolio .work .more {
            display: none;
            color: #fff;
            cursor: pointer;
            border: 1px solid #fff;
            border-radius: 100%;
            width: 50px;
            height: 50px;
            line-height: 50px;
            position: absolute;
            top: 50%;
            left: 50%;
            z-index: 9998;
        }

            .portfolio .work .more:hover {
                background: #fff;
                color: #21252b;
                -webkit-transition: all 0.4s ease-out;
                -moz-transition: all 0.4s ease-out;
                -ms-transition: all 0.4s ease-out;
                -o-transition: all 0.4s ease-out;
                transition: all 0.4s ease-out;
            }

        .portfolio .work img {
            width: 100%;
        }

        .portfolio .work .title {
            background: #fff;
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 7px 0;
            opacity: 0.9;
            z-index: 9999;
        }

            .portfolio .work .title a {
                text-decoration: none;
                display: inline-block;
            }

            .portfolio .work .title h6 {
                text-transform: uppercase;
                font-weight: 700;
                font-size: 15px;
            }

            .portfolio .work .title .tags {
                font-size: 14px;
                margin: -3px 0 0 0;
                color: #21252b;
            }

    .portfolio a.btn {
        margin: 40px 0 0 0;
    }

/*isotope portfolio*/

.portfolioFilter a.current {
    background: #fff;
    color: #000;
}

.portfolioContainer {
    overflow: hidden;
}

.item {
    position: relative;
    overflow: hidden;
}

.grid-3-space .item {
    width: 31.3%;
    margin: 1%;
}

.grid-3 .item {
    width: 33.33333%;
}

.portfolio-layer {
    display: none;
    background: #21252b;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    right: 0;
    opacity: 0.8;
    z-index: 99;
}

.portfolioContainer img {
    width: 100%;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
}

.transition {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

.isotope-item {
    z-index: 2;
}

.isotope-hidden.isotope-item {
    pointer-events: none;
    z-index: 1;
}

.work-description {
    display: none;
    text-align: center;
    position: absolute;
    top: 50%;
    width: 100%;
    text-align: center;
    z-index: 999;
    padding: 0 20px;
}

    .work-description .plus {
        background: #01c1c1;
        display: inline-block;
        width: 50px;
        height: 50px;
        line-height: 50px;
        border-radius: 100%;
        color: #fff;
        margin-bottom: 15px;
    }

    .work-description h6 {
        margin-bottom: 10px;
        color: #fff;
    }

    .work-description p {
        color: #b0bac2;
    }

@media (min-width: 480px) and (max-width: 768px) {
    .grid-3-space .item {
        width: 48%;
    }

    .grid-3 .item {
        width: 50%;
    }
}

@media (max-width: 480px) {
    .grid-3-space .item {
        width: 100%;
    }

    .grid-3 .item {
        width: 100%;
    }
}

/*Blog page*/
.widget {
    overflow: hidden;
    margin-bottom: 25px;
}

    .widget .input-group {
        padding: 0;
        margin: 0;
    }

    .widget ul.social li {
        margin: 0 7px 7px 0;
    }

    .widget.tags span.btn {
        margin: 0 3px 7px 0;
    }

.blog-container img {
    width: 100%;
}

.blog-container .blog-post {
    position: relative;
    margin-bottom: 45px;
}

    .blog-container .blog-post .blog-post-layer {
        background: #21252b;
        opacity: 0.3;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        -webkit-transition: all 0.2s ease-out;
        -moz-transition: all 0.2s ease-out;
        -ms-transition: all 0.2s ease-out;
        -o-transition: all 0.2s ease-out;
        transition: all 0.2s ease-out;
    }

        .blog-container .blog-post .blog-post-layer:hover {
            opacity: 0.5;
        }

    .blog-container .blog-post .post-date h5 {
        color: #fff;
    }

    .blog-container .blog-post .post-date ul li {
        margin-right: 25px;
        color: #fff;
    }

    .blog-container .blog-post .post-date {
        position: absolute;
        bottom: 50px;
        left: 50px;
    }

/*single post*/
.blog-container .blog-single-post h5 {
    margin: 25px 0 15px 0;
}

.blog-container .blog-single-post .post-date ul {
    border-top: 1px solid #e7e9e9;
    border-bottom: 1px solid #e7e9e9;
    padding: 3px 0 0 0;
}

    .blog-container .blog-single-post .post-date ul li {
        margin-right: 25px;
    }

.blog-container .blog-single-post p {
    color: #21252b;
}

.media {
    margin: 0 0 30px 0;
}

    .media .media {
        margin: 30px 0 0 0;
    }

    .media img.media-object {
        width: 65px;
    }

    .media .media-body span {
        font-size: 14px;
        color: #7b7b7b;
    }

.video-container {
    position: relative;
    padding-bottom: 56%;
    padding-top: 0px;
    height: 0;
    overflow: hidden;
}

    .video-container iframe,
    .video-container object,
    .video-container embed {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

.dl-horizontal {
    margin-bottom: 15px;
    overflow: hidden;
}

    .dl-horizontal dt {
        width: 60px;
        float: left;
    }

        .dl-horizontal dt img {
            width: 60px;
            height: 60px;
            padding: 2px;
            margin-top: 2px;
            border: solid 1px #ddd;
        }

    .dl-horizontal dd {
        margin-left: 70px;
    }

        .dl-horizontal dd p {
            margin: 0;
        }

    .dl-horizontal:hover dt img,
    .dl-horizontal:hover dd a {
        border-color: #01c1c1;
    }

@media (min-width: 480px) and (max-width: 768px) {
    .blog-container .blog-post .post-date {
        bottom: 10px;
        left: 10px;
    }
}

@media (max-width: 480px) {
    .blog-container .blog-post img {
        height: 220px;
    }

    .blog-container .blog-post .post-date {
        bottom: 10px;
        left: 10px;
    }
}

/*blog-home*/
.home-blog {
    overflow: hidden;
}

    .home-blog .blog-header {
        position: relative;
    }

        .home-blog .blog-header img {
            width: 100%;
        }

        .home-blog .blog-header .title {
            position: absolute;
            bottom: 10px;
            left: 15px;
        }

            .home-blog .blog-header .title h6 a {
                color: #fff;
            }

            .home-blog .blog-header .title ul li {
                color: #fff;
                margin-right: 10px;
            }

        .home-blog .blog-header .blog-layer {
            background: #21252b;
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            bottom: 0;
            right: 0;
            opacity: 0.5;
        }

    .home-blog .blog-content {
        margin-top: 20px;
    }

    .home-blog .category {
        background: #01c1c1;
        color: #fff;
        margin: 0 20px 20px 0;
        width: 50px;
        height: 40px;
        line-height: 40px;
        text-align: center;
    }

    .home-blog .comments {
        background: #f1f1f1;
        color: #21252b;
        width: 50px;
        height: 40px;
        line-height: 40px;
        text-align: center;
    }

    .home-blog p {
        margin-bottom: 15px;
    }

@media (max-width: 480px) {
    .home-blog .blog-header img {
        height: 190px;
    }
}

@media (max-width: 320px) {
    .owl-carousel.slider .item .item-content {
        left: 0%;
    }

        .owl-carousel.slider .item .item-content h1 {
            text-align: center;
            font-size: 24px !important;
        }
}

/*ONEPAGE*/
header.home {
    text-align: center;
    padding: 210px 0;
}

    header.home h2 {
        color: #fff;
        font-weight: 100;
        margin-bottom: 25px;
        line-height: 1.3em;
    }

    header.home p {
        color: #fff;
        font-weight: 300;
        margin-bottom: 45px;
    }

    header.home .btn {
        margin-right: 25px;
    }

    header.home .btn-border {
        color: #fff;
    }

/*MAP*/
#map {
    display: block;
    width: 100%;
    height: 480px;
    margin: 0 auto;
}

    #map.large {
        height: 500px;
    }

.overlay {
    display: block;
    text-align: center;
    color: #fff;
    font-size: 1.8em;
    background: #21252b;
    border-radius: 0;
    box-shadow: 1px 1px 10px #333;
    padding: 20px;
}

.overlay_arrow {
    left: 50%;
    margin-left: -16px;
    width: 0;
    height: 0;
    position: absolute;
}

    .overlay_arrow.above {
        bottom: -15px;
        border-left: 16px solid transparent;
        border-right: 16px solid transparent;
        border-top: 20px solid #21252b;
    }

    .overlay_arrow.below {
        top: -15px;
        border-left: 16px solid transparent;
        border-right: 16px solid transparent;
        border-bottom: 20px solid #21252b;
    }

/*about-header*/
#about-header {
    position: relative;
    text-align: center;
    color: #fff;
    background-image: url(../img/slider/team-smiling.jpg);
    background-position: 50% -27px;
}

    #about-header .text {
        z-index: 999;
        background: red;
    }

    #about-header h1 {
        color: #fff;
        margin-bottom: 20px;
    }

    #about-header p {
        color: #fff;
        line-height: 1.2em;
        font-size: 1.3em;
    }

.texture {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 99;
}

/*about-me*/
#about-me .social {
    margin: 5px 0 10px 0;
}

    #about-me .social li {
        margin-right: 5px;
    }

/*coming soon*/
#coming-soon {
    text-align: center;
    color: #21252b;
}

    #coming-soon p {
        color: #21252b;
    }

#defaultCountdown {
    width: 100%;
    overflow: hidden;
    margin: 15px 0;
    padding: 20px;
}

.countdown-show4 .countdown-section {
    width: 24.5%;
}

.countdown-section {
    display: block;
    float: left;
    font-size: 28px;
    line-height: 28px;
}

.countdown-amount {
    font-size: 80px;
    line-height: 90px;
}

.countdown-period {
    display: block;
}

@media (max-width: 768px) {
    .countdown-show4 .countdown-section {
        width: 50%;
        margin-bottom: 20px;
    }
}

@media (max-width: 468px) {
    .countdown-amount {
        font-size: 60px;
        line-height: 70px;
    }

    .countdown-section {
        font-size: 20px;
        line-height: 20px;
    }
}
}

/*LOGIN PAGE STYLE*/
#login {
    padding: 100px 0;
}

.login-box {
    background: #fff;
    padding: 30px;
    border: 1px solid #e7e9e9;
    margin-bottom: 15px;
    font-size: 14px;
}

/*REGISTER PAGE STYLE*/
#register {
    padding: 100px 0;
}

.register-box {
    background: #fff;
    padding: 30px;
    border: 1px solid #e7e9e9;
    margin-bottom: 15px;
    font-size: 14px;
    overflow: hidden;
}

/*get in touch*/
.get-in-touch {
    background-color: #01c1c1;
}

/*--------------------------------------------------------------------------
+	Footers
--------------------------------------------------------------------------*/
/*footer*/
#footer {
    color: #000;
    padding: 30px 0 0 0;
}

    #footer p {
        color: #000;
        font-size: 15px;
    }

    #footer address i {
        color: #b0bac2;
        font-size: 14px;
    }

    #footer h4 {
        color: #000;
    }

    #footer h5 {
        color: #000;
    }

.footer {
    background: transparent;
}

    .footer ul {
        color: #000;
        font-size: 20px;
    }

.footerlinks {
    text-align: center;
}

    .footerlinks a {
        color: #000;
        margin-right: 20px;
        font-weight: 300;
    }

        .footerlinks a:hover {
            padding-bottom: 3px;
            border-bottom: 5px solid;
        }

address i.fa {
    width: 20px;
}

.copyrights {
    background: transparent;
    padding: 0 0 10px 0;
    text-align: left;
}

    .copyrights p {
        font-size: 14px;
    }

    .copyrights ul li {
        font-size: 14px;
        margin: 0 7px 0px 0;
        color: #000;
    }

    .copyrights a {
        color: #000;
    }

        .copyrights a:hover {
            padding-bottom: 3px;
            border-bottom: 5px solid;
        }
}

/*footer recent posts*/
ul.recent-post {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

    ul.recent-post li {
        padding: 5px;
    }

        ul.recent-post li a {
            color: #b0bac2;
        }

            ul.recent-post li a:hover {
                color: #01c1c1;
                text-decoration: none;
            }

        ul.recent-post li .fa {
            margin-right: 10px;
            font-size: 13px;
        }

.footer-tags a {
    margin: 0 3px 7px 0;
}

#footer .gallery-item {
    display: inline-block;
    margin: 0 11px 14px 0;
}

    #footer .gallery-item a {
    }

        #footer .gallery-item a img {
            width: 71px;
            border-radius: 4px;
            -webkit-transition: all 0.2s ease-out;
            -moz-transition: all 0.2s ease-out;
            -ms-transition: all 0.2s ease-out;
            -o-transition: all 0.2s ease-out;
            transition: all 0.2s ease-out;
        }

            #footer .gallery-item a img:hover {
                opacity: 0.8;
            }

.footer-v2 {
    text-align: center;
    padding-bottom: 30px;
}

    .footer-v2 .icon {
        font-size: 38px;
        color: #373d46;
        margin-bottom: 25px;
    }

    .footer-v2 h5 {
        margin-bottom: 25px;
    }

    .footer-v2 p {
        margin-bottom: 0px;
    }

    .footer-v2 .social li {
        margin-right: 5px;
    }

@media (min-width: 768px) and (max-width: 992px) {
    .copyrights ul li {
        font-size: 14px;
        margin: 0 7px 7px 0;
        color: #777777;
    }
}

/*--------------------------------------------------------------------------
+	Custom Styles
--------------------------------------------------------------------------*/
.content-white h2, .content-white p {
    color: #fff;
}

.sublinks {
    position: absolute;
    top: 10px;
    z-index: 1;
}

    .sublinks li {
        margin-right: 15px;
    }

        .sublinks li a {
            color: #fff;
        }

            .sublinks li a:hover {
                padding-bottom: 3px;
                border-bottom: 5px solid;
            }

.search-box {
    float: left;
    background: #ffffff !important;
    border: 2px solid #00afd1 !important;
    width: 80% !important;
    margin-top: 0 !important;
    height: 60px;
    padding-left: 15px;
}

.search-btn {
    float: left;
    background: #00afd1;
    font-size: 16px;
    color: #fff;
    border: none;
    padding: 0 15px;
    font-family: 'ClanOffcBold', sans-serif;
    height: 60px;
}

.main-search {
    position: relative;
}

    .main-search .input__label--yoshiko {
        left: 0;
        height: 30px;
        top: -18px;
    }

    .main-search .input__field {
        float: left !important;
    }

    .main-search.input--filled .input__label--yoshiko {
        top: -28px;
    }

.noImageHeight {
    height: auto !important;
    min-height: 100px !important;
}

.mask-container {
    height: 400px;
    position: relative;
    overflow: hidden;
}

.masked-image {
    position: absolute;
    top: 0;
    left: 0;
    background: #000;
    overflow: hidden;
}

    .masked-image img {
        opacity: 0.5;
        background-position: center;
        background-color: #00afd1;
        -webkit-transition: all .2s ease-in-out;
        -moz-transition: all .2s ease-in-out;
        -o-transition: all .2s ease-in-out;
        -ms-transition: all .2s ease-in-out;
    }

.mask-content {
    margin: 40px;
    position: relative;
}

.bottom-links {
    position: absolute;
    bottom: 10px;
    left: 40px;
}

    .bottom-links p {
        color: #fff;
        padding-right: 20px;
    }

.first-block .bottom-links {
    bottom: inherit;
    padding-left: 18px;
    margin-top: -10px;
}

.t20 {
    font-size: 20px;
}

.grey-border {
    border: 1px solid #d2d4d5;
    border-collapse: collapse;
    overflow: hidden;
}

    .grey-border h2 {
        margin-bottom: 0;
    }

.linespacing {
    line-height: 1.5;
}

.slider-head {
    top: 150px;
    left: 50%;
    font-weight: 300;
    font-size: 36px;
    line-height: 37px;
    color: #21252b;
    white-space: nowrap;
}
.owl-item .item-content .watch-btn {
    margin-top: 12px; 

}


.watch-btn {
    font-size: 20px;
    color: #eed100;
    border-top: 8px solid #eed100;
    padding: 10px 20px 20px;
    border-top: 8px solid #eed100;
   
}
.owl-item .item-content .watch-btn{margin-top:12px;}

.img-container {
    height: 400px;
    position: relative;
    display: block;
    overflow: hidden;
    background: #000;
}

    .img-container img {
        top: 0;
        left: 0;
    }

.text-on-img {
    position: absolute;
    top: 20%;
    width: 100%;
}

.hoverimg {
    position: absolute;
    top: 0;
    left: 0;
}

    .hoverimg img {
        -webkit-transition: all .2s ease-in-out;
        -moz-transition: all .2s ease-in-out;
        -o-transition: all .2s ease-in-out;
        -ms-transition: all .2s ease-in-out;
        opacity: 0.5;
    }

.section2 .container, .section3 .container, .section4 .container, .section5 .container {
    overflow: hidden;
}

.section4 .mask-container, .section5 .mask-container {
    display: table;
}

    .section4 .mask-container .mask-content, .section5 .mask-container .mask-content {
        display: table-cell;
        vertical-align: middle;
        padding: 40px;
        overflow: hidden;
    }

.section1-wrap {
    display: table;
    margin-top: -141px;
}

.section1-aside {
    background: #00afd1;
    padding: 20px 40px 20px;
    height: 541px;
    z-index: 99;
    display: table-cell;
    vertical-align: middle;
}

    .section1-aside small {
        font-size: 16px;
    }

    .section1-aside a {
        color: #004657;
    }

.section2, .section4 {
    height: 375px;
}

.section2-container {
    background-color: white;
    display: table;
}

.section2-content {
    display: table-cell;
    vertical-align: middle;
    padding: 40px;
}

.section2-img-height {
    height: 375px;
    position: inherit;
    overflow: hidden;
}

    .section2-img-height img {
        -webkit-transition: all .2s ease-in-out;
        -moz-transition: all .2s ease-in-out;
        -o-transition: all .2s ease-in-out;
        -ms-transition: all .2s ease-in-out;
    }

.middle-box-wrap {
    display: table;
    min-height: 320px;
}

.middle-box {
    display: table-cell;
    vertical-align: middle;
}

.pressroom img {
    margin-bottom: 15px;
}

.pressroom a {
    text-decoration: none;
    color: #000;
}

.date-on-img {
    background: #00afd1;
    color: #fff;
    display: inline-block;
    padding: 15px;
    position: absolute;
    margin-top: -52px;
}

.press-item {
    overflow: hidden;
}

    .press-item img {
        -webkit-transition: -webkit-transform 0.35s;
        transition: transform 0.35s;
    }

    .press-item:hover img {
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -o-transform: scale(1.1);
        transform: scale(1.1);
    }

.call-data {
    font-weight: 400;
    color: #889091;
}

.modal-header .close {
    opacity: 1;
    color: #00aeef;
}

.modal-footer {
    text-align: center;
}

.modal-content {
    border-radius: 0;
}

.modal-dialog {
    width: 990px;
}

.modal-dialog-small {
    width: 700px;
}

.address {
    background: #00afd1;
    margin-top: -253px;
    overflow: hidden;
}

.address {
    margin-bottom: 0;
    padding: 40px;
}

.half-width-address {
    padding: 20px;
}

.address .lead {
    margin-bottom: 10px;
}

.address address {
    font-size: 16px;
    margin-bottom: 0;
}

.green {
    color: #85be4c;
}

.departments .grey-border {
    min-height: 600px;
}

.departments {
    margin-top: -200px;
}

    .departments h2 {
        color: #fff;
        padding: 20px 20px;
        height: 150px;
    }

    .departments li {
        margin-bottom: 25px;
    }

        .departments li:last-child {
            margin-bottom: 0;
        }

        .departments li a {
            font-weight: 400;
        }

    .departments h3 {
        padding-top: 50px;
    }

.department-parallax .parallax-content {
    display: block;
}

.conference {
    color: #85be4c;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 400;
}

.public {
    color: #b94191;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 400;
}

.training {
    color: #d72738;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 400;
}

.experimental {
    color: #85be4c;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 400;
}

.socialsciences {
    color: #b94191;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 400;
}

.bonejoint {
    color: #d72738;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 400;
}

    .conference i, .public i, .training i, .experimental i, .socialsciences i, .bonejoint i {
        margin-right: 10px;
        vertical-align: middle;
    }

ul.events {
    overflow: hidden;
}

    ul.events li {
        border: 1px solid #d2d4d5;
        display: inline-block;
        font-size: 16px;
        margin: 30px 0 10px;
        width: 48.5%;
        overflow: hidden;
    }

        ul.events li:nth-child(2n+2) {
            float: right;
            margin-right: 0;
        }

        ul.events li a {
            text-decoration: none;
            display: inline-block;
            height: 200px;
            padding: 30px;
            display: inline-block;
            width: 100%;
            vertical-align: middle;
            -webkit-transform: translateZ(0);
            transform: translateZ(0);
            box-shadow: 0 0 1px rgba(0, 0, 0, 0);
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
            -moz-osx-font-smoothing: grayscale;
            position: relative;
            -webkit-transition-property: color;
            transition-property: color;
            -webkit-transition-duration: 0.3s;
            transition-duration: 0.3s;
        }

            ul.events li a:before {
                content: "";
                position: absolute;
                z-index: -1;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: #d2d4d5;
                -webkit-transform: scaleX(0);
                transform: scaleX(0);
                -webkit-transform-origin: 0 50%;
                transform-origin: 0 50%;
                -webkit-transition-property: transform;
                transition-property: transform;
                -webkit-transition-duration: 0.3s;
                transition-duration: 0.3s;
                -webkit-transition-timing-function: ease-out;
                transition-timing-function: ease-out;
            }

            ul.events li a:hover, ul.events li a:focus, ul.events li a:active {
                color: white;
            }

                ul.events li a:hover:before, ul.events li a:focus:before, ul.events li a:active:before {
                    -webkit-transform: scaleX(1);
                    transform: scaleX(1);
                }

.events p {
    line-height: normal;
}

.events .event-title {
    font-size: 20px;
    font-weight: 400;
}

.events .event-details {
    font-size: 16px;
    color: #889091;
}

ul.events-aside li {
    margin-top: 0;
    width: 100%;
}

    ul.events-aside li a {
        height: auto;
    }

ul.people li {
    display: inline-block;
    width: 23%;
    margin: 20px 0.5%;
    text-align: center;
    vertical-align: top;
}

ul.people img {
    height: 170px;
    width: 170px;
}

ul.people p.profile-name {
    font-size: 25px;
    font-weight: 400;
    padding-top: 15px;
}

ul.people p.profile-post {
    line-height: normal;
}

ul.colleagues li {
    display: inline-block;
    width: 30%;
    margin: 20px 0.5%;
    vertical-align: top;
    padding: 5px 0;
}

    ul.colleagues li img {
        width: 60px;
        margin-right: 10px;
        float: left;
    }

.pattern-bg {
    background-image: url('../img/bg-pattern.gif');
}

.pattern-bg-grey {
    background-image: url('../img/bg-pattern-grey.gif');
}

.label-finished {
    color: #fff;
    background: #d72738;
    padding: 35px 15px;
    display: inline-block;
    position: absolute;
    left: 15px;
    top: -35px;
}

.label-Events-wrap {
    width: 1170px;
    margin: 0 auto;
    position: relative;
}

.label-pastEvents {
    color: #fff;
    background: #d72738;
    padding: 35px 15px;
    display: inline-block;
    position: absolute;
    left: 0;
    z-index: 9;
    font-size: 25px;
    font-weight: 400;
}

.event-main {
    height: auto;
}

    .event-main h2 {
        font-size: 50px;
        color: #fff;
        text-align: center;
    }

    .event-main span {
        font-size: 25px;
        color: #fff;
        font-weight: 400;
    }

.giant-big {
    font-size: 250px;
    line-height: normal;
    padding: 0;
    margin: 0;
}

.giant-big-thin {
    font-family: ClanOffcThin, sans-serif;
    font-size: 180px;
    line-height: 1.2;
    padding: 0;
    margin: 0;
}

.giant-big-bg {
    font-size: 420px;
    color: #006077;
    text-align: center;
    padding: 0;
    margin: 0;
}

.thin-p {
    font-family: ClanOffcThin, sans-serif;
    font-size: 72px;
    line-height: 1.2;
    padding: 0;
    margin: 0;
    text-align: left;
}

.thin-35 {
    font-family: ClanOffcThin, sans-serif;
    font-size: 35px;
    line-height: 1.2;
    padding: 0;
    margin: 0;
}

.thin-50 {
    font-family: ClanOffcThin, sans-serif;
    font-size: 50px;
    line-height: 1.2;
    padding: 0;
    margin: 0;
}

.box-cyan {
    background: #00afd1;
    border: 0;
}

.box-blue {
    background: #004657;
    border: 0;
    height: 400px;
}

.box-yellow {
    background: #eed100;
    border: 0;
    height: 400px;
}

.box-green {
    background: #85be4c;
    border: 0;
    height: 400px;
}

.box-grey {
    background: #e3e7e8;
}

.col-blank {
    background: #fff;
}

.rehab-text {
    width: 90%;
    position: absolute;
    top: 30%;
    left: 0;
    text-align: center;
    margin: 0 5%;
}

    .rehab-text p {
        text-align: center;
    }

.links-at-bottom {
    position: relative;
    height: 400px;
}

    .links-at-bottom ul {
        position: absolute;
        bottom: 0;
        padding: 20px 20px 0;
    }

.news-text {
    position: absolute;
    bottom: 10px;
    width: 100%;
}

.date {
    background: #00afd1;
    color: #fff;
    display: inline-block;
    padding: 10px 20px;
}

.premium-box {
    border: 3px solid #eed100;
    background: #eed100;
    overflow: hidden;
}

    .premium-box .padd {
        padding: 37px;
    }

.box-grey img {
    -webkit-transition: -webkit-transform 0.35s;
    transition: transform 0.35s;
}

.box-grey:hover img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

.box-grey > a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    text-indent: 200%;
    white-space: nowrap;
    font-size: 0;
}

.box-grey article {
    padding: 30px;
    background-color: #e3e7e8;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
}

.box-grey:hover article {
    -webkit-transform: translate3d(0,-10px,0);
    transform: translate3d(0,-10px,0);
}

.box-grey article span {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 30px 30px 10px;
    opacity: 0;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
}

.box-grey:hover span {
    opacity: 1;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}

.box-grey article .lead {
    line-height: 32px;
    margin-bottom: 20px;
}

.box-grey .date-on-img {
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
}

.box-grey:hover .date-on-img {
    -webkit-transform: translate3d(0,-10px,0);
    transform: translate3d(0,-10px,0);
}

.table-expanded > thead > tr > th, .table-expanded > tbody > tr > th, .table-expanded > tfoot > tr > th, .table-expanded > thead > tr > td, .table-expanded > tbody > tr > td, .table-expanded > tfoot > tr > td {
    padding: 20px;
}

.table-expanded h5 {
    margin-bottom: 0;
}

.table-expanded th {
    font-size: 18px;
    font-family: ClanOffcBold, sans-serif;
}

.table-vacancies > thead > tr > th, .table-vacancies > tbody > tr > th, .table-vacancies > tfoot > tr > th, .table-vacancies > thead > tr > td, .table-vacancies > tbody > tr > td, .table-vacancies > tfoot > tr > td {
    padding: 15px;
}

.table-vacancies td:first-child {
    width: 20%;
}

.table-vacancies td + td {
    width: 30%;
}

    .table-vacancies td + td + td {
        width: 30%;
        text-align: right;
    }

.table-vacancies td:last-child {
    width: 20%;
    text-align: left;
}

    .table-vacancies td:last-child a {
        width: 130px;
    }

.snippet {
    height: 70px;
    margin-bottom: 0;
}

    .snippet th {
        width: 180px;
    }

    .snippet > tbody > tr > td {
        vertical-align: middle;
        padding-left: 20px;
    }

    .snippet h3 {
        margin-bottom: 0;
        white-space: nowrap;
        padding: 15px;
        text-align: center;
    }

.float-quote {
    padding: 30px 20px;
    margin: 20px 0 20px -60px;
}

.icon-links i {
    width: 55px;
    vertical-align: middle;
}

.icon-links li {
    line-height: 3;
}

.stick-nav {
    z-index: 1;
}

.stick-mobile-nav {
    border: 1px solid #d2d4d5;
    padding: 20px;
}

.mobile-nav {
    z-index: 999999999;
}

.stick-mobile-nav {
    border: none;
    position: absolute;
    width: 96%;
    z-index: 999;
}

.stick-mmenu {
    position: absolute;
    width: 100%;
    /*z-index: 9999;*/
    z-index: 999;
    border-bottom: 1px solid #e3e7e8;
}
/*.searchbar { background:#e3e7e8;}*/

.stretch100 li {
    width: 25%;
}

ul.list-blocks {
    padding: 0;
}

    ul.list-blocks li {
        float: left;
        display: inline-block;
        margin-bottom: 0;
        list-style: none;
        border: 1px solid #d2d4d5;
        font-size: 18px;
        position: relative;
        font-weight: 400;
    }

        ul.list-blocks li.no-link {
            padding: 17px 25px;
        }

        ul.list-blocks li a {
            display: block;
            padding: 17px 25px;
            text-decoration: none;
        }

        ul.list-blocks li.active {
            background: #e3e7e8;
            color: #000;
            max-height: 78px;
        }

            ul.list-blocks li.active::after {
                content: "";
                display: block;
                border: 15px solid #e3e7e8;
                width: 0;
                border-color: #e3e7e8 transparent transparent transparent;
                position: absolute;
                top: 100%;
                left: 45%;
                z-index: 1;
            }

ul.grid-vert {
    padding: 0;
    border: 1px solid #d2d4d5;
}

    ul.grid-vert li {
        list-style: none;
        border-top: 1px solid #d2d4d5;
        margin: 0;
        padding: 20px 30px;
    }

        ul.grid-vert li a.gen-link {
            line-height: 30px;
        }

            ul.grid-vert li a.gen-link:hover {
                padding-bottom: 3px;
                border-bottom: 5px solid;
            }

ul.grid-hover li {
    padding: 0;
}

    ul.grid-hover li a {
        padding: 20px 30px;
        display: block;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        box-shadow: 0 0 1px rgba(0, 0, 0, 0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -moz-osx-font-smoothing: grayscale;
        position: relative;
        -webkit-transition-property: color;
        transition-property: color;
        -webkit-transition-duration: 0.3s;
        transition-duration: 0.3s;
    }

        ul.grid-hover li a:before {
            content: "";
            position: absolute;
            z-index: -1;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: #dddddd;
            -webkit-transform: scaleX(0);
            transform: scaleX(0);
            -webkit-transform-origin: 0 50%;
            transform-origin: 0 50%;
            -webkit-transition-property: transform;
            transition-property: transform;
            -webkit-transition-duration: 0.3s;
            transition-duration: 0.3s;
            -webkit-transition-timing-function: ease-out;
            transition-timing-function: ease-out;
        }

        ul.grid-hover li a:hover:before, ul.grid-hover li a:focus:before, ul.grid-hover li a:active:before {
            -webkit-transform: scaleX(1);
            transform: scaleX(1);
        }

        ul.grid-hover li a:hover {
            color: #00afd1;
        }

    ul.grid-hover li:first-child, .grid-hover-pad {
        padding: 20px 30px !important;
    }

    ul.grid-hover li a.active {
        background-color: #dddddd;
    }

ul.grid-vert li:first-child {
    border-top: 0;
}

ul.grid-vert h3 {
    margin: 0;
}

ul.grid-vert p {
    line-height: normal;
    margin-bottom: 10px;
}

ul.grid-vert a {
    font-size: 20px;
}

ul.grid-vert .single_box_right {
    margin-left: 40px;
    padding-bottom: 0;
    margin-bottom: 0;
}

ul.grid-vert .left_icons [class^="fa"] {
    width: 40px;
    color: #85be4c;
}

ul.grid-vert .grid-hover-pad i {
    width: 40px;
    color: #85be4c;
    font-size: 40px;
}

.thumb {
    width: 52px;
    margin-right: 15px;
}

.video {
    background: #000;
    color: #fff;
    padding: 20px 20px 10px 20px;
}

    .video a:hover, .video a:focus, .video-item a:hover {
        color: #00afd1;
        opacity: .8;
    }

#watch-video-container, #watch-presentation-container {
    background: #000;
}

.video-item, .presentation-item {
    text-align: center;
}

    .video-item img, .presentation-item i {
        padding-bottom: 20px;
    }

    .video-item p, .presentation-item p {
        color: #fff;
        line-height: 22px;
    }

        .video-item p + p, .presentation-item p + p {
            color: #889091;
        }

.video-popup .modal-content {
    background: none;
    border: none;
    box-shadow: none;
}

.video-popup button.close {
    color: #08D7FF;
    opacity: 1;
    text-shadow: none;
}

    .video-popup button.close:focus {
        outline: none;
    }

    .video-popup button.close:hover {
        opacity: 0.8;
    }

.close-btn {
    position: absolute;
    right: 10px;
    margin-top: -70px;
}

.grid {
    margin-bottom: 30px;
}

.portfolioFilter {
    display: inline-block;
}

.statement {
    font-size: 1.9em;
    line-height: normal;
}

.giant-big {
    font-size: 10em !important;
    height: 360px;
    vertical-align: middle;
    padding-top: 90px;
    text-align: center;
}

.giant-big-thin {
    font-size: 12em !important;
}

.big-text {
    font-size: 2.7777em;
}

.box-cyan .giant-padd {
    margin-top: 32%;
}

.thin-p {
    font-size: 2.6em;
}

.statement {
    font-size: 1.9em;
    text-align: left;
}

.thin-50 {
    font-size: 3em;
}

.margin-top-90 {
    margin-top: 90px;
}

.margin-top-80 {
    margin-top: 50px;
}

.giant-big-bg {
    font-size: 21em;
}

.week .giant-big {
    padding-top: 10px;
    font-size: 12em;
    height: 220px;
}

.giant-big1 {
    font-size: 8em !important;
    height: 360px;
    vertical-align: middle;
    padding-top: 90px;
    text-align: center;
}

.no-gutter .margin-top-98 {
    margin-top: 98px;
}

.browse-date, .browse-topic {
    display: none;
    padding: 10px 0 15px 0;
    float: left;
    width: 100%;
}

    .browse-topic ul.dropdown-menu {
        width: 92% !important;
        margin: 0 0 0 4%;
    }

.pagination > li > a, .pagination > li > span {
    padding: 8px 18px;
}

ul.pagination li.active a {
    background: #00afd1;
}

.w83 {
    width: 83% !important;
}

.fsize14 {
    font-size: 14px;
    padding-top: 14px;
}

.minh {
    min-height: 142px;
    margin-bottom: 18px;
}

.mask-container1 {
    height: 316px;
    overflow: hidden;
}

/*Resetting from above*/

/*MARGINS*/
.margin-5 {
    margin: 5px;
}

.margin-10 {
    margin: 10px;
}

.margin-15 {
    margin: 15px;
}

.margin-20 {
    margin: 20px;
}

.margin-25 {
    margin: 25px;
}

.margin-30 {
    margin: 30px;
}

.margin-35 {
    margin: 35px;
}

.margin-40 {
    margin: 40px;
}

.margin-45 {
    margin: 45px;
}
/*margins-top*/
.margin-top-0 {
    margin-top: 0px;
}

.margin-top-5 {
    margin-top: 5px;
}

.margin-top-10 {
    margin-top: 10px;
}

.margin-top-15 {
    margin-top: 15px;
}

.margin-top-20 {
    margin-top: 20px;
}

.margin-top-25 {
    margin-top: 25px;
}

.margin-top-30 {
    margin-top: 30px;
}

.margin-top-35 {
    margin-top: 35px;
}

.margin-top-40 {
    margin-top: 40px;
}

.margin-top-45 {
    margin-top: 45px;
}
/*margins-left*/
.margin-left-5 {
    margin-left: 5px;
}

.margin-left-10 {
    margin-left: 10px;
}

.margin-left-15 {
    margin-left: 15px;
}

.margin-left-20 {
    margin-left: 20px;
}

.margin-left-25 {
    margin-left: 25px;
}

.margin-left-30 {
    margin-left: 30px;
}

.margin-left-35 {
    margin-left: 35px;
}

.margin-left-40 {
    margin-left: 40px;
}

.margin-left-45 {
    margin-left: 45px;
}
/*margins-bottom*/
.margin-bottom-5 {
    margin-bottom: 5px;
}

.margin-bottom-10 {
    margin-bottom: 10px;
}

.margin-bottom-15 {
    margin-bottom: 15px;
}

.margin-bottom-20 {
    margin-bottom: 20px;
}

.margin-bottom-25 {
    margin-bottom: 25px;
}

.margin-bottom-30 {
    margin-bottom: 30px;
}

.margin-bottom-35 {
    margin-bottom: 35px;
}

.margin-bottom-40 {
    margin-bottom: 40px;
}

.margin-bottom-45 {
    margin-bottom: 45px;
}
/*margins-right*/
.margin-right-5 {
    margin-right: 5px;
}

.margin-right-10 {
    margin-right: 10px;
}

.margin-right-15 {
    margin-right: 15px;
}

.margin-right-20 {
    margin-right: 20px;
}

.margin-right-25 {
    margin-right: 25px;
}

.margin-right-30 {
    margin-right: 30px;
}

.margin-right-35 {
    margin-right: 35px;
}

.margin-right-40 {
    margin-right: 40px;
}

.margin-right-45 {
    margin-right: 45px;
}

.rounded {
    border-radius: 4px;
}

.no-rounded {
    border-radius: 0px;
}

.no-padding {
    padding: 0;
}

.no-top-padding {
    padding-top: 0;
}

a.no-uline {
    text-decoration: none;
}

.no-bot-padding {
    padding-bottom: 0;
}

.height100 {
    height: 100%;
}

.vmiddle {
    display: inline-block;
    vertical-align: middle;
    float: none;
}

img.no-opacity {
    opacity: 1;
}

.row.no-gutter {
    margin-left: 0;
    margin-right: 0;
}

    .row.no-gutter [class*='col-']:not(:first-child),
    .row.no-gutter [class*='col-']:not(:last-child) {
        padding-right: 0;
        padding-left: 0;
    }

.mobile-search-content {
    background: #d2d4d5;
    float: left;
    width: 100%;
    display: block;
    padding: 15px 0 20px 0;
    margin: 0;
}

.closemenu:before {
    content: '\f00d' !important;
}

.menuhide {
    display: none !important;
}

li.zm-logo:hover {
    background: none;
}

.zm-right-item {
    position: absolute;
    z-index: 1;
}

.grid-vert img.thumb {
    width: 42px;
}

.dropdown-arrow {
    display: inline-block;
    width: 20px;
    height: 15px;
    float: right;
    margin-left: 2px;
    vertical-align: middle;
    background: url(../img/select-icons.png) no-repeat 0px 7px;
}

.dropdown-toggle {
    text-align: left;
}

.open ul.dropdown-menu {
    width: 100%;
}

.datepicker {
    border-radius: 0;
    font-family: 'Roboto', sans-serif;
    padding: 5px!important;
    z-index: 9999 !important;
}

.datepicker-dropdown {
    box-shadow: none;
}

.datepicker .table-condensed > tbody > tr > td {
    padding: 6px 15px;
}

.datepicker-switch {
    color: rgb(0, 175, 209);
}

.day {
    color: #889091;
    font-weight: bold;
}

th.prev {
    background: url(../img/date-arrows.png) no-repeat 18px 9px !important;
    font-size: 0;
}

    th.prev:hover {
        background: #e3e7e8 url(../img/date-arrows.png) no-repeat 18px 9px !important;
    }

.next {
    background: url(../img/date-arrows.png) no-repeat -20px 9px !important;
    font-size: 0;
}

th.next:hover {
    background: #e3e7e8 url(../img/date-arrows.png) no-repeat -20px 9px !important;
}

.datepicker td, .datepicker th {
    width: 35px;
}

.datepic {
    background: #fff url(../img/datepic.png) no-repeat right 3px top 10px;
    cursor: pointer;
    padding-left: 10px;
}

th.dow {
    color: #565656;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    padding: 8px 0 !important;
    border-radius: 0;
}

.datepicker table tr td.old, .datepicker table tr td.new {
    color: #D7D7D7;
}

.datepicker table tr td.today {
    background-color: #00AFD1 !important;
    color: #fff !important;
}

.ph-code {
    min-width: 84px;
    margin-right: 0 !important;
    border: 1px solid rgb(204, 204, 204) !important;
}

.search a {
    background: url(../img/search-icon.png) no-repeat center 12px;
    width: 38px;
    height: 38px;
}

.zetta-menu .fa-search {
    font-size: 0;
}

.video-cam {
    background: url(../img/video-icon.png) no-repeat left 1px;
    width: 36px;
    height: 27px;
    float: right;
    margin-left: 4px;
}

.pics {
    background: url(../img/camera-icon.png) no-repeat left 1px;
    width: 36px;
    height: 27px;
    float: right;
    margin-left: 4px;
}

.docs {
    background: url(../img/doc-icon.png) no-repeat left 2px;
    width: 36px;
    height: 28px;
    float: right;
}

.packs-count {
    float: left;
    font-size: 20px;
    color: #000;
}

.bgcolor-aspire .packs-count, .box-cyan .packs-count {
    color: #fff;
}

ul.media-links {
    margin: 0;
    padding: 0;
    border-top: 1px solid #d2d4d5;
}

    ul.media-links li {
        padding: 15px 0;
        width: 50%;
        float: left;
        text-align: center;
        list-style: none;
        margin: 0;
    }

        ul.media-links li:first-child {
            border-right: 1px solid #d2d4d5;
        }

        ul.media-links li a:focus, .portfolioFilter a:focus {
            text-decoration: none;
            outline: none;
        }

.portfolioFilter .pi-btn-cyan {
    padding: 10px 18px;
}

.no-flow {
    overflow: hidden;
}

.zetta-menu > li.active {
    background: #fafafa;
}

nav .mobinav > ul > li li a.active {
    background-color: #DFDFDF;
}

ul.grid-hover div.single_box_left img.thumb {
    width: 60px;
}

.list-emp-img {
    margin-top: 0;
    margin-left: 60px !important;
}

/* Custom Media Queries*/

@media (min-width: 0px) and (max-width: 768px) {
    ul.zetta-menu {
        background: none;
    }

    li.search {
        position: absolute !important;
        top: 0 !important;
        left: 0% !important;
        width: 100%;
        text-align: right;
        z-index: 1 !important;
    }

        li.search a {
            float: right;
            width: 65px;
        }

    .mobile-search {
        display: none;
    }

    li.droparrow.search:hover > a::before {
        left: 40% !important;
    }

    li.search {
        display: block !important;
        background: none !important;
    }

    .box-cyan {
        margin-left: 0;
        width: 100%;
    }

        .box-cyan .giant-big-thin {
            font-size: 9em;
        }

        .box-cyan .thin-p {
            font-size: 3.6em !important;
        }

    .no-gutter .cyan-link {
        display: inline-block !important;
        margin-bottom: 10px;
    }

    .giant-big {
        height: 340px;
    }

    .margin-topm-60 {
        margin-top: 0 !important;
    }

    .no-gutter .margin-top-98 {
        margin-top: 10px;
    }

    .week .giant-big {
        margin-top: 0;
    }

    .week .margin-top-30 {
        margin-top: 10px !important;
    }

    .week .col-sm-offset-2 {
        margin-left: 0;
    }

    .section2-img-height .padd {
        padding: 0;
        margin: 0 15px;
    }

    .item-content h2 {
        font-size: 1.8em;
    }

    .item-content p {
        text-align: center !important;
    }

    ul.list-blocks li {
        font-size: 16px;
    }

        ul.list-blocks li.no-link, ul.list-blocks li a {
            padding: 8px 12px;
        }

    .thin-p {
        font-size: 2.5em;
    }

    .hidden-sm {
        display: none;
    }

    .mask-content h3 {
        word-break: break-word;
    }

    .mask-container1 {
        height: auto !important;
    }

    .first-block {
        height: auto;
    }

        .first-block .bottom-links {
            position: relative;
            padding: 0;
        }

    .section1 .no-gutter {
        margin-left: -15px;
        margin-right: -15px;
    }

    .section1-aside {
        height: auto;
        margin-top: 0;
    }

    .section2 .container {
        background: #fff;
    }

    .section2-content, .section2 {
        height: auto;
    }

    #people-tabs .tab-content > .tab-pane {
        display: block;
    }

    nav .mobinav {
        display: none;
    }

        nav .mobinav > ul > li div > a {
            position: absolute;
            font-weight: 200;
            color: #ae0775;
            font-size: 60px;
            line-height: 70px;
            top: -75px;
            right: 20px;
            padding: 0;
        }

    nav {
        font: 500 18px ClanOffc,Helvetica,Arial,sans-serif;
    }

        nav > div.wrapper {
            position: relative;
            z-index: 4;
            font-size: 0;
            text-align: center;
        }

        nav > div:after {
            content: '';
            display: block;
            clear: both;
        }

        nav > div a {
            color: #003b85;
        }

            nav > div a:hover {
                color: #ae0775;
            }

            nav > div a img {
                display: block;
            }

        nav > div > a.menu {
            display: none;
        }

        nav > div > a.logo {
            position: relative;
            float: left;
            margin: 0 20px 0 0;
            width: 200px;
            height: 55px;
            text-indent: -9999px;
            overflow: hidden;
        }

        nav > div > a.search {
            position: relative;
            float: right;
            margin: 30px 0;
            width: 36px;
            height: 36px;
            text-indent: -9999px;
            overflow: hidden;
        }

            nav > div > a.search:before {
                background-image: url('../img/search-icon.png');
                width: 30px;
                height: 30px;
            }

            nav > div > a.search:after {
                background-image: url('../img/search-icon.png');
                width: 30px;
                height: 30px;
            }

        nav > div > a:before, nav > div > a:after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: transparent none no-repeat center top;
            background-size: cover;
            transition: opacity .5s linear;
            -webkit-transition: opacity .5s linear;
        }

        nav > div > a:after {
            opacity: 0;
        }

        nav > div > a:hover:after {
            opacity: 1;
        }

        nav > div > a:hover:before {
            opacity: 0;
        }

        nav.search > div > a.search:after {
            opacity: 1;
        }

        nav.search > div > a.search:before {
            opacity: 0;
        }

        nav > div > div {
            display: inline-block;
            width: 1050px;
        }

        nav > div ul {
            display: table;
            width: 1050px;
            padding-top: 25px;
            margin: 0 auto;
            text-align: center;
            table-layout: fixed;
            font-size: 18px;
        }

        nav > div li {
            display: table-cell;
            vertical-align: middle;
            position: relative;
            color: #003b85;
            padding-bottom: 48px;
            position: relative;
            overflow: hidden;
        }

            nav > div li.current:after {
                content: '';
                position: absolute;
                left: 50%;
                bottom: 0;
                margin-left: -60px;
                width: 120px;
                border-bottom: 10px solid #ae0775;
            }

            nav > div li span {
                display: block;
                overflow: hidden;
                padding: 0 30px;
            }

        nav > div > a.menu {
            float: left;
            text-indent: -9999px;
            display: block;
            width: 28px;
            height: 25px;
            margin: 24px 0 0 20px;
            position: relative;
            cursor: pointer;
            background: url(../img/mmenu.gif) no-repeat left top;
        }

            nav > div > a.menu, nav > div > a.menu:before, nav > div > a.menu:after {
                transition: background .5s,border .5s;
                -webkit-transition: background .5s,border .5s;
            }

        nav > div > a.logo {
            display: inline-block;
            float: none;
            margin-top: 10px;
        }

        nav > div > a.search {
            margin: 22px 12px 12px 0;
        }

        nav > div div, nav .sub {
            display: none;
        }

        nav > div.wrapper {
            background: #fff;
        }

        nav .mobinav {
            display: block;
            overflow: hidden;
            height: 0;
            transition: height 1s ease-in-out;
            -webkit-transition: height 1s ease-in-out;
        }

            nav .mobinav > ul > li {
                border-top: 1px solid #c4c6c7;
            }

                nav .mobinav > ul > li a {
                    font-size: 20px;
                    line-height: 20px;
                    padding: 24px 0 22px;
                    text-align: center;
                    display: block;
                    color: #063f87;
                    background: #d2d4d5;
                    font-weight: bold;
                    text-decoration: none;
                }

                    nav .mobinav > ul > li a:hover, nav .mobinav > ul > li a:focus {
                        text-decoration: none;
                        outline: none;
                        opacity: 1;
                        background-color: #DFDFDF;
                    }

                nav .mobinav > ul > li:first-child {
                    border-top: 0;
                    position: relative;
                }

                    nav .mobinav > ul > li:first-child:before {
                        z-index: 2;
                        content: '';
                        position: absolute;
                        top: 0;
                        left: 18px;
                        border-top: 15px solid #fff;
                        border-left: 15px solid transparent;
                    }

                    nav .mobinav > ul > li:first-child:after {
                        z-index: 2;
                        content: '';
                        position: absolute;
                        top: 0;
                        left: 33px;
                        border-top: 15px solid #fff;
                        border-right: 15px solid transparent;
                    }

                nav .mobinav > ul > li div {
                    height: 0;
                    overflow: visible;
                    position: relative;
                }

                    nav .mobinav > ul > li div.open {
                        height: auto;
                        transition: height 1s ease-in-out;
                        -webkit-transition: height 1s ease-in-out;
                    }

                    nav .mobinav > ul > li div > a {
                        position: absolute;
                        background: transparent;
                        text-decoration: none;
                    }

                        nav .mobinav > ul > li div > a:hover, nav .mobinav > ul > li div > a:focus {
                            background: transparent;
                        }

                        nav .mobinav > ul > li div > a:after {
                            content: '';
                            background: url(../img/mmenu-left-arrow.png) no-repeat top right;
                            width: 14px;
                            height: 26px;
                            display: inline-block;
                            top: -60px;
                            right: 20px;
                            -webkit-transform: rotate(270deg);
                            -ms-transform: rotate(270deg);
                            transform: rotate(270deg);
                        }

                    nav .mobinav > ul > li div.open > a:after {
                        -webkit-transform: rotate(90deg);
                        -ms-transform: rotate(90deg);
                        transform: rotate(90deg);
                    }

                nav .mobinav > ul > li ul {
                    height: 0;
                    overflow: hidden;
                }

                nav .mobinav > ul > li .open ul {
                    height: auto;
                }

                nav .mobinav > ul > li.current ul {
                    height: auto;
                }

                nav .mobinav > ul > li li:first-child {
                    border-top: 0;
                }

                nav .mobinav > ul > li li.current a {
                }

        nav .searchbar fieldset .wrapper:before {
            content: '';
            position: absolute;
            top: 0;
            right: 15px;
            border-left: 15px solid #fff;
            border-bottom: 15px solid transparent;
        }

        nav .searchbar fieldset .wrapper:after {
            content: '';
            position: absolute;
            top: 0;
            right: 30px;
            border-right: 15px solid #fff;
            border-bottom: 15px solid transparent;
        }

    .searchbar {
        display: none;
        background: #e3e7e8;
    }

        .searchbar .wrapper {
            padding: 30px 20px 30px 20px;
            overflow: hidden;
        }

    nav .searchbar fieldset .wrapper > p {
        float: left;
        font-weight: bold;
        font-size: 30px;
        line-height: 40px;
        padding: 10px 0;
        width: 100%;
    }

    .mobinav ul {
        margin: 0;
        padding: 0;
    }

        .mobinav ul li {
            list-style: none;
            margin-bottom: 0px;
        }

        .mobinav ul ul li {
            margin-bottom: 0;
        }

            .mobinav ul ul li:first-child {
                padding: 5px;
                font-weight: bold;
                color: #889091;
                text-align: center;
            }

    div.open {
        background: #c4c6c7;
    }

    nav .mobinav > ul > li div.open > ul {
        background: #c4c6c7;
        padding: 15px 0 15px 0;
    }

    nav .mobinav > ul > li li a {
        padding: 4px 0;
        color: #000;
        font-weight: 500;
        background: none;
        font-size: 16px;
        margin-bottom: 1px;
    }

    .visible-xs {
        display: block!important;
    }

    nav.navbar {
        display: none !important;
    }

    nav > div > a.mmenu-close {
        background: url(../img/mmenu-close.gif) no-repeat left top;
    }

    .section3 .row .col-sm-12,
    .section4 .row .col-sm-12,
    .section5 .row .col-sm-12 {
        padding-left: 0;
        padding-right: 0;
    }

    .section2 .no-gutter {
        margin-left: -15px;
        margin-right: -15px;
    }

    .section1-wrap {
        margin-top: 0;
    }

    .main-news .pattern-bg-grey {
        margin-bottom: 30px;
    }

    .contact-info li:nth-child(2) {
        float: right;
        margin-right: 0;
    }

    .language-login li:nth-child(2) {
        float: left;
        margin-left: 0;
    }

    blockquote {
        margin: 20px;
    }
}

/* For IE */
@media (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .section4 { /*margin-left:-30px;*/
    }

        .section4 .col-sm-12 .masked-image {
            width: 100%;
        }

    .section5 .col-sm-12 .masked-image {
        width: 100%;
    }
}

@media (min-width: 0px) and (max-width: 768px) and (-ms-high-contrast: active), (min-width: 0px) and (max-width: 768px) and (-ms-high-contrast: none) {
    .giant-big {
        padding-top: 70px;
    }

    .box-blue h2.giant-big-bg {
        padding-top: 40px;
    }

    .week .giant-big {
        padding-top: 30px;
    }

    .section4 {
        margin-left: -0px;
    }
}

@media (min-width: 769px) and (max-width: 992px) and (-ms-high-contrast: active), (min-width: 769px) and (max-width: 992px) and (-ms-high-contrast: none) {
    .section4 {
        margin-left: -0px;
    }

        .section4 .masked-image {
            width: 100%;
        }
}

@media (min-width: 480px) and (max-width: 768px) {
    .no-overflow-xs {
        overflow: visible;
    }

    ul.people img {
        height: 120px;
        width: 120px;
    }
}

@media (max-width: 480px) {
    .no-overflow-xs {
        overflow: visible;
    }

    .search-box {
        height: 40px;
        width: 65% !important;
    }

    .search-btn {
        height: 40px;
    }

    .stretch100 li {
        width: 50%;
    }

    ul.people-tab li {
        min-height: 70px !important;
    }

    ul.people img {
        height: 55px;
        width: 55px;
    }

    .owl-carousel.slider .item .item-content h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 24px;
    }

    .t20 {
        font-size: 16px;
        line-height: 26px;
    }

    a.yellow-link {
        font-size: 16px;
        line-height: 20px;
    }

    .box-cyan .thin-p {
        font-size: 32px !important;
    }

    .giant-big {
        line-height: auto;
        height: auto !important;
    }

    .giant-big1 {
        line-height: auto;
        height: auto !important;
    }

    .giant-big-bg {
        font-size: 200px;
    }

    .thin-50 {
        font-size: 32px;
    }

    ul.events li a {
        height: auto;
    }

    .event-main h2 {
        font-size: 32px;
    }

    .event-main span {
        font-size: 18px;
    }

    .bottom-links {
        bottom: auto;
    }
}

@media (max-width: 320px) {
    h1 {
        font-size: 2em;
    }

    .zetta-menu > li.zm-logo img {
        height: 80%;
    }

    h2 {
        font-size: 1.5em;
    }

    .t20, a.yellow-link, a.green-link, a.cyan-link {
        font-size: 16px;
        line-height: normal;
    }

    .mask-content {
        margin: 5%;
    }

    .timeline-centered .timeline-entry .timeline-entry-inner {
        margin-left: -18px;
    }

    .giant-big {
        height: 250px;
    }

    .giant-big {
        font-size: 11em !important;
    }

    .box-cyan .giant-big-thin {
        font-size: 6em !important;
    }

    .box-cyan .thin-p {
        font-size: 2.6em !important;
    }

    .giant-big-bg {
        font-size: 8em !important;
    }

    .thin-50 {
        font-size: 1.0em;
        margin-top: 50px;
    }

    .thin-p {
        font-size: 2.0em;
    }

    .breadcrumbs {
        padding-top: 75px !important;
    }

    .owl-carousel.slider .item .item-content h1 {
    }
}

@media (min-width: 281px) and (max-width: 640px) {
    .mobile-text-center {
        text-align: center !important;
    }
    .copyrights ul li:first-child {
        width:98%;
    }
}

@media (min-width: 321px) and (max-width: 768px) {
    .facilities-lPanel {
        height: 190px !important;
    }

    .zetta-menu .line {
        display: none;
    }

    .department-parallax {
        height: 200px;
    }

    .departments .grey-border {
        min-height: inherit;
    }

    .departments {
        margin-top: 0;
    }

        .departments h2 {
            color: #000;
            padding: 5px 20px;
            height: auto;
        }

        .departments li {
            margin-bottom: 10px;
        }

    ul.events li {
        width: 100%;
    }

    ul.people li {
        width: 45%;
    }

    ul.colleagues li {
        width: 45%;
    }

    .col-blank {
        display: none;
    }

    .float-quote {
        padding: 30px 20px;
        margin: 20px 0 20px 0;
    }

    ul.zetta-menu li {
        background: #d2d4d5;
        text-align: center;
        border-bottom: 1px solid #c4c6c7;
    }

        ul.zetta-menu li:first-child {
            border: none;
        }

        ul.zetta-menu li a {
            text-align: center;
            display: block;
            padding: 10px 0;
        }

        ul.zetta-menu li.zm-logo {
            background: none;
            z-index: 9;
        }

    .zetta-menu > li.zm-content-full > div ul li a:hover {
        padding-bottom: 0;
        border-bottom: 0;
    }

    .owl-carousel.slider .item .item-content {
        z-index: 9;
        position: relative;
        width: 100%;
        height: 500px;
        display: table-cell;
        vertical-align: middle;
        text-align: center;
        left: auto;
    }

        .owl-carousel.slider .item .item-content h1, .owl-carousel.slider .item .item-content .caption {
            text-align: center;
        }

    .owl-carousel.slider .item {
        background-position: left;
    }
}

@media (min-width: 769px) and (max-width: 992px) {
    .department-parallax {
        height: 200px;
    }

    .departments {
        margin-top: 0;
    }

        .departments h2 {
            color: #000;
            padding: 5px 20px;
            height: auto;
        }

        .departments .grey-border {
            min-height: 500px;
        }

    ul.people li {
        margin: auto 4%;
    }

    ul.colleagues li {
        width: 48%;
    }

    .section1-aside {
        height: auto;
        margin-top: 0;
    }

    .owl-carousel.slider .item .item-content {
        padding-bottom: 13%;
    }

        .owl-carousel.slider .item .item-content h1 {
            font-size: 35px;
        }
}

@media (min-width: 992px) and (max-width: 1200px) {
    .section1-aside {
        height: 537px;
    }

    ul.people-tab li {
        min-height: 86px;
    }

    .main-news .news-text {
        bottom: 18%;
    }

    ul.colleagues li {
        width: 45%;
    }
}

.modal-dialog {
    position: relative;
    width: auto;
    max-width: 900px;
    margin: 10px;
}

.modal-sm {
    max-width: 300px;
}

.modal-lg {
    max-width: 900px;
}

@media (min-width: 768px) {
    .modal-dialog {
        margin: 30px auto;
    }
}

@media (min-width: 320px) {
    .modal-sm {
        margin-right: auto;
        margin-left: auto;
    }
}

@media (min-width: 620px) {
    .modal-dialog {
        margin-right: auto;
        margin-left: auto;
    }

    .modal-lg {
        margin-right: 10px;
        margin-left: 10px;
    }
}

@media (min-width: 920px) {
    .modal-lg {
        margin-right: auto;
        margin-left: auto;
    }
}

@media (min-width: 990px) {
    /*.section4 .mask-content .col-md-offset-1{margin-left: 11.555%;}*/
}

@media (max-width: 991px) {
    .main-news .news-text, .main-news .masked-image {
        position: relative;
    }

    .main-news .news-text {
        bottom: 0;
        margin-top: 30px;
    }

    .main-news .masked-image img {
        opacity: 1;
    }

    .main-news .mask-container {
        height: auto;
        overflow: inherit;
    }

    .main-news h2, .main-news p {
        color: #000;
    }

    .section1-aside {
        padding: 40px 40px 45px;
    }

    ul.people-tab li {
        min-height: 100px;
    }
}

@media (max-width: 360px) {
    nav > div > a.logo {
        width: 150px !important;
        height: 35px !important;
        margin-top: 18px;
        margin-left: 10px;
    }

    #footer .btn-lg {
        font-size: 14px;
    }

    nav > div > a.search {
        margin-right: 8px;
    }

    ul.colleagues li {
        width: 100%;
    }
}

.accordion-heading {
    position: relative;
}

    .accordion-heading a {
        padding: 8px 10px;
        background-color: #ECECEC;
        display: block;
        font-size: 20px;
        margin-bottom: 1px;
    }

        .accordion-heading a:hover, .accordion-heading a.active {
            background-color: #00afd1;
            color: #fff;
        }

.accordion-inner {
    background: #fff;
    border: 1px solid #ECECEC;
    padding: 10px;
    margin-top: -1px;
    margin-bottom: 1px;
    line-height: 30px;
    font-size: 18px;
}

.accordion-heading > a:after {
    color: #00AFD1;
    content: '-';
    position: absolute;
    font-size: 22px;
    right: 18px;
    top: 8px;
}

.accordion-heading > a.collapsed:after {
    content: '+';
    right: 14px;
    top: 8px;
    font-size: 22px;
}

.accordion-heading > a:hover:after, .accordion-heading > a.collapsed:hover:after {
    color: #fff;
}

.tab-body-cont {
    position: relative;
    min-height: 480px;
}

    .tab-body-cont img {
        position: absolute;
        left: 0px;
        right: 0px;
    }

    .tab-body-cont .inner-cont {
        padding: 20px 20px 10px 20px;
        margin: 0 20px;
        z-index: 1;
        position: absolute;
        bottom: 20px;
        background: url(../img/white-strip.png) repeat top left;
        max-height: 180px;
        overflow-y: auto;
    }

        .tab-body-cont .inner-cont > p {
            font-size: 17px;
            line-height: 30px;
        }

@media (min-width: 320px) and (max-width: 990px) {
    .tab-body-cont .inner-cont { /*position: inherit;top:20px;*/
    }

    .section1-wrap {
        margin-top: 0;
    }
}

.about-block {
    height: 450px;
    background-size: cover;
    display: table;
    width: 100%;
}

.cont-img {
    margin: 0 0 10px 25px;
}

.thumbnail {
    border: none;
    border-radius: 0;
}

.logo-title {
    text-align: center;
    margin-top: 5px;
    color: #0279C0;
    font-weight: 500;
    line-height: 25px;
}

.txt-justify {
    text-align: justify;
}

.txt-center {
    text-align: center;
}

ul.publication-list li {
    padding: 20px 20px 15px 20px;
}

.para-height {
    min-height: 88px;
}

.scientific-lectures h4 {
    margin-bottom: 30px;
}

.facilities-lPanel {
    height: 480px;
    overflow-y: scroll;
}

.facilities-leftblock {
    height: 412px;
    overflow: hidden;
    margin-bottom: 0 !important;
}

    .facilities-leftblock > li > a {
        margin-right: 0px;
    }

#scrollup, #scrolldown {
    display: block;
    text-align: center;
    background-color: #E3E7E8;
    cursor: pointer;
}

    #scrollup:hover, #scrolldown:hover {
        background-color: #CFD1D2;
    }

#scrollup {
    border-bottom: 1px solid #fff;
}

#scrolldown {
    border-top: 1px solid #fff;
}

.up-arrow {
    background: url(../img/mmenu-left-arrow.png) no-repeat 1px center;
    width: 14px;
    height: 20px;
    display: inline-block;
    margin-top: 8px;
    webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.down-arrow {
    background: url(../img/mmenu-left-arrow.png) no-repeat 1px center;
    width: 14px;
    height: 20px;
    display: inline-block;
    margin-top: 8px;
    webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
}

@media (min-width: 320px) and (max-width: 768px) {
    .facilities-leftblock {
        height: 190px;
    }
}

.emp .padd {
    min-height: 125px;
    padding: 0;
}

.youtube {
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: inline-block;
    overflow: hidden;
    transition: all 200ms ease-out;
    cursor: pointer;
}

    .youtube .play {
        background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYxIDY0LjE0MDk0OSwgMjAxMC8xMi8wNy0xMDo1NzowMSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNS4xIFdpbmRvd3MiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6MkE4MURENTM3MzFDMTFFNTgxMkQ5OTU4MDIwQzcwOEQiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6MkE4MURENTQ3MzFDMTFFNTgxMkQ5OTU4MDIwQzcwOEQiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDoyQTgxREQ1MTczMUMxMUU1ODEyRDk5NTgwMjBDNzA4RCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDoyQTgxREQ1MjczMUMxMUU1ODEyRDk5NTgwMjBDNzA4RCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PlO/ywIAAARCSURBVHja7Fs9TBRBFJ43u8vd8XugQsK/CicmmmssSEwkJjZaWGBMLGzsNCYU2trZCFETaCwsqKyQxsbESokmJIYEQ4KGGBEFE1Tg/rjz4HbGb5bzQDk0Jt6x3uyGvZm9t7vv3jfve/Nm90FSSqbzRh4AHgAeAB4AHgAeABoD8DvhbFubnwWDXVzKFkG0l0lZx4hqIKrGhVVSiErGeQAQVuCcAGR+IYQP3/k4Y2U4zxJSWpBZAn3OuQE5h5xDzrfqEupPCTm30dgQrkNnhhOtM9VnbA3yNORp3DMFXSn8hlXsSchWoSMuiWL4jVHIljGyX3Gzj5lE4k3o7dv0XwEwGw6fhHHXoewUDn3/+SCnMUBPAM6dA5OTz34LwExHh6+svPweELxUiu4Out9fsqyrxyYm1rcBIHt6zLlI5BG6p0uZ8/CGR+2hUC+NjNjqOMfD95HIjVI3PjviZ+dmZq795AFzR4/W2ggYQKNCi9AvRCRg2y0N09MJxwMQIC5qY7zj9zyYtKzzmxSQsle3+R+z3DmHAh+6uwNidTUKVCytAGAsgWAYpPfh8HEcP9cxC7RtO8wREA7rmgabhtHFkfQ06goAUugmFQQbCqmkfmiImc3Nbk0NGziCwb5C6gicOMEaR0dZ8PJlRj53LSuQBAEAoj0FVwTDawCAAiLQ0+MeByCqU8vS2qIFHVChfnDQTbSo5QgENcXW6hZagAI1ygMqd0W5C2iBwa9SQbB8V+fiXaQFBr+cIyf2u4GMu0IL2K6ezpmumZaKTAsB27krU9Qi0QLGG64EoIi0IFcDUAxauB6AX3L3f08319ucTrPo8DCLYVd9rQBIjY2x5f5+lllYKBi+rgQgMz/PlgcGHAAKnAnaJpKBdbc8Dyy0u28LgEJkTBj/DX1LA3fPgwBPKQoksVeVurvvQIGkiQ/1dqSh1N09rwNIGVceENXC3fMNAlFMAbCig7vvsK2YJMQS47zk3T1vmi3lkgk3+EIauHt+BGhRrYcXC6njc1+fe9Ns2K58/xPTdONEC1waxrSuACD+vd54PZ5KRdhGWZs+mxCxtqmpWt46Pp7CwQvdRl9y/pTUY8FsTjyqHf+ldGzm2Wj4AE1cG+9X879lPcwBsP/VqwhA6NcFAEPKm00TE8kcAGprD4VuqSLCkuc+Yw9bp6aGclTITQkjI3Z7MKgqp+46hcul5vYbj1QHMdAXyMEha3e+k2ePHOlihnEFl5whoo7/3Pa4FOKxYRi3WycnX27LBf509etDh6r8Pl8HFg4HsW5Q1SRBgFItpawkVVxJFGDZUnm0frTqDYZPlc3jvDLaLJU3nZYxEzLTKZ3feChLW8vkCS0SlAyGKIN+Bvdcgy5V8b2G2SqN42/ZUnk1fSdxTkKVvEFPHN/HcM+ogVUejF6C0R+aOzvf/agL3mFB5P3HiAeAB4AHgAeAB4AHgKbbdwEGAN6oDaNYkWGyAAAAAElFTkSuQmCC") no-repeat center center;
        background-size: 64px 64px;
        position: absolute;
        height: 100%;
        width: 100%;
        opacity: .8;
        filter: alpha(opacity=80);
        transition: all 0.2s ease-out;
    }

        .youtube .play:hover {
            opacity: 1;
            filter: alpha(opacity=100);
        }

.medical {
    overflow: hidden;
}


.accred-logo {
    min-height: 366px;
}

