body
{
    position: fixed;
    position: -ms-device-fixed;

    overflow: scroll;
    -ms-overflow-style: -ms-autohiding-scrollbar;

    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 0 auto;

    background-color: #000000;
    background-image: url('../img/seamless-bkg-drk.jpg');
    background-repeat: repeat;
    background-size: 150px;
    overflow-x: hidden;
    overflow-y: hidden;
}


/* Prevent User Text Selections on Navigation Elements */
.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */ /* Konqueror HTML */
       -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
}

/* ***************************************** */
/* **************    Fonts    ************** */
/* ***************************************** */

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
  font-weight: normal;
  font-variant: normal;
  font-stretch: normal;
  color: #e7a33e;
  letter-spacing: 2px;
}

p {
  font-size: 1em;
  line-height: 1.55;
  color: #6f542e;
  letter-spacing: 0;
}

h1 {
  font-size: 1.30em;
  line-height: 2.35;
}

h2 {
  font-size: 1.25em;
  line-height: 1.30;
}


a {
  font-size: .90em;
  color: #a87e40;
}

a:visited {
  color: #57462e;
}

a:hover {
  color: #e7a33e; 
}

a:focus {
  color: #a58960;
}

a {
  text-decoration: none;
}


/* ************************************************** */
/* ***************** Menu Component ***************** */
/* ************************************************** */

/*  Menu Header Components */

.flex-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -ms-flex-pack: distribute;
        justify-content: space-around;
}

.menu-header {
    position: absolute;
    position: fixed;
    position: -ms-device-fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100px;
    z-index: 10000;
    background-image: url('../img/tnp-banner-png-8-dither.png');
    background-image: url('../img/tnp-banner-png-24.png');
    background-repeat:  no-repeat;
    background-size: 100%, cover;
    background-position: top center;
}


/*  Menu Buttons Components */

.menu-button {
    position: relative;
    font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
    font-weight: normal;
    font-variant: normal;
    font-stretch: normal;
    font-size: .85em;
    line-height: 1;
    text-align: center;

    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border: 1px solid #6f542e;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    max-height: 25px;
    margin: auto;
}

.menu-button p {
    margin-right: 0;
    margin-left: 0;
}

.menu-button-left,
.menu-button-right {
    -webkit-transition: all 0.25s ease-in-out;
       -o-transition: all 0.25s ease-in-out;
          transition: all 0.25s ease-in-out;
}


.menu-button-center {
    border: none; /* remove border from .menu button class */
    min-height: 73%;
    min-width: 105px;
    margin-top: 14px;
    background-image: url('../img/logo-hover-glow-png8.png');
    background-image: url('../img/logo-hover-glow-png24.png');
    background-repeat:  no-repeat;
    background-size: contain;
    background-position: center;
    opacity: 0;
    -webkit-transition: opacity 0.25s ease-in-out;
       -o-transition: opacity 0.25s ease-in-out;
          transition: opacity 0.25s ease-in-out;
}


.menu-button-font {
    color: #6f542e;

}


/* Hover on div change another div property */

.menu-button:hover .menu-button-font {
    color: #e7a33e;
}


.menu-button:hover
{
    opacity: 1;
    color: #fff;
    border: solid 1px #e7a33e;
}


.menu-button:active,
.menu-button:focus
{
    color: #fff;
    background-color: #c68628;
    background-color: rgb(198,134,40);
    background-color: rgba(198,134,40,.7);
}



/* Hover Menu logo */

.menu-button-center:hover {
    border: none;
    opacity: 1;
    background-image: url('../img/logo-hover-glow-png8.png');
    background-image: url('../img/logo-hover-glow-png24.png');
    background-repeat:  no-repeat;
    background-size: contain;
    background-position: center;
}

.menu-button-center:active,
.menu-button-center:focus {
    border: none;
    opacity: 1;
    background-image: url('../img/logo-hover-glow-png8-bright.png');
    background-image: url('../img/logo-hover-glow-png24-bright.png');
    background-repeat:  no-repeat;
    background-size: contain;
    background-position: center;
    background-color: rgba(198,134,40,0);
}


/* Adjust menu elements for screen sixe */


@media all and (max-width: 420px) {
   .menu-button-left,
   .menu-button-right {
        min-width: 60px;
        max-width: 80px;
    }
    .menu-button-left p,
    .menu-button-right p {
        position: relative;
        width: 100%;
        max-width: 100%;
        -ms-flex-item-align: center;
            -ms-grid-row-align: center;
            align-self: center;
        text-align: center;
    }
}

@media all and (min-width: 421px) {
  .menu-button-left,
   .menu-button-right {
        min-width: 110px;
    }
}


@media all and (max-width: 775px) {
  .menu-header {
        width: 100%;
        height: 80px;
        background-size: cover;
    }
    .menu-button {
        margin-bottom: 23px; /*a djust button placement */
    }
    .menu-button p {
        font-weight: .5em;
    }
}

@media all and (min-width: 776px) and (max-width: 950px) {
  .menu-header {
        width: 100%;
        height: 100px;
        background-size: cover;
    }
   .menu-button-left,
   .menu-button-right {
        margin: auto; /* adjust button placement */
        top: 2.25%;
        min-width: 110px;
    }

}

@media all and (min-width: 951px) {
  .menu-header {
        width: 100%;
        height: 100px;
        background-size: contain;
    }
    .menu-button {
        margin-bottom: 33px; /*a djust button placement */
    }
}


/* ************************************************** */
/* ************** Slide Show Components ************* */
/* ************************************************** */

.slide {
    width: 75%;
    height: 75%;
    overflow: hidden;
}

.slide-content-01 {
    width: 100%;
    height: 100%;
}


.current-slide
{
    position: absolute;

    width: 100%;
    height: 100%;
    margin-top: 0;
    padding: 0;
}


.current-slide div
{
    position: absolute;
    top: 36px;
    left: 50%;
    
    -webkit-transform: translateY(0%) translateX(-50%);

        -ms-transform: translateY(0%) translateX(-50%);

            transform: translateY(0%) translateX(-50%);

    text-align: center;

    color: #fff;
}


.btn
{
    display: inline-block;

    width: 20px;
    height: 20px;
    margin-right: 15px;

    -webkit-transition: all .5s ease;

    -o-transition: all .5s ease;

    transition: all .5s ease;

    border: solid 1px  #7b5f34;
    border-radius: 50%;
    outline: none !important;
}

@media all and (max-width: 400px) {
  .btn {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    }
}

.btn:nth-last-child(1)
{
    margin-right: 0;
}

.btn.btn-primary
{
    border: solid 1px  #e7a33e;
    outline: none;
    background-color: rgb(231,163,62);
    background-color: rgba(231,163,62,.4);
}

.btn.btn-primary:hover
{
    color: #fff;
    border: solid 1px  #e7a33e;
    background-color: #e7a33e;
}

.btn.btn-primary:active,
.btn.btn-primary:focus
{
    color: #fff;
    border: solid 1px  #e7a33e;
    background-color: rgb(231,163,62);
    background-color: rgba(231,163,62,.4);
}


.btn.btn-default
{
    opacity: .7;
}


.btn.btn-default:hover
{
    opacity: 1;
    color: #fff;
    border: solid 1px  #e7a33e;
    background-color: #413e38;
}

.btn.btn-default:active,
.btn.btn-default:focus
{
    color: #fff;
    background-color: #e7a33e;
    background-color: rgb(231,163,62);
    background-color: rgba(231,163,62,.7);
}


.btn-group-wrap
{
    position: fixed;
    position: -ms-device-fixed;
    z-index: 999;
    bottom: 5%;

    width: 100%;
    height: 25px;
}

.btn-group
{
    position: absolute;
    top: 50%;
    left: 50%;

    -webkit-transform: translateY(-50%) translateX(-50%);

        -ms-transform: translateY(-50%) translateX(-50%);

            transform: translateY(-50%) translateX(-50%);
}

/* Active animation */
.active-animation
{
    position: absolute;
    top: 30px;
    left: 50%;

    -webkit-transform: translate(-50%, 0);

        -ms-transform: translate(-50%, 0);

            transform: translate(-50%, 0);
}

.btn-previous-wrap {
    /* border: 1px solid red; */
    position: fixed;
    position: -ms-device-fixed;
    opacity: .1;
    top: 40%;
    left:25px;
    height: 20vh;
    width: 35px;

    background-image: url('../img/arrow-lt-focus-png8.png');
    background-image: url('../img/arrow-lt-focus-png24.png');
    background-repeat:  no-repeat;
    background-size: 100% 100%;
    background-position: center;


    -webkit-transition: opacity .3s ease;
    -o-transition: opacity .3s ease;
    transition: opacity .3s ease;
}


.btn-previous-wrap:hover {
    opacity: .5;
}


.btn-previous
{
    position: relative;

    width: 100%;
    height: 100%;

    opacity: 0;
}

.btn-previous:hover
{
    opacity: .5;
    background-image: url('../img/arrow-lt-hover-png8.png');
    background-image: url('../img/arrow-lt-hover-png24.png');
    background-repeat:  no-repeat;
    background-size: 100% 100%;
    background-position: center;
}

.btn-previous:focus,
.btn-previous:active {
    opacity: 1;
}


.btn-next-wrap {
    position: fixed;
    position: -ms-device-fixed;
    opacity: .1;
    top: 40%;
    right: 25px;
    height: 20vh;
    width: 35px;

    background-image: url('../img/arrow-rt-focus-png8.png');
    background-image: url('../img/arrow-rt-focus-png24.png');
    background-repeat:  no-repeat;
    background-size: 100% 100%;
    background-position: center;

    -webkit-transition: opacity .3s ease;
    -o-transition: opacity .3s ease;
    transition: opacity .3s ease;
}


.btn-next-wrap:hover {
    opacity: .5;
}


.btn-next
{
    position: relative;
    top: 0;
    right: 0;

    width: 100%;
    height: 100%;
   
    opacity: 0;
    background-image: url('../img/arrow-rt-hover-png8.png');
    background-image: url('../img/arrow-rt-hover-png24.png');
    background-repeat:  no-repeat;
    background-size: 100% 100%;
    background-position: center;
}

.btn-next:hover
{
    opacity: .5;
    /*border-left: 35px solid #413e38;*/
    background-image: url('../img/arrow-rt-hover-png8.png');
    background-image: url('../img/arrow-rt-hover-png24.png');
    background-repeat:  no-repeat;
    background-size: 100% 100%;
    background-position: center;
}

.btn-next:focus,
.btn-next:active {
    opacity: 1;
}


/* Could Use GSAP here as well */
/* Vue JS - Transition Classes */
/* fade in or out - Previous and Next Buttons */

.fade-enter
{
    opacity: 0;
}

.fade-enter-active
{
    -webkit-transition: opacity 4s ease;
    -o-transition: opacity 4s ease;
    transition: opacity 4s ease;
}

.fade-enter-to
{
    /* Vue JS Default is opacity: 1; */
}

.fade-leave
{
    /* Vue JS Default is opacity: 1; */
}

.fade-leave-active
{
    -webkit-transition: opacity 4s ease;
    -o-transition: opacity 4s ease;
    transition: opacity 4s ease;
}

.fade-leave-to
{
    opacity: 0;
}



/* ************************************************** */
/* *************** Slide show Content *************** */
/* ************************************************** */


.slide-content-01 {
    /* this is the tv modal slide */
}

.slide-content-02 {
    background-image: url('../img/ahole-banner-so-vain-v01c.png');
    background-image: url('../img/ahole-banner-so-vain-v01c-24.png');
    background-repeat:  no-repeat;
    background-size: contain;
    background-position: center;
}

.slide-content-03 {
    background-image: url('../img/ahole-banner-unite-v01.png');
    background-image: url('../img/ahole-banner-unite-v01-24.png');
    background-repeat:  no-repeat;
    background-size: contain;
    background-position: center;
}

.slide-content-04 {
    background-image: url('../img/ahole-banner-even-aholes-v01.png');
    background-image: url('../img/ahole-banner-even-aholes-v01-24.png');
    background-repeat:  no-repeat;
    background-size: contain;
    background-position: center;

}

.current-slide .slide-content-02,
.current-slide .slide-content-03,
.current-slide .slide-content-04 {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: 0 auto; 

    -webkit-transform: translateY(-50%) translateX(-50%);

        -ms-transform: translateY(-50%) translateX(-50%);

            transform: translateY(-50%) translateX(-50%); 
}

/* ************************************************** */
/* ****************** Spots Slide ******************* */
/* ************************************************** */


#tv-main .tv-spot-thumb:hover {
  opacity: .7;
  border: solid 1px #e7a33e;
}


#tv-main .tv-spot-thumb:active,
#tv-main .tv-spot-thumb:focus {
  opacity: 1;
}

.tv-spot-thumb {
    margin: auto;
    margin-top: 30px;
    margin-bottom: 35px;
}


#spot1 {
    background-image: url('../img/ahole-donuts-still.jpg');
    background-repeat:  no-repeat;
    background-size: cover;
    background-position: center;
    margin-top: 5%;
    height: 20%;
}

#spot2 {
    background-image: url('../img/ahole-elevator-still.jpg');
    background-repeat:  no-repeat;
    background-size: cover;
    background-position: center;
    margin-top: 2%;
    height: 20%;    
}

#spot3 {
    background-image: url('../img/ahole-pets-still.jpg');
    background-repeat:  no-repeat;
    background-size: cover;
    background-position: center;
    margin-top: 2%;
    height: 20%;    
}

.outer-flex-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    height:100%;
    overflow-x: hidden;
    overflow-y: scroll;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}

.outer-flex-container::-webkit-scrollbar {
 display: none;
 -ms-overflow-style: -ms-autohiding-scrollbar;
}

#modal-for-tv {
    position: fixed;
    position: -ms-device-fixed;
    width: 100%;
    z-index: 10001;
}


#tv-main .tv-spot-thumb {
    position: relative;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    left: 5px;
    right: 0;
    top: 0;
    width: 195px;
    height: 110px;
    border: 1px solid #6f542e;
    -webkit-transform: translateY(0%) translateX(-2%);
        -ms-transform: translateY(0%) translateX(-2%);
            transform: translateY(0%) translateX(-2%);
    cursor: pointer;
    /*margin: auto;*/
    /*margin-top: 30px;*/
    margin-bottom: 35px;
    opacity: .4;
    -webkit-transition: opacity 0.25s ease-in-out;
       -o-transition: opacity 0.25s ease-in-out;
          transition: opacity 0.25s ease-in-out;  
}


@media all and (max-width: 400px) {
  #tv-main .tv-spot-thumb {
        width: 60%;
        height: 0;
        padding-bottom: 35%;
    }
}

@media all and (min-width: 401px) and (max-width: 500px) {
  #tv-main .tv-spot-thumb {
        width: 65%;
        height: 0;
        padding-bottom: 30%;
    }
}


@media all and (min-width: 501px) and (max-width: 600px) {
  #tv-main .tv-spot-thumb {
        width: 65%;
        height: 0;
        padding-bottom: 30%;
    }
}

@media all and (min-width: 601px) and (max-width: 700px) {
  #tv-main .tv-spot-thumb {
        width: 55%;
        height: 0;
        padding-bottom: 30%;
    }
}

@media all and (min-width: 701px) {
  #tv-main .tv-spot-thumb {
        width: 55%;
        max-width: 300px;
        height: 169px;
        max-height: 169px;

    }
}


.modal-off {
  display: block;
  visibility: hidden;
  position: relative;
  background-color: none;
  height: 0;
  opacity: 0;
    -webkit-transition: background-color 0.25s ease-in-out;
       -o-transition: background-color 0.25s ease-in-out;
          transition: background-color 0.25s ease-in-out; 
}

.modal-on {
  display: block;
  visibility: visible;
  background-color: black;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,.75);
  height: 100%;
  opacity: 1;
  -webkit-transition: opacity .5s ease;
  -o-transition: opacity .5s ease;
  transition: opacity .5s ease;
}

.selected-spot-off {
    display: block;
    position: absolute;
    width: 75%;
    height: 0;
    padding-bottom: 0;
    top: 50%;
    left: 50%;
    margin-left: 7px;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    opacity: 0;
    -webkit-transition: opacity 0.25s ease-in-out;
       -o-transition: opacity 0.25s ease-in-out;
          transition: opacity 0.25s ease-in-out;
}

.selected-spot-on {
    display: block;
    position: absolute;
    width: 75%;
    height: 0;
    padding-bottom: 38%;
    top: 50%;
    left: 50%;
    margin-left: 7px;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    opacity: 1;
    -webkit-transition: opacity .5s ease;
    -o-transition: opacity .5s ease;
    transition: opacity .5s ease;
}


 .flex-video {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 0;
    width: 65vw;
    height:  50.5vw;
    overflow: hidden;
    margin: 0 0 0 0;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }

  .flex-video iframe,
  .flex-video object,
  .flex-video embed {
    position: absolute;
    display: block;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    max-width: 1000px;
    max-height: 563px;
    background-color: transparent !important;
  }

  .video-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    overflow: hidden;
    max-width: 1000px;
    max-height: 563px;
  }

/* *********************************************** */
/*          button-close-section-vector.vue        */
/* *********************************************** */


#button-close-vector {
  position: fixed;
  position: -ms-device-fixed;
  z-index: 104;
  top: 0;
  right: 0;
  display: block;
  cursor: pointer;
  -webkit-transition: background-color 0.25s ease-out;
       -o-transition: background-color 0.25s ease-out;
          transition: background-color 0.25s ease-out;
  opacity: 1;
  color: #6f542e;
  border: 1px solid #6f542e;
  background-color: none;
}

#button-close-vector > div {
  position: absolute;
  top: 50%;
  width: 100%;
  margin: auto;
  -webkit-transform: perspective(1px) translateY(-50%);
          transform: perspective(1px) translateY(-50%);
  text-align: center;
}


@media all and (max-width: 400px) {
  #button-close-vector {
    font-size: 2em;
    width: 37px;
    height: 37px;
    margin-top: 18px;
    margin-right: 19px;
    padding-bottom: 0.16em;
  }
}


@media all and (min-width: 401px) {
  #button-close-vector {
    font-size: 1.75em;
    width: 39px;
    height: 39px;
    margin-top: 25px;
    margin-right: 25px;
    padding-bottom: 0.16em;
  }
}


#button-close-vector:hover {
  background-color: #c68628;
  color: #e7a33e;
}


#button-close-vector:focus,
#button-close-vector:active {
  border: solid 1px #e7a33e;
  color: #e7a33e;
  opacity: .5;
}




/* ************************************************** */
/* ***************** Contact Slide ****************** */
/* ************************************************** */

.contact-info {
    overflow: hidden;
    width: 100%;
    height: 100%;
}

#tv-main,
.scroll-wrap {
    overflow-x: hidden;
    overflow-y: scroll;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    width: 100%;
    height: calc(100% - 160px);
    margin-top: -4px;
    padding-left: 33px;
    padding-right: 33px; /* Increase/decrease this value for cross-browser compatibility */
    box-sizing: content-box; /* So the width will be 100% + 17px */
}


.scroll-spacer-top {
    display: none;
    position: relative;
    min-height: 66px;
    width: 100%;
    /*border: 1px solid red;*/
    margin: 0 auto;
    padding: 0;
}


#spot1,
#spot2,
#spot3 {
    /*margin-right:36%;*/
}

@media all and (max-width: 775px) {
  #tv-main,
  .scroll-wrap {
    height: calc(100% - 145px);
    }
    .current-slide div {
        top: 35px;
    }
    .start-contact,
    #spot1 {
        margin-top: 10%;
    }
}


@media all and (max-height: 500px) {
  #tv-main,
  .scroll-wrap {
    height: calc(100% - 140px);
    }
    .current-slide div {
        top: 40px;
    }
    .start-contact,
    #spot1 {
        margin-top: 1%;
    }
}

@media all and (min-width: 501px) and (min-height: 501px) {
  #tv-main,
  .scroll-wrap {
    height: calc(100% - 155px);
    }
    .current-slide div {
        top: 32px;
    }
    .start-contact,
    #spot1 {
        margin-top: 5%;
    }
}

@media all and (min-width: 775px) {
    .current-slide div {
        top: 40px;
    }
}

@media all and (max-width: 775px) and (max-height: 500px) {
  #tv-main,
  .scroll-wrap {
    height: calc(100% - 125px);
    }
    .current-slide div {
        top: 32px;
    }
    .start-contact,
    #spot1 {
        margin-top: 10%;
    }
}

@media all and (min-height: 800px) {
    .start-contact {
        margin-top: 15%;
    }
    #spot1 {
        margin-top: 10%;
    }
}


@media all and (min-width: 775px) and (min-height: 800px) {
    .start-contact {
        margin-top: 10%;
    }
    #spot1 {
        margin-top: 17%;
    }
}


@media all and (min-width: 1000px) and (min-height: 800px) {
    .start-contact {
        margin-top: 5%;
    }
    #spot1 {
        margin-top: 5%;
    }
}


@media all and (max-height: 250px) {
    .start-contact,
    #spot1 {
        margin-top: 1%;
    }
}


#tv-main::-webkit-scrollbar,
.scroll-wrap::-webkit-scrollbar,
.contact-info::-webkit-scrollbar {
 display: none;
}


/* fix for when -moz scroll none */
.btn-group {
    margin: 2px;
}



#menu-button-left p,
#menu-button-right p {
    margin-right: 0;
    margin-left: 0;
    width: 100%;
    max-width: 100%;
}

.contact-info h1 .asterisk, 
.contact-info h2 .asterisk,
.contact-info p .asterisk {
    position: relative;
    top: .35em;
}

.contact-info h1, 
.contact-info h2,
.contact-info p {
    margin-left: 23%;
    margin-right: 23%;
    max-width: 54%;
}


.contact-info h2 {
    margin-bottom: -10px;
}


.contact-info p {
    padding-bottom: 10px;
}

.contact-info .signoff {
    margin-top: -5px;
    margin-bottom: -25px;
}

.p-s {
    font-size: .75em;
    margin-top: -5px;
    margin-bottom: -5px;
}



@media all and (max-width: 500px) and (max-height: 500px) {
    .start-contact,
    .contact-info h1, 
    .contact-info h2,
    .contact-info p {
        margin-left: 18%;
        margin-right: 18%;
        max-width: 64%;
    }
}

@media all and (min-width: 501px) and (max-height: 700px) {
    .start-contact,
    .contact-info h1, 
    .contact-info h2,
    .contact-info p {
        margin-left: 23%;
        margin-right: 23%;
        max-width: 54%;
    }
}

@media all and (min-width: 701px) and (max-width: 950px) {
    .start-contact,
    .contact-info h1, 
    .contact-info h2,
    .contact-info p {
        margin-left: 28%;
        margin-right: 28%;
        max-width: 44%;
    }
}

@media all and (min-width: 951px) {
    .start-contact,
    .contact-info h1, 
    .contact-info h2,
    .contact-info p {
        margin-left: 33%;
        margin-right: 33%;
        max-width: 34%;
    }
}


@media all and (min-width: 2000px) {
    .start-contact,
    .contact-info h1, 
    .contact-info h2,
    .contact-info p {
        margin-left: 40%;
        margin-right: 40%;
        max-width: 20%;
    }
}
