/*
* Template Name: Nef
* Template Description: Nef - Responsive Coming Soon Template
* Template URI: http://demo.webisir.com/nef
* Version: 1.2
* Author: Webisir
* Author URI: http://themeforest.net/user/webisir
*/

/*--------------------------------------------------------------
    TABLE OF CONTENTS:
----------------------------------------------------------------

1.0 - Google Fonts
2.0 - Font Awesome 4.3.0
3.0 - Reset
4.0 - Headings
5.0 - Logo
6.0 - Main Container
7.0 - Footer
8.0 - Page Sections
    8.1 - Home Section
    8.2 - Extra Section
        8.2.1 - Extra Section Layout Columns
        8.2.2 - Toggle Extra Section
9.0 - Countdown
10.0 - Social Links
11.0 - List Contacts
12.0 - Forms
13.0 - Video Controls
14.0 - Helper Classes
15.0 - Page Loader
    15.1 - Loader Animation
16.0 - Overlay Background
17.0 - Pattern
18.0 - Custom ScroolBar: Default Theme
19.0 - Media Queries

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

/*--------------------------------------------------------------
  1.0 - Google Fonts
--------------------------------------------------------------*/

/* Open Sans */
@import url(http://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,700,300,600,800,400);

/* Bitter */
@import url(http://fonts.googleapis.com/css?family=Bitter:400,700,400italic);

/*--------------------------------------------------------------
  2.0 - Font Awesome 4.3.0
--------------------------------------------------------------*/

@import url('font-awesome.min.css');

/*--------------------------------------------------------------
  3.0 - Reset
--------------------------------------------------------------*/

*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
    display: block;
}

audio,
canvas,
video {
    display: inline-block;
}

audio:not([controls]) {
    display: none;
    height: 0;
}

[hidden] {
    display: none;
}

html,
button,
input,
select,
textarea {
    color: #333;
}

html {
    height: 100%;
    font-size: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    padding: 60px;
    height: 100%;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    overflow: hidden;
}

body:before {
    position: fixed;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.2);
    content: '';
    transition: top 0.4s, width 0.8s linear 0.4s;
}

body.loading:before {
    width: 0%;
}

body.open-ext:before {
    top: 200px;
    transition: top 0.4s ease-out 0.2s;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

img {
    vertical-align: middle;
    max-width: 100%;
}

textarea {
    resize: vertical;
}

b,
strong {
    font-weight: bold;
}

em {
    font-style: italic;
}

p,
pre,
dl,
ol,
ul {
    margin: 20px 0;
}

dd {
    margin-left: 40px;
}

ol,
ul {
    padding-left: 40px;
}

q,
blockquote {
    quotes: none;
    margin: 20px 40px;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

code,
kbd,
pre,
samp {
    font-family: monospace, serif;
}

pre {
    white-space: pre;
    white-space: pre-wrap;
    word-wrap: break-word;
}

small {
    font-size: 80%;
}

a {
    text-decoration: none;
    color: #444;
}

a:hover {
    color: #000;
}

a,
a:focus,
a:active,
a:hover {
    outline: 0;
}

/*--------------------------------------------------------------
   4.0 - Headings
--------------------------------------------------------------*/

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 20px;  
    font-family: 'Bitter', sans-serif;
    font-weight: 700;
    clear: both;
}

h1,
h2 {
    color: #000;
}

h1 {
    font-size: 30px;
}

h2 {
    font-size: 24px;
}

h3 {
    font-size: 20px;
}

h4 {
    font-size: 18px;
}

h5 {
    font-size: 16px;
}

h6 {
    font-size: 14px;
}

/*--------------------------------------------------------------
   5.0 - Logo
--------------------------------------------------------------*/

#logo {
    position: absolute;
    top: 60px;
    left: 60px;
    margin: 0;
}

#logo img {
    max-height: 80px;
}

/*--------------------------------------------------------------
   6.0 - Main Container
--------------------------------------------------------------*/

.loading .wrapper {
    opacity: 0;
}

.wrapper {
    display: table;
    width: 100%;
    height: 100%;
    opacity: 1;
    -webkit-transition: opacity 0.6s linear 1.5s;
       -moz-transition: opacity 0.6s linear 1.5s;
        -ms-transition: opacity 0.6s linear 1.5s;
         -o-transition: opacity 0.6s linear 1.5s;
            transition: opacity 0.6s linear 1.5s;
}

/*--------------------------------------------------------------
   7.0 - Footer
--------------------------------------------------------------*/

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 60px;
    color: #fff;
    background: transparent;
    font-size: 12px;
    border-top: 1px solid rgba(255,255,255,0.2);
    -webkit-transition: background 0.4s;
       -moz-transition: background 0.4s;
        -ms-transition: background 0.4s;
         -o-transition: background 0.4s;
            transition: background 0.4s;
}

.open-ext footer {
    background: #f1f1f1;
    color: inherit;
}

/*--------------------------------------------------------------
   8.0 - Page Sections
--------------------------------------------------------------*/

/*--------------------------------------------------------------
   8.1 - Home Section
--------------------------------------------------------------*/

#home {
    display: table-cell;
    vertical-align: middle;
    width: 50%;
    opacity: 1;
    -webkit-transform: translateX(0);
       -moz-transform: translateX(0);
        -ms-transform: translateX(0);
         -o-transform: translateX(0);
            transform: translateX(0);
    -webkit-transition: -webkit-transform 0.8s, opacity 0.4s linear 0.4s;
       -moz-transition: -moz-transform 0.8s, opacity 0.4s linear 0.4s;
        -ms-transition: -ms-transform 0.8s, opacity 0.4s linear 0.4s;
         -o-transition: -o-transform 0.8s, opacity 0.4s linear 0.4s;
            transition: transform 0.8s, opacity 0.4s linear 0.4s;
}

.open-ext #home {
    opacity: 0;
    -webkit-transform: translateX(-100%);
       -moz-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
         -o-transform: translateX(-100%);
            transform: translateX(-100%);
    -webkit-transition: -webkit-transform 0.8s, opacity 0.4s;
       -moz-transition: -moz-transform 0.8s, opacity 0.4s;
        -ms-transition: -ms-transform 0.8s, opacity 0.4s;
         -o-transition: -o-transform 0.8s, opacity 0.4s;
            transition: transform 0.8s, opacity 0.4s;
}

#home * {
    color: #fff;
}

#home header {
    padding-bottom: 40px; 
}

#home h2 {
    margin-bottom: 10px;
    font-size: 48px;
    letter-spacing: -1px;
}

#home h2 span {
    font-weight: normal;
}

#home h3 {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
   8.2 - Extra Section
--------------------------------------------------------------*/

#extra-section {
    position: fixed;
    top: 200px;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 60px;
    background: #fff;
    visibility: hidden;  
    -webkit-transform: translateY(100%);
       -moz-transform: translateY(100%);
        -ms-transform: translateY(100%);
         -o-transform: translateY(100%);
            transform: translateY(100%);
    -webkit-transition: -webkit-transform 0.6s ease-out, visibility 0.6s ease-out 0.6s;
       -moz-transition: -moz-transform 0.6s ease-out, visibility 0.6s ease-out 0.6s;
        -ms-transition: -ms-transform 0.6s ease-out, visibility 0.6s ease-out 0.6s;
         -o-transition: -o-transform 0.6s ease-out, visibility 0.6s ease-out 0.6s;
            transition: transform 0.6s ease-out, visibility 0.6s ease-out 0.6s;
}

.open-ext #extra-section {
    visibility: visible;   
    -webkit-transform: translateY(0%);
       -moz-transform: translateY(0%);
        -ms-transform: translateY(0%);
         -o-transform: translateY(0%);
            transform: translateY(0%);
    -webkit-transition: -webkit-transform 0.6s ease-out 0.4s;
       -moz-transition: -moz-transform 0.6s ease-out 0.4s;
        -ms-transition: -ms-transform 0.6s ease-out 0.4s;
         -o-transition: -o-transform 0.6s ease-out 0.4s;
            transition: transform 0.6s ease-out 0.4s;
}

.col-title {
    margin-bottom: 40px;
}

/*--------------------------------------------------------------
   8.2.1 - Extra Section Layout Columns
--------------------------------------------------------------*/

.extra-section-col {
    float: left;
    padding-left: 60px;
}

.extra-section-col:first-child {
    padding-left: 0;
}

.one-half {
    width: 50%;
}

.one-third {
    width: 33.33333333%;
}

.two-thirds {
    width: 66.66666667%;
}

/*--------------------------------------------------------------
   8.2.2 - Toggle Extra Section
--------------------------------------------------------------*/


#toggle-section,
#toggle-section:before {
    border-radius: 50%;
    -webkit-transform: scale(1);
       -moz-transform: scale(1);
        -ms-transform: scale(1);
         -o-transform: scale(1);
            transform: scale(1);
}

#toggle-section {
    display: block;
    position: absolute;
    top: 50%;
    right: 50%;
    margin: -30px -30px 0 0;
    width: 60px;
    height: 60px;
    color: #333;
    background: #fff;
    line-height: 58px;
    text-align: center;
    font-size: 18px;
    border: 1px solid #fff;
    -webkit-transition: -webkit-transform 0.8s, color 0.2s, background 0.2s, border-color 0.2s;
       -moz-transition: -moz-transform 0.8s, color 0.2s, background 0.2s, border-color 0.2s;
        -ms-transition: -ms-transform 0.8s, color 0.2s, background 0.2s, border-color 0.2s;
         -o-transition: -o-ttransform 0.8s, color 0.2s, background 0.2s, border-color 0.2s;
            transition: transform 0.8s, color 0.2s, background 0.2s, border-color 0.2s;
}

#toggle-section:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 58px;
    height: 58px;
    border: 1px solid rgba(255,255,255,0.2);
    content: '';
    -webkit-transition: -webkit-transform 0.2s;
       -moz-transition: -moz-transform 0.2s;
        -ms-transition: -ms-transform 0.2s;
         -o-transition: -o-transform 0.2s;
            transition: transform 0.2s;
}

#toggle-section:hover {
    color: #ccc;
    background: #fff;
    border-color: #fff;
}

#toggle-section:before {
   border-color: rgba(255,255,255,0.4); 
}

#toggle-section:hover:before {
    -webkit-transform: scale(1.3);
       -moz-transform: scale(1.3);
        -ms-transform: scale(1.3);
         -o-transform: scale(1.3);
            transform: scale(1.3);
}

.open-ext #toggle-section,
.moving #toggle-section.moved {
    -webkit-transform: scale(0);
       -moz-transform: scale(0);
        -ms-transform: scale(0);
         -o-transform: scale(0);
            transform: scale(0);
    -webkit-transition: -webkit-transform 0.4s;
       -moz-transition: -moz-transform 0.4s;
        -ms-transition: -ms-transform 0.4s;
         -o-transition: -o-transform 0.4s;
            transition: transform 0.4s;
}

#toggle-section.moved {
    top: 70px;
    margin-top: 0;
    color: #fff;
    background: transparent;
    z-index: 2;
    -webkit-transform: scale(1);
       -moz-transform: scale(1);
        -ms-transform: scale(1);
         -o-transform: scale(1);
            transform: scale(1);
    -webkit-transition: -webkit-transform 0.4s, color 0.2s, border-color 0.2s;
       -moz-transition: -moz-transform 0.4s, color 0.2s, border-color 0.2s;
        -ms-transition: -ms-transform 0.4s, color 0.2s, border-color 0.2s;
         -o-transition: -o-transform 0.4s, color 0.2s, border-color 0.2s;
            transition: transform 0.4s, color 0.2s, border-color 0.2s;
}

#toggle-section.moved:hover {
    border-color: transparent;
}

#toggle-section.moved i:before {
    font-family: 'FontAwesome';
    content: '\f00d';  
}

/*--------------------------------------------------------------
   9.0 - Countdown
--------------------------------------------------------------*/

#countdown {
    display: table-cell;
    vertical-align: middle;
    width: 50%;
    height: 180px;
    color: #fff;
    text-align: right;
    opacity: 1;
    -webkit-transform: translateX(0);
       -moz-transform: translateX(0);
        -ms-transform: translateX(0);
         -o-transform: translateX(0);
            transform: translateX(0);
    -webkit-transition: -webkit-transform 0.8s, opacity 0.4s linear 0.4s;
       -moz-transition: -moz-transform 0.8s, opacity 0.4s linear 0.4s;
        -ms-transition: -ms-transform 0.8s, opacity 0.4s linear 0.4s;
         -o-transition: -o-transform 0.8s, opacity 0.4s linear 0.4s;
            transition: transform 0.8s, opacity 0.4s linear 0.4s;
}

#countdown .count-el {
    display: inline-block;
    text-align: center;
    border-left: 1px solid rgba(255,255,255,0.1); 
}

#countdown .count-el:first-child {
    border-left: 0;
}

#countdown .count-el span {
    display: block; 
    height: 80px;
    line-height: 80px;
    text-transform: uppercase;   
    letter-spacing: 1px;
}

#countdown .count-el span.num-counter {
    width: 110px;
    font-size: 36px;
}

#countdown .count-el span.name-counter {
    font-size: 11px;
    font-weight: bold;
}


.open-ext #countdown,
.open-ext.moving #countdown.moved {
    -webkit-transform: translateX(100%);
       -moz-transform: translateX(100%);
        -ms-transform: translateX(100%);
         -o-transform: translateX(100%);
            transform: translateX(100%);
}

.open-ext #countdown {
    opacity: 0;
    -webkit-transition: -webkit-transform 0.8s, opacity 0.4s;
       -moz-transition: -moz-transform 0.8s, opacity 0.4s;
        -ms-transition: -ms-transform 0.8s, opacity 0.4s;
         -o-transition: -o-transform 0.8s, opacity 0.4s;
            transition: transform 0.8s, opacity 0.4s;
}

.open-ext #countdown.moved {
    position: absolute;
    top: 60px;
    right: 60px;
    height: 80px;
    opacity: 1;
    -webkit-transform: translateX(0);
       -moz-transform: translateX(0);
        -ms-transform: translateX(0);
         -o-transform: translateX(0);
            transform: translateX(0);
    -webkit-transition: -webkit-transform 0.8s, opacity 0.8s;
       -moz-transition: -moz-transform 0.8s, opacity 0.8s;
        -ms-transition: -ms-transform 0.8s, opacity 0.8s;
         -o-transition: -o-transform 0.8s, opacity 0.8s;
            transition: transform 0.8s, opacity 0.8s;
}

.open-ext.moving #countdown.moved {
    -webkit-transition: -webkit-transform 0.4s;
       -moz-transition: -moz-transform 0.4s;
        -ms-transition: -ms-transform 0.4s;
         -o-transition: -o-transform 0.4s;
            transition: transform 0.4s;
}

#countdown.moved .count-el {
    border-color: rgba(255,255,255,0.2);
}

#countdown.moved .count-el span {
    height: 40px;
    line-height: 40px;
}

.end-countdown span {
  display: block;
  font-size: 40px;
  font-weight: 700;
}

/*--------------------------------------------------------------
   10.0 - Social Links
--------------------------------------------------------------*/

ul#social-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

ul#social-links li {
    display: inline-block;
    margin: 0 10px 20px 10px;
}

ul#social-links li a {
    display: block;
}

ul#social-links li a:hover i {
    -webkit-transform: scale(2);
       -moz-transform: scale(2);
        -ms-transform: scale(2);
         -o-transform: scale(2);
            transform: scale(2);
}

/*--------------------------------------------------------------
   11.0 - List Contacts
--------------------------------------------------------------*/

ul.list-contacts {
    margin-top: 40px;
    padding: 0;
    list-style: none;
}

ul.list-contacts li {
    margin-bottom: 20px;
    overflow: hidden;
}

ul.list-contacts li i {
    float:left;
    margin: 0 20px 0 0;
    width: 30px;
    height: 30px;
    color: #ccc;
    line-height: 30px;
    font-size: 13px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 15px;
    -webkit-transition: color 0.4s, border-color 0.4s;
       -moz-transition: color 0.4s, border-color 0.4s;
        -ms-transition: color 0.4s, border-color 0.4s;
         -o-transition: color 0.4s, border-color 0.4s;
            transition: color 0.4s, border-color 0.4s;
}

ul.list-contacts li:hover i {
    color: #333;
    border-color: #333;
}

ul.list-contacts li.address span {
    display: block;
    padding-left: 40px;
}

/*--------------------------------------------------------------
   12.0 - Forms
--------------------------------------------------------------*/

form label {
    display: block;
    margin-bottom: 20px;
}

input,
textarea {
    padding: 10px 0;
    width: 100%;
    background: transparent;
    font-size: 14px;
    border: 0; 
    border-bottom: 1px solid #ccc;
    border-radius: 0;
    outline: none;
    -webkit-transition: border-color 0.2s, background 0.2s;
    -moz-transition: border-color 0.2s, background 0.2s;
    -ms-transition: border-color 0.2s, background 0.2s;
    -o-transition: border-color 0.2s, background 0.2s;
    transition: border-color 0.2s, background 0.2s;
    -webkit-appearance: none;
}

input[type="text"]:focus,
textarea:focus {
    border-color: #333;
}

input.submit {
    margin-bottom: 20px;
    padding: 15px 20px;
    width: auto;
    font-weight: bold;
    cursor: pointer;
    border: 1px solid #ccc;
    border-radius: 3px;
    -webkit-appearance: button;
}

input.submit:hover {
    background: #ccc;
    border-color: transparent;
}

textarea {
    height: 120px;
}

.form-msg {
    display: inline-block;
    margin-bottom: 20px;
    color: #fff;
    font-weight: bold;
    text-align: center;
}

.form-msg a:before {
    font-family: 'FontAwesome';
    content: '\f00d';
    margin-right: 10px;
}

.form-msg a {
    display: block;
    padding: 10px 40px;
}

.form-msg a,
.form-msg a:hover {
    color: #fff;
}

.form-msg.fail {
    background: #CF000F;
}

.form-msg.duplicate {
    background: #e67e22;
}

.form-msg.success {
    background: #26A65B;
}

.form-loader {
    display: inline-block;
    margin-left: 20px;
    width: 20px;
    height: 20px;
    vertical-align: middle;
    border: 1px solid #fff;
    border-radius: 50%;
    -webkit-animation: pulse 0.8s infinite;
       -moz-animation: pulse 0.8s infinite;
         -o-animation: pulse 0.8s infinite;
            animation: pulse 0.8s infinite;
}

.contact-form .form-loader {
    border-color: #ccc;
}

.newsletter-form legend {
    margin-bottom: 40px;
}

.newsletter-form input[type="text"] {
    max-width: 400px;
}

.newsletter-form input.submit {
    margin-left: 40px;
    padding: 10px 15px;
    color: #333 !important;
    background: #fff;
    border-color: transparent;
}

.newsletter-form input.submit:hover,
.newsletter-form input[type="text"]:focus {
    border-color: #fff;
}

.newsletter-form input.submit:hover {
    color: #fff !important;
    background: transparent;
}

/*--------------------------------------------------------------
  13.0 - Video Controls
--------------------------------------------------------------*/

#video-controls {
    position: fixed;
    right: 60px;
    bottom: 20px;
    z-index: 1;
}

#video-controls a {
    display: inline-block;
    margin-left: 20px;
    color: #fff;
}

.open-ext #video-controls a {
    color: inherit;
}

#bgndVideo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2 !important;
    background-image: none !important;
}

.mb_YTPBar {
    display: none !important;
}

/*--------------------------------------------------------------
   14.0 - Helper Classes
--------------------------------------------------------------*/

.text-left {
  text-align: left;
}

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

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

.text-justify {
  text-align: justify;
}

.text-nowrap {
  white-space: nowrap;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-capitalize {
  text-transform: capitalize;
}

.align-left {
    display: inline-block;
    float: left;
    margin-right: 20px;
}

.align-right {
    display: inline-block;
    float: right;
    margin-left: 20px;
}

.align-center {
    clear: both;
    display: block;
    margin: 0 auto;
}

.avatar {
    margin-bottom: 20px;
    padding: 4px;
    border: 1px solid #eee;
    border-radius: 50%;

}

/*--------------------------------------------------------------
   15.0 - Page Loader
--------------------------------------------------------------*/

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    overflow: hidden;
    z-index: 10;
}

.loader:after {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -40px 0 0 -40px;
    width: 80px;
    height: 80px;
    border: 1px solid #ccc;
    border-radius: 50%;
    content: '';
    -webkit-animation: pulse 1.5s linear infinite;
    -moz-animation: pulse 1.5s linear infinite;
    -o-animation: pulse 1.5s linear infinite;
    animation: pulse 1.5s linear infinite;
}

/*--------------------------------------------------------------
   15.1 - Loader Animation
--------------------------------------------------------------*/

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

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

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

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/*--------------------------------------------------------------
   16.0 - Overlay Background
--------------------------------------------------------------*/

#overlay {
    position: fixed;
    top: 0;
    left: 0;  
    width: 100%;
    height: 100%;
    z-index: -1;
    
    /* Overlay OPACITY */
    opacity: 0.7;

    /* Overlay BACKGROUND */ 
    background: #000000;    
}

/*--------------------------------------------------------------
   17.0 - Pattern
--------------------------------------------------------------*/

body.pattern {
    backgroun-repeat: repeat;
    background-image: url(../img/sample-pattern.png);
}

/*--------------------------------------------------------------
   18.0 - Custom ScroolBar: Default Theme
          http://manos.malihu.gr/jquery-custom-content-scroller
--------------------------------------------------------------*/

.mCustomScrollbar{-ms-touch-action:none;touch-action:none}.mCustomScrollbar.mCS_no_scrollbar{-ms-touch-action:auto;touch-action:auto}.mCustomScrollBox{position:relative;overflow:hidden;height:100%;max-width:100%;outline:none;direction:ltr}.mCSB_container{overflow:hidden;width:auto;height:auto}.mCSB_inside > .mCSB_container{margin-right:60px}.mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden{margin-right:0}.mCS-dir-rtl > .mCSB_inside > .mCSB_container{margin-right:0;margin-left:30px}.mCS-dir-rtl > .mCSB_inside > .mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden{margin-left:0}.mCSB_scrollTools{position:absolute;width:16px;height:auto;left:auto;top:0;right:0;bottom:0}.mCSB_outside + .mCSB_scrollTools{right:-26px}.mCS-dir-rtl > .mCSB_inside > .mCSB_scrollTools,.mCS-dir-rtl > .mCSB_outside + .mCSB_scrollTools{right:auto;left:0}.mCS-dir-rtl > .mCSB_outside + .mCSB_scrollTools{left:-26px}.mCSB_scrollTools .mCSB_draggerContainer{position:absolute;top:0;left:0;bottom:0;right:0;height:auto}.mCSB_scrollTools a + .mCSB_draggerContainer{margin:20px 0}.mCSB_scrollTools .mCSB_draggerRail{width:2px;height:100%;margin:0 auto;-webkit-border-radius:16px;-moz-border-radius:16px;border-radius:16px}.mCSB_scrollTools .mCSB_dragger{cursor:pointer;width:100%;height:30px;z-index:1}.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{position:relative;width:4px;height:100%;margin:0 auto;-webkit-border-radius:16px;-moz-border-radius:16px;border-radius:16px;text-align:center}.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar{width:12px}.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail{width:8px}.mCSB_scrollTools .mCSB_buttonUp,.mCSB_scrollTools .mCSB_buttonDown{display:block;position:absolute;height:20px;width:100%;overflow:hidden;margin:0 auto;cursor:pointer}.mCSB_scrollTools .mCSB_buttonDown{bottom:0}.mCSB_scrollTools,.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCSB_scrollTools .mCSB_buttonUp,.mCSB_scrollTools .mCSB_buttonDown,.mCSB_scrollTools .mCSB_buttonLeft,.mCSB_scrollTools .mCSB_buttonRight{-webkit-transition:opacity .2s ease-in-out,background-color .2s ease-in-out;-moz-transition:opacity .2s ease-in-out,background-color .2s ease-in-out;-o-transition:opacity .2s ease-in-out,background-color .2s ease-in-out;transition:opacity .2s ease-in-out,background-color .2s ease-in-out}.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger_bar,/* auto-expanded scrollbar */
.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerRail,.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger_bar,.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerRail{-webkit-transition:width .2s ease-out .2s,height .2s ease-out .2s,margin-left .2s ease-out .2s,margin-right .2s ease-out .2s,margin-top .2s ease-out .2s,margin-bottom .2s ease-out .2s,opacity .2s ease-in-out,background-color .2s ease-in-out;-moz-transition:width .2s ease-out .2s,height .2s ease-out .2s,margin-left .2s ease-out .2s,margin-right .2s ease-out .2s,margin-top .2s ease-out .2s,margin-bottom .2s ease-out .2s,opacity .2s ease-in-out,background-color .2s ease-in-out;-o-transition:width .2s ease-out .2s,height .2s ease-out .2s,margin-left .2s ease-out .2s,margin-right .2s ease-out .2s,margin-top .2s ease-out .2s,margin-bottom .2s ease-out .2s,opacity .2s ease-in-out,background-color .2s ease-in-out;transition:width .2s ease-out .2s,height .2s ease-out .2s,margin-left .2s ease-out .2s,margin-right .2s ease-out .2s,margin-top .2s ease-out .2s,margin-bottom .2s ease-out .2s,opacity .2s ease-in-out,background-color .2s ease-in-out}.mCSB_scrollTools{opacity:.75;filter:alpha(opacity=75);-ms-filter:alpha(opacity=75)}.mCS-autoHide > .mCustomScrollBox > .mCSB_scrollTools,.mCS-autoHide > .mCustomScrollBox ~ .mCSB_scrollTools{opacity:0;filter:alpha(opacity=0);-ms-filter:alpha(opacity=0)}.mCustomScrollbar > .mCustomScrollBox > .mCSB_scrollTools.mCSB_scrollTools_onDrag,.mCustomScrollbar > .mCustomScrollBox ~ .mCSB_scrollTools.mCSB_scrollTools_onDrag,.mCustomScrollBox:hover > .mCSB_scrollTools,.mCustomScrollBox:hover ~ .mCSB_scrollTools,.mCS-autoHide:hover > .mCustomScrollBox > .mCSB_scrollTools,.mCS-autoHide:hover > .mCustomScrollBox ~ .mCSB_scrollTools{opacity:1;filter:alpha(opacity=100);-ms-filter:alpha(opacity=100)}.mCSB_scrollTools .mCSB_draggerRail{background-color:#000;background-color:rgba(0,0,0,0.4);filter:alpha(opacity=40);-ms-filter:alpha(opacity=40)}.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{background-color:#fff;background-color:rgba(255,255,255,0.75);filter:alpha(opacity=75);-ms-filter:alpha(opacity=75)}.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{background-color:#fff;background-color:rgba(255,255,255,0.85);filter:alpha(opacity=85);-ms-filter:alpha(opacity=85)}.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{background-color:#fff;background-color:rgba(255,255,255,0.9);filter:alpha(opacity=90);-ms-filter:alpha(opacity=90)}.mCSB_scrollTools .mCSB_buttonUp,.mCSB_scrollTools .mCSB_buttonDown,.mCSB_scrollTools .mCSB_buttonLeft,.mCSB_scrollTools .mCSB_buttonRight{background-image:url(mCSB_buttons.png);background-repeat:no-repeat;opacity:.4;filter:alpha(opacity=40);-ms-filter:alpha(opacity=40)}.mCSB_scrollTools .mCSB_buttonUp{background-position:0 0}.mCSB_scrollTools .mCSB_buttonDown{background-position:0 -20px}.mCSB_scrollTools .mCSB_buttonLeft{background-position:0 -40px}.mCSB_scrollTools .mCSB_buttonRight{background-position:0 -56px}.mCSB_scrollTools .mCSB_buttonUp:hover,.mCSB_scrollTools .mCSB_buttonDown:hover,.mCSB_scrollTools .mCSB_buttonLeft:hover,.mCSB_scrollTools .mCSB_buttonRight:hover{opacity:.75;filter:alpha(opacity=75);-ms-filter:alpha(opacity=75)}.mCSB_scrollTools .mCSB_buttonUp:active,.mCSB_scrollTools .mCSB_buttonDown:active,.mCSB_scrollTools .mCSB_buttonLeft:active,.mCSB_scrollTools .mCSB_buttonRight:active{opacity:.9;filter:alpha(opacity=90);-ms-filter:alpha(opacity=90)}ttonRight:active{ opacity: 0.9; filter: "alpha(opacity=90)"; -ms-filter: "alpha(opacity=90)"; }

/*--------------------------------------------------------------
   19.0 - Media Queries
--------------------------------------------------------------*/

@media (max-width: 1300px) {
    
    body {
        display: table;
        overflow-y: auto;
        padding-top: 200px;
    }

    body:before {
        display: none;
    }

    body,
    legend,
    #home,
    #countdown,
    .one-half,
    .two-third,
    .one-third {
        width: 100%;   
    }

    .wrapper {
        display: table-cell;
        vertical-align: middle;      
    }

    #logo,
    #home,
    #countdown,
    footer {
        text-align: center;        
    }

    #home,
    #countdown {
        display: block;
    }
   
    #logo {
        left: 50%;
        -webkit-transition: left 0.4s, margin 0.4s;
           -moz-transition: left 0.4s, margin 0.4s;
            -ms-transition: left 0.4s, margin 0.4s;
             -o-transition: left 0.4s, margin 0.4s;
                transition: left 0.4s, margin 0.4s;
    }

    .open-ext #logo {
        left: 60px;
    }

    #home {     
        margin-bottom: 80px;
        padding-bottom: 0;
    }

    #countdown {
        height: 80px;
    }

    .open-ext #countdown {
        text-align: right;
    }

    #countdown .count-el span {
        height: 40px;
        line-height: 40px;

    }

    #toggle-section,
    #toggle-section.moved {
        position: absolute;
        top: -10px;
        right: -10px;
        margin: 0;
    }

    .extra-section-col {
        float: none;
        padding-left: 0;
        margin-bottom: 60px;
    }

    #video-controls {
        position: static;
        margin-top: 20px;
    }

}

@media (max-width: 850px) {

    .open-ext #countdown {
        display: none;   
    }

    footer {
        position: static;
        margin-top: 80px;
    }

    .moving footer {
        display: none;
    }

    .open-ext footer {
        display: block;
        position: fixed;
        margin-top: 0;
    }

}

@media (max-width: 768px) {

    #extra-section {
        padding: 40px;
    }

    #countdown .count-el {
        float: left;
        text-align: center;
    }

    #countdown .count-el span.num-counter {
        width: auto;
    }

    .newsletter-form input[type="text"] {
        max-width: 100%;
        margin-bottom: 20px;
        text-align: center;
    }

    .newsletter-form input.submit {
        margin: 0;
    }

    .mCSB_inside > .mCSB_container {
        margin-right: 40px;
    }

}

@media (min-width: 481px) and (max-width: 768px) {

    #countdown .count-el {
        width: 25%;
    }

    #countdown.with-weeks .count-el {        
        width: 20%;
    }

    #countdown .count-el span.num-counter {
        font-size: 30px;
    }

    #countdown .count-el span.name-counter {
        font-size: 10px;
    }

    .newsletter-form input {
        max-width: 200px;
    }

}

@media (max-width: 480px) {

    body {
        padding: 200px 40px 40px 40px;
    }

    #logo {
        top: 40px;
    }

    footer {
        padding: 20px 0;
    }

    #countdown {
        position: relative;
        height: 240px;
    }

    #countdown:before {
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        height: 1px;
        background: rgba(255,255,255,0.2);
        content: '';
    }

    #countdown .count-el {
        float: none;
        margin: 20px 0;
        width: 30%;
        border: 0;
        
    }

    #countdown.end-countdown {
        height: auto;
    }

    #countdown.end-countdown:before {
        display: none;
    }

}   

@media (max-device-width : 768px) {

    #extra-section {
        top: 0;
        padding: 20px;
    }

    #toggle-section.moved {
        color: inherit;
        background: #f1f1f1;
    }

}