/*-----------------------------*/
/*         Basic setup         */
/*-----------------------------*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    background-color: #fff;
    color: #555555;
    font-family: 'Lato', 'Arial', sans-serif;
    font-size: 20px;
    font-weight: 300;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}


.clearfix {zoom: 1}
.clearfix:after {  
    content: '.';
    clear: both;
    display: block;
    height: 0;
    visibility: hidden;
}

/*-----------------------------*/
/*    Reusable components      */
/*-----------------------------*/

.row {
    max-width: 1140px;      
    margin: 0 auto;         
}

.section {
    padding: 80px 0; 
}

.box {
    padding: 1%;
}



/*-----------------------------*/
/*          HEADINGS           */
/*-----------------------------*/
.super{
 vertical-align: super;
    font-size: 45%;
    font-weight: 100;
 }


h2,
h3,
h4 {
   
    font-weight: 300;
}

h1 {
    margin-top: 0; 
    margin-bottom: 20px;
    color: white;
    font-size: 220%;
    word-spacing: 4px;
    letter-spacing: 10px;
    font-weight: 200;
    display: block;
}

h2 {
    font-size: 180%;
    word-spacing: 2px;
    text-align: center;
    margin-bottom: 30px;
    margin-top: 30px;
    letter-spacing: 7px;
}

h3 {
   font-size: 90%;
   margin-bottom: 25px;
    letter-spacing: 2px;
}

h4 {
    margin-top: -10px ;
    color: white;
    font-size: 320%; 
    word-spacing: 4px;
    letter-spacing: 10px;
    text-align: center;
    display: block;
}


h2:after {
    display: block;
    height: 2px;
    background-color: rgb(214, 112, 21);
    content: " ";     
    width: 100px;
    margin: 0 auto;
    margin-top: 25px;
}

.subheader {
    text-align: center;
    color: ghostwhite;
    font-size: 17px;
    letter-spacing: 3px;
    
}

.dark-bckgd 
    {
        color: #ffffff;
        text-shadow: 3px 3px rgba(0, 0, 0, 0.22) ;
}


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


.centered-text {
    margin-top: 5%;
    text-shadow: 1px 1px 10px #fff, 1px 1px 10px rgba(5, 129, 167, 0.77);
}

.centered-text:hover {
    text-shadow:1px 1px 10px #fff, 1px 1px 10px #e52626;
    transition: 0.5s;
}

/*---------------------*/
/*      Paragraphs     */
/*---------------------*/

.long-copy {
    line-height: 145%;
    width: 70%;
    margin-left: 15%; 
    margin-right: 15%;
    color: aliceblue;
    font-weight: 100;
}

.box p {
    font-size: 90%;
    line-height: 145%;
    margin-bottom: 70px;
}

.dark-bckgd-par {
    color: rgb(200, 216, 230);
    font-weight: 100;
}



/*---------------------*/
/*        ICONS        */
/*---------------------*/

.icon-big {
    font-size: 240%;
    display: block; 
    color: #e67e22;
    margin-bottom: 10px;
}



/*---------------------*/
/*        LINKS        */
/*---------------------*/

a:link, 
a:visited {
    color: #e67e22;
    text-decoration: none; /* to get rid of the underline */
    padding-bottom: 1px;
    border-bottom: 1px solid #e67e22;
    transition: border-bottom 0.2s, color 0.2s;
    
}

a:hover,
a:active {
    color: #a68867;
    border-bottom: 1px solid transparent ;
}

/*---------------------*/
/*       BUTTONS       */
/*---------------------*/

.btn:link,
.btn:visited,
input[type=submit] {     /* adding :link means the state of the button in its normal state */
    display: inline-block; /* <a> concerne les éléments inline, et dans le fichier html btn est inline */
    padding: 10px 30px; /* 10 t & b, 30 l & r */
    font-weight: 300;
    border-top-right-radius: bevel; 
    text-decoration: none;
    transition: background-color 0.2s, border 0.4s, color 0.6s; 
}




.btn-full:link,
.btn-full:visited,
input[type=submit]{
    background-color: rgba(56, 129, 183, 0.26);
    border: 1px solid #3881b7;
    color: #fff;
    margin-right: 15px;
}

.btn-ghost:link,
.btn-ghost:visited {
    border: 1px solid rgba(146, 206, 150, 0.63);
    color: rgba(248, 252, 229, 0.78);
}

.btn:hover,
.btn:active,
input[type=submit]:hover,
input[type=submit]:active {
    background-color: rgba(22, 101, 129, 0.79);
}


.btn-full:hover,
.btn-full:active,
{
    border: 1px solid #33338b;
}

.btn-ghost:hover,
.btn-ghost:active {
    border: 1px solid #d7f2db;
    color: #fff;
    background-color: rgba(136, 216, 157, 0.63);
}


/*-----------------------------*/
/*           Header            */
/*-----------------------------*/


header {
    background-image:linear-gradient(rgba(0, 0, 0, 0.79),rgba(26, 15, 15, 0.49)), url(img/cluster-bckgd-low.jpg);
    background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0.79),rgba(26, 15, 15, 0.49)), url(img/cluster-bckgd-low.jpg);
    background-image: -moz-linear-gradient(rgba(0, 0, 0, 0.79),rgba(26, 15, 15, 0.49)), url(img/cluster-bckgd-low.jpg);
    background-image: -o-linear-gradient(rgba(0, 0, 0, 0.79),rgba(26, 15, 15, 0.49)), url(img/cluster-bckgd-low.jpg);
    background-size: cover; 
    background-size: -webkit-cover; 
    background-size: -moz-cover; 
    background-size: -o-cover; 
    background-position: center;
    background-position: -webkit-center;
    background-position: -moz-center;
    background-position: -o-center;
    height: 100vh;
    background-attachment: fixed;
    background-attachment: -webkit-fixed;
    background-attachment: -moz-fixed;
    background-attachment: -o-fixed;
}


.header-text-box {
    position: absolute;
    width: 1140px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); 
}

#logo-main {
    background-image: url(img/logo-tr.png);
    background-size: 12%;
    background-repeat: no-repeat;
    background-position: center;
    height: 200px;
    margin-bottom: 100px;
    vertical-align: middle;
}

.header-text-btn {
    margin-top: 20px;
    float: center;
    text-align: center;
}

.logo-black {
    display: none; 
    height: 50px;
    width: auto;
    float: left;
    margin-top: 45px;
    margin-bottom: 5px;
}

/* Main navigation */
.main-nav {
    float: right;
    list-style: none; 
    margin-top: 55px;
}

.main-nav li {
    display: inline-block; 
    margin-left: 40px;
    letter-spacing: 4px;
}

.main-nav li a:link,
.main-nav li a:visited {
    padding: 8px 0; 
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 70%; 
    border-bottom: 2px solid transparent;
    transition: border-bottom 0.2s;
}


.main-nav li a:hover,
.main-nav li a:active {
    border-bottom: 2px solid #eb8d0d;
}

.main-nav-logo {
    float: left;
    list-style: none; 
    margin-top: 60px;
    letter-spacing: 7px;
    margin-left: 17px;
    color: #1a6981;
    font-size: 70%;
}

.main-nav-logo:hover span {
    display: none;
}

.main-nav-logo:hover:after  {
    content: 'contact@amazedbrane.com';
    cursor: pointer;
    color: rgba(96, 230, 235, 0.72);
    text-shadow: 1px 1px 10px rgba(255, 255, 255, 0.54), 1px 1px 10px rgba(131, 233, 242, 0.47) ;
    font-weight: 100;
    font-size: 11px;
    letter-spacing: 5px;
}



/* Mobile navigation */
.mobile-nav-icon {
    float: right;
    margin-top: 30px;
    cursor: pointer;
    display: none;
}

.mobile-nav-icon i {
    font-size: 200%;
    color: #fff;
}

/* Sticky navigation */
.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 2px #efefef;
    z-index: 9999;
}

.sticky .main-nav { margin-top: 18px;}
.sticky .main-nav-logo { margin-top: 21px; }

.sticky .main-nav li a:link,
.sticky .main-nav li a:visited {
    padding: 16px 0; 
    color: #555;
}

.sticky .logo {display: none;}
.sticky .logo-black {display: block; margin-top: 5px; }



/*-----------------------------*/
/*            BRANE            */
/*-----------------------------*/

.section-features .long-copy {
    margin-bottom: 30px;
    
}

.icon-align {
    display: inline;
    margin-right: 10px;
}

.icon-align-text {
    display: inline-block;
    margin-bottom: 23px;
    padding-top: px;
    vertical-align: middle;
}

.section-features {
    background-image:linear-gradient(rgba(0, 0, 0, 0.94),rgba(255, 255, 255, 0)), url(img/cluster-bckgd-low.jpg);
    background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0.94),rgba(255, 255, 255, 0)), url(img/cluster-bckgd-low.jpg);
    background-image: -o-linear-gradient(rgba(0, 0, 0, 0.94),rgba(255, 255, 255, 0)), url(img/cluster-bckgd-low.jpg);
    background-image:-moz-linear-gradient(rgba(0, 0, 0, 0.94),rgba(255, 255, 255, 0)), url(img/cluster-bckgd-low.jpg);
}

.brane-pics {
    width: 50%;
    height: auto;
    color: #fff;
    margin: auto;
    display: block;
}


   
/*-----------------------------*/
/*         PORTFOLIO           */
/*-----------------------------*/

.section-portfolio {
    padding: 0;
    background-image: linear-gradient(to top left, rgba(10, 10, 10, 0.71),rgba(17, 27, 59, 0.56)), url(img/cluster-bckgd-low.jpg);
    background-size: cover;
    background-image: -webkit-linear-gradient(bottom right, rgba(10, 10, 10, 0.71),rgba(17, 27, 59, 0.56)), url(img/cluster-bckgd-low.jpg);
    background-image: -o-linear-gradient(bottom right, rgba(10, 10, 10, 0.71),rgba(17, 27, 59, 0.56)), url(img/cluster-bckgd-low.jpg);
    background-image: -moz-linear-gradient(bottom right, rgba(10, 10, 10, 0.71),rgba(17, 27, 59, 0.56)), url(img/cluster-bckgd-low.jpg);
    height: inherit;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    
}

#portfolio-stack {
    text-align: center;
}
.main-video {
    width: 91vh;
    height: 460px ;
    margin-top: 40px;
    margin-bottom: 30px;
    border-radius: 2px;

}

.title-vid {
    width: 100vh;
    text-align: center;
}

.vid-description {
    width: auto;
    text-shadow: none;
    margin-bottom: 40px;
    text-align: center;

}

.video-slider {
    margin-top: 21px;
    height: auto;
    width: 100vh;
    overflow-y: auto;
    background-color: rgba(141, 186, 230, 0.14);
    border: 4px transparent ;
    border-radius: 2px;
    display: block;
}

#top-playlist {
    margin-top: 7px;
}

#genres {
    color: rgba(255, 255, 255, 0.96);
    text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.54), 1px 1px 7px rgba(211, 136, 103, 0.17) ;
    text-align: center;
    padding-bottom: 10px;
    font-size: 17px ;
}


.playlist-genres {
    color: rgba(190, 213, 227, 0.83);
    margin-left: 0px;
    margin-bottom: 0px;
    margin-top: auto ;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 7px;
    padding-top: 7px;
    font-size: 15px;
    font-weight: 100;
}

button {
    text-decoration: none;
    color: rgba(168, 199, 229, 0.79);
    border: none;
    background-color: transparent;
}

button:hover {
    text-decoration: underline;
    color: rgba(211, 244, 214, 0.38);
    text-shadow: 1px 1px 7px rgb(255, 255, 255), 1px 1px 7px rgb(50, 214, 88) ;
    cursor: pointer;
}


/*-----------------------------*/
/*          Biography          */
/*-----------------------------*/

.section-bio {
    background-image: linear-gradient(rgba(0, 0, 0, 0.76),rgba(23, 23, 23, 0.64)), url(img/amazedend.jpg);
    background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0.76),rgba(23, 23, 23, 0.64)), url(img/amazedend.jpg);
    background-image: -moz-linear-gradient(rgba(0, 0, 0, 0.76),rgba(23, 23, 23, 0.64)), url(img/amazedend.jpg);
    background-image: -o-linear-gradient(rgba(0, 0, 0, 0.76),rgba(23, 23, 23, 0.64)), url(img/amazedend.jpg);
    background-size: cover;
    background-size: -webkit-cover;
    background-size: -moz-cover;
    background-size: -o-cover;
    color: #fff;
    background-attachment: fixed; 
    background-attachment: -webkit-fixed; 
    background-attachment: -moz-fixed; 
    background-attachment: -o-fixed; 
    background-position: center;
    background-position: -webkit-center;
    background-position: -moz-center;
    background-position: -o-center;
}


.id-pic {
    width: 10%;
    height: 15%;
    margin: auto;
    display: block;
    padding-bottom: 37px;
}

.bio {
    font-weight: 100;
    letter-spacing: 1px;
    word-spacing: 5px;
    padding-bottom: 30px;
    text-align: center;
}



/*-----------------------------*/
/*           CONTACT           */
/*-----------------------------*/


.section-form {
        background-image: linear-gradient(rgba(3, 36, 69, 0.89),rgba(18, 18, 18, 0.71)), url(img/studio.jpg);
        background-image: -webkit-linear-gradient(rgba(3, 36, 69, 0.89),rgba(18, 18, 18, 0.71)), url(img/studio.jpg);
        background-image: -moz-linear-gradient(rgba(3, 36, 69, 0.89),rgba(18, 18, 18, 0.71)), url(img/studio.jpg);
        background-image: -o-linear-gradient(rgba(3, 36, 69, 0.89),rgba(18, 18, 18, 0.71)), url(img/studio.jpg);
        background-size: cover; 
        background-size: -webkit-cover; 
        background-size: -moz-cover; 
        background-size: -o-cover; 
        background-position: center;
        background-position: -webkit-center;
        background-position: -moz-center;
        background-position: -o-center;
        height: 70vh;
        background-attachment: fixed;
        background-attachment: -webkit-fixed;
        background-attachment: -moz-fixed;
        background-attachment: -o-fixed;
        color: rgba(255, 252, 240, 0.92);
        overflow: auto;
}

.contact-form {
    width: 70%;
    margin: 0 auto; /* centers the contact form inside the parent element */
}



input[type=text],
input[type=email],
select,
textarea {
    width: 100%;
    padding: 7px;
    border-radius: 3px;
    border: 1px solid #ccc;
    font-size: 80%;
    font-weight: 100; 
}


#description {
    height: 200px;
}

input[type=checkbox] {
    margin: 10px 5px 10px 0;
}


*:focus {outline: none;} /* gets rid of the borders when we focus on those elements */




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

footer {
    background-color: #333;
    padding-top: 72px ;
    font-size: 80%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.29),rgba(0, 0, 0, 0.56)), url(img/Footer.jpg);
    background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0.29),rgba(0, 0, 0, 0.56)), url(img/Footer.jpg);
    background-image: -moz-linear-gradient(rgba(0, 0, 0, 0.29),rgba(0, 0, 0, 0.56)), url(img/Footer.jpg);
    background-image: -o-linear-gradient(rgba(0, 0, 0, 0.29),rgba(0, 0, 0, 0.56)), url(img/Footer.jpg);
    background-size: cover;
    background-size: -webkit-cover;
    background-size: -moz-cover;
    background-size: -o-cover;
    background-position: center;
    background-position: -webkit-center;
    background-position: -moz-center;
    background-position: -o-center;
    text-align: center;
}

.footer-nav {
    list-style: none;
    float: left;
}

.social-links {
    list-style: none;
    display: inline-block;
}


.footer-nav li,
.social-links li {
    display: inline-block;
    margin-right: 50px;
}

.footer-nav li:last-child,
.social-links li:last-child {
    margin: 0;
}

.footer-nav li a:link,
.footer-nav li a:visited,
.social-links li a:link,
.social-links li a:visited {
    text-decoration: none;
    border: 0;
    color: #817e7e;
    transition: 0.3s;
}

.footer-nav li a:hover,
.footer-nav li a:active {
    color: #ddd;
}


.social-links li a:link,
.social-links li a:visited {
    font-size: 130%;
}

.ion-social-facebook,
.ion-social-twitter;
.ion-social-googleplus,
.ion-cloud, {
    transition: 0.3s;
}

.ion-social-facebook:hover {
    color: #3b5998;
}

.ion-social-twitter:hover {
    color: #00aced;
}

.ion-social-linkedin:hover {
    color: #C4A667;
}

.ion-social-vimeo:hover {
    color: #b14f4f;
}


footer p {
    color: #888;
    display: block;
    margin: auto;
    text-align: center;
    font-size: 77%;
    margin-top: 30px;
    padding-bottom: 20px;
}




/*-----------------------------*/
/*         Animations          */
/*-----------------------------*/


.js--wp-1,
.js--wp-2,
.js--wp-3,
.js--wp-5,
.js--wp-6,
.js--wp-7 {
    opacity: 0;
    animation-duration: 2s;
}

.js--wp-4 {
   
    animation-duration: 1s;
}

.js--wp-1.animated,
.js--wp-2.animated,
.js--wp-5.animated,
.js--wp-3.animated {
    opacity: 1;
}



@-webkit-keyframes fadeIn {
   from {opacity: 0;}
   to {opacity: 1;}
}

@-moz-keyframes fadeIn {
   from {opacity: 0;}
   to {opacity: 1;}
}