/*------------------------------------------------------------------
 Avocado - Multiporpose Coming Soon Template

* Version       : 1
* Build Date    : 22 August 2017
* Author        : webshope.in
* Primary use   : Coming Soon

Copyright (C) 2017 avocado
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[Table of contents]

1. @Import & Reset
2. Generic styles
3. Countdown Timer
4. Portfolio
5. Contact Form
6. Modal Window
7. Social Media
8. Media Queries

-------------------------------------------------------------------*/
/* ------------------------------------- */
/* 1. @Import & Reset  ................... */
/* ------------------------------------- */

@import url(bootstrap.min.css);
@import url(animate.css);
@import url(animsition.min.css);
@import url(remodal.css);
@import url(remodal-default-theme.css);
@import url(subscribe.css);
@import url(jquery.countdown.css);
@import url(magnific-popup.css);
@import url(jquery.mCustomScrollbar.min.css);
@import url(font-awesome.min.css);
@import url("https://fonts.googleapis.com/css?family=Montserrat:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i|Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i");
@import url("https://fonts.googleapis.com/css?family=Alfa+Slab+One");
@import url("https://fonts.googleapis.com/css?family=Raleway");
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,
s,
samp,
small,
strike,
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-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
    display: block;
}
body {
    line-height: 1;
}
ol,
ul {
    list-style: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
/* ------------------------------------- */
/* 2. Generic styles ................... */
/* ------------------------------------- */

html,
body {
    height: 100%;
}
/*--Flexbox--*/

.flexbox {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}
.flexFullChild {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.verticalAlign {
    align-items: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-align: center;
}
.flexRow {
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-orient: vertical;
}
.bottomAlign {
    -webkit-align-items: flex-end;
    -ms-flex-align: flex-end;
    align-items: flex-end;
    -webkit-box-align: flex-end;
    -webkit-box-orient: vertical;
}
body {
    font-family: 'Roboto', sans-serif;
    background: #000;
}
.wrapper {
    min-height: 100vh;
}
.pageContent {
    display: inline-block;
    position: relative;
    z-index: 3;
}
.logo {
    margin-bottom: 30px;
}
.logo img {
    width: 170px;
}
.pageContent {
    opacity: 0;
    -webkit-transition: 0.3s;
    -ms-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.pageContent.instate {
    -webkit-transition: 0.2s;
    -ms-transition: 0.2s;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    opacity: 1;
}
.pageContent h2 {
    font-family: 'Alfa Slab One', cursive;
    font-size: 45px;
    line-height: 55px;
    text-transform: uppercase;
    color: #eaed0c;
    width: 60%;
    margin: 0 auto;
}
.pageContent h5 {
    color: #fff;
    margin-top: 15px;
    font-family: 'Raleway';
    font-size: 24px;
}
.pageContent h5 span {
    padding: 5px 10px;
    background: rgba(0, 0, 0, 0.4);
    display: inline-block;
    letter-spacing: 6px;
}
.pageContent p {
    max-width: 500px;
    margin: 15px auto 0;
    font-size: 16px;
    color: #fff;
    line-height: 24px;
    font-weight: 500;
    letter-spacing: 1px;
}
/*--overlay--*/

.overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: images/singularity-space-background.jpg;
}
/*--Buttons--*/

.buttons {
    margin-top: 30px;
}
.button {
    padding: 5px 10px;
    border: 2px solid #fff;
    color: #fff;
    line-height: 20px;
    display: inline-block;
    text-align: center;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    margin-right: 10px;
    min-width: 160px;
}
.button:hover,
.button:focus {
    color: #fff;
    text-decoration: none;
}
.button:last-child {
    margin: 0;
}
.button.yellow {
    background: #eaed0c;
    border-color: #eaed0c;
    color: #333;
}
.button.yellow:hover {
    background: #fffc00;
}
.button i {
    margin-right: 5px;
}
/*--Info button--*/

.infoClose {
    position: absolute;
    right: 25px;
    top: 25px;
    cursor: pointer;
    display: none;
}
.infoClose i {
    width: 34px;
    line-height: 34px;
    text-align: center;
    color: #fff;
}
/*--Sidebar Intro--*/

.intro {
    margin-bottom: 25px;
}
.intro h3 {
    font-size: 30px;
    color: #333;
    font-family: 'Raleway', cursive;
    margin-bottom: 15px;
    line-height: 40px;
}
/*--Particles--*/

#particles-js {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    opacity: 0;
    -webkit-transition: 0.3s;
    -ms-transition 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
#particles-js.instate {
    -webkit-transition: 0.2s;
    -ms-transition: 0.2s;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    opacity: 1;
}
/* ------------------------------------- */
/* 3. Countdown Timer .................... */
/* ------------------------------------- */

.countdownHolder {
    margin-top: 25px;
    font-family: 'Pacifico', cursive;
}
.countdownHolder {
    font-size: 20px;
}
.countDiv::before,
.countDiv::after {
    box-shadow: none;
    background: #fff;
}
.digit {
    border-radius: 0;
    background: #fff;
    color: #000;
}
.digit.static {
    background: #000;
    box-shadow: none;
    color: #fff;
}
/* ------------------------------------- */
/* 4. Portfolio .................... */
/* ------------------------------------- */

.portfolios .row {
    margin: -5px;
}
.portfolios .portfolioColumn {
    padding: 5px;
}
.portfolios {
    overflow: hidden;
}
.portfolios a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.portfolios a img {
    max-width: 100%;
    min-width: 100%;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.portfolios a img:hover {
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
/* ------------------------------------- */
/* 5. Contact Form .................... */
/* ------------------------------------- */

.contactForm {
    margin-top: 50px;
}
.contactFormHeader {
    margin-bottom: 15px;
    padding-bottom: 25px;
}
.contactFormHeader h4 {
    color: #000;
    font-size: 24px;
    font-weight: 300;
}
.contactFormHeader h4 span {
    font-size: 28px;
    font-weight: 900;
}
.contactFormHeader p {
    margin-top: 15px;
    color: #333;
    font-weight: 300;
    line-height: 22px;
}
.contactForm .group {
    position: relative;
    margin-bottom: 35px;
}
.contactForm .group:last-child {
    margin: 0;
}
.contactForm input.inputText,
.contactForm textarea.inputText {
    font-size: 16px;
    padding: 10px 0 10px;
    display: block;
    width: 100%;
    border: none;
    border-bottom: 1px solid #224781;
    color: #4a4a4a;
    font-weight: 700;
    height: 40px;
    resize: none;
}
.contactForm input.inputText:focus,
.contactForm textarea.inputText:focus {
    outline: none;
}
.contactForm label {
    color: #4a4a4a;
    font-size: 13px;
    position: absolute;
    pointer-events: none;
    left: 0;
    top: 10px;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}
.contactForm input.inputText:focus ~ label,
.contactForm input.inputText:valid ~ label,
.contactForm textarea.inputText:focus ~ label,
.contactForm textarea.inputText:valid ~ label {
    top: -20px;
    font-size: 12px;
    color: #9b9b9b;
}
.contactForm .bar {
    position: relative;
    display: block;
    width: 100%;
}
.contactForm .bar:before,
.contactForm .bar:after {
    content: '';
    height: 2px;
    width: 0;
    bottom: 0;
    position: absolute;
    background: #34bdf6;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}
.contactForm .bar:before {
    left: 0;
}
.contactForm .bar:after {
    right: 0;
}
.contactForm input.inputText:focus ~ .bar:before,
.contactForm input.inputText:focus ~ .bar:after,
.contactForm textarea.inputText:focus ~ .bar:before,
.contactForm textarea.inputText:focus ~ .bar:after {
    width: 100%;
}
.contactForm .highlight {
    position: absolute;
    height: 60%;
    width: 100px;
    top: 25%;
    left: 0;
    pointer-events: none;
    opacity: 0.5;
}
.contactForm input.inputText:focus ~ .highlight,
.contactForm teaxtarea.inputText:focus ~ .highlight {
    -webkit-animation: inputHighlighter 0.3s ease;
    -moz-animation: inputHighlighter 0.3s ease;
    animation: inputHighlighter 0.3s ease;
}
#msgSubmit {
    text-align: left;
    font-size: 13px;
}
@-webkit-keyframes inputHighlighter {
    from {
        background: #5264AE;
    }
    to {
        width: 0;
        background: transparent;
    }
}
@-moz-keyframes inputHighlighter {
    from {
        background: #5264AE;
    }
    to {
        width: 0;
        background: transparent;
    }
}
@keyframes inputHighlighter {
    from {
        background: #5264AE;
    }
    to {
        width: 0;
        background: transparent;
    }
}
.contactForm .submitBtn {
    width: 150px;
    height: 50px;
    background: #224781;
    border: 0;
    padding: 0 20px;
    font-size: 14px;
    color: #fff;
    font-weight: 700;
}
.contactForm .submitBtn span,
.contactForm .submitBtn i {
    line-height: 50px;
}
.contactForm .submitBtn:hover {
    box-shadow: 0 10px 20px 0 rgba(33, 70, 129, 0.3);
}
/* ------------------------------------- */
/* 6. Modal Window .................... */
/* ------------------------------------- */

.remodal {
    padding: 0;
    margin: 0;
    max-width: 450px;
    border-radius: 2px;
}
#mc_embed_signup {
    background: #fff;
    font-family: 'Roboto', sans-serif !important;
}
#mc_embed_signup {
    padding: 15px;
}
#mc_embed_signup label,
#mc_embed_signup #mce-EMAIL,
#mc_embed_signup button {
    font-size: 14px;
}
#mc_embed_signup button {
    margin: 0;
    width: 100%;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 5px 10px;
    background: #eaed0c;
    color: #333;
    font-family: 'Roboto', sans-serif !important;
}
#mc_embed_signup button:hover {
    background: #eaed0c;
}
#mc_embed_signup_scroll {
    padding: 35px 25px;
}
#mc-embedded-subscribe-form input,
#mc-embedded-subscribe-form button {
    height: 34px;
    margin: 0;
    width: 100%;
    padding: 0;
}
#mc_embed_signup #mce-EMAIL {
    margin-bottom: 10px;
    border: 2px solid #ccc;
    margin-left: 0;
    width: 100%;
}
#mc_embed_signup input:focus {
    outline: 0;
}
#mc_embed_signup .info,
#mc_embed_signup .info.error {
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 0;
}
.remodal-close {
    left: auto;
    right: 0;
}
#mc_embed_signup .info:empty {
    margin: 0 !important;
}
#mc_embed_signup .info.error {
    color: red;
}
#mc_embed_signup .info.valid {
    color: green;
}
/* ------------------------------------- */
/* 7. Social Media .................... */
/* ------------------------------------- */

.socialIocns {
    margin-top: 45px;
}
.socialIocns a {
    margin-right: 8px;
    display: block;
}
.socialIocns a:hover,
.socialIocns a:focus {
    text-decoration: none;
}
.socialIocns a:last-child {
    margin: 0;
}
.socialIocns i {
    width: 30px;
    text-align: center;
    line-height: 28px;
    font-size: 15px;
    color: #000;
    border: 1px solid #000;
    border-radius: 100%;
    display: block;
}
.socialIocns a:hover i {
    color: #34bdf6;
    border-color: #34bdf6;
}
/* ------------------------------------- */
/* 8. Media Queries .................... */
/* ------------------------------------- */

@media(max-width:1400px) {
    .pageContent h2 {
        font-size: 40px;
        width: 80%;
        line-height: 40px;
    }
    .logo img {
        width: 200px;
    }
    .pageContent h5 span {
        letter-spacing: 3px;
    }
    .intro h3 {
        font-size: 22px;
        line-height: 30px;
    }
    .contactFormHeader h4 {
        font-size: 20px;
    }
    .contactFormHeader h4 span {
        font-size: 22px;
    }
    .contactFormHeader p {
        font-size: 14px;
    }
}
@media(min-width:1025px) {
    html {
        height: 100%;
        width: 100%;
        overflow: hidden;
    }
    #content {
        width: 100%;
        height: 100%;
        *zoom: 1;
    }
    .set3d {
        margin: 0;
        -moz-perspective: 800px;
        -webkit-perspective: 800px;
        perspective: 800px;
        -moz-perspective-origin: 0% 50%;
        -webkit-perspective-origin: 0% 50%;
        perspective-origin: 0% 50%;
        height: 100%;
        width: 100%;
    }
    #sidebar {
        display: block;
        position: fixed;
        background: #fff;
        color: #eee;
        height: 100%;
        width: 40%;
        top: 0;
        left: 0px;
        z-index: 2;
        margin: 0px;
        padding: 20px;
        -webkit-transform: rotateY(-30deg) translateX(-100%);
        -moz-transform: rotateY(-30deg) translateX(-100%);
        -ms-transform: rotateY(-30deg) translateX(-100%);
        -o-transform: rotateY(-30deg) translateX(-100%);
        transform: rotateY(-30deg) translateX(-100%);
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        -webkit-transition: -webkit-transform .4s ease;
        -moz-transition: -moz-transform .4s ease;
        -ms-transition: -ms-transform .4s ease;
        -o-transition: -o-transform .4s ease;
        transition: transform .4s ease;
        -webkit-transform-origin: 0% 50%;
        -moz-transform-origin: 0% 50%;
        -ms-transform-origin: 0% 50%;
        -o-transform-origin: 0% 50%;
        transform-origin: 0% 50%;
    }
    .set3d.active #sidebar {
        -webkit-transform: rotateY(0deg);
        -moz-transform: rotateY(0deg);
        -ms-transform: rotateY(0deg);
        -o-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }
    #content {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        -webkit-transition: -webkit-transform .4s ease;
        -moz-transition: -moz-transform .4s ease;
        -ms-transition: -ms-transform .4s ease;
        -o-transition: -o-transform .4s ease;
        transition: transform .4s ease;
        -webkit-transform-origin: 0% 50%;
        -moz-transform-origin: 0% 50%;
        -ms-transform-origin: 0% 50%;
        -o-transform-origin: 0% 50%;
        transform-origin: 0% 50%;
        width: 100%;
        height: 100%;
        overflow-y: auto;
    }
    .set3d.active #content {
        -webkit-transform: translateX(40%) rotateY(12deg);
        -moz-transform: translateX(40%) rotateY(12deg);
        -ms-transform: translateX(40%) rotateY(12deg);
        -o-transform: translateX(40%) rotateY(12deg);
        transform: translateX(40%) rotateY(12deg);
    }
    #msgSubmit {
        margin-top: 15px;
    }
}
@media(max-width:1024px) {
    html, body {
        overflow-x: hidden;
    }
    #sidebar {
        background: #fff;
        padding: 20px;
    }
    .contactForm {
        margin-top: 25px;
    }
    .infoButton.button {
        display: none;
    }
    .subscribeButton {
        margin: 0;
    }
    .contactForm input.inputText,
    .contactForm textarea.inputText {
        font-size: 13px;
        font-weight: 500;
    }
    .contactForm {
        padding-bottom: 30px;
        position: relative;
    }
    #msgSubmit {
        position: absolute;
        left: 0;
        bottom: -30px;
        padding: 5px 0;
        line-height: 20px;
    }
}
@media(max-width:640px) {
    .logo {
        margin-bottom: 20px;
    }
    .pageContent h2 {
        width: 90%;
        font-size: 32px;
    }
    .logo img {
        width: 160px;
    }
    .pageContent h5 {
        font-size: 18px;
    }
    .countdownHolder {
        font-size: 16px;
    }
    .countdownHolder,
    .buttons {
        margin-top: 15px;
    }
    #mc_embed_signup_scroll {
        padding: 30px 0;
    }
}
@media(max-width:480px) {
    .pageContent h2 {
        font-size: 24px;
        line-height: 30px;
        width: 100%;
        padding: 0 10px;
    }
    .countdownHolder {
        margin-top: 15px;
    }
    .buttons {
        font-size: 20px;
    }
    .contactFormHeader p {
        margin-top: 8px;
    }
    .countdownHolder {
        width: 100%;
    }
}