/*------------------------------------------------------------------
[Master Stylesheet]

Project:	Andersen Html Template
Version:	1.0

[Table of contents]

1. Grid
2. Font-Awesome
3. Border-radius
4. Transition
5. Main Color
6. General
7. Header
8. Headings
9. Content
10. Gallery
11. Supersized
12. Blog Listing Page
13. Retina
14. Responsive

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

/* Grid */
body, html {
    padding: 0;
    margin: 0;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased
}

[class*=span] {
    float: left;
    min-height: 1px;
    margin-left: 30px
}

.container {
    width: 96%;
    margin-right: auto;
    margin-left: auto
}

.container:after, .container:before {
    display: table;
    line-height: 0;
    content: ""
}

.container:after {
    clear: both
}

.row {
    width: 100%
}

.row:after, .row:before {
    display: table;
    line-height: 0;
    content: ""
}

.row:after {
    clear: both
}

.row [class*=span]{display:block;float:left;width:100%;min-height:30px;margin-left:4.1666666666667%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}

.row [class*=span]:first-child {
    margin-left: 0
}

.row .span12{width:100%}.row .span11{width:91.304347826087%}.row .span10{width:82.608695652174%}.row .span9{width:73.913043478261%}.row .span8{width:65.217391304348%}.row .span7{width:56.521739130435%}.row .span6{width:47.826086956522%}.row .span5{width:39.130434782609%}.row .span4{width:30.434782608696%}.row .span3{width:21.739130434783%}.row .span2{width:13.04347826087%}.row .span1{width:4.3478260869565%}

.clearfix:after, .clearfix:before {
    display: table;
    line-height: 0;
    content: ""
}

.clear, .clearfix:after {
    clear: both
}

/* Font-Awesome */
@font-face {
    font-family: 'FontAwesome';
    src: url('fonts/fontawesome-webfont.eot?v=4.1.0');
    src: url('fonts/fontawesome-webfont.eot?#iefix&v=4.1.0') format('embedded-opentype'), url('fonts/fontawesome-webfont.woff?v=4.1.0') format('woff'), url('fonts/fontawesome-webfont.ttf?v=4.1.0') format('truetype'), url('fonts/fontawesome-webfont.svg?v=4.1.0#fontawesomeregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

.fa {
    display: inline-block;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* makes the font 33% larger relative to the icon container */
.fa-lg {
    font-size: 1.33333333em;
    line-height: 0.75em;
    vertical-align: -15%;
}

.fa-2x {
    font-size: 2em;
}

.fa-3x {
    font-size: 3em;
}

.fa-4x {
    font-size: 4em;
}

.fa-5x {
    font-size: 5em;
}

.fa-fw {
    width: 1.28571429em;
    text-align: center;
}

.fa-ul {
    padding-left: 0;
    margin-left: 2.14285714em;
    list-style-type: none;
}

.fa-ul > li {
    position: relative;
}

.fa-li {
    position: absolute;
    left: -2.14285714em;
    width: 2.14285714em;
    top: 0.14285714em;
    text-align: center;
}

.fa-li.fa-lg {
    left: -1.85714286em;
}

.fa-border {
    padding: .2em .25em .15em;
    border: solid 0.08em #eeeeee;
    border-radius: .1em;
}

.pull-right {
    float: right;
}

.pull-left {
    float: left;
}

.fa.pull-left {
    margin-right: .3em;
}

.fa.pull-right {
    margin-left: .3em;
}

.fa-spin {
    -webkit-animation: spin 2s infinite linear;
    -moz-animation: spin 2s infinite linear;
    -o-animation: spin 2s infinite linear;
    animation: spin 2s infinite linear;
}

@-moz-keyframes spin {
    0% {
        -moz-transform: rotate(0deg);
    }
    100% {
        -moz-transform: rotate(359deg);
    }
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(359deg);
    }
}

@-o-keyframes spin {
    0% {
        -o-transform: rotate(0deg);
    }
    100% {
        -o-transform: rotate(359deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

.fa-rotate-90 {
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}

.fa-rotate-180 {
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.fa-rotate-270 {
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
    -webkit-transform: rotate(270deg);
    -moz-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    transform: rotate(270deg);
}

.fa-flip-horizontal {
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
    -webkit-transform: scale(-1, 1);
    -moz-transform: scale(-1, 1);
    -ms-transform: scale(-1, 1);
    -o-transform: scale(-1, 1);
    transform: scale(-1, 1);
}

.fa-flip-vertical {
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
    -webkit-transform: scale(1, -1);
    -moz-transform: scale(1, -1);
    -ms-transform: scale(1, -1);
    -o-transform: scale(1, -1);
    transform: scale(1, -1);
}

.fa-stack {
    position: relative;
    display: inline-block;
    width: 2em;
    height: 2em;
    line-height: 2em;
    vertical-align: middle;
}

.fa-stack-1x,
.fa-stack-2x {
    position: absolute;
    left: 0;
    width: 100%;
    text-align: center;
}

.fa-stack-1x {
    line-height: inherit;
}

.fa-stack-2x {
    font-size: 2em;
}

.fa-inverse {
    color: #ffffff;
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
    content: "\f000";
}

.fa-music:before {
    content: "\f001";
}

.fa-search:before {
    content: "\f002";
}

.fa-envelope-o:before {
    content: "\f003";
}

.fa-heart:before {
    content: "\f004";
}

.fa-star:before {
    content: "\f005";
}

.fa-star-o:before {
    content: "\f006";
}

.fa-user:before {
    content: "\f007";
}

.fa-film:before {
    content: "\f008";
}

.fa-th-large:before {
    content: "\f009";
}

.fa-th:before {
    content: "\f00a";
}

.fa-th-list:before {
    content: "\f00b";
}

.fa-check:before {
    content: "\f00c";
}

.fa-times:before {
    content: "\f00d";
}

.fa-search-plus:before {
    content: "\f00e";
}

.fa-search-minus:before {
    content: "\f010";
}

.fa-power-off:before {
    content: "\f011";
}

.fa-signal:before {
    content: "\f012";
}

.fa-gear:before,
.fa-cog:before {
    content: "\f013";
}

.fa-trash-o:before {
    content: "\f014";
}

.fa-home:before {
    content: "\f015";
}

.fa-file-o:before {
    content: "\f016";
}

.fa-clock-o:before {
    content: "\f017";
}

.fa-road:before {
    content: "\f018";
}

.fa-download:before {
    content: "\f019";
}

.fa-arrow-circle-o-down:before {
    content: "\f01a";
}

.fa-arrow-circle-o-up:before {
    content: "\f01b";
}

.fa-inbox:before {
    content: "\f01c";
}

.fa-play-circle-o:before {
    content: "\f01d";
}

.fa-rotate-right:before,
.fa-repeat:before {
    content: "\f01e";
}

.fa-refresh:before {
    content: "\f021";
}

.fa-list-alt:before {
    content: "\f022";
}

.fa-lock:before {
    content: "\f023";
}

.fa-flag:before {
    content: "\f024";
}

.fa-headphones:before {
    content: "\f025";
}

.fa-volume-off:before {
    content: "\f026";
}

.fa-volume-down:before {
    content: "\f027";
}

.fa-volume-up:before {
    content: "\f028";
}

.fa-qrcode:before {
    content: "\f029";
}

.fa-barcode:before {
    content: "\f02a";
}

.fa-tag:before {
    content: "\f02b";
}

.fa-tags:before {
    content: "\f02c";
}

.fa-book:before {
    content: "\f02d";
}

.fa-bookmark:before {
    content: "\f02e";
}

.fa-print:before {
    content: "\f02f";
}

.fa-camera:before {
    content: "\f030";
}

.fa-font:before {
    content: "\f031";
}

.fa-bold:before {
    content: "\f032";
}

.fa-italic:before {
    content: "\f033";
}

.fa-text-height:before {
    content: "\f034";
}

.fa-text-width:before {
    content: "\f035";
}

.fa-align-left:before {
    content: "\f036";
}

.fa-align-center:before {
    content: "\f037";
}

.fa-align-right:before {
    content: "\f038";
}

.fa-align-justify:before {
    content: "\f039";
}

.fa-list:before {
    content: "\f03a";
}

.fa-dedent:before,
.fa-outdent:before {
    content: "\f03b";
}

.fa-indent:before {
    content: "\f03c";
}

.fa-video-camera:before {
    content: "\f03d";
}

.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
    content: "\f03e";
}

.fa-pencil:before {
    content: "\f040";
}

.fa-map-marker:before {
    content: "\f041";
}

.fa-adjust:before {
    content: "\f042";
}

.fa-tint:before {
    content: "\f043";
}

.fa-edit:before,
.fa-pencil-square-o:before {
    content: "\f044";
}

.fa-share-square-o:before {
    content: "\f045";
}

.fa-check-square-o:before {
    content: "\f046";
}

.fa-arrows:before {
    content: "\f047";
}

.fa-step-backward:before {
    content: "\f048";
}

.fa-fast-backward:before {
    content: "\f049";
}

.fa-backward:before {
    content: "\f04a";
}

.fa-play:before {
    content: "\f04b";
}

.fa-pause:before {
    content: "\f04c";
}

.fa-stop:before {
    content: "\f04d";
}

.fa-forward:before {
    content: "\f04e";
}

.fa-fast-forward:before {
    content: "\f050";
}

.fa-step-forward:before {
    content: "\f051";
}

.fa-eject:before {
    content: "\f052";
}

.fa-chevron-left:before {
    content: "\f053";
}

.fa-chevron-right:before {
    content: "\f054";
}

.fa-plus-circle:before {
    content: "\f055";
}

.fa-minus-circle:before {
    content: "\f056";
}

.fa-times-circle:before {
    content: "\f057";
}

.fa-check-circle:before {
    content: "\f058";
}

.fa-question-circle:before {
    content: "\f059";
}

.fa-info-circle:before {
    content: "\f05a";
}

.fa-crosshairs:before {
    content: "\f05b";
}

.fa-times-circle-o:before {
    content: "\f05c";
}

.fa-check-circle-o:before {
    content: "\f05d";
}

.fa-ban:before {
    content: "\f05e";
}

.fa-arrow-left:before {
    content: "\f060";
}

.fa-arrow-right:before {
    content: "\f061";
}

.fa-arrow-up:before {
    content: "\f062";
}

.fa-arrow-down:before {
    content: "\f063";
}

.fa-mail-forward:before,
.fa-share:before {
    content: "\f064";
}

.fa-expand:before {
    content: "\f065";
}

.fa-compress:before {
    content: "\f066";
}

.fa-plus:before {
    content: "\f067";
}

.fa-minus:before {
    content: "\f068";
}

.fa-asterisk:before {
    content: "\f069";
}

.fa-exclamation-circle:before {
    content: "\f06a";
}

.fa-gift:before {
    content: "\f06b";
}

.fa-leaf:before {
    content: "\f06c";
}

.fa-fire:before {
    content: "\f06d";
}

.fa-eye:before {
    content: "\f06e";
}

.fa-eye-slash:before {
    content: "\f070";
}

.fa-warning:before,
.fa-exclamation-triangle:before {
    content: "\f071";
}

.fa-plane:before {
    content: "\f072";
}

.fa-calendar:before {
    content: "\f073";
}

.fa-random:before {
    content: "\f074";
}

.fa-comment:before {
    content: "\f075";
}

.fa-magnet:before {
    content: "\f076";
}

.fa-chevron-up:before {
    content: "\f077";
}

.fa-chevron-down:before {
    content: "\f078";
}

.fa-retweet:before {
    content: "\f079";
}

.fa-shopping-cart:before {
    content: "\f07a";
}

.fa-folder:before {
    content: "\f07b";
}

.fa-folder-open:before {
    content: "\f07c";
}

.fa-arrows-v:before {
    content: "\f07d";
}

.fa-arrows-h:before {
    content: "\f07e";
}

.fa-bar-chart-o:before {
    content: "\f080";
}

.fa-twitter-square:before {
    content: "\f081";
}

.fa-facebook-square:before {
    content: "\f082";
}

.fa-camera-retro:before {
    content: "\f083";
}

.fa-key:before {
    content: "\f084";
}

.fa-gears:before,
.fa-cogs:before {
    content: "\f085";
}

.fa-comments:before {
    content: "\f086";
}

.fa-thumbs-o-up:before {
    content: "\f087";
}

.fa-thumbs-o-down:before {
    content: "\f088";
}

.fa-star-half:before {
    content: "\f089";
}

.fa-heart-o:before {
    content: "\f08a";
}

.fa-sign-out:before {
    content: "\f08b";
}

.fa-linkedin-square:before {
    content: "\f08c";
}

.fa-thumb-tack:before {
    content: "\f08d";
}

.fa-external-link:before {
    content: "\f08e";
}

.fa-sign-in:before {
    content: "\f090";
}

.fa-trophy:before {
    content: "\f091";
}

.fa-github-square:before {
    content: "\f092";
}

.fa-upload:before {
    content: "\f093";
}

.fa-lemon-o:before {
    content: "\f094";
}

.fa-phone:before {
    content: "\f095";
}

.fa-square-o:before {
    content: "\f096";
}

.fa-bookmark-o:before {
    content: "\f097";
}

.fa-phone-square:before {
    content: "\f098";
}

.fa-twitter:before {
    content: "\f099";
}

.fa-facebook:before {
    content: "\f09a";
}

.fa-github:before {
    content: "\f09b";
}

.fa-unlock:before {
    content: "\f09c";
}

.fa-credit-card:before {
    content: "\f09d";
}

.fa-rss:before {
    content: "\f09e";
}

.fa-hdd-o:before {
    content: "\f0a0";
}

.fa-bullhorn:before {
    content: "\f0a1";
}

.fa-bell:before {
    content: "\f0f3";
}

.fa-certificate:before {
    content: "\f0a3";
}

.fa-hand-o-right:before {
    content: "\f0a4";
}

.fa-hand-o-left:before {
    content: "\f0a5";
}

.fa-hand-o-up:before {
    content: "\f0a6";
}

.fa-hand-o-down:before {
    content: "\f0a7";
}

.fa-arrow-circle-left:before {
    content: "\f0a8";
}

.fa-arrow-circle-right:before {
    content: "\f0a9";
}

.fa-arrow-circle-up:before {
    content: "\f0aa";
}

.fa-arrow-circle-down:before {
    content: "\f0ab";
}

.fa-globe:before {
    content: "\f0ac";
}

.fa-wrench:before {
    content: "\f0ad";
}

.fa-tasks:before {
    content: "\f0ae";
}

.fa-filter:before {
    content: "\f0b0";
}

.fa-briefcase:before {
    content: "\f0b1";
}

.fa-arrows-alt:before {
    content: "\f0b2";
}

.fa-group:before,
.fa-users:before {
    content: "\f0c0";
}

.fa-chain:before,
.fa-link:before {
    content: "\f0c1";
}

.fa-cloud:before {
    content: "\f0c2";
}

.fa-flask:before {
    content: "\f0c3";
}

.fa-cut:before,
.fa-scissors:before {
    content: "\f0c4";
}

.fa-copy:before,
.fa-files-o:before {
    content: "\f0c5";
}

.fa-paperclip:before {
    content: "\f0c6";
}

.fa-save:before,
.fa-floppy-o:before {
    content: "\f0c7";
}

.fa-square:before {
    content: "\f0c8";
}

.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
    content: "\f0c9";
}

.fa-list-ul:before {
    content: "\f0ca";
}

.fa-list-ol:before {
    content: "\f0cb";
}

.fa-strikethrough:before {
    content: "\f0cc";
}

.fa-underline:before {
    content: "\f0cd";
}

.fa-table:before {
    content: "\f0ce";
}

.fa-magic:before {
    content: "\f0d0";
}

.fa-truck:before {
    content: "\f0d1";
}

.fa-pinterest:before {
    content: "\f0d2";
}

.fa-pinterest-square:before {
    content: "\f0d3";
}

.fa-google-plus-square:before {
    content: "\f0d4";
}

.fa-google-plus:before {
    content: "\f0d5";
}

.fa-money:before {
    content: "\f0d6";
}

.fa-caret-down:before {
    content: "\f0d7";
}

.fa-caret-up:before {
    content: "\f0d8";
}

.fa-caret-left:before {
    content: "\f0d9";
}

.fa-caret-right:before {
    content: "\f0da";
}

.fa-columns:before {
    content: "\f0db";
}

.fa-unsorted:before,
.fa-sort:before {
    content: "\f0dc";
}

.fa-sort-down:before,
.fa-sort-desc:before {
    content: "\f0dd";
}

.fa-sort-up:before,
.fa-sort-asc:before {
    content: "\f0de";
}

.fa-envelope:before {
    content: "\f0e0";
}

.fa-linkedin:before {
    content: "\f0e1";
}

.fa-rotate-left:before,
.fa-undo:before {
    content: "\f0e2";
}

.fa-legal:before,
.fa-gavel:before {
    content: "\f0e3";
}

.fa-dashboard:before,
.fa-tachometer:before {
    content: "\f0e4";
}

.fa-comment-o:before {
    content: "\f0e5";
}

.fa-comments-o:before {
    content: "\f0e6";
}

.fa-flash:before,
.fa-bolt:before {
    content: "\f0e7";
}

.fa-sitemap:before {
    content: "\f0e8";
}

.fa-umbrella:before {
    content: "\f0e9";
}

.fa-paste:before,
.fa-clipboard:before {
    content: "\f0ea";
}

.fa-lightbulb-o:before {
    content: "\f0eb";
}

.fa-exchange:before {
    content: "\f0ec";
}

.fa-cloud-download:before {
    content: "\f0ed";
}

.fa-cloud-upload:before {
    content: "\f0ee";
}

.fa-user-md:before {
    content: "\f0f0";
}

.fa-stethoscope:before {
    content: "\f0f1";
}

.fa-suitcase:before {
    content: "\f0f2";
}

.fa-bell-o:before {
    content: "\f0a2";
}

.fa-coffee:before {
    content: "\f0f4";
}

.fa-cutlery:before {
    content: "\f0f5";
}

.fa-file-text-o:before {
    content: "\f0f6";
}

.fa-building-o:before {
    content: "\f0f7";
}

.fa-hospital-o:before {
    content: "\f0f8";
}

.fa-ambulance:before {
    content: "\f0f9";
}

.fa-medkit:before {
    content: "\f0fa";
}

.fa-fighter-jet:before {
    content: "\f0fb";
}

.fa-beer:before {
    content: "\f0fc";
}

.fa-h-square:before {
    content: "\f0fd";
}

.fa-plus-square:before {
    content: "\f0fe";
}

.fa-angle-double-left:before {
    content: "\f100";
}

.fa-angle-double-right:before {
    content: "\f101";
}

.fa-angle-double-up:before {
    content: "\f102";
}

.fa-angle-double-down:before {
    content: "\f103";
}

.fa-angle-left:before {
    content: "\f104";
}

.fa-angle-right:before {
    content: "\f105";
}

.fa-angle-up:before {
    content: "\f106";
}

.fa-angle-down:before {
    content: "\f107";
}

.fa-desktop:before {
    content: "\f108";
}

.fa-laptop:before {
    content: "\f109";
}

.fa-tablet:before {
    content: "\f10a";
}

.fa-mobile-phone:before,
.fa-mobile:before {
    content: "\f10b";
}

.fa-circle-o:before {
    content: "\f10c";
}

.fa-quote-left:before {
    content: "\f10d";
}

.fa-quote-right:before {
    content: "\f10e";
}

.fa-spinner:before {
    content: "\f110";
}

.fa-circle:before {
    content: "\f111";
}

.fa-mail-reply:before,
.fa-reply:before {
    content: "\f112";
}

.fa-github-alt:before {
    content: "\f113";
}

.fa-folder-o:before {
    content: "\f114";
}

.fa-folder-open-o:before {
    content: "\f115";
}

.fa-smile-o:before {
    content: "\f118";
}

.fa-frown-o:before {
    content: "\f119";
}

.fa-meh-o:before {
    content: "\f11a";
}

.fa-gamepad:before {
    content: "\f11b";
}

.fa-keyboard-o:before {
    content: "\f11c";
}

.fa-flag-o:before {
    content: "\f11d";
}

.fa-flag-checkered:before {
    content: "\f11e";
}

.fa-terminal:before {
    content: "\f120";
}

.fa-code:before {
    content: "\f121";
}

.fa-mail-reply-all:before,
.fa-reply-all:before {
    content: "\f122";
}

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
    content: "\f123";
}

.fa-location-arrow:before {
    content: "\f124";
}

.fa-crop:before {
    content: "\f125";
}

.fa-code-fork:before {
    content: "\f126";
}

.fa-unlink:before,
.fa-chain-broken:before {
    content: "\f127";
}

.fa-question:before {
    content: "\f128";
}

.fa-info:before {
    content: "\f129";
}

.fa-exclamation:before {
    content: "\f12a";
}

.fa-superscript:before {
    content: "\f12b";
}

.fa-subscript:before {
    content: "\f12c";
}

.fa-eraser:before {
    content: "\f12d";
}

.fa-puzzle-piece:before {
    content: "\f12e";
}

.fa-microphone:before {
    content: "\f130";
}

.fa-microphone-slash:before {
    content: "\f131";
}

.fa-shield:before {
    content: "\f132";
}

.fa-calendar-o:before {
    content: "\f133";
}

.fa-fire-extinguisher:before {
    content: "\f134";
}

.fa-rocket:before {
    content: "\f135";
}

.fa-maxcdn:before {
    content: "\f136";
}

.fa-chevron-circle-left:before {
    content: "\f137";
}

.fa-chevron-circle-right:before {
    content: "\f138";
}

.fa-chevron-circle-up:before {
    content: "\f139";
}

.fa-chevron-circle-down:before {
    content: "\f13a";
}

.fa-html5:before {
    content: "\f13b";
}

.fa-css3:before {
    content: "\f13c";
}

.fa-anchor:before {
    content: "\f13d";
}

.fa-unlock-alt:before {
    content: "\f13e";
}

.fa-bullseye:before {
    content: "\f140";
}

.fa-ellipsis-h:before {
    content: "\f141";
}

.fa-ellipsis-v:before {
    content: "\f142";
}

.fa-rss-square:before {
    content: "\f143";
}

.fa-play-circle:before {
    content: "\f144";
}

.fa-ticket:before {
    content: "\f145";
}

.fa-minus-square:before {
    content: "\f146";
}

.fa-minus-square-o:before {
    content: "\f147";
}

.fa-level-up:before {
    content: "\f148";
}

.fa-level-down:before {
    content: "\f149";
}

.fa-check-square:before {
    content: "\f14a";
}

.fa-pencil-square:before {
    content: "\f14b";
}

.fa-external-link-square:before {
    content: "\f14c";
}

.fa-share-square:before {
    content: "\f14d";
}

.fa-compass:before {
    content: "\f14e";
}

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
    content: "\f150";
}

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
    content: "\f151";
}

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
    content: "\f152";
}

.fa-euro:before,
.fa-eur:before {
    content: "\f153";
}

.fa-gbp:before {
    content: "\f154";
}

.fa-dollar:before,
.fa-usd:before {
    content: "\f155";
}

.fa-rupee:before,
.fa-inr:before {
    content: "\f156";
}

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
    content: "\f157";
}

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
    content: "\f158";
}

.fa-won:before,
.fa-krw:before {
    content: "\f159";
}

.fa-bitcoin:before,
.fa-btc:before {
    content: "\f15a";
}

.fa-file:before {
    content: "\f15b";
}

.fa-file-text:before {
    content: "\f15c";
}

.fa-sort-alpha-asc:before {
    content: "\f15d";
}

.fa-sort-alpha-desc:before {
    content: "\f15e";
}

.fa-sort-amount-asc:before {
    content: "\f160";
}

.fa-sort-amount-desc:before {
    content: "\f161";
}

.fa-sort-numeric-asc:before {
    content: "\f162";
}

.fa-sort-numeric-desc:before {
    content: "\f163";
}

.fa-thumbs-up:before {
    content: "\f164";
}

.fa-thumbs-down:before {
    content: "\f165";
}

.fa-youtube-square:before {
    content: "\f166";
}

.fa-youtube:before {
    content: "\f167";
}

.fa-xing:before {
    content: "\f168";
}

.fa-xing-square:before {
    content: "\f169";
}

.fa-youtube-play:before {
    content: "\f16a";
}

.fa-dropbox:before {
    content: "\f16b";
}

.fa-stack-overflow:before {
    content: "\f16c";
}

.fa-instagram:before {
    content: "\f16d";
}

.fa-flickr:before {
    content: "\f16e";
}

.fa-adn:before {
    content: "\f170";
}

.fa-bitbucket:before {
    content: "\f171";
}

.fa-bitbucket-square:before {
    content: "\f172";
}

.fa-tumblr:before {
    content: "\f173";
}

.fa-tumblr-square:before {
    content: "\f174";
}

.fa-long-arrow-down:before {
    content: "\f175";
}

.fa-long-arrow-up:before {
    content: "\f176";
}

.fa-long-arrow-left:before {
    content: "\f177";
}

.fa-long-arrow-right:before {
    content: "\f178";
}

.fa-apple:before {
    content: "\f179";
}

.fa-windows:before {
    content: "\f17a";
}

.fa-android:before {
    content: "\f17b";
}

.fa-linux:before {
    content: "\f17c";
}

.fa-dribbble:before {
    content: "\f17d";
}

.fa-skype:before {
    content: "\f17e";
}

.fa-foursquare:before {
    content: "\f180";
}

.fa-trello:before {
    content: "\f181";
}

.fa-female:before {
    content: "\f182";
}

.fa-male:before {
    content: "\f183";
}

.fa-gittip:before {
    content: "\f184";
}

.fa-sun-o:before {
    content: "\f185";
}

.fa-moon-o:before {
    content: "\f186";
}

.fa-archive:before {
    content: "\f187";
}

.fa-bug:before {
    content: "\f188";
}

.fa-vk:before {
    content: "\f189";
}

.fa-weibo:before {
    content: "\f18a";
}

.fa-renren:before {
    content: "\f18b";
}

.fa-pagelines:before {
    content: "\f18c";
}

.fa-stack-exchange:before {
    content: "\f18d";
}

.fa-arrow-circle-o-right:before {
    content: "\f18e";
}

.fa-arrow-circle-o-left:before {
    content: "\f190";
}

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
    content: "\f191";
}

.fa-dot-circle-o:before {
    content: "\f192";
}

.fa-wheelchair:before {
    content: "\f193";
}

.fa-vimeo-square:before {
    content: "\f194";
}

.fa-turkish-lira:before,
.fa-try:before {
    content: "\f195";
}

.fa-plus-square-o:before {
    content: "\f196";
}

.fa-space-shuttle:before {
    content: "\f197";
}

.fa-slack:before {
    content: "\f198";
}

.fa-envelope-square:before {
    content: "\f199";
}

.fa-wordpress:before {
    content: "\f19a";
}

.fa-openid:before {
    content: "\f19b";
}

.fa-institution:before,
.fa-bank:before,
.fa-university:before {
    content: "\f19c";
}

.fa-mortar-board:before,
.fa-graduation-cap:before {
    content: "\f19d";
}

.fa-yahoo:before {
    content: "\f19e";
}

.fa-google:before {
    content: "\f1a0";
}

.fa-reddit:before {
    content: "\f1a1";
}

.fa-reddit-square:before {
    content: "\f1a2";
}

.fa-stumbleupon-circle:before {
    content: "\f1a3";
}

.fa-stumbleupon:before {
    content: "\f1a4";
}

.fa-delicious:before {
    content: "\f1a5";
}

.fa-digg:before {
    content: "\f1a6";
}

.fa-pied-piper-square:before,
.fa-pied-piper:before {
    content: "\f1a7";
}

.fa-pied-piper-alt:before {
    content: "\f1a8";
}

.fa-drupal:before {
    content: "\f1a9";
}

.fa-joomla:before {
    content: "\f1aa";
}

.fa-language:before {
    content: "\f1ab";
}

.fa-fax:before {
    content: "\f1ac";
}

.fa-building:before {
    content: "\f1ad";
}

.fa-child:before {
    content: "\f1ae";
}

.fa-paw:before {
    content: "\f1b0";
}

.fa-spoon:before {
    content: "\f1b1";
}

.fa-cube:before {
    content: "\f1b2";
}

.fa-cubes:before {
    content: "\f1b3";
}

.fa-behance:before {
    content: "\f1b4";
}

.fa-behance-square:before {
    content: "\f1b5";
}

.fa-steam:before {
    content: "\f1b6";
}

.fa-steam-square:before {
    content: "\f1b7";
}

.fa-recycle:before {
    content: "\f1b8";
}

.fa-automobile:before,
.fa-car:before {
    content: "\f1b9";
}

.fa-cab:before,
.fa-taxi:before {
    content: "\f1ba";
}

.fa-tree:before {
    content: "\f1bb";
}

.fa-spotify:before {
    content: "\f1bc";
}

.fa-deviantart:before {
    content: "\f1bd";
}

.fa-soundcloud:before {
    content: "\f1be";
}

.fa-database:before {
    content: "\f1c0";
}

.fa-file-pdf-o:before {
    content: "\f1c1";
}

.fa-file-word-o:before {
    content: "\f1c2";
}

.fa-file-excel-o:before {
    content: "\f1c3";
}

.fa-file-powerpoint-o:before {
    content: "\f1c4";
}

.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
    content: "\f1c5";
}

.fa-file-zip-o:before,
.fa-file-archive-o:before {
    content: "\f1c6";
}

.fa-file-sound-o:before,
.fa-file-audio-o:before {
    content: "\f1c7";
}

.fa-file-movie-o:before,
.fa-file-video-o:before {
    content: "\f1c8";
}

.fa-file-code-o:before {
    content: "\f1c9";
}

.fa-vine:before {
    content: "\f1ca";
}

.fa-codepen:before {
    content: "\f1cb";
}

.fa-jsfiddle:before {
    content: "\f1cc";
}

.fa-life-bouy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
    content: "\f1cd";
}

.fa-circle-o-notch:before {
    content: "\f1ce";
}

.fa-ra:before,
.fa-rebel:before {
    content: "\f1d0";
}

.fa-ge:before,
.fa-empire:before {
    content: "\f1d1";
}

.fa-git-square:before {
    content: "\f1d2";
}

.fa-git:before {
    content: "\f1d3";
}

.fa-hacker-news:before {
    content: "\f1d4";
}

.fa-tencent-weibo:before {
    content: "\f1d5";
}

.fa-qq:before {
    content: "\f1d6";
}

.fa-wechat:before,
.fa-weixin:before {
    content: "\f1d7";
}

.fa-send:before,
.fa-paper-plane:before {
    content: "\f1d8";
}

.fa-send-o:before,
.fa-paper-plane-o:before {
    content: "\f1d9";
}

.fa-history:before {
    content: "\f1da";
}

.fa-circle-thin:before {
    content: "\f1db";
}

.fa-header:before {
    content: "\f1dc";
}

.fa-paragraph:before {
    content: "\f1dd";
}

.fa-sliders:before {
    content: "\f1de";
}

.fa-share-alt:before {
    content: "\f1e0";
}

.fa-share-alt-square:before {
    content: "\f1e1";
}

.fa-bomb:before {
    content: "\f1e2";
}

.preloader_active {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 21000;
    background: url('../img/preloader.gif') center center #ffffff no-repeat;
}

/* Border-radius 4px */
a.button {
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

/* Transition all */
.soc_block404 .button,
.portfolio_grid_style2_listing .featured_image_cont .featured_image,
.port_work_title h2 {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

/* Transition opacity */
.gallery_item,
.gallery_vertical_fit img,
ul#thumb-list li {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

/* Backface */
ul#thumb-list li img,
.portfolio_grid_style2_listing .featured_image_cont .featured_image {
    -webkit-backface-visibility: hidden;
}

/* Main color */
.content a,
.purchase_template a:hover,
a.button.type3:hover i:before,
.pm_post a:hover .pm_post_style2_title,
.pm_related_stand a:hover h5,
.pm_cats a:hover, .pm_tags a:hover,
.pm_toggacc_heading:hover,
.port_work_title:hover h2 {
    color: #c9251c;
}

.pm_cats a:hover, .pm_tags a:hover
{
    color: #c9251c !important;
}

.tags:hover {
    color: #757576 !important;
}

a.button:hover,
a.button.type6:hover,
a.button.type2 {
    background-color: #c9251c;
}

a.button.type6:hover {
    border-color: #c9251c;
}

a.button.type4:hover,
a.button.type5:hover {
    background-color: #c9251c !important;
    border-color: #c9251c !important;
    color: #ffffff !important;
}

.pm_toggacc_heading {
    border: 1px solid #cfcfd0;
    display: block;
    cursor: pointer;
    padding: 6px 14px;
    color: #222222;
    font-size: 12px;
    text-transform: uppercase;
    position: relative;
    margin-top: 5px;
}

.pm_toggacc_heading:after {
    font-family: fontawesome;
    content: "\f107";
    position: absolute;
    right: 11px;
    top: 6px;
    display: block;
    font-size: 16px;
}

html .pm_toggacc p {
    margin-bottom: 0;
    padding: 9px 20px;
    display: none;
}

.pm_toggacc.spike {
    margin-top: 25px;
}

/* General */
body {
    font-family: 'PT Sans', sans-serif;
    font-size: 13px;
    color: #757576;
    margin-bottom: 30px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
}

.logotype-retina {
    display: none;
}

.logo a {
    margin-top: 4px;
    display: block;
}

.content a:hover {
    color: #757576;
}

.mt0 {
    margin-top: 0;
}

.mt10 {
    margin-top: 10px;
}

.mt20 {
    margin-top: 20px !important;
}

.mt30 {
    margin-top: 30px;
}

.mt35 {
    margin-top: 35px;
}

.mt45 {
    margin-top: 45px;
}

.mb0 {
    margin-bottom: 0 !important;
}

.mr0 {
    margin-right: 0 !important;
}

.pl0 {
    padding-left: 0;
}

/* Header */
header {
    margin: 14px 0 10px;
}

header .logo {
    float: left;
}

header .fl_container {
    float: right;
}

.menu {
    padding-left: 0;
    display: block;
    margin-top: 6px;
    margin-bottom: 7px;
}

.menu li {
    list-style: none;
    float: left;
    line-height: 14px;
    position: relative;
}

.menu > li {
    margin-right: 25px;
}

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

.menu span, .header_line {
    font-size: 12px;
    color: #333333;
}

.header_line a {
    color: #333333;
    text-decoration: none;
}

.sub-menu {
    position: absolute;
    top: 14px;
    left: 50%;
    padding-top: 8px;
    margin-left: -90px;
    padding-left: 0;
    z-index: 19999;
}

.fl_container .second_lvl,
.fl_container .third_lvl {
    display: none;
}

.menu > li > .sub-menu:before {
    width: 7px;
    height: 5px;
    display: block;
    content: "";
    background: url("../img/menu_corner_arrow.jpg") no-repeat 0 0 transparent;
    position: absolute;
    top: 4px;
    left: 50%;
    margin-left: -3px;
    z-index: 10000;
}

.item_2_level_has_children:hover .third_lvl {
    width: 180px;
}

.sub-menu li {
    border-bottom: 1px solid #313131;
}

.sub-menu .sub-menu li {
    border-bottom: 1px solid #3a3a3a;
}

html body header .menu .sub-menu li:hover a,
html body header .menu .sub-menu li.current-menu-item a
{
    background: #313131;
}

html body header .menu .sub-menu li:hover .sub-menu li:hover a,
html body header .menu .sub-menu .sub-menu li.current-menu-item a
{
    background: #3a3a3a;
}

html body header .menu .sub-menu .sub-menu li a
{
    background: #2b2b2b;
}

.sub-menu li:last-child {
    border-bottom: 1px solid #222222;
}

.sub-menu .sub-menu li:last-child {
    border-bottom: 1px solid #2b2b2b;
}

.sub-menu li a {
    width: 180px;
    height: 40px;
    display: block;
    background: #222222;
    text-align: center;
}

html body header .menu .sub-menu li span {
    line-height: 20px;
    padding: 10px 0;
    display: block;
    color: #cfcfcf;
    text-transform: none;
    font-size: 13px;
}

html body header .menu .sub-menu li:hover .sub-menu span {
    color: #222222;
}

.header_line {
    text-align: right;
    line-height: 19px;
    vertical-align: top;
    overflow: hidden;
    height: 19px;
    padding-top: 2px;
}

header .menu span {
    text-transform: uppercase;
}

header .menu .current-menu-item span, header .menu li:hover span {
    color: #c9251c;
}

.sub-menu .sub-menu {
    top: -8px;
    left: -180px;
    margin-left: 0;
}

.sub-menu .sub-menu span {
    color: #cfcfcf !important;
}

.sub-menu > li.current-menu-item:last-child,
.sub-menu > li:hover:last-child {
    border-bottom: 1px solid #313131;
}

.sub-menu .sub-menu > li.current-menu-item:last-child,
.sub-menu .sub-menu > li:hover:last-child {
    border-bottom: 1px solid #3a3a3a;
}

.featured_image_block {
    text-align: right;
}

.hred {
    border-top: 1px solid #e2e2e2;
    padding-top: 26px;
    padding-bottom: 26px;
}

.pm_share_cont {
    display: inline-block;
    margin-left: 18px;
    line-height: 19px;
    height: 19px;
    overflow: hidden;
    float: right;
}

.pm_share_cont .fa-share {
    font-size: 13px;
    cursor: pointer;
    opacity: 0.3;
    line-height: 19px;
    vertical-align: top;
    transition: all .2s;
}

.pm_share_cont .fa-share:hover {
    opacity: 1;
}

.showed_socials_cont {
    width: auto;
}

.header_line .pm_inner {
    line-height: 19px;
    overflow: hidden;
    height: 19px;
    vertical-align: top;
    position: relative;
    top: 0;
    right: -178px;
    transition: all .5s;
}

.pm_phone {
    display: inline-block;
    line-height: 19px;
    position: relative;
    height: 19px;
    float: right;
}

.header_line.showed_socials_cont .pm_inner {
    right: 0;
    transition: all .5s;
}

.pm_hided_icons {
    display: inline-block;=
overflow: hidden;
    height: 16px;
    line-height: 19px;
    transition: all .5s;
}

.pm_hided_icons a {
    display: inline-block;
    vertical-align: top;
    opacity: 0.3;
    transition: all .2s;
    margin-right: 16px;
    line-height: 19px;
    background: url(../img/socials_sprite.png) transparent no-repeat;
}

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

.pm_hided_icons a:first-child {
    margin-left: 16px;
}

.pm_hided_icons a:hover {
    opacity: 1;
}

a.pm_share_facebook {
    width: 16px;
    height: 16px;
    background-position: 0 -1px;
}

a.pm_share_facebook {
    width: 16px;
    height: 16px;
    background-position: 0 -1px;
}

a.pm_share_twitter {
    width: 19px;
    height: 16px;
    background-position: -17px -1px;
}

a.pm_share_tumblr {
    width: 15px;
    height: 16px;
    background-position: -37px -1px;
}

a.pm_share_youtube {
    width: 16px;
    height: 16px;
    background-position: -53px -1px;
}

a.pm_share_instagram {
    width: 16px;
    height: 16px;
    background-position: -70px -1px;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    color: #222222;
    margin-top: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h1 {
    font-size: 24px;
    line-height: 28px;
}

h2 {
    font-size: 20px;
    line-height: 24px;
}

h3 {
    font-size: 18px;
    line-height: 22px;
}

h4 {
    font-size: 16px;
    line-height: 20px;
}

h5 {
    font-size: 14px;
    line-height: 18px;
    font-weight: 400;
}

h6 {
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
}

.entry-title {
    letter-spacing: 3px;
    margin-top: -2px;
    margin-bottom: 17px;
}

.border_style {
    margin-bottom: 0;
}

.border_style .texts_area {
    position: relative;
    overflow: hidden;
}

.border_style .content {
    overflow: hidden;
}

.port_grid .content {
    overflow: visible;
}

.border_style .featured_image_block {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Content */
.content i {
    color: #282727;
}

.content {
    line-height: 20px;
}

.content p {
    margin-top: 0;
    margin-bottom: 10px;
}

h1.preview_headers, h1.preview_headers_typo {
    margin-top: 24px;
    margin-bottom: 0;
    line-height: 36px;
}

h2.preview_headers, h2.preview_headers_typo {
    margin-bottom: 6px;
    line-height: 34px;
}

h3.preview_headers, h3.preview_headers_typo {
    margin-bottom: 10px;
    line-height: 22px;
}

h4.preview_headers, h4.preview_headers_typo {
    margin-bottom: 13px;
    line-height: 20px;
}

h5.preview_headers, h5.preview_headers_typo {
    margin-bottom: 12px;
    line-height: 18px;
}

.preview_headers_typo:first-child {
    margin-top: 0;
}

blockquote {
    width: 50%;
    margin: 0 0 10px 0;
    padding-left: 15px;
    border-left: 1px solid #cfcfd0;
}

.blockquote_module {
    margin-top: 27px;
}

blockquote.left {
    float: left;
    margin-right: 20px;
}

blockquote.right {
    float: right;
    margin-left: 20px;
}

blockquote .author {
    display: block;
    margin-top: 10px;
    color: #aaaaaa;
}

.dropcap {
    color: #222222;
    font-size: 28px;
    float: left;
    margin-top: 6px;
    margin-right: 15px;
    margin-bottom: 8px;
    font-weight: 700;
}

p.mtype1 {
    margin: 25px 0;
}

p.mtype2 {
    margin: 25px 0 35px 0;
}

.content ol {
    padding-left: 17px;
}

.content ol span {
    color: #757576;
}

a.button {
    color: #ffffff !important;
    font-size: 12px;
    padding: 6px 15px;
    display: inline-block;
    background: #222222;
    text-transform: uppercase;
    margin-right: 7px;
    margin-bottom: 15px;
    vertical-align: top;
}

a.button i:before {
    color: #ffffff;
}

a.button.type2 {
    text-transform: none;
    padding: 4px 15px;
}

a.button.type2:hover {
    background: #222222;
}

a.button.type4:hover, a.button.type5:hover, a.button.type6:hover {
    background: #222222 !important;
    border-color: #222222 !important;
    color: #ffffff !important;
}

a.button.type6:hover i:before {
    color: #ffffff !important;
}

a.button.type4 {
    background: #ffffff;
    border: 1px solid #cfcfd0;
    color: #3b3b3b !important;
}

a.button.type4 i:before {
    color: #3b3b3b !important;
}

a.button.type4:hover i:before {
    color: #ffffff !important;
}

a.button.type5 {
    background: #c9c9c9;
    border: 1px solid #c9c9c9;
    color: #ffffff !important;
    padding: 4px 15px;
}

a.button.type6 {
    background: #2197db;
    border: 1px solid #2197db;
    color: #fffc28 !important;
    padding: 4px 15px;
}

a.button.type6 i:before {
    color: #fffc28 !important;
}

a.button.one_letter {
    padding-left: 13px;
    padding-right: 13px;
}

a.button.type2.one_letter {
    padding-left: 9px;
    padding-right: 8px;
}

a.button.type4.one_letter {
    padding-left: 10px;
    padding-right: 11px;
}

a.button.type5.one_letter {
    padding-left: 9px;
    padding-right: 8px;
}

a.button.type6.one_letter {
    padding-left: 9px;
    padding-right: 9px;
}

a.button.type3 {
    text-transform: none;
    background: none;
    padding: 3px 2px;
}

a.button.type3 i:before {
    color: #222222;
}

.categories {
    padding: 0;
    list-style: none;
}

.categories li {
    background: url(../img/marker.png) no-repeat 0 7px;
    padding-left: 16px;
}

.categories li a {
    color: #757576;
}

.categories li a:hover {
    color: #c9251c !important;
}

.social {
    margin: 26px 0;
}

.addthis_native_toolbox {
    padding-right: 30px !important;
}

a.at300b {
    margin-right: 8px;
}

.at300b:first-child {
    margin-left: 0;
}

.addthis_button_tweet {
    max-width: 77px !important;
}

.addthis_button_google_plusone {
    max-width: 60px !important;
}

.projects {
    margin-top: 30px;
}

.project_box {
    margin-top: 25px;
}

.project_image, .avatar {
    position: absolute;
    z-index: 0;
}

.project_title, .project_data, .project_description {
    margin-left: 150px;
}

.no_image .project_title, .no_image .project_data, .no_image .project_description {
    margin-left: 0;
}

.project_data, .subscriber {
    color: #aaa;
}

.comments {
    margin-top: 38px;
}

.comments h4 {
    margin-bottom: 24px;
}

.comment_box {
    min-height: 65px;
    margin-bottom: 0;
}

.avatar {
    border-radius: 32px;
}

.subscriber, .comment_content {
    margin-left: 85px;
    margin-bottom: 6px !important;
}

#comment {
    margin-top: 25px;
}

input[type=text], textarea {
    border: solid 1px #e2e2e2;
    font-family: 'PT Sans', sans-serif;
    border-radius: 0;
    -webkit-border-radius: 0;
    text-indent: 10px;
    text-shadow: none;
    box-shadow: none;
    -webkit-box-shadow: 0;
    font-size: 12px;
    outline: none;
    outline: 0;
    -webkit-appearance: none;
}

input[type=text]::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
    color: #757576
}

input[type=text]::-moz-input-placeholder, textarea::-moz-input-placeholder {
}

input:focus, textarea:focus {
    color: #c9251c;
}

input:focus::-webkit-input-placeholder, textarea:focus::-webkit-input-placeholder {
    color: #c9251c;
}

textarea {
    width: 99.4%;
    height: 129px;
    padding: 5px 0;
    margin: 0;
    display: block;
}

input[type=text] {
    width: 99%;
    height: 27px;
    padding: 0;
    display: inline-block;
    margin-right: 7px;
}

input[type=reset], input[type=submit] {
    color: #fff;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    border: none;
    font-size: 12px;
    font-family: 'PT Sans', sans-serif;
    padding: 8px 15px;
    cursor: pointer;
    margin: 10px 6px 5px 0;
    line-height: 12px;
    outline: none;
    transition-duration: .2s;
    border-left: none;
}

input[type=reset] {
    background-color: #222;
}

input[type=submit] {
    background-color: #c9251c;
}

input[type=reset]:hover {
    background-color: #c9251c;
}

input[type=submit]:hover {
    background-color: #222;
}

input[type=reset]:active {
    background-color: #222;
}

input[type=submit]:active {
    background-color: #c9251c;
}

.social_buttons {
    margin: 25px 0 8px;
}

.facebook {
    background-color: #3957a0 !important;
}

.twitter {
    background-color: #0ed4ec !important;
}

.pinterest {
    background-color: #df4545 !important;
}

.linein {
    background-color: #017ab7 !important;
}

.google_plus {
    background-color: #df4545 !important;
}

.facebook:hover, .twitter:hover, .pinterest:hover, .linein:hover, .google_plus:hover {
    background-color: #222 !important;
}

.mark {
    color: #222;
    margin-right: 3px;
}

.skype-mark {
    margin-right: 4px;
}

.pm_contacts_page iframe {
    width: 100%;
    height: 930px;
    border: 0;
}

html .container .row > .span8 {
    width: 67.21%;
    margin-left: 2.16%;
}

.filters {
    margin-bottom: 40px;
}

.filters li {
    cursor: pointer;
}

.filters li:hover, .is-checked {
    color: #aaa !important;
}

.isotope {
    margin-left: -40px;
}

.thumbs_box {
    width: 25%;
    text-align: center;
    position: relative;
    display: inline-block;
    margin-left: -1px;
}

.thumbs_box:hover .image_box {
    transform: scale(.85, .85);
}

.thumbs_box:hover img {
    opacity: .6;
}

.thumbs_box:hover p {
    transform: scale(1, 1);
}

.thumbs_box .thumbs_box_wrapper {
    padding-bottom: 40px;
    padding-left: 40px;
    display: block;
}

.image_box {
    width: 100%;
    height: auto;
    z-index: 0;
    transition-duration: .5s;
    position: relative;
    float: left;
    display: block;
    top: 0;
    left: 0;
    background-color: #000;
}

.image_box img {
    display: block;
    position: relative;
    transition: all .5s;
}

.thumbs_text {
    width: 100%;
    text-align: center;
    line-height: 18px;
    font-size: /*4.186046511627907%*/ 18px;
    font-weight: bold;
    text-transform: uppercase;
    margin: auto;
    color: #fff;
    transform: scale(0, 0);
    z-index: 2;
    top: 50%;
    position: absolute;
    transition-duration: .5s;
    margin: 0;
}

.thumbs_text p {
    margin: 0;
}

.portfolio_3_columns .thumbs_box {
    width: 33.333%;
}

.portfolio_2_columns .thumbs_box {
    width: 50%;
}

.more {
    width: 100%;
    background-color: #e4e4e4;
    color: #222 !important;
    line-height: 14px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    display: block;
    margin: 10px 0 40px;
    padding: 11px 0 13px;
    transition-duration: .5s;
}

.more:hover {
    color: #fff !important;
    background-color: #222 !important;
}

.more:active {
    color: #222 !important;
    background-color: #e4e4e4 !important;
}

.hred2_wrapper .hred2 {
    border-top: 1px solid #e2e2e2;
}

.port_grid_wrapper, .blog_listing_style2 {
    width: 1170px;
}

.portfolio_grid_style2 {
    padding-top: 50px;
    padding-bottom: 50px;
}

.portfolio_grid_style2_listing {
    padding-top: 25px;
}

.port_work_title {
    margin-top: 20px;
    margin-bottom: 13px;
    display: block;
}

.pm_port_2_columns .portfolio_grid_style2_listing {
    margin-left: -50px;
}

.pm_port_2_columns .port_work {
    width: 49.5%;
    display: inline-block;
    margin-bottom: 25px;
}

.pm_port_2_columns .pm_innerpadding {
    margin-left: 50px;
}

.pm_port_3_columns .portfolio_grid_style2_listing {
    margin-left: -50px;
}

.pm_port_3_columns .port_work {
    width: 33%;
    display: inline-block;
    margin-bottom: 25px;
}

.pm_port_3_columns .pm_innerpadding {
    margin-left: 50px;
}

.pm_port_4_columns .portfolio_grid_style2_listing {
    margin-left: -50px;
}

.pm_port_4_columns .port_work {
    width: 24.7%;
    display: inline-block;
    margin-bottom: 25px;
}

.pm_port_4_columns .pm_innerpadding {
    margin-left: 50px;
}

.portfolio_grid_style2_listing .featured_image_cont:hover .featured_image {
    opacity: 0.7;
}

.portfolio_grid_style2_listing .featured_image {
    display: block;
}

.hred.style2 {
    padding-bottom: 2px;
}

.pm_paging a {
    display: inline-block;
    padding: 0 10px;
    line-height: 26px;
    background: #e4e4e4;
    border-radius: 4px;
    margin-right: 7px;
    border: 1px solid transparent;
}

.pm_paging span {
    line-height: 26px;
    font-size: 13px;
    color: #757576;
}

.pm_paging a:hover, .pm_paging a.active {
    background: transparent;
    border: 1px solid #e2e2e2;
}

footer {
    padding-bottom: 18px;
}

footer .pm_phone {
    font-size: 12px;
}

.typo2 .blockquote_module {
    margin-top: 16px;
}

.preview_headers_typo.spike {
    margin-top: 8px;
    margin-bottom: 1px;
}

.preview_headers_typo.spike2 {
    margin-top: 0;
    margin-bottom: 1px;
}

.mtype2.spike {
    margin-bottom: 20px;
}

.mtype2.spike2 {
    margin-top: 24px;
}

.row.typo2 {
    margin-top: 15px;
}

.row.typo2.spike {
    margin-top: 30px;
}

.dropcap.type2 {
    color: #c9c9c9;
}

ul.type2 {
    list-style: none;
}

ul.type2 li:before {
    content: "\f105";
    padding-right: 10px;
    font-family: fontawesome;
}

ul.with_margin {
    margin-left: 15px;
}

ul.type3 {
    list-style: none;
}

ul.type3 .fa {
    padding-right: 9px;
}

ul.type3 .fa.fa-star {
    color: #2197db;
}

ul.type3 .fa.fa-tag {
    color: #5a9f00;
}

ul.type3 .fa.fa-puzzle-piece {
    color: #cb220e;
}

.testimonials span {
    display: block;
    padding-left: 85px;
}

.testimonials .testimonials_author {
    color: #aaaaaa;
    margin-bottom: 8px;
}

.testimonials {
    margin-bottom: 10px;
}

.testimonials {
    position: relative;
}

.testimonials img {
    display: block;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
}

/* Blog style 2 */
.blog_listing_style2 {
    margin-top: 50px;
    margin-bottom: 50px;
}

.single_style .blog_listing_style2 {
    margin-bottom: 70px;
}

.pm_audio iframe {
    height: auto !important;
}

.pm_post .pm_post_style2_title {
    margin-bottom: 18px;
}

.pm_post .pm_post_formats_cont {
    margin-bottom: 18px;
}

.pm_post .pm_meta {
    margin-bottom: 18px;
}

.pm_fleft {
    float: left;
}

.pm_fright {
    float: right;
}

.pm_cats, .pm_tags {
    display: inline-block;
}

.pm_cats a, .pm_tags a {
    color: #757576;
}

.pm_cats {
    margin-right: 25px;
}

.pm_cats:before, .pm_tags:before {
    font-family: 'FontAwesome';
    content: "\f105";
    display: inline-block;
    font-size: 13px;
    font-weight: 300;
    margin-right: 5px;
}

.blog_listing_style2 .social {
    margin: 0;
}

.blog_listing_style2 .addthis_native_toolbox {
    padding-right: 0 !important;
}

.blog_listing_style2 .pm_post {
    border-bottom: 1px solid #e2e2e2;
    padding-bottom: 20px;
    margin-bottom: 35px;
}

.blog_listing_style2 .comments {
    margin-top: 22px;
}

.blog_listing_style2 .comment_box {
    margin-bottom: 23px;
}

.blog_listing_style2 .pm_related_stand {
    min-height: 140px;
}

.blog_listing_style2 .preview_headers {
    margin-top: 20px;
}

.pm_post_prev {
    margin-bottom: 30px !important;
}

#newsletter {
    width: 100%;
    min-height: 15px;
    margin-bottom: 32px;
    margin-top: 16px;
}

.subscribe_email, .search_input {
    height: 28px !important;
    padding: 0 !important;
}

.subscribe_button, .search_button {
    border: solid 1px #222 !important;
    float: right !important;
    margin: 0 !important;
    border-bottom-left-radius: 0 !important;
    border-top-left-radius: 0 !important;
    background-color: #222 !important;
    padding: 8px 15px !important;
    line-height: 12px !important;
}

.page404 .search_button {
    border-left: none !important;
}

.page404 .search_button:hover {
    border-color: #c9251c !important;
}

.search_button {
    position: absolute;
    top: 0;
    right: 0;
}

@-moz-document url-prefix() {
    .subscribe_button, .search_button {
        line-height: 10px !important;
    }
}

.subscribe_button:hover, .search_button:hover {
    background-color: #c9251c !important;
    border-color: #c9251c !important;
}

.subscribe_button:active, .search_button:active {
    background-color: #222 !important;
}

.test {
    margin-top: 20px !important;
}

/* Gallery */
.gallery_style_vertical_thumbs .big_images {
    position: relative;
    float: left;
}

.gallery_style_vertical_thumbs .thumbs {
    position: relative;
    float: left;
    overflow: hidden;
    text-align: right;
}

.gallery_style_vertical_thumbs .thumbs img {
    display: block;
}

.gallery_style_vertical_thumbs .thumbs img:last-child {
    margin-bottom: 0 !important;
}

.gallery_style_vertical_thumbs .big_images .gallery_item {
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center center;
    position: absolute;
}

.gallery_item {
    opacity: 0;
}

.gallery_item.active {
    opacity: 1 !important;
}

.gallery_style_vertical_thumbs .mCSB_scrollTools {
    opacity: 0 !important;
}

.gallery_style_vertical_thumbs .mCSB_container {
    margin-right: 0 !important;
    top: 0;
}

.gallery_style_vertical_thumbs .mCustomScrollbar {
    cursor: ns-resize;
}

.cfa {
    min-width: 16px;
    text-align: center;
}

.gallery_vertical_fit {
    text-align: center;
    position: relative;
}

.gallery_vertical_fit img {
    height: 100%;
    width: auto;
    opacity: 0;
    position: absolute;
    left: 50%;
    display: block;
}

.gallery_vertical_fit img.active {
    opacity: 1;
}

/* Supersized */
.supersized_here {
    position: relative;
    height: 100%;
    width: 100%;
}

* {
    margin: 0;
    padding: 0;
}

html {
    height: 100%;
}

body {
    height: 100%;
}

body.gallery4 {
    overflow: hidden;
    height: auto;
}

img {
    border: none;
}

#supersized-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 0;
    width: 60px;
    height: 60px;
    margin: -30px 0 0 -30px;
    text-indent: -999em;
    background: url(../img/progress.gif) no-repeat center center;
}

#supersized {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
    z-index: -999;
    height: calc(100% - 135px);
    width: 100%;
}

#supersized img {
    width: auto;
    height: auto;
    position: relative;
    display: none;
    outline: none;
    border: none;
    max-width: none;
}

#supersized.speed img {
    -ms-interpolation-mode: nearest-neighbor;
    image-rendering: -moz-crisp-edges;
}

/*Speed*/
#supersized.quality img {
    -ms-interpolation-mode: bicubic;
    image-rendering: optimizeQuality;
}

/*Quality*/
#supersized li {
    display: block;
    list-style: none;
    z-index: -30;
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
}

#supersized a {
    width: 100%;
    height: 100%;
    display: block;
}

#supersized li.prevslide {
    z-index: -20;
}

#supersized li.activeslide {
    z-index: -10;
}

#supersized li.image-loading {
    background: #111 url(../img/progress.gif) no-repeat center center;
    width: 100%;
    height: 100%;
}

#supersized li.image-loading img {
    visibility: hidden;
}

#supersized li.prevslide img, #supersized li.activeslide img {
    display: inline;
}

ul#supersized {
    margin: 0;
}

.supersized_nav {
    position: absolute;
    top: 0;
    width: 50%;
    height: calc(100% - 135px);
    z-index: 5;
    display: block;
    content: "";
    cursor: pointer;
}

#prevslide {
    left: 0;
    cursor: url('../img/cursor_left.png'), pointer;
}

#nextslide {
    right: 0;
    cursor: url('../img/cursor_right.png'), pointer;
}

.mCSB_draggerContainer {
    overflow: hidden !important;
    left: 100px !important;
    right: -100px !important;
}

.gallery_type_1 #supersized {
    margin: 0 2%;
    width: 96%;
}

.gallery_type_5 #supersized {
    height: 100%;
}

#thumb-tray {
    position: absolute;
    z-index: 110;
    right: 2%;
    top: 0;
}

#thumb-tray li {
    width: 85px;
    height: 85px;
    list-style: none;
    margin-bottom: 10px;
    cursor: pointer;
}

ul#thumb-list {
    position: relative;
    top: 0;
}

#thumb-back, #thumb-forward {
    display: block;
    position: absolute;
    z-index: 100;
    cursor: pointer;
    opacity: 0;
    transition: all .3s;
    -webkit-transition: all .3s;
    width: 20px;
    margin: auto;
}

#thumb-back {
    bottom: 0;
    background: url(../img/thumb-back.png) no-repeat center;
}

#thumb-forward {
    top: 0;
    background: url(../img/thumb-forward.png) no-repeat center;
}

ul#thumb-list li:hover {
    opacity: 0.8;
}

#thumb-tray:hover #thumb-back, #thumb-tray:hover #thumb-forward {
    opacity: .8;
}

li.current-thumb {
    opacity: 0.8;
}

.page404Container, .page_coming_soon {
    text-align: center;
    position: relative;
    height: 100%;
}

.top404 h1 {
    font-size: 64px;
    line-height: 72px;
}

.page_coming_soon h1 {
    font-size: 44px;
    line-height: 50px;
    letter-spacing: 5px;
}

.purchase_template {
    font-size: 12px;
    margin-bottom: 5px;
}

.purchase_template a {
    color: #333333;
}

.top404 h2 {
    margin-top: 60px;
    font-size: 24px;
    line-height: 30px;
}

.top404 p {
    margin-top: 30px;
    font-size: 13px;
    line-height: 18px;
}

.page_coming_soon p {
    margin-top: 60px;
    font-size: 13px;
    line-height: 18px;
}

.page_coming_soon .countdown {
    margin-top: 40px;
    font-size: 13px;
    line-height: 18px;
    display: block;
}

.page_coming_soon .countdown .item {
    margin-top: 30px;
    font-size: 64px;
    line-height: 70px;
    color: #222222;
    font-weight: 700;
    margin-right: 80px;
    letter-spacing: 15px;
}

.page_coming_soon .countdown .item:last-child {
    margin-right: 0;
}

.page_coming_soon .search404 {
    margin-top: 40px;
}

.page_coming_soon .countdown .item .label {
    font-size: 24px;
    line-height: 24px;
    color: #222222;
    font-weight: 700;
}

.soc_block404 {
    margin-top: 150px;
}

.soc_block404 .facebook404 {
    background: #3957a0 !important;
}

.soc_block404 .twitter404 {
    background: #0ed4ec !important;
}

.soc_block404 .pinterest404 {
    background: #df4545 !important;
}

.soc_block404 .linkedin404 {
    background: #017ab7 !important;
}

.soc_block404 .gplus404 {
    background: #df4545 !important;
}

.search404 {
    width: 30%;
    margin: 60px auto 0;
    position: relative;
}

.soc_block404 .button {
    position: relative;
}

.soc_block404 .button:hover {
    top: -3px;
}

/* Single Style */
.single_style .entry-title {
    margin-bottom: 28px;
}

.single_style .pm_post {
    border-bottom: 0;
}

.single_style .blog_listing_style2 .pm_post {
    padding-bottom: 15px;
    margin-bottom: 0;
}

.pm_related_heading {
    margin-bottom: 20px;
}

.pm_related_stand h5 {
    font-size: 14px;
    letter-spacing: 0;
    margin-bottom: 8px;
}

.pm_related_stand .pm_date {
    margin-bottom: 8px;
    display: block;
    color: #aaaaaa;
}

.pm_related_stand .pm_inner {
    padding-left: 150px;
}

.pm_related_stand {
    position: relative;
}

.pm_related_stand .pm_related_fimage {
    width: 130px;
    position: absolute;
    top: 0;
    left: 0;
}

/* Blog Listing Page */
.pm_block_fullscreen {
    height: 100%;
    left: 0;
    overflow: auto;
    width: 100%;
}

.pm_block_listing {
    overflow: hidden;
    margin-left: -40px;
}

.pm_listing_container {
    float: left;
}

.pm_innerwrapper {
    padding-left: 40px;
}

.pm_featured {
    background-position: center;
    background-repeat: no-repeat;
}

.pm_incontent {
    padding-top: 21px;
    padding-bottom: 40px;
}

.pm_section_title {
    color: #222222 !important;
    transition: all .5s;
    line-height: 12px;
}

.pm_section_title:hover {
    color: #c9251c !important;
}

.pm_block_fullscreen .pm_section_meta {
    margin-top: 10px;
}

.pm_block_fullscreen .pm_section_meta span {
    margin-right: 15px;
    color: #aaaaaa;
}

.pm_block_fullscreen .pm_section_meta span a {
    color: #aaaaaa;
    transition: all .5s;
}

.pm_block_fullscreen .pm_section_meta span a:hover {
    color: #c9251c;
}

.pm_incontent.contentarea {
    padding-top: 10px;
    padding-bottom: 34px;
}

.jspContainer {
    overflow: hidden;
    position: relative;
}

.jspPane {
    position: absolute;
}

.jspHorizontalBar {
    background: none;
    margin-left: 2%;
    bottom: 10px;
    left: 0;
    position: fixed;
    z-index: 999;
    height: 8px;
    width: 100%;
}

.jspHorizontalBar .jspDrag,
.jspHorizontalBar .jspTrack {
    float: left;
    height: 100%;
}

.jspTrack {
    position: relative;
    border: solid 1px #e2e2e2;
    height: 8px;
    z-index: 999;
}

.jspDrag {
    background: #e4e4e4;
    cursor: pointer;
    left: 0;
    position: relative;
    top: 0;
}

.jspCap {
    display: none;
}

.listing {
    margin-right: 20px;
}

input {
    -moz-appearance: none;
    -ms-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    -webkit-box-shadow: none;
}

.hidden_img,
.hidden_map,
.gallery_mobyle {
    display: none;
}

.menu_toggler {
    display: none;
}

/* Retina */
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi) {
    .logotype-retina {
        display: block;
        width: 129px;
        height: 30px;
    }

    .logotype {
        display: none;
    }

    #thumb-forward {
        background-image: url(../img/thumb-forward-retina.png);
        background-size: 13px 41px;
    }

    #thumb-back {
        background-image: url(../img/thumb-back-retina.png);
        background-size: 13px 41px;
    }

    a.pm_share_facebook {
        background-size: 90px 25px;
        background-position: 0 -9px;
    }

    a.pm_share_twitter {
        background-size: 90px 25px;
        background-position: -18px -9px;
    }

    a.pm_share_tumblr {
        background-size: 90px 25px;
        background-position: -39px -9px;
    }

    a.pm_share_youtube {
        background-size: 90px 25px;
        background-position: -55px -9px;
    }

    a.pm_share_instagram {
        background-size: 90px 25px;
        background-position: -74px -9px;
    }
}

/* Responsive */
@media only screen and (max-width: 1025px) {
    #thumb-back, #thumb-forward {
        opacity: .8;
    }

    input[type=text] {
        width: 140px !important;
    }

    textarea {
        text-indent: 0 !important;
        padding: 5px 10px !important;
        width: 280px;
    }
    footer .span6 {
        width: 100% !important;
        text-align: center !important;
        margin-left: 0 !important;
    }

    footer .pm_share_cont {
        float: none !important;
        margin-left: 0;
    }

    footer .pm_phone {
        display: none;
    }

    footer .pm_hided_icons a:first-child {
        margin-left: 0;
    }

    .hred.style2 {
        padding-left: 0 !important;
    }

    .pm_relared_row .span6 {
        width: 100% !important;
        min-height: 150px;
        margin-left: 0 !important;
        padding-left: 0 !important;
    }
}

@media only screen and (max-width: 769px) {
    .at300b {
        margin-right: 6px;
    }

    input[type=text] {
        width: 100px !important;
    }

    textarea {
        text-indent: 0 !important;
        padding: 5px 10px !important;
        width: 200px;
    }
}

@media only screen and (max-width: 737px) {
    body {
        padding-bottom: 0px;
    }

    .featured_image_block {
        display: none !important;
    }

    .hred {
        width: 100% !important;
        padding-left: 17px;
        margin-bottom: 0 !important;
    }

    .header_line {
        display: none;
    }

    /* Menu Mobyle */
    .menu_toggler {
        display: inline-block;
        float: right;
        width: 29px;
        height: 23px;
        background-image: url(../img/toggler_retina.png);
        background-size: 29px 23px;
        margin-right: 34px;
    }

    .menu_mobyle {
        float: left;
        width: 100%;
        clear:both;
    }

    ul.menu {
        width: 100%;
        margin-top: 10px;
    }

    ul.menu li {
        display: block;
        float: none;
    }

    ul.menu li span {
        padding: 5px 0;
        display: block;
    }

    ul.menu li span .menu_mark {
        display: inline;
    }

    .sub-menu {
        position: relative;
        left: 0;
        top: 0;
        margin: 0 0 0 20px;
        padding: 0;
    }

    .menu_mobyle .second_lvl_mobile,
    .menu_mobyle .third_lvl_mobile {
        display:none;
    }

    .sub-menu li,
    .sub-menu li:last-child {
        border: none;
    }

    .sub-menu li a {
        text-align: left;
        width: auto;
        height: auto;
    }

    .sub-menu li span {
        padding: 5px 0 !important;
    }

    ul.sub-menu:before {
        display: none !important;
    }

    .sub-menu .sub-menu {
        top: 0;
        left: 0;
        margin-left: 20px;
    }

    .menu_mobyle .menu li.item_has_children:hover .second_lvl,
    .menu_mobyle .item_2_level_has_children:hover .third_lvl {
        display: none;
    }

    .item_has_children span:after {
        content: "+";
        padding: 0 3px;
    }

    .item_has_children.opened span:after {
        content: "-";
    }

    .item_has_children .sub-menu li a span:after {
        content: "";
    }

    .item_2_level_has_children a span {
        color: #aaaaaa;
    }

    .hidden_img,
    .hidden_map {
        display: block;
        margin-bottom: 29px;
    }

    a.at300b {
        margin-right: 15px !important;
    }

    /* Water Wheel Gallery */
    body.gallery4 {
        overflow: visible;
    }

    .whaterWheel_content {
        padding: 0 17px;
    }

    .whaterWheel_content #carousel {
        width: 100% !important;
        padding: 0 !important;
        height: auto !important;
        position: static !important;
        margin: 0 !important;
    }

    .whaterWheel_content .item_block {
        width: 100% !important;
        margin-left: 0 !important;
        margin-bottom: 17px !important;
        height: auto !important;
        position: static !important;
        transform: scale(1) !important;
        -webkit-transform: scale(1) !important;
    }

    .whaterWheel_content .item_block img {
        width: 100% !important;
        height: auto !important;
    }

    /* GALERIES 1 - 3, 5 */
    .supersized_here {
        display: none;
    }

    .gallery_mobyle {
        display: block;
        padding: 0 24px;
    }

    .gallery_mobyle img {
        margin-bottom: 17px;
    }

    .search404 {
        width: 100% !important;
    }

    #filters li {
        display: inline-block;
    }

    header {
        margin: 0 0 30px;
        padding-top: 34px;
        padding-left: 24px;
    }

    .pm_incontent.contentarea {
        padding-bottom: 0;
    }

    .pm_block_fullscreen,
    .port_wrapper,
    .top404.valign_center,
    .page_coming_soon {
        padding: 0 17px;
    }

    .page404 .valign_center {
        margin-top: 0 !important;
    }

    .soc_block404 {
        margin-top: 40px;
    }

    .search404 input[type="text"] {
        width: 98% !important;
    }
}

@media only screen and (min-width: 568px) and (max-width: 737px) {
    .page404 .content.container {
        overflow: visible !important;
    }

    .countdown .item {
        font-size: 60px !important;
        margin-right: 35px !important;
    }

    .countdown .item:last-child {
        margin-right: 0 !important;
    }

    header {
        padding-top: 17px !important;
        margin-bottom: 15px !important;
    }

    .project_description {
        margin-bottom: 55px !important;
    }
}

@media only screen and (max-width: 668px) {
    .countdown .item {
        font-size: 50px !important;
    }
}

@media only screen and (max-width: 569px) {
    .countdown .item {
        font-size: 32px !important;
    }
}

@media only screen and (max-width: 415px) {
    .hidden_map {
        height: 368px;
    }

    .thumbs_box {
        width: 100% !important;
    }

    .page_coming_soon .countdown .item {
        letter-spacing: 5px !important;
        margin-right: 25px !important;
    }

    .page_coming_soon h1 {
        margin-top: 70px !important;
    }

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

    .page_coming_soon .search404 {
        margin-top: 70px !important;
    }

    .soc_block404 {
        margin-top: 110px !important;
    }

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

    input[type=text] {
        width: 173px !important;
    }

    textarea {
        width: 338px !important;
        text-indent: 0;
        padding: 5px 10px;
    }

    .page404 .content.container {
        overflow: visible !important;
    }
}

@media only screen and (max-width: 376px) {
    .hidden_map {
        height: 333px;
    }

    .page_coming_soon .countdown .item {
        letter-spacing: 5px !important;
        margin-right: 10px !important;
    }

    .page_coming_soon h1 {
        margin-top: 0 !important;
    }

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

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

    input[type=text] {
        width: 155px !important;
    }

    textarea {
        width: 300px !important;
        text-indent: 0;
        padding: 5px 10px;
    }
}

@media only screen and (max-width: 321px) {
    .hidden_map {
        height: 284px;
    }

    .page_coming_soon h1 {
        font-size: 32px;
    }

    .page_coming_soon .countdown {
        margin-top: 20px !important;
    }

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

    .soc_block404 {
        margin-top: 70px !important;
    }

    .page_coming_soon .countdown .item {
        font-size: 22px !important;
    }

    .top404 h1 {
        font-size: 50px !important;
        margin-top: 0 !important;
    }

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

    input[type=text] {
        width: 130px !important;
    }

    textarea {
        width: 249px !important;
        text-indent: 0;
        padding: 5px 10px;
    }
}

@media only screen and (max-width: 900px) {
    .container.port_grid_wrapper .pm_port_4_columns .port_work {
        width: 49% !important;
    }
}

@media only screen and (max-width: 1220px) {
    .container.port_grid_wrapper, .blog_listing_style2 {
        width: 100% !important;
    }

    .blog_listing_style2 .pm_post_formats_cont iframe {
        height: 300px;
    }
}

@media only screen and (max-width: 660px) {
    .container.port_grid_wrapper .port_work {
        width: 100% !important;
    }

    .pm_meta .pm_fleft, .pm_meta .pm_fright {
        width: 100% !important;
        margin-bottom: 15px !important;
        float: none !important;
    }
}