@import "reset.css";
@import "animate.css";
@import "../font-awesome/css/font-awesome.min.css";
@import url(https://fonts.googleapis.com/css?family=Lato:400,300,700,100);

body {
    font-family: 'Lato', sans-serif;
    color: #373737;
    font-size: 1em;
    line-height: 26px;
    font-weight: 300;
    background: #FFF;
}


ul, ol, li {
    margin: 0;
    padding: 0;
    list-style: none;
}

img {
    border: none;
    max-width: 100%;
    height: auto;
    font-size: 0;
    line-height: 0;
    padding: 0;
    margin: 0;
}

figcaption {
    margin-top: 35px;
}
/* --------------------------------------------
        Typography
  -------------------------------------------- */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    line-height: 1.23em;
    color: #333333;
    margin: 0;
    margin-bottom: 17px;
}

h1 {
    font-size: 100px;
    line-height: 100px;
    margin-bottom: 40px;
}

h2 {
    font-size: 70px;
    text-align: center;
}
h2 strong {
    font-weight: 400;
}

h3 {
    font-size: 50px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 16px;
}

h6 {
    font-size: 14px;
    line-height: 18px;
    font-weight: 400;
    margin-bottom: 15px;
}

/*   GENERAL CLASS*/
.title {
    font-size: 44px;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 24px;
    line-height: 34px;
}

.section-offset {
    padding: 100px 0;
}

.spincrement_text {
    font-size: 24px;
}

#events .row, #statistics .row {
    margin-top: 60px;
}

/* ------------------------------------------------

    11. Animate

------------------------------------------------ */

.animate_el {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s;
         -o-transition: all 0.5s;
            transition: all 0.5s;
}


.tr_top {
    -webkit-transform: translate(0, -40px);
        -ms-transform: translate(0, -40px);
         -o-transform: translate(0, -40px);
            transform: translate(0, -40px);
}
.tr_bottom {
    -webkit-transform: translate(0, 40px);
        -ms-transform: translate(0, 40px);
         -o-transform: translate(0, 40px);
            transform: translate(0, 40px);
}
.tr_left {
    -webkit-transform: translate(-40px, 0);
        -ms-transform: translate(-40px, 0);
         -o-transform: translate(-40px, 0);
            transform: translate(-40px, 0);
}
.tr_right {
    -webkit-transform: translate(40px, 0);
        -ms-transform: translate(40px, 0);
         -o-transform: translate(40px, 0);
            transform: translate(40px, 0);
}


.delay_1 {
    -webkit-transition-delay: 0.3s;
         -o-transition-delay: 0.3s;
            transition-delay: 0.3s;
}

.delay_2 {
    -webkit-transition-delay: 0.6s;
         -o-transition-delay: 0.6s;
            transition-delay: 0.6s;
}

.delay_3 {
    -webkit-transition-delay: 0.9s;
         -o-transition-delay: 0.9s;
            transition-delay: 0.9s;
}

.slider-title {
    -webkit-transition-delay: 0.9s;
         -o-transition-delay: 0.9s;
            transition-delay: 0.9s;
    animation-delay: 0.9s;
}

.slideInDown {
    opacity: 1;
}

.zoomIn {
    -webkit-transition-delay: 1.2s;
         -o-transition-delay: 1.2s;
            transition-delay: 1.2s;
    animation-delay: 1.2s;
}

.delay_6 {
    -webkit-transition-delay: 1.8s;
         -o-transition-delay: 1.8s;
            transition-delay: 1.8s;
}

.delay_7 {
    -webkit-transition-delay: 2.1s;
         -o-transition-delay: 2.1s;
            transition-delay: 2.1s;
}

/*  Buttons*/
.btn_type2 {
    display: inline-block;
    position: relative;
    color: #0066CC;
    font-size: 16px;
    line-height: 24px;
    padding-right: 15px;
}

.btn_type2:before {
    content: "\f105";
    font: normal normal normal 16px/1 FontAwesome;
    position: absolute;
    display: block;
    right: 0;
    top: 50%;
    margin-top: -6px;
    -webkit-transition: all 0.5s;
         -o-transition: all 0.5s;
            transition: all 0.5s;
}

.btn_type2:after {
    content: '';
    display: block;
    position: absolute;
    bottom: 2px;
    left: 0;
    /*! right: 100%; */
    /*! height: 1px; */
    /*! background-color: #0066cc; */
    /*! -webkit-transition: all 0.5s; */
    -o-transition: all 0.5s;
       transition: all 0.5s;
}

.btn_type2:hover {
    color: #0066CC;
}

.btn_type2:hover:before {
    -webkit-transform: translate(10px, 0);
        -ms-transform: translate(10px, 0);
         -o-transform: translate(10px, 0);
            transform: translate(10px, 0);
    -webkit-transition: all 0.3s;
         -o-transition: all 0.3s;
            transition: all 0.3s;
}

.btn_type2:hover:after {
    right: 15px;
    -webkit-transition: all 0.3s;
         -o-transition: all 0.3s;
            transition: all 0.3s;
}

.video_btn {
    position: relative;
    padding: 0;
    outline: none;
    background: #0066CC;
    border: 4px solid transparent;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
}

.video_btn:hover {
    background-color: #FFF;
    color: #0066CC;
}

.video_btn:before {
    content: "\f144";
    font: normal 104px/1 'FontAwesome';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
         -o-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}
/* NAVBAR */
.navbar {
    box-shadow: 0 3px 8px rgba(22, 22, 22, 0.86);
}
.navbar-inverse {
    background-color: rgba(32,32,32,0.85);
}


nav li {
    padding: 10px 0;
}
.navbar-inverse .navbar-nav > li > a {
    font-weight: 400;
}

.navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:focus, .navbar-inverse .navbar-nav > .active > a:hover {
    background-color: inherit;
}

.navbar-brand {
    padding-top: 25px;
    font-size: 20px;
    font-weight: 600;
}


.navbar-brand strong, .navbar-inverse .navbar-nav > li > a:hover {
    color: #0066CC;
}

/*  SLIDE */
.slide {
    height: 700px;
    background: radial-gradient(rgba(127, 123, 123, 0.8), transparent 90%),url('../img/marcela-laskoski.jpg') center;
    background-size: cover;
}

.slide h1, .slide h2, .slide p, .btn-default {
    color: #FFF;
}

.slide .lead {
    color: #999;
}

.slide-content {
    position: relative;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-shadow: 2px 3px 10px #000C;
}

.slider-title {
    font-size: 100px;
    line-height: 100px;
}

.slider-subtitle {
    font-size: 50px;
    line-height: 50px;
}
.slide .slide-subtext {
    display: inline-block;
    color: rgba(255, 255, 255, 0.8);
    padding: 30px 0;
    max-width: 500px;
}

.btn-default {
    background-color: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.4);
}

.arrow-down {
    display: block;
    margin: -25px auto 0;
}


/* INFO */

.info {
    margin-top: 100px;
    max-width: 700px;
    display: inline-block;
    color: #A1A4A6;
}


.info p {
    margin-bottom: 120px;
}

/*  EVENTS */
#events {
    padding: 120px 0;
    background-color: #262626;
    color: #FFF;
}

#events h2 {
    color: #FFF;
}
#events time {
    color: #999;
    display: block;
}

.event img {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
    -webkit-transition: all 0.3s;
         -o-transition: all 0.3s;
            transition: all 0.3s;
}

.event img:hover {
    opacity: 0.5;
}

.thumbnail {
    padding: 0;
    box-shadow: 0 3px 1px rgba(175, 170, 170, 0.8);
}

/*  FEATURES */

#features {
    padding: 200px 0;
    background: url('../img/bg1.jpg') no-repeat fixed center / cover;
    color: #FFF;
}

#features h2, #subscribe h3, #download h3, #download h5 {
    color: #FFF;
}
.spincrement {
    font-size: 100px;
    line-height: 100px;
}

#features .row {
    margin-top: 60px;
}


.btn-support:hover, .btn-submit:hover {
    color: #7DC855;
    background-color: white !important;
    border: 1px solid rgba(167, 167, 167, 0.52);
}

/* Albums*/
.presentation_text {
    margin-bottom: 20px;
    font-size: 24px;
    line-height: 34px;
}

.listen {
    height: 500px;
}

/* Download */
#download {
    padding: 30px 0 0;
}

#download, .subscribe-btn {
    background: #025DB9;
    color: #FFF;
}

#itunes {
    width: 150px;
    height: 200px;
}

/* SUBSCRIBE*/
#subscribe {
    padding: 200px 0;
    background: url('../img/arkady-lifshits.jpg') no-repeat fixed center / cover;
}
#subscribe h3 {
    margin-bottom: 40px;
}
#subscribe input {
    padding: 10px 10px 10px 30px;
    border-radius: 25px;
    width: 60%;
    height: 46px;
}

.subscribe-btn {
    padding: 10px 30px;
    border-radius: 25px;
    margin-left: -130px;
}
/*  FOOTER */
footer {
    background-color: #F2F2F2;
    padding: 62px 0;
}

footer p {
    color: #999;
    padding: 25px 0;
    font-size: 16px;
    line-height: 20px;
}

.social_list li {
    display: inline-block;
    margin: 20px 0;
}
.social_list i {
    padding-right: 20px;
    color: #999;
}

.social_list li i:hover {
    color: #06C;
}

#footer-logo {
    margin-right: 10px;
}


/* MEDIA QUERIES */
@media only SCREEN and (max-width: 767px) {
    h2 {
        font-size: 40px;
    }

    h3 {
        font-size: 30px;
    }
    .navbar-brand {
        margin-bottom: 5px;
        padding-top: 20px;
    }

    .slider-subtitle {
        font-size: 20px;
        line-height: 26px;
    }
    .slider-title, .spincrement {
        font-size: 50px;
    }
}

@media only screen and (max-width: 479px) {
    .slider-subtitle {
        font-size: 35px;
    }

    .slider-subtitle {
        font-size: 20px;
    }

    .btn {
        font-size: 16px;
    }

    h2 {
        font-size: 30px;
    }

    #download {
        text-align: center;
    }

    #download .col-sm-5 img {
        margin-top: 10px;
    }
}
