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

Primary style

-------------------------------- */
html * {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

body {
    font-size: 100%;
    /*font-family: "Roboto", sans-serif;*/
    font-family: "Verdana", sans-serif;
    color: #3d3536;
    background-color: white;
}

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

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



/**********************************************
 *
 *  Main Style Sheet for Vintique Guitars
 *
 ***********************************************/

#tagline {
    width: 100%;
    height: 2em;
    position: absolute;
    text-align: center;
    vertical-align: middle;
    font-weight: bold;
    font-size: 1.5em;
    font-family: "lucida grande";
    font-stretch: semi-condensed;
}

@media (max-width: 768px) {
    #tagline {
        font-size: 1em;
    }
}

.description {
    font-weight: normal;
    font-size: 1.05em;
    font-family: "lucida grande";
    font-stretch: semi-condensed;
    text-align: center;
}

.blurb {
    font-weight: normal;
    font-size: 1.05em;
    font-family: "lucida grande";
    font-stretch: semi-condensed;
    text-align: center;
    vertical-align: middle;
}

.title {
    text-align: center;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.bobbyBorders {
    border: 2px solid darkgray;
    border-radius: 15px;
    box-shadow: 7px 7px 5px lightgray;

}



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

Modules - reusable parts of our design

-------------------------------- */
.cd-container {
    /* this class is used to give a max-width to the element it is applied to, and center it horizontally when it reaches that max-width */
    width: 90%;
    /*max-width: 768px;*/
    max-width: 1024px;
    margin: 0 auto;
}
.cd-container::after {
    /* clearfix */
    content: '';
    display: table;
    clear: both;
}

.cd-container p {
    font-size: 1.54em;
}

.cd-container.footer p {
    line-height: 1.36em;
    font-size: 1.25em;
}

.cd-container.footer a {
    color: #3d3536;
}


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

Main components

-------------------------------- */
.cd-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    /*background: rgba(255, 255, 255, 0.95);*/
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    z-index: 2;
}
.cd-header:after {
    content: "";
    display: table;
    clear: both;
}
.cd-header #cd-logo {
    float: left;
    margin: 13px 0 0 5%;
}
.cd-header #cd-logo img {
    display: block;
}
/*@media only screen and (min-width: 768px) {*/
@media only screen and (min-width: 1024px) {
    .cd-header {
        height: 70px;
    }
    .cd-header #cd-logo {
        margin: 23px 0 0 5%;
    }
}

.cd-main-nav {
    float: right;
    margin-right: 5%;
    width: 44px;
    height: 100%;
    background: url("../img/cd-icon-menu.svg") no-repeat center center;
    background-size: 44px 44px;
    cursor: pointer;
}
.cd-main-nav ul {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
}
.cd-main-nav ul.is-visible {
    -webkit-transform: translateY(50px);
    -moz-transform: translateY(50px);
    -ms-transform: translateY(50px);
    -o-transform: translateY(50px);
    transform: translateY(50px);
}
.cd-main-nav a {
    display: block;
    height: 50px;
    line-height: 50px;
    padding-left: 5%;
    background: #2f292a;
    border-top: 1px solid #453c3d;
    color: #8e7d7f;
}
/*@media only screen and (min-width: 768px) {*/
@media only screen and (min-width: 1024px) {
    .cd-main-nav {
        width: auto;
        height: auto;
        background: none;
        cursor: auto;
    }
    .cd-main-nav ul {
        position: static;
        width: auto;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
        line-height: 70px;
    }
    .cd-main-nav ul.is-visible {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
    .cd-main-nav li {
        display: inline-block;
        margin-left: 1em;
    }
    .cd-main-nav a {
        display: inline-block;
        height: auto;
        line-height: normal;
        background: transparent;
        padding: .6em 1em;
        border-top: none;
        color: #3d3536;
        text-transform: uppercase;
        font-weight: bold;
        font-size: 14px;
        font-size: 0.875rem;
    }
    .no-touch .cd-main-nav a:hover {
        color: #99a478;
    }
}

.cd-main-content {
    /* you need to assign a min-height to the main content so that the children can inherit it*/
    height: 100%;
    position: relative;
    z-index: 1;
}

.cd-intro {
    position: absolute;
    left: 50%;
    top: 50%;
    bottom: auto;
    right: auto;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    text-align: center;
    width: 90%;
    max-width: 1170px;
}

.cd-full-bg {
    position: relative;
    min-height: 100%;
    /*background-size: cover;*/
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
/*    z-index: 1;*/
}
.cd-full-bg.hardware{
    background-image: url("../img/parts/parts.jpg");
}

@media only screen and (max-width: 480px){
    .cd-full-bg.hardware{
        display: none;
        visibility: hidden;
    }
}

.cd-fixed-bg {
    position: relative;
    min-height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: 1;
}
.cd-fixed-bg h1, .cd-fixed-bg h2 {
    text-align: center;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    color: white;
    font-family: pinyon-script, cursive;
    font-size: 3.5rem;
    font-weight: normal;
}
.cd-fixed-bg h2 {
    position: absolute;
    left: 50%;
    top: 50%;
    bottom: auto;
    right: auto;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    width: 90%;
    max-width: 1170px;
}

.cd-fixed-bg .tagline {
    position: absolute;
    left: 50%;
    top: 50%;
    bottom: auto;
    right: auto;
    margin-top: 4.25em;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    width: 90%;
    max-width: 1170px;
    text-align: center;
    font-size: 30px;
    font-size: 1.75rem;
    font-style: italic;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    color: navajowhite;
}

.cd-fixed-bg .photoline {
    position: absolute;
    width: 90%;
    max-width: 1170px;
    text-align: right;
    font-size: 30px;
    font-size: 1.65rem;
    font-style: italic;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    color: lightgray;
    right: 2em;
    bottom: 2em;
}

.cd-fixed-bg #logo {
    position: absolute;
    left: 50%;
    top: 50%;
    bottom: auto;
    right: auto;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    width: 40%;
    max-width: 1170px;
    text-align: center;
}

.cd-fixed-bg.bodytop{
  /*  background-image: url("../img/promo/TeleThree.jpg");  */
    background-image: url("../img/promo/TeleBodyFront.jpg");
}

.cd-fixed-bg.hardware{
    background-image: url("../img/parts/parts.jpg");
}

.cd-fixed-bg.headstock {
    background-image: url("../img/promo/TeleSeven.jpg");
}

.cd-fixed-bg.bridge {
   /* background-image: url("../img/promo/TeleEight.jpg"); */
    background-image: url("../img/promo/bridge_bg.jpg");
}

.cd-fixed-bg.charlie {
    /*background-image: url("../img/promo/TeleNine.jpg");*/
    background-image: url("../img/promo/pucover.jpg");
}

.cd-fixed-bg.controls {
   /* background-image: url("../img/promo/TeleTen.jpg");*/
    background-image: url("../img/promo/controls.jpg");
}

.cd-fixed-bg.jack {
    background-image: url("../img/promo/TeleEleven.jpg");
}


/*@media only screen and (min-width: 768px) {*/
@media only screen and (min-width: 1024px) {
    .cd-fixed-bg h1, .cd-fixed-bg h2 {
        font-size: 4.25rem;
    }
}
@media only screen and (min-width: 1170px) {
    .cd-fixed-bg {
        background-attachment: fixed;
    }
    .cd-fixed-bg h1, .cd-fixed-bg h2 {
        font-size: 5.25rem;

    }
}

.cd-scrolling-bg {
    position: relative;
    min-height: 100%;
    padding: 4em 0;
    line-height: 1.6;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.cd-scrolling-bg h3 {
    font-family: pinyon-script, cursive;
    text-align: center;
    font-size: 30px;
    font-size: 4.75rem;
    font-weight: normal;
    /*text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);*/
    color: #f0e6f1;
}

.cd-scrolling-bg h4 {
    font-family: helvetica, sans-serif;
    text-align: center;
    font-size: 30px;
    font-size: 2.05rem;
    font-weight: normal;
    /*text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);*/
    color: #f0e6f1;
}

.cd-scrolling-bg.cd-color-1 {
    background-color: #3d3536;
    color: #a6989a;
}
.cd-scrolling-bg.cd-color-2 {
    background-color: #99a478;
    color: #3d3536;
}
.cd-scrolling-bg.cd-color-3 {
    background-color: #b4d7a8;
    color: #3d3536;
}
/*@media only screen and (min-width: 768px) {*/
@media only screen and (min-width: 1024px) {
    .cd-scrolling-bg {
        padding: 8em 0;
        font-size: 20px;
        font-size: 1.25rem;
        line-height: 2;
        font-weight: normal;
    }
}

.float-img-left {
    float: left;
    margin: 10px 10px 10px 0;
    clear: both;
}

.float-img-right {
    float: right;
    margin: 0 10px 10px 10px;
    clear: both;
}

.centeredtext {
    text-align: center;
}

.infoblock {
    background-color: floralwhite;
    border: none;
    border-radius: 10px;
    margin-bottom: 20px;
}

.infoblock .reseller {
    padding: 12px 12px 12px 12px;
    line-height: normal;
    color: #000000;
}

.infoblock img, iframe {
    position: relative;
    width: 90%;
    overflow-y: hidden;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
}

.infoblock .title {
    font-family: Verdana, Arial, sans-serif;
    font-size: 1.2em;
    color: darkgreen;
    padding: 18px 5px 18px 5px;
}

.copyright {
    font-size: 0.65em;
    color: #7F7664;
}