/*
*
* Template Name: Klacks | No-Brainer
* Concept: Landing page for a Book
* Files Associated: index-book.html
* Last Modified: 2019-09-21
* Author : Manoj Rajendiran
* Author Email : svencreations@gmail.com
* Author Website : http://svencreations.com/
*
*/

/* ==================================================================
* Table of Contents:
*
* 1.0 - Custom Font Declarations(if any)
* 2.0 - Simple Declarations / Fixes
* 3.0 - Basic Styles
* 4.0 - Responsive Styles
================================================================== */

/* ==================================================================
1.0 Custom Font Declarations(if any)
================================================================== */

/* ==================================================================
2.0 Simple Declarations / Fixes
================================================================== */
html {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*, *:before, *:after {
    -webkit-box-sizing: inherit;
    -moz-box-sizing: inherit;
    box-sizing: inherit;
}

.gpu-acc {
    -webkit-perspective: 1000px;
    -moz-perspective: 1000px;
    perspective: 1000px;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* ==================================================================
3.0 Basic Styles
================================================================== */

/* 3.1 FullHeight Fix
-------------------------------------------------------------- */
html, body {
    height: 100%;
}

body {
    background: #FFF;
    color: #484245;
    font-family: "Karla", sans-serif;
}

/* 3.2 Split Screen w/ vertical centering content
-------------------------------------------------------------- */
.split-wrapper, .split-container, .split-col {
    height: 100%;
}

.split-container, .split-col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.split-col {
    flex: 1;
}

/* 3.3 Column Left (Logo, Heading, Content, Download Buttons, Footer Credits)
-------------------------------------------------------------- */
.col-left {
    background: #FFF;
}

.col-left .content {
    max-width: 480px;
    margin: 0 2rem;
}

.dl-wrapper {
    margin-top: 2em;
    white-space: nowrap; /* Remove this if you add more than two buttons */
}

.dl-btn {
    display: inline-block;
    margin-right: 0.25rem;
}

.dl-wrapper img {
    height: 58px;
}

h1 {
    font-size: 3.5em;
    line-height: 1.05;
    margin: 1.25em 0 0.625em;
}

p {
    font-size: 1.2em;
    line-height: 2;
    margin: 0;
}

.credits-info {
    padding-top: 2rem;
}

.credits-info p {
    color: #989898;
}

.credits-info a {
    color: #989898;
}

.credits-info a:hover {
    color: #F25E42;
}

.social-links {
  margin: 0;
  padding: 2.5em 0 0;
}

.social-links li {
    position: relative;
    display: inline;
    padding-bottom: 0.1875em;
    margin-right: 0.75em;
}

.social-links li a {
    color: #989898;
    text-decoration: none;
    -webkit-transition: color 0.35s;
    -moz-transition: color 0.35s;
    -ms-transition: color 0.35s;
    -o-transition: color 0.35s;
    transition: color 0.35s;
    cursor: pointer;
}

.social-links li a:hover {
    color: #F25E42;
}

.logo-container img {
  display: block;
}

/* 3.4 Column Right (Book Mockup)
-------------------------------------------------------------- */
.col-right {
    background: url("../../images/book-mockup.jpg") no-repeat center center transparent;
    background-size: cover;
}

.col-right .content {
  height: 100%;
}

/* ==================================================================
4.0 Responsive Styles
================================================================== */
@media only screen and (max-width: 1408px) {

}

@media only screen and (max-width: 1023px) {
    html, body {
        height: auto;
    }

    .split-container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        height: auto;
    }

    .split-col {
        padding: 4rem 3rem; 
        width: 100%;
    }

    .col-left .content {
        margin: 0;
    }

    .col-right {
        padding-left: 0;
        padding-right: 0;
        height: 100vh;
    }
}

@media only screen and (max-width: 480px) {
  body {
    font-size: 14px;
  }
h1 {
    font-size: 3.0em;
    line-height: 1.05;
    margin: 1.25em 0 0.625em;
}
.split-col {
        padding: 4rem 3rem;
        width: 100%;
    }
.col-right {
height: 500px;
}
}

@media only screen and (max-width: 360px) {
  .dl-btn {
    display: block;
    margin: 0.5rem 0;
  }
}
